diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e57f93fe..d34bdcc30 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,11 +4,18 @@ on: [push] jobs: test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, macos-latest] version: ['Release', 'Debug'] steps: - uses: actions/checkout@v3 + - name: Install dependencies (Ubuntu) + if: runner.os == 'Linux' + run: sudo apt-get install libsqlite3-dev + - name: Install dependencies (macOS) + if: runner.os == 'macOS' + run: brew install sqlite3 - run: uname -a; BUILDTYPE=${{ matrix.version }} make - - run: make test \ No newline at end of file + - run: make test diff --git a/CHANGELOG.md b/CHANGELOG.md index 353afaa9d..81ef86c5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,124 @@ +# 2.72.0 + +* Add --clip-polygon-file and --feature-filter-file options to tippecanoe-overzoom + +# 2.71.0 + +* Add --clip-bounding-box and --clip-polygon options to tippecanoe-overzoom + +# 2.70.1 + +* Raise tippecanoe-decode limit on the size of individual tiles + +# 2.70.0 + +* Performance improvements to tippecanoe-overzoom with attribute exclusion + +# 2.69.0 + +* Fix crash when the first bin gets clipped away + +# 2.68.0 + +* Adds `--no-tile-compression` option to `tippecanoe-overzoom` +* Make `tippecanoe-overzoom` clip the output tile to the tile buffer after assigning points to bins +* Adds `--include`/`-y` option to `tippecanoe-decode` to decode only specified attributes +* Cleans up some inconsistent handling of variable tile extents in overzooming code +* Speeds up overzooming slightly in `tile-join` by doing less preflighting to discover which child tiles contain features + +# 2.67.0 + +* Reduce memory consumption of duplicate attribute names in `serial_feature` +* The maxzoom guess calculation now takes into account the number of duplicate feature locations + +# 2.66.0 + +* Only bin by ID, not by geometry, if --bin-by-id-list is specified +* Do attribute accumulation in overzoom in mvt_value instead of converting to serial_val +* Fix bool values read from flatgeobuf sources (#289) + +# 2.65.0 + +* Improve spatial distribution of --retain-points-multiplier features +* Add --preserve-multiplier-density-threshold option to maintain minimum density of multiplier features + +# 2.64.0 + +* Add --bin-by-id to overzoom + +# 2.63.0 + +* Top-level null filter now evaluates to true + +# 2.62.6 + +* Remove buggy optimization to avoid reclipping in tippecanoe-overzoom + +# 2.62.5 + +* More aggressive binning when points fail the point-in-polygon test + +# 2.62.4 + +* Fix accumulation of count and mean in overzoom + +# 2.62.3 + +* Summary statistics with --accumulate-numeric-attributes make it from tiling through to binning +* Prefix can be specified for --accumulate-numeric-attributes +* Added --exclude and --exclude-prefix to tippecanoe-overzoom + +# 2.62.2 + +* Pass feature ID through with bins + +# 2.62.1 + +* More work in progress on binning point features in overzoom + +# 2.62.0 + +* Fix another bad interaction, this time between dropping-as-needed and --limit-tile-feature-count + +# 2.61.0 + +* Added --calculate-feature-index option +* Added "count" accumulation type to --accumulate-attribute +* Work in progress on binning of point features in overzoom. Not ready for use yet. + +# 2.60.0 + +* Fix bad interaction between --retain-points-multiplier and stopping early when the tile feature limit is reached +* Fix another bad interaction between --retain-points-multiplier, dropping-as-needed, and variable depth tile pyramids +* Add optional BUILD_INFO string to version +* Reorder overzoom logic to clip before dealing with multiplier and filters +* When --generate-variable-depth-tile-pyramid is in use, report the actual highest zoom generated as tileset maxzoom + +# 2.59.0 + +* Correct `antimeridian_adjusted_bounds` latitude calculation when vertices extend beyond the edge of the Mercator plane + +# 2.58.0 + +* Add --generate-variable-depth-tile-pyramid option +* Add --line-simplification and --tiny-polygon-size options to tippecanoe-overzoom +* Adjust tile feature limit for --retain-points-multiplier +* Tune convergence rate for --coalesce-densest and --drop-densest +* Fix overreported drop and coalesce counts in strategies + +# 2.57.0 + +* Add multi-tile input to tippecanoe-overzoom + +# 2.56.0 + +* Rework --coalesce-densest-as-needed and --drop-densest-as-needed to look better +* Add --maximum-string-attribute-length option + +# 2.55.0 + +* Fix hash collisions in the string pool + # 2.53.0 * Stop trying to add features to the tile after the feature limit is reached diff --git a/Dockerfile b/Dockerfile index d512627f6..ba2e8e304 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:22.04 AS tippecanoe-builder RUN apt-get update \ - && apt-get -y install build-essential libsqlite3-dev zlib1g-dev + && apt-get -y install make gcc g++ libsqlite3-dev zlib1g-dev COPY . /tmp/tippecanoe-src WORKDIR /tmp/tippecanoe-src @@ -13,7 +13,7 @@ CMD make test # Using multistage build reduces the docker image size by alot by only copying the needed binaries FROM ubuntu:22.04 RUN apt-get update \ - && apt-get -y install libsqlite3-dev zlib1g-dev \ + && apt-get -y install libsqlite3-0 \ && rm -rf /var/lib/apt/lists/* COPY --from=tippecanoe-builder /tmp/tippecanoe-src/tippecanoe* /usr/local/bin/ COPY --from=tippecanoe-builder /tmp/tippecanoe-src/tile-join /usr/local/bin/ diff --git a/Makefile b/Makefile index a39ac0490..f6a1ecc49 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,15 @@ PREFIX ?= /usr/local MANDIR ?= $(PREFIX)/share/man/man1/ BUILDTYPE ?= Release +BUILD_INFO ?= SHELL = /bin/sh # inherit from env if set CC := $(CC) CXX := $(CXX) -CFLAGS := $(CFLAGS) -fPIE -CXXFLAGS := $(CXXFLAGS) -std=c++17 -fPIE +CFLAGS := $(CFLAGS) -fPIE -DBUILD_INFO=$(BUILD_INFO) +CXXFLAGS := $(CXXFLAGS) -std=c++17 -fPIE -DBUILD_INFO=$(BUILD_INFO) LDFLAGS := $(LDFLAGS) WARNING_FLAGS := -Wall -Wshadow -Wsign-compare -Wextra -Wunreachable-code -Wuninitialized -Wshadow RELEASE_FLAGS := -O3 -DNDEBUG @@ -55,10 +56,10 @@ PG= H = $(wildcard *.h) $(wildcard *.hpp) C = $(wildcard *.c) $(wildcard *.cpp) -INCLUDES = -I/usr/local/include -I. +INCLUDES = -I/usr/local/include -I. -Iclipper2/include LIBS = -L/usr/local/lib -tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o dirtiles.o pmtiles_file.o plugin.o read_json.o write_json.o geobuf.o flatgeobuf.o evaluator.o geocsv.o csv.o geojson-loop.o json_logger.o visvalingam.o compression.o clip.o sort.o attribute.o thread.o shared_borders.o +tippecanoe: geojson.o jsonpull/jsonpull.o tile.o pool.o mbtiles.o geometry.o projection.o memfile.o mvt.o serial.o main.o text.o dirtiles.o pmtiles_file.o plugin.o read_json.o write_json.o geobuf.o flatgeobuf.o evaluator.o geocsv.o csv.o geojson-loop.o json_logger.o visvalingam.o compression.o clip.o sort.o attribute.o thread.o shared_borders.o clipper2/src/clipper.engine.o drop.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread tippecanoe-enumerate: enumerate.o @@ -67,16 +68,16 @@ tippecanoe-enumerate: enumerate.o tippecanoe-decode: decode.o projection.o mvt.o write_json.o text.o jsonpull/jsonpull.o dirtiles.o pmtiles_file.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -tile-join: tile-join.o projection.o mbtiles.o mvt.o memfile.o dirtiles.o jsonpull/jsonpull.o text.o evaluator.o csv.o write_json.o pmtiles_file.o clip.o attribute.o thread.o +tile-join: tile-join.o projection.o mbtiles.o mvt.o memfile.o dirtiles.o jsonpull/jsonpull.o text.o evaluator.o csv.o write_json.o pmtiles_file.o clip.o attribute.o thread.o read_json.o clipper2/src/clipper.engine.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread tippecanoe-json-tool: jsontool.o jsonpull/jsonpull.o csv.o text.o geojson-loop.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread -unit: unit.o text.o sort.o mvt.o +unit: unit.o text.o sort.o mvt.o projection.o clip.o attribute.o jsonpull/jsonpull.o evaluator.o read_json.o clipper2/src/clipper.engine.o drop.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread -tippecanoe-overzoom: overzoom.o mvt.o clip.o evaluator.o jsonpull/jsonpull.o text.o attribute.o +tippecanoe-overzoom: overzoom.o mvt.o clip.o evaluator.o jsonpull/jsonpull.o text.o attribute.o read_json.o projection.o read_json.o clipper2/src/clipper.engine.o $(CXX) $(PG) $(LIBS) $(FINAL_FLAGS) $(CXXFLAGS) -o $@ $^ $(LDFLAGS) -lm -lz -lsqlite3 -lpthread -include $(wildcard *.d) @@ -96,7 +97,7 @@ indent: TESTS = $(wildcard tests/*/out/*.json) SPACE = $(NULL) $(NULL) -test: tippecanoe tippecanoe-decode $(addsuffix .check,$(TESTS)) raw-tiles-test parallel-test pbf-test join-test enumerate-test decode-test join-filter-test unit json-tool-test allow-existing-test csv-test layer-json-test pmtiles-test decode-pmtiles-test overzoom-test +test: tippecanoe tippecanoe-decode $(addsuffix .check,$(TESTS)) raw-tiles-test parallel-test pbf-test join-test enumerate-test decode-test join-filter-test unit json-tool-test allow-existing-test csv-test layer-json-test pmtiles-test decode-pmtiles-test overzoom-test accumulate-test ./unit suffixes = json json.gz @@ -279,11 +280,22 @@ overzoom-test: tippecanoe-overzoom cmp tests/pbf/13-1310-3166.pbf.json.check tests/pbf/13-1310-3166.pbf.json rm tests/pbf/13-1310-3166.pbf tests/pbf/13-1310-3166.pbf.json.check # Make sure feature order is stable - ./tippecanoe-overzoom --preserve-input-order -o tests/pbf/11-327-791-out.pbf tests/pbf/11-327-791.pbf 11/327/791 11/327/791 + # Large -b20 tile buffer to prevent altering the geometries by clipping + ./tippecanoe-overzoom -b20 --preserve-input-order -o tests/pbf/11-327-791-out.pbf tests/pbf/11-327-791.pbf 11/327/791 11/327/791 ./tippecanoe-decode tests/pbf/11-327-791.pbf 11 327 791 > tests/pbf/11-327-791.json ./tippecanoe-decode tests/pbf/11-327-791-out.pbf 11 327 791 > tests/pbf/11-327-791-out.json cmp tests/pbf/11-327-791.json tests/pbf/11-327-791-out.json rm tests/pbf/11-327-791.json tests/pbf/11-327-791-out.json tests/pbf/11-327-791-out.pbf + # Basic operation, multiple input form + ./tippecanoe-overzoom -o tests/pbf/13-1310-3166.pbf -t 13/1310/3166 tests/pbf/11-327-791.pbf 11/327/791 + ./tippecanoe-decode tests/pbf/13-1310-3166.pbf 13 1310 3166 > tests/pbf/13-1310-3166.pbf.json.check + cmp tests/pbf/13-1310-3166.pbf.json.check tests/pbf/13-1310-3166.pbf.json + rm tests/pbf/13-1310-3166.pbf tests/pbf/13-1310-3166.pbf.json.check + # Multiple inputs, no compression + ./tippecanoe-overzoom --no-tile-compression -o tests/pbf/13-1310-3166-ne.pbf -t 13/1310/3166 tests/pbf/11-327-791.pbf 11/327/791 tests/pbf/0-0-0.pbf 0/0/0 + ./tippecanoe-decode tests/pbf/13-1310-3166-ne.pbf 13 1310 3166 > tests/pbf/13-1310-3166-ne.pbf.json.check + cmp tests/pbf/13-1310-3166-ne.pbf.json.check tests/pbf/13-1310-3166-ne.pbf.json + rm tests/pbf/13-1310-3166-ne.pbf tests/pbf/13-1310-3166-ne.pbf.json.check # Different detail and buffer, and attribute stripping ./tippecanoe-overzoom -d8 -b30 -y NAME -y name -y scalerank -o tests/pbf/13-1310-3166-8-30.pbf tests/pbf/11-327-791.pbf 11/327/791 13/1310/3166 ./tippecanoe-decode tests/pbf/13-1310-3166-8-30.pbf 13 1310 3166 > tests/pbf/13-1310-3166-8-30.pbf.json.check @@ -314,6 +326,11 @@ overzoom-test: tippecanoe-overzoom ./tippecanoe-decode tests/pbf/0-0-0-pop-expr.pbf 0 0 0 > tests/pbf/0-0-0-pop-expr.pbf.json.check cmp tests/pbf/0-0-0-pop-expr.pbf.json.check tests/pbf/0-0-0-pop-expr.pbf.json rm tests/pbf/0-0-0-pop-expr.pbf tests/pbf/0-0-0-pop-expr.pbf.json.check + # Same filter test, but reading the filter from a file + ./tippecanoe-overzoom -y NAME -J tests/pbf/scalerank-0-filter.json -o tests/pbf/0-0-0-pop-expr.pbf tests/pbf/0-0-0-pop.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/0-0-0-pop-expr.pbf 0 0 0 > tests/pbf/0-0-0-pop-expr.pbf.json.check + cmp tests/pbf/0-0-0-pop-expr.pbf.json.check tests/pbf/0-0-0-pop-expr.pbf.json + rm tests/pbf/0-0-0-pop-expr.pbf tests/pbf/0-0-0-pop-expr.pbf.json.check # Filtering with multiplier # 243 features in the source tile tests/pbf/0-0-0-pop.pbf # 8 features survive into the output, from 9 clusters of 30 @@ -345,6 +362,83 @@ overzoom-test: tippecanoe-overzoom ./tippecanoe-decode tests/pbf/12-2145-1391-filter2.pbf 12 2145 1391 > tests/pbf/12-2145-1391-filter2.pbf.json.check cmp tests/pbf/12-2145-1391-filter2.pbf.json.check tests/pbf/12-2145-1391-filter2.pbf.json rm tests/pbf/12-2145-1391-filter2.pbf.json.check tests/pbf/12-2145-1391-filter2.pbf + # Tiny polygon reduction + ./tippecanoe-overzoom --line-simplification=5 --tiny-polygon-size=50 -o tests/pbf/countries-0-0-0.pbf.out tests/pbf/countries-0-0-0.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/countries-0-0-0.pbf.out 0 0 0 > tests/pbf/countries-0-0-0.pbf.out.json.check + cmp tests/pbf/countries-0-0-0.pbf.out.json.check tests/pbf/countries-0-0-0.pbf.out.json + rm tests/pbf/countries-0-0-0.pbf.out tests/pbf/countries-0-0-0.pbf.out.json.check + # Clipping to bounding box + ./tippecanoe-overzoom --clip-bounding-box 5,5,25.7,50 -o tests/pbf/countries-0-0-0-clip.pbf.out tests/pbf/countries-0-0-0.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/countries-0-0-0-clip.pbf.out 0 0 0 > tests/pbf/countries-0-0-0-clip.pbf.out.json.check + cmp tests/pbf/countries-0-0-0-clip.pbf.out.json.check tests/pbf/countries-0-0-0-clip.pbf.out.json + rm tests/pbf/countries-0-0-0-clip.pbf.out tests/pbf/countries-0-0-0-clip.pbf.out.json.check + # Binning + ./tippecanoe-overzoom -o tests/pbf/bin-11-327-791.pbf.out --assign-to-bins tests/pbf/sf-zips.json tests/pbf/muni-11-327-791.pbf 11/327/791 11/327/791 + ./tippecanoe-decode tests/pbf/bin-11-327-791.pbf.out 11 327 791 > tests/pbf/bin-11-327-791.pbf.out.json.check + cmp tests/pbf/bin-11-327-791.pbf.out.json.check tests/pbf/bin-11-327-791.pbf.out.json + rm tests/pbf/bin-11-327-791.pbf.out.json.check tests/pbf/bin-11-327-791.pbf.out + # Binning by id + ./tippecanoe-overzoom -o tests/pbf/bin-11-327-791-ids.pbf.out --assign-to-bins tests/pbf/sf-zips.json --bin-by-id-list bin-ids tests/pbf/yearbuilt.pbf 11/327/791 11/327/791 + ./tippecanoe-decode tests/pbf/bin-11-327-791-ids.pbf.out 11 327 791 > tests/pbf/bin-11-327-791-ids.pbf.out.json.check + cmp tests/pbf/bin-11-327-791-ids.pbf.out.json.check tests/pbf/bin-11-327-791-ids.pbf.out.json + rm tests/pbf/bin-11-327-791-ids.pbf.out.json.check tests/pbf/bin-11-327-791-ids.pbf.out + # Binning by id, clipping by polygon + ./tippecanoe-overzoom -o tests/pbf/bin-11-327-791-ids-clip.pbf.out --clip-polygon='{"coordinates":[[[-122.4527379,37.8128815],[-122.4598853,37.7834743],[-122.4280914,37.7959397],[-122.4527379,37.8128815]]],"type":"Polygon"}' --assign-to-bins tests/pbf/sf-zips.json --bin-by-id-list bin-ids tests/pbf/yearbuilt.pbf 11/327/791 11/327/791 + ./tippecanoe-decode tests/pbf/bin-11-327-791-ids-clip.pbf.out 11 327 791 > tests/pbf/bin-11-327-791-ids-clip.pbf.out.json.check + cmp tests/pbf/bin-11-327-791-ids-clip.pbf.out.json.check tests/pbf/bin-11-327-791-ids-clip.pbf.out.json + rm tests/pbf/bin-11-327-791-ids-clip.pbf.out.json.check tests/pbf/bin-11-327-791-ids-clip.pbf.out + # Binning by id, clipping by polygon from file + ./tippecanoe-overzoom -o tests/pbf/bin-11-327-791-ids-clip.pbf.out --clip-polygon-file=tests/pbf/clip-poly.json --assign-to-bins tests/pbf/sf-zips.json --bin-by-id-list bin-ids tests/pbf/yearbuilt.pbf 11/327/791 11/327/791 + ./tippecanoe-decode tests/pbf/bin-11-327-791-ids-clip.pbf.out 11 327 791 > tests/pbf/bin-11-327-791-ids-clip.pbf.out.json.check + cmp tests/pbf/bin-11-327-791-ids-clip.pbf.out.json.check tests/pbf/bin-11-327-791-ids-clip.pbf.out.json + rm tests/pbf/bin-11-327-791-ids-clip.pbf.out.json.check tests/pbf/bin-11-327-791-ids-clip.pbf.out + # Binning by id, attribute stripping + # Note that it still works even if we exclude the ID that we are binning by + ./tippecanoe-overzoom -yZCTA5CE10 -ytippecanoe:count -o tests/pbf/bin-11-327-791-ids-zip.pbf.out --assign-to-bins tests/pbf/sf-zips.json --bin-by-id-list bin-ids tests/pbf/yearbuilt.pbf 11/327/791 11/327/791 + ./tippecanoe-decode tests/pbf/bin-11-327-791-ids-zip.pbf.out 11 327 791 > tests/pbf/bin-11-327-791-ids-zip.pbf.out.json.check + cmp tests/pbf/bin-11-327-791-ids-zip.pbf.out.json.check tests/pbf/bin-11-327-791-ids-zip.pbf.out.json + rm tests/pbf/bin-11-327-791-ids-zip.pbf.out.json.check tests/pbf/bin-11-327-791-ids-zip.pbf.out + # Binning with longitude wraparound problems + ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-2-0-1.pbf.out --accumulate-numeric-attributes=tippecanoe --assign-to-bins tests/pbf/h3-2-0-1.geojson tests/pbf/0-0-0.pbf 2/0/1 2/0/1 + ./tippecanoe-decode tests/pbf/0-0-0-pop-2-0-1.pbf.out 2 0 1 > tests/pbf/0-0-0-pop-2-0-1.pbf.out.json.check + cmp tests/pbf/0-0-0-pop-2-0-1.pbf.out.json.check tests/pbf/0-0-0-pop-2-0-1.pbf.out.json + rm tests/pbf/0-0-0-pop-2-0-1.pbf.out tests/pbf/0-0-0-pop-2-0-1.pbf.out.json.check + ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-1-1-0.pbf.out --accumulate-numeric-attributes=tippecanoe --assign-to-bins tests/pbf/h3-1-1-0.geojson tests/pbf/0-0-0.pbf 1/1/0 1/1/0 + ./tippecanoe-decode tests/pbf/0-0-0-pop-1-1-0.pbf.out 1 1 0 > tests/pbf/0-0-0-pop-1-1-0.pbf.out.json.check + cmp tests/pbf/0-0-0-pop-1-1-0.pbf.out.json.check tests/pbf/0-0-0-pop-1-1-0.pbf.out.json + rm tests/pbf/0-0-0-pop-1-1-0.pbf.out tests/pbf/0-0-0-pop-1-1-0.pbf.out.json.check + ./tippecanoe-overzoom -o tests/pbf/0-0-0-pop-0-0-0.pbf.out --accumulate-numeric-attributes=tippecanoe --assign-to-bins tests/pbf/h3-0-0-0.geojson tests/pbf/0-0-0.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/0-0-0-pop-0-0-0.pbf.out 0 0 0 > tests/pbf/0-0-0-pop-0-0-0.pbf.out.json.check + cmp tests/pbf/0-0-0-pop-0-0-0.pbf.out.json.check tests/pbf/0-0-0-pop-0-0-0.pbf.out.json + rm tests/pbf/0-0-0-pop-0-0-0.pbf.out tests/pbf/0-0-0-pop-0-0-0.pbf.out.json.check + # Binning, clipping to bounding box + ./tippecanoe-overzoom --clip-bounding-box 88,67.5,138,78 -o tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out --accumulate-numeric-attributes=tippecanoe --assign-to-bins tests/pbf/h3-1-1-0.geojson tests/pbf/0-0-0.pbf 1/1/0 1/1/0 + ./tippecanoe-decode tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out 1 1 0 > tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out.json.check + cmp tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out.json.check tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out.json + rm tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out.json.check + # Verify fix for crash + ./tippecanoe-overzoom '-o' tests/10188-crash/out.pbf '-t' '3/2/2' '--assign-to-bins' 'tests/10188-crash/bins.json' '--bin-by-id-list' 'felt:bin_features' '-b5' 'tests/10188-crash/2-0-0.pbf' '2/0/0' + rm tests/10188-crash/out.pbf + # Polygon clipping + ./tippecanoe-overzoom -o tests/pbf/countries-1-1-0-clip.pbf --clip-polygon "`cat tests/pbf/region.json`" tests/pbf/countries-1-1-0.pbf 1/1/0 1/1/0 + ./tippecanoe-decode tests/pbf/countries-1-1-0-clip.pbf 1 1 0 > tests/pbf/countries-1-1-0-clip.json.check + cmp tests/pbf/countries-1-1-0-clip.json.check tests/pbf/countries-1-1-0-clip.json + rm tests/pbf/countries-1-1-0-clip.pbf tests/pbf/countries-1-1-0-clip.json.check + # LineString clipping + ./tippecanoe-overzoom -o tests/pbf/roads-1-1-0-clip.pbf --clip-polygon "`cat tests/pbf/region.json`" tests/pbf/roads-1-1-0.pbf 1/1/0 1/1/0 + ./tippecanoe-decode tests/pbf/roads-1-1-0-clip.pbf 1 1 0 > tests/pbf/roads-1-1-0-clip.json.check + cmp tests/pbf/roads-1-1-0-clip.json.check tests/pbf/roads-1-1-0-clip.json + rm tests/pbf/roads-1-1-0-clip.pbf tests/pbf/roads-1-1-0-clip.json.check + # Point clipping + ./tippecanoe-overzoom -o tests/pbf/places-1-1-0-clip.pbf --clip-polygon "`cat tests/pbf/region.json`" tests/pbf/places-1-1-0.pbf 1/1/0 1/1/0 + ./tippecanoe-decode tests/pbf/places-1-1-0-clip.pbf 1 1 0 > tests/pbf/places-1-1-0-clip.json.check + cmp tests/pbf/places-1-1-0-clip.json.check tests/pbf/places-1-1-0-clip.json + rm tests/pbf/places-1-1-0-clip.pbf tests/pbf/places-1-1-0-clip.json.check + # Polygon clipping, with excessively large clip region + ./tippecanoe-overzoom -b10 -o tests/pbf/countries-8-135-86-bigclip.pbf --clip-polygon "`cat tests/pbf/region.json`" tests/pbf/countries-1-1-0.pbf 1/1/0 8/135/86 + ./tippecanoe-decode tests/pbf/countries-8-135-86-bigclip.pbf 8 135 86 > tests/pbf/countries-8-135-86-bigclip.json.check + cmp tests/pbf/countries-8-135-86-bigclip.json.check tests/pbf/countries-8-135-86-bigclip.json + rm tests/pbf/countries-8-135-86-bigclip.pbf tests/pbf/countries-8-135-86-bigclip.json.check join-test: tippecanoe tippecanoe-decode tile-join ./tippecanoe -q -f -z12 -o tests/join-population/tabblock_06001420.mbtiles -YALAND10:'Land area' -L'{"file": "tests/join-population/tabblock_06001420.json", "description": "population"}' @@ -481,6 +575,131 @@ join-test: tippecanoe tippecanoe-decode tile-join cmp tests/ne_110m_ocean/join/joined.mbtiles.json.check tests/ne_110m_ocean/join/joined.mbtiles.json rm -f tests/ne_110m_ocean/join/ocean.mbtiles tests/ne_110m_ocean/join/countries.mbtiles tests/ne_110m_ocean/join/joined.mbtiles tests/ne_110m_ocean/join/joined.mbtiles.json.check +accumulate-test: + # there are 144 features with POP1950 in the original dataset + test `grep '"POP1950": [0-9]' tests/ne_110m_populated_places_nulls/in.json | wc -l` == 144 + # and 99 without it + test `grep '"POP1950": null' tests/ne_110m_populated_places_nulls/in.json | wc -l` == 99 + ./tippecanoe -yNAME -yPOP1950 -yclustered:cluster_size -yclustered:unrelated -q -z3 -r1.75 -b0 -f -e tests/pbf/accum.dir --accumulate-numeric-attributes=clustered --set-attribute '{"clustered:cluster_size":1}' --accumulate-attribute '{"clustered:cluster_size":"sum"}' --retain-points-multiplier 3 tests/ne_110m_populated_places_nulls/in.json + # at this drop rate, there are 61 points at z0 that have no POP1950s clustered onto them.... + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | wc -l` == 61 + # 26 of which have no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 26 + # 35 of which do have POP1950 + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 35 + # plus 60 that are clustered + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 60 + # the 60 clustered POP1950s have a total count of 109 + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep 'clustered:count:POP1950' | sed 's/.*"clustered:count:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 109 + # we have already established that there are 36 bare POP1950s + # which makes a total of 144, which is the total count expected + # + # meanwhile, regular attribute accumulation. + # there are 121 features in the z0 tile, and they all have clustered:cluster_size + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep 'clustered:cluster_size' | wc -l` == 121 + # there are no features that lack it. + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'clustered:cluster_size' | wc -l` == 0 + # they add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + # Make sure we do *not* accumulate a numeric attribute that already has the magic prefix: + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep sum:clustered:unrelated | wc -l` == 0 + # But that we *do* preserve those attributes into the output features: + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep clustered:unrelated | wc -l` == 61 + # + # on to the sums: + # in the original data set, the POP1950s that are present add up to 161590 + test `grep '"POP1950": [0-9]' tests/ne_110m_populated_places_nulls/in.json | sed 's/.*"POP1950": //' | awk '{sum += $$1} END {print sum}' ` == 161590 + # in the z0 tile, the clustered POP1950s add up to 116967 + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep 'clustered:sum:POP1950' | sed 's/.*"clustered:sum:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 116967 + # and the non-clustered ones add up to 44623 + test `./tippecanoe-decode -c tests/pbf/accum.dir/0/0/0.pbf 0 0 0 | grep -v 'clustered:sum:POP1950' | grep POP1950 | sed 's/.*"POP1950": //' | awk '{sum += $$1} END {print sum}'` == 44623 + # which is the correct 161590 + # + # OK, so do these still hold after megatile filtering? + ./tippecanoe-overzoom --accumulate-numeric-attributes=clustered --accumulate-attribute '{"clustered:cluster_size":"sum"}' -m -o tests/pbf/accum-0-0-0.pbf tests/pbf/accum.dir/0/0/0.pbf 0/0/0 0/0/0 + # Now there are 40 features with POP1950 clusters + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 40 + # There are 4 with bare POP1950 + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 4 + # And 2 with no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 2 + # (which is the same as you get if you don't use -retain-points-multiplier when creating the tileset) + # + # the clustered and megatile-filtered POP1950s add up to 146370 + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep 'clustered:sum:POP1950' | sed 's/.*"clustered:sum:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 146370 + # the non-clustered but megatile-filtered POP1950s add up to 15220 + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'clustered:sum:POP1950' | grep POP1950 | sed 's/.*"POP1950": //' | awk '{sum += $$1} END {print sum}'` == 15220 + # which add up to 161590 so we have the right global total + # Make sure we do *not* accumulate a numeric attribute that already has the magic prefix: + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep sum:clustered:unrelated | wc -l` == 0 + # But that we *do* preserve those attributes into the output features: + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep clustered:unrelated | wc -l` == 22 + # the cluster sizes still add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + # + # We actually want to serve point tiles without the numeric accumulations, + # but with cluster size, so test that combination: + ./tippecanoe-overzoom --accumulate-attribute '{"clustered:cluster_size":"sum"}' --exclude-prefix clustered:sum --exclude-prefix clustered:count --exclude-prefix clustered:min --exclude-prefix clustered:max --exclude-prefix clustered:mean -m -o tests/pbf/accum-0-0-0.pbf tests/pbf/accum.dir/0/0/0.pbf 0/0/0 0/0/0 + # There are no POP1950 clusters + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 0 + # But there are still 28 with bare POP1950 + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 28 + # And 18 with no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 18 + # which matches the 46 features that you get if you tile without --retain-points-multiplier. + # the cluster sizes still add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/accum-0-0-0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + # + # Now on to binning! + ./tippecanoe-overzoom --assign-to-bins tests/pbf/h3-0-0-0.geojson --accumulate-numeric-attributes=clustered --accumulate-attribute '{"clustered:cluster_size":"sum"}' -o tests/pbf/bins-0-0-0.pbf tests/pbf/accum.dir/0/0/0.pbf 0/0/0 0/0/0 + # Now there are 30 bins with POP1950 clusters + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 41 + # There are none with bare POP1950 (which is expected; we should only have summary statistics) + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 0 + # And 4 with no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 3 + # + # the clustered and megatile-filtered and binned POP1950s add up to 161590 + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep 'clustered:sum:POP1950' | sed 's/.*"clustered:sum:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 161590 + # which is the right global total + # Make sure we do *not* accumulate a numeric attribute that already has the magic prefix: + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep sum:clustered:unrelated | wc -l` == 0 + # And those attributes do *not* make it onto the bins + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep clustered:unrelated | wc -l` == 0 + # the cluster sizes still add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + # + # Binning with attribute stripping + ./tippecanoe-overzoom -y clustered:count:POP1950 -y clustered:sum:POP1950 -y POP1950 -y clustered:cluster_size --assign-to-bins tests/pbf/h3-0-0-0.geojson --accumulate-numeric-attributes=clustered --accumulate-attribute '{"clustered:cluster_size":"sum"}' -o tests/pbf/bins-0-0-0.pbf tests/pbf/accum.dir/0/0/0.pbf 0/0/0 0/0/0 + # Now there are 30 bins with POP1950 clusters + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep 'clustered:count:POP1950' | wc -l` == 41 + # There are none with bare POP1950 (which is expected; we should only have summary statistics) + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep -v 'clustered:count:POP1950' | grep 'POP1950' | wc -l` == 0 + # And 4 with no POP1950 at all + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep -v 'POP1950' | wc -l` == 3 + # + # the clustered and megatile-filtered and binned POP1950s add up to 161590 + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep 'clustered:sum:POP1950' | sed 's/.*"clustered:sum:POP1950": //' | awk '{sum += $$1} END {print sum}'` == 161590 + # which is the right global total + # Make sure we do *not* accumulate a numeric attribute that already has the magic prefix: + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep sum:clustered:unrelated | wc -l` == 0 + # And those attributes do *not* make it onto the bins + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | grep clustered:unrelated | wc -l` == 0 + # the cluster sizes still add up to the 243 original features + test `./tippecanoe-decode -c tests/pbf/bins-0-0-0.pbf 0 0 0 | sed 's/.*clustered:cluster_size": //' | awk '{sum += $$1} END {print sum}'` == 243 + # + # + # A tile where the counts and means were previously wrong: + ./tippecanoe-overzoom --accumulate-numeric-attributes=felt -m -o tests/pbf/yearbuilt-accum.pbf tests/pbf/yearbuilt.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/yearbuilt-accum.pbf 0 0 0 > tests/pbf/yearbuilt-accum.pbf.json.check + cmp tests/pbf/yearbuilt-accum.pbf.json.check tests/pbf/yearbuilt-accum.pbf.json + rm tests/pbf/yearbuilt-accum.pbf tests/pbf/yearbuilt-accum.pbf.json.check + # Same tile, with attribute stripping + ./tippecanoe-overzoom --accumulate-numeric-attributes=felt -y bldgsqft -y felt:sum:bldgsqft -m -o tests/pbf/yearbuilt-accum-bldgsqft.pbf tests/pbf/yearbuilt.pbf 0/0/0 0/0/0 + ./tippecanoe-decode tests/pbf/yearbuilt-accum-bldgsqft.pbf 0 0 0 > tests/pbf/yearbuilt-accum-bldgsqft.pbf.json.check + cmp tests/pbf/yearbuilt-accum-bldgsqft.pbf.json.check tests/pbf/yearbuilt-accum-bldgsqft.pbf.json + rm tests/pbf/yearbuilt-accum-bldgsqft.pbf tests/pbf/yearbuilt-accum-bldgsqft.pbf.json.check + join-filter-test: tippecanoe tippecanoe-decode tile-join # Comes out different from the direct tippecanoe run because null attributes are lost ./tippecanoe -q -z0 -f -o tests/feature-filter/out/all.mbtiles tests/feature-filter/in.json diff --git a/README.md b/README.md index 5621fcc2a..53b7b03f3 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,11 @@ Builds [vector tilesets](https://github.com/mapbox/vector-tile-spec/) from large This is the official home of Tippecanoe, developed and actively maintained by [Erica Fischer](https://github.com/e-n-f) at [Felt](https://felt.com). +For a self-hosted, API driven version of Tippecanoe, contact a technical sales engineer at sales@felt.com. Felt produces highly performant, automatically projected versions of your data, and utilizes a rendering engine, built on top of [MapLibre GL JS](https://github.com/maplibre/maplibre-gl-js), to style vector and raster data. + Version 2.0.0 is equivalent to [1.36.0](https://github.com/mapbox/tippecanoe/tree/1.36.0) in the original repository. Thank you Mapbox for the many years of early support. + Intent ------ @@ -349,6 +352,7 @@ Parallel processing will also be automatic if the input file is in FlatGeobuf fo specified maximum zoom and to any levels added beyond that. * `--extend-zooms-if-still-dropping-maximum=`_count_: Increase the maxzoom if features are still being dropped at that zoom level by up to _count_ zoom levels. + * `-at` or `--generate-variable-depth-tile-pyramid`: Don't produce child tiles for any tile that should be sufficient to be overzoomed to any higher zoom level. Such tiles will be produced with maximum detail and no simplification or polygon cleaning. Tiles with point features below the basezoom or where any features have to be dropped dynamically, or which contain too many features or bytes with full detail, will be written out with normal detail and split into child tiles. Tilesets generated with this option are suitable for use only with tile servers that will find the appropriate tile to overzoom from and will simplify and clean the geometries appropriately before serving the tile. * `-R` _zoom_`/`_x_`/`_y_ or `--one-tile=`_zoom_`/`_x_`/`_y_: Set the minzoom and maxzoom to _zoom_ and produce only the single specified tile at that zoom level. @@ -420,6 +424,7 @@ be reduced to the maximum that can be used with the specified _maxzoom_. * `-aI` or `--convert-stringified-ids-to-numbers`: If a feature ID is the string representation of a number, convert it to a plain number to use as the feature ID. * `--use-attribute-for-id=`*name*: Use the attribute with the specified *name* as if it were specified as the feature ID. (If this attribute is a stringified number, you must also use `-aI` to convert it to a number.) * `-pN` or `--single-precision`: Write double-precision numeric attribute values to tiles as single-precision to reduce tile size. + * `--maximum-string-attribute-length`=_length_: Truncate string attributes that exceed the specified length in bytes. ### Filtering features by attributes @@ -528,6 +533,7 @@ the same layer, enclose them in an `all` expression so they will all be evaluate * `-ag` or `--calculate-feature-density`: Add a new attribute, `tippecanoe_feature_density`, to each feature, to record how densely features are spaced in that area of the tile. You can use this attribute in the style to produce a glowing effect where points are densely packed. It can range from 0 in the sparsest areas to 255 in the densest. * `-ai` or `--generate-ids`: Add an `id` (a feature ID, not an attribute named `id`) to each feature that does not already have one. There is currently no guarantee that the `id` added will be stable between runs or that it will not conflict with manually-assigned feature IDs. Future versions of Tippecanoe may change the mechanism for allocating IDs. + * `-aX` or `--calculate-feature-index`: Add a `tippecanoe:index` field to each feature, giving its index in the quadkey or hilbert sequence. ### Trying to correct bad source geometry @@ -702,7 +708,7 @@ uses md2man (`gem install md2man`). Linux: - sudo apt-get install build-essential libsqlite3-dev zlib1g-dev + sudo apt-get install gcc g++ make libsqlite3-dev zlib1g-dev Then build: @@ -987,10 +993,15 @@ to turn those into moderate detail tiles at high zoom levels, for the benefit of renderers that cannot internally overzoom high-resolution tiles without losing some of the precision. Running: - tippecanoe-overzoom -o out.mvt.gz inz/inx/iny outz/outx/outy in.mvt.gz + tippecanoe-overzoom -o out.mvt.gz in.mvt.gz inz/inx/iny outz/outx/outy reads tile `inz/inx/iny` of `in.mvt.gz` and produces tile `outz/outx/outy` of `out.mvt.gz`. + tippecanoe-overzoom -o out.mvt.gz -t outz/outx/outy in.mvt.gz inz/inx/iny in2.mvt.gz in2z/in2x/in2y in3.mvt.gz in3z/in3x/in3y + +reads tile `inz/inx/iny` of `in.mvt.gz`, tile `in2z/in2x/in2y` of `in2.mvt.gz`, and tile `in3z/in3x/in3y` of `in3.mvt.gz`, +and produces tile `outz/outx/outy` of `out.mvt.gz` from them. + ### Options * `-b` *buffer*: Set the tile buffer in the output tile (default 5) diff --git a/attribute.cpp b/attribute.cpp index 56849867d..2feb224d5 100644 --- a/attribute.cpp +++ b/attribute.cpp @@ -6,6 +6,13 @@ #include "jsonpull/jsonpull.h" #include "milo/dtoa_milo.h" +std::map numeric_operations = { + {"sum", op_sum}, + {"min", op_min}, + {"max", op_max}, + {"count", op_count}, +}; + void set_attribute_accum(std::unordered_map &attribute_accum, std::string name, std::string type) { attribute_op t; @@ -23,8 +30,10 @@ void set_attribute_accum(std::unordered_map &attribut t = op_concat; } else if (type == "comma") { t = op_comma; + } else if (type == "count") { + t = op_count; } else { - fprintf(stderr, "Attribute method (%s) must be sum, product, mean, max, min, concat, or comma\n", type.c_str()); + fprintf(stderr, "Attribute method (%s) must be sum, product, mean, max, min, concat, comma, or count\n", type.c_str()); exit(EXIT_ARGS); } @@ -79,68 +88,119 @@ void set_attribute_accum(std::unordered_map &attribut set_attribute_accum(attribute_accum, name, type); } -void preserve_attribute(attribute_op const &op, std::string const &key, serial_val const &val, std::vector &full_keys, std::vector &full_values, std::unordered_map &attribute_accum_state) { +template +static void preserve_attribute1(attribute_op const &op, std::string const &key, T const &val, std::vector> &full_keys, std::vector &full_values, std::unordered_map &attribute_accum_state, key_pool &key_pool) { for (size_t i = 0; i < full_keys.size(); i++) { - if (key == full_keys[i]) { + if (key == *full_keys[i]) { switch (op) { case op_sum: - full_values[i].s = milo::dtoa_milo(atof(full_values[i].s.c_str()) + atof(val.s.c_str())); - full_values[i].type = mvt_double; - break; + full_values[i] = (full_values[i].to_double() + val.to_double()); + return; case op_product: - full_values[i].s = milo::dtoa_milo(atof(full_values[i].s.c_str()) * atof(val.s.c_str())); - full_values[i].type = mvt_double; - break; + full_values[i] = (full_values[i].to_double() * val.to_double()); + return; case op_max: { - double existing = atof(full_values[i].s.c_str()); - double maybe = atof(val.s.c_str()); + double existing = full_values[i].to_double(); + double maybe = val.to_double(); if (maybe > existing) { - full_values[i].s = val.s.c_str(); - full_values[i].type = mvt_double; + full_values[i] = val; } - break; + return; } case op_min: { - double existing = atof(full_values[i].s.c_str()); - double maybe = atof(val.s.c_str()); + double existing = full_values[i].to_double(); + double maybe = val.to_double(); if (maybe < existing) { - full_values[i].s = val.s.c_str(); - full_values[i].type = mvt_double; + full_values[i] = val; } - break; + return; } case op_mean: { auto state = attribute_accum_state.find(key); if (state == attribute_accum_state.end()) { accum_state s; - s.sum = atof(full_values[i].s.c_str()) + atof(val.s.c_str()); + s.sum = full_values[i].to_double() + val.to_double(); s.count = 2; attribute_accum_state.insert(std::pair(key, s)); - full_values[i].s = milo::dtoa_milo(s.sum / s.count); + full_values[i] = (s.sum / s.count); } else { - state->second.sum += atof(val.s.c_str()); + state->second.sum += val.to_double(); state->second.count += 1; - full_values[i].s = milo::dtoa_milo(state->second.sum / state->second.count); + full_values[i] = (state->second.sum / state->second.count); } - break; + return; } case op_concat: - full_values[i].s += val.s; - full_values[i].type = mvt_string; - break; + full_values[i].set_string_value(full_values[i].get_string_value() + val.get_string_value()); + return; case op_comma: - full_values[i].s += std::string(",") + val.s; - full_values[i].type = mvt_string; - break; + full_values[i].set_string_value(full_values[i].get_string_value() + "," + val.get_string_value()); + return; + + case op_count: { + auto state = attribute_accum_state.find(key); + if (state == attribute_accum_state.end()) { // not already present + accum_state s; + s.count = 2; + attribute_accum_state.insert(std::pair(key, s)); + + full_values[i] = (s.count); + } else { // already present, incrementing + state->second.count += 1; + full_values[i] = (state->second.count); + } + return; + } } } } + + // not found, so we are making a new value + + T v; + switch (op) { + case op_sum: + case op_max: + case op_min: + v = val; + break; + + case op_count: { + auto state = attribute_accum_state.find(key); + if (state == attribute_accum_state.end()) { // not already present + accum_state s; + s.count = 1; + attribute_accum_state.insert(std::pair(key, s)); + + v = (s.count); + } else { // already present, incrementing + fprintf(stderr, "preserve_attribute: can't happen (count)\n"); + exit(EXIT_IMPOSSIBLE); + } + break; + } + + default: + fprintf(stderr, "can't happen: operation that isn't used by --accumulate-numeric-attributes\n"); + exit(EXIT_IMPOSSIBLE); + } + + full_keys.push_back(key_pool.pool(key)); + full_values.push_back(v); +} + +void preserve_attribute(attribute_op const &op, std::string const &key, mvt_value const &val, std::vector> &full_keys, std::vector &full_values, std::unordered_map &attribute_accum_state, key_pool &key_pool) { + preserve_attribute1(op, key, val, full_keys, full_values, attribute_accum_state, key_pool); +} + +void preserve_attribute(attribute_op const &op, std::string const &key, serial_val const &val, std::vector> &full_keys, std::vector &full_values, std::unordered_map &attribute_accum_state, key_pool &key_pool) { + preserve_attribute1(op, key, val, full_keys, full_values, attribute_accum_state, key_pool); } diff --git a/attribute.hpp b/attribute.hpp index 865bac153..5dd9f2a2f 100644 --- a/attribute.hpp +++ b/attribute.hpp @@ -3,6 +3,10 @@ #include #include +#include +#include +#include "mvt.hpp" +#include "milo/dtoa_milo.h" enum attribute_op { op_sum, @@ -12,6 +16,7 @@ enum attribute_op { op_comma, op_max, op_min, + op_count, }; struct accum_state { @@ -20,9 +25,14 @@ struct accum_state { }; struct serial_val; +struct key_pool; void set_attribute_accum(std::unordered_map &attribute_accum, std::string name, std::string type); void set_attribute_accum(std::unordered_map &attribute_accum, const char *arg, char **argv); -void preserve_attribute(attribute_op const &op, const std::string &key, serial_val const &val, std::vector &full_keys, std::vector &full_values, std::unordered_map &attribute_accum_state); + +void preserve_attribute(attribute_op const &op, std::string const &key, serial_val const &val, std::vector> &full_keys, std::vector &full_values, std::unordered_map &attribute_accum_state, key_pool &key_pool); +void preserve_attribute(attribute_op const &op, std::string const &key, mvt_value const &val, std::vector> &full_keys, std::vector &full_values, std::unordered_map &attribute_accum_state, key_pool &key_pool); + +extern std::map numeric_operations; #endif diff --git a/clip.cpp b/clip.cpp index 4b11a3dd8..76d23089c 100644 --- a/clip.cpp +++ b/clip.cpp @@ -1,7 +1,10 @@ +#include +#include #include #include #include #include +#include #include #include "geometry.hpp" #include "errors.hpp" @@ -10,6 +13,8 @@ #include "evaluator.hpp" #include "serial.hpp" #include "attribute.hpp" +#include "projection.hpp" +#include "read_json.hpp" static std::vector> clip_poly1(std::vector> &geom, long long minx, long long miny, long long maxx, long long maxy, @@ -340,7 +345,7 @@ drawvec clean_or_clip_poly(drawvec &geom, int z, int buffer, bool clip, bool try if (k != i) { fprintf(f, ","); } - fprintf(f, "[%lld,%lld]", geom[k].x, geom[k].y); + fprintf(f, "[%lld,%lld]", (long long) geom[k].x, (long long) geom[k].y); } fprintf(f, "]"); @@ -382,6 +387,123 @@ drawvec clean_or_clip_poly(drawvec &geom, int z, int buffer, bool clip, bool try return ret; } +drawvec clip_poly_poly(drawvec const &geom, drawvec const &bounds) { + mapbox::geometry::multi_polygon result; + + { + mapbox::geometry::wagyu::wagyu wagyu; + + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_MOVETO) { + mapbox::geometry::linear_ring lr; + lr.push_back(mapbox::geometry::point(geom[i].x, geom[i].y)); + + size_t j; + for (j = i + 1; j < geom.size(); j++) { + if (geom[j].op != VT_LINETO) { + break; + } + lr.push_back(mapbox::geometry::point(geom[j].x, geom[j].y)); + } + + if (lr.size() >= 4) { + wagyu.add_ring(lr); + } + + i = j - 1; + } + } + + for (size_t i = 0; i < bounds.size(); i++) { + if (bounds[i].op == VT_MOVETO) { + mapbox::geometry::linear_ring lr; + lr.push_back(mapbox::geometry::point(bounds[i].x, bounds[i].y)); + + size_t j; + for (j = i + 1; j < bounds.size(); j++) { + if (bounds[j].op != VT_LINETO) { + break; + } + lr.push_back(mapbox::geometry::point(bounds[j].x, bounds[j].y)); + } + + if (lr.size() >= 4) { + wagyu.add_ring(lr, mapbox::geometry::wagyu::polygon_type_clip); + } + + i = j - 1; + } + } + + try { + result.clear(); + wagyu.execute(mapbox::geometry::wagyu::clip_type_intersection, result, mapbox::geometry::wagyu::fill_type_positive, mapbox::geometry::wagyu::fill_type_positive); + } catch (std::runtime_error &e) { + fprintf(stderr, "Internal error: Polygon clipping failed\n"); + exit(EXIT_IMPOSSIBLE); + } + } + + drawvec ret; + decode_clipped(result, ret, 1); + return ret; +} + +drawvec clip_point_poly(drawvec const &geom, drawvec const &bounds) { + drawvec out; + for (auto const &p : geom) { + if (pnpoly_mp(bounds, p.x, p.y)) { + out.push_back(p); + } + } + return out; +} + +static Clipper2Lib::Paths64 geom_to_clipper(drawvec const &geom) { + Clipper2Lib::Paths64 subject; + + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_MOVETO) { + Clipper2Lib::Path64 path({{geom[i].x, geom[i].y}}); + size_t j; + for (j = i + 1; j < geom.size(); j++) { + if (geom[j].op != VT_LINETO) { + break; + } + path.emplace_back(geom[j].x, geom[j].y); + } + subject.push_back(path); + } + } + + return subject; +} + +static void clipper_to_geom(Clipper2Lib::Paths64 const &geom, drawvec &out) { + for (auto const &ring : geom) { + for (size_t i = 0; i < ring.size(); i++) { + out.emplace_back(i == 0 ? VT_MOVETO : VT_LINETO, ring[i].x, ring[i].y); + } + } +} + +drawvec clip_lines_poly(drawvec const &geom, drawvec const ®ion) { + Clipper2Lib::Paths64 subject = geom_to_clipper(geom); + Clipper2Lib::Paths64 clip = geom_to_clipper(region); + + Clipper2Lib::Clipper64 clipper; + clipper.AddOpenSubject(subject); + clipper.AddClip(clip); + + Clipper2Lib::Paths64 solution, open_solution; + clipper.Execute(Clipper2Lib::ClipType::Intersection, Clipper2Lib::FillRule::Positive, solution, open_solution); + + drawvec out; + clipper_to_geom(solution, out); + clipper_to_geom(open_solution, out); + return out; +} + void to_tile_scale(drawvec &geom, int z, int detail) { if (32 - detail - z < 0) { for (size_t i = 0; i < geom.size(); i++) { @@ -755,308 +877,1415 @@ static std::vector> clip_poly1(std::vector const &keep, bool do_compress, - std::vector> *next_overzoomed_tiles, - bool demultiply, json_object *filter, bool preserve_input_order, std::unordered_map const &attribute_accum, std::vector const &unidecode_data) { - mvt_tile tile; +double distance_from_line(long long point_x, long long point_y, long long segA_x, long long segA_y, long long segB_x, long long segB_y) { + long long p2x = segB_x - segA_x; + long long p2y = segB_y - segA_y; - try { - bool was_compressed; - if (!tile.decode(s, was_compressed)) { - fprintf(stderr, "Couldn't parse tile %d/%u/%u\n", oz, ox, oy); - exit(EXIT_MVT); - } - } catch (std::exception const &e) { - fprintf(stderr, "PBF decoding error in tile %d/%u/%u\n", oz, ox, oy); - exit(EXIT_PROTOBUF); + // These calculations must be made in integers instead of floating point + // to make them consistent between x86 and arm floating point implementations. + // + // Coordinates may be up to 34 bits, so their product is up to 68 bits, + // making their sum up to 69 bits. Downshift before multiplying to keep them in range. + double something = ((p2x / 4) * (p2x / 8) + (p2y / 4) * (p2y / 8)) * 32.0; + // likewise + double u = (0 == something) ? 0 : ((point_x - segA_x) / 4 * (p2x / 8) + (point_y - segA_y) / 4 * (p2y / 8)) * 32.0 / (something); + + if (u >= 1) { + u = 1; + } else if (u <= 0) { + u = 0; } - return overzoom(tile, oz, ox, oy, nz, nx, ny, detail, buffer, keep, do_compress, next_overzoomed_tiles, demultiply, filter, preserve_input_order, attribute_accum, unidecode_data); -} + double x = segA_x + u * p2x; + double y = segA_y + u * p2y; -struct tile_feature { - drawvec geom; - int t; - bool has_id; - unsigned long long id; - std::vector tags; - mvt_layer const *layer; - size_t seq = 0; -}; + double dx = x - point_x; + double dy = y - point_y; -static void feature_out(std::vector const &features, mvt_layer &outlayer, std::set const &keep, std::unordered_map const &attribute_accum, std::shared_ptr const &tile_stringpool) { - // Add geometry to output feature + double out = std::round(sqrt(dx * dx + dy * dy) * 16.0) / 16.0; + return out; +} - mvt_feature outfeature; - outfeature.type = features[0].t; - for (auto const &g : features[0].geom) { - outfeature.geometry.emplace_back(g.op, g.x, g.y); +// https://github.com/Project-OSRM/osrm-backend/blob/733d1384a40f/Algorithms/DouglasePeucker.cpp +void douglas_peucker(drawvec &geom, int start, int n, double e, size_t kept, size_t retain, bool prevent_simplify_shared_nodes) { + std::stack recursion_stack; + + if (!geom[start + 0].necessary || !geom[start + n - 1].necessary) { + fprintf(stderr, "endpoints not marked necessary\n"); + exit(EXIT_IMPOSSIBLE); } - // ID and attributes, if it didn't get clipped away + int prev = 0; + for (int here = 1; here < n; here++) { + if (geom[start + here].necessary) { + recursion_stack.push(prev); + recursion_stack.push(here); + prev = here; - if (outfeature.geometry.size() > 0) { - if (features[0].has_id) { - outfeature.has_id = true; - outfeature.id = features[0].id; + if (prevent_simplify_shared_nodes) { + if (retain > 0) { + retain--; + } + } } - - outfeature.seq = features[0].seq; - - if (attribute_accum.size() > 0) { - // convert the attributes of the output feature - // from mvt_value to serial_val so they can have - // attributes from the other features of the - // multiplier cluster accumulated onto them - - std::unordered_map attribute_accum_state; - std::vector full_keys; - std::vector full_values; - - for (size_t i = 0; i + 1 < features[0].tags.size(); i += 2) { - auto f = attribute_accum.find(features[0].layer->keys[features[0].tags[i]]); - if (f != attribute_accum.end()) { - // this attribute has an accumulator, so convert it - full_keys.push_back(features[0].layer->keys[features[0].tags[i]]); - full_values.push_back(mvt_value_to_serial_val(features[0].layer->values[features[0].tags[i + 1]])); - } else { - // otherwise just tag it directly onto the output feature - if (keep.size() == 0 || keep.find(features[0].layer->keys[features[0].tags[i]]) != keep.end()) { - outlayer.tag(outfeature, features[0].layer->keys[features[0].tags[i]], features[0].layer->values[features[0].tags[i + 1]]); - } + } + // These segments are put on the stack from start to end, + // independent of winding, so note that anything that uses + // "retain" to force it to keep at least N points will + // keep a different set of points when wound one way than + // when wound the other way. + + while (!recursion_stack.empty()) { + // pop next element + int second = recursion_stack.top(); + recursion_stack.pop(); + int first = recursion_stack.top(); + recursion_stack.pop(); + + double max_distance = -1; + int farthest_element_index; + + // find index idx of element with max_distance + int i; + if (geom[start + first] < geom[start + second]) { + farthest_element_index = first; + for (i = first + 1; i < second; i++) { + double temp_dist = distance_from_line(geom[start + i].x, geom[start + i].y, geom[start + first].x, geom[start + first].y, geom[start + second].x, geom[start + second].y); + + double distance = std::fabs(temp_dist); + + if ((distance > e || kept < retain) && (distance > max_distance || (distance == max_distance && geom[start + i] < geom[start + farthest_element_index]))) { + farthest_element_index = i; + max_distance = distance; } } + } else { + farthest_element_index = second; + for (i = second - 1; i > first; i--) { + double temp_dist = distance_from_line(geom[start + i].x, geom[start + i].y, geom[start + second].x, geom[start + second].y, geom[start + first].x, geom[start + first].y); - // accumulate whatever attributes are specified to be accumulated - // onto the feature that will survive into the output, from the - // features that will not - - for (size_t i = 1; i < features.size(); i++) { - for (size_t j = 0; j + 1 < features[i].tags.size(); j += 2) { - std::string key = features[i].layer->keys[features[i].tags[j]]; + double distance = std::fabs(temp_dist); - auto f = attribute_accum.find(key); - if (f != attribute_accum.end()) { - serial_val val = mvt_value_to_serial_val(features[i].layer->values[features[i].tags[j + 1]]); - preserve_attribute(f->second, key, val, full_keys, full_values, attribute_accum_state); - } + if ((distance > e || kept < retain) && (distance > max_distance || (distance == max_distance && geom[start + i] < geom[start + farthest_element_index]))) { + farthest_element_index = i; + max_distance = distance; } } + } - // convert the final attributes back to mvt_value - // and tag them onto the output feature + if (max_distance >= 0) { + // mark idx as necessary + geom[start + farthest_element_index].necessary = 1; + kept++; - for (size_t i = 0; i < full_keys.size(); i++) { - if (keep.size() == 0 || keep.find(full_keys[i]) != keep.end()) { - outlayer.tag(outfeature, full_keys[i], stringified_to_mvt_value(full_values[i].type, full_values[i].s.c_str(), tile_stringpool)); + if (geom[start + first] < geom[start + second]) { + if (1 < farthest_element_index - first) { + recursion_stack.push(first); + recursion_stack.push(farthest_element_index); } - } - } else { - for (size_t i = 0; i + 1 < features[0].tags.size(); i += 2) { - if (keep.size() == 0 || keep.find(features[0].layer->keys[features[0].tags[i]]) != keep.end()) { - outlayer.tag(outfeature, features[0].layer->keys[features[0].tags[i]], features[0].layer->values[features[0].tags[i + 1]]); + if (1 < second - farthest_element_index) { + recursion_stack.push(farthest_element_index); + recursion_stack.push(second); + } + } else { + if (1 < second - farthest_element_index) { + recursion_stack.push(farthest_element_index); + recursion_stack.push(second); + } + if (1 < farthest_element_index - first) { + recursion_stack.push(first); + recursion_stack.push(farthest_element_index); } } } - - outlayer.features.push_back(std::move(outfeature)); } } -static struct preservecmp { - bool operator()(const mvt_feature &a, const mvt_feature &b) { - return a.seq < b.seq; +// cut-down version of simplify_lines(), not dealing with shared node preservation +static drawvec simplify_lines_basic(drawvec &geom, int z, int detail, double simplification, size_t retain) { + int res = 1 << (32 - detail - z); + + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_MOVETO) { + geom[i].necessary = 1; + } else if (geom[i].op == VT_LINETO) { + geom[i].necessary = 0; + // if this is actually the endpoint, not an intermediate point, + // it will be marked as necessary below + } else { + geom[i].necessary = 1; + } } -} preservecmp; -std::string overzoom(const mvt_tile &tile, int oz, int ox, int oy, int nz, int nx, int ny, - int detail, int buffer, std::set const &keep, bool do_compress, - std::vector> *next_overzoomed_tiles, - bool demultiply, json_object *filter, bool preserve_input_order, std::unordered_map const &attribute_accum, std::vector const &unidecode_data) { - mvt_tile outtile; - std::shared_ptr tile_stringpool = std::make_shared(); + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_MOVETO) { + size_t j; + for (j = i + 1; j < geom.size(); j++) { + if (geom[j].op != VT_LINETO) { + break; + } + } - for (auto const &layer : tile.layers) { - mvt_layer outlayer = mvt_layer(); + geom[i].necessary = 1; + geom[j - 1].necessary = 1; - int det = detail; - if (det <= 0) { - det = std::round(log(layer.extent) / log(2)); + if (j - i > 1) { + douglas_peucker(geom, i, j - i, res * simplification, 2, retain, false); + } + i = j - 1; } + } - outlayer.name = layer.name; - outlayer.version = layer.version; - outlayer.extent = 1LL << det; - - std::vector pending_tile_features; + size_t out = 0; + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].necessary) { + geom[out++] = geom[i]; + } + } + geom.resize(out); + return geom; +} - static const std::string retain_points_multiplier_first = "tippecanoe:retain_points_multiplier_first"; - static const std::string retain_points_multiplier_sequence = "tippecanoe:retain_points_multiplier_sequence"; +drawvec reduce_tiny_poly(drawvec const &geom, int z, int detail, bool *still_needs_simplification, bool *reduced_away, double *accum_area, double tiny_polygon_size) { + drawvec out; + const double pixel = (1LL << (32 - detail - z)) * (double) tiny_polygon_size; - for (auto feature : layer.features) { - bool flush_multiplier_cluster = false; - if (demultiply) { - for (ssize_t i = feature.tags.size() - 2; i >= 0; i -= 2) { - if (layer.keys[feature.tags[i]] == retain_points_multiplier_first) { - mvt_value v = layer.values[feature.tags[i + 1]]; - if (v.type == mvt_bool && v.numeric_value.bool_value) { - flush_multiplier_cluster = true; - feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); - } - } else if (i < (ssize_t) feature.tags.size() && layer.keys[feature.tags[i]] == retain_points_multiplier_sequence) { - mvt_value v = layer.values[feature.tags[i + 1]]; - feature.seq = mvt_value_to_long_long(v); - feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); - } - } - } else { - flush_multiplier_cluster = true; - } + bool included_last_outer = false; + *still_needs_simplification = false; + *reduced_away = false; - if (flush_multiplier_cluster) { - if (pending_tile_features.size() > 0) { - feature_out(pending_tile_features, outlayer, keep, attribute_accum, tile_stringpool); - pending_tile_features.clear(); + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_MOVETO) { + size_t j; + for (j = i + 1; j < geom.size(); j++) { + if (geom[j].op != VT_LINETO) { + break; } } - std::set exclude_attributes; - if (filter != NULL && !evaluate(feature, layer, filter, exclude_attributes, nz, unidecode_data)) { - continue; - } - - drawvec geom; - int t = feature.type; - - // Convert feature geometry to world coordinates + double area = get_area(geom, i, j); + + // XXX There is an ambiguity here: If the area of a ring is 0 and it is followed by holes, + // we don't know whether the area-0 ring was a hole too or whether it was the outer ring + // that these subsequent holes are somehow being subtracted from. I hope that if a polygon + // was simplified down to nothing, its holes also became nothing. + + if (area != 0) { + // These are pixel coordinates, so area > 0 for the outer ring. + // If the outer ring of a polygon was reduced to a pixel, its + // inner rings must just have their area de-accumulated rather + // than being drawn since we don't really know where they are. + + // i.e., this outer ring is small enough that we are including it + // in a tiny polygon rather than letting it represent itself, + // OR it is an inner ring and we haven't output an outer ring for it to be + // cut out of, so we are just subtracting its area from the tiny polygon + // rather than trying to deal with it geometrically + if ((area > 0 && area <= pixel * pixel) || (area < 0 && !included_last_outer)) { + *accum_area += area; + *reduced_away = true; + + if (area > 0 && *accum_area > pixel * pixel) { + // XXX use centroid; + + out.emplace_back(VT_MOVETO, geom[i].x - pixel / 2, geom[i].y - pixel / 2); + out.emplace_back(VT_LINETO, geom[i].x - pixel / 2 + pixel, geom[i].y - pixel / 2); + out.emplace_back(VT_LINETO, geom[i].x - pixel / 2 + pixel, geom[i].y - pixel / 2 + pixel); + out.emplace_back(VT_LINETO, geom[i].x - pixel / 2, geom[i].y - pixel / 2 + pixel); + out.emplace_back(VT_LINETO, geom[i].x - pixel / 2, geom[i].y - pixel / 2); + + *accum_area -= pixel * pixel; + } - long long tilesize = 1LL << (32 - oz); // source tile size in world coordinates - draw ring_closure(0, 0, 0); - bool sametile = (nz == oz && nx == ox && ny == oy && outlayer.extent >= layer.extent); + if (area > 0) { + included_last_outer = false; + } + } + // i.e., this ring is large enough that it gets to represent itself + // or it is a tiny hole out of a real polygon, which we are still treating + // as a real geometry because otherwise we can accumulate enough tiny holes + // that we will drop the next several outer rings getting back up to 0. + else { + for (size_t k = i; k < j && k < geom.size(); k++) { + out.push_back(geom[k]); + } - for (auto const &g : feature.geometry) { - if (g.op == mvt_closepath) { - geom.push_back(ring_closure); - } else { - geom.emplace_back(g.op, - g.x * tilesize / layer.extent + ox * tilesize, - g.y * tilesize / layer.extent + oy * tilesize); + // which means that the overall polygon has a real geometry, + // which means that it gets to be simplified. + *still_needs_simplification = true; - if (g.op == mvt_moveto) { - ring_closure = geom.back(); - ring_closure.op = mvt_lineto; + if (area > 0) { + included_last_outer = true; } } + } else { + // area is 0: doesn't count as either having been reduced away, + // since it was probably just degenerate from having been clipped, + // or as needing simplification, since it produces no output. } - // Now offset from world coordinates to output tile coordinates, - // but retain world scale, because that is what tippecanoe clipping expects + i = j - 1; + } else { + fprintf(stderr, "how did we get here with %d in %d?\n", geom[i].op, (int) geom.size()); - long long outtilesize = 1LL << (32 - nz); // destination tile size in world coordinates - for (auto &g : geom) { - g.x -= nx * outtilesize; - g.y -= ny * outtilesize; + for (size_t n = 0; n < geom.size(); n++) { + fprintf(stderr, "%d/%lld/%lld ", geom[n].op, (long long) geom[n].x, (long long) geom[n].y); } + fprintf(stderr, "\n"); + + out.push_back(geom[i]); + } + } + + return out; +} - if (!sametile) { - // Clip to output tile +/* pnpoly: +Copyright (c) 1970-2003, Wm. Randolph Franklin - long long xmin = LLONG_MAX; - long long ymin = LLONG_MAX; - long long xmax = LLONG_MIN; - long long ymax = LLONG_MIN; +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - for (auto const &g : geom) { - xmin = std::min(xmin, g.x); - ymin = std::min(ymin, g.y); - xmax = std::max(xmax, g.x); - ymax = std::max(ymax, g.y); - } +Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. +Redistributions in binary form must reproduce the above copyright notice in the documentation and/or other materials provided with the distribution. +The name of W. Randolph Franklin may not be used to endorse or promote products derived from this Software without specific prior written permission. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*/ - long long b = outtilesize * buffer / 256; - if (xmax < -b || ymax < -b || xmin > outtilesize + b || ymin > outtilesize + b) { - continue; - } +int pnpoly(const drawvec &vert, size_t start, size_t nvert, long long testx, long long testy) { + size_t i, j; + bool c = false; + for (i = 0, j = nvert - 1; i < nvert; j = i++) { + if (((vert[i + start].y > testy) != (vert[j + start].y > testy)) && + (testx < (vert[j + start].x - vert[i + start].x) * (testy - vert[i + start].y) / (double) (vert[j + start].y - vert[i + start].y) + vert[i + start].x)) + c = !c; + } + return c; +} + +bool pnpoly(const std::vector &vert, size_t start, size_t nvert, long long testx, long long testy) { + size_t i, j; + bool c = false; + for (i = 0, j = nvert - 1; i < nvert; j = i++) { + if (((vert[i + start].y > testy) != (vert[j + start].y > testy)) && + (testx < (vert[j + start].x - vert[i + start].x) * (testy - vert[i + start].y) / (double) (vert[j + start].y - vert[i + start].y) + vert[i + start].x)) + c = !c; + } + return c; +} - if (t == VT_LINE) { - geom = clip_lines(geom, nz, buffer); - } else if (t == VT_POLYGON) { - drawvec dv; - geom = simple_clip_poly(geom, nz, buffer, dv, false); - } else if (t == VT_POINT) { - geom = clip_point(geom, nz, buffer); +bool pnpoly_mp(std::vector const &geom, long long x, long long y) { + // assumes rings are properly nested, so inside a hole matches twice + bool found = false; + + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == mvt_moveto) { + size_t j; + for (j = i + 1; j < geom.size(); j++) { + if (geom[j].op != mvt_lineto) { + break; } } - // Scale to output tile extent + found ^= pnpoly(geom, i, j - i, x, y); + i = j - 1; + } + } - to_tile_scale(geom, nz, det); + return found; +} - if (!sametile) { - // Clean geometries +bool pnpoly_mp(drawvec const &geom, long long x, long long y) { + // assumes rings are properly nested, so inside a hole matches twice + bool found = false; - geom = remove_noop(geom, t, 0); - if (t == VT_POLYGON) { - geom = clean_or_clip_poly(geom, 0, 0, false, false); + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_MOVETO) { + size_t j; + for (j = i + 1; j < geom.size(); j++) { + if (geom[j].op != VT_LINETO) { + break; } } - if (t == VT_POLYGON) { - geom = close_poly(geom); - } - - tile_feature tf; - tf.geom = std::move(geom); - tf.t = t; - tf.has_id = feature.has_id; - tf.id = feature.id; - tf.tags = std::move(feature.tags); - tf.layer = &layer; - tf.seq = feature.seq; - - pending_tile_features.push_back(tf); + found ^= pnpoly(geom, i, j - i, x, y); + i = j - 1; } + } - if (pending_tile_features.size() > 0) { - feature_out(pending_tile_features, outlayer, keep, attribute_accum, tile_stringpool); - pending_tile_features.clear(); - } + return found; +} - if (preserve_input_order) { - std::stable_sort(outlayer.features.begin(), outlayer.features.end(), preservecmp); - } +clipbbox parse_clip_poly(std::string arg) { + json_pull *jp = json_begin_string(arg.c_str()); + json_object *j = json_read_tree(jp); + if (j == NULL) { + fprintf(stderr, "Expected JSON object, not %s\n", arg.c_str()); + exit(EXIT_ARGS); + } + if (j->type != JSON_HASH) { + fprintf(stderr, "Expected JSON geometry object, not %s\n", arg.c_str()); + exit(EXIT_ARGS); + } - if (outlayer.features.size() > 0) { - outtile.layers.push_back(std::move(outlayer)); + std::pair parsed_geometry = parse_geometry(j, jp, j, 0, 0, 0, 1LL << 32, false, false); + json_end(jp); + + clipbbox out; + out.minx = LLONG_MAX; + out.miny = LLONG_MAX; + out.maxx = LLONG_MIN; + out.maxy = LLONG_MIN; + for (auto const &d : parsed_geometry.second) { + if (d.op == VT_MOVETO || d.op == VT_LINETO) { + if (d.x < out.minx) { + out.minx = d.x; + } + if (d.y < out.miny) { + out.miny = d.y; + } + if (d.x > out.maxx) { + out.maxx = d.x; + } + if (d.y > out.maxy) { + out.maxy = d.y; + } } } + out.dv = std::move(parsed_geometry.second); - if (next_overzoomed_tiles != NULL) { - // will any child tiles have features in them? - // find out recursively from the tile we just made. - // - // (yes, we should keep them instead of remaking them - // later, but that first requires figuring out where to - // keep them.) + return out; +} - if (outtile.layers.size() > 0) { - for (size_t x = 0; x < 2; x++) { - for (size_t y = 0; y < 2; y++) { - std::string child = overzoom(outtile, nz, nx, ny, - nz + 1, nx * 2 + x, ny * 2 + y, - detail, buffer, keep, false, NULL, - demultiply, filter, preserve_input_order, attribute_accum, unidecode_data); - if (child.size() > 0) { - next_overzoomed_tiles->emplace_back(nx * 2 + x, ny * 2 + y); - } - } +std::string overzoom(std::vector const &tiles, int nz, int nx, int ny, + int detail_or_unspecified, int buffer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + bool do_compress, + std::vector> *next_overzoomed_tiles, + bool demultiply, json_object *filter, bool preserve_input_order, + std::unordered_map const &attribute_accum, + std::vector const &unidecode_data, double simplification, + double tiny_polygon_size, + std::vector const &bins, std::string const &bin_by_id_list, + std::string const &accumulate_numeric, size_t feature_limit, + std::vector const &clipbboxes) { + std::vector decoded; + + for (auto const &t : tiles) { + mvt_tile tile; + + try { + bool was_compressed; + if (!tile.decode(t.tile, was_compressed)) { + fprintf(stderr, "Couldn't parse tile %d/%u/%u\n", t.z, t.x, t.y); + exit(EXIT_MVT); } + } catch (std::exception const &e) { + fprintf(stderr, "PBF decoding error in tile %d/%u/%u\n", t.z, t.x, t.y); + exit(EXIT_PROTOBUF); } - } - if (outtile.layers.size() > 0) { - std::string pbf = outtile.encode(); + source_tile out; + out.tile = tile; + out.z = t.z; + out.x = t.x; + out.y = t.y; + + decoded.push_back(out); + } + + return overzoom(decoded, nz, nx, ny, detail_or_unspecified, buffer, keep, exclude, exclude_prefix, do_compress, next_overzoomed_tiles, demultiply, filter, preserve_input_order, attribute_accum, unidecode_data, simplification, tiny_polygon_size, bins, bin_by_id_list, accumulate_numeric, feature_limit, clipbboxes); +} + +// like a minimal serial_feature, but with mvt_feature-style attributes +struct tile_feature { + drawvec geom; + int t; + bool has_id; + unsigned long long id; + std::vector tags; + mvt_layer const *layer; + size_t seq = 0; +}; + +static bool should_keep(std::string const &key, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix) { + if (keep.size() == 0 || keep.find(key) != keep.end()) { + if (exclude.find(key) != exclude.end()) { + return false; + } + + for (auto const &prefix : exclude_prefix) { + if (starts_with(key, prefix)) { + return false; + } + } + + return true; + } + + return false; +} + +static void add_mean(mvt_feature &feature, mvt_layer &layer, std::string const &accumulate_numeric, + std::set const &keep, std::set const &exclude, + std::vector const &exclude_prefix) { + std::string accumulate_numeric_colon = accumulate_numeric + ":"; + + std::unordered_map attributes; + for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { + std::string const &key = layer.keys[feature.tags[i]]; + if (starts_with(key, accumulate_numeric_colon)) { + attributes.emplace(key, i); + } + } + + for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { + std::string accumulate_numeric_sum_colon = accumulate_numeric + ":sum:"; + + std::string const &key = layer.keys[feature.tags[i]]; + if (starts_with(key, accumulate_numeric_sum_colon)) { + std::string trunc = key.substr(accumulate_numeric_sum_colon.size()); + auto const f = attributes.find(accumulate_numeric + ":count:" + trunc); + if (f != attributes.end()) { + mvt_value const &sum = layer.values[feature.tags[i + 1]]; + mvt_value const &count = layer.values[feature.tags[f->second + 1]]; + double count_val = mvt_value_to_double(count); + if (count_val <= 0) { + fprintf(stderr, "can't happen: count is %s (type %d)\n", count.toString().c_str(), count.type); + exit(EXIT_IMPOSSIBLE); + } + mvt_value mean; + mean.type = mvt_double; + mean.numeric_value.double_value = mvt_value_to_double(sum) / count_val; + + if (should_keep(key, keep, exclude, exclude_prefix)) { + layer.tag(feature, accumulate_numeric + ":mean:" + trunc, mean); + } + } + } + } +}; + +// accumulate :sum:, :min:, :max:, and :count: versions of the specified attribute +static void preserve_numeric(const std::string &key, const mvt_value &val, // numeric attribute being accumulated + std::vector> &full_keys, // keys of feature being accumulated onto + std::vector &full_values, // values of features being accumulated onto + const std::string &accumulate_numeric, // prefix of accumulations + std::set &keys, // key presence in the source feature + std::map &numeric_out_field, // key index in the output feature + std::unordered_map &attribute_accum_state, // accumulation state for preserve_attribute() + key_pool &key_pool, + std::set const &keep, std::set const &exclude, + std::vector const &exclude_prefix) { + // If this is a numeric attribute, but there is also a prefix:sum (etc.) for the + // same attribute, we want to use that one instead of this one. + + for (auto const &op : numeric_operations) { + std::string compound_key = accumulate_numeric + ":" + op.first + ":" + key; + auto compound_found = keys.find(compound_key); + if (compound_found != keys.end()) { + // found, so skip this one + } else { + // not found, so accumulate this one + + // if this is already prefixed, strip off the prefix + // if it is the right one, and skip the attribute if + // it is the wrong one. + + std::string outkey = key; + bool starting_from_accumulation; + + if (starts_with(outkey, accumulate_numeric + ":")) { + std::string prefix = accumulate_numeric + ":" + op.first + ":"; + if (starts_with(outkey, prefix)) { + outkey = outkey.substr(prefix.size()); + starting_from_accumulation = true; // from a subaccumulation + } else { + continue; // to next operation + } + } else { + starting_from_accumulation = false; // from a plain value + } + // and then put it back on for the output field + std::string prefixed = accumulate_numeric + ":" + op.first + ":" + outkey; + + if (!should_keep(prefixed, keep, exclude, exclude_prefix)) { + continue; + } + + // Does it exist in the output feature already? + + auto prefixed_attr = numeric_out_field.find(prefixed); + if (prefixed_attr == numeric_out_field.end()) { + // No? Does it exist unprefixed in the output feature already? + + auto out_attr = numeric_out_field.find(outkey); + if (out_attr == numeric_out_field.end()) { + // not present at all, so copy our value to the prefixed output + numeric_out_field.emplace(prefixed, full_keys.size()); + full_keys.push_back(key_pool.pool(prefixed)); + + if (op.second == op_count) { + if (starting_from_accumulation) { + // copy our count + full_values.push_back(val); + } else { + // new count of 1 + full_values.push_back(mvt_value(1)); + } + } else { + full_values.push_back(val); + } + } else { + // exists unprefixed, so copy it, and then accumulate on our value + numeric_out_field.emplace(prefixed, full_keys.size()); + full_keys.push_back(key_pool.pool(prefixed)); + + if (op.second == op_count) { + mvt_value v; + if (starting_from_accumulation) { + // sum our count onto the existing 1 + v = mvt_value(1 + mvt_value_to_long_long(val)); + } else { + // sum our 1 onto the existing 1 + v = mvt_value(2); + } + full_values.push_back(v); + } else { + full_values.push_back(full_values[out_attr->second]); + preserve_attribute(op.second, prefixed, val, full_keys, full_values, attribute_accum_state, key_pool); + } + } + } else { + // exists, so accumulate on our value + if (op.second == op_count) { + if (starting_from_accumulation) { + // sum our count onto the existing count + full_values[prefixed_attr->second] = mvt_value(mvt_value_to_long_long(full_values[prefixed_attr->second]) + mvt_value_to_long_long(val)); + } else { + full_values[prefixed_attr->second] = mvt_value(mvt_value_to_long_long(full_values[prefixed_attr->second]) + 1); + } + } else { + preserve_attribute(op.second, prefixed, val, full_keys, full_values, attribute_accum_state, key_pool); + } + } + } + } +} + +static void handle_closepath_from_mvt(drawvec &geom) { + // mvt geometries close polygons with a mvt_closepath operation + // tippecanoe-internal geometries close polygons with a lineto to the initial point + + size_t last_open = 0; + + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == mvt_closepath) { + geom[i] = draw(mvt_lineto, geom[last_open].x, geom[last_open].y); + } else if (geom[i].op == mvt_moveto) { + last_open = i; + } + } +} + +// returns true if a feature was output; false if it was clipped away +static bool feature_out(std::vector const &features, mvt_layer &outlayer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + std::unordered_map const &attribute_accum, + std::string const &accumulate_numeric, + key_pool &key_pool, int buffer, bool include_nonaggregate, + std::vector const &clipbboxes, int nz, int nx, int ny) { + // Add geometry to output feature + + drawvec geom = features[0].geom; + int t = features[0].t; + + bool fix_polygons = false; + if ((buffer >= 0 || clipbboxes.size() > 0) && t == VT_POLYGON) { + fix_polygons = true; + } + + if (fix_polygons) { + handle_closepath_from_mvt(geom); + } + + if (buffer >= 0) { + if (t == VT_LINE) { + geom = clip_lines(geom, 32 - outlayer.detail(), buffer); + } else if (t == VT_POLYGON) { + drawvec dv; + geom = simple_clip_poly(geom, 32 - outlayer.detail(), buffer, dv, false); + } else if (t == VT_POINT) { + geom = clip_point(geom, 32 - outlayer.detail(), buffer); + } + + geom = remove_noop(geom, t, 0); + } + + if (clipbboxes.size() != 0) { + // bounding box is in world coordinates at world scale + // feature is in local coordinates at tile scale + + long long dx = (long long) nx << (32 - nz); + long long dy = (long long) ny << (32 - nz); + double scale = (double) outlayer.extent / (1LL << (32 - nz)); + + for (auto const &c_world : clipbboxes) { + clipbbox c = c_world; + + c.minx = std::llround((c_world.minx - dx) * scale); + c.miny = std::llround((c_world.miny - dy) * scale); + c.maxx = std::llround((c_world.maxx - dx) * scale); + c.maxy = std::llround((c_world.maxy - dy) * scale); + + for (auto &p : c.dv) { + p.x = std::llround((p.x - dx) * scale); + p.y = std::llround((p.y - dy) * scale); + } + + if (t == VT_POLYGON) { + geom = simple_clip_poly(geom, c.minx, c.miny, c.maxx, c.maxy, false); + if (c.dv.size() > 0 && geom.size() > 0) { + geom = clip_poly_poly(geom, c.dv); + } + } else if (t == VT_LINE) { + geom = clip_lines(geom, c.minx, c.miny, c.maxx, c.maxy); + if (c.dv.size() > 0 && geom.size() > 0) { + geom = clip_lines_poly(geom, c.dv); + } + } else if (t == VT_POINT) { + geom = clip_point(geom, c.minx, c.miny, c.maxx, c.maxy); + if (c.dv.size() > 0 && geom.size() > 0) { + geom = clip_point_poly(geom, c.dv); + } + } + } + + geom = remove_noop(geom, t, 0); + } + + if (fix_polygons) { + geom = clean_or_clip_poly(geom, 0, 0, false, false); + geom = close_poly(geom); + } + + mvt_feature outfeature; + outfeature.type = features[0].t; + for (auto const &g : geom) { + outfeature.geometry.emplace_back(g.op, g.x, g.y); + } + + // ID and attributes, if it didn't get clipped away + + if (outfeature.geometry.size() > 0) { + if (features[0].has_id) { + outfeature.has_id = true; + outfeature.id = features[0].id; + } + + outfeature.seq = features[0].seq; + + if (attribute_accum.size() > 0 || accumulate_numeric.size() > 0) { + // convert the attributes of the output feature + // from layer references to a vector so they can have + // attributes from the other features of the + // multiplier cluster accumulated onto them + + std::unordered_map attribute_accum_state; + std::vector> full_keys; + std::vector full_values; + std::map numeric_out_field; + + auto const &f = features[0]; + for (size_t i = 0; i + 1 < f.tags.size(); i += 2) { + const std::string &key = f.layer->keys[f.tags[i]]; + if (should_keep(key, keep, exclude, exclude_prefix)) { + if (attribute_accum.find(key) != attribute_accum.end()) { + // this attribute has an accumulator, so convert it + full_keys.push_back(key_pool.pool(f.layer->keys[f.tags[i]])); + full_values.push_back(f.layer->values[f.tags[i + 1]]); + } else if (accumulate_numeric.size() > 0 && f.layer->values[f.tags[i + 1]].is_numeric()) { + // convert numeric for accumulation + numeric_out_field.emplace(key, full_keys.size()); + full_keys.push_back(key_pool.pool(key)); + full_values.push_back(f.layer->values[f.tags[i + 1]]); + } else if (include_nonaggregate) { + // otherwise just tag it directly onto the output feature + outlayer.tag(outfeature, f.layer->keys[f.tags[i]], f.layer->values[f.tags[i + 1]]); + } + } + } + + // accumulate whatever attributes are specified to be accumulated + // onto the feature that will survive into the output, from the + // features that will not + + for (size_t i = 1; i < features.size(); i++) { + std::set keys; + + for (size_t j = 0; j + 1 < features[i].tags.size(); j += 2) { + const std::string &key = features[i].layer->keys[features[i].tags[j]]; + if (should_keep(key, keep, exclude, exclude_prefix)) { + keys.insert(key); + } + } + + for (size_t j = 0; j + 1 < features[i].tags.size(); j += 2) { + const std::string &key = features[i].layer->keys[features[i].tags[j]]; + if (should_keep(key, keep, exclude, exclude_prefix)) { + auto found = attribute_accum.find(key); + if (found != attribute_accum.end()) { + mvt_value val = features[i].layer->values[features[i].tags[j + 1]]; + preserve_attribute(found->second, key, val, full_keys, full_values, attribute_accum_state, key_pool); + } else if (accumulate_numeric.size() > 0) { + const mvt_value &val = features[i].layer->values[features[i].tags[j + 1]]; + if (val.is_numeric()) { + preserve_numeric(key, val, full_keys, full_values, + accumulate_numeric, + keys, numeric_out_field, attribute_accum_state, key_pool, + keep, exclude, exclude_prefix); + } + } + } + } + } + + // convert the final attributes back to mvt_value + // and tag them onto the output feature + + for (size_t i = 0; i < full_keys.size(); i++) { + if (should_keep(*full_keys[i], keep, exclude, exclude_prefix)) { + outlayer.tag(outfeature, *full_keys[i], full_values[i]); + } + } + + if (accumulate_numeric.size() > 0) { + add_mean(outfeature, outlayer, accumulate_numeric, keep, exclude, exclude_prefix); + } + } else if (include_nonaggregate) { + for (size_t i = 0; i + 1 < features[0].tags.size(); i += 2) { + if (should_keep(features[0].layer->keys[features[0].tags[i]], keep, exclude, exclude_prefix)) { + outlayer.tag(outfeature, features[0].layer->keys[features[0].tags[i]], features[0].layer->values[features[0].tags[i + 1]]); + } + } + } + + outlayer.features.push_back(std::move(outfeature)); + return true; + } + + return false; +} + +static struct preservecmp { + bool operator()(const mvt_feature &a, const mvt_feature &b) { + return a.seq < b.seq; + } +} preservecmp; + +struct index_event { + unsigned long long where; + enum index_event_kind { + ENTER = 0, // new bin in is now active + CHECK, // point needs to be checked against active bins + EXIT // bin has ceased to be active + } kind; + size_t layer; + size_t feature; + long long xmin, ymin, xmax, ymax; + + index_event(unsigned long long where_, index_event_kind kind_, size_t layer_, size_t feature_, + long long xmin_, long long ymin_, long long xmax_, long long ymax_) + : where(where_), kind(kind_), layer(layer_), feature(feature_), xmin(xmin_), ymin(ymin_), xmax(xmax_), ymax(ymax_) { + } + + bool operator<(const index_event &ie) const { + if (where < ie.where) { + return true; + } else if (where == ie.where) { + if (kind < ie.kind) { + return true; + } else if (kind == ie.kind) { + if (layer < ie.layer) { + return true; + } else if (layer == ie.layer) { + if (feature < ie.feature) { + return true; + } + } + } + } + + return false; + } +}; + +struct active_bin { + size_t layer; + size_t feature; + + active_bin(size_t layer_, size_t feature_) + : layer(layer_), feature(feature_) { + } + + bool operator<(const active_bin &o) const { + if (layer < o.layer) { + return true; + } else if (layer == o.layer) { + if (feature < o.feature) { + return true; + } + } + + return false; + } + + size_t outfeature; + long long xmin, ymin, xmax, ymax; + size_t counter = 0; +}; + +void get_quadkey_bounds(long long xmin, long long ymin, long long xmax, long long ymax, + unsigned long long *start, unsigned long long *end) { + if (xmin < 0 || ymin < 0 || xmax >= 1LL << 32 || ymax >= 1LL << 32) { + *start = 0; + *end = ULLONG_MAX; + return; + } + + *start = encode_quadkey(xmin, ymin); + *end = encode_quadkey(xmax, ymax); + + for (ssize_t i = 62; i >= 0; i -= 2) { + if ((*start & (3LL << i)) != (*end & (3LL << i))) { + for (; i >= 0; i -= 2) { + *start &= ~(3LL << i); + *end |= 3LL << i; + } + break; + } + } +} + +static bool bbox_intersects(long long x1min, long long y1min, long long x1max, long long y1max, + long long x2min, long long y2min, long long x2max, long long y2max) { + if (x1max < x2min) { + return false; + } + if (x2max < x1min) { + return false; + } + if (y1max < y2min) { + return false; + } + if (y2max < y1min) { + return false; + } + return true; +} + +static std::vector parse_ids_string(mvt_value const &v) { + std::vector out; + std::string s = v.toString(); + + for (size_t i = 0; i < s.size(); i++) { + if (i == 0 || s[i - 1] == ',') { + out.push_back(atoll(s.c_str() + i)); + } + } + + return out; +} + +mvt_tile assign_to_bins(mvt_tile &features, + std::vector const &bins, std::string const &bin_by_id_list, + int z, int x, int y, + std::unordered_map const &attribute_accum, + std::string const &accumulate_numeric, + std::set keep, + std::set exclude, + std::vector exclude_prefix, + int buffer, std::vector const &clipbboxes) { + std::vector events; + key_pool key_pool; + + if (bins.size() == 0) { + return mvt_tile(); + } + + // Index bins + for (size_t i = 0; i < bins.size(); i++) { + for (size_t j = 0; j < bins[i].features.size(); j++) { + long long xmin, ymin, xmax, ymax; + unsigned long long start, end; + + get_bbox(bins[i].features[j].geometry, &xmin, &ymin, &xmax, &ymax, z, x, y, bins[i].detail()); + get_quadkey_bounds(xmin, ymin, xmax, ymax, &start, &end); + events.emplace_back(start, index_event::ENTER, i, j, xmin, ymin, xmax, ymax); + events.emplace_back(end, index_event::EXIT, i, j, xmin, ymin, xmax, ymax); + } + } + + std::map> fid_to_feature; + + // Index points + for (size_t i = 0; i < features.layers.size(); i++) { + for (size_t j = 0; j < features.layers[i].features.size(); j++) { + long long xmin, ymin, xmax, ymax; + unsigned long long start, end; + + if (features.layers[i].features[j].geometry.size() > 0) { + if (features.layers[i].features[j].has_id) { + fid_to_feature.emplace(features.layers[i].features[j].id, std::make_pair(i, j)); + } + + get_bbox(features.layers[i].features[j].geometry, &xmin, &ymin, &xmax, &ymax, z, x, y, features.layers[i].detail()); + get_quadkey_bounds(xmin, ymin, xmax, ymax, &start, &end); + events.emplace_back(start, index_event::CHECK, i, j, xmin, ymin, xmax, ymax); + } + } + } + + std::sort(events.begin(), events.end()); + std::set active; + + mvt_layer outlayer; + outlayer.extent = bins[0].extent; + outlayer.version = 2; + outlayer.name = features.layers[0].name; + + std::vector> outfeatures; + + for (auto &e : events) { + if (e.kind == index_event::ENTER) { + active_bin a(e.layer, e.feature); + a.xmin = e.xmin; + a.ymin = e.ymin; + a.xmax = e.xmax; + a.ymax = e.ymax; + + const mvt_feature &bin = bins[e.layer].features[e.feature]; + + { + tile_feature outfeature; + for (auto const &g : bin.geometry) { + outfeature.geom.emplace_back(g.op, g.x, g.y); + } + outfeature.t = bin.type; + outfeature.has_id = bin.has_id; + outfeature.id = bin.id; + outfeature.tags = bin.tags; + outfeature.layer = &bins[e.layer]; + outfeature.seq = e.feature; + + a.outfeature = outfeatures.size(); + outfeatures.push_back({std::move(outfeature)}); + } + + if (bin_by_id_list.size() > 0) { + for (size_t k = 0; k < bin.tags.size(); k += 2) { + if (bins[e.layer].keys[bin.tags[k]] == bin_by_id_list) { + std::vector ids = parse_ids_string(bins[e.layer].values[bin.tags[k + 1]]); + for (auto &id : ids) { + auto f = fid_to_feature.find(id); + if (f != fid_to_feature.end()) { + mvt_feature &feature = features.layers[f->second.first].features[f->second.second]; + if (feature.geometry.size() > 0) { + tile_feature outfeature; + for (auto const &g : feature.geometry) { + outfeature.geom.emplace_back(g.op, g.x, g.y); + } + feature.geometry.clear(); + outfeature.t = feature.type; + outfeature.has_id = feature.has_id; + outfeature.id = feature.id; + outfeature.tags = feature.tags; + outfeature.layer = &features.layers[e.layer]; + outfeature.seq = e.feature; + outfeatures.back().push_back(std::move(outfeature)); + } + } + } + break; + } + } + } + + active.insert(std::move(a)); + } else if (e.kind == index_event::CHECK) { + if (bin_by_id_list.size() > 0) { + continue; // only bin by id, not geometrically + } + + auto const &feature = features.layers[e.layer].features[e.feature]; + + if (feature.geometry.size() == 0) { + // already assigned by ID + continue; + } + + // if we can't find a real match, + // assign points to the most nearby bin + ssize_t which_outfeature = outfeatures.size() - 1; + + for (auto const &a : active) { + auto const &bin = bins[a.layer].features[a.feature]; + + if (bbox_intersects(e.xmin, e.ymin, e.xmax, e.ymax, + a.xmin, a.ymin, a.xmax, a.ymax)) { + if (pnpoly_mp(bin.geometry, feature.geometry[0].x, feature.geometry[0].y)) { + which_outfeature = a.outfeature; + break; + } + } + } + + if (which_outfeature >= 0) { + tile_feature outfeature; + for (auto const &g : feature.geometry) { + outfeature.geom.emplace_back(g.op, g.x, g.y); + } + outfeature.t = feature.type; + outfeature.has_id = feature.has_id; + outfeature.id = feature.id; + outfeature.tags = feature.tags; + outfeature.layer = &features.layers[e.layer]; + outfeature.seq = e.feature; + outfeatures[which_outfeature].push_back(std::move(outfeature)); + } + } else /* EXIT */ { + auto const &found = active.find({e.layer, e.feature}); + if (found != active.end()) { + active.erase(found); + } else { + fprintf(stderr, "event mismatch: can't happen\n"); + exit(EXIT_IMPOSSIBLE); + } + } + } + + for (size_t i = 0; i < outfeatures.size(); i++) { + if (outfeatures[i].size() > 1) { + if (feature_out(outfeatures[i], outlayer, + keep, exclude, exclude_prefix, attribute_accum, + accumulate_numeric, key_pool, buffer, true, + clipbboxes, z, x, y)) { + mvt_feature &nfeature = outlayer.features.back(); + mvt_value val; + val.type = mvt_uint; + val.numeric_value.uint_value = outfeatures[i].size() - 1; + + std::string attrname; + if (accumulate_numeric.size() == 0) { + attrname = "tippecanoe:count"; + } else { + attrname = accumulate_numeric + ":count"; + } + if (should_keep(attrname, keep, exclude, exclude_prefix)) { + outlayer.tag(nfeature, attrname, val); + } + } + } + } + + mvt_tile ret; + ret.layers.push_back(outlayer); + return ret; +} + +std::string overzoom(std::vector const &tiles, int nz, int nx, int ny, + int detail_or_unspecified, int buffer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + bool do_compress, + std::vector> *next_overzoomed_tiles, + bool demultiply, json_object *filter, bool preserve_input_order, + std::unordered_map const &attribute_accum, + std::vector const &unidecode_data, double simplification, + double tiny_polygon_size, + std::vector const &bins, std::string const &bin_by_id_list, + std::string const &accumulate_numeric, size_t feature_limit, + std::vector const &clipbboxes) { + mvt_tile outtile; + key_pool key_pool; + + for (auto const &tile : tiles) { + for (auto const &layer : tile.tile.layers) { + mvt_layer *outlayer = NULL; + + int det = detail_or_unspecified; + if (det <= 0) { + det = std::round(log(layer.extent) / log(2)); + } + + for (size_t i = 0; i < outtile.layers.size(); i++) { + if (outtile.layers[i].name == layer.name) { + outlayer = &outtile.layers[i]; + } + } + + if (outlayer == NULL) { + mvt_layer newlayer = mvt_layer(); + + newlayer.name = layer.name; + newlayer.version = layer.version; + newlayer.extent = 1LL << det; + + outtile.layers.push_back(newlayer); + outlayer = &outtile.layers.back(); + } + + std::vector pending_tile_features; + double accum_area = 0; + + static const std::string retain_points_multiplier_first = "tippecanoe:retain_points_multiplier_first"; + static const std::string retain_points_multiplier_sequence = "tippecanoe:retain_points_multiplier_sequence"; + + for (auto feature : layer.features) { + drawvec geom; + int t = feature.type; + + // Convert feature geometry to world coordinates + + long long tilesize = 1LL << (32 - tile.z); // source tile size in world coordinates + draw ring_closure(0, 0, 0); + bool sametile = (nz == tile.z && nx == tile.x && ny == tile.y && outlayer->extent >= layer.extent); + + for (auto const &g : feature.geometry) { + if (g.op == mvt_closepath) { + geom.push_back(ring_closure); + } else { + geom.emplace_back(g.op, + g.x * tilesize / layer.extent + tile.x * tilesize, + g.y * tilesize / layer.extent + tile.y * tilesize); + if (g.op == mvt_moveto) { + ring_closure = geom.back(); + ring_closure.op = mvt_lineto; + } + } + } + + // Clip to user-specified bounding boxes. + // Bounding box clip first, to reduce complexity of the full clip. + // But don't clip here if we are binning, because we need to bin points in the buffer + if (bins.size() == 0) { + for (auto &c : clipbboxes) { + if (t == VT_POLYGON) { + geom = simple_clip_poly(geom, c.minx, c.miny, c.maxx, c.maxy, false); + if (c.dv.size() > 0 && geom.size() > 0) { + geom = clip_poly_poly(geom, c.dv); + } + } else if (t == VT_LINE) { + geom = clip_lines(geom, c.minx, c.miny, c.maxx, c.maxy); + if (c.dv.size() > 0 && geom.size() > 0) { + geom = clip_lines_poly(geom, c.dv); + } + } else if (t == VT_POINT) { + geom = clip_point(geom, c.minx, c.miny, c.maxx, c.maxy); + if (c.dv.size() > 0 && geom.size() > 0) { + geom = clip_point_poly(geom, c.dv); + } + } + } + } + + // Now offset from world coordinates to output tile coordinates, + // but retain world scale, because that is what tippecanoe zoom-oriented clipping expects + + long long outtilesize = 1LL << (32 - nz); // destination tile size in world coordinates + for (auto &g : geom) { + g.x -= nx * outtilesize; + g.y -= ny * outtilesize; + } + + // Don't clip here if we are binning, because we need to bin points in the buffer + if (bins.size() == 0) { + // Clip to output tile + + long long xmin = LLONG_MAX; + long long ymin = LLONG_MAX; + long long xmax = LLONG_MIN; + long long ymax = LLONG_MIN; + + for (auto const &g : geom) { + xmin = std::min(xmin, g.x); + ymin = std::min(ymin, g.y); + xmax = std::max(xmax, g.x); + ymax = std::max(ymax, g.y); + } + + long long b = outtilesize * buffer / 256; + if (xmax < -b || ymax < -b || xmin > outtilesize + b || ymin > outtilesize + b) { + // quick exclusion by bounding box + continue; + } + + if (t == VT_LINE) { + geom = clip_lines(geom, nz, buffer); + } else if (t == VT_POLYGON) { + drawvec dv; + geom = simple_clip_poly(geom, nz, buffer, dv, false); + } else if (t == VT_POINT) { + geom = clip_point(geom, nz, buffer); + } + } + + if (geom.size() == 0) { + // clipped away + continue; + } + + bool flush_multiplier_cluster = false; + if (demultiply) { + for (ssize_t i = feature.tags.size() - 2; i >= 0; i -= 2) { + if (layer.keys[feature.tags[i]] == retain_points_multiplier_first) { + mvt_value v = layer.values[feature.tags[i + 1]]; + if (v.type == mvt_bool && v.numeric_value.bool_value) { + flush_multiplier_cluster = true; + feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); + } + } else if (i < (ssize_t) feature.tags.size() && layer.keys[feature.tags[i]] == retain_points_multiplier_sequence) { + mvt_value v = layer.values[feature.tags[i + 1]]; + feature.seq = mvt_value_to_long_long(v); + feature.tags.erase(feature.tags.begin() + i, feature.tags.begin() + i + 2); + } + } + } else { + flush_multiplier_cluster = true; + } + + if (flush_multiplier_cluster) { + if (pending_tile_features.size() > 0) { + feature_out(pending_tile_features, *outlayer, keep, exclude, exclude_prefix, attribute_accum, accumulate_numeric, key_pool, -1, bins.size() == 0, std::vector(), nz, nx, ny); + if (outlayer->features.size() >= feature_limit) { + break; + } + pending_tile_features.clear(); + } + } + + std::set exclude_attributes; + if (filter != NULL && !evaluate(feature, layer, filter, exclude_attributes, nz, unidecode_data)) { + continue; + } + + bool still_need_simplification_after_reduction = false; + if (t == VT_POLYGON && tiny_polygon_size > 0) { + bool simplified_away_by_reduction = false; + + geom = reduce_tiny_poly(geom, nz, det, &still_need_simplification_after_reduction, &simplified_away_by_reduction, &accum_area, tiny_polygon_size); + } else { + still_need_simplification_after_reduction = true; + } + + if (simplification > 0 && still_need_simplification_after_reduction) { + if (t == VT_POLYGON) { + geom = simplify_lines_basic(geom, nz, det, simplification, 4); + } else if (t == VT_LINE) { + geom = simplify_lines_basic(geom, nz, det, simplification, 0); + } + } + + // Scale to output tile extent + + to_tile_scale(geom, nz, det); + + if (!sametile) { + // Clean geometries + + geom = remove_noop(geom, t, 0); + if (t == VT_POLYGON) { + geom = clean_or_clip_poly(geom, 0, 0, false, false); + } + } + + if (t == VT_POLYGON) { + geom = close_poly(geom); + } + + tile_feature tf; + tf.geom = std::move(geom); + tf.t = t; + tf.has_id = feature.has_id; + tf.id = feature.id; + tf.tags = std::move(feature.tags); + tf.layer = &layer; + tf.seq = feature.seq; + + pending_tile_features.push_back(tf); + } + + if (pending_tile_features.size() > 0) { + feature_out(pending_tile_features, *outlayer, keep, exclude, exclude_prefix, attribute_accum, accumulate_numeric, key_pool, -1, bins.size() == 0, std::vector(), nz, nx, ny); + pending_tile_features.clear(); + if (outlayer->features.size() >= feature_limit) { + break; + } + } + + if (preserve_input_order) { + std::stable_sort(outlayer->features.begin(), outlayer->features.end(), preservecmp); + } + } + } + + if (next_overzoomed_tiles != NULL) { + // will any child tiles have features in them? + // find out recursively from the tile we just made. + // + // (yes, we should keep them instead of remaking them + // later, but that first requires figuring out where to + // keep them.) + + if (outtile.layers.size() > 0) { + for (size_t x = 0; x < 2; x++) { + for (size_t y = 0; y < 2; y++) { + source_tile st; + st.tile = outtile; + st.z = nz; + st.x = nx; + st.y = ny; + + std::vector sts; + sts.push_back(st); + + // feature_limit arg is 1, because we just care whether there are any overzoomed features + // left after clipping to the child tile, not about their actual content + std::string child = overzoom(sts, + nz + 1, nx * 2 + x, ny * 2 + y, + detail_or_unspecified, buffer, keep, exclude, exclude_prefix, false, NULL, + demultiply, filter, preserve_input_order, attribute_accum, unidecode_data, + simplification, tiny_polygon_size, bins, bin_by_id_list, accumulate_numeric, + 1, clipbboxes); + if (child.size() > 0) { + next_overzoomed_tiles->emplace_back(nx * 2 + x, ny * 2 + y); + } + } + } + } + } + + if (bins.size() > 0) { + outtile = assign_to_bins(outtile, bins, bin_by_id_list, nz, nx, ny, + attribute_accum, accumulate_numeric, + keep, exclude, exclude_prefix, buffer, clipbboxes); + } + + for (ssize_t i = outtile.layers.size() - 1; i >= 0; i--) { + if (outtile.layers[i].features.size() == 0) { + outtile.layers.erase(outtile.layers.begin() + i); + } + } + + if (outtile.layers.size() > 0) { + std::string pbf = outtile.encode(); std::string compressed; if (do_compress) { @@ -1070,3 +2299,151 @@ std::string overzoom(const mvt_tile &tile, int oz, int ox, int oy, int nz, int n return ""; } } + +drawvec fix_polygon(const drawvec &geom, bool use_winding, bool reverse_winding) { + int outer = 1; + drawvec out; + + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_CLOSEPATH) { + outer = 1; + } else if (geom[i].op == VT_MOVETO) { + // Find the end of the ring + + size_t j; + for (j = i + 1; j < geom.size(); j++) { + if (geom[j].op != VT_LINETO) { + break; + } + } + + // A polygon ring must contain at least three points + // (and really should contain four). If this one does + // not have any, avoid a division by zero trying to + // calculate the centroid below. + if (j - i < 1) { + i = j - 1; + outer = 0; + continue; + } + + // Make a temporary copy of the ring. + // Close it if it isn't closed. + + drawvec ring; + for (size_t a = i; a < j; a++) { + ring.push_back(geom[a]); + } + if (j - i != 0 && (ring[0].x != ring[j - i - 1].x || ring[0].y != ring[j - i - 1].y)) { + ring.push_back(ring[0]); + } + + // A polygon ring at this point should contain at least four points. + // Flesh it out with some vertex copies if it doesn't. + + while (ring.size() < 4) { + ring.push_back(ring[0]); + } + + // Reverse ring if winding order doesn't match + // inner/outer expectation + + bool reverse_ring = false; + if (use_winding) { + // GeoJSON winding is reversed from vector winding + reverse_ring = true; + } else if (reverse_winding) { + // GeoJSON winding is reversed from vector winding + reverse_ring = false; + } else { + double area = get_area(ring, 0, ring.size()); + if ((area > 0) != outer) { + reverse_ring = true; + } + } + + if (reverse_ring) { + drawvec tmp; + for (int a = ring.size() - 1; a >= 0; a--) { + tmp.push_back(ring[a]); + } + ring = tmp; + } + + // Now we are rotating the ring to make the first/last point + // one that would be unlikely to be simplified away. + + // calculate centroid + // a + 1 < size() because point 0 is duplicated at the end + long long xtotal = 0; + long long ytotal = 0; + long long count = 0; + for (size_t a = 0; a + 1 < ring.size(); a++) { + xtotal += ring[a].x; + ytotal += ring[a].y; + count++; + } + xtotal /= count; + ytotal /= count; + + // figure out which point is furthest from the centroid + long long dist2 = 0; + long long furthest = 0; + for (size_t a = 0; a + 1 < ring.size(); a++) { + // division by 16 because these are z0 coordinates and we need to avoid overflow + long long xd = (ring[a].x - xtotal) / 16; + long long yd = (ring[a].y - ytotal) / 16; + long long d2 = xd * xd + yd * yd; + if (d2 > dist2 || (d2 == dist2 && ring[a] < ring[furthest])) { + dist2 = d2; + furthest = a; + } + } + + // then figure out which point is furthest from *that*, + // which will hopefully be a good origin point since it should be + // at a far edge of the shape. + long long dist2b = 0; + long long furthestb = 0; + for (size_t a = 0; a + 1 < ring.size(); a++) { + // division by 16 because these are z0 coordinates and we need to avoid overflow + long long xd = (ring[a].x - ring[furthest].x) / 16; + long long yd = (ring[a].y - ring[furthest].y) / 16; + long long d2 = xd * xd + yd * yd; + if (d2 > dist2b || (d2 == dist2b && ring[a] < ring[furthestb])) { + dist2b = d2; + furthestb = a; + } + } + + // rotate ring so the furthest point is the duplicated one. + // the idea is that simplification will then be more efficient, + // never wasting the start and end points, which are always retained, + // on a point that has little impact on the shape. + + // Copy ring into output, fixing the moveto/lineto ops if necessary because of + // reversal or closing + + for (size_t a = 0; a < ring.size(); a++) { + size_t a2 = (a + furthestb) % (ring.size() - 1); + + if (a == 0) { + out.push_back(draw(VT_MOVETO, ring[a2].x, ring[a2].y)); + } else { + out.push_back(draw(VT_LINETO, ring[a2].x, ring[a2].y)); + } + } + + // Next ring or polygon begins on the non-lineto that ended this one + // and is not an outer ring unless there is a terminator first + + i = j - 1; + outer = 0; + } else { + fprintf(stderr, "Internal error: polygon ring begins with %d, not moveto\n", geom[i].op); + exit(EXIT_IMPOSSIBLE); + } + } + + return out; +} diff --git a/clipper2/LICENSE b/clipper2/LICENSE new file mode 100644 index 000000000..36b7cd93c --- /dev/null +++ b/clipper2/LICENSE @@ -0,0 +1,23 @@ +Boost Software License - Version 1.0 - August 17th, 2003 + +Permission is hereby granted, free of charge, to any person or organization +obtaining a copy of the software and accompanying documentation covered by +this license (the "Software") to use, reproduce, display, distribute, +execute, and transmit the Software, and to prepare derivative works of the +Software, and to permit third-parties to whom the Software is furnished to +do so, all subject to the following: + +The copyright notices in the Software and this entire statement, including +the above license grant, this restriction and the following disclaimer, +must be included in all copies of the Software, in whole or in part, and +all derivative works of the Software, unless such copies or derivative +works are solely in the form of machine-executable object code generated by +a source language processor. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT +SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE +FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. diff --git a/clipper2/include/clipper2/clipper.core.h b/clipper2/include/clipper2/clipper.core.h new file mode 100644 index 000000000..624de9032 --- /dev/null +++ b/clipper2/include/clipper2/clipper.core.h @@ -0,0 +1,1080 @@ +/******************************************************************************* +* Author : Angus Johnson * +* Date : 12 May 2024 * +* Website : http://www.angusj.com * +* Copyright : Angus Johnson 2010-2024 * +* Purpose : Core Clipper Library structures and functions * +* License : http://www.boost.org/LICENSE_1_0.txt * +*******************************************************************************/ + +#ifndef CLIPPER_CORE_H +#define CLIPPER_CORE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "clipper2/clipper.version.h" + +namespace Clipper2Lib +{ + +#if (defined(__cpp_exceptions) && __cpp_exceptions) || (defined(__EXCEPTIONS) && __EXCEPTIONS) + + class Clipper2Exception : public std::exception { + public: + explicit Clipper2Exception(const char* description) : + m_descr(description) {} + virtual const char* what() const noexcept override { return m_descr.c_str(); } + private: + std::string m_descr; + }; + + static const char* precision_error = + "Precision exceeds the permitted range"; + static const char* range_error = + "Values exceed permitted range"; + static const char* scale_error = + "Invalid scale (either 0 or too large)"; + static const char* non_pair_error = + "There must be 2 values for each coordinate"; + static const char* undefined_error = + "There is an undefined error in Clipper2"; +#endif + + // error codes (2^n) + const int precision_error_i = 1; // non-fatal + const int scale_error_i = 2; // non-fatal + const int non_pair_error_i = 4; // non-fatal + const int undefined_error_i = 32; // fatal + const int range_error_i = 64; + +#ifndef PI + static const double PI = 3.141592653589793238; +#endif + +#ifdef CLIPPER2_MAX_DECIMAL_PRECISION + const int CLIPPER2_MAX_DEC_PRECISION = CLIPPER2_MAX_DECIMAL_PRECISION; +#else + const int CLIPPER2_MAX_DEC_PRECISION = 8; // see Discussions #564 +#endif + + static const int64_t MAX_COORD = INT64_MAX >> 2; + static const int64_t MIN_COORD = -MAX_COORD; + static const int64_t INVALID = INT64_MAX; + const double max_coord = static_cast(MAX_COORD); + const double min_coord = static_cast(MIN_COORD); + + static const double MAX_DBL = (std::numeric_limits::max)(); + + static void DoError([[maybe_unused]] int error_code) + { +#if (defined(__cpp_exceptions) && __cpp_exceptions) || (defined(__EXCEPTIONS) && __EXCEPTIONS) + switch (error_code) + { + case precision_error_i: + throw Clipper2Exception(precision_error); + case scale_error_i: + throw Clipper2Exception(scale_error); + case non_pair_error_i: + throw Clipper2Exception(non_pair_error); + case undefined_error_i: + throw Clipper2Exception(undefined_error); + case range_error_i: + throw Clipper2Exception(range_error); + // Should never happen, but adding this to stop a compiler warning + default: + throw Clipper2Exception("Unknown error"); + } +#else + ++error_code; // only to stop compiler warning +#endif + } + + // can we call std::round on T? (default false) (#824) + template + struct is_round_invocable : std::false_type {}; + + template + struct is_round_invocable()))>> : std::true_type {}; + + + //By far the most widely used filling rules for polygons are EvenOdd + //and NonZero, sometimes called Alternate and Winding respectively. + //https://en.wikipedia.org/wiki/Nonzero-rule + enum class FillRule { EvenOdd, NonZero, Positive, Negative }; + +#ifdef USINGZ + using z_type = int64_t; +#endif + + // Point ------------------------------------------------------------------------ + + template + struct Point { + T x; + T y; +#ifdef USINGZ + z_type z; + + template + inline void Init(const T2 x_ = 0, const T2 y_ = 0, const z_type z_ = 0) + { + if constexpr (std::is_integral_v && + is_round_invocable::value && !std::is_integral_v) + { + x = static_cast(std::round(x_)); + y = static_cast(std::round(y_)); + z = z_; + } + else + { + x = static_cast(x_); + y = static_cast(y_); + z = z_; + } + } + + explicit Point() : x(0), y(0), z(0) {}; + + template + Point(const T2 x_, const T2 y_, const z_type z_ = 0) + { + Init(x_, y_); + z = z_; + } + + template + explicit Point(const Point& p) + { + Init(p.x, p.y, p.z); + } + + template + explicit Point(const Point& p, z_type z_) + { + Init(p.x, p.y, z_); + } + + Point operator * (const double scale) const + { + return Point(x * scale, y * scale, z); + } + + void SetZ(const z_type z_value) { z = z_value; } + + friend std::ostream& operator<<(std::ostream& os, const Point& point) + { + os << point.x << "," << point.y << "," << point.z; + return os; + } + +#else + + template + inline void Init(const T2 x_ = 0, const T2 y_ = 0) + { + if constexpr (std::is_integral_v && + is_round_invocable::value && !std::is_integral_v) + { + x = static_cast(std::round(x_)); + y = static_cast(std::round(y_)); + } + else + { + x = static_cast(x_); + y = static_cast(y_); + } + } + + explicit Point() : x(0), y(0) {}; + + template + Point(const T2 x_, const T2 y_) { Init(x_, y_); } + + template + explicit Point(const Point& p) { Init(p.x, p.y); } + + Point operator * (const double scale) const + { + return Point(x * scale, y * scale); + } + + friend std::ostream& operator<<(std::ostream& os, const Point& point) + { + os << point.x << "," << point.y; + return os; + } +#endif + + friend bool operator==(const Point& a, const Point& b) + { + return a.x == b.x && a.y == b.y; + } + + friend bool operator!=(const Point& a, const Point& b) + { + return !(a == b); + } + + inline Point operator-() const + { + return Point(-x, -y); + } + + inline Point operator+(const Point& b) const + { + return Point(x + b.x, y + b.y); + } + + inline Point operator-(const Point& b) const + { + return Point(x - b.x, y - b.y); + } + + inline void Negate() { x = -x; y = -y; } + + }; + + //nb: using 'using' here (instead of typedef) as they can be used in templates + using Point64 = Point; + using PointD = Point; + + template + using Path = std::vector>; + template + using Paths = std::vector>; + + using Path64 = Path; + using PathD = Path; + using Paths64 = std::vector< Path64>; + using PathsD = std::vector< PathD>; + + static const Point64 InvalidPoint64 = Point64( + (std::numeric_limits::max)(), + (std::numeric_limits::max)()); + static const PointD InvalidPointD = PointD( + (std::numeric_limits::max)(), + (std::numeric_limits::max)()); + + template + static inline Point MidPoint(const Point& p1, const Point& p2) + { + Point result; + result.x = (p1.x + p2.x) / 2; + result.y = (p1.y + p2.y) / 2; + return result; + } + + // Rect ------------------------------------------------------------------------ + + template + struct Rect; + + using Rect64 = Rect; + using RectD = Rect; + + template + struct Rect { + T left; + T top; + T right; + T bottom; + + Rect(T l, T t, T r, T b) : + left(l), + top(t), + right(r), + bottom(b) {} + + Rect(bool is_valid = true) + { + if (is_valid) + { + left = right = top = bottom = 0; + } + else + { + left = top = (std::numeric_limits::max)(); + right = bottom = std::numeric_limits::lowest(); + } + } + + static Rect InvalidRect() + { + return { + (std::numeric_limits::max)(), + (std::numeric_limits::max)(), + std::numeric_limits::lowest(), + std::numeric_limits::lowest() }; + } + + bool IsValid() const { return left != (std::numeric_limits::max)(); } + + T Width() const { return right - left; } + T Height() const { return bottom - top; } + void Width(T width) { right = left + width; } + void Height(T height) { bottom = top + height; } + + Point MidPoint() const + { + return Point((left + right) / 2, (top + bottom) / 2); + } + + Path AsPath() const + { + Path result; + result.reserve(4); + result.push_back(Point(left, top)); + result.push_back(Point(right, top)); + result.push_back(Point(right, bottom)); + result.push_back(Point(left, bottom)); + return result; + } + + bool Contains(const Point& pt) const + { + return pt.x > left && pt.x < right&& pt.y > top && pt.y < bottom; + } + + bool Contains(const Rect& rec) const + { + return rec.left >= left && rec.right <= right && + rec.top >= top && rec.bottom <= bottom; + } + + void Scale(double scale) { + left *= scale; + top *= scale; + right *= scale; + bottom *= scale; + } + + bool IsEmpty() const { return bottom <= top || right <= left; }; + + bool Intersects(const Rect& rec) const + { + return ((std::max)(left, rec.left) <= (std::min)(right, rec.right)) && + ((std::max)(top, rec.top) <= (std::min)(bottom, rec.bottom)); + }; + + bool operator==(const Rect& other) const { + return left == other.left && right == other.right && + top == other.top && bottom == other.bottom; + } + + Rect& operator+=(const Rect& other) + { + left = (std::min)(left, other.left); + top = (std::min)(top, other.top); + right = (std::max)(right, other.right); + bottom = (std::max)(bottom, other.bottom); + return *this; + } + + Rect operator+(const Rect& other) const + { + Rect result = *this; + result += other; + return result; + } + + friend std::ostream& operator<<(std::ostream& os, const Rect& rect) { + os << "(" << rect.left << "," << rect.top << "," << rect.right << "," << rect.bottom << ") "; + return os; + } + }; + + template + inline Rect ScaleRect(const Rect& rect, double scale) + { + Rect result; + + if constexpr (std::is_integral_v && + is_round_invocable::value && !std::is_integral_v) + { + result.left = static_cast(std::round(rect.left * scale)); + result.top = static_cast(std::round(rect.top * scale)); + result.right = static_cast(std::round(rect.right * scale)); + result.bottom = static_cast(std::round(rect.bottom * scale)); + } + else + { + result.left = static_cast(rect.left * scale); + result.top = static_cast(rect.top * scale); + result.right = static_cast(rect.right * scale); + result.bottom = static_cast(rect.bottom * scale); + } + return result; + } + + static const Rect64 InvalidRect64 = Rect64::InvalidRect(); + static const RectD InvalidRectD = RectD::InvalidRect(); + + template + Rect GetBounds(const Path& path) + { + T xmin = (std::numeric_limits::max)(); + T ymin = (std::numeric_limits::max)(); + T xmax = std::numeric_limits::lowest(); + T ymax = std::numeric_limits::lowest(); + for (const auto& p : path) + { + if (p.x < xmin) xmin = p.x; + if (p.x > xmax) xmax = p.x; + if (p.y < ymin) ymin = p.y; + if (p.y > ymax) ymax = p.y; + } + return Rect(xmin, ymin, xmax, ymax); + } + + template + Rect GetBounds(const Paths& paths) + { + T xmin = (std::numeric_limits::max)(); + T ymin = (std::numeric_limits::max)(); + T xmax = std::numeric_limits::lowest(); + T ymax = std::numeric_limits::lowest(); + for (const Path& path : paths) + for (const Point& p : path) + { + if (p.x < xmin) xmin = p.x; + if (p.x > xmax) xmax = p.x; + if (p.y < ymin) ymin = p.y; + if (p.y > ymax) ymax = p.y; + } + return Rect(xmin, ymin, xmax, ymax); + } + + template + Rect GetBounds(const Path& path) + { + T xmin = (std::numeric_limits::max)(); + T ymin = (std::numeric_limits::max)(); + T xmax = std::numeric_limits::lowest(); + T ymax = std::numeric_limits::lowest(); + for (const auto& p : path) + { + if (p.x < xmin) xmin = static_cast(p.x); + if (p.x > xmax) xmax = static_cast(p.x); + if (p.y < ymin) ymin = static_cast(p.y); + if (p.y > ymax) ymax = static_cast(p.y); + } + return Rect(xmin, ymin, xmax, ymax); + } + + template + Rect GetBounds(const Paths& paths) + { + T xmin = (std::numeric_limits::max)(); + T ymin = (std::numeric_limits::max)(); + T xmax = std::numeric_limits::lowest(); + T ymax = std::numeric_limits::lowest(); + for (const Path& path : paths) + for (const Point& p : path) + { + if (p.x < xmin) xmin = static_cast(p.x); + if (p.x > xmax) xmax = static_cast(p.x); + if (p.y < ymin) ymin = static_cast(p.y); + if (p.y > ymax) ymax = static_cast(p.y); + } + return Rect(xmin, ymin, xmax, ymax); + } + + template + std::ostream& operator << (std::ostream& outstream, const Path& path) + { + if (!path.empty()) + { + auto pt = path.cbegin(), last = path.cend() - 1; + while (pt != last) + outstream << *pt++ << ", "; + outstream << *last << std::endl; + } + return outstream; + } + + template + std::ostream& operator << (std::ostream& outstream, const Paths& paths) + { + for (auto p : paths) + outstream << p; + return outstream; + } + + + template + inline Path ScalePath(const Path& path, + double scale_x, double scale_y, int& error_code) + { + Path result; + if (scale_x == 0 || scale_y == 0) + { + error_code |= scale_error_i; + DoError(scale_error_i); + // if no exception, treat as non-fatal error + if (scale_x == 0) scale_x = 1.0; + if (scale_y == 0) scale_y = 1.0; + } + + result.reserve(path.size()); +#ifdef USINGZ + std::transform(path.begin(), path.end(), back_inserter(result), + [scale_x, scale_y](const auto& pt) + { return Point(pt.x * scale_x, pt.y * scale_y, pt.z); }); +#else + std::transform(path.begin(), path.end(), back_inserter(result), + [scale_x, scale_y](const auto& pt) + { return Point(pt.x * scale_x, pt.y * scale_y); }); +#endif + return result; + } + + template + inline Path ScalePath(const Path& path, + double scale, int& error_code) + { + return ScalePath(path, scale, scale, error_code); + } + + template + inline Paths ScalePaths(const Paths& paths, + double scale_x, double scale_y, int& error_code) + { + Paths result; + + if constexpr (std::is_integral_v) + { + RectD r = GetBounds(paths); + if ((r.left * scale_x) < min_coord || + (r.right * scale_x) > max_coord || + (r.top * scale_y) < min_coord || + (r.bottom * scale_y) > max_coord) + { + error_code |= range_error_i; + DoError(range_error_i); + return result; // empty path + } + } + + result.reserve(paths.size()); + std::transform(paths.begin(), paths.end(), back_inserter(result), + [=, &error_code](const auto& path) + { return ScalePath(path, scale_x, scale_y, error_code); }); + return result; + } + + template + inline Paths ScalePaths(const Paths& paths, + double scale, int& error_code) + { + return ScalePaths(paths, scale, scale, error_code); + } + + template + inline Path TransformPath(const Path& path) + { + Path result; + result.reserve(path.size()); + std::transform(path.cbegin(), path.cend(), std::back_inserter(result), + [](const Point& pt) {return Point(pt); }); + return result; + } + + template + inline Paths TransformPaths(const Paths& paths) + { + Paths result; + std::transform(paths.cbegin(), paths.cend(), std::back_inserter(result), + [](const Path& path) {return TransformPath(path); }); + return result; + } + + template + inline double Sqr(T val) + { + return static_cast(val) * static_cast(val); + } + + template + inline bool NearEqual(const Point& p1, + const Point& p2, double max_dist_sqrd) + { + return Sqr(p1.x - p2.x) + Sqr(p1.y - p2.y) < max_dist_sqrd; + } + + template + inline Path StripNearEqual(const Path& path, + double max_dist_sqrd, bool is_closed_path) + { + if (path.size() == 0) return Path(); + Path result; + result.reserve(path.size()); + typename Path::const_iterator path_iter = path.cbegin(); + Point first_pt = *path_iter++, last_pt = first_pt; + result.push_back(first_pt); + for (; path_iter != path.cend(); ++path_iter) + { + if (!NearEqual(*path_iter, last_pt, max_dist_sqrd)) + { + last_pt = *path_iter; + result.push_back(last_pt); + } + } + if (!is_closed_path) return result; + while (result.size() > 1 && + NearEqual(result.back(), first_pt, max_dist_sqrd)) result.pop_back(); + return result; + } + + template + inline Paths StripNearEqual(const Paths& paths, + double max_dist_sqrd, bool is_closed_path) + { + Paths result; + result.reserve(paths.size()); + for (typename Paths::const_iterator paths_citer = paths.cbegin(); + paths_citer != paths.cend(); ++paths_citer) + { + result.push_back(StripNearEqual(*paths_citer, max_dist_sqrd, is_closed_path)); + } + return result; + } + + template + inline void StripDuplicates( Path& path, bool is_closed_path) + { + //https://stackoverflow.com/questions/1041620/whats-the-most-efficient-way-to-erase-duplicates-and-sort-a-vector#:~:text=Let%27s%20compare%20three%20approaches%3A + path.erase(std::unique(path.begin(), path.end()), path.end()); + if (is_closed_path) + while (path.size() > 1 && path.back() == path.front()) path.pop_back(); + } + + template + inline void StripDuplicates( Paths& paths, bool is_closed_path) + { + for (typename Paths::iterator paths_citer = paths.begin(); + paths_citer != paths.end(); ++paths_citer) + { + StripDuplicates(*paths_citer, is_closed_path); + } + } + + // Miscellaneous ------------------------------------------------------------ + + inline void CheckPrecisionRange(int& precision, int& error_code) + { + if (precision >= -CLIPPER2_MAX_DEC_PRECISION && + precision <= CLIPPER2_MAX_DEC_PRECISION) return; + error_code |= precision_error_i; // non-fatal error + DoError(precision_error_i); // does nothing when exceptions are disabled + precision = precision > 0 ? CLIPPER2_MAX_DEC_PRECISION : -CLIPPER2_MAX_DEC_PRECISION; + } + + inline void CheckPrecisionRange(int& precision) + { + int error_code = 0; + CheckPrecisionRange(precision, error_code); + } + + inline int TriSign(int64_t x) // returns 0, 1 or -1 + { + return (x > 0) - (x < 0); + } + + struct MultiplyUInt64Result + { + const uint64_t result = 0; + const uint64_t carry = 0; + + bool operator==(const MultiplyUInt64Result& other) const + { + return result == other.result && carry == other.carry; + }; + }; + + inline MultiplyUInt64Result Multiply(uint64_t a, uint64_t b) // #834, #835 + { + const auto lo = [](uint64_t x) { return x & 0xFFFFFFFF; }; + const auto hi = [](uint64_t x) { return x >> 32; }; + + const uint64_t x1 = lo(a) * lo(b); + const uint64_t x2 = hi(a) * lo(b) + hi(x1); + const uint64_t x3 = lo(a) * hi(b) + lo(x2); + const uint64_t result = lo(x3) << 32 | lo(x1); + const uint64_t carry = hi(a) * hi(b) + hi(x2) + hi(x3); + + return { result, carry }; + } + + // returns true if (and only if) a * b == c * d + inline bool ProductsAreEqual(int64_t a, int64_t b, int64_t c, int64_t d) + { +#if (defined(__clang__) || defined(__GNUC__)) && UINTPTR_MAX >= UINT64_MAX + const auto ab = static_cast<__int128_t>(a) * static_cast<__int128_t>(b); + const auto cd = static_cast<__int128_t>(c) * static_cast<__int128_t>(d); + return ab == cd; +#else + // nb: unsigned values needed for calculating overflow carry + const auto abs_a = static_cast(std::abs(a)); + const auto abs_b = static_cast(std::abs(b)); + const auto abs_c = static_cast(std::abs(c)); + const auto abs_d = static_cast(std::abs(d)); + + const auto abs_ab = Multiply(abs_a, abs_b); + const auto abs_cd = Multiply(abs_c, abs_d); + + // nb: it's important to differentiate 0 values here from other values + const auto sign_ab = TriSign(a) * TriSign(b); + const auto sign_cd = TriSign(c) * TriSign(d); + + return abs_ab == abs_cd && sign_ab == sign_cd; +#endif + } + + template + inline bool IsCollinear(const Point& pt1, + const Point& sharedPt, const Point& pt2) // #777 + { + const auto a = sharedPt.x - pt1.x; + const auto b = pt2.y - sharedPt.y; + const auto c = sharedPt.y - pt1.y; + const auto d = pt2.x - sharedPt.x; + // When checking for collinearity with very large coordinate values + // then ProductsAreEqual is more accurate than using CrossProduct. + return ProductsAreEqual(a, b, c, d); + } + + + template + inline double CrossProduct(const Point& pt1, const Point& pt2, const Point& pt3) { + return (static_cast(pt2.x - pt1.x) * static_cast(pt3.y - + pt2.y) - static_cast(pt2.y - pt1.y) * static_cast(pt3.x - pt2.x)); + } + + template + inline double CrossProduct(const Point& vec1, const Point& vec2) + { + return static_cast(vec1.y * vec2.x) - static_cast(vec2.y * vec1.x); + } + + template + inline double DotProduct(const Point& pt1, const Point& pt2, const Point& pt3) { + return (static_cast(pt2.x - pt1.x) * static_cast(pt3.x - pt2.x) + + static_cast(pt2.y - pt1.y) * static_cast(pt3.y - pt2.y)); + } + + template + inline double DotProduct(const Point& vec1, const Point& vec2) + { + return static_cast(vec1.x * vec2.x) + static_cast(vec1.y * vec2.y); + } + + template + inline double DistanceSqr(const Point pt1, const Point pt2) + { + return Sqr(pt1.x - pt2.x) + Sqr(pt1.y - pt2.y); + } + + template + inline double PerpendicDistFromLineSqrd(const Point& pt, + const Point& line1, const Point& line2) + { + //perpendicular distance of point (xยณ,yยณ) = (Axยณ + Byยณ + C)/Sqrt(Aยฒ + Bยฒ) + //see http://en.wikipedia.org/wiki/Perpendicular_distance + double a = static_cast(pt.x - line1.x); + double b = static_cast(pt.y - line1.y); + double c = static_cast(line2.x - line1.x); + double d = static_cast(line2.y - line1.y); + if (c == 0 && d == 0) return 0; + return Sqr(a * d - c * b) / (c * c + d * d); + } + + template + inline double Area(const Path& path) + { + size_t cnt = path.size(); + if (cnt < 3) return 0.0; + double a = 0.0; + typename Path::const_iterator it1, it2 = path.cend() - 1, stop = it2; + if (!(cnt & 1)) ++stop; + for (it1 = path.cbegin(); it1 != stop;) + { + a += static_cast(it2->y + it1->y) * (it2->x - it1->x); + it2 = it1 + 1; + a += static_cast(it1->y + it2->y) * (it1->x - it2->x); + it1 += 2; + } + if (cnt & 1) + a += static_cast(it2->y + it1->y) * (it2->x - it1->x); + return (a * 0.5); + } + + template + inline double Area(const Paths& paths) + { + double a = 0.0; + for (typename Paths::const_iterator paths_iter = paths.cbegin(); + paths_iter != paths.cend(); ++paths_iter) + { + a += Area(*paths_iter); + } + return a; + } + + template + inline bool IsPositive(const Path& poly) + { + // A curve has positive orientation [and area] if a region 'R' + // is on the left when traveling around the outside of 'R'. + //https://mathworld.wolfram.com/CurveOrientation.html + //nb: This statement is premised on using Cartesian coordinates + return Area(poly) >= 0; + } + +#if CLIPPER2_HI_PRECISION + // caution: this will compromise performance + // https://github.com/AngusJohnson/Clipper2/issues/317#issuecomment-1314023253 + // See also CPP/BenchMark/GetIntersectPtBenchmark.cpp + #define CC_MIN(x,y) ((x)>(y)?(y):(x)) + #define CC_MAX(x,y) ((x)<(y)?(y):(x)) + template + inline bool GetSegmentIntersectPt(const Point& ln1a, const Point& ln1b, + const Point& ln2a, const Point& ln2b, Point& ip) + { + double ln1dy = static_cast(ln1b.y - ln1a.y); + double ln1dx = static_cast(ln1a.x - ln1b.x); + double ln2dy = static_cast(ln2b.y - ln2a.y); + double ln2dx = static_cast(ln2a.x - ln2b.x); + double det = (ln2dy * ln1dx) - (ln1dy * ln2dx); + if (det == 0.0) return false; + T bb0minx = CC_MIN(ln1a.x, ln1b.x); + T bb0miny = CC_MIN(ln1a.y, ln1b.y); + T bb0maxx = CC_MAX(ln1a.x, ln1b.x); + T bb0maxy = CC_MAX(ln1a.y, ln1b.y); + T bb1minx = CC_MIN(ln2a.x, ln2b.x); + T bb1miny = CC_MIN(ln2a.y, ln2b.y); + T bb1maxx = CC_MAX(ln2a.x, ln2b.x); + T bb1maxy = CC_MAX(ln2a.y, ln2b.y); + + if constexpr (std::is_integral_v) + { + int64_t originx = (CC_MIN(bb0maxx, bb1maxx) + CC_MAX(bb0minx, bb1minx)) >> 1; + int64_t originy = (CC_MIN(bb0maxy, bb1maxy) + CC_MAX(bb0miny, bb1miny)) >> 1; + double ln0c = (ln1dy * static_cast(ln1a.x - originx)) + + (ln1dx * static_cast(ln1a.y - originy)); + double ln1c = (ln2dy * static_cast(ln2a.x - originx)) + + (ln2dx * static_cast(ln2a.y - originy)); + double hitx = ((ln1dx * ln1c) - (ln2dx * ln0c)) / det; + double hity = ((ln2dy * ln0c) - (ln1dy * ln1c)) / det; + + ip.x = originx + (T)nearbyint(hitx); + ip.y = originy + (T)nearbyint(hity); + } + else + { + double originx = (CC_MIN(bb0maxx, bb1maxx) + CC_MAX(bb0minx, bb1minx)) / 2.0; + double originy = (CC_MIN(bb0maxy, bb1maxy) + CC_MAX(bb0miny, bb1miny)) / 2.0; + double ln0c = (ln1dy * static_cast(ln1a.x - originx)) + + (ln1dx * static_cast(ln1a.y - originy)); + double ln1c = (ln2dy * static_cast(ln2a.x - originx)) + + (ln2dx * static_cast(ln2a.y - originy)); + double hitx = ((ln1dx * ln1c) - (ln2dx * ln0c)) / det; + double hity = ((ln2dy * ln0c) - (ln1dy * ln1c)) / det; + + ip.x = originx + static_cast(hitx); + ip.y = originy + static_cast(hity); + } + return true; +} +#else + template + inline bool GetSegmentIntersectPt(const Point& ln1a, const Point& ln1b, + const Point& ln2a, const Point& ln2b, Point& ip) + { + // https://en.wikipedia.org/wiki/Line%E2%80%93line_intersection + double dx1 = static_cast(ln1b.x - ln1a.x); + double dy1 = static_cast(ln1b.y - ln1a.y); + double dx2 = static_cast(ln2b.x - ln2a.x); + double dy2 = static_cast(ln2b.y - ln2a.y); + + double det = dy1 * dx2 - dy2 * dx1; + if (det == 0.0) return false; + double t = ((ln1a.x - ln2a.x) * dy2 - (ln1a.y - ln2a.y) * dx2) / det; + if (t <= 0.0) ip = ln1a; + else if (t >= 1.0) ip = ln1b; + else + { + ip.x = static_cast(ln1a.x + t * dx1); + ip.y = static_cast(ln1a.y + t * dy1); + } + return true; + } +#endif + + template + inline Point TranslatePoint(const Point& pt, double dx, double dy) + { +#ifdef USINGZ + return Point(pt.x + dx, pt.y + dy, pt.z); +#else + return Point(pt.x + dx, pt.y + dy); +#endif + } + + + template + inline Point ReflectPoint(const Point& pt, const Point& pivot) + { +#ifdef USINGZ + return Point(pivot.x + (pivot.x - pt.x), pivot.y + (pivot.y - pt.y), pt.z); +#else + return Point(pivot.x + (pivot.x - pt.x), pivot.y + (pivot.y - pt.y)); +#endif + } + + template + inline int GetSign(const T& val) + { + if (!val) return 0; + return (val > 0) ? 1 : -1; + } + + inline bool SegmentsIntersect(const Point64& seg1a, const Point64& seg1b, + const Point64& seg2a, const Point64& seg2b, bool inclusive = false) + { + if (inclusive) + { + double res1 = CrossProduct(seg1a, seg2a, seg2b); + double res2 = CrossProduct(seg1b, seg2a, seg2b); + if (res1 * res2 > 0) return false; + double res3 = CrossProduct(seg2a, seg1a, seg1b); + double res4 = CrossProduct(seg2b, seg1a, seg1b); + if (res3 * res4 > 0) return false; + return (res1 || res2 || res3 || res4); // ensures not collinear + } + else { + return (GetSign(CrossProduct(seg1a, seg2a, seg2b)) * + GetSign(CrossProduct(seg1b, seg2a, seg2b)) < 0) && + (GetSign(CrossProduct(seg2a, seg1a, seg1b)) * + GetSign(CrossProduct(seg2b, seg1a, seg1b)) < 0); + } + } + + template + inline Point GetClosestPointOnSegment(const Point& offPt, + const Point& seg1, const Point& seg2) + { + if (seg1.x == seg2.x && seg1.y == seg2.y) return seg1; + double dx = static_cast(seg2.x - seg1.x); + double dy = static_cast(seg2.y - seg1.y); + double q = + (static_cast(offPt.x - seg1.x) * dx + + static_cast(offPt.y - seg1.y) * dy) / + (Sqr(dx) + Sqr(dy)); + if (q < 0) q = 0; else if (q > 1) q = 1; + if constexpr (std::is_integral_v) + return Point( + seg1.x + static_cast(nearbyint(q * dx)), + seg1.y + static_cast(nearbyint(q * dy))); + else + return Point( + seg1.x + static_cast(q * dx), + seg1.y + static_cast(q * dy)); + } + + enum class PointInPolygonResult { IsOn, IsInside, IsOutside }; + + template + inline PointInPolygonResult PointInPolygon(const Point& pt, const Path& polygon) + { + if (polygon.size() < 3) + return PointInPolygonResult::IsOutside; + + int val = 0; + typename Path::const_iterator cbegin = polygon.cbegin(), first = cbegin, curr, prev; + typename Path::const_iterator cend = polygon.cend(); + + while (first != cend && first->y == pt.y) ++first; + if (first == cend) // not a proper polygon + return PointInPolygonResult::IsOutside; + + bool is_above = first->y < pt.y, starting_above = is_above; + curr = first +1; + while (true) + { + if (curr == cend) + { + if (cend == first || first == cbegin) break; + cend = first; + curr = cbegin; + } + + if (is_above) + { + while (curr != cend && curr->y < pt.y) ++curr; + if (curr == cend) continue; + } + else + { + while (curr != cend && curr->y > pt.y) ++curr; + if (curr == cend) continue; + } + + if (curr == cbegin) + prev = polygon.cend() - 1; //nb: NOT cend (since might equal first) + else + prev = curr - 1; + + if (curr->y == pt.y) + { + if (curr->x == pt.x || + (curr->y == prev->y && + ((pt.x < prev->x) != (pt.x < curr->x)))) + return PointInPolygonResult::IsOn; + ++curr; + if (curr == first) break; + continue; + } + + if (pt.x < curr->x && pt.x < prev->x) + { + // we're only interested in edges crossing on the left + } + else if (pt.x > prev->x && pt.x > curr->x) + val = 1 - val; // toggle val + else + { + double d = CrossProduct(*prev, *curr, pt); + if (d == 0) return PointInPolygonResult::IsOn; + if ((d < 0) == is_above) val = 1 - val; + } + is_above = !is_above; + ++curr; + } + + if (is_above != starting_above) + { + cend = polygon.cend(); + if (curr == cend) curr = cbegin; + if (curr == cbegin) prev = cend - 1; + else prev = curr - 1; + double d = CrossProduct(*prev, *curr, pt); + if (d == 0) return PointInPolygonResult::IsOn; + if ((d < 0) == is_above) val = 1 - val; + } + + return (val == 0) ? + PointInPolygonResult::IsOutside : + PointInPolygonResult::IsInside; + } + +} // namespace + +#endif // CLIPPER_CORE_H diff --git a/clipper2/include/clipper2/clipper.engine.h b/clipper2/include/clipper2/clipper.engine.h new file mode 100644 index 000000000..559f24790 --- /dev/null +++ b/clipper2/include/clipper2/clipper.engine.h @@ -0,0 +1,641 @@ +/******************************************************************************* +* Author : Angus Johnson * +* Date : 17 September 2024 * +* Website : http://www.angusj.com * +* Copyright : Angus Johnson 2010-2024 * +* Purpose : This is the main polygon clipping module * +* License : http://www.boost.org/LICENSE_1_0.txt * +*******************************************************************************/ + +#ifndef CLIPPER_ENGINE_H +#define CLIPPER_ENGINE_H + +#include +#include //#541 +#include +#include +#include +#include +#include +#include + +#include "clipper2/clipper.core.h" + +namespace Clipper2Lib { + + struct Scanline; + struct IntersectNode; + struct Active; + struct Vertex; + struct LocalMinima; + struct OutRec; + struct HorzSegment; + + //Note: all clipping operations except for Difference are commutative. + enum class ClipType { NoClip, Intersection, Union, Difference, Xor }; + + enum class PathType { Subject, Clip }; + enum class JoinWith { NoJoin, Left, Right }; + + enum class VertexFlags : uint32_t { + Empty = 0, OpenStart = 1, OpenEnd = 2, LocalMax = 4, LocalMin = 8 + }; + + constexpr enum VertexFlags operator &(enum VertexFlags a, enum VertexFlags b) + { + return (enum VertexFlags)(uint32_t(a) & uint32_t(b)); + } + + constexpr enum VertexFlags operator |(enum VertexFlags a, enum VertexFlags b) + { + return (enum VertexFlags)(uint32_t(a) | uint32_t(b)); + } + + struct Vertex { + Point64 pt; + Vertex* next = nullptr; + Vertex* prev = nullptr; + VertexFlags flags = VertexFlags::Empty; + }; + + struct OutPt { + Point64 pt; + OutPt* next = nullptr; + OutPt* prev = nullptr; + OutRec* outrec; + HorzSegment* horz = nullptr; + + OutPt(const Point64& pt_, OutRec* outrec_): pt(pt_), outrec(outrec_) { + next = this; + prev = this; + } + }; + + class PolyPath; + class PolyPath64; + class PolyPathD; + using PolyTree64 = PolyPath64; + using PolyTreeD = PolyPathD; + + struct OutRec; + typedef std::vector OutRecList; + + //OutRec: contains a path in the clipping solution. Edges in the AEL will + //have OutRec pointers assigned when they form part of the clipping solution. + struct OutRec { + size_t idx = 0; + OutRec* owner = nullptr; + Active* front_edge = nullptr; + Active* back_edge = nullptr; + OutPt* pts = nullptr; + PolyPath* polypath = nullptr; + OutRecList* splits = nullptr; + OutRec* recursive_split = nullptr; + Rect64 bounds = {}; + Path64 path; + bool is_open = false; + + ~OutRec() { + if (splits) delete splits; + // nb: don't delete the split pointers + // as these are owned by ClipperBase's outrec_list_ + }; + }; + + /////////////////////////////////////////////////////////////////// + //Important: UP and DOWN here are premised on Y-axis positive down + //displays, which is the orientation used in Clipper's development. + /////////////////////////////////////////////////////////////////// + + struct Active { + Point64 bot; + Point64 top; + int64_t curr_x = 0; //current (updated at every new scanline) + double dx = 0.0; + int wind_dx = 1; //1 or -1 depending on winding direction + int wind_cnt = 0; + int wind_cnt2 = 0; //winding count of the opposite polytype + OutRec* outrec = nullptr; + //AEL: 'active edge list' (Vatti's AET - active edge table) + // a linked list of all edges (from left to right) that are present + // (or 'active') within the current scanbeam (a horizontal 'beam' that + // sweeps from bottom to top over the paths in the clipping operation). + Active* prev_in_ael = nullptr; + Active* next_in_ael = nullptr; + //SEL: 'sorted edge list' (Vatti's ST - sorted table) + // linked list used when sorting edges into their new positions at the + // top of scanbeams, but also (re)used to process horizontals. + Active* prev_in_sel = nullptr; + Active* next_in_sel = nullptr; + Active* jump = nullptr; + Vertex* vertex_top = nullptr; + LocalMinima* local_min = nullptr; // the bottom of an edge 'bound' (also Vatti) + bool is_left_bound = false; + JoinWith join_with = JoinWith::NoJoin; + }; + + struct LocalMinima { + Vertex* vertex; + PathType polytype; + bool is_open; + LocalMinima(Vertex* v, PathType pt, bool open) : + vertex(v), polytype(pt), is_open(open){} + }; + + struct IntersectNode { + Point64 pt; + Active* edge1; + Active* edge2; + IntersectNode() : pt(Point64(0,0)), edge1(NULL), edge2(NULL) {} + IntersectNode(Active* e1, Active* e2, Point64& pt_) : + pt(pt_), edge1(e1), edge2(e2) {} + }; + + struct HorzSegment { + OutPt* left_op; + OutPt* right_op = nullptr; + bool left_to_right = true; + HorzSegment() : left_op(nullptr) { } + explicit HorzSegment(OutPt* op) : left_op(op) { } + }; + + struct HorzJoin { + OutPt* op1 = nullptr; + OutPt* op2 = nullptr; + HorzJoin() {}; + explicit HorzJoin(OutPt* ltr, OutPt* rtl) : op1(ltr), op2(rtl) { } + }; + +#ifdef USINGZ + typedef std::function ZCallback64; + + typedef std::function ZCallbackD; +#endif + + typedef std::vector HorzSegmentList; + typedef std::unique_ptr LocalMinima_ptr; + typedef std::vector LocalMinimaList; + typedef std::vector IntersectNodeList; + + // ReuseableDataContainer64 ------------------------------------------------ + + class ReuseableDataContainer64 { + private: + friend class ClipperBase; + LocalMinimaList minima_list_; + std::vector vertex_lists_; + void AddLocMin(Vertex& vert, PathType polytype, bool is_open); + public: + virtual ~ReuseableDataContainer64(); + void Clear(); + void AddPaths(const Paths64& paths, PathType polytype, bool is_open); + }; + + // ClipperBase ------------------------------------------------------------- + + class ClipperBase { + private: + ClipType cliptype_ = ClipType::NoClip; + FillRule fillrule_ = FillRule::EvenOdd; + FillRule fillpos = FillRule::Positive; + int64_t bot_y_ = 0; + bool minima_list_sorted_ = false; + bool using_polytree_ = false; + Active* actives_ = nullptr; + Active *sel_ = nullptr; + LocalMinimaList minima_list_; //pointers in case of memory reallocs + LocalMinimaList::iterator current_locmin_iter_; + std::vector vertex_lists_; + std::priority_queue scanline_list_; + IntersectNodeList intersect_nodes_; + HorzSegmentList horz_seg_list_; + std::vector horz_join_list_; + void Reset(); + inline void InsertScanline(int64_t y); + inline bool PopScanline(int64_t &y); + inline bool PopLocalMinima(int64_t y, LocalMinima*& local_minima); + void DisposeAllOutRecs(); + void DisposeVerticesAndLocalMinima(); + void DeleteEdges(Active*& e); + inline void AddLocMin(Vertex &vert, PathType polytype, bool is_open); + bool IsContributingClosed(const Active &e) const; + inline bool IsContributingOpen(const Active &e) const; + void SetWindCountForClosedPathEdge(Active &edge); + void SetWindCountForOpenPathEdge(Active &e); + void InsertLocalMinimaIntoAEL(int64_t bot_y); + void InsertLeftEdge(Active &e); + inline void PushHorz(Active &e); + inline bool PopHorz(Active *&e); + inline OutPt* StartOpenPath(Active &e, const Point64& pt); + inline void UpdateEdgeIntoAEL(Active *e); + void IntersectEdges(Active &e1, Active &e2, const Point64& pt); + inline void DeleteFromAEL(Active &e); + inline void AdjustCurrXAndCopyToSEL(const int64_t top_y); + void DoIntersections(const int64_t top_y); + void AddNewIntersectNode(Active &e1, Active &e2, const int64_t top_y); + bool BuildIntersectList(const int64_t top_y); + void ProcessIntersectList(); + void SwapPositionsInAEL(Active& edge1, Active& edge2); + OutRec* NewOutRec(); + OutPt* AddOutPt(const Active &e, const Point64& pt); + OutPt* AddLocalMinPoly(Active &e1, Active &e2, + const Point64& pt, bool is_new = false); + OutPt* AddLocalMaxPoly(Active &e1, Active &e2, const Point64& pt); + void DoHorizontal(Active &horz); + bool ResetHorzDirection(const Active &horz, const Vertex* max_vertex, + int64_t &horz_left, int64_t &horz_right); + void DoTopOfScanbeam(const int64_t top_y); + Active *DoMaxima(Active &e); + void JoinOutrecPaths(Active &e1, Active &e2); + void FixSelfIntersects(OutRec* outrec); + void DoSplitOp(OutRec* outRec, OutPt* splitOp); + + inline void AddTrialHorzJoin(OutPt* op); + void ConvertHorzSegsToJoins(); + void ProcessHorzJoins(); + + void Split(Active& e, const Point64& pt); + inline void CheckJoinLeft(Active& e, + const Point64& pt, bool check_curr_x = false); + inline void CheckJoinRight(Active& e, + const Point64& pt, bool check_curr_x = false); + protected: + bool preserve_collinear_ = true; + bool reverse_solution_ = false; + int error_code_ = 0; + bool has_open_paths_ = false; + bool succeeded_ = true; + OutRecList outrec_list_; //pointers in case list memory reallocated + bool ExecuteInternal(ClipType ct, FillRule ft, bool use_polytrees); + void CleanCollinear(OutRec* outrec); + bool CheckBounds(OutRec* outrec); + bool CheckSplitOwner(OutRec* outrec, OutRecList* splits); + void RecursiveCheckOwners(OutRec* outrec, PolyPath* polypath); +#ifdef USINGZ + ZCallback64 zCallback_ = nullptr; + void SetZ(const Active& e1, const Active& e2, Point64& pt); +#endif + void CleanUp(); // unlike Clear, CleanUp preserves added paths + void AddPath(const Path64& path, PathType polytype, bool is_open); + void AddPaths(const Paths64& paths, PathType polytype, bool is_open); + public: + virtual ~ClipperBase(); + int ErrorCode() const { return error_code_; }; + void PreserveCollinear(bool val) { preserve_collinear_ = val; }; + bool PreserveCollinear() const { return preserve_collinear_;}; + void ReverseSolution(bool val) { reverse_solution_ = val; }; + bool ReverseSolution() const { return reverse_solution_; }; + void Clear(); + void AddReuseableData(const ReuseableDataContainer64& reuseable_data); +#ifdef USINGZ + int64_t DefaultZ = 0; +#endif + }; + + // PolyPath / PolyTree -------------------------------------------------------- + + //PolyTree: is intended as a READ-ONLY data structure for CLOSED paths returned + //by clipping operations. While this structure is more complex than the + //alternative Paths structure, it does preserve path 'ownership' - ie those + //paths that contain (or own) other paths. This will be useful to some users. + + class PolyPath { + protected: + PolyPath* parent_; + public: + PolyPath(PolyPath* parent = nullptr): parent_(parent){} + virtual ~PolyPath() {}; + //https://en.cppreference.com/w/cpp/language/rule_of_three + PolyPath(const PolyPath&) = delete; + PolyPath& operator=(const PolyPath&) = delete; + + unsigned Level() const + { + unsigned result = 0; + const PolyPath* p = parent_; + while (p) { ++result; p = p->parent_; } + return result; + } + + virtual PolyPath* AddChild(const Path64& path) = 0; + + virtual void Clear() = 0; + virtual size_t Count() const { return 0; } + + const PolyPath* Parent() const { return parent_; } + + bool IsHole() const + { + unsigned lvl = Level(); + //Even levels except level 0 + return lvl && !(lvl & 1); + } + }; + + typedef typename std::vector> PolyPath64List; + typedef typename std::vector> PolyPathDList; + + class PolyPath64 : public PolyPath { + private: + PolyPath64List childs_; + Path64 polygon_; + public: + explicit PolyPath64(PolyPath64* parent = nullptr) : PolyPath(parent) {} + explicit PolyPath64(PolyPath64* parent, const Path64& path) : PolyPath(parent) { polygon_ = path; } + + ~PolyPath64() { + childs_.resize(0); + } + + PolyPath64* operator [] (size_t index) const + { + return childs_[index].get(); //std::unique_ptr + } + + PolyPath64* Child(size_t index) const + { + return childs_[index].get(); + } + + PolyPath64List::const_iterator begin() const { return childs_.cbegin(); } + PolyPath64List::const_iterator end() const { return childs_.cend(); } + + PolyPath64* AddChild(const Path64& path) override + { + return childs_.emplace_back(std::make_unique(this, path)).get(); + } + + void Clear() override + { + childs_.resize(0); + } + + size_t Count() const override + { + return childs_.size(); + } + + const Path64& Polygon() const { return polygon_; }; + + double Area() const + { + return std::accumulate(childs_.cbegin(), childs_.cend(), + Clipper2Lib::Area(polygon_), + [](double a, const auto& child) {return a + child->Area(); }); + } + + }; + + class PolyPathD : public PolyPath { + private: + PolyPathDList childs_; + double scale_; + PathD polygon_; + public: + explicit PolyPathD(PolyPathD* parent = nullptr) : PolyPath(parent) + { + scale_ = parent ? parent->scale_ : 1.0; + } + + explicit PolyPathD(PolyPathD* parent, const Path64& path) : PolyPath(parent) + { + scale_ = parent ? parent->scale_ : 1.0; + int error_code = 0; + polygon_ = ScalePath(path, scale_, error_code); + } + + explicit PolyPathD(PolyPathD* parent, const PathD& path) : PolyPath(parent) + { + scale_ = parent ? parent->scale_ : 1.0; + polygon_ = path; + } + + ~PolyPathD() { + childs_.resize(0); + } + + PolyPathD* operator [] (size_t index) const + { + return childs_[index].get(); + } + + PolyPathD* Child(size_t index) const + { + return childs_[index].get(); + } + + PolyPathDList::const_iterator begin() const { return childs_.cbegin(); } + PolyPathDList::const_iterator end() const { return childs_.cend(); } + + void SetScale(double value) { scale_ = value; } + double Scale() const { return scale_; } + + PolyPathD* AddChild(const Path64& path) override + { + return childs_.emplace_back(std::make_unique(this, path)).get(); + } + + PolyPathD* AddChild(const PathD& path) + { + return childs_.emplace_back(std::make_unique(this, path)).get(); + } + + void Clear() override + { + childs_.resize(0); + } + + size_t Count() const override + { + return childs_.size(); + } + + const PathD& Polygon() const { return polygon_; }; + + double Area() const + { + return std::accumulate(childs_.begin(), childs_.end(), + Clipper2Lib::Area(polygon_), + [](double a, const auto& child) {return a + child->Area(); }); + } + }; + + class Clipper64 : public ClipperBase + { + private: + void BuildPaths64(Paths64& solutionClosed, Paths64* solutionOpen); + void BuildTree64(PolyPath64& polytree, Paths64& open_paths); + public: +#ifdef USINGZ + void SetZCallback(ZCallback64 cb) { zCallback_ = cb; } +#endif + + void AddSubject(const Paths64& subjects) + { + AddPaths(subjects, PathType::Subject, false); + } + void AddOpenSubject(const Paths64& open_subjects) + { + AddPaths(open_subjects, PathType::Subject, true); + } + void AddClip(const Paths64& clips) + { + AddPaths(clips, PathType::Clip, false); + } + + bool Execute(ClipType clip_type, + FillRule fill_rule, Paths64& closed_paths) + { + Paths64 dummy; + return Execute(clip_type, fill_rule, closed_paths, dummy); + } + + bool Execute(ClipType clip_type, FillRule fill_rule, + Paths64& closed_paths, Paths64& open_paths) + { + closed_paths.clear(); + open_paths.clear(); + if (ExecuteInternal(clip_type, fill_rule, false)) + BuildPaths64(closed_paths, &open_paths); + CleanUp(); + return succeeded_; + } + + bool Execute(ClipType clip_type, FillRule fill_rule, PolyTree64& polytree) + { + Paths64 dummy; + return Execute(clip_type, fill_rule, polytree, dummy); + } + + bool Execute(ClipType clip_type, + FillRule fill_rule, PolyTree64& polytree, Paths64& open_paths) + { + if (ExecuteInternal(clip_type, fill_rule, true)) + { + open_paths.clear(); + polytree.Clear(); + BuildTree64(polytree, open_paths); + } + CleanUp(); + return succeeded_; + } + }; + + class ClipperD : public ClipperBase { + private: + double scale_ = 1.0, invScale_ = 1.0; +#ifdef USINGZ + ZCallbackD zCallbackD_ = nullptr; +#endif + void BuildPathsD(PathsD& solutionClosed, PathsD* solutionOpen); + void BuildTreeD(PolyPathD& polytree, PathsD& open_paths); + public: + explicit ClipperD(int precision = 2) : ClipperBase() + { + CheckPrecisionRange(precision, error_code_); + // to optimize scaling / descaling precision + // set the scale to a power of double's radix (2) (#25) + scale_ = std::pow(std::numeric_limits::radix, + std::ilogb(std::pow(10, precision)) + 1); + invScale_ = 1 / scale_; + } + +#ifdef USINGZ + void SetZCallback(ZCallbackD cb) { zCallbackD_ = cb; }; + + void ZCB(const Point64& e1bot, const Point64& e1top, + const Point64& e2bot, const Point64& e2top, Point64& pt) + { + // de-scale (x & y) + // temporarily convert integers to their initial float values + // this will slow clipping marginally but will make it much easier + // to understand the coordinates passed to the callback function + PointD tmp = PointD(pt) * invScale_; + PointD e1b = PointD(e1bot) * invScale_; + PointD e1t = PointD(e1top) * invScale_; + PointD e2b = PointD(e2bot) * invScale_; + PointD e2t = PointD(e2top) * invScale_; + zCallbackD_(e1b,e1t, e2b, e2t, tmp); + pt.z = tmp.z; // only update 'z' + }; + + void CheckCallback() + { + if(zCallbackD_) + // if the user defined float point callback has been assigned + // then assign the proxy callback function + ClipperBase::zCallback_ = + std::bind(&ClipperD::ZCB, this, std::placeholders::_1, + std::placeholders::_2, std::placeholders::_3, + std::placeholders::_4, std::placeholders::_5); + else + ClipperBase::zCallback_ = nullptr; + } + +#endif + + void AddSubject(const PathsD& subjects) + { + AddPaths(ScalePaths(subjects, scale_, error_code_), PathType::Subject, false); + } + + void AddOpenSubject(const PathsD& open_subjects) + { + AddPaths(ScalePaths(open_subjects, scale_, error_code_), PathType::Subject, true); + } + + void AddClip(const PathsD& clips) + { + AddPaths(ScalePaths(clips, scale_, error_code_), PathType::Clip, false); + } + + bool Execute(ClipType clip_type, FillRule fill_rule, PathsD& closed_paths) + { + PathsD dummy; + return Execute(clip_type, fill_rule, closed_paths, dummy); + } + + bool Execute(ClipType clip_type, + FillRule fill_rule, PathsD& closed_paths, PathsD& open_paths) + { +#ifdef USINGZ + CheckCallback(); +#endif + if (ExecuteInternal(clip_type, fill_rule, false)) + { + BuildPathsD(closed_paths, &open_paths); + } + CleanUp(); + return succeeded_; + } + + bool Execute(ClipType clip_type, FillRule fill_rule, PolyTreeD& polytree) + { + PathsD dummy; + return Execute(clip_type, fill_rule, polytree, dummy); + } + + bool Execute(ClipType clip_type, + FillRule fill_rule, PolyTreeD& polytree, PathsD& open_paths) + { +#ifdef USINGZ + CheckCallback(); +#endif + if (ExecuteInternal(clip_type, fill_rule, true)) + { + polytree.Clear(); + polytree.SetScale(invScale_); + open_paths.clear(); + BuildTreeD(polytree, open_paths); + } + CleanUp(); + return succeeded_; + } + + }; + +} // namespace + +#endif // CLIPPER_ENGINE_H diff --git a/clipper2/include/clipper2/clipper.export.h b/clipper2/include/clipper2/clipper.export.h new file mode 100644 index 000000000..5afbba17b --- /dev/null +++ b/clipper2/include/clipper2/clipper.export.h @@ -0,0 +1,827 @@ +/******************************************************************************* +* Author : Angus Johnson * +* Date : 17 September 2024 * +* Website : http://www.angusj.com * +* Copyright : Angus Johnson 2010-2024 * +* Purpose : This module exports the Clipper2 Library (ie DLL/so) * +* License : http://www.boost.org/LICENSE_1_0.txt * +*******************************************************************************/ + + +/* + Boolean clipping: + cliptype: NoClip=0, Intersection=1, Union=2, Difference=3, Xor=4 + fillrule: EvenOdd=0, NonZero=1, Positive=2, Negative=3 + + Polygon offsetting (inflate/deflate): + jointype: Square=0, Bevel=1, Round=2, Miter=3 + endtype: Polygon=0, Joined=1, Butt=2, Square=3, Round=4 + +The path structures used extensively in other parts of this library are all +based on std::vector classes. Since C++ classes can't be accessed by other +languages, these paths are converted here into very simple array data +structures that can be parsed by just about any programming language. + +These 2D paths are defined by series of x and y coordinates together with an +optional user-defined 'z' value (see Z-values below). Hence, a vertex refers +to a single x and y coordinate (+/- a user-defined value). These values will +be either type int64_t or type double. Data structures have names that +indicate the array type by a suffixed '64' or a 'D'. For example, the data +structure CPath64 contains an array of int64_t values, whereas the data +structure CPathD contains an array of double. Where documentation omits +the type suffix (eg CPath), it is simply agnostic to the array's data type. + +For conciseness, the following letters are used in the diagrams below: +N: Number of vertices in a given path +C: Count of structure's paths +A: Array size (as distinct from the size in memory) + + +CPath64 and CPathD: +These are arrays of consecutive vertices preceeded by a pair of values +containing the number of vertices (N) in the path, and a 0 value. +_______________________________________________________________ +| counters | vertex1 | vertex2 | ... | vertexN | +| N, 0 | x1, y1, (z1) | x2, y2, (z2) | ... | xN, yN, (zN) | +--------------------------------------------------------------- + + +CPaths64 and CPathsD: +These are also arrays containing any number of consecutive CPath +structures. Preceeding these consecutive paths, there is a pair of +values that contain the length of the array structure (A) and +the count of following CPath structures (C). + Memory allocation for CPaths64 = A * sizeof(int64_t) + Memory allocation for CPathsD = A * sizeof(double) +__________________________________________ +| counters | path1 | path2 | ... | pathC | +| A, C | | | ... | | +------------------------------------------ + + +CPolytree64 and CPolytreeD: +These structures consist of two values followed by a series of CPolyPath +structures. The first value indicates the total length of the array (A). +The second value indicates the number of following CPolyPath structures +that are the top level CPolyPath in the CPolytree (C). These CPolyPath +may, in turn, contain their own nested CPolyPath children that +collectively make a tree structure. +_________________________________________________________ +| counters | CPolyPath1 | CPolyPath2 | ... | CPolyPathC | +| A, C | | | ... | | +--------------------------------------------------------- + + +CPolyPath64 and CPolyPathD: +These array structures consist of a pair of counter values followed by a +series of polygon vertices and a series of nested CPolyPath children. +The first counter values indicates the number of vertices in the +polygon (N), and the second counter indicates the CPolyPath child count (C). +_____________________________________________________________________________ +|cntrs |vertex1 |vertex2 |...|vertexN |child1|child2|...|childC| +|N, C |x1, y1, (z1)| x2, y2, (z2)|...|xN, yN, (zN)| | |...| | +----------------------------------------------------------------------------- + + +DisposeArray64 & DisposeArrayD: +All array structures are allocated in heap memory which will eventually +need to be released. However, since applications linking to these DLL +functions may use different memory managers, the only safe way to release +this memory is to use the exported DisposeArray functions. + + +(Optional) Z-Values: +Structures will only contain user-defined z-values when the USINGZ +pre-processor identifier is used. The library does not assign z-values +because this field is intended for users to assign custom values to vertices. +Z-values in input paths (subject and clip) will be copied to solution paths. +New vertices at path intersections will generate a callback event that allows +users to assign z-values at these new vertices. The user's callback function +must conform with the DLLZCallback definition and be registered with the +DLL via SetZCallback. To assist the user in assigning z-values, the library +passes in the callback function the new intersection point together with +the four vertices that define the two segments that are intersecting. + +*/ +#ifndef CLIPPER2_EXPORT_H +#define CLIPPER2_EXPORT_H + +#include +#include +#include "clipper2/clipper.core.h" +#include "clipper2/clipper.engine.h" +#include "clipper2/clipper.offset.h" +#include "clipper2/clipper.rectclip.h" + +namespace Clipper2Lib { + +typedef int64_t* CPath64; +typedef int64_t* CPaths64; +typedef double* CPathD; +typedef double* CPathsD; + +typedef int64_t* CPolyPath64; +typedef int64_t* CPolyTree64; +typedef double* CPolyPathD; +typedef double* CPolyTreeD; + +template +struct CRect { + T left; + T top; + T right; + T bottom; +}; + +typedef CRect CRect64; +typedef CRect CRectD; + +template +inline bool CRectIsEmpty(const CRect& rect) +{ + return (rect.right <= rect.left) || (rect.bottom <= rect.top); +} + +template +inline Rect CRectToRect(const CRect& rect) +{ + Rect result; + result.left = rect.left; + result.top = rect.top; + result.right = rect.right; + result.bottom = rect.bottom; + return result; +} + +template +inline T1 Reinterpret(T2 value) { + return *reinterpret_cast(&value); +} + + +#ifdef _WIN32 + #define EXTERN_DLL_EXPORT extern "C" __declspec(dllexport) +#else + #define EXTERN_DLL_EXPORT extern "C" +#endif + + +////////////////////////////////////////////////////// +// EXPORTED FUNCTION DECLARATIONS +////////////////////////////////////////////////////// + +EXTERN_DLL_EXPORT const char* Version(); + +EXTERN_DLL_EXPORT void DisposeArray64(int64_t*& p) +{ + delete[] p; +} + +EXTERN_DLL_EXPORT void DisposeArrayD(double*& p) +{ + delete[] p; +} + +EXTERN_DLL_EXPORT int BooleanOp64(uint8_t cliptype, + uint8_t fillrule, const CPaths64 subjects, + const CPaths64 subjects_open, const CPaths64 clips, + CPaths64& solution, CPaths64& solution_open, + bool preserve_collinear = true, bool reverse_solution = false); + +EXTERN_DLL_EXPORT int BooleanOp_PolyTree64(uint8_t cliptype, + uint8_t fillrule, const CPaths64 subjects, + const CPaths64 subjects_open, const CPaths64 clips, + CPolyTree64& sol_tree, CPaths64& solution_open, + bool preserve_collinear = true, bool reverse_solution = false); + +EXTERN_DLL_EXPORT int BooleanOpD(uint8_t cliptype, + uint8_t fillrule, const CPathsD subjects, + const CPathsD subjects_open, const CPathsD clips, + CPathsD& solution, CPathsD& solution_open, int precision = 2, + bool preserve_collinear = true, bool reverse_solution = false); + +EXTERN_DLL_EXPORT int BooleanOp_PolyTreeD(uint8_t cliptype, + uint8_t fillrule, const CPathsD subjects, + const CPathsD subjects_open, const CPathsD clips, + CPolyTreeD& solution, CPathsD& solution_open, int precision = 2, + bool preserve_collinear = true, bool reverse_solution = false); + +EXTERN_DLL_EXPORT CPaths64 InflatePaths64(const CPaths64 paths, + double delta, uint8_t jointype, uint8_t endtype, + double miter_limit = 2.0, double arc_tolerance = 0.0, + bool reverse_solution = false); + +EXTERN_DLL_EXPORT CPathsD InflatePathsD(const CPathsD paths, + double delta, uint8_t jointype, uint8_t endtype, + int precision = 2, double miter_limit = 2.0, + double arc_tolerance = 0.0, bool reverse_solution = false); + +EXTERN_DLL_EXPORT CPaths64 InflatePath64(const CPath64 path, + double delta, uint8_t jointype, uint8_t endtype, + double miter_limit = 2.0, double arc_tolerance = 0.0, + bool reverse_solution = false); + +EXTERN_DLL_EXPORT CPathsD InflatePathD(const CPathD path, + double delta, uint8_t jointype, uint8_t endtype, + int precision = 2, double miter_limit = 2.0, + double arc_tolerance = 0.0, bool reverse_solution = false); + +// RectClip & RectClipLines: +EXTERN_DLL_EXPORT CPaths64 RectClip64(const CRect64& rect, + const CPaths64 paths); +EXTERN_DLL_EXPORT CPathsD RectClipD(const CRectD& rect, + const CPathsD paths, int precision = 2); +EXTERN_DLL_EXPORT CPaths64 RectClipLines64(const CRect64& rect, + const CPaths64 paths); +EXTERN_DLL_EXPORT CPathsD RectClipLinesD(const CRectD& rect, + const CPathsD paths, int precision = 2); + +////////////////////////////////////////////////////// +// INTERNAL FUNCTIONS +////////////////////////////////////////////////////// + +#ifdef USINGZ +ZCallback64 dllCallback64 = nullptr; +ZCallbackD dllCallbackD = nullptr; + +constexpr int EXPORT_VERTEX_DIMENSIONALITY = 3; +#else +constexpr int EXPORT_VERTEX_DIMENSIONALITY = 2; +#endif + +template +static void GetPathCountAndCPathsArrayLen(const Paths& paths, + size_t& cnt, size_t& array_len) +{ + array_len = 2; + cnt = 0; + for (const Path& path : paths) + if (path.size()) + { + array_len += path.size() * EXPORT_VERTEX_DIMENSIONALITY + 2; + ++cnt; + } +} + +static size_t GetPolyPathArrayLen64(const PolyPath64& pp) +{ + size_t result = 2; // poly_length + child_count + result += pp.Polygon().size() * EXPORT_VERTEX_DIMENSIONALITY; + //plus nested children :) + for (size_t i = 0; i < pp.Count(); ++i) + result += GetPolyPathArrayLen64(*pp[i]); + return result; +} + +static size_t GetPolyPathArrayLenD(const PolyPathD& pp) +{ + size_t result = 2; // poly_length + child_count + result += pp.Polygon().size() * EXPORT_VERTEX_DIMENSIONALITY; + //plus nested children :) + for (size_t i = 0; i < pp.Count(); ++i) + result += GetPolyPathArrayLenD(*pp[i]); + return result; +} + +static void GetPolytreeCountAndCStorageSize64(const PolyTree64& tree, + size_t& cnt, size_t& array_len) +{ + cnt = tree.Count(); // nb: top level count only + array_len = GetPolyPathArrayLen64(tree); +} + +static void GetPolytreeCountAndCStorageSizeD(const PolyTreeD& tree, + size_t& cnt, size_t& array_len) +{ + cnt = tree.Count(); // nb: top level count only + array_len = GetPolyPathArrayLenD(tree); +} + +template +static T* CreateCPathsFromPathsT(const Paths& paths) +{ + size_t cnt = 0, array_len = 0; + GetPathCountAndCPathsArrayLen(paths, cnt, array_len); + T* result = new T[array_len], * v = result; + *v++ = array_len; + *v++ = cnt; + for (const Path& path : paths) + { + if (!path.size()) continue; + *v++ = path.size(); + *v++ = 0; + for (const Point& pt : path) + { + *v++ = pt.x; + *v++ = pt.y; +#ifdef USINGZ + *v++ = Reinterpret(pt.z); +#endif + } + } + return result; +} + +CPathsD CreateCPathsDFromPathsD(const PathsD& paths) +{ + if (!paths.size()) return nullptr; + size_t cnt, array_len; + GetPathCountAndCPathsArrayLen(paths, cnt, array_len); + CPathsD result = new double[array_len], v = result; + *v++ = (double)array_len; + *v++ = (double)cnt; + for (const PathD& path : paths) + { + if (!path.size()) continue; + *v = (double)path.size(); + ++v; *v++ = 0; + for (const PointD& pt : path) + { + *v++ = pt.x; + *v++ = pt.y; +#ifdef USINGZ + * v++ = Reinterpret(pt.z); +#endif + } + } + return result; +} + +CPathsD CreateCPathsDFromPaths64(const Paths64& paths, double scale) +{ + if (!paths.size()) return nullptr; + size_t cnt, array_len; + GetPathCountAndCPathsArrayLen(paths, cnt, array_len); + CPathsD result = new double[array_len], v = result; + *v++ = (double)array_len; + *v++ = (double)cnt; + for (const Path64& path : paths) + { + if (!path.size()) continue; + *v = (double)path.size(); + ++v; *v++ = 0; + for (const Point64& pt : path) + { + *v++ = pt.x * scale; + *v++ = pt.y * scale; +#ifdef USINGZ + *v++ = Reinterpret(pt.z); +#endif + } + } + return result; +} + +template +static Path ConvertCPathToPathT(T* path) +{ + Path result; + if (!path) return result; + T* v = path; + size_t cnt = static_cast(*v); + v += 2; // skip 0 value + result.reserve(cnt); + for (size_t j = 0; j < cnt; ++j) + { + T x = *v++, y = *v++; +#ifdef USINGZ + z_type z = Reinterpret(*v++); + result.push_back(Point(x, y, z)); +#else + result.push_back(Point(x, y)); +#endif + } + return result; +} + +template +static Paths ConvertCPathsToPathsT(T* paths) +{ + Paths result; + if (!paths) return result; + T* v = paths; ++v; + size_t cnt = static_cast(*v++); + result.reserve(cnt); + for (size_t i = 0; i < cnt; ++i) + { + size_t cnt2 = static_cast(*v); + v += 2; + Path path; + path.reserve(cnt2); + for (size_t j = 0; j < cnt2; ++j) + { + T x = *v++, y = *v++; +#ifdef USINGZ + z_type z = Reinterpret(*v++); + path.push_back(Point(x, y, z)); +#else + path.push_back(Point(x, y)); +#endif + } + result.push_back(path); + } + return result; +} + +static Path64 ConvertCPathDToPath64WithScale(const CPathD path, double scale) +{ + Path64 result; + if (!path) return result; + double* v = path; + size_t cnt = static_cast(*v); + v += 2; // skip 0 value + result.reserve(cnt); + for (size_t j = 0; j < cnt; ++j) + { + double x = *v++ * scale; + double y = *v++ * scale; +#ifdef USINGZ + z_type z = Reinterpret(*v++); + result.push_back(Point64(x, y, z)); +#else + result.push_back(Point64(x, y)); +#endif + } + return result; +} + +static Paths64 ConvertCPathsDToPaths64(const CPathsD paths, double scale) +{ + Paths64 result; + if (!paths) return result; + double* v = paths; + ++v; // skip the first value (0) + size_t cnt = static_cast(*v++); + result.reserve(cnt); + for (size_t i = 0; i < cnt; ++i) + { + size_t cnt2 = static_cast(*v); + v += 2; + Path64 path; + path.reserve(cnt2); + for (size_t j = 0; j < cnt2; ++j) + { + double x = *v++ * scale; + double y = *v++ * scale; +#ifdef USINGZ + z_type z = Reinterpret(*v++); + path.push_back(Point64(x, y, z)); +#else + path.push_back(Point64(x, y)); +#endif + } + result.push_back(path); + } + return result; +} + +static void CreateCPolyPath64(const PolyPath64* pp, int64_t*& v) +{ + *v++ = static_cast(pp->Polygon().size()); + *v++ = static_cast(pp->Count()); + for (const Point64& pt : pp->Polygon()) + { + *v++ = pt.x; + *v++ = pt.y; +#ifdef USINGZ + * v++ = Reinterpret(pt.z); // raw memory copy +#endif + } + for (size_t i = 0; i < pp->Count(); ++i) + CreateCPolyPath64(pp->Child(i), v); +} + +static void CreateCPolyPathD(const PolyPathD* pp, double*& v) +{ + *v++ = static_cast(pp->Polygon().size()); + *v++ = static_cast(pp->Count()); + for (const PointD& pt : pp->Polygon()) + { + *v++ = pt.x; + *v++ = pt.y; +#ifdef USINGZ + * v++ = Reinterpret(pt.z); // raw memory copy +#endif + } + for (size_t i = 0; i < pp->Count(); ++i) + CreateCPolyPathD(pp->Child(i), v); +} + +static int64_t* CreateCPolyTree64(const PolyTree64& tree) +{ + size_t cnt, array_len; + GetPolytreeCountAndCStorageSize64(tree, cnt, array_len); + if (!cnt) return nullptr; + // allocate storage + int64_t* result = new int64_t[array_len]; + int64_t* v = result; + *v++ = static_cast(array_len); + *v++ = static_cast(tree.Count()); + for (size_t i = 0; i < tree.Count(); ++i) + CreateCPolyPath64(tree.Child(i), v); + return result; +} + +static double* CreateCPolyTreeD(const PolyTreeD& tree) +{ + double scale = std::log10(tree.Scale()); + size_t cnt, array_len; + GetPolytreeCountAndCStorageSizeD(tree, cnt, array_len); + if (!cnt) return nullptr; + // allocate storage + double* result = new double[array_len]; + double* v = result; + *v++ = static_cast(array_len); + *v++ = static_cast(tree.Count()); + for (size_t i = 0; i < tree.Count(); ++i) + CreateCPolyPathD(tree.Child(i), v); + return result; +} + +////////////////////////////////////////////////////// +// EXPORTED FUNCTION DEFINITIONS +////////////////////////////////////////////////////// + +EXTERN_DLL_EXPORT const char* Version() +{ + return CLIPPER2_VERSION; +} + +EXTERN_DLL_EXPORT int BooleanOp64(uint8_t cliptype, + uint8_t fillrule, const CPaths64 subjects, + const CPaths64 subjects_open, const CPaths64 clips, + CPaths64& solution, CPaths64& solution_open, + bool preserve_collinear, bool reverse_solution) +{ + if (cliptype > static_cast(ClipType::Xor)) return -4; + if (fillrule > static_cast(FillRule::Negative)) return -3; + + Paths64 sub, sub_open, clp, sol, sol_open; + sub = ConvertCPathsToPathsT(subjects); + sub_open = ConvertCPathsToPathsT(subjects_open); + clp = ConvertCPathsToPathsT(clips); + + Clipper64 clipper; + clipper.PreserveCollinear(preserve_collinear); + clipper.ReverseSolution(reverse_solution); +#ifdef USINGZ + if (dllCallback64) + clipper.SetZCallback(dllCallback64); +#endif + if (sub.size() > 0) clipper.AddSubject(sub); + if (sub_open.size() > 0) clipper.AddOpenSubject(sub_open); + if (clp.size() > 0) clipper.AddClip(clp); + if (!clipper.Execute(ClipType(cliptype), FillRule(fillrule), sol, sol_open)) + return -1; // clipping bug - should never happen :) + solution = CreateCPathsFromPathsT(sol); + solution_open = CreateCPathsFromPathsT(sol_open); + return 0; //success !! +} + +EXTERN_DLL_EXPORT int BooleanOp_PolyTree64(uint8_t cliptype, + uint8_t fillrule, const CPaths64 subjects, + const CPaths64 subjects_open, const CPaths64 clips, + CPolyTree64& sol_tree, CPaths64& solution_open, + bool preserve_collinear, bool reverse_solution) +{ + if (cliptype > static_cast(ClipType::Xor)) return -4; + if (fillrule > static_cast(FillRule::Negative)) return -3; + Paths64 sub, sub_open, clp, sol_open; + sub = ConvertCPathsToPathsT(subjects); + sub_open = ConvertCPathsToPathsT(subjects_open); + clp = ConvertCPathsToPathsT(clips); + + PolyTree64 tree; + Clipper64 clipper; + clipper.PreserveCollinear(preserve_collinear); + clipper.ReverseSolution(reverse_solution); +#ifdef USINGZ + if (dllCallback64) + clipper.SetZCallback(dllCallback64); +#endif + if (sub.size() > 0) clipper.AddSubject(sub); + if (sub_open.size() > 0) clipper.AddOpenSubject(sub_open); + if (clp.size() > 0) clipper.AddClip(clp); + if (!clipper.Execute(ClipType(cliptype), FillRule(fillrule), tree, sol_open)) + return -1; // clipping bug - should never happen :) + + sol_tree = CreateCPolyTree64(tree); + solution_open = CreateCPathsFromPathsT(sol_open); + return 0; //success !! +} + +EXTERN_DLL_EXPORT int BooleanOpD(uint8_t cliptype, + uint8_t fillrule, const CPathsD subjects, + const CPathsD subjects_open, const CPathsD clips, + CPathsD& solution, CPathsD& solution_open, int precision, + bool preserve_collinear, bool reverse_solution) +{ + if (precision < -8 || precision > 8) return -5; + if (cliptype > static_cast(ClipType::Xor)) return -4; + if (fillrule > static_cast(FillRule::Negative)) return -3; + //const double scale = std::pow(10, precision); + + PathsD sub, sub_open, clp, sol, sol_open; + sub = ConvertCPathsToPathsT(subjects); + sub_open = ConvertCPathsToPathsT(subjects_open); + clp = ConvertCPathsToPathsT(clips); + + ClipperD clipper(precision); + clipper.PreserveCollinear(preserve_collinear); + clipper.ReverseSolution(reverse_solution); +#ifdef USINGZ + if (dllCallbackD) + clipper.SetZCallback(dllCallbackD); +#endif + if (sub.size() > 0) clipper.AddSubject(sub); + if (sub_open.size() > 0) clipper.AddOpenSubject(sub_open); + if (clp.size() > 0) clipper.AddClip(clp); + if (!clipper.Execute(ClipType(cliptype), + FillRule(fillrule), sol, sol_open)) return -1; + solution = CreateCPathsDFromPathsD(sol); + solution_open = CreateCPathsDFromPathsD(sol_open); + return 0; +} + +EXTERN_DLL_EXPORT int BooleanOp_PolyTreeD(uint8_t cliptype, + uint8_t fillrule, const CPathsD subjects, + const CPathsD subjects_open, const CPathsD clips, + CPolyTreeD& solution, CPathsD& solution_open, int precision, + bool preserve_collinear, bool reverse_solution) +{ + if (precision < -8 || precision > 8) return -5; + if (cliptype > static_cast(ClipType::Xor)) return -4; + if (fillrule > static_cast(FillRule::Negative)) return -3; + //double scale = std::pow(10, precision); + + int err = 0; + PathsD sub, sub_open, clp, sol_open; + sub = ConvertCPathsToPathsT(subjects); + sub_open = ConvertCPathsToPathsT(subjects_open); + clp = ConvertCPathsToPathsT(clips); + + PolyTreeD tree; + ClipperD clipper(precision); + clipper.PreserveCollinear(preserve_collinear); + clipper.ReverseSolution(reverse_solution); +#ifdef USINGZ + if (dllCallbackD) + clipper.SetZCallback(dllCallbackD); +#endif + if (sub.size() > 0) clipper.AddSubject(sub); + if (sub_open.size() > 0) clipper.AddOpenSubject(sub_open); + if (clp.size() > 0) clipper.AddClip(clp); + if (!clipper.Execute(ClipType(cliptype), FillRule(fillrule), tree, sol_open)) + return -1; // clipping bug - should never happen :) + + solution = CreateCPolyTreeD(tree); + solution_open = CreateCPathsDFromPathsD(sol_open); + return 0; //success !! +} + +EXTERN_DLL_EXPORT CPaths64 InflatePaths64(const CPaths64 paths, + double delta, uint8_t jointype, uint8_t endtype, double miter_limit, + double arc_tolerance, bool reverse_solution) +{ + Paths64 pp; + pp = ConvertCPathsToPathsT(paths); + ClipperOffset clip_offset( miter_limit, + arc_tolerance, reverse_solution); + clip_offset.AddPaths(pp, JoinType(jointype), EndType(endtype)); + Paths64 result; + clip_offset.Execute(delta, result); + return CreateCPathsFromPathsT(result); +} + +EXTERN_DLL_EXPORT CPathsD InflatePathsD(const CPathsD paths, + double delta, uint8_t jointype, uint8_t endtype, + int precision, double miter_limit, + double arc_tolerance, bool reverse_solution) +{ + if (precision < -8 || precision > 8 || !paths) return nullptr; + + const double scale = std::pow(10, precision); + ClipperOffset clip_offset(miter_limit, arc_tolerance, reverse_solution); + Paths64 pp = ConvertCPathsDToPaths64(paths, scale); + clip_offset.AddPaths(pp, JoinType(jointype), EndType(endtype)); + Paths64 result; + clip_offset.Execute(delta * scale, result); + return CreateCPathsDFromPaths64(result, 1 / scale); +} + + +EXTERN_DLL_EXPORT CPaths64 InflatePath64(const CPath64 path, + double delta, uint8_t jointype, uint8_t endtype, double miter_limit, + double arc_tolerance, bool reverse_solution) +{ + Path64 pp; + pp = ConvertCPathToPathT(path); + ClipperOffset clip_offset(miter_limit, + arc_tolerance, reverse_solution); + clip_offset.AddPath(pp, JoinType(jointype), EndType(endtype)); + Paths64 result; + clip_offset.Execute(delta, result); + return CreateCPathsFromPathsT(result); +} + +EXTERN_DLL_EXPORT CPathsD InflatePathD(const CPathD path, + double delta, uint8_t jointype, uint8_t endtype, + int precision, double miter_limit, + double arc_tolerance, bool reverse_solution) +{ + if (precision < -8 || precision > 8 || !path) return nullptr; + + const double scale = std::pow(10, precision); + ClipperOffset clip_offset(miter_limit, arc_tolerance, reverse_solution); + Path64 pp = ConvertCPathDToPath64WithScale(path, scale); + clip_offset.AddPath(pp, JoinType(jointype), EndType(endtype)); + Paths64 result; + clip_offset.Execute(delta * scale, result); + + return CreateCPathsDFromPaths64(result, 1 / scale); +} + +EXTERN_DLL_EXPORT CPaths64 RectClip64(const CRect64& rect, const CPaths64 paths) +{ + if (CRectIsEmpty(rect) || !paths) return nullptr; + Rect64 r64 = CRectToRect(rect); + class RectClip64 rc(r64); + Paths64 pp = ConvertCPathsToPathsT(paths); + Paths64 result = rc.Execute(pp); + return CreateCPathsFromPathsT(result); +} + +EXTERN_DLL_EXPORT CPathsD RectClipD(const CRectD& rect, const CPathsD paths, int precision) +{ + if (CRectIsEmpty(rect) || !paths) return nullptr; + if (precision < -8 || precision > 8) return nullptr; + const double scale = std::pow(10, precision); + + RectD r = CRectToRect(rect); + Rect64 rec = ScaleRect(r, scale); + Paths64 pp = ConvertCPathsDToPaths64(paths, scale); + class RectClip64 rc(rec); + Paths64 result = rc.Execute(pp); + + return CreateCPathsDFromPaths64(result, 1 / scale); +} + +EXTERN_DLL_EXPORT CPaths64 RectClipLines64(const CRect64& rect, + const CPaths64 paths) +{ + if (CRectIsEmpty(rect) || !paths) return nullptr; + Rect64 r = CRectToRect(rect); + class RectClipLines64 rcl (r); + Paths64 pp = ConvertCPathsToPathsT(paths); + Paths64 result = rcl.Execute(pp); + return CreateCPathsFromPathsT(result); +} + +EXTERN_DLL_EXPORT CPathsD RectClipLinesD(const CRectD& rect, + const CPathsD paths, int precision) +{ + if (CRectIsEmpty(rect) || !paths) return nullptr; + if (precision < -8 || precision > 8) return nullptr; + + const double scale = std::pow(10, precision); + Rect64 r = ScaleRect(CRectToRect(rect), scale); + class RectClipLines64 rcl(r); + Paths64 pp = ConvertCPathsDToPaths64(paths, scale); + Paths64 result = rcl.Execute(pp); + return CreateCPathsDFromPaths64(result, 1 / scale); +} + +EXTERN_DLL_EXPORT CPaths64 MinkowskiSum64(const CPath64& cpattern, const CPath64& cpath, bool is_closed) +{ + Path64 path = ConvertCPathToPathT(cpath); + Path64 pattern = ConvertCPathToPathT(cpattern); + Paths64 solution = MinkowskiSum(pattern, path, is_closed); + return CreateCPathsFromPathsT(solution); +} + +EXTERN_DLL_EXPORT CPaths64 MinkowskiDiff64(const CPath64& cpattern, const CPath64& cpath, bool is_closed) +{ + Path64 path = ConvertCPathToPathT(cpath); + Path64 pattern = ConvertCPathToPathT(cpattern); + Paths64 solution = MinkowskiDiff(pattern, path, is_closed); + return CreateCPathsFromPathsT(solution); +} + +#ifdef USINGZ +typedef void (*DLLZCallback64)(const Point64& e1bot, const Point64& e1top, const Point64& e2bot, const Point64& e2top, Point64& pt); +typedef void (*DLLZCallbackD)(const PointD& e1bot, const PointD& e1top, const PointD& e2bot, const PointD& e2top, PointD& pt); + +EXTERN_DLL_EXPORT void SetZCallback64(DLLZCallback64 callback) +{ + dllCallback64 = callback; +} + +EXTERN_DLL_EXPORT void SetZCallbackD(DLLZCallbackD callback) +{ + dllCallbackD = callback; +} + +#endif + +} +#endif // CLIPPER2_EXPORT_H diff --git a/clipper2/include/clipper2/clipper.h b/clipper2/include/clipper2/clipper.h new file mode 100644 index 000000000..fee383916 --- /dev/null +++ b/clipper2/include/clipper2/clipper.h @@ -0,0 +1,671 @@ +/******************************************************************************* +* Author : Angus Johnson * +* Date : 27 April 2024 * +* Website : http://www.angusj.com * +* Copyright : Angus Johnson 2010-2024 * +* Purpose : This module provides a simple interface to the Clipper Library * +* License : http://www.boost.org/LICENSE_1_0.txt * +*******************************************************************************/ + +#ifndef CLIPPER_H +#define CLIPPER_H + +#include +#include +#include + +#include "clipper2/clipper.core.h" +#include "clipper2/clipper.engine.h" + +namespace Clipper2Lib { + + inline Paths64 BooleanOp(ClipType cliptype, FillRule fillrule, + const Paths64& subjects, const Paths64& clips) + { + Paths64 result; + Clipper64 clipper; + clipper.AddSubject(subjects); + clipper.AddClip(clips); + clipper.Execute(cliptype, fillrule, result); + return result; + } + + inline void BooleanOp(ClipType cliptype, FillRule fillrule, + const Paths64& subjects, const Paths64& clips, PolyTree64& solution) + { + Paths64 sol_open; + Clipper64 clipper; + clipper.AddSubject(subjects); + clipper.AddClip(clips); + clipper.Execute(cliptype, fillrule, solution, sol_open); + } + + inline PathsD BooleanOp(ClipType cliptype, FillRule fillrule, + const PathsD& subjects, const PathsD& clips, int precision = 2) + { + int error_code = 0; + CheckPrecisionRange(precision, error_code); + PathsD result; + if (error_code) return result; + ClipperD clipper(precision); + clipper.AddSubject(subjects); + clipper.AddClip(clips); + clipper.Execute(cliptype, fillrule, result); + return result; + } + + inline void BooleanOp(ClipType cliptype, FillRule fillrule, + const PathsD& subjects, const PathsD& clips, + PolyTreeD& polytree, int precision = 2) + { + polytree.Clear(); + int error_code = 0; + CheckPrecisionRange(precision, error_code); + if (error_code) return; + ClipperD clipper(precision); + clipper.AddSubject(subjects); + clipper.AddClip(clips); + clipper.Execute(cliptype, fillrule, polytree); + } + + inline Paths64 Intersect(const Paths64& subjects, const Paths64& clips, FillRule fillrule) + { + return BooleanOp(ClipType::Intersection, fillrule, subjects, clips); + } + + inline PathsD Intersect(const PathsD& subjects, const PathsD& clips, FillRule fillrule, int decimal_prec = 2) + { + return BooleanOp(ClipType::Intersection, fillrule, subjects, clips, decimal_prec); + } + + inline Paths64 Union(const Paths64& subjects, const Paths64& clips, FillRule fillrule) + { + return BooleanOp(ClipType::Union, fillrule, subjects, clips); + } + + inline PathsD Union(const PathsD& subjects, const PathsD& clips, FillRule fillrule, int decimal_prec = 2) + { + return BooleanOp(ClipType::Union, fillrule, subjects, clips, decimal_prec); + } + + inline Paths64 Union(const Paths64& subjects, FillRule fillrule) + { + Paths64 result; + Clipper64 clipper; + clipper.AddSubject(subjects); + clipper.Execute(ClipType::Union, fillrule, result); + return result; + } + + inline PathsD Union(const PathsD& subjects, FillRule fillrule, int precision = 2) + { + PathsD result; + int error_code = 0; + CheckPrecisionRange(precision, error_code); + if (error_code) return result; + ClipperD clipper(precision); + clipper.AddSubject(subjects); + clipper.Execute(ClipType::Union, fillrule, result); + return result; + } + + inline Paths64 Difference(const Paths64& subjects, const Paths64& clips, FillRule fillrule) + { + return BooleanOp(ClipType::Difference, fillrule, subjects, clips); + } + + inline PathsD Difference(const PathsD& subjects, const PathsD& clips, FillRule fillrule, int decimal_prec = 2) + { + return BooleanOp(ClipType::Difference, fillrule, subjects, clips, decimal_prec); + } + + inline Paths64 Xor(const Paths64& subjects, const Paths64& clips, FillRule fillrule) + { + return BooleanOp(ClipType::Xor, fillrule, subjects, clips); + } + + inline PathsD Xor(const PathsD& subjects, const PathsD& clips, FillRule fillrule, int decimal_prec = 2) + { + return BooleanOp(ClipType::Xor, fillrule, subjects, clips, decimal_prec); + } + + template + inline Path TranslatePath(const Path& path, T dx, T dy) + { + Path result; + result.reserve(path.size()); + std::transform(path.begin(), path.end(), back_inserter(result), + [dx, dy](const auto& pt) { return Point(pt.x + dx, pt.y +dy); }); + return result; + } + + inline Path64 TranslatePath(const Path64& path, int64_t dx, int64_t dy) + { + return TranslatePath(path, dx, dy); + } + + inline PathD TranslatePath(const PathD& path, double dx, double dy) + { + return TranslatePath(path, dx, dy); + } + + template + inline Paths TranslatePaths(const Paths& paths, T dx, T dy) + { + Paths result; + result.reserve(paths.size()); + std::transform(paths.begin(), paths.end(), back_inserter(result), + [dx, dy](const auto& path) { return TranslatePath(path, dx, dy); }); + return result; + } + + inline Paths64 TranslatePaths(const Paths64& paths, int64_t dx, int64_t dy) + { + return TranslatePaths(paths, dx, dy); + } + + inline PathsD TranslatePaths(const PathsD& paths, double dx, double dy) + { + return TranslatePaths(paths, dx, dy); + } + + namespace details + { + + inline void PolyPathToPaths64(const PolyPath64& polypath, Paths64& paths) + { + paths.push_back(polypath.Polygon()); + for (const auto& child : polypath) + PolyPathToPaths64(*child, paths); + } + + inline void PolyPathToPathsD(const PolyPathD& polypath, PathsD& paths) + { + paths.push_back(polypath.Polygon()); + for (const auto& child : polypath) + PolyPathToPathsD(*child, paths); + } + + inline bool PolyPath64ContainsChildren(const PolyPath64& pp) + { + for (const auto& child : pp) + { + // return false if this child isn't fully contained by its parent + + // checking for a single vertex outside is a bit too crude since + // it doesn't account for rounding errors. It's better to check + // for consecutive vertices found outside the parent's polygon. + + int outsideCnt = 0; + for (const Point64& pt : child->Polygon()) + { + PointInPolygonResult result = PointInPolygon(pt, pp.Polygon()); + if (result == PointInPolygonResult::IsInside) --outsideCnt; + else if (result == PointInPolygonResult::IsOutside) ++outsideCnt; + if (outsideCnt > 1) return false; + else if (outsideCnt < -1) break; + } + + // now check any nested children too + if (child->Count() > 0 && !PolyPath64ContainsChildren(*child)) + return false; + } + return true; + } + + static void OutlinePolyPath(std::ostream& os, + size_t idx, bool isHole, size_t count, const std::string& preamble) + { + std::string plural = (count == 1) ? "." : "s."; + if (isHole) + os << preamble << "+- Hole (" << idx << ") contains " << count << + " nested polygon" << plural << std::endl; + else + os << preamble << "+- Polygon (" << idx << ") contains " << count << + " hole" << plural << std::endl; + } + + static void OutlinePolyPath64(std::ostream& os, const PolyPath64& pp, + size_t idx, std::string preamble) + { + OutlinePolyPath(os, idx, pp.IsHole(), pp.Count(), preamble); + for (size_t i = 0; i < pp.Count(); ++i) + if (pp.Child(i)->Count()) + details::OutlinePolyPath64(os, *pp.Child(i), i, preamble + " "); + } + + static void OutlinePolyPathD(std::ostream& os, const PolyPathD& pp, + size_t idx, std::string preamble) + { + OutlinePolyPath(os, idx, pp.IsHole(), pp.Count(), preamble); + for (size_t i = 0; i < pp.Count(); ++i) + if (pp.Child(i)->Count()) + details::OutlinePolyPathD(os, *pp.Child(i), i, preamble + " "); + } + + template + inline constexpr void MakePathGeneric(const T an_array, + size_t array_size, std::vector& result) + { + result.reserve(array_size / 2); + for (size_t i = 0; i < array_size; i +=2) +#ifdef USINGZ + result.push_back( U{ an_array[i], an_array[i + 1], 0} ); +#else + result.push_back( U{ an_array[i], an_array[i + 1]} ); +#endif + } + + } // end details namespace + + inline std::ostream& operator<< (std::ostream& os, const PolyTree64& pp) + { + std::string plural = (pp.Count() == 1) ? " polygon." : " polygons."; + os << std::endl << "Polytree with " << pp.Count() << plural << std::endl; + for (size_t i = 0; i < pp.Count(); ++i) + if (pp.Child(i)->Count()) + details::OutlinePolyPath64(os, *pp.Child(i), i, " "); + os << std::endl << std::endl; + return os; + } + + inline std::ostream& operator<< (std::ostream& os, const PolyTreeD& pp) + { + std::string plural = (pp.Count() == 1) ? " polygon." : " polygons."; + os << std::endl << "Polytree with " << pp.Count() << plural << std::endl; + for (size_t i = 0; i < pp.Count(); ++i) + if (pp.Child(i)->Count()) + details::OutlinePolyPathD(os, *pp.Child(i), i, " "); + os << std::endl << std::endl; + if (!pp.Level()) os << std::endl; + return os; + } + + inline Paths64 PolyTreeToPaths64(const PolyTree64& polytree) + { + Paths64 result; + for (const auto& child : polytree) + details::PolyPathToPaths64(*child, result); + return result; + } + + inline PathsD PolyTreeToPathsD(const PolyTreeD& polytree) + { + PathsD result; + for (const auto& child : polytree) + details::PolyPathToPathsD(*child, result); + return result; + } + + inline bool CheckPolytreeFullyContainsChildren(const PolyTree64& polytree) + { + for (const auto& child : polytree) + if (child->Count() > 0 && + !details::PolyPath64ContainsChildren(*child)) + return false; + return true; + } + + template::value && + !std::is_same::value, bool + >::type = true> + inline Path64 MakePath(const std::vector& list) + { + const auto size = list.size() - list.size() % 2; + if (list.size() != size) + DoError(non_pair_error_i); // non-fatal without exception handling + Path64 result; + details::MakePathGeneric(list, size, result); + return result; + } + + template::value && + !std::is_same::value, bool + >::type = true> + inline Path64 MakePath(const T(&list)[N]) + { + // Make the compiler error on unpaired value (i.e. no runtime effects). + static_assert(N % 2 == 0, "MakePath requires an even number of arguments"); + Path64 result; + details::MakePathGeneric(list, N, result); + return result; + } + + template::value && + !std::is_same::value, bool + >::type = true> + inline PathD MakePathD(const std::vector& list) + { + const auto size = list.size() - list.size() % 2; + if (list.size() != size) + DoError(non_pair_error_i); // non-fatal without exception handling + PathD result; + details::MakePathGeneric(list, size, result); + return result; + } + + template::value && + !std::is_same::value, bool + >::type = true> + inline PathD MakePathD(const T(&list)[N]) + { + // Make the compiler error on unpaired value (i.e. no runtime effects). + static_assert(N % 2 == 0, "MakePath requires an even number of arguments"); + PathD result; + details::MakePathGeneric(list, N, result); + return result; + } + +#ifdef USINGZ + template + inline Path64 MakePathZ(const T2(&list)[N]) + { + static_assert(N % 3 == 0 && std::numeric_limits::is_integer, + "MakePathZ requires integer values in multiples of 3"); + std::size_t size = N / 3; + Path64 result(size); + for (size_t i = 0; i < size; ++i) + result[i] = Point64(list[i * 3], + list[i * 3 + 1], list[i * 3 + 2]); + return result; + } + + template + inline PathD MakePathZD(const T2(&list)[N]) + { + static_assert(N % 3 == 0, + "MakePathZD requires values in multiples of 3"); + std::size_t size = N / 3; + PathD result(size); + if constexpr (std::numeric_limits::is_integer) + for (size_t i = 0; i < size; ++i) + result[i] = PointD(list[i * 3], + list[i * 3 + 1], list[i * 3 + 2]); + else + for (size_t i = 0; i < size; ++i) + result[i] = PointD(list[i * 3], list[i * 3 + 1], + static_cast(list[i * 3 + 2])); + return result; + } +#endif + + inline Path64 TrimCollinear(const Path64& p, bool is_open_path = false) + { + size_t len = p.size(); + if (len < 3) + { + if (!is_open_path || len < 2 || p[0] == p[1]) return Path64(); + else return p; + } + + Path64 dst; + dst.reserve(len); + Path64::const_iterator srcIt = p.cbegin(), prevIt, stop = p.cend() - 1; + + if (!is_open_path) + { + while (srcIt != stop && IsCollinear(*stop, *srcIt, *(srcIt + 1))) + ++srcIt; + while (srcIt != stop && IsCollinear(*(stop - 1), *stop, *srcIt)) + --stop; + if (srcIt == stop) return Path64(); + } + + prevIt = srcIt++; + dst.push_back(*prevIt); + for (; srcIt != stop; ++srcIt) + { + if (!IsCollinear(*prevIt, *srcIt, *(srcIt + 1))) + { + prevIt = srcIt; + dst.push_back(*prevIt); + } + } + + if (is_open_path) + dst.push_back(*srcIt); + else if (!IsCollinear(*prevIt, *stop, dst[0])) + dst.push_back(*stop); + else + { + while (dst.size() > 2 && + IsCollinear(dst[dst.size() - 1], dst[dst.size() - 2], dst[0])) + dst.pop_back(); + if (dst.size() < 3) return Path64(); + } + return dst; + } + + inline PathD TrimCollinear(const PathD& path, int precision, bool is_open_path = false) + { + int error_code = 0; + CheckPrecisionRange(precision, error_code); + if (error_code) return PathD(); + const double scale = std::pow(10, precision); + Path64 p = ScalePath(path, scale, error_code); + if (error_code) return PathD(); + p = TrimCollinear(p, is_open_path); + return ScalePath(p, 1/scale, error_code); + } + + template + inline double Distance(const Point pt1, const Point pt2) + { + return std::sqrt(DistanceSqr(pt1, pt2)); + } + + template + inline double Length(const Path& path, bool is_closed_path = false) + { + double result = 0.0; + if (path.size() < 2) return result; + auto it = path.cbegin(), stop = path.end() - 1; + for (; it != stop; ++it) + result += Distance(*it, *(it + 1)); + if (is_closed_path) + result += Distance(*stop, *path.cbegin()); + return result; + } + + + template + inline bool NearCollinear(const Point& pt1, const Point& pt2, const Point& pt3, double sin_sqrd_min_angle_rads) + { + double cp = std::abs(CrossProduct(pt1, pt2, pt3)); + return (cp * cp) / (DistanceSqr(pt1, pt2) * DistanceSqr(pt2, pt3)) < sin_sqrd_min_angle_rads; + } + + template + inline Path Ellipse(const Rect& rect, size_t steps = 0) + { + return Ellipse(rect.MidPoint(), + static_cast(rect.Width()) *0.5, + static_cast(rect.Height()) * 0.5, steps); + } + + template + inline Path Ellipse(const Point& center, + double radiusX, double radiusY = 0, size_t steps = 0) + { + if (radiusX <= 0) return Path(); + if (radiusY <= 0) radiusY = radiusX; + if (steps <= 2) + steps = static_cast(PI * sqrt((radiusX + radiusY) / 2)); + + double si = std::sin(2 * PI / steps); + double co = std::cos(2 * PI / steps); + double dx = co, dy = si; + Path result; + result.reserve(steps); + result.push_back(Point(center.x + radiusX, static_cast(center.y))); + for (size_t i = 1; i < steps; ++i) + { + result.push_back(Point(center.x + radiusX * dx, center.y + radiusY * dy)); + double x = dx * co - dy * si; + dy = dy * co + dx * si; + dx = x; + } + return result; + } + + inline size_t GetNext(size_t current, size_t high, + const std::vector& flags) + { + ++current; + while (current <= high && flags[current]) ++current; + if (current <= high) return current; + current = 0; + while (flags[current]) ++current; + return current; + } + + inline size_t GetPrior(size_t current, size_t high, + const std::vector& flags) + { + if (current == 0) current = high; + else --current; + while (current > 0 && flags[current]) --current; + if (!flags[current]) return current; + current = high; + while (flags[current]) --current; + return current; + } + + template + inline Path SimplifyPath(const Path &path, + double epsilon, bool isClosedPath = true) + { + const size_t len = path.size(), high = len -1; + const double epsSqr = Sqr(epsilon); + if (len < 4) return Path(path); + + std::vector flags(len); + std::vector distSqr(len); + size_t prior = high, curr = 0, start, next, prior2; + if (isClosedPath) + { + distSqr[0] = PerpendicDistFromLineSqrd(path[0], path[high], path[1]); + distSqr[high] = PerpendicDistFromLineSqrd(path[high], path[0], path[high - 1]); + } + else + { + distSqr[0] = MAX_DBL; + distSqr[high] = MAX_DBL; + } + for (size_t i = 1; i < high; ++i) + distSqr[i] = PerpendicDistFromLineSqrd(path[i], path[i - 1], path[i + 1]); + + for (;;) + { + if (distSqr[curr] > epsSqr) + { + start = curr; + do + { + curr = GetNext(curr, high, flags); + } while (curr != start && distSqr[curr] > epsSqr); + if (curr == start) break; + } + + prior = GetPrior(curr, high, flags); + next = GetNext(curr, high, flags); + if (next == prior) break; + + // flag for removal the smaller of adjacent 'distances' + if (distSqr[next] < distSqr[curr]) + { + prior2 = prior; + prior = curr; + curr = next; + next = GetNext(next, high, flags); + } + else + prior2 = GetPrior(prior, high, flags); + + flags[curr] = true; + curr = next; + next = GetNext(next, high, flags); + + if (isClosedPath || ((curr != high) && (curr != 0))) + distSqr[curr] = PerpendicDistFromLineSqrd(path[curr], path[prior], path[next]); + if (isClosedPath || ((prior != 0) && (prior != high))) + distSqr[prior] = PerpendicDistFromLineSqrd(path[prior], path[prior2], path[curr]); + } + Path result; + result.reserve(len); + for (typename Path::size_type i = 0; i < len; ++i) + if (!flags[i]) result.push_back(path[i]); + return result; + } + + template + inline Paths SimplifyPaths(const Paths &paths, + double epsilon, bool isClosedPath = true) + { + Paths result; + result.reserve(paths.size()); + for (const auto& path : paths) + result.push_back(SimplifyPath(path, epsilon, isClosedPath)); + return result; + } + + template + inline void RDP(const Path path, std::size_t begin, + std::size_t end, double epsSqrd, std::vector& flags) + { + typename Path::size_type idx = 0; + double max_d = 0; + while (end > begin && path[begin] == path[end]) flags[end--] = false; + for (typename Path::size_type i = begin + 1; i < end; ++i) + { + // PerpendicDistFromLineSqrd - avoids expensive Sqrt() + double d = PerpendicDistFromLineSqrd(path[i], path[begin], path[end]); + if (d <= max_d) continue; + max_d = d; + idx = i; + } + if (max_d <= epsSqrd) return; + flags[idx] = true; + if (idx > begin + 1) RDP(path, begin, idx, epsSqrd, flags); + if (idx < end - 1) RDP(path, idx, end, epsSqrd, flags); + } + + template + inline Path RamerDouglasPeucker(const Path& path, double epsilon) + { + const typename Path::size_type len = path.size(); + if (len < 5) return Path(path); + std::vector flags(len); + flags[0] = true; + flags[len - 1] = true; + RDP(path, 0, len - 1, Sqr(epsilon), flags); + Path result; + result.reserve(len); + for (typename Path::size_type i = 0; i < len; ++i) + if (flags[i]) + result.push_back(path[i]); + return result; + } + + template + inline Paths RamerDouglasPeucker(const Paths& paths, double epsilon) + { + Paths result; + result.reserve(paths.size()); + std::transform(paths.begin(), paths.end(), back_inserter(result), + [epsilon](const auto& path) + { return RamerDouglasPeucker(path, epsilon); }); + return result; + } + +} // end Clipper2Lib namespace + +#endif // CLIPPER_H diff --git a/clipper2/include/clipper2/clipper.version.h b/clipper2/include/clipper2/clipper.version.h new file mode 100644 index 000000000..61464095f --- /dev/null +++ b/clipper2/include/clipper2/clipper.version.h @@ -0,0 +1,6 @@ +#ifndef CLIPPER_VERSION_H +#define CLIPPER_VERSION_H + +constexpr auto CLIPPER2_VERSION = "1.4.0"; + +#endif // CLIPPER_VERSION_H diff --git a/clipper2/src/clipper.engine.cpp b/clipper2/src/clipper.engine.cpp new file mode 100644 index 000000000..97717322c --- /dev/null +++ b/clipper2/src/clipper.engine.cpp @@ -0,0 +1,3155 @@ +/******************************************************************************* +* Author : Angus Johnson * +* Date : 17 September 2024 * +* Website : http://www.angusj.com * +* Copyright : Angus Johnson 2010-2024 * +* Purpose : This is the main polygon clipping module * +* License : http://www.boost.org/LICENSE_1_0.txt * +*******************************************************************************/ + +#include +#include +#include +#include +#include +#include + +#include "clipper2/clipper.engine.h" +#include "clipper2/clipper.h" + +// https://github.com/AngusJohnson/Clipper2/discussions/334 +// #discussioncomment-4248602 +#if defined(_MSC_VER) && ( defined(_M_AMD64) || defined(_M_X64) ) +#include +#include +#define fmin(a,b) _mm_cvtsd_f64(_mm_min_sd(_mm_set_sd(a),_mm_set_sd(b))) +#define fmax(a,b) _mm_cvtsd_f64(_mm_max_sd(_mm_set_sd(a),_mm_set_sd(b))) +#define nearbyint(a) _mm_cvtsd_si64(_mm_set_sd(a)) /* Note: expression type is (int64_t) */ +#endif + +namespace Clipper2Lib { + + static const Rect64 invalid_rect = Rect64(false); + + // Every closed path (ie polygon) is made up of a series of vertices forming edge + // 'bounds' that alternate between ascending bounds (containing edges going up + // relative to the Y-axis) and descending bounds. 'Local Minima' refers to + // vertices where ascending and descending bounds join at the bottom, and + // 'Local Maxima' are where ascending and descending bounds join at the top. + + struct Scanline { + int64_t y = 0; + Scanline* next = nullptr; + + explicit Scanline(int64_t y_) : y(y_) {} + }; + + struct HorzSegSorter { + inline bool operator()(const HorzSegment& hs1, const HorzSegment& hs2) + { + if (!hs1.right_op || !hs2.right_op) return (hs1.right_op); + return hs2.left_op->pt.x > hs1.left_op->pt.x; + } + }; + + struct LocMinSorter { + inline bool operator()(const LocalMinima_ptr& locMin1, + const LocalMinima_ptr& locMin2) + { + if (locMin2->vertex->pt.y != locMin1->vertex->pt.y) + return locMin2->vertex->pt.y < locMin1->vertex->pt.y; + else + return locMin2->vertex->pt.x > locMin1->vertex->pt.x; + } + }; + + + inline bool IsOdd(int val) + { + return (val & 1) ? true : false; + } + + + inline bool IsHotEdge(const Active& e) + { + return (e.outrec); + } + + + inline bool IsOpen(const Active& e) + { + return (e.local_min->is_open); + } + + + inline bool IsOpenEnd(const Vertex& v) + { + return (v.flags & (VertexFlags::OpenStart | VertexFlags::OpenEnd)) != + VertexFlags::Empty; + } + + + inline bool IsOpenEnd(const Active& ae) + { + return IsOpenEnd(*ae.vertex_top); + } + + + inline Active* GetPrevHotEdge(const Active& e) + { + Active* prev = e.prev_in_ael; + while (prev && (IsOpen(*prev) || !IsHotEdge(*prev))) + prev = prev->prev_in_ael; + return prev; + } + + inline bool IsFront(const Active& e) + { + return (&e == e.outrec->front_edge); + } + + inline bool IsInvalidPath(OutPt* op) + { + return (!op || op->next == op); + } + + /******************************************************************************* + * Dx: 0(90deg) * + * | * + * +inf (180deg) <--- o ---> -inf (0deg) * + *******************************************************************************/ + + inline double GetDx(const Point64& pt1, const Point64& pt2) + { + double dy = double(pt2.y - pt1.y); + if (dy != 0) + return double(pt2.x - pt1.x) / dy; + else if (pt2.x > pt1.x) + return -std::numeric_limits::max(); + else + return std::numeric_limits::max(); + } + + inline int64_t TopX(const Active& ae, const int64_t currentY) + { + if ((currentY == ae.top.y) || (ae.top.x == ae.bot.x)) return ae.top.x; + else if (currentY == ae.bot.y) return ae.bot.x; + else return ae.bot.x + static_cast(nearbyint(ae.dx * (currentY - ae.bot.y))); + // nb: std::nearbyint (or std::round) substantially *improves* performance here + // as it greatly improves the likelihood of edge adjacency in ProcessIntersectList(). + } + + + inline bool IsHorizontal(const Active& e) + { + return (e.top.y == e.bot.y); + } + + + inline bool IsHeadingRightHorz(const Active& e) + { + return e.dx == -std::numeric_limits::max(); + } + + + inline bool IsHeadingLeftHorz(const Active& e) + { + return e.dx == std::numeric_limits::max(); + } + + + inline void SwapActives(Active*& e1, Active*& e2) + { + Active* e = e1; + e1 = e2; + e2 = e; + } + + inline PathType GetPolyType(const Active& e) + { + return e.local_min->polytype; + } + + inline bool IsSamePolyType(const Active& e1, const Active& e2) + { + return e1.local_min->polytype == e2.local_min->polytype; + } + + inline void SetDx(Active& e) + { + e.dx = GetDx(e.bot, e.top); + } + + inline Vertex* NextVertex(const Active& e) + { + if (e.wind_dx > 0) + return e.vertex_top->next; + else + return e.vertex_top->prev; + } + + //PrevPrevVertex: useful to get the (inverted Y-axis) top of the + //alternate edge (ie left or right bound) during edge insertion. + inline Vertex* PrevPrevVertex(const Active& ae) + { + if (ae.wind_dx > 0) + return ae.vertex_top->prev->prev; + else + return ae.vertex_top->next->next; + } + + + inline Active* ExtractFromSEL(Active* ae) + { + Active* res = ae->next_in_sel; + if (res) + res->prev_in_sel = ae->prev_in_sel; + ae->prev_in_sel->next_in_sel = res; + return res; + } + + + inline void Insert1Before2InSEL(Active* ae1, Active* ae2) + { + ae1->prev_in_sel = ae2->prev_in_sel; + if (ae1->prev_in_sel) + ae1->prev_in_sel->next_in_sel = ae1; + ae1->next_in_sel = ae2; + ae2->prev_in_sel = ae1; + } + + inline bool IsMaxima(const Vertex& v) + { + return ((v.flags & VertexFlags::LocalMax) != VertexFlags::Empty); + } + + + inline bool IsMaxima(const Active& e) + { + return IsMaxima(*e.vertex_top); + } + + inline Vertex* GetCurrYMaximaVertex_Open(const Active& e) + { + Vertex* result = e.vertex_top; + if (e.wind_dx > 0) + while ((result->next->pt.y == result->pt.y) && + ((result->flags & (VertexFlags::OpenEnd | + VertexFlags::LocalMax)) == VertexFlags::Empty)) + result = result->next; + else + while (result->prev->pt.y == result->pt.y && + ((result->flags & (VertexFlags::OpenEnd | + VertexFlags::LocalMax)) == VertexFlags::Empty)) + result = result->prev; + if (!IsMaxima(*result)) result = nullptr; // not a maxima + return result; + } + + inline Vertex* GetCurrYMaximaVertex(const Active& e) + { + Vertex* result = e.vertex_top; + if (e.wind_dx > 0) + while (result->next->pt.y == result->pt.y) result = result->next; + else + while (result->prev->pt.y == result->pt.y) result = result->prev; + if (!IsMaxima(*result)) result = nullptr; // not a maxima + return result; + } + + Active* GetMaximaPair(const Active& e) + { + Active* e2; + e2 = e.next_in_ael; + while (e2) + { + if (e2->vertex_top == e.vertex_top) return e2; // Found! + e2 = e2->next_in_ael; + } + return nullptr; + } + + inline int PointCount(OutPt* op) + { + OutPt* op2 = op; + int cnt = 0; + do + { + op2 = op2->next; + ++cnt; + } while (op2 != op); + return cnt; + } + + inline OutPt* DuplicateOp(OutPt* op, bool insert_after) + { + OutPt* result = new OutPt(op->pt, op->outrec); + if (insert_after) + { + result->next = op->next; + result->next->prev = result; + result->prev = op; + op->next = result; + } + else + { + result->prev = op->prev; + result->prev->next = result; + result->next = op; + op->prev = result; + } + return result; + } + + inline OutPt* DisposeOutPt(OutPt* op) + { + OutPt* result = op->next; + op->prev->next = op->next; + op->next->prev = op->prev; + delete op; + return result; + } + + + inline void DisposeOutPts(OutRec* outrec) + { + OutPt* op = outrec->pts; + op->prev->next = nullptr; + while (op) + { + OutPt* tmp = op; + op = op->next; + delete tmp; + }; + outrec->pts = nullptr; + } + + + bool IntersectListSort(const IntersectNode& a, const IntersectNode& b) + { + //note different inequality tests ... + return (a.pt.y == b.pt.y) ? (a.pt.x < b.pt.x) : (a.pt.y > b.pt.y); + } + + + inline void SetSides(OutRec& outrec, Active& start_edge, Active& end_edge) + { + outrec.front_edge = &start_edge; + outrec.back_edge = &end_edge; + } + + + void SwapOutrecs(Active& e1, Active& e2) + { + OutRec* or1 = e1.outrec; + OutRec* or2 = e2.outrec; + if (or1 == or2) + { + Active* e = or1->front_edge; + or1->front_edge = or1->back_edge; + or1->back_edge = e; + return; + } + if (or1) + { + if (&e1 == or1->front_edge) + or1->front_edge = &e2; + else + or1->back_edge = &e2; + } + if (or2) + { + if (&e2 == or2->front_edge) + or2->front_edge = &e1; + else + or2->back_edge = &e1; + } + e1.outrec = or2; + e2.outrec = or1; + } + + + double Area(OutPt* op) + { + //https://en.wikipedia.org/wiki/Shoelace_formula + double result = 0.0; + OutPt* op2 = op; + do + { + result += static_cast(op2->prev->pt.y + op2->pt.y) * + static_cast(op2->prev->pt.x - op2->pt.x); + op2 = op2->next; + } while (op2 != op); + return result * 0.5; + } + + inline double AreaTriangle(const Point64& pt1, + const Point64& pt2, const Point64& pt3) + { + return (static_cast(pt3.y + pt1.y) * static_cast(pt3.x - pt1.x) + + static_cast(pt1.y + pt2.y) * static_cast(pt1.x - pt2.x) + + static_cast(pt2.y + pt3.y) * static_cast(pt2.x - pt3.x)); + } + + void ReverseOutPts(OutPt* op) + { + if (!op) return; + + OutPt* op1 = op; + OutPt* op2; + + do + { + op2 = op1->next; + op1->next = op1->prev; + op1->prev = op2; + op1 = op2; + } while (op1 != op); + } + + inline void SwapSides(OutRec& outrec) + { + Active* e2 = outrec.front_edge; + outrec.front_edge = outrec.back_edge; + outrec.back_edge = e2; + outrec.pts = outrec.pts->next; + } + + inline OutRec* GetRealOutRec(OutRec* outrec) + { + while (outrec && !outrec->pts) outrec = outrec->owner; + return outrec; + } + + inline bool IsValidOwner(OutRec* outrec, OutRec* testOwner) + { + // prevent outrec owning itself either directly or indirectly + while (testOwner && testOwner != outrec) testOwner = testOwner->owner; + return !testOwner; + } + + inline void UncoupleOutRec(Active ae) + { + OutRec* outrec = ae.outrec; + if (!outrec) return; + outrec->front_edge->outrec = nullptr; + outrec->back_edge->outrec = nullptr; + outrec->front_edge = nullptr; + outrec->back_edge = nullptr; + } + + + inline bool PtsReallyClose(const Point64& pt1, const Point64& pt2) + { + return (std::llabs(pt1.x - pt2.x) < 2) && (std::llabs(pt1.y - pt2.y) < 2); + } + + inline bool IsVerySmallTriangle(const OutPt& op) + { + return op.next->next == op.prev && + (PtsReallyClose(op.prev->pt, op.next->pt) || + PtsReallyClose(op.pt, op.next->pt) || + PtsReallyClose(op.pt, op.prev->pt)); + } + + inline bool IsValidClosedPath(const OutPt* op) + { + return op && (op->next != op) && (op->next != op->prev) && + !IsVerySmallTriangle(*op); + } + + inline bool OutrecIsAscending(const Active* hotEdge) + { + return (hotEdge == hotEdge->outrec->front_edge); + } + + inline void SwapFrontBackSides(OutRec& outrec) + { + Active* tmp = outrec.front_edge; + outrec.front_edge = outrec.back_edge; + outrec.back_edge = tmp; + outrec.pts = outrec.pts->next; + } + + inline bool EdgesAdjacentInAEL(const IntersectNode& inode) + { + return (inode.edge1->next_in_ael == inode.edge2) || (inode.edge1->prev_in_ael == inode.edge2); + } + + inline bool IsJoined(const Active& e) + { + return e.join_with != JoinWith::NoJoin; + } + + inline void SetOwner(OutRec* outrec, OutRec* new_owner) + { + //precondition1: new_owner is never null + while (new_owner->owner && !new_owner->owner->pts) + new_owner->owner = new_owner->owner->owner; + OutRec* tmp = new_owner; + while (tmp && tmp != outrec) tmp = tmp->owner; + if (tmp) new_owner->owner = outrec->owner; + outrec->owner = new_owner; + } + + static PointInPolygonResult PointInOpPolygon(const Point64& pt, OutPt* op) + { + if (op == op->next || op->prev == op->next) + return PointInPolygonResult::IsOutside; + + OutPt* op2 = op; + do + { + if (op->pt.y != pt.y) break; + op = op->next; + } while (op != op2); + if (op->pt.y == pt.y) // not a proper polygon + return PointInPolygonResult::IsOutside; + + bool is_above = op->pt.y < pt.y, starting_above = is_above; + int val = 0; + op2 = op->next; + while (op2 != op) + { + if (is_above) + while (op2 != op && op2->pt.y < pt.y) op2 = op2->next; + else + while (op2 != op && op2->pt.y > pt.y) op2 = op2->next; + if (op2 == op) break; + + // must have touched or crossed the pt.Y horizonal + // and this must happen an even number of times + + if (op2->pt.y == pt.y) // touching the horizontal + { + if (op2->pt.x == pt.x || (op2->pt.y == op2->prev->pt.y && + (pt.x < op2->prev->pt.x) != (pt.x < op2->pt.x))) + return PointInPolygonResult::IsOn; + + op2 = op2->next; + if (op2 == op) break; + continue; + } + + if (pt.x < op2->pt.x && pt.x < op2->prev->pt.x); + // do nothing because + // we're only interested in edges crossing on the left + else if ((pt.x > op2->prev->pt.x && pt.x > op2->pt.x)) + val = 1 - val; // toggle val + else + { + double d = CrossProduct(op2->prev->pt, op2->pt, pt); + if (d == 0) return PointInPolygonResult::IsOn; + if ((d < 0) == is_above) val = 1 - val; + } + is_above = !is_above; + op2 = op2->next; + } + + if (is_above != starting_above) + { + double d = CrossProduct(op2->prev->pt, op2->pt, pt); + if (d == 0) return PointInPolygonResult::IsOn; + if ((d < 0) == is_above) val = 1 - val; + } + + if (val == 0) return PointInPolygonResult::IsOutside; + else return PointInPolygonResult::IsInside; + } + + inline Path64 GetCleanPath(OutPt* op) + { + Path64 result; + OutPt* op2 = op; + while (op2->next != op && + ((op2->pt.x == op2->next->pt.x && op2->pt.x == op2->prev->pt.x) || + (op2->pt.y == op2->next->pt.y && op2->pt.y == op2->prev->pt.y))) op2 = op2->next; + result.push_back(op2->pt); + OutPt* prevOp = op2; + op2 = op2->next; + while (op2 != op) + { + if ((op2->pt.x != op2->next->pt.x || op2->pt.x != prevOp->pt.x) && + (op2->pt.y != op2->next->pt.y || op2->pt.y != prevOp->pt.y)) + { + result.push_back(op2->pt); + prevOp = op2; + } + op2 = op2->next; + } + return result; + } + + inline bool Path1InsidePath2(OutPt* op1, OutPt* op2) + { + // we need to make some accommodation for rounding errors + // so we won't jump if the first vertex is found outside + PointInPolygonResult result; + int outside_cnt = 0; + OutPt* op = op1; + do + { + result = PointInOpPolygon(op->pt, op2); + if (result == PointInPolygonResult::IsOutside) ++outside_cnt; + else if (result == PointInPolygonResult::IsInside) --outside_cnt; + op = op->next; + } while (op != op1 && std::abs(outside_cnt) < 2); + if (std::abs(outside_cnt) > 1) return (outside_cnt < 0); + // since path1's location is still equivocal, check its midpoint + Point64 mp = GetBounds(GetCleanPath(op1)).MidPoint(); + Path64 path2 = GetCleanPath(op2); + return PointInPolygon(mp, path2) != PointInPolygonResult::IsOutside; + } + + //------------------------------------------------------------------------------ + //------------------------------------------------------------------------------ + + void AddLocMin(LocalMinimaList& list, + Vertex& vert, PathType polytype, bool is_open) + { + //make sure the vertex is added only once ... + if ((VertexFlags::LocalMin & vert.flags) != VertexFlags::Empty) return; + + vert.flags = (vert.flags | VertexFlags::LocalMin); + list.push_back(std::make_unique (&vert, polytype, is_open)); + } + + void AddPaths_(const Paths64& paths, PathType polytype, bool is_open, + std::vector& vertexLists, LocalMinimaList& locMinList) + { + const auto total_vertex_count = + std::accumulate(paths.begin(), paths.end(), size_t(0), + [](const auto& a, const Path64& path) + {return a + path.size(); }); + if (total_vertex_count == 0) return; + + Vertex* vertices = new Vertex[total_vertex_count], * v = vertices; + for (const Path64& path : paths) + { + //for each path create a circular double linked list of vertices + Vertex* v0 = v, * curr_v = v, * prev_v = nullptr; + + if (path.empty()) + continue; + + v->prev = nullptr; + int cnt = 0; + for (const Point64& pt : path) + { + if (prev_v) + { + if (prev_v->pt == pt) continue; // ie skips duplicates + prev_v->next = curr_v; + } + curr_v->prev = prev_v; + curr_v->pt = pt; + curr_v->flags = VertexFlags::Empty; + prev_v = curr_v++; + cnt++; + } + if (!prev_v || !prev_v->prev) continue; + if (!is_open && prev_v->pt == v0->pt) + prev_v = prev_v->prev; + prev_v->next = v0; + v0->prev = prev_v; + v = curr_v; // ie get ready for next path + if (cnt < 2 || (cnt == 2 && !is_open)) continue; + + //now find and assign local minima + bool going_up, going_up0; + if (is_open) + { + curr_v = v0->next; + while (curr_v != v0 && curr_v->pt.y == v0->pt.y) + curr_v = curr_v->next; + going_up = curr_v->pt.y <= v0->pt.y; + if (going_up) + { + v0->flags = VertexFlags::OpenStart; + AddLocMin(locMinList , *v0, polytype, true); + } + else + v0->flags = VertexFlags::OpenStart | VertexFlags::LocalMax; + } + else // closed path + { + prev_v = v0->prev; + while (prev_v != v0 && prev_v->pt.y == v0->pt.y) + prev_v = prev_v->prev; + if (prev_v == v0) + continue; // only open paths can be completely flat + going_up = prev_v->pt.y > v0->pt.y; + } + + going_up0 = going_up; + prev_v = v0; + curr_v = v0->next; + while (curr_v != v0) + { + if (curr_v->pt.y > prev_v->pt.y && going_up) + { + prev_v->flags = (prev_v->flags | VertexFlags::LocalMax); + going_up = false; + } + else if (curr_v->pt.y < prev_v->pt.y && !going_up) + { + going_up = true; + AddLocMin(locMinList, *prev_v, polytype, is_open); + } + prev_v = curr_v; + curr_v = curr_v->next; + } + + if (is_open) + { + prev_v->flags = prev_v->flags | VertexFlags::OpenEnd; + if (going_up) + prev_v->flags = prev_v->flags | VertexFlags::LocalMax; + else + AddLocMin(locMinList, *prev_v, polytype, is_open); + } + else if (going_up != going_up0) + { + if (going_up0) AddLocMin(locMinList, *prev_v, polytype, false); + else prev_v->flags = prev_v->flags | VertexFlags::LocalMax; + } + } // end processing current path + + vertexLists.emplace_back(vertices); + } + + //------------------------------------------------------------------------------ + // ReuseableDataContainer64 methods ... + //------------------------------------------------------------------------------ + + void ReuseableDataContainer64::AddLocMin(Vertex& vert, PathType polytype, bool is_open) + { + //make sure the vertex is added only once ... + if ((VertexFlags::LocalMin & vert.flags) != VertexFlags::Empty) return; + + vert.flags = (vert.flags | VertexFlags::LocalMin); + minima_list_.push_back(std::make_unique (&vert, polytype, is_open)); + } + + void ReuseableDataContainer64::AddPaths(const Paths64& paths, + PathType polytype, bool is_open) + { + AddPaths_(paths, polytype, is_open, vertex_lists_, minima_list_); + } + + ReuseableDataContainer64::~ReuseableDataContainer64() + { + Clear(); + } + + void ReuseableDataContainer64::Clear() + { + minima_list_.clear(); + for (auto v : vertex_lists_) delete[] v; + vertex_lists_.clear(); + } + + //------------------------------------------------------------------------------ + // ClipperBase methods ... + //------------------------------------------------------------------------------ + + ClipperBase::~ClipperBase() + { + Clear(); + } + + void ClipperBase::DeleteEdges(Active*& e) + { + while (e) + { + Active* e2 = e; + e = e->next_in_ael; + delete e2; + } + } + + void ClipperBase::CleanUp() + { + DeleteEdges(actives_); + scanline_list_ = std::priority_queue(); + intersect_nodes_.clear(); + DisposeAllOutRecs(); + horz_seg_list_.clear(); + horz_join_list_.clear(); + } + + + void ClipperBase::Clear() + { + CleanUp(); + DisposeVerticesAndLocalMinima(); + current_locmin_iter_ = minima_list_.begin(); + minima_list_sorted_ = false; + has_open_paths_ = false; + } + + + void ClipperBase::Reset() + { + if (!minima_list_sorted_) + { + std::stable_sort(minima_list_.begin(), minima_list_.end(), LocMinSorter()); //#594 + minima_list_sorted_ = true; + } + LocalMinimaList::const_reverse_iterator i; + for (i = minima_list_.rbegin(); i != minima_list_.rend(); ++i) + InsertScanline((*i)->vertex->pt.y); + + current_locmin_iter_ = minima_list_.begin(); + actives_ = nullptr; + sel_ = nullptr; + succeeded_ = true; + } + + +#ifdef USINGZ + void ClipperBase::SetZ(const Active& e1, const Active& e2, Point64& ip) + { + if (!zCallback_) return; + // prioritize subject over clip vertices by passing + // subject vertices before clip vertices in the callback + if (GetPolyType(e1) == PathType::Subject) + { + if (ip == e1.bot) ip.z = e1.bot.z; + else if (ip == e1.top) ip.z = e1.top.z; + else if (ip == e2.bot) ip.z = e2.bot.z; + else if (ip == e2.top) ip.z = e2.top.z; + else ip.z = DefaultZ; + zCallback_(e1.bot, e1.top, e2.bot, e2.top, ip); + } + else + { + if (ip == e2.bot) ip.z = e2.bot.z; + else if (ip == e2.top) ip.z = e2.top.z; + else if (ip == e1.bot) ip.z = e1.bot.z; + else if (ip == e1.top) ip.z = e1.top.z; + else ip.z = DefaultZ; + zCallback_(e2.bot, e2.top, e1.bot, e1.top, ip); + } + } +#endif + + void ClipperBase::AddPath(const Path64& path, PathType polytype, bool is_open) + { + Paths64 tmp; + tmp.push_back(path); + AddPaths(tmp, polytype, is_open); + } + + void ClipperBase::AddPaths(const Paths64& paths, PathType polytype, bool is_open) + { + if (is_open) has_open_paths_ = true; + minima_list_sorted_ = false; + AddPaths_(paths, polytype, is_open, vertex_lists_, minima_list_); + } + + void ClipperBase::AddReuseableData(const ReuseableDataContainer64& reuseable_data) + { + // nb: reuseable_data will continue to own the vertices + // and remains responsible for their clean up. + succeeded_ = false; + minima_list_sorted_ = false; + LocalMinimaList::const_iterator i; + for (i = reuseable_data.minima_list_.cbegin(); i != reuseable_data.minima_list_.cend(); ++i) + { + minima_list_.push_back(std::make_unique ((*i)->vertex, (*i)->polytype, (*i)->is_open)); + if ((*i)->is_open) has_open_paths_ = true; + } + } + + void ClipperBase::InsertScanline(int64_t y) + { + scanline_list_.push(y); + } + + + bool ClipperBase::PopScanline(int64_t& y) + { + if (scanline_list_.empty()) return false; + y = scanline_list_.top(); + scanline_list_.pop(); + while (!scanline_list_.empty() && y == scanline_list_.top()) + scanline_list_.pop(); // Pop duplicates. + return true; + } + + + bool ClipperBase::PopLocalMinima(int64_t y, LocalMinima*& local_minima) + { + if (current_locmin_iter_ == minima_list_.end() || (*current_locmin_iter_)->vertex->pt.y != y) return false; + local_minima = (current_locmin_iter_++)->get(); + return true; + } + + void ClipperBase::DisposeAllOutRecs() + { + for (auto outrec : outrec_list_) + { + if (outrec->pts) DisposeOutPts(outrec); + delete outrec; + } + outrec_list_.resize(0); + } + + void ClipperBase::DisposeVerticesAndLocalMinima() + { + minima_list_.clear(); + for (auto v : vertex_lists_) delete[] v; + vertex_lists_.clear(); + } + + + void ClipperBase::AddLocMin(Vertex& vert, PathType polytype, bool is_open) + { + //make sure the vertex is added only once ... + if ((VertexFlags::LocalMin & vert.flags) != VertexFlags::Empty) return; + + vert.flags = (vert.flags | VertexFlags::LocalMin); + minima_list_.push_back(std::make_unique (&vert, polytype, is_open)); + } + + bool ClipperBase::IsContributingClosed(const Active& e) const + { + switch (fillrule_) + { + case FillRule::EvenOdd: + break; + case FillRule::NonZero: + if (abs(e.wind_cnt) != 1) return false; + break; + case FillRule::Positive: + if (e.wind_cnt != 1) return false; + break; + case FillRule::Negative: + if (e.wind_cnt != -1) return false; + break; + // Should never happen, but adding this to stop a compiler warning + default: + break; + } + + switch (cliptype_) + { + case ClipType::NoClip: + return false; + case ClipType::Intersection: + switch (fillrule_) + { + case FillRule::Positive: + return (e.wind_cnt2 > 0); + case FillRule::Negative: + return (e.wind_cnt2 < 0); + default: + return (e.wind_cnt2 != 0); + } + break; + + case ClipType::Union: + switch (fillrule_) + { + case FillRule::Positive: + return (e.wind_cnt2 <= 0); + case FillRule::Negative: + return (e.wind_cnt2 >= 0); + default: + return (e.wind_cnt2 == 0); + } + break; + + case ClipType::Difference: + bool result; + switch (fillrule_) + { + case FillRule::Positive: + result = (e.wind_cnt2 <= 0); + break; + case FillRule::Negative: + result = (e.wind_cnt2 >= 0); + break; + default: + result = (e.wind_cnt2 == 0); + } + if (GetPolyType(e) == PathType::Subject) + return result; + else + return !result; + break; + + case ClipType::Xor: return true; break; + // Should never happen, but adding this to stop a compiler warning + default: + break; + } + return false; // we should never get here + } + + + inline bool ClipperBase::IsContributingOpen(const Active& e) const + { + bool is_in_clip, is_in_subj; + switch (fillrule_) + { + case FillRule::Positive: + is_in_clip = e.wind_cnt2 > 0; + is_in_subj = e.wind_cnt > 0; + break; + case FillRule::Negative: + is_in_clip = e.wind_cnt2 < 0; + is_in_subj = e.wind_cnt < 0; + break; + default: + is_in_clip = e.wind_cnt2 != 0; + is_in_subj = e.wind_cnt != 0; + } + + switch (cliptype_) + { + case ClipType::Intersection: return is_in_clip; + case ClipType::Union: return (!is_in_subj && !is_in_clip); + default: return !is_in_clip; + } + } + + + void ClipperBase::SetWindCountForClosedPathEdge(Active& e) + { + //Wind counts refer to polygon regions not edges, so here an edge's WindCnt + //indicates the higher of the wind counts for the two regions touching the + //edge. (NB Adjacent regions can only ever have their wind counts differ by + //one. Also, open paths have no meaningful wind directions or counts.) + + Active* e2 = e.prev_in_ael; + //find the nearest closed path edge of the same PolyType in AEL (heading left) + PathType pt = GetPolyType(e); + while (e2 && (GetPolyType(*e2) != pt || IsOpen(*e2))) e2 = e2->prev_in_ael; + + if (!e2) + { + e.wind_cnt = e.wind_dx; + e2 = actives_; + } + else if (fillrule_ == FillRule::EvenOdd) + { + e.wind_cnt = e.wind_dx; + e.wind_cnt2 = e2->wind_cnt2; + e2 = e2->next_in_ael; + } + else + { + //NonZero, positive, or negative filling here ... + //if e's WindCnt is in the SAME direction as its WindDx, then polygon + //filling will be on the right of 'e'. + //NB neither e2.WindCnt nor e2.WindDx should ever be 0. + if (e2->wind_cnt * e2->wind_dx < 0) + { + //opposite directions so 'e' is outside 'e2' ... + if (abs(e2->wind_cnt) > 1) + { + //outside prev poly but still inside another. + if (e2->wind_dx * e.wind_dx < 0) + //reversing direction so use the same WC + e.wind_cnt = e2->wind_cnt; + else + //otherwise keep 'reducing' the WC by 1 (ie towards 0) ... + e.wind_cnt = e2->wind_cnt + e.wind_dx; + } + else + //now outside all polys of same polytype so set own WC ... + e.wind_cnt = (IsOpen(e) ? 1 : e.wind_dx); + } + else + { + //'e' must be inside 'e2' + if (e2->wind_dx * e.wind_dx < 0) + //reversing direction so use the same WC + e.wind_cnt = e2->wind_cnt; + else + //otherwise keep 'increasing' the WC by 1 (ie away from 0) ... + e.wind_cnt = e2->wind_cnt + e.wind_dx; + } + e.wind_cnt2 = e2->wind_cnt2; + e2 = e2->next_in_ael; // ie get ready to calc WindCnt2 + } + + //update wind_cnt2 ... + if (fillrule_ == FillRule::EvenOdd) + while (e2 != &e) + { + if (GetPolyType(*e2) != pt && !IsOpen(*e2)) + e.wind_cnt2 = (e.wind_cnt2 == 0 ? 1 : 0); + e2 = e2->next_in_ael; + } + else + while (e2 != &e) + { + if (GetPolyType(*e2) != pt && !IsOpen(*e2)) + e.wind_cnt2 += e2->wind_dx; + e2 = e2->next_in_ael; + } + } + + + void ClipperBase::SetWindCountForOpenPathEdge(Active& e) + { + Active* e2 = actives_; + if (fillrule_ == FillRule::EvenOdd) + { + int cnt1 = 0, cnt2 = 0; + while (e2 != &e) + { + if (GetPolyType(*e2) == PathType::Clip) + cnt2++; + else if (!IsOpen(*e2)) + cnt1++; + e2 = e2->next_in_ael; + } + e.wind_cnt = (IsOdd(cnt1) ? 1 : 0); + e.wind_cnt2 = (IsOdd(cnt2) ? 1 : 0); + } + else + { + while (e2 != &e) + { + if (GetPolyType(*e2) == PathType::Clip) + e.wind_cnt2 += e2->wind_dx; + else if (!IsOpen(*e2)) + e.wind_cnt += e2->wind_dx; + e2 = e2->next_in_ael; + } + } + } + + bool IsValidAelOrder(const Active& resident, const Active& newcomer) + { + if (newcomer.curr_x != resident.curr_x) + return newcomer.curr_x > resident.curr_x; + + //get the turning direction a1.top, a2.bot, a2.top + double d = CrossProduct(resident.top, newcomer.bot, newcomer.top); + if (d != 0) return d < 0; + + //edges must be collinear to get here + //for starting open paths, place them according to + //the direction they're about to turn + if (!IsMaxima(resident) && (resident.top.y > newcomer.top.y)) + { + return CrossProduct(newcomer.bot, + resident.top, NextVertex(resident)->pt) <= 0; + } + else if (!IsMaxima(newcomer) && (newcomer.top.y > resident.top.y)) + { + return CrossProduct(newcomer.bot, + newcomer.top, NextVertex(newcomer)->pt) >= 0; + } + + int64_t y = newcomer.bot.y; + bool newcomerIsLeft = newcomer.is_left_bound; + + if (resident.bot.y != y || resident.local_min->vertex->pt.y != y) + return newcomer.is_left_bound; + //resident must also have just been inserted + else if (resident.is_left_bound != newcomerIsLeft) + return newcomerIsLeft; + else if (IsCollinear(PrevPrevVertex(resident)->pt, + resident.bot, resident.top)) return true; + else + //compare turning direction of the alternate bound + return (CrossProduct(PrevPrevVertex(resident)->pt, + newcomer.bot, PrevPrevVertex(newcomer)->pt) > 0) == newcomerIsLeft; + } + + + void ClipperBase::InsertLeftEdge(Active& e) + { + Active* e2; + if (!actives_) + { + e.prev_in_ael = nullptr; + e.next_in_ael = nullptr; + actives_ = &e; + } + else if (!IsValidAelOrder(*actives_, e)) + { + e.prev_in_ael = nullptr; + e.next_in_ael = actives_; + actives_->prev_in_ael = &e; + actives_ = &e; + } + else + { + e2 = actives_; + while (e2->next_in_ael && IsValidAelOrder(*e2->next_in_ael, e)) + e2 = e2->next_in_ael; + if (e2->join_with == JoinWith::Right) + e2 = e2->next_in_ael; + if (!e2) return; // should never happen and stops compiler warning :) + e.next_in_ael = e2->next_in_ael; + if (e2->next_in_ael) e2->next_in_ael->prev_in_ael = &e; + e.prev_in_ael = e2; + e2->next_in_ael = &e; + } + } + + + void InsertRightEdge(Active& e, Active& e2) + { + e2.next_in_ael = e.next_in_ael; + if (e.next_in_ael) e.next_in_ael->prev_in_ael = &e2; + e2.prev_in_ael = &e; + e.next_in_ael = &e2; + } + + + void ClipperBase::InsertLocalMinimaIntoAEL(int64_t bot_y) + { + LocalMinima* local_minima; + Active* left_bound, * right_bound; + //Add any local minima (if any) at BotY ... + //nb: horizontal local minima edges should contain locMin.vertex.prev + + while (PopLocalMinima(bot_y, local_minima)) + { + if ((local_minima->vertex->flags & VertexFlags::OpenStart) != VertexFlags::Empty) + { + left_bound = nullptr; + } + else + { + left_bound = new Active(); + left_bound->bot = local_minima->vertex->pt; + left_bound->curr_x = left_bound->bot.x; + left_bound->wind_dx = -1; + left_bound->vertex_top = local_minima->vertex->prev; // ie descending + left_bound->top = left_bound->vertex_top->pt; + left_bound->local_min = local_minima; + SetDx(*left_bound); + } + + if ((local_minima->vertex->flags & VertexFlags::OpenEnd) != VertexFlags::Empty) + { + right_bound = nullptr; + } + else + { + right_bound = new Active(); + right_bound->bot = local_minima->vertex->pt; + right_bound->curr_x = right_bound->bot.x; + right_bound->wind_dx = 1; + right_bound->vertex_top = local_minima->vertex->next; // ie ascending + right_bound->top = right_bound->vertex_top->pt; + right_bound->local_min = local_minima; + SetDx(*right_bound); + } + + //Currently LeftB is just the descending bound and RightB is the ascending. + //Now if the LeftB isn't on the left of RightB then we need swap them. + if (left_bound && right_bound) + { + if (IsHorizontal(*left_bound)) + { + if (IsHeadingRightHorz(*left_bound)) SwapActives(left_bound, right_bound); + } + else if (IsHorizontal(*right_bound)) + { + if (IsHeadingLeftHorz(*right_bound)) SwapActives(left_bound, right_bound); + } + else if (left_bound->dx < right_bound->dx) + SwapActives(left_bound, right_bound); + } + else if (!left_bound) + { + left_bound = right_bound; + right_bound = nullptr; + } + + bool contributing; + left_bound->is_left_bound = true; + InsertLeftEdge(*left_bound); + + if (IsOpen(*left_bound)) + { + SetWindCountForOpenPathEdge(*left_bound); + contributing = IsContributingOpen(*left_bound); + } + else + { + SetWindCountForClosedPathEdge(*left_bound); + contributing = IsContributingClosed(*left_bound); + } + + if (right_bound) + { + right_bound->is_left_bound = false; + right_bound->wind_cnt = left_bound->wind_cnt; + right_bound->wind_cnt2 = left_bound->wind_cnt2; + InsertRightEdge(*left_bound, *right_bound); /////// + if (contributing) + { + AddLocalMinPoly(*left_bound, *right_bound, left_bound->bot, true); + if (!IsHorizontal(*left_bound)) + CheckJoinLeft(*left_bound, left_bound->bot); + } + + while (right_bound->next_in_ael && + IsValidAelOrder(*right_bound->next_in_ael, *right_bound)) + { + IntersectEdges(*right_bound, *right_bound->next_in_ael, right_bound->bot); + SwapPositionsInAEL(*right_bound, *right_bound->next_in_ael); + } + + if (IsHorizontal(*right_bound)) + PushHorz(*right_bound); + else + { + CheckJoinRight(*right_bound, right_bound->bot); + InsertScanline(right_bound->top.y); + } + } + else if (contributing) + { + StartOpenPath(*left_bound, left_bound->bot); + } + + if (IsHorizontal(*left_bound)) + PushHorz(*left_bound); + else + InsertScanline(left_bound->top.y); + } // while (PopLocalMinima()) + } + + + inline void ClipperBase::PushHorz(Active& e) + { + e.next_in_sel = (sel_ ? sel_ : nullptr); + sel_ = &e; + } + + + inline bool ClipperBase::PopHorz(Active*& e) + { + e = sel_; + if (!e) return false; + sel_ = sel_->next_in_sel; + return true; + } + + + OutPt* ClipperBase::AddLocalMinPoly(Active& e1, Active& e2, + const Point64& pt, bool is_new) + { + OutRec* outrec = NewOutRec(); + e1.outrec = outrec; + e2.outrec = outrec; + + if (IsOpen(e1)) + { + outrec->owner = nullptr; + outrec->is_open = true; + if (e1.wind_dx > 0) + SetSides(*outrec, e1, e2); + else + SetSides(*outrec, e2, e1); + } + else + { + Active* prevHotEdge = GetPrevHotEdge(e1); + //e.windDx is the winding direction of the **input** paths + //and unrelated to the winding direction of output polygons. + //Output orientation is determined by e.outrec.frontE which is + //the ascending edge (see AddLocalMinPoly). + if (prevHotEdge) + { + if (using_polytree_) + SetOwner(outrec, prevHotEdge->outrec); + if (OutrecIsAscending(prevHotEdge) == is_new) + SetSides(*outrec, e2, e1); + else + SetSides(*outrec, e1, e2); + } + else + { + outrec->owner = nullptr; + if (is_new) + SetSides(*outrec, e1, e2); + else + SetSides(*outrec, e2, e1); + } + } + + OutPt* op = new OutPt(pt, outrec); + outrec->pts = op; + return op; + } + + + OutPt* ClipperBase::AddLocalMaxPoly(Active& e1, Active& e2, const Point64& pt) + { + if (IsJoined(e1)) Split(e1, pt); + if (IsJoined(e2)) Split(e2, pt); + + if (IsFront(e1) == IsFront(e2)) + { + if (IsOpenEnd(e1)) + SwapFrontBackSides(*e1.outrec); + else if (IsOpenEnd(e2)) + SwapFrontBackSides(*e2.outrec); + else + { + succeeded_ = false; + return nullptr; + } + } + + OutPt* result = AddOutPt(e1, pt); + if (e1.outrec == e2.outrec) + { + OutRec& outrec = *e1.outrec; + outrec.pts = result; + + if (using_polytree_) + { + Active* e = GetPrevHotEdge(e1); + if (!e) + outrec.owner = nullptr; + else + SetOwner(&outrec, e->outrec); + // nb: outRec.owner here is likely NOT the real + // owner but this will be checked in RecursiveCheckOwners() + } + + UncoupleOutRec(e1); + result = outrec.pts; + if (outrec.owner && !outrec.owner->front_edge) + outrec.owner = GetRealOutRec(outrec.owner); + } + //and to preserve the winding orientation of outrec ... + else if (IsOpen(e1)) + { + if (e1.wind_dx < 0) + JoinOutrecPaths(e1, e2); + else + JoinOutrecPaths(e2, e1); + } + else if (e1.outrec->idx < e2.outrec->idx) + JoinOutrecPaths(e1, e2); + else + JoinOutrecPaths(e2, e1); + return result; + } + + void ClipperBase::JoinOutrecPaths(Active& e1, Active& e2) + { + //join e2 outrec path onto e1 outrec path and then delete e2 outrec path + //pointers. (NB Only very rarely do the joining ends share the same coords.) + OutPt* p1_st = e1.outrec->pts; + OutPt* p2_st = e2.outrec->pts; + OutPt* p1_end = p1_st->next; + OutPt* p2_end = p2_st->next; + if (IsFront(e1)) + { + p2_end->prev = p1_st; + p1_st->next = p2_end; + p2_st->next = p1_end; + p1_end->prev = p2_st; + e1.outrec->pts = p2_st; + e1.outrec->front_edge = e2.outrec->front_edge; + if (e1.outrec->front_edge) + e1.outrec->front_edge->outrec = e1.outrec; + } + else + { + p1_end->prev = p2_st; + p2_st->next = p1_end; + p1_st->next = p2_end; + p2_end->prev = p1_st; + e1.outrec->back_edge = e2.outrec->back_edge; + if (e1.outrec->back_edge) + e1.outrec->back_edge->outrec = e1.outrec; + } + + //after joining, the e2.OutRec must contains no vertices ... + e2.outrec->front_edge = nullptr; + e2.outrec->back_edge = nullptr; + e2.outrec->pts = nullptr; + + if (IsOpenEnd(e1)) + { + e2.outrec->pts = e1.outrec->pts; + e1.outrec->pts = nullptr; + } + else + SetOwner(e2.outrec, e1.outrec); + + //and e1 and e2 are maxima and are about to be dropped from the Actives list. + e1.outrec = nullptr; + e2.outrec = nullptr; + } + + OutRec* ClipperBase::NewOutRec() + { + OutRec* result = new OutRec(); + result->idx = outrec_list_.size(); + outrec_list_.push_back(result); + result->pts = nullptr; + result->owner = nullptr; + result->polypath = nullptr; + result->is_open = false; + result->splits = nullptr; + return result; + } + + + OutPt* ClipperBase::AddOutPt(const Active& e, const Point64& pt) + { + OutPt* new_op = nullptr; + + //Outrec.OutPts: a circular doubly-linked-list of POutPt where ... + //op_front[.Prev]* ~~~> op_back & op_back == op_front.Next + OutRec* outrec = e.outrec; + bool to_front = IsFront(e); + OutPt* op_front = outrec->pts; + OutPt* op_back = op_front->next; + + if (to_front) + { + if (pt == op_front->pt) + return op_front; + } + else if (pt == op_back->pt) + return op_back; + + new_op = new OutPt(pt, outrec); + op_back->prev = new_op; + new_op->prev = op_front; + new_op->next = op_back; + op_front->next = new_op; + if (to_front) outrec->pts = new_op; + return new_op; + } + + void ClipperBase::CleanCollinear(OutRec* outrec) + { + outrec = GetRealOutRec(outrec); + if (!outrec || outrec->is_open) return; + if (!IsValidClosedPath(outrec->pts)) + { + DisposeOutPts(outrec); + return; + } + + OutPt* startOp = outrec->pts, * op2 = startOp; + for (; ; ) + { + //NB if preserveCollinear == true, then only remove 180 deg. spikes + if (IsCollinear(op2->prev->pt, op2->pt, op2->next->pt) && + (op2->pt == op2->prev->pt || + op2->pt == op2->next->pt || !preserve_collinear_ || + DotProduct(op2->prev->pt, op2->pt, op2->next->pt) < 0)) + { + + if (op2 == outrec->pts) outrec->pts = op2->prev; + + op2 = DisposeOutPt(op2); + if (!IsValidClosedPath(op2)) + { + DisposeOutPts(outrec); + return; + } + startOp = op2; + continue; + } + op2 = op2->next; + if (op2 == startOp) break; + } + FixSelfIntersects(outrec); + } + + void ClipperBase::DoSplitOp(OutRec* outrec, OutPt* splitOp) + { + // splitOp.prev -> splitOp && + // splitOp.next -> splitOp.next.next are intersecting + OutPt* prevOp = splitOp->prev; + OutPt* nextNextOp = splitOp->next->next; + outrec->pts = prevOp; + + Point64 ip; + GetSegmentIntersectPt(prevOp->pt, splitOp->pt, + splitOp->next->pt, nextNextOp->pt, ip); + +#ifdef USINGZ + if (zCallback_) zCallback_(prevOp->pt, splitOp->pt, + splitOp->next->pt, nextNextOp->pt, ip); +#endif + double area1 = Area(outrec->pts); + double absArea1 = std::fabs(area1); + if (absArea1 < 2) + { + DisposeOutPts(outrec); + return; + } + + double area2 = AreaTriangle(ip, splitOp->pt, splitOp->next->pt); + double absArea2 = std::fabs(area2); + + // de-link splitOp and splitOp.next from the path + // while inserting the intersection point + if (ip == prevOp->pt || ip == nextNextOp->pt) + { + nextNextOp->prev = prevOp; + prevOp->next = nextNextOp; + } + else + { + OutPt* newOp2 = new OutPt(ip, prevOp->outrec); + newOp2->prev = prevOp; + newOp2->next = nextNextOp; + nextNextOp->prev = newOp2; + prevOp->next = newOp2; + } + + // area1 is the path's area *before* splitting, whereas area2 is + // the area of the triangle containing splitOp & splitOp.next. + // So the only way for these areas to have the same sign is if + // the split triangle is larger than the path containing prevOp or + // if there's more than one self-intersection. + if (absArea2 >= 1 && + (absArea2 > absArea1 || (area2 > 0) == (area1 > 0))) + { + OutRec* newOr = NewOutRec(); + newOr->owner = outrec->owner; + + splitOp->outrec = newOr; + splitOp->next->outrec = newOr; + OutPt* newOp = new OutPt(ip, newOr); + newOp->prev = splitOp->next; + newOp->next = splitOp; + newOr->pts = newOp; + splitOp->prev = newOp; + splitOp->next->next = newOp; + + if (using_polytree_) + { + if (Path1InsidePath2(prevOp, newOp)) + { + newOr->splits = new OutRecList(); + newOr->splits->push_back(outrec); + } + else + { + if (!outrec->splits) outrec->splits = new OutRecList(); + outrec->splits->push_back(newOr); + } + } + } + else + { + delete splitOp->next; + delete splitOp; + } + } + + void ClipperBase::FixSelfIntersects(OutRec* outrec) + { + OutPt* op2 = outrec->pts; + for (; ; ) + { + // triangles can't self-intersect + if (op2->prev == op2->next->next) break; + if (SegmentsIntersect(op2->prev->pt, + op2->pt, op2->next->pt, op2->next->next->pt)) + { + if (op2 == outrec->pts || op2->next == outrec->pts) + outrec->pts = outrec->pts->prev; + DoSplitOp(outrec, op2); + if (!outrec->pts) break; + op2 = outrec->pts; + continue; + } + else + op2 = op2->next; + + if (op2 == outrec->pts) break; + } + } + + + inline void UpdateOutrecOwner(OutRec* outrec) + { + OutPt* opCurr = outrec->pts; + for (; ; ) + { + opCurr->outrec = outrec; + opCurr = opCurr->next; + if (opCurr == outrec->pts) return; + } + } + + + OutPt* ClipperBase::StartOpenPath(Active& e, const Point64& pt) + { + OutRec* outrec = NewOutRec(); + outrec->is_open = true; + + if (e.wind_dx > 0) + { + outrec->front_edge = &e; + outrec->back_edge = nullptr; + } + else + { + outrec->front_edge = nullptr; + outrec->back_edge = &e; + } + + e.outrec = outrec; + + OutPt* op = new OutPt(pt, outrec); + outrec->pts = op; + return op; + } + + inline void TrimHorz(Active& horzEdge, bool preserveCollinear) + { + bool wasTrimmed = false; + Point64 pt = NextVertex(horzEdge)->pt; + while (pt.y == horzEdge.top.y) + { + //always trim 180 deg. spikes (in closed paths) + //but otherwise break if preserveCollinear = true + if (preserveCollinear && + ((pt.x < horzEdge.top.x) != (horzEdge.bot.x < horzEdge.top.x))) + break; + + horzEdge.vertex_top = NextVertex(horzEdge); + horzEdge.top = pt; + wasTrimmed = true; + if (IsMaxima(horzEdge)) break; + pt = NextVertex(horzEdge)->pt; + } + + if (wasTrimmed) SetDx(horzEdge); // +/-infinity + } + + + inline void ClipperBase::UpdateEdgeIntoAEL(Active* e) + { + e->bot = e->top; + e->vertex_top = NextVertex(*e); + e->top = e->vertex_top->pt; + e->curr_x = e->bot.x; + SetDx(*e); + + if (IsJoined(*e)) Split(*e, e->bot); + + if (IsHorizontal(*e)) + { + if (!IsOpen(*e)) TrimHorz(*e, preserve_collinear_); + return; + } + + InsertScanline(e->top.y); + CheckJoinLeft(*e, e->bot); + CheckJoinRight(*e, e->bot, true); // (#500) + } + + Active* FindEdgeWithMatchingLocMin(Active* e) + { + Active* result = e->next_in_ael; + while (result) + { + if (result->local_min == e->local_min) return result; + else if (!IsHorizontal(*result) && e->bot != result->bot) result = nullptr; + else result = result->next_in_ael; + } + result = e->prev_in_ael; + while (result) + { + if (result->local_min == e->local_min) return result; + else if (!IsHorizontal(*result) && e->bot != result->bot) return nullptr; + else result = result->prev_in_ael; + } + return result; + } + + + void ClipperBase::IntersectEdges(Active& e1, Active& e2, const Point64& pt) + { + //MANAGE OPEN PATH INTERSECTIONS SEPARATELY ... + if (has_open_paths_ && (IsOpen(e1) || IsOpen(e2))) + { + if (IsOpen(e1) && IsOpen(e2)) return; + Active* edge_o, * edge_c; + if (IsOpen(e1)) + { + edge_o = &e1; + edge_c = &e2; + } + else + { + edge_o = &e2; + edge_c = &e1; + } + if (IsJoined(*edge_c)) Split(*edge_c, pt); // needed for safety + + if (abs(edge_c->wind_cnt) != 1) return; + switch (cliptype_) + { + case ClipType::Union: + if (!IsHotEdge(*edge_c)) return; + break; + default: + if (edge_c->local_min->polytype == PathType::Subject) + return; + } + + switch (fillrule_) + { + case FillRule::Positive: + if (edge_c->wind_cnt != 1) return; + break; + case FillRule::Negative: + if (edge_c->wind_cnt != -1) return; + break; + default: + if (std::abs(edge_c->wind_cnt) != 1) return; + } + +#ifdef USINGZ + OutPt* resultOp; +#endif + //toggle contribution ... + if (IsHotEdge(*edge_o)) + { +#ifdef USINGZ + resultOp = AddOutPt(*edge_o, pt); +#else + AddOutPt(*edge_o, pt); +#endif + if (IsFront(*edge_o)) edge_o->outrec->front_edge = nullptr; + else edge_o->outrec->back_edge = nullptr; + edge_o->outrec = nullptr; + } + + //horizontal edges can pass under open paths at a LocMins + else if (pt == edge_o->local_min->vertex->pt && + !IsOpenEnd(*edge_o->local_min->vertex)) + { + //find the other side of the LocMin and + //if it's 'hot' join up with it ... + Active* e3 = FindEdgeWithMatchingLocMin(edge_o); + if (e3 && IsHotEdge(*e3)) + { + edge_o->outrec = e3->outrec; + if (edge_o->wind_dx > 0) + SetSides(*e3->outrec, *edge_o, *e3); + else + SetSides(*e3->outrec, *e3, *edge_o); + return; + } + else +#ifdef USINGZ + resultOp = StartOpenPath(*edge_o, pt); +#else + StartOpenPath(*edge_o, pt); +#endif + } + else +#ifdef USINGZ + resultOp = StartOpenPath(*edge_o, pt); +#else + StartOpenPath(*edge_o, pt); +#endif + +#ifdef USINGZ + if (zCallback_) SetZ(*edge_o, *edge_c, resultOp->pt); +#endif + return; + } // end of an open path intersection + + //MANAGING CLOSED PATHS FROM HERE ON + + if (IsJoined(e1)) Split(e1, pt); + if (IsJoined(e2)) Split(e2, pt); + + //UPDATE WINDING COUNTS... + + int old_e1_windcnt, old_e2_windcnt; + if (e1.local_min->polytype == e2.local_min->polytype) + { + if (fillrule_ == FillRule::EvenOdd) + { + old_e1_windcnt = e1.wind_cnt; + e1.wind_cnt = e2.wind_cnt; + e2.wind_cnt = old_e1_windcnt; + } + else + { + if (e1.wind_cnt + e2.wind_dx == 0) + e1.wind_cnt = -e1.wind_cnt; + else + e1.wind_cnt += e2.wind_dx; + if (e2.wind_cnt - e1.wind_dx == 0) + e2.wind_cnt = -e2.wind_cnt; + else + e2.wind_cnt -= e1.wind_dx; + } + } + else + { + if (fillrule_ != FillRule::EvenOdd) + { + e1.wind_cnt2 += e2.wind_dx; + e2.wind_cnt2 -= e1.wind_dx; + } + else + { + e1.wind_cnt2 = (e1.wind_cnt2 == 0 ? 1 : 0); + e2.wind_cnt2 = (e2.wind_cnt2 == 0 ? 1 : 0); + } + } + + switch (fillrule_) + { + case FillRule::EvenOdd: + case FillRule::NonZero: + old_e1_windcnt = abs(e1.wind_cnt); + old_e2_windcnt = abs(e2.wind_cnt); + break; + default: + if (fillrule_ == fillpos) + { + old_e1_windcnt = e1.wind_cnt; + old_e2_windcnt = e2.wind_cnt; + } + else + { + old_e1_windcnt = -e1.wind_cnt; + old_e2_windcnt = -e2.wind_cnt; + } + break; + } + + const bool e1_windcnt_in_01 = old_e1_windcnt == 0 || old_e1_windcnt == 1; + const bool e2_windcnt_in_01 = old_e2_windcnt == 0 || old_e2_windcnt == 1; + + if ((!IsHotEdge(e1) && !e1_windcnt_in_01) || + (!IsHotEdge(e2) && !e2_windcnt_in_01)) + return; + + //NOW PROCESS THE INTERSECTION ... +#ifdef USINGZ + OutPt* resultOp = nullptr; +#endif + //if both edges are 'hot' ... + if (IsHotEdge(e1) && IsHotEdge(e2)) + { + if ((old_e1_windcnt != 0 && old_e1_windcnt != 1) || (old_e2_windcnt != 0 && old_e2_windcnt != 1) || + (e1.local_min->polytype != e2.local_min->polytype && cliptype_ != ClipType::Xor)) + { +#ifdef USINGZ + resultOp = AddLocalMaxPoly(e1, e2, pt); + if (zCallback_ && resultOp) SetZ(e1, e2, resultOp->pt); +#else + AddLocalMaxPoly(e1, e2, pt); +#endif + } + else if (IsFront(e1) || (e1.outrec == e2.outrec)) + { + //this 'else if' condition isn't strictly needed but + //it's sensible to split polygons that ony touch at + //a common vertex (not at common edges). + +#ifdef USINGZ + resultOp = AddLocalMaxPoly(e1, e2, pt); + OutPt* op2 = AddLocalMinPoly(e1, e2, pt); + if (zCallback_ && resultOp) SetZ(e1, e2, resultOp->pt); + if (zCallback_) SetZ(e1, e2, op2->pt); +#else + AddLocalMaxPoly(e1, e2, pt); + AddLocalMinPoly(e1, e2, pt); +#endif + } + else + { +#ifdef USINGZ + resultOp = AddOutPt(e1, pt); + OutPt* op2 = AddOutPt(e2, pt); + if (zCallback_) + { + SetZ(e1, e2, resultOp->pt); + SetZ(e1, e2, op2->pt); + } +#else + AddOutPt(e1, pt); + AddOutPt(e2, pt); +#endif + SwapOutrecs(e1, e2); + } + } + else if (IsHotEdge(e1)) + { +#ifdef USINGZ + resultOp = AddOutPt(e1, pt); + if (zCallback_) SetZ(e1, e2, resultOp->pt); +#else + AddOutPt(e1, pt); +#endif + SwapOutrecs(e1, e2); + } + else if (IsHotEdge(e2)) + { +#ifdef USINGZ + resultOp = AddOutPt(e2, pt); + if (zCallback_) SetZ(e1, e2, resultOp->pt); +#else + AddOutPt(e2, pt); +#endif + SwapOutrecs(e1, e2); + } + else + { + int64_t e1Wc2, e2Wc2; + switch (fillrule_) + { + case FillRule::EvenOdd: + case FillRule::NonZero: + e1Wc2 = abs(e1.wind_cnt2); + e2Wc2 = abs(e2.wind_cnt2); + break; + default: + if (fillrule_ == fillpos) + { + e1Wc2 = e1.wind_cnt2; + e2Wc2 = e2.wind_cnt2; + } + else + { + e1Wc2 = -e1.wind_cnt2; + e2Wc2 = -e2.wind_cnt2; + } + break; + } + + if (!IsSamePolyType(e1, e2)) + { +#ifdef USINGZ + resultOp = AddLocalMinPoly(e1, e2, pt, false); + if (zCallback_) SetZ(e1, e2, resultOp->pt); +#else + AddLocalMinPoly(e1, e2, pt, false); +#endif + } + else if (old_e1_windcnt == 1 && old_e2_windcnt == 1) + { +#ifdef USINGZ + resultOp = nullptr; +#endif + switch (cliptype_) + { + case ClipType::Union: + if (e1Wc2 <= 0 && e2Wc2 <= 0) +#ifdef USINGZ + resultOp = AddLocalMinPoly(e1, e2, pt, false); +#else + AddLocalMinPoly(e1, e2, pt, false); +#endif + break; + case ClipType::Difference: + if (((GetPolyType(e1) == PathType::Clip) && (e1Wc2 > 0) && (e2Wc2 > 0)) || + ((GetPolyType(e1) == PathType::Subject) && (e1Wc2 <= 0) && (e2Wc2 <= 0))) + { +#ifdef USINGZ + resultOp = AddLocalMinPoly(e1, e2, pt, false); +#else + AddLocalMinPoly(e1, e2, pt, false); +#endif + } + break; + case ClipType::Xor: +#ifdef USINGZ + resultOp = AddLocalMinPoly(e1, e2, pt, false); +#else + AddLocalMinPoly(e1, e2, pt, false); +#endif + break; + default: + if (e1Wc2 > 0 && e2Wc2 > 0) +#ifdef USINGZ + resultOp = AddLocalMinPoly(e1, e2, pt, false); +#else + AddLocalMinPoly(e1, e2, pt, false); +#endif + break; + } +#ifdef USINGZ + if (resultOp && zCallback_) SetZ(e1, e2, resultOp->pt); +#endif + } + } + } + + inline void ClipperBase::DeleteFromAEL(Active& e) + { + Active* prev = e.prev_in_ael; + Active* next = e.next_in_ael; + if (!prev && !next && (&e != actives_)) return; // already deleted + if (prev) + prev->next_in_ael = next; + else + actives_ = next; + if (next) next->prev_in_ael = prev; + delete& e; + } + + + inline void ClipperBase::AdjustCurrXAndCopyToSEL(const int64_t top_y) + { + Active* e = actives_; + sel_ = e; + while (e) + { + e->prev_in_sel = e->prev_in_ael; + e->next_in_sel = e->next_in_ael; + e->jump = e->next_in_sel; + if (e->join_with == JoinWith::Left) + e->curr_x = e->prev_in_ael->curr_x; // also avoids complications + else + e->curr_x = TopX(*e, top_y); + e = e->next_in_ael; + } + } + + bool ClipperBase::ExecuteInternal(ClipType ct, FillRule fillrule, bool use_polytrees) + { + cliptype_ = ct; + fillrule_ = fillrule; + using_polytree_ = use_polytrees; + Reset(); + int64_t y; + if (ct == ClipType::NoClip || !PopScanline(y)) return true; + + while (succeeded_) + { + InsertLocalMinimaIntoAEL(y); + Active* e; + while (PopHorz(e)) DoHorizontal(*e); + if (horz_seg_list_.size() > 0) + { + ConvertHorzSegsToJoins(); + horz_seg_list_.clear(); + } + bot_y_ = y; // bot_y_ == bottom of scanbeam + if (!PopScanline(y)) break; // y new top of scanbeam + DoIntersections(y); + DoTopOfScanbeam(y); + while (PopHorz(e)) DoHorizontal(*e); + } + if (succeeded_) ProcessHorzJoins(); + return succeeded_; + } + + inline void FixOutRecPts(OutRec* outrec) + { + OutPt* op = outrec->pts; + do { + op->outrec = outrec; + op = op->next; + } while (op != outrec->pts); + } + + inline bool SetHorzSegHeadingForward(HorzSegment& hs, OutPt* opP, OutPt* opN) + { + if (opP->pt.x == opN->pt.x) return false; + if (opP->pt.x < opN->pt.x) + { + hs.left_op = opP; + hs.right_op = opN; + hs.left_to_right = true; + } + else + { + hs.left_op = opN; + hs.right_op = opP; + hs.left_to_right = false; + } + return true; + } + + inline bool UpdateHorzSegment(HorzSegment& hs) + { + OutPt* op = hs.left_op; + OutRec* outrec = GetRealOutRec(op->outrec); + bool outrecHasEdges = outrec->front_edge; + int64_t curr_y = op->pt.y; + OutPt* opP = op, * opN = op; + if (outrecHasEdges) + { + OutPt* opA = outrec->pts, * opZ = opA->next; + while (opP != opZ && opP->prev->pt.y == curr_y) + opP = opP->prev; + while (opN != opA && opN->next->pt.y == curr_y) + opN = opN->next; + } + else + { + while (opP->prev != opN && opP->prev->pt.y == curr_y) + opP = opP->prev; + while (opN->next != opP && opN->next->pt.y == curr_y) + opN = opN->next; + } + bool result = + SetHorzSegHeadingForward(hs, opP, opN) && + !hs.left_op->horz; + + if (result) + hs.left_op->horz = &hs; + else + hs.right_op = nullptr; // (for sorting) + return result; + } + + void ClipperBase::ConvertHorzSegsToJoins() + { + auto j = std::count_if(horz_seg_list_.begin(), + horz_seg_list_.end(), + [](HorzSegment& hs) { return UpdateHorzSegment(hs); }); + if (j < 2) return; + + std::stable_sort(horz_seg_list_.begin(), horz_seg_list_.end(), HorzSegSorter()); + + HorzSegmentList::iterator hs1 = horz_seg_list_.begin(), hs2; + HorzSegmentList::iterator hs_end = hs1 +j; + HorzSegmentList::iterator hs_end1 = hs_end - 1; + + for (; hs1 != hs_end1; ++hs1) + { + for (hs2 = hs1 + 1; hs2 != hs_end; ++hs2) + { + if ((hs2->left_op->pt.x >= hs1->right_op->pt.x) || + (hs2->left_to_right == hs1->left_to_right) || + (hs2->right_op->pt.x <= hs1->left_op->pt.x)) continue; + int64_t curr_y = hs1->left_op->pt.y; + if (hs1->left_to_right) + { + while (hs1->left_op->next->pt.y == curr_y && + hs1->left_op->next->pt.x <= hs2->left_op->pt.x) + hs1->left_op = hs1->left_op->next; + while (hs2->left_op->prev->pt.y == curr_y && + hs2->left_op->prev->pt.x <= hs1->left_op->pt.x) + hs2->left_op = hs2->left_op->prev; + HorzJoin join = HorzJoin( + DuplicateOp(hs1->left_op, true), + DuplicateOp(hs2->left_op, false)); + horz_join_list_.push_back(join); + } + else + { + while (hs1->left_op->prev->pt.y == curr_y && + hs1->left_op->prev->pt.x <= hs2->left_op->pt.x) + hs1->left_op = hs1->left_op->prev; + while (hs2->left_op->next->pt.y == curr_y && + hs2->left_op->next->pt.x <= hs1->left_op->pt.x) + hs2->left_op = hs2->left_op->next; + HorzJoin join = HorzJoin( + DuplicateOp(hs2->left_op, true), + DuplicateOp(hs1->left_op, false)); + horz_join_list_.push_back(join); + } + } + } + } + + void MoveSplits(OutRec* fromOr, OutRec* toOr) + { + if (!fromOr->splits) return; + if (!toOr->splits) toOr->splits = new OutRecList(); + OutRecList::iterator orIter = fromOr->splits->begin(); + for (; orIter != fromOr->splits->end(); ++orIter) + toOr->splits->push_back(*orIter); + fromOr->splits->clear(); + } + + + void ClipperBase::ProcessHorzJoins() + { + for (const HorzJoin& j : horz_join_list_) + { + OutRec* or1 = GetRealOutRec(j.op1->outrec); + OutRec* or2 = GetRealOutRec(j.op2->outrec); + + OutPt* op1b = j.op1->next; + OutPt* op2b = j.op2->prev; + j.op1->next = j.op2; + j.op2->prev = j.op1; + op1b->prev = op2b; + op2b->next = op1b; + + if (or1 == or2) // 'join' is really a split + { + or2 = NewOutRec(); + or2->pts = op1b; + FixOutRecPts(or2); + + //if or1->pts has moved to or2 then update or1->pts!! + if (or1->pts->outrec == or2) + { + or1->pts = j.op1; + or1->pts->outrec = or1; + } + + if (using_polytree_) //#498, #520, #584, D#576, #618 + { + if (Path1InsidePath2(or1->pts, or2->pts)) + { + //swap or1's & or2's pts + OutPt* tmp = or1->pts; + or1->pts = or2->pts; + or2->pts = tmp; + FixOutRecPts(or1); + FixOutRecPts(or2); + //or2 is now inside or1 + or2->owner = or1; + } + else if (Path1InsidePath2(or2->pts, or1->pts)) + { + or2->owner = or1; + } + else + or2->owner = or1->owner; + + if (!or1->splits) or1->splits = new OutRecList(); + or1->splits->push_back(or2); + } + else + or2->owner = or1; + } + else + { + or2->pts = nullptr; + if (using_polytree_) + { + SetOwner(or2, or1); + MoveSplits(or2, or1); //#618 + } + else + or2->owner = or1; + } + } + } + + void ClipperBase::DoIntersections(const int64_t top_y) + { + if (BuildIntersectList(top_y)) + { + ProcessIntersectList(); + intersect_nodes_.clear(); + } + } + + void ClipperBase::AddNewIntersectNode(Active& e1, Active& e2, int64_t top_y) + { + Point64 ip; + if (!GetSegmentIntersectPt(e1.bot, e1.top, e2.bot, e2.top, ip)) + ip = Point64(e1.curr_x, top_y); //parallel edges + + //rounding errors can occasionally place the calculated intersection + //point either below or above the scanbeam, so check and correct ... + if (ip.y > bot_y_ || ip.y < top_y) + { + double abs_dx1 = std::fabs(e1.dx); + double abs_dx2 = std::fabs(e2.dx); + if (abs_dx1 > 100 && abs_dx2 > 100) + { + if (abs_dx1 > abs_dx2) + ip = GetClosestPointOnSegment(ip, e1.bot, e1.top); + else + ip = GetClosestPointOnSegment(ip, e2.bot, e2.top); + } + else if (abs_dx1 > 100) + ip = GetClosestPointOnSegment(ip, e1.bot, e1.top); + else if (abs_dx2 > 100) + ip = GetClosestPointOnSegment(ip, e2.bot, e2.top); + else + { + if (ip.y < top_y) ip.y = top_y; + else ip.y = bot_y_; + if (abs_dx1 < abs_dx2) ip.x = TopX(e1, ip.y); + else ip.x = TopX(e2, ip.y); + } + } + intersect_nodes_.push_back(IntersectNode(&e1, &e2, ip)); + } + + bool ClipperBase::BuildIntersectList(const int64_t top_y) + { + if (!actives_ || !actives_->next_in_ael) return false; + + //Calculate edge positions at the top of the current scanbeam, and from this + //we will determine the intersections required to reach these new positions. + AdjustCurrXAndCopyToSEL(top_y); + //Find all edge intersections in the current scanbeam using a stable merge + //sort that ensures only adjacent edges are intersecting. Intersect info is + //stored in FIntersectList ready to be processed in ProcessIntersectList. + //Re merge sorts see https://stackoverflow.com/a/46319131/359538 + + Active* left = sel_, * right, * l_end, * r_end, * curr_base, * tmp; + + while (left && left->jump) + { + Active* prev_base = nullptr; + while (left && left->jump) + { + curr_base = left; + right = left->jump; + l_end = right; + r_end = right->jump; + left->jump = r_end; + while (left != l_end && right != r_end) + { + if (right->curr_x < left->curr_x) + { + tmp = right->prev_in_sel; + for (; ; ) + { + AddNewIntersectNode(*tmp, *right, top_y); + if (tmp == left) break; + tmp = tmp->prev_in_sel; + } + + tmp = right; + right = ExtractFromSEL(tmp); + l_end = right; + Insert1Before2InSEL(tmp, left); + if (left == curr_base) + { + curr_base = tmp; + curr_base->jump = r_end; + if (!prev_base) sel_ = curr_base; + else prev_base->jump = curr_base; + } + } + else left = left->next_in_sel; + } + prev_base = curr_base; + left = r_end; + } + left = sel_; + } + return intersect_nodes_.size() > 0; + } + + void ClipperBase::ProcessIntersectList() + { + //We now have a list of intersections required so that edges will be + //correctly positioned at the top of the scanbeam. However, it's important + //that edge intersections are processed from the bottom up, but it's also + //crucial that intersections only occur between adjacent edges. + + //First we do a quicksort so intersections proceed in a bottom up order ... + std::sort(intersect_nodes_.begin(), intersect_nodes_.end(), IntersectListSort); + //Now as we process these intersections, we must sometimes adjust the order + //to ensure that intersecting edges are always adjacent ... + + IntersectNodeList::iterator node_iter, node_iter2; + for (node_iter = intersect_nodes_.begin(); + node_iter != intersect_nodes_.end(); ++node_iter) + { + if (!EdgesAdjacentInAEL(*node_iter)) + { + node_iter2 = node_iter + 1; + while (!EdgesAdjacentInAEL(*node_iter2)) ++node_iter2; + std::swap(*node_iter, *node_iter2); + } + + IntersectNode& node = *node_iter; + IntersectEdges(*node.edge1, *node.edge2, node.pt); + SwapPositionsInAEL(*node.edge1, *node.edge2); + + node.edge1->curr_x = node.pt.x; + node.edge2->curr_x = node.pt.x; + CheckJoinLeft(*node.edge2, node.pt, true); + CheckJoinRight(*node.edge1, node.pt, true); + } + } + + void ClipperBase::SwapPositionsInAEL(Active& e1, Active& e2) + { + //preconditon: e1 must be immediately to the left of e2 + Active* next = e2.next_in_ael; + if (next) next->prev_in_ael = &e1; + Active* prev = e1.prev_in_ael; + if (prev) prev->next_in_ael = &e2; + e2.prev_in_ael = prev; + e2.next_in_ael = &e1; + e1.prev_in_ael = &e2; + e1.next_in_ael = next; + if (!e2.prev_in_ael) actives_ = &e2; + } + + inline OutPt* GetLastOp(const Active& hot_edge) + { + OutRec* outrec = hot_edge.outrec; + OutPt* result = outrec->pts; + if (&hot_edge != outrec->front_edge) + result = result->next; + return result; + } + + void ClipperBase::AddTrialHorzJoin(OutPt* op) + { + if (op->outrec->is_open) return; + horz_seg_list_.push_back(HorzSegment(op)); + } + + bool ClipperBase::ResetHorzDirection(const Active& horz, + const Vertex* max_vertex, int64_t& horz_left, int64_t& horz_right) + { + if (horz.bot.x == horz.top.x) + { + //the horizontal edge is going nowhere ... + horz_left = horz.curr_x; + horz_right = horz.curr_x; + Active* e = horz.next_in_ael; + while (e && e->vertex_top != max_vertex) e = e->next_in_ael; + return e != nullptr; + } + else if (horz.curr_x < horz.top.x) + { + horz_left = horz.curr_x; + horz_right = horz.top.x; + return true; + } + else + { + horz_left = horz.top.x; + horz_right = horz.curr_x; + return false; // right to left + } + } + + void ClipperBase::DoHorizontal(Active& horz) + /******************************************************************************* + * Notes: Horizontal edges (HEs) at scanline intersections (ie at the top or * + * bottom of a scanbeam) are processed as if layered.The order in which HEs * + * are processed doesn't matter. HEs intersect with the bottom vertices of * + * other HEs[#] and with non-horizontal edges [*]. Once these intersections * + * are completed, intermediate HEs are 'promoted' to the next edge in their * + * bounds, and they in turn may be intersected[%] by other HEs. * + * * + * eg: 3 horizontals at a scanline: / | / / * + * | / | (HE3)o ========%========== o * + * o ======= o(HE2) / | / / * + * o ============#=========*======*========#=========o (HE1) * + * / | / | / * + *******************************************************************************/ + { + Point64 pt; + bool horzIsOpen = IsOpen(horz); + int64_t y = horz.bot.y; + Vertex* vertex_max; + if (horzIsOpen) + vertex_max = GetCurrYMaximaVertex_Open(horz); + else + vertex_max = GetCurrYMaximaVertex(horz); + + //// remove 180 deg.spikes and also simplify + //// consecutive horizontals when PreserveCollinear = true + //if (!horzIsOpen && vertex_max != horz.vertex_top) + // TrimHorz(horz, PreserveCollinear); + + int64_t horz_left, horz_right; + bool is_left_to_right = + ResetHorzDirection(horz, vertex_max, horz_left, horz_right); + + if (IsHotEdge(horz)) + { +#ifdef USINGZ + OutPt* op = AddOutPt(horz, Point64(horz.curr_x, y, horz.bot.z)); +#else + OutPt* op = AddOutPt(horz, Point64(horz.curr_x, y)); +#endif + AddTrialHorzJoin(op); + } + + while (true) // loop through consec. horizontal edges + { + Active* e; + if (is_left_to_right) e = horz.next_in_ael; + else e = horz.prev_in_ael; + + while (e) + { + if (e->vertex_top == vertex_max) + { + if (IsHotEdge(horz) && IsJoined(*e)) + Split(*e, e->top); + + //if (IsHotEdge(horz) != IsHotEdge(*e)) + // DoError(undefined_error_i); + + if (IsHotEdge(horz)) + { + while (horz.vertex_top != vertex_max) + { + AddOutPt(horz, horz.top); + UpdateEdgeIntoAEL(&horz); + } + if (is_left_to_right) + AddLocalMaxPoly(horz, *e, horz.top); + else + AddLocalMaxPoly(*e, horz, horz.top); + } + DeleteFromAEL(*e); + DeleteFromAEL(horz); + return; + } + + //if horzEdge is a maxima, keep going until we reach + //its maxima pair, otherwise check for break conditions + if (vertex_max != horz.vertex_top || IsOpenEnd(horz)) + { + //otherwise stop when 'ae' is beyond the end of the horizontal line + if ((is_left_to_right && e->curr_x > horz_right) || + (!is_left_to_right && e->curr_x < horz_left)) break; + + if (e->curr_x == horz.top.x && !IsHorizontal(*e)) + { + pt = NextVertex(horz)->pt; + if (is_left_to_right) + { + //with open paths we'll only break once past horz's end + if (IsOpen(*e) && !IsSamePolyType(*e, horz) && !IsHotEdge(*e)) + { + if (TopX(*e, pt.y) > pt.x) break; + } + //otherwise we'll only break when horz's outslope is greater than e's + else if (TopX(*e, pt.y) >= pt.x) break; + } + else + { + if (IsOpen(*e) && !IsSamePolyType(*e, horz) && !IsHotEdge(*e)) + { + if (TopX(*e, pt.y) < pt.x) break; + } + else if (TopX(*e, pt.y) <= pt.x) break; + } + } + } + + pt = Point64(e->curr_x, horz.bot.y); + if (is_left_to_right) + { + IntersectEdges(horz, *e, pt); + SwapPositionsInAEL(horz, *e); + CheckJoinLeft(*e, pt); + horz.curr_x = e->curr_x; + e = horz.next_in_ael; + } + else + { + IntersectEdges(*e, horz, pt); + SwapPositionsInAEL(*e, horz); + CheckJoinRight(*e, pt); + horz.curr_x = e->curr_x; + e = horz.prev_in_ael; + } + + if (horz.outrec) + { + //nb: The outrec containining the op returned by IntersectEdges + //above may no longer be associated with horzEdge. + AddTrialHorzJoin(GetLastOp(horz)); + } + } + + //check if we've finished with (consecutive) horizontals ... + if (horzIsOpen && IsOpenEnd(horz)) // ie open at top + { + if (IsHotEdge(horz)) + { + AddOutPt(horz, horz.top); + if (IsFront(horz)) + horz.outrec->front_edge = nullptr; + else + horz.outrec->back_edge = nullptr; + horz.outrec = nullptr; + } + DeleteFromAEL(horz); + return; + } + else if (NextVertex(horz)->pt.y != horz.top.y) + break; + + //still more horizontals in bound to process ... + if (IsHotEdge(horz)) + AddOutPt(horz, horz.top); + UpdateEdgeIntoAEL(&horz); + + is_left_to_right = + ResetHorzDirection(horz, vertex_max, horz_left, horz_right); + } + + if (IsHotEdge(horz)) + { + OutPt* op = AddOutPt(horz, horz.top); + AddTrialHorzJoin(op); + } + + UpdateEdgeIntoAEL(&horz); // end of an intermediate horiz. + } + + void ClipperBase::DoTopOfScanbeam(const int64_t y) + { + sel_ = nullptr; // sel_ is reused to flag horizontals (see PushHorz below) + Active* e = actives_; + while (e) + { + //nb: 'e' will never be horizontal here + if (e->top.y == y) + { + e->curr_x = e->top.x; + if (IsMaxima(*e)) + { + e = DoMaxima(*e); // TOP OF BOUND (MAXIMA) + continue; + } + else + { + //INTERMEDIATE VERTEX ... + if (IsHotEdge(*e)) AddOutPt(*e, e->top); + UpdateEdgeIntoAEL(e); + if (IsHorizontal(*e)) + PushHorz(*e); // horizontals are processed later + } + } + else // i.e. not the top of the edge + e->curr_x = TopX(*e, y); + + e = e->next_in_ael; + } + } + + + Active* ClipperBase::DoMaxima(Active& e) + { + Active* next_e, * prev_e, * max_pair; + prev_e = e.prev_in_ael; + next_e = e.next_in_ael; + if (IsOpenEnd(e)) + { + if (IsHotEdge(e)) AddOutPt(e, e.top); + if (!IsHorizontal(e)) + { + if (IsHotEdge(e)) + { + if (IsFront(e)) + e.outrec->front_edge = nullptr; + else + e.outrec->back_edge = nullptr; + e.outrec = nullptr; + } + DeleteFromAEL(e); + } + return next_e; + } + + max_pair = GetMaximaPair(e); + if (!max_pair) return next_e; // eMaxPair is horizontal + + if (IsJoined(e)) Split(e, e.top); + if (IsJoined(*max_pair)) Split(*max_pair, max_pair->top); + + //only non-horizontal maxima here. + //process any edges between maxima pair ... + while (next_e != max_pair) + { + IntersectEdges(e, *next_e, e.top); + SwapPositionsInAEL(e, *next_e); + next_e = e.next_in_ael; + } + + if (IsOpen(e)) + { + if (IsHotEdge(e)) + AddLocalMaxPoly(e, *max_pair, e.top); + DeleteFromAEL(*max_pair); + DeleteFromAEL(e); + return (prev_e ? prev_e->next_in_ael : actives_); + } + + // e.next_in_ael== max_pair ... + if (IsHotEdge(e)) + AddLocalMaxPoly(e, *max_pair, e.top); + + DeleteFromAEL(e); + DeleteFromAEL(*max_pair); + return (prev_e ? prev_e->next_in_ael : actives_); + } + + void ClipperBase::Split(Active& e, const Point64& pt) + { + if (e.join_with == JoinWith::Right) + { + e.join_with = JoinWith::NoJoin; + e.next_in_ael->join_with = JoinWith::NoJoin; + AddLocalMinPoly(e, *e.next_in_ael, pt, true); + } + else + { + e.join_with = JoinWith::NoJoin; + e.prev_in_ael->join_with = JoinWith::NoJoin; + AddLocalMinPoly(*e.prev_in_ael, e, pt, true); + } + } + + void ClipperBase::CheckJoinLeft(Active& e, + const Point64& pt, bool check_curr_x) + { + Active* prev = e.prev_in_ael; + if (!prev || + !IsHotEdge(e) || !IsHotEdge(*prev) || + IsHorizontal(e) || IsHorizontal(*prev) || + IsOpen(e) || IsOpen(*prev) ) return; + if ((pt.y < e.top.y + 2 || pt.y < prev->top.y + 2) && + ((e.bot.y > pt.y) || (prev->bot.y > pt.y))) return; // avoid trivial joins + + if (check_curr_x) + { + if (PerpendicDistFromLineSqrd(pt, prev->bot, prev->top) > 0.25) return; + } + else if (e.curr_x != prev->curr_x) return; + if (!IsCollinear(e.top, pt, prev->top)) return; + + if (e.outrec->idx == prev->outrec->idx) + AddLocalMaxPoly(*prev, e, pt); + else if (e.outrec->idx < prev->outrec->idx) + JoinOutrecPaths(e, *prev); + else + JoinOutrecPaths(*prev, e); + prev->join_with = JoinWith::Right; + e.join_with = JoinWith::Left; + } + + void ClipperBase::CheckJoinRight(Active& e, + const Point64& pt, bool check_curr_x) + { + Active* next = e.next_in_ael; + if (!next || + !IsHotEdge(e) || !IsHotEdge(*next) || + IsHorizontal(e) || IsHorizontal(*next) || + IsOpen(e) || IsOpen(*next)) return; + if ((pt.y < e.top.y +2 || pt.y < next->top.y +2) && + ((e.bot.y > pt.y) || (next->bot.y > pt.y))) return; // avoid trivial joins + + if (check_curr_x) + { + if (PerpendicDistFromLineSqrd(pt, next->bot, next->top) > 0.35) return; + } + else if (e.curr_x != next->curr_x) return; + if (!IsCollinear(e.top, pt, next->top)) return; + + if (e.outrec->idx == next->outrec->idx) + AddLocalMaxPoly(e, *next, pt); + else if (e.outrec->idx < next->outrec->idx) + JoinOutrecPaths(e, *next); + else + JoinOutrecPaths(*next, e); + + e.join_with = JoinWith::Right; + next->join_with = JoinWith::Left; + } + + inline bool GetHorzExtendedHorzSeg(OutPt*& op, OutPt*& op2) + { + OutRec* outrec = GetRealOutRec(op->outrec); + op2 = op; + if (outrec->front_edge) + { + while (op->prev != outrec->pts && + op->prev->pt.y == op->pt.y) op = op->prev; + while (op2 != outrec->pts && + op2->next->pt.y == op2->pt.y) op2 = op2->next; + return op2 != op; + } + else + { + while (op->prev != op2 && op->prev->pt.y == op->pt.y) + op = op->prev; + while (op2->next != op && op2->next->pt.y == op2->pt.y) + op2 = op2->next; + return op2 != op && op2->next != op; + } + } + + bool BuildPath64(OutPt* op, bool reverse, bool isOpen, Path64& path) + { + if (!op || op->next == op || (!isOpen && op->next == op->prev)) + return false; + + path.resize(0); + Point64 lastPt; + OutPt* op2; + if (reverse) + { + lastPt = op->pt; + op2 = op->prev; + } + else + { + op = op->next; + lastPt = op->pt; + op2 = op->next; + } + path.push_back(lastPt); + + while (op2 != op) + { + if (op2->pt != lastPt) + { + lastPt = op2->pt; + path.push_back(lastPt); + } + if (reverse) + op2 = op2->prev; + else + op2 = op2->next; + } + + if (!isOpen && path.size() == 3 && IsVerySmallTriangle(*op2)) return false; + else return true; + } + + bool ClipperBase::CheckBounds(OutRec* outrec) + { + if (!outrec->pts) return false; + if (!outrec->bounds.IsEmpty()) return true; + CleanCollinear(outrec); + if (!outrec->pts || + !BuildPath64(outrec->pts, reverse_solution_, false, outrec->path)){ + return false;} + outrec->bounds = GetBounds(outrec->path); + return true; + } + + bool ClipperBase::CheckSplitOwner(OutRec* outrec, OutRecList* splits) + { + for (auto split : *splits) + { + split = GetRealOutRec(split); + if(!split || split == outrec || split->recursive_split == outrec) continue; + split->recursive_split = outrec; // prevent infinite loops + + if (split->splits && CheckSplitOwner(outrec, split->splits)) + return true; + else if (CheckBounds(split) && + IsValidOwner(outrec, split) && + split->bounds.Contains(outrec->bounds) && + Path1InsidePath2(outrec->pts, split->pts)) + { + outrec->owner = split; //found in split + return true; + } + } + return false; + } + + void ClipperBase::RecursiveCheckOwners(OutRec* outrec, PolyPath* polypath) + { + // pre-condition: outrec will have valid bounds + // post-condition: if a valid path, outrec will have a polypath + + if (outrec->polypath || outrec->bounds.IsEmpty()) return; + + while (outrec->owner) + { + if (outrec->owner->splits && CheckSplitOwner(outrec, outrec->owner->splits)) break; + if (outrec->owner->pts && CheckBounds(outrec->owner) && + outrec->owner->bounds.Contains(outrec->bounds) && + Path1InsidePath2(outrec->pts, outrec->owner->pts)) break; + outrec->owner = outrec->owner->owner; + } + + if (outrec->owner) + { + if (!outrec->owner->polypath) + RecursiveCheckOwners(outrec->owner, polypath); + outrec->polypath = outrec->owner->polypath->AddChild(outrec->path); + } + else + outrec->polypath = polypath->AddChild(outrec->path); + } + + void Clipper64::BuildPaths64(Paths64& solutionClosed, Paths64* solutionOpen) + { + solutionClosed.resize(0); + solutionClosed.reserve(outrec_list_.size()); + if (solutionOpen) + { + solutionOpen->resize(0); + solutionOpen->reserve(outrec_list_.size()); + } + + // nb: outrec_list_.size() may change in the following + // while loop because polygons may be split during + // calls to CleanCollinear which calls FixSelfIntersects + for (size_t i = 0; i < outrec_list_.size(); ++i) + { + OutRec* outrec = outrec_list_[i]; + if (outrec->pts == nullptr) continue; + + Path64 path; + if (solutionOpen && outrec->is_open) + { + if (BuildPath64(outrec->pts, reverse_solution_, true, path)) + solutionOpen->emplace_back(std::move(path)); + } + else + { + // nb: CleanCollinear can add to outrec_list_ + CleanCollinear(outrec); + //closed paths should always return a Positive orientation + if (BuildPath64(outrec->pts, reverse_solution_, false, path)) + solutionClosed.emplace_back(std::move(path)); + } + } + } + + void Clipper64::BuildTree64(PolyPath64& polytree, Paths64& open_paths) + { + polytree.Clear(); + open_paths.resize(0); + if (has_open_paths_) + open_paths.reserve(outrec_list_.size()); + + // outrec_list_.size() is not static here because + // CheckBounds below can indirectly add additional + // OutRec (via FixOutRecPts & CleanCollinear) + for (size_t i = 0; i < outrec_list_.size(); ++i) + { + OutRec* outrec = outrec_list_[i]; + if (!outrec || !outrec->pts) continue; + if (outrec->is_open) + { + Path64 path; + if (BuildPath64(outrec->pts, reverse_solution_, true, path)) + open_paths.push_back(path); + continue; + } + + if (CheckBounds(outrec)) + RecursiveCheckOwners(outrec, &polytree); + } + } + + bool BuildPathD(OutPt* op, bool reverse, bool isOpen, PathD& path, double inv_scale) + { + if (!op || op->next == op || (!isOpen && op->next == op->prev)) + return false; + + path.resize(0); + Point64 lastPt; + OutPt* op2; + if (reverse) + { + lastPt = op->pt; + op2 = op->prev; + } + else + { + op = op->next; + lastPt = op->pt; + op2 = op->next; + } +#ifdef USINGZ + path.push_back(PointD(lastPt.x * inv_scale, lastPt.y * inv_scale, lastPt.z)); +#else + path.push_back(PointD(lastPt.x * inv_scale, lastPt.y * inv_scale)); +#endif + + while (op2 != op) + { + if (op2->pt != lastPt) + { + lastPt = op2->pt; +#ifdef USINGZ + path.push_back(PointD(lastPt.x * inv_scale, lastPt.y * inv_scale, lastPt.z)); +#else + path.push_back(PointD(lastPt.x * inv_scale, lastPt.y * inv_scale)); +#endif + + } + if (reverse) + op2 = op2->prev; + else + op2 = op2->next; + } + if (path.size() == 3 && IsVerySmallTriangle(*op2)) return false; + return true; + } + + void ClipperD::BuildPathsD(PathsD& solutionClosed, PathsD* solutionOpen) + { + solutionClosed.resize(0); + solutionClosed.reserve(outrec_list_.size()); + if (solutionOpen) + { + solutionOpen->resize(0); + solutionOpen->reserve(outrec_list_.size()); + } + + // outrec_list_.size() is not static here because + // CleanCollinear below can indirectly add additional + // OutRec (via FixOutRecPts) + for (std::size_t i = 0; i < outrec_list_.size(); ++i) + { + OutRec* outrec = outrec_list_[i]; + if (outrec->pts == nullptr) continue; + + PathD path; + if (solutionOpen && outrec->is_open) + { + if (BuildPathD(outrec->pts, reverse_solution_, true, path, invScale_)) + solutionOpen->emplace_back(std::move(path)); + } + else + { + CleanCollinear(outrec); + //closed paths should always return a Positive orientation + if (BuildPathD(outrec->pts, reverse_solution_, false, path, invScale_)) + solutionClosed.emplace_back(std::move(path)); + } + } + } + + void ClipperD::BuildTreeD(PolyPathD& polytree, PathsD& open_paths) + { + polytree.Clear(); + open_paths.resize(0); + if (has_open_paths_) + open_paths.reserve(outrec_list_.size()); + + // outrec_list_.size() is not static here because + // BuildPathD below can indirectly add additional OutRec //#607 + for (size_t i = 0; i < outrec_list_.size(); ++i) + { + OutRec* outrec = outrec_list_[i]; + if (!outrec || !outrec->pts) continue; + if (outrec->is_open) + { + PathD path; + if (BuildPathD(outrec->pts, reverse_solution_, true, path, invScale_)) + open_paths.push_back(path); + continue; + } + + if (CheckBounds(outrec)) + RecursiveCheckOwners(outrec, &polytree); + } + } + +} // namespace clipper2lib diff --git a/decode.cpp b/decode.cpp index dedb4053f..534e6219d 100644 --- a/decode.cpp +++ b/decode.cpp @@ -28,6 +28,7 @@ int minzoom = 0; int maxzoom = 32; bool force = false; +std::set include_attr; bool progress_time() { return false; @@ -217,7 +218,7 @@ void handle(std::string message, int z, unsigned x, unsigned y, std::set co if (fd >= 0) { struct stat st; if (fstat(fd, &st) == 0) { - if (st.st_size < 50 * 1024 * 1024) { - char *map = (char *) mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); - if (map != NULL && map != MAP_FAILED) { - if (strcmp(map, "SQLite format 3") != 0 && strncmp(map, "PMTiles", 7) != 0) { - if (z >= 0) { + char *map = (char *) mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); + if (map != NULL && map != MAP_FAILED) { + if (strcmp(map, "SQLite format 3") != 0 && strncmp(map, "PMTiles", 7) != 0) { + if (z >= 0) { + if (st.st_size > 250 * 1024 * 1024) { + fprintf(stderr, "%s: unrealistically large single-tile size %zu\n", fname, (size_t) st.st_size); + exit(EXIT_MEMORY); + } else { std::string s = std::string(map, st.st_size); handle(s, z, x, y, to_decode, pipeline, stats, state, coordinate_mode); munmap(map, st.st_size); return; - } else { - fprintf(stderr, "Must specify zoom/x/y to decode a single pbf file\n"); - exit(EXIT_ARGS); } + } else { + fprintf(stderr, "Must specify zoom/x/y to decode a single pbf file\n"); + exit(EXIT_ARGS); } } - munmap(map, st.st_size); } + munmap(map, st.st_size); } else { perror("fstat"); } @@ -571,6 +575,7 @@ int main(int argc, char **argv) { {"stats", no_argument, 0, 'S'}, {"force", no_argument, 0, 'f'}, {"exclude-metadata-row", required_argument, 0, 'x'}, + {"include", required_argument, 0, 'y'}, {0, 0, 0, 0}, }; @@ -630,6 +635,10 @@ int main(int argc, char **argv) { exclude_meta.insert(optarg); break; + case 'y': + include_attr.insert(optarg); + break; + default: usage(argv); } diff --git a/drop.cpp b/drop.cpp new file mode 100644 index 000000000..fc6c6beca --- /dev/null +++ b/drop.cpp @@ -0,0 +1,87 @@ +#include +#include "drop.hpp" +#include "options.hpp" +#include "geometry.hpp" + +unsigned long long preserve_point_density_threshold = 0; + +int calc_feature_minzoom(struct index *ix, struct drop_state ds[], int maxzoom, double gamma) { + int feature_minzoom = 0; + + if (gamma >= 0 && (ix->t == VT_POINT || + (additional[A_LINE_DROP] && ix->t == VT_LINE) || + (additional[A_POLYGON_DROP] && ix->t == VT_POLYGON))) { + for (ssize_t i = 0; i <= maxzoom; i++) { + // This zoom level is now lighter on features + ds[i].error -= 1.0; + } + + ssize_t chosen = maxzoom + 1; + for (ssize_t i = 0; i <= maxzoom; i++) { + if (ds[i].error < 0) { + // this zoom level is too light, so it is time to emit a feature. + feature_minzoom = i; + + // this feature now appears in this zoom level and all higher zoom levels, + // so each of them has this feature as its last feature, and each of them + // is now one feature (which has a weight of `interval`) heavier than before. + for (ssize_t j = i; j <= maxzoom; j++) { + ds[j].previndex = ix->ix; + ds[j].error += ds[j].interval; + } + + chosen = i; + break; + } + } + + // If this feature has been chosen only for a high zoom level, + // check whether at a low zoom level it is nevertheless too far + // from the last feature chosen for that low zoom, in which case + // we will go ahead and push it out. + + if (preserve_point_density_threshold > 0) { + for (ssize_t i = 0; i < chosen && i < maxzoom; i++) { + if (ix->ix - ds[i].previndex > ((1LL << (32 - i)) / preserve_point_density_threshold) * ((1LL << (32 - i)) / preserve_point_density_threshold)) { + feature_minzoom = i; + + // this feature now appears in this zoom level and all higher zoom levels + // (below `chosen`, beyond which were already credited with this feature) + // so each of them has this feature as its last feature, and each of them + // is now one feature (which has a weight of `interval`) heavier than before. + for (ssize_t j = i; j < chosen; j++) { + ds[j].previndex = ix->ix; + ds[j].error += ds[j].interval; + } + + break; + } + } + } + } + + return feature_minzoom; +} + +void prep_drop_states(struct drop_state ds[], int maxzoom, int basezoom, double droprate) { + // Needs to be signed for interval calculation + for (ssize_t i = 0; i <= maxzoom; i++) { + ds[i].previndex = 0; + ds[i].interval = 1; // every feature appears in every zoom level at or above the basezoom + + if (i < basezoom) { + // at zoom levels below the basezoom, the fraction of points that are dropped is + // the drop rate to the power of the number of zooms this zoom is below the basezoom + // + // for example: + // basezoom: 1 (droprate ^ 0) + // basezoom - 1: 2.5 (droprate ^ 1) + // basezoom - 2: 6.25 (droprate ^ 2) + // ... + // basezoom - n: (droprate ^ n) + ds[i].interval = std::pow(droprate, basezoom - i); + } + + ds[i].error = 0; + } +} diff --git a/drop.hpp b/drop.hpp new file mode 100644 index 000000000..0a1f5bb58 --- /dev/null +++ b/drop.hpp @@ -0,0 +1,65 @@ +#ifndef DROP_HPP +#define DROP_HPP + +// As features are read during the input phase, each one is represented by +// an index entry giving its geometry type, its spatial index, and the location +// in the geometry file of the rest of its data. +// +// Note that the fields are in a specific order so that `segment` and `t` will +// packed together with `seq` so that the total structure size will be only 32 bytes +// instead of 40. (Could we save a few more, perhaps, by tracking `len` instead of +// `end` and limiting the size of individual features to 2^32 bytes?) + +struct index { + // first and last+1 byte of the feature in the geometry temp file + long long start = 0; + long long end = 0; + + // z-index or hilbert index of the feature + unsigned long long ix = 0; + + // which thread's geometry temp file this feature is in + short segment = 0; + + // geometry type + unsigned short t : 2; + + // sequence number (sometimes with gaps in numbering) of the feature in the original input file + unsigned long long seq : (64 - 16 - 2); // pack with segment and t to stay in 32 bytes + + index() + : t(0), + seq(0) { + } +}; + +// Each zoom level has a drop_state that is used to account for the fraction of +// point features that are supposed to be dropped in that zoom level. As it goes +// through the spatially-sorted features, it is basically doing a diffusion dither +// to keep the density of features in each vicinity at each zoom level +// approximately correct by including or excluding individual features +// to maintain the balance. + +struct drop_state { + // the z-index or hilbert index of the last feature that was placed in this zoom level + unsigned long long previndex; + + // the preservation rate (1 or more) for features in this zoom level. + // 1 would be to keep all the features; 2 would drop every other feature; + // 4 every fourth feature, and so on. + double interval; + + // the current accumulated error in this zoom level: + // positive if too many features have been dropped; + // negative if not enough features have been dropped. + // + // this is floating-point because the interval is. + double error; +}; + +extern unsigned long long preserve_point_density_threshold; + +int calc_feature_minzoom(struct index *ix, struct drop_state ds[], int maxzoom, double gamma); +void prep_drop_states(struct drop_state ds[], int maxzoom, int basezoom, double droprate); + +#endif diff --git a/evaluator.cpp b/evaluator.cpp index 1f528226c..18cb5fcf2 100644 --- a/evaluator.cpp +++ b/evaluator.cpp @@ -262,7 +262,7 @@ static int eval(std::function feature, json_obje } else if (f->type == JSON_FALSE) { return 0; } else if (f->type == JSON_NULL) { - return -1; + return 1; } if (f->type == JSON_NUMBER) { diff --git a/flatgeobuf.cpp b/flatgeobuf.cpp index a011c3e0e..571bb8fb9 100644 --- a/flatgeobuf.cpp +++ b/flatgeobuf.cpp @@ -76,13 +76,13 @@ drawvec readGeometry(const FlatGeobuf::Geometry *geometry, FlatGeobuf::GeometryT if (geometry_type == FlatGeobuf::GeometryType_Point) { return readPoints(geometry); - } if (geometry_type == FlatGeobuf::GeometryType_MultiPoint) { + } else if (geometry_type == FlatGeobuf::GeometryType_MultiPoint) { return readPoints(geometry); - } if (geometry_type == FlatGeobuf::GeometryType_LineString) { + } else if (geometry_type == FlatGeobuf::GeometryType_LineString) { return readLinePart(geometry); - } else if (h_geometry_type == FlatGeobuf::GeometryType_MultiLineString) { + } else if (geometry_type == FlatGeobuf::GeometryType_MultiLineString) { return readLinePart(geometry); - } if (geometry_type == FlatGeobuf::GeometryType_Polygon) { + } else if (geometry_type == FlatGeobuf::GeometryType_Polygon) { return readLinePart(geometry); } else if (geometry_type == FlatGeobuf::GeometryType_MultiPolygon) { // if it is a GeometryCollection, parse Parts, ignore XY @@ -146,8 +146,9 @@ void readFeature(const FlatGeobuf::Feature *feature, long long feature_sequence_ sf.geometry = dv; sf.t = drawvec_type; - std::vector full_keys; + std::vector> full_keys; std::vector full_values; + key_pool key_pool; // assume tabular schema with columns in header size_t p_pos = 0; @@ -177,7 +178,11 @@ void readFeature(const FlatGeobuf::Feature *feature, long long feature_sequence_ sv.type = mvt_bool; uint8_t bool_val; memcpy(&bool_val, feature->properties()->data() + p_pos + sizeof(uint16_t), sizeof(bool_val)); - sv.s = std::to_string(bool_val); + if (bool_val) { + sv.s = "true"; + } else { + sv.s = "false"; + } p_pos += sizeof(uint16_t) + sizeof(bool_val); } else if (col_type == FlatGeobuf::ColumnType_Short) { sv.type = mvt_sint; @@ -239,7 +244,7 @@ void readFeature(const FlatGeobuf::Feature *feature, long long feature_sequence_ fprintf(stderr, "flatgeobuf has unsupported column type %u\n", (unsigned int)col_type); exit(EXIT_IMPOSSIBLE); } - full_keys.push_back(h_column_names[col_idx]); + full_keys.push_back(key_pool.pool(h_column_names[col_idx])); full_values.push_back(sv); } diff --git a/geobuf.cpp b/geobuf.cpp index b754eac23..02d8ded33 100644 --- a/geobuf.cpp +++ b/geobuf.cpp @@ -270,14 +270,14 @@ std::vector readGeometry(protozero::pbf_reader &pbf, size_t dim, d return ret; } -void readFeature(protozero::pbf_reader &pbf, size_t dim, double e, std::vector &keys, struct serialization_state *sst, int layer, std::string layername) { +void readFeature(protozero::pbf_reader &pbf, size_t dim, double e, std::vector &keys, struct serialization_state *sst, int layer, std::string layername, key_pool &key_pool) { std::vector dv; long long id = 0; bool has_id = false; std::vector values; std::map other; - std::vector full_keys; + std::vector> full_keys; std::vector full_values; while (pbf.next()) { @@ -338,7 +338,7 @@ void readFeature(protozero::pbf_reader &pbf, size_t dim, double e, std::vectorstart; i < qra->end; i++) { struct queued_feature &qf = feature_queue[i]; - readFeature(qf.pbf, qf.dim, qf.e, *qf.keys, &(*qf.sst)[qra->segment], qf.layer, qf.layername); + readFeature(qf.pbf, qf.dim, qf.e, *qf.keys, &(*qf.sst)[qra->segment], qf.layer, qf.layername, key_pool); } return NULL; diff --git a/geocsv.cpp b/geocsv.cpp index 69f7d5079..2c1749991 100644 --- a/geocsv.cpp +++ b/geocsv.cpp @@ -58,6 +58,7 @@ void parse_geocsv(std::vector &sst, std::string fnam } size_t seq = 0; + key_pool key_pool; while ((s = csv_getline(f)).size() > 0) { std::string err = check_utf8(s); if (err != "") { @@ -89,7 +90,7 @@ void parse_geocsv(std::vector &sst, std::string fnam drawvec dv; dv.push_back(draw(VT_MOVETO, x, y)); - std::vector full_keys; + std::vector> full_keys; std::vector full_values; for (size_t i = 0; i < line.size(); i++) { @@ -107,7 +108,7 @@ void parse_geocsv(std::vector &sst, std::string fnam } sv.s = line[i]; - full_keys.push_back(header[i]); + full_keys.push_back(key_pool.pool(header[i])); full_values.push_back(sv); } } diff --git a/geojson.cpp b/geojson.cpp index f724e0bd5..3798d14be 100644 --- a/geojson.cpp +++ b/geojson.cpp @@ -182,23 +182,24 @@ int serialize_geojson_feature(struct serialization_state *sst, json_object *geom nprop = properties->value.object.length; } - std::vector keys; + std::vector> full_keys; std::vector values; - keys.reserve(nprop); + full_keys.reserve(nprop); values.reserve(nprop); + key_pool key_pool; for (size_t i = 0; i < nprop; i++) { if (properties->value.object.keys[i]->type == JSON_STRING) { serial_val sv = stringify_value(properties->value.object.values[i], sst->fname, sst->line, feature); - keys.emplace_back(properties->value.object.keys[i]->value.string.string); + full_keys.emplace_back(key_pool.pool(properties->value.object.keys[i]->value.string.string)); values.push_back(std::move(sv)); } } drawvec dv; - parse_geometry(t, coordinates, dv, VT_MOVETO, sst->fname, sst->line, feature); + parse_coordinates(t, coordinates, dv, VT_MOVETO, sst->fname, sst->line, feature); serial_feature sf; sf.layer = layer; @@ -211,7 +212,7 @@ int serialize_geojson_feature(struct serialization_state *sst, json_object *geom sf.geometry = dv; sf.feature_minzoom = 0; // Will be filled in during index merging sf.seq = *(sst->layer_seq); - sf.full_keys = std::move(keys); + sf.full_keys = std::move(full_keys); sf.full_values = std::move(values); return serialize_feature(sst, sf, tippecanoe_layername); diff --git a/geometry.cpp b/geometry.cpp index ac063c5ca..58d4f163d 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -1,7 +1,6 @@ #include #include #include -#include #include #include #include @@ -19,7 +18,6 @@ #include "main.hpp" #include "options.hpp" #include "errors.hpp" -#include "projection.hpp" drawvec decode_geometry(const char **meta, int z, unsigned tx, unsigned ty, long long *bbox, unsigned initial_x, unsigned initial_y) { drawvec out; @@ -71,28 +69,6 @@ drawvec decode_geometry(const char **meta, int z, unsigned tx, unsigned ty, long return out; } -/* pnpoly: -Copyright (c) 1970-2003, Wm. Randolph Franklin - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. -Redistributions in binary form must reproduce the above copyright notice in the documentation and/or other materials provided with the distribution. -The name of W. Randolph Franklin may not be used to endorse or promote products derived from this Software without specific prior written permission. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -*/ - -int pnpoly(const drawvec &vert, size_t start, size_t nvert, long long testx, long long testy) { - size_t i, j; - bool c = false; - for (i = 0, j = nvert - 1; i < nvert; j = i++) { - if (((vert[i + start].y > testy) != (vert[j + start].y > testy)) && - (testx < (vert[j + start].x - vert[i + start].x) * (testy - vert[i + start].y) / (double) (vert[j + start].y - vert[i + start].y) + vert[i + start].x)) - c = !c; - } - return c; -} - void check_polygon(drawvec &geom) { geom = remove_noop(geom, VT_POLYGON, 0); @@ -159,7 +135,7 @@ void check_polygon(drawvec &geom) { } if (!on_edge) { - fprintf(stderr, "%lld,%lld at %lld not in outer ring (%lld to %lld)\n", geom[k].x, geom[k].y, (long long) k, (long long) outer_start, (long long) (outer_start + outer_len)); + fprintf(stderr, "%lld,%lld at %lld not in outer ring (%lld to %lld)\n", (long long) geom[k].x, (long long) geom[k].y, (long long) k, (long long) outer_start, (long long) (outer_start + outer_len)); } } } @@ -168,100 +144,6 @@ void check_polygon(drawvec &geom) { } } -drawvec reduce_tiny_poly(drawvec const &geom, int z, int detail, bool *still_needs_simplification, bool *reduced_away, double *accum_area) { - drawvec out; - const double pixel = (1LL << (32 - detail - z)) * (double) tiny_polygon_size; - - bool included_last_outer = false; - *still_needs_simplification = false; - *reduced_away = false; - - for (size_t i = 0; i < geom.size(); i++) { - if (geom[i].op == VT_MOVETO) { - size_t j; - for (j = i + 1; j < geom.size(); j++) { - if (geom[j].op != VT_LINETO) { - break; - } - } - - double area = get_area(geom, i, j); - - // XXX There is an ambiguity here: If the area of a ring is 0 and it is followed by holes, - // we don't know whether the area-0 ring was a hole too or whether it was the outer ring - // that these subsequent holes are somehow being subtracted from. I hope that if a polygon - // was simplified down to nothing, its holes also became nothing. - - if (area != 0) { - // These are pixel coordinates, so area > 0 for the outer ring. - // If the outer ring of a polygon was reduced to a pixel, its - // inner rings must just have their area de-accumulated rather - // than being drawn since we don't really know where they are. - - // i.e., this outer ring is small enough that we are including it - // in a tiny polygon rather than letting it represent itself, - // OR it is an inner ring and we haven't output an outer ring for it to be - // cut out of, so we are just subtracting its area from the tiny polygon - // rather than trying to deal with it geometrically - if ((area > 0 && area <= pixel * pixel) || (area < 0 && !included_last_outer)) { - *accum_area += area; - *reduced_away = true; - - if (area > 0 && *accum_area > pixel * pixel) { - // XXX use centroid; - - out.emplace_back(VT_MOVETO, geom[i].x - pixel / 2, geom[i].y - pixel / 2); - out.emplace_back(VT_LINETO, geom[i].x - pixel / 2 + pixel, geom[i].y - pixel / 2); - out.emplace_back(VT_LINETO, geom[i].x - pixel / 2 + pixel, geom[i].y - pixel / 2 + pixel); - out.emplace_back(VT_LINETO, geom[i].x - pixel / 2, geom[i].y - pixel / 2 + pixel); - out.emplace_back(VT_LINETO, geom[i].x - pixel / 2, geom[i].y - pixel / 2); - - *accum_area -= pixel * pixel; - } - - if (area > 0) { - included_last_outer = false; - } - } - // i.e., this ring is large enough that it gets to represent itself - // or it is a tiny hole out of a real polygon, which we are still treating - // as a real geometry because otherwise we can accumulate enough tiny holes - // that we will drop the next several outer rings getting back up to 0. - else { - for (size_t k = i; k < j && k < geom.size(); k++) { - out.push_back(geom[k]); - } - - // which means that the overall polygon has a real geometry, - // which means that it gets to be simplified. - *still_needs_simplification = true; - - if (area > 0) { - included_last_outer = true; - } - } - } else { - // area is 0: doesn't count as either having been reduced away, - // since it was probably just degenerate from having been clipped, - // or as needing simplification, since it produces no output. - } - - i = j - 1; - } else { - fprintf(stderr, "how did we get here with %d in %d?\n", geom[i].op, (int) geom.size()); - - for (size_t n = 0; n < geom.size(); n++) { - fprintf(stderr, "%d/%lld/%lld ", geom[n].op, geom[n].x, geom[n].y); - } - fprintf(stderr, "\n"); - - out.push_back(geom[i]); - } - } - - return out; -} - int quick_check(const long long *bbox, int z, long long buffer) { long long min = 0; long long area = 1LL << (32 - z); @@ -300,130 +182,6 @@ bool point_within_tile(long long x, long long y, int z) { return x >= 0 && y >= 0 && x < area && y < area; } -double distance_from_line(long long point_x, long long point_y, long long segA_x, long long segA_y, long long segB_x, long long segB_y) { - long long p2x = segB_x - segA_x; - long long p2y = segB_y - segA_y; - - // These calculations must be made in integers instead of floating point - // to make them consistent between x86 and arm floating point implementations. - // - // Coordinates may be up to 34 bits, so their product is up to 68 bits, - // making their sum up to 69 bits. Downshift before multiplying to keep them in range. - double something = ((p2x / 4) * (p2x / 8) + (p2y / 4) * (p2y / 8)) * 32.0; - // likewise - double u = (0 == something) ? 0 : ((point_x - segA_x) / 4 * (p2x / 8) + (point_y - segA_y) / 4 * (p2y / 8)) * 32.0 / (something); - - if (u >= 1) { - u = 1; - } else if (u <= 0) { - u = 0; - } - - double x = segA_x + u * p2x; - double y = segA_y + u * p2y; - - double dx = x - point_x; - double dy = y - point_y; - - double out = std::round(sqrt(dx * dx + dy * dy) * 16.0) / 16.0; - return out; -} - -// https://github.com/Project-OSRM/osrm-backend/blob/733d1384a40f/Algorithms/DouglasePeucker.cpp -static void douglas_peucker(drawvec &geom, int start, int n, double e, size_t kept, size_t retain) { - std::stack recursion_stack; - - if (!geom[start + 0].necessary || !geom[start + n - 1].necessary) { - fprintf(stderr, "endpoints not marked necessary\n"); - exit(EXIT_IMPOSSIBLE); - } - - int prev = 0; - for (int here = 1; here < n; here++) { - if (geom[start + here].necessary) { - recursion_stack.push(prev); - recursion_stack.push(here); - prev = here; - - if (prevent[P_SIMPLIFY_SHARED_NODES]) { - if (retain > 0) { - retain--; - } - } - } - } - // These segments are put on the stack from start to end, - // independent of winding, so note that anything that uses - // "retain" to force it to keep at least N points will - // keep a different set of points when wound one way than - // when wound the other way. - - while (!recursion_stack.empty()) { - // pop next element - int second = recursion_stack.top(); - recursion_stack.pop(); - int first = recursion_stack.top(); - recursion_stack.pop(); - - double max_distance = -1; - int farthest_element_index; - - // find index idx of element with max_distance - int i; - if (geom[start + first] < geom[start + second]) { - farthest_element_index = first; - for (i = first + 1; i < second; i++) { - double temp_dist = distance_from_line(geom[start + i].x, geom[start + i].y, geom[start + first].x, geom[start + first].y, geom[start + second].x, geom[start + second].y); - - double distance = std::fabs(temp_dist); - - if ((distance > e || kept < retain) && (distance > max_distance || (distance == max_distance && geom[start + i] < geom[start + farthest_element_index]))) { - farthest_element_index = i; - max_distance = distance; - } - } - } else { - farthest_element_index = second; - for (i = second - 1; i > first; i--) { - double temp_dist = distance_from_line(geom[start + i].x, geom[start + i].y, geom[start + second].x, geom[start + second].y, geom[start + first].x, geom[start + first].y); - - double distance = std::fabs(temp_dist); - - if ((distance > e || kept < retain) && (distance > max_distance || (distance == max_distance && geom[start + i] < geom[start + farthest_element_index]))) { - farthest_element_index = i; - max_distance = distance; - } - } - } - - if (max_distance >= 0) { - // mark idx as necessary - geom[start + farthest_element_index].necessary = 1; - kept++; - - if (geom[start + first] < geom[start + second]) { - if (1 < farthest_element_index - first) { - recursion_stack.push(first); - recursion_stack.push(farthest_element_index); - } - if (1 < second - farthest_element_index) { - recursion_stack.push(farthest_element_index); - recursion_stack.push(second); - } - } else { - if (1 < second - farthest_element_index) { - recursion_stack.push(farthest_element_index); - recursion_stack.push(second); - } - if (1 < farthest_element_index - first) { - recursion_stack.push(first); - recursion_stack.push(farthest_element_index); - } - } - } - } -} - // If any line segment crosses a tile boundary, add a node there // that cannot be simplified away, to prevent the edge of any // feature from jumping abruptly at the tile boundary. @@ -458,7 +216,7 @@ drawvec impose_tile_boundaries(const drawvec &geom, long long extent) { return out; } -drawvec simplify_lines(drawvec &geom, int z, int tx, int ty, int detail, bool mark_tile_bounds, double simplification, size_t retain, drawvec const &shared_nodes, struct node *shared_nodes_map, size_t nodepos) { +drawvec simplify_lines(drawvec &geom, int z, int tx, int ty, int detail, bool mark_tile_bounds, double simplification, size_t retain, drawvec const &shared_nodes, struct node *shared_nodes_map, size_t nodepos, std::string const &shared_nodes_bloom) { int res = 1 << (32 - detail - z); long long area = 1LL << (32 - z); @@ -495,12 +253,16 @@ drawvec simplify_lines(drawvec &geom, int z, int tx, int ty, int detail, bool ma d.y += ty * (1LL << (32 - z)); } - // to quadkey struct node n; - n.index = encode_quadkey((unsigned) d.x, (unsigned) d.y); - - if (bsearch(&n, shared_nodes_map, nodepos / sizeof(node), sizeof(node), nodecmp) != NULL) { - geom[i].necessary = true; + n.index = encode_vertex((unsigned) d.x, (unsigned) d.y); + size_t bloom_ix = n.index % (shared_nodes_bloom.size() * 8); + unsigned char bloom_mask = 1 << (bloom_ix & 7); + bloom_ix >>= 3; + + if (shared_nodes_bloom[bloom_ix] & bloom_mask) { + if (bsearch(&n, shared_nodes_map, nodepos / sizeof(node), sizeof(node), nodecmp) != NULL) { + geom[i].necessary = true; + } } } } @@ -533,7 +295,7 @@ drawvec simplify_lines(drawvec &geom, int z, int tx, int ty, int detail, bool ma if (additional[A_VISVALINGAM]) { visvalingam(geom, i, j, scale, retain); } else { - douglas_peucker(geom, i, j - i, res * simplification, 2, retain); + douglas_peucker(geom, i, j - i, res * simplification, 2, retain, prevent[P_SIMPLIFY_SHARED_NODES]); } } i = j - 1; @@ -596,154 +358,6 @@ drawvec reorder_lines(const drawvec &geom) { return geom; } -drawvec fix_polygon(const drawvec &geom) { - int outer = 1; - drawvec out; - - for (size_t i = 0; i < geom.size(); i++) { - if (geom[i].op == VT_CLOSEPATH) { - outer = 1; - } else if (geom[i].op == VT_MOVETO) { - // Find the end of the ring - - size_t j; - for (j = i + 1; j < geom.size(); j++) { - if (geom[j].op != VT_LINETO) { - break; - } - } - - // A polygon ring must contain at least three points - // (and really should contain four). If this one does - // not have any, avoid a division by zero trying to - // calculate the centroid below. - if (j - i < 1) { - i = j - 1; - outer = 0; - continue; - } - - // Make a temporary copy of the ring. - // Close it if it isn't closed. - - drawvec ring; - for (size_t a = i; a < j; a++) { - ring.push_back(geom[a]); - } - if (j - i != 0 && (ring[0].x != ring[j - i - 1].x || ring[0].y != ring[j - i - 1].y)) { - ring.push_back(ring[0]); - } - - // A polygon ring at this point should contain at least four points. - // Flesh it out with some vertex copies if it doesn't. - - while (ring.size() < 4) { - ring.push_back(ring[0]); - } - - // Reverse ring if winding order doesn't match - // inner/outer expectation - - bool reverse_ring = false; - if (prevent[P_USE_SOURCE_POLYGON_WINDING]) { - // GeoJSON winding is reversed from vector winding - reverse_ring = true; - } else if (prevent[P_REVERSE_SOURCE_POLYGON_WINDING]) { - // GeoJSON winding is reversed from vector winding - reverse_ring = false; - } else { - double area = get_area(ring, 0, ring.size()); - if ((area > 0) != outer) { - reverse_ring = true; - } - } - - if (reverse_ring) { - drawvec tmp; - for (int a = ring.size() - 1; a >= 0; a--) { - tmp.push_back(ring[a]); - } - ring = tmp; - } - - // Now we are rotating the ring to make the first/last point - // one that would be unlikely to be simplified away. - - // calculate centroid - // a + 1 < size() because point 0 is duplicated at the end - long long xtotal = 0; - long long ytotal = 0; - long long count = 0; - for (size_t a = 0; a + 1 < ring.size(); a++) { - xtotal += ring[a].x; - ytotal += ring[a].y; - count++; - } - xtotal /= count; - ytotal /= count; - - // figure out which point is furthest from the centroid - long long dist2 = 0; - long long furthest = 0; - for (size_t a = 0; a + 1 < ring.size(); a++) { - // division by 16 because these are z0 coordinates and we need to avoid overflow - long long xd = (ring[a].x - xtotal) / 16; - long long yd = (ring[a].y - ytotal) / 16; - long long d2 = xd * xd + yd * yd; - if (d2 > dist2 || (d2 == dist2 && ring[a] < ring[furthest])) { - dist2 = d2; - furthest = a; - } - } - - // then figure out which point is furthest from *that*, - // which will hopefully be a good origin point since it should be - // at a far edge of the shape. - long long dist2b = 0; - long long furthestb = 0; - for (size_t a = 0; a + 1 < ring.size(); a++) { - // division by 16 because these are z0 coordinates and we need to avoid overflow - long long xd = (ring[a].x - ring[furthest].x) / 16; - long long yd = (ring[a].y - ring[furthest].y) / 16; - long long d2 = xd * xd + yd * yd; - if (d2 > dist2b || (d2 == dist2b && ring[a] < ring[furthestb])) { - dist2b = d2; - furthestb = a; - } - } - - // rotate ring so the furthest point is the duplicated one. - // the idea is that simplification will then be more efficient, - // never wasting the start and end points, which are always retained, - // on a point that has little impact on the shape. - - // Copy ring into output, fixing the moveto/lineto ops if necessary because of - // reversal or closing - - for (size_t a = 0; a < ring.size(); a++) { - size_t a2 = (a + furthestb) % (ring.size() - 1); - - if (a == 0) { - out.push_back(draw(VT_MOVETO, ring[a2].x, ring[a2].y)); - } else { - out.push_back(draw(VT_LINETO, ring[a2].x, ring[a2].y)); - } - } - - // Next ring or polygon begins on the non-lineto that ended this one - // and is not an outer ring unless there is a terminator first - - i = j - 1; - outer = 0; - } else { - fprintf(stderr, "Internal error: polygon ring begins with %d, not moveto\n", geom[i].op); - exit(EXIT_IMPOSSIBLE); - } - } - - return out; -} - #if 0 std::vector chop_polygon(std::vector &geoms) { while (1) { @@ -984,6 +598,41 @@ draw centerOfMass(const drawvec &dv, size_t start, size_t end, draw centre) { } } +draw center_of_mass_mp(const drawvec &dv) { + double ringx = 0, ringy = 0; + size_t ringcount = 0; + + for (size_t i = 0; i < dv.size(); i++) { + if (dv[i].op == VT_MOVETO) { + double xsum = dv[i].x, ysum = dv[i].y; + ssize_t count = 1; + size_t j; + for (j = i + 1; j < dv.size(); j++) { + if (dv[j].op != VT_LINETO) { + break; + } else { + xsum += dv[j].x; + ysum += dv[j].y; + count++; + } + } + + double area = get_area(dv, i, j); + draw centroid(VT_MOVETO, std::llround(xsum / count), std::llround(ysum / count)); + + draw center = centerOfMass(dv, i, j, centroid); + ringx += center.x * area; + ringy += center.y * area; + ringcount += area; + + i = j - 1; + } + } + + draw center(VT_MOVETO, ringx / ringcount, ringy / ringcount); + return center; +} + double label_goodness(const drawvec &dv, long long x, long long y) { int nesting = 0; diff --git a/geometry.hpp b/geometry.hpp index f847afd15..db96a2cd9 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -74,15 +74,16 @@ drawvec remove_noop(drawvec geom, int type, int shift); drawvec clip_point(drawvec &geom, int z, long long buffer); drawvec clean_or_clip_poly(drawvec &geom, int z, int buffer, bool clip, bool try_scaling); drawvec close_poly(drawvec &geom); -drawvec reduce_tiny_poly(const drawvec &geom, int z, int detail, bool *still_needs_simplification, bool *reduced_away, double *accum_area); +drawvec reduce_tiny_poly(const drawvec &geom, int z, int detail, bool *still_needs_simplification, bool *reduced_away, double *accum_area, double tiny_polygon_size); int clip(long long *x0, long long *y0, long long *x1, long long *y1, long long xmin, long long ymin, long long xmax, long long ymax); drawvec clip_lines(drawvec &geom, int z, long long buffer); drawvec stairstep(drawvec &geom, int z, int detail); bool point_within_tile(long long x, long long y, int z); int quick_check(const long long *bbox, int z, long long buffer); -drawvec simplify_lines(drawvec &geom, int z, int tx, int ty, int detail, bool mark_tile_bounds, double simplification, size_t retain, drawvec const &shared_nodes, struct node *shared_nodes_map, size_t nodepos); +void douglas_peucker(drawvec &geom, int start, int n, double e, size_t kept, size_t retain, bool prevent_simplify_shared_nodes); +drawvec simplify_lines(drawvec &geom, int z, int tx, int ty, int detail, bool mark_tile_bounds, double simplification, size_t retain, drawvec const &shared_nodes, struct node *shared_nodes_map, size_t nodepos, std::string const &shared_nodes_bloom); drawvec reorder_lines(const drawvec &geom); -drawvec fix_polygon(const drawvec &geom); +drawvec fix_polygon(const drawvec &geom, bool use_winding, bool reverse_winding); std::vector chop_polygon(std::vector &geoms); void check_polygon(drawvec &geom); double get_area(const drawvec &geom, size_t i, size_t j); @@ -98,20 +99,76 @@ drawvec clip_lines(drawvec &geom, long long x1, long long y1, long long x2, long drawvec clip_point(drawvec &geom, long long x1, long long y1, long long x2, long long y2); void visvalingam(drawvec &ls, size_t start, size_t end, double threshold, size_t retain); int pnpoly(const drawvec &vert, size_t start, size_t nvert, long long testx, long long testy); +bool pnpoly_mp(drawvec const &geom, long long x, long long y); double distance_from_line(long long point_x, long long point_y, long long segA_x, long long segA_y, long long segB_x, long long segB_y); -std::string overzoom(const mvt_tile &tile, int oz, int ox, int oy, int nz, int nx, int ny, - int detail, int buffer, std::set const &keep, bool do_compress, +drawvec clip_poly_poly(drawvec const &geom, drawvec const &bounds); +drawvec clip_lines_poly(drawvec const &geom, drawvec const &bounds); +drawvec clip_point_poly(drawvec const &geom, drawvec const &bounds); + +struct input_tile { + std::string tile; + int z; + int x; + int y; +}; + +struct source_tile { + mvt_tile tile; + int z; + int x; + int y; +}; + +struct clipbbox { + double lon1; + double lat1; + double lon2; + double lat2; + + long long minx; + long long miny; + long long maxx; + long long maxy; + + drawvec dv; // empty, or arbitrary clipping polygon +}; + +std::string overzoom(std::vector const &tiles, int nz, int nx, int ny, + int detail, int buffer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + bool do_compress, std::vector> *next_overzoomed_tiles, bool demultiply, json_object *filter, bool preserve_input_order, std::unordered_map const &attribute_accum, - std::vector const &unidecode_data); - -std::string overzoom(const std::string &s, int oz, int ox, int oy, int nz, int nx, int ny, - int detail, int buffer, std::set const &keep, bool do_compress, + std::vector const &unidecode_data, double simplification, + double tiny_polygon_size, + std::vector const &bins, std::string const &bin_by_id_list, + std::string const &accumulate_numeric, size_t feature_limit, + std::vector const &clipbboxes); + +std::string overzoom(std::vector const &tiles, int nz, int nx, int ny, + int detail, int buffer, + std::set const &keep, + std::set const &exclude, + std::vector const &exclude_prefix, + bool do_compress, std::vector> *next_overzoomed_tiles, bool demultiply, json_object *filter, bool preserve_input_order, std::unordered_map const &attribute_accum, - std::vector const &unidecode_data); + std::vector const &unidecode_data, double simplification, + double tiny_polygon_size, + std::vector const &bins, std::string const &bin_by_id_list, + std::string const &accumulate_numeric, size_t feature_limit, + std::vector const &clipbboxes); + +draw center_of_mass_mp(const drawvec &dv); + +void get_quadkey_bounds(long long xmin, long long ymin, long long xmax, long long ymax, + unsigned long long *start, unsigned long long *end); + +clipbbox parse_clip_poly(std::string arg); #endif diff --git a/main.cpp b/main.cpp index fdac47770..8c6732b7e 100644 --- a/main.cpp +++ b/main.cpp @@ -49,7 +49,6 @@ #include "tile.hpp" #include "pool.hpp" #include "projection.hpp" -#include "version.hpp" #include "memfile.hpp" #include "main.hpp" #include "geojson.hpp" @@ -68,6 +67,7 @@ #include "sort.hpp" #include "attribute.hpp" #include "thread.hpp" +#include "drop.hpp" static int low_detail = 12; static int full_detail = -1; @@ -93,10 +93,12 @@ size_t limit_tile_feature_count = 0; size_t limit_tile_feature_count_at_maxzoom = 0; 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; long long extend_zooms_max = 0; int retain_points_multiplier = 1; std::vector unidecode_data; +size_t maximum_string_attribute_length = 0; +std::string accumulate_numeric; std::vector order_by; bool order_reverse; @@ -281,13 +283,6 @@ static void insert(struct mergelist *m, struct mergelist **head, unsigned char * *head = m; } -struct drop_state { - double gap; - unsigned long long previndex; - double interval; - double seq; // floating point because interval is -}; - struct drop_densest { unsigned long long gap; size_t seq; @@ -298,59 +293,6 @@ struct drop_densest { } }; -int calc_feature_minzoom(struct index *ix, struct drop_state *ds, int maxzoom, double gamma) { - int feature_minzoom = 0; - - if (gamma >= 0 && (ix->t == VT_POINT || - (additional[A_LINE_DROP] && ix->t == VT_LINE) || - (additional[A_POLYGON_DROP] && ix->t == VT_POLYGON))) { - for (ssize_t i = maxzoom; i >= 0; i--) { - ds[i].seq++; - } - for (ssize_t i = maxzoom; i >= 0; i--) { - if (ds[i].seq < 0) { - feature_minzoom = i + 1; - - // The feature we are pushing out - // appears in zooms i + 1 through maxzoom, - // so track where that was so we can make sure - // not to cluster something else that is *too* - // far away into it. - for (ssize_t j = i + 1; j <= maxzoom; j++) { - ds[j].previndex = ix->ix; - } - - break; - } else { - ds[i].seq -= ds[i].interval; - } - } - - // If this feature has been chosen only for a high zoom level, - // check whether at a low zoom level it is nevertheless too far - // from the last feature chosen for that low zoom, in which case - // we will go ahead and push it out. - - if (preserve_point_density_threshold > 0) { - for (ssize_t i = 0; i < feature_minzoom && i < maxzoom; i++) { - if (ix->ix - ds[i].previndex > ((1LL << (32 - i)) / preserve_point_density_threshold) * ((1LL << (32 - i)) / preserve_point_density_threshold)) { - feature_minzoom = i; - - for (ssize_t j = i; j <= maxzoom; j++) { - ds[j].previndex = ix->ix; - } - - break; - } - } - } - - // XXX manage_gap - } - - return feature_minzoom; -} - static void merge(struct mergelist *merges, size_t nmerges, unsigned char *map, FILE *indexfile, int bytes, char *geom_map, FILE *geom_out, std::atomic *geompos, long long *progress, long long *progress_max, long long *progress_reported, int maxzoom, double gamma, struct drop_state *ds) { struct mergelist *head = NULL; @@ -1052,21 +994,6 @@ void radix1(int *geomfds_in, int *indexfds_in, int inputs, int prefix, int split } } -void prep_drop_states(struct drop_state *ds, int maxzoom, int basezoom, double droprate) { - // Needs to be signed for interval calculation - for (ssize_t i = 0; i <= maxzoom; i++) { - ds[i].gap = 0; - ds[i].previndex = 0; - ds[i].interval = 0; - - if (i < basezoom) { - ds[i].interval = std::exp(std::log(droprate) * (basezoom - i)); - } - - ds[i].seq = 0; - } -} - static size_t calc_memsize() { size_t mem; @@ -1138,7 +1065,11 @@ void radix(std::vector &readers, int nreaders, FILE *geomfile, FI } struct drop_state ds[maxzoom + 1]; - prep_drop_states(ds, maxzoom, basezoom, droprate); + if (maxzoom < 0 || droprate <= 0) { // not guessed with -zg yet + prep_drop_states(ds, 0, 0, 1); + } else { + prep_drop_states(ds, maxzoom, basezoom, droprate); + } long long progress = 0, progress_max = geom_total, progress_reported = -1; long long availfiles_before = availfiles; @@ -1239,6 +1170,10 @@ int vertexcmp(const void *void1, const void *void2) { return 0; } +double round_droprate(double r) { + return std::round(r * 100000.0) / 100000.0; +} + std::pair read_input(std::vector &sources, char *fname, int maxzoom, int minzoom, int basezoom, double basezoom_marker_width, sqlite3 *outdb, const char *outdir, std::set *exclude, std::set *include, int exclude_all, json_object *filter, double droprate, int buffer, const char *tmpdir, double gamma, int read_parallel, int forcetable, const char *attribution, bool uses_gamma, long long *file_bbox, long long *file_bbox1, long long *file_bbox2, const char *prefilter, const char *postfilter, const char *description, bool guess_maxzoom, bool guess_cluster_maxzoom, std::unordered_map const *attribute_types, const char *pgm, std::unordered_map const *attribute_accum, std::map const &attribute_descriptions, std::string const &commandline, int minimum_maxzoom) { int ret = EXIT_SUCCESS; @@ -2069,7 +2004,7 @@ std::pair read_input(std::vector &sources, char *fname, i #endif struct node n; - n.index = encode_quadkey((unsigned) x, (unsigned) y); + n.index = encode_vertex((unsigned) x, (unsigned) y); fwrite_check((char *) &n, sizeof(struct node), 1, readers[0].nodefile, &readers[0].nodepos, "vertices"); } @@ -2083,6 +2018,9 @@ std::pair read_input(std::vector &sources, char *fname, i fprintf(stderr, "Merging nodes \r"); } + std::string shared_nodes_bloom; + shared_nodes_bloom.resize(34567891); // circa 34MB, size nowhere near a power of 2 + // Sort nodes that can't be simplified away; scan the list to remove duplicates FILE *shared_nodes; @@ -2148,6 +2086,11 @@ std::pair read_input(std::vector &sources, char *fname, i fwrite_check((void *) &here, sizeof(here), 1, shared_nodes, &nodepos, "shared nodes"); written = here; + size_t bloom_ix = here.index % (shared_nodes_bloom.size() * 8); + unsigned char bloom_mask = 1 << (bloom_ix & 7); + bloom_ix >>= 3; + shared_nodes_bloom[bloom_ix] |= bloom_mask; + #if 0 unsigned wx, wy; decode_quadkey(here.index, &wx, &wy); @@ -2218,6 +2161,8 @@ std::pair read_input(std::vector &sources, char *fname, i std::atomic geompos(0); /* initial tile is normally 0/0/0 but can be iz/ix/iy if limited to one tile */ + long long estimated_complexity = 0; // to be replaced after writing the data + fwrite_check(&estimated_complexity, sizeof(estimated_complexity), 1, geomfile, &geompos, fname); serialize_int(geomfile, iz, &geompos, fname); serialize_uint(geomfile, ix, &geompos, fname); serialize_uint(geomfile, iy, &geompos, fname); @@ -2227,6 +2172,13 @@ std::pair read_input(std::vector &sources, char *fname, i /* end of tile */ serialize_ulong_long(geomfile, 0, &geompos, fname); // EOF + estimated_complexity = geompos; + fflush(geomfile); + if (pwrite(fileno(geomfile), &estimated_complexity, sizeof(estimated_complexity), 0) != sizeof(estimated_complexity)) { + perror("pwrite estimated complexity"); + exit(EXIT_WRITE); + } + if (fclose(geomfile) != 0) { perror("fclose geom"); exit(EXIT_CLOSE); @@ -2276,6 +2228,7 @@ std::pair read_input(std::vector &sources, char *fname, i double mean = 0; size_t count = 0; double m2 = 0; + size_t dupes = 0; long long progress = -1; long long ip; @@ -2311,6 +2264,8 @@ std::pair read_input(std::vector &sources, char *fname, i mean += delta / count; double delta2 = newValue - mean; m2 += delta * delta2; + } else { + dupes++; } long long nprogress = 100 * ip / indices; @@ -2357,13 +2312,6 @@ std::pair read_input(std::vector &sources, char *fname, i if (maxzoom < 0) { maxzoom = 0; } - if (maxzoom > 32 - full_detail) { - maxzoom = 32 - full_detail; - } - if (maxzoom > 33 - low_detail) { // that is, maxzoom - 1 > 32 - low_detail - maxzoom = 33 - low_detail; - } - if (!quiet) { fprintf(stderr, "Choosing a maxzoom of -z%d for features typically %d feet (%d meters) apart, ", @@ -2394,7 +2342,7 @@ std::pair read_input(std::vector &sources, char *fname, i // features is small, the drop rate should be large because the features are evenly // spaced, and if the standard deviation is large, the drop rate can be small because // the features are in clumps. - droprate = exp(-0.7681 * log(stddev) + 1.582); + droprate = round_droprate(exp(-0.7681 * log(stddev) + 1.582)); if (droprate < 0) { droprate = 0; @@ -2403,6 +2351,13 @@ std::pair read_input(std::vector &sources, char *fname, i if (!quiet) { fprintf(stderr, "Choosing a drop rate of %f\n", droprate); } + + if (dupes != 0 && droprate != 0) { + maxzoom += std::round(log((dupes + count) / count) / log(droprate)); + if (!quiet) { + fprintf(stderr, "Increasing maxzoom to %d to account for %zu duplicate feature locations\n", maxzoom, dupes); + } + } } } @@ -2411,16 +2366,6 @@ std::pair read_input(std::vector &sources, char *fname, i double want2 = exp(dist_sum / dist_count) / 8; int mz = ceil(log(360 / (.00000274 * want2)) / log(2) - full_detail); - if (mz < 0) { - mz = 0; - } - if (mz > 32 - full_detail) { - mz = 32 - full_detail; - } - if (mz > 33 - low_detail) { // that is, mz - 1 > 32 - low_detail - mz = 33 - low_detail; - } - if (mz > maxzoom || count <= 0) { if (!quiet) { fprintf(stderr, "Choosing a maxzoom of -z%d for resolution of about %d feet (%d meters) within features\n", mz, (int) exp(dist_sum / dist_count), (int) (exp(dist_sum / dist_count) / 3.28084)); @@ -2429,6 +2374,16 @@ std::pair read_input(std::vector &sources, char *fname, i } } + if (maxzoom < 0) { + maxzoom = 0; + } + if (maxzoom > 32 - full_detail) { + maxzoom = 32 - full_detail; + } + if (maxzoom > 33 - low_detail) { // that is, maxzoom - 1 > 32 - low_detail + maxzoom = 33 - low_detail; + } + double total_tile_count = 0; for (int i = 1; i <= maxzoom; i++) { double tile_count = ceil(area_sum / ((1LL << (32 - i)) * (1LL << (32 - i)))); @@ -2589,7 +2544,7 @@ std::pair read_input(std::vector &sources, char *fname, i if (maxzoom == 0) { droprate = 2.5; } else { - droprate = exp(log((double) max[0].count / max[maxzoom].count) / (maxzoom)); + droprate = round_droprate(exp(log((double) max[0].count / max[maxzoom].count) / (maxzoom))); if (!quiet) { fprintf(stderr, "Choosing a drop rate of -r%f to get from %lld to %lld in %d zooms\n", droprate, max[maxzoom].count, max[0].count, maxzoom); } @@ -2615,7 +2570,7 @@ std::pair read_input(std::vector &sources, char *fname, i if (max[z].count / interval >= max_features) { interval = (double) max[z].count / max_features; - droprate = exp(log(interval) / (basezoom - z)); + droprate = round_droprate(exp(log(interval) / (basezoom - z))); interval = exp(log(droprate) * (basezoom - z)); if (!quiet) { @@ -2760,7 +2715,7 @@ std::pair read_input(std::vector &sources, char *fname, i std::atomic midx(0); std::atomic midy(0); std::vector strategies; - int written = traverse_zooms(fd, size, stringpool, &midx, &midy, maxzoom, minzoom, outdb, outdir, buffer, fname, tmpdir, gamma, full_detail, low_detail, min_detail, pool_off, initial_x, initial_y, simplification, maxzoom_simplification, layermaps, prefilter, postfilter, attribute_accum, filter, strategies, iz, shared_nodes_map, nodepos, basezoom, droprate, unidecode_data); + int written = traverse_zooms(fd, size, stringpool, &midx, &midy, maxzoom, minzoom, outdb, outdir, buffer, fname, tmpdir, gamma, full_detail, low_detail, min_detail, pool_off, initial_x, initial_y, simplification, maxzoom_simplification, layermaps, prefilter, postfilter, attribute_accum, filter, strategies, iz, shared_nodes_map, nodepos, shared_nodes_bloom, basezoom, droprate, unidecode_data); if (maxzoom != written) { if (written > minzoom) { @@ -3049,6 +3004,7 @@ int main(int argc, char **argv) { {"smallest-maximum-zoom-guess", required_argument, 0, '~'}, {"extend-zooms-if-still-dropping", no_argument, &additional[A_EXTEND_ZOOMS], 1}, {"extend-zooms-if-still-dropping-maximum", required_argument, 0, '~'}, + {"generate-variable-depth-tile-pyramid", no_argument, &additional[A_VARIABLE_DEPTH_PYRAMID], 1}, {"one-tile", required_argument, 0, 'R'}, {"Tile resolution", 0, 0, 0}, @@ -3066,11 +3022,13 @@ int main(int argc, char **argv) { {"attribute-type", required_argument, 0, 'T'}, {"attribute-description", required_argument, 0, 'Y'}, {"accumulate-attribute", required_argument, 0, 'E'}, + {"accumulate-numeric-attributes", required_argument, 0, '~'}, {"empty-csv-columns-are-null", no_argument, &prevent[P_EMPTY_CSV_COLUMNS], 1}, {"convert-stringified-ids-to-numbers", no_argument, &additional[A_CONVERT_NUMERIC_IDS], 1}, {"use-attribute-for-id", required_argument, 0, '~'}, {"single-precision", no_argument, &prevent[P_SINGLE_PRECISION], 1}, {"set-attribute", required_argument, 0, '~'}, + {"maximum-string-attribute-length", required_argument, 0, '~'}, {"Filtering features by attributes", 0, 0, 0}, {"feature-filter-file", required_argument, 0, 'J'}, @@ -3088,6 +3046,7 @@ int main(int argc, char **argv) { {"cluster-distance", required_argument, 0, 'K'}, {"cluster-maxzoom", required_argument, 0, 'k'}, {"preserve-point-density-threshold", required_argument, 0, '~'}, + {"preserve-multiplier-density-threshold", 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}, @@ -3137,6 +3096,7 @@ int main(int argc, char **argv) { {"Adding calculated attributes", 0, 0, 0}, {"calculate-feature-density", no_argument, &additional[A_CALCULATE_FEATURE_DENSITY], 1}, {"generate-ids", no_argument, &additional[A_GENERATE_IDS], 1}, + {"calculate-feature-index", no_argument, &additional[A_CALCULATE_INDEX], 1}, {"Trying to correct bad source geometry", 0, 0, 0}, {"detect-longitude-wraparound", no_argument, &additional[A_DETECT_WRAPAROUND], 1}, @@ -3298,12 +3258,18 @@ int main(int argc, char **argv) { } } else if (strcmp(opt, "preserve-point-density-threshold") == 0) { 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, "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) { retain_points_multiplier = atoll_require(optarg, "Multiply the fraction of points retained by zoom level"); } else if (strcmp(opt, "unidecode-data") == 0) { unidecode_data = read_unidecode(optarg); + } else if (strcmp(opt, "maximum-string-attribute-length") == 0) { + maximum_string_attribute_length = atoll_require(optarg, "Maximum string attribute length"); + } else if (strcmp(opt, "accumulate-numeric-attributes") == 0) { + accumulate_numeric = optarg; } else { fprintf(stderr, "%s: Unrecognized option --%s\n", argv[0], opt); exit(EXIT_ARGS); @@ -3586,7 +3552,7 @@ int main(int argc, char **argv) { } case 'v': - fprintf(stderr, "tippecanoe %s\n", VERSION); + fprintf(stderr, "tippecanoe %s\n", version_str().c_str()); exit(EXIT_SUCCESS); case 'P': diff --git a/main.hpp b/main.hpp index 25695e2f2..871411954 100644 --- a/main.hpp +++ b/main.hpp @@ -10,32 +10,6 @@ #include "json_logger.hpp" #include "serial.hpp" -struct index { - long long start = 0; - long long end = 0; - unsigned long long ix = 0; - short segment = 0; - unsigned short t : 2; - unsigned long long seq : (64 - 18); // pack with segment and t to stay in 32 bytes - - index() - : t(0), - seq(0) { - } -}; - -struct clipbbox { - double lon1; - double lat1; - double lon2; - double lat2; - - long long minx; - long long miny; - long long maxx; - long long maxy; -}; - extern std::vector clipbboxes; void checkdisk(std::vector *r); @@ -63,6 +37,9 @@ extern size_t limit_tile_feature_count_at_maxzoom; extern std::map set_attributes; extern long long extend_zooms_max; extern int retain_points_multiplier; +extern size_t maximum_string_attribute_length; +extern std::string accumulate_numeric; +extern unsigned long long preserve_multiplier_density_threshold; struct order_field { std::string name; diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index 13995fd07..fb0c97a4c 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -5,6 +5,8 @@ like these \[la]MADE_WITH.md\[ra]\&. .PP This is the official home of Tippecanoe, developed and actively maintained by Erica Fischer \[la]https://github.com/e-n-f\[ra] at Felt \[la]https://felt.com\[ra]\&. .PP +For a self\-hosted, API driven version of Tippecanoe, contact a technical sales engineer at \[la]sales@felt.com\[ra]\&. Felt produces highly performant, automatically projected versions of your data, and utilizes a rendering engine, built on top of MapLibre GL JS \[la]https://github.com/maplibre/maplibre-gl-js\[ra], to style vector and raster data. +.PP Version 2.0.0 is equivalent to 1.36.0 \[la]https://github.com/mapbox/tippecanoe/tree/1.36.0\[ra] in the original repository. Thank you Mapbox for the many years of early support. .SH Intent .PP @@ -414,6 +416,8 @@ specified maximum zoom and to any levels added beyond that. \fB\fC\-\-extend\-zooms\-if\-still\-dropping\-maximum=\fR\fIcount\fP: Increase the maxzoom if features are still being dropped at that zoom level by up to \fIcount\fP zoom levels. .IP \(bu 2 +\fB\fC\-at\fR or \fB\fC\-\-generate\-variable\-depth\-tile\-pyramid\fR: Don't produce child tiles for any tile that should be sufficient to be overzoomed to any higher zoom level. Such tiles will be produced with maximum detail and no simplification or polygon cleaning. Tiles with point features below the basezoom or where any features have to be dropped dynamically, or which contain too many features or bytes with full detail, will be written out with normal detail and split into child tiles. Tilesets generated with this option are suitable for use only with tile servers that will find the appropriate tile to overzoom from and will simplify and clean the geometries appropriately before serving the tile. +.IP \(bu 2 \fB\fC\-R\fR \fIzoom\fP\fB\fC/\fR\fIx\fP\fB\fC/\fR\fIy\fP or \fB\fC\-\-one\-tile=\fR\fIzoom\fP\fB\fC/\fR\fIx\fP\fB\fC/\fR\fIy\fP: Set the minzoom and maxzoom to \fIzoom\fP and produce only the single specified tile at that zoom level. .RE @@ -471,8 +475,8 @@ zoom level precision (ft) precision (m) map scale \fB\fC\-z18\fR 1.5 in 4 cm 1:1250 \fB\fC\-z19\fR 0.8 in 2 cm 1:600 \fB\fC\-z20\fR 0.4 in 1 cm 1:300 -\fB\fC\-z21\fR 0.2 in 0.5 cm 1:150 -\fB\fC\-z22\fR 0.1 in 0.25 cm 1:75 +\fB\fC\-z21\fR 0.4 in 1 cm 1:300 +\fB\fC\-z22\fR 0.4 in 1 cm 1:300 .TE .SS Tile resolution .RS @@ -526,6 +530,8 @@ The attributes and values may also be specified as JSON keys and values: \fB\fC\ \fB\fC\-\-use\-attribute\-for\-id=\fR\fIname\fP: Use the attribute with the specified \fIname\fP as if it were specified as the feature ID. (If this attribute is a stringified number, you must also use \fB\fC\-aI\fR to convert it to a number.) .IP \(bu 2 \fB\fC\-pN\fR or \fB\fC\-\-single\-precision\fR: Write double\-precision numeric attribute values to tiles as single\-precision to reduce tile size. +.IP \(bu 2 +\fB\fC\-\-maximum\-string\-attribute\-length\fR=\fIlength\fP: Truncate string attributes that exceed the specified length in bytes. .RE .SS Filtering features by attributes .RS @@ -688,6 +694,8 @@ the line or polygon within one tile unit of its proper location. You can probabl \fB\fC\-ag\fR or \fB\fC\-\-calculate\-feature\-density\fR: Add a new attribute, \fB\fCtippecanoe_feature_density\fR, to each feature, to record how densely features are spaced in that area of the tile. You can use this attribute in the style to produce a glowing effect where points are densely packed. It can range from 0 in the sparsest areas to 255 in the densest. .IP \(bu 2 \fB\fC\-ai\fR or \fB\fC\-\-generate\-ids\fR: Add an \fB\fCid\fR (a feature ID, not an attribute named \fB\fCid\fR) to each feature that does not already have one. There is currently no guarantee that the \fB\fCid\fR added will be stable between runs or that it will not conflict with manually\-assigned feature IDs. Future versions of Tippecanoe may change the mechanism for allocating IDs. +.IP \(bu 2 +\fB\fC\-aX\fR or \fB\fC\-\-calculate\-feature\-index\fR: Add a \fB\fCtippecanoe:index\fR field to each feature, giving its index in the quadkey or hilbert sequence. .RE .SS Trying to correct bad source geometry .RS @@ -898,7 +906,7 @@ Linux: .PP .RS .nf -sudo apt\-get install build\-essential libsqlite3\-dev zlib1g\-dev +sudo apt\-get install gcc g++ make libsqlite3\-dev zlib1g\-dev .fi .RE .PP @@ -1253,11 +1261,20 @@ some of the precision. Running: .PP .RS .nf -tippecanoe\-overzoom \-o out.mvt.gz inz/inx/iny outz/outx/outy in.mvt.gz +tippecanoe\-overzoom \-o out.mvt.gz in.mvt.gz inz/inx/iny outz/outx/outy .fi .RE .PP reads tile \fB\fCinz/inx/iny\fR of \fB\fCin.mvt.gz\fR and produces tile \fB\fCoutz/outx/outy\fR of \fB\fCout.mvt.gz\fR\&. +.PP +.RS +.nf +tippecanoe\-overzoom \-o out.mvt.gz \-t outz/outx/outy in.mvt.gz inz/inx/iny in2.mvt.gz in2z/in2x/in2y in3.mvt.gz in3z/in3x/in3y +.fi +.RE +.PP +reads tile \fB\fCinz/inx/iny\fR of \fB\fCin.mvt.gz\fR, tile \fB\fCin2z/in2x/in2y\fR of \fB\fCin2.mvt.gz\fR, and tile \fB\fCin3z/in3x/in3y\fR of \fB\fCin3.mvt.gz\fR, +and produces tile \fB\fCoutz/outx/outy\fR of \fB\fCout.mvt.gz\fR from them. .SS Options .RS .IP \(bu 2 diff --git a/mbtiles.cpp b/mbtiles.cpp index b2162aaa2..c7a615b0a 100644 --- a/mbtiles.cpp +++ b/mbtiles.cpp @@ -444,6 +444,14 @@ std::string stringify_strategies(std::vector const &strategies) { any = true; } + if (strategies[i].truncated_zooms > 0) { + state.nospace = true; + state.json_write_string("truncated_zooms"); + state.nospace = true; + state.json_write_number(strategies[i].truncated_zooms); + any = true; + } + state.nospace = true; state.json_end_hash(); } @@ -646,6 +654,17 @@ static double sixdig(double val) { return std::round(val * 1e6) / 1e6; } +#define str(x) #x +#define xstr(x) str(x) +std::string version_str() { + std::string s = VERSION; + std::string build_info = xstr(BUILD_INFO); + if (build_info.size() > 0) { + s += " " + build_info; + } + return s; +} + metadata make_metadata(const char *fname, int minzoom, int maxzoom, double minlat, double minlon, double maxlat, double maxlon, double minlat2, double minlon2, double maxlat2, double maxlon2, double midlat, double midlon, const char *attribution, std::map const &layermap, bool vector, const char *description, bool do_tilestats, std::map const &attribute_descriptions, std::string const &program, std::string const &commandline, std::vector const &strategies, int basezoom, double droprate, int retain_points_multiplier) { metadata m; @@ -676,12 +695,12 @@ metadata make_metadata(const char *fname, int minzoom, int maxzoom, double minla m.attribution = attribution; } - m.generator = program + " " + VERSION; + m.generator = program + " " + version_str(); m.generator_options = commandline; m.strategies_json = stringify_strategies(strategies); - if (isinf(droprate)) { + if (std::isinf(droprate)) { droprate = LLONG_MAX; } if (basezoom != maxzoom || droprate != 2.5 || retain_points_multiplier != 1) { diff --git a/mbtiles.hpp b/mbtiles.hpp index 8863df60e..661f5a654 100644 --- a/mbtiles.hpp +++ b/mbtiles.hpp @@ -77,5 +77,6 @@ std::map merge_layermaps(std::vector merge_layermaps(std::vector > const &maps, bool trunc); void add_to_tilestats(std::map &tilestats, std::string const &layername, serial_val const &val); +std::string version_str(); #endif diff --git a/mvt.cpp b/mvt.cpp index 1628fe575..8594fe517 100644 --- a/mvt.cpp +++ b/mvt.cpp @@ -835,3 +835,59 @@ long long mvt_value_to_long_long(mvt_value const &v) { exit(EXIT_IMPOSSIBLE); } } + +// This extracts a double value from an mvt_value +double mvt_value_to_double(mvt_value const &v) { + switch (v.type) { + case mvt_string: + return atof(v.c_str()); + case mvt_float: + return v.numeric_value.float_value; + case mvt_double: + return v.numeric_value.double_value; + case mvt_int: + return v.numeric_value.int_value; + case mvt_uint: + return v.numeric_value.uint_value; + case mvt_sint: + return v.numeric_value.sint_value; + case mvt_bool: + return v.numeric_value.bool_value; + case mvt_null: + return 0; + default: + fprintf(stderr, "unhandled mvt_type %d\n", v.type); + exit(EXIT_IMPOSSIBLE); + } +} + +void get_bbox(std::vector const &geom, + long long *xmin, long long *ymin, long long *xmax, long long *ymax, + int z, int tx, int ty, int detail) { + *xmin = LLONG_MAX; + *ymin = LLONG_MAX; + *xmax = 0; + *ymax = 0; + + for (auto const &g : geom) { + if (g.op == mvt_moveto || g.op == mvt_lineto) { + long long x = g.x; + long long y = g.y; + + // to world scale + x = x * (1LL << (32 - z - detail)); + y = y * (1LL << (32 - z - detail)); + + // to world origin + if (z > 0) { + x += (1LL << (32 - z)) * tx; + y += (1LL << (32 - z)) * ty; + } + + *xmin = std::min(*xmin, x); + *ymin = std::min(*ymin, y); + *xmax = std::max(*xmax, x); + *ymax = std::max(*ymax, y); + } + } +} diff --git a/mvt.hpp b/mvt.hpp index b6d5dbbe7..e44a632a8 100644 --- a/mvt.hpp +++ b/mvt.hpp @@ -9,6 +9,7 @@ #include #include #include +#include #include "errors.hpp" #include "text.hpp" @@ -76,6 +77,9 @@ enum mvt_value_type { mvt_no_such_key, }; +struct mvt_value; +double mvt_value_to_double(mvt_value const &v); + struct mvt_value { mvt_value_type type; std::shared_ptr s; @@ -95,7 +99,11 @@ struct mvt_value { } numeric_value; std::string get_string_value() const { - return std::string(*s, numeric_value.string_value.off, numeric_value.string_value.len); + if (type == mvt_string) { + return std::string(*s, numeric_value.string_value.off, numeric_value.string_value.len); + } else { + return toString(); + } } std::string_view get_string_view() const { @@ -118,6 +126,18 @@ struct mvt_value { s->push_back('\0'); } + bool is_numeric() const { + return type == mvt_float || + type == mvt_double || + type == mvt_int || + type == mvt_uint || + type == mvt_sint; + } + + double to_double() const { + return mvt_value_to_double(*this); + } + bool operator<(const mvt_value &o) const; bool operator==(const mvt_value &o) const; std::string toString() const; @@ -126,6 +146,11 @@ struct mvt_value { this->type = mvt_double; this->numeric_value.double_value = 0; } + + mvt_value(double v) { + this->type = mvt_double; + this->numeric_value.double_value = v; + } }; template <> @@ -177,6 +202,10 @@ struct mvt_layer { // For tracking the key-value constants already used in this layer std::vector key_dedup = std::vector(65536, -1); std::vector value_dedup = std::vector(65536, -1); + + int detail() const { + return std::round(std::log(extent) / std::log(2)); + } }; struct mvt_tile { @@ -199,4 +228,8 @@ bool is_unsigned_integer(const char *s, unsigned long long *v); struct serial_val; serial_val mvt_value_to_serial_val(mvt_value const &v); + +void get_bbox(std::vector const &geom, + long long *xmin, long long *ymin, long long *xmax, long long *ymax, + int z, int tx, int ty, int detail); #endif diff --git a/options.hpp b/options.hpp index c56c5fcdf..ce50ef80a 100644 --- a/options.hpp +++ b/options.hpp @@ -1,51 +1,53 @@ #ifndef OPTIONS_HPP #define OPTIONS_HPP -#define A_COALESCE ((int) 'c') -#define A_REVERSE ((int) 'r') -#define A_REORDER ((int) 'o') -#define A_LINE_DROP ((int) 'l') #define A_DEBUG_POLYGON ((int) '@') -#define A_POLYGON_DROP ((int) 'p') -#define A_DETECT_SHARED_BORDERS ((int) 'b') -#define A_PREFER_RADIX_SORT ((int) 'R') -#define A_CALCULATE_FEATURE_DENSITY ((int) 'g') -#define A_INCREASE_GAMMA_AS_NEEDED ((int) 'G') -#define A_DROP_DENSEST_AS_NEEDED ((int) 's') -#define A_DROP_FRACTION_AS_NEEDED ((int) 'd') -#define A_DROP_SMALLEST_AS_NEEDED ((int) 'n') -#define A_COALESCE_DENSEST_AS_NEEDED ((int) 'S') -#define A_COALESCE_SMALLEST_AS_NEEDED ((int) 'N') +#define A_CLUSTER_DENSEST_AS_NEEDED ((int) 'C') #define A_COALESCE_FRACTION_AS_NEEDED ((int) 'D') +#define A_INCREASE_GAMMA_AS_NEEDED ((int) 'G') +#define A_CONVERT_NUMERIC_IDS ((int) 'I') #define A_GRID_LOW_ZOOMS ((int) 'L') -#define A_DETECT_WRAPAROUND ((int) 'w') +#define A_COALESCE_SMALLEST_AS_NEEDED ((int) 'N') +#define A_GENERATE_POLYGON_LABEL_POINTS ((int) 'P') +#define A_PREFER_RADIX_SORT ((int) 'R') +#define A_COALESCE_DENSEST_AS_NEEDED ((int) 'S') +#define A_CALCULATE_INDEX ((int) 'X') +#define A_DETECT_SHARED_BORDERS ((int) 'b') +#define A_COALESCE ((int) 'c') +#define A_DROP_FRACTION_AS_NEEDED ((int) 'd') #define A_EXTEND_ZOOMS ((int) 'e') -#define A_CLUSTER_DENSEST_AS_NEEDED ((int) 'C') -#define A_GENERATE_IDS ((int) 'i') -#define A_CONVERT_NUMERIC_IDS ((int) 'I') +#define A_CALCULATE_FEATURE_DENSITY ((int) 'g') #define A_HILBERT ((int) 'h') +#define A_GENERATE_IDS ((int) 'i') +#define A_LINE_DROP ((int) 'l') +#define A_DROP_SMALLEST_AS_NEEDED ((int) 'n') +#define A_REORDER ((int) 'o') +#define A_POLYGON_DROP ((int) 'p') +#define A_REVERSE ((int) 'r') +#define A_DROP_DENSEST_AS_NEEDED ((int) 's') +#define A_VARIABLE_DEPTH_PYRAMID ((int) 't') #define A_VISVALINGAM ((int) 'v') -#define A_GENERATE_POLYGON_LABEL_POINTS ((int) 'P') +#define A_DETECT_WRAPAROUND ((int) 'w') -#define P_SIMPLIFY ((int) 's') -#define P_SIMPLIFY_LOW ((int) 'S') -#define P_SIMPLIFY_SHARED_NODES ((int) 'n') +#define P_TILE_COMPRESSION ((int) 'C') +#define P_DUPLICATION ((int) 'D') #define P_SINGLE_PRECISION ((int) 'N') -#define P_FEATURE_LIMIT ((int) 'f') -#define P_KILOBYTE_LIMIT ((int) 'k') +#define P_SIMPLIFY_LOW ((int) 'S') +#define P_TINY_POLYGON_REDUCTION_AT_MAXZOOM ((int) 'T') +#define P_REVERSE_SOURCE_POLYGON_WINDING ((int) 'W') +#define P_BASEZOOM_ABOVE_MAXZOOM ((int) 'b') +#define P_CLIPPING ((int) 'c') #define P_DYNAMIC_DROP ((int) 'd') +#define P_EMPTY_CSV_COLUMNS ((int) 'e') +#define P_FEATURE_LIMIT ((int) 'f') +#define P_TILE_STATS ((int) 'g') #define P_INPUT_ORDER ((int) 'i') +#define P_KILOBYTE_LIMIT ((int) 'k') +#define P_SIMPLIFY_SHARED_NODES ((int) 'n') #define P_POLYGON_SPLIT ((int) 'p') -#define P_CLIPPING ((int) 'c') -#define P_DUPLICATION ((int) 'D') +#define P_SIMPLIFY ((int) 's') #define P_TINY_POLYGON_REDUCTION ((int) 't') -#define P_TINY_POLYGON_REDUCTION_AT_MAXZOOM ((int) 'T') -#define P_TILE_COMPRESSION ((int) 'C') -#define P_TILE_STATS ((int) 'g') #define P_USE_SOURCE_POLYGON_WINDING ((int) 'w') -#define P_REVERSE_SOURCE_POLYGON_WINDING ((int) 'W') -#define P_EMPTY_CSV_COLUMNS ((int) 'e') -#define P_BASEZOOM_ABOVE_MAXZOOM ((int) 'b') extern int prevent[256]; extern int additional[256]; diff --git a/overzoom.cpp b/overzoom.cpp index 67037f918..112f0187e 100644 --- a/overzoom.cpp +++ b/overzoom.cpp @@ -9,6 +9,8 @@ #include "evaluator.hpp" #include "attribute.hpp" #include "text.hpp" +#include "read_json.hpp" +#include "projection.hpp" extern char *optarg; extern int optind; @@ -16,33 +18,82 @@ extern int optind; int detail = 12; // tippecanoe-style: mvt extent == 1 << detail int buffer = 5; // tippecanoe-style: mvt buffer == extent * buffer / 256; bool demultiply = false; +bool do_compress = true; + std::string filter; bool preserve_input_order = false; std::unordered_map attribute_accum; std::vector unidecode_data; +std::vector bins; +std::string accumulate_numeric; std::set keep; +std::set exclude; +std::vector exclude_prefix; +std::vector clipbboxes; void usage(char **argv) { fprintf(stderr, "Usage: %s -o newtile.pbf.gz tile.pbf.gz oz/ox/oy nz/nx/ny\n", argv[0]); fprintf(stderr, "to create tile nz/nx/ny from tile oz/ox/oy\n"); + fprintf(stderr, "Usage: %s -o newtile.pbf.gz -t nz/nx/ny tile.pbf.gz oz/ox/oy tile2.pbf.gz oz2/ox2/oy2\n", argv[0]); + fprintf(stderr, "to create tile nz/nx/ny from tiles oz/ox/oy and oz2/ox2/oy2\n"); exit(EXIT_FAILURE); } +std::string read_json_file(const char *fname) { + std::string out; + + FILE *f = fopen(fname, "r"); + if (f == NULL) { + perror(optarg); + exit(EXIT_OPEN); + } + + char buf[2000]; + size_t nread; + while ((nread = fread(buf, sizeof(char), 2000, f)) != 0) { + out += std::string(buf, nread); + } + + fclose(f); + + return out; +} + int main(int argc, char **argv) { int i; + const char *outtile = NULL; const char *outfile = NULL; + double simplification = 0; + double tiny_polygon_size = 0; + std::string assign_to_bins; + std::string bin_by_id_list; + + std::vector sources; struct option long_options[] = { {"include", required_argument, 0, 'y'}, + {"exclude", required_argument, 0, 'x'}, + {"exclude-prefix", required_argument, 0, 'x' & 0x1F}, {"full-detail", required_argument, 0, 'd'}, {"buffer", required_argument, 0, 'b'}, {"output", required_argument, 0, 'o'}, {"filter-points-multiplier", no_argument, 0, 'm'}, {"feature-filter", required_argument, 0, 'j'}, + {"feature-filter-file", required_argument, 0, 'J'}, {"preserve-input-order", no_argument, 0, 'o' & 0x1F}, {"accumulate-attribute", required_argument, 0, 'E'}, {"unidecode-data", required_argument, 0, 'u' & 0x1F}, + {"line-simplification", required_argument, 0, 'S'}, + {"tiny-polygon-size", required_argument, 0, 's' & 0x1F}, + {"source-tile", required_argument, 0, 't'}, + {"assign-to-bins", required_argument, 0, 'b' & 0x1F}, + {"bin-by-id-list", required_argument, 0, 'c' & 0x1F}, + {"accumulate-numeric-attributes", required_argument, 0, 'a' & 0x1F}, + {"no-tile-compression", no_argument, 0, 'd' & 0x1F}, + {"clip-bounding-box", required_argument, 0, 'k' & 0x1F}, + {"clip-polygon", required_argument, 0, 'l' & 0x1F}, + {"clip-polygon-file", required_argument, 0, 'm' & 0x1F}, {0, 0, 0, 0}, }; @@ -65,6 +116,14 @@ int main(int argc, char **argv) { keep.insert(optarg); break; + case 'x': + exclude.insert(optarg); + break; + + case 'x' & 0x1F: + exclude_prefix.push_back(optarg); + break; + case 'o': outfile = optarg; break; @@ -85,6 +144,10 @@ int main(int argc, char **argv) { filter = optarg; break; + case 'J': + filter = read_json_file(optarg); + break; + case 'o' & 0x1F: preserve_input_order = true; break; @@ -97,61 +160,199 @@ int main(int argc, char **argv) { unidecode_data = read_unidecode(optarg); break; + case 't': + outtile = optarg; + break; + + case 's' & 0x1F: + tiny_polygon_size = atof(optarg); + break; + + case 'S': + simplification = atof(optarg); + break; + + case 'b' & 0x1F: + assign_to_bins = optarg; + break; + + case 'c' & 0x1F: + bin_by_id_list = optarg; + break; + + case 'a' & 0x1F: + accumulate_numeric = optarg; + break; + + case 'd' & 0x1F: + do_compress = false; + break; + + case 'k' & 0x1F: { + clipbbox clip; + if (sscanf(optarg, "%lf,%lf,%lf,%lf", &clip.lon1, &clip.lat1, &clip.lon2, &clip.lat2) == 4) { + projection->project(clip.lon1, clip.lat1, 32, &clip.minx, &clip.maxy); + projection->project(clip.lon2, clip.lat2, 32, &clip.maxx, &clip.miny); + clipbboxes.push_back(clip); + } else { + fprintf(stderr, "%s: Can't parse bounding box --clip-bounding-box=%s\n", argv[0], optarg); + exit(EXIT_ARGS); + } + break; + } + + case 'l' & 0x1F: { + clipbbox clip = parse_clip_poly(optarg); + clipbboxes.push_back(clip); + break; + } + + case 'm' & 0x1F: { + clipbbox clip = parse_clip_poly(read_json_file(optarg)); + clipbboxes.push_back(clip); + break; + } + default: fprintf(stderr, "Unrecognized flag -%c\n", i); usage(argv); } } - if (argc - optind != 3) { - usage(argv); + std::vector its; + int nz, nx, ny; + + if (outtile == NULL) { // single input + if (argc - optind != 3) { + fprintf(stderr, "Wrong number of arguments\n"); + usage(argv); + } + + const char *infile = argv[optind + 0]; + + int oz, ox, oy; + if (sscanf(argv[optind + 1], "%d/%d/%d", &oz, &ox, &oy) != 3) { + fprintf(stderr, "%s: not in z/x/y form\n", argv[optind + 1]); + usage(argv); + } + + if (sscanf(argv[optind + 2], "%d/%d/%d", &nz, &nx, &ny) != 3) { + fprintf(stderr, "%s: not in z/x/y form\n", argv[optind + 2]); + usage(argv); + } + + input_tile s; + s.tile = infile; + s.z = oz; + s.x = ox; + s.y = oy; + + sources.push_back(s); + } else { // multiple inputs + if ((argc - optind) % 2 != 0) { + fprintf(stderr, "Unpaired arguments\n"); + usage(argv); + } + + if (sscanf(outtile, "%d/%d/%d", &nz, &nx, &ny) != 3) { + fprintf(stderr, "%s: not in z/x/y form\n", outtile); + usage(argv); + } + + for (i = optind; i + 1 < argc; i += 2) { + int oz, ox, oy; + if (sscanf(argv[i + 1], "%d/%d/%d", &oz, &ox, &oy) != 3) { + fprintf(stderr, "%s: not in z/x/y form\n", argv[i + 1]); + usage(argv); + } + + input_tile s; + s.tile = argv[i]; + s.z = oz; + s.x = ox; + s.y = oy; + + sources.push_back(s); + } } - if (outfile == NULL) { - usage(argv); + if (assign_to_bins.size() != 0) { + FILE *f = fopen(assign_to_bins.c_str(), "r"); + if (f == NULL) { + perror(assign_to_bins.c_str()); + exit(EXIT_OPEN); + } + + int det = detail; + if (det < 0) { + det = 12; + } + bins = parse_layers(f, nz, nx, ny, 1LL << det, true); + fclose(f); } - const char *infile = argv[optind + 0]; + // clip the clip polygons, if any, to the tile bounds, + // to reduce their complexity - int oz, ox, oy; - if (sscanf(argv[optind + 1], "%d/%d/%d", &oz, &ox, &oy) != 3) { - fprintf(stderr, "%s: not in z/x/y form\n", argv[optind + 1]); - usage(argv); + if (clipbboxes.size() > 0) { + long long wx1 = (nx - buffer / 256.0) * (1LL << (32 - nz)); + long long wy1 = (ny - buffer / 256.0) * (1LL << (32 - nz)); + long long wx2 = (nx + 1 + buffer / 256.0) * (1LL << (32 - nz)); + long long wy2 = (ny + 1 + buffer / 256.0) * (1LL << (32 - nz)); + + drawvec tile_bounds; + tile_bounds.emplace_back(VT_MOVETO, wx1, wy1); + tile_bounds.emplace_back(VT_LINETO, wx2, wy1); + tile_bounds.emplace_back(VT_LINETO, wx2, wy2); + tile_bounds.emplace_back(VT_LINETO, wx1, wy2); + tile_bounds.emplace_back(VT_LINETO, wx1, wy1); + + for (auto &c : clipbboxes) { + c.minx = std::max(c.minx, wx1); + c.miny = std::max(c.miny, wy1); + c.maxx = std::min(c.maxx, wx2); + c.maxy = std::min(c.maxy, wy2); + + if (c.dv.size() > 0) { + c.dv = clip_poly_poly(c.dv, tile_bounds); + } + } } - int nz, nx, ny; - if (sscanf(argv[optind + 2], "%d/%d/%d", &nz, &nx, &ny) != 3) { - fprintf(stderr, "%s: not in z/x/y form\n", argv[optind + 2]); - usage(argv); + json_object *json_filter = NULL; + if (filter.size() > 0) { + json_filter = parse_filter(filter.c_str()); } - std::string tile; - char buf[1000]; - int len; + for (auto const &s : sources) { + std::string tile; + char buf[1000]; + int len; - FILE *f = fopen(infile, "rb"); - if (f == NULL) { - perror(infile); - exit(EXIT_FAILURE); - } + FILE *f = fopen(s.tile.c_str(), "rb"); + if (f == NULL) { + perror(s.tile.c_str()); + exit(EXIT_FAILURE); + } + + while ((len = fread(buf, sizeof(char), 1000, f)) > 0) { + tile.append(std::string(buf, len)); + } + fclose(f); - while ((len = fread(buf, sizeof(char), 1000, f)) > 0) { - tile.append(std::string(buf, len)); + input_tile t = s; + t.tile = std::move(tile); + its.push_back(std::move(t)); } - fclose(f); - f = fopen(outfile, "wb"); + std::string out = overzoom(its, nz, nx, ny, detail, buffer, keep, exclude, exclude_prefix, do_compress, NULL, demultiply, json_filter, preserve_input_order, attribute_accum, unidecode_data, simplification, tiny_polygon_size, bins, bin_by_id_list, accumulate_numeric, SIZE_MAX, clipbboxes); + + FILE *f = fopen(outfile, "wb"); if (f == NULL) { perror(outfile); exit(EXIT_FAILURE); } - json_object *json_filter = NULL; - if (filter.size() > 0) { - json_filter = parse_filter(filter.c_str()); - } - - std::string out = overzoom(tile, oz, ox, oy, nz, nx, ny, detail, buffer, keep, true, NULL, demultiply, json_filter, preserve_input_order, attribute_accum, unidecode_data); fwrite(out.c_str(), sizeof(char), out.size(), f); fclose(f); diff --git a/plugin.cpp b/plugin.cpp index 73b682820..cfe065938 100644 --- a/plugin.cpp +++ b/plugin.cpp @@ -55,7 +55,7 @@ void *run_writer(void *a) { json_writer state(fp); for (size_t i = 0; i < wa->layers->size(); i++) { - layer_to_geojson((*(wa->layers))[i], wa->z, wa->x, wa->y, false, true, false, true, 0, 0, 0, true, state, 0); + layer_to_geojson((*(wa->layers))[i], wa->z, wa->x, wa->y, false, true, false, true, 0, 0, 0, true, state, 0, std::set()); } if (fclose(fp) != 0) { @@ -74,187 +74,51 @@ void *run_writer(void *a) { return NULL; } -// XXX deduplicate -static std::vector to_feature(drawvec &geom) { - std::vector out; - - for (size_t i = 0; i < geom.size(); i++) { - out.push_back(mvt_geometry(geom[i].op, geom[i].x, geom[i].y)); - } - - return out; -} - // Reads from the postfilter std::vector parse_layers(int fd, int z, unsigned x, unsigned y, std::vector> *layermaps, size_t tiling_seg, std::vector> *layer_unmaps, int extent) { - std::map ret; - std::shared_ptr tile_stringpool = std::make_shared(); - FILE *f = fdopen(fd, "r"); if (f == NULL) { perror("fdopen filter output"); exit(EXIT_OPEN); } - json_pull *jp = json_begin_file(f); - while (1) { - json_object *j = json_read(jp); - if (j == NULL) { - if (jp->error != NULL) { - fprintf(stderr, "Filter output:%d: %s: ", jp->line, jp->error); - if (jp->root != NULL) { - json_context(jp->root); - } else { - fprintf(stderr, "\n"); - } - exit(EXIT_JSON); - } - - json_free(jp->root); - break; - } + std::vector out = parse_layers(f, z, x, y, extent, false); - json_object *type = json_hash_get(j, "type"); - if (type == NULL || type->type != JSON_STRING) { - continue; - } - if (strcmp(type->value.string.string, "Feature") != 0) { - continue; - } - - json_object *geometry = json_hash_get(j, "geometry"); - if (geometry == NULL) { - fprintf(stderr, "Filter output:%d: filtered feature with no geometry: ", jp->line); - json_context(j); - json_free(j); - exit(EXIT_JSON); - } - - json_object *properties = json_hash_get(j, "properties"); - if (properties == NULL || (properties->type != JSON_HASH && properties->type != JSON_NULL)) { - fprintf(stderr, "Filter output:%d: feature without properties hash: ", jp->line); - json_context(j); - json_free(j); - exit(EXIT_JSON); - } - - json_object *geometry_type = json_hash_get(geometry, "type"); - if (geometry_type == NULL) { - fprintf(stderr, "Filter output:%d: null geometry (additional not reported): ", jp->line); - json_context(j); - exit(EXIT_JSON); - } + if (fclose(f) != 0) { + perror("fclose postfilter output"); + exit(EXIT_CLOSE); + } - if (geometry_type->type != JSON_STRING) { - fprintf(stderr, "Filter output:%d: geometry type is not a string: ", jp->line); - json_context(j); - exit(EXIT_JSON); - } + for (auto const &layer : out) { + std::string layername = layer.name; - json_object *coordinates = json_hash_get(geometry, "coordinates"); - if (coordinates == NULL || coordinates->type != JSON_ARRAY) { - fprintf(stderr, "Filter output:%d: feature without coordinates array: ", jp->line); - json_context(j); - exit(EXIT_JSON); - } + std::map &layermap = (*layermaps)[tiling_seg]; + if (layermap.count(layername) == 0) { + layermap_entry lme = layermap_entry(layermap.size()); + lme.minzoom = z; + lme.maxzoom = z; - int t; - for (t = 0; t < GEOM_TYPES; t++) { - if (strcmp(geometry_type->value.string.string, geometry_names[t]) == 0) { - break; - } - } - if (t >= GEOM_TYPES) { - fprintf(stderr, "Filter output:%d: Can't handle geometry type %s: ", jp->line, geometry_type->value.string.string); - json_context(j); - exit(EXIT_JSON); - } + layermap.insert(std::pair(layername, lme)); - std::string layername = "unknown"; - json_object *tippecanoe = json_hash_get(j, "tippecanoe"); - json_object *layer = NULL; - if (tippecanoe != NULL) { - layer = json_hash_get(tippecanoe, "layer"); - if (layer != NULL && layer->type == JSON_STRING) { - layername = std::string(layer->value.string.string); + if (lme.id >= (*layer_unmaps)[tiling_seg].size()) { + (*layer_unmaps)[tiling_seg].resize(lme.id + 1); + (*layer_unmaps)[tiling_seg][lme.id] = layername; } } - if (ret.count(layername) == 0) { - mvt_layer l; - l.name = layername; - l.version = 2; - l.extent = extent; - - ret.insert(std::pair(layername, l)); + auto ts = layermap.find(layername); + if (ts == layermap.end()) { + fprintf(stderr, "Internal error: layer %s not found\n", layername.c_str()); + exit(EXIT_IMPOSSIBLE); } - auto l = ret.find(layername); - - drawvec dv; - parse_geometry(t, coordinates, dv, VT_MOVETO, "Filter output", jp->line, j); - if (mb_geometry[t] == VT_POLYGON) { - dv = fix_polygon(dv); + if (z < ts->second.minzoom) { + ts->second.minzoom = z; } - - // Scale and offset geometry from global to tile - for (size_t i = 0; i < dv.size(); i++) { - long long scale = 1LL << (32 - z); - dv[i].x = std::round((dv[i].x - scale * x) * extent / (double) scale); - dv[i].y = std::round((dv[i].y - scale * y) * extent / (double) scale); + if (z > ts->second.maxzoom) { + ts->second.maxzoom = z; } - if (mb_geometry[t] == VT_POLYGON) { - // we can try scaling up because these are tile coordinates - dv = clean_or_clip_poly(dv, 0, 0, false, true); - if (dv.size() < 3) { - dv.clear(); - } - } - dv = remove_noop(dv, mb_geometry[t], 0); - if (mb_geometry[t] == VT_POLYGON) { - dv = close_poly(dv); - } - - if (dv.size() > 0) { - mvt_feature feature; - feature.type = mb_geometry[t]; - feature.geometry = to_feature(dv); - - json_object *id = json_hash_get(j, "id"); - if (id != NULL && id->type == JSON_NUMBER) { - feature.id = id->value.number.number; - if (id->value.number.large_unsigned > 0) { - feature.id = id->value.number.large_unsigned; - } - feature.has_id = true; - } - - std::map &layermap = (*layermaps)[tiling_seg]; - if (layermap.count(layername) == 0) { - layermap_entry lme = layermap_entry(layermap.size()); - lme.minzoom = z; - lme.maxzoom = z; - - layermap.insert(std::pair(layername, lme)); - - if (lme.id >= (*layer_unmaps)[tiling_seg].size()) { - (*layer_unmaps)[tiling_seg].resize(lme.id + 1); - (*layer_unmaps)[tiling_seg][lme.id] = layername; - } - } - - auto ts = layermap.find(layername); - if (ts == layermap.end()) { - fprintf(stderr, "Internal error: layer %s not found\n", layername.c_str()); - exit(EXIT_IMPOSSIBLE); - } - if (z < ts->second.minzoom) { - ts->second.minzoom = z; - } - if (z > ts->second.maxzoom) { - ts->second.maxzoom = z; - } - + for (auto const &feature : layer.features) { if (feature.type == mvt_point) { ts->second.points++; } else if (feature.type == mvt_linestring) { @@ -263,41 +127,25 @@ std::vector parse_layers(int fd, int z, unsigned x, unsigned y, std:: ts->second.polygons++; } - for (size_t i = 0; i < properties->value.object.length; i++) { - serial_val sv = stringify_value(properties->value.object.values[i], "Filter output", jp->line, j); + for (size_t i = 0; i + 1 < feature.tags.size(); i += 2) { + const std::string &key = layer.keys[feature.tags[i]]; + const mvt_value &val = layer.values[feature.tags[i + 1]]; // Nulls can be excluded here because this is the postfilter // and it is nearly time to create the vector representation - if (sv.type != mvt_null) { - mvt_value v = stringified_to_mvt_value(sv.type, sv.s.c_str(), tile_stringpool); - l->second.tag(feature, std::string(properties->value.object.keys[i]->value.string.string), v); - - add_to_tilestats(ts->second.tilestats, std::string(properties->value.object.keys[i]->value.string.string), sv); + if (val.type != mvt_null) { + add_to_tilestats(ts->second.tilestats, key, mvt_value_to_serial_val(val)); } } - - l->second.features.push_back(feature); } - - json_free(j); - } - - json_end(jp); - if (fclose(f) != 0) { - perror("fclose postfilter output"); - exit(EXIT_CLOSE); } - std::vector final; - for (auto a : ret) { - final.push_back(a.second); - } - return final; + return out; } // Reads from the prefilter -serial_feature parse_feature(json_pull *jp, int z, unsigned x, unsigned y, std::vector> *layermaps, size_t tiling_seg, std::vector> *layer_unmaps, bool postfilter) { +serial_feature parse_feature(json_pull *jp, int z, unsigned x, unsigned y, std::vector> *layermaps, size_t tiling_seg, std::vector> *layer_unmaps, bool postfilter, key_pool &key_pool) { serial_feature sf; while (1) { @@ -375,9 +223,9 @@ serial_feature parse_feature(json_pull *jp, int z, unsigned x, unsigned y, std:: } drawvec dv; - parse_geometry(t, coordinates, dv, VT_MOVETO, "Filter output", jp->line, j); + parse_coordinates(t, coordinates, dv, VT_MOVETO, "Filter output", jp->line, j); if (mb_geometry[t] == VT_POLYGON) { - dv = fix_polygon(dv); + dv = fix_polygon(dv, false, false); } // Scale and offset geometry from global to tile @@ -506,7 +354,7 @@ serial_feature parse_feature(json_pull *jp, int z, unsigned x, unsigned y, std:: // would have already run before prefiltering if (v.type != mvt_null) { - sf.full_keys.push_back(std::string(properties->value.object.keys[i]->value.string.string)); + sf.full_keys.push_back(key_pool.pool(std::string(properties->value.object.keys[i]->value.string.string))); sf.full_values.push_back(v); if (!postfilter) { diff --git a/plugin.hpp b/plugin.hpp index 595e7f133..fc901daf1 100644 --- a/plugin.hpp +++ b/plugin.hpp @@ -1,3 +1,4 @@ +struct key_pool; std::vector filter_layers(const char *filter, std::vector &layer, unsigned z, unsigned x, unsigned y, std::vector> *layermaps, size_t tiling_seg, std::vector> *layer_unmaps, int extent); void setup_filter(const char *filter, int *write_to, int *read_from, pid_t *pid, unsigned z, unsigned x, unsigned y); -serial_feature parse_feature(json_pull *jp, int z, unsigned x, unsigned y, std::vector> *layermaps, size_t tiling_seg, std::vector> *layer_unmaps, bool filters); +serial_feature parse_feature(json_pull *jp, int z, unsigned x, unsigned y, std::vector> *layermaps, size_t tiling_seg, std::vector> *layer_unmaps, bool filters, key_pool &key_pool); diff --git a/pool.cpp b/pool.cpp index 9d4167a5d..c23d8ab82 100644 --- a/pool.cpp +++ b/pool.cpp @@ -9,15 +9,15 @@ #include "errors.hpp" #include "text.hpp" -inline int swizzlecmp(const char *a, int atype, unsigned long long ahash, const char *b, int btype, unsigned long long bhash) { - if (ahash == bhash) { +inline long long swizzlecmp(const char *a, int atype, unsigned long long ahash, const char *b, int btype, unsigned long long bhash) { + if ((long long) ahash == (long long) bhash) { if (atype == btype) { return strcmp(a, b); } else { return atype - btype; } } else { - return (int) (ahash - bhash); + return (long long) (ahash - bhash); } } @@ -44,10 +44,10 @@ long long addpool(struct memfile *poolfile, struct memfile *treefile, const char } while (*sp != 0) { - int cmp = swizzlecmp(s, type, hash, - poolfile->map.c_str() + ((struct stringpool *) (treefile->map.c_str() + *sp))->off + 1, - (poolfile->map.c_str() + ((struct stringpool *) (treefile->map.c_str() + *sp))->off)[0], - ((struct stringpool *) (treefile->map.c_str() + *sp))->hash); + long long cmp = swizzlecmp(s, type, hash, + poolfile->map.c_str() + ((struct stringpool *) (treefile->map.c_str() + *sp))->off + 1, + (poolfile->map.c_str() + ((struct stringpool *) (treefile->map.c_str() + *sp))->off)[0], + ((struct stringpool *) (treefile->map.c_str() + *sp))->hash); if (cmp < 0) { sp = &(((struct stringpool *) (treefile->map.c_str() + *sp))->left); diff --git a/projection.cpp b/projection.cpp index f5f713827..9f242d5a1 100644 --- a/projection.cpp +++ b/projection.cpp @@ -217,3 +217,7 @@ void set_projection_or_exit(const char *optarg) { exit(EXIT_ARGS); } } + +unsigned long long encode_vertex(unsigned int wx, unsigned int wy) { + return (((unsigned long long) wx) << 32) | wy; +} diff --git a/projection.hpp b/projection.hpp index d649ef56f..96b096ed3 100644 --- a/projection.hpp +++ b/projection.hpp @@ -26,4 +26,6 @@ void decode_quadkey(unsigned long long index, unsigned *wx, unsigned *wy); unsigned long long encode_hilbert(unsigned int wx, unsigned int wy); void decode_hilbert(unsigned long long index, unsigned *wx, unsigned *wy); +unsigned long long encode_vertex(unsigned int wx, unsigned int wy); + #endif diff --git a/read_json.cpp b/read_json.cpp index 45e136582..63329acb8 100644 --- a/read_json.cpp +++ b/read_json.cpp @@ -53,7 +53,7 @@ void json_context(json_object *j) { free(s); // stringify } -void parse_geometry(int t, json_object *j, drawvec &out, int op, const char *fname, int line, json_object *feature) { +void parse_coordinates(int t, json_object *j, drawvec &out, int op, const char *fname, int line, json_object *feature) { if (j == NULL || j->type != JSON_ARRAY) { fprintf(stderr, "%s:%d: expected array for geometry type %d: ", fname, line, t); json_context(feature); @@ -72,7 +72,7 @@ void parse_geometry(int t, json_object *j, drawvec &out, int op, const char *fna } } - parse_geometry(within, j->value.array.array[i], out, op, fname, line, feature); + parse_coordinates(within, j->value.array.array[i], out, op, fname, line, feature); } } else { if (j->value.array.length >= 2 && j->value.array.array[0]->type == JSON_NUMBER && j->value.array.array[1]->type == JSON_NUMBER) { @@ -166,3 +166,250 @@ serial_val stringify_value(json_object *value, const char *reading, int line, js return sv; } + +// XXX deduplicate +static std::vector to_feature(drawvec &geom) { + std::vector out; + + for (size_t i = 0; i < geom.size(); i++) { + out.push_back(mvt_geometry(geom[i].op, geom[i].x, geom[i].y)); + } + + return out; +} + +std::pair parse_geometry(json_object *geometry, json_pull *jp, json_object *j, + int z, int x, int y, long long extent, bool fix_longitudes, bool mvt_style) { + json_object *geometry_type = json_hash_get(geometry, "type"); + if (geometry_type == NULL) { + fprintf(stderr, "Filter output:%d: null geometry (additional not reported): ", jp->line); + json_context(j); + exit(EXIT_JSON); + } + + if (geometry_type->type != JSON_STRING) { + fprintf(stderr, "Filter output:%d: geometry type is not a string: ", jp->line); + json_context(j); + exit(EXIT_JSON); + } + + json_object *coordinates = json_hash_get(geometry, "coordinates"); + if (coordinates == NULL || coordinates->type != JSON_ARRAY) { + fprintf(stderr, "Filter output:%d: geometry without coordinates array: ", jp->line); + json_context(j); + exit(EXIT_JSON); + } + + int t; + for (t = 0; t < GEOM_TYPES; t++) { + if (strcmp(geometry_type->value.string.string, geometry_names[t]) == 0) { + break; + } + } + if (t >= GEOM_TYPES) { + fprintf(stderr, "Filter output:%d: Can't handle geometry type %s: ", jp->line, geometry_type->value.string.string); + json_context(j); + exit(EXIT_JSON); + } + + drawvec dv; + parse_coordinates(t, coordinates, dv, VT_MOVETO, "Filter output", jp->line, j); + + // handle longitude wraparound + // + // this is supposed to be data for a single tile, + // so any jump from the left hand side edge of the world + // to the right edge, or vice versa, is unexpected, + // so move it to the other side. + + if (fix_longitudes && mb_geometry[t] == VT_POLYGON) { + const long long quarter_world = 1LL << 30; + const long long world = 1LL << 32; + + bool copy_to_left = false; + bool copy_to_right = false; + + for (size_t i = 0; i < dv.size(); i++) { + // is this vertex on a different side of the world + // than the first vertex? then shift this one to match + if (i > 0) { + if ((dv[0].x < quarter_world) && (dv[i].x > 3 * quarter_world)) { + dv[i].x -= world; + } + if ((dv[0].x > 3 * quarter_world) && (dv[i].x < quarter_world)) { + dv[i].x += world; + } + } + + // does it stick off the edge of the world? + // then we need another copy on the other side of the world + if (dv[i].x < 0) { + copy_to_right = true; + } + if (dv[i].x > world) { + copy_to_left = true; + } + } + + if (copy_to_left) { + size_t n = dv.size(); + for (size_t i = 0; i < n; i++) { + dv.emplace_back(dv[i].op, dv[i].x - world, (long long) dv[i].y); + } + } + if (copy_to_right) { + size_t n = dv.size(); + for (size_t i = 0; i < n; i++) { + dv.emplace_back(dv[i].op, dv[i].x + world, (long long) dv[i].y); + } + } + } + + if (mb_geometry[t] == VT_POLYGON) { + dv = fix_polygon(dv, false, false); + } + + // Offset and scale geometry from global to tile + for (size_t i = 0; i < dv.size(); i++) { + long long scale = 1LL << (32 - z); + + // offset to tile + dv[i].x -= scale * x; + dv[i].y -= scale * y; + + // scale to tile + dv[i].x = std::round(dv[i].x * (extent / (double) scale)); + dv[i].y = std::round(dv[i].y * (extent / (double) scale)); + } + + if (mb_geometry[t] == VT_POLYGON) { + // don't try scaling up because we may have coordinates + // on the other side of the world + dv = clean_or_clip_poly(dv, z, 256, true, false); + if (dv.size() < 3) { + dv.clear(); + } + } + dv = remove_noop(dv, mb_geometry[t], 0); + + if (mvt_style) { + if (mb_geometry[t] == VT_POLYGON) { + dv = close_poly(dv); + } + } + + return std::pair(t, dv); +} + +std::vector parse_layers(FILE *fp, int z, unsigned x, unsigned y, int extent, bool fix_longitudes) { + std::map ret; + std::shared_ptr tile_stringpool = std::make_shared(); + + json_pull *jp = json_begin_file(fp); + while (1) { + json_object *j = json_read(jp); + if (j == NULL) { + if (jp->error != NULL) { + fprintf(stderr, "Filter output:%d: %s: ", jp->line, jp->error); + if (jp->root != NULL) { + json_context(jp->root); + } else { + fprintf(stderr, "\n"); + } + exit(EXIT_JSON); + } + + json_free(jp->root); + break; + } + + json_object *type = json_hash_get(j, "type"); + if (type == NULL || type->type != JSON_STRING) { + continue; + } + if (strcmp(type->value.string.string, "Feature") != 0) { + continue; + } + + json_object *properties = json_hash_get(j, "properties"); + if (properties == NULL || (properties->type != JSON_HASH && properties->type != JSON_NULL)) { + fprintf(stderr, "Filter output:%d: feature without properties hash: ", jp->line); + json_context(j); + json_free(j); + exit(EXIT_JSON); + } + + std::string layername = "unknown"; + json_object *tippecanoe = json_hash_get(j, "tippecanoe"); + json_object *layer = NULL; + if (tippecanoe != NULL) { + layer = json_hash_get(tippecanoe, "layer"); + if (layer != NULL && layer->type == JSON_STRING) { + layername = std::string(layer->value.string.string); + } + } + + if (ret.count(layername) == 0) { + mvt_layer l; + l.name = layername; + l.version = 2; + l.extent = extent; + + ret.insert(std::pair(layername, l)); + } + auto l = ret.find(layername); + + json_object *geometry = json_hash_get(j, "geometry"); + if (geometry == NULL) { + fprintf(stderr, "Filter output:%d: filtered feature with no geometry: ", jp->line); + json_context(j); + json_free(j); + exit(EXIT_JSON); + } + + std::pair parsed_geometry = parse_geometry(geometry, jp, j, z, x, y, extent, fix_longitudes, true); + + int t = parsed_geometry.first; + drawvec &dv = parsed_geometry.second; + + if (dv.size() > 0) { + mvt_feature feature; + feature.type = mb_geometry[t]; + feature.geometry = to_feature(dv); + + json_object *id = json_hash_get(j, "id"); + if (id != NULL && id->type == JSON_NUMBER) { + feature.id = id->value.number.number; + if (id->value.number.large_unsigned > 0) { + feature.id = id->value.number.large_unsigned; + } + feature.has_id = true; + } + + for (size_t i = 0; i < properties->value.object.length; i++) { + serial_val sv = stringify_value(properties->value.object.values[i], "Filter output", jp->line, j); + + // Nulls can be excluded here because this is the postfilter + // and it is nearly time to create the vector representation + + if (sv.type != mvt_null) { + mvt_value v = stringified_to_mvt_value(sv.type, sv.s.c_str(), tile_stringpool); + l->second.tag(feature, std::string(properties->value.object.keys[i]->value.string.string), v); + } + } + + l->second.features.push_back(feature); + } + + json_free(j); + } + + json_end(jp); + + std::vector final; + for (auto a : ret) { + final.push_back(a.second); + } + + return final; +} diff --git a/read_json.hpp b/read_json.hpp index 1d9374abd..a5d5d7b28 100644 --- a/read_json.hpp +++ b/read_json.hpp @@ -11,6 +11,9 @@ extern int geometry_within[GEOM_TYPES]; extern int mb_geometry[GEOM_TYPES]; void json_context(json_object *j); -void parse_geometry(int t, json_object *j, drawvec &out, int op, const char *fname, int line, json_object *feature); +void parse_coordinates(int t, json_object *j, drawvec &out, int op, const char *fname, int line, json_object *feature); +std::pair parse_geometry(json_object *geometry, json_pull *jp, json_object *j, + int z, int x, int y, long long extent, bool fix_longitudes, bool mvt_style); +std::vector parse_layers(FILE *fp, int z, unsigned x, unsigned y, int extent, bool fix_longitudes); serial_val stringify_value(json_object *value, const char *reading, int line, json_object *feature); diff --git a/serial.cpp b/serial.cpp index af405a8b3..5afc2ed2f 100644 --- a/serial.cpp +++ b/serial.cpp @@ -23,6 +23,7 @@ #include "evaluator.hpp" #include "milo/dtoa_milo.h" #include "errors.hpp" +#include "text.hpp" // Offset coordinates to keep them positive #define COORD_OFFSET (4LL << 32) @@ -130,12 +131,12 @@ void deserialize_ulong_long(const char **f, unsigned long long *zigzag) { while (1) { if ((**f & 0x80) == 0) { - *zigzag |= ((const unsigned long long) **f) << shift; + *zigzag |= ((unsigned long long) **f) << shift; *f += 1; shift += 7; break; } else { - *zigzag |= ((const unsigned long long) (**f & 0x7F)) << shift; + *zigzag |= ((unsigned long long) (**f & 0x7F)) << shift; *f += 1; shift += 7; } @@ -210,6 +211,7 @@ 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->gap); } if (sf->label_point != 0) { serialize_ulong_long(s, sf->label_point); @@ -258,6 +260,7 @@ serial_feature deserialize_feature(std::string const &geoms, unsigned z, unsigne deserialize_int(&cp, &sf.segment); sf.index = 0; + sf.gap = 0; sf.label_point = 0; sf.extent = 0; @@ -265,6 +268,7 @@ serial_feature deserialize_feature(std::string const &geoms, unsigned z, unsigne if (sf.layer & (1 << FLAG_INDEX)) { deserialize_ulong_long(&cp, &sf.index); + deserialize_ulong_long(&cp, &sf.gap); } if (sf.layer & (1 << FLAG_LABEL_POINT)) { deserialize_ulong_long(&cp, &sf.label_point); @@ -403,7 +407,7 @@ static void add_scaled_node(struct reader *r, serialization_state *sst, draw g) long long y = SHIFT_LEFT(g.y); struct node n; - n.index = encode_quadkey((unsigned) x, (unsigned) y); + n.index = encode_vertex((unsigned) x, (unsigned) y); fwrite_check((char *) &n, sizeof(struct node), 1, r->nodefile, &r->nodepos, sst->fname); } @@ -411,6 +415,7 @@ static void add_scaled_node(struct reader *r, serialization_state *sst, draw g) // called from frontends int serialize_feature(struct serialization_state *sst, serial_feature &sf, std::string const &layername) { struct reader *r = &(*sst->readers)[sst->segment]; + key_pool key_pool; sf.bbox[0] = LLONG_MAX; sf.bbox[1] = LLONG_MAX; @@ -419,12 +424,15 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: for (size_t i = 0; i < sf.geometry.size(); i++) { if (sf.geometry[i].op == VT_MOVETO || sf.geometry[i].op == VT_LINETO) { - if (sf.geometry[i].y > 0 && sf.geometry[i].y < 0xFFFFFFFF) { - // standard -180 to 180 world plane + // standard -180 to 180 world plane + // + // mask X, since it wraps around + // pin Y, since it doesn't - long long x = sf.geometry[i].x & 0xFFFFFFFF; - long long y = sf.geometry[i].y & 0xFFFFFFFF; + long long x = sf.geometry[i].x & 0xFFFFFFFF; + long long y = std::max(std::min(sf.geometry[i].y, 0xFFFFFFFFLL), 0LL); + { r->file_bbox1[0] = std::min(r->file_bbox1[0], x); r->file_bbox1[1] = std::min(r->file_bbox1[1], y); r->file_bbox1[2] = std::max(r->file_bbox1[2], x); @@ -453,7 +461,7 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: // This has to happen after scaling so that the wraparound detection has happened first. // Otherwise the inner/outer calculation will be confused by bad geometries. if (sf.t == VT_POLYGON) { - scaled_geometry = fix_polygon(scaled_geometry); + scaled_geometry = fix_polygon(scaled_geometry, prevent[P_USE_SOURCE_POLYGON_WINDING], prevent[P_REVERSE_SOURCE_POLYGON_WINDING]); } for (auto &c : clipbboxes) { @@ -674,6 +682,13 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: // keep old behavior, which loses one bit of precision at the bottom midx = (sf.bbox[0] / 2 + sf.bbox[2] / 2) & ((1LL << 32) - 1); midy = (sf.bbox[1] / 2 + sf.bbox[3] / 2) & ((1LL << 32) - 1); + } else if ((additional[A_DROP_DENSEST_AS_NEEDED] || additional[A_COALESCE_DENSEST_AS_NEEDED]) && sf.t == VT_POLYGON) { + // This probably should really apply to all polygons, + // but I hate to change the feature sequence in all the + // test fixtures again + draw scaled_center = center_of_mass_mp(scaled_geometry); + midx = SHIFT_LEFT(scaled_center.x) & ((1LL << 32) - 1); + midy = SHIFT_LEFT(scaled_center.y) & ((1LL << 32) - 1); } else { // To reduce the chances of giving multiple polygons or linestrings // the same index, use an arbitrary but predictable point from the @@ -699,6 +714,14 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: } bbox_index = encode_index(midx, midy); + if (additional[A_CALCULATE_INDEX]) { + sf.full_keys.push_back(key_pool.pool("tippecanoe:index")); + + serial_val sv; + sv.type = mvt_double; + sv.s = std::to_string(bbox_index); + sf.full_values.push_back(sv); + } if (sf.t == VT_POLYGON && additional[A_GENERATE_POLYGON_LABEL_POINTS]) { drawvec dv = polygon_to_anchor(scaled_geometry); @@ -722,6 +745,7 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: additional[A_GENERATE_POLYGON_LABEL_POINTS] || sst->uses_gamma || retain_points_multiplier > 1 || + preserve_multiplier_density_threshold > 0 || cluster_distance != 0) { sf.index = bbox_index; } else { @@ -753,7 +777,7 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: for (auto &kv : set_attributes) { bool found = false; for (size_t i = 0; i < sf.full_keys.size(); i++) { - if (sf.full_keys[i] == kv.first) { + if (*sf.full_keys[i] == kv.first) { sf.full_values[i] = kv.second; found = true; break; @@ -761,13 +785,13 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: } if (!found) { - sf.full_keys.push_back(kv.first); + sf.full_keys.push_back(key_pool.pool(kv.first)); sf.full_values.push_back(kv.second); } } for (ssize_t i = (ssize_t) sf.full_keys.size() - 1; i >= 0; i--) { - coerce_value(sf.full_keys[i], sf.full_values[i].type, sf.full_values[i].s, sst->attribute_types); + coerce_value(*sf.full_keys[i], sf.full_values[i].type, sf.full_values[i].s, sst->attribute_types); if (prevent[P_SINGLE_PRECISION]) { if (sf.full_values[i].type == mvt_double) { @@ -778,12 +802,12 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: } } - if (sf.full_keys[i] == attribute_for_id) { + if (*sf.full_keys[i] == attribute_for_id) { if (sf.full_values[i].type != mvt_double && !additional[A_CONVERT_NUMERIC_IDS]) { static bool warned = false; if (!warned) { - fprintf(stderr, "Warning: Attribute \"%s\"=\"%s\" as feature ID is not a number\n", sf.full_keys[i].c_str(), sf.full_values[i].s.c_str()); + fprintf(stderr, "Warning: Attribute \"%s\"=\"%s\" as feature ID is not a number\n", sf.full_keys[i]->c_str(), sf.full_values[i].s.c_str()); warned = true; } } else { @@ -816,12 +840,12 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: } if (sst->exclude_all) { - if (sst->include->count(sf.full_keys[i]) == 0) { + if (sst->include->count(*sf.full_keys[i]) == 0) { sf.full_keys.erase(sf.full_keys.begin() + i); sf.full_values.erase(sf.full_values.begin() + i); continue; } - } else if (sst->exclude->count(sf.full_keys[i]) != 0) { + } else if (sst->exclude->count(*sf.full_keys[i]) != 0) { sf.full_keys.erase(sf.full_keys.begin() + i); sf.full_values.erase(sf.full_values.begin() + i); continue; @@ -831,12 +855,20 @@ int serialize_feature(struct serialization_state *sst, serial_feature &sf, std:: if (!sst->filters) { for (size_t i = 0; i < sf.full_keys.size(); i++) { auto ts = sst->layermap->find(layername); - add_to_tilestats(ts->second.tilestats, sf.full_keys[i], sf.full_values[i]); + add_to_tilestats(ts->second.tilestats, *sf.full_keys[i], sf.full_values[i]); + } + } + + if (maximum_string_attribute_length > 0) { + for (size_t i = 0; i < sf.full_keys.size(); i++) { + if (sf.full_values[i].type == mvt_string && sf.full_values[i].s.size() > maximum_string_attribute_length) { + sf.full_values[i].s = truncate_string(sf.full_values[i].s, maximum_string_attribute_length); + } } } for (size_t i = 0; i < sf.full_keys.size(); i++) { - sf.keys.push_back(addpool(r->poolfile, r->treefile, sf.full_keys[i].c_str(), mvt_string, r->key_dedup)); + sf.keys.push_back(addpool(r->poolfile, r->treefile, sf.full_keys[i]->c_str(), mvt_string, r->key_dedup)); sf.values.push_back(addpool(r->poolfile, r->treefile, sf.full_values[i].s.c_str(), sf.full_values[i].type, r->value_dedup)); } diff --git a/serial.hpp b/serial.hpp index 2d47f672d..b45450caa 100644 --- a/serial.hpp +++ b/serial.hpp @@ -6,9 +6,11 @@ #include #include #include +#include #include #include "geometry.hpp" #include "mbtiles.hpp" +#include "drop.hpp" // for struct index #include "jsonpull/jsonpull.h" size_t fwrite_check(const void *ptr, size_t size, size_t nitems, FILE *stream, std::atomic *fpos, const char *fname); @@ -49,6 +51,42 @@ struct serial_val { serial_val(int t, const std::string &val) : type(t), s(val) { } + + // These functions for interface compatibility with mvt_value: + + serial_val(double val) { + type = mvt_double; + s = milo::dtoa_milo(val); + } + + double to_double() const { + return atof(s.c_str()); + } + + std::string get_string_value() const { + return s; + } + + void set_string_value(std::string const &val) { + type = mvt_string; + s = val; + } +}; + +struct key_pool { + std::unordered_map> mapping; + + std::shared_ptr pool(std::string const &s) { + auto f = mapping.find(s); + if (f != mapping.end()) { + return f->second; + } + + std::shared_ptr p = std::make_shared(); + *p = s; + mapping.emplace(s, p); + return p; + } }; struct serial_feature { @@ -67,6 +105,7 @@ struct serial_feature { drawvec geometry = drawvec(); unsigned long long index = 0; + unsigned long long gap = 0; // filled in during z0. square of planar distance unsigned long long label_point = 0; long long extent = 0; @@ -74,7 +113,7 @@ struct serial_feature { // to create the keys and values references into the string pool // during initial serialization - std::vector full_keys{}; + std::vector> full_keys{}; std::vector full_values{}; // These fields are generated from full_keys and full_values @@ -93,9 +132,11 @@ struct serial_feature { #define FEATURE_DROPPED -1 #define FEATURE_KEPT 0 +#define FEATURE_ADDED_FOR_MULTIPLIER_DENSITY INT_MAX // <0: dropped // 0: kept // >0: sequence number of additional feature kept by retain-points-multiplier + // INT_MAX: additional feature kept by preserve-multiplier-density-threshold int dropped = FEATURE_DROPPED; // was this feature dropped by rate? // unsigned long long drop_by; // dot-dropping priority diff --git a/shared_borders.cpp b/shared_borders.cpp index 2a1bd2eef..709c8a216 100644 --- a/shared_borders.cpp +++ b/shared_borders.cpp @@ -196,7 +196,7 @@ bool find_common_edges(std::vector &features, int z, int line_de } if (e1.first == e1.second || e2.first == e2.second) { - fprintf(stderr, "Internal error: polygon edge lookup failed for %lld,%lld to %lld,%lld or %lld,%lld to %lld,%lld\n", left[0].x, left[0].y, left[1].x, left[1].y, right[0].x, right[0].y, right[1].x, right[1].y); + fprintf(stderr, "Internal error: polygon edge lookup failed for %lld,%lld to %lld,%lld or %lld,%lld to %lld,%lld\n", (long long) left[0].x, (long long) left[0].y, (long long) left[1].x, (long long) left[1].y, (long long) right[0].x, (long long) right[0].y, (long long) right[1].x, (long long) right[1].y); exit(EXIT_IMPOSSIBLE); } @@ -357,7 +357,7 @@ bool find_common_edges(std::vector &features, int z, int line_de } if (!(prevent[P_SIMPLIFY] || (z == maxzoom && prevent[P_SIMPLIFY_LOW]) || (z < maxzoom && additional[A_GRID_LOW_ZOOMS]))) { // tx and ty are 0 here because we aren't trying to do anything with the shared_nodes_map - simplified_arcs[ai->second] = simplify_lines(dv, z, 0, 0, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, 4, drawvec(), NULL, 0); + simplified_arcs[ai->second] = simplify_lines(dv, z, 0, 0, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, 4, drawvec(), NULL, 0, ""); } else { simplified_arcs[ai->second] = dv; } diff --git a/tests/10188-crash/2-0-0.pbf b/tests/10188-crash/2-0-0.pbf new file mode 100644 index 000000000..ac1919f5a --- /dev/null +++ b/tests/10188-crash/2-0-0.pbf @@ -0,0 +1,565 @@ +ขx +parsed(€  felt:h3_index SCALERANKNATSCALE LABELRANK +FEATURECLANAME NAMEASCIIADM0CAP WORLDCITYMEGACITYSOV0NAMESOV_A3ADM0NAMEADM0_A3ADM1NAMEISO_A2LATITUDE LONGITUDEPOP_MAXPOP_MIN POP_OTHERRANK_MAXRANK_MINLS_NAME MAX_POP10 MAX_POP20 MAX_POP50 +MAX_POP300 +MAX_POP310 +MAX_NATSCA +MIN_AREAKM +MAX_AREAKM +MIN_AREAMI +MAX_AREAMI MIN_PERKM MAX_PERKM MIN_PERMI MAX_PERMI +MIN_BBXMIN +MAX_BBXMIN +MIN_BBXMAX +MAX_BBXMAX +MIN_BBYMIN +MAX_BBYMIN +MIN_BBYMAX +MAX_BBYMAX MEAN_BBXC MEAN_BBYCUN_FIDPOP1950POP1955POP1960POP1965POP1970POP1975POP1980POP1985POP1990POP1995POP2000POP2005POP2010POP2015POP2020POP2025POP2050MIN_ZOOM +WIKIDATAIDWOF_IDCAPALTNAME_ENNAME_DENAME_ESNAME_FRNAME_PTNAME_RUNAME_ZHNAME_ARNAME_BNNAME_ELNAME_HINAME_HUNAME_IDNAME_ITNAME_JANAME_KONAME_NLNAME_PLNAME_SVNAME_TRNAME_VINE_IDNAME_FANAME_HENAME_UKNAME_URNAME_ZHT +GEONAMESIDfelt:cluster_size,tippecanoe:retain_points_multiplier_sequence)tippecanoe:retain_points_multiplier_firstPOP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990NAMEALTPOP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINTIMEZONEPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990POP_MINPOP1990NAMEPARPOP_MINPOP1990POP_MINPOP1990POP_MINPOP1990" +CA" +RU" +US" +CAN" +RUS" +USA" +Kobuk" +Alaska" +Ambler" +Barrow" +Canada" +Holman" +Inuvik" +Q79333" +Q79350" +Q79395" +Q79408" +Q79714" +Q79717" +Q79809" +Q79810" +Q79813" +Q80033" +Q80133" +Russia" +ๅทด็ฝ—" +ๅทด็พ…" +๋ฐฐ๋กœ" +์ฝ”๋ถ" +ํ™€๋งŒ" +Atqasuk" +Nunavut" +Q338686" +Q465235" +Q602422" +Q606622" +Q718822" +Q719547" +Q719585" +Q719605" +Q719611" +Q719707" +Q924763" +Selawik" +Wiseman" +ฤฐnuvik" + +Enurmino" + +Kaktovik" + +Kivalina" + +Kotzebue" + +Paulatuk" + +Q1013046" + +Q1014088" + +Q1014119" + +Q1020259" + +Q1938137" + +Q2305684" + +Resolute" + +Taloyoak" + +Zvezdnyi" + +Zvezdnyj" + +Zvezdnyy" + +Zvjozdny" + +ื‘ืืจื•" + +ุจุงุฑูˆ" + +ุจŒุฑูˆ" + +ฺฉูˆุจฺฉ" + Allakaket" + Enoermino" + Enourmino" + Kugluktuk" + Utqiagvik" + Zvรซzdnyj" + ใ‚ณใƒ–ใ‚ฏ" + ใƒใƒญใƒผ" + ๅ‰‘ๆกฅๆนพ" + ๅŠๆฉ‹็ฃ" + ๅฎ‰ๅธƒๅ‹’" + ๆ‡ทๆ–ฏๆ›ผ" + ๆธฉ่ต–็‰น" + ็ง‘ไผฏๅ…‹" + ็ง‘็ญ–ๅธƒ" + ็ด„้˜ฟๆธฏ" + ่‚ฒ็ฉบๅ ก" + ์…€๋ผ์œ…" + ์•ฐ๋ธ”๋Ÿฌ" + ์•ณ์ฟผ์„" + ์ด๋ˆ„๋น…" + ์ฝ”์ฒด๋ถ€" + +Fort Yukon" + +Gjoa Haven" + +Point Hope" + +Ulukhaktok" + +Utqiaฤกvik" + +Wainwright" + +ะšะพะฑัƒะบ" + +ืืœืงืงื˜" + +ืืžื‘ืœืจ" + +ื—ื•ืœืžืŸ" + +ืงื•ื‘ื•ืง" + +ุงู…ุจู„ุฑ" + +ุงู†ูˆุฆฺฉ" + +ุฑุฒู„ูˆุช" + +ูƒูˆุจูˆูƒ" + +ฺฉูˆุจูˆฺฉ" + Fort Yukรณn" + Mys Chmidta" + Mys Shmidta" + Mys Sjmidta" + Mys Szmidta" + Mys ล midta" + Prudhoe Bay" + Tuktoyaktuk" + Ikaluktutiak" + Mys Schmidta" + Resolute Bay" + Tsiigehtchic" + ฮ†ฮผฯ€ฮปฮตฯ" + ฮงฯŒฮปฮผฮฑฮฝ" + ะ†ะฝัƒะฒั–ะบ" + ะะผะฑะปะตั€" + ะ‘ะฐั€ั€ะพัƒ" + ะ˜ะฝัƒะฒะธะบ" + ะšะพั†ะตะฑัƒ" + ื•ื•ื™ื–ืžืŸ" + ื˜ืœื•ื™ืืง" + ืงื•ืฆื‘ื™ื•" + ืจื–ื•ืœื•ื˜" + ุฃู…ุจู„ูŠุฑ" + ุฅู†ูˆููŠูƒ" + ุงŒู…ุจู„ุฑ" + ุณู„ุงูˆŒฺฉ" + ุณŒู„ุงูˆฺฉ" + ุณŒฺฏŒฺ†ฺฉ" + ู‡ูˆู„ู…ุงู†" + ูˆุงŒุฒู…ู†" + ูพุงู„ุชุงฺฉ" + ูพูˆู„ุงูนฺฉ" + ูˆู„ู…ุงู†" + ๅŠชๅ‹’็ถญ็‰น" + ๅ› ็บฝ็ปดๅ…‹" + ๅŸบ็“ฆๅˆฉ็บณ" + ๅก”ๆด›็ด„ๅ…‹" + ๅกžๆ‹‰ๅจๅ…‹" + ๆ–ฝๅฏ†็‰นๅฒฌ" + ๆณขๆ‹‰ๅœ–ๅ…‹" + ้›ท็ดขๅข็‰น" + ้ฝŠๆ ผๅฅ‡ๅ…‹" + ๋šํ† ์•ฝํˆญ" + ๋ฆฌ์†”๋ฃจํŠธ" + ์•Œ๋ผ์นด์ผ“" + ์™€์ด์ฆˆ๋งจ" + ์น˜์ด๊ฒŒ์น˜" + ํ‚ค๋ฐœ๋ฆฌ๋‚˜" + ํƒˆ๋กœ์š”ํฌ" + ํŒŒ์šธ๋ผํˆญ" + Cambridge Bay" + United States" + ํฌํŠธ ์œ ์ฝ˜" +America/Inuvik" +America/Juneau" +Campbridge Bay" +Fort McPherson" +Prudhoe-รถbรถl" +ฮ™ฮฝฮฟฯฮฒฮนฮบ" +ฮšฮฟฮผฯ€ฮฟฯฮบ" +ฮœฯ€ฮฌฯฮฟฮฟฯ…" +ฮฃฮตฮปฮฑฮฒฮฏฮบ" +ะั‚ะบะฐััƒะบ" +ะ’ะฐะนะทะผะตะฝ" +ะŸะพะปะฐั‚ัƒะบ" +ะกะตะปะฐะฒะธะบ" +ะกะตะปะฐะฒั–ะบ" +ะฃะฐะนะทะผะตะฝ" +ะฆั–ะณะตั‡ะธะบ" +ืื˜ืงืืกื•ืง" +ืื™ื ื•ื•ื™ืง" +ืกืœืื•ื•ื™ืง" +ืงืงื˜ื•ื‘ื™ืง" +ุขุชฺฉุงุณูˆฺฉ" +ุขู„ุงฺฉุงฺฉุช" +ุงŒู†ูˆูˆŒฺฉ" +ุงŒูนู‚ุงุณฺฉ" +ุจูˆู„ุงุชูˆูƒ" +ุชุงู„ูˆŒูˆฺฉ" +ุชุณŒฺฏฺ†Œฺฉ" +ุฒูˆŒุฒฺˆู†ุฌ" +ุณูŠู„ุงูˆูŠูƒ" +ูƒูˆุชุฒุจูŠูˆ" +ู†ูˆุฑู…Œู†ูˆ" +ูˆุงุฆุฒู…Œู†" +ูˆูŠู†ุฑุงูŠุช" +ูˆŒู†ุฑุงุฆูน" +ูˆŒู†ุฑุงŒุช" +ูนุงู„ูˆŒูˆฺฉ" +ฺฉฺฏ ู„ฺฉ ุชฺฉ" +ฺฉŒฺฉูนูˆูˆฺฉ" +Populated place" +ุฌูˆุง Œูˆู†" +ูˆุงูŠุฒ ู…ุงู†" +ูพุฑูˆุฏูˆ ุจŒ" +เค•เฅ‹เคฌเฅเค•" +เฆ•เฆธเง‡เฆญเง‹" +เฆ•เง‹เฆฌเงเฆ•" +ใ‚ขใƒณใƒ–ใƒฉใƒผ" +ใ‚จใƒŒใƒซใƒŸใƒŽ" +ใ‚ซใ‚ฏใƒˆใƒ“ใ‚ฏ" +ใ‚ญใƒใƒชใƒผใƒŠ" +ใ‚ปใƒฉใ‚ฆใ‚ฃใ‚ฏ" +ใ‚ฟใƒญใƒจใƒผใ‚ฏ" +ใƒฏใ‚คใ‚บใƒžใƒณ" +ๅกๅ…‹ๆ‰˜็ปดๅ…‹" +ๆ™ฎๆ‹‰ๅพท้œๆนพ" +ๆ™ฎๆ‹‰ๅพท้œ็ฃ" +ๆณขๅ› ็‰น้œๆ™ฎ" +็ƒ่ทฏๅกๆ‰˜ๅ…‹" +่‰พๅฅด็ˆพ็ฑณ่ซพ" +่‰พ็‰น่ทจ่จๅ…‹" +่Œฒ้Ÿ‹่Œฒๅพทๅฐผ" +่ฟˆๆ–ฏๆ–ฝๅฏ†่พพ" +้˜ฟๆ‹‰ๅกๅŸบ็‰น" +้บฅๅ…‹ๅผ—ๆฃฎๅ ก" +้บฆๅ…‹ๅผ—ๆฃฎๅ ก" +์—๋ˆ„๋ฅด๋ฏธ๋…ธ" +์›จ์ธ๋ผ์ดํŠธ" +์นดํฌํ† ๋น„ํฌ" +์ฟ ๊ธ€๋ฃฉํˆฌํฌ" +America/Resolute" +Vแป‹nh Cambridge" +ฮ‘ฮปฮฑฮบฮฌฮบฮตฯ„" +ฮ‘ฯ„ฮบฮฑฯƒฮฟฯฮบ" +ฮ–ฮฒฮญฮถฮฝฯ„ฮนฮณ" +ฮšฮฌฮบฯ„ฮฟฮฒฮนฮบ" +ฮšฮนฮฒฮฑฮปฮฏฮฝฮฑ" +ฮกฮตฯƒฮฟฮปฮฟฯฯ„" +ะ’ะตะนะฝั€ะฐะนั‚" +ะ•ะฝัƒั€ะผั–ะฝะพ" +ะ—ะฒั‘ะทะดะฝั‹ะน" +ะšะฐะบั‚ะพะฒะธะบ" +ะšะฐะบั‚ะพะฒั–ะบ" +ะšะธะฒะฐะปะธะฝะฐ" +ะŸะฐัƒะปะฐั‚ัƒะบ" +ะ ะตะทะพะปัŒัŽั‚" +ะขะฐะปะพะนะพะฐะบ" +ะฃัะนะฝั€ะฐะนั‚" +ะฆะธะณะตั‚ั‡ะธะบ" +ะญะฝัƒั€ะผะธะฝะพ" +ืื ื•ืจืžื™ื ื•" +ื•ื™ื™ื ืจื™ื™ื˜" +ืคืื•ืœืื˜ื•ืง" +ืฆื™ื’'ื˜ืฆ'ื™ืง" +ืงื™ื•ื•ืœื™ื ื”" +ุฃุชูƒูŠูˆุณูˆูƒ" +ุฃู„ุงูƒุงูƒูŠุช" +ุฅู†ูˆุฑู…ูŠู†ูˆ" +ุงู†ูˆุฑู…Œู†ูˆ" +ุชุงู„ูˆูŠูˆุงูƒ" +ุฑŒุณูˆู„ูˆุชŒ" +ุฒูˆูˆุฒุฏู†Œุฌ" +ุฒูŠูุงุฒุฏู†ูŠ" +ูƒุงูƒุชูˆููŠูƒ" +ูƒูŠูุงู„ูŠู†ุง" +ฺฉุงฺฉุชูˆูˆŒฺฉ" +ฺฉูˆุชุฒุงุจŒูˆ" +ฺฉูˆุชุฒู‡ุจŒูˆ" +ฺฉŒูˆุงู„Œู†ุง" +๋ฏธ์Šค ์Šˆ๋ฏธํƒ€" +์กฐ์•„ ํ—ค์ด๋ธ" +ํฌ์ธํŠธ ํ˜ธํ”„" +ํฌํŠธ ๋งฅํผ์Šจ" +ํ”„๋ฃจ๋„ ๋ฒ ์ด" +ะคะพั€ั‚-ะฎะบะพะฝ" +ืคื•ื™ื ื˜ ื”ื•ืค" +ืคืจื•ื“ื• ื‘ื™ื™" +ุจูˆูŠู†ุช ู‡ูˆุจ" +ูพุฑูˆฺˆูˆ ุจ’" +ูพูˆŒู†ุช ู‡ูˆูพ" +ฺฉู…ุจุฑŒุฌ ุจŒ" +ฺฉŒู…ุจุฑุฌ ุจ’" +ฮ“ฮฟฯ…ฮฌฮนฮถฮผฮฑฮฝ" +ฮ•ฮฝฮฟฯ…ฯฮผฮฏฮฝฮฟ" +ฮคฮฑฮปฮฟฮณฮนฮฟฮฌฮบ" +ะะปะปะฐะบะฐะบะตั‚" +ะ—ะฒัŒะพะทะดะฝะธะน" +ะšัƒะณะปัƒะบั‚ัƒะบ" +ื–ื‘ื™ื•ื–ื“ื ื™ื™" +ุงŒู„ุงฺฉุงฺฉŒูน" +ูƒูˆุบู„ูˆูƒุชูˆูƒ" +ู…ุงŒุณุดู…Œุชุง" +ูนฺฉูนูˆŒุงฺฉูนฺฉ" +ฺฉูˆฺฏู„ุงฺฉุชูˆฺฉ" +เค‡เคจเฅเคตเคฟเค•" +เคนเฅ‹เคฒเคฎเฅˆเคจ" +เฆ‡เฆจเงเฆญเฆฟเฆ•" +ใ‚ขใƒฉใ‚ซใ‚ญใƒƒใƒˆ" +ใ‚คใƒŒใƒดใ‚ฃใƒƒใ‚ฏ" +ใ‚ณใƒƒใƒ„ใƒ“ใƒฅใƒผ" +ใ‚ทใƒฅใƒŸใƒƒใƒˆๅฒฌ" +ใ‚บใƒดใƒงใ‚บใƒ‹ใ‚ฃ" +ใƒ‘ใ‚ฆใƒฉใƒˆใ‚ฅใ‚ฏ" +ใƒ—ใƒซใƒผใƒ‰ใƒผๆนพ" +ใƒฌใ‚พใƒชใƒฅใƒผใƒˆ" +ไผŠๅฐ”ๅบ“่Œจๅ…‹ๅทž" +ๅ›พๅ…‹ๆ‰˜ไบšๅ›พๅ…‹" +ๅœ–ๅ…‹ๆ‰˜ไบžๅœ–ๅ…‹" +ๅบ“ๆ ผ้ฒๅ…‹ๅ›พๅ…‹" +ๅบซๆ ผ้ญฏๅ…‹ๅœ–ๅ…‹" +์ฆˆ๋ฒ ์ฆˆ๋“œ๋‹ˆ์ด" +ฮœฮนฯ‚ ฮฃฮผฮฏฮฝฯ„ฮฑ" +ะ™ะพะฐ-ะ“ะตะนะฒะตะฝ" +ะ™ะพะฐ-ะฅะตะนะฒะตะฝ" +ะœะธั ะ‘ะฐั€ั€ะพัƒ" +ะœะธั ะจะผั–ะดั‚ะฐ" +ะœั‹ั ะจะผะธะดั‚ะฐ" +ะŸะพะนะฝั‚-ะ“ะพัƒะฟ" +ะŸะพะนะฝั‚-ะฅะพัƒะฟ" +ะŸั€ะฐะดั…ะพ-ะ‘ะตะน" +ืžื™ืก ืฉืžื™ื“ื˜ื”" +ืคื•ืจื˜ ื™ื•ืงื•ืŸ" +ุฌŒุฌูˆŒ ู‡Œูˆู†" +ููˆุฑุช ูŠูˆูƒูˆู†" +ููˆุฑุช Œูˆฺฉุงู†" +ููˆุฑูน Œูˆฺฉูˆู†" +ู…ูŠุณ ุดู…ูŠุฏุชุง" +ูพูˆุงุฆู†ูน ูˆูพ" +์บ ๋ธŒ๋ฆฌ์ง€ ๋ฒ ์ด" +ฮ“ฮฟฯ…ฮญฮนฮฝฯฮฑฯŠฯ„" +ฮšฮฟฯ„ฮถฮญฮผฯ€ฮฟฯ…ฮต" +ฮ ฮฑฮฟฯ…ฮปฮฑฯ„ฮฟฯฮบ" +ะขะฐะบั‚ะพัะบั‚ัƒะบ" +ะขัƒะบั‚ะพัะบั‚ัƒะบ" +ะฃะปัƒะบั…ะฐะบั‚ะพะบ" +ื’ื’'ื•ืื” ื”ืื‘ืŸ" +ื˜ื•ืงื˜ื•ื™ืื˜ื•ืง" +ืงื•ื’ืœื•ืœืงื˜ื•ืง" +ุงูˆู„ุงฺฉุงฺฉฺ†ูˆฺฉ" +ุชุณูŠุฌูŠู‡ุชุดูŠูƒ" +Northwest Territories" +ฮ“ฮบฯŒฮฑ ฮงฮญฮนฮฒฮตฮฝ" +ฮ ฯŒฮนฮฝฯ„ ฮงฯŒฮฟฯ…ฯ€" +ุฎู„ูŠุฌ ุจุฑูˆุฏู‡ูˆ" +ููˆุฑูน ู…ฺฉูุฑุณู†" +ู…ุฆŒุณ ุดู…Œุฏุชุง" +เคเคฎเฅเคฌเฅเคฒเคฐ" +เคชเฅ‰เคฒเคพเคคเฅเค•" +เคฐเฅ‡เคธเฅ‹เคฒเฅ‚เคŸ" +เคตเฅ‡เคจเคฐเคพเค‡เคŸ" +เคธเฅ‡เคฒเคพเคตเคฟเค•" +เฆ“เงŸเง‡เฆจเฆฐเฆฟเฆŸ" +เฆคเฆพเฆฒเง‹เงŸเฆพเฆ•" +เฆธเง‡เฆฒเฆพเฆ‰เฆ‡เฆ•" +ใ‚ขใƒƒใƒˆใ‚ซใ‚ตใƒƒใ‚ฏ" +ใ‚ฆใ‚งใ‚คใƒณใƒฉใ‚คใƒˆ" +ใ‚ฏใ‚ฐใƒซใ‚ฏใƒˆใ‚ฅใ‚ฏ" +ใƒใ‚คใƒณใƒˆใƒ›ใƒผใƒ—" +ุชูˆูƒุชูˆูŠุงูƒุชูˆูƒ" +ุชูˆฺฉุชูˆŒุงฺฉุชูˆฺฉ" +ฮ ฯฮฟฯฮฝฯ„ฮฟ ฮœฯ€ฮญฮน" +ฮฆฮฟฯฯ„ ฮ“ฮนฮฟฯฮบฮฟฮฝ" +ืคื•ืจื˜ ืžืงืคืจืกื•ืŸ" +ุฎู„ูŠุฌ ูƒุงู…ุจุฑุฏุฌ" +ู‚ุฑูŠุฉ ุฑูŠุฒูˆู„ูˆุช" +Chukchi Autonomous Okrug" +United States of America" +ฮคฯƒฮนฮณฮบฮญฯ‡ฯ„ฯƒฮนฯ„ฯ‚" +ููˆุฑุช ู…ฺฉ ูุฑุณูˆู†" +ู‚ุฑูŠุฉ ุบูˆุง ู‡ุงูู†" +เค…เคคเฅเค•เคพเคธเฅเค•" +เค…เคฒเคพเค•เคพเค•เฅ‡เคŸ" +เค‡เคจเคฐเฅเคฎเคฟเคจเฅ‹" +เค•เคฟเคตเคพเคฒเคฟเคจเคพ" +เคŸเคพเคฒเฅ‹เคฏเฅ‹เค†เค•" +เคตเคพเค‡เคœเคผเคฎเฅˆเคจ" +เฆ•เฆพเฆ•เฆคเง‹เฆญเฆฟเฆ•" +เฆ•เฆฟเฆญเฆพเฆฒเฆฟเฆจเฆพ" +เฆชเฆพเฆ‰เฆฒเฆพเฆŸเงเฆ•" +เฆฐเง‡เฆœเง‹เฆฒเฆฟเฆ‰เฆŸ" +เฆธเฆฟเฆ—เง‡เฆŸเฆ›เฆฟเฆ•" +เฆนเง‹เฆฒเฆฎเงเฆฏเฆพเฆจ" +ใ‚ฆใƒซใ‚ฏใƒใ‚ฏใƒˆใƒผใ‚ฏ" +ใ‚ธใƒงใ‚ขใƒปใƒ˜ใ‚คใƒดใƒณ" +ใƒˆใ‚ตใ‚คใ‚คใ‚ธใƒใƒƒใ‚ฏ" +ใƒ•ใ‚ฉใƒผใƒˆใƒฆใƒผใ‚ณใƒณ" +ะšะตะนะผะฑั€ะธะดะถ-ะ‘ะตะน" +ะšะตะนะผะฑั€ั–ะดะถ-ะ‘ะตะน" +ููˆุฑุช ู…ุงูƒูุฑุณูˆู†" +เคชเฅ‰เค‡เค‚เคŸ เคนเฅ‹เคช" +ฮšฮฟฯ…ฮณฮบฮปฮฟฯ…ฮบฯ„ฮฟฯฮบ" +ืงื™ื™ืžื‘ืจื“ื™ื’' ื‘ื™ื™" +ฮšฮญฮนฮผฯ€ฯฮนฯ„ฮถ ฮœฯ€ฮญฮน" +ฮฆฮฟฯฯ„ ฮœฮฑฮบฮฆฮญฯฯƒฮฟฮฝ" +ะคะพั€ั‚-ะœะฐะบั„ะตั€ัะพะฝ" +เค•เคพเค•เฅเคคเฅ‹เคตเคฟเค•" +เฆเฆจเฆฟเฆ‰เฆฐเฆฎเฆฟเฆจเง‹" +ใ‚ฑใƒณใƒ–ใƒชใƒƒใ‚ธใƒปใƒ™ใ‚ค" +ใƒˆใ‚ฅใ‚ฏใƒˆใƒคใ‚ฏใƒˆใ‚ฅใ‚ฏ" +ฮคฮฟฯ…ฮบฯ„ฮฟฮณฮนฮฌฮบฯ„ฮฟฯ…ฮบ" +เคœเคผเฅ‹เค† เคนเฅ‡เคตเฅ‡เคจ" +เคชเฅเคฐเฅเคฆเคนเฅ‹ เคฌเฅ‡" +เคฎเคฟเคธ เคถเฅเคฎเคฟเคคเคพ" +เฆชเงŸเง‡เฆจเงเฆŸ เฆนเง‹เฆช" +เฆซเง‹เฆฐเงเฆŸ เฆ‡เฆ‰เฆ•เฆจ" +เค‰เคคเฅเค•เฅ€เค—เฅเคตเคฟเค•" +เค•เฅเค—เฅเคฒเฅเค•เคŸเฅ‚เค•" +เค•เฅ‹เคŸเคœเคผเฅ‡เคฌเฅ‚เคฏเฅ‡" +เฆ…เงเฆฏเฆพเฆฎเงเฆฌเฆฒเฆพเฆฐ" +เฆ†เฆฒเงเฆฒเฆพเฆ•เฆพเฆ•เง‡เฆค" +เฆ‰เงŽเฆ•เฆฟเฆฏเฆผเฆพเฆญเฆฟเฆ•" +เฆ“เงŸเฆพเฆ‡เฆœเฆฎเงเฆฏเฆพเฆจ" +เฆ•เงเฆ—เงเฆฒเงเฆ•เฆŸเงเฆ•"! +เฆ—เฆœเง‹เงŸเฆพ เฆนเฆพเฆญเง‡เฆจ"! +เฆชเงเฆฐเงเฆฆเง‹เฆนเง‡ เฆฌเง‡"# +!เคคเฅเคธเฅ€เค—เฅ‡เคคเฅเคšเคฟเค•"# +!ใƒ•ใ‚ฉใƒผใƒˆใƒžใ‚ฏใƒ•ใ‚กใƒผใ‚ฝใƒณ"$ +"เค•เฅˆเคฎเฅเคฌเฅเคฐเคฟเคœ เคฌเฅ‡"$ +"เคซเคผเฅ‹เคฐเฅเคŸ เคฏเฅ‚เค•เฅ‰เคจ"$ +"เฆ•เง‡เฆฎเงเฆฌเงเฆฐเฆฟเฆœ เฆฌเง‡"$ +"เฆฎเฆพเฆ‡เฆธ เฆถเงเฆฎเฆฟเฆฆเฆคเฆพ"& +$เฆ…เงเฆฏเฆพเฆŸเฆ•เง‹เงŸเฆพเฆธเงเฆ•"& +$เฆœเง‡เฆญเง‡เฆœเฆฆเฆฟเฆจเฆฟเงŸเฆพเฆœ"& +$เฆคเงเฆ•เฆคเง‹เฆ‡เงŸเฆพเฆ•เฆคเงเฆ•") +'เคœเคผเฅเคตเฅ‡เคœเคผเฅเคฆเคจเคฟเคœเคผ") +'เคคเฅเค•เฅเคคเฅ‹เคฏเคพเค•เฅเคคเฅเค•"0 +.เคซเคผเฅ‹เคฐเฅเคŸ เคฎเฅˆเค•เคซเคผเคฐเฅเคธเคจ"0 +.เฆซเง‹เฆฐเงเฆŸ เฆฎเงเฆฏเฆพเฆ•เฆซเฆพเฆฐเฆธเฆจ" …B"@ŒB" ร" ~$AQ@" จฉek•bภ" bูฬ!bQ@" ถJฐ8ฝQ@"  ๛vฉQ@"  ๛vนP@"  ฤฒ™นWภ"  ฆa๘ˆลP@" ผZ๎Ldภ" ผZ๎ฬผP@" ^dภ" ^)bภ" ^ูdภ" 4ป๎^ภ" Zœ!zeภ" ฿—ช๚Wภ" ี""๔aภ" ๓N˜cภ" #๔3๕บP@" %หI(}ฆP@" *8ผ "Q@" *8ผ "bQ@" *8ผ "bWภ" *8ผ "บP@" *8ผ "าQ@" -ฒ๏งcภ" 6=((EฺP@" 9 ฅ/„นP@" <.ชEDˆQ@" <.ชEDคP@" >ฯŸ6ชฌcภ" HO‘CDdภ" HO‘CD(bภ" HO‘CDุdภ" HO‘CD๔aภ" HRาระ๎P@" Q†QบP@" Sฑ1ฏฃ`ภ" `YiR +žQ@" `“5๊!bWภ" fffffQ@" fffffbQ@" ffffff@" j›฿0คP@" nฃผศ\ภ" p๏๔ฅฆP@" rPยLูdภ" uš]Q@" uสฃแrfภ" yฐลnŸ…Q@" {‚ฤvw'bภ" {‚ฤvwSdภ" }[ฐTSdภ" …};‰ˆdภ" ‹ฤ5|GQ@" ž"‡ˆˆQ@" ž"‡ˆจQ@" ž"‡ˆนP@" ‘ธวา‡(Q@" —:ศ๋ม;Q@" —uXˆXQ@" š™™™™Rdภ" š™™™™aWภ" š™™™™™ @" š™™™™™cภ" œj-ฬย(bภ" น‡„๏ฎQ@" žajK๓P@" ฃ”ฌชbQ@" คPพ>ปcภ" ฆ +F%u฿P@" งฮฃโท`ภ" จ‹สยจQ@" ช*4K๓aภ" ฌ‡พปซR@" ญkด่าQ@" ฏต๗ฉชุdภ" ธฬ้ฒ˜าQ@" ฟrofภ" ภuลŒpรbภ" ฤัUบปฃP@" ฤัUบปำQ@" ล็Nฐo]ภ" วฝ๙ “ก`ภ" หiOษ9dภ" อฬฬฬฬdภ" อฬฬฬฬจQ@" อฬฬฬฬฬ@" ฮเ๏ณ’Q@" าY๙eQ@" ึวC฿Q@" ึวC฿aWภ" ึวC฿ฅP@" ื<ี!BZภ" โ่*Qdภ" ไ/-๊“dภ" ็pญ๖0œcภ" ่ภr„Œdภ" ้ัTOfถ`ภ" ๋ใก๏๎–cภ" ๓ศ <™cภ" ๔จ๘ฟ#คP@" ๗‰ํ๎ฆP@" " " " " " " " " " +" " " " " " " " 2" a" d" e" n" ทภ " แจ" ‚" ƒ" + ƒฐใฉ‹›ด๘" ƒฯภ " „" + „ไŠษมภฐ๘" + …ิษ„‡รต๘" †" ‡สภ " ‰๗จ" + Š๑ภƒำำฬ๘" ‹" ‹ " ‹ธภ " Œษ๘" ธภ " Ž" + ŽŽ”ซิเพ๘" ‘พภ " ’ " ’" + ’ฐ…Ž”ต๘" “ " + •‘ฌฦษำถ๘" – +" —" —๐๛(" + ˜‹แต…แฐ๘" ›ทภ " ทภ " +  ฐาจโถ๘" ก" + ก’กฌต๘" + กนฺแ่ต๘" ฃ๕จ" ฅ +" + ฅ’เ”™ุต๘" ฅ๕จ" ฆ" ง" จ" ฉ" + ฉรฆญีหต๘" ซ" + ซ“แคถ‘๘" ซ๕จ" ซ๖จ" ญ" ญ" ฎ" ฎ" ฏ" ฏ" ฏ" ฏ" ฏ " ฏห๘" ฏฮภ " ฑ" ฑ " ฑทภ " ฒะ๕" + ฒึฐฺเ†ด๘" ณธม0" ต " ถ" + ถ•ฦะภฬ๘" ทบจ" ทปภ " ทหจ" ทฮภ " ธ" นฬภ " นโจ" บย๋" ปโจ" ฝธม0" พ " ฟหจ" ภ" + ภŠใƒ“ธด๘" ม" มแ์" ร๛จ" ฤ" ล " ษ" ษ๊จ" อ" ฮ" ฯŽจ" ัฆ๔" ัปภ " + ั๐ฐฒกฌ‹๘" า" + ำ™ีฐร•‹๘" ำ๗จ" + ิต…ลฐ๘" + ิบ๋เค‚ถ๘" ี" ี๗จ" ึ‡๘" ื๊จ" ุŽ" ุ๎๋" + ’ะั–ฅ‰๘" ๊จ" " " ปจ" ฮภ " ฿ทม0" ฿ปภ " ฿ยจ" ฿๗จ" แฺ" แ๖จ" โ" โ" โ๘่" ในภ " ใ๎ํ" ๅ" ๅนภ " ๆ" ๆ‰ๆ" + ฺ่ชๆไพ๘" + ้์’ฬ„ต๘" ้ษภ " ๋" ๋ปจ" ๋๖จ" ์" ํ‰๖" ํษภ " ๏ทม0" ๐!" + ๐…ผดฺ่ฐ๘" ๑ษภ " ๑฿จ" + ๒…ละฌ๊ฐ๘" + ๓€ผ†ฐรฐ๘" ๔" + ๕ฑยŒ‹‡ด๘" ๕฿จ" ๖" ๖๑ๆ" ๗" ๗šํ" ๗ผจ" ๙" ๙ใๆ" ๚" ๚" ๛ " ฿จ" " ๓๛("0"8จ™้›œ”ล““ “ +  ๋ าส“••““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“9“:“;“<“=“>“?“@“A“BšCDฉE“FGHIJKจLูMNขOๆP๏QRST฿UVVWXYZ[๎\ณ]ฏ^จ_ถ`ูaษb”cพdสญ" Šจ8Ÿฐ›œ”ล““ “ +  ๋ ะŒฤeฤ“””““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“f“:“;“<“=“>“?“@“A“BšC DวE“FGHIJK_LPMgNหOฅPษQRSTIUVWXYZ[˜\h]c^__B`Paษb”cฌdสน" ธฆ?จ™ท›œ”ล++““ “ +  ๋ ูด๚g๚ ••+๚““““œ”” “!“"˜#˜$–%–&'(ห)ห*ˆ+ˆ,’-’.‹/ฟ0“1“2“3“4“5“6“7“8“h“:“;“<“=“>“?“@“A“BšCDศE“F+G+H+I+J+KซLMปNOงPQ+R+S+TะUTV+W+X+Y+Z+[ญ\ƒ]ฑ^ฌ_„`aษb”cฏdสบ" œ์?จ™ธ›œ”ลCC““ “ +  ๋ ืลฅiฅ“””C““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“j“:“;“<“=“>“?“@“A“BšCD็E“FCGCHCICJCKšLMN–OๅP๐QCRCSCTฆU–VCWCXCYCZC[ภ\ด]`^š_ž`aษb”cปdสฤ" บ๔?จ™›œ•ล..““ “ +   ๊ตบิkิ“••.““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“l“:“;“<“=“>“?“@“A“BšC7DธE“F.G.H.IEJ.K๖LุMN‰O˜P๑Q.R.S.TอU฿VDW.X.Y.Z.[๐\]๗^์_ฝ`ุaฐb”c฿dส" ่œ?ฉ›ื›œ•ลHm=<““ “ +   ๊ฏœnœ“””=““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“o“:“;“<“=“>“?“@“A“BšC8DบE“FHGHHHIHJHKํLฎMƒNฃO็PฅQHRW;XHYHZH[๙\‚]^›_บ`ฺaษb”cๅdสƒ" & 7จ™ํ›œ•ล22““ “ + +  + ั่นัpั“••2““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“q“:“;“<“=“>“?“@“A“BšC!DฃE“F2G2H2I2J2KชL‘MทN๗OศPุQ2R2S2TซU›V2W2X2Y2Z2[๔\ˆ]๙^๑_‰`‘a†b”cdสฌ " ๊'ศ:จ™ฯ›œ•ลtt““ “ + +  + ัพ๓r“””t““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“s“:“;“<“=“>“?“@“A“BšC4DฆE“FtGtHtItJtK๕L“MะN๙O์PœQtRtStTU˜VtWtXtYtZt[๖\น]๚^ฎ_…`“aนb”cเdสญ " ๒ ช>ฉšดšก”ล00““ “ +  ๋ ฯผtผ“••0““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“u“:“;“<“=“>“?“@“A“BƒCD๏E“F0G0H0I0J0K๐LM…N๖O้P๒Q0R0S0TฯU™V0W0X0Y0Z0[ู\‰]๛^๐_‰`aษb”cสdส๑" „ โ=ก’Œšก”ล““ “ +  ๋ ณ๑ซvซ“••““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“w“:“;“<“=“>“?“@“A“BƒC"D‡E“FGHIJKxLMM€N•OuPืQRSTฬUUVWXYZ[Ÿ\d]a^x_‚`Maษb”cฺdส" เ>ฆ—ฦšก”ล11““ “ +  ๋ วเฤxม‰——1มม“““ก–– ”!”"ž#ž$›%›&฿'฿(Š)Š*ฑ+ฑ,ร-ร.้/ๅy 0“1“2“3“4“5“6“7“8“z“:“;“<“=“>“?“@“A“BƒCDลE“F1G1H1I1J1K{LQMผNสOวP”Q1R1S1TจUXV1W1X1Y1Z1[ฎ\ˆ]~^{_‡`Qaจb”cแdส" ฐ จ?ฆ—หšก”ล,,““ “ +  ๋ ฦ๛Ÿ{Ÿ“””,““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“|“:“;“<“=“>“?“@“A“BƒC*D›E“F,G,H,I,J,KญLNMวN˜O—P๔Q,R,S,TาU—V,W,X,Y,Z,[ด\‡]|^ฉ_พ`Naยb”c์dส†"  ฐ>ง™ษšก•ลkk““ “ +   ๊็๚ฏ}ฏ“••k““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“~“:“;“<“=“>“?“@“A“BƒC6DฝE“FkGrHkIjJkKนLMรNกOดPQkRkSnTฉUŠVlWmXlYkZk[…\ ]ฝ^ธ_ึ`a’b”cถdส•" .บ;ผญภšก•ลขข““ “ + +  + ั๒ั“––ข““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“yŸ0“1“2“3“4“5“6“7“8“€“:“;“<“=“>“?“@“A“BƒC5DšE“FขGขHขIขJขK‡LMNจO†PงQขRขSขTUVขWขXขYขZข[œ\ํ]็^‡_ี`a๕b”cฮdสส!" Š œ>ฉš๛™ฃ”ล^^““ “ +  ๋ ๔€“””^“““ก”” “!“"—#—$–%–&ถ'ถ(แ)แ*ไ+ไ,ฐ-ฐ./‚0“1“2“3“4“5“6“7“8“‚“:“;“<“=“>“?“@“A“B™CDซE“F^G^H^I^J^K๔LOMฟNOฦPฺQ^R^S^TเUเV^W^X^Y^Z^[ถ\ม]๘^๋_ภ`Oaษb”cโdสอ*" ˜๚7ซœฬ™ฃ”ล//““ “ +  ๋ ๕งƒง“””/งง“““ก““ “!“"•#•$•%•&ฮ'ฮ(ซ)ซ*ช+ช,ใ-ใ.ผ/ศ0“1“2“3“4“5“6“7“8“„“:“;“<“=“>“?“@“A“B™CDฑE“F/G/H/I/J/K๎LำM„N๕O่PˆQ/R/S/TฮUแV/W/X/Y/Z/[ป\†]ฒ^๏_ฤ`ำaษb”cๆdสฯ*" ๐Ž9ฉšช™ฃ”ลYY““ “ +  ๋ ‘ํ…ฌ••Y“““ก•• ”!”"#$š%š&ท'ท()*+,ษ-ษ.ฬ/ฉ0“1“2“3“4“5“6“7“8“†“:“;“<“=“>“?“@“A“B™CDตE“FYGYHiIYJYKLSMภN‘OๆPŸQYRYSYTUžVYWYXYYYZY[ฦ\ม]พ^_ย`Saษb”c๋dสำ*" ุ๔?ง˜ˆ™ฃ•ล  ““ “ + +  + ั๎น‡ป“•• ““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“ˆ“:“;“<“=“>“?“@“A“B™C$DณE“F\G\H I\J\KหLืM†N๚OvPคQ R S\T๛UV\W X\Y\Z [ช\ฯ]b^ห_Š`ืab”c๘dส+" ข,7ช›ฉ™ฃ•ลZZ““ “ + +  + ๆปŽ‰Ž“––Z““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“yใ0“1“2“3“4“5“6“7“8“Š“:“;“<“=“>“?“@“A“B™C&D๗E“FZGZHZIZJZKถLRM๎NšOาPQZRZSZTU‹VZWZXZYZZZ[‚\ฟ]ฬ^ต_ฦ`Ra“b”cทdสญ/" ๆ;†<ฉšฑ™ฃ•ล  ““ “ + +  + ั…Ž„‹„“—— ““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“yŸ0“1“2“3“4“5“6“7“8“Œ“:“;“<“=“>“?“@“A“B™C DฒE“F G H I J KzLŒMNฅOคPฃQ R S TงUWV W X Y-Z [‘\ต]ฐ^w_e`Œaฟb”cพdสด/" ๖ ฬ<ช›ี™ฃ•ลpp““ “ + +  + ัสง“••p““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“Ž“:“;“<“=“>“?“@“A“B™C%D๓E“FpGpHpIpJpKษLฏMใNคOŒPฆQpRpSpT‹U”VpWpXpYpZp[•\ไ]อ^ส_ก`ฐaใb”cมdสต/" ฒ!ด:ถงŠ—ค•ลœœ““ “ + +  + โ‰€€“––ก““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8““:“;“<“=“>“?“@“A“BึC(DไE“FœGœHœIqJœKLKM่N O…PžQœRœSœTŠUลVœWœXœYœZไ[อ\•]„^€_–`Laขb”cาdสŽ4" จ5Œ;ฌต—ค•ลFF““ “ + +  + ๏ุร‘ร“––F““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“yใ0“1“2“3“4“5“6“7“8“’“:“;“<“=“>“?“@“A“BึC)D๊E“FFGFHFIFJFKœLฑMŸN™OƒP“QFRFSFTแUโVFWFXFYFZF[ะ\ข]ฮ^œ_ร`ฒaคb”cำdส4" ’.า=จ™ผ—ค•ล::““ “ + +  + ฎำฒ“ฒ“••:ฒฒฒ““ค““ “!“"–#–$•%•&ย'ย(๊)๊*ม+ม,๐-๐.‡/ี0“1“2“3“4“5“6“7“8“”“:“;“<“=“>“?“@“A“BึC'D๑E“F:G:H:I:J:K๓LŽM€NO™P๓Q:R:S:TัUšV:W:X:Y:Z:[ุ\ธ]}^๓_ย`Žab”cึdส’4" พ= :ซœย–จ”ล[[““ “ +  ๋ ฌฺƒ•ƒ“••[““ƒ““ค”” “!“"™#™$—%—&ธ'ธ(อ)อ*†+†,ิ-ิ.๘/ภ0“1“2“3“4“5“6“7“8“–“:“;“<“=“>“?“@“A“B˜CD™E“F[G[H[I[J[KปLึM’NOำP‚Q[R[S[TโUŒV[W[X[Y[Z[[‹\”]^บ_ฤ`ึaษb”c–dส•5" ฐ ฬ<จ™บ–จ”ล]— ]““ “ +  ๋ ๙ณ˜๒ล—— ๒๒๒๒“ฆ™™ •!•"ข#ข$ % &์'์()*ฤ+ฤ,-.ฝ/๗y 0“1“2“3“4“5“6“7“8“™“:“;“<“=“>“?“@“A“B˜CDžE“FGG]HGIGJ KyLM@N—OฆP’Q]R S]TJUV W X Y ZG[\@]?^ท_A`aฝb”c—dส–5" ภย6ฌญ–จ”ลoo““ “ +  ๋ „ญšว“——o““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8“›“:“;“<“=“>“?“@“A“B๋C3DศE“FoGoHoIoJoKผLิMิN›OๅPŽQฃRoSoTฌUŽVoWoXoYoZo[\ศ]‘^ผ_“`ีaษb”cกdส›5" คุ8ง˜”–จ•ล99““ “ + +  + ๖ฒรœฅ“••9““““““““ “!“"“#“$“%“&“'“(“)“*“+“,“-“.“/“0“1“2“3“4“5“6“7“8““:“;“<“=“>“?“@“A“B˜C#DฎE“F9GsH9I9J9K๒L’M้N๘O๊PูQ9R9S9TญU•V9W9X9Y9Z9[\f]^๒_`‹a่b”cฟdส๒6" ย< . \ No newline at end of file diff --git a/tests/10188-crash/bins.json b/tests/10188-crash/bins.json new file mode 100644 index 000000000..6cd9f1fd6 --- /dev/null +++ b/tests/10188-crash/bins.json @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "id": 585587798325592063, "properties": {"felt:h3_level": 2, "felt:bin_features": "5337"}, "geometry": {"type": "Polygon", "coordinates": [[[-46.80769229712744, 64.04587914821998], [-50.666394025640784, 64.35430188438744], [-53.01093487395563, 62.95067649282497], [-51.550082921060856, 61.33081918088026], [-48.04232110294612, 61.070843759573435], [-45.66654684595361, 62.38541593193917], [-46.80769229712744, 64.04587914821998]]]}}, {"type": "Feature", "id": 585588348081405951, "properties": {"felt:h3_level": 2, "felt:bin_features": "3944,5341,6588"}, "geometry": {"type": "Polygon", "coordinates": [[[-51.26271142069233, 68.99050301252431], [-56.071292790866345, 69.19623455946773], [-58.598270292718745, 67.72706533699171], [-56.49997372257031, 66.15594458444963], [-52.236601272126784, 65.98587422595433], [-49.57149511280504, 67.35417312359894], [-51.26271142069233, 68.99050301252431]]]}}, {"type": "Feature", "id": 585588897837219839, "properties": {"felt:h3_level": 2, "felt:bin_features": "6980"}, "geometry": {"type": "Polygon", "coordinates": [[[-52.236601272126784, 65.98587422595433], [-56.49997372257031, 66.15594458444963], [-58.725707805023305, 64.6599175449764], [-56.83926280965463, 63.08845327665033], [-53.01093487395563, 62.95067649282497], [-50.666394025640784, 64.35430188438744], [-52.236601272126784, 65.98587422595433]]]}}, {"type": "Feature", "id": 585589997348847615, "properties": {"felt:h3_level": 2, "felt:bin_features": "5339"}, "geometry": {"type": "Polygon", "coordinates": [[[-40.335387826720726, 64.84056407245838], [-44.12334356355083, 65.31881724104973], [-46.80769229712744, 64.04587914821998], [-45.66654684595361, 62.38541593193917], [-42.198529876646504, 61.97272690603169], [-39.56813625393488, 63.15915174626515], [-40.335387826720726, 64.84056407245838]]]}}, {"type": "Feature", "id": 585705995825577983, "properties": {"felt:h3_level": 2, "felt:bin_features": "1025"}, "geometry": {"type": "Polygon", "coordinates": [[[-177.73737155731018, 69.21258919215596], [179.56243278742426, 67.75762829464864], [-178.5116045749234, 66.22512849903984], [-174.29157888223213, 66.0652649892341], [-171.4567231620738, 67.39429182984122], [-172.92604370108882, 69.00495510831308], [-177.73737155731018, 69.21258919215596]]]}}, {"type": "Feature", "id": 585707095337205759, "properties": {"felt:h3_level": 2, "felt:bin_features": "2838"}, "geometry": {"type": "Polygon", "coordinates": [[[174.94683633255818, 67.75010398676802], [172.86137139869209, 66.19292316051032], [175.09689991728033, 64.75692907396628], [179.15613950339954, 64.7804865813286], [-178.5116045749234, 66.22512849903984], [179.56243278742426, 67.75762829464864], [174.94683633255818, 67.75010398676802]]]}}, {"type": "Feature", "id": 585707645093019647, "properties": {"felt:h3_level": 2, "felt:bin_features": "5709"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.5116045749234, 66.22512849903984], [179.15613950339954, 64.7804865813286], [-179.11117538442045, 63.29242332756059], [-175.35492453543588, 63.172437771438275], [-172.9029869884375, 64.50370485353399], [-174.29157888223213, 66.0652649892341], [-178.5116045749234, 66.22512849903984]]]}}, {"type": "Feature", "id": 585715341674414079, "properties": {"felt:h3_level": 2, "felt:bin_features": "6083"}, "geometry": {"type": "Polygon", "coordinates": [[[-74.70637691776197, 59.1392445862628], [-78.08810459236533, 58.68438659429741], [-78.88333974817974, 56.93401450819165], [-76.55890845203461, 55.68039630830491], [-73.43847475450943, 56.097969987348556], [-72.39518626473647, 57.80385928059021], [-74.70637691776197, 59.1392445862628]]]}}, {"type": "Feature", "id": 585716990941855743, "properties": {"felt:h3_level": 2, "felt:bin_features": "1605,6060"}, "geometry": {"type": "Polygon", "coordinates": [[[-71.09615425545397, 64.26709141026762], [-75.12759866083337, 63.90545688327906], [-76.22600976416577, 62.1747288300192], [-73.63078937271493, 60.86152341713838], [-69.97576885027517, 61.192356916698365], [-68.56493483321289, 62.864503576884395], [-71.09615425545397, 64.26709141026762]]]}}, {"type": "Feature", "id": 585717540697669631, "properties": {"felt:h3_level": 2, "felt:bin_features": "4326"}, "geometry": {"type": "Polygon", "coordinates": [[[-69.97576885027517, 61.192356916698365], [-73.63078937271493, 60.86152341713838], [-74.70637691776197, 59.1392445862628], [-72.39518626473647, 57.80385928059021], [-69.0549959056329, 58.11001927435266], [-67.73084359215947, 59.77423949635842], [-69.97576885027517, 61.192356916698365]]]}}, {"type": "Feature", "id": 585718090453483519, "properties": {"felt:h3_level": 2, "felt:bin_features": "6059,6082"}, "geometry": {"type": "Polygon", "coordinates": [[[-78.07765942986177, 65.18096713675398], [-82.11527411969873, 64.62882942983263], [-82.82964532461183, 62.858571659674325], [-79.91075404456411, 61.67566974904422], [-76.22600976416577, 62.1747288300192], [-75.12759866083337, 63.90545688327906], [-78.07765942986177, 65.18096713675398]]]}}, {"type": "Feature", "id": 585719189965111295, "properties": {"felt:h3_level": 2, "felt:bin_features": "6682"}, "geometry": {"type": "Polygon", "coordinates": [[[-68.28522476924562, 55.04028786795802], [-71.35880410733455, 54.7541932069041], [-72.36552336733274, 53.072556987459954], [-70.47759696544072, 51.73263802593275], [-67.63234627523188, 52.0021714141552], [-66.45904513881723, 53.627026853428696], [-68.28522476924562, 55.04028786795802]]]}}, {"type": "Feature", "id": 585719739720925183, "properties": {"felt:h3_level": 2, "felt:bin_features": "1601,5525"}, "geometry": {"type": "Polygon", "coordinates": [[[-67.63234627523188, 52.0021714141552], [-70.47759696544072, 51.73263802593275], [-71.44637611745529, 50.0827384643726], [-69.71947899952944, 48.757431677563375], [-67.07175051730285, 49.013088508565865], [-65.96338675688393, 50.60702889071427], [-67.63234627523188, 52.0021714141552]]]}}, {"type": "Feature", "id": 585720839232552959, "properties": {"felt:h3_level": 2, "felt:bin_features": "4325"}, "geometry": {"type": "Polygon", "coordinates": [[[-72.36552336733274, 53.072556987459954], [-75.25931340536897, 52.686800396046266], [-76.05772874399094, 50.99021068384578], [-74.14230258846972, 49.724417395922266], [-71.44637611745529, 50.0827384643726], [-70.47759696544072, 51.73263802593275], [-72.36552336733274, 53.072556987459954]]]}}, {"type": "Feature", "id": 585721388988366847, "properties": {"felt:h3_level": 2, "felt:bin_features": "1604"}, "geometry": {"type": "Polygon", "coordinates": [[[-63.80048917841768, 56.857824813184145], [-67.0401835755479, 56.688714571652135], [-68.28522476924562, 55.04028786795802], [-66.45904513881723, 53.627026853428696], [-63.47668855301806, 53.792596824003354], [-62.07826603752657, 55.37451169620836], [-63.80048917841768, 56.857824813184145]]]}}, {"type": "Feature", "id": 585721938744180735, "properties": {"felt:h3_level": 2, "felt:bin_features": "4344"}, "geometry": {"type": "Polygon", "coordinates": [[[-63.47668855301806, 53.792596824003354], [-66.45904513881723, 53.627026853428696], [-67.63234627523188, 52.0021714141552], [-65.96338675688393, 50.60702889071427], [-63.20077399553516, 50.77050266836529], [-61.89930219560017, 52.330914784659825], [-63.47668855301806, 53.792596824003354]]]}}, {"type": "Feature", "id": 585724137767436287, "properties": {"felt:h3_level": 2, "felt:bin_features": "4267"}, "geometry": {"type": "Polygon", "coordinates": [[[-90.30646761607126, 57.85198658333546], [-93.2152441200014, 57.02698722544641], [-93.25254506589539, 55.2543110936561], [-90.6514460154606, 54.30091613749209], [-87.88800752419588, 55.05558507309817], [-87.58155385473422, 56.83038063786385], [-90.30646761607126, 57.85198658333546]]]}}, {"type": "Feature", "id": 585725787034877951, "properties": {"felt:h3_level": 2, "felt:bin_features": "6065"}, "geometry": {"type": "Polygon", "coordinates": [[[-89.63138299783373, 63.2197159860098], [-93.0768608654095, 62.38286892983371], [-93.12814149577223, 60.59469842617808], [-90.10587334129785, 59.63925885823426], [-86.86661231338789, 60.400005225956455], [-86.44620486365478, 62.18752970394471], [-89.63138299783373, 63.2197159860098]]]}}, {"type": "Feature", "id": 585727986058133503, "properties": {"felt:h3_level": 2, "felt:bin_features": "5521"}, "geometry": {"type": "Polygon", "coordinates": [[[-82.56125119979579, 54.61940392882146], [-85.41812524692206, 53.98612260089093], [-85.79912266299574, 52.23415238022391], [-83.54839040696179, 51.133199609951006], [-80.86152290643048, 51.713011298750715], [-80.26114174680684, 53.444359199694155], [-82.56125119979579, 54.61940392882146]]]}}, {"type": "Feature", "id": 585728535813947391, "properties": {"felt:h3_level": 2, "felt:bin_features": "1584,4306,4318,6075"}, "geometry": {"type": "Polygon", "coordinates": [[[-80.86152290643048, 51.713011298750715], [-83.54839040696179, 51.133199609951006], [-83.98131184812848, 49.4132499685268], [-81.91962699890831, 48.295316381881364], [-79.38815567758773, 48.82734490582738], [-78.76843600642383, 50.52262864502626], [-80.86152290643048, 51.713011298750715]]]}}, {"type": "Feature", "id": 585729085569761279, "properties": {"felt:h3_level": 2, "felt:bin_features": "1595,6074"}, "geometry": {"type": "Polygon", "coordinates": [[[-87.88800752419588, 55.05558507309817], [-90.6514460154606, 54.30091613749209], [-90.80084102858143, 52.5438507823548], [-88.42097150018748, 51.54338080370612], [-85.79912266299574, 52.23415238022391], [-85.41812524692206, 53.98612260089093], [-87.88800752419588, 55.05558507309817]]]}}, {"type": "Feature", "id": 585729635325575167, "properties": {"felt:h3_level": 2, "felt:bin_features": "1586"}, "geometry": {"type": "Polygon", "coordinates": [[[-85.79912266299574, 52.23415238022391], [-88.42097150018748, 51.54338080370612], [-88.65412421340821, 49.81242268121324], [-86.46839308952266, 48.78046010093184], [-83.98131184812848, 49.4132499685268], [-83.54839040696179, 51.133199609951006], [-85.79912266299574, 52.23415238022391]]]}}, {"type": "Feature", "id": 585730185081389055, "properties": {"felt:h3_level": 2, "felt:bin_features": "6679"}, "geometry": {"type": "Polygon", "coordinates": [[[-78.88333974817974, 56.93401450819165], [-81.99532750060942, 56.37872863204192], [-82.56125119979579, 54.61940392882146], [-80.26114174680684, 53.444359199694155], [-77.36146223288394, 53.952914519545715], [-76.55890845203461, 55.68039630830491], [-78.88333974817974, 56.93401450819165]]]}}, {"type": "Feature", "id": 585730734837202943, "properties": {"felt:h3_level": 2, "felt:bin_features": "1603,4331"}, "geometry": {"type": "Polygon", "coordinates": [[[-77.36146223288394, 53.952914519545715], [-80.26114174680684, 53.444359199694155], [-80.86152290643048, 51.713011298750715], [-78.76843600642383, 50.52262864502626], [-76.05772874399094, 50.99021068384578], [-75.25931340536897, 52.686800396046266], [-77.36146223288394, 53.952914519545715]]]}}, {"type": "Feature", "id": 585731284593016831, "properties": {"felt:h3_level": 2, "felt:bin_features": "7034"}, "geometry": {"type": "Polygon", "coordinates": [[[-84.54003278821038, 57.52364604763144], [-87.58155385473422, 56.83038063786385], [-87.88800752419588, 55.05558507309817], [-85.41812524692206, 53.98612260089093], [-82.56125119979579, 54.61940392882146], [-81.99532750060942, 56.37872863204192], [-84.54003278821038, 57.52364604763144]]]}}, {"type": "Feature", "id": 585732384104644607, "properties": {"felt:h3_level": 2, "felt:bin_features": "5516"}, "geometry": {"type": "Polygon", "coordinates": [[[-65.95493520108766, 69.19412677478655], [-70.88611146627176, 68.97915497977544], [-72.48773440309648, 67.3131184550724], [-69.59181907197525, 65.93960213052233], [-65.22723125244676, 66.13579964980414], [-63.24061505124017, 67.72209967046797], [-65.95493520108766, 69.19412677478655]]]}}, {"type": "Feature", "id": 585732933860458495, "properties": {"felt:h3_level": 2, "felt:bin_features": "6669"}, "geometry": {"type": "Polygon", "coordinates": [[[-65.22723125244676, 66.13579964980414], [-69.59181907197525, 65.93960213052233], [-71.09615425545397, 64.26709141026762], [-68.56493483321289, 62.864503576884395], [-64.65193771357671, 63.04787855230004], [-62.85337076670207, 64.645202662454], [-65.22723125244676, 66.13579964980414]]]}}, {"type": "Feature", "id": 585737331906969599, "properties": {"felt:h3_level": 2, "felt:bin_features": "1618,7039"}, "geometry": {"type": "Polygon", "coordinates": [[[-58.9113414349944, 58.48980679095191], [-62.28972825681571, 58.45320476392265], [-63.80048917841768, 56.857824813184145], [-62.07826603752657, 55.37451169620836], [-58.981035994086554, 55.42246431947515], [-57.34215649850436, 56.94282581684036], [-58.9113414349944, 58.48980679095191]]]}}, {"type": "Feature", "id": 585737881662783487, "properties": {"felt:h3_level": 2, "felt:bin_features": "6092"}, "geometry": {"type": "Polygon", "coordinates": [[[-64.65193771357671, 63.04787855230004], [-68.56493483321289, 62.864503576884395], [-69.97576885027517, 61.192356916698365], [-67.73084359215947, 59.77423949635842], [-64.18579934373318, 59.94899094586523], [-62.54341730100066, 61.54949113652148], [-64.65193771357671, 63.04787855230004]]]}}, {"type": "Feature", "id": 585738431418597375, "properties": {"felt:h3_level": 2, "felt:bin_features": "6680"}, "geometry": {"type": "Polygon", "coordinates": [[[-64.18579934373318, 59.94899094586523], [-67.73084359215947, 59.77423949635842], [-69.0549959056329, 58.11001927435266], [-67.0401835755479, 56.688714571652135], [-63.80048917841768, 56.857824813184145], [-62.28972825681571, 58.45320476392265], [-64.18579934373318, 59.94899094586523]]]}}, {"type": "Feature", "id": 585741180197666815, "properties": {"felt:h3_level": 2, "felt:bin_features": "7027"}, "geometry": {"type": "Polygon", "coordinates": [[[-88.6546946602392, 68.55154767932004], [-92.87876133778914, 67.72301571200245], [-92.95365535880394, 65.9504622878471], [-89.34800004677803, 65.00573810542858], [-85.43798273927328, 65.7492030114996], [-84.82657304561398, 67.51572711354028], [-88.6546946602392, 68.55154767932004]]]}}, {"type": "Feature", "id": 585741729953480703, "properties": {"felt:h3_level": 2, "felt:bin_features": "4295"}, "geometry": {"type": "Polygon", "coordinates": [[[-85.43798273927328, 65.7492030114996], [-89.34800004677803, 65.00573810542858], [-89.63138299783373, 63.2197159860098], [-86.44620486365478, 62.18752970394471], [-82.82964532461183, 62.858571659674325], [-82.11527411969873, 64.62882942983263], [-85.43798273927328, 65.7492030114996]]]}}, {"type": "Feature", "id": 585742829465108479, "properties": {"felt:h3_level": 2, "felt:bin_features": "4296,6672"}, "geometry": {"type": "Polygon", "coordinates": [[[-92.95365535880394, 65.9504622878471], [-96.60347904175154, 65.02772238383497], [-96.44526335797602, 63.25173080516217], [-93.0768608654095, 62.38286892983371], [-89.63138299783373, 63.2197159860098], [-89.34800004677803, 65.00573810542858], [-92.95365535880394, 65.9504622878471]]]}}, {"type": "Feature", "id": 585936893267410943, "properties": {"felt:h3_level": 2, "felt:bin_features": "4339,4817,7038"}, "geometry": {"type": "Polygon", "coordinates": [[[-51.288437300027994, 49.26164550158302], [-53.85155809661156, 49.36803096898217], [-55.305917854619246, 47.94764115659238], [-54.238896424972964, 46.49314130575578], [-51.83863034755352, 46.41701186001292], [-50.34984307563694, 47.76652218332134], [-51.288437300027994, 49.26164550158302]]]}}, {"type": "Feature", "id": 585945689360433151, "properties": {"felt:h3_level": 2, "felt:bin_features": "5340,6587"}, "geometry": {"type": "Polygon", "coordinates": [[[-42.198529876646504, 61.97272690603169], [-45.66654684595361, 62.38541593193917], [-48.04232110294612, 61.070843759573435], [-46.93702024951137, 59.4297980446314], [-43.743992660760675, 59.07618287095348], [-41.39507637997812, 60.30796180895156], [-42.198529876646504, 61.97272690603169]]]}}, {"type": "Feature", "id": 585952286430199807, "properties": {"felt:h3_level": 2, "felt:bin_features": "1620,4340,4345,6090"}, "geometry": {"type": "Polygon", "coordinates": [[[-54.604472622747934, 53.84500845164467], [-57.533661380017314, 53.900134937976425], [-59.04004303421978, 52.39005960897347], [-57.696966630210625, 50.8999999267347], [-54.98078697891041, 50.86840334730965], [-53.40590293022116, 52.304456969807234], [-54.604472622747934, 53.84500845164467]]]}}, {"type": "Feature", "id": 585953385941827583, "properties": {"felt:h3_level": 2, "felt:bin_features": "1602,1609,4324"}, "geometry": {"type": "Polygon", "coordinates": [[[-59.04004303421978, 52.39005960897347], [-61.89930219560017, 52.330914784659825], [-63.20077399553516, 50.77050266836529], [-61.74588242176639, 49.33869863875727], [-59.09064574907324, 49.40861844704868], [-57.696966630210625, 50.8999999267347], [-59.04004303421978, 52.39005960897347]]]}}, {"type": "Feature", "id": 585953935697641471, "properties": {"felt:h3_level": 2, "felt:bin_features": "1616,1617,4342,4343,5526,6089"}, "geometry": {"type": "Polygon", "coordinates": [[[-54.98078697891041, 50.86840334730965], [-57.696966630210625, 50.8999999267347], [-59.09064574907324, 49.40861844704868], [-57.8378716554838, 47.957631356793456], [-55.305917854619246, 47.94764115659238], [-53.85155809661156, 49.36803096898217], [-54.98078697891041, 50.86840334730965]]]}}, {"type": "Feature", "id": 585955584965083135, "properties": {"felt:h3_level": 2, "felt:bin_features": "1619,6091"}, "geometry": {"type": "Polygon", "coordinates": [[[-58.981035994086554, 55.42246431947515], [-62.07826603752657, 55.37451169620836], [-63.47668855301806, 53.792596824003354], [-61.89930219560017, 52.330914784659825], [-59.04004303421978, 52.39005960897347], [-57.533661380017314, 53.900134937976425], [-58.981035994086554, 55.42246431947515]]]}}, {"type": "Feature", "id": 586143601453432831, "properties": {"felt:h3_level": 2, "felt:bin_features": "719,722,726,727,728,2017,2020,2021,2022,2024,2029,2030,5422,6246,7225"}, "geometry": {"type": "Polygon", "coordinates": [[[-87.52625462013384, 42.15291741074853], [-89.5783976626672, 41.51855472869033], [-89.7262163062613, 39.947221847185624], [-87.95138172303122, 39.01478831061852], [-85.97932795863905, 39.59650945572191], [-85.70319925935871, 41.16126851923316], [-87.52625462013384, 42.15291741074853]]]}}, {"type": "Feature", "id": 586144700965060607, "properties": {"felt:h3_level": 2, "felt:bin_features": "633,634,645,718,723,1911,1912,2019,5400"}, "geometry": {"type": "Polygon", "coordinates": [[[-91.47626179179873, 42.444959538714684], [-93.4580322172988, 41.74324949577916], [-93.40741416499297, 40.11435457093053], [-91.54335025644869, 39.225656206133934], [-89.7262163062613, 39.947221847185624], [-89.5783976626672, 41.51855472869033], [-91.47626179179873, 42.444959538714684]]]}}, {"type": "Feature", "id": 586157345348780031, "properties": {"felt:h3_level": 2, "felt:bin_features": "4308,4311"}, "geometry": {"type": "Polygon", "coordinates": [[[-90.80084102858143, 52.5438507823548], [-93.31737510980903, 51.74779836660865], [-93.34572179440788, 50.02013421973969], [-91.06289658034065, 49.08235655242536], [-88.65412421340821, 49.81242268121324], [-88.42097150018748, 51.54338080370612], [-90.80084102858143, 52.5438507823548]]]}}, {"type": "Feature", "id": 586158994616221695, "properties": {"felt:h3_level": 2, "felt:bin_features": "792,2062,2107,2108,2109,2110,2111,4911"}, "geometry": {"type": "Polygon", "coordinates": [[[-86.76385612316132, 47.08474562818119], [-89.06656493399484, 46.41537750220255], [-89.2498380316499, 44.754421111754795], [-87.29055066840296, 43.768738470563186], [-85.09013830826513, 44.38248318374426], [-84.74861378741058, 46.03517879775627], [-86.76385612316132, 47.08474562818119]]]}}, {"type": "Feature", "id": 586159544372035583, "properties": {"felt:h3_level": 2, "felt:bin_features": "729,731,788,789,2102,2103,2104,2105,4915,5444"}, "geometry": {"type": "Polygon", "coordinates": [[[-85.09013830826513, 44.38248318374426], [-87.29055066840296, 43.768738470563186], [-87.52625462013384, 42.15291741074853], [-85.70319925935871, 41.16126851923316], [-83.60019678206457, 41.72421452886994], [-83.22495317846773, 43.3274852117277], [-85.09013830826513, 44.38248318374426]]]}}, {"type": "Feature", "id": 586160094127849471, "properties": {"felt:h3_level": 2, "felt:bin_features": "755,793,2056,5380,6205,7104,2060,5434"}, "geometry": {"type": "Polygon", "coordinates": [[[-91.17844711082972, 47.38363185794514], [-93.39584904234346, 46.630019541751885], [-93.41811772809459, 44.97252619713555], [-91.3842389088904, 44.062790040561886], [-89.2498380316499, 44.754421111754795], [-89.06656493399484, 46.41537750220255], [-91.17844711082972, 47.38363185794514]]]}}, {"type": "Feature", "id": 586160643883663359, "properties": {"felt:h3_level": 2, "felt:bin_features": "754,756,1913,721,724,752,753,757,758,2023,2057,2058,2059,2061,4910,6796"}, "geometry": {"type": "Polygon", "coordinates": [[[-89.2498380316499, 44.754421111754795], [-91.3842389088904, 44.062790040561886], [-91.47626179179873, 42.444959538714684], [-89.5783976626672, 41.51855472869033], [-87.52625462013384, 42.15291741074853], [-87.29055066840296, 43.768738470563186], [-89.2498380316499, 44.754421111754795]]]}}, {"type": "Feature", "id": 586161193639477247, "properties": {"felt:h3_level": 2, "felt:bin_features": "4304,4305,4307,6256"}, "geometry": {"type": "Polygon", "coordinates": [[[-83.98131184812848, 49.4132499685268], [-86.46839308952266, 48.78046010093184], [-86.76385612316132, 47.08474562818119], [-84.74861378741058, 46.03517879775627], [-82.38806417358143, 46.615408258891044], [-81.91962699890831, 48.295316381881364], [-83.98131184812848, 49.4132499685268]]]}}, {"type": "Feature", "id": 586161743395291135, "properties": {"felt:h3_level": 2, "felt:bin_features": "790,791,1582,1585,4303,4316"}, "geometry": {"type": "Polygon", "coordinates": [[[-82.38806417358143, 46.615408258891044], [-84.74861378741058, 46.03517879775627], [-85.09013830826513, 44.38248318374426], [-83.22495317846773, 43.3274852117277], [-80.98225290216081, 43.86011974432308], [-80.49026058459525, 45.49319034661393], [-82.38806417358143, 46.615408258891044]]]}}, {"type": "Feature", "id": 586162293151105023, "properties": {"felt:h3_level": 2, "felt:bin_features": "2112,4319,7035"}, "geometry": {"type": "Polygon", "coordinates": [[[-88.65412421340821, 49.81242268121324], [-91.06289658034065, 49.08235655242536], [-91.17844711082972, 47.38363185794514], [-89.06656493399484, 46.41537750220255], [-86.76385612316132, 47.08474562818119], [-86.46839308952266, 48.78046010093184], [-88.65412421340821, 49.81242268121324]]]}}, {"type": "Feature", "id": 586208472639471615, "properties": {"felt:h3_level": 2, "felt:bin_features": "686,687,689,766,768,774,1977,2069,2070,4898,4912,6169,7115,7262"}, "geometry": {"type": "Polygon", "coordinates": [[[-73.07691180312379, 42.400492689472884], [-75.3334517237918, 42.029563712253676], [-75.96061877033631, 40.48049730850132], [-74.44277493761697, 39.34056938395393], [-72.30787665118665, 39.68606179325924], [-71.57377195480382, 41.19572519045852], [-73.07691180312379, 42.400492689472884]]]}}, {"type": "Feature", "id": 586210671662727167, "properties": {"felt:h3_level": 2, "felt:bin_features": "685,688,690,1978,1979,1980,1981,2099,4899,5409,5443,7113"}, "geometry": {"type": "Polygon", "coordinates": [[[-69.95506755076666, 44.27784933847793], [-72.32338161918123, 43.96436330598874], [-73.07691180312379, 42.400492689472884], [-71.57377195480382, 41.19572519045852], [-69.34222349756935, 41.49068119533889], [-68.48271469709775, 43.00801065722079], [-69.95506755076666, 44.27784933847793]]]}}, {"type": "Feature", "id": 586216169220866047, "properties": {"felt:h3_level": 2, "felt:bin_features": "739,759,761,770,2063,2064,2068,2079,5428,6798"}, "geometry": {"type": "Polygon", "coordinates": [[[-79.73406932047651, 41.163833989516235], [-81.86750279548116, 40.674246416073814], [-82.26705878743627, 39.12545066120517], [-80.65177495480032, 38.08929821612251], [-78.61941821988546, 38.540002057010945], [-78.10427143231793, 40.064060432001234], [-79.73406932047651, 41.163833989516235]]]}}, {"type": "Feature", "id": 586217268732493823, "properties": {"felt:h3_level": 2, "felt:bin_features": "725,740,741,742,743,2028,2031,2032,2045,4908,5429,5430,6792"}, "geometry": {"type": "Polygon", "coordinates": [[[-83.60019678206457, 41.72421452886994], [-85.70319925935871, 41.16126851923316], [-85.97932795863905, 39.59650945572191], [-84.27805490252695, 38.60875013059671], [-82.26705878743627, 39.12545066120517], [-81.86750279548116, 40.674246416073814], [-83.60019678206457, 41.72421452886994]]]}}, {"type": "Feature", "id": 586218368244121599, "properties": {"felt:h3_level": 2, "felt:bin_features": "771,772,2072,2077,2080,2081,2083,5436,6797"}, "geometry": {"type": "Polygon", "coordinates": [[[-76.96625784448885, 43.19540780277763], [-79.22728063889042, 42.74453343115546], [-79.73406932047651, 41.163833989516235], [-78.10427143231793, 40.064060432001234], [-75.96061877033631, 40.48049730850132], [-75.3334517237918, 42.029563712253676], [-76.96625784448885, 43.19540780277763]]]}}, {"type": "Feature", "id": 586219467755749375, "properties": {"felt:h3_level": 2, "felt:bin_features": "1588,1591,1592,2044,2076,2082,2101,2106,5427,5523,6791,7116"}, "geometry": {"type": "Polygon", "coordinates": [[[-80.98225290216081, 43.86011974432308], [-83.22495317846773, 43.3274852117277], [-83.60019678206457, 41.72421452886994], [-81.86750279548116, 40.674246416073814], [-79.73406932047651, 41.163833989516235], [-79.22728063889042, 42.74453343115546], [-80.98225290216081, 43.86011974432308]]]}}, {"type": "Feature", "id": 586224965313888255, "properties": {"felt:h3_level": 2, "felt:bin_features": "1612,1614,4336,6085,7040"}, "geometry": {"type": "Polygon", "coordinates": [[[-62.962864671243295, 47.80722118889661], [-65.53570082306851, 47.64489600387728], [-66.5852510593241, 46.08850307070047], [-65.16294164435584, 44.754772444859164], [-62.75562087696401, 44.916521168651464], [-61.612903841747055, 46.41246744259869], [-62.962864671243295, 47.80722118889661]]]}}, {"type": "Feature", "id": 586225515069702143, "properties": {"felt:h3_level": 2, "felt:bin_features": "1613,4334,7037"}, "geometry": {"type": "Polygon", "coordinates": [[[-62.75562087696401, 44.916521168651464], [-65.16294164435584, 44.754772444859164], [-66.15912631714208, 43.24164819563601], [-64.83519280239277, 41.948534313112596], [-62.57347711589102, 42.10999813923826], [-61.4965375139248, 43.564806453194414], [-62.75562087696401, 44.916521168651464]]]}}, {"type": "Feature", "id": 586226064825516031, "properties": {"felt:h3_level": 2, "felt:bin_features": "787,1597,2100,4321,4333,6087"}, "geometry": {"type": "Polygon", "coordinates": [[[-67.07175051730285, 49.013088508565865], [-69.71947899952944, 48.757431677563375], [-70.6505602992607, 47.14609856240438], [-69.06056168917466, 45.844655190088524], [-66.5852510593241, 46.08850307070047], [-65.53570082306851, 47.64489600387728], [-67.07175051730285, 49.013088508565865]]]}}, {"type": "Feature", "id": 586226614581329919, "properties": {"felt:h3_level": 2, "felt:bin_features": "785,786,2098,4332,4337,5442,6086,6088,6255"}, "geometry": {"type": "Polygon", "coordinates": [[[-66.5852510593241, 46.08850307070047], [-69.06056168917466, 45.844655190088524], [-69.95506755076666, 44.27784933847793], [-68.48271469709775, 43.00801065722079], [-66.15912631714208, 43.24164819563601], [-65.16294164435584, 44.754772444859164], [-66.5852510593241, 46.08850307070047]]]}}, {"type": "Feature", "id": 586227164337143807, "properties": {"felt:h3_level": 2, "felt:bin_features": "4338,4341"}, "geometry": {"type": "Polygon", "coordinates": [[[-59.09064574907324, 49.40861844704868], [-61.74588242176639, 49.33869863875727], [-62.962864671243295, 47.80722118889661], [-61.612903841747055, 46.41246744259869], [-59.13452023859925, 46.492537039294376], [-57.8378716554838, 47.957631356793456], [-59.09064574907324, 49.40861844704868]]]}}, {"type": "Feature", "id": 586227714092957695, "properties": {"felt:h3_level": 2, "felt:bin_features": "1615,4335,6681"}, "geometry": {"type": "Polygon", "coordinates": [[[-59.13452023859925, 46.492537039294376], [-61.612903841747055, 46.41246744259869], [-62.75562087696401, 44.916521168651464], [-61.4965375139248, 43.564806453194414], [-59.172924705777675, 43.65424362989634], [-57.96068812870284, 45.086432208992186], [-59.13452023859925, 46.492537039294376]]]}}, {"type": "Feature", "id": 586228263848771583, "properties": {"felt:h3_level": 2, "felt:bin_features": "1596,1600,6078,6079"}, "geometry": {"type": "Polygon", "coordinates": [[[-63.20077399553516, 50.77050266836529], [-65.96338675688393, 50.60702889071427], [-67.07175051730285, 49.013088508565865], [-65.53570082306851, 47.64489600387728], [-62.962864671243295, 47.80722118889661], [-61.74588242176639, 49.33869863875727], [-63.20077399553516, 50.77050266836529]]]}}, {"type": "Feature", "id": 586233761406910463, "properties": {"felt:h3_level": 2, "felt:bin_features": "1608,4312,4329,4330,7033"}, "geometry": {"type": "Polygon", "coordinates": [[[-74.9294757128243, 48.06601289912326], [-77.47171852185642, 47.6345663178102], [-78.10036638488211, 45.982432195623886], [-76.33587020720189, 44.798412769531616], [-73.94423101939223, 45.19783546523642], [-73.172619916704, 46.81165601575054], [-74.9294757128243, 48.06601289912326]]]}}, {"type": "Feature", "id": 586234311162724351, "properties": {"felt:h3_level": 2, "felt:bin_features": "691,767,769,1594,2071,2073,2074,5435,6239,6252"}, "geometry": {"type": "Polygon", "coordinates": [[[-73.94423101939223, 45.19783546523642], [-76.33587020720189, 44.798412769531616], [-76.96625784448885, 43.19540780277763], [-75.3334517237918, 42.029563712253676], [-73.07691180312379, 42.400492689472884], [-72.32338161918123, 43.96436330598874], [-73.94423101939223, 45.19783546523642]]]}}, {"type": "Feature", "id": 586234860918538239, "properties": {"felt:h3_level": 2, "felt:bin_features": "1593,1610,4317,6076,6677,6678"}, "geometry": {"type": "Polygon", "coordinates": [[[-79.38815567758773, 48.82734490582738], [-81.91962699890831, 48.295316381881364], [-82.38806417358143, 46.615408258891044], [-80.49026058459525, 45.49319034661393], [-78.10036638488211, 45.982432195623886], [-77.47171852185642, 47.6345663178102], [-79.38815567758773, 48.82734490582738]]]}}, {"type": "Feature", "id": 586235410674352127, "properties": {"felt:h3_level": 2, "felt:bin_features": "1583,1587,1589,1590,2075,4302,4313,4314,4315,5522,6170,7254"}, "geometry": {"type": "Polygon", "coordinates": [[[-78.10036638488211, 45.982432195623886], [-80.49026058459525, 45.49319034661393], [-80.98225290216081, 43.86011974432308], [-79.22728063889042, 42.74453343115546], [-76.96625784448885, 43.19540780277763], [-76.33587020720189, 44.798412769531616], [-78.10036638488211, 45.982432195623886]]]}}, {"type": "Feature", "id": 586235960430166015, "properties": {"felt:h3_level": 2, "felt:bin_features": "6080,6084,7036"}, "geometry": {"type": "Polygon", "coordinates": [[[-71.44637611745529, 50.0827384643726], [-74.14230258846972, 49.724417395922266], [-74.9294757128243, 48.06601289912326], [-73.172619916704, 46.81165601575054], [-70.6505602992607, 47.14609856240438], [-69.71947899952944, 48.757431677563375], [-71.44637611745529, 50.0827384643726]]]}}, {"type": "Feature", "id": 586236510185979903, "properties": {"felt:h3_level": 2, "felt:bin_features": "692,1598,1599,1607,4322,4323,4327,5524,7210"}, "geometry": {"type": "Polygon", "coordinates": [[[-70.6505602992607, 47.14609856240438], [-73.172619916704, 46.81165601575054], [-73.94423101939223, 45.19783546523642], [-72.32338161918123, 43.96436330598874], [-69.95506755076666, 44.27784933847793], [-69.06056168917466, 45.844655190088524], [-70.6505602992607, 47.14609856240438]]]}}, {"type": "Feature", "id": 586237059941793791, "properties": {"felt:h3_level": 2, "felt:bin_features": "1606,1611,4328,6081"}, "geometry": {"type": "Polygon", "coordinates": [[[-76.05772874399094, 50.99021068384578], [-78.76843600642383, 50.52262864502626], [-79.38815567758773, 48.82734490582738], [-77.47171852185642, 47.6345663178102], [-74.9294757128243, 48.06601289912326], [-74.14230258846972, 49.724417395922266], [-76.05772874399094, 50.99021068384578]]]}}]} \ No newline at end of file diff --git a/tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json b/tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json index 805bbba54..c70e5ff10 100644 --- a/tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json +++ b/tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "3.757458,-84.969764,359.744029,85.007238", +"antimeridian_adjusted_bounds": "3.757458,-85.051129,359.744029,85.051129", "bounds": "-179.320808,-85.051129,177.449262,85.051129", "center": "-179.320808,-69.033211,14", "description": "tests/accumulate/out/--set-attribute_thecomma%3aNEWVALUE_--accumulate-attribute_thecomma%3acomma.json.check.mbtiles", diff --git a/tests/accumulate/out/-z0_--set-attribute_%7b%22num%22%3a5,%22str%22%3a%22abc%22}.json b/tests/accumulate/out/-z0_--set-attribute_%7b%22num%22%3a5,%22str%22%3a%22abc%22}.json index 83fe333eb..33a20eb51 100644 --- a/tests/accumulate/out/-z0_--set-attribute_%7b%22num%22%3a5,%22str%22%3a%22abc%22}.json +++ b/tests/accumulate/out/-z0_--set-attribute_%7b%22num%22%3a5,%22str%22%3a%22abc%22}.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "3.757458,-84.969764,359.744029,85.007238", +"antimeridian_adjusted_bounds": "3.757458,-85.051129,359.744029,85.051129", "bounds": "-179.320808,-85.051129,177.449262,85.051129", "center": "0.000000,0.000000,0", "description": "tests/accumulate/out/-z0_--set-attribute_%7b%22num%22%3a5,%22str%22%3a%22abc%22}.json.check.mbtiles", diff --git a/tests/accumulate/out/-z0_--set-attribute_num%3a5_--set-attribute_str%3aabc.json b/tests/accumulate/out/-z0_--set-attribute_num%3a5_--set-attribute_str%3aabc.json index 788f7487f..1fd06a022 100644 --- a/tests/accumulate/out/-z0_--set-attribute_num%3a5_--set-attribute_str%3aabc.json +++ b/tests/accumulate/out/-z0_--set-attribute_num%3a5_--set-attribute_str%3aabc.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "3.757458,-84.969764,359.744029,85.007238", +"antimeridian_adjusted_bounds": "3.757458,-85.051129,359.744029,85.051129", "bounds": "-179.320808,-85.051129,177.449262,85.051129", "center": "0.000000,0.000000,0", "description": "tests/accumulate/out/-z0_--set-attribute_num%3a5_--set-attribute_str%3aabc.json.check.mbtiles", diff --git a/tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json b/tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json index 8f01a3536..3b4e3bec4 100644 --- a/tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json +++ b/tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json @@ -1,69 +1,67 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "3.757458,-84.969764,359.744029,85.007238", +"antimeridian_adjusted_bounds": "3.757458,-85.051129,359.744029,85.051129", "bounds": "-179.320808,-85.051129,177.449262,85.051129", "center": "-157.500000,20.489949,3", "description": "tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o 'tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json.check.mbtiles' -z3 --accumulate-attribute '{\"thesum\":\"sum\",\"theproduct\":\"product\"}' tests/accumulate/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"thecomma\":\"Number\",\"theconcat\":\"Number\",\"themax\":\"Number\",\"themean\":\"Number\",\"themin\":\"Number\",\"theproduct\":\"Number\",\"thesum\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":100,\"geometry\":\"Point\",\"attributeCount\":7,\"attributes\":[{\"attribute\":\"thecomma\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theconcat\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themax\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themean\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themin\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theproduct\",\"count\":152,\"type\":\"number\",\"values\":[1,10,100,10070754193500,1054,1087851840,11,112791609,114192,12,121030,13,14,1452,15,1519,16,165165,17,18,1862,1890,19,1938,19784309935782710000,19920,2,2.6704416630885583e+28,20,20448,20485594649520,2088,21,2109,2112,22,22667752800,23,2314,2322,24,2478,25,26,2624,27,2765,28,288600,29,3,30,31,32,3276,33,34,35,36,3601800,3648,37,38,39,3956,4,4.486244263022014e+22,40,41,42,43,4366178626824,44,4480,45,46,47,47480256,48,4810,49,5,50,50914289664,51,52,523390802429214700,53,54,55,5589,56,57,58,59,596410,6,60,61,6145776],\"min\":1,\"max\":2.6704416630885583e+28},{\"attribute\":\"thesum\",\"count\":138,\"type\":\"number\",\"values\":[1,10,100,101,11,111,112,114,115,117,12,124,13,132,134,139,14,146,149,15,150,152,156,16,17,178,179,18,183,19,190,191,199,2,20,209,21,216,22,23,237,24,25,254,26,27,28,281,29,3,30,31,32,33,34,35,352,36,369,37,377,38,39,398,4,40,41,42,43,44,45,459,46,47,473,48,49,5,50,51,52,53,54,55,56,57,58,582,59,6,60,61,611,62,63,64,65,66,67,68],\"min\":1,\"max\":935}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"thecomma\":\"Number\",\"theconcat\":\"Number\",\"themax\":\"Number\",\"themean\":\"Number\",\"themin\":\"Number\",\"theproduct\":\"Number\",\"thesum\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":100,\"geometry\":\"Point\",\"attributeCount\":7,\"attributes\":[{\"attribute\":\"thecomma\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theconcat\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themax\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themean\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themin\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theproduct\",\"count\":145,\"type\":\"number\",\"values\":[1,1.8118594494816077e+22,10,100,1054,11,112791609,114192,115257600,12,13,1312,14,1452,15,156864,157200865668000,16,1634,164862,17,1793610,18,1862,19,19336200,19920,2,20,2088,21,2109,22,23,24,2426343933653640,247800,25,26,264,27,2762757396,2765,28,29,3,3.906944963845347e+46,30,3003,300656,31,3165162,32,33,34,35,3528,35840,36,37,38,39,39123,3956,4,40,402696,40435200,41,42,43,436905,44,45,46,47,474974794933294660000,48,482724,484416,49,5,50,51,52,523390802429214700,53,54,55,55200,56,57,57850,58,5868467244057600000,59,6,6.703399647941327e+24,60,61],\"min\":1,\"max\":3.906944963845347e+46},{\"attribute\":\"thesum\",\"count\":137,\"type\":\"number\",\"values\":[1,10,100,101,105,11,114,117,12,121,123,124,13,130,132,14,140,142,144,149,15,1502,157,16,168,17,18,19,197,2,20,200,201,203,208,21,22,223,229,23,231,24,241,244,25,26,264,27,28,281,29,3,30,31,32,33,34,35,36,37,373,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,520,53,54,548,55,559,56,57,575,58,582,59,6,60,61,614,62,63,64,65,66,67],\"min\":1,\"max\":1502}]}]}}", "maxzoom": "3", "minzoom": "0", "name": "tests/accumulate/out/-z3_--accumulate-attribute_%7b%22thesum%22%3a%22sum%22,%22theproduct%22%3a%22product%22}.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":78},{\"dropped_by_rate\":78},{\"dropped_by_rate\":43},{}]", +"strategies": "[{\"dropped_by_rate\":79},{\"dropped_by_rate\":77},{\"dropped_by_rate\":50},{}]", "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": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 819, "theproduct": 7.744164208626863e+24 }, "geometry": { "type": "Point", "coordinates": [ -147.392578, 84.778533 ] } } +{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 575, "theproduct": 714250198330905600 }, "geometry": { "type": "Point", "coordinates": [ -147.392578, 84.778533 ] } } , -{ "type": "Feature", "properties": { "themax": 92, "themin": 92, "themean": 92, "theconcat": 92, "thecomma": 92, "thesum": 611, "theproduct": 19784309935782710000 }, "geometry": { "type": "Point", "coordinates": [ -63.369141, 57.984808 ] } } +{ "type": "Feature", "properties": { "themax": 57, "themin": 57, "themean": 57, "theconcat": 57, "thecomma": 57, "thesum": 823, "theproduct": 6.703399647941327e+24 }, "geometry": { "type": "Point", "coordinates": [ -71.806641, 83.004844 ] } } , -{ "type": "Feature", "properties": { "themax": 75, "themin": 75, "themean": 75, "theconcat": 75, "thecomma": 75, "thesum": 935, "theproduct": 2.6704416630885583e+28 }, "geometry": { "type": "Point", "coordinates": [ -157.236328, -62.915233 ] } } +{ "type": "Feature", "properties": { "themax": 32, "themin": 32, "themean": 32, "theconcat": 32, "thecomma": 32, "thesum": 751, "theproduct": 1.8118594494816077e+22 }, "geometry": { "type": "Point", "coordinates": [ -156.357422, -54.162434 ] } } , -{ "type": "Feature", "properties": { "themax": 26, "themin": 26, "themean": 26, "theconcat": 26, "thecomma": 26, "thesum": 398, "theproduct": 10070754193500 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 614, "theproduct": 474974794933294660000 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, -32.694866 ] } } , -{ "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 774, "theproduct": 8.708721003108196e+23 }, "geometry": { "type": "Point", "coordinates": [ 113.642578, 13.838080 ] } } -, -{ "type": "Feature", "properties": { "themax": 35, "themin": 35, "themean": 35, "theconcat": 35, "thecomma": 35, "thesum": 728, "theproduct": 4.486244263022014e+22 }, "geometry": { "type": "Point", "coordinates": [ 57.919922, -82.226115 ] } } +{ "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 1502, "theproduct": 3.906944963845347e+46 }, "geometry": { "type": "Point", "coordinates": [ 113.642578, 13.838080 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 65, "themin": 65, "themean": 65, "theconcat": 65, "thecomma": 65, "thesum": 152, "theproduct": 121030 }, "geometry": { "type": "Point", "coordinates": [ -166.420898, 2.767478 ] } } +{ "type": "Feature", "properties": { "thesum": 65, "themax": 65, "themin": 65, "theproduct": 65, "themean": 65, "theconcat": 65, "thecomma": 65 }, "geometry": { "type": "Point", "coordinates": [ -166.420898, 2.767478 ] } } , -{ "type": "Feature", "properties": { "themax": 43, "themin": 43, "themean": 43, "theconcat": 43, "thecomma": 43, "thesum": 209, "theproduct": 47480256 }, "geometry": { "type": "Point", "coordinates": [ -168.134766, -37.370157 ] } } +{ "type": "Feature", "properties": { "themax": 38, "themin": 38, "themean": 38, "theconcat": 38, "thecomma": 38, "thesum": 264, "theproduct": 2762757396 }, "geometry": { "type": "Point", "coordinates": [ -176.484375, -1.186439 ] } } , -{ "type": "Feature", "properties": { "themax": 75, "themin": 75, "themean": 75, "theconcat": 75, "thecomma": 75, "thesum": 199, "theproduct": 3601800 }, "geometry": { "type": "Point", "coordinates": [ -157.236328, -62.935235 ] } } +{ "type": "Feature", "properties": { "themax": 32, "themin": 32, "themean": 32, "theconcat": 32, "thecomma": 32, "thesum": 231, "theproduct": 115257600 }, "geometry": { "type": "Point", "coordinates": [ -156.357422, -54.162434 ] } } , -{ "type": "Feature", "properties": { "themax": 59, "themin": 59, "themean": 59, "theconcat": 59, "thecomma": 59, "thesum": 352, "theproduct": 22667752800 }, "geometry": { "type": "Point", "coordinates": [ -146.909180, -72.906723 ] } } +{ "type": "Feature", "properties": { "themax": 59, "themin": 59, "themean": 59, "theconcat": 59, "thecomma": 59, "thesum": 520, "theproduct": 157200865668000 }, "geometry": { "type": "Point", "coordinates": [ -146.909180, -72.906723 ] } } , -{ "type": "Feature", "properties": { "themax": 95, "themin": 95, "themean": 95, "theconcat": 95, "thecomma": 95, "thesum": 369, "theproduct": 1087851840 }, "geometry": { "type": "Point", "coordinates": [ -56.689453, -62.552857 ] } } +{ "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 201, "theproduct": 156864 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, -32.694866 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 190, "theproduct": 6145776 }, "geometry": { "type": "Point", "coordinates": [ -147.348633, 84.782531 ] } } +{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 123, "theproduct": 91728 }, "geometry": { "type": "Point", "coordinates": [ -147.348633, 84.782531 ] } } +, +{ "type": "Feature", "properties": { "themax": 67, "themin": 67, "themean": 67, "theconcat": 67, "thecomma": 67, "thesum": 223, "theproduct": 19336200 }, "geometry": { "type": "Point", "coordinates": [ -177.451172, 22.268764 ] } } , -{ "type": "Feature", "properties": { "themax": 74, "themin": 74, "themean": 74, "theconcat": 74, "thecomma": 74, "thesum": 156, "theproduct": 288600 }, "geometry": { "type": "Point", "coordinates": [ -159.609375, 33.504759 ] } } +{ "type": "Feature", "properties": { "themax": 94, "themin": 94, "themean": 94, "theconcat": 94, "thecomma": 94, "thesum": 229, "theproduct": 402696 }, "geometry": { "type": "Point", "coordinates": [ -132.495117, 18.062312 ] } } , -{ "type": "Feature", "properties": { "themax": 94, "themin": 94, "themean": 94, "theconcat": 94, "thecomma": 94, "thesum": 473, "theproduct": 4366178626824 }, "geometry": { "type": "Point", "coordinates": [ -132.495117, 18.062312 ] } } +{ "type": "Feature", "properties": { "themax": 57, "themin": 57, "themean": 57, "theconcat": 57, "thecomma": 57, "thesum": 559, "theproduct": 2426343933653640 }, "geometry": { "type": "Point", "coordinates": [ -71.762695, 83.010194 ] } } , -{ "type": "Feature", "properties": { "themax": 92, "themin": 92, "themean": 92, "theconcat": 92, "thecomma": 92, "thesum": 459, "theproduct": 20485594649520 }, "geometry": { "type": "Point", "coordinates": [ -63.369141, 58.008098 ] } } +{ "type": "Feature", "properties": { "themax": 38, "themin": 38, "themean": 38, "theconcat": 38, "thecomma": 38, "thesum": 144, "theproduct": 91542 }, "geometry": { "type": "Point", "coordinates": [ -176.484375, -1.186439 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 49, "themin": 49, "themean": 49, "theconcat": 49, "thecomma": 49, "thesum": 377, "theproduct": 50914289664 }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -18.020528 ] } } -, -{ "type": "Feature", "properties": { "themax": 18, "themin": 18, "themean": 18, "theconcat": 18, "thecomma": 18, "thesum": 237, "theproduct": 71604000 }, "geometry": { "type": "Point", "coordinates": [ 6.591797, -44.809122 ] } } +{ "type": "Feature", "properties": { "themax": 49, "themin": 49, "themean": 49, "theconcat": 49, "thecomma": 49, "thesum": 121, "theproduct": 3528 }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -18.020528 ] } } , -{ "type": "Feature", "properties": { "themax": 24, "themin": 24, "themean": 24, "theconcat": 24, "thecomma": 24, "thesum": 117, "theproduct": 19920 }, "geometry": { "type": "Point", "coordinates": [ 13.447266, -81.544159 ] } } +{ "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 208, "theproduct": 300656 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, -32.694866 ] } } , -{ "type": "Feature", "properties": { "themax": 35, "themin": 35, "themean": 35, "theconcat": 35, "thecomma": 35, "thesum": 146, "theproduct": 85715 }, "geometry": { "type": "Point", "coordinates": [ 57.963867, -82.232057 ] } } +{ "type": "Feature", "properties": { "themax": 48, "themin": 48, "themean": 48, "theconcat": 48, "thecomma": 48, "thesum": 548, "theproduct": 5868467244057600000 }, "geometry": { "type": "Point", "coordinates": [ 3.779297, -46.950262 ] } } , { "type": "Feature", "properties": { "themax": 70, "themin": 70, "themean": 70, "theconcat": 70, "thecomma": 70, "thesum": 582, "theproduct": 523390802429214700 }, "geometry": { "type": "Point", "coordinates": [ 147.041016, -21.616579 ] } } ] } @@ -71,9 +69,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 67, "themin": 67, "themean": 67, "theconcat": 67, "thecomma": 67, "thesum": 216, "theproduct": 73487744 }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.268764 ] } } +{ "type": "Feature", "properties": { "themax": 67, "themin": 67, "themean": 67, "theconcat": 67, "thecomma": 67, "thesum": 373, "theproduct": 6153148144000 }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.268764 ] } } , -{ "type": "Feature", "properties": { "themax": 26, "themin": 26, "themean": 26, "theconcat": 26, "thecomma": 26, "thesum": 398, "theproduct": 10070754193500 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "themax": 91, "themin": 91, "themean": 91, "theconcat": 91, "thecomma": 91, "thesum": 203, "theproduct": 3165162 }, "geometry": { "type": "Point", "coordinates": [ 114.960938, 84.178705 ] } } , { "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 281, "theproduct": 112791609 }, "geometry": { "type": "Point", "coordinates": [ 113.598633, 13.838080 ] } } ] } @@ -83,9 +81,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 72, "themin": 72, "themean": 72, "theconcat": 72, "thecomma": 72, "thesum": 101, "theproduct": 2088 }, "geometry": { "type": "Point", "coordinates": [ -179.318848, -69.029279 ] } } , -{ "type": "Feature", "properties": { "themax": 59, "themin": 59, "themean": 59, "theconcat": 59, "thecomma": 59, "thesum": 101, "theproduct": 2478 }, "geometry": { "type": "Point", "coordinates": [ -146.887207, -72.900264 ] } } -, -{ "type": "Feature", "properties": { "thesum": 100, "themax": 100, "themin": 100, "theproduct": 100, "themean": 100, "theconcat": 100, "thecomma": 100 }, "geometry": { "type": "Point", "coordinates": [ -123.947754, -81.873641 ] } } +{ "type": "Feature", "properties": { "themax": 59, "themin": 59, "themean": 59, "theconcat": 59, "thecomma": 59, "thesum": 201, "theproduct": 247800 }, "geometry": { "type": "Point", "coordinates": [ -146.887207, -72.900264 ] } } ] } ] } , @@ -93,35 +89,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 38, "themin": 38, "themean": 38, "theconcat": 38, "thecomma": 38, "thesum": 87, "theproduct": 1862 }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.186439 ] } } , -{ "type": "Feature", "properties": { "themax": 43, "themin": 43, "themean": 43, "theconcat": 43, "thecomma": 43, "thesum": 97, "theproduct": 2322 }, "geometry": { "type": "Point", "coordinates": [ -168.134766, -37.387617 ] } } +{ "type": "Feature", "properties": { "themax": 43, "themin": 43, "themean": 43, "theconcat": 43, "thecomma": 43, "thesum": 168, "theproduct": 164862 }, "geometry": { "type": "Point", "coordinates": [ -168.134766, -37.387617 ] } } , -{ "type": "Feature", "properties": { "themax": 71, "themin": 71, "themean": 71, "theconcat": 71, "thecomma": 71, "thesum": 112, "theproduct": 20448 }, "geometry": { "type": "Point", "coordinates": [ -171.826172, -55.028022 ] } } +{ "type": "Feature", "properties": { "thesum": 9, "themax": 9, "themin": 9, "theproduct": 9, "themean": 9, "theconcat": 9, "thecomma": 9 }, "geometry": { "type": "Point", "coordinates": [ -168.574219, -52.643063 ] } } , -{ "type": "Feature", "properties": { "thesum": 75, "themax": 75, "themin": 75, "theproduct": 75, "themean": 75, "theconcat": 75, "thecomma": 75 }, "geometry": { "type": "Point", "coordinates": [ -157.214355, -62.925236 ] } } -, -{ "type": "Feature", "properties": { "thesum": 23, "themax": 23, "themin": 23, "theproduct": 23, "themean": 23, "theconcat": 23, "thecomma": 23 }, "geometry": { "type": "Point", "coordinates": [ -131.418457, -48.661943 ] } } +{ "type": "Feature", "properties": { "themax": 32, "themin": 32, "themean": 32, "theconcat": 32, "thecomma": 32, "thesum": 130, "theproduct": 55200 }, "geometry": { "type": "Point", "coordinates": [ -156.335449, -54.162434 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 67, "themax": 67, "themin": 67, "theproduct": 67, "themean": 67, "theconcat": 67, "thecomma": 67 }, "geometry": { "type": "Point", "coordinates": [ -177.451172, 22.268764 ] } } -, -{ "type": "Feature", "properties": { "themax": 74, "themin": 74, "themean": 74, "theconcat": 74, "thecomma": 74, "thesum": 139, "theproduct": 4810 }, "geometry": { "type": "Point", "coordinates": [ -159.587402, 33.504759 ] } } +{ "type": "Feature", "properties": { "themax": 67, "themin": 67, "themean": 67, "theconcat": 67, "thecomma": 67, "thesum": 223, "theproduct": 19336200 }, "geometry": { "type": "Point", "coordinates": [ -177.451172, 22.268764 ] } } , -{ "type": "Feature", "properties": { "themax": 5, "themin": 5, "themean": 5, "theconcat": 5, "thecomma": 5, "thesum": 17, "theproduct": 60 }, "geometry": { "type": "Point", "coordinates": [ -153.413086, 29.075375 ] } } +{ "type": "Feature", "properties": { "themax": 94, "themin": 94, "themean": 94, "theconcat": 94, "thecomma": 94, "thesum": 229, "theproduct": 402696 }, "geometry": { "type": "Point", "coordinates": [ -132.495117, 18.083201 ] } } , -{ "type": "Feature", "properties": { "themax": 94, "themin": 94, "themean": 94, "theconcat": 94, "thecomma": 94, "thesum": 178, "theproduct": 7896 }, "geometry": { "type": "Point", "coordinates": [ -132.495117, 18.083201 ] } } -, -{ "type": "Feature", "properties": { "themax": 51, "themin": 51, "themean": 51, "theconcat": 51, "thecomma": 51, "thesum": 89, "theproduct": 1938 }, "geometry": { "type": "Point", "coordinates": [ -105.314941, 25.819672 ] } } +{ "type": "Feature", "properties": { "thesum": 38, "themax": 38, "themin": 38, "theproduct": 38, "themean": 38, "theconcat": 38, "thecomma": 38 }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.186439 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 95, "theproduct": 3276 }, "geometry": { "type": "Point", "coordinates": [ -147.370605, 84.780532 ] } } -, -{ "type": "Feature", "properties": { "thesum": 28, "themax": 28, "themin": 28, "theproduct": 28, "themean": 28, "theconcat": 28, "thecomma": 28 }, "geometry": { "type": "Point", "coordinates": [ -108.413086, 69.854762 ] } } +{ "type": "Feature", "properties": { "themax": 3, "themin": 3, "themean": 3, "theconcat": 3, "thecomma": 3, "thesum": 123, "theproduct": 91728 }, "geometry": { "type": "Point", "coordinates": [ -147.370605, 84.780532 ] } } ] } ] } , @@ -129,23 +117,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 66, "themin": 66, "themean": 66, "theconcat": 66, "thecomma": 66, "thesum": 88, "theproduct": 1452 }, "geometry": { "type": "Point", "coordinates": [ -68.071289, -6.860985 ] } } , -{ "type": "Feature", "properties": { "thesum": 63, "themax": 63, "themin": 63, "theproduct": 63, "themean": 63, "theconcat": 63, "thecomma": 63 }, "geometry": { "type": "Point", "coordinates": [ -50.734863, -49.052270 ] } } +{ "type": "Feature", "properties": { "themax": 63, "themin": 63, "themean": 63, "theconcat": 63, "thecomma": 63, "thesum": 231, "theproduct": 436905 }, "geometry": { "type": "Point", "coordinates": [ -50.734863, -49.052270 ] } } , -{ "type": "Feature", "properties": { "themax": 95, "themin": 95, "themean": 95, "theconcat": 95, "thecomma": 95, "thesum": 254, "theproduct": 596410 }, "geometry": { "type": "Point", "coordinates": [ -56.667480, -62.562983 ] } } -, -{ "type": "Feature", "properties": { "thesum": 19, "themax": 19, "themin": 19, "theproduct": 19, "themean": 19, "theconcat": 19, "thecomma": 19 }, "geometry": { "type": "Point", "coordinates": [ -25.136719, -41.195190 ] } } +{ "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 105, "theproduct": 1634 }, "geometry": { "type": "Point", "coordinates": [ -0.241699, -32.694866 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 53, "themax": 53, "themin": 53, "theproduct": 53, "themean": 53, "theconcat": 53, "thecomma": 53 }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } -, -{ "type": "Feature", "properties": { "themax": 92, "themin": 92, "themean": 92, "theconcat": 92, "thecomma": 92, "thesum": 191, "theproduct": 9108 }, "geometry": { "type": "Point", "coordinates": [ -63.347168, 58.008098 ] } } +{ "type": "Feature", "properties": { "themax": 53, "themin": 53, "themean": 53, "theconcat": 53, "thecomma": 53, "thesum": 244, "theproduct": 482724 }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } , -{ "type": "Feature", "properties": { "themax": 90, "themin": 90, "themean": 90, "theconcat": 90, "thecomma": 90, "thesum": 111, "theproduct": 1890 }, "geometry": { "type": "Point", "coordinates": [ -29.003906, 48.458352 ] } } -, -{ "type": "Feature", "properties": { "themax": 13, "themin": 13, "themean": 13, "theconcat": 13, "thecomma": 13, "thesum": 86, "theproduct": 949 }, "geometry": { "type": "Point", "coordinates": [ -3.713379, 47.353711 ] } } +{ "type": "Feature", "properties": { "themax": 90, "themin": 90, "themean": 90, "theconcat": 90, "thecomma": 90, "thesum": 197, "theproduct": 1793610 }, "geometry": { "type": "Point", "coordinates": [ -29.003906, 48.458352 ] } } ] } ] } , @@ -171,19 +153,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 86, "themin": 86, "themean": 86, "theconcat": 86, "thecomma": 86, "thesum": 132, "theproduct": 3956 }, "geometry": { "type": "Point", "coordinates": [ -0.263672, -32.694866 ] } } , -{ "type": "Feature", "properties": { "themax": 76, "themin": 76, "themean": 76, "theconcat": 76, "thecomma": 76, "thesum": 124, "theproduct": 3648 }, "geometry": { "type": "Point", "coordinates": [ 35.463867, -21.555284 ] } } +{ "type": "Feature", "properties": { "thesum": 76, "themax": 76, "themin": 76, "theproduct": 76, "themean": 76, "theconcat": 76, "thecomma": 76 }, "geometry": { "type": "Point", "coordinates": [ 35.463867, -21.555284 ] } } , -{ "type": "Feature", "properties": { "themax": 18, "themin": 18, "themean": 18, "theconcat": 18, "thecomma": 18, "thesum": 152, "theproduct": 842400 }, "geometry": { "type": "Point", "coordinates": [ 6.569824, -44.809122 ] } } +{ "type": "Feature", "properties": { "themax": 48, "themin": 48, "themean": 48, "theconcat": 48, "thecomma": 48, "thesum": 200, "theproduct": 40435200 }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.965259 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 2, "themin": 2, "themean": 2, "theconcat": 2, "thecomma": 2, "thesum": 100, "theproduct": 2624 }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } +{ "type": "Feature", "properties": { "thesum": 2, "themax": 2, "themin": 2, "theproduct": 2, "themean": 2, "theconcat": 2, "thecomma": 2 }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } , -{ "type": "Feature", "properties": { "themax": 26, "themin": 26, "themean": 26, "theconcat": 26, "thecomma": 26, "thesum": 115, "theproduct": 2314 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "themax": 16, "themin": 16, "themean": 16, "theconcat": 16, "thecomma": 16, "thesum": 98, "theproduct": 1312 }, "geometry": { "type": "Point", "coordinates": [ 24.675293, 60.294299 ] } } , -{ "type": "Feature", "properties": { "thesum": 25, "themax": 25, "themin": 25, "theproduct": 25, "themean": 25, "theconcat": 25, "thecomma": 25 }, "geometry": { "type": "Point", "coordinates": [ 49.372559, 54.033586 ] } } +{ "type": "Feature", "properties": { "themax": 26, "themin": 26, "themean": 26, "theconcat": 26, "thecomma": 26, "thesum": 140, "theproduct": 57850 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } ] } ] } , @@ -199,19 +181,19 @@ , { "type": "Feature", "properties": { "themax": 52, "themin": 52, "themean": 52, "theconcat": 52, "thecomma": 52, "thesum": 149, "theproduct": 114192 }, "geometry": { "type": "Point", "coordinates": [ 116.477051, -73.175897 ] } } , -{ "type": "Feature", "properties": { "themax": 87, "themin": 87, "themean": 87, "theconcat": 87, "thecomma": 87, "thesum": 183, "theproduct": 8352 }, "geometry": { "type": "Point", "coordinates": [ 165.541992, -69.862328 ] } } -, -{ "type": "Feature", "properties": { "thesum": 58, "themax": 58, "themin": 58, "theproduct": 58, "themean": 58, "theconcat": 58, "thecomma": 58 }, "geometry": { "type": "Point", "coordinates": [ 141.635742, -84.970875 ] } } +{ "type": "Feature", "properties": { "themax": 87, "themin": 87, "themean": 87, "theconcat": 87, "thecomma": 87, "thesum": 241, "theproduct": 484416 }, "geometry": { "type": "Point", "coordinates": [ 165.541992, -69.862328 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 49, "themin": 49, "themean": 49, "theconcat": 49, "thecomma": 49, "thesum": 81, "theproduct": 1519 }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -17.999632 ] } } +{ "type": "Feature", "properties": { "thesum": 49, "themax": 49, "themin": 49, "theproduct": 49, "themean": 49, "theconcat": 49, "thecomma": 49 }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -17.999632 ] } } +, +{ "type": "Feature", "properties": { "themax": 1, "themin": 1, "themean": 1, "theconcat": 1, "thecomma": 1, "thesum": 32, "theproduct": 31 }, "geometry": { "type": "Point", "coordinates": [ 134.208984, -54.303704 ] } } , -{ "type": "Feature", "properties": { "themax": 70, "themin": 70, "themean": 70, "theconcat": 70, "thecomma": 70, "thesum": 134, "theproduct": 4480 }, "geometry": { "type": "Point", "coordinates": [ 147.041016, -21.637005 ] } } +{ "type": "Feature", "properties": { "themax": 70, "themin": 70, "themean": 70, "theconcat": 70, "thecomma": 70, "thesum": 142, "theproduct": 35840 }, "geometry": { "type": "Point", "coordinates": [ 147.041016, -21.637005 ] } } , -{ "type": "Feature", "properties": { "themax": 8, "themin": 8, "themean": 8, "theconcat": 8, "thecomma": 8, "thesum": 58, "theproduct": 2112 }, "geometry": { "type": "Point", "coordinates": [ 161.455078, -40.380028 ] } } +{ "type": "Feature", "properties": { "themax": 44, "themin": 44, "themean": 44, "theconcat": 44, "thecomma": 44, "thesum": 50, "theproduct": 264 }, "geometry": { "type": "Point", "coordinates": [ 146.601562, -65.118395 ] } } ] } ] } , @@ -219,15 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "themax": 17, "themin": 17, "themean": 17, "theconcat": 17, "thecomma": 17, "thesum": 79, "theproduct": 1054 }, "geometry": { "type": "Point", "coordinates": [ 110.434570, 38.358888 ] } } , -{ "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 150, "theproduct": 5589 }, "geometry": { "type": "Point", "coordinates": [ 113.620605, 13.838080 ] } } +{ "type": "Feature", "properties": { "themax": 69, "themin": 69, "themean": 69, "theconcat": 69, "thecomma": 69, "thesum": 157, "theproduct": 39123 }, "geometry": { "type": "Point", "coordinates": [ 113.620605, 13.838080 ] } } , -{ "type": "Feature", "properties": { "themax": 7, "themin": 7, "themean": 7, "theconcat": 7, "thecomma": 7, "thesum": 100, "theproduct": 651 }, "geometry": { "type": "Point", "coordinates": [ 126.606445, 8.711359 ] } } +{ "type": "Feature", "properties": { "thesum": 93, "themax": 93, "themin": 93, "theproduct": 93, "themean": 93, "theconcat": 93, "thecomma": 93 }, "geometry": { "type": "Point", "coordinates": [ 169.760742, 17.853290 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "themax": 55, "themin": 55, "themean": 55, "theconcat": 55, "thecomma": 55, "thesum": 179, "theproduct": 165165 }, "geometry": { "type": "Point", "coordinates": [ 96.042480, 83.713139 ] } } +{ "type": "Feature", "properties": { "thesum": 55, "themax": 55, "themin": 55, "theproduct": 55, "themean": 55, "theconcat": 55, "thecomma": 55 }, "geometry": { "type": "Point", "coordinates": [ 96.042480, 83.713139 ] } } +, +{ "type": "Feature", "properties": { "themax": 91, "themin": 91, "themean": 91, "theconcat": 91, "thecomma": 91, "thesum": 124, "theproduct": 3003 }, "geometry": { "type": "Point", "coordinates": [ 114.982910, 84.176476 ] } } ] } ] } , diff --git a/tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json b/tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json index 07d81c3ad..f3587cd2a 100644 --- a/tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json +++ b/tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "3.757458,-84.969764,359.744029,85.007238", +"antimeridian_adjusted_bounds": "3.757458,-85.051129,359.744029,85.051129", "bounds": "-179.320808,-85.051129,177.449262,85.051129", "center": "112.500000,20.489949,3", "description": "tests/accumulate/out/-z3_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma_-r1_-K100.json.check.mbtiles", diff --git a/tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json b/tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json index 2913544d5..72b226540 100644 --- a/tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json +++ b/tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json @@ -1,27 +1,31 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "3.757458,-84.969764,359.744029,85.007238", +"antimeridian_adjusted_bounds": "3.757458,-85.051129,359.744029,85.051129", "bounds": "-179.320808,-85.051129,177.449262,85.051129", "center": "-174.375000,-52.349536,5", "description": "tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json.check.mbtiles -z5 -Ethesum:sum -Etheproduct:product -Ethemax:max -Ethemin:min -Ethemean:mean -Etheconcat:concat -Ethecomma:comma tests/accumulate/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"thecomma\":\"Mixed\",\"theconcat\":\"Mixed\",\"themax\":\"Number\",\"themean\":\"Number\",\"themin\":\"Number\",\"theproduct\":\"Number\",\"thesum\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":100,\"geometry\":\"Point\",\"attributeCount\":7,\"attributes\":[{\"attribute\":\"thecomma\",\"count\":152,\"type\":\"mixed\",\"values\":[1,\"1,8,44,6\",10,100,11,12,13,14,15,16,\"16,82\",17,\"17,62\",18,\"18,39\",\"18,39,15\",19,2,\"2,16,82\",20,21,22,23,24,\"24,83\",25,26,\"26,89,25\",\"26,89,25,55,91,33,17,62,69,81,7,93,31\",27,28,29,3,\"3,14\",\"3,14,78,28\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36,87,96,58\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,73,33\",30,31,32,33,34,35,\"35,79\",\"35,79,1,31,70,64,8,44,6,52,61,36,87,96,58\",36,37,38,\"38,49\",\"38,49,43,54,71,9,32\",39,4,40,41,42,43,\"43,54\",44,45,46,47,48,49,\"49,1,31,70,64,8,44,6\",\"49,72,86,46,76,48,18,39,15,80,85,24,83,10\",5,\"5,12\",50,51,52,53,54,55,\"55,91\",\"55,91,33\",56,57,\"57,37\",\"57,37,97\",58,59,6,60,61,\"61,36\",62,63,64,65,\"65,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,96\",66,\"66,22\",\"66,22,63,95,73,86,19\",67,\"67,38,11,2,16,82\",\"67,65\",\"67,74,65,5,12,94,84,51,38\",68,69,\"69,81\"],\"min\":1,\"max\":100},{\"attribute\":\"theconcat\",\"count\":152,\"type\":\"mixed\",\"values\":[1,10,100,11,12,13,14,15,16,\"1682\",17,\"1762\",18,\"1839\",\"183915\",\"18446\",19,2,20,21,\"21682\",22,23,24,\"2483\",25,26,\"268925\",\"2689255591331762698179331\",27,28,29,3,30,31,\"314\",\"3147828\",\"31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136879658\",\"3147828677465512948451573797539299902113387333\",32,33,34,35,\"3579\",\"357913170648446526136879658\",36,37,38,\"3849\",\"3849435471932\",39,4,40,41,42,43,\"4354\",44,45,46,47,48,49,\"4913170648446\",\"4972864676481839158085248310\",5,50,51,\"512\",52,53,54,55,\"5591\",\"559133\",56,57,\"5737\",\"573797\",58,59,6,60,61,\"6136\",62,63,64,65,\"6538494354719327523722959421006622639573861996\",66,\"6622\",\"66226395738619\",67,\"67381121682\",\"6765\",\"67746551294845138\",68,69,\"6981\"],\"min\":1,\"max\":100},{\"attribute\":\"themax\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themean\",\"count\":134,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,14.75,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,28.5,29,3,30,30.75,31,32,33,33.333333333333339,34,34.125,35,36,37,37.333333333333339,38,39,39.5,4,40,41,42,42.285714285714288,43,43.5,44,45,46,46.666666666666667,47,47.333333333333339,48,48.5,48.53333333333333,49,5,50,50.5,50.773809523809529,51,52,52.214285714285718,52.23076923076923,52.333333333333339,53,53.25,53.5,54,54.44444444444444,55,55.69565217391305,55.75,56,57,58,59,59.333333333333339,59.666666666666667,6,60,60.4,60.57142857142857,61,62,62.5,63,63.666666666666667,64,64.66666666666667,65,66,67,68,69,69.33333333333333,7,70],\"min\":1,\"max\":100},{\"attribute\":\"themin\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theproduct\",\"count\":150,\"type\":\"number\",\"values\":[1,1.1358965693283625e+21,1.5864380887725077e+38,1.6098219495357537e+132,10,100,1036586822040,10530,1054,11,119282,12,12157085491200,13,1312,1320551424,14,14372413440,1452,15,16,16336199880,165165,1693200,17,1725,18,1862,19,1992,2,20,20448,204573,2088,21,2109,2112,2196,22,23,2322,24,2432430,25,26,2624,27,2765,28,288600,29,295891195017600,3,30,300656,31,32,33,34,35,35840,36,3638439,37,38,39,39123,3982783094784,4,4.486244263022014e+22,40,402696,41,42,43,4355,44,45,46,47,48,49,5,5.103920456870841e+38,50,5005,51,517406400,52,53,54,55,5589,56,57,57850,58,59,6],\"min\":1,\"max\":1.6098219495357537e+132},{\"attribute\":\"thesum\",\"count\":136,\"type\":\"number\",\"values\":[1,10,100,101,107,11,112,114,12,123,1278,1281,13,132,14,140,142,146,15,150,156,157,16,17,178,179,18,19,191,2,20,202,208,21,216,22,223,229,23,24,25,250,26,27,273,28,29,296,3,30,302,31,32,33,34,35,352,36,37,38,388,39,4,40,408,41,42,424,4265,43,44,45,46,462,47,48,49,490,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,679,68],\"min\":1,\"max\":4265}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"thecomma\":\"Mixed\",\"theconcat\":\"Mixed\",\"themax\":\"Number\",\"themean\":\"Number\",\"themin\":\"Number\",\"theproduct\":\"Number\",\"thesum\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":100,\"geometry\":\"Point\",\"attributeCount\":7,\"attributes\":[{\"attribute\":\"thecomma\",\"count\":155,\"type\":\"mixed\",\"values\":[1,\"1,8,44,6\",10,100,\"100,66,22,63,95,73,86,19,96\",11,12,13,14,15,16,\"16,82\",\"16,82,26\",17,\"17,62\",18,19,2,\"2,16,82,26,89,25\",20,21,\"21,13\",22,23,24,25,26,27,28,29,3,\"3,14\",\"3,14,78,28\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36\",\"3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,73,33\",30,31,32,\"32,75\",\"32,75,23\",33,34,35,\"35,79\",36,37,38,\"38,49\",\"38,49,43,54\",\"38,49,43,54,71,9\",39,4,40,41,42,43,44,45,46,47,48,\"48,18,39\",\"48,18,39,15\",49,\"49,1,31,70,64,8,44,6\",\"49,72,86,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36\",5,\"5,12\",50,51,52,53,\"53,92\",\"53,92,99,90,21,13,73\",54,55,\"55,91,33\",56,57,\"57,37\",\"57,37,97\",58,59,6,60,61,\"61,36\",62,63,\"63,95\",64,65,\"65,38,49,43,54,71,9,32,75,23,72,29,59,42\",66,\"66,22\",\"66,22,63,95,73,86,19\",67,\"67,38,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,31\",\"67,65\",\"67,74\"],\"min\":1,\"max\":100},{\"attribute\":\"theconcat\",\"count\":155,\"type\":\"mixed\",\"values\":[1,10,100,\"1006622639573861996\",11,12,13,14,15,16,\"1682\",\"168226\",17,\"1762\",18,\"18446\",19,2,20,21,\"2113\",\"21682268925\",22,23,24,25,26,27,28,29,3,30,31,\"314\",\"3147828\",\"31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136\",\"3147828677465512948451573797539299902113387333\",32,\"3275\",\"327523\",33,34,35,\"3579\",36,37,38,\"3849\",\"38494354\",\"38494354719\",39,4,40,41,42,43,44,45,46,47,48,\"481839\",\"48183915\",49,\"4913170648446\",\"4972864676481839158085248310357913170648446526136\",5,50,51,\"512\",52,53,\"5392\",\"53929990211373\",54,55,\"559133\",56,57,\"5737\",\"573797\",58,59,6,60,61,\"6136\",62,63,\"6395\",64,65,\"653849435471932752372295942\",66,\"6622\",\"66226395738619\",67,\"673811216822689255591331762698179331\",\"6765\",\"6774\"],\"min\":1,\"max\":100},{\"attribute\":\"themax\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"themean\",\"count\":136,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,14.75,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,30.75,31,32,33,34,34.125,35,36,37,38,39,39.5,4,40,41,41.333333333333339,42,43,43.333333333333339,43.5,44,44.6,45,46,46.84615384615385,47,47.10526315789474,47.214285714285718,47.333333333333339,48,48.5,49,49.67901234567901,5,50,50.5,51,52,52.333333333333339,52.666666666666667,53,53.25,53.5,54,54.44444444444444,55,55.25,55.75,56,56.333333333333339,57,58,59,59.333333333333339,59.666666666666667,6,60,60.57142857142857,61,62,62.5,63,63.666666666666667,64,65,66,67,68,68.88888888888889,69,69.33333333333333,7,70,70.5],\"min\":1,\"max\":100},{\"attribute\":\"themin\",\"count\":100,\"type\":\"number\",\"values\":[1,10,100,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92,93,94,95,96,97,98,99],\"min\":1,\"max\":100},{\"attribute\":\"theproduct\",\"count\":153,\"type\":\"number\",\"values\":[1,1.5864380887725077e+38,10,100,1036586822040,1054,11,119282,12,12157085491200,13,1312,14,14372413440,1452,15,151798400,158112,16,165165,169320,17,18,1862,19,19336200,2,20,204573,2088,21,2109,2112,2196,22,23,24,2400,2432430,25,26,27,273,2762757396,2765,28,29,295891195017600,3,3.323222085017327e+126,30,300656,31,32,33,33696,34,34112,35,35840,36,3638439,37,38,39,39123,4,40,402696,41,42,43,4323564,4355,44,45,46,4681698000,47,48,484416,4876,49,4958,5,5.128932469715791e+22,50,505440,51,5174064,52,53,54,55,55200,56,57,58,59,5985],\"min\":1,\"max\":3.323222085017327e+126},{\"attribute\":\"thesum\",\"count\":142,\"type\":\"number\",\"values\":[1,10,100,101,105,107,11,114,12,120,1218,123,124,1278,13,130,132,14,141,142,145,15,157,158,16,169,17,178,179,18,183,184,19,191,192,2,20,202,208,21,22,221,223,229,23,24,240,241,25,250,26,264,27,273,28,29,3,30,31,316,32,33,34,35,36,37,38,39,4,40,4024,408,41,42,424,43,44,441,45,46,47,48,49,490,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,620],\"min\":1,\"max\":4024}]}]}}", "maxzoom": "5", "minzoom": "0", "name": "tests/accumulate/out/-z5_-Ethesum%3asum_-Etheproduct%3aproduct_-Ethemax%3amax_-Ethemin%3amin_-Ethemean%3amean_-Etheconcat%3aconcat_-Ethecomma%3acomma.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":83},{\"dropped_by_rate\":89},{\"dropped_by_rate\":69},{\"dropped_by_rate\":39},{\"dropped_by_rate\":11},{}]", +"strategies": "[{\"dropped_by_rate\":82},{\"dropped_by_rate\":89},{\"dropped_by_rate\":70},{\"dropped_by_rate\":43},{\"dropped_by_rate\":14},{}]", "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": { "thesum": 4265, "themax": 100, "themin": 1, "theproduct": 1.6098219495357537e+132, "themean": 50.773809523809529, "theconcat": "31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136879658", "thecomma": "3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36,87,96,58" }, "geometry": { "type": "Point", "coordinates": [ -147.392578, 84.778533 ] } } +{ "type": "Feature", "properties": { "thesum": 4024, "themax": 100, "themin": 1, "theproduct": 3.323222085017327e+126, "themean": 49.67901234567901, "theconcat": "31478286774655129484515737975392999021133849435471932752372295942100662263957386191121682268925559133176269817934676481839158085248310357913170648446526136", "thecomma": "3,14,78,28,67,74,65,5,12,94,84,51,57,37,97,53,92,99,90,21,13,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36" }, "geometry": { "type": "Point", "coordinates": [ -147.392578, 84.778533 ] } } +, +{ "type": "Feature", "properties": { "thesum": 241, "themax": 96, "themin": 58, "theproduct": 484416, "themean": 80.33333333333333, "theconcat": "879658", "thecomma": "87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 165.498047, -69.869892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 1281, "themax": 100, "themin": 9, "theproduct": 5.103920456870841e+38, "themean": 55.69565217391305, "theconcat": "6538494354719327523722959421006622639573861996", "thecomma": "65,38,49,43,54,71,9,32,75,23,72,29,59,42,100,66,22,63,95,73,86,19,96" }, "geometry": { "type": "Point", "coordinates": [ -166.420898, 2.767478 ] } } +{ "type": "Feature", "properties": { "thesum": 661, "themax": 75, "themin": 9, "theproduct": 5.128932469715791e+22, "themean": 47.214285714285718, "theconcat": "653849435471932752372295942", "thecomma": "65,38,49,43,54,71,9,32,75,23,72,29,59,42" }, "geometry": { "type": "Point", "coordinates": [ -166.420898, 2.767478 ] } } +, +{ "type": "Feature", "properties": { "thesum": 620, "themax": 100, "themin": 19, "theproduct": 9951233491584000, "themean": 68.88888888888889, "theconcat": "1006622639573861996", "thecomma": "100,66,22,63,95,73,86,19,96" }, "geometry": { "type": "Point", "coordinates": [ -123.925781, -81.873641 ] } } ] } ] } , @@ -33,31 +37,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 731, "themax": 86, "themin": 10, "theproduct": 7.2621682598253038e+22, "themean": 52.214285714285718, "theconcat": "4972864676481839158085248310", "thecomma": "49,72,86,46,76,48,18,39,15,80,85,24,83,10" }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -18.020528 ] } } +{ "type": "Feature", "properties": { "thesum": 1218, "themax": 86, "themin": 1, "theproduct": 6.725595499063168e+39, "themean": 46.84615384615385, "theconcat": "4972864676481839158085248310357913170648446526136", "thecomma": "49,72,86,46,76,48,18,39,15,80,85,24,83,10,35,79,1,31,70,64,8,44,6,52,61,36" }, "geometry": { "type": "Point", "coordinates": [ 181.450195, -18.020528 ] } } , -{ "type": "Feature", "properties": { "thesum": 728, "themax": 96, "themin": 1, "theproduct": 4.486244263022014e+22, "themean": 48.53333333333333, "theconcat": "357913170648446526136879658", "thecomma": "35,79,1,31,70,64,8,44,6,52,61,36,87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 57.963867, -82.232057 ] } } +{ "type": "Feature", "properties": { "thesum": 241, "themax": 96, "themin": 58, "theproduct": 484416, "themean": 80.33333333333333, "theconcat": "879658", "thecomma": "87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 165.541992, -69.869892 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 216, "themax": 82, "themin": 2, "theproduct": 73487744, "themean": 36, "theconcat": "67381121682", "thecomma": "67,38,11,2,16,82" }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.268764 ] } } -, -{ "type": "Feature", "properties": { "thesum": 679, "themax": 93, "themin": 7, "theproduct": 1.1358965693283625e+21, "themean": 52.23076923076923, "theconcat": "2689255591331762698179331", "thecomma": "26,89,25,55,91,33,17,62,69,81,7,93,31" }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "thesum": 895, "themax": 93, "themin": 2, "theproduct": 8.347447629728093e+28, "themean": 47.10526315789474, "theconcat": "673811216822689255591331762698179331", "thecomma": "67,38,11,2,16,82,26,89,25,55,91,33,17,62,69,81,7,93,31" }, "geometry": { "type": "Point", "coordinates": [ 182.548828, 22.268764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 302, "themax": 100, "themin": 29, "theproduct": 517406400, "themean": 60.4, "theconcat": "72295942100", "thecomma": "72,29,59,42,100" }, "geometry": { "type": "Point", "coordinates": [ -179.318848, -69.029279 ] } } +{ "type": "Feature", "properties": { "thesum": 202, "themax": 72, "themin": 29, "theproduct": 5174064, "themean": 50.5, "theconcat": "72295942", "thecomma": "72,29,59,42" }, "geometry": { "type": "Point", "coordinates": [ -179.318848, -69.029279 ] } } +, +{ "type": "Feature", "properties": { "thesum": 100, "themax": 100, "themin": 100, "theproduct": 100, "themean": 100, "theconcat": 100, "thecomma": 100 }, "geometry": { "type": "Point", "coordinates": [ -123.947754, -81.873641 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 296, "themax": 71, "themin": 9, "theproduct": 88408236672, "themean": 42.285714285714288, "theconcat": "3849435471932", "thecomma": "38,49,43,54,71,9,32" }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.186439 ] } } +{ "type": "Feature", "properties": { "thesum": 264, "themax": 71, "themin": 9, "theproduct": 2762757396, "themean": 44, "theconcat": "38494354719", "thecomma": "38,49,43,54,71,9" }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.186439 ] } } , -{ "type": "Feature", "properties": { "thesum": 98, "themax": 75, "themin": 23, "theproduct": 1725, "themean": 49, "theconcat": "7523", "thecomma": "75,23" }, "geometry": { "type": "Point", "coordinates": [ -157.214355, -62.925236 ] } } +{ "type": "Feature", "properties": { "thesum": 130, "themax": 75, "themin": 23, "theproduct": 55200, "themean": 43.333333333333339, "theconcat": "327523", "thecomma": "32,75,23" }, "geometry": { "type": "Point", "coordinates": [ -156.335449, -54.162434 ] } } ] } ] } , @@ -81,9 +85,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 53, "themax": 53, "themin": 53, "theproduct": 53, "themean": 53, "theconcat": 53, "thecomma": 53 }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } -, -{ "type": "Feature", "properties": { "thesum": 388, "themax": 99, "themin": 13, "theproduct": 16336199880, "themean": 64.66666666666667, "theconcat": "929990211373", "thecomma": "92,99,90,21,13,73" }, "geometry": { "type": "Point", "coordinates": [ -63.369141, 58.008098 ] } } +{ "type": "Feature", "properties": { "thesum": 441, "themax": 99, "themin": 13, "theproduct": 865818593640, "themean": 63, "theconcat": "53929990211373", "thecomma": "53,92,99,90,21,13,73" }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } ] } ] } , @@ -95,9 +97,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 202, "themax": 85, "themin": 10, "theproduct": 1693200, "themean": 50.5, "theconcat": "85248310", "thecomma": "85,24,83,10" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, -80.386396 ] } } -, -{ "type": "Feature", "properties": { "thesum": 114, "themax": 79, "themin": 35, "theproduct": 2765, "themean": 57, "theconcat": "3579", "thecomma": "35,79" }, "geometry": { "type": "Point", "coordinates": [ 57.963867, -82.229086 ] } } +{ "type": "Feature", "properties": { "thesum": 316, "themax": 85, "themin": 10, "theproduct": 4681698000, "themean": 52.666666666666667, "theconcat": "852483103579", "thecomma": "85,24,83,10,35,79" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, -80.386396 ] } } ] } ] } , @@ -109,9 +109,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 100, "themax": 82, "themin": 2, "theproduct": 2624, "themean": 33.333333333333339, "theconcat": "21682", "thecomma": "2,16,82" }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } -, -{ "type": "Feature", "properties": { "thesum": 140, "themax": 89, "themin": 25, "theproduct": 57850, "themean": 46.666666666666667, "theconcat": "268925", "thecomma": "26,89,25" }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 42.747012 ] } } +{ "type": "Feature", "properties": { "thesum": 240, "themax": 89, "themin": 2, "theproduct": 151798400, "themean": 40, "theconcat": "21682268925", "thecomma": "2,16,82,26,89,25" }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } ] } ] } , @@ -123,7 +121,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 462, "themax": 96, "themin": 36, "theproduct": 3982783094784, "themean": 66, "theconcat": "72526136879658", "thecomma": "72,52,61,36,87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 180.681152, -69.029279 ] } } +{ "type": "Feature", "properties": { "thesum": 221, "themax": 72, "themin": 36, "theproduct": 8221824, "themean": 55.25, "theconcat": "72526136", "thecomma": "72,52,61,36" }, "geometry": { "type": "Point", "coordinates": [ 180.681152, -69.029279 ] } } +, +{ "type": "Feature", "properties": { "thesum": 241, "themax": 96, "themin": 58, "theproduct": 484416, "themean": 80.33333333333333, "theconcat": "879658", "thecomma": "87,96,58" }, "geometry": { "type": "Point", "coordinates": [ 165.520020, -69.862328 ] } } ] } ] } , @@ -157,25 +157,21 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 112, "themax": 71, "themin": 9, "theproduct": 20448, "themean": 37.333333333333339, "theconcat": "71932", "thecomma": "71,9,32" }, "geometry": { "type": "Point", "coordinates": [ -171.837158, -55.021725 ] } } +{ "type": "Feature", "properties": { "thesum": 80, "themax": 71, "themin": 9, "theproduct": 639, "themean": 40, "theconcat": "719", "thecomma": "71,9" }, "geometry": { "type": "Point", "coordinates": [ -171.837158, -55.021725 ] } } , -{ "type": "Feature", "properties": { "thesum": 75, "themax": 75, "themin": 75, "theproduct": 75, "themean": 75, "theconcat": 75, "thecomma": 75 }, "geometry": { "type": "Point", "coordinates": [ -157.214355, -62.925236 ] } } +{ "type": "Feature", "properties": { "thesum": 107, "themax": 75, "themin": 32, "theproduct": 2400, "themean": 53.5, "theconcat": "3275", "thecomma": "32,75" }, "geometry": { "type": "Point", "coordinates": [ -156.346436, -54.156001 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 87, "themax": 49, "themin": 38, "theproduct": 1862, "themean": 43.5, "theconcat": "3849", "thecomma": "38,49" }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.175455 ] } } -, -{ "type": "Feature", "properties": { "thesum": 97, "themax": 54, "themin": 43, "theproduct": 2322, "themean": 48.5, "theconcat": "4354", "thecomma": "43,54" }, "geometry": { "type": "Point", "coordinates": [ -168.145752, -37.378888 ] } } +{ "type": "Feature", "properties": { "thesum": 184, "themax": 54, "themin": 38, "theproduct": 4323564, "themean": 46, "theconcat": "38494354", "thecomma": "38,49,43,54" }, "geometry": { "type": "Point", "coordinates": [ -176.462402, -1.175455 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 67, "themax": 67, "themin": 67, "theproduct": 67, "themean": 67, "theconcat": 67, "thecomma": 67 }, "geometry": { "type": "Point", "coordinates": [ -177.440186, 22.268764 ] } } -, -{ "type": "Feature", "properties": { "thesum": 156, "themax": 74, "themin": 5, "theproduct": 288600, "themean": 39, "theconcat": "7465512", "thecomma": "74,65,5,12" }, "geometry": { "type": "Point", "coordinates": [ -159.598389, 33.513919 ] } } +{ "type": "Feature", "properties": { "thesum": 223, "themax": 74, "themin": 5, "theproduct": 19336200, "themean": 44.6, "theconcat": "677465512", "thecomma": "67,74,65,5,12" }, "geometry": { "type": "Point", "coordinates": [ -177.440186, 22.268764 ] } } ] } ] } , @@ -223,9 +219,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 63, "themax": 63, "themin": 63, "theproduct": 63, "themean": 63, "theconcat": 63, "thecomma": 63 }, "geometry": { "type": "Point", "coordinates": [ -50.734863, -49.045070 ] } } -, -{ "type": "Feature", "properties": { "thesum": 95, "themax": 95, "themin": 95, "theproduct": 95, "themean": 95, "theconcat": 95, "thecomma": 95 }, "geometry": { "type": "Point", "coordinates": [ -56.678467, -62.557920 ] } } +{ "type": "Feature", "properties": { "thesum": 158, "themax": 95, "themin": 63, "theproduct": 5985, "themean": 79, "theconcat": "6395", "thecomma": "63,95" }, "geometry": { "type": "Point", "coordinates": [ -50.734863, -49.045070 ] } } ] } ] } , @@ -237,9 +231,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 53, "themax": 53, "themin": 53, "theproduct": 53, "themean": 53, "theconcat": 53, "thecomma": 53 }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } -, -{ "type": "Feature", "properties": { "thesum": 92, "themax": 92, "themin": 92, "theproduct": 92, "themean": 92, "theconcat": 92, "thecomma": 92 }, "geometry": { "type": "Point", "coordinates": [ -63.358154, 58.008098 ] } } +{ "type": "Feature", "properties": { "thesum": 145, "themax": 92, "themin": 53, "theproduct": 4876, "themean": 72.5, "theconcat": "5392", "thecomma": "53,92" }, "geometry": { "type": "Point", "coordinates": [ -84.902344, 62.165502 ] } } ] } ] } , @@ -281,17 +273,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 85, "themax": 85, "themin": 85, "theproduct": 85, "themean": 85, "theconcat": 85, "thecomma": 85 }, "geometry": { "type": "Point", "coordinates": [ 7.393799, -80.388230 ] } } -, -{ "type": "Feature", "properties": { "thesum": 107, "themax": 83, "themin": 24, "theproduct": 1992, "themean": 53.5, "theconcat": "2483", "thecomma": "24,83" }, "geometry": { "type": "Point", "coordinates": [ 13.458252, -81.542544 ] } } +{ "type": "Feature", "properties": { "thesum": 192, "themax": 85, "themin": 24, "theproduct": 169320, "themean": 64, "theconcat": "852483", "thecomma": "85,24,83" }, "geometry": { "type": "Point", "coordinates": [ 7.393799, -80.388230 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 48, "themax": 48, "themin": 48, "theproduct": 48, "themean": 48, "theconcat": 48, "thecomma": 48 }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.957761 ] } } -, -{ "type": "Feature", "properties": { "thesum": 72, "themax": 39, "themin": 15, "theproduct": 10530, "themean": 24, "theconcat": "183915", "thecomma": "18,39,15" }, "geometry": { "type": "Point", "coordinates": [ 6.569824, -44.801327 ] } } +{ "type": "Feature", "properties": { "thesum": 120, "themax": 48, "themin": 15, "theproduct": 505440, "themean": 30, "theconcat": "48183915", "thecomma": "48,18,39,15" }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.957761 ] } } ] } ] } , @@ -309,9 +297,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 100, "themax": 82, "themin": 2, "theproduct": 2624, "themean": 33.333333333333339, "theconcat": "21682", "thecomma": "2,16,82" }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } +{ "type": "Feature", "properties": { "thesum": 2, "themax": 2, "themin": 2, "theproduct": 2, "themean": 2, "theconcat": 2, "thecomma": 2 }, "geometry": { "type": "Point", "coordinates": [ 14.062500, 46.724800 ] } } , -{ "type": "Feature", "properties": { "thesum": 26, "themax": 26, "themin": 26, "theproduct": 26, "themean": 26, "theconcat": 26, "thecomma": 26 }, "geometry": { "type": "Point", "coordinates": [ 44.022217, 42.747012 ] } } +{ "type": "Feature", "properties": { "thesum": 124, "themax": 82, "themin": 16, "theproduct": 34112, "themean": 41.333333333333339, "theconcat": "168226", "thecomma": "16,82,26" }, "geometry": { "type": "Point", "coordinates": [ 24.664307, 60.294299 ] } } ] } ] } , @@ -367,7 +355,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 146, "themax": 91, "themin": 55, "theproduct": 5005, "themean": 73, "theconcat": "5591", "thecomma": "55,91" }, "geometry": { "type": "Point", "coordinates": [ 96.031494, 83.713139 ] } } +{ "type": "Feature", "properties": { "thesum": 55, "themax": 55, "themin": 55, "theproduct": 55, "themean": 55, "theconcat": 55, "thecomma": 55 }, "geometry": { "type": "Point", "coordinates": [ 96.031494, 83.713139 ] } } +, +{ "type": "Feature", "properties": { "thesum": 91, "themax": 91, "themin": 91, "theproduct": 91, "themean": 91, "theconcat": 91, "thecomma": 91 }, "geometry": { "type": "Point", "coordinates": [ 114.971924, 84.177591 ] } } ] } ] } , @@ -379,7 +369,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 352, "themax": 96, "themin": 36, "theproduct": 1320551424, "themean": 70.4, "theconcat": "7261368796", "thecomma": "72,61,36,87,96" }, "geometry": { "type": "Point", "coordinates": [ 180.681152, -69.033211 ] } } +{ "type": "Feature", "properties": { "thesum": 169, "themax": 72, "themin": 36, "theproduct": 158112, "themean": 56.333333333333339, "theconcat": "726136", "thecomma": "72,61,36" }, "geometry": { "type": "Point", "coordinates": [ 180.681152, -69.033211 ] } } +, +{ "type": "Feature", "properties": { "thesum": 183, "themax": 96, "themin": 87, "theproduct": 8352, "themean": 91.5, "theconcat": "8796", "thecomma": "87,96" }, "geometry": { "type": "Point", "coordinates": [ 165.531006, -69.862328 ] } } ] } ] } , @@ -423,7 +415,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 80, "themax": 71, "themin": 9, "theproduct": 639, "themean": 40, "theconcat": "719", "thecomma": "71,9" }, "geometry": { "type": "Point", "coordinates": [ -171.837158, -55.021725 ] } } +{ "type": "Feature", "properties": { "thesum": 71, "themax": 71, "themin": 71, "theproduct": 71, "themean": 71, "theconcat": 71, "thecomma": 71 }, "geometry": { "type": "Point", "coordinates": [ -171.837158, -55.021725 ] } } +, +{ "type": "Feature", "properties": { "thesum": 9, "themax": 9, "themin": 9, "theproduct": 9, "themean": 9, "theconcat": 9, "thecomma": 9 }, "geometry": { "type": "Point", "coordinates": [ -168.585205, -52.643063 ] } } ] } ] } , @@ -447,9 +441,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 0, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 67, "themax": 67, "themin": 67, "theproduct": 67, "themean": 67, "theconcat": 67, "thecomma": 67 }, "geometry": { "type": "Point", "coordinates": [ -177.445679, 22.268764 ] } } -, -{ "type": "Feature", "properties": { "thesum": 74, "themax": 74, "themin": 74, "theproduct": 74, "themean": 74, "theconcat": 74, "thecomma": 74 }, "geometry": { "type": "Point", "coordinates": [ -159.598389, 33.513919 ] } } +{ "type": "Feature", "properties": { "thesum": 141, "themax": 74, "themin": 67, "theproduct": 4958, "themean": 70.5, "theconcat": "6774", "thecomma": "67,74" }, "geometry": { "type": "Point", "coordinates": [ -177.445679, 22.268764 ] } } ] } ] } , @@ -619,9 +611,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 21, "themax": 21, "themin": 21, "theproduct": 21, "themean": 21, "theconcat": 21, "thecomma": 21 }, "geometry": { "type": "Point", "coordinates": [ -15.166626, 44.154622 ] } } -, -{ "type": "Feature", "properties": { "thesum": 13, "themax": 13, "themin": 13, "theproduct": 13, "themean": 13, "theconcat": 13, "thecomma": 13 }, "geometry": { "type": "Point", "coordinates": [ -3.707886, 47.349989 ] } } +{ "type": "Feature", "properties": { "thesum": 34, "themax": 21, "themin": 13, "theproduct": 273, "themean": 17, "theconcat": "2113", "thecomma": "21,13" }, "geometry": { "type": "Point", "coordinates": [ -15.166626, 44.154622 ] } } ] } ] } , @@ -647,9 +637,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 48, "themax": 48, "themin": 48, "theproduct": 48, "themean": 48, "theconcat": 48, "thecomma": 48 }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.957761 ] } } -, -{ "type": "Feature", "properties": { "thesum": 57, "themax": 39, "themin": 18, "theproduct": 702, "themean": 28.5, "theconcat": "1839", "thecomma": "18,39" }, "geometry": { "type": "Point", "coordinates": [ 6.564331, -44.805224 ] } } +{ "type": "Feature", "properties": { "thesum": 105, "themax": 48, "themin": 18, "theproduct": 33696, "themean": 35, "theconcat": "481839", "thecomma": "48,18,39" }, "geometry": { "type": "Point", "coordinates": [ 3.757324, -46.957761 ] } } ] } ] } , @@ -767,9 +755,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "thesum": 150, "themax": 81, "themin": 69, "theproduct": 5589, "themean": 75, "theconcat": "6981", "thecomma": "69,81" }, "geometry": { "type": "Point", "coordinates": [ 113.615112, 13.838080 ] } } -, -{ "type": "Feature", "properties": { "thesum": 7, "themax": 7, "themin": 7, "theproduct": 7, "themean": 7, "theconcat": 7, "thecomma": 7 }, "geometry": { "type": "Point", "coordinates": [ 126.606445, 8.722218 ] } } +{ "type": "Feature", "properties": { "thesum": 157, "themax": 81, "themin": 7, "theproduct": 39123, "themean": 52.333333333333339, "theconcat": "69817", "thecomma": "69,81,7" }, "geometry": { "type": "Point", "coordinates": [ 113.615112, 13.838080 ] } } ] } ] } , diff --git a/tests/coalesce-id/out/-z1_--coalesce_--reorder.json b/tests/coalesce-id/out/-z1_--coalesce_--reorder.json index d5c7b239b..7035e12f7 100644 --- a/tests/coalesce-id/out/-z1_--coalesce_--reorder.json +++ b/tests/coalesce-id/out/-z1_--coalesce_--reorder.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023803,-85.040752,359.950215,83.645130", +"antimeridian_adjusted_bounds": "0.023803,-85.051129,359.950215,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "90.000000,42.525564,1", "description": "tests/coalesce-id/out/-z1_--coalesce_--reorder.json.check.mbtiles", diff --git a/tests/csv/out-null.mbtiles.json b/tests/csv/out-null.mbtiles.json index 67837b8e0..8a37ed412 100644 --- a/tests/csv/out-null.mbtiles.json +++ b/tests/csv/out-null.mbtiles.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "-175.220564,-41.299988,179.216647,64.150024", +"antimeridian_adjusted_bounds": "-175.220564,-41.299988,179.216647,85.051129", "bounds": "-180.000000,-41.299988,180.000000,85.051129", "center": "0.000000,0.000000,0", "description": "tests/csv/out-null.mbtiles", diff --git a/tests/csv/out.mbtiles.json b/tests/csv/out.mbtiles.json index 228d55950..a4a57ac77 100644 --- a/tests/csv/out.mbtiles.json +++ b/tests/csv/out.mbtiles.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "-175.220564,-41.299988,179.216647,64.150024", +"antimeridian_adjusted_bounds": "-175.220564,-41.299988,179.216647,85.051129", "bounds": "-180.000000,-41.299988,180.000000,85.051129", "center": "0.000000,0.000000,0", "description": "tests/csv/out.mbtiles", diff --git a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json index c7002f265..c5860ec2d 100644 --- a/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json +++ b/tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/epsg-3857/out/-yNAME_-z5_-sEPSG%3a3857.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/invalid-polygon/out/-z0.json b/tests/invalid-polygon/out/-z0.json index 263eb1d39..574452189 100644 --- a/tests/invalid-polygon/out/-z0.json +++ b/tests/invalid-polygon/out/-z0.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "180.000000,85.051129,-180.000000,-85.051129", +"antimeridian_adjusted_bounds": "-135.232962,-85.051129,-135.232962,-85.051129", "bounds": "-135.232962,-85.051129,-135.232962,-85.051129", "center": "-135.232962,-85.051129,0", "description": "tests/invalid-polygon/out/-z0.json.check.mbtiles", diff --git a/tests/join-population/empty.out.json b/tests/join-population/empty.out.json index 46040e961..8e75b05a6 100644 --- a/tests/join-population/empty.out.json +++ b/tests/join-population/empty.out.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "180.000000,85.051129,-180.000000,-85.051129", +"antimeridian_adjusted_bounds": "0.000000,-85.051129,0.000000,-85.051129", "bounds": "-180.000000,-85.051129,180.000000,-85.051129", "center": "0.000000,-85.051129,0", "format": "pbf", diff --git a/tests/longattr/out/-z0_--maximum-string-attribute-length_20.json b/tests/longattr/out/-z0_--maximum-string-attribute-length_20.json new file mode 100644 index 000000000..ff43a9ad1 --- /dev/null +++ b/tests/longattr/out/-z0_--maximum-string-attribute-length_20.json @@ -0,0 +1,20 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "0.000000,0.000000,0.000000,0.000000", +"bounds": "0.000000,0.000000,0.000000,0.000000", +"center": "0.000000,0.000000,0", +"description": "tests/longattr/out/-z0_--maximum-string-attribute-length_20.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/longattr/out/-z0_--maximum-string-attribute-length_20.json.check.mbtiles -z0 --maximum-string-attribute-length 20 tests/longattr/sherlock.json", +"json": "{\"vector_layers\":[{\"id\":\"sherlock\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"sherlock\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"sherlock\",\"count\":1,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"sherlock\",\"count\":1,\"type\":\"string\",\"values\":[]}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/longattr/out/-z0_--maximum-string-attribute-length_20.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "sherlock", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "sherlock": "The Project Gutenber" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } +] } +] } +] } diff --git a/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json b/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json index 9c87f234d..7893bb77b 100644 --- a/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json +++ b/tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/loop/out/-z0_-O200_--cluster-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":999,\"feature_count_desired\":201}]", +"strategies": "[{\"coalesced_as_needed\":999,\"feature_count_desired\":1000}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json b/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json index 03e03d39c..c13b9e71a 100644 --- a/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json +++ b/tests/loop/out/-z0_-O200_--drop-densest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/loop/out/-z0_-O200_--drop-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":201}]", +"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":1000}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json b/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json index 28e848a05..d9447d25e 100644 --- a/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json +++ b/tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "0", "minzoom": "0", "name": "tests/loop/out/-z0_-O200_--drop-fraction-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":201}]", +"strategies": "[{\"dropped_as_needed\":999,\"feature_count_desired\":1000}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/multilayer/out/-ltogether_-z3.json b/tests/multilayer/out/-ltogether_-z3.json index 6a4148c44..cf75f75e8 100644 --- a/tests/multilayer/out/-ltogether_-z3.json +++ b/tests/multilayer/out/-ltogether_-z3.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/multilayer/out/-ltogether_-z3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":8},{\"dropped_by_rate\":7},{\"dropped_by_rate\":5},{}]", +"strategies": "[{\"dropped_by_rate\":8},{\"dropped_by_rate\":7},{\"dropped_by_rate\":4},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -441,12 +441,12 @@ , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -81.474609, 30.713504 ], [ -81.914062, 30.826781 ], [ -82.001953, 30.789037 ], [ -82.001953, 30.448674 ], [ -82.133789, 30.334954 ], [ -82.221680, 30.524413 ], [ -84.858398, 30.713504 ], [ -84.990234, 30.977609 ] ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.200195, 25.799891 ] } } +, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.124023, 38.925229 ], [ -77.519531, 39.095963 ], [ -77.431641, 39.198205 ], [ -77.739258, 39.334297 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.761719, 39.707187 ], [ -79.453125, 39.707187 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } -, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.036133, 38.788345 ], [ -77.124023, 38.925229 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.036133, 38.788345 ], [ -76.904297, 38.891033 ], [ -77.036133, 38.993572 ], [ -77.124023, 38.925229 ] ] } } @@ -681,6 +681,8 @@ , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -84.309082, 34.976002 ], [ -85.627441, 34.976002 ] ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -84.990234, 30.977609 ], [ -85.122070, 31.222197 ], [ -85.056152, 31.578535 ], [ -85.122070, 31.765537 ], [ -85.056152, 32.082575 ], [ -84.902344, 32.249974 ], [ -85.122070, 32.750323 ], [ -85.627441, 34.976002 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -84.814453, 39.095963 ], [ -84.484863, 39.078908 ], [ -84.309082, 38.976492 ], [ -84.023438, 38.754083 ], [ -83.825684, 38.685510 ], [ -83.671875, 38.599700 ], [ -83.430176, 38.634036 ], [ -83.254395, 38.582526 ], [ -82.858887, 38.651198 ], [ -82.770996, 38.513788 ], [ -82.573242, 38.410558 ] ] } } @@ -715,12 +717,12 @@ , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -81.474609, 30.732393 ], [ -81.694336, 30.751278 ], [ -81.892090, 30.807911 ], [ -82.023926, 30.789037 ], [ -82.023926, 30.429730 ], [ -82.155762, 30.353916 ], [ -82.221680, 30.524413 ], [ -83.847656, 30.675715 ], [ -84.858398, 30.713504 ], [ -84.990234, 30.977609 ] ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } +, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.124023, 38.925229 ], [ -77.299805, 39.044786 ], [ -77.519531, 39.095963 ], [ -77.431641, 39.215231 ], [ -77.563477, 39.283294 ], [ -77.717285, 39.317300 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.783691, 39.724089 ], [ -79.475098, 39.724089 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.891033 ] } } -, { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.036133, 38.788345 ], [ -77.036133, 38.839708 ], [ -77.124023, 38.925229 ] ] } } , { "type": "Feature", "properties": { "scalerank": 2, "featurecla": "Admin-1 boundary", "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -77.036133, 38.788345 ], [ -76.904297, 38.873929 ], [ -77.036133, 38.976492 ], [ -77.124023, 38.925229 ] ] } } diff --git a/tests/multilayer/out/-nseparate_-z3.json b/tests/multilayer/out/-nseparate_-z3.json index 7ebbbcdce..0d302b9d8 100644 --- a/tests/multilayer/out/-nseparate_-z3.json +++ b/tests/multilayer/out/-nseparate_-z3.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "separate", -"strategies": "[{\"dropped_by_rate\":8},{\"dropped_by_rate\":7},{\"dropped_by_rate\":5},{}]", +"strategies": "[{\"dropped_by_rate\":8},{\"dropped_by_rate\":7},{\"dropped_by_rate\":4},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -467,7 +467,7 @@ { "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.200195, 25.799891 ] } } ] } ] } , @@ -745,7 +745,9 @@ { "type": "FeatureCollection", "properties": { "layer": "places", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.736816, 41.820455 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.891033 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-B15.json b/tests/muni/out/-Z11_-z13_-B15.json index a09f30cda..65c6c8f4c 100644 --- a/tests/muni/out/-Z11_-z13_-B15.json +++ b/tests/muni/out/-Z11_-z13_-B15.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-B15.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4727},{\"dropped_by_rate\":4643},{\"dropped_by_rate\":4210}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":651},{\"dropped_by_rate\":472},{}]", "tippecanoe_decisions": "{\"basezoom\":15,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -17,2588 +17,27136 @@ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } ] } ] } , -{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742519 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762539 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.802019 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.719167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } -] } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.720933 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.783418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.762488 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742536 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764286 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712989 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765982 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714415 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.786335 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710341 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764422 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445395, 37.770087 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711291 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470372, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474706, 37.730963 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468054, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719524 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706131 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.741840 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722851 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714075 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } -] } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800442 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715705 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710001 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.712785 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713464 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713464 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714007 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712921 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712140 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774955 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767373 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710544 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754277 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.753904 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710341 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708507 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.707896 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.722715 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715162 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710001 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } -] } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711495 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802019 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } -] } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821828 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523447, 37.831658 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831336 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710884 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717003 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480189, 37.714593 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478322, 37.715849 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } ] } ] } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.752894 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833887 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504865, 37.747431 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.833073 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741900 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505358, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734569 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502526, 37.726754 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751300 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747957 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488815, 37.748144 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746159 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742307 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744513 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807444 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.748534 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742536 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480446, 37.742876 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734858 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493857, 37.732024 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733958 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734552 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734484 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.730420 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.727119 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721756 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478815, 37.725948 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726338 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734688 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732117 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846, 37.727195 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721111 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720941 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482613, 37.788463 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779034 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509993, 37.773217 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507440, 37.780043 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505015, 37.779840 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781086 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779153 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499908, 37.771792 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509199, 37.760350 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762378 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.800527 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499136, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492441, 37.783418 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779797 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779577 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783579 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183, 37.777762 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491840, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804325 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484845, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781968 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481776, 37.782087 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782307 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476262, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803647 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772691 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478129, 37.776524 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476777, 37.772962 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.762496 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481605, 37.765024 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765499 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486519, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761546 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476820, 37.761742 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.755897 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.752894 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793567 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515379, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483386, 37.833149 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.716197 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714050 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471327, 37.710706 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714338 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712335 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708737 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462336, 37.713176 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710129 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713218 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454783, 37.710290 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706818 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716256 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452229, 37.714169 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801138 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716715 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716341 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437960, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799578 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434870, 37.710179 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.708966 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.748534 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.730420 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726338 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473794, 37.748831 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745073 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467679, 37.749094 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750859 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743071 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741527 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470382, 37.736385 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466005, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740950 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465833, 37.740848 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458774, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.740228 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461306, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743240 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734688 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732117 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471884, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474717, 37.730972 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792660 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.731362 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792728 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468065, 37.734790 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469095, 37.729987 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846, 37.727195 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721111 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720941 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719532 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466756, 37.727255 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468151, 37.719592 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733602 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457529, 37.731107 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726033 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719991 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458345, 37.724259 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454976, 37.720067 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451307, 37.744996 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779772 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750409 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.746362 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444204, 37.747151 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510219, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742596 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451736, 37.737726 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446243, 37.738964 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 37.751121 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.745242 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749654 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749807 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437509, 37.743631 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741849 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.736232 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.784995 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731616 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729953 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.731481 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.731481 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723538 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722944 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450942, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.720390 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.723224 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446221, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446886, 37.720466 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446543, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722859 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 37.731667 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.731515 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.733924 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434076, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438668, 37.723674 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.726355 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } -] } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458624, 37.748347 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476262, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472764, 37.784368 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780704 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470597, 37.780840 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784461 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782901 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780781 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472142, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471906, 37.773267 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777202 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467614, 37.773250 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754735 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463623, 37.784885 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785563 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464374, 37.780899 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.786911 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783986 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781374 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.779000 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463709, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777151 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454182, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762072 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764286 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763913 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470576, 37.761954 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758544 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464031, 37.764159 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457958, 37.765982 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458173, 37.763311 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754472 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517, 37.786335 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782239 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783638 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.786326 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782154 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449590, 37.778237 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449461, 37.773420 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778763 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.777872 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775710 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776812 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446049, 37.774056 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439998, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783850 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439526, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496314, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787717 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432917, 37.784732 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779288 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439913, 37.777643 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773183 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.775472 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769332 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450427, 37.768527 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764430 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763260 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445406, 37.770087 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444848, 37.767509 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446071, 37.765295 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765448 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446135, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444075, 37.761326 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761648 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444054, 37.758408 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.768052 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767280 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762547 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482667, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433325, 37.763955 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440428, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439011, 37.755363 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760749 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.754413 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776863 ] } } -] } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762683 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467078, 37.801790 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800129 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454525, 37.803689 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801858 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801010 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798247 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772580 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799044 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446951, 37.800324 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444419, 37.799841 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796704 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790905 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.791185 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800442 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.804427 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.772852 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435170, 37.802748 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436372, 37.800739 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434505, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797043 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438883, 37.796585 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789972 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.795992 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794059 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764710 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433025, 37.792719 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434484, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434098, 37.789921 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787717 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801350 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.717563 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711113 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757246 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710044 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423218, 37.709305 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712607 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755142 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711707 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712021 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715034 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711062 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.710587 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.708210 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 37.706937 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.708261 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716596 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713846 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710010 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716867 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399358, 37.714814 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712233 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402340, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403778, 37.711139 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765321 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399186, 37.711588 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405044, 37.708940 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387942, 37.712794 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.753904 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429549, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426888, 37.746778 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742103 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763692 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742019 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422167, 37.742307 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.739745 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737064 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420558, 37.752182 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750282 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420214, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.746939 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.748305 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753989 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748110 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.738829 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413241, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761385 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733721 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424699, 37.735621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728714 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722384 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721552 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719821 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422038, 37.725600 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719312 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.734892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734671 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410837, 37.730912 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727017 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752835 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.725142 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410601, 37.723122 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753064 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.749688 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747126 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405194, 37.742884 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738370 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404164, 37.742528 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752284 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396890, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747262 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750400 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398242, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753310 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736215 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392920, 37.740695 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742680 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391268, 37.739753 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391633, 37.736266 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747677 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.739915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747609 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737946 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.743741 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405580, 37.734247 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504640, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404808, 37.732999 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404615, 37.730259 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399250, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403241, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400881, 37.729096 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723487 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723877 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404336, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402104, 37.724183 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.723292 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727917 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392362, 37.735681 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734790 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732278 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390345, 37.735409 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392749, 37.729223 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397383, 37.722723 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722452 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721416 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749077 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731591 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426652, 37.785902 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425085, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786106 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747609 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.784656 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420665, 37.780950 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776863 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776032 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426265, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423304, 37.777745 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773810 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774031 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786801 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487903, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782985 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415794, 37.782646 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415687, 37.780730 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787649 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409958, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414078, 37.783681 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742248 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412447, 37.780645 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409893, 37.783384 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419485, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.774963 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.774573 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736750 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.778500 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778966 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772402 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429162, 37.769502 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767772 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767348 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767382 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430707, 37.766186 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.768391 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422060, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430686, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756644 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423648, 37.761521 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421502, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762632 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479405, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410451, 37.769672 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765380 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409807, 37.765719 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416781, 37.758866 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418562, 37.754277 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758815 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742723 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.783994 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786394 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785529 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782104 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.782646 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403435, 37.787632 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786343 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786208 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783036 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.780671 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775727 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407082, 37.772326 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778915 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773471 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.733356 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.785741 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.784190 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398070, 37.779475 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392169, 37.786733 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775489 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777185 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779288 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389616, 37.771164 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765702 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766042 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.770163 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402726, 37.767314 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.764786 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.766228 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761852 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.757399 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.728061 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757187 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404937, 37.754421 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759680 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728876 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.760936 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.756881 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762581 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391032, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769052 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764362 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764176 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.753904 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391762, 37.757704 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388242, 37.758077 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387899, 37.755694 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753064 ] } } -] } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788700 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775065 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720661 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805283 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422081, 37.806351 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808318 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.808097 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801350 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802028 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.800858 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425107, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471080, 37.784452 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424635, 37.802579 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429119, 37.792177 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423004, 37.794177 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794177 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425772, 37.791040 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791159 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422017, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804791 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415236, 37.805325 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418777, 37.797407 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415065, 37.804961 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411653, 37.804808 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799739 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410644, 37.800197 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.795551 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794652 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419528, 37.791719 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420386, 37.789540 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417532, 37.790905 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.790167 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.795788 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.793177 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.796407 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794533 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474170, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414120, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406203, 37.806792 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800756 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406739, 37.796984 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.775362 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805147 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.803265 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403585, 37.797391 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400731, 37.798543 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404743, 37.794703 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404550, 37.793770 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792210 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.791091 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789480 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785334 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795907 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400280, 37.794177 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.793296 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.797085 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395624, 37.793652 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794423 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.789921 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393521, 37.790413 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789820 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391096, 37.792338 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390195, 37.790812 ] } } +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787649 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777126 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461724, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759282 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456489, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463527, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778076 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776922 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440696, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780857 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781332 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770070 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763217 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444129, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767492 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765592 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750528 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.750799 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735460 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728265 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741365 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.741569 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738582 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.738650 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737293 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727722 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734442 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724531 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805613 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805613 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805478 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807784 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.802019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790625 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798289 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.802155 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794016 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.793338 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828294 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371774, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370830, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811784 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428250, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787776 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786894 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.787030 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786962 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786623 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784927 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782417 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759417 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766474 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766746 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.757992 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755007 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749374 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737429 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735460 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729826 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752224 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.749985 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737496 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.726262 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755617 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379670, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365165, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365422, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784181 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536247, 37.831768 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831870 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825023 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529681, 37.821819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.718743 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483203, 37.718607 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716333 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485263, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.717691 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.715891 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474277, 37.715891 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.715213 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470243, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.714126 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713583 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.714398 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711818 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463377, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.710901 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715858 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458913, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705978 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706351 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707404 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718505 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714058 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448442, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716638 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711071 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713447 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.714024 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788980 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440374, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509596, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773310 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771410 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509382, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504103, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505219, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785012 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506249, 37.779042 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773276 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503288, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771885 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497966, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508996, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764049 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508137, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760384 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758484 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505605, 37.754922 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502558, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783418 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.783418 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492516, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492216, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493289, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497408, 37.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497194, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494190, 37.775786 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776024 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771919 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772224 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776668 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489898, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776091 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490714, 37.772190 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485092, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484963, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782231 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.784232 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479470, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484362, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776464 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772597 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484062, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776566 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495778, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.762488 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492559, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490413, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760995 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761063 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761029 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495263, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495306, 37.753531 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495048, 37.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761063 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765100 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481830, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479684, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763675 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761572 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.761742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477109, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760147 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476938, 37.759943 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754141 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753022 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505476, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749153 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507536, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.747457 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.747287 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745421 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502301, 37.753022 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753327 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499511, 37.747677 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504661, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741756 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504575, 37.739991 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502344, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498310, 37.741993 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726381 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753293 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495005, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749798 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749561 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497408, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745828 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487924, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742265 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.742231 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494147, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736529 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744267 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487323, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483461, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.748543 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479427, 37.748441 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476208, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478783, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496808, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493632, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489254, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729436 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479084, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728859 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484877, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483203, 37.718607 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727161 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480028, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478783, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475736, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784503 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472517, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782570 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782570 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468956, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467024, 37.784741 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464707, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780976 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776939 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.775176 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464836, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.773310 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784707 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.785182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464321, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.783079 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459815, 37.783079 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460930, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785962 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.783961 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.781417 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781145 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777143 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454321, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765711 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468913, 37.770528 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.765677 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466681, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466295, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759299 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761843 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.759129 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.756958 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761945 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470071, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758518 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764082 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764218 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766118 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765982 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457626, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456510, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763811 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756584 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463548, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457969, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784198 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784978 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.781586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.782027 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786233 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446167, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784876 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451360, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453120, 37.774904 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773242 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443593, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774090 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439730, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783418 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439559, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783621 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.780535 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.780874 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.783011 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779348 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438571, 37.777804 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777720 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438400, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440245, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773038 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.778262 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431748, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768323 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453334, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450759, 37.769443 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.769714 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452691, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764422 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765881 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.764897 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449772, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445395, 37.770087 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766932 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767136 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765439 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763234 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761708 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449043, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761843 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760859 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758790 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444150, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754107 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442992, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.768662 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.766695 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437198, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769103 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765609 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.762454 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762386 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437284, 37.760690 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757399 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754209 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.760825 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.757670 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.750528 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746982 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473419, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470157, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471187, 37.741518 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475522, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475135, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470372, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740941 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465522, 37.741145 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738056 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739618 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739448 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751698 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456896, 37.749832 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458827, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.747830 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.747253 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747796 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745692 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740093 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460072, 37.739380 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459214, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460029, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743995 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456510, 37.741620 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732015 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471445, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474706, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731235 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468054, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728282 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474835, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.721595 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719524 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471788, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.730081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460415, 37.730556 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457755, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455823, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731438 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.726007 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461102, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460115, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723631 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458055, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457240, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457025, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455909, 37.720135 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.751291 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749934 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745760 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449558, 37.745930 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.752343 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443807, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749289 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.749119 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745183 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743486 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744470 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741722 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450459, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449172, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741382 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448013, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739889 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.737479 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442563, 37.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.751020 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748509 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441404, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.745251 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751088 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.751071 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.752072 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751189 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749662 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748678 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433894, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.741586 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436898, 37.738599 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737310 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.738328 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734187 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451274, 37.728417 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733984 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445567, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723529 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723462 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449772, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449343, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.720984 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720950 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720440 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.719999 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444880, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722851 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735002 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441919, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729028 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.728994 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.732389 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.732524 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433250, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.726822 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442348, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442434, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440803, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723563 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718641 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723360 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.724310 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724650 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.724531 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778839 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728655 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.717691 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718505 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435224, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458613, 37.748339 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508824, 37.833022 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.833700 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493889, 37.833599 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482259, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807224 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801595 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457755, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.801765 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456381, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.801426 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454021, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.804342 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443678, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800036 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796475 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441275, 37.800103 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800442 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804444 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802816 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435610, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.797391 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440374, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.791761 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437027, 37.795932 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794881 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793796 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433379, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789319 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.712972 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712191 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710358 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708490 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.707693 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.706929 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709305 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405441, 37.717215 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711478 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.713855 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405140, 37.712564 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402308, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406986, 37.709339 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.708966 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708932 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.708830 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711003 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712123 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749662 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788437 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428443, 37.786640 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.781756 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785046 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423680, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778839 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426941, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.776261 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772428 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779382 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.772631 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787793 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786131 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785080 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419002, 37.780297 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784707 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784876 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786029 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.785080 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.780297 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.775074 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770732 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414753, 37.778568 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414367, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.779348 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775108 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.771580 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774768 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772394 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429688, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429388, 37.769409 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767780 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428486, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428486, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.767848 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763404 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426813, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753598 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.770460 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.767136 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412264, 37.770359 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764218 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762929 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417071, 37.761877 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754277 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758756 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410076, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785419 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784164 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785758 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783384 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782095 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786369 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786029 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786199 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.784944 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783961 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780297 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.777313 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406428, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774701 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771546 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.779314 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785622 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390678, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779789 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.778296 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392437, 37.778975 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775277 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389777, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408187, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763234 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770223 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403295, 37.769884 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768561 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.754311 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406557, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759434 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.757433 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398832, 37.755906 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.766389 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393210, 37.762725 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389433, 37.769307 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388918, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398360, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.760028 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.756822 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395785, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753734 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388232, 37.758077 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758009 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.755007 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755058 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741043 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738871 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737446 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751953 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752445 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.746642 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752750 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749221 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749221 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739041 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.744131 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413423, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413509, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413509, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409732, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426813, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429259, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728655 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728587 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.735240 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721357 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720508 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719354 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719184 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418916, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732830 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732524 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.735783 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734798 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729843 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727399 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.724989 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723801 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.752513 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751291 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406428, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753056 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.748441 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.746405 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406986, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741891 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743894 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398274, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396214, 37.750002 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752343 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752614 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742774 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736088 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390463, 37.744029 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.742604 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391407, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390506, 37.737513 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739957 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405870, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405355, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401063, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403123, 37.730284 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.728078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730182 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408445, 37.726279 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407973, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726788 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.720508 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402694, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403123, 37.720916 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.731167 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734086 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390893, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392008, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729164 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397931, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395227, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.722715 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.722477 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.722885 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386858, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.755634 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386816, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387416, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384627, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384498, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739855 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739719 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738158 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.737004 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386043, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733033 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730148 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384584, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379692, 37.732389 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734086 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381709, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730759 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379391, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375872, 37.731981 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365444, 37.727908 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806376 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807021 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806682 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806512 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807834 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426555, 37.802104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.804952 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424839, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.798442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798815 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798679 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796950 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790676 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794881 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.794169 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793965 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422950, 37.794033 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426126, 37.790879 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790371 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790642 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804511 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415311, 37.805257 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800985 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804376 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802680 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412651, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801188 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.800036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.798238 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.795322 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796339 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.792948 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.790812 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791015 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415612, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795254 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794033 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796373 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411706, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794440 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411063, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414153, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.807173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802714 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797187 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.802952 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798306 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400763, 37.796848 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405012, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406299, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401536, 37.794033 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.794813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793118 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399132, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797797 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792575 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793491 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393253, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396686, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.789794 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392523, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391064, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825463 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368920, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370894, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364199, 37.820751 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364542, 37.811852 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787793 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529691, 37.821828 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center" }, "geometry": { "type": "Point", "coordinates": [ -122.536258, 37.831777 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831828 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831878 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527245, 37.832582 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527202, 37.832480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523447, 37.831658 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527674, 37.829057 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530271, 37.825031 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524413, 37.830480 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830370 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523233, 37.831421 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831336 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499908, 37.718735 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718701 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483214, 37.718607 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717003 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497655, 37.716774 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716528 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496496, 37.716426 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495338, 37.716239 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485145, 37.714567 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717343 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716333 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485274, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485510, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478687, 37.718480 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480103, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480189, 37.714593 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714491 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477077, 37.717699 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477442, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716715 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478322, 37.715849 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477163, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485296, 37.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709127 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475575, 37.714135 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495316, 37.753539 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495059, 37.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753895 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485167, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753878 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480875, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506367, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507504, 37.750926 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752827 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749332 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749162 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507547, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505101, 37.747457 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504865, 37.747431 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504929, 37.747287 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504972, 37.745590 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505037, 37.745429 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504801, 37.745421 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502311, 37.753030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500166, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753327 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753217 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503041, 37.747423 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499522, 37.747677 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497634, 37.747626 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504661, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741764 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504575, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504436, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738082 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504264, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504350, 37.736122 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502344, 37.741925 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741900 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742019 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498320, 37.741993 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742120 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506818, 37.735486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505358, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504929, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503406, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735367 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501346, 37.735384 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500745, 37.735010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734569 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498964, 37.734128 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730666 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729741 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728222 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499222, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502526, 37.726754 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726389 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499908, 37.718735 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495424, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495123, 37.753293 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495016, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495166, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749807 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494866, 37.749569 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497419, 37.747618 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497312, 37.745964 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495359, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747957 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493342, 37.747830 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494801, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494608, 37.745836 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747906 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489051, 37.748000 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488815, 37.748144 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487924, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747991 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494673, 37.744224 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494479, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494544, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494651, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494630, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494222, 37.742265 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494351, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492956, 37.742239 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740118 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494147, 37.736767 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736538 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742494 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742358 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744513 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744267 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487549, 37.742646 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487334, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487613, 37.742460 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742409 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738769 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485596, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748161 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483450, 37.748381 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483472, 37.748280 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476026, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750197 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.748551 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479427, 37.748449 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476219, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748297 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745242 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.742680 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483321, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483064, 37.742782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481197, 37.742731 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486111, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480446, 37.742876 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478794, 37.742969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496775, 37.733907 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496818, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496840, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496582, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.733543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493643, 37.734043 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.733780 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733364 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493922, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493857, 37.732024 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493621, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493514, 37.730344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729801 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491604, 37.734145 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733958 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489254, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486240, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485832, 37.734128 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734484 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483944, 37.734213 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734552 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482184, 37.734289 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729631 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.734654 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477378, 37.734756 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734484 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479094, 37.728553 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.730420 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728867 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485167, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484888, 37.724234 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.727119 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718701 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722757 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721841 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721756 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719889 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483214, 37.718607 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720737 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727170 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480038, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478815, 37.725948 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478794, 37.725872 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477142, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475919, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475736, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726338 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476863, 37.725982 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480897, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719634 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479910, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.719600 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475446, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.739202 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.737573 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475146, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734688 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734552 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732117 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731175 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731158 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721111 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.720975 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720941 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475318, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478687, 37.718480 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482613, 37.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509907, 37.779890 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509596, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512976, 37.779102 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779034 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509414, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510315, 37.775184 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509929, 37.773318 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510058, 37.773217 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509993, 37.773217 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773208 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510787, 37.771419 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509843, 37.771690 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509392, 37.771342 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508470, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507440, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507397, 37.779916 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505530, 37.782137 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781832 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504103, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505230, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505015, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504135, 37.779780 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499694, 37.784978 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785012 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781086 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500681, 37.779475 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506260, 37.779042 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505959, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503835, 37.775354 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503620, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507762, 37.773420 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505831, 37.773539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771588 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773573 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771588 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503535, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503299, 37.771614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503062, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779153 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500402, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500616, 37.775506 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779288 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500337, 37.771877 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771894 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499908, 37.771792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497977, 37.771978 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509199, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509071, 37.760342 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509006, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760172 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764057 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506109, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762378 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508137, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507998, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505831, 37.760495 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505809, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506067, 37.760393 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506045, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758484 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505745, 37.756779 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.756610 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505616, 37.754922 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505444, 37.754752 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760478 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502569, 37.760596 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499372, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499157, 37.760681 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499136, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496625, 37.779441 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494394, 37.781646 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492548, 37.783426 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492441, 37.783418 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781798 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492527, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492334, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492226, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493514, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779797 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493385, 37.779814 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493299, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779814 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779746 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779577 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493213, 37.779551 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492291, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783799 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491432, 37.781663 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490510, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783579 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.779611 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490059, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490188, 37.779729 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489973, 37.779958 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489029, 37.781892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489287, 37.781747 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781849 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486883, 37.781993 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488042, 37.779865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487806, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497419, 37.775650 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497205, 37.775778 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777847 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777694 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492183, 37.777762 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494200, 37.775795 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.775998 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492977, 37.776032 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771919 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772233 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772097 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.776677 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492055, 37.775888 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491840, 37.776024 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776117 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489909, 37.775990 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487549, 37.776219 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776091 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490714, 37.772190 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772402 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487506, 37.772470 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772352 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785868 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485038, 37.785690 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485102, 37.784003 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484823, 37.783952 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484845, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484974, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484716, 37.781951 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781968 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780255 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484609, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484823, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779924 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483665, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481776, 37.782087 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481519, 37.782239 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478708, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478451, 37.784240 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782307 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479137, 37.782222 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479481, 37.780221 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479266, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477506, 37.782290 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476712, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.780594 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476262, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778288 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778050 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776422 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484609, 37.776354 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484362, 37.776185 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776473 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482420, 37.776329 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774556 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484223, 37.774319 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484523, 37.772597 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484072, 37.772352 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772759 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480274, 37.776431 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.776566 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478129, 37.776524 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477914, 37.776660 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475983, 37.776626 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772657 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.772860 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476777, 37.772962 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772826 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476519, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496625, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495788, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.762496 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764752 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492570, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490424, 37.764939 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495853, 37.761004 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495960, 37.760825 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760783 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495660, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761071 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492934, 37.761029 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760902 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755405 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495263, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495316, 37.753539 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495059, 37.753497 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761207 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489716, 37.761173 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489501, 37.761105 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761071 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486755, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753590 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486132, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485510, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483364, 37.765109 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481841, 37.765329 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765194 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481605, 37.765024 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479695, 37.765431 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765499 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477614, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477399, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477399, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477185, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765210 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477206, 37.765160 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477313, 37.763684 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763429 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486519, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761309 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483557, 37.761377 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761343 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483300, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481176, 37.761580 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761546 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481240, 37.759731 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481111, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753895 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485167, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.753980 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753878 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480103, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759596 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477185, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.761750 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477109, 37.761402 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476841, 37.761784 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476820, 37.761742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761580 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476712, 37.760147 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476948, 37.759952 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476777, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476541, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480983, 37.756016 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.755897 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754141 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480875, 37.753972 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.754336 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476691, 37.756220 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754116 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506367, 37.752784 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505573, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505487, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752827 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502311, 37.753030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500166, 37.753123 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753327 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753217 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495424, 37.753336 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495123, 37.753293 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.765618 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476004, 37.803757 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482613, 37.788463 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482259, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793567 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480918, 37.792312 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792092 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807233 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806571 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806080 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3164 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515379, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514950, 37.831802 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508824, 37.833022 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832963 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502140, 37.836446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833878 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493814, 37.833700 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494007, 37.833607 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493900, 37.833607 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483386, 37.833149 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.833090 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829523 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483536, 37.829438 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718650 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716715 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475908, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716783 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474266, 37.717445 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717326 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474438, 37.716019 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474288, 37.715900 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473172, 37.715213 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473086, 37.715017 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473065, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472378, 37.717750 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.716197 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471906, 37.714627 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470243, 37.714763 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475575, 37.714135 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474567, 37.713761 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713591 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714067 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714050 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.713099 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712997 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471262, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471327, 37.710706 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710909 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.714406 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469996, 37.714440 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714321 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714338 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467378, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469460, 37.710358 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469331, 37.710281 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714203 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712335 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711656 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467142, 37.711571 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711419 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711826 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711639 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708737 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705766 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463387, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714236 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462336, 37.713176 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711283 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.710909 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459160, 37.713150 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461563, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710129 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456070, 37.717733 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.716426 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.715858 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.715009 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.714839 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458924, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458881, 37.711487 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.713277 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456006, 37.713337 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713218 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713218 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455941, 37.711198 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710383 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454783, 37.710290 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705978 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706360 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457079, 37.707361 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707412 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718514 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716290 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716256 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716087 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450362, 37.716061 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453152, 37.713303 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713948 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452229, 37.714169 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452143, 37.714152 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452079, 37.714067 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448453, 37.710222 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711470 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445685, 37.711724 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446264, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453324, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708889 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709500 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450062, 37.709619 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716715 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716511 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716638 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.716477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716341 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440749, 37.716409 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.715679 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715713 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715145 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437896, 37.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711079 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438239, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437960, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.714253 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434763, 37.716104 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432295, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436630, 37.713456 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436393, 37.714152 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.714024 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710943 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434870, 37.710179 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433025, 37.712946 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712929 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711232 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434827, 37.709636 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434591, 37.709500 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.708966 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434226, 37.708872 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710706 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752063 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476026, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750197 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476219, 37.748577 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.748534 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748297 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745242 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742969 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475618, 37.743020 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.730420 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.728867 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475919, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475736, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476133, 37.726338 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457980, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455512, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754014 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438754, 37.753522 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473086, 37.752402 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.750536 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472056, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750808 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748806 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748670 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473794, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473837, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472979, 37.748721 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746982 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745107 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745073 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748907 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470490, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470297, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468365, 37.749043 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467679, 37.749094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466499, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750859 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466434, 37.749162 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.749323 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469428, 37.748984 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468559, 37.748873 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748975 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475446, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473429, 37.743206 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741204 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743071 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743122 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470297, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470168, 37.743172 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471305, 37.741484 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471187, 37.741527 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741527 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475532, 37.739007 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.739202 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.737573 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475146, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736487 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470382, 37.736385 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470039, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468473, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.741170 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466112, 37.741017 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466005, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465855, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465941, 37.740882 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740950 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740950 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465769, 37.740882 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740873 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740933 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465522, 37.741153 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740763 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465833, 37.740848 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740797 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465748, 37.740839 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.738099 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468988, 37.738065 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737861 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739618 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739677 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739456 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465039, 37.739847 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461349, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461048, 37.750952 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458388, 37.751707 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456907, 37.749841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456220, 37.751495 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456177, 37.751630 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458903, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458838, 37.748331 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458774, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.748093 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748161 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458817, 37.747898 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458795, 37.747838 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.747253 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458667, 37.747109 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745293 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747796 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746379 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455598, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745768 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454053, 37.745692 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461070, 37.740398 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739931 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740101 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.740228 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460083, 37.739380 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459267, 37.740203 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459224, 37.740084 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460029, 37.739202 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461456, 37.737743 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461306, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456628, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743995 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456521, 37.741628 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740882 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743240 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742867 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453946, 37.736690 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453796, 37.736733 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475210, 37.734688 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474974, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734552 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732787 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474803, 37.732117 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732024 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473816, 37.731812 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471520, 37.735036 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734620 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471884, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734807 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.734298 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734298 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471445, 37.734824 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731175 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731158 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474352, 37.731192 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474717, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731039 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.730988 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472442, 37.730988 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471863, 37.731235 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471820, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.731362 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731336 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730955 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734705 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467850, 37.734943 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468065, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729945 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729936 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469095, 37.729987 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728392 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467872, 37.728383 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728282 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474846, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721196 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721111 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.721264 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721247 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.721077 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.720975 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720941 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474331, 37.721332 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472957, 37.721595 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475318, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719685 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719532 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721484 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471799, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471734, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719719 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719566 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466756, 37.727255 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466778, 37.727221 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.727195 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469739, 37.719736 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469953, 37.719583 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467936, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468151, 37.719592 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465233, 37.719761 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465447, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464546, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463967, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735503 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460555, 37.735307 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733704 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729970 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461499, 37.730081 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460426, 37.730556 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733602 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732626 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457765, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732092 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457529, 37.731107 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457658, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455834, 37.731268 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731447 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725982 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726033 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464074, 37.726007 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461392, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724913 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724955 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463645, 37.719787 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719991 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461327, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461113, 37.720092 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460115, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.719957 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724387 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458345, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.723776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723640 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723453 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458055, 37.720059 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457250, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457036, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.721764 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456220, 37.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719965 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455920, 37.720143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454976, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719991 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751283 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452272, 37.751300 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749264 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751215 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749942 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745768 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452379, 37.745327 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452229, 37.745624 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452101, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451307, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450448, 37.748924 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449569, 37.745930 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.752352 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446200, 37.751766 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750409 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443410, 37.752080 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443711, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.749298 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444934, 37.749119 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750842 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447916, 37.746464 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447766, 37.746668 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.746362 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.748076 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445105, 37.747923 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748059 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444912, 37.746837 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.747041 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444204, 37.747151 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.748229 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746888 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444998, 37.746702 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745192 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453238, 37.744360 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451392, 37.743495 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451178, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744479 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742596 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 37.741730 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450470, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449225, 37.740975 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449182, 37.740704 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738201 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451736, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.737819 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738184 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446028, 37.741382 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741085 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448013, 37.739847 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739898 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446243, 37.738964 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446049, 37.738930 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446629, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.737479 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736792 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443303, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442573, 37.752487 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752301 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749264 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442530, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440556, 37.751028 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750977 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440921, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437595, 37.752793 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442509, 37.748517 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441415, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.745259 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.745242 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436544, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.751223 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436222, 37.751079 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749654 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749484 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.752080 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434055, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434248, 37.751359 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434183, 37.751249 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.751198 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751334 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749807 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749603 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749671 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436157, 37.748856 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.748687 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436072, 37.747855 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747889 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435986, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746294 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435921, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435600, 37.744683 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433894, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433625, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433518, 37.748068 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437509, 37.743631 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437252, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738218 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744649 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.743249 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.743079 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741849 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435471, 37.741917 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.741586 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435535, 37.741620 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435879, 37.740288 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436898, 37.738599 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738302 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740033 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434677, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737310 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434613, 37.737344 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.736232 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740186 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433604, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.738336 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432810, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.736080 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448796, 37.734196 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448946, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732991 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448753, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453088, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451242, 37.731472 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451242, 37.731464 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451221, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729953 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727866 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452294, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451285, 37.728417 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449161, 37.731616 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.731404 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.731481 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448753, 37.728494 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446457, 37.735689 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446328, 37.735520 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733992 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734569 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445577, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446479, 37.731633 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734467 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444612, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.731481 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452272, 37.726041 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725541 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724098 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723199 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723538 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723470 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723029 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451178, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722944 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449783, 37.723020 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453002, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450942, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450277, 37.721934 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449976, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721976 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449290, 37.722859 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449354, 37.721629 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446929, 37.723029 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444698, 37.723088 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444783, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.723224 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447122, 37.720992 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447230, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720958 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720950 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.720907 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.720873 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446650, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446479, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446221, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.720704 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720687 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446972, 37.720440 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446886, 37.720466 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720008 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447616, 37.719397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446607, 37.720568 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446607, 37.720568 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446564, 37.720619 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446543, 37.720610 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.720466 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.720466 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445041, 37.722749 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722859 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444891, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.722859 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444741, 37.722817 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444397, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.720279 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445256, 37.720067 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735002 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734875 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441919, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439634, 37.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 37.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729037 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440020, 37.728994 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441007, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.731515 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730378 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730310 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731498 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.733924 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734467 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433840, 37.734459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431909, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.733330 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434076, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434098, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434012, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.732397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433411, 37.732524 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436994, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433175, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441629, 37.726831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442402, 37.725897 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442359, 37.725880 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442445, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441200, 37.727153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441243, 37.723258 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440814, 37.723436 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438668, 37.723674 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723572 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.721281 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718650 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436243, 37.723368 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723148 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722944 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435192, 37.724310 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724658 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434655, 37.724718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434806, 37.724539 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435728, 37.723937 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.723911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.726347 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.726355 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.725524 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433089, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436329, 37.722808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721467 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432960, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721637 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745192 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430793, 37.741883 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.736656 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.728697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431222, 37.728663 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.720856 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431072, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718514 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458624, 37.748347 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440385, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788514 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476047, 37.780594 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476262, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475983, 37.776626 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754116 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784512 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472764, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472528, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472163, 37.784597 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473966, 37.782578 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782494 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471155, 37.782697 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470973, 37.782578 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472678, 37.780526 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472421, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780611 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470597, 37.780840 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469159, 37.784664 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468966, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467035, 37.784749 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466820, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466820, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784461 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785020 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464707, 37.784902 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784817 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468365, 37.782697 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780984 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782901 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.783002 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780781 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472700, 37.776778 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472228, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471970, 37.776948 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472142, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.776872 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470318, 37.776999 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472185, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471906, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471992, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471648, 37.773217 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468387, 37.776965 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468172, 37.777101 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777067 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777202 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465919, 37.775184 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464836, 37.775379 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469825, 37.773183 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468387, 37.773352 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467614, 37.773250 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466091, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.773471 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465984, 37.773479 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465812, 37.773641 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.773318 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463623, 37.784885 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464482, 37.784673 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784715 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462572, 37.785182 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462293, 37.785351 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.785699 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785563 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464525, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464331, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462572, 37.783087 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461950, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.781137 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464374, 37.780899 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464353, 37.780764 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464181, 37.780874 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459825, 37.783087 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461156, 37.781044 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460941, 37.781281 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786038 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459031, 37.785656 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459096, 37.785597 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456328, 37.785970 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455212, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.783961 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784122 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783257 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.783070 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781866 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.781425 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781374 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458688, 37.781154 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456435, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781527 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779170 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.779000 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.777287 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777143 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.777177 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775608 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.773742 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463709, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463838, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773844 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458860, 37.777474 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458516, 37.777474 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.777075 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455362, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455040, 37.777558 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458302, 37.774421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458001, 37.774285 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454718, 37.774607 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774760 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772962 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453882, 37.772894 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454332, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454182, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770859 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.765618 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765711 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765652 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.762072 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468923, 37.770537 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.770435 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765906 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468709, 37.765753 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762072 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466348, 37.765847 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765855 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466520, 37.765685 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764286 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466391, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764108 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763938 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466692, 37.762225 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762140 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466305, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.762038 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762089 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473665, 37.761920 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759299 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street" }, "geometry": { "type": "Point", "coordinates": [ -122.473794, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473665, 37.758111 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761801 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470576, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.759129 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473515, 37.756966 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473215, 37.754252 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469524, 37.761987 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469524, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470082, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758238 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760410 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758544 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466027, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758527 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756678 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756508 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465554, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464010, 37.765957 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462465, 37.766177 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461885, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764091 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464031, 37.764159 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464353, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462851, 37.762395 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766118 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460512, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457958, 37.765982 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458023, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457637, 37.766050 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.765007 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456510, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763311 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458173, 37.763311 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456971, 37.763811 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763718 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454911, 37.766211 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454697, 37.766093 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454525, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463881, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463859, 37.758425 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463130, 37.758696 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756593 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463795, 37.754650 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463548, 37.754896 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755405 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754472 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457980, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456349, 37.755337 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755304 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455512, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453281, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453517, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451950, 37.784020 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451736, 37.784206 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450255, 37.786708 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449955, 37.786920 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784987 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781849 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453259, 37.781595 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782239 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449912, 37.782027 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.786326 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.787378 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786241 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446715, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785241 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446285, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446200, 37.784537 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446178, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443067, 37.784885 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443303, 37.784766 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447573, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446800, 37.782511 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445792, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782324 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453281, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453474, 37.777753 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451371, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449654, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449590, 37.778237 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449290, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453238, 37.774997 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453120, 37.774904 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452379, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452852, 37.774031 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773174 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452508, 37.773064 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773250 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450856, 37.773378 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449161, 37.773607 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449461, 37.773420 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447165, 37.778763 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447208, 37.778661 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778771 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446908, 37.777541 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778763 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775676 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775896 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775744 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775710 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778915 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443593, 37.779110 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443196, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444762, 37.776939 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776812 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443324, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447315, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446243, 37.774022 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446049, 37.774056 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773929 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773946 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445620, 37.771961 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445728, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774090 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.774294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442638, 37.774429 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787954 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787988 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440320, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439998, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439934, 37.785148 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439730, 37.785309 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785258 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438325, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783850 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782799 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440299, 37.779509 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783426 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783375 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439569, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439526, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439226, 37.781612 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783621 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438754, 37.780543 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437166, 37.780874 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437359, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785792 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787717 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433196, 37.785996 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433153, 37.786157 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432832, 37.786089 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785818 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433046, 37.784393 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784257 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432917, 37.784732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435514, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432703, 37.783019 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783189 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431952, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779288 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441522, 37.777440 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440492, 37.779356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439913, 37.777643 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438582, 37.777813 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777728 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438303, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438217, 37.777864 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438411, 37.777686 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438239, 37.776761 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441500, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774506 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440256, 37.770927 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437402, 37.774997 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.773047 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773183 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435192, 37.778152 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934, 37.778271 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436458, 37.775209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775150 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434441, 37.775472 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431759, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775625 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775625 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437102, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771232 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.771605 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771775 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769332 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451757, 37.769315 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768332 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453345, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453259, 37.766415 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452916, 37.766449 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450792, 37.769434 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450770, 37.769451 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.769714 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769892 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450427, 37.768527 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765541 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452594, 37.765499 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452691, 37.765329 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764549 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764430 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764600 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765881 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449912, 37.765940 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449805, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.765745 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449955, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450083, 37.764905 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764786 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449783, 37.764617 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449375, 37.763133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769163 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770248 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445406, 37.770087 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769010 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447916, 37.767102 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447916, 37.766941 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.767263 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767305 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446457, 37.767144 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770350 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770435 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444848, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444826, 37.767348 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447938, 37.766152 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446071, 37.765295 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446092, 37.764294 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445878, 37.765143 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445942, 37.764278 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446800, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765448 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765821 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443303, 37.764498 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764498 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443796, 37.763234 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761708 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761682 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449054, 37.760927 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753454 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760919 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446629, 37.760936 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760859 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446135, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758790 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445899, 37.758663 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761971 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445213, 37.761954 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444075, 37.761326 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.760478 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.760546 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761801 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761648 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443539, 37.760359 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760240 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444440, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757797 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444054, 37.758408 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758221 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444150, 37.757500 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443281, 37.756406 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442831, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754116 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 37.768671 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438325, 37.768832 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.768052 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439505, 37.766491 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438196, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438282, 37.766695 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438153, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437209, 37.767297 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767161 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762081 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.762412 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.769180 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.767382 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767280 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.767611 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433690, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769112 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.767399 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.765609 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435256, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435449, 37.762462 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.762462 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762547 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762395 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435085, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434870, 37.762522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432810, 37.764490 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763913 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433325, 37.763955 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762649 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438282, 37.761597 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760630 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438153, 37.760766 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437295, 37.760698 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759036 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440428, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754048 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754014 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757560 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437874, 37.757407 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755812 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439011, 37.755363 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438754, 37.753522 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437745, 37.754370 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437574, 37.754218 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435149, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434934, 37.760834 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760749 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434913, 37.759392 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.759163 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757780 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.757679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756101 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434462, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434484, 37.754642 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.754413 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472056, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.752886 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466499, 37.752725 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437595, 37.752793 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436544, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.752894 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752776 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431372, 37.776999 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430836, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774268 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773759 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767534 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.766279 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.765685 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762683 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435235, 37.762624 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476004, 37.803757 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807233 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806571 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806080 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806927 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801790 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466799, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467078, 37.801790 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466928, 37.801604 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803045 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462229, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800129 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460362, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.798433 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803808 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457765, 37.803689 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.801773 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456778, 37.801629 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456392, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454525, 37.803689 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454354, 37.803766 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802299 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802079 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.801434 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454718, 37.801731 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801858 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458988, 37.800197 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797891 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458774, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458967, 37.797730 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801010 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454096, 37.800756 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.454032, 37.800714 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800536 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798399 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798247 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798170 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453409, 37.800349 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452422, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799044 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799383 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799222 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.798179 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.804342 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803418 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804554 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803774 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443678, 37.803630 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443517, 37.802842 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802850 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446951, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447165, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798416 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447187, 37.797153 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797602 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800620 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444419, 37.799841 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443131, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442938, 37.800044 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442745, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445105, 37.798671 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796704 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451521, 37.796483 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445513, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795602 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447401, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447037, 37.788972 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791278 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444247, 37.791185 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803079 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805419 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441275, 37.800112 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800264 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800442 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800366 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439419, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800722 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796873 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796873 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804444 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.802816 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436694, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436522, 37.802401 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435170, 37.802748 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433604, 37.805419 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433625, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432209, 37.805130 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436179, 37.800909 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436372, 37.800739 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799705 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436050, 37.799595 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435621, 37.800841 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434698, 37.800951 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434505, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434505, 37.800943 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437059, 37.796789 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.797391 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.797128 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435578, 37.796975 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797043 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441994, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442187, 37.796170 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438883, 37.796585 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438689, 37.796738 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441307, 37.791566 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789972 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788090 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440385, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.791770 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788514 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.795992 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437037, 37.795941 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436866, 37.795856 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794890 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436672, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794059 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794160 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793804 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434677, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433389, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433025, 37.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432810, 37.792745 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792346 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436136, 37.791447 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434484, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435557, 37.789328 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791719 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.789836 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434098, 37.789921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433947, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433668, 37.789836 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.790108 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443389, 37.787624 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787954 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787988 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787717 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801485 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801366 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801350 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.800570 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800366 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790193 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718836 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719193 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718718 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718955 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718769 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432295, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.712157 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711232 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429849, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.717563 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428347, 37.717479 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710706 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711741 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711113 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426265, 37.711079 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425686, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717784 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710044 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.713218 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709823 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423218, 37.709305 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422146, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421759, 37.708660 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.712972 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.712420 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710027 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711860 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418863, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711707 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418777, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417532, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713303 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415901, 37.712013 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415215, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414464, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718039 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715034 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714423 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414528, 37.713243 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414442, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713286 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711062 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.710977 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712191 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710740 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.710587 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710358 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708482 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708499 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.708210 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419871, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.707701 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415708, 37.707132 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 37.706937 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707090 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706530 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706292 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411996, 37.709314 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411975, 37.709059 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.708261 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407447, 37.717767 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717818 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407726, 37.717292 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717156 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405795, 37.716664 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716596 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405216, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405452, 37.717224 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404379, 37.717054 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715340 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713846 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407147, 37.713345 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710010 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408692, 37.709942 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407919, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.711444 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407790, 37.711487 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711351 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.713855 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404958, 37.713210 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405151, 37.712573 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405773, 37.711894 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710570 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716867 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716095 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716613 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400194, 37.716477 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.717003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716358 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399358, 37.714814 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714966 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402126, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714236 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401997, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712454 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402576, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712233 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.712216 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712361 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402340, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402319, 37.712250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403799, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403778, 37.711139 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403885, 37.710621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.713549 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400924, 37.712013 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399186, 37.711588 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711622 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709857 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406996, 37.709348 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709348 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405108, 37.708974 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708940 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405044, 37.708940 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405065, 37.708838 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404636, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404851, 37.709093 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708804 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397233, 37.711206 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711003 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396611, 37.710969 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711240 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389208, 37.717012 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714389 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714118 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713388 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387942, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712132 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751334 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749671 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734603 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431909, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.725524 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420880, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420708, 37.753607 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406567, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429763, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429549, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751775 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427124, 37.749179 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.746676 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745192 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426888, 37.746778 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422768, 37.752046 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422982, 37.751910 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751860 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430793, 37.741883 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743597 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426587, 37.743588 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426652, 37.742808 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.742019 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426759, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426523, 37.742129 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426523, 37.742095 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742103 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426459, 37.742222 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426373, 37.742163 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.736656 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429527, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736334 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427574, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427489, 37.738905 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427918, 37.737106 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427746, 37.737140 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742019 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425815, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742171 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422060, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422167, 37.742307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422918, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422510, 37.740848 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421995, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739931 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425493, 37.739626 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425793, 37.738896 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.739558 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.739745 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739388 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424077, 37.739847 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739728 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738871 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737064 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737446 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424334, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740203 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420901, 37.740296 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420558, 37.752182 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420515, 37.752063 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752318 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752182 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751961 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750282 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.750672 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416373, 37.752309 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416180, 37.752487 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416159, 37.752445 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416202, 37.750646 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749111 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420429, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747991 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420214, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.748059 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418176, 37.748568 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418369, 37.748237 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.746939 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418820, 37.747109 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420236, 37.746744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.746651 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419399, 37.746244 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.745921 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420300, 37.745081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.748305 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414206, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413841, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749230 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749060 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749221 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411739, 37.752589 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413820, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413584, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748110 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746871 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.745209 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748398 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411631, 37.748203 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410430, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409765, 37.748229 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420644, 37.744292 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418455, 37.739304 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739041 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416395, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413005, 37.744140 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.741450 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410666, 37.741510 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741832 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.738829 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414550, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738998 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413434, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413305, 37.738879 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413369, 37.738803 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413241, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413520, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737183 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413520, 37.736054 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739779 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 37.740067 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409743, 37.739787 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.739711 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430278, 37.735477 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733483 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427939, 37.733466 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428004, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733721 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426823, 37.733339 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731396 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429270, 37.730658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.728697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431222, 37.728663 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431115, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426244, 37.730836 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728596 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425922, 37.734043 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424699, 37.735621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.735910 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424055, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.735248 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728714 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728562 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422789, 37.728748 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728901 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723114 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.720856 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431072, 37.720882 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430021, 37.722511 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722384 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429506, 37.720135 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429463, 37.720109 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719702 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721620 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721552 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427617, 37.721357 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721281 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721221 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719821 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.720517 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720406 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718836 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724743 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724743 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725082 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423240, 37.725201 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422038, 37.725600 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425879, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426051, 37.720398 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719363 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425772, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719312 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719193 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.735791 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420129, 37.735138 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419721, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.734892 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418927, 37.732618 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735638 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415687, 37.734892 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732838 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415258, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419399, 37.729130 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416266, 37.728825 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415043, 37.734858 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734671 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.735791 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413648, 37.734943 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413584, 37.734807 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411288, 37.734909 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735010 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729843 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412983, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414571, 37.727399 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727391 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410837, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410194, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725863 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420279, 37.725973 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726372 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727017 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718718 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414142, 37.726593 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414013, 37.726474 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413391, 37.724989 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413069, 37.723928 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412897, 37.723810 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.722944 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410430, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410601, 37.723122 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412533, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412382, 37.722706 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411567, 37.722842 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718955 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718769 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409185, 37.752521 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408971, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751300 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752827 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.751113 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.749688 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408735, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406267, 37.753251 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751639 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.748449 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744717 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752114 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402126, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750723 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400151, 37.750859 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400023, 37.750757 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403692, 37.746413 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409400, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409400, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405194, 37.742884 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742850 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407812, 37.739694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407125, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.739541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738370 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406996, 37.737726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406889, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738150 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406782, 37.737946 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404164, 37.742528 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741883 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.741900 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.741077 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399014, 37.743936 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743902 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400988, 37.741493 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403735, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403048, 37.739134 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401010, 37.739550 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398885, 37.736360 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752284 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.752377 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398306, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752165 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398285, 37.751283 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752241 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751266 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751113 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749026 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396890, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396225, 37.750002 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394830, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752352 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747346 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747262 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393843, 37.745972 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752623 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392770, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387856, 37.752547 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750400 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396933, 37.742774 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742086 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738252 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398242, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398628, 37.736317 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396718, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396632, 37.737098 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737166 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394809, 37.736096 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736215 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394100, 37.736843 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736096 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744241 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390474, 37.744038 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740899 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392920, 37.740695 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388307, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742680 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742629 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387856, 37.742612 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391418, 37.739847 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391268, 37.739753 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392985, 37.738082 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392963, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390517, 37.737513 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736334 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391633, 37.736266 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391526, 37.736300 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739321 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738913 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389122, 37.738913 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388908, 37.739915 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739915 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.739915 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740305 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740118 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739957 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737216 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737946 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389616, 37.737929 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737641 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737641 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405881, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405580, 37.734247 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405945, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732346 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405559, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404293, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404722, 37.733212 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404808, 37.732999 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404786, 37.732966 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405366, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408992, 37.731328 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731498 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.730106 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404615, 37.730259 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School" }, "geometry": { "type": "Point", "coordinates": [ -122.405001, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404937, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.727323 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404507, 37.727442 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402190, 37.734586 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401589, 37.734773 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401063, 37.735273 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400666, 37.735333 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399400, 37.731837 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399465, 37.731667 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399250, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403134, 37.730284 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403671, 37.727968 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403649, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403241, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727645 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401439, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401932, 37.728078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730191 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401010, 37.729122 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400881, 37.729096 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408445, 37.726279 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408499, 37.726143 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407662, 37.726542 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725218 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723487 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723623 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408413, 37.723742 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407984, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723877 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.726797 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409056, 37.719380 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.719583 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719889 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404336, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406911, 37.720101 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405323, 37.720517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.720415 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403005, 37.726372 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402705, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724081 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402104, 37.724183 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401868, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723877 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723555 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.723394 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.723292 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.721094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403123, 37.720924 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404100, 37.720678 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.721603 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401396, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400945, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719380 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719049 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397619, 37.733296 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.732007 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731803 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.731167 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395045, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729733 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727917 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735163 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392920, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.735172 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735027 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392362, 37.735681 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392083, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735070 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390839, 37.734357 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734349 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734790 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390925, 37.734094 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390817, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390903, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390860, 37.733848 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732278 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732278 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732261 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391504, 37.732261 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391354, 37.732414 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391461, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391225, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390345, 37.735409 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390281, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390174, 37.731701 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390045, 37.731650 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388886, 37.732923 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392019, 37.730666 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729376 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392749, 37.729223 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392641, 37.729266 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729291 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729240 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729164 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392234, 37.729198 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397941, 37.723012 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726932 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725490 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394251, 37.725464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725303 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395238, 37.723131 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397383, 37.722723 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721128 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.722486 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.718811 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719770 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.722401 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.722409 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722452 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395409, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395602, 37.722333 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.722893 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722027 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721416 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727068 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.727034 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720347 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719923 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749094 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749077 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387427, 37.748941 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.746057 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387363, 37.732058 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387041, 37.731854 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429849, 37.718141 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425686, 37.718293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414464, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718039 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.781349 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431952, 37.779856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778644 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431759, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775625 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416910, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413605, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405988, 37.788548 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405409, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400645, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392813, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.786581 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429613, 37.786504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428454, 37.786648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.786937 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428154, 37.784851 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427810, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426652, 37.785902 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428948, 37.781917 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429141, 37.781764 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.782129 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427231, 37.782019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787208 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424978, 37.786123 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425085, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785046 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421545, 37.787632 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787395 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786106 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421545, 37.785784 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785682 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421459, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.784910 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784681 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784817 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784495 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424270, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424206, 37.782400 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423862, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423691, 37.779611 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423455, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420729, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782502 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421073, 37.781951 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420665, 37.780950 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420708, 37.780094 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778847 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431372, 37.776999 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431566, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430836, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776032 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426952, 37.779187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.776261 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427553, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426265, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774268 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773759 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430536, 37.772199 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430342, 37.772029 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427317, 37.772436 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425214, 37.779382 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777558 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423304, 37.777745 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423326, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777101 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421952, 37.775065 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773810 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.772971 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773827 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.772631 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774031 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422553, 37.773183 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.773081 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774192 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422596, 37.771334 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421995, 37.772877 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.787793 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786564 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419893, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786801 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418541, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786140 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419657, 37.785020 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787242 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417790, 37.785080 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415773, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782985 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782867 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.782290 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.780204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420322, 37.779687 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418326, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419013, 37.780306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780170 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417361, 37.783274 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782460 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417103, 37.781697 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783477 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415794, 37.782646 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.780509 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780764 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416867, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416846, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415687, 37.780730 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780781 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787361 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414700, 37.786428 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786767 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414528, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414442, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414271, 37.784707 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784876 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785801 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412425, 37.783884 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410280, 37.787174 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409958, 37.787217 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786038 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409765, 37.786097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411975, 37.785851 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.785088 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784105 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414078, 37.783681 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782833 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415086, 37.781663 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412575, 37.783036 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413584, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412447, 37.780645 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780569 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779814 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.780365 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411932, 37.782070 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409893, 37.783384 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782104 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411331, 37.781290 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.780306 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.777287 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419742, 37.778186 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418219, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419485, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419485, 37.775523 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419378, 37.775218 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419184, 37.775243 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.775082 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418519, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775371 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.778898 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777406 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.777372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774980 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419270, 37.774963 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.773318 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772996 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770732 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772809 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.774573 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.774302 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417125, 37.774217 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416888, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415730, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772826 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414829, 37.778610 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414721, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414753, 37.778576 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.778500 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414378, 37.779102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.777236 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412726, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414314, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778966 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410773, 37.779178 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.779356 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411760, 37.776219 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411610, 37.776134 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775116 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.771588 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413734, 37.771995 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773895 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774768 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772402 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429699, 37.770248 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769502 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769468 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429398, 37.769409 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429162, 37.769502 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769298 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429034, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767534 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767772 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767823 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.767789 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767670 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767263 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767348 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427253, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427102, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428883, 37.767780 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428626, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767382 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.766279 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765635 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431136, 37.765685 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430707, 37.766186 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764617 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.764379 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428561, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428519, 37.764583 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.764727 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428497, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428497, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770571 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422446, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.770147 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.768391 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422274, 37.767857 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421974, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764719 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764854 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.766262 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422060, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.764990 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764634 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421652, 37.763412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421781, 37.763090 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430686, 37.761097 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.761224 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428411, 37.761470 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.761368 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761241 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761190 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759782 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428068, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426866, 37.757238 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756644 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426823, 37.756440 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427660, 37.754786 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427746, 37.754608 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425922, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423648, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421523, 37.762013 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761665 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421652, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421352, 37.760350 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421502, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421352, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421201, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757153 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421201, 37.756610 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420880, 37.753403 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420708, 37.753607 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.770469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768213 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.767136 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.768459 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765126 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419721, 37.764998 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765143 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765024 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762632 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417618, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417639, 37.765261 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765567 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765397 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415429, 37.765372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765227 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415279, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412275, 37.770359 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769807 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410451, 37.769672 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410451, 37.769672 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769112 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769341 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768450 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765380 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.762216 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410537, 37.765304 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765567 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409807, 37.765719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410280, 37.764218 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.764023 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410322, 37.763141 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762937 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419506, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419463, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.759799 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758171 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417082, 37.761877 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416996, 37.758934 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416781, 37.758866 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.757509 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418948, 37.756593 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418712, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418798, 37.755168 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.753429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418562, 37.754277 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416695, 37.755728 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416459, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415086, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759002 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.758985 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758815 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414786, 37.758764 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410043, 37.761674 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410076, 37.760579 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409915, 37.760376 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414335, 37.755948 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414485, 37.755456 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787462 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408391, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408134, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785360 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409507, 37.785071 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409400, 37.784266 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407962, 37.785427 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407898, 37.785377 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407683, 37.784800 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407683, 37.784800 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market" }, "geometry": { "type": "Point", "coordinates": [ -122.407640, 37.784461 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408177, 37.784164 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783884 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784681 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786394 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786598 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785758 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785648 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.785860 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785529 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784342 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783392 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782104 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409099, 37.780747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408305, 37.781188 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406653, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406653, 37.782773 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406482, 37.782646 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404743, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403370, 37.787734 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403435, 37.787632 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402490, 37.785970 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.786513 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786377 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786343 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401611, 37.786038 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403928, 37.784639 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.784257 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400237, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787869 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786208 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400259, 37.784944 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399100, 37.783994 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783969 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398757, 37.783986 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783036 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780306 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780442 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400860, 37.782154 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.401010, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399915, 37.780671 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777932 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776643 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405323, 37.778627 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.777321 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775727 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404357, 37.777151 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773539 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407125, 37.772538 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407082, 37.772326 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405173, 37.774701 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405001, 37.774590 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404486, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405902, 37.771554 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405237, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778915 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.779314 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401825, 37.778941 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402233, 37.776159 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.777949 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403370, 37.773267 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401825, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771707 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399422, 37.773674 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773471 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398607, 37.786598 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398113, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396718, 37.785631 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.785750 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785512 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396525, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.785317 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394186, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787954 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395324, 37.784529 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.784190 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784291 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.782706 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398070, 37.779475 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393779, 37.783291 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.782841 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779984 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393500, 37.779560 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392169, 37.786733 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388135, 37.784359 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784597 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392234, 37.781858 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390689, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390560, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783596 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389938, 37.779797 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389873, 37.779721 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389551, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.778305 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776541 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776320 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775489 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397212, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777423 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395130, 37.777109 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777185 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394873, 37.777067 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394744, 37.777007 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394894, 37.776897 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776320 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393950, 37.776363 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776320 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394036, 37.776252 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776151 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775778 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773166 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772894 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397813, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779288 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392448, 37.778983 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778101 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775286 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772996 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772962 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389787, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389616, 37.771164 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407919, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407662, 37.768255 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407662, 37.768264 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407619, 37.767331 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408198, 37.766347 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765702 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765702 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764736 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764227 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405516, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766042 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404443, 37.764557 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763243 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404293, 37.763302 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770231 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404121, 37.770163 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403306, 37.769892 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403156, 37.769756 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768739 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768569 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767467 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402726, 37.767314 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403799, 37.765940 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764820 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403477, 37.764820 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764820 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766160 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.766008 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.766059 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764871 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764769 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.764786 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764905 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.766228 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399980, 37.764990 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.762208 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761852 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762021 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757509 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.757399 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.756211 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409486, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409185, 37.754311 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754150 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757492 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757187 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406567, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405301, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404937, 37.754421 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404057, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.761987 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402297, 37.760953 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404057, 37.759663 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403885, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759680 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759562 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402233, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759434 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758391 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.760936 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401031, 37.759663 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.758137 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400795, 37.758103 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758018 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759731 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.756881 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401847, 37.756169 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403907, 37.754481 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403628, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401696, 37.754506 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401675, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.753386 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400817, 37.757441 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757339 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398864, 37.757187 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398843, 37.755906 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398757, 37.754854 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.766398 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397662, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764752 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762615 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762581 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397405, 37.762429 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762700 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393221, 37.762734 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391032, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390882, 37.766864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389444, 37.769315 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389294, 37.769553 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389305, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389272, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767806 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389187, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389187, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388994, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764362 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764388 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388757, 37.764430 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388865, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389659, 37.762904 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388629, 37.763362 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388929, 37.762988 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843, 37.762971 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.761326 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398360, 37.759867 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396461, 37.761411 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396332, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.760088 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759986 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396117, 37.758120 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395452, 37.760037 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395130, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395195, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398564, 37.754812 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398628, 37.754676 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398671, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753463 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397341, 37.753904 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.754676 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396568, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395753, 37.757271 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.756830 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395796, 37.755456 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755507 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753760 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395645, 37.753743 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391804, 37.757772 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391762, 37.757704 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388757, 37.760546 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760588 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390002, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388242, 37.758077 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758171 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388092, 37.758009 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393049, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393006, 37.755159 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.755015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387899, 37.755694 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755058 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755287 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408971, 37.752759 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752827 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406267, 37.753251 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406439, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753064 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386891, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386869, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788700 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419335, 37.775235 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775065 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.775031 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.778678 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778542 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767331 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767195 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784198 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805283 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432209, 37.805130 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.805122 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.790108 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423197, 37.806376 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422081, 37.806351 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807029 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420686, 37.806724 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421888, 37.805588 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806690 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.806639 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420450, 37.805707 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420472, 37.805630 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808318 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807249 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417403, 37.806164 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805486 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808080 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412511, 37.808029 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414120, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.806520 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.808097 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807843 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808351 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807606 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412039, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805741 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.806877 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801485 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431415, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801366 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801350 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801689 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429506, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427853, 37.801824 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426566, 37.802112 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802028 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.800570 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800366 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797789 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428068, 37.800943 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.800858 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.798060 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798213 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425407, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.804961 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805164 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425107, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804842 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424999, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424978, 37.804113 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423991, 37.805317 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423497, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423798, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802435 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424871, 37.802333 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424849, 37.802350 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424892, 37.802197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424635, 37.802579 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422103, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803655 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424420, 37.800332 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798586 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798467 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424077, 37.798442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423905, 37.798654 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422446, 37.798823 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798679 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422038, 37.797738 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796958 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793584 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430621, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429119, 37.792177 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429184, 37.790362 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790676 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424613, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423326, 37.796076 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794890 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423133, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794915 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422897, 37.794788 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421480, 37.795110 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423004, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423369, 37.793965 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423133, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422961, 37.794042 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422596, 37.792448 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421416, 37.793694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421287, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793499 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426137, 37.790888 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425772, 37.791040 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.791905 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424034, 37.791151 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422918, 37.792109 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791380 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791159 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790371 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.791515 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422017, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.790642 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420257, 37.804774 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804791 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802909 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419699, 37.802842 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801858 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801909 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804520 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415236, 37.805325 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415311, 37.805257 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415172, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415172, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415172, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415172, 37.804545 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801010 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800993 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419335, 37.800205 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798950 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.800171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419142, 37.799179 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799120 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418777, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799451 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417511, 37.799323 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.799535 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.799688 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415065, 37.804961 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.804384 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.803757 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803282 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413648, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801926 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412919, 37.801833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412661, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804961 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411653, 37.804808 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411438, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802943 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411610, 37.801188 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801231 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803130 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799739 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412726, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412575, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799976 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.800036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800502 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800383 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410644, 37.800197 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410043, 37.800383 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409936, 37.800409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.798247 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412018, 37.798196 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.797348 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411824, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.795330 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418391, 37.796348 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418391, 37.795381 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.795551 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418197, 37.795398 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794601 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419635, 37.794406 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419592, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.795754 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795585 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794856 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.794652 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792872 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417897, 37.792753 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416288, 37.793830 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416223, 37.793821 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.792957 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419528, 37.791719 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420644, 37.790820 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420536, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.790701 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.789667 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420386, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789362 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417446, 37.791973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417468, 37.791108 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791015 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417532, 37.790905 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.792058 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415612, 37.791286 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.791091 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.790167 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416910, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788429 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.795958 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415107, 37.795788 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.795042 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795992 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796161 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413198, 37.795254 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794042 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.793177 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413005, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412747, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796212 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795602 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411717, 37.795449 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411481, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.796407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795313 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794584 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794584 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411524, 37.794440 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794533 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411063, 37.794508 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411867, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793652 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793787 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414163, 37.792397 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414120, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414099, 37.791346 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413605, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412318, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791871 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411953, 37.788853 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808233 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409164, 37.806097 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407898, 37.807351 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407211, 37.807182 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806944 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406203, 37.806792 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406031, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405430, 37.806614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803282 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.803503 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803384 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406524, 37.803562 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802723 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.802604 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405795, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405730, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409271, 37.800366 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.799281 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.799213 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799383 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.799111 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800604 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.797187 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.796789 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407340, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405967, 37.800909 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800756 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404507, 37.800960 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.797628 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.797831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406739, 37.796984 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405666, 37.797051 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797331 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805147 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803927 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402941, 37.802341 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.802977 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801417 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802163 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.803265 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401031, 37.802960 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801265 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800553 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.799671 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403585, 37.797391 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800604 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401096, 37.798315 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400731, 37.798543 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400774, 37.796856 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408584, 37.796738 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795754 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.794635 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408262, 37.796246 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.793753 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409121, 37.793041 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409443, 37.792957 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793737 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793431 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405022, 37.796127 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404743, 37.794703 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405967, 37.794262 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406310, 37.793414 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404851, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404550, 37.793770 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.792880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404271, 37.792719 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404250, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.792066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409335, 37.791956 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409292, 37.792210 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409142, 37.792304 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409271, 37.791939 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792126 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792126 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791074 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.791091 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407554, 37.792312 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407533, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790142 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408713, 37.790159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788395 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788192 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789955 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789599 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789480 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792380 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405988, 37.788548 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404379, 37.789820 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405409, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795907 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402061, 37.795729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796060 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402769, 37.794686 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403220, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401546, 37.794033 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.794822 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.794279 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400280, 37.794177 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401267, 37.792973 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.793177 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.793143 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793126 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399808, 37.793296 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399873, 37.793143 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403971, 37.791007 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791939 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790922 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.788200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402383, 37.789014 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY" }, "geometry": { "type": "Point", "coordinates": [ -122.402190, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400860, 37.792024 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400087, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400945, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790294 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399765, 37.791312 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399679, 37.791312 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791108 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399143, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789353 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400409, 37.790159 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400581, 37.788938 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400645, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398585, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799552 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397791, 37.799086 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797806 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396160, 37.797840 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.797085 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395570, 37.797212 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396997, 37.795415 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794500 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397705, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398521, 37.792482 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397748, 37.793423 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793245 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397534, 37.792609 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396353, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396139, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792982 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397019, 37.792575 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396590, 37.793024 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396182, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793491 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796687 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393864, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393564, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395688, 37.793728 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395624, 37.793652 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395602, 37.793635 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793592 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394916, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794262 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394615, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794466 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.792533 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393736, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393736, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.793762 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793703 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793465 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793363 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393253, 37.793355 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.791897 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791922 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396697, 37.791753 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.789921 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396954, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396868, 37.789260 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396332, 37.789650 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395474, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394959, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.791965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394787, 37.791829 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.791142 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393564, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393392, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393328, 37.790608 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790583 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393306, 37.790549 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393521, 37.790413 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789192 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394465, 37.789930 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394294, 37.789803 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789820 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789718 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392319, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792685 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392534, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392405, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392555, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391225, 37.792414 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391096, 37.792338 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391064, 37.792160 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788853 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392813, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.791083 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390195, 37.790812 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790752 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389895, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790481 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388779, 37.789455 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388629, 37.789599 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421545, 37.787632 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.788005 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.787793 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418541, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.787454 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787649 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787462 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408391, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403520, 37.787522 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403370, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403435, 37.787632 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400237, 37.787751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399851, 37.787869 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394186, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393607, 37.787954 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -2607,6 +27155,10 @@ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788700 ] } } , { "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396547, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396396, 37.793143 ] } } ] } ] } , @@ -2614,7 +27166,17 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714118 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713388 ] } } +, { "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387942, 37.712794 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386998, 37.717487 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712132 ] } } ] } ] } , @@ -2624,41 +27186,251 @@ , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750400 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388307, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387921, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742680 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742629 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387856, 37.742612 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742443 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739957 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.727034 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386826, 37.752810 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749094 ] } } +, { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749077 ] } } , +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387449, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387427, 37.748941 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746023 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745853 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.746057 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386655, 37.745768 ] } } +, { "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385131, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383929, 37.742528 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743902 ] } } +, { "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743800 ] } } , +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743698 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384638, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384444, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384509, 37.740695 ] } } +, { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738998 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385882, 37.736597 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739999 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382642, 37.739864 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, { "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382814, 37.739719 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384123, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737590 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738167 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738761 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381011, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380797, 37.738769 ] } } +, { "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379509, 37.736521 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379252, 37.737675 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379316, 37.737013 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.735850 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387363, 37.732058 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387041, 37.731854 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386633, 37.732584 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386612, 37.732363 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386054, 37.732999 ] } } +, { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733195 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735961 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383543, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383050, 37.734688 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733042 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384788, 37.732983 ] } } +, { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733246 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729563 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730819 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729529 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385625, 37.727348 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729733 ] } } , +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382685, 37.730148 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384595, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382728, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379466, 37.735019 ] } } +, { "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379531, 37.734018 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381848, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380024, 37.733466 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733296 ] } } +, { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732499 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379692, 37.732389 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735163 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379359, 37.734391 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379338, 37.734094 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731633 ] } } +, { "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377170, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381719, 37.731370 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381397, 37.730768 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730581 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728680 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727985 ] } } , +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379391, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377106, 37.730038 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379316, 37.728222 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } +, { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } , +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375883, 37.731990 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.732007 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374038, 37.730929 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729877 ] } } +, { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373759, 37.730938 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729868 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371870, 37.729877 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373126, 37.728782 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370197, 37.729139 ] } } +, { "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725337 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728757 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365444, 37.727917 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } ] } ] } , @@ -2666,13 +27438,59 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388135, 37.784359 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784630 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784597 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783596 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.760792 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760461 ] } } +, { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760376 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388436, 37.758035 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, { "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388242, 37.758077 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758171 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388092, 37.758009 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387899, 37.755694 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755058 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755287 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386891, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386869, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755388 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386783, 37.755388 ] } } +, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383050, 37.755634 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386826, 37.752810 ] } } ] } ] } , @@ -2680,15 +27498,59 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374982, 37.823243 ] } } +, { "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371441, 37.816217 ] } } +, { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369531, 37.818506 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367965, 37.822379 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367793, 37.821938 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366420, 37.819938 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366334, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } +, { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813064 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370905, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371012, 37.813132 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +, { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } , +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364199, 37.820751 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364832, 37.811996 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364553, 37.811861 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363781, 37.811691 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364296, 37.811335 ] } } +, { "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363373, 37.810504 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363394, 37.810377 ] } } ] } ] } , @@ -2696,12 +27558,46 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377213, 37.828184 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826947 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829845 ] } } +, { "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373480, 37.829819 ] } } , +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825472 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824472 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824167 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374982, 37.823243 ] } } +, { "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , +{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373909, 37.823523 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829268 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, { "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370068, 37.825192 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369918, 37.825235 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368931, 37.823624 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366956, 37.825319 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367965, 37.822379 ] } } +, { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } ] } ] } @@ -2713,6 +27609,24 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240003, 37.819997 ] } } ] } ] } ] } diff --git a/tests/muni/out/-Z11_-z13_-Bf2000.json b/tests/muni/out/-Z11_-z13_-Bf2000.json index 84575e4aa..a688064ec 100644 --- a/tests/muni/out/-Z11_-z13_-Bf2000.json +++ b/tests/muni/out/-Z11_-z13_-Bf2000.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-Bf2000.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2910},{},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2908},{},{}]", "tippecanoe_decisions": "{\"basezoom\":12,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -20,11 +20,11 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -34,265 +34,263 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } -, -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721204 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710341 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706131 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711733 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } , @@ -300,155 +298,155 @@ , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713464 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710952 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , @@ -456,7 +454,7 @@ , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } @@ -466,21 +464,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833887 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , @@ -488,311 +488,311 @@ , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799578 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797407 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510219, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754735 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496314, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482667, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } , @@ -800,187 +800,187 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760775 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757246 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757008 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753989 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747609 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.743741 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.735358 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , @@ -988,311 +988,311 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479405, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742723 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.733356 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } , { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471080, 37.784452 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777058 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.777194 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777126 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461724, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761792 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764099 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463527, 37.754905 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , @@ -1300,15 +1300,15 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787166 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } , @@ -1316,171 +1316,171 @@ , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782689 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777737 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778076 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , { "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774887 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773429 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } , { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776922 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440696, 37.787946 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.785266 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783842 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.780213 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768238 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768510 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766135 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , @@ -1488,137 +1488,137 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760842 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756432 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762539 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.754023 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760842 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.756092 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.750867 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , @@ -1626,357 +1626,357 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740822 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739668 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.739533 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } , { "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739940 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734374 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745302 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } , { "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } , { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.744487 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , { "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751206 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.738650 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738311 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , @@ -1984,311 +1984,311 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727722 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.732406 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723241 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724531 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433486, 37.726364 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805613 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805613 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807784 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , { "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805003 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802562 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.798594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.790693 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792456 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798289 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801816 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793609 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792931 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789201 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } , @@ -2296,185 +2296,183 @@ , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794423 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , { "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.794457 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , { "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788183 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793609 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , @@ -2482,261 +2480,261 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794830 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793881 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790489 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374263, 37.823379 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371774, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819921 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370830, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811784 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786894 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786962 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , @@ -2746,39 +2744,39 @@ , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } , @@ -2786,183 +2784,185 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784045 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786623 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787505 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } , @@ -2970,311 +2970,311 @@ , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772309 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782417 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782621 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.768747 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757382 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766746 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762674 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.759994 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742621 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742180 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742417 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } , @@ -3282,187 +3282,187 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750731 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745302 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735460 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.722901 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -3470,19 +3470,19 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , @@ -3490,87 +3490,87 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742451 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739736 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } , @@ -3578,31 +3578,31 @@ , { "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , @@ -3610,276 +3610,278 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729079 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733186 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735664 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734001 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.723784 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742519 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730776 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729860 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365165, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } -, -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } @@ -3896,17 +3898,17 @@ , { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } ] } ] } , @@ -3921,6 +3923,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000.json b/tests/muni/out/-Z11_-z13_-M10000.json index 28c4072e5..7bab6dfcf 100644 --- a/tests/muni/out/-Z11_-z13_-M10000.json +++ b/tests/muni/out/-Z11_-z13_-M10000.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":18540,\"detail_reduced\":4,\"tile_size_desired\":10887},{\"dropped_by_rate\":6391,\"detail_reduced\":3,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"detail_reduced\":5,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"detail_reduced\":3,\"tile_size_desired\":10687},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -27,1549 +27,1551 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 256 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 128 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.769629 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.758773 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743571 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.750087 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.724022 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.721849 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.802189 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.804359 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.804359 ] } } , { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795678 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.790252 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.362976, 37.810869 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778313 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.729453 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727280 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.742485 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 256 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 128 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -1580,6 +1582,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , @@ -1589,11 +1593,11 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } @@ -1603,169 +1607,167 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } , @@ -1773,25 +1775,25 @@ , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -1801,81 +1803,81 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 512 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.780077 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779534 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771936 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762437 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , @@ -1887,83 +1889,83 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , @@ -1971,27 +1973,27 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774378 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , @@ -1999,159 +2001,159 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747372 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500820, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742214 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } , @@ -2159,243 +2161,243 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.752122 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748593 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.741264 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.782383 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781434 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.762030 ] } } , @@ -2403,67 +2405,67 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , @@ -2471,15 +2473,15 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787403 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , @@ -2487,171 +2489,171 @@ , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778177 ] } } , { "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778313 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769222 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , @@ -2659,7 +2661,7 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , @@ -2667,129 +2669,129 @@ , { "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759723 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , @@ -2797,23 +2799,23 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } , @@ -2821,133 +2823,133 @@ , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , { "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732847 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733661 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , @@ -2955,199 +2957,199 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } , { "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746422 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737463 ] } } , { "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , @@ -3155,153 +3157,159 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732439 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.769493 ] } } -, { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 512 }, "features": [ @@ -3317,21 +3325,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , @@ -3339,185 +3349,181 @@ , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.799832 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } -, { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } ] } ] } , @@ -3525,163 +3531,165 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399347, 37.714805 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708932 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -3689,7 +3697,7 @@ , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } @@ -3699,261 +3707,251 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } -, -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } , @@ -3961,183 +3959,185 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.758858 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , @@ -4145,311 +4145,311 @@ , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.757399 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742299 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , @@ -4457,187 +4457,187 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -4645,19 +4645,19 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , @@ -4665,340 +4665,338 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391622, 37.736258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732999 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729096 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386816, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } @@ -5009,17 +5007,15 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } , @@ -5027,229 +5023,225 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , { "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424839, 37.802341 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804783 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410634, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , @@ -5257,185 +5249,183 @@ , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411706, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794440 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } , { "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , { "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , @@ -5443,150 +5433,146 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793355 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.790405 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790812 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } @@ -5594,6 +5580,10 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } ] } ] } , @@ -5608,6 +5598,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-aG.json b/tests/muni/out/-Z11_-z13_-M10000_-aG.json index 2222049b4..570b8280f 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-aG.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-aG.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-aG.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":14925,\"dropped_by_gamma\":53,\"detail_reduced\":3,\"tile_size_desired\":10887},{\"dropped_by_rate\":6391,\"dropped_by_gamma\":190,\"detail_reduced\":3,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"dropped_by_gamma\":22,\"detail_reduced\":4,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"dropped_by_gamma\":145,\"detail_reduced\":2,\"tile_size_desired\":10687},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -27,1519 +27,1513 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 512 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 256 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803816 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735969 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.725923 ] } } -, -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } +, { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } -, -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } -, -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.808156 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } -, -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 512 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 256 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -1555,11 +1549,11 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } @@ -1569,165 +1563,159 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } , @@ -1735,1470 +1723,1438 @@ , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 1024 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789031 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.788895 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500820, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } -, -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } -, -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , { "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769561 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767119 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747168 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } ] } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 512 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 1024 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } @@ -3209,21 +3165,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , @@ -3231,185 +3189,163 @@ , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } -, { "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.799832 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } -, -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } ] } ] } , @@ -3417,155 +3353,157 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399347, 37.714805 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708932 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -3573,7 +3511,7 @@ , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } @@ -3583,259 +3521,247 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } -, { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } , @@ -3843,141 +3769,129 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } -, -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.758858 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , @@ -3985,329 +3899,319 @@ , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } -, -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.757399 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } -, -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } -, { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } -, { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , @@ -4315,181 +4219,185 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -4497,19 +4405,19 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , @@ -4517,316 +4425,306 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729096 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386816, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } @@ -4837,15 +4735,11 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } , @@ -4853,225 +4747,203 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , { "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } -, { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , @@ -5079,179 +4951,175 @@ , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411706, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794525 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } , { "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , @@ -5259,138 +5127,130 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } -, { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } @@ -5398,6 +5258,8 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-ad.json b/tests/muni/out/-Z11_-z13_-M10000_-ad.json index c670d25b6..167cb4e76 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-ad.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-ad.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-ad.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":233,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_as_needed\":606,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"dropped_as_needed\":246,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"dropped_as_needed\":569,\"tile_size_desired\":10687},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -25,129 +25,117 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } -, -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , @@ -155,955 +143,943 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } -, -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } -, -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760842 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.739533 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.723411 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433486, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802562 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793881 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374263, 37.823379 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784045 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735664 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } ] } ] } , @@ -1114,6 +1090,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , @@ -1121,7 +1099,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832378 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } @@ -1131,17 +1109,17 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , @@ -1149,111 +1127,133 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } +, { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } +, { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -1263,115 +1263,123 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788404 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509983, 37.773208 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505004, 37.779840 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760164 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760350 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499125, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781993 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492173, 37.777753 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776668 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.775888 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491829, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776091 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.783808 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484963, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782299 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } , @@ -1381,235 +1389,243 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495048, 37.753497 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765100 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761538 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476809, 37.761742 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476938, 37.759943 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745421 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730658 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495005, 37.751800 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751291 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748135 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479427, 37.748441 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493846, 37.732015 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.730420 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725940 ] } } +, { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } , +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467024, 37.784741 ] } } +, { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464707, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776939 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.776481 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777194 ] } } +, { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773242 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } , @@ -1617,123 +1633,115 @@ , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785555 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459815, 37.783079 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } -, -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } -, -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } -, -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.765847 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466295, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.759129 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761945 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.764150 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763302 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463548, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } , @@ -1741,117 +1749,115 @@ , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.782706 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } -, { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.774056 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.786080 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438571, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439902, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.765745 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769154 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , @@ -1859,95 +1865,93 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } -, -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } -, -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447670, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.761317 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761640 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } +, { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767271 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } , +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.759163 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757772 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , @@ -1955,367 +1959,371 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465994, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740873 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740941 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748373 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748271 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468054, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469084, 37.729979 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728383 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720933 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } -, -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471788, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719524 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } +, { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460415, 37.730556 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455823, 37.731268 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731438 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457240, 37.719965 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454965, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749934 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } -, -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } , { "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750409 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } -, -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } -, -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444193, 37.747151 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744470 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741722 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } -, -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.751223 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749645 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.743622 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738294 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.738260 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737344 ] } } -, -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736224 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731472 ] } } +, { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733984 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723020 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722851 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.720984 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } , +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } +, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734866 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.733916 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723563 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.726347 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -2329,137 +2337,145 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } +, { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } -, { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.799832 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } ] } ] } , @@ -2467,125 +2483,121 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } +, { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399347, 37.714805 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } @@ -2595,916 +2607,928 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } -, -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.758858 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } -, -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } -, -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } +, { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } , +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } +, { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.757399 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } -, -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742299 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } -, -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } +, { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391622, 37.736258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732999 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729096 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } +, { "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } @@ -3515,15 +3539,15 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } , @@ -3531,383 +3555,393 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } +, { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804783 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410634, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795542 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795254 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } -, -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , { "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793355 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.790405 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790812 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , @@ -3916,6 +3950,10 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } ] } ] } , @@ -3930,6 +3968,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M10000_-pd.json b/tests/muni/out/-Z11_-z13_-M10000_-pd.json index 5eab06e82..a7dac102e 100644 --- a/tests/muni/out/-Z11_-z13_-M10000_-pd.json +++ b/tests/muni/out/-Z11_-z13_-M10000_-pd.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M10000_-pd.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":7695,\"dropped_as_needed\":212,\"tile_size_desired\":10887},{\"dropped_by_rate\":4113,\"dropped_as_needed\":225,\"tile_size_desired\":10721},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"dropped_as_needed\":220,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"dropped_as_needed\":224,\"tile_size_desired\":10687},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -27,169 +27,167 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , @@ -197,955 +195,943 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } -, -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760842 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.739533 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.723411 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433486, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802562 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793677 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793881 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374263, 37.823379 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } -, -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784045 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746524 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742791 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } -, -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735664 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } ] } ] } , @@ -1156,6 +1142,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , @@ -1165,11 +1153,11 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } ] } @@ -1179,169 +1167,167 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.714567 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716774 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.716553 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.714839 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711716 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716401 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439301, 37.715705 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.714771 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } , @@ -1349,25 +1335,25 @@ , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710154 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -1377,115 +1363,123 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788404 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509983, 37.773208 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505004, 37.779840 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779280 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508781, 37.760164 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760350 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499125, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781993 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492173, 37.777753 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776668 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.775888 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491829, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776091 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.783808 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484963, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484705, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782299 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } , @@ -1495,235 +1489,243 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495048, 37.753497 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765100 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761538 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476809, 37.761742 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476938, 37.759943 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745421 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730658 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495005, 37.751800 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751291 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748135 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485864, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484577, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479427, 37.748441 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493846, 37.732015 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477238, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478483, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.730420 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , { "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } , +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725940 ] } } +, { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780704 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470586, 37.780840 ] } } , +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467024, 37.784741 ] } } +, { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466810, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464707, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464793, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776939 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.472131, 37.776481 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777194 ] } } +, { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773242 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } , @@ -1731,123 +1733,115 @@ , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785555 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459815, 37.783079 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } -, -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } -, -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } -, -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.765847 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466295, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.759129 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761945 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } -, -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.764150 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763302 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463548, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } , @@ -1855,117 +1849,115 @@ , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.782706 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } -, { "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.774056 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439215, 37.781603 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.786080 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438571, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439902, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } -, -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764591 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.765745 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.765558 ] } } -, -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449858, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769154 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.770206 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , @@ -1973,95 +1965,93 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } -, -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } -, -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447670, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761199 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444065, 37.761317 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761640 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } , +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } +, { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767271 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } , +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.759163 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757772 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } -, -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , @@ -2069,367 +2059,371 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465994, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740873 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740941 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465651, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748373 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748271 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468054, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469084, 37.729979 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728383 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728383 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474320, 37.721323 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475007, 37.720933 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719524 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471788, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } +, { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460415, 37.730556 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455823, 37.731268 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731438 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724378 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457240, 37.719965 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454965, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749934 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } -, -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } , { "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.750409 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } -, -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442820, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444193, 37.747151 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } -, -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744470 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741722 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450716, 37.738175 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } -, -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.751223 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749645 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.743622 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738294 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.738260 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737344 ] } } -, -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736224 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731472 ] } } +, { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733984 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723020 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722851 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.720984 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } , +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } +, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722817 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.734866 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.733916 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.733492 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723563 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.726347 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } +, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -2443,21 +2437,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , @@ -2465,185 +2461,181 @@ , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.799832 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439344, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , { "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.799595 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434666, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787183 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } -, { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } ] } ] } , @@ -2651,163 +2643,165 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423208, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.713277 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.706283 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712632 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716604 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "3801 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.714669 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399347, 37.714805 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.711139 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708932 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708932 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -2815,7 +2809,7 @@ , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } @@ -2825,261 +2819,251 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } -, -{ "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } -, { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } -, -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784808 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } , { "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772869 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415783, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.785792 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778737 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772801 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } , @@ -3087,183 +3071,185 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.764625 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.765049 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410676, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416770, 37.758858 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.761674 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409904, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.784266 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784775 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782773 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , @@ -3271,311 +3257,311 @@ , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387974, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777177 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397802, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768255 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , { "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.757399 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , { "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769544 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764252 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.763353 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762963 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.762691 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391751, 37.757704 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760452 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.389991, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752038 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742638 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742299 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , @@ -3583,187 +3569,187 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420504, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420204, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752445 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413852, 37.749052 ] } } , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413766, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737174 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411406, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , { "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730827 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427757, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -3771,19 +3757,19 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , @@ -3791,340 +3777,338 @@ , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752106 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407801, 37.739685 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400548, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398231, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742434 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391622, 37.736258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389133, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388403, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.737921 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732999 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730250 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729096 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.723733 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720678 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392180, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.735681 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394197, 37.725295 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.723801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721187 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.722443 ] } } , { "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386730, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386816, 37.752801 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383082, 37.733237 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.734018 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377160, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } -, { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } @@ -4135,17 +4119,15 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.775142 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } ] } ] } , @@ -4153,229 +4135,225 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417586, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.808343 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.801341 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805156 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , { "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805020 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424839, 37.802341 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794779 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804783 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804206 ] } } , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800171 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800103 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412350, 37.799018 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410634, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.795356 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794644 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , @@ -4383,185 +4361,183 @@ , { "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796204 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411706, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794440 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } , { "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800748 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.796984 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405655, 37.797051 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405269, 37.797323 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.799663 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793830 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.792507 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , { "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400634, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , @@ -4569,150 +4545,146 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.794830 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793355 ] } } , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.790405 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792338 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790812 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364285, 37.811327 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363384, 37.810377 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.403424, 37.787624 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , { "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } @@ -4720,6 +4692,10 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } ] } ] } , @@ -4734,6 +4710,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-M5000_-as.json b/tests/muni/out/-Z11_-z13_-M5000_-as.json index 5abc9c1fa..96713295e 100644 --- a/tests/muni/out/-Z11_-z13_-M5000_-as.json +++ b/tests/muni/out/-Z11_-z13_-M5000_-as.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-M5000_-as.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"dropped_as_needed\":482,\"tile_size_desired\":10887},{\"dropped_by_rate\":2974,\"dropped_as_needed\":1302,\"tile_size_desired\":10721},{\"dropped_as_needed\":3042,\"tile_size_desired\":9664}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"dropped_as_needed\":495,\"tile_size_desired\":11064},{\"dropped_by_rate\":2980,\"dropped_as_needed\":1222,\"tile_size_desired\":10687},{\"dropped_as_needed\":3251,\"tile_size_desired\":9664}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } ] } ] } , @@ -27,85 +25,61 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } -, -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } ] } , @@ -113,499 +87,503 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791168 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768510 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768442 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.755957 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.752971 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -625,11 +603,7 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } ] } ] } , @@ -637,69 +611,61 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } -, -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } -, -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } -, -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } -, -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +, { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710290 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , @@ -707,21 +673,13 @@ , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.715671 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } @@ -731,553 +689,573 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788980 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779025 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505219, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775176 ] } } -, -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773208 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } -, -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760520 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760758 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497194, 37.775769 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776024 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493246, 37.777855 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.784232 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782299 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776464 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776566 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } -, -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490413, 37.764931 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754107 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507536, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.747457 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504961, 37.745590 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } , +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } +, { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505348, 37.735528 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730658 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } , +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } +, { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749798 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751291 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480028, 37.726907 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725940 ] } } , { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784503 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780704 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468956, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467024, 37.784741 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } -, -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } -, { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.785182 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.781417 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.783079 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459815, 37.783079 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761945 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465694, 37.756500 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764082 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } +, { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } +, { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438571, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767102 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.764490 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447670, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.767373 ] } } +, { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741484 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.741162 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456896, 37.749832 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751698 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748373 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736733 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } -, -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.727246 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467840, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467883, 37.728383 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460115, 37.720067 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.723767 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748916 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.752343 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743486 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744470 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741077 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } -, -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } -, -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441404, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749645 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733984 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } +, { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722952 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.720271 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.732389 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.726822 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718641 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -1289,81 +1267,79 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } -, -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.791727 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.787624 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , @@ -1371,9 +1347,7 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } ] } ] } , @@ -1381,73 +1355,85 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709814 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415698, 37.707132 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713838 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.713379 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } ] } ] } , @@ -1455,425 +1441,521 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.785996 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780196 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778635 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775515 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.771987 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770562 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759774 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.765253 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.780671 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775718 ] } } , +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, { "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "7th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785741 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396643, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407672, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757500 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755872 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389648, 37.762895 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748169 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743588 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } , +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } +, { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418101, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414196, 37.752598 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744708 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.743928 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721085 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.727026 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } +, { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -1885,151 +1967,195 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796068 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794406 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } +, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794576 ] } } , +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792677 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +, { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801256 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400720, 37.798543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.798967 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.790472 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.787522 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -2057,8 +2183,6 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831828 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831878 ] } } -, { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527245, 37.832582 ] } } , { "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523447, 37.831658 ] } } @@ -2079,30 +2203,16 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718701 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483214, 37.718607 ] } } -, { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } -, -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } -, { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.717003 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496550, 37.716528 ] } } -, -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495338, 37.716239 ] } } -, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714771 ] } } -, { "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717343 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716333 ] } } -, { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481476, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485274, 37.711529 ] } } @@ -2115,6 +2225,8 @@ , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716715 ] } } , +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478322, 37.715849 ] } } +, { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485296, 37.709314 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475575, 37.714135 ] } } @@ -2131,54 +2243,36 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753895 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485167, 37.753785 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753878 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480875, 37.753972 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506367, 37.752784 ] } } -, { "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507504, 37.750926 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753030 ] } } , +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } +, { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749162 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749332 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507547, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505101, 37.747457 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504972, 37.745590 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502311, 37.753030 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500166, 37.753123 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753327 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503041, 37.747423 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } @@ -2191,30 +2285,26 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504575, 37.739999 ] } } , +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504436, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739830 ] } } +, { "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738082 ] } } , +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } +, { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504264, 37.737972 ] } } , +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504350, 37.736122 ] } } +, { "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500466, 37.741900 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742019 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498320, 37.741993 ] } } , { "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506818, 37.735486 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503406, 37.735596 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735367 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501346, 37.735384 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734569 ] } } -, { "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.730666 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728222 ] } } @@ -2227,56 +2317,50 @@ , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495424, 37.753336 ] } } , +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.751300 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749807 ] } } , { "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497419, 37.747618 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745964 ] } } +, { "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495359, 37.745853 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748068 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493342, 37.747830 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494801, 37.746082 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489051, 37.748000 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487924, 37.748076 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746362 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494673, 37.744224 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494544, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492956, 37.742239 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740118 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494147, 37.736767 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742494 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742358 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744513 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487613, 37.742460 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487549, 37.742646 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738769 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485596, 37.748271 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483450, 37.748381 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } @@ -2289,6 +2373,8 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745242 ] } } +, { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485467, 37.742536 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483321, 37.742655 ] } } @@ -2307,22 +2393,14 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496775, 37.733907 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496818, 37.733704 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493857, 37.732024 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493514, 37.730344 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491604, 37.734145 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733958 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489254, 37.734238 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486240, 37.734374 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734484 ] } } @@ -2331,12 +2409,8 @@ , { "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729631 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729444 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480060, 37.734654 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477378, 37.734756 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479094, 37.728553 ] } } @@ -2353,9 +2427,7 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718701 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721841 ] } } -, -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722757 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.720737 ] } } , @@ -2365,9 +2437,9 @@ , { "type": "Feature", "properties": { "name": "91 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477142, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480897, 37.720678 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719634 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480897, 37.720678 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478429, 37.718692 ] } } , @@ -2389,6 +2461,8 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727255 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721196 ] } } , { "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475318, 37.720220 ] } } @@ -2407,42 +2481,34 @@ , { "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512976, 37.779102 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.779034 ] } } -, { "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509414, 37.779025 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510315, 37.775184 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510240, 37.775006 ] } } -, -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509929, 37.773318 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510787, 37.771419 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509843, 37.771690 ] } } -, { "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508470, 37.779992 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505530, 37.782137 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781832 ] } } -, { "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505230, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504135, 37.779780 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504232, 37.781010 ] } } , { "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499694, 37.784978 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502998, 37.781086 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502859, 37.779653 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500681, 37.779475 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506260, 37.779042 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505959, 37.775209 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503835, 37.775354 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773284 ] } } @@ -2455,11 +2521,13 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771588 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779153 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500402, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500337, 37.771877 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779288 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771894 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500337, 37.771877 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497977, 37.771978 ] } } , @@ -2467,13 +2535,11 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } -, { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509199, 37.760350 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507408, 37.764184 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764057 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762378 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760359 ] } } , @@ -2481,8 +2547,6 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758484 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505745, 37.756779 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505616, 37.754922 ] } } @@ -2495,21 +2559,29 @@ , { "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } , +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492548, 37.783426 ] } } +, { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781798 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493449, 37.779797 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492291, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493385, 37.779814 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783799 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491432, 37.781663 ] } } , +{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490510, 37.783672 ] } } +, { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.779611 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490188, 37.779729 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490059, 37.780772 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489029, 37.781892 ] } } , @@ -2523,42 +2595,34 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775896 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.775998 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771919 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495574, 37.771970 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772233 ] } } , { "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491947, 37.776677 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776117 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487549, 37.776219 ] } } , { "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490714, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } -, { "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487506, 37.772470 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485360, 37.787369 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785868 ] } } , +{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485038, 37.785690 ] } } +, { "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485102, 37.784003 ] } } , { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782061 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.781968 ] } } -, { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780255 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483665, 37.782129 ] } } @@ -2567,8 +2631,6 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } -, { "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478708, 37.784113 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479845, 37.782307 ] } } @@ -2589,8 +2651,6 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484523, 37.772597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772759 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480274, 37.776431 ] } } @@ -2601,26 +2661,16 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772657 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.772860 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476777, 37.772962 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772826 ] } } -, { "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496625, 37.764362 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495788, 37.762624 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.764752 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492570, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764727 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490424, 37.764939 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495853, 37.761004 ] } } @@ -2633,6 +2683,8 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755405 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495316, 37.753539 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } @@ -2643,26 +2695,14 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491615, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490284, 37.753751 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489201, 37.753751 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487313, 37.753692 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486132, 37.765134 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483364, 37.765109 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765194 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477742, 37.765499 ] } } @@ -2677,16 +2717,16 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481240, 37.759731 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753895 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485167, 37.753785 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481111, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753895 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759596 ] } } , +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } +, { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476712, 37.760147 ] } } @@ -2697,28 +2737,18 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754141 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479609, 37.754336 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476691, 37.756220 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506367, 37.752784 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753030 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502311, 37.753030 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501003, 37.753242 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500166, 37.753123 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753327 ] } } -, { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495424, 37.753336 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } @@ -2743,13 +2773,15 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482613, 37.788463 ] } } , +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482259, 37.790252 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480489, 37.793567 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480918, 37.792312 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806080 ] } } ] } ] } , @@ -2763,15 +2795,11 @@ , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833878 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494007, 37.833607 ] } } -, { "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , { "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483386, 37.833149 ] } } , { "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829523 ] } } -, -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483536, 37.829438 ] } } ] } ] } , @@ -2779,8 +2807,6 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718650 ] } } @@ -2791,19 +2817,17 @@ , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717326 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473172, 37.715213 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.715900 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472271, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472378, 37.717750 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471670, 37.716197 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471906, 37.714627 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470243, 37.714763 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714067 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475575, 37.714135 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471745, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.713099 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471262, 37.713549 ] } } , @@ -2817,11 +2841,11 @@ , { "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467378, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469331, 37.710281 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469460, 37.710358 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714203 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711656 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712335 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711826 ] } } , @@ -2829,21 +2853,21 @@ , { "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705766 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463387, 37.714347 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714236 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463387, 37.714347 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711283 ] } } , { "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459160, 37.713150 ] } } , +{ "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461563, 37.711444 ] } } +, { "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710129 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } , { "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458924, 37.713193 ] } } , @@ -2857,10 +2881,6 @@ , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705978 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706360 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706818 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457079, 37.707361 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718514 ] } } @@ -2869,8 +2889,6 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452229, 37.714169 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } , { "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.716893 ] } } @@ -2883,44 +2901,30 @@ , { "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453324, 37.708660 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709500 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450062, 37.709619 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716715 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716341 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439612, 37.715679 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715145 ] } } -, { "type": "Feature", "properties": { "name": "Naples St & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712454 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } -, { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, { "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.717674 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432295, 37.715128 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } +, { "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.709967 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710943 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } -, -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712929 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434827, 37.709636 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.708966 ] } } -, { "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } @@ -2939,6 +2943,8 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745242 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } @@ -2951,8 +2957,6 @@ , { "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.720101 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753760 ] } } -, { "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457980, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455512, 37.753683 ] } } @@ -2961,10 +2965,6 @@ , { "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753989 ] } } -, -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754014 ] } } -, { "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438754, 37.753522 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473086, 37.752402 ] } } @@ -2977,30 +2977,30 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748806 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746982 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745073 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745107 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748873 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748907 ] } } , { "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470490, 37.745081 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468365, 37.749043 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.752886 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468559, 37.748873 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466434, 37.749162 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748975 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743308 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473708, 37.743071 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.741493 ] } } +, { "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741204 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743071 ] } } @@ -3015,18 +3015,12 @@ , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470039, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468473, 37.741535 ] } } -, { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466263, 37.741170 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740763 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469052, 37.738099 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465039, 37.739847 ] } } -, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461349, 37.751121 ] } } , { "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } @@ -3035,6 +3029,8 @@ , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456907, 37.749841 ] } } , +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } +, { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456220, 37.751495 ] } } , { "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } @@ -3059,8 +3055,6 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460834, 37.740228 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460083, 37.739380 ] } } -, { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461456, 37.737743 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456628, 37.744148 ] } } @@ -3069,20 +3063,14 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } -, { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453946, 37.736690 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475275, 37.734493 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.732787 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732024 ] } } -, { "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471520, 37.735036 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471445, 37.734824 ] } } -, { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731175 ] } } @@ -3103,11 +3091,11 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475103, 37.727255 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472957, 37.721595 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721196 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475318, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721484 ] } } , @@ -3125,22 +3113,12 @@ , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735503 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459654, 37.734561 ] } } -, -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733704 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729970 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461499, 37.730081 ] } } -, { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.733602 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457765, 37.732236 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457529, 37.731107 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455834, 37.731268 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725982 ] } } @@ -3149,12 +3127,6 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463645, 37.719787 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461327, 37.719948 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460115, 37.720067 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724387 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456049, 37.723776 ] } } @@ -3163,27 +3135,21 @@ , { "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459074, 37.720101 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457250, 37.719965 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456220, 37.720109 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454976, 37.720067 ] } } -, { "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751283 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749264 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751215 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.749942 ] } } -, { "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745768 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452229, 37.745624 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450448, 37.748924 ] } } , { "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School" }, "geometry": { "type": "Point", "coordinates": [ -122.449569, 37.745930 ] } } , @@ -3195,32 +3161,34 @@ , { "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.749298 ] } } , -{ "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750850 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447916, 37.746464 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445084, 37.748076 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444204, 37.747151 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444998, 37.746702 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746888 ] } } , { "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745192 ] } } +, { "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453238, 37.744360 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451392, 37.743495 ] } } , { "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450674, 37.744479 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450534, 37.741730 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742596 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.449225, 37.740975 ] } } , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738201 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451736, 37.737726 ] } } -, { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446028, 37.741382 ] } } @@ -3231,16 +3199,20 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446629, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736792 ] } } -, { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442573, 37.752487 ] } } +, { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , { "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } , +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749264 ] } } +, { "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440556, 37.751028 ] } } , +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440921, 37.749306 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437595, 37.752793 ] } } , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 37.751121 ] } } @@ -3251,27 +3223,23 @@ , { "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441415, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.745259 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.745242 ] } } -, { "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436544, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751096 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436211, 37.749654 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.752894 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749671 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436072, 37.747855 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749807 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746294 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749671 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436157, 37.748856 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433625, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433894, 37.748203 ] } } , { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } , @@ -3283,17 +3251,15 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.743249 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.741849 ] } } -, { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435879, 37.740288 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436898, 37.738599 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.737310 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740033 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433604, 37.739999 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740186 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432810, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.738336 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434334, 37.736080 ] } } , @@ -3301,15 +3267,13 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448775, 37.734349 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448946, 37.733152 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731616 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731616 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727866 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729953 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727866 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449161, 37.731616 ] } } , @@ -3319,7 +3283,7 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446457, 37.735689 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734569 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.733992 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446479, 37.731633 ] } } , @@ -3335,18 +3299,10 @@ , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724098 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.723037 ] } } -, -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722944 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453002, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } -, { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450277, 37.721934 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449290, 37.722859 ] } } -, { "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450126, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446929, 37.723029 ] } } @@ -3355,9 +3311,9 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445041, 37.722749 ] } } , @@ -3373,9 +3329,13 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437767, 37.731667 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729037 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730378 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441007, 37.727739 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439848, 37.731515 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731498 ] } } , @@ -3383,9 +3343,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734467 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734603 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.732397 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.733330 ] } } , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436994, 37.731319 ] } } , @@ -3393,6 +3351,8 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441629, 37.726831 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441200, 37.727153 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438668, 37.723674 ] } } @@ -3405,19 +3365,17 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435192, 37.724310 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433647, 37.726347 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.725524 ] } } -, { "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433089, 37.723954 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436329, 37.722808 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721467 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432960, 37.721612 ] } } , @@ -3427,14 +3385,16 @@ , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.746676 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745192 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , { "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } , +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731837 ] } } +, { "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 37.730641 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728901 ] } } @@ -3443,8 +3403,6 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.720856 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.718514 ] } } @@ -3469,30 +3427,18 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475768, 37.776761 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476294, 37.754116 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , { "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475232, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784512 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472764, 37.784368 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475361, 37.782392 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473966, 37.782578 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471155, 37.782697 ] } } , { "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472807, 37.780704 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780611 ] } } -, { "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469159, 37.784664 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467035, 37.784749 ] } } @@ -3505,8 +3451,6 @@ , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782901 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780781 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472700, 37.776778 ] } } @@ -3515,12 +3459,8 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773047 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472185, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470533, 37.773259 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468387, 37.776965 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777067 ] } } @@ -3529,11 +3469,9 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469825, 37.773183 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468387, 37.773352 ] } } -, { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466091, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465812, 37.773641 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466048, 37.773471 ] } } , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463623, 37.784885 ] } } , @@ -3541,7 +3479,7 @@ , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459289, 37.785699 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464525, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462572, 37.783087 ] } } , @@ -3553,27 +3491,29 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.786911 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459031, 37.785656 ] } } +, { "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455212, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456328, 37.785970 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.783961 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781866 ] } } -, -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.781425 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456435, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781527 ] } } -, { "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779170 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464160, 37.777287 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461971, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775608 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776982 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } , @@ -3581,12 +3521,8 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773844 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458860, 37.777474 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.777075 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455362, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774370 ] } } @@ -3595,8 +3531,6 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772962 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454332, 37.772767 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770859 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475425, 37.765618 ] } } @@ -3607,20 +3541,24 @@ , { "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.762072 ] } } , +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468923, 37.770537 ] } } +, { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466155, 37.770435 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765906 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468709, 37.765753 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762072 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466241, 37.764286 ] } } , +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766093 ] } } +, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466391, 37.763794 ] } } , +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466692, 37.762225 ] } } +, { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759299 ] } } @@ -3633,10 +3571,6 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473515, 37.756966 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } -, -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469524, 37.761987 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470082, 37.758298 ] } } @@ -3645,8 +3579,6 @@ , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760410 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760240 ] } } -, { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758544 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756678 ] } } @@ -3655,29 +3587,33 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464010, 37.765957 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462465, 37.766177 ] } } -, { "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764091 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462851, 37.762395 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464353, 37.762335 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764227 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457958, 37.765982 ] } } , +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458645, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457637, 37.766050 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.765007 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456971, 37.763811 ] } } +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763311 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454911, 37.766211 ] } } , +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454525, 37.764354 ] } } +, { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463130, 37.758696 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , @@ -3687,8 +3623,6 @@ , { "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755405 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753760 ] } } -, { "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457980, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456349, 37.755337 ] } } @@ -3699,12 +3633,8 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451950, 37.784020 ] } } -, { "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450255, 37.786708 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.784987 ] } } @@ -3715,18 +3645,12 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446758, 37.786326 ] } } -, -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446715, 37.785377 ] } } -, { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443067, 37.784885 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447573, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453281, 37.777906 ] } } @@ -3737,13 +3661,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449290, 37.775371 ] } } -, -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452852, 37.774031 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773250 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450856, 37.773378 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453238, 37.774997 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449161, 37.773607 ] } } , @@ -3751,81 +3669,71 @@ , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778763 ] } } , +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.777567 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775676 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778915 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } -, { "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443196, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.776770 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446049, 37.774056 ] } } -, { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445620, 37.771961 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774090 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.774294 ] } } -, { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787954 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439998, 37.786284 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439934, 37.785148 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785334 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438325, 37.785402 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783850 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782799 ] } } +, { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440299, 37.779509 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783426 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439226, 37.781612 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437670, 37.783621 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437166, 37.780874 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785792 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433561, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432832, 37.786089 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433196, 37.785996 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433046, 37.784393 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783986 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435514, 37.781078 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432703, 37.783019 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431952, 37.779856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780204 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779288 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438582, 37.777813 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438411, 37.777686 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440492, 37.779356 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438239, 37.776761 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440159, 37.777516 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441500, 37.774573 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.773047 ] } } , @@ -3841,15 +3749,13 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775625 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.436984, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.771605 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451757, 37.769315 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768332 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453259, 37.766415 ] } } , @@ -3857,12 +3763,12 @@ , { "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448667, 37.769714 ] } } , +{ "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450427, 37.768527 ] } } +, { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.764769 ] } } -, { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765881 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763260 ] } } @@ -3871,9 +3777,11 @@ , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770248 ] } } , +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769010 ] } } +, { "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447916, 37.767102 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446693, 37.767263 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770350 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } , @@ -3887,7 +3795,7 @@ , { "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765448 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443303, 37.764498 ] } } , { "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761708 ] } } , @@ -3897,31 +3805,25 @@ , { "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447680, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761852 ] } } -, { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446135, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761971 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444483, 37.760478 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761801 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443539, 37.760359 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757797 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444150, 37.757500 ] } } -, -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.756449 ] } } -, -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St" }, "geometry": { "type": "Point", "coordinates": [ -122.442831, 37.755346 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754116 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440213, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438539, 37.768671 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439269, 37.768052 ] } } -, -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438196, 37.766813 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439505, 37.766491 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } , @@ -3931,8 +3833,6 @@ , { "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.769180 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435707, 37.768951 ] } } -, { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435836, 37.767382 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433690, 37.769392 ] } } @@ -3941,17 +3841,23 @@ , { "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.764269 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } , +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435256, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435385, 37.762624 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432810, 37.764490 ] } } , { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762649 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438282, 37.761597 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760588 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437295, 37.760698 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438282, 37.761597 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759036 ] } } , @@ -3959,32 +3865,28 @@ , { "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757560 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755812 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } , { "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438754, 37.753522 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437745, 37.754370 ] } } -, { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435149, 37.760953 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434913, 37.759392 ] } } , +{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757780 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } , { "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435964, 37.757679 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756101 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434484, 37.754642 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.754413 ] } } -, { "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472056, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466477, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752776 ] } } -, { "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752869 ] } } @@ -4021,6 +3923,8 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } , +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806080 ] } } +, { "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806927 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801790 ] } } @@ -4041,15 +3945,15 @@ , { "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803808 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456564, 37.801773 ] } } , +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, { "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454525, 37.803689 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802079 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802299 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454718, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458988, 37.800197 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797891 ] } } , @@ -4061,27 +3965,25 @@ , { "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799383 ] } } -, { "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.798179 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.804342 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803774 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804554 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801909 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443517, 37.802842 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446951, 37.800324 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447444, 37.800409 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447165, 37.798543 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797602 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800620 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444419, 37.799841 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443131, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799078 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445105, 37.798671 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } , @@ -4089,8 +3991,6 @@ , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445513, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790905 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } @@ -4099,57 +3999,47 @@ , { "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803079 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805419 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441275, 37.800112 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439677, 37.800442 ] } } -, { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800722 ] } } , { "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796873 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.802816 ] } } -, -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435170, 37.802748 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437123, 37.804427 ] } } , { "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433604, 37.805419 ] } } , +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } +, { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805283 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800892 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436050, 37.799595 ] } } -, { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437059, 37.796789 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435492, 37.797391 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438883, 37.796585 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441994, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438883, 37.796585 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441307, 37.791566 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789972 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440385, 37.788183 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788514 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794890 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788090 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794160 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788514 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433389, 37.792660 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436801, 37.795992 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } , @@ -4157,7 +4047,7 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435557, 37.789328 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791719 ] } } , @@ -4165,8 +4055,6 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , { "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787734 ] } } @@ -4193,28 +4081,20 @@ , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719193 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718955 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719049 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } -, { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432295, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431802, 37.712836 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.711699 ] } } -, { "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428197, 37.717563 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710706 ] } } @@ -4223,29 +4103,27 @@ , { "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711113 ] } } , +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425686, 37.718293 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } , { "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710723 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710044 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709823 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423218, 37.709305 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421759, 37.708660 ] } } -, { "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419957, 37.712972 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712607 ] } } -, { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710027 ] } } , +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711860 ] } } +, { "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417532, 37.712233 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416052, 37.712021 ] } } , @@ -4253,14 +4131,14 @@ , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715034 ] } } -, { "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714423 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414528, 37.713243 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712726 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711673 ] } } +, { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711062 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } @@ -4271,25 +4149,21 @@ , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708482 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.707701 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418230, 37.707896 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415708, 37.707132 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707090 ] } } -, { "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411996, 37.709314 ] } } , { "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407447, 37.717767 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405795, 37.716664 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404379, 37.717054 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.715162 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715340 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.713846 ] } } , @@ -4297,14 +4171,14 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.711699 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409614, 37.710205 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407919, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404958, 37.713210 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405773, 37.711894 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710570 ] } } , { "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716867 ] } } @@ -4313,43 +4187,31 @@ , { "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.716613 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716358 ] } } -, { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399358, 37.714814 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402126, 37.713838 ] } } , { "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403799, 37.711139 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400066, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400924, 37.712013 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399186, 37.711588 ] } } -, { "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709857 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406996, 37.709348 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709348 ] } } -, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405108, 37.708974 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.711003 ] } } -, { "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718039 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389208, 37.717012 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714389 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714118 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714389 ] } } , { "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } , @@ -4371,10 +4233,6 @@ , { "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734603 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.725524 ] } } -, { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420880, 37.753403 ] } } @@ -4383,10 +4241,6 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406567, 37.753989 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.753386 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } -, { "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753760 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429763, 37.751512 ] } } @@ -4395,11 +4249,13 @@ , { "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } , +{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748178 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.746676 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745192 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426888, 37.746778 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } , @@ -4409,32 +4265,34 @@ , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.742010 ] } } -, { "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } , { "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743597 ] } } , +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428604, 37.742019 ] } } +, { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426759, 37.742044 ] } } , { "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429527, 37.737726 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427574, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427489, 37.738905 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427574, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427918, 37.737106 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425750, 37.742019 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742171 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422060, 37.742434 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422918, 37.741009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421995, 37.742443 ] } } +, { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739931 ] } } , { "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424281, 37.739821 ] } } @@ -4447,7 +4305,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750282 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } , { "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.750672 ] } } , @@ -4455,11 +4313,13 @@ , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416202, 37.750646 ] } } +, { "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749111 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748212 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420429, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420236, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419099, 37.746939 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.748305 ] } } , @@ -4467,24 +4327,20 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749221 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749230 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413584, 37.748373 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748483 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.745209 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411631, 37.748203 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410430, 37.748424 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748398 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420644, 37.744292 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } -, { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739041 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.744182 ] } } @@ -4493,25 +4349,19 @@ , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411224, 37.741450 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741832 ] } } -, { "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414614, 37.738829 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738998 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413520, 37.737157 ] } } -, { "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739779 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409743, 37.739787 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430278, 37.735477 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733212 ] } } , +{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731837 ] } } +, { "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427939, 37.733466 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.428004, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733721 ] } } , @@ -4523,13 +4373,11 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426394, 37.730972 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425922, 37.734043 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.735248 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.735070 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424699, 37.735621 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728714 ] } } , @@ -4539,45 +4387,45 @@ , { "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } , +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, { "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428991, 37.723988 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723114 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.720856 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430021, 37.722511 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429506, 37.720135 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426469, 37.722901 ] } } , +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721221 ] } } +, { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719821 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426158, 37.720517 ] } } , +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, { "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724743 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423240, 37.725201 ] } } -, { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425879, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420064, 37.735791 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.735053 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } , { "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418927, 37.732618 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415687, 37.734892 ] } } -, -{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732838 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735638 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415258, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419399, 37.729130 ] } } , @@ -4585,8 +4433,6 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415043, 37.734858 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411288, 37.734909 ] } } @@ -4599,8 +4445,6 @@ , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725863 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726372 ] } } -, { "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.727017 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } @@ -4609,27 +4453,25 @@ , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413541, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413391, 37.724989 ] } } -, { "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.722944 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410430, 37.723241 ] } } -, { "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412533, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412382, 37.722706 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718955 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751300 ] } } +, { "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752827 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408885, 37.751113 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408906, 37.749688 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751639 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409561, 37.748373 ] } } , @@ -4639,34 +4481,20 @@ , { "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402126, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750723 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400023, 37.750757 ] } } -, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747126 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403692, 37.746413 ] } } -, { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409400, 37.742010 ] } } -, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , { "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.741331 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407812, 37.739694 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406996, 37.737726 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406889, 37.738701 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406782, 37.737946 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739864 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404164, 37.742528 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741883 ] } } -, { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.741077 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399014, 37.743936 ] } } @@ -4679,9 +4507,11 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398885, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398285, 37.751283 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752284 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752241 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398660, 37.751113 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749026 ] } } , @@ -4689,8 +4519,6 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747346 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395881, 37.747262 ] } } -, { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752623 ] } } @@ -4707,7 +4535,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398628, 37.736317 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737166 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396718, 37.737216 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394809, 37.736096 ] } } , @@ -4717,7 +4545,7 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742443 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.391418, 37.739847 ] } } , @@ -4725,6 +4553,8 @@ , { "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737581 ] } } , +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736334 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739321 ] } } , { "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737216 ] } } @@ -4733,7 +4563,9 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405945, 37.732414 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405366, 37.732058 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404293, 37.733271 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408992, 37.731328 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404701, 37.730106 ] } } , @@ -4741,8 +4573,6 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402190, 37.734586 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401063, 37.735273 ] } } -, { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399400, 37.731837 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403134, 37.730284 ] } } @@ -4753,13 +4583,17 @@ , { "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } , +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401010, 37.729122 ] } } +, { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408445, 37.726279 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725218 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723487 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407984, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.726797 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409056, 37.719380 ] } } , @@ -4767,47 +4601,41 @@ , { "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404336, 37.720763 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406911, 37.720101 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405323, 37.720517 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.403005, 37.726372 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402705, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724081 ] } } -, -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723555 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399079, 37.723292 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403070, 37.721094 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404100, 37.720678 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401224, 37.721603 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719380 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397619, 37.733296 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.732007 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.731167 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.727917 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735163 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735070 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732278 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390281, 37.734493 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390345, 37.735409 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392019, 37.730666 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729376 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } , @@ -4815,12 +4643,18 @@ , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726932 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.724157 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397383, 37.722723 ] } } , +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721128 ] } } +, { "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.722486 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } +, { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.722401 ] } } @@ -4831,16 +4665,12 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720347 ] } } -, { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719923 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387449, 37.749001 ] } } -, { "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746023 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } @@ -4865,69 +4695,37 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781730 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432402, 37.781527 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431952, 37.779856 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432134, 37.780204 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778644 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775625 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416910, 37.788217 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788429 ] } } -, { "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788395 ] } } -, { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } , { "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405988, 37.788548 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.788200 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788616 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405409, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400645, 37.788624 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.788200 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392813, 37.788675 ] } } -, { "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.786581 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431351, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427059, 37.786937 ] } } -, -{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } -, -{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426652, 37.785902 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428948, 37.781917 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427295, 37.782129 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787208 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425085, 37.785436 ] } } -, -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785046 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421330, 37.786106 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421545, 37.785784 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424270, 37.782519 ] } } , @@ -4937,42 +4735,40 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420729, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420665, 37.780950 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778847 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431372, 37.776999 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426952, 37.779187 ] } } , { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426265, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.776261 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774268 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } -, { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427317, 37.772436 ] } } , { "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425214, 37.779382 ] } } , +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777558 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , { "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423304, 37.777745 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423326, 37.776897 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777101 ] } } , +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421952, 37.775065 ] } } +, { "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773810 ] } } , +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } , { "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774031 ] } } @@ -4981,18 +4777,20 @@ , { "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422596, 37.771334 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421995, 37.772877 ] } } +, { "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786564 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418541, 37.788014 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786140 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416610, 37.786352 ] } } -, { "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417790, 37.785080 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415773, 37.785368 ] } } @@ -5003,15 +4801,13 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.780204 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419013, 37.780306 ] } } -, -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782460 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418326, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.782621 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780764 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783477 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780611 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.780509 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787361 ] } } , @@ -5019,17 +4815,17 @@ , { "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414528, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413155, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412425, 37.783884 ] } } , { "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410280, 37.787174 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786038 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.785088 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411975, 37.785851 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784105 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414078, 37.783681 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782833 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415086, 37.781663 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412575, 37.783036 ] } } , @@ -5037,36 +4833,40 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411932, 37.782070 ] } } , +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409893, 37.783384 ] } } +, { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782104 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.780306 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412189, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420193, 37.777287 ] } } +, { "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.778381 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419485, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.777711 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.778898 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.775031 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772996 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.773318 ] } } , { "type": "Feature", "properties": { "name": "150 Otis St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770732 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.774573 ] } } +{ "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.772809 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415730, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.774573 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772826 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414314, 37.776448 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411352, 37.778966 ] } } , { "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411760, 37.776219 ] } } @@ -5075,23 +4875,23 @@ , { "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413734, 37.771995 ] } } -, { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773895 ] } } , +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774768 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772402 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767534 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767772 ] } } , { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767382 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428883, 37.767780 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.766279 ] } } , @@ -5099,21 +4899,19 @@ , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428497, 37.762810 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.770571 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422446, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.768391 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421974, 37.766780 ] } } -, { "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764719 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422124, 37.766262 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.765227 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421652, 37.763412 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422060, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430686, 37.761097 ] } } , @@ -5121,11 +4919,9 @@ , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.758264 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428068, 37.757382 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759782 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426995, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.758264 ] } } , { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427660, 37.754786 ] } } , @@ -5139,18 +4935,18 @@ , { "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757153 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420880, 37.753403 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419785, 37.770469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420021, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768620 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415665, 37.768459 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765024 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419345, 37.762632 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417618, 37.765304 ] } } @@ -5159,11 +4955,9 @@ , { "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412275, 37.770359 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410451, 37.769672 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415279, 37.763828 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412275, 37.770359 ] } } , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765380 ] } } , @@ -5171,56 +4965,44 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410537, 37.765304 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410408, 37.764023 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410280, 37.764218 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419506, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.759799 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417082, 37.761877 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416996, 37.758934 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.757509 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418798, 37.755168 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.753429 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416695, 37.755728 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416459, 37.755482 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415086, 37.761860 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759002 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410204, 37.761869 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414335, 37.755948 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414485, 37.755456 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408327, 37.787462 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408134, 37.786513 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409400, 37.784266 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785360 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } -, -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786394 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784359 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.782850 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782104 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409099, 37.780747 ] } } +, { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406653, 37.782960 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } @@ -5235,6 +5017,8 @@ , { "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786208 ] } } , +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399100, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783036 ] } } @@ -5253,6 +5037,8 @@ , { "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.777321 ] } } , +{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406460, 37.775727 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404357, 37.777151 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } @@ -5263,8 +5049,6 @@ , { "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405902, 37.771554 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405237, 37.771325 ] } } -, { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778915 ] } } , { "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402598, 37.776159 ] } } @@ -5295,9 +5079,9 @@ , { "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779984 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393500, 37.779560 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392169, 37.786733 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388135, 37.784359 ] } } , @@ -5317,30 +5101,20 @@ , { "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395130, 37.777109 ] } } -, -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394229, 37.776210 ] } } -, { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773166 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779288 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778101 ] } } -, { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392792, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.776185 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772996 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389787, 37.772614 ] } } -, { "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389616, 37.771164 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407919, 37.768442 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408198, 37.766347 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764736 ] } } , { "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405516, 37.765864 ] } } @@ -5349,23 +5123,19 @@ , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763243 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403306, 37.769892 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767467 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402726, 37.767314 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770231 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403799, 37.765940 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766160 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764769 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764871 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763260 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.763557 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.762208 ] } } , @@ -5377,25 +5147,27 @@ , { "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762021 ] } } , +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757509 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409185, 37.754311 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757492 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755880 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405301, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406567, 37.753989 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404057, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404057, 37.759663 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402405, 37.761987 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402233, 37.759621 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404057, 37.759663 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.760936 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401031, 37.759663 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.758137 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759731 ] } } , @@ -5403,20 +5175,14 @@ , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403907, 37.754481 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.753386 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400817, 37.757441 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757339 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398843, 37.755906 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398757, 37.754854 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766661 ] } } -, { "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397662, 37.764981 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762615 ] } } @@ -5429,11 +5195,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390882, 37.766864 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389444, 37.769315 ] } } -, -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389272, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388994, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.762878 ] } } , @@ -5441,10 +5203,12 @@ , { "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389659, 37.762904 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388843, 37.762971 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764176 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397469, 37.761326 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398360, 37.759867 ] } } +, { "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396461, 37.761411 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } @@ -5457,34 +5221,28 @@ , { "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398564, 37.754812 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396783, 37.754676 ] } } -, { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395753, 37.757271 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.757636 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395796, 37.755456 ] } } , +{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753760 ] } } +, { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391804, 37.757772 ] } } , { "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388757, 37.760546 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.757874 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393049, 37.757585 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393006, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387899, 37.755694 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755058 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752759 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } @@ -5502,8 +5260,6 @@ , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788700 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.415000, 37.778678 ] } } ] } ] } , @@ -5511,39 +5267,31 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805283 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432102, 37.797577 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789989 ] } } , { "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423197, 37.806376 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807029 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421888, 37.805588 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806690 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415515, 37.808318 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417403, 37.806164 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807249 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413455, 37.806520 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414120, 37.807411 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412339, 37.808097 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807843 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807606 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.806877 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431480, 37.801485 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801689 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.801909 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426566, 37.802112 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431008, 37.800570 ] } } , { "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } , @@ -5555,10 +5303,12 @@ , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423991, 37.805317 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802435 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423798, 37.803376 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422103, 37.805410 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803655 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } @@ -5567,20 +5317,24 @@ , { "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422296, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.792965 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793363 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793584 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791922 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430621, 37.790320 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429119, 37.792177 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } , +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790193 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } @@ -5593,21 +5347,21 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423004, 37.794177 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422596, 37.792448 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793499 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794177 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426137, 37.790888 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424034, 37.791151 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424463, 37.791905 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422918, 37.792109 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.790642 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422017, 37.790438 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420257, 37.804774 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802909 ] } } , @@ -5615,9 +5369,9 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801010 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.800171 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.800171 ] } } , { "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799451 ] } } , @@ -5625,21 +5379,17 @@ , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415065, 37.804961 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413648, 37.802596 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804961 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411438, 37.802765 ] } } , +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411610, 37.801188 ] } } +, { "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803130 ] } } , { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799739 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.799959 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800112 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412726, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800502 ] } } , @@ -5647,31 +5397,33 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418391, 37.795381 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419635, 37.794406 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.795754 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794856 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416545, 37.795754 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.792872 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416309, 37.792957 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416288, 37.793830 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419528, 37.791719 ] } } , { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } , +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420622, 37.789667 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417446, 37.791973 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415859, 37.792058 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417296, 37.790167 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416910, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788429 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.795958 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795992 ] } } , @@ -5683,19 +5435,15 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410172, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794584 ] } } -, -{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793652 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411867, 37.792677 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414163, 37.792397 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.791541 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791871 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412318, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411953, 37.788853 ] } } , @@ -5705,71 +5453,65 @@ , { "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409164, 37.806097 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806944 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405430, 37.806614 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407898, 37.807351 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803282 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408069, 37.803503 ] } } -, -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409464, 37.801417 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409657, 37.802350 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } -, -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405730, 37.801850 ] } } -, { "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.799111 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800604 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408606, 37.797187 ] } } , +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407340, 37.797848 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405967, 37.800909 ] } } , { "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405666, 37.797051 ] } } -, { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402941, 37.802341 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402018, 37.802977 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.803265 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801417 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801265 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800553 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403585, 37.797391 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402362, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401911, 37.798399 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800604 ] } } , { "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401096, 37.798315 ] } } , +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400774, 37.796856 ] } } +, { "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408584, 37.796738 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409636, 37.794635 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409121, 37.793041 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408262, 37.796246 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793431 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793838 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793737 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405022, 37.796127 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405967, 37.794262 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404743, 37.794703 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409142, 37.792304 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409421, 37.792066 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407554, 37.792312 ] } } , @@ -5777,25 +5519,31 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789955 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } +, { "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792380 ] } } , { "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405988, 37.788548 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795907 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404379, 37.789820 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402061, 37.795729 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405409, 37.788590 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403220, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795907 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402769, 37.794686 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.792931 ] } } +, { "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401117, 37.794822 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793126 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.794279 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403971, 37.791007 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791939 ] } } , @@ -5803,49 +5551,41 @@ , { "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403456, 37.788200 ] } } , +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400860, 37.792024 ] } } +, { "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400945, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399765, 37.791312 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789353 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401310, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398585, 37.798967 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } -, -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797806 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.797085 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396997, 37.795415 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794500 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } -, { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796687 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } , +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395688, 37.793728 ] } } +, { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.792533 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394551, 37.794423 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398156, 37.791642 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396697, 37.791753 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398413, 37.791897 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397491, 37.789921 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788531 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395474, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394465, 37.789930 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395924, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , @@ -5861,16 +5601,12 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390109, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388779, 37.789455 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418541, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414593, 37.787454 ] } } -, { "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } @@ -5897,8 +5633,6 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714118 ] } } -, { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } , { "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712132 ] } } @@ -5911,20 +5645,10 @@ , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750400 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388307, 37.742994 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388146, 37.742443 ] } } -, -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739957 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.727034 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387663, 37.753132 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387449, 37.749001 ] } } -, { "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746023 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } @@ -5933,6 +5657,8 @@ , { "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383929, 37.742528 ] } } , +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743902 ] } } +, { "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384638, 37.741128 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738998 ] } } @@ -5945,49 +5671,47 @@ , { "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738167 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380797, 37.738769 ] } } -, { "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379252, 37.737675 ] } } -, { "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.735850 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387363, 37.732058 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.733195 ] } } -, { "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735961 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733042 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } -, { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729563 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730819 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729529 ] } } +, { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385625, 37.727348 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729733 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382685, 37.730148 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382728, 37.729419 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379466, 37.735019 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, { "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380024, 37.733466 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735163 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731633 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377170, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730581 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381719, 37.731370 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727985 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379391, 37.731082 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , @@ -5995,20 +5719,22 @@ , { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } , +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, { "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375883, 37.731990 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374038, 37.730929 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373759, 37.730938 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372139, 37.729868 ] } } , +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373126, 37.728782 ] } } +, { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370197, 37.729139 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725337 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } -, { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728757 ] } } , { "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } @@ -6023,14 +5749,8 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783596 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388457, 37.760792 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.758026 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387899, 37.755694 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388103, 37.755058 ] } } -, { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386891, 37.755388 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383050, 37.755634 ] } } @@ -6043,12 +5763,12 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374982, 37.823243 ] } } -, { "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371795, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369531, 37.818506 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367965, 37.822379 ] } } +, { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366420, 37.819938 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } @@ -6057,17 +5777,11 @@ , { "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } -, { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822235 ] } } , { "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364199, 37.820751 ] } } , { "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364832, 37.811996 ] } } -, -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364553, 37.811861 ] } } -, -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363781, 37.811691 ] } } ] } ] } , @@ -6075,8 +5789,6 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377213, 37.828184 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377406, 37.826947 ] } } -, { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829845 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373480, 37.829819 ] } } @@ -6085,10 +5797,6 @@ , { "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825472 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824472 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374982, 37.823243 ] } } -, { "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.824599 ] } } diff --git a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json index 066b2c678..961fd2efd 100644 --- a/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json +++ b/tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json @@ -1,521 +1,425 @@ { "type": "FeatureCollection", "properties": { "antimeridian_adjusted_bounds": "-122.538670,37.705764,-12.240000,37.836443", "bounds": "-122.538670,37.705764,-12.240000,37.836443", -"center": "-122.497559,37.735967,13", +"center": "-122.453613,37.770713,13", "description": "tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles -Z11 -z13 -O100 --cluster-densest-as-needed tests/muni/muni.json", -"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\":\"point_count\",\"count\":144,\"type\":\"number\",\"values\":[10,105,106,109,11,114,115,118,119,12,128,13,138,14,142,144,147,15,150,151,152,155,156,16,162,167,17,170,171,18,180,182,183,184,186,19,190,194,195,2,20,201,202,203,204,21,210,213,214,217,22,222,223,224,228,23,230,231,233,234,237,238,239,24,240,241,245,247,248,25,250,251,252,256,257,258,259,26,260,264,265,267,268,27,276,277,28,282,29,295,3,30,304,310,314,318,32,329,33,331],\"min\":2,\"max\":391},{\"attribute\":\"point_count_abbreviated\",\"count\":144,\"type\":\"string\",\"values\":[\"10\",\"105\",\"106\",\"109\",\"11\",\"114\",\"115\",\"118\",\"119\",\"12\",\"128\",\"13\",\"138\",\"14\",\"142\",\"144\",\"147\",\"15\",\"150\",\"151\",\"152\",\"155\",\"156\",\"16\",\"162\",\"167\",\"17\",\"170\",\"171\",\"18\",\"180\",\"182\",\"183\",\"184\",\"186\",\"19\",\"190\",\"194\",\"195\",\"2\",\"20\",\"201\",\"202\",\"203\",\"204\",\"21\",\"210\",\"213\",\"214\",\"217\",\"22\",\"222\",\"223\",\"224\",\"228\",\"23\",\"230\",\"231\",\"233\",\"234\",\"237\",\"238\",\"239\",\"24\",\"240\",\"241\",\"245\",\"247\",\"248\",\"25\",\"250\",\"251\",\"252\",\"256\",\"257\",\"258\",\"259\",\"26\",\"260\",\"264\",\"265\",\"267\",\"268\",\"27\",\"276\",\"277\",\"28\",\"282\",\"29\",\"295\",\"3\",\"30\",\"304\",\"310\",\"314\",\"318\",\"32\",\"329\",\"33\",\"331\"]},{\"attribute\":\"sqrt_point_count\",\"count\":144,\"type\":\"number\",\"values\":[1.410000,1.730000,10.250000,10.300000,10.440000,10.680000,10.720000,10.860000,10.910000,11.310000,11.750000,11.920000,12.000000,12.120000,12.250000,12.290000,12.330000,12.450000,12.490000,12.730000,12.920000,13.040000,13.080000,13.420000,13.490000,13.530000,13.560000,13.640000,13.780000,13.930000,13.960000,14.180000,14.210000,14.250000,14.280000,14.490000,14.590000,14.630000,14.730000,14.900000,14.930000,14.970000,15.100000,15.170000,15.200000,15.260000,15.300000,15.390000,15.430000,15.460000,15.490000,15.520000,15.650000,15.720000,15.750000,15.810000,15.840000,15.870000,16.000000,16.030000,16.060000,16.090000,16.120000,16.250000,16.280000,16.340000,16.370000,16.610000,16.640000,16.790000,17.180000,17.440000,17.610000,17.720000,17.830000,18.140000,18.190000,18.280000,18.550000,18.570000,18.680000,18.710000,18.840000,19.340000,19.360000,19.770000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,4.000000,4.120000],\"min\":1.41,\"max\":19.77}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"point_count\",\"count\":10,\"type\":\"number\",\"values\":[10,11,12,2,3,4,5,6,7,8],\"min\":2,\"max\":12},{\"attribute\":\"point_count_abbreviated\",\"count\":10,\"type\":\"string\",\"values\":[\"10\",\"11\",\"12\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\"]},{\"attribute\":\"sqrt_point_count\",\"count\":10,\"type\":\"number\",\"values\":[1.410000,1.730000,2.000000,2.240000,2.450000,2.650000,2.830000,3.160000,3.320000,3.460000],\"min\":1.41,\"max\":3.46}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":11,\"maxzoom\":13,\"fields\":{\"clustered\":\"Boolean\",\"name\":\"String\",\"point_count\":\"Number\",\"point_count_abbreviated\":\"String\",\"sqrt_point_count\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"attribute\":\"point_count\",\"count\":42,\"type\":\"number\",\"values\":[10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,33,34,38,39,4,40,42,43,45,5,51,52,57,6,61,7,8,9],\"min\":2,\"max\":61},{\"attribute\":\"point_count_abbreviated\",\"count\":42,\"type\":\"string\",\"values\":[\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\",\"2\",\"20\",\"21\",\"22\",\"23\",\"24\",\"25\",\"26\",\"27\",\"28\",\"29\",\"3\",\"30\",\"31\",\"33\",\"34\",\"38\",\"39\",\"4\",\"40\",\"42\",\"43\",\"45\",\"5\",\"51\",\"52\",\"57\",\"6\",\"61\",\"7\",\"8\",\"9\"]},{\"attribute\":\"sqrt_point_count\",\"count\":42,\"type\":\"number\",\"values\":[1.410000,1.730000,2.000000,2.240000,2.450000,2.650000,2.830000,3.000000,3.160000,3.320000,3.460000,3.610000,3.740000,3.870000,4.000000,4.120000,4.240000,4.360000,4.470000,4.580000,4.690000,4.800000,4.900000,5.000000,5.100000,5.200000,5.290000,5.390000,5.480000,5.570000,5.740000,5.830000,6.160000,6.240000,6.320000,6.480000,6.560000,6.710000,7.140000,7.210000,7.550000,7.810000],\"min\":1.41,\"max\":7.81}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":5,\"attributes\":[{\"attribute\":\"clustered\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"point_count\",\"count\":5,\"type\":\"number\",\"values\":[12,2,3,5,6],\"min\":2,\"max\":12},{\"attribute\":\"point_count_abbreviated\",\"count\":5,\"type\":\"string\",\"values\":[\"12\",\"2\",\"3\",\"5\",\"6\"]},{\"attribute\":\"sqrt_point_count\",\"count\":5,\"type\":\"number\",\"values\":[1.410000,1.730000,2.240000,2.450000,3.460000],\"min\":1.41,\"max\":3.46}]}]}}", "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-O100_--cluster-densest-as-needed.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4080,\"coalesced_as_needed\":656,\"feature_count_desired\":101},{\"dropped_by_rate\":2974,\"coalesced_as_needed\":1735,\"feature_count_desired\":101},{\"coalesced_as_needed\":4301,\"feature_count_desired\":101}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":4078,\"coalesced_as_needed\":683,\"feature_count_desired\":705},{\"dropped_by_rate\":2980,\"coalesced_as_needed\":1757,\"feature_count_desired\":758},{\"coalesced_as_needed\":4457,\"feature_count_desired\":856}]", "type": "overlay", "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.525454, 37.830192 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.528458, 37.831785 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.720356 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.720016 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.720288 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.719711 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.720593 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.713668 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.470694, 37.714007 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.441726, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.449622, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.713939 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.710239 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.713600 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.718149 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } -, -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.478247, 37.798662 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } -, -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.800527 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.800493 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.798696 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.506914, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.773598 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.777329 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.780382 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.507472, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.490778, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.746625 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.734985 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.485929, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.470651, 37.767492 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.738582 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.460179, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.480693, 37.727789 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.761928 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "clustered": true, "point_count": 33, "sqrt_point_count": 5.74, "point_count_abbreviated": "33" }, "geometry": { "type": "Point", "coordinates": [ -122.450738, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.778211 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.781264 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.735935 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.467432, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.772716 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.740381 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.760978 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.739736 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745641 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.745030 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.725142 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.725583 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.745166 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.804189 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.727450 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.435117, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.798696 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.790421 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.804020 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "clustered": true, "point_count": 31, "sqrt_point_count": 5.57, "point_count_abbreviated": "31" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.796526 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.795848 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.781196 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792253 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.825718 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.772513 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.370315, 37.815785 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.364092, 37.811174 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.777940 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.756432 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.763048 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.747474 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.429366, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.749170 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.755583 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.749442 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.741569 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.738515 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.748763 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.725719 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.747168 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.746931 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.738650 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "clustered": true, "point_count": 40, "sqrt_point_count": 6.32, "point_count_abbreviated": "40" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.726092 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.730878 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.385678, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.716927 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.716791 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.731557 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.371602, 37.727789 ] } } -, -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } -, -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.440953, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.717029 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.718149 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.775498 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 653, "y": 1582 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.535517, 37.832107 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.525110, 37.830294 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.528222, 37.831684 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1584 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.479770, 37.719032 ] } } -, -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.719558 ] } } -, -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } -, -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.719829 ] } } -, -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.447476, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.478011, 37.719456 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.716384 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.714958 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.716536 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.716316 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.472732, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.716129 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.712632 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.714567 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712717 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.458227, 37.713855 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.712938 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.457433, 37.709254 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.712293 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.442327, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.449386, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.715280 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.710561 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.711410 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.715094 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.434022, 37.712463 ] } } -, -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.434409, 37.709186 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1583 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788980 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.788675 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.510970, 37.779466 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.509704, 37.774751 ] } } -, -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.503803, 37.780874 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.781654 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.503974, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.501829, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.508245, 37.762267 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.768747 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.759367 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.506957, 37.759434 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.781044 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.775820 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.488933, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "clustered": true, "point_count": 33, "sqrt_point_count": 5.74, "point_count_abbreviated": "33" }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.480006, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.477968, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.482474, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "clustered": true, "point_count": 52, "sqrt_point_count": 7.21, "point_count_abbreviated": "52" }, "geometry": { "type": "Point", "coordinates": [ -122.488546, 37.758450 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.769510 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.501421, 37.747474 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.740398 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.489984, 37.756618 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.503438, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.765270 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.729436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.759350 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502515, 37.726754 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.478032, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.495627, 37.745047 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.750104 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.489469, 37.744097 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.741586 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.478268, 37.747542 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.500284, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.736139 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.735070 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.729690 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.479556, 37.729826 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.495692, 37.745387 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.479663, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.492087, 37.744199 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.784469 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.489212, 37.740941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.469385, 37.781959 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.773174 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.479384, 37.744793 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.736478 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.783689 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.481959, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.777686 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.724463 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.772292 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.764032 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.758790 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.470114, 37.777821 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.764727 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.778483 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.459686, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.447498, 37.785300 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.461660, 37.776719 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.447412, 37.776872 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.773005 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.439644, 37.786063 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.467990, 37.766474 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.786504 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.759672 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.781552 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.776397 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.462776, 37.756262 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.771274 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.782672 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.768306 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.767407 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.775701 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.763336 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.439387, 37.782417 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.444708, 37.759672 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.774497 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "clustered": true, "point_count": 39, "sqrt_point_count": 6.24, "point_count_abbreviated": "39" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.449107, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.472990, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.446253, 37.763506 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.466724, 37.740517 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.759078 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.465308, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.767136 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.759960 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.458355, 37.744012 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.439945, 37.758111 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.470157, 37.749052 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.472303, 37.732999 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.742129 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.466295, 37.741111 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.468290, 37.722138 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.457154, 37.748135 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.741094 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.460244, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.471445, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.730047 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.727857 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.471273, 37.720950 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.750460 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.460630, 37.730708 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "clustered": true, "point_count": 43, "sqrt_point_count": 6.56, "point_count_abbreviated": "43" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.745692 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.725532 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.739753 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.447584, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.448270, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.722443 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.744776 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.732677 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.435610, 37.748882 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.724480 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.740941 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.434366, 37.729028 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.734035 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.449343, 37.728655 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.449729, 37.721662 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.444558, 37.723580 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.729334 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.723665 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.430975, 37.774751 ] } } -, -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.430632, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.745726 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.740738 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.431233, 37.730199 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.747355 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.722817 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.430975, 37.742706 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.729877 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.717894 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -525,307 +429,297 @@ , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 654, "y": 1582 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.512043, 37.832361 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.832175 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.488675, 37.833361 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.478075, 37.799663 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.834378 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.799798 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801884 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.481358, 37.791371 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "clustered": true, "point_count": 26, "sqrt_point_count": 5.1, "point_count_abbreviated": "26" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.806326 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.468312, 37.802138 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.457454, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.790269 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.799035 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.438829, 37.801426 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.435396, 37.802443 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.435997, 37.796933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.793965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.796458 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.800917 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.790337 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.793999 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.436833, 37.791218 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.790337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.437069, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.787556 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.436941, 37.787522 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800273 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.791693 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.796221 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1584 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.428250, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.719320 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.718845 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.716503 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.718811 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.713481 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.428315, 37.714364 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.410290, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.423272, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.713583 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709186 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.405849, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.712564 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.711037 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.415633, 37.709203 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.715399 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.707676 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.426126, 37.771987 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.787301 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712106 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.784707 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.714364 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.777787 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.783418 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.783689 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419217, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.777126 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.777889 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432692, 37.761097 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767492 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.760113 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432435, 37.723580 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.417800, 37.765253 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.766220 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.789082 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.774327 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.788675 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.403810, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.773276 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.785606 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.778008 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.778907 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.422221, 37.778381 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.392094, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.415311, 37.783910 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "clustered": true, "point_count": 37, "sqrt_point_count": 6.08, "point_count_abbreviated": "37" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.395141, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.766881 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773140 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.426791, 37.760418 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.400463, 37.768137 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.762725 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.759519 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.758654 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.758247 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.781417 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.784266 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.390077, 37.758196 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.775226 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755499 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.781654 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.781349 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.747355 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776295 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.425654, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.764354 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.423723, 37.740670 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.404196, 37.756924 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.397029, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.751478 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.392352, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.747796 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.750341 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.743792 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.739652 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.740449 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.749900 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.732117 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.745539 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.425225, 37.732728 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.739957 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.426813, 37.725973 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.731879 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 28, "sqrt_point_count": 5.29, "point_count_abbreviated": "28" }, "geometry": { "type": "Point", "coordinates": [ -122.421362, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.722681 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.423551, 37.725600 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.726415 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.733356 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.724327 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.725872 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.745115 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.752004 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.748746 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.404454, 37.740568 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.396472, 37.749527 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.740653 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.406428, 37.740144 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.736953 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.741790 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.405355, 37.723580 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398875, 37.736360 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.399004, 37.726347 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.391322, 37.732422 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.393425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.722885 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.737378 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.727399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.748577 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740127 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.401879, 37.724497 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.380378, 37.738396 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.720882 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.383726, 37.732422 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.732338 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.379992, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.722613 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.374070, 37.730708 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.723496 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.385013, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.363083, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.381580, 37.738481 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.717962 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.385056, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.717589 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.381558, 37.729707 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.717962 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.717911 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.779823 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.776770 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.778907 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.432649, 37.800951 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.791405 ] } } -, -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.802664 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802223 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.801595 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.798154 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.799730 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.423251, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.799442 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.796238 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.422349, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.413380, 37.792931 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.417972, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807258 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.803443 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.801053 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.406385, 37.793932 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "clustered": true, "point_count": 52, "sqrt_point_count": 7.21, "point_count_abbreviated": "52" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.795441 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.792541 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.799408 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "clustered": true, "point_count": 38, "sqrt_point_count": 6.16, "point_count_abbreviated": "38" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.402437, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.790269 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.373555, 37.826463 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.790812 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.368426, 37.825277 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.788573 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.367826, 37.820124 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.793999 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.370529, 37.812666 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "clustered": true, "point_count": 57, "sqrt_point_count": 7.55, "point_count_abbreviated": "57" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.811361 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.424817, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.372997, 37.826226 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.787708 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.818599 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.370572, 37.815734 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.787556 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.380292, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.786962 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.787369 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.400162, 37.790218 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1908, "y": 1582 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , @@ -837,15 +731,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1307, "y": 3164 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.537459, 37.832073 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.530872, 37.832082 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.531623, 37.831853 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527674, 37.829057 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.527224, 37.832531 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523447, 37.831658 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.528973, 37.827040 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530271, 37.825031 ] } } , { "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.523823, 37.830904 ] } } ] } @@ -855,21 +745,19 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718870 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.484105, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.477024, 37.718896 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.496539, 37.716511 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } -, -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.497709, 37.716884 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485210, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.716316 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.715645 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.484823, 37.715993 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.485392, 37.711368 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.483901, 37.713761 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.479588, 37.716104 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.477968, 37.716477 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.476820, 37.716740 ] } } , { "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.709220 ] } } , @@ -883,75 +771,49 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.753649 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.484502, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.482570, 37.753904 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.753946 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.749628 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.505723, 37.752547 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.748458 ] } } -, -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.504843, 37.747126 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.499501, 37.753225 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.500069, 37.753191 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.747567 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.742409 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.504607, 37.737785 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739762 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.741959 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.505176, 37.735511 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.502902, 37.735206 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.500627, 37.734892 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.501904, 37.729546 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.500831, 37.730276 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.499211, 37.731379 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.502483, 37.726567 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.496239, 37.744241 ] } } -, -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.747177 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.494705, 37.745955 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.488664, 37.748068 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.491153, 37.745183 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.495209, 37.748721 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.742239 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.488482, 37.747703 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.738447 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.494158, 37.741051 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.488042, 37.742969 ] } } -, -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.740746 ] } } -, -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.487828, 37.742180 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.748305 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.477249, 37.750400 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.746278 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.483418, 37.741781 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.476498, 37.748568 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.477485, 37.742986 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.742680 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475682, 37.741289 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486111, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.495166, 37.733907 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.477227, 37.742740 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.494715, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.492012, 37.732422 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489254, 37.734238 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.484062, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.734221 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.486347, 37.729537 ] } } , @@ -961,21 +823,19 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.484201, 37.725702 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.482463, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718701 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.476916, 37.726364 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.719719 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.477539, 37.726500 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.478633, 37.719626 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.475468, 37.742638 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.738286 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.733687 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.731167 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.733127 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.726814 ] } } , @@ -991,109 +851,87 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.482527, 37.788429 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.509811, 37.779856 ] } } -, -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.511474, 37.779051 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.510648, 37.779458 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.510272, 37.775091 ] } } -, -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.772631 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.510026, 37.773123 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.505337, 37.780518 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.501603, 37.782078 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.503470, 37.779254 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.499640, 37.784995 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.505831, 37.774667 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.502354, 37.779967 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.506217, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506260, 37.779042 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.502140, 37.774539 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.504801, 37.775320 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.771885 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.505412, 37.772360 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.510369, 37.767628 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779153 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.509811, 37.764032 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.500509, 37.775566 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760308 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779288 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.506378, 37.763370 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.771885 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.760232 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758484 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760308 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.506388, 37.760045 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.499254, 37.760707 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.500981, 37.760630 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.780806 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.490134, 37.781824 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.781230 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.494104, 37.776634 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.494951, 37.772063 ] } } -, -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.491282, 37.776405 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.489008, 37.773853 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.490317, 37.781620 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.486358, 37.779984 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.488096, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.783647 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.497312, 37.775710 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.483879, 37.781179 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.493299, 37.776863 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.479523, 37.782901 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.494951, 37.772063 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.478654, 37.781654 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.490381, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.777813 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.488697, 37.772360 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.483740, 37.774192 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.484072, 37.782850 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.481369, 37.774565 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.478139, 37.781926 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.478000, 37.774980 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.483890, 37.775074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.476712, 37.772877 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.478021, 37.776592 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.495166, 37.763938 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.478064, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.764897 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.493042, 37.764320 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.755049 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.490585, 37.758603 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.488375, 37.758629 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.753700 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.495488, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.765143 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.494694, 37.754014 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.488664, 37.761165 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.478086, 37.765244 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.753649 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.762445 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.479717, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.482055, 37.760817 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.482946, 37.760919 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.484158, 37.753912 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.478032, 37.760961 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.479931, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.479341, 37.755728 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.476916, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.476487, 37.755066 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.478665, 37.754956 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752920 ] } } , @@ -1115,17 +953,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1308, "y": 3165 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.475940, 37.803850 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.475919, 37.804791 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.481798, 37.790583 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.480940, 37.792202 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.482442, 37.789039 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.806978 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.480789, 37.792660 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.476820, 37.803740 ] } } ] } ] } , @@ -1139,77 +975,49 @@ , { "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.493932, 37.833700 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } -, -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.483407, 37.833022 ] } } -, -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.483772, 37.829480 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.483600, 37.832328 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3168 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.718353 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475382, 37.719040 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.716206 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.443646, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.472893, 37.713193 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.439172, 37.718904 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.469074, 37.713048 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } -, -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.475897, 37.716732 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.473429, 37.716426 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.714279 ] } } -, -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.712564 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.714355 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.467786, 37.711843 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.464997, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.712038 ] } } , { "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.469084, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.463495, 37.714287 ] } } -, -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.461649, 37.712216 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.461628, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.457004, 37.715790 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714092 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.457025, 37.714398 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.459364, 37.706598 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.712386 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.449633, 37.717139 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.460448, 37.706241 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.707200 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.450985, 37.715611 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.452551, 37.713829 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.448388, 37.710349 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.444161, 37.713855 ] } } -, -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.447240, 37.711249 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.709339 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.715357 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.441093, 37.716740 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.445567, 37.711902 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.438636, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.451618, 37.709169 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.436994, 37.712870 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.439741, 37.714949 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.435278, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.715518 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.711809 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713778 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.433819, 37.709407 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.711011 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , @@ -1219,189 +1027,141 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3167 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.476219, 37.751342 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.747194 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475725, 37.742612 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.729512 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726780 ] } } -, -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.475790, 37.719600 ] } } -, -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459975, 37.753760 ] } } -, -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.753683 ] } } -, -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.451586, 37.753539 ] } } -, -{ "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443002, 37.753989 ] } } -, -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.753768 ] } } -, -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.472517, 37.751605 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.474052, 37.740653 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.473290, 37.747754 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.753717 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.467636, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.473365, 37.748763 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.749535 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.471284, 37.748890 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.472678, 37.745132 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.745056 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.742714 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.468022, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.739668 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.750587 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.739490 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.472528, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "clustered": true, "point_count": 26, "sqrt_point_count": 5.1, "point_count_abbreviated": "26" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.740254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.738286 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.739618 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.470447, 37.736436 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.461199, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.466305, 37.741051 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.458785, 37.749934 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.467529, 37.738905 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.457680, 37.748347 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.460533, 37.750078 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.454879, 37.746082 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.456328, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.740161 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.457454, 37.747177 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.459300, 37.740330 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.739516 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.742451 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.742816 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.471455, 37.734349 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.736707 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.473859, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.733441 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.470640, 37.732643 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.472399, 37.732889 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.467411, 37.732278 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.734425 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.727442 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.468559, 37.729156 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.474706, 37.720822 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.726890 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.471842, 37.719668 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.474309, 37.720661 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.466670, 37.727221 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.467743, 37.719668 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.461199, 37.733967 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.461263, 37.730199 ] } } -, -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.458323, 37.732635 ] } } -, -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.732159 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726007 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.459986, 37.734696 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.462186, 37.722443 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.458463, 37.731447 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.459514, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.462776, 37.725473 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.456027, 37.722138 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.461585, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.726644 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.455963, 37.723784 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.450813, 37.750137 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.456435, 37.720339 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.451532, 37.746210 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.451789, 37.747838 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.445062, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.445363, 37.748543 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.444504, 37.750943 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.445771, 37.746201 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.450019, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.740780 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.450813, 37.738981 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.738498 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.740551 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.750842 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.446135, 37.737785 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.437971, 37.751944 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.441962, 37.748246 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.440857, 37.746227 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.439097, 37.750536 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.436286, 37.750926 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.439526, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.751283 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.434484, 37.751334 ] } } -, -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.435310, 37.747491 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.746888 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 26th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.433196, 37.748178 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.437681, 37.743605 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.435921, 37.741603 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.434977, 37.738778 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.437252, 37.738243 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.433261, 37.736453 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.739982 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.450824, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.433540, 37.738269 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.449504, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733279 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.734230 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.451822, 37.730114 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.445652, 37.731557 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.448796, 37.730556 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.449558, 37.727696 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.445813, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.723309 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.452004, 37.723691 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.450684, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.723063 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "clustered": true, "point_count": 42, "sqrt_point_count": 6.48, "point_count_abbreviated": "42" }, "geometry": { "type": "Point", "coordinates": [ -122.446457, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.442166, 37.726355 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "clustered": true, "point_count": 51, "sqrt_point_count": 7.14, "point_count_abbreviated": "51" }, "geometry": { "type": "Point", "coordinates": [ -122.446167, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.440084, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.437541, 37.731888 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.440277, 37.730004 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.433894, 37.733466 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.435213, 37.732516 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.440352, 37.726822 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.726109 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.440116, 37.723462 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.439569, 37.722044 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.720279 ] } } -, -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.434849, 37.724361 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.434312, 37.721900 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.434634, 37.723631 ] } } , { "type": "Feature", "properties": { "name": "26th St & Noe St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.431394, 37.746303 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742680 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431093, 37.737191 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431308, 37.732524 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.734858 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.729054 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.431329, 37.728205 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.720865 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.719931 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.456135, 37.718310 ] } } , @@ -1415,33 +1175,23 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3166 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447015, 37.788098 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.788259 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.788124 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.476155, 37.780475 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788514 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.776693 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755049 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.470511, 37.773276 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , { "type": "Feature", "properties": { "name": "California St & 16th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.472829, 37.784452 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.782545 ] } } -, -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.781544 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.783986 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.783562 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.466209, 37.782646 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.471777, 37.776829 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.472335, 37.776066 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.471648, 37.773200 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.472485, 37.773140 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.466370, 37.776312 ] } } , @@ -1449,13 +1199,13 @@ , { "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785156 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.782197 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.782095 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.458924, 37.784342 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.460641, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.456886, 37.784096 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.456521, 37.785088 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.457873, 37.781307 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.458388, 37.782095 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Anza St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.463580, 37.777245 ] } } , @@ -1463,145 +1213,115 @@ , { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.457433, 37.777397 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.456478, 37.774539 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.454064, 37.772462 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.455384, 37.773598 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.765635 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.468473, 37.767679 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.762072 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.466992, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.467539, 37.770486 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.468762, 37.761979 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.468795, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.760147 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762072 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.755253 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.468441, 37.759740 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.759850 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.758764 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.472764, 37.757925 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.465726, 37.755660 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.469524, 37.761971 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.462668, 37.764193 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.466692, 37.758077 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.762674 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.462143, 37.763811 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.764702 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.463366, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.461209, 37.756084 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.755965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.451017, 37.785478 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.460791, 37.754549 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.451564, 37.781926 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.754506 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.446736, 37.786140 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.451586, 37.785784 ] } } -, -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.783486 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.447637, 37.786004 ] } } -, -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.445041, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.443346, 37.786250 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.446200, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.778059 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.774226 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.775311 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.447712, 37.776905 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.444955, 37.776999 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.445577, 37.777457 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.773683 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.439505, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.783359 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782799 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.437981, 37.781790 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440299, 37.779509 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.434527, 37.781069 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.433475, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.777821 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.433003, 37.781442 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.774319 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.439827, 37.777313 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.436973, 37.774853 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.770833 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.773988 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.771402 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.768807 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.432563, 37.777033 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.765210 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.435664, 37.771402 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.448539, 37.766661 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.452948, 37.768179 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.445964, 37.768128 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.450663, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764693 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.763853 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.443260, 37.764294 ] } } , { "type": "Feature", "properties": { "name": "Cole St & 17th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.449086, 37.761436 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.450287, 37.756279 ] } } -, -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.760571 ] } } -, -{ "type": "Feature", "properties": { "name": "18th St & Market St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.758518 ] } } -, -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.443217, 37.755609 ] } } -, -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.438496, 37.767458 ] } } -, -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765363 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.451586, 37.753531 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.436458, 37.766542 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "clustered": true, "point_count": 34, "sqrt_point_count": 5.83, "point_count_abbreviated": "34" }, "geometry": { "type": "Point", "coordinates": [ -122.444719, 37.759282 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.767500 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.438700, 37.766500 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.435514, 37.762810 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "clustered": true, "point_count": 28, "sqrt_point_count": 5.29, "point_count_abbreviated": "28" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.765507 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.439140, 37.760953 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.760902 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.440127, 37.755533 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.754370 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.437037, 37.757297 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.755533 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.759350 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.434505, 37.755753 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.761029 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472056, 37.752682 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.755583 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.752835 ] } } -, -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455856, 37.753073 ] } } -, -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443818, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.752877 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.752776 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.434999, 37.752793 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436544, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431179, 37.784563 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.432703, 37.768696 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.774014 ] } } -, -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.767602 ] } } -, -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.765821 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.768315 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -1611,99 +1331,83 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1309, "y": 3165 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475876, 37.806665 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.475951, 37.803850 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.475919, 37.804791 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.474309, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.467625, 37.802214 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.467582, 37.801875 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.462229, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.458795, 37.800917 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.459739, 37.798755 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.802062 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.456092, 37.802502 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.799230 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.458946, 37.798442 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799323 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.453452, 37.799374 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798111 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.444129, 37.803121 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.444537, 37.802748 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.444644, 37.799154 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.445009, 37.799332 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.451607, 37.796594 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.446543, 37.790159 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.789794 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.791227 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.440599, 37.804096 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.442209, 37.803426 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805419 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.439634, 37.800103 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.437145, 37.796873 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.804020 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.799696 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796907 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.797229 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.440106, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.439773, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.438990, 37.791625 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.440878, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.435642, 37.793906 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.439419, 37.791846 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.791117 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437488, 37.788514 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.435406, 37.793533 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448517, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.435149, 37.789421 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.444998, 37.787793 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447981, 37.788022 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.440610, 37.787971 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.433604, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.787929 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801426 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.800468 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792439 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431201, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430857, 37.790193 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.791057 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3168 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.427199, 37.718938 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719193 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.427843, 37.719023 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.718811 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.719049 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718811 ] } } -, -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432295, 37.715128 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431962, 37.711979 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432467, 37.709730 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.715586 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & France Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.429527, 37.717606 ] } } , @@ -1711,31 +1415,23 @@ , { "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.717954 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.422832, 37.712437 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.709144 ] } } -, -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.418122, 37.712208 ] } } -, -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.414753, 37.714720 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.413477, 37.712590 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.425053, 37.710383 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.415537, 37.709950 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.421716, 37.713464 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.416556, 37.707260 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.709144 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.412608, 37.707811 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.712149 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.406267, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.412822, 37.713031 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.407898, 37.711919 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.708024 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.404014, 37.714050 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "clustered": true, "point_count": 30, "sqrt_point_count": 5.48, "point_count_abbreviated": "30" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.713710 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.401632, 37.713685 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "clustered": true, "point_count": 33, "sqrt_point_count": 5.74, "point_count_abbreviated": "33" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.713846 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712047 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.712284 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.405688, 37.709135 ] } } , @@ -1743,13 +1439,9 @@ , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.717759 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714389 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.388049, 37.713668 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.709407 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717496 ] } } , @@ -1759,183 +1451,163 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3167 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.750977 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } -, -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.736835 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432123, 37.734586 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432188, 37.725524 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.420794, 37.753505 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418627, 37.753429 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406567, 37.753989 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.753386 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.753641 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.428175, 37.751664 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.430192, 37.747151 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.431394, 37.746303 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.426137, 37.749365 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.426974, 37.746880 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.422167, 37.751936 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.423412, 37.751902 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.428830, 37.742808 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.742502 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.740687 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.429935, 37.736979 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.428111, 37.737607 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.427682, 37.738218 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.424034, 37.739100 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.738939 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740245 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751766 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.419013, 37.747754 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.414271, 37.751622 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415751, 37.748305 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.413284, 37.749942 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.751215 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.412597, 37.747601 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.411889, 37.752640 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.412769, 37.747711 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420644, 37.744292 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.418305, 37.739397 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.411674, 37.743681 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.411267, 37.742876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.413648, 37.738201 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.412790, 37.739066 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.738133 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.428926, 37.733543 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.733101 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.430707, 37.729648 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.429913, 37.729877 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.427789, 37.729342 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.732278 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.423991, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.422189, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.423615, 37.729105 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.729342 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.429591, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.428797, 37.721179 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.428282, 37.720670 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.426180, 37.721425 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.423648, 37.725065 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.423862, 37.723428 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.425793, 37.719312 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.417876, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.734646 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.728994 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.417361, 37.731599 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.413681, 37.734696 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.414013, 37.733924 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.413884, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.412769, 37.729410 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.410516, 37.730938 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.418476, 37.726415 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.722672 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.718802 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.412865, 37.724166 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.724047 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.411309, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.411503, 37.722927 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751741 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.408499, 37.747694 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.406385, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.407554, 37.750231 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.748407 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.749891 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744717 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.749433 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.751130 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.742833 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.403595, 37.746770 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.407190, 37.739388 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.409378, 37.742646 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.406224, 37.739439 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739999 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.401031, 37.742358 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.742383 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.402083, 37.739253 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.738676 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.751486 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.394980, 37.746685 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.752547 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752538 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387717, 37.750400 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.751469 ] } } , { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.395828, 37.742468 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.737378 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.396117, 37.736919 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.739083 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.390496, 37.744140 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.741493 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.392942, 37.740797 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "clustered": true, "point_count": 21, "sqrt_point_count": 4.58, "point_count_abbreviated": "21" }, "geometry": { "type": "Point", "coordinates": [ -122.389637, 37.738438 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.389777, 37.740262 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.389165, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.732804 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.403864, 37.730522 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.404743, 37.728528 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.400495, 37.732719 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.401611, 37.734824 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.728460 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.729198 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.408048, 37.725125 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.406675, 37.720092 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.724582 ] } } -, -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.722367 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.400774, 37.720865 ] } } -, -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.396697, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.401417, 37.724140 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.733246 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.401568, 37.720873 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.390667, 37.733229 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.395667, 37.731099 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.392620, 37.729368 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "clustered": true, "point_count": 45, "sqrt_point_count": 6.71, "point_count_abbreviated": "45" }, "geometry": { "type": "Point", "coordinates": [ -122.391418, 37.732422 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.392877, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397941, 37.723012 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.395324, 37.723835 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "clustered": true, "point_count": 29, "sqrt_point_count": 5.39, "point_count_abbreviated": "29" }, "geometry": { "type": "Point", "coordinates": [ -122.395581, 37.722486 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.395828, 37.721230 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.727051 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.725023 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.720109 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.719821 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.387556, 37.750409 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.387234, 37.747177 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.387373, 37.748610 ] } } , { "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387148, 37.741408 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.387170, 37.732906 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.735850 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.429978, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.404336, 37.726415 ] } } , { "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425686, 37.718293 ] } } , @@ -1949,189 +1621,155 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.431995, 37.777787 ] } } -, -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.416084, 37.788327 ] } } -, -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.788548 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.788404 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.401761, 37.788446 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.788378 ] } } -, -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392813, 37.788675 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.428969, 37.785818 ] } } -, -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.428250, 37.783197 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.425901, 37.784580 ] } } -, -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.421695, 37.785784 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.423079, 37.781222 ] } } -, -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.429205, 37.777440 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.428819, 37.775133 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.419163, 37.785131 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.427446, 37.774124 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.400280, 37.788480 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.777185 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.428755, 37.785826 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.428154, 37.781959 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.779712 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.422725, 37.784537 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.417983, 37.785818 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.420815, 37.781739 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.782010 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.430750, 37.776872 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.415065, 37.784190 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.427016, 37.777525 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.411953, 37.785275 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.429817, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.412136, 37.781468 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.775074 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Market St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.776693 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.421931, 37.772971 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.417704, 37.776117 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.786470 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.773310 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.417961, 37.781680 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.413434, 37.778389 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.413820, 37.786225 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.412747, 37.773556 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.417318, 37.772080 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.419184, 37.776448 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.768416 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.417639, 37.775108 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.429870, 37.765194 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.412983, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.426941, 37.765100 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.772419 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.767509 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "clustered": true, "point_count": 38, "sqrt_point_count": 6.16, "point_count_abbreviated": "38" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767170 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.423809, 37.763862 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.427896, 37.760376 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.427961, 37.758815 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.426459, 37.757908 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.421824, 37.758824 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.760512 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419914, 37.768153 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.420493, 37.761199 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.768459 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.767560 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.764871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.417940, 37.765024 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.769315 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.414957, 37.765431 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.413133, 37.765448 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.411288, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414914, 37.762216 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.410794, 37.764294 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.410280, 37.764549 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419249, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.418283, 37.756321 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.417865, 37.756695 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.758315 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759485 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.760435 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.760766 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.414410, 37.755702 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "clustered": true, "point_count": 35, "sqrt_point_count": 5.92, "point_count_abbreviated": "35" }, "geometry": { "type": "Point", "coordinates": [ -122.407876, 37.785300 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "clustered": true, "point_count": 42, "sqrt_point_count": 6.48, "point_count_abbreviated": "42" }, "geometry": { "type": "Point", "coordinates": [ -122.407490, 37.785283 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.406889, 37.783859 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.407147, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.404851, 37.784817 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.402962, 37.786640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.401332, 37.785987 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.783655 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.401246, 37.782231 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.776973 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.406224, 37.778025 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.407855, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.406245, 37.775964 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.773310 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.772860 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.777694 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.401804, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.401278, 37.772640 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.401503, 37.773030 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.781408 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.396439, 37.783045 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.395817, 37.785283 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.781417 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.396085, 37.782137 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.786979 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.784096 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.784529 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.389830, 37.782553 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.394422, 37.777686 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779687 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.395045, 37.775998 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.395152, 37.776626 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.392684, 37.777643 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.397877, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.389702, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.406600, 37.765652 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.768077 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.766355 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.406825, 37.765507 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.400237, 37.764693 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.403542, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.760418 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "clustered": true, "point_count": 20, "sqrt_point_count": 4.47, "point_count_abbreviated": "20" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.407973, 37.757543 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.404314, 37.762208 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.755490 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.407533, 37.758561 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.402061, 37.759570 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.406868, 37.755236 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.402383, 37.754744 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.402619, 37.759901 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.399486, 37.756440 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.756415 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.396182, 37.763981 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.399873, 37.755974 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391032, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.396911, 37.765855 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.767992 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.389101, 37.763633 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.768679 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "clustered": true, "point_count": 31, "sqrt_point_count": 5.57, "point_count_abbreviated": "31" }, "geometry": { "type": "Point", "coordinates": [ -122.396750, 37.757051 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.389551, 37.765804 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.391783, 37.757738 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.392384, 37.762352 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.388672, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.758086 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754879 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.754608 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.758934 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752691 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.389401, 37.755278 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.752877 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418412, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.413037, 37.752725 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.752937 ] } } -, -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394680, 37.752682 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.404057, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755388 ] } } , @@ -2145,115 +1783,89 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3165 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.432166, 37.805181 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432209, 37.797501 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.432370, 37.790048 ] } } -, -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.806410 ] } } -, -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.806148 ] } } -, -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.432231, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.425729, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.806105 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.428916, 37.800578 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.417146, 37.806461 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.425364, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.412093, 37.807360 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.423862, 37.802808 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.429366, 37.801689 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.423476, 37.799027 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.430836, 37.799095 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.426201, 37.795203 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.427574, 37.799518 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.428916, 37.791668 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "clustered": true, "point_count": 34, "sqrt_point_count": 5.83, "point_count_abbreviated": "34" }, "geometry": { "type": "Point", "coordinates": [ -122.423948, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.426115, 37.792600 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.793118 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "clustered": true, "point_count": 25, "sqrt_point_count": 5, "point_count_abbreviated": "25" }, "geometry": { "type": "Point", "coordinates": [ -122.422768, 37.794067 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.791159 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "clustered": true, "point_count": 24, "sqrt_point_count": 4.9, "point_count_abbreviated": "24" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.794423 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.422467, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.417672, 37.801926 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.803181 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.416824, 37.800536 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.804690 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.803045 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.418691, 37.799264 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.412168, 37.801155 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.413026, 37.803087 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.798501 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.411975, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.794398 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "clustered": true, "point_count": 33, "sqrt_point_count": 5.74, "point_count_abbreviated": "33" }, "geometry": { "type": "Point", "coordinates": [ -122.418444, 37.793516 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.790617 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "clustered": true, "point_count": 31, "sqrt_point_count": 5.57, "point_count_abbreviated": "31" }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.795017 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "clustered": true, "point_count": 26, "sqrt_point_count": 5.1, "point_count_abbreviated": "26" }, "geometry": { "type": "Point", "coordinates": [ -122.411631, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.413048, 37.790311 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.790015 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.407243, 37.807012 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.407833, 37.801748 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.807224 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.797357 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.405988, 37.806749 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.798594 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.802918 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.801400 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.799841 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.400377, 37.798577 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "clustered": true, "point_count": 16, "sqrt_point_count": 4, "point_count_abbreviated": "16" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.408627, 37.794262 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.802341 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.404872, 37.794093 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.401750, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "clustered": true, "point_count": 23, "sqrt_point_count": 4.8, "point_count_abbreviated": "23" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "clustered": true, "point_count": 17, "sqrt_point_count": 4.12, "point_count_abbreviated": "17" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.794584 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792380 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "clustered": true, "point_count": 30, "sqrt_point_count": 5.48, "point_count_abbreviated": "30" }, "geometry": { "type": "Point", "coordinates": [ -122.407469, 37.791753 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.405258, 37.788989 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.405913, 37.790328 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "clustered": true, "point_count": 22, "sqrt_point_count": 4.69, "point_count_abbreviated": "22" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.793999 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "clustered": true, "point_count": 18, "sqrt_point_count": 4.24, "point_count_abbreviated": "18" }, "geometry": { "type": "Point", "coordinates": [ -122.401546, 37.794025 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "clustered": true, "point_count": 27, "sqrt_point_count": 5.2, "point_count_abbreviated": "27" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.790091 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "clustered": true, "point_count": 30, "sqrt_point_count": 5.48, "point_count_abbreviated": "30" }, "geometry": { "type": "Point", "coordinates": [ -122.400988, 37.790405 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "clustered": true, "point_count": 61, "sqrt_point_count": 7.81, "point_count_abbreviated": "61" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.397416, 37.798696 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "clustered": true, "point_count": 33, "sqrt_point_count": 5.74, "point_count_abbreviated": "33" }, "geometry": { "type": "Point", "coordinates": [ -122.395302, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.797145 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "clustered": true, "point_count": 26, "sqrt_point_count": 5.1, "point_count_abbreviated": "26" }, "geometry": { "type": "Point", "coordinates": [ -122.393285, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "clustered": true, "point_count": 39, "sqrt_point_count": 6.24, "point_count_abbreviated": "39" }, "geometry": { "type": "Point", "coordinates": [ -122.395957, 37.793982 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.417146, 37.787793 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "clustered": true, "point_count": 30, "sqrt_point_count": 5.48, "point_count_abbreviated": "30" }, "geometry": { "type": "Point", "coordinates": [ -122.395173, 37.792075 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "clustered": true, "point_count": 19, "sqrt_point_count": 4.36, "point_count_abbreviated": "19" }, "geometry": { "type": "Point", "coordinates": [ -122.393972, 37.790566 ] } } -, -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.391933, 37.792829 ] } } -, -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.391311, 37.790812 ] } } -, -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.388586, 37.789574 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787725 ] } } -, -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.419764, 37.787912 ] } } -, -{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.787700 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.787564 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.787734 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.787683 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.403435, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.787802 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -2263,9 +1875,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3168 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.714635 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717496 ] } } , @@ -2275,61 +1885,39 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3167 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.387792, 37.751469 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.742689 ] } } -, -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.388414, 37.739965 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388543, 37.727034 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.387406, 37.750892 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.746939 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.384530, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.384230, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.388071, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737590 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.387255, 37.748738 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.380421, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.384874, 37.741247 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379316, 37.737013 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.381537, 37.738379 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "clustered": true, "point_count": 12, "sqrt_point_count": 3.46, "point_count_abbreviated": "12" }, "geometry": { "type": "Point", "coordinates": [ -122.385764, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386955, 37.735850 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.384938, 37.731667 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.385217, 37.733271 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.383983, 37.728918 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.384734, 37.729419 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "clustered": true, "point_count": 13, "sqrt_point_count": 3.61, "point_count_abbreviated": "13" }, "geometry": { "type": "Point", "coordinates": [ -122.379917, 37.733602 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "clustered": true, "point_count": 15, "sqrt_point_count": 3.87, "point_count_abbreviated": "15" }, "geometry": { "type": "Point", "coordinates": [ -122.379552, 37.733500 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "clustered": true, "point_count": 9, "sqrt_point_count": 3, "point_count_abbreviated": "9" }, "geometry": { "type": "Point", "coordinates": [ -122.380024, 37.730607 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.729911 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.382106, 37.728086 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.386397, 37.726423 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.375743, 37.731998 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.373523, 37.730072 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.369918, 37.729190 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "clustered": true, "point_count": 11, "sqrt_point_count": 3.32, "point_count_abbreviated": "11" }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.730267 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.368319, 37.725329 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.365412, 37.728417 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.374628, 37.722791 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3166 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.388092, 37.784291 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "clustered": true, "point_count": 10, "sqrt_point_count": 3.16, "point_count_abbreviated": "10" }, "geometry": { "type": "Point", "coordinates": [ -122.388393, 37.759036 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "clustered": true, "point_count": 14, "sqrt_point_count": 3.74, "point_count_abbreviated": "14" }, "geometry": { "type": "Point", "coordinates": [ -122.388307, 37.766254 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.388006, 37.755354 ] } } , @@ -2341,13 +1929,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3165 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.388500, 37.789608 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.382953, 37.803096 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.374628, 37.823319 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "clustered": true, "point_count": 3, "sqrt_point_count": 1.73, "point_count_abbreviated": "3" }, "geometry": { "type": "Point", "coordinates": [ -122.370926, 37.816912 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.369703, 37.819014 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "clustered": true, "point_count": 5, "sqrt_point_count": 2.24, "point_count_abbreviated": "5" }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.820836 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.367257, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , { "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.370561, 37.812734 ] } } , @@ -2359,17 +1947,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1311, "y": 3164 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.377310, 37.827565 ] } } -, -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "clustered": true, "point_count": 2, "sqrt_point_count": 1.41, "point_count_abbreviated": "2" }, "geometry": { "type": "Point", "coordinates": [ -122.374359, 37.829828 ] } } -, -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "clustered": true, "point_count": 7, "sqrt_point_count": 2.65, "point_count_abbreviated": "7" }, "geometry": { "type": "Point", "coordinates": [ -122.374370, 37.825353 ] } } -, -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.371924, 37.825362 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.374552, 37.828591 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "clustered": true, "point_count": 4, "sqrt_point_count": 2, "point_count_abbreviated": "4" }, "geometry": { "type": "Point", "coordinates": [ -122.369306, 37.825336 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "clustered": true, "point_count": 8, "sqrt_point_count": 2.83, "point_count_abbreviated": "8" }, "geometry": { "type": "Point", "coordinates": [ -122.374338, 37.824116 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366956, 37.825319 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "clustered": true, "point_count": 6, "sqrt_point_count": 2.45, "point_count_abbreviated": "6" }, "geometry": { "type": "Point", "coordinates": [ -122.368963, 37.825989 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367965, 37.822379 ] } } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000.json b/tests/muni/out/-Z11_-z13_-rf2000.json index 917991544..353bd7eb8 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000.json +++ b/tests/muni/out/-Z11_-z13_-rf2000.json @@ -9,8 +9,8 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2542},{\"dropped_by_rate\":1547},{}]", -"tippecanoe_decisions": "{\"basezoom\":13,\"droprate\":1.4510341140028376,\"retain_points_multiplier\":1}", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2551},{\"dropped_by_rate\":1538},{}]", +"tippecanoe_decisions": "{\"basezoom\":13,\"droprate\":1.45103,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ @@ -20,13 +20,15 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } , +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } ] } @@ -36,56 +38,48 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } -, { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } @@ -94,65 +88,63 @@ , { "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } -, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720457 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } -, { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.719167 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721238 ] } } , +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , @@ -164,25 +156,15 @@ , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , @@ -192,59 +174,59 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, { "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } -, { "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } , +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } +, { "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470222, 37.714754 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712989 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713532 ] } } , @@ -254,23 +236,25 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710341 ] } } , { "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } , @@ -278,15 +262,13 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } , @@ -294,57 +276,57 @@ , { "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706131 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705961 ] } } , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714075 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Whittier St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } , { "type": "Feature", "properties": { "name": "Morse St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715705 ] } } , @@ -352,117 +334,117 @@ , { "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713464 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712921 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } -, { "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , { "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.713226 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } +, { "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710341 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708507 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } , @@ -470,47 +452,47 @@ , { "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710001 ] } } , +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709899 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } -, -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , { "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } , @@ -520,35 +502,35 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } , { "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710884 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } ] } , @@ -556,183 +538,183 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } , { "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.833073 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.833073 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } , { "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , { "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } , { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , { "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797713 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.800527 ] } } , +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +, { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799103 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804325 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790693 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800426 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.800731 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } , +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799578 ] } } -, { "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } , +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800934 ] } } +, { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797407 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } , @@ -742,29 +724,29 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792728 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779772 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , @@ -772,39 +754,39 @@ , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } , +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } -, { "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } , { "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.784995 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.784995 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, { "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } , @@ -812,13 +794,13 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , { "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , @@ -826,21 +808,21 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754735 ] } } , @@ -848,47 +830,47 @@ , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } , @@ -896,69 +878,69 @@ , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496314, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } , { "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482667, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776176 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , @@ -968,167 +950,167 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.772852 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757246 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763658 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753989 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761385 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753310 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747609 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504640, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504382, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } , @@ -1136,95 +1118,95 @@ , { "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } , { "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748051 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } -, -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742248 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494254, 37.738616 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736750 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } +, { "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } , { "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , @@ -1234,25 +1216,25 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } , @@ -1262,19 +1244,19 @@ , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728876 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , { "type": "Feature", "properties": { "name": "280 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } , @@ -1282,57 +1264,57 @@ , { "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720661 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , { "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.784588 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471080, 37.784452 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.782485 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } , { "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } , { "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } , +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } -, -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , @@ -1340,57 +1322,57 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.777194 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.775362 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784656 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785334 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } +, { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781264 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783842 ] } } , { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783231 ] } } , @@ -1400,187 +1382,187 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461724, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765694 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } , +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759282 ] } } -, { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761792 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758196 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } -, { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.764235 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762505 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463527, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787471 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782010 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } , +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787166 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782689 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778008 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778076 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } , @@ -1588,65 +1570,65 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776922 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.785266 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785775 ] } } , @@ -1656,157 +1638,157 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780925 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777872 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.771291 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.771291 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775396 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } -, { "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771766 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } -, -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770070 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766949 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766135 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } , { "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761691 ] } } -, { "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } , +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +, { "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760842 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758773 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } -, { "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756432 ] } } , @@ -1814,159 +1796,161 @@ , { "type": "Feature", "properties": { "name": "800 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765592 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761691 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.754057 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.750799 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } -, { "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } , +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, { "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } -, -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740754 ] } } +, { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740822 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } -, { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739668 ] } } , +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, { "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.739533 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } -, -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } , @@ -1976,139 +1960,139 @@ , { "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } , { "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } , +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +, { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739940 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } -, { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } , { "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731252 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728265 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727178 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } , @@ -2116,53 +2100,53 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723648 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720050 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.751274 ] } } +, { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745302 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } -, { "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , @@ -2174,447 +2158,447 @@ , { "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , { "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +, { "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } -, -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.744487 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741365 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750731 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751206 ] } } +, { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } -, -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.741569 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738582 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738311 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737293 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } -, { "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , { "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } -, { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734442 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.732406 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.725753 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.723343 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723377 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433486, 37.726364 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } -, -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805613 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.806868 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.802019 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.798594 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } , +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792524 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.790523 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.790693 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } , { "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794186 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } , { "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790625 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } , @@ -2626,55 +2610,55 @@ , { "type": "Feature", "properties": { "name": "Union St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800154 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798289 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799442 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.804969 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799985 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800019 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800188 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } , { "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800392 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797340 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } , @@ -2684,177 +2668,177 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793609 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793813 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795034 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796390 ] } } , +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794423 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , { "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , { "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797814 ] } } , { "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805003 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.802155 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.800595 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } , { "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , @@ -2862,183 +2846,189 @@ , { "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.788285 ] } } , { "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, { "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794016 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.793270 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, { "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793609 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792592 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793474 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793881 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793745 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } +, { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , { "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } -, -{ "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } , { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789879 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, { "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , { "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.789675 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828294 ] } } , @@ -3046,117 +3036,115 @@ , { "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } -, { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } , { "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819921 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811784 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } , { "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } , { "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , { "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } , { "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786555 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } +, { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428250, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , { "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.774039 ] } } , @@ -3168,7 +3156,7 @@ , { "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786894 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787776 ] } } , { "type": "Feature", "properties": { "name": "Post St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , @@ -3176,57 +3164,57 @@ , { "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.787030 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785063 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } -, { "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783231 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787437 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786962 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } -, -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } , @@ -3234,11 +3222,11 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } , @@ -3248,27 +3236,27 @@ , { "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.780314 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777296 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778720 ] } } , { "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , @@ -3276,149 +3264,147 @@ , { "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } -, { "type": "Feature", "properties": { "name": "Otis St & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779093 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767662 ] } } , { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , { "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764710 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } , { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757450 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } , { "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } , +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } , @@ -3426,289 +3412,289 @@ , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.758162 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753412 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } , { "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784317 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784147 ] } } -, { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } , +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +, { "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } , { "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787505 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } , { "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.787708 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } , +{ "type": "Feature", "properties": { "name": "4th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } , { "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } -, { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } -, { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.777940 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } , { "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782621 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782417 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780687 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } , { "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776312 ] } } , { "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775498 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } -, -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776990 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776312 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.776040 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775294 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } -, { "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } +, { "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768238 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } , { "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } -, { "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757382 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } , @@ -3718,165 +3704,165 @@ , { "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } +, { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , { "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } -, { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } , { "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } , +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +, { "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755889 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766746 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769052 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , { "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.759994 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } -, -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.755957 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756839 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760571 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } -, { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758060 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755007 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755278 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , { "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749374 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } -, { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746659 ] } } , +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } , { "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , { "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } , @@ -3886,27 +3872,27 @@ , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.739736 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740279 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , @@ -3914,153 +3900,153 @@ , { "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750731 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752292 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.750663 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744284 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } , { "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } -, { "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728604 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735256 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } , +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } , @@ -4072,65 +4058,65 @@ , { "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } , { "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } , +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , { "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734713 ] } } , { "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734815 ] } } -, { "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729826 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727382 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } , { "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } , @@ -4140,67 +4126,67 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } , +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739533 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } , +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752224 ] } } +, { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.751274 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } -, { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.749985 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } , @@ -4208,59 +4194,59 @@ , { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736614 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742451 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } +, { "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737496 ] } } -, -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733254 ] } } , @@ -4268,39 +4254,39 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734170 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.735256 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729079 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , @@ -4308,97 +4294,97 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , { "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } -, { "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734001 ] } } +, { "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733831 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.725312 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.722494 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , @@ -4406,241 +4392,237 @@ , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755617 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } , { "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , { "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } , { "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } , +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.729554 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726092 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730912 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728740 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725312 ] } } , { "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365422, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } -, { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.716452 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717131 ] } } +, { "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } -, { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762607 ] } } -, { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } -, { "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775125 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784181 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } ] } ] } , @@ -4668,18 +4650,20 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532384, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831870 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527192, 37.832480 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527235, 37.832582 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site" }, "geometry": { "type": "Point", "coordinates": [ -122.527664, 37.829057 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } , { "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825023 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830480 ] } } , { "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } , +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831328 ] } } +, { "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529681, 37.821819 ] } } ] } ] } @@ -4688,24 +4672,18 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.718743 ] } } -, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718709 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719897 ] } } -, { "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483203, 37.718607 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } @@ -4720,20 +4698,20 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463634, 37.719795 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.719948 ] } } -, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } @@ -4742,12 +4720,8 @@ , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } -, { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716774 ] } } -, { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } @@ -4760,9 +4734,9 @@ , { "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716333 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485263, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } , @@ -4770,9 +4744,9 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.717691 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.716706 ] } } , @@ -4796,7 +4770,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.715213 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.715009 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.715009 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } , @@ -4810,7 +4784,7 @@ , { "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.714126 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713583 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } , @@ -4822,9 +4796,9 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713549 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club" }, "geometry": { "type": "Point", "coordinates": [ -122.471316, 37.710697 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.714398 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av" }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710901 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469985, 37.714432 ] } } , @@ -4832,12 +4806,12 @@ , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.712480 ] } } +, { "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } -, { "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , { "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } @@ -4846,24 +4820,24 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711818 ] } } , { "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468655, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463377, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } , { "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } , +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } +, { "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462261, 37.710901 ] } } , { "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713142 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } @@ -4890,11 +4864,11 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713210 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.711699 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456081, 37.711546 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , @@ -4908,23 +4882,23 @@ , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707404 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718472 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450330, 37.716248 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.714160 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452133, 37.714143 ] } } , @@ -4934,7 +4908,7 @@ , { "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442648, 37.714703 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } , @@ -4942,7 +4916,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & Guttenberg St" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.712514 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444623, 37.712853 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , @@ -4952,7 +4926,7 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716503 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.716452 ] } } , @@ -4974,7 +4948,7 @@ , { "type": "Feature", "properties": { "name": "Naples St & Seville St" }, "geometry": { "type": "Point", "coordinates": [ -122.437885, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711071 ] } } , { "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , @@ -4982,7 +4956,7 @@ , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , @@ -4992,15 +4966,15 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.714024 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435439, 37.710935 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713311 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712921 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431791, 37.712836 ] } } , @@ -5018,6 +4992,8 @@ , { "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } @@ -5028,13 +5004,17 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788471 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788404 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788980 ] } } , +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } +, { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788098 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440374, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } , @@ -5060,15 +5040,15 @@ , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.509983, 37.773208 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773208 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773649 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771410 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509382, 37.771342 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509382, 37.771342 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , @@ -5092,19 +5072,19 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506249, 37.779042 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773276 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507751, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771478 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771580 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503631, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } , { "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } , @@ -5118,15 +5098,15 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500327, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771885 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497966, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , { "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760350 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , @@ -5136,11 +5116,11 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764049 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508137, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760350 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } , @@ -5148,7 +5128,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505820, 37.760486 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760384 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760486 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506034, 37.760350 ] } } , @@ -5158,7 +5138,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505605, 37.754922 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505434, 37.754752 ] } } , @@ -5176,15 +5156,15 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783418 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.783418 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492516, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492216, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.781502 ] } } , @@ -5202,25 +5182,25 @@ , { "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781654 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783791 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490499, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781654 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780772 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781892 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487152, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779856 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781993 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.780009 ] } } , @@ -5238,15 +5218,15 @@ , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776024 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496336, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771919 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495563, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772089 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772224 ] } } , { "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.492001, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492044, 37.775888 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776668 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491829, 37.776024 ] } } , @@ -5260,19 +5240,19 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772394 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487495, 37.772462 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485092, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.783808 ] } } , @@ -5286,9 +5266,9 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779924 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , @@ -5296,23 +5276,23 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482688, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481401, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478440, 37.784232 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478697, 37.784113 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479470, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476251, 37.780365 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476037, 37.780586 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , @@ -5322,13 +5302,13 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776329 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772597 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484062, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484062, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776431 ] } } , @@ -5362,15 +5342,15 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488267, 37.765032 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760995 ] } } +, { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760825 ] } } , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495949, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495649, 37.760758 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759129 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495520, 37.758892 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761063 ] } } , @@ -5380,7 +5360,7 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.757025 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496722, 37.753429 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495263, 37.755159 ] } } , @@ -5388,11 +5368,11 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489727, 37.761199 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492645, 37.753446 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761165 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761063 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761097 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486765, 37.761233 ] } } , @@ -5402,7 +5382,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } , @@ -5414,13 +5394,13 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479684, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763675 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } , @@ -5432,19 +5412,19 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765372 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.765202 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763675 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761300 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761368 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761334 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.761453 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761538 ] } } , @@ -5454,29 +5434,29 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482774, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483847, 37.753972 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477195, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.757755 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761606 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477109, 37.761402 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.761742 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477109, 37.761402 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760147 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476938, 37.759943 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } , @@ -5486,7 +5466,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753972 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.754328 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } , @@ -5494,23 +5474,23 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753022 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505476, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505562, 37.752886 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504447, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749153 ] } } , { "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } , @@ -5522,7 +5502,7 @@ , { "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745421 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502301, 37.753022 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } , @@ -5530,17 +5510,17 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498009, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503030, 37.747423 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504661, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504489, 37.741823 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504532, 37.741688 ] } } , @@ -5548,7 +5528,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739821 ] } } , { "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } , @@ -5556,7 +5536,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.504146, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502344, 37.741925 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502601, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , @@ -5570,11 +5550,11 @@ , { "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.735392 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735375 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } , @@ -5588,7 +5568,7 @@ , { "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726381 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500026, 37.718998 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753327 ] } } , @@ -5610,9 +5590,9 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , @@ -5624,37 +5604,37 @@ , { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } +, { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.742129 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742265 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494276, 37.738616 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494147, 37.736767 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736529 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744267 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487538, 37.742638 ] } } , @@ -5664,7 +5644,7 @@ , { "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738769 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748271 ] } } , @@ -5676,11 +5656,11 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.748543 ] } } , @@ -5694,11 +5674,11 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742536 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742672 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } , @@ -5712,9 +5692,9 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475607, 37.743011 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741280 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } , @@ -5730,17 +5710,17 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493846, 37.732015 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493846, 37.732015 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.730335 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489254, 37.734238 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489684, 37.733950 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } , @@ -5748,9 +5728,9 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , @@ -5774,17 +5754,17 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484877, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483633, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483203, 37.718607 ] } } , @@ -5804,9 +5784,9 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480886, 37.720678 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.719626 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719592 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479899, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , @@ -5814,7 +5794,7 @@ , { "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473247, 37.784503 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784368 ] } } , @@ -5822,7 +5802,7 @@ , { "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , { "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471101, 37.784452 ] } } , @@ -5858,21 +5838,21 @@ , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } , +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.782689 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780976 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.782892 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467325, 37.780772 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.776770 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472217, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.776939 ] } } , @@ -5884,17 +5864,17 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773038 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773208 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.777194 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.775176 ] } } , @@ -5902,11 +5882,11 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773242 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.773462 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , @@ -5916,33 +5896,33 @@ , { "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784707 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785351 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.785182 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785690 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783214 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.785555 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462561, 37.783079 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464321, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } +, { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460930, 37.781281 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785656 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } , @@ -5952,11 +5932,11 @@ , { "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454493, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454751, 37.783961 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783961 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.783740 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783248 ] } } , @@ -5970,11 +5950,11 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } , @@ -5982,17 +5962,17 @@ , { "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463977, 37.775447 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461746, 37.777397 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463806, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464106, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , @@ -6000,7 +5980,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777143 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.777635 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } , @@ -6008,17 +5988,17 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } , +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454150, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765609 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765711 ] } } , @@ -6026,47 +6006,47 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765643 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468913, 37.770528 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470329, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770426 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468698, 37.765745 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.765847 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } , +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.765677 ] } } +, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764286 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466166, 37.764099 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466681, 37.762216 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.762081 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761911 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759299 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761911 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758111 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761843 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761945 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472775, 37.761792 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472689, 37.759163 ] } } , @@ -6080,16 +6060,16 @@ , { "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761945 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469513, 37.761979 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470071, 37.758298 ] } } , +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.758196 ] } } +, { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } @@ -6106,29 +6086,29 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764082 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.764150 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762386 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462003, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.764218 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762522 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765982 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457626, 37.766050 ] } } , @@ -6138,19 +6118,19 @@ , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763302 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763709 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763811 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , { "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463849, 37.758417 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , @@ -6168,17 +6148,17 @@ , { "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453506, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784198 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } , { "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , @@ -6212,13 +6192,13 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447283, 37.782129 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782502 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445781, 37.782706 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782672 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } , @@ -6226,11 +6206,11 @@ , { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451360, 37.778008 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449644, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } , @@ -6244,7 +6224,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773242 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } , @@ -6258,7 +6238,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775888 ] } } , @@ -6266,25 +6246,25 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778907 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443593, 37.779110 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , { "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776770 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.776939 ] } } , +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.776804 ] } } +, { "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } -, -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.774056 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446511, 37.773920 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } , @@ -6298,23 +6278,23 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439730, 37.785300 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.785402 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783418 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439559, 37.783180 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } , @@ -6324,11 +6304,11 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780501 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.780535 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437155, 37.780874 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434795, 37.785945 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785792 ] } } , @@ -6342,7 +6322,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } , @@ -6360,9 +6340,9 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.779280 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779348 ] } } , @@ -6372,9 +6352,9 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777720 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777855 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438400, 37.777686 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777855 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } , @@ -6382,7 +6362,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.770749 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440245, 37.770918 ] } } , @@ -6390,17 +6370,17 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773174 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.778262 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775142 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775209 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , @@ -6408,9 +6388,9 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431748, 37.778347 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775413 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } , @@ -6422,25 +6402,25 @@ , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768323 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451746, 37.769307 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453334, 37.768238 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450759, 37.769443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450202, 37.766830 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765541 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765372 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , @@ -6452,9 +6432,9 @@ , { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765881 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.765931 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.765745 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.764897 ] } } , @@ -6466,19 +6446,19 @@ , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763133 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446854, 37.769935 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445395, 37.770087 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769002 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766932 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767102 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767136 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.767305 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , @@ -6488,15 +6468,15 @@ , { "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443550, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447927, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766288 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765406 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.765219 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.764286 ] } } , @@ -6528,14 +6508,14 @@ , { "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761843 ] } } , +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } +, { "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760859 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446125, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758790 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } -, { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761945 ] } } @@ -6546,19 +6526,19 @@ , { "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759909 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760350 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.761640 ] } } , { "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758383 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444322, 37.758213 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "539 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444150, 37.757500 ] } } , @@ -6580,7 +6560,7 @@ , { "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.766695 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437198, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.766847 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } , @@ -6594,7 +6574,7 @@ , { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.767271 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.767424 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433679, 37.769392 ] } } , @@ -6604,29 +6584,31 @@ , { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765609 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435782, 37.762301 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762624 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762386 ] } } , { "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762522 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764490 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763947 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763913 ] } } , { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.761894 ] } } , @@ -6634,29 +6616,29 @@ , { "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437284, 37.760690 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.760758 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757399 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757551 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.753514 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754209 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.760825 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.760842 ] } } , @@ -6670,39 +6652,39 @@ , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754413 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.750528 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472045, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.749035 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752716 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.752886 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , @@ -6710,12 +6692,12 @@ , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.750850 ] } } , +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +, { "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475436, 37.743113 ] } } @@ -6724,15 +6706,15 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473419, 37.743198 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.743402 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743113 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470157, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471187, 37.741518 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741484 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741518 ] } } , @@ -6750,7 +6732,7 @@ , { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.741162 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465994, 37.740924 ] } } , @@ -6758,7 +6740,7 @@ , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740941 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740941 ] } } , @@ -6768,32 +6750,32 @@ , { "type": "Feature", "properties": { "name": "West Portal Station Inbound" }, "geometry": { "type": "Point", "coordinates": [ -122.465522, 37.741145 ] } } , +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740754 ] } } +, { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.740839 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740788 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.740839 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738056 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.737853 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.739618 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.739668 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.739448 ] } } , +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, { "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751121 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } , { "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751698 ] } } -, { "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , { "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.751495 ] } } @@ -6808,6 +6790,8 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } , +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.748169 ] } } +, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } @@ -6818,7 +6802,7 @@ , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } , @@ -6832,11 +6816,11 @@ , { "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745692 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740093 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460072, 37.739380 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } , @@ -6850,9 +6834,9 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456510, 37.741620 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } , @@ -6868,20 +6852,20 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.732779 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473805, 37.731812 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732015 ] } } , { "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734781 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734612 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.734289 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734289 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.734306 ] } } @@ -6890,7 +6874,7 @@ , { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471702, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471445, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , @@ -6898,17 +6882,17 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474706, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474363, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472432, 37.730980 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731235 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731268 ] } } , { "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731336 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } , @@ -6916,11 +6900,11 @@ , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469471, 37.729945 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469084, 37.729979 ] } } , @@ -6934,15 +6918,15 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721170 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721255 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.721238 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475221, 37.721068 ] } } , @@ -6952,7 +6936,7 @@ , { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } , @@ -6966,7 +6950,7 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466767, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466466, 37.727195 ] } } , @@ -6974,15 +6958,15 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465222, 37.719761 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734391 ] } } , @@ -6996,7 +6980,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457755, 37.732236 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , @@ -7010,7 +6994,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.726007 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724904 ] } } , @@ -7018,7 +7002,7 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463462, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462132, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461102, 37.720084 ] } } , @@ -7032,7 +7016,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723631 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723428 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454193, 37.723428 ] } } , @@ -7044,17 +7028,17 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.721764 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719965 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455909, 37.720135 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454965, 37.720067 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.751291 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.751274 ] } } , { "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749255 ] } } , @@ -7062,9 +7046,9 @@ , { "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } , @@ -7094,7 +7078,7 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447755, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748068 ] } } , @@ -7102,19 +7086,19 @@ , { "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444193, 37.747151 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444751, 37.747033 ] } } , { "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } , +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } +, { "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } , { "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745183 ] } } -, -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } , @@ -7130,11 +7114,11 @@ , { "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.737819 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740195 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450545, 37.740042 ] } } , { "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739244 ] } } , @@ -7142,11 +7126,11 @@ , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741382 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.448013, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741077 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739889 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.738922 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } , @@ -7156,15 +7140,15 @@ , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442563, 37.752479 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440546, 37.751020 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.750969 ] } } , @@ -7174,11 +7158,11 @@ , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748509 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.438357, 37.751105 ] } } , { "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.745251 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441404, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , @@ -7192,21 +7176,21 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.752072 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.751359 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751189 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749595 ] } } , @@ -7218,17 +7202,17 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435911, 37.746252 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.745641 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744674 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433894, 37.748203 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433507, 37.748068 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } , @@ -7236,7 +7220,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } , @@ -7244,7 +7228,7 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.741586 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } , @@ -7254,9 +7238,9 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.738667 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436297, 37.738294 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } , @@ -7272,7 +7256,7 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434065, 37.738328 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , @@ -7280,31 +7264,31 @@ , { "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.734187 ] } } , +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448785, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.731472 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731455 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.731472 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , { "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } , +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451274, 37.728417 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731608 ] } } -, { "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731404 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448528, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735511 ] } } , @@ -7312,7 +7296,7 @@ , { "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445567, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } , @@ -7320,15 +7304,15 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453206, 37.723190 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.724090 ] } } , { "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723529 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.723462 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723852 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.723088 ] } } , @@ -7364,49 +7348,49 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447112, 37.720984 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446983, 37.720950 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446811, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720950 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.720865 ] } } -, { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.720848 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446768, 37.720678 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720440 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.719999 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } -, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } , +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720610 ] } } +, { "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446597, 37.720559 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720610 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720610 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , @@ -7430,9 +7414,9 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729028 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.728994 ] } } , @@ -7448,7 +7432,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.733916 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734459 ] } } , @@ -7466,17 +7450,17 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433250, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.726822 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442348, 37.725872 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442391, 37.725889 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442434, 37.725685 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725668 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725973 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } , @@ -7484,21 +7468,21 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.723563 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723360 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.724310 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.724582 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724650 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } , @@ -7520,9 +7504,9 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , @@ -7536,16 +7520,18 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } +, { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } @@ -7556,17 +7542,21 @@ , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430675, 37.761097 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746676 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , @@ -7574,7 +7564,7 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } , @@ -7590,8 +7580,6 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } @@ -7602,8 +7590,6 @@ , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.477067, 37.717691 ] } } -, { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } @@ -7626,15 +7612,11 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.435224, 37.762624 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458613, 37.748339 ] } } ] } ] } , @@ -7644,11 +7626,11 @@ , { "type": "Feature", "properties": { "name": "BUNKER RD/Stables" }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831802 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832955 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508824, 37.833022 ] } } , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } , { "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.833700 ] } } , @@ -7660,7 +7642,7 @@ , { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829429 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829514 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , @@ -7670,33 +7652,33 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482259, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St" }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792304 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807224 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807461 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806071 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806919 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801595 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , @@ -7710,7 +7692,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.801765 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456725, 37.801612 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456381, 37.801375 ] } } , @@ -7718,17 +7700,17 @@ , { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803766 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802070 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.801426 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , { "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } , @@ -7746,15 +7728,15 @@ , { "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799120 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452648, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799222 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450116, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.798170 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445352, 37.804342 ] } } , @@ -7762,7 +7744,7 @@ , { "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804545 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443678, 37.803630 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , { "type": "Feature", "properties": { "name": "Beach St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.803647 ] } } , @@ -7780,7 +7762,7 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445695, 37.797594 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800612 ] } } , @@ -7790,7 +7772,7 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.798883 ] } } , @@ -7798,21 +7780,21 @@ , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795593 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447369, 37.790896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789184 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790710 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.447026, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444365, 37.791269 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788098 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444236, 37.791185 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , @@ -7824,9 +7806,9 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.804427 ] } } , @@ -7838,23 +7820,23 @@ , { "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , @@ -7864,25 +7846,25 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435482, 37.797391 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , { "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } , { "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.796170 ] } } , { "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791558 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , @@ -7892,15 +7874,15 @@ , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440374, 37.788183 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.791761 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437027, 37.795932 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794881 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } , @@ -7914,7 +7896,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433379, 37.792660 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792745 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792711 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792202 ] } } , @@ -7922,7 +7904,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789319 ] } } , @@ -7932,7 +7914,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.789743 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , @@ -7940,13 +7922,13 @@ , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.790099 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.787369 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.787352 ] } } , @@ -7962,6 +7944,8 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } @@ -7970,16 +7954,12 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } -, { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } ] } ] } @@ -7988,13 +7968,19 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719829 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } , +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719320 ] } } , @@ -8002,12 +7988,10 @@ , { "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.719592 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } @@ -8020,11 +8004,13 @@ , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } +, { "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.712921 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712836 ] } } , @@ -8036,15 +8022,15 @@ , { "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710697 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710561 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , { "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , @@ -8054,9 +8040,9 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , @@ -8068,7 +8054,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.712972 ] } } , @@ -8076,7 +8062,7 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418873, 37.711716 ] } } , @@ -8094,11 +8080,11 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713243 ] } } , @@ -8108,7 +8094,7 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710969 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , @@ -8116,7 +8102,7 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.710493 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710358 ] } } , @@ -8124,7 +8110,7 @@ , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708490 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.708643 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419946, 37.708372 ] } } , @@ -8134,25 +8120,25 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415526, 37.706929 ] } } , +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, { "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706521 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709305 ] } } -, { "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.709051 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708253 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.717148 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405441, 37.717215 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } , { "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.717046 ] } } , @@ -8170,15 +8156,15 @@ , { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.711342 ] } } -, { "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.713855 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405140, 37.712564 ] } } , @@ -8192,11 +8178,11 @@ , { "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716469 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } , { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , @@ -8204,21 +8190,21 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714228 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , { "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.712361 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , { "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712361 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712225 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , @@ -8248,9 +8234,9 @@ , { "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.708830 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.709085 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708796 ] } } , @@ -8262,9 +8248,9 @@ , { "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711240 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717012 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717012 ] } } , { "type": "Feature", "properties": { "name": "49ERS DRIVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387803, 37.714109 ] } } , @@ -8272,11 +8258,11 @@ , { "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.712785 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712123 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } ] } , @@ -8290,7 +8276,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } , @@ -8312,39 +8298,37 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433207, 37.775616 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.432477, 37.775616 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.769137 ] } } , { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } -, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432005, 37.751376 ] } } , +{ "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751325 ] } } , { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, { "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721629 ] } } , { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , @@ -8358,13 +8342,13 @@ , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , @@ -8376,12 +8360,16 @@ , { "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +, { "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788200 ] } } , { "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789014 ] } } , { "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, { "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788946 ] } } @@ -8392,6 +8380,10 @@ , { "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } , +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , { "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } @@ -8408,17 +8400,17 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.784842 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427800, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.782129 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.781756 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } , { "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785046 ] } } , @@ -8426,14 +8418,14 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786572 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.786097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.785606 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.784910 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784673 ] } } @@ -8444,22 +8436,22 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423680, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423851, 37.779687 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420719, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.782502 ] } } , +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.781942 ] } } +, { "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780942 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780094 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } @@ -8470,21 +8462,21 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426941, 37.779178 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.776261 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } , @@ -8492,7 +8484,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779382 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , @@ -8502,15 +8494,15 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772937 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.424667, 37.770952 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.772631 ] } } , { "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774022 ] } } , @@ -8538,7 +8530,7 @@ , { "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } , { "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , @@ -8550,11 +8542,11 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780196 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.782180 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779992 ] } } , @@ -8568,7 +8560,7 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781688 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417200, 37.782451 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , @@ -8576,7 +8568,7 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.780501 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } , @@ -8586,17 +8578,17 @@ , { "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } , +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784707 ] } } , @@ -8608,7 +8600,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786029 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786097 ] } } , @@ -8622,7 +8614,7 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781824 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412565, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } , @@ -8642,7 +8634,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419732, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777279 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , @@ -8652,7 +8644,7 @@ , { "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775209 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } , @@ -8666,11 +8658,11 @@ , { "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.777584 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416341, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.774972 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , @@ -8678,8 +8670,6 @@ , { "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774955 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.774921 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.772988 ] } } @@ -8688,21 +8678,21 @@ , { "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.774294 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417114, 37.774209 ] } } , { "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.779365 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414753, 37.778568 ] } } , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414367, 37.779093 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } , @@ -8712,13 +8702,13 @@ , { "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.779348 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775108 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.771580 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , @@ -8730,33 +8720,35 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429688, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } , { "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429388, 37.769409 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } , { "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST" }, "geometry": { "type": "Point", "coordinates": [ -122.431104, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , { "type": "Feature", "properties": { "name": "Church St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767780 ] } } , +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767662 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } , { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428615, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767373 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } , @@ -8764,9 +8756,9 @@ , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , { "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , @@ -8774,12 +8766,12 @@ , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , +{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764727 ] } } +, { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428486, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428486, 37.762810 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.769799 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.767848 ] } } @@ -8788,7 +8780,7 @@ , { "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766254 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.764846 ] } } , @@ -8804,7 +8796,7 @@ , { "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761233 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , @@ -8814,43 +8806,43 @@ , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426856, 37.757229 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.757450 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754786 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426813, 37.756432 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.761385 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423637, 37.761521 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762013 ] } } +, { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.758739 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753395 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.770460 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753598 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.767136 ] } } , @@ -8858,11 +8850,11 @@ , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764998 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419603, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , @@ -8880,11 +8872,11 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.763828 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412264, 37.770359 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , @@ -8906,17 +8898,17 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762929 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417071, 37.761877 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416985, 37.758925 ] } } , @@ -8924,17 +8916,17 @@ , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756584 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.755821 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.753429 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754277 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416685, 37.755719 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758993 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } , @@ -8946,17 +8938,17 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759333 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414324, 37.755940 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } , @@ -8964,11 +8956,11 @@ , { "type": "Feature", "properties": { "name": "MASON ST & EDDY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784062 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.784317 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408402, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street" }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785419 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , @@ -9000,17 +8992,17 @@ , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.785860 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408659, 37.783384 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782841 ] } } , { "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407629, 37.783503 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409089, 37.780738 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.782095 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781179 ] } } , @@ -9018,7 +9010,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.782638 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } , @@ -9036,21 +9028,21 @@ , { "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786369 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786029 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786335 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786199 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399261, 37.786080 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.784944 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783961 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } , @@ -9076,21 +9068,21 @@ , { "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774701 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771546 ] } } -, { "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.779314 ] } } , { "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , @@ -9102,11 +9094,11 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399433, 37.773462 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398102, 37.786555 ] } } , @@ -9116,7 +9108,7 @@ , { "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.785317 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , @@ -9124,11 +9116,11 @@ , { "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395012, 37.784096 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784283 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.782706 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , @@ -9138,7 +9130,7 @@ , { "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , @@ -9146,29 +9138,29 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390678, 37.780620 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 37.780704 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779789 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389863, 37.779721 ] } } , { "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389820, 37.779619 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } -, { "type": "Feature", "properties": { "name": "4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.778296 ] } } , { "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398574, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775430 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.397158, 37.775481 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394626, 37.777279 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397201, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777414 ] } } , @@ -9178,23 +9170,23 @@ , { "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777007 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394884, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777007 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776363 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776244 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393897, 37.776312 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } , @@ -9204,12 +9196,12 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392437, 37.778975 ] } } , +{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778093 ] } } +, { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.775481 ] } } , { "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.392824, 37.775277 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , { "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389691, 37.772954 ] } } @@ -9230,21 +9222,21 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764727 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } , { "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763234 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764557 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.763302 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763234 ] } } , { "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770223 ] } } , { "type": "Feature", "properties": { "name": "8th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.770155 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769748 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403295, 37.769884 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , @@ -9254,37 +9246,37 @@ , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.766050 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764761 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401450, 37.764897 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402523, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , { "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401364, 37.763506 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.762200 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } , @@ -9320,25 +9312,25 @@ , { "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } +, { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , { "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } -, { "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758009 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.754481 ] } } , @@ -9346,9 +9338,9 @@ , { "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.757433 ] } } , @@ -9356,13 +9348,13 @@ , { "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757297 ] } } , +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757263 ] } } +, { "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398832, 37.755906 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755770 ] } } , { "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.766389 ] } } , @@ -9372,7 +9364,7 @@ , { "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762691 ] } } , @@ -9382,7 +9374,7 @@ , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766864 ] } } , { "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } , @@ -9400,7 +9392,7 @@ , { "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.764354 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388747, 37.764422 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764388 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } , @@ -9418,16 +9410,16 @@ , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398360, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.760079 ] } } +, { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.760028 ] } } -, { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758383 ] } } , { "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } @@ -9448,11 +9440,11 @@ , { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757636 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395699, 37.756822 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395785, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.755499 ] } } , { "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753734 ] } } , @@ -9462,9 +9454,9 @@ , { "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388446, 37.760792 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.760588 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760520 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , { "type": "Feature", "properties": { "name": "Third Street & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } , @@ -9474,13 +9466,13 @@ , { "type": "Feature", "properties": { "name": "3RD ST & 22ND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388232, 37.758077 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , { "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758009 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.755007 ] } } , @@ -9488,39 +9480,39 @@ , { "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388017, 37.755278 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751766 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746676 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.746540 ] } } , +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425268, 37.751783 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751902 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , { "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , @@ -9532,11 +9524,11 @@ , { "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742129 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , { "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426512, 37.742095 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , @@ -9564,9 +9556,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741043 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.742434 ] } } , @@ -9586,13 +9578,13 @@ , { "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738871 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737446 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.736207 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.740296 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , @@ -9604,19 +9596,19 @@ , { "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751953 ] } } , +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } +, { "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.750273 ] } } , { "type": "Feature", "properties": { "name": "25TH ST & MISSION ST" }, "geometry": { "type": "Point", "coordinates": [ -122.418487, 37.750663 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752309 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752479 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.752275 ] } } , { "type": "Feature", "properties": { "name": "26th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750646 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , @@ -9626,19 +9618,19 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.748237 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746744 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.746235 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.746642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.748305 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420290, 37.745081 ] } } , { "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.752564 ] } } , @@ -9648,7 +9640,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749221 ] } } , @@ -9656,7 +9648,7 @@ , { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752581 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , @@ -9666,20 +9658,20 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.748101 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } -, { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } , +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } +, { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.748424 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } -, { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739312 ] } } @@ -9688,16 +9680,16 @@ , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416384, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.744131 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.744284 ] } } +, { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } , { "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.741823 ] } } -, { "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414539, 37.738922 ] } } @@ -9706,7 +9698,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.738871 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.738260 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738803 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } , @@ -9724,7 +9716,7 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } , @@ -9732,7 +9724,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733712 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } , @@ -9754,45 +9746,45 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.728468 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.728604 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728587 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Craut St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.734035 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.735901 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.735240 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426083, 37.728553 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.728706 ] } } , { "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421920, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.728740 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422478, 37.728757 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422564, 37.728893 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720848 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431061, 37.720882 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720135 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429903, 37.722375 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720101 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721357 ] } } , @@ -9802,21 +9794,21 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720508 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719728 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720406 ] } } , +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } -, { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , @@ -9826,7 +9818,7 @@ , { "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426040, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719354 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , @@ -9834,17 +9826,17 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420118, 37.735138 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.735053 ] } } , { "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418916, 37.732609 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942, 37.734832 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416728, 37.734968 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416942, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , @@ -9856,7 +9848,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } , { "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.734730 ] } } , @@ -9866,23 +9858,23 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.735783 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734798 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729843 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735002 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727399 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730963 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725973 ] } } , @@ -9904,17 +9896,17 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.723122 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } , { "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753056 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.752513 ] } } , @@ -9932,7 +9924,7 @@ , { "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue" }, "geometry": { "type": "Point", "coordinates": [ -122.406213, 37.753056 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406342, 37.751257 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406085, 37.751630 ] } } , @@ -9944,17 +9936,17 @@ , { "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750714 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750714 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750850 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.746405 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , @@ -9976,17 +9968,17 @@ , { "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } , +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403338, 37.741874 ] } } +, { "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741891 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741077 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743894 ] } } -, { "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.741484 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.738786 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.738786 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739550 ] } } , @@ -9994,33 +9986,33 @@ , { "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752275 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752241 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.752377 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752241 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.752360 ] } } , +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752241 ] } } +, { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396514, 37.751257 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.751427 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397072, 37.749018 ] } } -, { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.749866 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.752682 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396214, 37.750002 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.747253 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745964 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } , { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752614 ] } } , @@ -10030,7 +10022,7 @@ , { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742774 ] } } , { "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } , @@ -10038,17 +10030,17 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398617, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736088 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736631 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736088 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390463, 37.744029 ] } } , @@ -10056,11 +10048,11 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742672 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387931, 37.742706 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , @@ -10078,7 +10070,7 @@ , { "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736326 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736292 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391622, 37.736258 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.739312 ] } } , @@ -10086,9 +10078,9 @@ , { "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740296 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388704, 37.740110 ] } } , @@ -10108,9 +10100,9 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404797, 37.732999 ] } } , @@ -10118,7 +10110,7 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405355, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } , @@ -10126,9 +10118,9 @@ , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404926, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402179, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.727433 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402565, 37.734170 ] } } , @@ -10136,7 +10128,7 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , @@ -10144,11 +10136,11 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.727518 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727637 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.728078 ] } } , @@ -10162,9 +10154,9 @@ , { "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , @@ -10176,11 +10168,11 @@ , { "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726788 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.406471, 37.726907 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.719575 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.720101 ] } } , @@ -10188,15 +10180,15 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402694, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723292 ] } } , @@ -10206,7 +10198,7 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.721476 ] } } , @@ -10238,20 +10230,20 @@ , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735070 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } -, { "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.734340 ] } } , +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734357 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734086 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } +, { "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE" }, "geometry": { "type": "Point", "coordinates": [ -122.390893, 37.733899 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391536, 37.732270 ] } } -, { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732253 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391493, 37.732253 ] } } @@ -10260,12 +10252,12 @@ , { "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } +, { "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734493 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390163, 37.731693 ] } } -, { "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388875, 37.732915 ] } } @@ -10274,11 +10266,11 @@ , { "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , { "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.729215 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392609, 37.729283 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729266 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729232 ] } } , @@ -10290,7 +10282,7 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397931, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394240, 37.725481 ] } } , @@ -10304,7 +10296,7 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397373, 37.722715 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.722477 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721119 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720780 ] } } , @@ -10322,9 +10314,9 @@ , { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , @@ -10336,9 +10328,9 @@ , { "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , @@ -10352,7 +10344,7 @@ , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387502, 37.750341 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749086 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Marin St" }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , @@ -10362,7 +10354,7 @@ , { "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.746048 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , @@ -10370,17 +10362,17 @@ , { "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742536 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383382, 37.743894 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743792 ] } } , { "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384627, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740907 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384498, 37.740687 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } , @@ -10402,7 +10394,7 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.735850 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.737004 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , @@ -10420,33 +10412,33 @@ , { "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733033 ] } } +, { "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729554 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729520 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730148 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730148 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384584, 37.728366 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } -, { "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , @@ -10464,7 +10456,7 @@ , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , @@ -10472,15 +10464,15 @@ , { "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375872, 37.731981 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375615, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } , @@ -10494,36 +10486,42 @@ , { "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728757 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } , { "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365186, 37.728587 ] } } , { "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365444, 37.727908 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214" }, "geometry": { "type": "Point", "coordinates": [ -122.360981, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.717555 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718132 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388275, 37.718234 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717487 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } -, { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } @@ -10532,14 +10530,14 @@ , { "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778534 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.767187 ] } } -, { "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784300 ] } } , { "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784198 ] } } @@ -10550,37 +10548,37 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.805274 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805122 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.805122 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801155 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.797424 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.792745 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790099 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807021 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806682 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.805630 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805800 ] } } , @@ -10596,21 +10594,21 @@ , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806512 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807834 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807834 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807597 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411835, 37.805732 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.806868 ] } } , @@ -10628,15 +10626,15 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426555, 37.802104 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802019 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428057, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.800849 ] } } , { "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } , @@ -10646,16 +10644,16 @@ , { "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425354, 37.804834 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804817 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } -, { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } @@ -10664,17 +10662,17 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422092, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.423379, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424152, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.423894, 37.798645 ] } } , @@ -10690,15 +10688,15 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } , +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793355 ] } } +, { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } -, { "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429173, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428958, 37.790523 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } , @@ -10722,7 +10720,7 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.794169 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793965 ] } } , @@ -10734,19 +10732,19 @@ , { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.794186 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421277, 37.793185 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426126, 37.790879 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.791897 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.792100 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } , @@ -10756,17 +10754,17 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.791507 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, { "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790642 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789506 ] } } -, { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804783 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.802833 ] } } , @@ -10774,7 +10772,7 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804511 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415311, 37.805257 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } , @@ -10800,30 +10798,30 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , { "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799442 ] } } , { "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417500, 37.799323 ] } } , +{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.799679 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415140, 37.803782 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +, { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802680 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412908, 37.801833 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } @@ -10832,9 +10830,9 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801188 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } , @@ -10850,21 +10848,21 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410634, 37.800188 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800375 ] } } , { "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410033, 37.800375 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.798238 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800409 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.797340 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.795322 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796339 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , @@ -10880,9 +10878,9 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } , @@ -10890,19 +10888,19 @@ , { "type": "Feature", "properties": { "name": "Clay St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417886, 37.792745 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.416213, 37.793813 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793830 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416298, 37.792948 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.792948 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.790812 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } , { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420375, 37.789540 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } , @@ -10916,9 +10914,9 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415612, 37.791286 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415612, 37.791286 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } , @@ -10930,7 +10928,7 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.795034 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.795780 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.795983 ] } } , @@ -10938,11 +10936,11 @@ , { "type": "Feature", "properties": { "name": "Washington St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794033 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.793355 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796373 ] } } , @@ -10978,11 +10976,11 @@ , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413595, 37.788692 ] } } , { "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } , @@ -10992,7 +10990,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807258 ] } } , @@ -11000,9 +10998,9 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } , @@ -11010,7 +11008,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803562 ] } } , @@ -11018,17 +11016,17 @@ , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802714 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800544 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801765 ] } } , { "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.799205 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } , @@ -11036,7 +11034,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797187 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } , @@ -11058,7 +11056,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403767, 37.805190 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805020 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803918 ] } } , @@ -11066,7 +11064,7 @@ , { "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.803257 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.802155 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.802952 ] } } , @@ -11076,9 +11074,9 @@ , { "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798137 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797391 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402351, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.800595 ] } } , @@ -11090,7 +11088,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , @@ -11098,13 +11096,13 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.792880 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409432, 37.792948 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793423 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407587, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793423 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , @@ -11138,11 +11136,11 @@ , { "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.792304 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.790133 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408702, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , @@ -11152,7 +11150,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407029, 37.789472 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789591 ] } } , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } , @@ -11160,15 +11158,15 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.789811 ] } } , +{ "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405398, 37.788590 ] } } +, { "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794678 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793830 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } , @@ -11178,7 +11176,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794271 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , @@ -11186,7 +11184,7 @@ , { "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793118 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399862, 37.793135 ] } } , @@ -11202,9 +11200,11 @@ , { "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.788488 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788607 ] } } +, { "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } , @@ -11214,7 +11214,7 @@ , { "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399132, 37.790896 ] } } , @@ -11240,7 +11240,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396986, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } , @@ -11250,23 +11250,25 @@ , { "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792609 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.793982 ] } } , { "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792982 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793491 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.795034 ] } } , @@ -11274,17 +11276,17 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395613, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793592 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793626 ] } } , { "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } , @@ -11296,7 +11298,7 @@ , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793694 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.793762 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , @@ -11310,13 +11312,13 @@ , { "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.792999 ] } } , +{ "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398403, 37.791897 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791914 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.791642 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.790150 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396686, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , @@ -11324,29 +11326,29 @@ , { "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789489 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791829 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.790608 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790608 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393382, 37.790761 ] } } , { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393339, 37.790574 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.790405 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.393296, 37.790540 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395871, 37.789879 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.789930 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } , { "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394283, 37.789794 ] } } , @@ -11358,9 +11360,9 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792711 ] } } , { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , @@ -11390,29 +11392,29 @@ , { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +, { "type": "Feature", "properties": { "name": "Avenue H & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828311 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825463 ] } } , { "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } -, { "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371452, 37.824599 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829260 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825192 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368920, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369907, 37.825226 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366946, 37.825311 ] } } , @@ -11420,21 +11422,21 @@ , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822379 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366130, 37.819921 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , { "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813124 ] } } -, { "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , @@ -11470,18 +11472,24 @@ , { "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } , +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.786860 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } +, { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, { "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } @@ -11496,28 +11504,18 @@ , { "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } -, { "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } -, { "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.793152 ] } } -, { "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793135 ] } } ] } ] } @@ -11539,6 +11537,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.239993, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json index b41d06073..acf7ffcc2 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-Bg.json @@ -9,7 +9,7 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000_-Bg.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2546},{},{}]", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":2544},{},{}]", "tippecanoe_decisions": "{\"basezoom\":12,\"droprate\":2.1055,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -26,7 +26,7 @@ , { "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , { "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } ] } @@ -36,6 +36,8 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } @@ -44,7 +46,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , @@ -52,15 +54,15 @@ , { "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , @@ -70,11 +72,9 @@ , { "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST" }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , @@ -82,9 +82,9 @@ , { "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , @@ -96,7 +96,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } , @@ -122,11 +122,11 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , @@ -142,16 +142,16 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } @@ -164,17 +164,19 @@ , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.720933 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Salinas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , @@ -182,6 +184,8 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } @@ -190,11 +194,11 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714754 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } , @@ -212,7 +216,7 @@ , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } , @@ -220,7 +224,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , @@ -228,9 +232,9 @@ , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } , @@ -254,11 +258,11 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } , @@ -266,17 +270,17 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } , @@ -292,11 +296,11 @@ , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706131 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , @@ -304,7 +308,7 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , @@ -334,15 +338,15 @@ , { "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715705 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , { "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , @@ -358,11 +362,11 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712921 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , { "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712140 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } , @@ -376,19 +380,19 @@ , { "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710544 ] } } , { "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } , { "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.713226 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , @@ -396,9 +400,9 @@ , { "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } , @@ -414,15 +418,15 @@ , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715026 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } , @@ -434,7 +438,7 @@ , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } , @@ -442,9 +446,9 @@ , { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , @@ -452,19 +456,19 @@ , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710001 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } , @@ -472,7 +476,7 @@ , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , @@ -500,7 +504,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken" }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712208 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } , @@ -510,7 +514,7 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } , @@ -536,7 +540,7 @@ , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } ] } , @@ -546,11 +550,11 @@ , { "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range" }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } , { "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } , @@ -566,9 +570,9 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } , @@ -580,15 +584,15 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799815 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , { "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } , @@ -596,15 +600,15 @@ , { "type": "Feature", "properties": { "name": "Halleck St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , @@ -612,17 +616,17 @@ , { "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799103 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804325 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } , @@ -630,21 +634,21 @@ , { "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , @@ -660,7 +664,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791168 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800120 ] } } , @@ -668,7 +672,7 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437434, 37.800731 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , { "type": "Feature", "properties": { "name": "Union St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , @@ -686,7 +690,7 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } , @@ -710,21 +714,21 @@ , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } , { "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } , @@ -742,13 +746,13 @@ , { "type": "Feature", "properties": { "name": "Washington St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , { "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } , @@ -760,7 +764,7 @@ , { "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } , @@ -772,7 +776,7 @@ , { "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } , @@ -786,25 +790,25 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , @@ -812,9 +816,9 @@ , { "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , @@ -822,21 +826,21 @@ , { "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754735 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , @@ -844,7 +848,7 @@ , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783401 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } , @@ -860,26 +864,26 @@ , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775633 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } , { "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } @@ -892,11 +896,11 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , @@ -904,19 +908,19 @@ , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Lake St" }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } , @@ -940,23 +944,23 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.772852 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.772852 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , @@ -972,7 +976,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.760910 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } , @@ -984,19 +988,19 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755142 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492623, 37.753446 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , @@ -1004,7 +1008,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , @@ -1022,7 +1026,7 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } , @@ -1030,7 +1034,7 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753989 ] } } , @@ -1040,7 +1044,7 @@ , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761589 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761385 ] } } , @@ -1052,7 +1056,7 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } , @@ -1060,17 +1064,17 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } , @@ -1078,9 +1082,9 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747270 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745404 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753310 ] } } , @@ -1094,7 +1098,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , @@ -1108,7 +1112,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } , @@ -1118,7 +1122,7 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731591 ] } } , @@ -1126,7 +1130,7 @@ , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } , { "type": "Feature", "properties": { "name": "37th AVE & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } , @@ -1136,7 +1140,7 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , @@ -1156,9 +1160,9 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742248 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } , @@ -1168,25 +1172,25 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736750 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742587 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.748322 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , @@ -1194,11 +1198,11 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , @@ -1212,7 +1216,7 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } , @@ -1220,25 +1224,25 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , @@ -1248,7 +1252,7 @@ , { "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730403 ] } } , { "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , @@ -1256,9 +1260,9 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , @@ -1270,11 +1274,11 @@ , { "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720661 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719575 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , @@ -1294,31 +1298,31 @@ , { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } , { "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } , { "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , @@ -1332,29 +1336,29 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.777194 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.773327 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } , { "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } , @@ -1376,25 +1380,25 @@ , { "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783231 ] } } +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783231 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464213, 37.779161 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777126 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } , @@ -1416,7 +1420,7 @@ , { "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } , @@ -1424,9 +1428,9 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.762064 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , { "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , @@ -1438,11 +1442,11 @@ , { "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , { "type": "Feature", "properties": { "name": "Irving St. & 9th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763896 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St." }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } , @@ -1456,13 +1460,13 @@ , { "type": "Feature", "properties": { "name": "Judah St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759146 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } , @@ -1476,11 +1480,11 @@ , { "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } , @@ -1494,9 +1498,9 @@ , { "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762505 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , @@ -1506,23 +1510,23 @@ , { "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE" }, "geometry": { "type": "Point", "coordinates": [ -122.463527, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , @@ -1540,7 +1544,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782010 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } , { "type": "Feature", "properties": { "name": "California St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787166 ] } } , @@ -1548,9 +1552,9 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , @@ -1574,7 +1578,7 @@ , { "type": "Feature", "properties": { "name": "Shrader St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } , @@ -1582,19 +1586,19 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779093 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776922 ] } } , @@ -1602,7 +1606,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773937 ] } } , @@ -1620,23 +1624,23 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.785266 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } , @@ -1658,17 +1662,17 @@ , { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , @@ -1700,19 +1704,19 @@ , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765321 ] } } , @@ -1724,7 +1728,7 @@ , { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765728 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } , @@ -1742,9 +1746,9 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } , { "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } , @@ -1762,7 +1766,7 @@ , { "type": "Feature", "properties": { "name": "415 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763217 ] } } , { "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761691 ] } } , @@ -1770,29 +1774,29 @@ , { "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , { "type": "Feature", "properties": { "name": "320 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759892 ] } } , { "type": "Feature", "properties": { "name": "210 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } , { "type": "Feature", "properties": { "name": "18th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.757789 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } , @@ -1814,11 +1818,11 @@ , { "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Duboce Ave & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } , @@ -1826,17 +1830,17 @@ , { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765592 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } , { "type": "Feature", "properties": { "name": "Castro St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762505 ] } } , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } , @@ -1848,7 +1852,7 @@ , { "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } , @@ -1862,11 +1866,11 @@ , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , @@ -1874,7 +1878,7 @@ , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , @@ -1884,13 +1888,13 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } , { "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , @@ -1900,23 +1904,23 @@ , { "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } , +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.738990 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } , @@ -1930,7 +1934,7 @@ , { "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } , @@ -1942,19 +1946,19 @@ , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740822 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739668 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739465 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } , @@ -1964,9 +1968,9 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } , { "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748186 ] } } , @@ -1980,11 +1984,11 @@ , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , @@ -1992,9 +1996,9 @@ , { "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.739193 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } , @@ -2006,9 +2010,9 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , @@ -2026,15 +2030,15 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731252 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } , @@ -2052,15 +2056,15 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.725787 ] } } , { "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } , { "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } , @@ -2068,11 +2072,11 @@ , { "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } , @@ -2094,7 +2098,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } , @@ -2110,11 +2114,11 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724938 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , @@ -2132,29 +2136,29 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } , { "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } , { "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } , @@ -2174,15 +2178,15 @@ , { "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.746659 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.744487 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } , @@ -2198,7 +2202,7 @@ , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741365 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , @@ -2212,7 +2216,7 @@ , { "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750731 ] } } , { "type": "Feature", "properties": { "name": "24th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , @@ -2224,21 +2228,21 @@ , { "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.745268 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751206 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } , { "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } , @@ -2250,19 +2254,19 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , @@ -2288,7 +2292,7 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , @@ -2300,27 +2304,27 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728400 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } , @@ -2342,7 +2346,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } , @@ -2354,7 +2358,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } , @@ -2380,21 +2384,21 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720050 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , @@ -2406,15 +2410,15 @@ , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734442 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } , @@ -2422,15 +2426,15 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.725753 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723241 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.723343 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , @@ -2442,7 +2446,7 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } , @@ -2456,19 +2460,19 @@ , { "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } , @@ -2478,7 +2482,7 @@ , { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805478 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , @@ -2486,13 +2490,13 @@ , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } , { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807038 ] } } , @@ -2502,11 +2506,11 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } , @@ -2518,11 +2522,11 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805003 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , @@ -2536,7 +2540,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.798594 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , @@ -2548,7 +2552,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792524 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , @@ -2556,13 +2560,13 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , @@ -2570,9 +2574,9 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } , { "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } , @@ -2582,9 +2586,9 @@ , { "type": "Feature", "properties": { "name": "Gough St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , @@ -2596,7 +2600,7 @@ , { "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } , @@ -2618,13 +2622,13 @@ , { "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799442 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } , { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , @@ -2632,11 +2636,11 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802087 ] } } , @@ -2646,7 +2650,7 @@ , { "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } , @@ -2662,19 +2666,19 @@ , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797340 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , @@ -2688,15 +2692,15 @@ , { "type": "Feature", "properties": { "name": "Clay St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792931 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } , { "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , @@ -2704,11 +2708,11 @@ , { "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789201 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , @@ -2726,9 +2730,9 @@ , { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } , @@ -2738,17 +2742,17 @@ , { "type": "Feature", "properties": { "name": "Mason St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , { "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , @@ -2762,7 +2766,7 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , @@ -2770,13 +2774,13 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.799273 ] } } , @@ -2784,15 +2788,15 @@ , { "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } , { "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } , { "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , @@ -2814,25 +2818,25 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.800595 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } , @@ -2846,7 +2850,7 @@ , { "type": "Feature", "properties": { "name": "California St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } , { "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } , @@ -2856,19 +2860,19 @@ , { "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "POST & GRANT" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } , @@ -2894,7 +2898,7 @@ , { "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } , { "type": "Feature", "properties": { "name": "Post St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } , @@ -2902,19 +2906,17 @@ , { "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } -, { "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , { "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "name": "2ND ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , @@ -2938,11 +2940,13 @@ , { "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793474 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } , @@ -2950,7 +2954,7 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , { "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , @@ -2972,13 +2976,13 @@ , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.793338 ] } } , { "type": "Feature", "properties": { "name": "Front & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } , { "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } , @@ -2986,7 +2990,7 @@ , { "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.791134 ] } } , @@ -3002,9 +3006,9 @@ , { "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , @@ -3012,19 +3016,19 @@ , { "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Howard St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792321 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.788861 ] } } , { "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } , @@ -3048,7 +3052,7 @@ , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371774, 37.816022 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , @@ -3056,11 +3060,11 @@ , { "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370830, 37.813140 ] } } , { "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } , @@ -3076,7 +3080,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } , @@ -3086,7 +3090,7 @@ , { "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , @@ -3102,15 +3106,15 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st" }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } , @@ -3118,7 +3122,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , @@ -3128,11 +3132,11 @@ , { "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } , @@ -3140,13 +3144,13 @@ , { "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , { "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , @@ -3154,7 +3158,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } , { "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } , @@ -3170,15 +3174,15 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.787030 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785063 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } , @@ -3190,11 +3194,11 @@ , { "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , @@ -3208,19 +3212,19 @@ , { "type": "Feature", "properties": { "name": "Jones St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784859 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.785097 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } , @@ -3228,14 +3232,12 @@ , { "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } -, { "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.780314 ] } } @@ -3248,9 +3250,7 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } -, -{ "type": "Feature", "properties": { "name": "11th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , @@ -3258,13 +3258,13 @@ , { "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } , { "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St." }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } , { "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } , @@ -3272,15 +3272,15 @@ , { "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } , { "type": "Feature", "properties": { "name": "11th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } , { "type": "Feature", "properties": { "name": "8TH St AND MARKET St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } , @@ -3288,11 +3288,11 @@ , { "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , @@ -3300,7 +3300,7 @@ , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , { "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , @@ -3314,8 +3314,6 @@ , { "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } , { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } @@ -3328,15 +3326,15 @@ , { "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764371 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } , @@ -3354,7 +3352,7 @@ , { "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } , @@ -3362,25 +3360,25 @@ , { "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } , @@ -3392,23 +3390,23 @@ , { "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "16th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } , @@ -3416,7 +3414,7 @@ , { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } , @@ -3428,7 +3426,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } , @@ -3442,19 +3440,19 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.786318 ] } } , @@ -3464,7 +3462,7 @@ , { "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784317 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } , @@ -3482,13 +3480,13 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786623 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } , @@ -3496,7 +3494,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & Mary St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } , @@ -3520,23 +3518,23 @@ , { "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } , { "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780654 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.777329 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } , @@ -3554,21 +3552,21 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.777940 ] } } , { "type": "Feature", "properties": { "name": "7th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } , { "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , @@ -3596,7 +3594,7 @@ , { "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } , { "type": "Feature", "properties": { "name": " 4th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , @@ -3604,15 +3602,15 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } , @@ -3626,7 +3624,7 @@ , { "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } , { "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } , @@ -3634,11 +3632,11 @@ , { "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768238 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave&15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } , @@ -3654,11 +3652,11 @@ , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "Division St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.768747 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , @@ -3672,17 +3670,17 @@ , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764914 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } , { "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } , @@ -3692,9 +3690,9 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757382 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } , @@ -3710,7 +3708,7 @@ , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } , @@ -3718,25 +3716,25 @@ , { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } , { "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757280 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755889 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } , { "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766474 ] } } , @@ -3748,21 +3746,21 @@ , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762810 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } , { "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } , { "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } , { "type": "Feature", "properties": { "name": "Third St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } , @@ -3794,7 +3792,7 @@ , { "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756839 ] } } , @@ -3802,13 +3800,13 @@ , { "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } , { "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Minnesota St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.757857 ] } } , @@ -3832,7 +3830,7 @@ , { "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749374 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746659 ] } } , @@ -3840,7 +3838,7 @@ , { "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } , { "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } , @@ -3848,9 +3846,9 @@ , { "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } , { "type": "Feature", "properties": { "name": "Church St & Day St" }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742621 ] } } , @@ -3874,25 +3872,25 @@ , { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742417 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742417 ] } } , { "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.739736 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.739736 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } , @@ -3902,7 +3900,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , @@ -3916,25 +3914,25 @@ , { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } , { "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } , @@ -3954,19 +3952,19 @@ , { "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , { "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744284 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } , @@ -3976,7 +3974,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , @@ -3992,19 +3990,19 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } , { "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.728468 ] } } , @@ -4016,11 +4014,11 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735053 ] } } , { "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.724734 ] } } , @@ -4034,7 +4032,7 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.719711 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.721272 ] } } , @@ -4042,21 +4040,21 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } , @@ -4064,11 +4062,11 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } , { "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , @@ -4080,9 +4078,9 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734713 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } , @@ -4118,11 +4116,11 @@ , { "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , @@ -4130,13 +4128,13 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "C. Chavez St&Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } , @@ -4144,13 +4142,13 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } , @@ -4160,19 +4158,19 @@ , { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752360 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } , { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } , @@ -4180,15 +4178,15 @@ , { "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752224 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.751274 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.749985 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } , @@ -4202,15 +4200,15 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736207 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736614 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } , { "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } , @@ -4224,7 +4222,7 @@ , { "type": "Feature", "properties": { "name": "3rd St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739736 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } , @@ -4240,11 +4238,11 @@ , { "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739940 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } , @@ -4260,9 +4258,9 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } , @@ -4274,15 +4272,15 @@ , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730369 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729079 ] } } , @@ -4290,7 +4288,7 @@ , { "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , @@ -4312,11 +4310,11 @@ , { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.720933 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } , @@ -4324,19 +4322,19 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719032 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , @@ -4350,11 +4348,11 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733831 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } , @@ -4362,11 +4360,11 @@ , { "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } , @@ -4374,7 +4372,7 @@ , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728061 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , { "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } , @@ -4392,31 +4390,31 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755617 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } , @@ -4428,9 +4426,9 @@ , { "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } , { "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } , @@ -4438,15 +4436,15 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , @@ -4454,7 +4452,7 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731829 ] } } , @@ -4472,11 +4470,11 @@ , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.729554 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730131 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } , @@ -4492,7 +4490,7 @@ , { "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } , @@ -4506,9 +4504,9 @@ , { "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } , @@ -4516,9 +4514,9 @@ , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152" }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728740 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } , { "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365422, 37.727925 ] } } , @@ -4530,6 +4528,8 @@ , { "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, { "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } @@ -4540,19 +4540,17 @@ , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718149 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , @@ -4578,23 +4576,19 @@ , { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } -, { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , { "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } -, -{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , @@ -4609,6 +4603,8 @@ { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -4618,20 +4614,26 @@ , { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.788692 ] } } +, { "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } , { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775125 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, { "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, { "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784181 ] } } ] } ] } @@ -4649,6 +4651,8 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } ] } ] } , diff --git a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json index 1edb07c8b..3dba0233a 100644 --- a/tests/muni/out/-Z11_-z13_-rf2000_-g2.json +++ b/tests/muni/out/-Z11_-z13_-rf2000_-g2.json @@ -9,8 +9,8 @@ "maxzoom": "13", "minzoom": "11", "name": "tests/muni/out/-Z11_-z13_-rf2000_-g2.json.check.mbtiles", -"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":1349,\"dropped_by_gamma\":963},{\"dropped_by_rate\":747,\"dropped_by_gamma\":752},{\"dropped_by_gamma\":514}]", -"tippecanoe_decisions": "{\"basezoom\":13,\"droprate\":1.176222768016331,\"retain_points_multiplier\":1}", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{\"dropped_by_rate\":1344,\"dropped_by_gamma\":961},{\"dropped_by_rate\":743,\"dropped_by_gamma\":746},{\"dropped_by_gamma\":514}]", +"tippecanoe_decisions": "{\"basezoom\":13,\"droprate\":1.17622,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ @@ -22,6 +22,8 @@ , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } , +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail" }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } @@ -30,9 +32,9 @@ , { "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD" }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center" }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } -, { "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } ] } ] } , @@ -40,33 +42,37 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.500005, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } +, { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , @@ -86,54 +92,54 @@ , { "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } -, -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719982 ] } } , { "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } -, { "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } , +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721068 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } @@ -144,34 +150,30 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720118 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } @@ -182,17 +184,17 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485328, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714754 ] } } , @@ -200,34 +202,28 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } @@ -236,14 +232,10 @@ , { "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } -, { "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712989 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713532 ] } } @@ -252,35 +244,33 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714415 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.714347 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710341 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } , { "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } -, { "type": "Feature", "properties": { "name": "Daly City BART West Station Rd." }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } , @@ -288,51 +278,47 @@ , { "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } , +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711291 ] } } +, { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714822 ] } } -, -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.714992 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } -, -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713260 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711529 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710273 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705961 ] } } , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Flournoy" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , @@ -340,7 +326,7 @@ , { "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714686 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Lowell St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } , @@ -352,19 +338,19 @@ , { "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716621 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714754 ] } } , @@ -372,17 +358,21 @@ , { "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713464 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714007 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , { "type": "Feature", "properties": { "name": "Cordova Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } , @@ -396,23 +386,25 @@ , { "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } , +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708949 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710544 ] } } , { "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } -, -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , @@ -420,21 +412,21 @@ , { "type": "Feature", "properties": { "name": "1750 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, { "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL" }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713532 ] } } , { "type": "Feature", "properties": { "name": "1900 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "1901 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } , { "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.712615 ] } } , @@ -442,13 +434,15 @@ , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712242 ] } } +, { "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712004 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , @@ -456,36 +450,36 @@ , { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713328 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } -, { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +, { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710341 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708507 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.707896 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.706300 ] } } , { "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } @@ -496,10 +490,12 @@ , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715162 ] } } @@ -508,42 +504,42 @@ , { "type": "Feature", "properties": { "name": "Rutland St & Leland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.408938, 37.711699 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710001 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711359 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713193 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } , +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } -, { "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } , +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } , { "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } @@ -554,15 +550,17 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , @@ -570,10 +568,12 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710952 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711223 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +, { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } , { "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK" }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } @@ -584,9 +584,9 @@ , { "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } -, { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } ] } ] } , @@ -598,13 +598,13 @@ , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833887 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } , { "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483268, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.833073 ] } } , { "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , @@ -612,17 +612,15 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } , { "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } , @@ -632,34 +630,32 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } -, { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801002 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800120 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801612 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , { "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } , { "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } @@ -668,11 +664,11 @@ , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.453914, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , @@ -680,7 +676,7 @@ , { "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } , { "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg" }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } , @@ -688,41 +684,43 @@ , { "type": "Feature", "properties": { "name": "Broderick St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804325 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } -, -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } , { "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } +, { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , { "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } -, { "type": "Feature", "properties": { "name": "Broderick St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , { "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } , @@ -734,11 +732,9 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } -, { "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , @@ -750,15 +746,15 @@ , { "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +, { "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } , { "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } , { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.803409 ] } } , @@ -768,19 +764,19 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801070 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799713 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797407 ] } } , @@ -794,7 +790,7 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.789981 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , @@ -804,11 +800,13 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , @@ -816,54 +814,58 @@ , { "type": "Feature", "properties": { "name": "Jackson St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } -, { "type": "Feature", "properties": { "name": "Fillmore St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779907 ] } } +, { "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , { "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way" }, "geometry": { "type": "Point", "coordinates": [ -122.512021, 37.779025 ] } } , +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773327 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "43rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.504210, 37.780993 ] } } , { "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } , +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +, { "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.784995 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } @@ -872,43 +874,41 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779025 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775464 ] } } +, { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } , { "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.779161 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } -, -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach" }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764167 ] } } , @@ -918,11 +918,13 @@ , { "type": "Feature", "properties": { "name": "Judah St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758467 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } , @@ -930,41 +932,41 @@ , { "type": "Feature", "properties": { "name": "Judah St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779670 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } , +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } +, { "type": "Feature", "properties": { "name": "Clement St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } , { "type": "Feature", "properties": { "name": "California St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783638 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } , @@ -976,11 +978,11 @@ , { "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.777872 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493052, 37.777703 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496314, 37.772072 ] } } , @@ -988,19 +990,19 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St" }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , { "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , @@ -1014,55 +1016,57 @@ , { "type": "Feature", "properties": { "name": "25th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } -, { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.784079 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.780247 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779907 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482667, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } , { "type": "Feature", "properties": { "name": "California St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780213 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } , +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484469, 37.778042 ] } } +, { "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776176 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772580 ] } } -, { "type": "Feature", "properties": { "name": "25th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , @@ -1070,24 +1074,28 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.764744 ] } } , +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764710 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , { "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760808 ] } } , +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.760910 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } @@ -1102,36 +1110,34 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761216 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, { "type": "Feature", "properties": { "name": "Noriega St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } -, { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765321 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763116 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480350, 37.765185 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } , +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763658 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } @@ -1140,15 +1146,15 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763692 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761589 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } , @@ -1156,7 +1162,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , @@ -1166,15 +1172,13 @@ , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } -, -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } , @@ -1182,7 +1186,7 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } , @@ -1190,29 +1194,33 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753106 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } , { "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747270 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745573 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753106 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753310 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747677 ] } } , @@ -1220,15 +1228,13 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.743741 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741840 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.741807 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.740008 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } , @@ -1238,13 +1244,17 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } , { "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502751, 37.735358 ] } } , @@ -1254,15 +1264,13 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734578 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } -, { "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , { "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731591 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } , @@ -1270,24 +1278,24 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } -, -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747609 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } , +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748051 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747745 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } @@ -1314,20 +1322,18 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736750 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744250 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } -, -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } -, { "type": "Feature", "properties": { "name": "Vicente St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } @@ -1336,17 +1342,17 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748560 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , @@ -1356,74 +1362,72 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } -, { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.742960 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.733356 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way" }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734238 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , { "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, { "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } , { "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown" }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } -, -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave ." }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.720729 ] } } +, { "type": "Feature", "properties": { "name": "281 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } , { "type": "Feature", "properties": { "name": "170 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } @@ -1432,43 +1436,49 @@ , { "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475715, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720661 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , { "type": "Feature", "properties": { "name": "California St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , { "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , { "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.782485 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , { "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780687 ] } } , +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , { "type": "Feature", "properties": { "name": "California St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } , @@ -1476,7 +1486,7 @@ , { "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "7th Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } , @@ -1484,7 +1494,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , @@ -1492,31 +1502,33 @@ , { "type": "Feature", "properties": { "name": "Balboa St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474170, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777058 ] } } , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } -, { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } , { "type": "Feature", "properties": { "name": "California St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785334 ] } } , @@ -1526,9 +1538,7 @@ , { "type": "Feature", "properties": { "name": "Clement St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780857 ] } } , @@ -1536,7 +1546,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } , @@ -1556,31 +1566,29 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781061 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775430 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Fulton" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } -, { "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , @@ -1590,15 +1598,13 @@ , { "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } , @@ -1606,21 +1612,21 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765796 ] } } , +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.762064 ] } } +, { "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum" }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765999 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } , @@ -1642,13 +1648,15 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.756364 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } , { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } , @@ -1656,11 +1664,11 @@ , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467904, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } -, { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758535 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , @@ -1680,14 +1688,16 @@ , { "type": "Feature", "properties": { "name": "Irving St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.764235 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765965 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 2nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } , +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } , { "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.763319 ] } } @@ -1700,19 +1710,17 @@ , { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } -, -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } -, -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } , { "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } , +{ "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, { "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , @@ -1720,27 +1728,27 @@ , { "type": "Feature", "properties": { "name": "117 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } , { "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787471 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786691 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.784622 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782010 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787335 ] } } , @@ -1748,8 +1756,6 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } @@ -1760,11 +1766,11 @@ , { "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782519 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , @@ -1774,15 +1780,15 @@ , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , @@ -1790,47 +1796,43 @@ , { "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.778754 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } -, { "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } , +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, { "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774175 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440696, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785131 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785334 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783842 ] } } , @@ -1838,37 +1840,39 @@ , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } -, -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780857 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.783978 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781061 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } , @@ -1876,12 +1880,12 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.780213 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779840 ] } } +, { "type": "Feature", "properties": { "name": "Turk St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } -, { "type": "Feature", "properties": { "name": "Mcallister St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } @@ -1890,31 +1894,29 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.770749 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773055 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.771291 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } -, { "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } , @@ -1924,47 +1926,45 @@ , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771766 ] } } -, -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.771597 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "Shrader St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768510 ] } } , +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.764778 ] } } , { "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } , { "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } -, -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , @@ -1972,13 +1972,15 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766271 ] } } , @@ -1986,7 +1988,7 @@ , { "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } , @@ -1994,29 +1996,29 @@ , { "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443357, 37.765456 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761691 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } -, { "type": "Feature", "properties": { "name": "17th St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760910 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , @@ -2042,21 +2044,23 @@ , { "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , { "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766474 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766678 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , @@ -2066,17 +2070,17 @@ , { "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park" }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } , +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +, { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767492 ] } } , { "type": "Feature", "properties": { "name": "14th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.765830 ] } } -, { "type": "Feature", "properties": { "name": "Castro St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765592 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } , { "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } , @@ -2086,9 +2090,13 @@ , { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760571 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761589 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760639 ] } } , @@ -2104,9 +2112,9 @@ , { "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753514 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } , @@ -2114,40 +2122,34 @@ , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "20th St & Collingwood St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.756092 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } -, { "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750528 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.750799 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746727 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } -, { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749035 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } , { "type": "Feature", "properties": { "name": "Ortega St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } @@ -2156,18 +2158,18 @@ , { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } , +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } @@ -2178,27 +2180,23 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.738990 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } -, { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } -, { "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } , +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, { "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } , { "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } -, -{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739601 ] } } , @@ -2206,29 +2204,31 @@ , { "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , { "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S" }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } -, { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } , { "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751614 ] } } +, { "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill" }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747881 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747236 ] } } , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } , @@ -2236,7 +2236,7 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739940 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740211 ] } } , @@ -2248,27 +2248,25 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } -, -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736682 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732439 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471595, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } , { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735460 ] } } , @@ -2278,20 +2276,18 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } -, -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.731048 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } -, { "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } , +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, { "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } @@ -2304,30 +2300,36 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } , { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } -, { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719711 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727178 ] } } , +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719575 ] } } @@ -2338,7 +2340,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460780, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } , @@ -2348,23 +2350,23 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE" }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } -, { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724938 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } , @@ -2380,11 +2382,9 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } -, -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.720050 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } , @@ -2392,9 +2392,9 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720050 ] } } , @@ -2406,14 +2406,18 @@ , { "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.450309, 37.749951 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } , +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +, { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } , +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, { "type": "Feature", "properties": { "name": "Skyview Way & City View Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , { "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752360 ] } } @@ -2422,11 +2426,11 @@ , { "type": "Feature", "properties": { "name": "40 CRESTLINE DR" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750392 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , { "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749306 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749102 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } , @@ -2434,22 +2438,24 @@ , { "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } , { "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.745200 ] } } +, { "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } @@ -2460,8 +2466,6 @@ , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } -, { "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } @@ -2470,11 +2474,11 @@ , { "type": "Feature", "properties": { "name": "Myra Way & Omar Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } -, { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741365 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } , @@ -2482,21 +2486,21 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.736818 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } , { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } -, { "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750731 ] } } , +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, { "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , { "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } , @@ -2504,33 +2508,37 @@ , { "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } , +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, { "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.745268 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751342 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746252 ] } } , @@ -2542,29 +2550,33 @@ , { "type": "Feature", "properties": { "name": "Castro St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743571 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740279 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738582 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738311 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , { "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738243 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Sussex St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } , @@ -2572,29 +2584,29 @@ , { "type": "Feature", "properties": { "name": "Addison St & Digby St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736818 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } , +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } +, { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728400 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } -, -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } , @@ -2602,7 +2614,7 @@ , { "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } , @@ -2610,7 +2622,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , @@ -2618,75 +2630,81 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.723037 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } , { "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721612 ] } } , +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } , +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720593 ] } } , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } -, { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, { "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.734985 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Elk St" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } , +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727722 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734442 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , @@ -2700,84 +2718,98 @@ , { "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.725753 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.723343 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723241 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723580 ] } } , { "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.718658 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723920 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726330 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, { "type": "Feature", "properties": { "name": "Beach St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805613 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } , { "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806563 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807851 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , +{ "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, { "type": "Feature", "properties": { "name": "Powell St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410569, 37.806868 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } , +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } @@ -2786,23 +2818,23 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , { "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , { "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } , @@ -2810,7 +2842,9 @@ , { "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800459 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798425 ] } } , @@ -2818,16 +2852,16 @@ , { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.791914 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } @@ -2838,11 +2872,9 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796390 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } , @@ -2850,7 +2882,9 @@ , { "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } , @@ -2862,37 +2896,35 @@ , { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790421 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.791507 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790625 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790625 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800188 ] } } , @@ -2910,8 +2942,6 @@ , { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804393 ] } } @@ -2920,31 +2950,31 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } , { "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799951 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800019 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800392 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } , @@ -2954,20 +2984,18 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793609 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } @@ -2980,30 +3008,28 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } -, { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } , { "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790150 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } -, -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789201 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789133 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795034 ] } } +, { "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795237 ] } } @@ -3012,107 +3038,105 @@ , { "type": "Feature", "properties": { "name": "Clay St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794627 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.794525 ] } } -, { "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , { "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788319 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , { "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , { "type": "Feature", "properties": { "name": "Bay St & Midway St" }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807173 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , { "type": "Feature", "properties": { "name": "COIT TOWER" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801748 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409024, 37.799273 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.799205 ] } } , +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, { "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } , { "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800663 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } -, -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801070 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797814 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } -, { "type": "Feature", "properties": { "name": "Embarcadero & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.802155 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } , @@ -3122,7 +3146,7 @@ , { "type": "Feature", "properties": { "name": "Broadway & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } , @@ -3132,11 +3156,11 @@ , { "type": "Feature", "properties": { "name": "Broadway & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , @@ -3148,27 +3172,23 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.793236 ] } } +, { "type": "Feature", "properties": { "name": "Kearny St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796119 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792490 ] } } -, -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792863 ] } } , { "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } -, -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } , @@ -3176,29 +3196,25 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } -, -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } -, { "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789811 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795915 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.796051 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795712 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } , @@ -3206,17 +3222,17 @@ , { "type": "Feature", "properties": { "name": "Clay St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.793135 ] } } , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.793270 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } , @@ -3226,33 +3242,37 @@ , { "type": "Feature", "properties": { "name": "Market St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, { "type": "Feature", "properties": { "name": "2nd St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO" }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , @@ -3266,33 +3286,35 @@ , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } , { "type": "Feature", "properties": { "name": "Main St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } +, { "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } , { "type": "Feature", "properties": { "name": "Steuart & Donchee Way" }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793745 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.791914 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } , @@ -3304,23 +3326,23 @@ , { "type": "Feature", "properties": { "name": "Mission & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } -, { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } , { "type": "Feature", "properties": { "name": "Transbay Temporary Terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.789201 ] } } , { "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , { "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn" }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } , @@ -3328,9 +3350,9 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790489 ] } } , @@ -3340,69 +3362,71 @@ , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } +, { "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825480 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374263, 37.823379 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } , { "type": "Feature", "properties": { "name": "9th St & Avenue E" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.824599 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } , +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, { "type": "Feature", "properties": { "name": "Avenue H & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 8th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371774, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION" }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819921 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H" }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } , { "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370830, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811784 ] } } -, { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , { "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810360 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, { "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } , { "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } -, -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782112 ] } } , { "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } , @@ -3410,21 +3434,19 @@ , { "type": "Feature", "properties": { "name": "Starr King Way & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } , { "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } , @@ -3432,8 +3454,6 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } @@ -3442,25 +3462,29 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } , +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } -, { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428250, 37.776244 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.772139 ] } } , @@ -3468,31 +3492,29 @@ , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779365 ] } } -, { "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } , { "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.777092 ] } } +, { "type": "Feature", "properties": { "name": "Oak St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } -, -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Laguna St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , { "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } , { "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } , @@ -3502,7 +3524,7 @@ , { "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } , @@ -3510,37 +3532,35 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } , { "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } -, { "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, { "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785063 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783164 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } -, -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783231 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } , @@ -3550,6 +3570,8 @@ , { "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } , +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } @@ -3558,53 +3580,53 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.786759 ] } } , +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, { "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } , { "type": "Feature", "properties": { "name": "Ellis St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784859 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } -, { "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } , { "type": "Feature", "properties": { "name": "Mason St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786080 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781671 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781807 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } , { "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.780314 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778686 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } , { "type": "Feature", "properties": { "name": "Grove St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.778381 ] } } , @@ -3620,13 +3642,13 @@ , { "type": "Feature", "properties": { "name": "Larkin St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777601 ] } } , { "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } , @@ -3646,11 +3668,9 @@ , { "type": "Feature", "properties": { "name": "Hyde St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } -, -{ "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } , @@ -3660,74 +3680,78 @@ , { "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } , { "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } , +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774751 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769392 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431254, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767763 ] } } , { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.764439 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , { "type": "Feature", "properties": { "name": "Church St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } -, { "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } , { "type": "Feature", "properties": { "name": "16th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763421 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , +{ "type": "Feature", "properties": { "name": "Church St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, { "type": "Feature", "properties": { "name": "Right Of Way/20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.758264 ] } } , { "type": "Feature", "properties": { "name": "Church St & Liberty St" }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } @@ -3736,6 +3760,8 @@ , { "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } , +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, { "type": "Feature", "properties": { "name": "Church St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } @@ -3744,23 +3770,23 @@ , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 13th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } , @@ -3772,35 +3798,33 @@ , { "type": "Feature", "properties": { "name": "Mission St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.762641 ] } } -, { "type": "Feature", "properties": { "name": "South Van Ness &16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } , { "type": "Feature", "properties": { "name": "16 th St & South Van Ness" }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770342 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768103 ] } } , +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765389 ] } } +, { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } , @@ -3808,15 +3832,17 @@ , { "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760639 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419066, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } , @@ -3824,13 +3850,15 @@ , { "type": "Feature", "properties": { "name": "Mission St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754260 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753412 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St" }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } , @@ -3840,8 +3868,6 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } @@ -3850,37 +3876,47 @@ , { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.786318 ] } } , +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, { "type": "Feature", "properties": { "name": "Eddy St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784317 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } , { "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786623 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.786589 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785741 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } , { "type": "Feature", "properties": { "name": "Market St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } , { "type": "Feature", "properties": { "name": "5th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787980 ] } } , @@ -3888,13 +3924,17 @@ , { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784927 ] } } , @@ -3902,39 +3942,35 @@ , { "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } , { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.777940 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.776651 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } , { "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.777329 ] } } , { "type": "Feature", "properties": { "name": "7th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.777940 ] } } , @@ -3946,17 +3982,21 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } , { "type": "Feature", "properties": { "name": "Second Street & Folsom Street" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } , +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785300 ] } } +, { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787403 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } , -{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782689 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782417 ] } } , @@ -3966,9 +4006,7 @@ , { "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782824 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } -, -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , @@ -3978,8 +4016,6 @@ , { "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } -, { "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , { "type": "Feature", "properties": { "name": "King St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } @@ -3996,21 +4032,21 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST" }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , { "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } , @@ -4018,19 +4054,17 @@ , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772614 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , { "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , @@ -4038,71 +4072,71 @@ , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.762200 ] } } , { "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.768747 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } , { "type": "Feature", "properties": { "name": "Kansas St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } , +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +, { "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } , { "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763489 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } -, { "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } , { "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, { "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757382 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757178 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.755414 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Utah St" }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759689 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759417 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.759587 ] } } , @@ -4110,58 +4144,52 @@ , { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } , { "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } -, { "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755889 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } -, { "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766474 ] } } , { "type": "Feature", "properties": { "name": "7th St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762810 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766746 ] } } , { "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769697 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769052 ] } } , { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } , { "type": "Feature", "properties": { "name": "Mariposa & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764371 ] } } @@ -4170,37 +4198,35 @@ , { "type": "Feature", "properties": { "name": "Third St & Mariposa St." }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } -, { "type": "Feature", "properties": { "name": "18th St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } -, { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758128 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } , { "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } , { "type": "Feature", "properties": { "name": "Texas St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } +, { "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Mississippi St" }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , @@ -4216,11 +4242,13 @@ , { "type": "Feature", "properties": { "name": "3rd St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, { "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755041 ] } } , { "type": "Feature", "properties": { "name": "24th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , @@ -4230,18 +4258,14 @@ , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749374 ] } } -, { "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746659 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , { "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746761 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751885 ] } } , { "type": "Feature", "properties": { "name": "24th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } @@ -4250,8 +4274,6 @@ , { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } -, { "type": "Feature", "properties": { "name": "30th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } @@ -4262,57 +4284,55 @@ , { "type": "Feature", "properties": { "name": "30th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } , +{ "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, { "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } , { "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742180 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737089 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.740992 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Fairmount St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , { "type": "Feature", "properties": { "name": "San jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739804 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737429 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750731 ] } } , @@ -4322,17 +4342,19 @@ , { "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746727 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , @@ -4340,37 +4362,33 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752564 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } , +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.752699 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Bessie St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745302 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St" }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739024 ] } } , @@ -4378,7 +4396,9 @@ , { "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744284 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744352 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741433 ] } } , @@ -4388,6 +4408,8 @@ , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741840 ] } } , +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, { "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } , { "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738243 ] } } @@ -4396,7 +4418,7 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St" }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } , { "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , @@ -4406,9 +4428,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , @@ -4416,9 +4436,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730641 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.731387 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } , @@ -4432,9 +4452,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735053 ] } } , @@ -4442,20 +4462,18 @@ , { "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St" }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } -, { "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728740 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430568, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } , +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, { "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } -, { "type": "Feature", "properties": { "name": "Brazil Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720118 ] } } @@ -4468,47 +4486,45 @@ , { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720390 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } , { "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } -, { "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732270 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } +, { "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , { "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729113 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , @@ -4516,13 +4532,15 @@ , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735800 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , { "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729826 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , @@ -4530,37 +4548,39 @@ , { "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725956 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } , +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, { "type": "Feature", "properties": { "name": "Felton St & Amherst St" }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } , { "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , { "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } , { "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } , { "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752835 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , @@ -4582,65 +4602,65 @@ , { "type": "Feature", "properties": { "name": "Kansas St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750697 ] } } , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } , +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } -, { "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } , { "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739533 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Industrial St" }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736343 ] } } , +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } +, { "type": "Feature", "properties": { "name": "25th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751274 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752224 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.751410 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749849 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.747338 ] } } , @@ -4648,23 +4668,27 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750392 ] } } +, { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736207 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , { "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } , @@ -4682,7 +4706,7 @@ , { "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } , @@ -4690,22 +4714,18 @@ , { "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes" }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739940 ] } } , { "type": "Feature", "properties": { "name": "3rd St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } -, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } @@ -4714,10 +4734,12 @@ , { "type": "Feature", "properties": { "name": "Girard ST & Burrows ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.735256 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } @@ -4728,21 +4750,19 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727722 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728061 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.726262 ] } } -, { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , @@ -4760,55 +4780,57 @@ , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } -, { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } , { "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.721442 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733186 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395377, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735053 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734781 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734001 ] } } , @@ -4818,25 +4840,23 @@ , { "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735392 ] } } , +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , { "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } , { "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } , @@ -4852,23 +4872,23 @@ , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722358 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722901 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , @@ -4886,99 +4906,89 @@ , { "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746048 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } -, { "type": "Feature", "properties": { "name": "Mendell St & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } , +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } +, { "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } -, { "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } , { "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , { "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737055 ] } } , +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } , { "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } , { "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St" }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730776 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } -, { "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } -, { "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } -, { "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } , +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731353 ] } } +, { "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } , @@ -4986,23 +4996,23 @@ , { "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726092 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St" }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729860 ] } } -, { "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368684, 37.725345 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725312 ] } } , @@ -5010,37 +5020,35 @@ , { "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.365422, 37.727925 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716316 ] } } , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } -, -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717470 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } , { "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715908 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716180 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } , @@ -5048,31 +5056,33 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , { "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716621 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718149 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.717776 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } , @@ -5080,20 +5090,26 @@ , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } , +{ "type": "Feature", "properties": { "name": "356 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, { "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716248 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } , +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.716995 ] } } +, { "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718217 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } @@ -5104,13 +5120,11 @@ , { "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } , { "type": "Feature", "properties": { "name": "Metro Church Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } , { "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784181 ] } } ] } ] } , @@ -5143,6 +5157,8 @@ { "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.524402, 37.830362 ] } } , { "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House" }, "geometry": { "type": "Point", "coordinates": [ -122.529681, 37.821819 ] } } ] } ] } , @@ -5162,22 +5178,24 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719609 ] } } , +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } -, { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719049 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719728 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719728 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719575 ] } } , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719745 ] } } , +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719592 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } @@ -5194,8 +5212,6 @@ , { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719863 ] } } @@ -5208,7 +5224,9 @@ , { "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } , { "type": "Feature", "properties": { "name": "655 John Muir Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716774 ] } } , @@ -5216,9 +5234,9 @@ , { "type": "Feature", "properties": { "name": "555 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716231 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.495391, 37.716061 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485349, 37.714873 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way" }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714771 ] } } , @@ -5228,9 +5246,9 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485263, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711206 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } , @@ -5246,9 +5264,9 @@ , { "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478311, 37.715841 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477152, 37.715976 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709305 ] } } , { "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } , @@ -5256,14 +5274,14 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474577, 37.715891 ] } } +, { "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.715213 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.715009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.716893 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.716197 ] } } @@ -5272,9 +5290,9 @@ , { "type": "Feature", "properties": { "name": "Randolph St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.470243, 37.714754 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB" }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.714126 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713583 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb" }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713753 ] } } , { "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473161, 37.714058 ] } } , @@ -5292,27 +5310,27 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.714398 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.714313 ] } } , { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466981, 37.714330 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469256, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467368, 37.712514 ] } } -, { "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710358 ] } } , +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } +, { "type": "Feature", "properties": { "name": "Randolph St & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714194 ] } } , { "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.712327 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467110, 37.711648 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St" }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.466896, 37.711631 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St" }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711410 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464921, 37.711631 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711818 ] } } , { "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708728 ] } } , @@ -5324,7 +5342,7 @@ , { "type": "Feature", "properties": { "name": "Randolph St & Bright St" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714228 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713176 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } , { "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711274 ] } } , @@ -5334,12 +5352,12 @@ , { "type": "Feature", "properties": { "name": "274 Sagamore St" }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711444 ] } } , +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.711291 ] } } +, { "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St" }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710120 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.716418 ] } } @@ -5354,9 +5372,11 @@ , { "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458870, 37.711478 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456124, 37.714160 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713277 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456167, 37.713159 ] } } , { "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.455995, 37.713328 ] } } , @@ -5368,9 +5388,9 @@ , { "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.705978 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St" }, "geometry": { "type": "Point", "coordinates": [ -122.460673, 37.706148 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706114 ] } } , { "type": "Feature", "properties": { "name": "Mission St & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459900, 37.706351 ] } } , @@ -5380,15 +5400,15 @@ , { "type": "Feature", "properties": { "name": "Mission St & GoeThe St" }, "geometry": { "type": "Point", "coordinates": [ -122.457068, 37.707353 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St" }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707404 ] } } +, { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718505 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716061 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713311 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Broad St" }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } , @@ -5416,15 +5436,13 @@ , { "type": "Feature", "properties": { "name": "Mission St & Acton St" }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St" }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709611 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716706 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716469 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717148 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716638 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.440932, 37.716333 ] } } , @@ -5442,22 +5460,22 @@ , { "type": "Feature", "properties": { "name": "Naples St & Brunswick St" }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.438228, 37.711156 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St" }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711071 ] } } , { "type": "Feature", "properties": { "name": "Curtis St & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.436039, 37.714245 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Amazon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434752, 37.716095 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +, { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Naples St & Rolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713481 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.714143 ] } } -, { "type": "Feature", "properties": { "name": "Geneva Ave & Naples St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.714024 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Drake St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } @@ -5482,7 +5500,7 @@ , { "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way" }, "geometry": { "type": "Point", "coordinates": [ -122.434580, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708864 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.708966 ] } } , { "type": "Feature", "properties": { "name": "Chicago Way & Naylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , @@ -5510,7 +5528,7 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , @@ -5518,6 +5536,8 @@ , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } , +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.509940, 37.779907 ] } } +, { "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.509897, 37.779890 ] } } , { "type": "Feature", "properties": { "name": "902 Point Lobos Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } @@ -5534,9 +5554,9 @@ , { "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773208 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy" }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771410 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St" }, "geometry": { "type": "Point", "coordinates": [ -122.509382, 37.771342 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771682 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779992 ] } } , @@ -5546,7 +5566,7 @@ , { "type": "Feature", "properties": { "name": "V.A. Hospital" }, "geometry": { "type": "Point", "coordinates": [ -122.505519, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL" }, "geometry": { "type": "Point", "coordinates": [ -122.504103, 37.781824 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781824 ] } } , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505219, 37.779738 ] } } , @@ -5558,6 +5578,8 @@ , { "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503073, 37.779551 ] } } , +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499683, 37.784978 ] } } +, { "type": "Feature", "properties": { "name": "LEGION OF HONOR" }, "geometry": { "type": "Point", "coordinates": [ -122.499597, 37.785012 ] } } , { "type": "Feature", "properties": { "name": "42nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.502987, 37.781078 ] } } @@ -5566,9 +5588,9 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500670, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506249, 37.779042 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775243 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.505949, 37.775209 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775345 ] } } , @@ -5588,8 +5610,6 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503288, 37.771614 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.779144 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } @@ -5600,9 +5620,9 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771885 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497966, 37.771970 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499897, 37.771783 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510283, 37.767882 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497966, 37.771970 ] } } , { "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet" }, "geometry": { "type": "Point", "coordinates": [ -122.510455, 37.767373 ] } } , @@ -5636,7 +5656,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758654 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.505734, 37.756771 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758484 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.505605, 37.754922 ] } } , @@ -5652,25 +5672,23 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.494619, 37.781654 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783418 ] } } , { "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492430, 37.781790 ] } } , +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781993 ] } } +, { "type": "Feature", "properties": { "name": "Clement St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492216, 37.781739 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779789 ] } } -, { "type": "Feature", "properties": { "name": "33rd Ave & Clement St" }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493374, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } , { "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.779551 ] } } , @@ -5686,9 +5704,9 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780772 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779958 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779721 ] } } , { "type": "Feature", "properties": { "name": "California St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783655 ] } } , @@ -5708,7 +5726,7 @@ , { "type": "Feature", "properties": { "name": "Anza St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493031, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.492173, 37.777753 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.493074, 37.777686 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494576, 37.775888 ] } } , @@ -5740,7 +5758,7 @@ , { "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.490714, 37.772190 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772394 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } , @@ -5758,8 +5776,6 @@ , { "type": "Feature", "properties": { "name": "California St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } -, { "type": "Feature", "properties": { "name": "California St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481658, 37.784096 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782061 ] } } @@ -5770,7 +5786,9 @@ , { "type": "Feature", "properties": { "name": "Clement St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.781959 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484834, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484620, 37.779924 ] } } , @@ -5790,9 +5808,9 @@ , { "type": "Feature", "properties": { "name": "Clement St & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479126, 37.782214 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479470, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477496, 37.782282 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479255, 37.780450 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , @@ -5802,6 +5820,8 @@ , { "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } , +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.484491, 37.778042 ] } } +, { "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } , { "type": "Feature", "properties": { "name": "25th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.484362, 37.776176 ] } } @@ -5820,12 +5840,12 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483804, 37.772513 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776431 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } -, { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } @@ -5840,7 +5860,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & Park Presidio" }, "geometry": { "type": "Point", "coordinates": [ -122.476509, 37.772835 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764557 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.495778, 37.762624 ] } } , @@ -5868,7 +5888,7 @@ , { "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493203, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492945, 37.761063 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761029 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757263 ] } } , @@ -5898,9 +5918,9 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486122, 37.765134 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , @@ -5910,8 +5930,6 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.481487, 37.763133 ] } } -, { "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.480371, 37.765185 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479684, 37.765423 ] } } @@ -5930,8 +5948,6 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763675 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } -, { "type": "Feature", "properties": { "name": "Judah St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486508, 37.761351 ] } } , { "type": "Feature", "properties": { "name": "Judah St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.761334 ] } } @@ -5942,7 +5958,7 @@ , { "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.481229, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485993, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.481101, 37.757874 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 27th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } , @@ -5952,7 +5968,7 @@ , { "type": "Feature", "properties": { "name": "Noriega St & 25th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753870 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479856, 37.761538 ] } } , { "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.479985, 37.759587 ] } } , @@ -5964,31 +5980,29 @@ , { "type": "Feature", "properties": { "name": "Judah St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761775 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St" }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761572 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760147 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476766, 37.757891 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } , { "type": "Feature", "properties": { "name": "23rd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.480972, 37.756008 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } -, { "type": "Feature", "properties": { "name": "23rd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754141 ] } } , +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.754328 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476680, 37.756211 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.476423, 37.755991 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } -, { "type": "Feature", "properties": { "name": "47th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752784 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753022 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.507493, 37.750918 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505476, 37.752835 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753022 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752818 ] } } , @@ -5996,7 +6010,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751189 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751020 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753123 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749323 ] } } , @@ -6008,7 +6022,7 @@ , { "type": "Feature", "properties": { "name": "Rivera St & 48th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745353 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747423 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.505090, 37.747457 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.747287 ] } } , @@ -6016,7 +6030,7 @@ , { "type": "Feature", "properties": { "name": "46th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.504790, 37.745421 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502301, 37.753022 ] } } , { "type": "Feature", "properties": { "name": "Noriega St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500155, 37.753123 ] } } , @@ -6028,26 +6042,26 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499812, 37.747542 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499511, 37.747677 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.497623, 37.747626 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504833, 37.743741 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.504661, 37.743571 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.504704, 37.741857 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 46th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741756 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504575, 37.739991 ] } } -, { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , { "type": "Feature", "properties": { "name": "46th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.504404, 37.739821 ] } } , { "type": "Feature", "properties": { "name": "Vicente St & 47th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.505305, 37.738073 ] } } , +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736020 ] } } +, { "type": "Feature", "properties": { "name": "46th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } , { "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo" }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736122 ] } } @@ -6058,9 +6072,9 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500455, 37.741891 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498310, 37.741993 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.500198, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498052, 37.742112 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498310, 37.741993 ] } } , { "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.506807, 37.735477 ] } } , @@ -6068,6 +6082,8 @@ , { "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.504919, 37.735392 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.502773, 37.735358 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735375 ] } } @@ -6076,8 +6092,6 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.499297, 37.734561 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.498953, 37.734120 ] } } -, { "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729741 ] } } , { "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.501700, 37.728214 ] } } @@ -6102,44 +6116,42 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749561 ] } } -, -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.497408, 37.747609 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749798 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494919, 37.747575 ] } } , { "type": "Feature", "properties": { "name": "39th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745964 ] } } , +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.495348, 37.745845 ] } } +, { "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748068 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494404, 37.747762 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493331, 37.747830 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494791, 37.746082 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745828 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, { "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747898 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489040, 37.748000 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748135 ] } } -, { "type": "Feature", "properties": { "name": "30th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.487924, 37.748068 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, { "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487795, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.487667, 37.746150 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494662, 37.744216 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } -, { "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.494533, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.494233, 37.742299 ] } } @@ -6162,7 +6174,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744504 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , { "type": "Feature", "properties": { "name": "30th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744267 ] } } , @@ -6170,7 +6182,7 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740771 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742400 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } , @@ -6182,25 +6194,21 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748373 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481315, 37.748458 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481573, 37.748356 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752716 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479169, 37.748543 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.476208, 37.748577 ] } } -, { "type": "Feature", "properties": { "name": "Quintara St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748712 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746473 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } , @@ -6212,15 +6220,13 @@ , { "type": "Feature", "properties": { "name": "Taraval St & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742774 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.481186, 37.742723 ] } } -, { "type": "Feature", "properties": { "name": "29th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742876 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478783, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475779, 37.743181 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } , { "type": "Feature", "properties": { "name": "Taraval St & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475822, 37.742960 ] } } , @@ -6228,13 +6234,17 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.496765, 37.733899 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496808, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.496636, 37.733543 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St" }, "geometry": { "type": "Point", "coordinates": [ -122.494061, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493632, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733780 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493675, 37.733356 ] } } , { "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } , @@ -6244,7 +6254,7 @@ , { "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493503, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733848 ] } } , @@ -6254,19 +6264,19 @@ , { "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } , +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.485821, 37.734120 ] } } +, { "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483933, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl" }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482173, 37.734289 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.486293, 37.729436 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.477367, 37.734747 ] } } , @@ -6284,9 +6294,9 @@ , { "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU" }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.484877, 37.724225 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR" }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485006, 37.718692 ] } } , @@ -6294,7 +6304,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall" }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721832 ] } } , { "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483075, 37.720763 ] } } , @@ -6312,7 +6322,7 @@ , { "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.476122, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475736, 37.726873 ] } } , { "type": "Feature", "properties": { "name": "90 Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.476852, 37.725973 ] } } , @@ -6322,7 +6332,7 @@ , { "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.479599, 37.719592 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } , { "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } , @@ -6332,15 +6342,17 @@ , { "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784368 ] } } , +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472517, 37.784486 ] } } +, { "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } , { "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , { "type": "Feature", "properties": { "name": "California St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470844, 37.784588 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782570 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475350, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.782485 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.782502 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471144, 37.782689 ] } } , @@ -6364,8 +6376,6 @@ , { "type": "Feature", "properties": { "name": "California St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785012 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465436, 37.784808 ] } } -, { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468998, 37.782790 ] } } , { "type": "Feature", "properties": { "name": "Clement St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.782689 ] } } @@ -6396,7 +6406,7 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474921, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.773191 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474191, 37.772954 ] } } , { "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } , @@ -6404,6 +6414,8 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } , { "type": "Feature", "properties": { "name": "Balboa St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.777058 ] } } @@ -6412,17 +6424,19 @@ , { "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465007, 37.775260 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469814, 37.773174 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773344 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & 10th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773242 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St" }, "geometry": { "type": "Point", "coordinates": [ -122.466080, 37.775023 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.773462 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773479 ] } } , { "type": "Feature", "properties": { "name": "8th Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.773310 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Cornwall St" }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784673 ] } } , @@ -6442,6 +6456,8 @@ , { "type": "Feature", "properties": { "name": "Clement St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.781128 ] } } +, { "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.780891 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780874 ] } } @@ -6450,14 +6466,18 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461145, 37.781044 ] } } , +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } +, { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786029 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785656 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.785589 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783893 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783859 ] } } , +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +, { "type": "Feature", "properties": { "name": "California St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785962 ] } } , { "type": "Feature", "properties": { "name": "California St & Maple St" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } @@ -6476,16 +6496,16 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781078 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781145 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.456424, 37.781264 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St" }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781518 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464235, 37.779161 ] } } -, { "type": "Feature", "properties": { "name": "6th Ave & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } , +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464149, 37.777279 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461960, 37.777262 ] } } , { "type": "Feature", "properties": { "name": "6th Ave & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776973 ] } } @@ -6504,24 +6524,24 @@ , { "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, { "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St" }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777075 ] } } -, { "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458184, 37.777143 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.777635 ] } } , +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777550 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774361 ] } } , { "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW" }, "geometry": { "type": "Point", "coordinates": [ -122.454836, 37.774802 ] } } -, { "type": "Feature", "properties": { "name": "Stanyan St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.774599 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } @@ -6556,12 +6576,10 @@ , { "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)" }, "geometry": { "type": "Point", "coordinates": [ -122.466338, 37.766016 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way" }, "geometry": { "type": "Point", "coordinates": [ -122.466509, 37.765677 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765847 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764286 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766084 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466381, 37.763794 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Irving St" }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763913 ] } } @@ -6588,6 +6606,8 @@ , { "type": "Feature", "properties": { "name": "16th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.473676, 37.756364 ] } } , +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473118, 37.755261 ] } } +, { "type": "Feature", "properties": { "name": "16th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473204, 37.754243 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.472174, 37.754107 ] } } @@ -6600,15 +6620,15 @@ , { "type": "Feature", "properties": { "name": "Lawton St & 11th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.758400 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } -, { "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Kirkham St" }, "geometry": { "type": "Point", "coordinates": [ -122.465951, 37.760232 ] } } , { "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758535 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758518 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.466037, 37.758383 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St" }, "geometry": { "type": "Point", "coordinates": [ -122.465823, 37.758366 ] } } , { "type": "Feature", "properties": { "name": "9th Ave & Moraga St" }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , @@ -6616,12 +6636,12 @@ , { "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } , +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, { "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765948 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461874, 37.766050 ] } } -, { "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464278, 37.764082 ] } } , { "type": "Feature", "properties": { "name": "Irving St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464020, 37.764150 ] } } @@ -6636,7 +6656,9 @@ , { "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766118 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460501, 37.762658 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762725 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762522 ] } } , { "type": "Feature", "properties": { "name": "513 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762793 ] } } , @@ -6646,6 +6668,8 @@ , { "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458012, 37.764354 ] } } , +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457626, 37.766050 ] } } +, { "type": "Feature", "properties": { "name": "Carl St & Hillway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.764998 ] } } , { "type": "Feature", "properties": { "name": "500 Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458742, 37.763302 ] } } @@ -6656,16 +6680,12 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766084 ] } } -, { "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764354 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } , { "type": "Feature", "properties": { "name": "Lawton St & 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463119, 37.758688 ] } } -, { "type": "Feature", "properties": { "name": "455 Warren Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } , { "type": "Feature", "properties": { "name": "1697 7th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } @@ -6674,7 +6694,7 @@ , { "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754650 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461317, 37.755397 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.461488, 37.756907 ] } } , { "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way" }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } , @@ -6684,7 +6704,7 @@ , { "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.456338, 37.755329 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755295 ] } } , { "type": "Feature", "properties": { "name": "California St & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786504 ] } } , @@ -6696,9 +6716,9 @@ , { "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784198 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.450244, 37.786708 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784368 ] } } , @@ -6708,8 +6728,6 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449987, 37.782231 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Collins St" }, "geometry": { "type": "Point", "coordinates": [ -122.449901, 37.782027 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } @@ -6720,17 +6738,15 @@ , { "type": "Feature", "properties": { "name": "Presidio Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.787369 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786233 ] } } -, { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } , { "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446640, 37.785232 ] } } , { "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446167, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784876 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443635, 37.787725 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.784758 ] } } , @@ -6744,9 +6760,9 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782977 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.777753 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Chabot Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.778093 ] } } , @@ -6756,6 +6772,8 @@ , { "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778228 ] } } , +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.775413 ] } } +, { "type": "Feature", "properties": { "name": "Fulton St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } , { "type": "Feature", "properties": { "name": "Fulton St & Parker Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } @@ -6766,9 +6784,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773038 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } -, -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.773242 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St" }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773174 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.450845, 37.773378 ] } } , @@ -6776,14 +6792,12 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773412 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447197, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.778754 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778771 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446897, 37.777533 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445438, 37.778754 ] } } -, { "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446725, 37.777567 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775888 ] } } @@ -6794,15 +6808,15 @@ , { "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443593, 37.779110 ] } } , { "type": "Feature", "properties": { "name": "Central Ave & McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776770 ] } } , { "type": "Feature", "properties": { "name": "McAllister St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.443421, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.774056 ] } } , @@ -6810,9 +6824,9 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445610, 37.771953 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774090 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Central Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774192 ] } } , @@ -6820,16 +6834,18 @@ , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.439988, 37.786284 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785148 ] } } -, { "type": "Feature", "properties": { "name": "Divisadero St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.439816, 37.785334 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439430, 37.785249 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.785402 ] } } +, { "type": "Feature", "properties": { "name": "Sutter St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785521 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.783842 ] } } @@ -6838,9 +6854,7 @@ , { "type": "Feature", "properties": { "name": "Turk St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.440288, 37.779500 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783418 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.439559, 37.783180 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.439516, 37.783164 ] } } , @@ -6862,7 +6876,7 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785996 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.786080 ] } } , @@ -6870,9 +6884,9 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.784724 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781078 ] } } , @@ -6882,6 +6896,8 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432392, 37.781518 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432220, 37.781502 ] } } @@ -6910,7 +6926,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Fulton St" }, "geometry": { "type": "Point", "coordinates": [ -122.438056, 37.776770 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441490, 37.774565 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774497 ] } } , @@ -6918,7 +6934,7 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Broderick St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.774989 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , @@ -6926,9 +6942,9 @@ , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.437370, 37.771291 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.778262 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.778144 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775209 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.434924, 37.778262 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.436254, 37.775142 ] } } , @@ -6950,7 +6966,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.771766 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.433851, 37.771597 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.769171 ] } } , @@ -6960,7 +6976,7 @@ , { "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453463, 37.768323 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St" }, "geometry": { "type": "Point", "coordinates": [ -122.453249, 37.766406 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.453334, 37.768238 ] } } , { "type": "Feature", "properties": { "name": "Stanyan St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.452905, 37.766440 ] } } , @@ -6968,7 +6984,7 @@ , { "type": "Feature", "properties": { "name": "Cole St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769884 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.769714 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Waller St" }, "geometry": { "type": "Point", "coordinates": [ -122.450416, 37.768527 ] } } , @@ -6996,7 +7012,7 @@ , { "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764761 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.449772, 37.764608 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Alma St" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763133 ] } } , @@ -7012,6 +7028,8 @@ , { "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.767254 ] } } , +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767136 ] } } +, { "type": "Feature", "properties": { "name": "Ashbury St & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } , { "type": "Feature", "properties": { "name": "Masonic Ave & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.770342 ] } } @@ -7022,7 +7040,7 @@ , { "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442949, 37.770426 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St" }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767339 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St" }, "geometry": { "type": "Point", "coordinates": [ -122.444837, 37.767509 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carl St" }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766288 ] } } , @@ -7032,7 +7050,7 @@ , { "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.765134 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.446082, 37.764286 ] } } , { "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } , @@ -7040,7 +7058,7 @@ , { "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443378, 37.765439 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.764490 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West" }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765813 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } , @@ -7048,7 +7066,7 @@ , { "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.442906, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St" }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761674 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.449214, 37.761708 ] } } , { "type": "Feature", "properties": { "name": "Cole St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449043, 37.760927 ] } } , @@ -7060,6 +7078,8 @@ , { "type": "Feature", "properties": { "name": "Carmel St & Belvedere St" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.760910 ] } } , +{ "type": "Feature", "properties": { "name": "17th St & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761843 ] } } +, { "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "Clayton St & Carmel St" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.760944 ] } } @@ -7068,7 +7088,7 @@ , { "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758790 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.758671 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St" }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758654 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , @@ -7102,17 +7122,19 @@ , { "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.767729 ] } } , +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.768662 ] } } +, { "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E" }, "geometry": { "type": "Point", "coordinates": [ -122.438314, 37.768832 ] } } , { "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.768052 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766491 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.766813 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.766695 ] } } , { "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way" }, "geometry": { "type": "Point", "coordinates": [ -122.438142, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.437198, 37.767288 ] } } , { "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way" }, "geometry": { "type": "Point", "coordinates": [ -122.441018, 37.765355 ] } } , @@ -7120,8 +7142,6 @@ , { "type": "Feature", "properties": { "name": "17th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.769171 ] } } -, { "type": "Feature", "properties": { "name": "14th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435825, 37.767373 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.767611 ] } } @@ -7146,7 +7166,7 @@ , { "type": "Feature", "properties": { "name": "Market St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435267, 37.762539 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762454 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , @@ -7156,9 +7176,11 @@ , { "type": "Feature", "properties": { "name": "Market St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763913 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763947 ] } } +, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761708 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761606 ] } } , { "type": "Feature", "properties": { "name": "Corbett Ave & Ord St" }, "geometry": { "type": "Point", "coordinates": [ -122.440202, 37.761894 ] } } , @@ -7166,24 +7188,26 @@ , { "type": "Feature", "properties": { "name": "18th St & Hattie St" }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760486 ] } } , +{ "type": "Feature", "properties": { "name": "Eureka St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.438271, 37.761589 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438185, 37.760622 ] } } , { "type": "Feature", "properties": { "name": "18th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.437284, 37.760690 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759027 ] } } -, { "type": "Feature", "properties": { "name": "Grand View Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.440417, 37.755041 ] } } , +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.441146, 37.754040 ] } } +, { "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.754006 ] } } , { "type": "Feature", "properties": { "name": "20th St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437842, 37.757551 ] } } , { "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755974 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755804 ] } } -, { "type": "Feature", "properties": { "name": "21st St & Douglass St" }, "geometry": { "type": "Point", "coordinates": [ -122.439001, 37.755363 ] } } , +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St" }, "geometry": { "type": "Point", "coordinates": [ -122.438743, 37.753514 ] } } +, { "type": "Feature", "properties": { "name": "Eureka St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , { "type": "Feature", "properties": { "name": "18th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.435138, 37.760944 ] } } @@ -7202,14 +7226,14 @@ , { "type": "Feature", "properties": { "name": "Castro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.757636 ] } } , +{ "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.756092 ] } } +, { "type": "Feature", "properties": { "name": "Castro St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.434452, 37.755957 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , { "type": "Feature", "properties": { "name": "Castro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754413 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.473075, 37.752394 ] } } -, { "type": "Feature", "properties": { "name": "16th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.750528 ] } } , { "type": "Feature", "properties": { "name": "15th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.471960, 37.750799 ] } } @@ -7220,19 +7244,19 @@ , { "type": "Feature", "properties": { "name": "Quintara St & 16th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748712 ] } } , +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746982 ] } } +, { "type": "Feature", "properties": { "name": "17th Ave & Rivera St" }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746744 ] } } , { "type": "Feature", "properties": { "name": "17th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473505, 37.745064 ] } } -, { "type": "Feature", "properties": { "name": "15th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.471831, 37.748899 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "Santiago St & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745081 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468355, 37.749035 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.745030 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467668, 37.749086 ] } } , @@ -7242,13 +7266,15 @@ , { "type": "Feature", "properties": { "name": "9th Ave & Ortega St" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, { "type": "Feature", "properties": { "name": "10th Ave & Pacheco St" }, "geometry": { "type": "Point", "coordinates": [ -122.466552, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466424, 37.749153 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St" }, "geometry": { "type": "Point", "coordinates": [ -122.466252, 37.749323 ] } } , { "type": "Feature", "properties": { "name": "Quintara St & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469642, 37.748831 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } , @@ -7260,6 +7286,8 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741484 ] } } , +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, { "type": "Feature", "properties": { "name": "15th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.471402, 37.743062 ] } } , { "type": "Feature", "properties": { "name": "14th Ave & Taraval St" }, "geometry": { "type": "Point", "coordinates": [ -122.470286, 37.743402 ] } } @@ -7272,13 +7300,11 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Vicente St" }, "geometry": { "type": "Point", "coordinates": [ -122.475522, 37.739007 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } -, { "type": "Feature", "properties": { "name": "19th Ave & Wawona St" }, "geometry": { "type": "Point", "coordinates": [ -122.475135, 37.737344 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.470028, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.470372, 37.736376 ] } } , { "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } , @@ -7298,7 +7324,7 @@ , { "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465909, 37.740754 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.465737, 37.740839 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station" }, "geometry": { "type": "Point", "coordinates": [ -122.465780, 37.740788 ] } } , { "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469041, 37.738090 ] } } , @@ -7312,7 +7338,7 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.465265, 37.739550 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750952 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751121 ] } } , { "type": "Feature", "properties": { "name": "Forest Hill Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748169 ] } } , @@ -7332,6 +7358,8 @@ , { "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA" }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747898 ] } } , +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.747253 ] } } +, { "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.458656, 37.747100 ] } } , { "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp" }, "geometry": { "type": "Point", "coordinates": [ -122.457111, 37.747813 ] } } @@ -7340,7 +7368,9 @@ , { "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745285 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.454665, 37.747796 ] } } , { "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455351, 37.746371 ] } } , @@ -7352,13 +7382,13 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.740398 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740093 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.463677, 37.739923 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740228 ] } } , { "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way" }, "geometry": { "type": "Point", "coordinates": [ -122.460072, 37.739380 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459257, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459214, 37.740076 ] } } , { "type": "Feature", "properties": { "name": "126 Miraloma Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.461445, 37.737734 ] } } , @@ -7370,28 +7400,30 @@ , { "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740873 ] } } , +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.743469 ] } } +, { "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.455480, 37.743113 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } -, { "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455781, 37.741976 ] } } , { "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD" }, "geometry": { "type": "Point", "coordinates": [ -122.453935, 37.736682 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave." }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475264, 37.734493 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.734713 ] } } , { "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474492, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475092, 37.732779 ] } } , +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732456 ] } } +, { "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474792, 37.732117 ] } } , { "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.473719, 37.732015 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735036 ] } } -, { "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471874, 37.734781 ] } } , { "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle" }, "geometry": { "type": "Point", "coordinates": [ -122.471616, 37.734798 ] } } @@ -7410,8 +7442,6 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474964, 37.731167 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474749, 37.731150 ] } } -, { "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } , { "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.474535, 37.731031 ] } } @@ -7422,8 +7452,6 @@ , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.471659, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } -, { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734696 ] } } , { "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way" }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } @@ -7450,7 +7478,9 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Winston Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474835, 37.727195 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721187 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721187 ] } } , { "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.721102 ] } } , @@ -7464,9 +7494,7 @@ , { "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472947, 37.721595 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr." }, "geometry": { "type": "Point", "coordinates": [ -122.475564, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719694 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.475307, 37.720220 ] } } , { "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } , @@ -7476,7 +7504,7 @@ , { "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471788, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St" }, "geometry": { "type": "Point", "coordinates": [ -122.471530, 37.719711 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719728 ] } } , { "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St" }, "geometry": { "type": "Point", "coordinates": [ -122.472260, 37.719558 ] } } , @@ -7486,6 +7514,8 @@ , { "type": "Feature", "properties": { "name": "Garfield St & Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469728, 37.719728 ] } } , +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St" }, "geometry": { "type": "Point", "coordinates": [ -122.469943, 37.719575 ] } } +, { "type": "Feature", "properties": { "name": "Garfield St & Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.467926, 37.719745 ] } } , { "type": "Feature", "properties": { "name": "Garfield St&Vernon St" }, "geometry": { "type": "Point", "coordinates": [ -122.468140, 37.719592 ] } } @@ -7496,9 +7526,7 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.464535, 37.732287 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.460802, 37.735494 ] } } -, -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.460544, 37.735307 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way" }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } , { "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459643, 37.734561 ] } } , @@ -7516,7 +7544,7 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732083 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731099 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459085, 37.730691 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.457325, 37.731116 ] } } , @@ -7524,11 +7552,11 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455652, 37.731438 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St" }, "geometry": { "type": "Point", "coordinates": [ -122.464364, 37.725973 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way" }, "geometry": { "type": "Point", "coordinates": [ -122.464063, 37.726007 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724955 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.461402, 37.724904 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.461059, 37.724955 ] } } , @@ -7550,7 +7578,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720101 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St" }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723462 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.458055, 37.720050 ] } } , @@ -7560,9 +7588,11 @@ , { "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721934 ] } } , +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456038, 37.721764 ] } } +, { "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.720101 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.455909, 37.720135 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , { "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.454965, 37.720067 ] } } , @@ -7580,9 +7610,9 @@ , { "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.745760 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745319 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745319 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452219, 37.745624 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.452090, 37.745081 ] } } , @@ -7602,7 +7632,7 @@ , { "type": "Feature", "properties": { "name": "925 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752072 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749289 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444923, 37.749119 ] } } , @@ -7612,25 +7642,27 @@ , { "type": "Feature", "properties": { "name": "6 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.748034 ] } } +, { "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.447627, 37.746354 ] } } , { "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748068 ] } } , +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, { "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA" }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } , { "type": "Feature", "properties": { "name": "Portola Dr & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.444193, 37.747151 ] } } , { "type": "Feature", "properties": { "name": "120 Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } -, { "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746880 ] } } , -{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.443206, 37.746676 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR" }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , { "type": "Feature", "properties": { "name": "Duncan St & Cameo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.443035, 37.745183 ] } } , @@ -7650,8 +7682,6 @@ , { "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way" }, "geometry": { "type": "Point", "coordinates": [ -122.450888, 37.738192 ] } } -, { "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.451489, 37.737819 ] } } @@ -7672,22 +7702,22 @@ , { "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way" }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739889 ] } } , +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, { "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.446039, 37.738922 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way" }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.446339, 37.737479 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445867, 37.736835 ] } } -, { "type": "Feature", "properties": { "name": "636 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } , +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, { "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.736614 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.442563, 37.752479 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752411 ] } } -, { "type": "Feature", "properties": { "name": "Fountain St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.441661, 37.750748 ] } } , { "type": "Feature", "properties": { "name": "Grand View Ave & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.442605, 37.749255 ] } } @@ -7696,8 +7726,6 @@ , { "type": "Feature", "properties": { "name": "25th St & Hoffman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.437584, 37.752784 ] } } -, { "type": "Feature", "properties": { "name": "23rd St & Eureka St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "Douglass St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.438529, 37.751121 ] } } @@ -7712,6 +7740,8 @@ , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } , +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, { "type": "Feature", "properties": { "name": "Diamond St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436383, 37.751257 ] } } , { "type": "Feature", "properties": { "name": "24th St & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751088 ] } } @@ -7720,9 +7750,9 @@ , { "type": "Feature", "properties": { "name": "Diamond St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752886 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434237, 37.752072 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.752767 ] } } , { "type": "Feature", "properties": { "name": "Castro St & Elizabeth St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } , @@ -7736,7 +7766,7 @@ , { "type": "Feature", "properties": { "name": "Castro St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749798 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748848 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749662 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748678 ] } } , @@ -7756,21 +7786,23 @@ , { "type": "Feature", "properties": { "name": "26th St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } -, { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743588 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.437499, 37.743622 ] } } , { "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts" }, "geometry": { "type": "Point", "coordinates": [ -122.437241, 37.738277 ] } } , +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744640 ] } } +, { "type": "Feature", "properties": { "name": "Diamond St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.743249 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.741840 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St" }, "geometry": { "type": "Point", "coordinates": [ -122.435739, 37.741586 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435524, 37.741620 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.435868, 37.740279 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435353, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740195 ] } } , { "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way" }, "geometry": { "type": "Point", "coordinates": [ -122.436898, 37.738599 ] } } , @@ -7780,9 +7812,11 @@ , { "type": "Feature", "properties": { "name": "Diamond St & Conrad St" }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740025 ] } } +, { "type": "Feature", "properties": { "name": "Addison St & Farnum St" }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740059 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.434623, 37.738803 ] } } , { "type": "Feature", "properties": { "name": "Diamond St & Arbor St" }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } , @@ -7796,7 +7830,7 @@ , { "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432177, 37.736835 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.736071 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } , @@ -7808,10 +7842,12 @@ , { "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453077, 37.731472 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.453291, 37.731608 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451446, 37.731608 ] } } , +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729945 ] } } +, { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } , { "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } @@ -7820,12 +7856,8 @@ , { "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St" }, "geometry": { "type": "Point", "coordinates": [ -122.451231, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731608 ] } } -, { "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731404 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } -, { "type": "Feature", "properties": { "name": "Foerster St & Judson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448742, 37.728485 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St" }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735681 ] } } @@ -7836,17 +7868,17 @@ , { "type": "Feature", "properties": { "name": "900 Teresita Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733950 ] } } , +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734561 ] } } +, { "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445567, 37.734001 ] } } , { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.731625 ] } } , { "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734459 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731642 ] } } -, { "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.731472 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452261, 37.726041 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St" }, "geometry": { "type": "Point", "coordinates": [ -122.443979, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)" }, "geometry": { "type": "Point", "coordinates": [ -122.452433, 37.725532 ] } } , @@ -7866,15 +7898,15 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449772, 37.723020 ] } } , +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.452991, 37.720084 ] } } +, { "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719694 ] } } , { "type": "Feature", "properties": { "name": "Howth St & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451103, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St" }, "geometry": { "type": "Point", "coordinates": [ -122.450931, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "Howth St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721934 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.450073, 37.721968 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Howth St" }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722851 ] } } , @@ -7884,21 +7916,17 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723020 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723088 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444408, 37.723224 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721051 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART" }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } -, { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720950 ] } } , { "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446210, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446468, 37.720831 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.447541, 37.719694 ] } } , @@ -7916,8 +7944,6 @@ , { "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.446554, 37.720610 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.446682, 37.720457 ] } } -, { "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean" }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722749 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.444966, 37.722851 ] } } @@ -7942,15 +7968,15 @@ , { "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St" }, "geometry": { "type": "Point", "coordinates": [ -122.437756, 37.731659 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729028 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St" }, "geometry": { "type": "Point", "coordinates": [ -122.442133, 37.731506 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728994 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440031, 37.729028 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440073, 37.728808 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727739 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439601, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St" }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731506 ] } } , { "type": "Feature", "properties": { "name": "Baden St & Circular Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } , @@ -7960,7 +7986,7 @@ , { "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435696, 37.733916 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734459 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St" }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734459 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , @@ -7978,25 +8004,25 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.433164, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St" }, "geometry": { "type": "Point", "coordinates": [ -122.441618, 37.726822 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442434, 37.725685 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442520, 37.725753 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725973 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441189, 37.727145 ] } } +, { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441318, 37.723360 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.441232, 37.723258 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.440803, 37.723428 ] } } -, { "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.438657, 37.723665 ] } } , { "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718641 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439086, 37.719150 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.439258, 37.718641 ] } } , { "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } , @@ -8004,8 +8030,6 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St" }, "geometry": { "type": "Point", "coordinates": [ -122.435181, 37.724310 ] } } -, { "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724650 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724718 ] } } @@ -8014,7 +8038,7 @@ , { "type": "Feature", "properties": { "name": "Ocean Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723937 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE" }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723903 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Francis St" }, "geometry": { "type": "Point", "coordinates": [ -122.433636, 37.726347 ] } } , @@ -8024,17 +8048,17 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.433078, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St" }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722375 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.437112, 37.721459 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Paris St" }, "geometry": { "type": "Point", "coordinates": [ -122.434280, 37.722409 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432950, 37.721612 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.778618 ] } } , @@ -8052,12 +8076,12 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } -, { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } @@ -8070,7 +8094,7 @@ , { "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , @@ -8084,6 +8108,8 @@ , { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } , +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, { "type": "Feature", "properties": { "name": "Noe St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } , { "type": "Feature", "properties": { "name": "Noe St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } @@ -8096,15 +8122,15 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } , +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.730641 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , { "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.430589, 37.724751 ] } } , @@ -8114,9 +8140,9 @@ , { "type": "Feature", "properties": { "name": "Naples St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722511 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir." }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718472 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } , { "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.478740, 37.717962 ] } } , @@ -8128,12 +8154,8 @@ , { "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717317 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.472818, 37.717368 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456210, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718166 ] } } -, { "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St" }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717725 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.448657, 37.718505 ] } } @@ -8142,6 +8164,8 @@ , { "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717657 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & France Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.717674 ] } } +, { "type": "Feature", "properties": { "name": "Russia Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.430117, 37.718166 ] } } ] } , @@ -8166,14 +8190,16 @@ , { "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.502129, 37.836446 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493804, 37.833700 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.494018, 37.833870 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833599 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.493889, 37.833599 ] } } , { "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } , { "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.483375, 37.833141 ] } } , +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483547, 37.833090 ] } } +, { "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign" }, "geometry": { "type": "Point", "coordinates": [ -122.483289, 37.832836 ] } } , { "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove" }, "geometry": { "type": "Point", "coordinates": [ -122.484019, 37.829514 ] } } @@ -8182,8 +8208,6 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.475865, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } -, { "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.475994, 37.803749 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.482603, 37.788454 ] } } @@ -8194,7 +8218,7 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792304 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807224 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot" }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807563 ] } } , { "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA" }, "geometry": { "type": "Point", "coordinates": [ -122.475049, 37.806563 ] } } , @@ -8204,8 +8228,6 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } -, { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650" }, "geometry": { "type": "Point", "coordinates": [ -122.466595, 37.803596 ] } } , { "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St" }, "geometry": { "type": "Point", "coordinates": [ -122.467067, 37.801782 ] } } @@ -8214,7 +8236,9 @@ , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801019 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799832 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639" }, "geometry": { "type": "Point", "coordinates": [ -122.462218, 37.802901 ] } } , { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.459128, 37.800120 ] } } , @@ -8222,35 +8246,31 @@ , { "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797933 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457755, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank" }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803799 ] } } , { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456810, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.801765 ] } } -, { "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456768, 37.801629 ] } } , +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456381, 37.801375 ] } } +, { "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX" }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } , { "type": "Feature", "properties": { "name": "Halleck St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center" }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } -, { "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802070 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } , { "type": "Feature", "properties": { "name": "220 Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454708, 37.801731 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters" }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } -, { "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102" }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } , { "type": "Feature", "properties": { "name": "Graham St & Moraga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.459042, 37.797882 ] } } , { "type": "Feature", "properties": { "name": "Moraga Ave & Graham St" }, "geometry": { "type": "Point", "coordinates": [ -122.458956, 37.797730 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St" }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } , { "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800748 ] } } , @@ -8258,6 +8278,8 @@ , { "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.456295, 37.798391 ] } } , +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, { "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.455094, 37.798238 ] } } , { "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB" }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800341 ] } } @@ -8274,7 +8296,7 @@ , { "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445223, 37.803630 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443893, 37.804545 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.445180, 37.803409 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803766 ] } } , @@ -8282,9 +8304,9 @@ , { "type": "Feature", "properties": { "name": "Broderick St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802477 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.444794, 37.801545 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.443292, 37.802850 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.443507, 37.802833 ] } } , { "type": "Feature", "properties": { "name": "Divisadero St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.443335, 37.801901 ] } } , @@ -8292,7 +8314,7 @@ , { "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.446940, 37.800324 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798408 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.447155, 37.798543 ] } } , { "type": "Feature", "properties": { "name": "Lyon St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797153 ] } } , @@ -8304,9 +8326,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.443120, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442734, 37.800052 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442863, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800036 ] } } , { "type": "Feature", "properties": { "name": "Lombard & Richardson Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.445095, 37.798662 ] } } , @@ -8314,7 +8334,9 @@ , { "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.451704, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop" }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796475 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St" }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795593 ] } } , { "type": "Feature", "properties": { "name": "Union St & Baker St" }, "geometry": { "type": "Point", "coordinates": [ -122.445309, 37.795898 ] } } , @@ -8336,7 +8358,7 @@ , { "type": "Feature", "properties": { "name": "Scott St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.441833, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441275, 37.800103 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } , { "type": "Feature", "properties": { "name": "Chestnut St & Scott St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } , @@ -8346,6 +8368,8 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799290 ] } } , +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, { "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way" }, "geometry": { "type": "Point", "coordinates": [ -122.437456, 37.800714 ] } } , { "type": "Feature", "properties": { "name": "Union St & STEINER ST" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } @@ -8354,14 +8378,14 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802816 ] } } +, { "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St" }, "geometry": { "type": "Point", "coordinates": [ -122.436683, 37.802630 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.436512, 37.802392 ] } } , { "type": "Feature", "properties": { "name": "BAY St & WEBSTER St" }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802748 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.433593, 37.805410 ] } } -, { "type": "Feature", "properties": { "name": "Buchanan St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } , { "type": "Feature", "properties": { "name": "Buchanan St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.803426 ] } } @@ -8374,15 +8398,15 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436469, 37.800883 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436168, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Lombard St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.436125, 37.799713 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.435954, 37.799696 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800951 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435610, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.800934 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.434494, 37.801104 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796780 ] } } , @@ -8390,17 +8414,15 @@ , { "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435653, 37.797119 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.796967 ] } } , { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432091, 37.797577 ] } } , { "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.442176, 37.796170 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.438872, 37.796577 ] } } , { "type": "Feature", "properties": { "name": "Steiner St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , @@ -8408,7 +8430,7 @@ , { "type": "Feature", "properties": { "name": "Divisadero St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.440889, 37.789964 ] } } , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } , @@ -8418,13 +8440,13 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788505 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.437027, 37.795932 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794881 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.436855, 37.795848 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794915 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434838, 37.794152 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794135 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.434881, 37.793796 ] } } , @@ -8444,7 +8466,7 @@ , { "type": "Feature", "properties": { "name": "California St & Pierce St" }, "geometry": { "type": "Point", "coordinates": [ -122.436812, 37.788454 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.435567, 37.788844 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789319 ] } } , { "type": "Feature", "properties": { "name": "California St & Steiner St" }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } , @@ -8452,9 +8474,9 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434323, 37.789828 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.433937, 37.789743 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789828 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "California St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.434151, 37.788929 ] } } , @@ -8466,9 +8488,9 @@ , { "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar" }, "geometry": { "type": "Point", "coordinates": [ -122.485135, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St" }, "geometry": { "type": "Point", "coordinates": [ -122.456553, 37.786911 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787488 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St" }, "geometry": { "type": "Point", "coordinates": [ -122.449944, 37.786911 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Walnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.447970, 37.788014 ] } } , @@ -8480,6 +8502,8 @@ , { "type": "Feature", "properties": { "name": "California St & Divisadero St" }, "geometry": { "type": "Point", "coordinates": [ -122.440717, 37.787946 ] } } , +{ "type": "Feature", "properties": { "name": "Divisadero St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.440503, 37.787980 ] } } +, { "type": "Feature", "properties": { "name": "Divisadero St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.433550, 37.788047 ] } } @@ -8488,14 +8512,16 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.801358 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430847, 37.790184 ] } } @@ -8512,22 +8538,20 @@ , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719371 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718845 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718777 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.409046, 37.719388 ] } } , { "type": "Feature", "properties": { "name": "Mansell St & Hamilton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719897 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719388 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } , { "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } @@ -8536,8 +8560,6 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719931 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } -, { "type": "Feature", "properties": { "name": "Moscow St & Italy Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432306, 37.715128 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.712938 ] } } @@ -8566,9 +8588,9 @@ , { "type": "Feature", "properties": { "name": "1650 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426770, 37.711105 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.711071 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } , @@ -8590,7 +8612,7 @@ , { "type": "Feature", "properties": { "name": "Geneva Ave&Carter St" }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E" }, "geometry": { "type": "Point", "coordinates": [ -122.422135, 37.708983 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } , { "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.421749, 37.708660 ] } } , @@ -8600,43 +8622,43 @@ , { "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.712598 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419431, 37.710018 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711852 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.713396 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St" }, "geometry": { "type": "Point", "coordinates": [ -122.415183, 37.713532 ] } } , { "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.712021 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Valley Middle School" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.716214 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.413466, 37.715026 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713243 ] } } , { "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713345 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } -, { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.711054 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710969 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St" }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712768 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.712242 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712191 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.710731 ] } } , @@ -8648,9 +8670,9 @@ , { "type": "Feature", "properties": { "name": "Santos St & Velasco Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419302, 37.709865 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708490 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.708490 ] } } , { "type": "Feature", "properties": { "name": "Santos St & Geneva Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.708643 ] } } , @@ -8678,7 +8700,7 @@ , { "type": "Feature", "properties": { "name": "Delta St & Tioga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407715, 37.717283 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405784, 37.716655 ] } } , { "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717351 ] } } , @@ -8698,24 +8720,22 @@ , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409604, 37.710205 ] } } , +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St" }, "geometry": { "type": "Point", "coordinates": [ -122.409518, 37.710001 ] } } +, { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } , { "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408531, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.711444 ] } } , { "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711478 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406728, 37.713855 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } , { "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713210 ] } } , { "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405140, 37.712564 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St" }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711885 ] } } -, { "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.710561 ] } } , { "type": "Feature", "properties": { "name": "367 Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } @@ -8728,7 +8748,7 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.716265 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St" }, "geometry": { "type": "Point", "coordinates": [ -122.401235, 37.716350 ] } } , { "type": "Feature", "properties": { "name": "3800 San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , @@ -8746,7 +8766,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712225 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD" }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712361 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.712174 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712293 ] } } , @@ -8758,21 +8778,21 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713549 ] } } , +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.712904 ] } } +, { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , { "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.712021 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399175, 37.711580 ] } } -, { "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.398961, 37.711614 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709848 ] } } , { "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406986, 37.709339 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.708966 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.709339 ] } } , -{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.708830 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405097, 37.708966 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.404625, 37.709526 ] } } , @@ -8786,7 +8806,7 @@ , { "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.396600, 37.710969 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711240 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394755, 37.710884 ] } } , { "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718030 ] } } , @@ -8805,6 +8825,8 @@ { "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } , { "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way" }, "geometry": { "type": "Point", "coordinates": [ -122.386987, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.712123 ] } } ] } ] } , @@ -8818,14 +8840,16 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.783978 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783011 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783180 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781722 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781518 ] } } , { "type": "Feature", "properties": { "name": "Eddy St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } @@ -8848,6 +8872,8 @@ , { "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.764490 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.433336, 37.763947 ] } } +, { "type": "Feature", "properties": { "name": "17th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432992, 37.762641 ] } } , { "type": "Feature", "properties": { "name": "18th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.432907, 37.760961 ] } } @@ -8856,12 +8882,10 @@ , { "type": "Feature", "properties": { "name": "24th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748271 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St" }, "geometry": { "type": "Point", "coordinates": [ -122.431662, 37.749662 ] } } , { "type": "Feature", "properties": { "name": "164 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.432821, 37.738175 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736835 ] } } -, { "type": "Feature", "properties": { "name": "Chenery St & Castro St" }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734595 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Natick St" }, "geometry": { "type": "Point", "coordinates": [ -122.431920, 37.734578 ] } } @@ -8876,29 +8900,33 @@ , { "type": "Feature", "properties": { "name": "Persia Ave & Madrid St" }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } , +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, { "type": "Feature", "properties": { "name": "Bush St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789150 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } -, { "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788437 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788404 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788200 ] } } , @@ -8922,9 +8950,11 @@ , { "type": "Feature", "properties": { "name": "2nd St & Stevenson St" }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, { "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788539 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789201 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , @@ -8932,16 +8962,18 @@ , { "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788861 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.786504 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429860, 37.786572 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431018, 37.784639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428443, 37.786640 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, { "type": "Feature", "properties": { "name": "Post St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427671, 37.785775 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.784842 ] } } @@ -8950,11 +8982,11 @@ , { "type": "Feature", "properties": { "name": "Post St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.426641, 37.785894 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.781756 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.782129 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } , { "type": "Feature", "properties": { "name": "Post St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.786114 ] } } , @@ -8964,12 +8996,12 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } , { "type": "Feature", "properties": { "name": "Post St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421448, 37.786572 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.421319, 37.786097 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.785775 ] } } @@ -8982,8 +9014,6 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784673 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.782400 ] } } , { "type": "Feature", "properties": { "name": "808 McAllister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425525, 37.779483 ] } } @@ -9004,6 +9034,8 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.430503, 37.778839 ] } } , +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429602, 37.778856 ] } } +, { "type": "Feature", "properties": { "name": "Fillmore St & Grove St" }, "geometry": { "type": "Point", "coordinates": [ -122.431362, 37.776990 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } @@ -9014,39 +9046,39 @@ , { "type": "Feature", "properties": { "name": "Hayes St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } , +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776057 ] } } +, { "type": "Feature", "properties": { "name": "Hayes St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776024 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426941, 37.779178 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } -, { "type": "Feature", "properties": { "name": "Grove St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777380 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.428272, 37.776261 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.776244 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773751 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774260 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430761, 37.772139 ] } } , { "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772190 ] } } , +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St" }, "geometry": { "type": "Point", "coordinates": [ -122.430332, 37.772021 ] } } +, { "type": "Feature", "properties": { "name": "Haight St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.772072 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772428 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779382 ] } } -, { "type": "Feature", "properties": { "name": "Grove St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777550 ] } } , { "type": "Feature", "properties": { "name": "Hayes St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776532 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423294, 37.777737 ] } } , { "type": "Feature", "properties": { "name": "Fell St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } , @@ -9058,7 +9090,7 @@ , { "type": "Feature", "properties": { "name": "Page St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773819 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.424195, 37.772971 ] } } , { "type": "Feature", "properties": { "name": "Haight St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772767 ] } } , @@ -9068,7 +9100,7 @@ , { "type": "Feature", "properties": { "name": "Page St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422521, 37.774022 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773072 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773174 ] } } , { "type": "Feature", "properties": { "name": "Page St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774192 ] } } , @@ -9080,7 +9112,7 @@ , { "type": "Feature", "properties": { "name": "Mccoppin St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } , @@ -9090,7 +9122,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786131 ] } } , { "type": "Feature", "properties": { "name": "Polk St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.419646, 37.785012 ] } } , @@ -9100,17 +9132,19 @@ , { "type": "Feature", "properties": { "name": "Post St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417715, 37.787047 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416599, 37.786352 ] } } +, { "type": "Feature", "properties": { "name": "Post St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.787233 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785080 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782977 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.782858 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419045, 37.783180 ] } } , { "type": "Feature", "properties": { "name": "Turk St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419260, 37.782180 ] } } , @@ -9120,9 +9154,9 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418315, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.419002, 37.780297 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783350 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.418702, 37.780162 ] } } , { "type": "Feature", "properties": { "name": "Larkin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.417414, 37.783231 ] } } , @@ -9140,21 +9174,21 @@ , { "type": "Feature", "properties": { "name": "Larkin St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416856, 37.780569 ] } } , +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415869, 37.780603 ] } } , { "type": "Feature", "properties": { "name": "Mcallister St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780772 ] } } -, { "type": "Feature", "properties": { "name": "Leavenworth St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.414882, 37.787352 ] } } , { "type": "Feature", "properties": { "name": "Post St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.787454 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414968, 37.786555 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } , @@ -9172,6 +9206,8 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "O'Farrell St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786029 ] } } @@ -9180,11 +9216,9 @@ , { "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411964, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.785080 ] } } -, { "type": "Feature", "properties": { "name": "Eddy St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784096 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414067, 37.783672 ] } } , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781654 ] } } , @@ -9196,7 +9230,7 @@ , { "type": "Feature", "properties": { "name": "Mcallister St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413080, 37.781078 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780569 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N" }, "geometry": { "type": "Point", "coordinates": [ -122.412436, 37.780637 ] } } , { "type": "Feature", "properties": { "name": "Market St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , @@ -9204,12 +9238,12 @@ , { "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.411921, 37.782061 ] } } , +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783384 ] } } +, { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782095 ] } } , { "type": "Feature", "properties": { "name": "Market St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412179, 37.781162 ] } } -, { "type": "Feature", "properties": { "name": "Market St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.781281 ] } } , { "type": "Feature", "properties": { "name": "7th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.412393, 37.780297 ] } } @@ -9224,6 +9258,8 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St" }, "geometry": { "type": "Point", "coordinates": [ -122.419474, 37.775532 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775209 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } , { "type": "Feature", "properties": { "name": "11th St/btw Market & Mission" }, "geometry": { "type": "Point", "coordinates": [ -122.418659, 37.775498 ] } } @@ -9242,7 +9278,7 @@ , { "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418616, 37.773310 ] } } , @@ -9266,10 +9302,6 @@ , { "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414711, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.414582, 37.778500 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.414367, 37.779093 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.777228 ] } } , { "type": "Feature", "properties": { "name": "8th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } @@ -9280,15 +9312,13 @@ , { "type": "Feature", "properties": { "name": "7th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.410762, 37.779178 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.779348 ] } } -, { "type": "Feature", "properties": { "name": "8th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411749, 37.776210 ] } } , { "type": "Feature", "properties": { "name": "8th St&Howard" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776125 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.775108 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772123 ] } } , { "type": "Feature", "properties": { "name": "11th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.771580 ] } } , @@ -9298,6 +9328,8 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.773886 ] } } , +{ "type": "Feature", "properties": { "name": "8th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774768 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & 9th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410376, 37.772394 ] } } , { "type": "Feature", "properties": { "name": "Hermann St & Fillmore St" }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } @@ -9306,39 +9338,39 @@ , { "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal" }, "geometry": { "type": "Point", "coordinates": [ -122.430031, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429388, 37.769409 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.769460 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } , { "type": "Feature", "properties": { "name": "14th St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431276, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767814 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429087, 37.767763 ] } } , { "type": "Feature", "properties": { "name": "14th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429130, 37.767662 ] } } , +{ "type": "Feature", "properties": { "name": "Market St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.429044, 37.767339 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769782 ] } } , { "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop" }, "geometry": { "type": "Point", "coordinates": [ -122.427242, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } -, { "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428873, 37.767780 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767373 ] } } , { "type": "Feature", "properties": { "name": "Sanchez St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } , { "type": "Feature", "properties": { "name": "Market St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765677 ] } } , { "type": "Feature", "properties": { "name": "Market St & Sanchez St" }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428787, 37.764456 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } , { "type": "Feature", "properties": { "name": "16th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } , @@ -9352,9 +9384,9 @@ , { "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768391 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.767848 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421963, 37.766780 ] } } , { "type": "Feature", "properties": { "name": "16th St & Guerrero St" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } , @@ -9374,7 +9406,7 @@ , { "type": "Feature", "properties": { "name": "Church St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.428401, 37.761470 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428143, 37.761233 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.428186, 37.761368 ] } } , { "type": "Feature", "properties": { "name": "18th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , @@ -9406,7 +9438,7 @@ , { "type": "Feature", "properties": { "name": "18th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760350 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421491, 37.759859 ] } } , @@ -9416,7 +9448,7 @@ , { "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.755550 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.756601 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755058 ] } } , @@ -9426,12 +9458,12 @@ , { "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, { "type": "Feature", "properties": { "name": "14th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419817, 37.768204 ] } } , { "type": "Feature", "properties": { "name": "15th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.420161, 37.766678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419775, 37.767136 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 14th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.768459 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.766203 ] } } @@ -9450,8 +9482,6 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St" }, "geometry": { "type": "Point", "coordinates": [ -122.416041, 37.765219 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762115 ] } } @@ -9462,35 +9492,37 @@ , { "type": "Feature", "properties": { "name": "11th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St" }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769103 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769341 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.768103 ] } } , +{ "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.413294, 37.765372 ] } } +, { "type": "Feature", "properties": { "name": "16th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762216 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765304 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.410333, 37.765558 ] } } -, { "type": "Feature", "properties": { "name": "16th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765711 ] } } , +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764218 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764015 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763133 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.762929 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419174, 37.760656 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } , { "type": "Feature", "properties": { "name": "South Van Ness & 18 th St" }, "geometry": { "type": "Point", "coordinates": [ -122.417071, 37.761877 ] } } , @@ -9534,8 +9566,6 @@ , { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786504 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786335 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & O'Farrell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.786318 ] } } , { "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785351 ] } } @@ -9544,7 +9574,7 @@ , { "type": "Feature", "properties": { "name": "Mason & Turk" }, "geometry": { "type": "Point", "coordinates": [ -122.409346, 37.783910 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St" }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St" }, "geometry": { "type": "Point", "coordinates": [ -122.408574, 37.784317 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Ellis St" }, "geometry": { "type": "Point", "coordinates": [ -122.407887, 37.785368 ] } } , @@ -9552,7 +9582,7 @@ , { "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784164 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408144, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.783994 ] } } , { "type": "Feature", "properties": { "name": "Market St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784673 ] } } , @@ -9560,7 +9590,7 @@ , { "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786640 ] } } , { "type": "Feature", "properties": { "name": "Market St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404583, 37.786589 ] } } , @@ -9572,7 +9602,7 @@ , { "type": "Feature", "properties": { "name": "Market St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.405741, 37.785860 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785521 ] } } , { "type": "Feature", "properties": { "name": "4TH ST & Mission ST" }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784334 ] } } , @@ -9590,7 +9620,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404754, 37.781451 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787997 ] } } , @@ -9598,33 +9628,33 @@ , { "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.402480, 37.785962 ] } } , { "type": "Feature", "properties": { "name": "Mission St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786504 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Minna St" }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786029 ] } } +, { "type": "Feature", "properties": { "name": "Mission St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784639 ] } } , { "type": "Feature", "properties": { "name": "4th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.404110, 37.784249 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , { "type": "Feature", "properties": { "name": "Howard St & New Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786199 ] } } , +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784842 ] } } +, { "type": "Feature", "properties": { "name": "3rd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.400248, 37.784944 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.399089, 37.783994 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St" }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783961 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.783978 ] } } , { "type": "Feature", "properties": { "name": "4th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } , { "type": "Feature", "properties": { "name": "5th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780297 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.780433 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.782146 ] } } , @@ -9634,9 +9664,9 @@ , { "type": "Feature", "properties": { "name": "7th St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409217, 37.777923 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.405312, 37.778618 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407844, 37.776634 ] } } , { "type": "Feature", "properties": { "name": "6th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.404239, 37.777313 ] } } , @@ -9646,9 +9676,9 @@ , { "type": "Feature", "properties": { "name": "Harrison St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777143 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.772530 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407072, 37.772326 ] } } , @@ -9656,9 +9686,9 @@ , { "type": "Feature", "properties": { "name": "7th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774701 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771546 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771546 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402136, 37.778907 ] } } , @@ -9666,7 +9696,7 @@ , { "type": "Feature", "properties": { "name": "5th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778941 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.776159 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776159 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399948, 37.777940 ] } } , @@ -9678,9 +9708,9 @@ , { "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.771699 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } , @@ -9694,9 +9724,9 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.784181 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395313, 37.784520 ] } } , { "type": "Feature", "properties": { "name": "2nd ST & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.395055, 37.784283 ] } } , @@ -9706,27 +9736,29 @@ , { "type": "Feature", "properties": { "name": "Harrison St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.397673, 37.782434 ] } } , +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782638 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.398059, 37.779466 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.783282 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.782841 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.394583, 37.779975 ] } } -, { "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779551 ] } } , { "type": "Feature", "properties": { "name": "Harrison St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.781858 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781824 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390549, 37.780704 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.388318, 37.783587 ] } } , @@ -9760,13 +9792,15 @@ , { "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394025, 37.776312 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393939, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394369, 37.776057 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.776278 ] } } , { "type": "Feature", "properties": { "name": "4th St & Berry St" }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397974, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397845, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Brannan St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779280 ] } } , @@ -9782,8 +9816,6 @@ , { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389777, 37.772614 ] } } -, { "type": "Feature", "properties": { "name": "Third Street & Mission Rock St" }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772835 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389605, 37.771156 ] } } @@ -9800,9 +9832,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.764218 ] } } -, -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764727 ] } } , { "type": "Feature", "properties": { "name": "16th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , @@ -9810,13 +9840,15 @@ , { "type": "Feature", "properties": { "name": "Vermont St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763234 ] } } , +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404325, 37.762200 ] } } +, { "type": "Feature", "properties": { "name": "Townsend St & 8th St" }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770223 ] } } , { "type": "Feature", "properties": { "name": "Division St & Townsend St" }, "geometry": { "type": "Point", "coordinates": [ -122.403295, 37.769884 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.768730 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767305 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.767458 ] } } , { "type": "Feature", "properties": { "name": "16th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } , @@ -9824,15 +9856,15 @@ , { "type": "Feature", "properties": { "name": "17th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.403467, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766152 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766322 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St" }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766118 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401621, 37.766050 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764863 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.764778 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401707, 37.764761 ] } } , { "type": "Feature", "properties": { "name": "Kansas St & Mariposa St" }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } , @@ -9840,7 +9872,7 @@ , { "type": "Feature", "properties": { "name": "16th Street & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766288 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766220 ] } } , { "type": "Feature", "properties": { "name": "17th St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764931 ] } } , @@ -9850,7 +9882,7 @@ , { "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407286, 37.761640 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761843 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } , @@ -9866,7 +9898,7 @@ , { "type": "Feature", "properties": { "name": "Bryant St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409475, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.754311 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754141 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 21st St" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.757484 ] } } , @@ -9882,40 +9914,44 @@ , { "type": "Feature", "properties": { "name": "Vermont St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } , +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402394, 37.761979 ] } } +, { "type": "Feature", "properties": { "name": "Rhode Island St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } , { "type": "Feature", "properties": { "name": "20th St & Kansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.759672 ] } } , +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.402222, 37.759621 ] } } +, { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759434 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.759587 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758383 ] } } -, { "type": "Feature", "properties": { "name": "De Haro St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.760927 ] } } , { "type": "Feature", "properties": { "name": "De Haro St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401021, 37.759655 ] } } , +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.758128 ] } } +, { "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } -, { "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } , { "type": "Feature", "properties": { "name": "176 Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401836, 37.756160 ] } } , { "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403896, 37.754481 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St" }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St" }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST" }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754447 ] } } , { "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.754328 ] } } , +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } +, { "type": "Feature", "properties": { "name": "De Haro St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.757433 ] } } , { "type": "Feature", "properties": { "name": "Carolina St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399991, 37.757331 ] } } @@ -9928,8 +9964,6 @@ , { "type": "Feature", "properties": { "name": "De Haro St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754888 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398746, 37.754854 ] } } -, { "type": "Feature", "properties": { "name": "16th Street & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766491 ] } } , { "type": "Feature", "properties": { "name": "16th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.766389 ] } } @@ -9938,7 +9972,7 @@ , { "type": "Feature", "properties": { "name": "Connecticut St & 17th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } , { "type": "Feature", "properties": { "name": "Connecticut St & 18th St" }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762420 ] } } , @@ -9946,12 +9980,10 @@ , { "type": "Feature", "properties": { "name": "18th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762624 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393210, 37.762725 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393467, 37.762827 ] } } , { "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.391021, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766864 ] } } -, { "type": "Feature", "properties": { "name": "16th St & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.766763 ] } } , { "type": "Feature", "properties": { "name": "1731 3RD ST" }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769714 ] } } @@ -9962,8 +9994,6 @@ , { "type": "Feature", "properties": { "name": "UCSF/Mission Bay" }, "geometry": { "type": "Point", "coordinates": [ -122.389262, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.389348, 37.767797 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.766576 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 16th St" }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } @@ -9986,12 +10016,12 @@ , { "type": "Feature", "properties": { "name": "20th St & Arkansas St" }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761402 ] } } -, { "type": "Feature", "properties": { "name": "Missouri St & 20th St" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } , { "type": "Feature", "properties": { "name": "20th St & Missouri St" }, "geometry": { "type": "Point", "coordinates": [ -122.396429, 37.759977 ] } } , +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.395999, 37.758400 ] } } +, { "type": "Feature", "properties": { "name": "Missouri St & Sierra St" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758111 ] } } , { "type": "Feature", "properties": { "name": "20th St & Texas St" }, "geometry": { "type": "Point", "coordinates": [ -122.395442, 37.760028 ] } } @@ -10000,12 +10030,16 @@ , { "type": "Feature", "properties": { "name": "Arkansas St & 22nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } , +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St" }, "geometry": { "type": "Point", "coordinates": [ -122.397888, 37.755974 ] } } +, { "type": "Feature", "properties": { "name": "23rd St & Wisconsin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } , { "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.753548 ] } } , { "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.397330, 37.753904 ] } } , +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.396772, 37.754667 ] } } +, { "type": "Feature", "properties": { "name": "Dakota St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.396557, 37.754701 ] } } , { "type": "Feature", "properties": { "name": "Missouri St & Turner Ter" }, "geometry": { "type": "Point", "coordinates": [ -122.395742, 37.757263 ] } } @@ -10016,7 +10050,7 @@ , { "type": "Feature", "properties": { "name": "Missouri St & Watchman Way" }, "geometry": { "type": "Point", "coordinates": [ -122.395785, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753734 ] } } , { "type": "Feature", "properties": { "name": "22nd St & Iowa St" }, "geometry": { "type": "Point", "coordinates": [ -122.391794, 37.757772 ] } } , @@ -10038,9 +10072,9 @@ , { "type": "Feature", "properties": { "name": "22nd St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758009 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393038, 37.757585 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.755007 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392995, 37.755159 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 23rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.387888, 37.755685 ] } } , @@ -10054,9 +10088,9 @@ , { "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427542, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427499, 37.751800 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.427328, 37.751766 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427285, 37.749391 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , { "type": "Feature", "properties": { "name": "Church St & Clipper St" }, "geometry": { "type": "Point", "coordinates": [ -122.427113, 37.749170 ] } } , @@ -10068,9 +10102,9 @@ , { "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745183 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746778 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St" }, "geometry": { "type": "Point", "coordinates": [ -122.427070, 37.746982 ] } } , { "type": "Feature", "properties": { "name": "24th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.425311, 37.751902 ] } } , @@ -10094,13 +10128,15 @@ , { "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St" }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742163 ] } } , { "type": "Feature", "properties": { "name": "46 Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } , { "type": "Feature", "properties": { "name": "Bemis St & Moffitt St" }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736461 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.737717 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St" }, "geometry": { "type": "Point", "coordinates": [ -122.429001, 37.736326 ] } } , { "type": "Feature", "properties": { "name": "Randall St & Whitney St" }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } , @@ -10110,9 +10146,9 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Miguel St" }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737140 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425740, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.742163 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } , { "type": "Feature", "properties": { "name": "30th St & Dolores St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.742299 ] } } , @@ -10120,7 +10156,7 @@ , { "type": "Feature", "properties": { "name": "30th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422049, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741043 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422907, 37.741009 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741009 ] } } , @@ -10128,7 +10164,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742434 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425697, 37.739923 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St" }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742434 ] } } , { "type": "Feature", "properties": { "name": "Chenery St & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.425482, 37.739618 ] } } , @@ -10138,6 +10174,8 @@ , { "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.739550 ] } } , +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424324, 37.739380 ] } } +, { "type": "Feature", "properties": { "name": "San Jose& Randall St" }, "geometry": { "type": "Point", "coordinates": [ -122.424066, 37.739838 ] } } , { "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.739719 ] } } @@ -10150,15 +10188,17 @@ , { "type": "Feature", "properties": { "name": "Mission St & Highland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737446 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420933, 37.740195 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.420890, 37.740296 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.752360 ] } } , { "type": "Feature", "properties": { "name": "24th St & Valencia St" }, "geometry": { "type": "Point", "coordinates": [ -122.420547, 37.752173 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418401, 37.752733 ] } } +, { "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752309 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752173 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418530, 37.751953 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750748 ] } } , @@ -10176,21 +10216,23 @@ , { "type": "Feature", "properties": { "name": "South Van Ness & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750646 ] } } , +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, { "type": "Feature", "properties": { "name": "Valencia St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420418, 37.748661 ] } } , { "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St." }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } -, { "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett" }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748203 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418358, 37.748237 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748101 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Precita Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419088, 37.746931 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.746642 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Fair Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } , @@ -10202,17 +10244,15 @@ , { "type": "Feature", "properties": { "name": "Folsom St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414024, 37.752750 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413938, 37.752462 ] } } -, { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } , { "type": "Feature", "properties": { "name": "26th St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749221 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749221 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748475 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.412050, 37.752682 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.748339 ] } } , @@ -10228,12 +10268,12 @@ , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.748203 ] } } +, { "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748339 ] } } , { "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.748424 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St" }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 29th St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.744284 ] } } , { "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St" }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739923 ] } } @@ -10250,7 +10290,7 @@ , { "type": "Feature", "properties": { "name": "Ripley St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.412994, 37.744131 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410505, 37.744284 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St" }, "geometry": { "type": "Point", "coordinates": [ -122.410462, 37.744369 ] } } , { "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St" }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741450 ] } } , @@ -10284,13 +10324,11 @@ , { "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735477 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.430203, 37.735630 ] } } -, { "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733203 ] } } , { "type": "Feature", "properties": { "name": "Still St & Lyell St" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733475 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St" }, "geometry": { "type": "Point", "coordinates": [ -122.429516, 37.733322 ] } } , { "type": "Feature", "properties": { "name": "Bosworth St & Marsily St" }, "geometry": { "type": "Point", "coordinates": [ -122.427928, 37.733458 ] } } , @@ -10300,15 +10338,15 @@ , { "type": "Feature", "properties": { "name": "Mission St & Bosworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733339 ] } } , -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.431319, 37.730641 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429259, 37.730658 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.429645, 37.731387 ] } } , { "type": "Feature", "properties": { "name": "Mission St & Trumbull St" }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730454 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431405, 37.728893 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728655 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728621 ] } } , { "type": "Feature", "properties": { "name": "Trumbull St & Congdon St" }, "geometry": { "type": "Point", "coordinates": [ -122.426383, 37.730963 ] } } , @@ -10318,7 +10356,7 @@ , { "type": "Feature", "properties": { "name": "Mission St & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.425911, 37.734035 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735613 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.735901 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.735426 ] } } , @@ -10354,7 +10392,7 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428572, 37.721662 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St" }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } , { "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721357 ] } } , @@ -10364,29 +10402,29 @@ , { "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St" }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721221 ] } } , +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St" }, "geometry": { "type": "Point", "coordinates": [ -122.426984, 37.720899 ] } } +, { "type": "Feature", "properties": { "name": "Moscow St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720508 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426169, 37.720406 ] } } , { "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } , { "type": "Feature", "properties": { "name": "Athens St & Avalon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724650 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424366, 37.724734 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } , { "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423422, 37.725074 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Peru Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725193 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725430 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725600 ] } } , { "type": "Feature", "properties": { "name": "Brazil Ave & Prague St" }, "geometry": { "type": "Point", "coordinates": [ -122.425869, 37.720525 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425783, 37.719354 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719184 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Murray St" }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735783 ] } } , @@ -10398,7 +10436,7 @@ , { "type": "Feature", "properties": { "name": "Crescent Ave & Porter St" }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.418916, 37.732609 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge" }, "geometry": { "type": "Point", "coordinates": [ -122.420590, 37.732287 ] } } , { "type": "Feature", "properties": { "name": "Richland Ave & Andover St" }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } , @@ -10410,9 +10448,9 @@ , { "type": "Feature", "properties": { "name": "945 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417758, 37.732813 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732830 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St" }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732524 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733271 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.419388, 37.729130 ] } } , @@ -10420,33 +10458,33 @@ , { "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St" }, "geometry": { "type": "Point", "coordinates": [ -122.416255, 37.728825 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.414839, 37.734866 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413809, 37.734663 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & Ogden St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.735783 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.734934 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St" }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.413723, 37.734832 ] } } , { "type": "Feature", "properties": { "name": "346 Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.413251, 37.733610 ] } } , { "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St" }, "geometry": { "type": "Point", "coordinates": [ -122.411277, 37.734900 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729843 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } , { "type": "Feature", "properties": { "name": "Felton St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727399 ] } } , { "type": "Feature", "properties": { "name": "University St & Felton St" }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } -, { "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St" }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730963 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725973 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St" }, "geometry": { "type": "Point", "coordinates": [ -122.420461, 37.725855 ] } } , { "type": "Feature", "properties": { "name": "Felton St & Cambridge St" }, "geometry": { "type": "Point", "coordinates": [ -122.418745, 37.726398 ] } } , @@ -10456,9 +10494,9 @@ , { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718709 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St" }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726584 ] } } , { "type": "Feature", "properties": { "name": "University St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } , @@ -10466,7 +10504,9 @@ , { "type": "Feature", "properties": { "name": "University St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410419, 37.723241 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411449, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St" }, "geometry": { "type": "Point", "coordinates": [ -122.410591, 37.723122 ] } } , { "type": "Feature", "properties": { "name": "University St & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.722732 ] } } , @@ -10474,22 +10514,20 @@ , { "type": "Feature", "properties": { "name": "Woolsey St & Colby St" }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411363, 37.718760 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St" }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718947 ] } } , { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752852 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409174, 37.752513 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Bryant St" }, "geometry": { "type": "Point", "coordinates": [ -122.408960, 37.752750 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751291 ] } } , +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752818 ] } } +, { "type": "Feature", "properties": { "name": "Bryant St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408874, 37.751105 ] } } , { "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St" }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } -, { "type": "Feature", "properties": { "name": "24th St & Potrero Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.752988 ] } } , { "type": "Feature", "properties": { "name": "Potrero Ave & 24th St" }, "geometry": { "type": "Point", "coordinates": [ -122.406256, 37.753242 ] } } @@ -10516,7 +10554,7 @@ , { "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750850 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403510, 37.747117 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St" }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750748 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.746405 ] } } , @@ -10528,7 +10566,7 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405226, 37.743317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.405055, 37.742842 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405183, 37.742876 ] } } , { "type": "Feature", "properties": { "name": "380 Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406685, 37.741331 ] } } , @@ -10536,14 +10574,14 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407115, 37.739668 ] } } , +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738362 ] } } +, { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406986, 37.737717 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.739855 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St" }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738701 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } -, { "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406771, 37.737938 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St" }, "geometry": { "type": "Point", "coordinates": [ -122.404153, 37.742519 ] } } @@ -10558,7 +10596,7 @@ , { "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403038, 37.739125 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St" }, "geometry": { "type": "Point", "coordinates": [ -122.403724, 37.738786 ] } } , { "type": "Feature", "properties": { "name": "Industrial St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739550 ] } } , @@ -10590,7 +10628,9 @@ , { "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St" }, "geometry": { "type": "Point", "coordinates": [ -122.396214, 37.750002 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St" }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.752682 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752343 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St" }, "geometry": { "type": "Point", "coordinates": [ -122.396257, 37.747338 ] } } , @@ -10598,7 +10638,7 @@ , { "type": "Feature", "properties": { "name": "Evans Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746167 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752614 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street" }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , { "type": "Feature", "properties": { "name": "3rd St & 25th St" }, "geometry": { "type": "Point", "coordinates": [ -122.387846, 37.752547 ] } } , @@ -10608,7 +10648,7 @@ , { "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St" }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742774 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.394927, 37.742078 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Rankin St" }, "geometry": { "type": "Point", "coordinates": [ -122.398531, 37.738243 ] } } , @@ -10618,18 +10658,20 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737208 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394798, 37.736088 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394669, 37.736207 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736835 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.736088 ] } } , +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744233 ] } } +, { "type": "Feature", "properties": { "name": "Evans Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.390463, 37.744029 ] } } , { "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.740687 ] } } -, { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742977 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } @@ -10670,13 +10712,15 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St" }, "geometry": { "type": "Point", "coordinates": [ -122.405570, 37.734238 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405698, 37.732338 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404282, 37.733271 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404711, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732966 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405355, 37.732049 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.733050 ] } } , { "type": "Feature", "properties": { "name": "Silver Ave & Merrill St" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } , @@ -10696,6 +10740,8 @@ , { "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.734764 ] } } , +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401063, 37.735273 ] } } +, { "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } , { "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399390, 37.731829 ] } } @@ -10704,15 +10750,15 @@ , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403123, 37.730284 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.727976 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403638, 37.727518 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.403553, 37.727331 ] } } , { "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727739 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Donner Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St" }, "geometry": { "type": "Point", "coordinates": [ -122.399905, 37.730369 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.728078 ] } } , { "type": "Feature", "properties": { "name": "Phelps St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730182 ] } } , @@ -10722,7 +10768,7 @@ , { "type": "Feature", "properties": { "name": "Holyoke St & Bacon St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.726143 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407458, 37.726669 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St" }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } , { "type": "Feature", "properties": { "name": "Holyoke St & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } , @@ -10754,17 +10800,17 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St" }, "geometry": { "type": "Point", "coordinates": [ -122.402995, 37.726364 ] } } , +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St" }, "geometry": { "type": "Point", "coordinates": [ -122.402694, 37.725312 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St" }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724073 ] } } , { "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.402093, 37.724174 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } -, { "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401578, 37.723869 ] } } , { "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.400806, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St" }, "geometry": { "type": "Point", "coordinates": [ -122.400205, 37.723394 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.400591, 37.723648 ] } } , { "type": "Feature", "properties": { "name": "Paul Ave & Crane St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723292 ] } } , @@ -10774,19 +10820,19 @@ , { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721595 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.401149, 37.721442 ] } } +, { "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.721476 ] } } , { "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400420, 37.719371 ] } } -, { "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St" }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719049 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733203 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.731998 ] } } , { "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395270, 37.731167 ] } } , @@ -10796,9 +10842,7 @@ , { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727908 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392738, 37.735172 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392910, 37.735019 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.392652, 37.735019 ] } } , @@ -10812,9 +10856,9 @@ , { "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390721, 37.734781 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390807, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734086 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390850, 37.733848 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734018 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Bayview St" }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } , @@ -10824,15 +10868,15 @@ , { "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390335, 37.735409 ] } } , +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734493 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.389176, 37.732915 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390292, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.390034, 37.731642 ] } } -, { "type": "Feature", "properties": { "name": "Lane St & Palou Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732898 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392008, 37.730658 ] } } , { "type": "Feature", "properties": { "name": "Williams Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.392952, 37.729368 ] } } , @@ -10840,13 +10884,11 @@ , { "type": "Feature", "properties": { "name": "3rd St & Williams Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.729164 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St" }, "geometry": { "type": "Point", "coordinates": [ -122.392223, 37.729198 ] } } -, { "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727908 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.390420, 37.728078 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.393510, 37.726924 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St" }, "geometry": { "type": "Point", "coordinates": [ -122.397931, 37.723003 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Carroll Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725668 ] } } , @@ -10870,15 +10912,15 @@ , { "type": "Feature", "properties": { "name": "3rd St & Key St" }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719761 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722409 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.722392 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395399, 37.722630 ] } } , { "type": "Feature", "properties": { "name": "3rd St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722375 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.394841, 37.722885 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.721408 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } , { "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.388833, 37.727060 ] } } , @@ -10886,9 +10928,9 @@ , { "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391450, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720339 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop" }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } , @@ -10908,11 +10950,9 @@ , { "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.387288, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } -, { "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386944, 37.746048 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.386644, 37.745760 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , @@ -10926,34 +10966,36 @@ , { "type": "Feature", "properties": { "name": "Mendell St & Cargo Way" }, "geometry": { "type": "Point", "coordinates": [ -122.383168, 37.743690 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384627, 37.741128 ] } } -, { "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.384498, 37.740687 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St" }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, { "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.385871, 37.736597 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Newhall St" }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739991 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE" }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739855 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } , { "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office" }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739719 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384112, 37.737700 ] } } +, { "type": "Feature", "properties": { "name": "Hudson Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.384155, 37.737581 ] } } , { "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381794, 37.738158 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } -, { "type": "Feature", "properties": { "name": "Keith St & Evans Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , { "type": "Feature", "properties": { "name": "Evans Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738769 ] } } , { "type": "Feature", "properties": { "name": "Middle Point & Acacia" }, "geometry": { "type": "Point", "coordinates": [ -122.379520, 37.737072 ] } } , +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, { "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.737004 ] } } @@ -10962,7 +11004,7 @@ , { "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732049 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731845 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St" }, "geometry": { "type": "Point", "coordinates": [ -122.387030, 37.731845 ] } } , { "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386601, 37.732355 ] } } , @@ -10974,7 +11016,7 @@ , { "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.383039, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733033 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , { "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St" }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733339 ] } } , @@ -10982,19 +11024,19 @@ , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386558, 37.729554 ] } } , +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, { "type": "Feature", "properties": { "name": "Palou Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.385142, 37.730793 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Jennings St" }, "geometry": { "type": "Point", "coordinates": [ -122.386301, 37.729520 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385614, 37.727348 ] } } -, { "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , { "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730148 ] } } , { "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.384584, 37.728366 ] } } , { "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , @@ -11002,17 +11044,17 @@ , { "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } , +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir" }, "geometry": { "type": "Point", "coordinates": [ -122.381837, 37.733322 ] } } +, { "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379906, 37.732490 ] } } , { "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.379692, 37.732389 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } -, { "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.379348, 37.734391 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St" }, "geometry": { "type": "Point", "coordinates": [ -122.378962, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E" }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734086 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , @@ -11024,7 +11066,7 @@ , { "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln" }, "geometry": { "type": "Point", "coordinates": [ -122.380335, 37.730573 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St" }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.381365, 37.729385 ] } } , { "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727976 ] } } , @@ -11036,9 +11078,7 @@ , { "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.379305, 37.728214 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386687, 37.726041 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.386773, 37.726109 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Griffith St" }, "geometry": { "type": "Point", "coordinates": [ -122.375872, 37.731981 ] } } , @@ -11046,7 +11086,7 @@ , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.374027, 37.730929 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730250 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.375271, 37.729877 ] } } , { "type": "Feature", "properties": { "name": "Innes Ave & Fitch St" }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730929 ] } } , @@ -11058,7 +11098,7 @@ , { "type": "Feature", "properties": { "name": "Innes St & Donahue St" }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729130 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.368705, 37.725329 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.369649, 37.729249 ] } } , { "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St" }, "geometry": { "type": "Point", "coordinates": [ -122.367933, 37.725329 ] } } , @@ -11076,12 +11116,12 @@ , { "type": "Feature", "properties": { "name": "Prague St & Russia Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } -, { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422779, 37.717793 ] } } , { "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } , +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414453, 37.718115 ] } } +, { "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718030 ] } } , { "type": "Feature", "properties": { "name": "Delta St & Wilde Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717759 ] } } @@ -11102,10 +11142,6 @@ { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788709 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } -, { "type": "Feature", "properties": { "name": "Metro Van Ness Station" }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd" }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778669 ] } } @@ -11130,8 +11166,6 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432864, 37.801307 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } -, { "type": "Feature", "properties": { "name": "Union St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Webster St" }, "geometry": { "type": "Point", "coordinates": [ -122.433035, 37.792711 ] } } @@ -11146,15 +11180,13 @@ , { "type": "Feature", "properties": { "name": "Larkin St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806342 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807021 ] } } -, { "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420676, 37.806715 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.421877, 37.805580 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806682 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805698 ] } } , @@ -11162,23 +11194,21 @@ , { "type": "Feature", "properties": { "name": "Jefferson St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808309 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.417371, 37.807241 ] } } -, { "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.417843, 37.805512 ] } } , +{ "type": "Feature", "properties": { "name": "North Point St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, { "type": "Feature", "properties": { "name": "Jefferson St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jefferson St" }, "geometry": { "type": "Point", "coordinates": [ -122.412522, 37.808072 ] } } , { "type": "Feature", "properties": { "name": "Beach St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.807411 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.414238, 37.806563 ] } } -, { "type": "Feature", "properties": { "name": "North Point St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806512 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.410805, 37.807834 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Beach St" }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807800 ] } } , @@ -11208,9 +11238,9 @@ , { "type": "Feature", "properties": { "name": "Chestnut St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.802019 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , { "type": "Feature", "properties": { "name": "Union St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.430460, 37.797781 ] } } , @@ -11220,11 +11250,15 @@ , { "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427371, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798204 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.425396, 37.804952 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.425096, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ" }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804817 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424967, 37.804105 ] } } , { "type": "Feature", "properties": { "name": "North Point St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.423980, 37.805308 ] } } , @@ -11232,7 +11266,9 @@ , { "type": "Feature", "properties": { "name": "Francisco Street & Polk Street" }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424881, 37.802189 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.424624, 37.802579 ] } } , @@ -11242,7 +11278,7 @@ , { "type": "Feature", "properties": { "name": "Polk St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801629 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800476 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.424409, 37.800324 ] } } , { "type": "Feature", "properties": { "name": "Union St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.424238, 37.798577 ] } } , @@ -11254,18 +11290,20 @@ , { "type": "Feature", "properties": { "name": "Union St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.798679 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797730 ] } } +, { "type": "Feature", "properties": { "name": "Polk St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796950 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793152 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793355 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426212, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426255, 37.792541 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.431190, 37.791914 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St" }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792168 ] } } @@ -11276,8 +11314,6 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790676 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796407 ] } } -, { "type": "Feature", "properties": { "name": "Jackson St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } @@ -11296,6 +11332,8 @@ , { "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } , +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.422993, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.423122, 37.793830 ] } } @@ -11304,6 +11342,8 @@ , { "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422435, 37.793084 ] } } , +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792439 ] } } +, { "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST" }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794169 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421405, 37.793694 ] } } @@ -11312,8 +11352,6 @@ , { "type": "Feature", "properties": { "name": "Polk St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.421191, 37.793491 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.426126, 37.790879 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424452, 37.791897 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Franklin St" }, "geometry": { "type": "Point", "coordinates": [ -122.424023, 37.791151 ] } } @@ -11326,28 +11364,26 @@ , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.422607, 37.791151 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790371 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.422264, 37.790438 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.421062, 37.791931 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.421148, 37.791507 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790642 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.422006, 37.790438 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.422307, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790642 ] } } , { "type": "Feature", "properties": { "name": "Bush St &Van ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.788404 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.420247, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419689, 37.802833 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.419560, 37.801901 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.416170, 37.804511 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415226, 37.805325 ] } } , { "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB" }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804545 ] } } @@ -11364,20 +11400,16 @@ , { "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799120 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.419131, 37.799171 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418959, 37.798340 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St" }, "geometry": { "type": "Point", "coordinates": [ -122.418787, 37.798306 ] } } -, { "type": "Feature", "properties": { "name": "Hyde St & Vallejo St" }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } , { "type": "Feature", "properties": { "name": "Union St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.417543, 37.799442 ] } } , { "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799527 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.799679 ] } } -, { "type": "Feature", "properties": { "name": "Taylor St & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.415054, 37.804952 ] } } , { "type": "Feature", "properties": { "name": "Taylor St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804376 ] } } @@ -11388,14 +11420,12 @@ , { "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST" }, "geometry": { "type": "Point", "coordinates": [ -122.413981, 37.802833 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413638, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802680 ] } } , { "type": "Feature", "properties": { "name": "Mason St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.412779, 37.801918 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.412651, 37.802087 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411878, 37.804952 ] } } -, { "type": "Feature", "properties": { "name": "Powell St & Francisco St" }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } @@ -11404,7 +11434,7 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801188 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.409689, 37.803121 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801222 ] } } , { "type": "Feature", "properties": { "name": "Union St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799730 ] } } , @@ -11428,17 +11458,17 @@ , { "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.412007, 37.797340 ] } } , +{ "type": "Feature", "properties": { "name": "Mason St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.420032, 37.795152 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419860, 37.795322 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418573, 37.796492 ] } } -, { "type": "Feature", "properties": { "name": "Hyde St & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796339 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795390 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.795542 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } , @@ -11448,12 +11478,12 @@ , { "type": "Feature", "properties": { "name": "Washington St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } , +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +, { "type": "Feature", "properties": { "name": "Hyde St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.418187, 37.794542 ] } } , { "type": "Feature", "properties": { "name": "Washington St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793626 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } -, { "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } , { "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794847 ] } } @@ -11468,25 +11498,25 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.419517, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.420633, 37.790812 ] } } , { "type": "Feature", "properties": { "name": "California St & Larkin St" }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Polk St" }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789658 ] } } , +{ "type": "Feature", "properties": { "name": "Polk St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789353 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791965 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.417629, 37.791829 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.417457, 37.791100 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791015 ] } } , { "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.792185 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.415655, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415740, 37.791134 ] } } , { "type": "Feature", "properties": { "name": "Hyde St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.417285, 37.790167 ] } } , @@ -11494,7 +11524,7 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Hyde St" }, "geometry": { "type": "Point", "coordinates": [ -122.416899, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789218 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.415483, 37.790150 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St" }, "geometry": { "type": "Point", "coordinates": [ -122.415268, 37.788421 ] } } , @@ -11514,7 +11544,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412736, 37.793355 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796204 ] } } , { "type": "Feature", "properties": { "name": "Pacific Ave & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.411621, 37.796373 ] } } , @@ -11524,9 +11554,9 @@ , { "type": "Feature", "properties": { "name": "Mason St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.411664, 37.795593 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE" }, "geometry": { "type": "Point", "coordinates": [ -122.411492, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.410161, 37.796407 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409990, 37.796560 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.795305 ] } } , @@ -11540,6 +11570,8 @@ , { "type": "Feature", "properties": { "name": "Clay St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } , +{ "type": "Feature", "properties": { "name": "Clay St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409775, 37.793779 ] } } +, { "type": "Feature", "properties": { "name": "Sacramento St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414153, 37.792388 ] } } , { "type": "Feature", "properties": { "name": "California St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.414110, 37.791473 ] } } @@ -11550,13 +11582,15 @@ , { "type": "Feature", "properties": { "name": "Bush St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.415097, 37.788319 ] } } +, { "type": "Feature", "properties": { "name": "Sutter St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788641 ] } } , { "type": "Feature", "properties": { "name": "California St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.412307, 37.791710 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410977, 37.791863 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788844 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Grant St" }, "geometry": { "type": "Point", "coordinates": [ -122.409389, 37.808224 ] } } , @@ -11568,6 +11602,8 @@ , { "type": "Feature", "properties": { "name": "Kearny St & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.407200, 37.807173 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806783 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Bay St" }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806614 ] } } @@ -11576,15 +11612,15 @@ , { "type": "Feature", "properties": { "name": "Lombard St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408059, 37.803494 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802206 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.409647, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803698 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.406514, 37.803562 ] } } , { "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802714 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.406642, 37.802986 ] } } , { "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } , @@ -11604,17 +11640,13 @@ , { "type": "Feature", "properties": { "name": "Union St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.407501, 37.800680 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.796780 ] } } -, { "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.407329, 37.797848 ] } } , { "type": "Feature", "properties": { "name": "Broadway & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797594 ] } } , { "type": "Feature", "properties": { "name": "Union St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404497, 37.800951 ] } } -, -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406900, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801087 ] } } , { "type": "Feature", "properties": { "name": "Columbus Ave & Broadway" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797628 ] } } , @@ -11632,7 +11664,7 @@ , { "type": "Feature", "properties": { "name": "Sansome St & Lombard St" }, "geometry": { "type": "Point", "coordinates": [ -122.403252, 37.803918 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St" }, "geometry": { "type": "Point", "coordinates": [ -122.402008, 37.802969 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St" }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802341 ] } } , { "type": "Feature", "properties": { "name": "Sansome St & Union St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } , @@ -11666,7 +11698,7 @@ , { "type": "Feature", "properties": { "name": "Stockton St & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796238 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } , { "type": "Feature", "properties": { "name": "Stockton St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } , @@ -11676,8 +11708,6 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.792880 ] } } -, { "type": "Feature", "properties": { "name": "Stockton St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.407758, 37.793728 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } @@ -11690,8 +11720,6 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St" }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796068 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } -, { "type": "Feature", "properties": { "name": "Clay St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405956, 37.794254 ] } } , { "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.406299, 37.793406 ] } } @@ -11700,7 +11728,7 @@ , { "type": "Feature", "properties": { "name": "Clay St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404411, 37.794474 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St" }, "geometry": { "type": "Point", "coordinates": [ -122.404540, 37.793762 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404840, 37.793575 ] } } , { "type": "Feature", "properties": { "name": "Kearny St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.792880 ] } } , @@ -11708,11 +11736,9 @@ , { "type": "Feature", "properties": { "name": "California St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792066 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.409132, 37.792304 ] } } -, -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409260, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST" }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } , { "type": "Feature", "properties": { "name": "California St & Stockton St" }, "geometry": { "type": "Point", "coordinates": [ -122.407544, 37.792304 ] } } , @@ -11720,9 +11746,9 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.408488, 37.789133 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } , @@ -11732,8 +11758,6 @@ , { "type": "Feature", "properties": { "name": "Post St & Powell St" }, "geometry": { "type": "Point", "coordinates": [ -122.407930, 37.788302 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792372 ] } } -, { "type": "Feature", "properties": { "name": "Post St & Grant Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788539 ] } } , { "type": "Feature", "properties": { "name": "Sutter St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.404368, 37.789811 ] } } @@ -11742,6 +11766,8 @@ , { "type": "Feature", "properties": { "name": "Columbus Ave & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.403681, 37.795898 ] } } , +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.402050, 37.795729 ] } } +, { "type": "Feature", "properties": { "name": "Sansome St & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.401664, 37.796051 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794678 ] } } @@ -11752,8 +11778,6 @@ , { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402909, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St" }, "geometry": { "type": "Point", "coordinates": [ -122.401493, 37.794474 ] } } -, { "type": "Feature", "properties": { "name": "California St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402608, 37.792931 ] } } , { "type": "Feature", "properties": { "name": "Clay St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.401106, 37.794813 ] } } @@ -11764,7 +11788,7 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794169 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST" }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , { "type": "Feature", "properties": { "name": "California St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400978, 37.793135 ] } } , @@ -11772,9 +11796,9 @@ , { "type": "Feature", "properties": { "name": "California St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793287 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398918, 37.793270 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791931 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St" }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Montgomery St" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790913 ] } } , @@ -11788,17 +11812,17 @@ , { "type": "Feature", "properties": { "name": "Sansome St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.400849, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.400076, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400677, 37.790286 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St" }, "geometry": { "type": "Point", "coordinates": [ -122.400935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400506, 37.790354 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790337 ] } } , { "type": "Feature", "properties": { "name": "Bush St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } , { "type": "Feature", "properties": { "name": "BUSH ST & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Battery St" }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } , { "type": "Feature", "properties": { "name": "Market St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789353 ] } } , @@ -11818,7 +11842,7 @@ , { "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY" }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797831 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797797 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395656, 37.797085 ] } } , @@ -11828,7 +11852,9 @@ , { "type": "Feature", "properties": { "name": "Sacramento St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397459, 37.793592 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793626 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } , { "type": "Feature", "properties": { "name": "Pine St & Front St" }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792473 ] } } , @@ -11836,23 +11862,25 @@ , { "type": "Feature", "properties": { "name": "Pine St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.397716, 37.792541 ] } } , +{ "type": "Feature", "properties": { "name": "Davis St & Pine St" }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792609 ] } } +, { "type": "Feature", "properties": { "name": "California St & Davis St" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793525 ] } } , { "type": "Feature", "properties": { "name": "Drumm St & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.396343, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396128, 37.793711 ] } } -, { "type": "Feature", "properties": { "name": "Market St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792982 ] } } , { "type": "Feature", "properties": { "name": "Market St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792575 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793016 ] } } , +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.396386, 37.793185 ] } } +, { "type": "Feature", "properties": { "name": "Market St & Drumm St" }, "geometry": { "type": "Point", "coordinates": [ -122.396171, 37.793474 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St" }, "geometry": { "type": "Point", "coordinates": [ -122.395184, 37.796356 ] } } , { "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building" }, "geometry": { "type": "Point", "coordinates": [ -122.393854, 37.795102 ] } } , @@ -11870,6 +11898,8 @@ , { "type": "Feature", "properties": { "name": "Steuart St & Market St" }, "geometry": { "type": "Point", "coordinates": [ -122.394540, 37.794423 ] } } , +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, { "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST" }, "geometry": { "type": "Point", "coordinates": [ -122.393725, 37.794220 ] } } , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } @@ -11878,6 +11908,8 @@ , { "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St" }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793898 ] } } , +{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793457 ] } } , { "type": "Feature", "properties": { "name": "Steuart St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } @@ -11894,12 +11926,12 @@ , { "type": "Feature", "properties": { "name": "Mission St & Fremont St" }, "geometry": { "type": "Point", "coordinates": [ -122.396944, 37.790150 ] } } , +{ "type": "Feature", "properties": { "name": "1st St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, { "type": "Feature", "properties": { "name": "1st St & Natoma St" }, "geometry": { "type": "Point", "coordinates": [ -122.396858, 37.789251 ] } } , { "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S" }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.396042, 37.788522 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & Main" }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } , { "type": "Feature", "properties": { "name": "Main St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } @@ -11908,8 +11940,6 @@ , { "type": "Feature", "properties": { "name": "Mission St & Beale St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } -, { "type": "Feature", "properties": { "name": "Main St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790845 ] } } , { "type": "Feature", "properties": { "name": "Howard St. & Beale St." }, "geometry": { "type": "Point", "coordinates": [ -122.393553, 37.790608 ] } } @@ -11920,12 +11950,16 @@ , { "type": "Feature", "properties": { "name": "Fremont St & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.395914, 37.789947 ] } } , +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394969, 37.789184 ] } } +, { "type": "Feature", "properties": { "name": "Beale St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.394454, 37.789930 ] } } , { "type": "Feature", "properties": { "name": "Beale St. & Howard St." }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } , { "type": "Feature", "properties": { "name": "Fremont St & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.393768, 37.788217 ] } } , +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392781, 37.793813 ] } } +, { "type": "Feature", "properties": { "name": "The Embarcadero & Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.392309, 37.793779 ] } } , { "type": "Feature", "properties": { "name": "Steuart St&Mission St" }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } @@ -11934,8 +11968,6 @@ , { "type": "Feature", "properties": { "name": "The Embarcadero & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.391150, 37.792677 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St" }, "geometry": { "type": "Point", "coordinates": [ -122.392523, 37.791405 ] } } -, { "type": "Feature", "properties": { "name": "Hward St&Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.392395, 37.791337 ] } } , { "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear" }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792405 ] } } @@ -11946,7 +11978,9 @@ , { "type": "Feature", "properties": { "name": "Beale St. & Folsom St." }, "geometry": { "type": "Point", "coordinates": [ -122.393081, 37.788844 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791083 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE" }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788675 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790812 ] } } , { "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St" }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790744 ] } } , @@ -11954,7 +11988,9 @@ , { "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero" }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789455 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388532, 37.789675 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS" }, "geometry": { "type": "Point", "coordinates": [ -122.388618, 37.789591 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St" }, "geometry": { "type": "Point", "coordinates": [ -122.388489, 37.789574 ] } } , { "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.377203, 37.828175 ] } } , @@ -11962,17 +11998,17 @@ , { "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829836 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St" }, "geometry": { "type": "Point", "coordinates": [ -122.373469, 37.829819 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St" }, "geometry": { "type": "Point", "coordinates": [ -122.376301, 37.825463 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.371967, 37.828413 ] } } , { "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } , { "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE" }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.374971, 37.823243 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.374284, 37.823396 ] } } , { "type": "Feature", "properties": { "name": "9th St. & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.373898, 37.823514 ] } } , @@ -11994,27 +12030,25 @@ , { "type": "Feature", "properties": { "name": "California St & Avenue D" }, "geometry": { "type": "Point", "coordinates": [ -122.369521, 37.818497 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822379 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819938 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St" }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821938 ] } } , { "type": "Feature", "properties": { "name": "Avenue H & California St" }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } , { "type": "Feature", "properties": { "name": "California St & Avenue C" }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370894, 37.813242 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813056 ] } } , { "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd" }, "geometry": { "type": "Point", "coordinates": [ -122.370851, 37.813140 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr" }, "geometry": { "type": "Point", "coordinates": [ -122.369864, 37.812039 ] } } -, { "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct" }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811801 ] } } , { "type": "Feature", "properties": { "name": "Avenue M & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.364886, 37.822226 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M" }, "geometry": { "type": "Point", "coordinates": [ -122.364199, 37.820751 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240" }, "geometry": { "type": "Point", "coordinates": [ -122.364542, 37.811852 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } , { "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St" }, "geometry": { "type": "Point", "coordinates": [ -122.363770, 37.811683 ] } } , @@ -12024,13 +12058,15 @@ , { "type": "Feature", "properties": { "name": "Sutter St & Laguna St" }, "geometry": { "type": "Point", "coordinates": [ -122.428701, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St" }, "geometry": { "type": "Point", "coordinates": [ -122.424924, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St" }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } , { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421663, 37.787827 ] } } , +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave" }, "geometry": { "type": "Point", "coordinates": [ -122.421534, 37.787624 ] } } +, { "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.421834, 37.787386 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420075, 37.787997 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St" }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787827 ] } } , { "type": "Feature", "properties": { "name": "Polk St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786911 ] } } , @@ -12048,14 +12084,14 @@ , { "type": "Feature", "properties": { "name": "Jones St & Post St" }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.412951, 37.787640 ] } } -, { "type": "Feature", "properties": { "name": "Geary Blvd & Jones St" }, "geometry": { "type": "Point", "coordinates": [ -122.413337, 37.786759 ] } } , { "type": "Feature", "properties": { "name": "Post St & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411320, 37.787878 ] } } , { "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St" }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786979 ] } } , +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St" }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, { "type": "Feature", "properties": { "name": "Mason St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.409947, 37.787217 ] } } , { "type": "Feature", "properties": { "name": "Powell St & Geary Blvd" }, "geometry": { "type": "Point", "coordinates": [ -122.408316, 37.787454 ] } } @@ -12072,23 +12108,21 @@ , { "type": "Feature", "properties": { "name": "Market St & Kearny St" }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787725 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St" }, "geometry": { "type": "Point", "coordinates": [ -122.403209, 37.787708 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } -, { "type": "Feature", "properties": { "name": "Mission St & 2nd St" }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787861 ] } } , { "type": "Feature", "properties": { "name": "2nd St & Howard St" }, "geometry": { "type": "Point", "coordinates": [ -122.398145, 37.786759 ] } } , { "type": "Feature", "properties": { "name": "Folsom St & 1st St" }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787420 ] } } , +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM" }, "geometry": { "type": "Point", "coordinates": [ -122.393596, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT" }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, { "type": "Feature", "properties": { "name": "Harrison St & Main St" }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound" }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown" }, "geometry": { "type": "Point", "coordinates": [ -122.401922, 37.788692 ] } } ] } ] } , diff --git a/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json b/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json index c5b38aa02..c42f893f3 100644 --- a/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json +++ b/tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json @@ -5,104 +5,62 @@ "description": "tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json.check.mbtiles -z10 --retain-points-multiplier 10 -M10000 --drop-smallest-as-needed tests/muni/muni.json", -"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":10,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":10,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"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\":4576}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":10,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":10,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"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\":4564}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", "maxzoom": "10", "minzoom": "0", "name": "tests/muni/out/-z10_--retain-points-multiplier_10_-M10000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4561},{\"dropped_by_rate\":4511},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":4121},{\"dropped_by_rate\":3411},{\"dropped_by_rate\":1650},{\"dropped_by_rate\":1165,\"dropped_as_needed\":124,\"tile_size_desired\":68538},{\"dropped_by_rate\":1345,\"dropped_as_needed\":888,\"tile_size_desired\":72665},{\"dropped_as_needed\":1976,\"tile_size_desired\":67958}]", +"strategies": "[{\"dropped_by_rate\":4604},{\"dropped_by_rate\":4599},{\"dropped_by_rate\":4579},{\"dropped_by_rate\":4539},{\"dropped_by_rate\":4436},{\"dropped_by_rate\":4195},{\"dropped_by_rate\":3568},{\"dropped_by_rate\":1992},{\"dropped_by_rate\":1077,\"dropped_as_needed\":298,\"tile_size_desired\":68065},{\"dropped_by_rate\":1104,\"dropped_as_needed\":1585,\"tile_size_desired\":72398},{\"dropped_as_needed\":4481,\"tile_size_desired\":67958}]", "tippecanoe_decisions": "{\"basezoom\":10,\"droprate\":2.5,\"retain_points_multiplier\":10}", "type": "overlay", "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } ] } ] } , @@ -110,109 +68,73 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } ] } ] } , @@ -220,615 +142,505 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.727280 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.827141 ] } } -, -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.827141 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.809784 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.814124 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.360229, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.705553 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.709899 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } ] } ] } , @@ -837,25190 +649,25102 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.533264, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.522278, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829311 ] } } -, -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.824972 ] } } -, -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.522278, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.522278, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.511292, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.796763 ] } } , { "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.814124 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.362976, 37.809784 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.360229, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } +] } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.707726 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.714245 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.712072 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.531891, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.714245 ] } } -] } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.797848 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.775057 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.800019 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.531891, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.511292, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.717504 ] } } +] } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.522964, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.514725, 37.832022 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.361603, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714245 ] } } -] } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.782112 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.832022 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.828768 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825514 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.370529, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811411 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.825514 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825514 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811411 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.705553 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.728910 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.767458 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.725651 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.374649, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } -] } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.529488, 37.821718 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829582 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.529488, 37.821718 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829582 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750087 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750087 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.459450, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794322 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.366753, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.816293 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808428 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.364006, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827141 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.820633 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.737598 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 119, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.372246, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.705825 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724836 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } -] } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784283 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827141 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821989 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.706776 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707319 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813310 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.820633 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 119, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -12.239799, 37.820090 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833785 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833514 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833514 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788895 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832294 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832429 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833785 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833514 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833514 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.485714, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770036 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.485714, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750494 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.749408 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770036 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750494 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.805986 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.808563 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807750 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.802053 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.807343 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828091 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.376194, 37.825379 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829175 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825108 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.811276 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.807343 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.376194, 37.825379 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824023 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829175 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825108 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.818328 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.811276 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768137 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767051 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768951 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749408 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749408 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.749951 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.747236 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740449 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740449 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736919 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731761 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.382030, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736919 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.382030, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.375507, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.713023 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715467 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709220 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.711936 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.712072 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } ] } ] } , @@ -26032,23 +25756,19 @@ , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } ] } ] } , @@ -26056,23 +25776,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , { "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , { "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , @@ -26940,15 +26660,15 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } , { "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , { "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } , { "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } , @@ -32176,43 +31896,25 @@ ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } ] } ] } , @@ -32220,27 +31922,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } ] } ] } ] } diff --git a/tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json b/tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json index b11ddd0b2..a14a841bc 100644 --- a/tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json +++ b/tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json @@ -9,7 +9,7 @@ "maxzoom": "11", "minzoom": "0", "name": "tests/muni/out/-z11_--retain-points-multiplier_2_--extend-zooms-if-still-dropping.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4605},{\"dropped_by_rate\":4601},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4569},{\"dropped_by_rate\":4513},{\"dropped_by_rate\":4371},{\"dropped_by_rate\":5237},{\"dropped_by_rate\":3669},{\"dropped_by_rate\":1030},{}]", +"strategies": "[{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4608},{\"dropped_by_rate\":4606},{\"dropped_by_rate\":4603},{\"dropped_by_rate\":4594},{\"dropped_by_rate\":4573},{\"dropped_by_rate\":4522},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":5341},{\"dropped_by_rate\":3924},{\"dropped_by_rate\":1568},{}]", "tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":2}", "type": "overlay", "version": "2" @@ -17,14 +17,10 @@ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } ] } ] } , @@ -32,897 +28,797 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.832022 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -936,1547 +832,1345 @@ , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } -, -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798662 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } -, -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789438 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } -, -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779127 ] } } -, -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } -, -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } -, -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } -, -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } -, -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } -, -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } -, -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778585 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -2484,31 +2178,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827413 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } ] } ] } , @@ -2517,11572 +2203,9988 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } -, -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.530346, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836496 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829582 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759451 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 238, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } -] } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784147 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 238, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833039 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833717 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788421 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710239 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.709017 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710375 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.807546 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745811 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756805 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770376 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732643 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747168 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769968 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762505 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750562 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740788 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795068 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797238 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.727620 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823548 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813107 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772411 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797238 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757212 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757212 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828294 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823548 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813242 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772139 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769833 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.763998 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757212 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762844 ] } } -, -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764269 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } -, -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } -, -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758366 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } -, -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } -, -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } -, -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } -, -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } -, -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } -, -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751783 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749408 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749204 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744929 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751783 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } -, -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737734 ] } } -, -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } -, -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } -, -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742282 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.741060 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } -, -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746761 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748118 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746897 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739024 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } -, -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } -, -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } -, -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } -, -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } -, -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } -, -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } -, -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738277 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } -, -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } -, -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } -, -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } -, -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735223 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } -, -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720084 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } -, -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } -, -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734815 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } -, -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727416 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726398 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } -, -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } -, -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.748390 ] } } -, -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } -, -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } -, -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } -, -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } -, -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.750019 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } -, -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736241 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740924 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742689 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738073 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } -, -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } -, -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } -, -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.732439 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } -, -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735358 ] } } -, -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } -, -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } -, -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } -, -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } -, -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } -, -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730471 ] } } -, -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729317 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } -, -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } -, -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } -, -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } -, -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } -, -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } -, -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } -, -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } -, -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } -, -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } -, -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738752 ] } } -, -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } -, -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } -, -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } -, -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } -, -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } -, -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } -, -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729520 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } -, -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } -, -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.732032 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729860 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } -, -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } -, -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } -, -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } -, -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } -, -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } -, -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } -, -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } -, -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } -, -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } -, -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } -, -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } -, -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } -, -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } -, -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } -, -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } -, -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } -, -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } -, -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -] } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } ] } ] } , @@ -14090,15 +12192,15 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , diff --git a/tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json b/tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json new file mode 100644 index 000000000..87bc10058 --- /dev/null +++ b/tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json @@ -0,0 +1,30472 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-122.538670,37.705764,-12.240000,37.836443", +"bounds": "-122.538670,37.705764,-12.240000,37.836443", +"center": "-122.431641,37.788049,11", +"description": "tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json.check.mbtiles -z11 --retain-points-multiplier 2 --preserve-multiplier-density-threshold 512 tests/muni/muni.json", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"name\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":1000,\"type\":\"string\",\"values\":[\" 4th St & Brannan St\",\" Conzelman Rd & Mccullough Rd\",\"100 O'Shaughnessy Blvd\",\"101 Dakota St\",\"1095 CONNECTICUT ST\",\"10th Ave & Ortega St\",\"10th Ave & Pacheco St\",\"10th Ave & Quintara St\",\"1100 Lake Merced Blvd\",\"115 TELEGRAPH Hill Blvd\",\"117 Warren Dr\",\"11th St & Bryant St\",\"11th St & Folsom St\",\"11th St & Harrison St\",\"11th St & Howard St\",\"11th St & Market St\",\"11th St & Mission St\",\"11th St/btw Market & Mission\",\"120 Portola Dr\",\"126 Miraloma Dr\",\"13th St & Gateview Ave\",\"14 Dakota St\",\"14th Avenue & Geary Boulevard\",\"14th Ave & Quintara St\",\"14th Ave & Santiago St\",\"14th Ave & Taraval St\",\"14th Ave & Ulloa St\",\"14th St & Alpine Ter\",\"14th St & Castro St\",\"14th St & Church St\",\"14th St & Mission St\",\"14th St & Noe St\",\"14th St & SANCHEZ ST\",\"14th St & Sanchez St\",\"150 Otis St\",\"15th Ave & Noriega St\",\"15th Ave & Ortega St\",\"15th Ave & Pacheco St\",\"15th Ave & Quintara St\",\"15th Ave & Taraval St\",\"15th Ave & Ulloa St\",\"15th Ave & West Portal Ave\",\"15th St & Mission St\",\"16 th St & South Van Ness\",\"164 Addison St\",\"1650 Geneva Ave\",\"1697 7th Ave\",\"16th Ave & Lawton St\",\"16th Ave & Lomita Ave\",\"16th Ave & Moraga St\",\"16th Ave & Noriega St\",\"16th Ave & Ortega St\",\"16th Ave & Pacheco St\",\"16th Avenue at Lawton Street\",\"16th St & 4th St\",\"16th St & Bryant St\",\"16th St & Church St\",\"16th St & Dolores St\",\"16th St & Folsom St\",\"16th St & Guerrero St\",\"16th St & Harrison St\",\"16th St & Kansas St\",\"16th St & Mission St\",\"16th St & Missouri St\",\"16th St & Potrero Ave\",\"16th St & San Bruno Ave\",\"16th St & Shotwell St\",\"16th St & South Van Ness\",\"16th St & Valencia St\",\"16th St & Vermont St\",\"16th St & Wisconsin St\",\"16th St& Rhode Island St\",\"16th Street & 4th Street\",\"16th Street & Missouri St\",\"16th Street & Rhode Islandi St\",\"16th Street & Wisconsin St\",\"170 Buckingham Way\",\"1701 Geneva Ave\",\"1721 Geneva Ave\",\"1725 Sunnydale Ave\",\"1730 3rd St\",\"1731 3RD ST\",\"1750 Geneva Ave\",\"176 Rhode Island St\",\"1798 Laguna Honda Blvd\",\"17TH ST & KANSAS ST\",\"17th Ave & Quintara St\",\"17th Ave & Rivera St\",\"17th Ave & Santiago St\",\"17th St & Belvedere St\",\"17th St & Castro St\",\"17th St & Clayton St\",\"17th St & Cole St\",\"17th St & De Haro St\",\"17th St & Diamond St\",\"17th St & Kansas St\",\"17th St & Noe St\",\"17th St & Wisconsin St\",\"1800 Sunnydale Ave\",\"18th St & 3rd St\"]},{\"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\":4283}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"name\",\"count\":18,\"type\":\"string\",\"values\":[\"Metro Castro Station/Downtown\",\"Metro Castro Station/Outbound\",\"Metro Church Station/Downtown\",\"Metro Church Station/Outbound\",\"Metro Civic Center Station/Downtn\",\"Metro Civic Center Station/Downtown\",\"Metro Civic Center Station/Outbd\",\"Metro Embarcadero Station\",\"Metro Embarcadero Station/Downtown\",\"Metro Forest Hill Station/Downtown\",\"Metro Montgomery Station/Downtown\",\"Metro Montgomery Station/Outbound\",\"Metro Powell Station/Downtown\",\"Metro Powell Station/Outbound\",\"Metro Van Ness Station\",\"Metro Van Ness Station/Downtown\",\"Metro Van Ness Station/Outbound\",\"Van Ness Station Outbound\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", +"maxzoom": "11", +"minzoom": "0", +"name": "tests/muni/out/-z11_--retain-points-multiplier_2_--preserve-multiplier-density-threshold_512.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4606},{\"dropped_by_rate\":4604},{\"dropped_by_rate\":4599},{\"dropped_by_rate\":4583},{\"dropped_by_rate\":4538},{\"dropped_by_rate\":4412},{\"dropped_by_rate\":4062},{\"dropped_by_rate\":4169},{\"dropped_by_rate\":2281},{\"dropped_by_rate\":626},{}]", +"tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":2}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.216797, 37.788081 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.260742, 37.822802 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.814124 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.514038, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.827141 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.716418 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.529144, 37.821718 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.835819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.828226 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.821718 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.717504 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.529831, 37.821718 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831480 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836361 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.512665, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.808699 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.828226 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.705825 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.529831, 37.821718 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835819 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.829582 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808699 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804630 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794322 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.372589, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724836 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724565 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.379112, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.705825 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708541 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.707998 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 119, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835954 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.481937, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724429 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.808563 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.804223 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.372761, 37.824023 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.363834, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.787132 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.749408 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750222 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738006 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722257 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 238, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722528 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710239 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.710103 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.705961 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706572 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708609 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.715467 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708609 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712683 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707659 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711393 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.532320, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832429 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.523394, 37.831616 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830328 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3751 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821785 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.515326, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3722 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833582 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3724 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833107 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833039 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.807546 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800086 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802257 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_sequence": 3808 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797916 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_sequence": 3809 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3709 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797102 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805376 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_sequence": 3757 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805376 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3854 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796288 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788149 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795814 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.512922, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3767 }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.509146, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.763998 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783537 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3850 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.486830, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3851 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.482367, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.483740, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.478075, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.488203, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.477560, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755855 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731557 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753276 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745811 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.745811 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736716 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3827 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3826 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 3721 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 3754 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3853 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 3706 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760198 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.462797, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758569 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.448206, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.777974 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.775328 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 3771 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787674 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 3762 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771258 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771190 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.767051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.766915 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.758637 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761283 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760198 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768001 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763862 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756058 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750494 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.470694, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 3781 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739159 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743435 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733661 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3748 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746625 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.448893, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3824 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724497 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.806326 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806326 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808563 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806461 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3821 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803342 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805376 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3833 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3831 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802867 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804155 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799408 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802053 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.800086 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800154 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791676 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807139 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803342 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803884 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 3773 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796017 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795068 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794389 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3847 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792626 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3845 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3846 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791812 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3711 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3800 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3707 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3817 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829785 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825447 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823480 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825175 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819887 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.370958, 37.813107 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813107 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822192 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820701 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.364779, 37.811954 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3772 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3719 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787335 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787132 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3718 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779127 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 3742 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3837 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3848 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764676 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.763387 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763048 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765083 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3728 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3738 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763998 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3737 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3732 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3735 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3769 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3768 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3799 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.780416 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773496 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.774650 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_sequence": 3747 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3710 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3843 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3840 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.768408 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 3746 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 3796 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.763523 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 3795 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763455 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3829 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759519 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756126 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3794 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3793 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 3790 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761283 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.743775 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3780 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736173 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3734 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3729 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_sequence": 3775 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.745879 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744318 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.735223 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725040 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 3750 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3743 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.725923 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722664 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3777 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.739499 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.742757 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740653 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3797 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3836 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735223 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735290 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 3787 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727484 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725176 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723343 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_sequence": 3804 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719337 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731964 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3783 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722596 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745811 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.387094, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740653 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.380743, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.379198, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.730131 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730742 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728638 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.376966, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.373705, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.367868, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714517 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3818 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3814 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3819 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714720 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.715467 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.387781, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 477, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 326, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832395 ] } } +, +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.532363, 37.831819 ] } } +, +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832599 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.527213, 37.832463 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.523437, 37.831650 ] } } +, +{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829074 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.524381, 37.830362 ] } } +, +{ "type": "Feature", "properties": { "name": "Bunker Rd & Field Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.523265, 37.831345 ] } } +, +{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.529702, 37.821819 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.714551 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.480178, 37.714584 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715841 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.709118 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715229 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714992 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714618 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713600 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.713091 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.471337, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.470994, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714313 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.714279 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.712480 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.467389, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710273 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.467217, 37.714211 ] } } +, +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.467132, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.465072, 37.711835 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.464900, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.705757 ] } } +, +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714347 ] } } +, +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.462325, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.710918 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.461553, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.711291 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.460265, 37.710137 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.714856 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713193 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.713973 ] } } +, +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.455974, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.454772, 37.710307 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.705995 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.460694, 37.706165 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706606 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.706810 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.707353 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707421 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.713939 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714075 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.448335, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.442670, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714483 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.711461 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "Morse St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.712514 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712853 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.453313, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.452197, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Lawrence Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.715705 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.714754 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711156 ] } } +, +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.437949, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714449 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.715501 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.715128 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713464 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.714143 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.714041 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710952 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +, +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.712921 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.712140 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.709492 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +, +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.711088 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.710714 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +, +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712989 ] } } +, +{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.710035 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.712038 ] } } +, +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.415204, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.715026 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714415 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Sawyer St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.712717 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.711665 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.412801, 37.711054 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.712751 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.710748 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.710477 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.710375 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.708473 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.708507 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.708202 ] } } +, +{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708643 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708372 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707896 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707693 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.707149 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.706946 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.708134 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707081 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706538 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709322 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709051 ] } } +, +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715331 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.715162 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.713328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712649 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.407393, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711699 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.710205 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.710001 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.709933 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.711563 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.711427 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711495 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711359 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.713804 ] } } +, +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +, +{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.712581 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.711902 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.710578 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +, +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.714686 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714822 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.398982, 37.714958 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +, +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.714245 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.401986, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Arleta Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.712208 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712174 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712446 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.712276 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.402329, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712242 ] } } +, +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.711122 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.710612 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713532 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400699, 37.712004 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711631 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.709865 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.709356 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY SHORE BLVD & SUNNYDALE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.708847 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.404647, 37.709526 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +, +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.708813 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711223 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.710884 ] } } +, +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.711257 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.387824, 37.714109 ] } } +, +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713396 ] } } +, +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712785 ] } } +, +{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708983 ] } } +, +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.709831 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.712140 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.515368, 37.831751 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.514939, 37.831785 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833005 ] } } +, +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.502408, 37.836124 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.502151, 37.836429 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833887 ] } } +, +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "geometry": { "type": "Point", "coordinates": [ -122.493825, 37.833683 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.493997, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4145 }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.833616 ] } } +, +{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835920 ] } } +, +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833141 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833073 ] } } +, +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.484040, 37.829514 ] } } +, +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.483525, 37.829446 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.803952 ] } } +, +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "BOWLEY ST & GIBSON RD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.480950, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.807546 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.475028, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.472110, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803579 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.469277, 37.801036 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.803036 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.462239, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.459149, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.460351, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4023 }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803850 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.803681 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802291 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Transit Center NS-??/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4239 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.801578 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4021 }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.801443 ] } } +, +{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +, +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4024 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797882 ] } } +, +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4022 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797950 ] } } +, +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801070 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4025 }, "geometry": { "type": "Point", "coordinates": [ -122.454085, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4238 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3743 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.455115, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798154 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "geometry": { "type": "Point", "coordinates": [ -122.453399, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.452540, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.451854, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.443871, 37.804562 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.802494 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.801545 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4104 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.798425 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799849 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.798866 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.447391, 37.790727 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.447047, 37.788963 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.441812, 37.803070 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800256 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.439666, 37.800459 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.439322, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.799306 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3894 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804461 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4181 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802630 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +, +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804868 ] } } +, +{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803443 ] } } +, +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3974 }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.805274 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.436490, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800731 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799713 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.799612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4282 }, "geometry": { "type": "Point", "coordinates": [ -122.435632, 37.800832 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.434516, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797136 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "geometry": { "type": "Point", "coordinates": [ -122.432113, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.432284, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.441983, 37.796322 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.438893, 37.796594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.441297, 37.791575 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791778 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795848 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788454 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "Steiner St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.789845 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.433915, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.509961, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.512965, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.779025 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "geometry": { "type": "Point", "coordinates": [ -122.509875, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Great Hwy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771427 ] } } +, +{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780043 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.779907 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779840 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.779772 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.499576, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.503009, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.500691, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.779059 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.773293 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.507043, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771495 ] } } +, +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.505670, 37.773564 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.503610, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4193 }, "geometry": { "type": "Point", "coordinates": [ -122.503524, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.500606, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.499833, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4192 }, "geometry": { "type": "Point", "coordinates": [ -122.500348, 37.771868 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.500091, 37.771902 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.771800 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.510304, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.510476, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.510047, 37.764133 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "geometry": { "type": "Point", "coordinates": [ -122.509189, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.509017, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.508759, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.507386, 37.764201 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.506270, 37.764065 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.506099, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "geometry": { "type": "Point", "coordinates": [ -122.507987, 37.760266 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.506013, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.505841, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.505755, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "geometry": { "type": "Point", "coordinates": [ -122.502837, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3818 }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.502580, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "geometry": { "type": "Point", "coordinates": [ -122.499146, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779432 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.496400, 37.779670 ] } } +, +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.492537, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.493310, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.493396, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.493224, 37.779534 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.492280, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.488074, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.491422, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783571 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4278 }, "geometry": { "type": "Point", "coordinates": [ -122.490048, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.489018, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.486873, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.780009 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "geometry": { "type": "Point", "coordinates": [ -122.492194, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.493138, 37.776007 ] } } +, +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.492881, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.491851, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.489963, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772173 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "geometry": { "type": "Point", "coordinates": [ -122.489619, 37.772377 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.772241 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4190 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.785877 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.481894, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.485242, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.484727, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780247 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.484813, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.782214 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.477517, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.484555, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.484384, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.482409, 37.776346 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774548 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.484212, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.484298, 37.772682 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.483783, 37.772513 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.478118, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.475972, 37.776617 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.480607, 37.772648 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772852 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.478461, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4184 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.495799, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.491937, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.488246, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "geometry": { "type": "Point", "coordinates": [ -122.495971, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.495713, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3796 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.757042 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.495456, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.495284, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.492452, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.489705, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761114 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3794 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.753480 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.489448, 37.753582 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.489190, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.487302, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.485499, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.481637, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765185 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.479491, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.480264, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.477603, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4212 }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763692 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.486529, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.481380, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.481122, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.486014, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.753785 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.483869, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.482753, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.483010, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.480092, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.479835, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.476830, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760164 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.756025 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.480865, 37.753955 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756228 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.755991 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753921 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.506356, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.505584, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.505498, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.504468, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.505240, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.505069, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.507558, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.506700, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747474 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.504983, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.504811, 37.745438 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.753039 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.500176, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.498031, 37.753208 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747406 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747542 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747677 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743741 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.504725, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.504554, 37.741671 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741773 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.505326, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736003 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737972 ] } } +, +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736139 ] } } +, +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.504125, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735596 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735392 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.498975, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.502322, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731591 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.499232, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726771 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +, +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.499919, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.495112, 37.753310 ] } } +, +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "geometry": { "type": "Point", "coordinates": [ -122.495542, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.495027, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.494855, 37.749578 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.497430, 37.747609 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.494769, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747949 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.487817, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.494683, 37.744216 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.494340, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.492967, 37.742248 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.492709, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.494082, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.494168, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.736546 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.487645, 37.744521 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.487559, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +, +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.487388, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.487216, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.487130, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.485585, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.483439, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.481294, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.481551, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.476401, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750188 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.476230, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.481208, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.486100, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.480435, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.743028 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741297 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.496829, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4258 }, "geometry": { "type": "Point", "coordinates": [ -122.496572, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.496657, 37.733526 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.494597, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733763 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.493911, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.493653, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Clearfield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.491593, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.489276, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.485843, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.483954, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.482238, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729622 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.486272, 37.729453 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734646 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.477260, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728536 ] } } +, +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.479148, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728061 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.476058, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "geometry": { "type": "Point", "coordinates": [ -122.475801, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728876 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +, +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "geometry": { "type": "Point", "coordinates": [ -122.485156, 37.724123 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.484899, 37.724225 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726975 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.484984, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "geometry": { "type": "Point", "coordinates": [ -122.483611, 37.722766 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.482152, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.483096, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718624 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4242 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720729 ] } } +, +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.478805, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.476144, 37.726330 ] } } +, +{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719643 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4243 }, "geometry": { "type": "Point", "coordinates": [ -122.479920, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718692 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.475629, 37.719100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.472539, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.471166, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.470822, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.464728, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.469020, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.467647, 37.780993 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "geometry": { "type": "Point", "coordinates": [ -122.466874, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4142 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782892 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.783130 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.467303, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4178 }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.474170, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.472196, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.775192 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "geometry": { "type": "Point", "coordinates": [ -122.464986, 37.775260 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "geometry": { "type": "Point", "coordinates": [ -122.464814, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.463613, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.464471, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.462583, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781128 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.464385, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.459836, 37.783096 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.786894 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.456832, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.456660, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.456317, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.453742, 37.783944 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +, +{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3913 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4281 }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.781875 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.781366 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781264 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3922 }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.773971 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777465 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.455373, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.455029, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.454858, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774616 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.454343, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.454171, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.473054, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765660 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "TEA GARDEN DR/DeYoung Museum", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.468934, 37.770545 ] } } +, +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4123 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.466702, 37.762233 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.761928 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Avenue at Lawton Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.473655, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.470565, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756975 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756364 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756296 ] } } +, +{ "type": "Feature", "properties": { "name": "Noriega St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.473140, 37.755244 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.473226, 37.754260 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "geometry": { "type": "Point", "coordinates": [ -122.469535, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.758196 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758535 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.465672, 37.756500 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.464299, 37.764099 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.464042, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762335 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.464128, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.462840, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.461982, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.460523, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave &4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4174 }, "geometry": { "type": "Point", "coordinates": [ -122.460952, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +, +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.457948, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.458034, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.456574, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.456746, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.454686, 37.766101 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.454515, 37.764337 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758603 ] } } +, +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758467 ] } } +, +{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "geometry": { "type": "Point", "coordinates": [ -122.463870, 37.758434 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +, +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.461896, 37.757721 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756771 ] } } +, +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.463784, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +, +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.756907 ] } } +, +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.451940, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Walnut St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.448506, 37.787505 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.449880, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.448249, 37.784995 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.786250 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.777770 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.451682, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778008 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.775396 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4067 }, "geometry": { "type": "Point", "coordinates": [ -122.453141, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773598 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.449450, 37.773429 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775905 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4187 }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.775701 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.443614, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4189 }, "geometry": { "type": "Point", "coordinates": [ -122.443185, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +, +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4185 }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.776821 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4197 }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.447562, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.447305, 37.773734 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774005 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.773937 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771970 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774073 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774412 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787980 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.786284 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.785165 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.785300 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785266 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785402 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.783842 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779500 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783435 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.439408, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783164 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.439237, 37.781603 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.439065, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783638 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.438807, 37.780484 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.438979, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.785945 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.435031, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.788047 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.433143, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.780925 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.432714, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.432628, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781739 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781535 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781332 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.431941, 37.779873 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.442155, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.777533 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.777635 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777804 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777669 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776787 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770749 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.440267, 37.770918 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.774785 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.774718 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.774887 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773055 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.437348, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771291 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.778144 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.778279 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.431684, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.778347 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.432456, 37.775633 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.437091, 37.771054 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.436748, 37.771224 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.453485, 37.768340 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768238 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769595 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.769697 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765321 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.452884, 37.764540 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3931 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.765762 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.449708, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.449536, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.763116 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.445416, 37.770104 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.767085 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.766949 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.446275, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770342 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.770206 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.445159, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +, +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "geometry": { "type": "Point", "coordinates": [ -122.444816, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.764303 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "ASHBURY ST & CLAYTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.763014 ] } } +, +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765456 ] } } +, +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764507 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.763726 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +, +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.452626, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.760910 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.445931, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.758671 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.445331, 37.759926 ] } } +, +{ "type": "Feature", "properties": { "name": "341 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.759892 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.761792 ] } } +, +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.442927, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.443528, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760232 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.444472, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.444043, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.444301, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.444129, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.443442, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.756398 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.442842, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.754124 ] } } +, +{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.443013, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.768679 ] } } +, +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +, +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768035 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.439494, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.766813 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way&Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.766712 ] } } +, +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.441039, 37.765355 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762064 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.769188 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.768951 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.767424 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769392 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.769222 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3964 }, "geometry": { "type": "Point", "coordinates": [ -122.433057, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.764269 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.762471 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762539 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762403 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.762505 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.763896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.433314, 37.763964 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761725 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.441125, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.438293, 37.761589 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.438207, 37.760639 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760707 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.438035, 37.759044 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.440438, 37.755041 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754057 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757551 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755346 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753514 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.434859, 37.760842 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.759146 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.432885, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756092 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.750528 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750799 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748797 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.474084, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.748593 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.748729 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.473912, 37.746965 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +, +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.473741, 37.745098 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.473483, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.470737, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.470479, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.745030 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +, +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.466531, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.466445, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.749340 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.469621, 37.748831 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.467046, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.475457, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743198 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.471423, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743130 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.470307, 37.743402 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.475543, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.470393, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.470050, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741433 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.466273, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4112 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "geometry": { "type": "Point", "coordinates": [ -122.466102, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.466016, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.465415, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4208 }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4111 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741162 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "geometry": { "type": "Point", "coordinates": [ -122.465930, 37.740754 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4209 }, "geometry": { "type": "Point", "coordinates": [ -122.465844, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740788 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.465758, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738107 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3824 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.466960, 37.739601 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739465 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.750935 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.458377, 37.751715 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.456918, 37.749849 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.751478 ] } } +, +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751614 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "geometry": { "type": "Point", "coordinates": [ -122.458892, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3928 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA BLVD & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "geometry": { "type": "Point", "coordinates": [ -122.458806, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Dewey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.457089, 37.745370 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.457175, 37.745302 ] } } +, +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747813 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746388 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.455544, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.453828, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745709 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740415 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.463698, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.460093, 37.739363 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.459235, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.460008, 37.739193 ] } } +, +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.461467, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.461295, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.456403, 37.744012 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Waithman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741637 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743469 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.455459, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.455201, 37.743232 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741976 ] } } +, +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736682 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736750 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4116 }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.475200, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.474513, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.732779 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4110 }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.732473 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732134 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.473826, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4249 }, "geometry": { "type": "Point", "coordinates": [ -122.471509, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4003 }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.471938, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.734306 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.471251, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731048 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.472453, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.471852, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.469792, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.468076, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.466359, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "geometry": { "type": "Point", "coordinates": [ -122.465501, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "geometry": { "type": "Point", "coordinates": [ -122.469449, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.469106, 37.729996 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3804 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728400 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.467561, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.474942, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "geometry": { "type": "Point", "coordinates": [ -122.474856, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.474685, 37.727178 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721170 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.475286, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721068 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475114, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.474341, 37.721340 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.721578 ] } } +, +{ "type": "Feature", "properties": { "name": "Crespi Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4121 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.475371, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.719541 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.472711, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727246 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "geometry": { "type": "Point", "coordinates": [ -122.466788, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "geometry": { "type": "Point", "coordinates": [ -122.469964, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3972 }, "geometry": { "type": "Point", "coordinates": [ -122.468162, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "geometry": { "type": "Point", "coordinates": [ -122.465243, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.464557, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.463956, 37.732032 ] } } +, +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "geometry": { "type": "Point", "coordinates": [ -122.459664, 37.734544 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733695 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.460437, 37.730539 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3718 }, "geometry": { "type": "Point", "coordinates": [ -122.458978, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "geometry": { "type": "Point", "coordinates": [ -122.458720, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.457776, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.730708 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.457519, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731116 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731252 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.455630, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724938 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "geometry": { "type": "Point", "coordinates": [ -122.461381, 37.724904 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Dorado Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.461038, 37.724972 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.463441, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & JULES AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "geometry": { "type": "Point", "coordinates": [ -122.461123, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724395 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.458291, 37.724259 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.454000, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "geometry": { "type": "Point", "coordinates": [ -122.459064, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720050 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.457261, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3868 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721747 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.456231, 37.719948 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.453055, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Olympia Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.452025, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748899 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.452369, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.452111, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +, +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +, +{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.446103, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.446189, 37.751749 ] } } +, +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.445760, 37.750426 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.443700, 37.751681 ] } } +, +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +, +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.442756, 37.750697 ] } } +, +{ "type": "Feature", "properties": { "name": "6 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748017 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.447906, 37.746456 ] } } +, +{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.447648, 37.746354 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.445073, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +, +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4173 }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.746829 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +, +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.444215, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.748967 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.746897 ] } } +, +{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3900 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744487 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.450652, 37.742587 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740958 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.740822 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.449193, 37.740721 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.451510, 37.737802 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3953 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.450480, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +, +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.446017, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741094 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.447991, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.447734, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.445846, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.445674, 37.736784 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.443786, 37.736478 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.442584, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.440524, 37.750969 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749306 ] } } +, +{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.437606, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.438378, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.442498, 37.748526 ] } } +, +{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Duncan St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.745234 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.436404, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.751071 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749645 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.749476 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752903 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.752089 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.434173, 37.751240 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.751206 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751342 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.749611 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.436147, 37.748865 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.748695 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.436061, 37.747847 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.747881 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.747066 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745641 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744691 ] } } +, +{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.431769, 37.748254 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.437863, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.437520, 37.743639 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743266 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.435460, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.435546, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.436919, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.436662, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.738311 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.434688, 37.738277 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.434602, 37.737327 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.434430, 37.736241 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } +, +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.738345 ] } } +, +{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.432799, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.434344, 37.736071 ] } } +, +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.736818 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.448936, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.451425, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "geometry": { "type": "Point", "coordinates": [ -122.451253, 37.731455 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +, +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729962 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.727857 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.727620 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } +, +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.448764, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.446446, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735528 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.446361, 37.733967 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.445502, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.445588, 37.734001 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.443957, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.452283, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725549 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.453227, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723852 ] } } +, +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Phelan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "geometry": { "type": "Point", "coordinates": [ -122.452455, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.451167, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.449794, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.451768, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.451081, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.449965, 37.722121 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.450051, 37.721985 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.449279, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.449365, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.450137, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723037 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.721034 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.721001 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.447219, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3840 }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.446790, 37.720695 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "geometry": { "type": "Point", "coordinates": [ -122.446961, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.446876, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719982 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.447133, 37.719846 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SAN JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.446618, 37.720559 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4180 }, "geometry": { "type": "Point", "coordinates": [ -122.446532, 37.720627 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "geometry": { "type": "Point", "coordinates": [ -122.446704, 37.720457 ] } } +, +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.444987, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.444901, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "geometry": { "type": "Point", "coordinates": [ -122.444730, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.444386, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.445245, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.440095, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.441897, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.437778, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729045 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.440009, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.439923, 37.728977 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728808 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.439837, 37.731523 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.439580, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730301 ] } } +, +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.437263, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.437177, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.435975, 37.733831 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.733933 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.433829, 37.734476 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.434087, 37.733390 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.434001, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.433400, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.437005, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.441640, 37.726839 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725753 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "geometry": { "type": "Point", "coordinates": [ -122.442412, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725889 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.441211, 37.727145 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4141 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723445 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.438550, 37.723580 ] } } +, +{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3773 }, "geometry": { "type": "Point", "coordinates": [ -122.439752, 37.722053 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.435889, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4201 }, "geometry": { "type": "Point", "coordinates": [ -122.436233, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.435203, 37.724293 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.434945, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.724599 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724531 ] } } +, +{ "type": "Feature", "properties": { "name": "Ocean Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.435718, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.435374, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.433658, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.726160 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.432199, 37.725515 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.436318, 37.722800 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.434258, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.432971, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.423186, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.806359 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.806732 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.805580 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.806699 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.805715 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805817 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.805647 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808326 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806156 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.805478 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.806054 ] } } +, +{ "type": "Feature", "properties": { "name": "Jefferson St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808597 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4177 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.806563 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +, +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.807851 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807784 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.806665 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806495 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805749 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.807038 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801511 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.801375 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801341 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801680 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.802019 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.430654, 37.797645 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.800934 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800866 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.427392, 37.798052 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798221 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.805105 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.425418, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.805173 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.804834 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "geometry": { "type": "Point", "coordinates": [ -122.425160, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804291 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.804122 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.805003 ] } } +, +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "geometry": { "type": "Point", "coordinates": [ -122.423787, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802426 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.802189 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805410 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803647 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.801612 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801477 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800324 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.424130, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.798798 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798832 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.798696 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797747 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.796967 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.796424 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794898 ] } } +, +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "geometry": { "type": "Point", "coordinates": [ -122.423100, 37.794932 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.795678 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.423358, 37.793948 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.422414, 37.793067 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.792456 ] } } +, +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3878 }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.421298, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4259 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791439 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791371 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.422242, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.422328, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4257 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.804766 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802901 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805342 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.805241 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804528 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.415977, 37.804189 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.801002 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.800222 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.798933 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.418981, 37.799239 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799171 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798357 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.797441 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799442 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.799340 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.804393 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.803782 ] } } +, +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.803409 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802833 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802697 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801816 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802087 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804800 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.802765 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.802935 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.801172 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.409711, 37.803138 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.799985 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.800120 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800052 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.799035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.800188 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.800392 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.798255 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.798187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.412028, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.795339 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795542 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.794559 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.418036, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.795576 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.790659 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.418895, 37.790862 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.790693 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4256 }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789540 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.789370 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791032 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.417521, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792049 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.789167 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.415462, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.789234 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.788421 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.795780 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795983 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.796187 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.795712 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.795610 ] } } +, +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795441 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796390 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795305 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.411513, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.411857, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.414174, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.791541 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.414947, 37.789302 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.788319 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791710 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.410998, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.808224 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806088 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.807343 ] } } +, +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807241 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.807173 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.806936 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.806800 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.406020, 37.806631 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.806597 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.803511 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803376 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802223 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803715 ] } } +, +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.803545 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.803003 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.802731 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.802596 ] } } +, +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +, +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +, +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.801782 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800527 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.800358 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799374 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.799103 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.800697 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.796797 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.406106, 37.800765 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.801104 ] } } +, +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.797611 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.406363, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797001 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.797306 ] } } +, +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.797340 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.805207 ] } } +, +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3930 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805139 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803918 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.802324 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.801409 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802155 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.803274 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.802969 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801273 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.799679 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.798120 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797407 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.798391 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797543 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800595 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +, +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.796865 ] } } +, +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4199 }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.796729 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4231 }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.794627 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.796255 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.408252, 37.795373 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.409453, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.794084 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796119 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.796085 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.404561, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792863 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792219 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792117 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.407565, 37.792321 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792185 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.408681, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.789133 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.788387 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788183 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "geometry": { "type": "Point", "coordinates": [ -122.405419, 37.788590 ] } } +, +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.795915 ] } } +, +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.795746 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.796051 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.402759, 37.794695 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.794016 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792931 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.794288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.794186 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793270 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.403960, 37.790998 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.789743 ] } } +, +{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "POST & MONTGOMERY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788997 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.788488 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.792015 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.400098, 37.792287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3949 }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790286 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.400613, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4090 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790354 ] } } +, +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.791303 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.791100 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.399154, 37.790896 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789336 ] } } +, +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.401299, 37.789065 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788929 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +, +{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798967 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.799544 ] } } +, +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.799069 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.798900 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797814 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.797848 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797068 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.797204 ] } } +, +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.795407 ] } } +, +{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.794491 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.793440 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793406 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4103 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.397523, 37.792592 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793542 ] } } +, +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.792558 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.793033 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.795000 ] } } +, +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795102 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.795034 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794830 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793745 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.793575 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3898 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3910 }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794525 ] } } +, +{ "type": "Feature", "properties": { "name": "STEUART ST & FRANCISCO ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394605, 37.794457 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792524 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794423 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.794152 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.794220 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +, +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4101 }, "geometry": { "type": "Point", "coordinates": [ -122.394004, 37.792660 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.793474 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.793236 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Stt & Steuart St NW-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4250 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793202 ] } } +, +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791914 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791642 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790150 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789404 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4050 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.789641 ] } } +, +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789472 ] } } +, +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.788522 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.791507 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.791982 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4213 }, "geometry": { "type": "Point", "coordinates": [ -122.394776, 37.791846 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.792388 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790828 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St. & Beale St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4119 }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.393403, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4131 }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790591 ] } } +, +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790421 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.789879 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789201 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4229 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789947 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4118 }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4120 }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.789811 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4127 }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.789709 ] } } +, +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.393746, 37.788217 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793813 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +, +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +, +{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792728 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791405 ] } } +, +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.392545, 37.791168 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792355 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.391086, 37.792151 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.391858, 37.789268 ] } } +, +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4126 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788861 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.788658 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4262 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790761 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.790557 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.790489 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.789438 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4245 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789608 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789675 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828192 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +, +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.373490, 37.829819 ] } } +, +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828396 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "geometry": { "type": "Point", "coordinates": [ -122.371945, 37.828328 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4098 }, "geometry": { "type": "Point", "coordinates": [ -122.376323, 37.825480 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.375636, 37.824463 ] } } +, +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823243 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4099 }, "geometry": { "type": "Point", "coordinates": [ -122.372718, 37.824057 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "geometry": { "type": "Point", "coordinates": [ -122.373919, 37.823514 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824599 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.829277 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827311 ] } } +, +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.370057, 37.825209 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.368941, 37.823616 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.366967, 37.825311 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +, +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.371430, 37.816226 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.369542, 37.818497 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822362 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4094 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.366109, 37.819921 ] } } +, +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.370143, 37.818328 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813073 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.370915, 37.813242 ] } } +, +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "geometry": { "type": "Point", "coordinates": [ -122.371001, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813140 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +, +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822226 ] } } +, +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820735 ] } } +, +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.364821, 37.811988 ] } } +, +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "geometry": { "type": "Point", "coordinates": [ -122.364564, 37.811852 ] } } +, +{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.363791, 37.811683 ] } } +, +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "geometry": { "type": "Point", "coordinates": [ -122.364306, 37.811344 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.363362, 37.810496 ] } } +, +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.429624, 37.786487 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.784859 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.427821, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.781909 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.782010 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.424903, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.425075, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.787844 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.421556, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.421384, 37.785673 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "geometry": { "type": "Point", "coordinates": [ -122.421470, 37.785606 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4198 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.782383 ] } } +, +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.423701, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Gough st", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "geometry": { "type": "Point", "coordinates": [ -122.423444, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.782485 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781942 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.780077 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776990 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775837 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776108 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.775803 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.429194, 37.776040 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.426963, 37.779195 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.779331 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.426276, 37.776753 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.430825, 37.774277 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.430739, 37.772139 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4140 }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.772445 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776515 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777737 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.423015, 37.775973 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772920 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773802 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.773836 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.772750 ] } } +, +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4058 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.424645, 37.770952 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773191 ] } } +, +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4211 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +, +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.420955, 37.774175 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.420783, 37.771766 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.786793 ] } } +, +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786148 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.785029 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787233 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782994 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.782282 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.780213 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780179 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.417693, 37.783367 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.417436, 37.783231 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.417350, 37.783265 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.417178, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.781705 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.783469 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782621 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.415805, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780518 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780586 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.415891, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780721 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780789 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.414861, 37.787369 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.414689, 37.786420 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.786860 ] } } +, +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.414517, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.414432, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.784724 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.784893 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785809 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.411685, 37.786996 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787166 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4146 }, "geometry": { "type": "Point", "coordinates": [ -122.409968, 37.787200 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784113 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.414088, 37.783672 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782824 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781671 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4139 }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.780891 ] } } +, +{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781061 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4045 }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780654 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.412457, 37.780552 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.411942, 37.782078 ] } } +, +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.409883, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.410226, 37.782316 ] } } +, +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4102 }, "geometry": { "type": "Point", "coordinates": [ -122.412200, 37.781162 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.781298 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.420182, 37.777296 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.419753, 37.778177 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.777872 ] } } +, +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "geometry": { "type": "Point", "coordinates": [ -122.418294, 37.778381 ] } } +, +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.778042 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.775532 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.775091 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4038 }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775362 ] } } +, +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778890 ] } } +, +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4063 }, "geometry": { "type": "Point", "coordinates": [ -122.416749, 37.778754 ] } } +, +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.416835, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.416234, 37.777601 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777397 ] } } +, +{ "type": "Feature", "properties": { "name": "9TH St AND MARKET St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.777363 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4261 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4124 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774955 ] } } +, +{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4125 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774209 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.415719, 37.773327 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.415376, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.415118, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4044 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +, +{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.778585 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.778483 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779093 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.412715, 37.777703 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.778958 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779161 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779365 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.411771, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4166 }, "geometry": { "type": "Point", "coordinates": [ -122.411599, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772106 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.771597 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.772004 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.412629, 37.770850 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.773903 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774751 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772411 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4264 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769460 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.429109, 37.767662 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.767356 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767763 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767831 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767288 ] } } +, +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4276 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.428508, 37.762810 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.424989, 37.770579 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770138 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768374 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764710 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.764846 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764642 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.763421 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763082 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.430482, 37.761216 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.428422, 37.761453 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761250 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.428164, 37.761182 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3734 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3735 }, "geometry": { "type": "Point", "coordinates": [ -122.428079, 37.757382 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.757246 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756635 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756432 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.427649, 37.754769 ] } } +, +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.754599 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.761385 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.761623 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761521 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.421727, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.421641, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.758739 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.757144 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.421212, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.755550 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.421041, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.420869, 37.753412 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.420697, 37.753615 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770477 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.419925, 37.768611 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.420011, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +, +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766678 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767153 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.415547, 37.768476 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.766203 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.419667, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.419839, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.765151 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.765117 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.764948 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4149 }, "geometry": { "type": "Point", "coordinates": [ -122.417607, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765253 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4152 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765049 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3938 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762132 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.415290, 37.763828 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.412286, 37.770376 ] } } +, +{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769799 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769663 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.410913, 37.769120 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.410741, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.768103 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765389 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.765524 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.765490 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.765558 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.765728 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.410398, 37.764032 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.410312, 37.763149 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.410140, 37.762946 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.419496, 37.761894 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.760673 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.759791 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "geometry": { "type": "Point", "coordinates": [ -122.417092, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.758942 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4158 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758875 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.755821 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.755176 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755482 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.759010 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758976 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.758807 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4194 }, "geometry": { "type": "Point", "coordinates": [ -122.414775, 37.758773 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.410054, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.414346, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.408338, 37.787471 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +, +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "geometry": { "type": "Point", "coordinates": [ -122.409368, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785063 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783910 ] } } +, +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3951 }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784385 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "geometry": { "type": "Point", "coordinates": [ -122.408595, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.785368 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784758 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3960 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784792 ] } } +, +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.784452 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.784147 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +, +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "geometry": { "type": "Point", "coordinates": [ -122.408080, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.784690 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.405763, 37.785843 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.785538 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3886 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783503 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.780755 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781196 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782960 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782756 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.782723 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.782587 ] } } +, +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781434 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.781230 ] } } +, +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.787539 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787640 ] } } +, +{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.403188, 37.787708 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.785979 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.786521 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4269 }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.786352 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784656 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.784249 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.787878 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786216 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.786080 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.784961 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783978 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783028 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780314 ] } } +, +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.780450 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.403102, 37.780382 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.782146 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781807 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.776855 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776651 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.778618 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777329 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775735 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.773870 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773530 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.772547 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.408166, 37.771461 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "geometry": { "type": "Point", "coordinates": [ -122.405162, 37.774684 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.774582 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.404475, 37.774378 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771563 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.771325 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.778924 ] } } +, +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777940 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.776448 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.773259 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.401814, 37.772038 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.771699 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.773666 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773462 ] } } +, +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4088 }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786759 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.398124, 37.786555 ] } } +, +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4066 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785741 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.785334 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.394176, 37.787437 ] } } +, +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784520 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.784181 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784283 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.784079 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782689 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.782451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4268 }, "geometry": { "type": "Point", "coordinates": [ -122.397437, 37.782655 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783299 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.782858 ] } } +, +{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779975 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.779568 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } +, +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4272 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +, +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.784622 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4055 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784588 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.391944, 37.781841 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +, +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4087 }, "geometry": { "type": "Point", "coordinates": [ -122.390571, 37.780687 ] } } +, +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.388339, 37.783604 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.389884, 37.779704 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779636 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.389541, 37.779602 ] } } +, +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "geometry": { "type": "Point", "coordinates": [ -122.396665, 37.778449 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4230 }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775498 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.397180, 37.775430 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777262 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.394433, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777194 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.777058 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776380 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.776312 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4031 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4002 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3848 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.394347, 37.776074 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775769 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.397866, 37.772886 ] } } +, +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773123 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779297 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.392459, 37.778992 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +, +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775464 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.775294 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3969 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776176 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "geometry": { "type": "Point", "coordinates": [ -122.389970, 37.776244 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772988 ] } } +, +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772954 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.772614 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.772818 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.771156 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.407908, 37.768442 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.768272 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3946 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.765694 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.405505, 37.765864 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764574 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.763285 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +, +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.770172 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +, +{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.402844, 37.768578 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.767458 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.403789, 37.765931 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.764812 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766339 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4224 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766135 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.765999 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.401643, 37.766067 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.764880 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.401729, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4079 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764778 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.403445, 37.763557 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.766271 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "geometry": { "type": "Point", "coordinates": [ -122.399669, 37.766237 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764914 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.763489 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762200 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.761657 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.761860 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.407050, 37.759078 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.404218, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757517 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.757416 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.406621, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755889 ] } } +, +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755210 ] } } +, +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753989 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.760741 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.402415, 37.761996 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.404046, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.403874, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.402930, 37.759689 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759553 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.759621 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.402158, 37.759451 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.402072, 37.758501 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.760944 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.401042, 37.759655 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.400784, 37.758094 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.401900, 37.756873 ] } } +, +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756160 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.403617, 37.754396 ] } } +, +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.402673, 37.754464 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.402501, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754328 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.753378 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.399755, 37.757314 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757178 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.398725, 37.755753 ] } } +, +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754871 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "geometry": { "type": "Point", "coordinates": [ -122.397008, 37.766508 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4217 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766406 ] } } +, +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764981 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.397780, 37.764744 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.393489, 37.762844 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.393231, 37.762742 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4220 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +, +{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +, +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4218 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +, +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769731 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3970 }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.769324 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.769561 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3993 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769052 ] } } +, +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "geometry": { "type": "Point", "coordinates": [ -122.389283, 37.768544 ] } } +, +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.389369, 37.767797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.766576 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.762878 ] } } +, +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.764371 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764405 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4017 }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.764439 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.764235 ] } } +, +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.764167 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763353 ] } } +, +{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.388940, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "geometry": { "type": "Point", "coordinates": [ -122.388854, 37.762980 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4084 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761317 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.761148 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.398381, 37.759859 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759960 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.760130 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760096 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.395978, 37.758400 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758128 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.395463, 37.760028 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.395120, 37.758366 ] } } +, +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.395205, 37.758264 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.398038, 37.757450 ] } } +, +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755957 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.754803 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.753446 ] } } +, +{ "type": "Feature", "properties": { "name": "1095 CONNECTICUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.397351, 37.753887 ] } } +, +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754667 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.396579, 37.754701 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.756839 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757653 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.395806, 37.755448 ] } } +, +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.395720, 37.755516 ] } } +, +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "101 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.753751 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "geometry": { "type": "Point", "coordinates": [ -122.391772, 37.757687 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.388768, 37.760537 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760775 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.760605 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760571 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3991 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760503 ] } } +, +{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760367 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757857 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757789 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.388511, 37.757891 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.758060 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.758026 ] } } +, +{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.393060, 37.757585 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4069 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755142 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "geometry": { "type": "Point", "coordinates": [ -122.392802, 37.755007 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.755685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.388082, 37.755074 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755414 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755312 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "geometry": { "type": "Point", "coordinates": [ -122.387996, 37.755278 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.749374 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.427135, 37.749170 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.746524 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.744929 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746999 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.426877, 37.746795 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.425332, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.425246, 37.751783 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.743537 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.429023, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743605 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "geometry": { "type": "Point", "coordinates": [ -122.426620, 37.742655 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742044 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.426534, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742112 ] } } +, +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.426448, 37.742214 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.426362, 37.742146 ] } } +, +{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.430997, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.431169, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.428937, 37.736444 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.427564, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.427907, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.427735, 37.737123 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.742180 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.421126, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.422071, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.422156, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.422929, 37.740992 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.422757, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.422671, 37.741026 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.740856 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.421985, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.739940 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.425504, 37.739635 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4206 }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.424302, 37.739397 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739736 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.423873, 37.738854 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.737055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.423959, 37.737463 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740211 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740279 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.420526, 37.752055 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.418551, 37.752190 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751953 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.750290 ] } } +, +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750663 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4156 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "geometry": { "type": "Point", "coordinates": [ -122.416148, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.416062, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.748661 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.420354, 37.747983 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4202 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748560 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.418380, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4091 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746931 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746727 ] } } +, +{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.420096, 37.746659 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4283 }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.746252 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.419581, 37.745913 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748288 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752428 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.751003 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749238 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752699 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748492 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.413831, 37.748152 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4203 }, "geometry": { "type": "Point", "coordinates": [ -122.413745, 37.748084 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.748118 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746863 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.747100 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4205 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748424 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748220 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.418466, 37.739295 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.416577, 37.739024 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.416406, 37.739092 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.413144, 37.744182 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744148 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.410483, 37.744352 ] } } +, +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744284 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741230 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.410655, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.409797, 37.741840 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.414603, 37.738820 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.413316, 37.738888 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "geometry": { "type": "Point", "coordinates": [ -122.413487, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.412114, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.411427, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +, +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.429538, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733492 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.427993, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.426705, 37.733729 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Lyell St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.730641 ] } } +, +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731387 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.429280, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.429709, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.431426, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730844 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4048 }, "geometry": { "type": "Point", "coordinates": [ -122.428594, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.425933, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.424474, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.424045, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.421813, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.425847, 37.728706 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.728570 ] } } +, +{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.421899, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728740 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.422585, 37.728910 ] } } +, +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3877 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.431512, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723988 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.427306, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.431340, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.431083, 37.720865 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.429881, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.429452, 37.720118 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719711 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721272 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.427478, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.428765, 37.719812 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.428679, 37.719745 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.426190, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719032 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.427220, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.427049, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.426105, 37.724667 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.424388, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.424216, 37.724734 ] } } +, +{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725413 ] } } +, +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3911 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720390 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.425761, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719303 ] } } +, +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735121 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.735053 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.418208, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.420611, 37.732304 ] } } +, +{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732609 ] } } +, +{ "type": "Feature", "properties": { "name": "Richland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.417006, 37.735630 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.416921, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4176 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.417779, 37.732813 ] } } +, +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } +, +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732541 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.419410, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.419152, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729011 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4167 }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734849 ] } } +, +{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "geometry": { "type": "Point", "coordinates": [ -122.415032, 37.734747 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Ellsworth St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734713 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.413659, 37.734951 ] } } +, +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.413573, 37.734815 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.413230, 37.733593 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734917 ] } } +, +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.411170, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.412972, 37.729928 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727382 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.410827, 37.730912 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.420440, 37.725855 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.420268, 37.725956 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.418723, 37.726398 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.416320, 37.727009 ] } } +, +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.418809, 37.718896 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.418637, 37.718726 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.414002, 37.726466 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725142 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.413402, 37.725006 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.413058, 37.723920 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.412887, 37.723818 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723241 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723105 ] } } +, +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.412543, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "geometry": { "type": "Point", "coordinates": [ -122.412372, 37.722698 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722834 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.411256, 37.718964 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.411342, 37.718760 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.409282, 37.752869 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.409196, 37.752530 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752767 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } +, +{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.407222, 37.752835 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749510 ] } } +, +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.753005 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.406278, 37.753242 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "24th Street & Potrero Avenue", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "geometry": { "type": "Point", "coordinates": [ -122.406192, 37.753073 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751410 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +, +{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "geometry": { "type": "Point", "coordinates": [ -122.409539, 37.748390 ] } } +, +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.409110, 37.748458 ] } } +, +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.402244, 37.751885 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.401471, 37.752122 ] } } +, +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +, +{ "type": "Feature", "properties": { "name": "Rhode Island St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.401128, 37.750731 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750867 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.400012, 37.750765 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747134 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "geometry": { "type": "Point", "coordinates": [ -122.403703, 37.746422 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743062 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.405248, 37.743334 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742859 ] } } +, +{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.406707, 37.741331 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.407136, 37.739668 ] } } +, +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3959 }, "geometry": { "type": "Point", "coordinates": [ -122.407308, 37.738379 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.406878, 37.738684 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.406535, 37.738141 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.406793, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3748 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.403359, 37.741874 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741908 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743944 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.398810, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741501 ] } } +, +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.742316 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739125 ] } } +, +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.400527, 37.739533 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.398896, 37.736376 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.398553, 37.752292 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752224 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.752156 ] } } +, +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.398295, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.396321, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751274 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +, +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749035 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +, +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.396235, 37.750019 ] } } +, +{ "type": "Feature", "properties": { "name": "Dakota St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752665 ] } } +, +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752496 ] } } +, +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.752360 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747338 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.395892, 37.747270 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "geometry": { "type": "Point", "coordinates": [ -122.393918, 37.746150 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.393832, 37.745981 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4070 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752631 ] } } +, +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752564 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.387738, 37.750392 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.396922, 37.742791 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.394948, 37.742078 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.741705 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738243 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.398639, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737157 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.394691, 37.736207 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736852 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.394090, 37.736648 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.394519, 37.736105 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3934 }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.744046 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.388597, 37.742960 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742994 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742723 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.742689 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.388167, 37.742451 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.391429, 37.739838 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.391257, 37.739770 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.738073 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.392974, 37.737870 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4009 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737564 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4007 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736343 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4006 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736275 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.736309 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739329 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.389112, 37.738922 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4026 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3987 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4036 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.388682, 37.740110 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "geometry": { "type": "Point", "coordinates": [ -122.388425, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.389798, 37.737225 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.389627, 37.737938 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3986 }, "geometry": { "type": "Point", "coordinates": [ -122.389712, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737632 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.405591, 37.734238 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.405934, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.405677, 37.732338 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.404304, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.404733, 37.733220 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.404819, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732949 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731319 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.408853, 37.731489 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730098 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "geometry": { "type": "Point", "coordinates": [ -122.404990, 37.728027 ] } } +, +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727450 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734578 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.402587, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735256 ] } } +, +{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735324 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.399411, 37.731829 ] } } +, +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4214 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.399240, 37.731896 ] } } +, +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727518 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.403531, 37.727314 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.403274, 37.727654 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728468 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.730369 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.400870, 37.729113 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726296 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.408509, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.726534 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.407479, 37.726669 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725210 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "geometry": { "type": "Point", "coordinates": [ -122.409625, 37.723377 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "geometry": { "type": "Point", "coordinates": [ -122.408423, 37.723750 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.407994, 37.725074 ] } } +, +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.724022 ] } } +, +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3710 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726907 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719575 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.405334, 37.720525 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.405076, 37.720423 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.403016, 37.726364 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724191 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.401557, 37.723886 ] } } +, +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4234 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723648 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.723411 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Crane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.399068, 37.723275 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720933 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720661 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.401214, 37.721612 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.401385, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.721476 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721544 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.400441, 37.719371 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.397609, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.397695, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.395549, 37.731795 ] } } +, +{ "type": "Feature", "properties": { "name": "Topeka Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.395291, 37.731184 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.395034, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave&Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "geometry": { "type": "Point", "coordinates": [ -122.392888, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.392716, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735800 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.735698 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735664 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.390485, 37.735087 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4028 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4034 }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3985 }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734340 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.734781 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734136 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.390828, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "geometry": { "type": "Point", "coordinates": [ -122.390914, 37.733899 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3984 }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "geometry": { "type": "Point", "coordinates": [ -122.391515, 37.732270 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.391343, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732202 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734510 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4011 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.390056, 37.731659 ] } } +, +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "geometry": { "type": "Point", "coordinates": [ -122.389026, 37.732881 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.392030, 37.730675 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.392373, 37.730437 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "geometry": { "type": "Point", "coordinates": [ -122.392631, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729283 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729215 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.390399, 37.728095 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.397952, 37.723003 ] } } +, +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725685 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3979 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725481 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3980 }, "geometry": { "type": "Point", "coordinates": [ -122.394261, 37.725447 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.723784 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3966 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +, +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4235 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721136 ] } } +, +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722494 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.396493, 37.720797 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.396064, 37.721204 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718828 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3977 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719778 ] } } +, +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3978 }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722426 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3983 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722630 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "geometry": { "type": "Point", "coordinates": [ -122.395635, 37.722392 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.394862, 37.722901 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.393317, 37.722019 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.393575, 37.721408 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727043 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +, +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719914 ] } } +, +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4082 }, "geometry": { "type": "Point", "coordinates": [ -122.386880, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4077 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.386794, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.386708, 37.755380 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.387652, 37.753140 ] } } +, +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.750324 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4014 }, "geometry": { "type": "Point", "coordinates": [ -122.387567, 37.749102 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "geometry": { "type": "Point", "coordinates": [ -122.387481, 37.749069 ] } } +, +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +, +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +, +{ "type": "Feature", "properties": { "name": "3RD ST & ARTHUR AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +, +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.745845 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.746048 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745777 ] } } +, +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4049 }, "geometry": { "type": "Point", "coordinates": [ -122.387137, 37.741399 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742519 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.383704, 37.742553 ] } } +, +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.383361, 37.743911 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4137 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743809 ] } } +, +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.383189, 37.743707 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.384648, 37.741128 ] } } +, +{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "geometry": { "type": "Point", "coordinates": [ -122.384562, 37.740890 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740687 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.386537, 37.738990 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.738956 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736614 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.740008 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739872 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3881 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739804 ] } } +, +{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.384133, 37.737700 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +, +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738175 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.380786, 37.738786 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4182 }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.737089 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.379498, 37.736512 ] } } +, +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.379241, 37.737666 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.737021 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.386966, 37.735833 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732066 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.387309, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.387052, 37.731862 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732575 ] } } +, +{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.386622, 37.732372 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733152 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.733016 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735969 ] } } +, +{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.383533, 37.735732 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +, +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "geometry": { "type": "Point", "coordinates": [ -122.383103, 37.733254 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729554 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.385421, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.385163, 37.730810 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.386279, 37.729520 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.730165 ] } } +, +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729419 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734170 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734035 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733356 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.380013, 37.733458 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.379842, 37.733288 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.379928, 37.732507 ] } } +, +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732406 ] } } +, +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.735155 ] } } +, +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734374 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.734103 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.377181, 37.732711 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.381730, 37.731353 ] } } +, +{ "type": "Feature", "properties": { "name": "La Salle Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.730776 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.380357, 37.730573 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.381387, 37.729385 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728672 ] } } +, +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.380185, 37.727993 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.377009, 37.730980 ] } } +, +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.377095, 37.730030 ] } } +, +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.379327, 37.728231 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726024 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727111 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.375894, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731998 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730233 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.373748, 37.730946 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.372117, 37.729860 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.371860, 37.729894 ] } } +, +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.373147, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729147 ] } } +, +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.369628, 37.729249 ] } } +, +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.367911, 37.725345 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.365594, 37.728774 ] } } +, +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728604 ] } } +, +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727925 ] } } +, +{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "geometry": { "type": "Point", "coordinates": [ -122.360959, 37.727348 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.497773, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.496486, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.495370, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718421 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.483354, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.481465, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718488 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.478719, 37.717945 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.477088, 37.717708 ] } } +, +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "geometry": { "type": "Point", "coordinates": [ -122.477431, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.475886, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716791 ] } } +, +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Josepha Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.477174, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.717266 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.474256, 37.717436 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.472968, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.474599, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.474427, 37.716010 ] } } +, +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715908 ] } } +, +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.472367, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "geometry": { "type": "Point", "coordinates": [ -122.472796, 37.717368 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.472281, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.471681, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.717742 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.456145, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.716553 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.456059, 37.715976 ] } } +, +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.448678, 37.718522 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.448592, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3814 }, "geometry": { "type": "Point", "coordinates": [ -122.450395, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716248 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +, +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716044 ] } } +, +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.443271, 37.716893 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716520 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716452 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.440782, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.440867, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +, +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.440181, 37.716180 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.434773, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.433572, 37.717674 ] } } +, +{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.430139, 37.718183 ] } } +, +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718149 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +, +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.428336, 37.717470 ] } } +, +{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3908 }, "geometry": { "type": "Point", "coordinates": [ -122.425675, 37.718285 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.422500, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +, +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.414260, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "geometry": { "type": "Point", "coordinates": [ -122.413917, 37.716214 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717810 ] } } +, +{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.407737, 37.717300 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3762 }, "geometry": { "type": "Point", "coordinates": [ -122.407651, 37.717165 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716655 ] } } +, +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3826 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716587 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3769 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717334 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +, +{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.404389, 37.717063 ] } } +, +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.404132, 37.716859 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716112 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.400270, 37.716621 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.400184, 37.716486 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.399840, 37.716995 ] } } +, +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.399926, 37.716723 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +, +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "geometry": { "type": "Point", "coordinates": [ -122.400956, 37.716282 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.391000, 37.718047 ] } } +, +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.389197, 37.717029 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.388253, 37.718251 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +, +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717470 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435288, 37.762674 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762607 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.458634, 37.748356 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788794 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792999 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396407, 37.793135 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +, +{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419324, 37.775226 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775159 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.419238, 37.775023 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778686 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778551 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407823, 37.784317 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 954, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -12.240014, 37.819989 ] } } +] } +] } +] } diff --git a/tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json b/tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json index 28fa23861..60a6ac7cd 100644 --- a/tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json +++ b/tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json @@ -5,14800 +5,12732 @@ "description": "tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles -z11 -ycount --set-attribute count:1 --accumulate-attribute count:sum --retain-points-multiplier 5 tests/muni/muni.json", -"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"count\",\"count\":69,\"type\":\"number\",\"values\":[1,10,102,103,104,11,128,13,131,14,141,142,15,152,154,155,156,157,16,17,19,2,20,21,22,23,24,25,255,256,257,26,269,270,3,34,35,37,38,389,39,391,392,4,40,41,42,5,51,52,53,54,56,57,6,62,63,7,8,9,913,915,916,917,918,919,920,93,94],\"min\":1,\"max\":920},{\"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\":4392}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"count\",\"count\":6,\"type\":\"number\",\"values\":[1,2,3,4,5,6],\"min\":1,\"max\":6},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"muni\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}},{\"id\":\"subway\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":11,\"fields\":{\"count\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":2,\"layers\":[{\"layer\":\"muni\",\"count\":4592,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"count\",\"count\":96,\"type\":\"number\",\"values\":[1,10,108,11,111,12,122,13,1357,14,146,147,15,152,157,16,169,17,171,18,19,195,2,20,205,21,210,22,23,232,239,24,244,245,25,26,27,28,287,29,3,30,302,3034,31,32,33,336,35,357,36,364,366,37,3795,39,391,4,40,428,43,449,45,46,48,488,49,5,54,56,58,59,6,60,610,62,68,69,7,76,761,78,785,797,8,82,88,9,90,916,92,94,95,96,97,98],\"min\":1,\"max\":3795},{\"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\":4387}]},{\"layer\":\"subway\",\"count\":19,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"count\",\"count\":8,\"type\":\"number\",\"values\":[1,15,19,2,4,5,7,8],\"min\":1,\"max\":19},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":19,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,2,3,4,5,6,7,8,9],\"min\":0,\"max\":18}]}]}}", "maxzoom": "11", "minzoom": "0", "name": "tests/muni/out/-z11_-ycount_--set-attribute_count%3a1_--accumulate-attribute_count%3asum_--retain-points-multiplier_5.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4601},{\"dropped_by_rate\":4601},{\"dropped_by_rate\":4596},{\"dropped_by_rate\":4586},{\"dropped_by_rate\":4561},{\"dropped_by_rate\":4506},{\"dropped_by_rate\":4366},{\"dropped_by_rate\":4011},{\"dropped_by_rate\":4069},{\"dropped_by_rate\":1072},{},{}]", +"strategies": "[{\"dropped_by_rate\":4608},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4603},{\"dropped_by_rate\":4594},{\"dropped_by_rate\":4574},{\"dropped_by_rate\":4519},{\"dropped_by_rate\":4402},{\"dropped_by_rate\":4096},{\"dropped_by_rate\":4349},{\"dropped_by_rate\":1652},{\"dropped_by_rate\":6},{}]", "tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":5}", "type": "overlay", "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 916, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3795, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } , -{ "type": "Feature", "properties": { "count": 918, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "count": 919, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "count": 919, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "count": 920, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -] } -, -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 916, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 918, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 919, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 919, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 920, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } -] } -, -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 913, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } -, -{ "type": "Feature", "properties": { "count": 915, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } -, -{ "type": "Feature", "properties": { "count": 917, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } -, -{ "type": "Feature", "properties": { "count": 917, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } -, -{ "type": "Feature", "properties": { "count": 918, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.840157 ] } } -] } -, -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 389, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 391, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 391, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 391, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 392, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 255, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 255, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 256, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 256, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 257, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 269, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 269, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 269, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 270, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 270, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } -] } -, -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.788081 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 156, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 156, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 156, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 157, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 157, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.525024, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 104, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } -, -{ "type": "Feature", "properties": { "count": 104, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 104, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 104, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 104, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 128, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 131, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 131, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 131, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 131, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 102, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "count": 102, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "count": 102, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 103, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 103, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 152, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "count": 152, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "count": 154, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "count": 154, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 155, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 93, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 93, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 93, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 94, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 94, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 141, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 141, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 142, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 142, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 142, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 34, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 34, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 34, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.709899 ] } } -] } -, -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.788081 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 62, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.533264, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.833649 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 41, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 52, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 52, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 53, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 53, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 53, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 41, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 63, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 35, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 56, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 56, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 56, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 56, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 57, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 62, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 40, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 51, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "count": 52, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "count": 52, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 54, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 54, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 62, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 56, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 56, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 56, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 57, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 57, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 38, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 62, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 63, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 41, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "count": 41, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "count": 42, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727280 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 34, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 34, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "count": 34, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.712072 ] } } -] } -, -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.531891, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 26, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "count": 26, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.527771, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.758773 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.782655 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.781569 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 14, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.791337 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.806529 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.807614 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807614 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 14, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.823887 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824972 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 14, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.767458 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 14, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786996 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 25, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } -] } -, -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } -] } -] } -, -{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.832022 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.532578, 37.832022 ] } } -, -{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.530518, 37.832022 ] } } -, -{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.803274 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.802731 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.803274 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.510605, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756601 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.754973 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.777770 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.777770 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.756058 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.753887 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.729996 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786996 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.783197 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.783197 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756601 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763658 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.745743 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.729996 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.721849 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.750087 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.746286 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.750629 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751715 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.737055 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.723479 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723479 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.721849 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.806529 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.797848 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804359 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807071 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.807071 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.802731 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801646 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796221 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796221 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790795 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794593 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791880 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788624 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.788624 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.823345 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825514 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.815751 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.816293 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785368 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777228 ] } } -, -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769086 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767458 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.769629 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768001 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.768001 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.768544 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.786996 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.787539 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786453 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.781569 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780484 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.771800 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776685 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.776142 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778313 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.775057 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763658 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.763116 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.766372 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.761487 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.741942 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.740313 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.746829 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.745743 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.731082 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750629 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.742485 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.726737 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.726737 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719133 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750087 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.381516, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.727823 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.713702 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } -, -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 797, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +] } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716961 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3034, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 761, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 797, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +] } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711529 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 610, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 610, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 302, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 916, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 1357, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713702 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 785, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } +] } , -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713159 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } +] } +] } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 488, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 122, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 366, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 244, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 302, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 428, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 244, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 244, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 239, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 357, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 364, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 245, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 152, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 336, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 449, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.735969 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.748458 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } ] } ] } , -{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } ] } ] } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } -, -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 195, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 146, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 122, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 171, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 195, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 147, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 95, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.766372 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 60, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 232, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 391, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.809784 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 96, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 94, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 147, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 210, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 169, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 147, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 146, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 287, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 146, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } -, -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 205, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } +] } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +] } +] } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 78, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 98, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 68, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 78, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.777228 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 58, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 54, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 195, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 58, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 88, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 108, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 58, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 76, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 157, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 88, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 68, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 96, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 36, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 49, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 49, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738413 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 90, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 111, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 58, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 59, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 69, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.746829 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 48, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 92, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 58, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 88, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 68, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 59, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.712072 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 59, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 29, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.709899 ] } } +] } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.788081 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792422 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.796763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 62, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.496185, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 43, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 24, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 30, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.747915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 78, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 24, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 28, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 35, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 45, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.767458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.752258 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 36, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 37, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 43, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.735155 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 24, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 35, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795678 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 78, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 23, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 27, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 29, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 36, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 82, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 26, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 28, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 22, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 27, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 96, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 28, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 20, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 39, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 27, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 48, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 43, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 29, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 97, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 59, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 24, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.741399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.376709, 37.730539 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 78, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 40, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 27, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 24, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.715331 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.714245 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } +] } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +] } +] } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.523651, 37.831480 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.522964, 37.831480 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.514725, 37.832022 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.833107 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.796763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715603 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.789709 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.760401 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.772886 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } -] } -] } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831751 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785368 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765830 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798120 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.783197 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.783197 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800832 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.763658 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792422 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.760944 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788895 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 29, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.737598 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734883 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 39, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 21, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754973 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.739770 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 13, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.733797 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 18, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808156 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.776414 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765287 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791337 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 69, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735698 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.790795 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.829853 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823345 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.818463 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.491035, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.783197 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.783740 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768544 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.728095 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.766915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 19, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.761487 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 46, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785368 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 15, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.786453 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 25, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.776142 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 23, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.756601 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.781298 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 33, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.782926 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.741942 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750087 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763658 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.759316 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735426 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 17, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.731082 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764473 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.765015 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 56, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.742485 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.728910 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.782112 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 16, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782655 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 31, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.775057 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.725651 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 17, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 37, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.785368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716961 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.716418 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713159 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 12, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708813 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 32, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710443 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713702 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766915 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 11, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765287 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } +] } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761758 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 59, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758773 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728366 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 27, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759316 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735155 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.734883 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.743028 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.749815 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.740313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723207 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725651 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750901 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "count": 21, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.736241 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.806258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.808699 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808428 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.807614 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804359 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804088 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.380486, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790795 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711257 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.793236 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.789167 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807343 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807071 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.802731 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.803003 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.532234, 37.831751 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.527084, 37.832565 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831209 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.789981 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.832836 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833649 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.832836 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806800 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792151 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.801918 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799205 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.792422 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795135 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794322 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799747 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791608 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.371559, 37.816293 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.779941 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775057 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.785639 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773157 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.491722, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783469 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780213 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783740 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760673 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755516 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.770443 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.747643 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746015 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.736512 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768001 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746557 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.743028 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732983 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729724 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784825 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.782112 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777228 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787810 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.774243 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765558 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.764201 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784283 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.762844 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.787810 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755516 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.776685 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.741942 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773157 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 19, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748729 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.765287 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735698 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735155 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757687 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748729 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.744929 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719133 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735698 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 10, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.729181 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.729724 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718590 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749544 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 22, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.740042 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.742757 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.734883 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.734883 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745472 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.730267 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743571 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.744386 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.736512 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.748186 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740313 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.740585 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.722935 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720491 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726737 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.724565 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717504 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.806258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706912 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804088 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802460 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717504 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804630 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804630 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.715603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795678 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802460 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } -] } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784283 ] } } -] } -] } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.792965 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 20, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } -] } -] } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827413 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.822260 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.363663, 37.811683 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727823 ] } } -] } -] } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 119, "y": 98 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } -] } -] } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.828226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.829853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724293 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.816022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.822260 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.726058 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728366 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.770986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 11, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719812 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 16, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.773971 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.723343 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728638 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722800 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719541 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 18, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 8, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729453 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 14, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717776 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.707047 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.381172, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.378769, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.380486, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.706368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.715739 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } +{ "type": "Feature", "properties": { "count": 15, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706368 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 13, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 9, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 6, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767187 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.827413 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819819 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819819 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.365036, 37.822260 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.728638 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 119, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.706504 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 10, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715196 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } -] } -] } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.523136, 37.831345 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836361 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.807478 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.797984 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797984 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719269 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791202 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 12, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788760 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.507687, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.756737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781705 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.715739 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.780077 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776278 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772614 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.488632, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706233 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.756194 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745472 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.498760, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } +] } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.743707 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.743571 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.530174, 37.824972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830395 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836361 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829446 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.797984 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.490864, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742349 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797984 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.790930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.503223, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.461681, 37.777363 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.481937, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.770579 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.476616, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.501850, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.774921 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 9, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741264 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.771800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.756466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769222 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752665 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.754566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.463055, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740721 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739635 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787132 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748051 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.747236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.740449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.743435 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.781434 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774650 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.778177 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732168 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.770986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769901 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.737463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.768951 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.754973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759180 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.757551 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.738549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720220 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.806393 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.805851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.805986 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.808563 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721849 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.744929 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804223 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.805308 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749679 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.741535 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.804495 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727552 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801239 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.797306 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.791202 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.724293 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807207 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.805851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 8, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.808021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.807750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.808292 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.807071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803952 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.797984 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804223 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792694 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794728 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.793779 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.804223 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799340 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.801239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.799747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795814 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795542 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791202 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.807343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.807207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.376366, 37.825514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799205 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816158 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821853 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.363834, 37.811683 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.364349, 37.811276 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.799612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787132 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.794728 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774107 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.780213 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.787403 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.787132 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787132 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777635 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824430 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.375336, 37.824158 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.372761, 37.824023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.829311 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825243 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.366238, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.811954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.811818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767594 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.787132 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767594 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.776142 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784011 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.763794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.768137 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.757551 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.764608 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.749408 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.756194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742078 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.766508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.757959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735290 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.740313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.751987 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 7, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.735019 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741264 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751308 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.735833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738006 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749679 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.749544 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727552 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.751444 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730131 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.720627 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727688 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.725244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.383747, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738684 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738549 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722257 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.382030, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.383747, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.375507, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.385807, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.375164, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.735833 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.365379, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.384949, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729317 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716282 ] } } , -{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.465115, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715196 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714924 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710307 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710986 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.715739 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715060 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.709628 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.709628 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.715603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.715739 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.715467 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709764 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709764 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.713023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715196 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.708541 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708134 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717097 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 5, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 3, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.711936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.711257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } +{ "type": "Feature", "properties": { "tippecanoe:retain_points_multiplier_first": true, "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.712072 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } +, +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.792965 ] } } +, +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 6, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 4, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.767322 ] } } ] } ] } , @@ -14806,27 +12738,25 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } ] } ] } , @@ -14836,29 +12766,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722528 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722528 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , @@ -14866,41 +12796,41 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721374 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.719066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721510 ] } } , @@ -14908,89 +12838,89 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.720016 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723682 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723071 ] } } , @@ -14998,49 +12928,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720899 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , @@ -15048,71 +12978,71 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720016 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720559 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720559 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722868 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , @@ -15120,29 +13050,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } , @@ -15152,41 +13082,41 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721510 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721510 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , @@ -15194,33 +13124,33 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721238 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720559 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.719066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720559 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720559 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719405 ] } } , @@ -15232,63 +13162,63 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723275 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723275 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718998 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720559 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723682 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723682 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } , @@ -15296,77 +13226,75 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721646 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.721578 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723818 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721170 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722528 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.722053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.722053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , @@ -15374,13 +13302,13 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } , @@ -15394,29 +13322,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.711189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.711189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } , @@ -15424,17 +13352,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } , @@ -15442,31 +13370,31 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , @@ -15474,165 +13402,165 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.712955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.710375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710239 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.710239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.711597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.711597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.710103 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.710375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.710307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.710307 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.705961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.705961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , @@ -15644,17 +13572,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.711733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.710918 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.708881 ] } } , @@ -15664,9 +13592,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , @@ -15674,19 +13602,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } , @@ -15694,9 +13622,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } , @@ -15714,9 +13642,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , @@ -15724,87 +13652,87 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712887 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712140 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.711189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.711189 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.709628 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.708949 ] } } , @@ -15812,31 +13740,31 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.710035 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.710035 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } , @@ -15844,179 +13772,179 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712004 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.711597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712683 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.712683 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712140 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.710443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.710443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709831 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.708473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708473 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708202 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.706504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709017 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709017 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.709967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.709967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.711529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.711529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711393 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.711868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.710578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712208 ] } } , @@ -16024,71 +13952,71 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712276 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712276 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708813 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.711257 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , @@ -16104,13 +14032,13 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } ] } @@ -16120,35 +14048,35 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.532320, 37.831819 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.532320, 37.831819 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.523394, 37.831616 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.523394, 37.831616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3993 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4278 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "geometry": { "type": "Point", "coordinates": [ -122.524338, 37.830328 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831412 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821785 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4272 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821785 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.515326, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.515326, 37.831751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.832972 ] } } , @@ -16156,19 +14084,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.836090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4243 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4238 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833649 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833582 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4245 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4239 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833107 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833039 ] } } , @@ -16176,23 +14104,23 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.829446 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788353 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.482281, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , @@ -16206,9 +14134,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.806732 ] } } , @@ -16216,9 +14144,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.803477 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803545 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.801578 ] } } , @@ -16226,19 +14154,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.799815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.803681 ] } } , @@ -16246,79 +14174,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4123 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4118 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801375 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803816 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803749 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803749 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4119 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802257 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802257 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4341 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4336 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.802053 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.801578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4121 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4116 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4124 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4119 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797916 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797916 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801036 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4125 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4120 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4340 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4335 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4342 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4337 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4339 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4334 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799340 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.798187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.803409 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.804562 ] } } , @@ -16326,37 +14254,37 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4229 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803613 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4224 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803613 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802799 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802799 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.802799 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4199 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797102 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797102 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.797577 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.800019 ] } } , @@ -16364,31 +14292,31 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3824 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.796695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.796695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.796492 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.796492 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.795746 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790727 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790727 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.791269 ] } } , @@ -16396,9 +14324,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803070 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.441769, 37.803070 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805376 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } , @@ -16406,19 +14334,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.800426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799273 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799273 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.799544 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3987 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , @@ -16426,19 +14354,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4283 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4278 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4238 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805376 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804834 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4069 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805241 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } , @@ -16446,199 +14374,197 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4391 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4386 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3848 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796288 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3573 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796288 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3574 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.796153 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3598 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.791541 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.791676 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.788081 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788149 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.791948 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795814 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795814 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794118 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.792626 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4193 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.791405 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.788828 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3748 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791676 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3743 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791676 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789913 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789913 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.789709 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.789845 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.789845 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788895 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779738 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779738 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.512922, 37.779059 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.512922, 37.779059 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.778992 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3972 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773157 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.510777, 37.771393 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +{ "type": "Feature", "properties": { "count": 2, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.779873 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4142 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.780959 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779738 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.785029 ] } } , @@ -16646,9 +14572,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } , @@ -16656,9 +14582,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.773293 ] } } , @@ -16666,29 +14592,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773496 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.773564 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4295 }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4290 }, "geometry": { "type": "Point", "coordinates": [ -122.503481, 37.771732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4285 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775600 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.500563, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4294 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4289 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } , @@ -16696,29 +14622,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.764133 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3983 }, "geometry": { "type": "Point", "coordinates": [ -122.509146, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3978 }, "geometry": { "type": "Point", "coordinates": [ -122.509146, 37.760334 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.507343, 37.764201 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.763998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.763998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762166 ] } } , @@ -16726,19 +14652,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4231 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4235 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.760266 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4230 }, "geometry": { "type": "Point", "coordinates": [ -122.507944, 37.760266 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760334 ] } } , @@ -16746,37 +14672,37 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.754905 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3908 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760605 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760605 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760605 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3910 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760605 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779399 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.781637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.781637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.783401 ] } } , @@ -16786,9 +14712,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781705 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , @@ -16796,17 +14722,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779806 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779738 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779534 ] } } , @@ -16816,19 +14742,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.491379, 37.781637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779602 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4387 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4382 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.779941 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } , @@ -16836,9 +14762,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.486830, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.486830, 37.781976 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , @@ -16846,17 +14772,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4329 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4324 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } , @@ -16866,39 +14792,39 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.771936 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4388 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777703 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4383 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777703 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776685 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776074 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776074 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.775939 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4002 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4293 }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4288 }, "geometry": { "type": "Point", "coordinates": [ -122.489576, 37.772343 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4292 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4287 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , @@ -16906,9 +14832,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , @@ -16916,9 +14842,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.783944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.783944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } , @@ -16926,19 +14852,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.782112 ] } } , @@ -16946,29 +14872,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.780348 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.782316 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.782316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782180 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782180 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782248 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780552 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780552 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.778245 ] } } , @@ -16986,27 +14912,27 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.482367, 37.776346 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774311 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.774311 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3796 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.483740, 37.772479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.483740, 37.772479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.776414 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.478075, 37.776481 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.478075, 37.776481 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776617 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776617 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } , @@ -17016,99 +14942,99 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4286 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4281 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.764540 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.762505 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.762505 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.488718, 37.764880 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.488203, 37.765015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3886 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3881 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760741 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758841 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3884 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3882 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3877 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761148 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3878 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3880 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.753480 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.753548 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.753548 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753683 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.753683 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765083 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765083 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.765015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.765219 ] } } , @@ -17116,9 +15042,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.763116 ] } } , @@ -17126,69 +15052,69 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.763658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.477560, 37.765490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.477560, 37.765490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4314 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4309 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3949 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3879 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3881 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3878 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.759723 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3911 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3906 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761419 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761419 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , @@ -17196,119 +15122,119 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3876 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4234 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4229 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3877 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761691 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761691 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755855 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755855 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.753955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.753955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755991 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.755991 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.752733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.750969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.750969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.747304 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745404 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.506657, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.500992, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.739974 ] } } , @@ -17316,359 +15242,359 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735969 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.737938 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.741942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3970 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735562 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731557 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753276 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753276 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4386 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4381 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745811 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745811 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.745811 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.745811 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.748051 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3913 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3908 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3894 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.738345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736716 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736716 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.736512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.744250 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742417 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742417 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738752 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738752 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.748254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.748118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.748118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.748390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.748390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.748322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750358 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.748526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748526 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745200 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.485456, 37.742553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742689 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742960 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.742960 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4209 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4204 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4367 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4362 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729792 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.491550, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.729453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4362 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4357 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728502 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3769 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3978 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.724090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.724090 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727077 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727077 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.726941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.718658 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4363 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4358 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4361 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4356 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4344 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4339 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720695 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725923 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } , @@ -17676,19 +15602,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3767 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3762 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4345 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4340 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , @@ -17696,49 +15622,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784351 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784215 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4178 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.780687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , @@ -17746,69 +15672,69 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3934 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784758 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782858 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782858 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4242 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782858 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.783130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776753 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4280 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.776889 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.776889 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.772954 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.773225 ] } } , @@ -17816,23 +15742,23 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777024 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777024 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777160 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4181 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775260 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4176 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775260 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4180 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773429 ] } } , @@ -17846,17 +15772,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.785572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.785572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } , @@ -17866,29 +15792,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.781230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.786860 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.786046 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } , @@ -17896,29 +15822,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.785979 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786250 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784079 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4003 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4390 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4385 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781366 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.781162 ] } } , @@ -17926,19 +15852,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , @@ -17946,67 +15872,67 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773632 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4017 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773496 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773496 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773903 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777431 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777431 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777431 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777024 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.777024 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777567 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.774378 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774718 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762030 ] } } , @@ -18016,17 +15942,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762030 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4160 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , @@ -18036,59 +15962,59 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4217 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4218 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3872 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3875 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.761894 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.758026 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.758094 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3874 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756262 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.755244 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3873 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3868 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } , @@ -18096,17 +16022,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760198 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3969 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3964 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758366 ] } } , @@ -18116,9 +16042,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.756466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754769 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , @@ -18126,19 +16052,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.462797, 37.762369 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.462797, 37.762369 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.762301 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.762301 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } , @@ -18146,19 +16072,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.762505 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4269 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.762505 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4275 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.765965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , @@ -18166,59 +16092,59 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.763794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766169 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758569 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4049 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4044 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.757687 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754633 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.754633 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3725 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3728 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3724 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3726 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.784079 ] } } , @@ -18230,15 +16156,15 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3723 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787471 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3718 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.787471 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.448206, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.448206, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.781841 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , @@ -18246,149 +16172,149 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.787335 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.787335 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787267 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787335 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785368 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.787742 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782316 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3553 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.778110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3535 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.778110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.777974 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.777974 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3556 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775396 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775396 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.775328 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4167 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773021 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773564 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.773429 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3550 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3551 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778517 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775871 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4289 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4284 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775667 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775667 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3549 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.778924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3548 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779059 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3543 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.779059 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4291 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4286 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4287 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4282 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4299 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4294 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4298 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4293 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.773768 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.773700 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.773971 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.773903 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.774039 ] } } , @@ -18396,49 +16322,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774378 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.787946 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785165 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.785300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783808 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3538 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779466 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780484 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , @@ -18446,29 +16372,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.780687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787674 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.786114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.786114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785775 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784215 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784215 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784690 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.783944 ] } } , @@ -18476,37 +16402,37 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781298 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.779873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3536 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3537 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4290 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4285 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777770 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } , @@ -18516,17 +16442,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770715 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } , @@ -18536,9 +16462,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774853 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.774853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , @@ -18546,29 +16472,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.775125 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778517 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.775396 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.775600 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.775600 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.771054 ] } } , @@ -18576,69 +16502,69 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.769154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.769154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769561 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.765490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4026 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4021 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765897 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.764744 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764608 ] } } , @@ -18646,49 +16572,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.767051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.767051 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.766915 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4034 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767119 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.767119 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767119 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767119 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770308 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770172 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3826 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.767322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765355 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } , @@ -18700,25 +16626,25 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.764269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3984 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3979 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.762980 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761691 ] } } , @@ -18726,19 +16652,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760876 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , @@ -18746,17 +16672,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.758637 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.758637 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } , @@ -18766,17 +16692,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.761623 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760334 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760198 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757755 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.758366 ] } } , @@ -18786,9 +16712,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.757484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756398 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.756398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.756398 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755312 ] } } , @@ -18796,29 +16722,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.753955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.766508 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.766712 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.766712 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767119 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767119 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762030 ] } } , @@ -18826,29 +16752,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3868 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769086 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.765626 ] } } , @@ -18856,15 +16782,15 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762573 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762437 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4011 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762505 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4006 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762505 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762369 ] } } , @@ -18872,19 +16798,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.762505 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.763862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.763930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.763930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.762641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.762641 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760537 ] } } , @@ -18892,9 +16818,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761555 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , @@ -18902,9 +16828,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , @@ -18912,9 +16838,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755312 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753480 ] } } , @@ -18922,19 +16848,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760808 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.759112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.760944 ] } } , @@ -18942,99 +16868,99 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756058 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756058 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.755923 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4206 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4201 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4205 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4200 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.748729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.748729 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.470694, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752733 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.750697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.748797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.748933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.748933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4217 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4212 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } , @@ -19048,321 +16974,321 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736444 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3558 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3557 }, "geometry": { "type": "Point", "coordinates": [ -122.468462, 37.741535 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4212 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3986 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3567 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3562 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3720 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3568 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3563 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3850 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3565 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3566 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3561 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4310 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4305 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4211 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4206 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3718 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3901 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4311 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4306 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3569 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3564 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3719 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3714 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3909 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3713 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3715 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3710 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3721 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3716 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3722 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.739567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739635 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3922 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.751715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4022 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4017 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4023 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4018 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748118 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4021 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4024 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.747236 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.745268 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3753 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3748 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.746286 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3751 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3752 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740042 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.739159 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744114 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.741603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743435 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.743096 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.743096 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734680 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4211 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734680 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734680 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734680 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.475157, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4205 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4357 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4352 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4103 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4098 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734272 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3717 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3973 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3968 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3898 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3902 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.731150 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.730946 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3903 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3898 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3977 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3972 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734680 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.733186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4146 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4141 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3894 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3889 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.729928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3893 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728299 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728299 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4156 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4152 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727145 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727145 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3984 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3990 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3985 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3855 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.720220 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4216 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.721442 ] } } , @@ -19370,213 +17296,213 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3887 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4066 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4067 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3964 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3959 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732236 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.732032 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3801 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3804 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3803 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733661 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729928 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3802 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.730675 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731218 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.731421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.731421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3890 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3885 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.724904 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.724972 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3963 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3886 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724225 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.724225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4063 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720016 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721917 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4007 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4002 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751172 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3749 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3750 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.744996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.751715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.751715 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750426 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751647 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3821 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3816 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.749272 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.750833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.750833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.749951 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.747983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.447863, 37.746422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.748051 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4273 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4268 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3960 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.748933 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } , @@ -19584,73 +17510,73 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3987 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3993 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746625 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.744318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.744318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.743028 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.743028 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.742553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.740924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4048 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737666 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.737666 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.736852 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.736852 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } , @@ -19660,9 +17586,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } , @@ -19670,19 +17596,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748526 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.746897 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.746897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.745268 ] } } , @@ -19690,49 +17616,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749611 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749611 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752733 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.751240 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751172 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4019 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4014 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.751512 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.751512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.749611 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.749611 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.748865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748661 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747847 ] } } , @@ -19740,19 +17666,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.746218 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4034 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.748118 ] } } , @@ -19760,17 +17686,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.748254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4009 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4004 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } , @@ -19780,9 +17706,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740245 ] } } , @@ -19790,17 +17716,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.738684 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738752 ] } } , @@ -19810,9 +17736,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.737327 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , @@ -19820,39 +17746,39 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.738141 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.432756, 37.738141 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736037 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736784 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.734340 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.448893, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.448893, 37.733118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4174 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4070 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727620 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.728434 ] } } , @@ -19860,29 +17786,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.729792 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3502 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3500 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3501 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , @@ -19890,79 +17816,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725990 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.725990 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.722121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.449236, 37.722868 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4359 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4354 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.721034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.720831 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3931 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720831 ] } } , @@ -19970,99 +17896,99 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4334 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4329 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3897 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3892 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3938 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3934 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4282 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4277 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3930 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3925 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4281 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4276 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3845 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3840 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3967 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3962 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.731625 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.729045 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.729045 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.728977 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.728977 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.731489 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } , @@ -20070,13 +17996,13 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.433786, 37.734476 ] } } , @@ -20090,59 +18016,59 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.733593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.733593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.732507 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3844 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3848 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4236 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4303 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4298 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } , @@ -20150,19 +18076,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724497 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724497 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723954 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.723886 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726126 ] } } , @@ -20170,19 +18096,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.722800 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.806326 ] } } , @@ -20190,29 +18116,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.806597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.805715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805647 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.807207 ] } } , @@ -20220,37 +18146,37 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.808563 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4274 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3928 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3839 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.806665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.806665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } , @@ -20260,17 +18186,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801307 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801307 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801646 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.801918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801782 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , @@ -20280,277 +18206,277 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4355 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4350 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4343 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4338 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3578 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.805173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804834 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804834 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4354 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4349 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804291 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804291 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4270 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.804969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.804969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4175 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803342 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.803342 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3626 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3621 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802392 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3622 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803613 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803613 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801578 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801443 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.801443 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3607 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3657 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3658 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3606 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.796967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793101 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.793372 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3735 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3730 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3727 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3735 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790320 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3734 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3729 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3645 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794864 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794864 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3988 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3983 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796153 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796153 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.795068 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.795068 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3638 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.793915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3639 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3634 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793779 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3747 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.793033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3623 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3966 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3743 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790862 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.790862 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.790998 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4368 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4363 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3653 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790455 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3920 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.790659 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4366 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4361 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802867 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802867 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802799 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800222 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3592 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3593 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3581 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3587 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3582 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3589 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3588 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3583 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.799679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.804359 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.804359 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.803749 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.803749 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3951 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3946 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802664 ] } } , @@ -20560,49 +18486,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802053 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.802935 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801172 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3605 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3604 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.800900 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3600 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3595 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.799951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3599 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.800086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3594 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.800086 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.799069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.799069 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3577 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800154 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3572 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800154 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3575 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3570 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3576 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3571 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.798255 ] } } , @@ -20610,79 +18536,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.795339 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3738 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3733 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793372 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.792490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3731 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.795542 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3734 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793779 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791676 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791676 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.790659 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4365 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4360 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789370 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789370 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791066 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , @@ -20690,89 +18616,89 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.415590, 37.791269 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.789234 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795746 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3732 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.794050 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.793168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3746 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796356 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796153 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.795678 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795271 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795271 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3744 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3739 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.794593 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3742 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3737 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3741 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.794525 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3736 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.794525 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.792626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.792626 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792355 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791473 ] } } , @@ -20780,27 +18706,27 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.789302 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.789302 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.788285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791676 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791676 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788828 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.788828 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4207 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808224 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4202 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808224 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806054 ] } } , @@ -20810,109 +18736,109 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806936 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3869 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.806800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.806800 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.806597 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4028 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806597 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4023 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806597 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.803274 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803342 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803342 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.801375 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.802596 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.801782 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.801782 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3603 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.799205 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799340 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.799069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3580 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3584 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3579 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.797170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3953 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3590 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3585 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3591 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3586 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3601 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3596 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3602 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3597 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.798120 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.797577 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.797781 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797306 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4025 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803884 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803884 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.802324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.802324 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.802935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.801375 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.801375 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802121 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802121 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } , @@ -20920,19 +18846,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3815 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.798391 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.798391 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797509 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797509 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800561 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , @@ -20940,69 +18866,69 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4301 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4296 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4333 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4328 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.794593 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.794593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.796221 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.796221 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.793847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.793847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.793711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.793033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.793033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.793711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796017 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796017 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792558 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792219 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } , @@ -21010,125 +18936,121 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792083 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788149 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788149 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789913 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789913 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789777 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789777 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4268 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3745 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3740 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796017 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796017 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.794661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.793982 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.793982 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.794254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.793168 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4149 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.793101 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.790998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.790998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.791948 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788963 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.788217 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4269 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788963 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.788963 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4264 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788963 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4039 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4044 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790252 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790252 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4185 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4190 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791269 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3951 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.791269 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3956 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.791269 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.791066 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4020 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } , @@ -21136,19 +19058,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788895 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4189 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4184 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.798933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799544 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.799069 ] } } , @@ -21156,33 +19078,33 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.797848 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797034 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797034 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.797170 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.793440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.793440 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4203 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4198 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.792558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4038 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , @@ -21194,35 +19116,35 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.795000 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795068 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3823 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3818 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4022 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3991 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3986 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , @@ -21230,17 +19152,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4005 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794525 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792490 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794389 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794389 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794118 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } , @@ -21248,31 +19170,31 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4384 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4379 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4201 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792626 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793440 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793440 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4358 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4353 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4261 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4256 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4382 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4377 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791608 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , @@ -21280,217 +19202,217 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4145 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.789641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788488 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788488 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4383 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4378 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4315 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4310 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.791812 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.792355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790591 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4214 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790591 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4231 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790591 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4223 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789913 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789913 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4331 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4326 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.789777 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4218 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4213 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4220 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789777 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4227 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4222 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.788217 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4036 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4031 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4265 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.791134 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792355 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789234 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4226 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4221 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4379 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.788624 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4374 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.788624 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4371 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4366 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4349 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4344 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4350 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4345 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3923 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4116 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4111 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829785 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829785 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4197 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4192 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4198 }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825447 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4193 }, "geometry": { "type": "Point", "coordinates": [ -122.376280, 37.825447 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.824430 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3814 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4199 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4194 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4214 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823480 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4209 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823480 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825175 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825175 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4196 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3506 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3505 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.816226 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4195 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4190 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4194 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4189 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.819955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.366066, 37.819887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4152 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4147 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813242 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4012 }, "geometry": { "type": "Point", "coordinates": [ -122.370958, 37.813107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4007 }, "geometry": { "type": "Point", "coordinates": [ -122.370958, 37.813107 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4013 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813107 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4008 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813107 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4014 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4009 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822192 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820701 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.364779, 37.811954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4015 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4010 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4016 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4011 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786453 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784486 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.786928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.784825 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781909 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } , @@ -21498,61 +19420,61 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.787200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.787200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.785436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.425032, 37.785436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3654 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3655 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3650 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3652 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.786114 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3633 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3628 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3627 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4369 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4364 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4300 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4295 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784622 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3649 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3644 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3648 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3643 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4302 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4297 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4288 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779602 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4283 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3629 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3624 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3630 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3625 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3560 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3555 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780077 ] } } , @@ -21560,13 +19482,13 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.776956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775803 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } , @@ -21580,17 +19502,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.779331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.776210 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } , @@ -21598,11 +19520,11 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4240 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772004 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4235 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.772004 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.772411 ] } } , @@ -21610,199 +19532,199 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776481 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776481 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777703 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777703 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.775939 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773768 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773768 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4158 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.772614 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770918 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4313 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4308 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.774175 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.774175 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773225 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771325 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771325 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.772886 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.771732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786521 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.784961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787200 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.785097 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3656 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3651 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3552 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3640 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3635 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780213 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.783265 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.783265 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3546 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.782451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3541 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.781705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3544 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3539 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782587 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4031 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4026 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.780348 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.787403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.787403 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786521 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.786386 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787607 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786725 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.786860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.785504 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.784690 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.784893 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787132 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4241 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4051 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4043 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4038 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3547 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782790 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3542 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782790 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3545 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3540 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.782994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4239 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.780891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4234 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.780891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4145 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4140 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780552 ] } } , @@ -21810,89 +19732,89 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3559 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783401 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3554 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782316 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4202 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4197 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3636 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3631 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778652 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777296 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3632 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4156 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.778042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.778042 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3647 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3646 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3641 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3826 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3642 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3637 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775192 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4138 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775328 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4158 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.777703 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.777703 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4262 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4257 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777363 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4370 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4365 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4224 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4219 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4220 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4042 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4037 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.772954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , @@ -21900,45 +19822,45 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.773293 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.779331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.779331 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4139 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4263 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4258 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778449 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779059 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.777703 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776414 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.778924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779127 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779127 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4261 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.776142 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772072 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772072 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } , @@ -21956,73 +19878,73 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.770240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4373 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4368 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3931 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3867 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.769290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3862 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.769290 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767662 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767729 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767390 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3912 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3907 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4385 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4380 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3863 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.764540 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764540 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764540 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } , @@ -22030,101 +19952,101 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770104 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770104 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.767865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764676 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.764812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765219 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.764948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3673 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.763387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3674 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.763387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763048 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3675 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763048 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761419 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761419 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761216 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761148 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.761148 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3818 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3814 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756398 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.754769 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3676 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.761419 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3677 }, "geometry": { "type": "Point", "coordinates": [ -122.421598, 37.761419 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3678 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3679 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3681 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758705 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3680 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758705 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3682 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3683 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3684 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3685 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3687 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3686 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.770443 ] } } , @@ -22132,9 +20054,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.767797 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4246 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , @@ -22142,9 +20064,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766169 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.766169 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765083 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765083 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.764948 ] } } , @@ -22152,49 +20074,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765083 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.765083 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3888 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.764948 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3883 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.764948 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4249 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4244 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4260 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765219 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4033 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4028 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763794 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } , @@ -22202,9 +20124,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765490 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.765558 ] } } , @@ -22212,17 +20134,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.763116 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.763116 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.762912 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761894 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.759791 ] } } , @@ -22230,99 +20152,99 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4259 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761826 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4254 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4249 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4258 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4253 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4255 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4250 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4257 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4252 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758976 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4297 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758976 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4292 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758976 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4296 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4291 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.758773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761826 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.410097, 37.760537 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760334 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787471 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.787471 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3982 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3977 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4375 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4370 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4374 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.784079 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4369 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.784079 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4046 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4050 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4045 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4330 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4325 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.785368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.785368 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4055 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4050 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784758 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784418 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784147 ] } } , @@ -22330,47 +20252,47 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3813 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.783944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3808 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.783944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3979 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3974 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.782858 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.782858 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4248 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4243 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4104 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4099 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } , @@ -22378,9 +20300,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781434 ] } } , @@ -22388,25 +20310,25 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787742 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.787742 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.786521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.786521 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4378 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.786318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4373 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.786318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4159 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4154 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , @@ -22416,41 +20338,41 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.787878 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4139 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4140 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3933 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3928 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.782994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.782994 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3981 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.780416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.780416 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776821 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778585 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778585 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } , @@ -22458,67 +20380,67 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773496 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771461 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771461 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3918 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.774650 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3913 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.774650 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3809 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.774582 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3804 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.774582 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.774378 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4272 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4247 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4242 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4055 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4230 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4225 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.776414 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773225 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772004 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773632 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773632 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773429 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773429 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4188 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4183 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786725 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786521 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786521 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4166 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4161 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3820 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4213 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4208 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } , @@ -22526,91 +20448,91 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.787403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4380 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4375 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4376 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4371 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784283 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4377 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4372 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782858 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.779941 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3966 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.779534 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3961 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.779534 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4381 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4376 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3922 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3917 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4155 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784554 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4150 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784554 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.781841 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.781841 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4187 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.780687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4182 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.780687 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779670 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779670 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.779602 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4035 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.776549 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4332 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4327 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3522 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775396 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775396 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775192 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3999 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777228 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777228 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3519 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3520 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3521 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3810 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3805 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.777024 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.777024 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } , @@ -22618,169 +20540,169 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3938 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4137 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4131 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776210 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4126 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4102 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.776074 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.776074 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4120 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775735 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3518 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3517 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4115 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4110 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775260 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4059 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4063 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4058 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4094 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4090 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4321 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4316 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.768408 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.768408 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4041 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4036 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766305 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766305 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.765830 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.765830 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3700 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3712 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3711 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3706 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3701 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4266 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.765897 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.765897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.764812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.764812 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4326 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4321 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4317 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.765965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4312 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.765965 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4174 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.763523 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.763523 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4325 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4320 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.766237 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4318 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.766237 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4313 }, "geometry": { "type": "Point", "coordinates": [ -122.399626, 37.766237 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.764948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763455 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762166 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759044 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759044 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3707 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.762030 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3708 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , @@ -22788,79 +20710,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4364 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4359 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.754294 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3709 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760741 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3704 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760741 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3710 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3705 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.759655 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759519 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759519 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.759451 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3773 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3768 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756126 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756126 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.754362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.754362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3985 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3980 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.753344 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.753344 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } , @@ -22868,59 +20790,59 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3769 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755719 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755719 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3770 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4324 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4319 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.766508 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4319 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4314 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.766372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3861 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.764744 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.764744 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762573 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762573 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.762708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4322 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4317 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4323 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4318 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4320 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4315 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3960 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769697 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4060 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4062 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769561 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4057 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769561 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4088 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4091 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , @@ -22928,79 +20850,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.762844 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3825 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4087 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4117 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4112 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4097 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4092 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3947 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4118 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764133 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764133 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763319 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763319 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3936 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762641 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762641 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4184 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4179 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761283 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.760130 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.759994 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3503 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.758366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3504 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.757416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755923 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755923 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.754769 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754633 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3771 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754633 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3775 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3776 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753412 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.753412 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.753412 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.753887 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4185 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754633 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4180 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754633 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4181 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.756805 ] } } , @@ -23008,67 +20930,67 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.755516 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.755516 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.753751 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3915 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3910 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760741 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3942 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760537 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3937 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760537 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4091 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4098 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760334 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4093 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760334 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757755 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3957 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758026 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3952 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758026 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4162 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758026 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4157 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758026 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.758026 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4169 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4164 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4173 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.754973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.754973 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755041 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4090 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3948 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3943 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4099 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755244 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4094 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.755244 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.751647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.751647 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.751783 ] } } , @@ -23078,59 +21000,59 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746490 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746490 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.744929 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.751783 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.752055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3689 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743503 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.742010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.742010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3864 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3859 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3860 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.742621 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.742010 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4058 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3812 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3807 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742214 ] } } , @@ -23138,19 +21060,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736444 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3798 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737123 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737123 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.737123 ] } } , @@ -23158,29 +21080,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.743775 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.742282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.740856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.742417 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.742417 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.742417 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.739906 ] } } , @@ -23188,19 +21110,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4308 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4303 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4309 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4304 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.738956 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738820 ] } } , @@ -23208,17 +21130,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3688 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } , @@ -23228,59 +21150,59 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751919 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3695 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3690 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3696 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3691 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750629 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4256 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4251 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.752462 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4178 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4173 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.752258 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4250 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4245 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3692 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3699 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3694 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3693 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4215 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4210 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4304 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4299 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748526 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748526 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4191 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4186 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748051 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746897 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746897 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3703 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3698 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3702 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3697 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.746625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4392 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4387 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.745879 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } , @@ -23288,39 +21210,39 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4053 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4048 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752394 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.752462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.752462 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750833 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4052 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4047 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.752665 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4192 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4187 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4305 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.748051 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4300 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.748051 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.748118 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , @@ -23328,9 +21250,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4307 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4302 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } , @@ -23338,29 +21260,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739024 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744182 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744182 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744318 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744318 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4208 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4203 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741196 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741196 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.741467 ] } } , @@ -23368,9 +21290,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738820 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738888 ] } } , @@ -23378,9 +21300,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738752 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3997 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3992 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3996 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3991 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.738209 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737123 ] } } , @@ -23388,69 +21310,69 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3980 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3975 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.730607 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731353 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731353 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728706 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728570 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3532 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3527 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3533 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4143 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4151 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4146 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728570 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734001 ] } } , @@ -23458,79 +21380,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.735223 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.735223 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.735087 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728706 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728706 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3534 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728706 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.728706 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3970 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3965 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.723954 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720831 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720831 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720831 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722460 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721578 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721510 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721238 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721238 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.427435, 37.721170 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718930 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } , @@ -23538,17 +21460,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.724701 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725040 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725040 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725379 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725379 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4006 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4001 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720356 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.719337 ] } } , @@ -23558,49 +21480,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735087 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735087 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.735630 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.735630 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4276 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4271 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3824 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3819 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.728977 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.728977 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.728977 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.728977 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4267 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4262 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3976 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3971 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.734680 ] } } , @@ -23608,79 +21530,79 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.734815 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4233 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4228 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.733254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.733593 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729928 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.729928 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3617 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3612 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.730878 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.730878 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.730946 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.725855 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.725923 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.726398 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.726398 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.727009 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3610 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3616 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3611 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.726466 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3608 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3609 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3619 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3614 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3620 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3615 }, "geometry": { "type": "Point", "coordinates": [ -122.412844, 37.723818 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3793 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723071 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723071 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3618 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3613 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3797 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722664 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3792 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.722664 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722800 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.718930 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718726 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , @@ -23688,29 +21610,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753208 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4168 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.753073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4163 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.753073 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4306 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748390 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4301 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.748390 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , @@ -23718,69 +21640,69 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751851 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750697 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.750697 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.750765 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.750765 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3919 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3914 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.746422 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3832 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4054 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4049 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.738684 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.738684 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.738141 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3833 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3828 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3516 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.741060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3511 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3513 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3508 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3512 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.743911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3507 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.743911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3515 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3510 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3514 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3509 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742282 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738752 ] } } , @@ -23788,19 +21710,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.739499 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.739499 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3778 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3773 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3777 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3772 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752122 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3779 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3774 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751240 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752530 ] } } , @@ -23808,17 +21730,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.751105 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.750019 ] } } , @@ -23826,211 +21748,211 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752462 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752326 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4166 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.752326 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4030 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4025 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746150 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.745947 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4170 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4165 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4167 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.742757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.741671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.741671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737123 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737123 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736173 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736173 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736852 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736852 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.736105 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.736105 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4029 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4024 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740856 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740653 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740653 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4101 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4096 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4088 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3939 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3949 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3944 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.739770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.738073 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.738073 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4104 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4102 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4110 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4101 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736309 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736309 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738888 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4126 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4121 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4087 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4082 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4131 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740313 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.740110 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4327 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4322 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4328 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4323 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737191 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4103 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4127 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4122 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4086 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4135 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737598 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.732304 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.732304 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731285 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731285 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730064 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730064 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4372 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4367 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4389 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4384 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.727959 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734544 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734544 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4032 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4027 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735223 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735223 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735290 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4316 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4311 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731625 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727484 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727484 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.727280 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728434 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728434 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3669 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730335 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730335 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.729113 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.729113 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } , @@ -24038,269 +21960,269 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726534 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725176 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725176 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3788 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3783 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723343 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3784 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723343 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3796 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3791 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3790 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3794 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3789 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726873 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726873 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719337 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719541 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.720423 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.723886 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4336 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4331 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.723411 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.723275 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720627 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720627 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721578 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721578 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.721510 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4335 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4330 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719337 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719337 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3528 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3523 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3531 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731964 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3526 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731964 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3529 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.731761 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3524 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.731761 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3530 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3525 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.731150 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3787 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3782 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4312 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4307 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3831 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735630 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3830 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735630 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4123 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4134 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4085 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734747 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3946 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3941 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4129 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4124 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4084 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4079 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4133 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4128 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.732372 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3834 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3829 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4111 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4106 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4105 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.732847 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.732847 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730403 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3785 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3780 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3786 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3781 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4082 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4077 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4081 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3668 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3663 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.728095 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3661 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.728095 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3662 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.723003 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4141 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4136 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4045 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4040 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4079 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4074 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4080 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4075 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725447 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723750 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.723750 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4061 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4056 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.722732 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4337 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4332 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4130 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4125 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4077 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4112 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4107 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4132 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4127 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3945 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3940 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4083 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4078 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722596 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722596 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4338 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4333 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4142 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4137 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.721985 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.721985 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721374 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721374 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3660 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3664 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3659 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719880 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719880 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4176 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4171 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4182 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4177 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4177 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4172 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } , @@ -24308,29 +22230,29 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.753140 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.753140 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4153 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4148 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.750290 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4114 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4109 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4100 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4095 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4089 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4084 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4113 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4108 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3958 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3953 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.746015 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745811 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746015 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4149 }, "geometry": { "type": "Point", "coordinates": [ -122.387094, 37.741399 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4144 }, "geometry": { "type": "Point", "coordinates": [ -122.387094, 37.741399 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , @@ -24338,19 +22260,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743911 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743911 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4237 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4232 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3870 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3865 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740653 ] } } , @@ -24358,19 +22280,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.738956 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3974 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3969 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } , @@ -24378,9 +22300,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.380743, 37.738752 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.380743, 37.738752 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4284 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4279 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.736512 ] } } , @@ -24388,19 +22310,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.387266, 37.731829 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732575 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.386065, 37.732983 ] } } , @@ -24408,49 +22330,49 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735698 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735698 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3799 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3794 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3800 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3795 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729520 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729520 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.729520 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.386236, 37.729520 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.730131 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.730131 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729385 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729385 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734136 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734136 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733458 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733458 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733254 ] } } , @@ -24458,17 +22380,17 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3955 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734340 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3950 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734340 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734069 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } , @@ -24476,19 +22398,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728638 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728638 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.376966, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.376966, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } , @@ -24498,39 +22420,39 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731964 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.731964 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.729860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730199 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730199 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.373705, 37.730946 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.372074, 37.729860 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.729860 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.729860 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.729249 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.729249 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3932 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3927 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.367868, 37.725312 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.367868, 37.725312 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.365551, 37.728774 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3926 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3921 }, "geometry": { "type": "Point", "coordinates": [ -122.360916, 37.727348 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , @@ -24538,13 +22460,13 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718387 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } , @@ -24556,41 +22478,41 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4346 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4341 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.717911 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4356 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4351 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714584 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4351 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4346 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714449 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3871 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3866 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4000 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3995 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715807 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.715942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.717436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.717300 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.716010 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } , @@ -24598,121 +22520,121 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4347 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4342 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3811 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3806 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.717368 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714584 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714720 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4352 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4347 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4348 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4343 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4353 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4348 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4360 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4355 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3935 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3930 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3929 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3924 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714313 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.718183 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717708 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.715942 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3994 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3989 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718522 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3900 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3895 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.718251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3904 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3899 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3905 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3900 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713905 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3896 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3891 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714109 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.716893 ] } } , @@ -24722,9 +22644,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , @@ -24732,19 +22654,19 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4264 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4259 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.716146 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715671 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.715128 ] } } , @@ -24760,9 +22682,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.715128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , @@ -24772,121 +22694,117 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 3, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3998 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4003 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718251 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3665 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3670 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } -, -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3827 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3854 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3849 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.716214 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4066 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.714992 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4073 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4068 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3672 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3667 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4072 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4067 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3671 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3666 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3822 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3817 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3762 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3757 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717776 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3846 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3847 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3916 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3911 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3858 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3853 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717300 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3857 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3852 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3754 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3842 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3837 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3843 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3838 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715128 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4070 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4065 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4069 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4064 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3841 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3836 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3840 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3835 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.713838 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3755 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716825 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3766 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3765 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3760 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3763 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3758 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3764 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3759 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.716486 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.716961 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3761 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3756 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3856 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3851 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.716282 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.714652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714924 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3959 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3954 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.713362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713498 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , @@ -24900,9 +22818,9 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4076 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4071 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717436 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ @@ -24914,33 +22832,33 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.792965 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793101 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775192 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.774989 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } ] } @@ -24950,7 +22868,7 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , @@ -24958,13 +22876,13 @@ , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , { "type": "Feature", "properties": { "count": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , diff --git a/tests/muni/out/-zg_--retain-points-multiplier_2.json b/tests/muni/out/-zg_--retain-points-multiplier_2.json index f972feedb..e5973564a 100644 --- a/tests/muni/out/-zg_--retain-points-multiplier_2.json +++ b/tests/muni/out/-zg_--retain-points-multiplier_2.json @@ -9,7 +9,7 @@ "maxzoom": "11", "minzoom": "0", "name": "tests/muni/out/-zg_--retain-points-multiplier_2.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4607},{\"dropped_by_rate\":4605},{\"dropped_by_rate\":4601},{\"dropped_by_rate\":4591},{\"dropped_by_rate\":4569},{\"dropped_by_rate\":4513},{\"dropped_by_rate\":4371},{\"dropped_by_rate\":5237},{\"dropped_by_rate\":3669},{\"dropped_by_rate\":1030},{}]", +"strategies": "[{\"dropped_by_rate\":4609},{\"dropped_by_rate\":4608},{\"dropped_by_rate\":4606},{\"dropped_by_rate\":4603},{\"dropped_by_rate\":4594},{\"dropped_by_rate\":4573},{\"dropped_by_rate\":4522},{\"dropped_by_rate\":4401},{\"dropped_by_rate\":5341},{\"dropped_by_rate\":3924},{\"dropped_by_rate\":1568},{}]", "tippecanoe_decisions": "{\"basezoom\":11,\"droprate\":2.5,\"retain_points_multiplier\":2}", "type": "overlay", "version": "2" @@ -17,14 +17,10 @@ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.857507 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } ] } ] } , @@ -32,897 +28,797 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.519531, 37.822802 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +, +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.840157 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.770715 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.541504, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.753344 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.762030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.735969 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.762030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.818463 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.831480 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.707726 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.238770, 37.820633 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.831480 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.507172, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.448120, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.808699 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808699 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.706640 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.718590 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 29, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.819548 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.536011, 37.832022 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.800019 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.800561 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832565 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.718590 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.506485, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.453613, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.823887 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720220 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.747372 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729453 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.732711 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707183 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718047 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +, +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -936,1547 +832,1345 @@ , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } -, -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , { "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } -, -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.536354, 37.831751 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.502022, 37.836361 ] } } -, -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.833921 ] } } -, -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.801104 ] } } -, -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799747 ] } } -, -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } -, -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800832 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799476 ] } } -, -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.799205 ] } } -, -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.800290 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798662 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795678 ] } } -, -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.800290 ] } } -, -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.799205 ] } } -, -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.805444 ] } } -, -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797306 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } -, -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796763 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.794050 ] } } -, -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.793779 ] } } -, -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788353 ] } } -, -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.789438 ] } } -, -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.779127 ] } } -, -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779127 ] } } -, -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775328 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.503738, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.508545, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } -, -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } -, -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } -, -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781569 ] } } -, -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } -, -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.779670 ] } } -, -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } -, -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.497559, 37.775600 ] } } -, -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.492752, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.538757, 37.832294 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.515068, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.791608 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.508888, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.487946, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.479019, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.480736, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.484169, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755244 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740313 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724836 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.806258 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.721034 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.442284, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806258 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808428 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.805986 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790252 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828497 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828226 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.373619, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.756058 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787539 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.754973 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757959 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.754973 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720220 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740585 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.751172 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.727823 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.727552 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.385292, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.384262, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.376022, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.710986 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707183 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.463226, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714517 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710443 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.710171 ] } } -, -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.713702 ] } } -, -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712344 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.714517 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } -, -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708541 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712072 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710714 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } -, -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } -, -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.709085 ] } } -, -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.718319 ] } } ] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.778585 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } ] } ] } , @@ -2484,31 +2178,23 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } -, -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.368126, 37.827413 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.829311 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818192 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813039 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.364693, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810598 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.725379 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.729181 ] } } ] } ] } , @@ -2517,11572 +2203,9988 @@ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } +, +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.240143, 37.820090 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } -, -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } -, -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.727416 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706097 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.706776 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707319 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707455 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707183 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831616 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.514896, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805308 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.538586, 37.832429 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.536182, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.527599, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.530346, 37.824972 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.523308, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.502193, 37.836496 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.833921 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829582 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.480564, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.795542 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.488117, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799747 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777906 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.511978, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.509747, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.490349, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.496014, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.503910, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.497902, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.477818, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.508373, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.508202, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.488976, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747372 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.489834, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.502708, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.477989, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.479362, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.486572, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.486057, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.482967, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.479534, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.505627, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753073 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.499447, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.504597, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.498245, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.499962, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.487087, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.746422 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.496872, 37.733661 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.730403 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.458248, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728910 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778177 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774107 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.472324, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763794 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.768001 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.457905, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.756058 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.451038, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.470436, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739499 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767051 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757551 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746422 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743435 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759451 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.750494 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.473354, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743435 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.460995, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.744114 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.732168 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.467518, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.457390, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.730810 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721713 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.750358 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804495 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799476 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.738549 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.446404, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799340 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.806393 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807071 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805851 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.808156 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.807885 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828226 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794728 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823345 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.370014, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.371731, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810462 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.771393 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791608 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779399 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.794322 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792829 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.423573, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755108 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.793915 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.771665 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.788895 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.790795 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.828362 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.823480 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.371387, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818463 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.811954 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.363319, 37.810326 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771122 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.423744, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753344 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767865 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.746829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.750222 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733661 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721713 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.425976, 37.720356 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.771393 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774650 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743978 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.742349 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752122 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.392502, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755244 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.754566 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.766915 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743843 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.754701 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.385464, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.757959 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755108 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751580 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730539 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.380142, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751851 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729317 ] } } , -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.430954, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.716961 ] } } , -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.422714, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752530 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.739092 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.710443 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.444687, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717097 ] } } , -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.424774, 37.735562 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.434387, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719269 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707862 ] } } , -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735833 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.716825 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.725108 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.751444 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } +] } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742892 ] } } +{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.739092 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 238, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.739499 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.727959 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.727688 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726194 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.726601 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731761 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735155 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.732847 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729181 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729317 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727823 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725244 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.724157 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740585 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.383232, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737055 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731896 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735969 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.386494, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.734069 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.379971, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.379627, 37.732439 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732711 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.368641, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725379 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.425632, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.712072 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710443 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.714924 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD/S.F. Golf Club", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.716961 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.709764 ] } } -] } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.711597 ] } } , -{ "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Daly City Bart Station", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.705757 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784147 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 238, "y": 197 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.819955 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.459879, 37.706368 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "Niagra Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Curtis St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Munich St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "1701 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "1750 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.712412 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708202 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.707726 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.711733 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.709967 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711529 ] } } , -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } , -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712276 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Leland Ave@Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } , -{ "type": "Feature", "properties": { "name": "Holyoke St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.724022 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } , -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.709356 ] } } , -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Thomas Mellon Dr", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.711257 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } +] } , -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } , -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } +{ "type": "Feature", "properties": { "name": "FIELD RD/Youth Hostel", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.523479, 37.831684 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.833039 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } +{ "type": "Feature", "properties": { "name": " Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.833717 ] } } , -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } , -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.833107 ] } } , -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.803952 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788421 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & LAKE MERCED HILLS BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } +{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } , -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.806732 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } , -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "1100 Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.709152 ] } } +{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } +{ "type": "Feature", "properties": { "name": "Montgomery St (Presidio)/Bldg 102", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.800154 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } , -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713091 ] } } +{ "type": "Feature", "properties": { "name": "Funston Ave & Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood way & Chumasero Dr W-NW/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.713023 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Palmetto Av", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & St Charles Ave", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.710375 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.443914, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Arch ST", "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.466917, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Arch St&Alemany St", "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.467175, 37.711393 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "St Charles Ave & Belle Ave", "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.708745 ] } } +{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Daly City BART West Station Rd.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.468634, 37.707047 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Baker St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.797577 ] } } , -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Orizaba Ave", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "274 Sagamore St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.461596, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Crystal St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.460308, 37.710103 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Blvd & Simonds Loop", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.451553, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Capitol Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } , -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } , -{ "type": "Feature", "properties": { "name": "Sagamore St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.711529 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Sagamore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.804427 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sickles Ave", "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Sickles Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.710307 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.705961 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.706097 ] } } +{ "type": "Feature", "properties": { "name": "BAY St & WEBSTER St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.460651, 37.706165 ] } } +{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.706640 ] } } +{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Flournoy St", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.706844 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & GoeThe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Evergreen St", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.707387 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } +{ "type": "Feature", "properties": { "name": "Webster St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.448378, 37.710510 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Whittier St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.710239 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.797034 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Lowell St", "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Guttenberg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Foote Ave", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Sickles Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Acton St", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Oliver St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.795949 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Athens St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Brunswick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.711801 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Seville St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "Curtis St & Prague St", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.437992, 37.710239 ] } } +{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } +{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } +{ "type": "Feature", "properties": { "name": "902 Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.513008, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Drake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "Munich St & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.710918 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Munich St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Prague St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.711257 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Cordova Ave & Winding Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Cordova Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.708881 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & Naylor St", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.709628 ] } } +{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.499619, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } +{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "South Hill Blvd & Chicago Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Chicago Way & South Hill Blvd", "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.779059 ] } } , -{ "type": "Feature", "properties": { "name": "1650 Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "1721 Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.711054 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "MANSELL ST & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.718319 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } +{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave&Carter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cielito Dr", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.709017 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Esquina Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.708677 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.771868 ] } } , -{ "type": "Feature", "properties": { "name": "1800 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.712955 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } , -{ "type": "Feature", "properties": { "name": "1725 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & PERSIA AVE", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Great Hwy", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711733 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Brookdale Ave", "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Blythdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.710646 ] } } +{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.508802, 37.760198 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Hahn St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.711665 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.711054 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Britton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.712751 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Schwerin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Schwerin St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.710714 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.710510 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.710375 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.708473 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.708202 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Santos St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.708609 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Santos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.708338 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Castelo St", "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.707930 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.781502 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Rio Verde St", "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.706912 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.708134 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Macdonald Ave", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.707115 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Street & Schwerin Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.706300 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709288 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Garrison Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Schwerin St & Velasco Ave", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.708270 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } +{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.490606, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } +{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.488461, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712615 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Leland Ave", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.710171 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Cora St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.710035 ] } } +{ "type": "Feature", "properties": { "name": "Anza St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.709967 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709899 ] } } +{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.711461 ] } } +{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.711325 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } , -{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Raymond Ave & Alpha St", "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.712547 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Leland Ave@Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.711868 ] } } +{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.710578 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.491808, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } +{ "type": "Feature", "properties": { "name": "FULTON ST & 31ST AVE", "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.490692, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } +{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.772479 ] } } , -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } +{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.485285, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.712140 ] } } +{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.712344 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712480 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd/Arleta/Blanken", "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.712208 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.712276 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Leland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.711122 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.710646 ] } } +{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Tunnel Ave", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.712887 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Tunnel Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.712004 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.479277, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Peninsula Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.711597 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Talbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.709356 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.709492 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.709085 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE & BAYSHORE BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Sunnydale Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.708813 ] } } +{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Nueva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.711189 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "Blanken Ave & Gillette Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.710986 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Executive Park Blvd & Blanken Ave", "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.710850 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } , -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & LANSDALE AVE", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.712819 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Alana Way & Executive Park Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.708949 ] } } +{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "50 THOMAS MELLON DR", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.709831 ] } } +{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } , -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Candlestick Park/49ers Stadium", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.712140 ] } } -] } -] } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } , -{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "features": [ -{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Fort Cronkhite Parking Lot", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.538671, 37.832361 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "MITCHELL RD/Visitor's Center", "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.536268, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.532406, 37.831819 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Mitchell Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.530861, 37.831887 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.527256, 37.832565 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Miwok Trail", "tippecanoe:retain_points_multiplier_sequence": 658 }, "geometry": { "type": "Point", "coordinates": [ -122.527170, 37.832497 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "FIELD RD/Nike Site", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.527685, 37.829040 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY Alexander/FIELD RD", "tippecanoe:retain_points_multiplier_sequence": 3198 }, "geometry": { "type": "Point", "coordinates": [ -122.530260, 37.825040 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd/Visitor Center", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830463 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bodsworth Rd", "tippecanoe:retain_points_multiplier_sequence": 3410 }, "geometry": { "type": "Point", "coordinates": [ -122.524424, 37.830395 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.523222, 37.831345 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } , -{ "type": "Feature", "properties": { "name": "Field Rd & Light House", "tippecanoe:retain_points_multiplier_sequence": 3409 }, "geometry": { "type": "Point", "coordinates": [ -122.529659, 37.821853 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.496700, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.515411, 37.831751 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Stables", "tippecanoe:retain_points_multiplier_sequence": 660 }, "geometry": { "type": "Point", "coordinates": [ -122.514982, 37.831819 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "BUNKER RD/Rifle Range", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 659 }, "geometry": { "type": "Point", "coordinates": [ -122.508717, 37.832972 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.836090 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Bunker Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.502108, 37.836429 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833853 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Mccullough Rd & Conzelman Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.833582 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd & Mccullough Rd", "tippecanoe:retain_points_multiplier_sequence": 3383 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.833582 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "US101 Offramp/Sausalito Lateral Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.835886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Alexander Dr & Conzelman Rd", "tippecanoe:retain_points_multiplier_sequence": 3382 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.833175 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Conzelman Rd/GGNRA entrance sign", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.832836 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.483997, 37.829514 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "CONZELMAN RD/Kirby Cove", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.829446 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Merchant St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Bowley St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.482624, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Bowley St", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Stillwell Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3111 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Pershing Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.477732, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.807546 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "GOLDEN GATE BRIDGE/TOLL PLAZA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Bridge/Parking Lot", "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.807478 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Br Tunnel/Merchant Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "957 Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Cowles St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_sequence": 1828 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.477303, 37.763658 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B650", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1827 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Cowles St", "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Storey Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.469234, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Mcdowell Ave & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/Bldg B639", "tippecanoe:retain_points_multiplier_sequence": 1826 }, "geometry": { "type": "Point", "coordinates": [ -122.462196, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Montgomery St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.460222, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 1825 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St (Presidio)/Presidio Bank", "tippecanoe:retain_points_multiplier_sequence": 1831 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1829 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.482796, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Anza St", "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.456789, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Anza Blvd & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "MASON ST (PRESIDIO)/PX", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1830 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.803884 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Transit Center", "tippecanoe:retain_points_multiplier_sequence": 3296 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 3297 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "220 Halleck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1539 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.801714 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.476959, 37.759926 ] } } , -{ "type": "Feature", "properties": { "name": "HALLECK ST/Army Headquarters", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3299 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.797916 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Graham St & Moraga Ave", "tippecanoe:retain_points_multiplier_sequence": 3298 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.797984 ] } } +{ "type": "Feature", "properties": { "name": "23rd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.480822, 37.754158 ] } } , -{ "type": "Feature", "properties": { "name": "Moraga Ave & Graham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } , -{ "type": "Feature", "properties": { "name": "Halleck St & Lincoln Blvd", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3300 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd&Girard Rd NW-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3460 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.753887 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Blvd & Girard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3065 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.798255 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Barnard Rd", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio YMCA Center N-MB/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3461 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "PresidioBlvd&Letterman Dr.SE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3459 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Letterman Dr", "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR/Tides Bldg", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LINCOLN BLVD", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "LETTERMAN DR & LOMBARD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3139 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.747304 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.443657, 37.803613 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3372 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.501936, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3353 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1103 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } , -{ "type": "Feature", "properties": { "name": "Richardson Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2448 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Lyon St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.797170 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Broderick St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.799815 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.738006 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard & Richardson Ave", "tippecanoe:retain_points_multiplier_sequence": 3066 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.798866 ] } } +{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Blvd & Sumner Ave", "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.500477, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.447433, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735562 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.501335, 37.735358 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Scott St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.803070 ] } } +{ "type": "Feature", "properties": { "name": "Armory Rd & Herbst Rd", "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jefferson St", "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.800290 ] } } +{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.502451, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Mallorca Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & STEINER ST", "tippecanoe:retain_points_multiplier_sequence": 3189 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796899 ] } } +{ "type": "Feature", "properties": { "name": "37th AVE & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1236 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.804427 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Cervantes Blvd", "tippecanoe:retain_points_multiplier_sequence": 1238 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.747643 ] } } , -{ "type": "Feature", "properties": { "name": "BATTERY St & GREENWICH St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3414 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.802392 ] } } +{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Fort Mason access road/Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.804901 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Buchanan St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "FORT MASON/Bus isl nr guard gate", "tippecanoe:retain_points_multiplier_sequence": 3260 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Marina Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.745811 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.801307 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1237 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.800765 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2093 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.746150 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.799612 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 3498 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.437048, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Union St", "tippecanoe:retain_points_multiplier_sequence": 3228 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.797509 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 3084 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.442026, 37.796288 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.796628 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "30th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.740788 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2092 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 2091 }, "geometry": { "type": "Point", "coordinates": [ -122.484770, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2090 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Green St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1460 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 3346 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.791473 ] } } +{ "type": "Feature", "properties": { "name": "29th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.788488 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Steiner St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1258 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.788963 ] } } +{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.779873 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & Merrie Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.512064, 37.779059 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.493868, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.510347, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.510090, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.510004, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 3175 }, "geometry": { "type": "Point", "coordinates": [ -122.509918, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "La Playa St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.509832, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & La Playa St", "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.509403, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1234 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1235 }, "geometry": { "type": "Point", "coordinates": [ -122.486315, 37.729453 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3319 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "V.A. HOSPITAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.504082, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.504253, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "43rd Ave & Point Lobos Ave", "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "LEGION OF HONOR", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.499704, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "42nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.502966, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 42nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1231 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.724225 ] } } , -{ "type": "Feature", "properties": { "name": "Point Lobos Ave & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 1232 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.505970, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.503824, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 748 }, "geometry": { "type": "Point", "coordinates": [ -122.507772, 37.773429 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Higuera Ave", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.483225, 37.718590 ] } } , -{ "type": "Feature", "properties": { "name": "45th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 967 }, "geometry": { "type": "Point", "coordinates": [ -122.507000, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 968 }, "geometry": { "type": "Point", "coordinates": [ -122.506313, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.503653, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "190 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St t& 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3425 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3416 }, "geometry": { "type": "Point", "coordinates": [ -122.503309, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 965 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2585 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.500391, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476101, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.500648, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3424 }, "geometry": { "type": "Point", "coordinates": [ -122.500305, 37.771868 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 38th Ave", "tippecanoe:retain_points_multiplier_sequence": 963 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.510262, 37.767865 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "GREAT HWY/near Beach Chalet", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.510433, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & La Playa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.509575, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 3186 }, "geometry": { "type": "Point", "coordinates": [ -122.509232, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.509060, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah/La Playa/Ocean Beach", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.508974, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "FUNSTON AVE & LAKE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.507429, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.506227, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.473955, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.506142, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.508459, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.508116, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 48th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3378 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "14th Avenue & Geary Boulevard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "48th Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3377 }, "geometry": { "type": "Point", "coordinates": [ -122.508030, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3124 }, "geometry": { "type": "Point", "coordinates": [ -122.505798, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 3123 }, "geometry": { "type": "Point", "coordinates": [ -122.506056, 37.760334 ] } } +{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.505884, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.505713, 37.756805 ] } } +{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3113 }, "geometry": { "type": "Point", "coordinates": [ -122.502880, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 3125 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3127 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.499361, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 3126 }, "geometry": { "type": "Point", "coordinates": [ -122.499104, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 729 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.496443, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.467346, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Legion Of Honor Dr & Clement St", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & Legion Of Honor Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 474 }, "geometry": { "type": "Point", "coordinates": [ -122.492409, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.492495, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 473 }, "geometry": { "type": "Point", "coordinates": [ -122.492323, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 848 }, "geometry": { "type": "Point", "coordinates": [ -122.492237, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.474213, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 478 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.781569 ] } } +{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2878 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 683 }, "geometry": { "type": "Point", "coordinates": [ -122.488031, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 847 }, "geometry": { "type": "Point", "coordinates": [ -122.491465, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.490520, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.773225 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3494 }, "geometry": { "type": "Point", "coordinates": [ -122.490091, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.490177, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.490005, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 845 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 846 }, "geometry": { "type": "Point", "coordinates": [ -122.489319, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.462282, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 844 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 843 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 479 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.497387, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.497215, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 475 }, "geometry": { "type": "Point", "coordinates": [ -122.493267, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 476 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Anza St&32 AVE", "tippecanoe:retain_points_multiplier_sequence": 3451 }, "geometry": { "type": "Point", "coordinates": [ -122.492151, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } , -{ "type": "Feature", "properties": { "name": "33rd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.493010, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 962 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.496357, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_sequence": 1001 }, "geometry": { "type": "Point", "coordinates": [ -122.456961, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.492838, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "32ND AVE & ANZA St", "tippecanoe:retain_points_multiplier_sequence": 3495 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "32nd Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.491980, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 1004 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.492065, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1003 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1005 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 99 }, "geometry": { "type": "Point", "coordinates": [ -122.489920, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_sequence": 481 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 480 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3423 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 1349 }, "geometry": { "type": "Point", "coordinates": [ -122.489405, 37.772411 ] } } +{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.489147, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton S t& 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3422 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_sequence": 435 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & El Camino Del Mar", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 434 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_sequence": 439 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Lake St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 440 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 657 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 428 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 429 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.783808 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.481680, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 842 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 432 }, "geometry": { "type": "Point", "coordinates": [ -122.484941, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.461252, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 433 }, "geometry": { "type": "Point", "coordinates": [ -122.484684, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 437 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1000 }, "geometry": { "type": "Point", "coordinates": [ -122.484856, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 438 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.779941 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 849 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 841 }, "geometry": { "type": "Point", "coordinates": [ -122.481766, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan StW", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.454815, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 840 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.482710, 37.780077 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.481422, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 680 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 839 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 996 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 18th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.477474, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 836 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Anza St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 425 }, "geometry": { "type": "Point", "coordinates": [ -122.484512, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 426 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776414 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 427 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.482452, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 430 }, "geometry": { "type": "Point", "coordinates": [ -122.484426, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 431 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "25th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 436 }, "geometry": { "type": "Point", "coordinates": [ -122.484255, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave. & Irving St.", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 3043 }, "geometry": { "type": "Point", "coordinates": [ -122.484083, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.772479 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.762030 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ -122.478161, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -122.477903, 37.776685 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1346 }, "geometry": { "type": "Point", "coordinates": [ -122.480650, 37.772682 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.479191, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1248 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.759180 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 18th Ave", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 1247 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3417 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } , -{ "type": "Feature", "properties": { "name": "37th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } , -{ "type": "Feature", "properties": { "name": "36th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 482 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Irving St", "tippecanoe:retain_points_multiplier_sequence": 2692 }, "geometry": { "type": "Point", "coordinates": [ -122.495756, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.494726, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.470093, 37.758298 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.492580, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1246 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.491894, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.490435, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.488289, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & KIRKHAM ST", "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.495842, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 3110 }, "geometry": { "type": "Point", "coordinates": [ -122.495928, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2694 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.495670, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.761012 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 3109 }, "geometry": { "type": "Point", "coordinates": [ -122.493181, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2699 }, "geometry": { "type": "Point", "coordinates": [ -122.495584, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.757008 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.764133 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.495499, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 2702 }, "geometry": { "type": "Point", "coordinates": [ -122.495241, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.753548 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 34th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.492666, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 3108 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1924 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3107 }, "geometry": { "type": "Point", "coordinates": [ -122.486744, 37.761148 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.490263, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1925 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1927 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.486143, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 27th Ave", "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.485542, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.483397, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.454300, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.481852, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 393 }, "geometry": { "type": "Point", "coordinates": [ -122.481594, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "455 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.480392, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.480307, 37.763658 ] } } +{ "type": "Feature", "properties": { "name": "400 Warren Dr E", "tippecanoe:retain_points_multiplier_sequence": 2554 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.756941 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.477646, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "LINC. WAY & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "Cross Over Dr&Lincoln St", "tippecanoe:retain_points_multiplier_sequence": 3440 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Warren Dr & Oakpark Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3163 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 999 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & LINCOLN WAY", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 998 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 326 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.763455 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 3106 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.486486, 37.761283 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 997 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.483568, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.781569 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 391 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3105 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 392 }, "geometry": { "type": "Point", "coordinates": [ -122.481079, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.485971, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2103 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2102 }, "geometry": { "type": "Point", "coordinates": [ -122.483826, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1002 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 25th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2101 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.753887 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 1684 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3128 }, "geometry": { "type": "Point", "coordinates": [ -122.479792, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Judah St", "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3103 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782180 ] } } , -{ "type": "Feature", "properties": { "name": "19 Ave & Juda St", "tippecanoe:retain_points_multiplier_sequence": 3376 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3104 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.782316 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 329 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.761555 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.760130 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.476788, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.476530, 37.757891 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "23rd Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 394 }, "geometry": { "type": "Point", "coordinates": [ -122.480993, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.479706, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2100 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.753955 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 850 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "22nd Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 382 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.476702, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.476444, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1345 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1344 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.507858, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.506399, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.750901 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 46th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.505541, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.773429 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.505455, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.503567, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.751037 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.505198, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "Lower Great Hwy & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.507515, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 48th Ave", "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.506742, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.505112, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2437 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.505026, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.504768, 37.745404 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 43rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.502279, 37.753005 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.500134, 37.753140 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2111 }, "geometry": { "type": "Point", "coordinates": [ -122.498846, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2110 }, "geometry": { "type": "Point", "coordinates": [ -122.497988, 37.753208 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2436 }, "geometry": { "type": "Point", "coordinates": [ -122.503052, 37.747440 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2435 }, "geometry": { "type": "Point", "coordinates": [ -122.499790, 37.747508 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2434 }, "geometry": { "type": "Point", "coordinates": [ -122.499533, 37.747711 ] } } +{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2433 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.747643 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & California St", "tippecanoe:retain_points_multiplier_sequence": 966 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.504854, 37.743707 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.504683, 37.741874 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 964 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.504511, 37.741671 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 46th Ave", "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.504425, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & St Joseph'S Ave", "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.505283, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "47th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.736037 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Wawona/46th Ave /SF Zoo", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.504339, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "46th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.504168, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783130 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.502623, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 44th Ave", "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.502365, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 42nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.500219, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1007 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.498331, 37.742010 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 40th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.498074, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "Great Hwy & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.506828, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 47th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.505369, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.434988, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "SLOAT BLVD & 47TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3178 }, "geometry": { "type": "Point", "coordinates": [ -122.504940, 37.735426 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1108 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.503395, 37.735630 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 45th Ave", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.502794, 37.735358 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 43rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.500734, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.499275, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 41st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.498932, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Amory Rd", "tippecanoe:retain_points_multiplier_sequence": 3374 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Zoo Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.501678, 37.728231 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } , -{ "type": "Feature", "properties": { "name": "Herbst Rd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2623 }, "geometry": { "type": "Point", "coordinates": [ -122.499189, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1107 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Harding Rd", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.502537, 37.726737 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.781705 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.500048, 37.718998 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1008 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } , -{ "type": "Feature", "properties": { "name": "John Muir Dr & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.499876, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1113 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } , -{ "type": "Feature", "properties": { "name": "Noriega St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.753344 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.779873 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.753276 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.494984, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.495155, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.495070, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 2709 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.749544 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.494898, 37.747575 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.497473, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "39th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.497301, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Rivera St & 37th Ave", "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.745879 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 36th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 973 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.493095, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 35th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.493353, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.494812, 37.746082 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2428 }, "geometry": { "type": "Point", "coordinates": [ -122.490950, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 33rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2429 }, "geometry": { "type": "Point", "coordinates": [ -122.491207, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2427 }, "geometry": { "type": "Point", "coordinates": [ -122.489061, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 31st Ave", "tippecanoe:retain_points_multiplier_sequence": 2426 }, "geometry": { "type": "Point", "coordinates": [ -122.488804, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 458 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.747983 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_sequence": 2425 }, "geometry": { "type": "Point", "coordinates": [ -122.486916, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 29th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2424 }, "geometry": { "type": "Point", "coordinates": [ -122.486658, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 459 }, "geometry": { "type": "Point", "coordinates": [ -122.487774, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.744250 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1342 }, "geometry": { "type": "Point", "coordinates": [ -122.436447, 37.775192 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.494469, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1343 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.494640, 37.742146 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3118 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1104 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & Sunset Blvd", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.742282 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.742078 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 35th Ave", "tippecanoe:retain_points_multiplier_sequence": 2765 }, "geometry": { "type": "Point", "coordinates": [ -122.492924, 37.742214 ] } } +{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.771054 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.494383, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.494211, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.494297, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.494125, 37.738413 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.769358 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Wawona St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.489491, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 32nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.489748, 37.742349 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.766440 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 460 }, "geometry": { "type": "Point", "coordinates": [ -122.487688, 37.744521 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 461 }, "geometry": { "type": "Point", "coordinates": [ -122.487516, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.487345, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.487602, 37.742485 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "30th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 462 }, "geometry": { "type": "Point", "coordinates": [ -122.487431, 37.742417 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & 30th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.487259, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & 30th Ave", "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.487173, 37.738752 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2422 }, "geometry": { "type": "Point", "coordinates": [ -122.485628, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 28th Ave", "tippecanoe:retain_points_multiplier_sequence": 2423 }, "geometry": { "type": "Point", "coordinates": [ -122.485886, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 27th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2421 }, "geometry": { "type": "Point", "coordinates": [ -122.484598, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.483482, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2771 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.481337, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 649 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 341 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 650 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765762 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 342 }, "geometry": { "type": "Point", "coordinates": [ -122.476358, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1926 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 343 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 766 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 344 }, "geometry": { "type": "Point", "coordinates": [ -122.476273, 37.750222 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.479448, 37.748458 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.476187, 37.748593 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 491 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.475843, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766915 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 352 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 28th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.742689 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 488 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.770376 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 24th Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.481165, 37.742757 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 23rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.480478, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_sequence": 2754 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.742960 ] } } +{ "type": "Feature", "properties": { "name": "Masonic Ave & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 22nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.742892 ] } } +{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 354 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 756 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3357 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.743028 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 757 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 356 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.741264 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 489 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 39th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2634 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 486 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Skyline Blvd", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.496786, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 490 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3480 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 485 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "Skyline Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2624 }, "geometry": { "type": "Point", "coordinates": [ -122.496614, 37.733526 ] } } +{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 487 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.494040, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Yorba St", "tippecanoe:retain_points_multiplier_sequence": 2723 }, "geometry": { "type": "Point", "coordinates": [ -122.493782, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 37th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.494555, 37.733729 ] } } +{ "type": "Feature", "properties": { "name": "415 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.443142, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 36th Ave", "tippecanoe:retain_points_multiplier_sequence": 2632 }, "geometry": { "type": "Point", "coordinates": [ -122.493439, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.493954, 37.732915 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.493610, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.493525, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Blvd & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.493696, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 34th Ave", "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.491636, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.447691, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Everglade Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.489662, 37.733933 ] } } +{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Constanso Way", "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.489233, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 749 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & El Mirasol Pl", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.486229, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Sylvan Dr", "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.485800, 37.734136 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Forest View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.483912, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Paraiso Pl", "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 26th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.482195, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced & Middlefield Dr", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.486401, 37.729656 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & Crestlake Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 23rd Ave", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.479620, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2627 }, "geometry": { "type": "Point", "coordinates": [ -122.477388, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 21st Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.477217, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } , -{ "type": "Feature", "properties": { "name": "Buckingham Way & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.479105, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.478504, 37.728027 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3181 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.728774 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "20th Av/Macy's Stonestown", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd/SFSU", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.484341, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "LAKE MERCED BLVD & Font DR", "tippecanoe:retain_points_multiplier_sequence": 3201 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.724090 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & Lake Merced Blvd", "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } , -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.485027, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Mary Ward Hall", "tippecanoe:retain_points_multiplier_sequence": 3476 }, "geometry": { "type": "Point", "coordinates": [ -122.483654, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.482538, 37.721849 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 586 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.768679 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Arballo Dr", "tippecanoe:retain_points_multiplier_sequence": 1311 }, "geometry": { "type": "Point", "coordinates": [ -122.482109, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Pinto Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.483053, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } , -{ "type": "Feature", "properties": { "name": "Arballo Dr & Acevedo Ave .", "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.483139, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr NS/W/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3463 }, "geometry": { "type": "Point", "coordinates": [ -122.481251, 37.720763 ] } } +{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } , -{ "type": "Feature", "properties": { "name": "281 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "280 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.480049, 37.726941 ] } } +{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "170 Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 653 }, "geometry": { "type": "Point", "coordinates": [ -122.478848, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "91 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 652 }, "geometry": { "type": "Point", "coordinates": [ -122.477131, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "20th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } , -{ "type": "Feature", "properties": { "name": "Winston Dr & 20th Ave", "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.726873 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.767254 ] } } , -{ "type": "Feature", "properties": { "name": "90 Buckingham Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 651 }, "geometry": { "type": "Point", "coordinates": [ -122.476873, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Tapia Dr", "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.480907, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2759 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.479963, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 2663 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } , -{ "type": "Feature", "properties": { "name": "Font Blvd & Serrano Dr NS/W-SB", "tippecanoe:retain_points_multiplier_sequence": 3464 }, "geometry": { "type": "Point", "coordinates": [ -122.479877, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } , -{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.478418, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Crespi Dr & Varela Ave", "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Cardenas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.475672, 37.719133 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 679 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 1776 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.473269, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1777 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2760 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio & California Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2267 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 902 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } , -{ "type": "Feature", "properties": { "name": "PARK PRESIDIO BLVD & California ST", "tippecanoe:retain_points_multiplier_sequence": 2268 }, "geometry": { "type": "Point", "coordinates": [ -122.472496, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & FUNSTON AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1791 }, "geometry": { "type": "Point", "coordinates": [ -122.433357, 37.763930 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 678 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 835 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 14 Ave", "tippecanoe:retain_points_multiplier_sequence": 3340 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.470951, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.437305, 37.760673 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1352 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1351 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780687 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2271 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 331 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.757551 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 675 }, "geometry": { "type": "Point", "coordinates": [ -122.469149, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 337 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3054 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & Alvarado St", "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.438765, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 200 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.464943, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 903 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.464685, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 904 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 3135 }, "geometry": { "type": "Point", "coordinates": [ -122.466831, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3058 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.782926 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 193 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.783130 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.464771, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ -122.472668, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.472067, 37.752665 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 2265 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2266 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1341 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 975 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Santiago St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.745064 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2270 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Park Presidio Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 976 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } , -{ "type": "Feature", "properties": { "name": "Park Presidio Blvd & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2269 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2104 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ -122.468204, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Ortega St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3338 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 3337 }, "geometry": { "type": "Point", "coordinates": [ -122.464857, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1340 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 1339 }, "geometry": { "type": "Point", "coordinates": [ -122.468376, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 201 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 2105 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 8th Ave", "tippecanoe:retain_points_multiplier_sequence": 1338 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "8th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 202 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Cornwall St & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 905 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cornwall St", "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Corwall St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3231 }, "geometry": { "type": "Point", "coordinates": [ -122.464428, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "California St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.471209, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Clement St", "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.462540, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 990 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2549 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 190 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "Clement St & 2nd Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.459793, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.461166, 37.781027 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.460909, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.465372, 37.741467 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Jordan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Cherry St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.456360, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Maple St", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.454472, 37.784147 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.453699, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Euclid Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.783740 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "ARGUELLO BLVD & EUCLID AVE", "tippecanoe:retain_points_multiplier_sequence": 3204 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Clement St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2695 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3497 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.781434 ] } } +{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Commonwealth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1017 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Anza St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "Clarendon Ave & Galewood Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Balboa St", "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Cabrillo St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 747 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2767 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Cabrillo St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ -122.461767, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2768 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.773700 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3211 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "6th Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1337 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.773564 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2769 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.461939, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa St & Arguello Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Turk St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Balboa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 1259 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.455072, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 969 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Arguello Blvd & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 970 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Dorchester Way", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 978 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1530 }, "geometry": { "type": "Point", "coordinates": [ -122.454128, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1688 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1531 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1687 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1685 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1686 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1771 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.471037, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.470865, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.455244, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "CONCOURSE DR/Academy of Sciences", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.468891, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.468719, 37.765762 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd. & 19th Ave.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.469320, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "LINCOLN&9AV(NEW STOP)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3328 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 217 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lincoln Way", "tippecanoe:retain_points_multiplier_sequence": 218 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.464600, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.763794 ] } } +{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2272 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St. & 9th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3367 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Irving St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1676 }, "geometry": { "type": "Point", "coordinates": [ -122.466660, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1677 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762166 ] } } +{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.471466, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 3099 }, "geometry": { "type": "Point", "coordinates": [ -122.466316, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Judah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.762098 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3102 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.731285 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3101 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & Funston Ave", "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.470608, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Lomita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Lomita Ave", "tippecanoe:retain_points_multiplier_sequence": 262 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.756941 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.473612, 37.756330 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Noriega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.754226 ] } } +{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.472153, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 3100 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 11th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Kirkham St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "9TH AVE & LAWTON ST", "tippecanoe:retain_points_multiplier_sequence": 3173 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758569 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 9th Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.466059, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2657 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_sequence": 219 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Moraga St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 220 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.756533 ] } } +{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Noriega St", "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.462454, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 5th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_sequence": 1363 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1620 }, "geometry": { "type": "Point", "coordinates": [ -122.464256, 37.764065 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1675 }, "geometry": { "type": "Point", "coordinates": [ -122.464170, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 6th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.462883, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1364 }, "geometry": { "type": "Point", "coordinates": [ -122.472754, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Judah St & 5th Ave", "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.462025, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1619 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & 3rd Ave", "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727280 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.460737, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & 4th Ave", "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.460480, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3407 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Vernon St", "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.467947, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Lincoln Way & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & 2nd Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1618 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Irving St & Arguello Blvd", "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1640 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 739 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Jacinto Way", "tippecanoe:retain_points_multiplier_sequence": 1641 }, "geometry": { "type": "Point", "coordinates": [ -122.463999, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Hillway Ave", "tippecanoe:retain_points_multiplier_sequence": 740 }, "geometry": { "type": "Point", "coordinates": [ -122.456532, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1689 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "500 Parnassus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } , -{ "type": "Feature", "properties": { "name": "513 Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Hillway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.456703, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_sequence": 1324 }, "geometry": { "type": "Point", "coordinates": [ -122.454901, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Willard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.454729, 37.766101 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Willard St", "tippecanoe:retain_points_multiplier_sequence": 2224 }, "geometry": { "type": "Point", "coordinates": [ -122.454557, 37.764337 ] } } +{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Saint Elmo Way", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.732643 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } , -{ "type": "Feature", "properties": { "name": "Lawton St & 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.463913, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "7th Ave & Lawton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3239 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.758434 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.457561, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Locksley Ave", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.463140, 37.758705 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1637 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 192 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.756737 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "1697 7th Ave", "tippecanoe:retain_points_multiplier_sequence": 191 }, "geometry": { "type": "Point", "coordinates": [ -122.463741, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "1798 Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.463827, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Noriega StE", "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "345 Warren Dr E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Devonshire Way", "tippecanoe:retain_points_multiplier_sequence": 2985 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Warren Dr & Christopher Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.459965, 37.753751 ] } } +{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "117 Warren Dr", "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.457991, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Oakpark Dr & Forest Knolls Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.455416, 37.755312 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.753683 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 727 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 728 }, "geometry": { "type": "Point", "coordinates": [ -122.453527, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.451982, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Iris Ave", "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 711 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Laurel St", "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&Lee Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.448292, 37.784961 ] } } +{ "type": "Feature", "properties": { "name": "GRAFTON AVE & PLYMOUTH AVE", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.457047, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Spruce St", "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.782248 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Collins St", "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Walnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2553 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave at Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 2757 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 724 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2371 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Euclid Ave & Presidio Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745743 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2727 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.784893 ] } } +{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2728 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2082 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 838 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2081 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "40 CRESTLINE DR", "tippecanoe:retain_points_multiplier_sequence": 837 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Presidio Ave", "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } , -{ "type": "Feature", "properties": { "name": "Presidio Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Crestline Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2628 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 517 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Parker Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.777770 ] } } +{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Chabot Ter", "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.449665, 37.778381 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 988 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Roselyn Ter", "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 971 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 972 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton Street & Shrader Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3330 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 977 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_sequence": 1529 }, "geometry": { "type": "Point", "coordinates": [ -122.452755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Portola Dr & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.747168 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3350 }, "geometry": { "type": "Point", "coordinates": [ -122.452497, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1513 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.773225 ] } } +{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1512 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "DUNCAN ST & AMBER DR", "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.746015 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1511 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.773632 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2089 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Evelyn Way", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.743096 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2088 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Golden Gate Ave", "tippecanoe:retain_points_multiplier_sequence": 2080 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Fulton St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 974 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.775667 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2078 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister S t& Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3419 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 2079 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.737802 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 2838 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3421 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3055 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1651 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.739227 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.776956 ] } } +{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Central Ave & McAllister St", "tippecanoe:retain_points_multiplier_sequence": 3418 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.776821 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3427 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2390 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.447348, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 2085 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2387 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1524 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2386 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1525 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.773971 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2086 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.771936 ] } } +{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2087 }, "geometry": { "type": "Point", "coordinates": [ -122.445717, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1510 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.774175 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_sequence": 1523 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.774311 ] } } +{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Lyon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1522 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.774446 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "Douglass St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 989 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1105 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.786250 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.439966, 37.785165 ] } } +{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 994 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.439795, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2731 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.785232 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 2747 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2746 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.440310, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1018 }, "geometry": { "type": "Point", "coordinates": [ -122.439365, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.439451, 37.783401 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1112 }, "geometry": { "type": "Point", "coordinates": [ -122.439194, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1111 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751172 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.437649, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 364 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 1109 }, "geometry": { "type": "Point", "coordinates": [ -122.438850, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1110 }, "geometry": { "type": "Point", "coordinates": [ -122.438936, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1674 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_sequence": 1161 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.749815 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1162 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.788081 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.436104, 37.747847 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1257 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1260 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 2732 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 957 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1021 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1158 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1159 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St (south)/Diamond Hts", "tippecanoe:retain_points_multiplier_sequence": 2758 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.432585, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.781366 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.432241, 37.781502 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Turk St", "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.442198, 37.779263 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1836 }, "geometry": { "type": "Point", "coordinates": [ -122.441854, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1835 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1838 }, "geometry": { "type": "Point", "coordinates": [ -122.440138, 37.777499 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.738413 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Broderick St", "tippecanoe:retain_points_multiplier_sequence": 1837 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.777635 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3420 }, "geometry": { "type": "Point", "coordinates": [ -122.438593, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.438421, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 961 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 959 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Fulton St", "tippecanoe:retain_points_multiplier_sequence": 1114 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.441511, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.774514 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 960 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista East Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1478 }, "geometry": { "type": "Point", "coordinates": [ -122.440567, 37.770783 ] } } +{ "type": "Feature", "properties": { "name": "33 Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Baker St", "tippecanoe:retain_points_multiplier_sequence": 1476 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.770918 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Broderick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1508 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1120 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1514 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1119 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Foerster Street & Monterey Blvd", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1515 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1639 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_sequence": 1484 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.778245 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Scott St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1528 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1526 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.432070, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.431726, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1527 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_sequence": 1532 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Steiner St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.432499, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1118 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "Divisadero St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1117 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Divisadero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1485 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.771258 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2389 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_sequence": 1493 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.771597 ] } } +{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2388 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Pierce St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1492 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1494 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "Shrader St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1629 }, "geometry": { "type": "Point", "coordinates": [ -122.444601, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.768340 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3081 }, "geometry": { "type": "Point", "coordinates": [ -122.453356, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 1323 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.766440 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1482 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769629 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.724090 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 1483 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1858 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 872 }, "geometry": { "type": "Point", "coordinates": [ -122.450781, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 871 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2641 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1481 }, "geometry": { "type": "Point", "coordinates": [ -122.448463, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 874 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Frederick St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 870 }, "geometry": { "type": "Point", "coordinates": [ -122.450180, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1859 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 742 }, "geometry": { "type": "Point", "coordinates": [ -122.452927, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 741 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Stanyan St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1365 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.452841, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Louisburg St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.450953, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Stanyan St", "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1261 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Shrader St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2221 }, "geometry": { "type": "Point", "coordinates": [ -122.451296, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1860 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 3219 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.765897 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1543 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 867 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Carl St & Cole St", "tippecanoe:retain_points_multiplier_sequence": 738 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 868 }, "geometry": { "type": "Point", "coordinates": [ -122.449923, 37.765558 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1851 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } , -{ "type": "Feature", "properties": { "name": "Parnassus Ave & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.449837, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2648 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 873 }, "geometry": { "type": "Point", "coordinates": [ -122.449751, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 865 }, "geometry": { "type": "Point", "coordinates": [ -122.449493, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1622 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Alma St", "tippecanoe:retain_points_multiplier_sequence": 866 }, "geometry": { "type": "Point", "coordinates": [ -122.449408, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769968 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 2706 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2084 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Masonic Ave & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2083 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770104 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Waller St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 1322 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 3230 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Ashbury St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1321 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.767119 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Frederick St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1489 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 1490 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Central Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1480 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buena Vista West Ave", "tippecanoe:retain_points_multiplier_sequence": 1479 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.770443 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } , -{ "type": "Feature", "properties": { "name": "Frederick St & Masonic St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3063 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_sequence": 854 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Carl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 855 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Parnassus Ave", "tippecanoe:retain_points_multiplier_sequence": 860 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Piedmont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Ashbury St & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.762980 ] } } +{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2705 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Masonic Ave", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Upper Ter & Buena Vista Ave West", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2898 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "414 Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Lower Ter", "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave at Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Clifford Ter", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.442884, 37.763726 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Cole St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 289 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } , -{ "type": "Feature", "properties": { "name": "Cole St & Carmel St", "tippecanoe:retain_points_multiplier_sequence": 869 }, "geometry": { "type": "Point", "coordinates": [ -122.449064, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 506 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2291 }, "geometry": { "type": "Point", "coordinates": [ -122.452583, 37.753480 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.441940, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Marview Way & Panorama Dr", "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Belvedere St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 955 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Clayton St", "tippecanoe:retain_points_multiplier_sequence": 288 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_sequence": 1628 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Carmel St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 956 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Twin Peaks Blvd", "tippecanoe:retain_points_multiplier_sequence": 851 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.446146, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 856 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Baden St", "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Clayton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 929 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.445889, 37.758637 ] } } +{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.445202, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 509 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_sequence": 932 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 508 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.733933 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 931 }, "geometry": { "type": "Point", "coordinates": [ -122.444086, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "320 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.759926 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 686 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 940 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 691 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Mars St", "tippecanoe:retain_points_multiplier_sequence": 939 }, "geometry": { "type": "Point", "coordinates": [ -122.444258, 37.760537 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 507 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "210 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } , -{ "type": "Feature", "properties": { "name": "211 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Danvers St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 303 }, "geometry": { "type": "Point", "coordinates": [ -122.443485, 37.760266 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.433443, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 311 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 710 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Iron Aly", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 938 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.757823 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.444515, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2163 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Clayton St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.444344, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.725719 ] } } , -{ "type": "Feature", "properties": { "name": "539 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.444172, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 934 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.756466 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Graystone Ter", "tippecanoe:retain_points_multiplier_sequence": 933 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.756398 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Romain St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 942 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.755516 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "795 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754090 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } , -{ "type": "Feature", "properties": { "name": "800 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.442970, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ave E & Buena Vista Ter", "tippecanoe:retain_points_multiplier_sequence": 667 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.767729 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "BUENA VISTA TER & BUENA VISTA AVE E", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 668 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.768815 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1852 }, "geometry": { "type": "Point", "coordinates": [ -122.438679, 37.723682 ] } } , -{ "type": "Feature", "properties": { "name": "Park Hill Ave & Buena Vista East", "tippecanoe:retain_points_multiplier_sequence": 2264 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1743 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_sequence": 670 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 1742 }, "geometry": { "type": "Point", "coordinates": [ -122.439108, 37.719133 ] } } , -{ "type": "Feature", "properties": { "name": "Buena Vista Ter & Roosevelt Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 669 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Alpine Ter", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1937 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Norton St", "tippecanoe:retain_points_multiplier_sequence": 1746 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.724293 ] } } , -{ "type": "Feature", "properties": { "name": "Roosevelt Way & Museum Way", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 293 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.768951 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1735 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.767594 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726194 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce St/Noe St/Duboce Park", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3205 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3096 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.769222 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Sunset Tunnel East Portal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3248 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.769154 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.767526 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.767390 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1239 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.764269 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.762301 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.764133 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2046 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 3206 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762573 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.435074, 37.762369 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1652 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Castro St", "tippecanoe:retain_points_multiplier_sequence": 290 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.762505 ] } } +{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2063 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.807275 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.763930 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1653 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.433014, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 768 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_sequence": 935 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1654 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 936 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Ord St", "tippecanoe:retain_points_multiplier_sequence": 941 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Hattie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 308 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.760469 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1658 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.438250, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1190 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760605 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2703 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 306 }, "geometry": { "type": "Point", "coordinates": [ -122.438164, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 100 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.438078, 37.759044 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2643 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.807614 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1548 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1192 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2024 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1193 }, "geometry": { "type": "Point", "coordinates": [ -122.437906, 37.755991 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 673 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1194 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 674 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "21st St & Douglass St", "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.439022, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1195 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 676 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.801714 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1196 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.754226 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 677 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 301 }, "geometry": { "type": "Point", "coordinates": [ -122.435160, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 672 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.760808 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 671 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 302 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.760876 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1536 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.759384 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.759180 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.757755 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St NW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Collingwood St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.757687 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.757619 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2498 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.756126 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } , -{ "type": "Feature", "properties": { "name": "16th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 267 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.750562 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.474127, 37.748797 ] } } +{ "type": "Feature", "properties": { "name": "Francisco Street & Polk Street", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.474041, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 3354 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 681 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 16th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.748729 ] } } +{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 682 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.473869, 37.746965 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Rivera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.746761 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1657 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } , -{ "type": "Feature", "properties": { "name": "17th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 286 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.745132 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.470779, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2490 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Santiago St & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2651 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2491 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Santiago St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.744996 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2438 }, "geometry": { "type": "Point", "coordinates": [ -122.467690, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.798459 ] } } , -{ "type": "Feature", "properties": { "name": "Ortega St & 10th Ave", "tippecanoe:retain_points_multiplier_sequence": 2169 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Ortega St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.752733 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } , -{ "type": "Feature", "properties": { "name": "9th Ave & Ortega St", "tippecanoe:retain_points_multiplier_sequence": 222 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.752937 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 227 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Pacheco St", "tippecanoe:retain_points_multiplier_sequence": 226 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 229 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "10th Ave & Quintara St", "tippecanoe:retain_points_multiplier_sequence": 228 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Funston Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.469406, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & 12th Ave", "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.468548, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Quintara St & Cragmont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.467089, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 353 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.743300 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2753 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Taraval St & 17th Ave", "tippecanoe:retain_points_multiplier_sequence": 2752 }, "geometry": { "type": "Point", "coordinates": [ -122.473440, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 355 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St. & 17th Ave.", "tippecanoe:retain_points_multiplier_sequence": 3363 }, "geometry": { "type": "Point", "coordinates": [ -122.473526, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 256 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.743368 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Taraval St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.743164 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 257 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 2744 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.470179, 37.741535 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.475500, 37.739024 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.795678 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Vicente St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 357 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Wawona St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.737598 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 15th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.470522, 37.736512 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1897 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "15th Ave & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 258 }, "geometry": { "type": "Point", "coordinates": [ -122.470350, 37.736376 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2494 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "14th Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Forest Side Ave", "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.468805, 37.741467 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2487 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & Lenox Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.466230, 37.741196 ] } } +{ "type": "Feature", "properties": { "name": "JACKSON ST & POLK ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Leave", "tippecanoe:retain_points_multiplier_sequence": 3359 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & WEST PORTAL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3188 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740992 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2852 }, "geometry": { "type": "Point", "coordinates": [ -122.465973, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3086 }, "geometry": { "type": "Point", "coordinates": [ -122.465887, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 3015 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West portal t", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3437 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Ulloa St & West Portal Ave Arrive", "tippecanoe:retain_points_multiplier_sequence": 3358 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.465630, 37.740924 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station Inbound", "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.741128 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave&Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3438 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2698 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Station", "tippecanoe:retain_points_multiplier_sequence": 2853 }, "geometry": { "type": "Point", "coordinates": [ -122.465801, 37.740788 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.465715, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3130 }, "geometry": { "type": "Point", "coordinates": [ -122.468977, 37.738073 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.804766 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_sequence": 2973 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & 14th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2975 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Vicente St", "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2373 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.739702 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2374 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } , -{ "type": "Feature", "properties": { "name": "Vicente St & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.466574, 37.739431 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Ave & Claremont Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3141 }, "geometry": { "type": "Point", "coordinates": [ -122.465029, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Clarendon Ave", "tippecanoe:retain_points_multiplier_sequence": 2313 }, "geometry": { "type": "Point", "coordinates": [ -122.465286, 37.739567 ] } } +{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 3048 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Clarendon Woods S", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 822 }, "geometry": { "type": "Point", "coordinates": [ -122.458420, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hosp/Clarendon Hall", "tippecanoe:retain_points_multiplier_sequence": 806 }, "geometry": { "type": "Point", "coordinates": [ -122.456875, 37.749815 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Clarendon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } , -{ "type": "Feature", "properties": { "name": "Clarendon Ave & Olympia Way", "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.751647 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.454386, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp Forest Hill", "tippecanoe:retain_points_multiplier_sequence": 3215 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748390 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/opp FOREST HILL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3216 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1219 }, "geometry": { "type": "Point", "coordinates": [ -122.459021, 37.748118 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } , -{ "type": "Feature", "properties": { "name": "Forest Hill Station", "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/FOREST HILL STA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3214 }, "geometry": { "type": "Point", "coordinates": [ -122.458849, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2372 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd/Forest Hill Sta", "tippecanoe:retain_points_multiplier_sequence": 3217 }, "geometry": { "type": "Point", "coordinates": [ -122.458763, 37.747847 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2376 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } , -{ "type": "Feature", "properties": { "name": "Hospital Entr Rd/Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.458677, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2375 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/Main Hosp", "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.457132, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 769 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Vasquez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.458162, 37.746015 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Balceta Ave", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2720 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Balceta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1431 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } , -{ "type": "Feature", "properties": { "name": "LAGUNA HONDA Hospital/E Parkng Lot", "tippecanoe:retain_points_multiplier_sequence": 2449 }, "geometry": { "type": "Point", "coordinates": [ -122.454643, 37.747779 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.455330, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Hernandez Ave", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.455587, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804834 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.453871, 37.745743 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.802799 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 3006 }, "geometry": { "type": "Point", "coordinates": [ -122.454042, 37.745675 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2394 }, "geometry": { "type": "Point", "coordinates": [ -122.461081, 37.740381 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 770 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Lorenzo Ave", "tippecanoe:retain_points_multiplier_sequence": 2398 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.739906 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & San Pablo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2395 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.740245 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.799747 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Juanita Way", "tippecanoe:retain_points_multiplier_sequence": 1941 }, "geometry": { "type": "Point", "coordinates": [ -122.460051, 37.739363 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1943 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Marne Ave", "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.459192, 37.740110 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } , -{ "type": "Feature", "properties": { "name": "126 Miraloma Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Bengal Aly", "tippecanoe:retain_points_multiplier_sequence": 1940 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.737870 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.456617, 37.744182 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Idora Ave", "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.456446, 37.743978 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.800493 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Rex Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2396 }, "geometry": { "type": "Point", "coordinates": [ -122.457476, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Ulloa St", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna Honda Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.455502, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Laguna Honda Blvd", "tippecanoe:retain_points_multiplier_sequence": 2392 }, "geometry": { "type": "Point", "coordinates": [ -122.455158, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Del Sur Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2314 }, "geometry": { "type": "Point", "coordinates": [ -122.455759, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "MYRA WAY & DALEWOOD", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Dalewood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.453785, 37.736716 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.475243, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795542 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.734747 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 339 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.732779 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 340 }, "geometry": { "type": "Point", "coordinates": [ -122.474813, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.473698, 37.732032 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2482 }, "geometry": { "type": "Point", "coordinates": [ -122.473783, 37.731829 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "West Potral & Sola Blvd NW-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3473 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3284 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } , -{ "type": "Feature", "properties": { "name": "Sloat Blvd & West Portal Ave", "tippecanoe:retain_points_multiplier_sequence": 2649 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2674 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal Ave & Sloat Blvd", "tippecanoe:retain_points_multiplier_sequence": 2483 }, "geometry": { "type": "Point", "coordinates": [ -122.471981, 37.734272 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Sloat Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1636 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1256 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.471123, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 717 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } , -{ "type": "Feature", "properties": { "name": "WEST PORTAL AVE & SLOAT BLVD", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3176 }, "geometry": { "type": "Point", "coordinates": [ -122.471380, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "West Portal/Sloat/St Francis Circle", "tippecanoe:retain_points_multiplier_sequence": 2673 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & California St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3120 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 323 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.474728, 37.731150 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1200 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Eucalyptus Dr", "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.474384, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Eucalyptus Dr & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1201 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.731014 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 1635 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.731218 ] } } +{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1634 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1255 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA BLVD & SLOAT BLVD", "tippecanoe:retain_points_multiplier_sequence": 3180 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2140 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.730946 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1250 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & San Fernando Way", "tippecanoe:retain_points_multiplier_sequence": 2678 }, "geometry": { "type": "Point", "coordinates": [ -122.469835, 37.734680 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2676 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.734951 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Ana Ave", "tippecanoe:retain_points_multiplier_sequence": 2677 }, "geometry": { "type": "Point", "coordinates": [ -122.468033, 37.734815 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1254 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Saint Francis Blvd & Santa Clara Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.466402, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1249 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Santa Clara Ave & Saint Francis Blvd", "tippecanoe:retain_points_multiplier_sequence": 2584 }, "geometry": { "type": "Point", "coordinates": [ -122.466145, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Anselmo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3318 }, "geometry": { "type": "Point", "coordinates": [ -122.465544, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.795068 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3117 }, "geometry": { "type": "Point", "coordinates": [ -122.469492, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Leandro Way", "tippecanoe:retain_points_multiplier_sequence": 2151 }, "geometry": { "type": "Point", "coordinates": [ -122.469063, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.467861, 37.728366 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Aptos Ave", "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.467604, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3326 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.727280 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.727009 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1894 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Winston Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.474642, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Buckingham Way", "tippecanoe:retain_points_multiplier_sequence": 321 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.725787 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3191 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } , -{ "type": "Feature", "properties": { "name": "HOLLOWAY AVE & 19TH AVE", "tippecanoe:retain_points_multiplier_sequence": 3192 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 324 }, "geometry": { "type": "Point", "coordinates": [ -122.475328, 37.721102 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY Ave", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3090 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721238 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } , -{ "type": "Feature", "properties": { "name": "19th Avenue & Holloway St", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.721170 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & HOLLOWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.475071, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } , -{ "type": "Feature", "properties": { "name": "19TH AVE & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 325 }, "geometry": { "type": "Point", "coordinates": [ -122.474985, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Denslowe Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1551 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.411041, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 1552 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Gonzalez Dr. & Crespi Dr.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3366 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 718 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 322 }, "geometry": { "type": "Point", "coordinates": [ -122.474899, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 719 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Cardenas Ave & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 737 }, "geometry": { "type": "Point", "coordinates": [ -122.475414, 37.719066 ] } } +{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "19th Ave & Banbury Dr", "tippecanoe:retain_points_multiplier_sequence": 320 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Holloway Ave & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1550 }, "geometry": { "type": "Point", "coordinates": [ -122.471809, 37.721578 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Beverly St & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 573 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Beverly St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 983 }, "geometry": { "type": "Point", "coordinates": [ -122.471552, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Garfield St", "tippecanoe:retain_points_multiplier_sequence": 1633 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.719541 ] } } +{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cerritos Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3116 }, "geometry": { "type": "Point", "coordinates": [ -122.466745, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Westgate Dr", "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.466488, 37.727212 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Byxbee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.469749, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 3254 }, "geometry": { "type": "Point", "coordinates": [ -122.469921, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St&Vernon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3255 }, "geometry": { "type": "Point", "coordinates": [ -122.468119, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } , -{ "type": "Feature", "properties": { "name": "GARFIELD ST & VICTORIA ST", "tippecanoe:retain_points_multiplier_sequence": 3170 }, "geometry": { "type": "Point", "coordinates": [ -122.465200, 37.719745 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2664 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 987 }, "geometry": { "type": "Point", "coordinates": [ -122.465458, 37.719609 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & San Aleso Ave", "tippecanoe:retain_points_multiplier_sequence": 1886 }, "geometry": { "type": "Point", "coordinates": [ -122.464514, 37.732304 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2772 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } , -{ "type": "Feature", "properties": { "name": "Miraloma Dr & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1944 }, "geometry": { "type": "Point", "coordinates": [ -122.460823, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1540 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Ravenwood Dr", "tippecanoe:retain_points_multiplier_sequence": 3047 }, "geometry": { "type": "Point", "coordinates": [ -122.460566, 37.735290 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1533 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3045 }, "geometry": { "type": "Point", "coordinates": [ -122.459621, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.802324 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Hazelwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3046 }, "geometry": { "type": "Point", "coordinates": [ -122.459707, 37.734408 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Northgate Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1880 }, "geometry": { "type": "Point", "coordinates": [ -122.461853, 37.729996 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & El Verano Way", "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.461510, 37.730064 ] } } +{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Saint Elmo WayE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1885 }, "geometry": { "type": "Point", "coordinates": [ -122.460394, 37.730539 ] } } +{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2382 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Yerba Buena Ave & Brentwood Ave", "tippecanoe:retain_points_multiplier_sequence": 3044 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2384 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Yerba Buena Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.458506, 37.732643 ] } } +{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 760 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 2282 }, "geometry": { "type": "Point", "coordinates": [ -122.457733, 37.732236 ] } } +{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2383 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801850 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2281 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.732100 ] } } +{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2381 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Faxon Ave", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.730675 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1881 }, "geometry": { "type": "Point", "coordinates": [ -122.457304, 37.731082 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1882 }, "geometry": { "type": "Point", "coordinates": [ -122.457647, 37.730878 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.455845, 37.731285 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Valdez Ave", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.455673, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Victoria St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.464342, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Fairfield Way", "tippecanoe:retain_points_multiplier_sequence": 2137 }, "geometry": { "type": "Point", "coordinates": [ -122.464085, 37.725990 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2141 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724972 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 2722 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 3114 }, "geometry": { "type": "Point", "coordinates": [ -122.461424, 37.724904 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.463655, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.800765 ] } } , -{ "type": "Feature", "properties": { "name": "Garfield St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 984 }, "geometry": { "type": "Point", "coordinates": [ -122.463484, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Ashton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1447 }, "geometry": { "type": "Point", "coordinates": [ -122.462111, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Jules Ave", "tippecanoe:retain_points_multiplier_sequence": 1453 }, "geometry": { "type": "Point", "coordinates": [ -122.461338, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1888 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Faxon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1450 }, "geometry": { "type": "Point", "coordinates": [ -122.460136, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 1449 }, "geometry": { "type": "Point", "coordinates": [ -122.459278, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2144 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.724361 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.797170 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_sequence": 3115 }, "geometry": { "type": "Point", "coordinates": [ -122.458334, 37.724293 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1029 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.723750 ] } } +{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2770 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.723614 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2143 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2142 }, "geometry": { "type": "Point", "coordinates": [ -122.453957, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1033 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } , -{ "type": "Feature", "properties": { "name": "GRAFTON AVE & Capitol AVE", "tippecanoe:retain_points_multiplier_sequence": 3169 }, "geometry": { "type": "Point", "coordinates": [ -122.459106, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1034 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.802935 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Miramar Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1455 }, "geometry": { "type": "Point", "coordinates": [ -122.458076, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1035 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Granada Ave", "tippecanoe:retain_points_multiplier_sequence": 1451 }, "geometry": { "type": "Point", "coordinates": [ -122.457218, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2277 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Holloway Ave", "tippecanoe:retain_points_multiplier_sequence": 2278 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.721781 ] } } +{ "type": "Feature", "properties": { "name": "Pacific Ave & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.797374 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2276 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2622 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 1456 }, "geometry": { "type": "Point", "coordinates": [ -122.456274, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1036 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } , -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Grafton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.798323 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Brighton Ave", "tippecanoe:retain_points_multiplier_sequence": 1448 }, "geometry": { "type": "Point", "coordinates": [ -122.454987, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Lee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1454 }, "geometry": { "type": "Point", "coordinates": [ -122.454214, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } , -{ "type": "Feature", "properties": { "name": "Olympia Way & Dellbrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2167 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2988 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Panorama Dr & Starview Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2292 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.794661 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Aquavista Way", "tippecanoe:retain_points_multiplier_sequence": 2618 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.749951 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } , -{ "type": "Feature", "properties": { "name": "City View Way & Knollview Way", "tippecanoe:retain_points_multiplier_sequence": 1050 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Woodside Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2400 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Woodside Ave & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 3004 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2399 }, "geometry": { "type": "Point", "coordinates": [ -122.451897, 37.745336 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.745064 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Skyview Way & City View Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.748933 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "PORTOLA DR/McAteer High School", "tippecanoe:retain_points_multiplier_sequence": 2393 }, "geometry": { "type": "Point", "coordinates": [ -122.449579, 37.745947 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 773 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "PARKRIDGE DR & CRESTLINE DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2370 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.752326 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 774 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } , -{ "type": "Feature", "properties": { "name": "74 Crestline Dr", "tippecanoe:retain_points_multiplier_sequence": 958 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.751783 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.794728 ] } } , -{ "type": "Feature", "properties": { "name": "Parkridge Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2369 }, "geometry": { "type": "Point", "coordinates": [ -122.445803, 37.750426 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 713 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Hopkins Ave", "tippecanoe:retain_points_multiplier_sequence": 937 }, "geometry": { "type": "Point", "coordinates": [ -122.443829, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "925 Corbett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.443399, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "956 Corbett Ave", "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.751715 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Crestline Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 591 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.749136 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Corbett Ave & Cuesta Ct", "tippecanoe:retain_points_multiplier_sequence": 930 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1467 }, "geometry": { "type": "Point", "coordinates": [ -122.442799, 37.750833 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792083 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.442713, 37.750697 ] } } +{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Glenview Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2315 }, "geometry": { "type": "Point", "coordinates": [ -122.447948, 37.746490 ] } } +{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.791948 ] } } , -{ "type": "Feature", "properties": { "name": "Glenview Dr & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1445 }, "geometry": { "type": "Point", "coordinates": [ -122.447777, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Glenview Dr", "tippecanoe:retain_points_multiplier_sequence": 2391 }, "geometry": { "type": "Point", "coordinates": [ -122.447605, 37.746354 ] } } +{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Dawnview Way & Burnett Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.445116, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Burnett Ave & Dawnview Way", "tippecanoe:retain_points_multiplier_sequence": 3406 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "DIAMOND HEIGHTS BLVD & PORTOLA", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3171 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.746829 ] } } +{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Portola Dr & Burnett Ave", "tippecanoe:retain_points_multiplier_sequence": 2312 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.747033 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "120 Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2311 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.749001 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1472 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789031 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 852 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2038 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "Clipper St & Portola Dr", "tippecanoe:retain_points_multiplier_sequence": 853 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3194 }, "geometry": { "type": "Point", "coordinates": [ -122.443228, 37.746693 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Cameo Way", "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.443056, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Fowler Ave & Portola Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 979 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.744386 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Fowler Ave", "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.451382, 37.743503 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "100 O'Shaughnessy Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.744454 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.742621 ] } } +{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2798 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.741739 ] } } +{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Isola Way", "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.741807 ] } } +{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2486 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.740856 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.740721 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1893 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Molimo Dr", "tippecanoe:retain_points_multiplier_sequence": 1895 }, "geometry": { "type": "Point", "coordinates": [ -122.451725, 37.737734 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2485 }, "geometry": { "type": "Point", "coordinates": [ -122.450609, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Reposa Way", "tippecanoe:retain_points_multiplier_sequence": 3238 }, "geometry": { "type": "Point", "coordinates": [ -122.450523, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 720 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } , -{ "type": "Feature", "properties": { "name": "Reposa Way & Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2484 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Myra Way & Omar Way", "tippecanoe:retain_points_multiplier_sequence": 1896 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.739227 ] } } +{ "type": "Feature", "properties": { "name": "Sacramento St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.400312, 37.794186 ] } } , -{ "type": "Feature", "properties": { "name": "555 Myra Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1892 }, "geometry": { "type": "Point", "coordinates": [ -122.450695, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_sequence": 2172 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.741399 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Del Vale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2173 }, "geometry": { "type": "Point", "coordinates": [ -122.445974, 37.741060 ] } } +{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Gaviota Way", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.448034, 37.739838 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.446232, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & El Sereno Ct", "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.446060, 37.738956 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Bella Vista Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.737666 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 585 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Marietta Dr", "tippecanoe:retain_points_multiplier_sequence": 2800 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.737463 ] } } +{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } , -{ "type": "Feature", "properties": { "name": "636 Teresita Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2787 }, "geometry": { "type": "Point", "coordinates": [ -122.445631, 37.736784 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 1790 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.788488 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_sequence": 2175 }, "geometry": { "type": "Point", "coordinates": [ -122.443743, 37.736444 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } , -{ "type": "Feature", "properties": { "name": "O'Shaughnessy Blvd & Malta Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2174 }, "geometry": { "type": "Point", "coordinates": [ -122.443314, 37.736580 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.752462 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Hoffman Ave & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1549 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.752394 ] } } +{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.790320 ] } } , -{ "type": "Feature", "properties": { "name": "Fountain St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.441683, 37.750765 ] } } +{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1469 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.749272 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2766 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.749069 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.440481, 37.750969 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1761 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Hoffman Ave", "tippecanoe:retain_points_multiplier_sequence": 444 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.749340 ] } } +{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Eureka St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1197 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Eureka St", "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.437391, 37.752801 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/TERMINAL W", "tippecanoe:retain_points_multiplier_sequence": 2379 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.788963 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Douglass St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 410 }, "geometry": { "type": "Point", "coordinates": [ -122.438335, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } , -{ "type": "Feature", "properties": { "name": "Grand View Ave & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1471 }, "geometry": { "type": "Point", "coordinates": [ -122.442541, 37.748526 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 2884 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } , -{ "type": "Feature", "properties": { "name": "5157 Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.746897 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } , -{ "type": "Feature", "properties": { "name": "Duncan St & Amber Dr", "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.441425, 37.745200 ] } } +{ "type": "Feature", "properties": { "name": "BROADWAY & THE EMBARCADERO", "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.799069 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.745268 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798933 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.436533, 37.752665 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1042 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1046 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 407 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 1", "tippecanoe:retain_points_multiplier_sequence": 1041 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.797238 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1073 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.751105 ] } } +{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_sequence": 921 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.749476 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1043 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.752869 ] } } +{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1049 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.752055 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & Elizabeth St", "tippecanoe:retain_points_multiplier_sequence": 1048 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.751919 ] } } +{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "Davis St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 922 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.792626 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1044 }, "geometry": { "type": "Point", "coordinates": [ -122.434216, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 406 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.751240 ] } } +{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 991 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 3212 }, "geometry": { "type": "Point", "coordinates": [ -122.431984, 37.751376 ] } } +{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "24th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751512 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1773 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "Noe St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.751308 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.749611 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "25th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 445 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.749679 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1779 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1088 }, "geometry": { "type": "Point", "coordinates": [ -122.436190, 37.748865 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 1780 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 1089 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.748661 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1047 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.747915 ] } } +{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1032 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1083 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2629 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1084 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.747100 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.746286 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1095 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.745607 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 2721 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.745472 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.435589, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "Castro St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3225 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.748186 ] } } +{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2755 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 449 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.748051 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } , -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 454 }, "geometry": { "type": "Point", "coordinates": [ -122.431812, 37.748254 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2290 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1071 }, "geometry": { "type": "Point", "coordinates": [ -122.437820, 37.743571 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2287 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Gold Mine Dr", "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.743639 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1092 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.738209 ] } } +{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.744657 ] } } +{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.743232 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.743096 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1094 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741942 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Diamond St", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2288 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1093 }, "geometry": { "type": "Point", "coordinates": [ -122.435503, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 1091 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.741603 ] } } +{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.740178 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley Way", "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.436876, 37.738616 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 98 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.791744 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond Heights Blvd & Berkeley", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.436705, 37.738684 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1695 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Conrad St", "tippecanoe:retain_points_multiplier_sequence": 1090 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 1737 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Diamond Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2856 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Farnum St", "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.740042 ] } } +{ "type": "Feature", "properties": { "name": "TRANS BAY TERMINAL/RAMP S", "tippecanoe:retain_points_multiplier_sequence": 2380 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789641 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.434559, 37.738888 ] } } +{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2377 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738820 ] } } +{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Arbor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.738277 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_sequence": 1102 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2976 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Sussex St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1101 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.737327 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.434473, 37.736241 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } , -{ "type": "Feature", "properties": { "name": "Addison St & Digby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.739974 ] } } +{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2378 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } , -{ "type": "Feature", "properties": { "name": "Farnum St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 1220 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.738345 ] } } +{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "164 Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.432842, 37.738141 ] } } +{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Surrey St", "tippecanoe:retain_points_multiplier_sequence": 1100 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.736105 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.790388 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2793 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734340 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 1272 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.734204 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1269 }, "geometry": { "type": "Point", "coordinates": [ -122.448978, 37.733118 ] } } +{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 2986 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Mangels Ave", "tippecanoe:retain_points_multiplier_sequence": 1270 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.732983 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1883 }, "geometry": { "type": "Point", "coordinates": [ -122.453270, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Ridgewood Ave", "tippecanoe:retain_points_multiplier_sequence": 1884 }, "geometry": { "type": "Point", "coordinates": [ -122.453098, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1039 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Gennessee St", "tippecanoe:retain_points_multiplier_sequence": 1878 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1040 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1381 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } , -{ "type": "Feature", "properties": { "name": "Gennessee St & Flood Ave", "tippecanoe:retain_points_multiplier_sequence": 1380 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.729928 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1037 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.727891 ] } } +{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } , -{ "type": "Feature", "properties": { "name": "Phelan Ave & Judson Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.452326, 37.727620 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1378 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } , -{ "type": "Feature", "properties": { "name": "Judson Ave & Gennessee St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1659 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.728299 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.449150, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1038 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.792151 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1271 }, "geometry": { "type": "Point", "coordinates": [ -122.448807, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1148 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.448549, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } , -{ "type": "Feature", "properties": { "name": "Foerster St & Judson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1268 }, "geometry": { "type": "Point", "coordinates": [ -122.448721, 37.728502 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1030 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.735698 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3017 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.790795 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Foerster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.446318, 37.735494 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1031 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } , -{ "type": "Feature", "properties": { "name": "900 Teresita Blvd", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1318 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2805 }, "geometry": { "type": "Point", "coordinates": [ -122.445459, 37.734544 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrison St NW-NS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2999 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.789574 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Melrose Ave", "tippecanoe:retain_points_multiplier_sequence": 2799 }, "geometry": { "type": "Point", "coordinates": [ -122.445545, 37.734001 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_sequence": 3000 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.731625 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } , -{ "type": "Feature", "properties": { "name": "Teresita Blvd & Stillings Ave", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 495 }, "geometry": { "type": "Point", "coordinates": [ -122.377396, 37.826938 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Edna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Detroit St", "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.444000, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2249 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.726058 ] } } +{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_sequence": 216 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (North Entrance)", "tippecanoe:retain_points_multiplier_sequence": 2250 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 497 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2138 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 496 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2248 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 203 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN AVE/CCSF (South Entrance)", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue D", "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.372675, 37.824023 ] } } , -{ "type": "Feature", "properties": { "name": "PHELAN LOOP", "tippecanoe:retain_points_multiplier_sequence": 2247 }, "geometry": { "type": "Point", "coordinates": [ -122.452669, 37.723479 ] } } +{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823548 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3072 }, "geometry": { "type": "Point", "coordinates": [ -122.452412, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2135 }, "geometry": { "type": "Point", "coordinates": [ -122.451468, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 500 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1388 }, "geometry": { "type": "Point", "coordinates": [ -122.451210, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "9th St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.825175 ] } } , -{ "type": "Feature", "properties": { "name": "OCEAN AVE/CCSF Pedestrian Bridge", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.450867, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } , -{ "type": "Feature", "properties": { "name": "Grafton Ave & Harold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1452 }, "geometry": { "type": "Point", "coordinates": [ -122.453012, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2405 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } , -{ "type": "Feature", "properties": { "name": "Mt Vernon Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1889 }, "geometry": { "type": "Point", "coordinates": [ -122.451811, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.816226 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1554 }, "geometry": { "type": "Point", "coordinates": [ -122.451639, 37.719812 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 1555 }, "geometry": { "type": "Point", "coordinates": [ -122.451124, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 498 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } , -{ "type": "Feature", "properties": { "name": "Howth St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1553 }, "geometry": { "type": "Point", "coordinates": [ -122.450266, 37.721917 ] } } +{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.366323, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.450008, 37.722121 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Howth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.721985 ] } } +{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Howth St", "tippecanoe:retain_points_multiplier_sequence": 2139 }, "geometry": { "type": "Point", "coordinates": [ -122.449322, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2761 }, "geometry": { "type": "Point", "coordinates": [ -122.371044, 37.813107 ] } } , -{ "type": "Feature", "properties": { "name": "Louisburg St & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1760 }, "geometry": { "type": "Point", "coordinates": [ -122.450094, 37.720423 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 2762 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave&I-280 on-ramp NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3474 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 499 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "California Ave & Avenue M", "tippecanoe:retain_points_multiplier_sequence": 648 }, "geometry": { "type": "Point", "coordinates": [ -122.364178, 37.820768 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_sequence": 2149 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.723003 ] } } +{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1621 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3075 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.723071 ] } } +{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 2763 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.723207 ] } } +{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2764 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1384 }, "geometry": { "type": "Point", "coordinates": [ -122.447262, 37.721034 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1354 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810530 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine Level", "tippecanoe:retain_points_multiplier_sequence": 1865 }, "geometry": { "type": "Point", "coordinates": [ -122.447090, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_sequence": 1355 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1442 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1199 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3145 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720967 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -122.446833, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_sequence": 1890 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720899 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Balboa Park BART/Mezzanine level", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1891 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1006 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.446489, 37.720831 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1016 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.447519, 37.719677 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park Bart Station", "tippecanoe:retain_points_multiplier_sequence": 1385 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Starr King Way & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2246 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1443 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.446747, 37.720695 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.446918, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Niagra Ave", "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719948 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1383 }, "geometry": { "type": "Point", "coordinates": [ -122.447176, 37.719880 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2489 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave/Balboa Park BART", "tippecanoe:retain_points_multiplier_sequence": 1382 }, "geometry": { "type": "Point", "coordinates": [ -122.447004, 37.720016 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3016 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.784893 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1877 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_sequence": 3149 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "GENEVA AVE & SANA JOSE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1444 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720559 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1009 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.782519 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2566 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1010 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3150 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "CAMERON BEACH YARD", "tippecanoe:retain_points_multiplier_sequence": 3413 }, "geometry": { "type": "Point", "coordinates": [ -122.446575, 37.720627 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "SAN JOSE AVE & GENEVA AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3144 }, "geometry": { "type": "Point", "coordinates": [ -122.446661, 37.720491 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2488 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Green Yard-San Jose & Ocean", "tippecanoe:retain_points_multiplier_sequence": 3412 }, "geometry": { "type": "Point", "coordinates": [ -122.445030, 37.722732 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2440 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.444944, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 859 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.444859, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.780077 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Ocean Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3076 }, "geometry": { "type": "Point", "coordinates": [ -122.444773, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & San Jose St", "tippecanoe:retain_points_multiplier_sequence": 2150 }, "geometry": { "type": "Point", "coordinates": [ -122.444429, 37.722868 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1432 }, "geometry": { "type": "Point", "coordinates": [ -122.445374, 37.720288 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1096 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Delano Ave", "tippecanoe:retain_points_multiplier_sequence": 1389 }, "geometry": { "type": "Point", "coordinates": [ -122.445288, 37.720084 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1097 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718930 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } , -{ "type": "Feature", "properties": { "name": "Geneva Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_sequence": 1387 }, "geometry": { "type": "Point", "coordinates": [ -122.443571, 37.718726 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1099 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 579 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.735019 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1333 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Elk St", "tippecanoe:retain_points_multiplier_sequence": 576 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.734883 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1348 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1868 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1866 }, "geometry": { "type": "Point", "coordinates": [ -122.437735, 37.731693 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Congo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1870 }, "geometry": { "type": "Point", "coordinates": [ -122.442112, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1325 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3077 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.729045 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.728977 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1106 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Rosa Ave", "tippecanoe:retain_points_multiplier_sequence": 3078 }, "geometry": { "type": "Point", "coordinates": [ -122.440052, 37.728842 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1098 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Nantucket Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.440996, 37.727755 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Baden St", "tippecanoe:retain_points_multiplier_sequence": 1869 }, "geometry": { "type": "Point", "coordinates": [ -122.439880, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } , -{ "type": "Feature", "properties": { "name": "Baden St & Circular Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ -122.439537, 37.730335 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.772411 ] } } , -{ "type": "Feature", "properties": { "name": "Monterey Blvd & Acadia St", "tippecanoe:retain_points_multiplier_sequence": 1867 }, "geometry": { "type": "Point", "coordinates": [ -122.437220, 37.731489 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 805 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.731421 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Lippard Ave", "tippecanoe:retain_points_multiplier_sequence": 580 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.733797 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1336 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1087 }, "geometry": { "type": "Point", "coordinates": [ -122.433958, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.777770 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Chenery St", "tippecanoe:retain_points_multiplier_sequence": 1086 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.734476 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1334 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Castro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 777 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Chenery St & Natick St", "tippecanoe:retain_points_multiplier_sequence": 781 }, "geometry": { "type": "Point", "coordinates": [ -122.431898, 37.734612 ] } } +{ "type": "Feature", "properties": { "name": "Laguna St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 578 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733458 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "Diamond St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1085 }, "geometry": { "type": "Point", "coordinates": [ -122.434130, 37.733390 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "Bosworth St & Diamond St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 577 }, "geometry": { "type": "Point", "coordinates": [ -122.434044, 37.733593 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave/Glen Park Station", "tippecanoe:retain_points_multiplier_sequence": 1377 }, "geometry": { "type": "Point", "coordinates": [ -122.433872, 37.732372 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1788 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } , -{ "type": "Feature", "properties": { "name": "Circular Ave & Monterey Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.436962, 37.731353 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.433271, 37.729792 ] } } +{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2974 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Silver Ave & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.433186, 37.729588 ] } } +{ "type": "Feature", "properties": { "name": "Page St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.774175 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Havelock St", "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.441597, 37.726805 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1781 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3080 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725923 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725855 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1782 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.442455, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & Santa Ynez Ave", "tippecanoe:retain_points_multiplier_sequence": 3079 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.725651 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } , -{ "type": "Feature", "properties": { "name": "San Jose Ave & San Juan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.727145 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 2145 }, "geometry": { "type": "Point", "coordinates": [ -122.441339, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2146 }, "geometry": { "type": "Point", "coordinates": [ -122.441254, 37.723275 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Otsego Ave", "tippecanoe:retain_points_multiplier_sequence": 3381 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1874 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.438507, 37.723546 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } , -{ "type": "Feature", "properties": { "name": "Cayuga Ave & Onondaga Ave", "tippecanoe:retain_points_multiplier_sequence": 3092 }, "geometry": { "type": "Point", "coordinates": [ -122.439709, 37.722053 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Onondaga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2007 }, "geometry": { "type": "Point", "coordinates": [ -122.437477, 37.721306 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1872 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Italy Ave", "tippecanoe:retain_points_multiplier_sequence": 2005 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.718658 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } , -{ "type": "Feature", "properties": { "name": "Ocean Ave & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2147 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.723818 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Persia St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 3430 }, "geometry": { "type": "Point", "coordinates": [ -122.436275, 37.723343 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1019 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.435846, 37.723139 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1020 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.435760, 37.722935 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780009 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -122.434902, 37.724633 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2495 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.779670 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 858 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 627 }, "geometry": { "type": "Point", "coordinates": [ -122.434645, 37.724701 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1994 }, "geometry": { "type": "Point", "coordinates": [ -122.434816, 37.724565 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1013 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & OCEAN AVENUE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.435417, 37.723886 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1240 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783197 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2008 }, "geometry": { "type": "Point", "coordinates": [ -122.435675, 37.723411 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1014 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Francis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1999 }, "geometry": { "type": "Point", "coordinates": [ -122.433615, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1011 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 1997 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.726330 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2430 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1218 }, "geometry": { "type": "Point", "coordinates": [ -122.432156, 37.725515 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Brazil Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 630 }, "geometry": { "type": "Point", "coordinates": [ -122.433100, 37.723954 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Ruth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.722800 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.437134, 37.721442 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St&Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 2774 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.434301, 37.722392 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.432928, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Persia Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.432671, 37.721646 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } , -{ "type": "Feature", "properties": { "name": "Naples St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.432413, 37.719201 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.806326 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1251 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 1593 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.807004 ] } } +{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.806732 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Jones St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.786793 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1903 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.805580 ] } } +{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1468 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1875 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1873 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "HYDE STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1012 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1899 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1198 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1898 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.805783 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Mason St", "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1588 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.805647 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } , -{ "type": "Feature", "properties": { "name": "Jefferson St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1660 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.808292 ] } } +{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2791 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1900 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.806190 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Bay St", "tippecanoe:retain_points_multiplier_sequence": 875 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "Ellis St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.785097 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 888 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.805512 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1901 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.806054 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1015 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jefferson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3411 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2432 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_sequence": 2341 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.808021 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2431 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.807411 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1905 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2851 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3142 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.808089 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1767 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } , -{ "type": "Feature", "properties": { "name": "Beach St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1768 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Beach St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2680 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.807817 ] } } +{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 857 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.782044 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1185 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.808360 ] } } +{ "type": "Feature", "properties": { "name": "Turk St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2439 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2355 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.806665 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1765 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2356 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.806529 ] } } +{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2340 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.805715 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1766 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.806868 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2492 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 764 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1347 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1731 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801511 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2493 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 765 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Grove St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2862 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.778381 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.801375 ] } } +{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2642 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 767 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.801578 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2500 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 762 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2499 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 763 }, "geometry": { "type": "Point", "coordinates": [ -122.427864, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 761 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "SOUTH VAN NESS AVE & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1751 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1752 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 215 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "GROVE AND LARKIN", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St&Gough St SE-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3462 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.800832 ] } } +{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1335 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2865 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.798052 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1770 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2864 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1705 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2918 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.805105 ] } } +{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "MARKET ST & 12TH ST", "tippecanoe:retain_points_multiplier_sequence": 2711 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & North Point St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3329 }, "geometry": { "type": "Point", "coordinates": [ -122.425375, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2275 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave&North Point St SE-NS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3471 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1754 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "Bay Street & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3404 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.804088 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1906 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 1887 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.423487, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 213 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 2298 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774311 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2902 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.802460 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 771 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 214 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2903 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802324 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 212 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Chestnut St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 772 }, "geometry": { "type": "Point", "coordinates": [ -122.424860, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Hyde St & Fulton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1386 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1904 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.805444 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1769 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778585 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2294 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 188 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2295 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1785 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2297 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.801646 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 187 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2909 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.800493 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1703 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.777703 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2910 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1704 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2889 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.798594 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1702 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2890 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.798459 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.798662 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 186 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2306 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2885 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2307 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.798798 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 210 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.771597 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2296 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.797713 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Vallejo St", "tippecanoe:retain_points_multiplier_sequence": 2308 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 211 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1638 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1648 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 184 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1643 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1350 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_sequence": 3019 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 992 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 993 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2662 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2547 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 225 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.767526 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 1642 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 221 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2989 }, "geometry": { "type": "Point", "coordinates": [ -122.424603, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2900 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1775 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2193 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1774 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.769765 ] } } , -{ "type": "Feature", "properties": { "name": "PACIFIC AVE & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 3190 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.794932 ] } } +{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2194 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1778 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 2293 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2300 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2185 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2186 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2693 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2913 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.423143, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1793 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1656 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2904 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2659 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2310 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 241 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1650 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.794186 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 243 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2309 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 242 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2995 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1784 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } , -{ "type": "Feature", "properties": { "name": "Gough St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1446 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 808 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2519 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2520 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 821 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 244 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2552 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.791405 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2521 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2924 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 254 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2522 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 733 }, "geometry": { "type": "Point", "coordinates": [ -122.422371, 37.790388 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2523 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 816 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2548 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 284 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2304 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3134 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 265 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 722 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2131 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2923 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St &Van ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3479 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2625 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 1571 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.804766 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2626 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2136 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Chestnut St", "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.802867 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2132 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1586 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2133 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.756466 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 1585 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.801918 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 699 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.805308 ] } } +{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2134 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.805241 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.761487 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 285 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "TAYLOR STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.804562 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.760334 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 880 }, "geometry": { "type": "Point", "coordinates": [ -122.415934, 37.804223 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.801036 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2527 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2529 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2873 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2530 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.800154 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2531 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2868 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2532 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1595 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799205 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.798323 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.767119 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1596 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.797441 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2874 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.799476 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.799340 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 249 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2779 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.804359 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 247 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 878 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.803816 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2675 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "Taylor St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2778 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.803749 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 890 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & CHESTNUT ST", "tippecanoe:retain_points_multiplier_sequence": 3160 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.802799 ] } } +{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 886 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2930 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 885 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1130 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1816 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.801850 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2776 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Mason St", "tippecanoe:retain_points_multiplier_sequence": 887 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.802121 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2349 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.804969 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 253 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Francisco St", "tippecanoe:retain_points_multiplier_sequence": 2350 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.804834 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2931 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.762098 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Lombard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2353 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.802935 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1131 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 879 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.801172 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 530 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2348 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 548 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2687 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803138 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_sequence": 549 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2888 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.799883 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 547 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 1815 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 246 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.765355 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1814 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 245 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2880 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.799951 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800086 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 531 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Union St", "tippecanoe:retain_points_multiplier_sequence": 1823 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.800019 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.765558 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Green St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.799069 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Union St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 891 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 550 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2861 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.800222 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 551 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2859 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.800426 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1824 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.798187 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1812 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.797374 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1811 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.797238 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2182 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1572 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.796492 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Broadway", "tippecanoe:retain_points_multiplier_sequence": 1573 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2179 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1590 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1720 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1589 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2932 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1645 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1644 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1134 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1646 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.794389 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758976 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 813 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1135 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 533 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2183 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 534 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1647 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794864 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 535 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1425 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.794661 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1136 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1191 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 811 }, "geometry": { "type": "Point", "coordinates": [ -122.417908, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1876 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 814 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1423 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 721 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.790659 ] } } +{ "type": "Feature", "properties": { "name": "MASON ST & EDDY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3020 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 708 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 709 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 3478 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.789641 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2301 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2539 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2790 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1592 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & California St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.417479, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 704 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Powell/Market", "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784486 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.792083 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1772 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 712 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2621 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1422 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1792 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 1591 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1871 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2734 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1783 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1421 }, "geometry": { "type": "Point", "coordinates": [ -122.415333, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1762 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1763 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2180 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.795949 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.785843 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2181 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.795814 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2192 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.796017 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1699 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2191 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1789 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1655 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.795271 ] } } +{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1764 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.783401 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2992 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2928 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 820 }, "geometry": { "type": "Point", "coordinates": [ -122.412758, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1701 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2184 }, "geometry": { "type": "Point", "coordinates": [ -122.411814, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782926 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1822 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1700 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.795678 ] } } +{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1466 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.795610 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781434 ] } } , -{ "type": "Feature", "properties": { "name": "Jackson St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 1649 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.795475 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2188 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.796424 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1787 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2187 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.796560 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 2352 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1786 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1697 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794593 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786386 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2994 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2993 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 2860 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Sproule Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2550 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1698 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 815 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 817 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1696 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2540 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2848 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 705 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 732 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.784961 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 123 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 2708 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2735 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783062 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.780280 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 731 }, "geometry": { "type": "Point", "coordinates": [ -122.412329, 37.791744 ] } } +{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 714 }, "geometry": { "type": "Point", "coordinates": [ -122.410955, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1123 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2750 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2740 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.780687 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Grant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3355 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.808224 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Bay St & Midway St", "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.806122 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1124 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "North Point St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1902 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.807275 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.777296 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1395 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.807207 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1167 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.806936 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_sequence": 3097 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.806800 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1317 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Bay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3221 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.806597 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 185 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.773564 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 183 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1747 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803477 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.803409 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 529 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Filbert St", "tippecanoe:retain_points_multiplier_sequence": 2684 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 182 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803681 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "Lombard St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.803545 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.779331 ] } } , -{ "type": "Feature", "properties": { "name": "225 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2783 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 2784 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.802731 ] } } +{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2794 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "TELEGRAPH Hill Blvd & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2785 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.802596 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "COIT TOWER", "tippecanoe:retain_points_multiplier_sequence": 864 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.802664 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } , -{ "type": "Feature", "properties": { "name": "115 TELEGRAPH Hill Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2782 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.801782 ] } } +{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2690 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2416 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2887 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.800358 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2414 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773700 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Columbus Ave", "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.799273 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2415 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 881 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.799408 ] } } +{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 889 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.799137 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "Second Street & Folsom Street", "tippecanoe:retain_points_multiplier_sequence": 2867 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.785639 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2866 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.800697 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1122 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2190 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2631 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } , -{ "type": "Feature", "properties": { "name": "BROADWAY & GRANT AVE", "tippecanoe:retain_points_multiplier_sequence": 3162 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2899 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1121 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.800900 ] } } +{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.801104 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } , -{ "type": "Feature", "properties": { "name": "Union St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.800968 ] } } +{ "type": "Feature", "properties": { "name": "2nd ST & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.784283 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 876 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Broadway", "tippecanoe:retain_points_multiplier_sequence": 877 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.797645 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2178 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.796967 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 884 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.779466 ] } } , -{ "type": "Feature", "properties": { "name": "COLUMBUS AVE & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.797034 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Pacific Ave", "tippecanoe:retain_points_multiplier_sequence": 1396 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.797306 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Chestnut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1171 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 1312 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.786182 ] } } , -{ "type": "Feature", "properties": { "name": "Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3218 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.805173 ] } } +{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1184 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.805037 ] } } +{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1319 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Lombard St", "tippecanoe:retain_points_multiplier_sequence": 2558 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.803952 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2700 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Greenwich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.803003 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 2858 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Union St", "tippecanoe:retain_points_multiplier_sequence": 2563 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.801443 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Filbert St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.802189 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Greenwich St", "tippecanoe:retain_points_multiplier_sequence": 1177 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.803274 ] } } +{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1178 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.801239 ] } } +{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1045 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Green St", "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.800561 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Vallejo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2564 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.799679 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.798120 ] } } +{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.779602 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3053 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.798391 ] } } +{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2777 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 2189 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.797577 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2559 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2987 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Green St", "tippecanoe:retain_points_multiplier_sequence": 1179 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.800629 ] } } +{ "type": "Feature", "properties": { "name": "5th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.397137, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.798527 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2413 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } , -{ "type": "Feature", "properties": { "name": "Battery St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -122.400742, 37.796831 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2410 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } , -{ "type": "Feature", "properties": { "name": "Pacific Ave & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3428 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.796763 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2411 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 3455 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2412 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Pacific Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2688 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.796221 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2691 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.795339 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.777024 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2347 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2346 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1504 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2363 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2713 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2362 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_sequence": 2846 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776346 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Clay St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2681 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Stockton St", "tippecanoe:retain_points_multiplier_sequence": 819 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2551 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1505 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 1394 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.796153 ] } } +{ "type": "Feature", "properties": { "name": "4th St & Berry St", "tippecanoe:retain_points_multiplier_sequence": 2834 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.775803 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 882 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2701 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Jackson St", "tippecanoe:retain_points_multiplier_sequence": 883 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 810 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1506 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 115 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.779263 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2409 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 812 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sacramento St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1397 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2797 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & California St", "tippecanoe:retain_points_multiplier_sequence": 1392 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 2796 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 706 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 707 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.792626 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772614 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 723 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772818 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_sequence": 2345 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792219 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2981 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2344 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2022 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } , -{ "type": "Feature", "properties": { "name": "CALIFORNIA ST & POWELL ST", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2023 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL ST & CALIFORNIA ST", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 250 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2359 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2358 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 730 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.792151 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2013 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 2343 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 251 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Bush St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2342 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 255 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2743 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2364 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2541 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2360 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.788421 ] } } +{ "type": "Feature", "properties": { "name": "Townsend St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.770240 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2361 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 189 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 985 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2320 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2115 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Grant Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2116 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "POST & GRANT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3403 }, "geometry": { "type": "Point", "coordinates": [ -122.405376, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 263 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Columbus Ave & Washington St", "tippecanoe:retain_points_multiplier_sequence": 892 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.795881 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2117 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } , -{ "type": "Feature", "properties": { "name": "Washington St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.795746 ] } } +{ "type": "Feature", "properties": { "name": "16th Street & Rhode Islandi St", "tippecanoe:retain_points_multiplier_sequence": 2983 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766101 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Washington St", "tippecanoe:retain_points_multiplier_sequence": 2565 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.796085 ] } } +{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2978 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2546 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2118 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2545 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.793847 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 261 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 715 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.792762 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2877 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764812 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Clay St", "tippecanoe:retain_points_multiplier_sequence": 2557 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 260 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 716 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.792897 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 818 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2979 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 809 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.795068 ] } } +{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 264 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sacramento St", "tippecanoe:retain_points_multiplier_sequence": 2561 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 928 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2555 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 923 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.762233 ] } } , -{ "type": "Feature", "properties": { "name": "California St & SANSOME ST", "tippecanoe:retain_points_multiplier_sequence": 726 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2556 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2014 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 725 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 536 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.793304 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2542 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Battery St", "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 537 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Bush St", "tippecanoe:retain_points_multiplier_sequence": 1391 }, "geometry": { "type": "Point", "coordinates": [ -122.404003, 37.790998 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 538 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 539 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 1398 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.789777 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 540 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } , -{ "type": "Feature", "properties": { "name": "Kearny St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1393 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 2318 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.789031 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.757212 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2062 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Pine St", "tippecanoe:retain_points_multiplier_sequence": 2560 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2071 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2261 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.792287 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 360 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Sansome St", "tippecanoe:retain_points_multiplier_sequence": 3235 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2543 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2745 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2119 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Sansome St & Sutter St", "tippecanoe:retain_points_multiplier_sequence": 2562 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.790320 ] } } +{ "type": "Feature", "properties": { "name": "Vermont St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2544 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Bush St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 336 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "BUSH ST & Battery St", "tippecanoe:retain_points_multiplier_sequence": 3165 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 332 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Battery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2040 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 333 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 1st St", "tippecanoe:retain_points_multiplier_sequence": 3213 }, "geometry": { "type": "Point", "coordinates": [ -122.399197, 37.790930 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2025 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } , -{ "type": "Feature", "properties": { "name": "2ND ST & MARKET ST", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 924 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sansome St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2065 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.790184 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 925 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.759655 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Market St", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.789099 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2223 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.788624 ] } } +{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2222 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Stevenson St", "tippecanoe:retain_points_multiplier_sequence": 3344 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.788285 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } , -{ "type": "Feature", "properties": { "name": "Broadway & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.799001 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.756873 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_sequence": 1168 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.799544 ] } } +{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 2114 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO & BROADWAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1169 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.798933 ] } } +{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 358 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_sequence": 1183 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.797781 ] } } +{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Pier 5", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1182 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.797848 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 359 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1187 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.797102 ] } } +{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } , -{ "type": "Feature", "properties": { "name": "Clay St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 807 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.795407 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 926 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.757416 ] } } , -{ "type": "Feature", "properties": { "name": "Sacramento St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 654 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 347 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2589 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757212 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2263 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.792490 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.755923 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } , -{ "type": "Feature", "properties": { "name": "Davis St & California St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3352 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 927 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } , -{ "type": "Feature", "properties": { "name": "Pine St & Davis St", "tippecanoe:retain_points_multiplier_sequence": 2262 }, "geometry": { "type": "Point", "coordinates": [ -122.397738, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2590 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Davis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3229 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2658 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } , -{ "type": "Feature", "properties": { "name": "Drumm St & California St", "tippecanoe:retain_points_multiplier_sequence": 1132 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793982 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 698 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Main St", "tippecanoe:retain_points_multiplier_sequence": 2060 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.792965 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 266 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762573 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & BEALE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & DRUMM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.793168 ] } } +{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2048 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2982 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Drumm St", "tippecanoe:retain_points_multiplier_sequence": 2049 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.793508 ] } } +{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2980 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1188 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.796695 ] } } +{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Washington St", "tippecanoe:retain_points_multiplier_sequence": 1189 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.796356 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2795 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } , -{ "type": "Feature", "properties": { "name": "THE EMBARCADERO/Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1176 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.795135 ] } } +{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3060 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.795000 ] } } +{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 105 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Ferry Building", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3220 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.794796 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 103 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & SPEAR ST", "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 104 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } , -{ "type": "Feature", "properties": { "name": "SPEAR ST & MARKET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3161 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.793643 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 102 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } , -{ "type": "Feature", "properties": { "name": "Spear St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.793575 ] } } +{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2635 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3193 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2832 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Steuart St", "tippecanoe:retain_points_multiplier_sequence": 2068 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_sequence": 2717 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2385 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Mariposa St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2833 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.764201 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 106 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } , -{ "type": "Feature", "properties": { "name": "EMBARCADERO & ST", "tippecanoe:retain_points_multiplier_sequence": 3202 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.794525 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 107 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1797 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.792558 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2881 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.761351 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Market St", "tippecanoe:retain_points_multiplier_sequence": 2672 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.794457 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2668 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.794118 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 330 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } , -{ "type": "Feature", "properties": { "name": "MUNI METRO TNL & DRUMM ST", "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.794254 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1690 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1331 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.794050 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1691 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.760130 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart & Donchee Way", "tippecanoe:retain_points_multiplier_sequence": 3492 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 334 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2667 }, "geometry": { "type": "Point", "coordinates": [ -122.393703, 37.793711 ] } } +{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 335 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } , -{ "type": "Feature", "properties": { "name": "Don Chee Way/Steuart St", "tippecanoe:retain_points_multiplier_sequence": 1332 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793915 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1692 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2666 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.793440 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2402 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2671 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2669 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793236 ] } } +{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 483 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2670 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.793372 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 361 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754837 ] } } , -{ "type": "Feature", "properties": { "name": "MISSION ST & STEUART STREET S-MB/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3398 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.793033 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2591 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Front & Market St", "tippecanoe:retain_points_multiplier_sequence": 3490 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.791880 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Front St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2050 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791948 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Market St", "tippecanoe:retain_points_multiplier_sequence": 1330 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.791676 ] } } +{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2882 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2883 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Fremont St", "tippecanoe:retain_points_multiplier_sequence": 2000 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.790116 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1693 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.789370 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 351 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Natoma St", "tippecanoe:retain_points_multiplier_sequence": 3322 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.789234 ] } } +{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1694 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } , -{ "type": "Feature", "properties": { "name": "TRANSBAY TERMINAL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2780 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.789506 ] } } +{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 920 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } , -{ "type": "Feature", "properties": { "name": "1st St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.788556 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 348 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Main", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3491 }, "geometry": { "type": "Point", "coordinates": [ -122.395506, 37.791541 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2696 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1796 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.792015 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 108 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } , -{ "type": "Feature", "properties": { "name": "Mission & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3441 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.791812 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2712 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Beale St", "tippecanoe:retain_points_multiplier_sequence": 1991 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.791134 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Spear St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2016 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 349 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1795 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.790862 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_sequence": 350 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } , -{ "type": "Feature", "properties": { "name": "Transbay Temporary Terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2781 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3373 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "3rd ST & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2863 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758094 ] } } , -{ "type": "Feature", "properties": { "name": "Main St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1794 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 109 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } , -{ "type": "Feature", "properties": { "name": "Main St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3371 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.790523 ] } } +{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 345 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1328 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.789981 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2869 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1329 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 2872 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1327 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.789167 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 110 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 3453 }, "geometry": { "type": "Point", "coordinates": [ -122.394476, 37.789913 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 111 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3364 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2718 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_sequence": 3365 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.789845 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Howard St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3370 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 378 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } , -{ "type": "Feature", "properties": { "name": "Fremont St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1326 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.788217 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 377 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1181 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.793779 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 363 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "Steuart St&Mission St", "tippecanoe:retain_points_multiplier_sequence": 3227 }, "geometry": { "type": "Point", "coordinates": [ -122.393188, 37.793101 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 700 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } , -{ "type": "Feature", "properties": { "name": "Tunnel entry-not a stop-use Folsom Stn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Howard St", "tippecanoe:retain_points_multiplier_sequence": 1180 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792694 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 1817 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.746693 ] } } , -{ "type": "Feature", "properties": { "name": "Hward St&Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3400 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.791337 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1818 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & Spear St", "tippecanoe:retain_points_multiplier_sequence": 1570 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.791202 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 1819 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Not a public stop - Use Howard/Spear", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1569 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.792422 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 701 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1568 }, "geometry": { "type": "Point", "coordinates": [ -122.391129, 37.792355 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 702 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.746761 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Main St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1305 }, "geometry": { "type": "Point", "coordinates": [ -122.391901, 37.789302 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Beale St. & Folsom St.", "tippecanoe:retain_points_multiplier_sequence": 3369 }, "geometry": { "type": "Point", "coordinates": [ -122.393103, 37.788828 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "FOLSOM & BEALE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3487 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2534 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.751851 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1172 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.791066 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1820 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1174 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.790727 ] } } +{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1821 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 1175 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.790591 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1173 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.790455 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & The Embarcadero", "tippecanoe:retain_points_multiplier_sequence": 1502 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.789438 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2660 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero&Harrsion St NE-FS/PS", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3468 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.789709 ] } } +{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2661 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 3137 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3294 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.789574 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 415 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Mason Ct", "tippecanoe:retain_points_multiplier_sequence": 1474 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.828158 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 2792 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & Bayside Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1473 }, "geometry": { "type": "Point", "coordinates": [ -122.375250, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2620 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } , -{ "type": "Feature", "properties": { "name": "Gateview Ave & North Point St", "tippecanoe:retain_points_multiplier_sequence": 1475 }, "geometry": { "type": "Point", "coordinates": [ -122.373447, 37.829853 ] } } +{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 703 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742214 ] } } , -{ "type": "Feature", "properties": { "name": "13th St & Gateview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 240 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828430 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 13th St", "tippecanoe:retain_points_multiplier_sequence": 3349 }, "geometry": { "type": "Point", "coordinates": [ -122.371988, 37.828294 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_sequence": 101 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & Halibut Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.375679, 37.824497 ] } } +{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 505 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "AVENUE B & Gateview AVE", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.375422, 37.824158 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 688 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736444 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue B & 9th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3052 }, "geometry": { "type": "Point", "coordinates": [ -122.374992, 37.823277 ] } } +{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 223 }, "geometry": { "type": "Point", "coordinates": [ -122.374306, 37.823413 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 690 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "9th St. & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3361 }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.823548 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 689 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "9th St & Avenue E", "tippecanoe:retain_points_multiplier_sequence": 224 }, "geometry": { "type": "Point", "coordinates": [ -122.371473, 37.824565 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 684 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 13th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.829243 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 685 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 10th St", "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.368298, 37.827277 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3348 }, "geometry": { "type": "Point", "coordinates": [ -122.369928, 37.825243 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 417 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 6th St", "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.368898, 37.823616 ] } } +{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 8th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.366924, 37.825311 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1734 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "TREASURE ISLAND RD/GUARD STATION", "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.371817, 37.816022 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.740992 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue D", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 735 }, "geometry": { "type": "Point", "coordinates": [ -122.369499, 37.818531 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3347 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.822396 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1725 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.367783, 37.821921 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_sequence": 692 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue H & California St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.366409, 37.819955 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 693 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue H", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 736 }, "geometry": { "type": "Point", "coordinates": [ -122.366152, 37.819887 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 687 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "California St & Avenue C", "tippecanoe:retain_points_multiplier_sequence": 734 }, "geometry": { "type": "Point", "coordinates": [ -122.370100, 37.818328 ] } } +{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Treasure Island Rd & Macalla Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3324 }, "geometry": { "type": "Point", "coordinates": [ -122.371130, 37.813039 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_sequence": 2170 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Treasure Island Rd", "tippecanoe:retain_points_multiplier_sequence": 1863 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813242 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2171 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Treasure Island Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3207 }, "geometry": { "type": "Point", "coordinates": [ -122.370872, 37.813174 ] } } +{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla St & Nimitz Dr", "tippecanoe:retain_points_multiplier_sequence": 1862 }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1730 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd & Nimitz Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3208 }, "geometry": { "type": "Point", "coordinates": [ -122.369585, 37.811818 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1729 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Avenue M & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.822260 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1741 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "62 Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1861 }, "geometry": { "type": "Point", "coordinates": [ -122.364864, 37.812022 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 1740 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } , -{ "type": "Feature", "properties": { "name": "Macalla Rd/Bldg 240", "tippecanoe:retain_points_multiplier_sequence": 3209 }, "geometry": { "type": "Point", "coordinates": [ -122.364521, 37.811886 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 804 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } , -{ "type": "Feature", "properties": { "name": "Northgate Rd & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.363749, 37.811683 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "North Gate Rd and Macalla Rd", "tippecanoe:retain_points_multiplier_sequence": 3210 }, "geometry": { "type": "Point", "coordinates": [ -122.364264, 37.811344 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2533 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Hillcrest St & Macalla St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1544 }, "geometry": { "type": "Point", "coordinates": [ -122.363405, 37.810394 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 380 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 2729 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 381 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2730 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1362 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1721 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2738 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2535 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2739 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "25TH ST & MISSION ST", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2741 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1722 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 2317 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 379 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1028 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2933 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 2319 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.785911 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.781909 ] } } +{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2929 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Buchanan St", "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2536 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.782044 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 2538 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.747983 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2537 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2401 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 2901 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1023 }, "geometry": { "type": "Point", "coordinates": [ -122.425117, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1723 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2925 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2886 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1749 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2926 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1748 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2322 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1022 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1736 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2908 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 666 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2907 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 369 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 3481 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1138 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2162 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1137 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2922 }, "geometry": { "type": "Point", "coordinates": [ -122.421255, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2921 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1139 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.750969 ] } } , -{ "type": "Feature", "properties": { "name": "VAN NESS AVE & OFARRELL ST", "tippecanoe:retain_points_multiplier_sequence": 3429 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1140 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.782383 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1141 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "808 McAllister St", "tippecanoe:retain_points_multiplier_sequence": 1833 }, "geometry": { "type": "Point", "coordinates": [ -122.425547, 37.779466 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2788 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.779670 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1845 }, "geometry": { "type": "Point", "coordinates": [ -122.423658, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1142 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2905 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.783197 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 664 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 2906 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.782519 ] } } +{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2847 }, "geometry": { "type": "Point", "coordinates": [ -122.421083, 37.781976 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1143 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 982 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.780959 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1150 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.745200 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_sequence": 1856 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1857 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.778856 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 665 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1241 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1516 }, "geometry": { "type": "Point", "coordinates": [ -122.431555, 37.775871 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 661 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.748390 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1244 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 663 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Hayes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1245 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.775600 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1724 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1517 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.775803 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Webster St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1535 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.776007 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1850 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1849 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1461 }, "geometry": { "type": "Point", "coordinates": [ -122.426319, 37.777363 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.744114 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1509 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } , -{ "type": "Feature", "properties": { "name": "Laguna St & Hayes St", "tippecanoe:retain_points_multiplier_sequence": 1733 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.776753 ] } } +{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1252 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1844 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Oak St", "tippecanoe:retain_points_multiplier_sequence": 1253 }, "geometry": { "type": "Point", "coordinates": [ -122.430868, 37.773768 ] } } +{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 504 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1242 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772207 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_sequence": 3380 }, "geometry": { "type": "Point", "coordinates": [ -122.430525, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Haight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1243 }, "geometry": { "type": "Point", "coordinates": [ -122.430353, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1144 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1486 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.772072 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1145 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Buchanan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1477 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.772614 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2749 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "785 Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1832 }, "geometry": { "type": "Point", "coordinates": [ -122.425203, 37.779399 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1521 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1149 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1519 }, "geometry": { "type": "Point", "coordinates": [ -122.423315, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Fell St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.423058, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1843 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Franklin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1518 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1842 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } , -{ "type": "Feature", "properties": { "name": "Oak St & Franklin St", "tippecanoe:retain_points_multiplier_sequence": 2125 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 695 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2196 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 694 }, "geometry": { "type": "Point", "coordinates": [ -122.430182, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Octavia St", "tippecanoe:retain_points_multiplier_sequence": 1491 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 514 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Octavia Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3315 }, "geometry": { "type": "Point", "coordinates": [ -122.423830, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 512 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Laguna St", "tippecanoe:retain_points_multiplier_sequence": 1488 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.772750 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 511 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Laguna St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2059 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.770986 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Marsily St", "tippecanoe:retain_points_multiplier_sequence": 510 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "Page St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 2195 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1726 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1487 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 513 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } , -{ "type": "Feature", "properties": { "name": "Haight St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 3439 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1732 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2051 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2130 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Mccoppin St", "tippecanoe:retain_points_multiplier_sequence": 2966 }, "geometry": { "type": "Point", "coordinates": [ -122.422628, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 1755 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Gough St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2052 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "Mccoppin St & Gough St", "tippecanoe:retain_points_multiplier_sequence": 1864 }, "geometry": { "type": "Point", "coordinates": [ -122.420826, 37.771800 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1753 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Sutter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2305 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2742 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2419 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2303 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2420 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Post St", "tippecanoe:retain_points_multiplier_sequence": 2302 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.786928 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 2854 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Sutter St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2736 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2233 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1026 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Murray St", "tippecanoe:retain_points_multiplier_sequence": 1745 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1361 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1750 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 2299 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.785029 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 826 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.417994, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Leese St", "tippecanoe:retain_points_multiplier_sequence": 830 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.735223 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2316 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.787064 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 823 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1024 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2403 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2236 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 2733 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1164 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.782994 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 554 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1165 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Excelsior Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1072 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.724022 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Turk St", "tippecanoe:retain_points_multiplier_sequence": 2927 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 494 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1160 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1939 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 2841 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1938 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2915 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.780213 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1855 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 553 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 981 }, "geometry": { "type": "Point", "coordinates": [ -122.418337, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 552 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.721646 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_sequence": 1853 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.780280 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 493 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Polk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1854 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.780145 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1153 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.783333 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1154 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.721238 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2836 }, "geometry": { "type": "Point", "coordinates": [ -122.417221, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Golden Gate Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.781705 ] } } +{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1151 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 557 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Turk St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1594 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.417393, 37.780484 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1942 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Mcallister St", "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.780552 ] } } +{ "type": "Feature", "properties": { "name": "Athens St & Avalon Ave", "tippecanoe:retain_points_multiplier_sequence": 492 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.724633 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.415848, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 501 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1081 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } , -{ "type": "Feature", "properties": { "name": "Hyde St & Mcallister St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1587 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1080 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.725583 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Post St", "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.787335 ] } } +{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2756 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1027 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 1424 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.786453 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Post St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.787810 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 2404 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "Jones St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.786860 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 831 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Leavenworth St & O'Farrell St", "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Arnold Ave", "tippecanoe:retain_points_multiplier_sequence": 825 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2159 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.785572 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 834 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1166 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 832 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_sequence": 472 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Jones St", "tippecanoe:retain_points_multiplier_sequence": 1152 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 824 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "Post St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2321 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 1360 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.786996 ] } } +{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1070 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Geary Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3384 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.787200 ] } } +{ "type": "Feature", "properties": { "name": "909 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1069 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.732847 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2160 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2630 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3245 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.786114 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 471 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St&Taylor St", "tippecanoe:retain_points_multiplier_sequence": 3234 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.785843 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Taylor St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1163 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.729045 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 1155 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.783672 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Leavenworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2837 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 827 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Golden Gate Ave & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 980 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.781637 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 829 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "Turk St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2835 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1146 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Leavenworth St", "tippecanoe:retain_points_multiplier_sequence": 3379 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.780891 ] } } +{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1147 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Mcallister St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1834 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.781095 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 828 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St N", "tippecanoe:retain_points_multiplier_sequence": 3317 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2914 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2034 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2035 }, "geometry": { "type": "Point", "coordinates": [ -122.412586, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 833 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2032 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 2235 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Taylor St", "tippecanoe:retain_points_multiplier_sequence": 2069 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.782316 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2234 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } , -{ "type": "Feature", "properties": { "name": "McAllister St & Jones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3351 }, "geometry": { "type": "Point", "coordinates": [ -122.412157, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1082 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 2033 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.781298 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2911 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1079 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 1534 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1078 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } , -{ "type": "Feature", "properties": { "name": "Grove St & Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.778177 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1077 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Grove St", "tippecanoe:retain_points_multiplier_sequence": 2912 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.777838 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1075 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Polk St & Lech Walesa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3073 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.778042 ] } } +{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_sequence": 1076 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_sequence": 2920 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2478 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Oak St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2919 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.726466 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 3068 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775192 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2916 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775328 ] } } +{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2477 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2070 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2481 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } , -{ "type": "Feature", "properties": { "name": "11th St/btw Market & Mission", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3310 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.411470, 37.722935 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_sequence": 238 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 239 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.775396 ] } } +{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Larkin St & Grove St", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } , -{ "type": "Feature", "properties": { "name": "Hayes St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1520 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.777703 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Colby St", "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.411556, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_sequence": 2058 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1583 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Larkin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2057 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.777567 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1584 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 9th St", "tippecanoe:retain_points_multiplier_sequence": 2036 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 541 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.775939 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 542 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 2067 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 362 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3482 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774989 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "MARKET ST & VAN NESS AVE", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "S. Van Ness Ave. & Market St.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3368 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.774921 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.749679 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2652 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 546 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3233 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 376 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } , -{ "type": "Feature", "properties": { "name": "150 Otis St", "tippecanoe:retain_points_multiplier_sequence": 2176 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.770715 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } , -{ "type": "Feature", "properties": { "name": "Otis St & 12th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2177 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 236 }, "geometry": { "type": "Point", "coordinates": [ -122.417307, 37.774582 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.417135, 37.774243 ] } } +{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2020 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 237 }, "geometry": { "type": "Point", "coordinates": [ -122.416878, 37.774039 ] } } +{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 662 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.748458 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 234 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.773361 ] } } +{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 558 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 235 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3316 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778788 ] } } +{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "8TH St AND MARKET St", "tippecanoe:retain_points_multiplier_sequence": 3399 }, "geometry": { "type": "Point", "coordinates": [ -122.414732, 37.778585 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 208 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Hyde St", "tippecanoe:retain_points_multiplier_sequence": 2054 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.779127 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 565 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 8th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 516 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 207 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.777228 ] } } +{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 515 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.776481 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1961 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.742892 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 198 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.779195 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2636 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 3132 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.779331 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 564 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } , -{ "type": "Feature", "properties": { "name": "8th St&Howard", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3401 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Cortland Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2789 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 231 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.772139 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 559 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 1283 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 11th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1282 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 232 }, "geometry": { "type": "Point", "coordinates": [ -122.412672, 37.770850 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1402 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1281 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.773903 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2637 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 206 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.774785 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 1846 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1537 }, "geometry": { "type": "Point", "coordinates": [ -122.429924, 37.770308 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2407 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Hermann St & Fillmore St", "tippecanoe:retain_points_multiplier_sequence": 1538 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.770240 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2406 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Fillmore St & Deboce Ave temp bus terminal", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3483 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2408 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St", "tippecanoe:retain_points_multiplier_sequence": 1133 }, "geometry": { "type": "Point", "coordinates": [ -122.429409, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Elmira St", "tippecanoe:retain_points_multiplier_sequence": 1403 }, "geometry": { "type": "Point", "coordinates": [ -122.403746, 37.738820 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 799 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1405 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Ave & Church St - Ramp", "tippecanoe:retain_points_multiplier_sequence": 3148 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.769493 ] } } +{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1404 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 800 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2244 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 3095 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.769290 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2593 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.752258 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & SANCHEZ ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 252 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.767662 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2592 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 248 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 801 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 3246 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 395 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2043 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767254 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2041 }, "geometry": { "type": "Point", "coordinates": [ -122.429066, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } , -{ "type": "Feature", "properties": { "name": "Duboce Portal/Not a stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1054 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.769426 ] } } +{ "type": "Feature", "properties": { "name": "26th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 405 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.751105 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 2047 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.768883 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1057 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 802 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Church St", "tippecanoe:retain_points_multiplier_sequence": 2042 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 803 }, "geometry": { "type": "Point", "coordinates": [ -122.428894, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 396 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "Sanchez St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2650 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 2870 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2037 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 3129 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.765626 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1067 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2066 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 2871 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 787 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 112 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3493 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.764473 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 118 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.750426 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 788 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.764405 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1465 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 269 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1464 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 271 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1923 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 270 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1922 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 287 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.762776 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2241 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2053 }, "geometry": { "type": "Point", "coordinates": [ -122.424946, 37.770579 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_sequence": 2964 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.769833 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & Duboce Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2963 }, "geometry": { "type": "Point", "coordinates": [ -122.422285, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 2942 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1951 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2943 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.736105 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 273 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1066 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 272 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 2773 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2944 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1463 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2945 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1065 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 282 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1064 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2946 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.764608 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2947 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.763387 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2714 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 315 }, "geometry": { "type": "Point", "coordinates": [ -122.430696, 37.761080 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 122 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742689 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 314 }, "geometry": { "type": "Point", "coordinates": [ -122.430439, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 789 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 125 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 300 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761351 ] } } +{ "type": "Feature", "properties": { "name": "Jerrold Ave & Phelps St", "tippecanoe:retain_points_multiplier_sequence": 1462 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2473 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.761216 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.426233, 37.761487 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3056 }, "geometry": { "type": "Point", "coordinates": [ -122.428293, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2828 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/20th St", "tippecanoe:retain_points_multiplier_sequence": 2474 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.758298 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737530 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3057 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2829 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_sequence": 2479 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/Liberty St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2480 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.757212 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/21st St", "tippecanoe:retain_points_multiplier_sequence": 2475 }, "geometry": { "type": "Point", "coordinates": [ -122.426920, 37.756669 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Church St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 790 }, "geometry": { "type": "Point", "coordinates": [ -122.427692, 37.754769 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } , -{ "type": "Feature", "properties": { "name": "Right Of Way/22nd St", "tippecanoe:retain_points_multiplier_sequence": 2476 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.754633 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2845 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 305 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1366 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740313 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 307 }, "geometry": { "type": "Point", "coordinates": [ -122.423916, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 126 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 318 }, "geometry": { "type": "Point", "coordinates": [ -122.421770, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 2984 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2948 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.762030 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 319 }, "geometry": { "type": "Point", "coordinates": [ -122.421427, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Kirkwood Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2949 }, "geometry": { "type": "Point", "coordinates": [ -122.421684, 37.761419 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2950 }, "geometry": { "type": "Point", "coordinates": [ -122.421513, 37.759859 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2844 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.758230 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Boutwell St", "tippecanoe:retain_points_multiplier_sequence": 561 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.734883 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2951 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 560 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2953 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.757144 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2245 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2954 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.755583 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 2955 }, "geometry": { "type": "Point", "coordinates": [ -122.420998, 37.755041 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Charter Oak Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2957 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Valencia St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2956 }, "geometry": { "type": "Point", "coordinates": [ -122.420740, 37.753615 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1966 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.768611 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1967 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "14th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3389 }, "geometry": { "type": "Point", "coordinates": [ -122.419796, 37.768204 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } , -{ "type": "Feature", "properties": { "name": "15th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 259 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.766712 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2215 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1284 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Burrows St & Girard St M.L. King School", "tippecanoe:retain_points_multiplier_sequence": 3018 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 14th St", "tippecanoe:retain_points_multiplier_sequence": 1285 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1968 }, "geometry": { "type": "Point", "coordinates": [ -122.419882, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 502 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave & Ledyard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.734136 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 276 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_sequence": 2775 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 283 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.765151 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 523 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 3112 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "Thornton Dr&Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 2977 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 522 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness &16th St", "tippecanoe:retain_points_multiplier_sequence": 3387 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 563 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "16 th St & South Van Ness", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3397 }, "geometry": { "type": "Point", "coordinates": [ -122.417650, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & South Van Ness", "tippecanoe:retain_points_multiplier_sequence": 3390 }, "geometry": { "type": "Point", "coordinates": [ -122.417564, 37.765083 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3224 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765423 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_sequence": 280 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765355 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Shotwell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 281 }, "geometry": { "type": "Point", "coordinates": [ -122.416019, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1286 }, "geometry": { "type": "Point", "coordinates": [ -122.415419, 37.765219 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1287 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.763862 ] } } +{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 233 }, "geometry": { "type": "Point", "coordinates": [ -122.412243, 37.770376 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 1356 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726262 ] } } , -{ "type": "Feature", "properties": { "name": "11th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 230 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.769833 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1357 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 11th St", "tippecanoe:retain_points_multiplier_sequence": 602 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Division St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 623 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.769086 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1358 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 1125 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.769358 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.723479 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 622 }, "geometry": { "type": "Point", "coordinates": [ -122.410784, 37.768069 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 621 }, "geometry": { "type": "Point", "coordinates": [ -122.410698, 37.768476 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 274 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1288 }, "geometry": { "type": "Point", "coordinates": [ -122.414904, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 604 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.765287 ] } } +{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 503 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 603 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.765490 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1576 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 268 }, "geometry": { "type": "Point", "coordinates": [ -122.409840, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1575 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.719609 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 605 }, "geometry": { "type": "Point", "coordinates": [ -122.410269, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1578 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 606 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.763998 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1577 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 624 }, "geometry": { "type": "Point", "coordinates": [ -122.410355, 37.763116 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1582 }, "geometry": { "type": "Point", "coordinates": [ -122.405119, 37.720423 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 310 }, "geometry": { "type": "Point", "coordinates": [ -122.419538, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2220 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.419453, 37.761758 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2219 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.760673 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1974 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.759791 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1975 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 18 th St", "tippecanoe:retain_points_multiplier_sequence": 3396 }, "geometry": { "type": "Point", "coordinates": [ -122.417049, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2990 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3391 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.758909 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3395 }, "geometry": { "type": "Point", "coordinates": [ -122.416792, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1574 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1976 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.756601 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.418680, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1581 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1979 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2216 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3392 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2217 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.719066 ] } } , -{ "type": "Feature", "properties": { "name": "South Van Ness & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3394 }, "geometry": { "type": "Point", "coordinates": [ -122.416449, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2417 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1289 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 524 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 1290 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758976 ] } } +{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_sequence": 2418 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1291 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.758841 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2112 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 20St", "tippecanoe:retain_points_multiplier_sequence": 3426 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.758773 ] } } +{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2113 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 607 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.761894 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 608 }, "geometry": { "type": "Point", "coordinates": [ -122.410011, 37.761691 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 609 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.760401 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1673 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 610 }, "geometry": { "type": "Point", "coordinates": [ -122.409925, 37.759316 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1672 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.414303, 37.755923 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2640 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 1293 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.755448 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2639 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1353 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2843 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2351 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.787267 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & O'Farrell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2357 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Powell St", "tippecanoe:retain_points_multiplier_sequence": 2161 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "ELLIS ST & MASON ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3185 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.785368 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1907 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } , -{ "type": "Feature", "properties": { "name": "Mason St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 1813 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.785097 ] } } +{ "type": "Feature", "properties": { "name": "Third Street at Palou Ave SE", "tippecanoe:retain_points_multiplier_sequence": 2716 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Mason St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1157 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1908 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } , -{ "type": "Feature", "properties": { "name": "Mason & Turk", "tippecanoe:retain_points_multiplier_sequence": 3484 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 114 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Eddy St & Cyril Magnin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3237 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.784418 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 2839 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_sequence": 3240 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2842 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Eddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 518 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.784486 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2152 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } , -{ "type": "Feature", "properties": { "name": "Ellis street & Powell street", "tippecanoe:retain_points_multiplier_sequence": 3452 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.785436 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 2638 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.734476 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE OUT OB", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Powell St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2354 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL & MARKET TURNTABLE", "tippecanoe:retain_points_multiplier_sequence": 3244 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2154 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Lane St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "POWELL STREET TURNABLE IN IB", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.784758 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 1916 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2039 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.392845, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2031 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.783876 ] } } +{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2719 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Cyril Magnin St & Market St", "tippecanoe:retain_points_multiplier_sequence": 3051 }, "geometry": { "type": "Point", "coordinates": [ -122.408037, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Powell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2064 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.784690 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Geary Blvd", "tippecanoe:retain_points_multiplier_sequence": 2685 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Stockton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1359 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.787674 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2516 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } , -{ "type": "Feature", "properties": { "name": "O'Farrell St & Grant Ave", "tippecanoe:retain_points_multiplier_sequence": 2155 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.786657 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2028 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2515 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "Stockton St & Ellis St", "tippecanoe:retain_points_multiplier_sequence": 2683 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2849 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2030 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 116 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2029 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.785639 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Market St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 176 }, "geometry": { "type": "Point", "coordinates": [ -122.405634, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 117 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1956 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 120 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & Mission ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3182 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 121 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Mason St", "tippecanoe:retain_points_multiplier_sequence": 2061 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2991 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } , -{ "type": "Feature", "properties": { "name": "5th St &Stevenson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3386 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.783469 ] } } +{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & Mary St", "tippecanoe:retain_points_multiplier_sequence": 3285 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.782112 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1960 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.780755 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2840 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1959 }, "geometry": { "type": "Point", "coordinates": [ -122.408295, 37.781162 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2808 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 181 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782790 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 2830 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1958 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1957 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.782587 ] } } +{ "type": "Feature", "properties": { "name": "PAUL AVE & CARR ST", "tippecanoe:retain_points_multiplier_sequence": 2715 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "Jessie St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1667 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 180 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.781230 ] } } +{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } , -{ "type": "Feature", "properties": { "name": "Geary Blvd & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 1025 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 124 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2026 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.787539 ] } } +{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2850 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_sequence": 2056 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1116 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & Kearny St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2055 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.787607 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } , -{ "type": "Feature", "properties": { "name": "Market St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2027 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.787742 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2514 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1954 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.785979 ] } } +{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2513 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1953 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786521 ] } } +{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1115 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3486 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.786318 ] } } +{ "type": "Feature", "properties": { "name": "Hawes St & Gilman Ave", "tippecanoe:retain_points_multiplier_sequence": 1320 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.719201 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Minna St", "tippecanoe:retain_points_multiplier_sequence": 3327 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2875 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1955 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 2879 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 175 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2876 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Mission St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1952 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.787878 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_sequence": 3311 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.786182 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & New Montgomery St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3312 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.786046 ] } } +{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2857 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1567 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.784825 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 113 }, "geometry": { "type": "Point", "coordinates": [ -122.387524, 37.750358 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 147 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2831 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & Third St", "tippecanoe:retain_points_multiplier_sequence": 3147 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.783944 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1275 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.784011 ] } } +{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 174 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.783062 ] } } +{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 119 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } , -{ "type": "Feature", "properties": { "name": "5TH ST & FOLSOM ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3184 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1277 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.780416 ] } } +{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2855 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1276 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.782180 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.386408, 37.741942 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 173 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.781773 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1681 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 197 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.777906 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1682 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 195 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.407866, 37.776617 ] } } +{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2917 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.743775 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1683 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 196 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.775735 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2665 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.775532 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.384520, 37.740721 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1499 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 1501 }, "geometry": { "type": "Point", "coordinates": [ -122.408552, 37.773836 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 656 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 205 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772547 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 8th St", "tippecanoe:retain_points_multiplier_sequence": 600 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.772343 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1068 }, "geometry": { "type": "Point", "coordinates": [ -122.382631, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 9th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 601 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.771461 ] } } +{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2737 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3133 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.774718 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1371 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 599 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.774378 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1372 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 204 }, "geometry": { "type": "Point", "coordinates": [ -122.405891, 37.771529 ] } } +{ "type": "Feature", "properties": { "name": "Fairfax Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1074 }, "geometry": { "type": "Point", "coordinates": [ -122.381773, 37.738141 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 8th ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3405 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.771325 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 1498 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1500 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3385 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.778924 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2952 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } , -{ "type": "Feature", "properties": { "name": "6th St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 3249 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1679 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.736512 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 598 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 597 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.777974 ] } } +{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 655 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 194 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.773293 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 199 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.772004 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2822 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.771665 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 7th St", "tippecanoe:retain_points_multiplier_sequence": 2821 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.771732 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1668 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2820 }, "geometry": { "type": "Point", "coordinates": [ -122.399454, 37.773496 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1670 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } , -{ "type": "Feature", "properties": { "name": "Howard St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1566 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1368 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3343 }, "geometry": { "type": "Point", "coordinates": [ -122.398167, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1367 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Howard St", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.786589 ] } } +{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 1669 }, "geometry": { "type": "Point", "coordinates": [ -122.384863, 37.733050 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1274 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785775 ] } } +{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1542 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 3062 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785707 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3360 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.785504 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.385378, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "Folsom St & 1st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1273 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.787403 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } , -{ "type": "Feature", "properties": { "name": "FREMONT & FOLSOM", "tippecanoe:retain_points_multiplier_sequence": 3488 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.787946 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.784554 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1848 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.730131 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1496 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2153 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.784079 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1416 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Perry St", "tippecanoe:retain_points_multiplier_sequence": 162 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.782723 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1680 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1497 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.782451 ] } } +{ "type": "Feature", "properties": { "name": "Middle Point Rd & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1678 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734204 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3485 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.782655 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1414 }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ -122.393789, 37.783265 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1415 }, "geometry": { "type": "Point", "coordinates": [ -122.379799, 37.733322 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Bryant St", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.782858 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1369 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } , -{ "type": "Feature", "properties": { "name": "Brannan St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 587 }, "geometry": { "type": "Point", "coordinates": [ -122.394562, 37.780009 ] } } +{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1370 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } , -{ "type": "Feature", "properties": { "name": "3RD ST & BRANNAN ST", "tippecanoe:retain_points_multiplier_sequence": 3172 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.779534 ] } } +{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2724 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } , -{ "type": "Feature", "properties": { "name": "HARRISON & FREMONT", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3489 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.786725 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Middle Point Rd E", "tippecanoe:retain_points_multiplier_sequence": 1412 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734069 ] } } , -{ "type": "Feature", "properties": { "name": "Harrison St & Main St", "tippecanoe:retain_points_multiplier_sequence": 1503 }, "geometry": { "type": "Point", "coordinates": [ -122.390614, 37.788014 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1841 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1170 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.784351 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1410 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 3136 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.784622 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1411 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1413 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.781841 ] } } +{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 1847 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780823 ] } } +{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1909 }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } , -{ "type": "Feature", "properties": { "name": "2nd St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.780620 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1507 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.731082 ] } } , -{ "type": "Feature", "properties": { "name": "The Embarcadero & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1186 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.783604 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1840 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1714 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.779806 ] } } +{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1221 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1713 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779738 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1418 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 2nd St", "tippecanoe:retain_points_multiplier_sequence": 1715 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.779602 ] } } +{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1417 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } , -{ "type": "Feature", "properties": { "name": " 4th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3226 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778449 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1409 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Brannan St", "tippecanoe:retain_points_multiplier_sequence": 171 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.778313 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1408 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "5th St & Brannan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 179 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.776549 ] } } +{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1839 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 3454 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1407 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2818 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1406 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 5th St", "tippecanoe:retain_points_multiplier_sequence": 2819 }, "geometry": { "type": "Point", "coordinates": [ -122.397223, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Earl St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_sequence": 995 }, "geometry": { "type": "Point", "coordinates": [ -122.373104, 37.728774 ] } } , -{ "type": "Feature", "properties": { "name": "TOWNSEND ST & 4TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3199 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.777296 ] } } +{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1420 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2815 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.777431 ] } } +{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 986 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2816 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777160 ] } } +{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_sequence": 2707 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 2817 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777024 ] } } +{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2109 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3049 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 1756 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_sequence": 177 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.777092 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1429 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & TOWNSEND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 178 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.776889 ] } } +{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1430 }, "geometry": { "type": "Point", "coordinates": [ -122.497644, 37.716757 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1717 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1427 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1716 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1428 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3154 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776346 ] } } +{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1426 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3305 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Higuera Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1233 }, "geometry": { "type": "Point", "coordinates": [ -122.485199, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 3283 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.776142 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1230 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3151 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.776278 ] } } +{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 4th St", "tippecanoe:retain_points_multiplier_sequence": 1718 }, "geometry": { "type": "Point", "coordinates": [ -122.394390, 37.776074 ] } } +{ "type": "Feature", "properties": { "name": "Arballo Dr & Garces Dr", "tippecanoe:retain_points_multiplier_sequence": 477 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3138 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773157 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1278 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -122.397995, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2996 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.772886 ] } } +{ "type": "Feature", "properties": { "name": "Juan Bautista Cir & Bucareli Dr", "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.478762, 37.717979 ] } } , -{ "type": "Feature", "properties": { "name": "King St & 6th St", "tippecanoe:retain_points_multiplier_sequence": 1719 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.773089 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1280 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2814 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.778720 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3005 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } , -{ "type": "Feature", "properties": { "name": "Townsend St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2813 }, "geometry": { "type": "Point", "coordinates": [ -122.392416, 37.778992 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3001 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } , -{ "type": "Feature", "properties": { "name": "3rd Street & King St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3293 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.778110 ] } } +{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2751 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "4TH ST & BERRY ST", "tippecanoe:retain_points_multiplier_sequence": 172 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.775464 ] } } +{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3253 }, "geometry": { "type": "Point", "coordinates": [ -122.390099, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1279 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Terry A Francois Blvd", "tippecanoe:retain_points_multiplier_sequence": 3252 }, "geometry": { "type": "Point", "coordinates": [ -122.389927, 37.776210 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 759 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3276 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.773021 ] } } +{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 758 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } , -{ "type": "Feature", "properties": { "name": "4th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 170 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.772954 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 296 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "Third Street & Mission Rock St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3277 }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.772818 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay North & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3445 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.771190 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1156 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2339 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.768408 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 697 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2338 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.768272 ] } } +{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 2997 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave&15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3232 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1433 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2323 }, "geometry": { "type": "Point", "coordinates": [ -122.408209, 37.766372 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_sequence": 2619 }, "geometry": { "type": "Point", "coordinates": [ -122.472839, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 277 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 278 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.765694 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 304 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2324 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Church Access Rd SW-NS-SB", "tippecanoe:retain_points_multiplier_sequence": 3002 }, "geometry": { "type": "Point", "coordinates": [ -122.475586, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_sequence": 2325 }, "geometry": { "type": "Point", "coordinates": [ -122.407351, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2998 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2326 }, "geometry": { "type": "Point", "coordinates": [ -122.407522, 37.764201 ] } } +{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3003 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 279 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.765830 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2967 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.764540 ] } } +{ "type": "Feature", "properties": { "name": "Chumasero Dr & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 696 }, "geometry": { "type": "Point", "coordinates": [ -122.472925, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2972 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1470 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2971 }, "geometry": { "type": "Point", "coordinates": [ -122.404261, 37.763319 ] } } +{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1434 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2968 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.762233 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2710 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "8th St & Townsend St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 209 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.770172 ] } } +{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2704 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Townsend St", "tippecanoe:retain_points_multiplier_sequence": 1127 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.769901 ] } } +{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 312 }, "geometry": { "type": "Point", "coordinates": [ -122.469578, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Division St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1126 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.769765 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2106 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Alameda St", "tippecanoe:retain_points_multiplier_sequence": 2464 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.768747 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2107 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2453 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.767458 ] } } +{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2108 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 15th St", "tippecanoe:retain_points_multiplier_sequence": 2454 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1879 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 275 }, "geometry": { "type": "Point", "coordinates": [ -122.403831, 37.765965 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Orizaba Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.462368, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1706 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 1969 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 295 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1978 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } , -{ "type": "Feature", "properties": { "name": "17TH ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 294 }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.764812 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 1977 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2456 }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.766169 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1973 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 2455 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766305 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1972 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } , -{ "type": "Feature", "properties": { "name": "16th St& Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3442 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 1971 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 1058 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.766033 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1970 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2457 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 519 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 292 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1964 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 291 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.764880 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 1965 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 1059 }, "geometry": { "type": "Point", "coordinates": [ -122.401514, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2748 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Kansas St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1709 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.763591 ] } } +{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 521 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 2465 }, "geometry": { "type": "Point", "coordinates": [ -122.402544, 37.763251 ] } } +{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 1962 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3443 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.766237 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2686 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 297 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.765015 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2166 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "17th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 298 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2164 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 1062 }, "geometry": { "type": "Point", "coordinates": [ -122.401342, 37.763523 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2165 }, "geometry": { "type": "Point", "coordinates": [ -122.450438, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2328 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.761623 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2689 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2327 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.761826 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2156 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 611 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2158 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2330 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.759112 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2682 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2969 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2157 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 20th St", "tippecanoe:retain_points_multiplier_sequence": 2329 }, "geometry": { "type": "Point", "coordinates": [ -122.406836, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1744 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 612 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1727 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 21st St", "tippecanoe:retain_points_multiplier_sequence": 613 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.757416 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1263 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 614 }, "geometry": { "type": "Point", "coordinates": [ -122.409496, 37.755719 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 615 }, "geometry": { "type": "Point", "coordinates": [ -122.409153, 37.754294 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1738 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Bryant St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 616 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.754158 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1739 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 21st St", "tippecanoe:retain_points_multiplier_sequence": 2331 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.757484 ] } } +{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1728 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2332 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.755855 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "Sf General Hospital", "tippecanoe:retain_points_multiplier_sequence": 3477 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.755176 ] } } +{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1541 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } , -{ "type": "Feature", "properties": { "name": "POTRERO AVE/SF General Hospital", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2397 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.755380 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } , -{ "type": "Feature", "properties": { "name": "Potrero Ave & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.406578, 37.754023 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1262 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Utah St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 399 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "Vermont St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2970 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.760741 ] } } +{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2458 }, "geometry": { "type": "Point", "coordinates": [ -122.402372, 37.761962 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 2459 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 375 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.436619, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_sequence": 370 }, "geometry": { "type": "Point", "coordinates": [ -122.402887, 37.759655 ] } } +{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Kansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 371 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2148 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } , -{ "type": "Feature", "properties": { "name": "20th St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 374 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2044 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 20th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2460 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.759587 ] } } +{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2045 }, "geometry": { "type": "Point", "coordinates": [ -122.428379, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_sequence": 2466 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.758501 ] } } +{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2587 }, "geometry": { "type": "Point", "coordinates": [ -122.401772, 37.758366 ] } } +{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.713702 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1060 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.760944 ] } } +{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2333 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2588 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.758162 ] } } +{ "type": "Feature", "properties": { "name": "1901 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.421169, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Southern Heights Ave & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 2586 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758094 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2633 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & Southern Heights Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1063 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.758026 ] } } +{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1292 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.713430 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3021 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.759723 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1579 }, "geometry": { "type": "Point", "coordinates": [ -122.414474, 37.718115 ] } } , -{ "type": "Feature", "properties": { "name": "176 Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2452 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.756194 ] } } +{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1580 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_sequence": 400 }, "geometry": { "type": "Point", "coordinates": [ -122.403917, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2655 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Vermont St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 401 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2803 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } , -{ "type": "Feature", "properties": { "name": "23RD ST & KANSAS ST", "tippecanoe:retain_points_multiplier_sequence": 397 }, "geometry": { "type": "Point", "coordinates": [ -122.402630, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_sequence": 2804 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } , -{ "type": "Feature", "properties": { "name": "KANSAS ST & 23RD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3187 }, "geometry": { "type": "Point", "coordinates": [ -122.402458, 37.754430 ] } } +{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } , -{ "type": "Feature", "properties": { "name": "23rd St & Rhode Island St", "tippecanoe:retain_points_multiplier_sequence": 398 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754498 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2461 }, "geometry": { "type": "Point", "coordinates": [ -122.401686, 37.754362 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } , -{ "type": "Feature", "properties": { "name": "Rhode Island St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2462 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.753412 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2654 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "Carolina St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 743 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.757348 ] } } +{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2697 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.716621 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Carolina St", "tippecanoe:retain_points_multiplier_sequence": 385 }, "geometry": { "type": "Point", "coordinates": [ -122.399712, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2656 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } , -{ "type": "Feature", "properties": { "name": "22nd St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 390 }, "geometry": { "type": "Point", "coordinates": [ -122.399111, 37.757280 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2646 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 3022 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.757212 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 2647 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.715128 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & Madera St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3030 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.755787 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2802 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "De Haro St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 1061 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.754905 ] } } +{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 2801 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3023 }, "geometry": { "type": "Point", "coordinates": [ -122.398767, 37.754837 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2645 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713770 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 3448 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.766508 ] } } +{ "type": "Feature", "properties": { "name": "Rutland St & Arleta Ave", "tippecanoe:retain_points_multiplier_sequence": 2644 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "7th St & 16th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3091 }, "geometry": { "type": "Point", "coordinates": [ -122.395334, 37.766644 ] } } +{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 484 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_sequence": 893 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.764948 ] } } +{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 17th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 894 }, "geometry": { "type": "Point", "coordinates": [ -122.397823, 37.764744 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 895 }, "geometry": { "type": "Point", "coordinates": [ -122.397566, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } , -{ "type": "Feature", "properties": { "name": "Connecticut St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 896 }, "geometry": { "type": "Point", "coordinates": [ -122.397394, 37.762437 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2218 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_sequence": 316 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.762708 ] } } +{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Texas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 317 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.762641 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_sequence": 313 }, "geometry": { "type": "Point", "coordinates": [ -122.393446, 37.762844 ] } } +{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "Mission Bay South & 4th St SE-FS/ BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3446 }, "geometry": { "type": "Point", "coordinates": [ -122.391043, 37.770511 ] } } +{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } , -{ "type": "Feature", "properties": { "name": "16th Street & 4th Street", "tippecanoe:retain_points_multiplier_sequence": 3447 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.766847 ] } } +{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 562 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } , -{ "type": "Feature", "properties": { "name": "16th St & 4th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3444 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.766780 ] } } +{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2214 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } , -{ "type": "Feature", "properties": { "name": "1731 3RD ST", "tippecanoe:retain_points_multiplier_sequence": 3168 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769697 ] } } +{ "type": "Feature", "properties": { "name": "3947 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.401857, 37.714245 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & Gene Friend Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3251 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769561 ] } } +{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_sequence": 3275 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.769019 ] } } +{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1419 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } , -{ "type": "Feature", "properties": { "name": "UCSF/Mission Bay", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3278 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.768544 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } , -{ "type": "Feature", "properties": { "name": "1730 3rd St", "tippecanoe:retain_points_multiplier_sequence": 130 }, "geometry": { "type": "Point", "coordinates": [ -122.389326, 37.767797 ] } } +{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } , -{ "type": "Feature", "properties": { "name": "3rd/btw 16th and Gene Friend", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 129 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.766576 ] } } +{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } , -{ "type": "Feature", "properties": { "name": "3rd St & 16th St", "tippecanoe:retain_points_multiplier_sequence": 128 }, "geometry": { "type": "Point", "coordinates": [ -122.388983, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 1963 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } , -{ "type": "Feature", "properties": { "name": "18th St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 309 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.762844 ] } } -, -{ "type": "Feature", "properties": { "name": "Mariposa & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3067 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.764337 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3295 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.764405 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Mariposa St", "tippecanoe:retain_points_multiplier_sequence": 3279 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.764269 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & MARIPOSA ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3156 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.764269 ] } } -, -{ "type": "Feature", "properties": { "name": "Tennessee St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 2786 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.762912 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 131 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.763387 ] } } -, -{ "type": "Feature", "properties": { "name": "18th St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 299 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.762980 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Mariposa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3152 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762980 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 18th St", "tippecanoe:retain_points_multiplier_sequence": 132 }, "geometry": { "type": "Point", "coordinates": [ -122.388811, 37.762708 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 19th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 897 }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.761148 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_sequence": 368 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.759859 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Arkansas St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 367 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.759926 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & 19th St", "tippecanoe:retain_points_multiplier_sequence": 1945 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.761419 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 372 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.760062 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & Missouri St", "tippecanoe:retain_points_multiplier_sequence": 373 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.759994 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1946 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.758366 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 1947 }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.758094 ] } } -, -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2806 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758366 ] } } -, -{ "type": "Feature", "properties": { "name": "Texas St & Sierra St", "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.395163, 37.758230 ] } } -, -{ "type": "Feature", "properties": { "name": "Arkansas St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 543 }, "geometry": { "type": "Point", "coordinates": [ -122.398081, 37.757484 ] } } -, -{ "type": "Feature", "properties": { "name": "Arkansas St & Madera St", "tippecanoe:retain_points_multiplier_sequence": 544 }, "geometry": { "type": "Point", "coordinates": [ -122.397909, 37.755991 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3024 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.754701 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 3027 }, "geometry": { "type": "Point", "coordinates": [ -122.398510, 37.753548 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3028 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & Coral Rd", "tippecanoe:retain_points_multiplier_sequence": 3029 }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.753480 ] } } -, -{ "type": "Feature", "properties": { "name": "23rd St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3341 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.754701 ] } } -, -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 3342 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } -, -{ "type": "Feature", "properties": { "name": "Dakota St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1056 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.754701 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Turner Ter", "tippecanoe:retain_points_multiplier_sequence": 1948 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.757280 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Mississippi St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 388 }, "geometry": { "type": "Point", "coordinates": [ -122.393961, 37.757619 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_sequence": 1950 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755448 ] } } -, -{ "type": "Feature", "properties": { "name": "Missouri St & Watchman Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1949 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.755516 ] } } -, -{ "type": "Feature", "properties": { "name": "14 Dakota St", "tippecanoe:retain_points_multiplier_sequence": 1055 }, "geometry": { "type": "Point", "coordinates": [ -122.395763, 37.753751 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 386 }, "geometry": { "type": "Point", "coordinates": [ -122.391815, 37.757755 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Iowa St", "tippecanoe:retain_points_multiplier_sequence": 3131 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.757687 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 365 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.760537 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 20th St", "tippecanoe:retain_points_multiplier_sequence": 133 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.760808 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & 20TH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3153 }, "geometry": { "type": "Point", "coordinates": [ -122.388639, 37.760605 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3274 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760537 ] } } -, -{ "type": "Feature", "properties": { "name": "20th St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 366 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.760469 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & 20th St", "tippecanoe:retain_points_multiplier_sequence": 3280 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.760401 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Minnesota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 387 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.757823 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_sequence": 135 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & 22ND ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3166 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.758026 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 384 }, "geometry": { "type": "Point", "coordinates": [ -122.388468, 37.757891 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 22nd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 134 }, "geometry": { "type": "Point", "coordinates": [ -122.388210, 37.758162 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 383 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.758026 ] } } -, -{ "type": "Feature", "properties": { "name": "22nd St & Pennsylvania Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 389 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.757551 ] } } -, -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 23rd Street", "tippecanoe:retain_points_multiplier_sequence": 3331 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.755176 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 136 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.755719 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 23rd St", "tippecanoe:retain_points_multiplier_sequence": 137 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.755041 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & 23rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3273 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755448 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & 23RD ST", "tippecanoe:retain_points_multiplier_sequence": 3157 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.755312 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 420 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.751512 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Sanchez St", "tippecanoe:retain_points_multiplier_sequence": 419 }, "geometry": { "type": "Point", "coordinates": [ -122.429581, 37.751647 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 404 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751647 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 791 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.751783 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 792 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.751580 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_sequence": 796 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.749408 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Clipper St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 797 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.749204 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 455 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 27th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2094 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.746557 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_sequence": 2095 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.745200 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 28th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2096 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.744929 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 27th St", "tippecanoe:retain_points_multiplier_sequence": 793 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.746965 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 408 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751919 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 409 }, "geometry": { "type": "Point", "coordinates": [ -122.425289, 37.751783 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 412 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.752055 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Guerrero St", "tippecanoe:retain_points_multiplier_sequence": 413 }, "geometry": { "type": "Point", "coordinates": [ -122.422972, 37.751919 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2097 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.743571 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 2098 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.743300 ] } } -, -{ "type": "Feature", "properties": { "name": "Noe St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2099 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Noe St", "tippecanoe:retain_points_multiplier_sequence": 470 }, "geometry": { "type": "Point", "coordinates": [ -122.430782, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3093 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 794 }, "geometry": { "type": "Point", "coordinates": [ -122.426577, 37.743571 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 798 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742825 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & Day St", "tippecanoe:retain_points_multiplier_sequence": 3094 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.742621 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 464 }, "geometry": { "type": "Point", "coordinates": [ -122.426748, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 3247 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742146 ] } } -, -{ "type": "Feature", "properties": { "name": "Church St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 795 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_sequence": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.742078 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Church St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 463 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.742146 ] } } -, -{ "type": "Feature", "properties": { "name": "46 Addison St", "tippecanoe:retain_points_multiplier_sequence": 520 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.737734 ] } } -, -{ "type": "Feature", "properties": { "name": "Bemis St & Moffitt St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 127 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.736648 ] } } -, -{ "type": "Feature", "properties": { "name": "Bemis St & Addison St", "tippecanoe:retain_points_multiplier_sequence": 575 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.737734 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Mateo St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 779 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.736309 ] } } -, -{ "type": "Feature", "properties": { "name": "Randall St & Whitney St", "tippecanoe:retain_points_multiplier_sequence": 2446 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Whitney St & Fairmount Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3040 }, "geometry": { "type": "Point", "coordinates": [ -122.427521, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Miguel St", "tippecanoe:retain_points_multiplier_sequence": 780 }, "geometry": { "type": "Point", "coordinates": [ -122.427950, 37.737123 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 775 }, "geometry": { "type": "Point", "coordinates": [ -122.425718, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 776 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.741942 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 466 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.742146 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Dolores St", "tippecanoe:retain_points_multiplier_sequence": 465 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.742282 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 468 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "30th St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 469 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.742282 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1996 }, "geometry": { "type": "Point", "coordinates": [ -122.422886, 37.740992 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1995 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.741060 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 916 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1986 }, "geometry": { "type": "Point", "coordinates": [ -122.422028, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 467 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 30th St", "tippecanoe:retain_points_multiplier_sequence": 1985 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 782 }, "geometry": { "type": "Point", "coordinates": [ -122.425461, 37.739635 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Fairmount St", "tippecanoe:retain_points_multiplier_sequence": 778 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "San jose& Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3435 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 2525 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.739567 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2526 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.739363 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose& Randall St", "tippecanoe:retain_points_multiplier_sequence": 3436 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2524 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Appleton Ave", "tippecanoe:retain_points_multiplier_sequence": 1990 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.739024 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2004 }, "geometry": { "type": "Point", "coordinates": [ -122.424173, 37.737055 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Highland Ave", "tippecanoe:retain_points_multiplier_sequence": 2003 }, "geometry": { "type": "Point", "coordinates": [ -122.424002, 37.737463 ] } } -, -{ "type": "Feature", "properties": { "name": "Richland Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2467 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.736241 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prospect Ave", "tippecanoe:retain_points_multiplier_sequence": 919 }, "geometry": { "type": "Point", "coordinates": [ -122.420912, 37.740178 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2958 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752326 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_sequence": 423 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.752190 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 424 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.752055 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1980 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 416 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.752190 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1981 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.751987 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2959 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.750765 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2960 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.750290 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1982 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.749544 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 422 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.752326 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3393 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 421 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 453 }, "geometry": { "type": "Point", "coordinates": [ -122.417822, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "South Van Ness & 24th St", "tippecanoe:retain_points_multiplier_sequence": 3388 }, "geometry": { "type": "Point", "coordinates": [ -122.416191, 37.750629 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 457 }, "geometry": { "type": "Point", "coordinates": [ -122.416105, 37.749136 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 2961 }, "geometry": { "type": "Point", "coordinates": [ -122.420397, 37.748661 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2962 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St. & Valencia St.", "tippecanoe:retain_points_multiplier_sequence": 3362 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.748051 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez & Bartlett", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3431 }, "geometry": { "type": "Point", "coordinates": [ -122.419024, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1983 }, "geometry": { "type": "Point", "coordinates": [ -122.418165, 37.748593 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3345 }, "geometry": { "type": "Point", "coordinates": [ -122.418079, 37.748118 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 2010 }, "geometry": { "type": "Point", "coordinates": [ -122.419109, 37.746965 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Precita Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2009 }, "geometry": { "type": "Point", "coordinates": [ -122.418852, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Valencia St & Duncan St", "tippecanoe:retain_points_multiplier_sequence": 2965 }, "geometry": { "type": "Point", "coordinates": [ -122.420225, 37.746761 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Power St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3499 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.746218 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Fair Ave", "tippecanoe:retain_points_multiplier_sequence": 1998 }, "geometry": { "type": "Point", "coordinates": [ -122.419624, 37.745947 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Valencia St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2019 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.745064 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & South Van Ness Ave", "tippecanoe:retain_points_multiplier_sequence": 755 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1295 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 1294 }, "geometry": { "type": "Point", "coordinates": [ -122.414045, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3242 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 411 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1296 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 452 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749204 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1297 }, "geometry": { "type": "Point", "coordinates": [ -122.413874, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3241 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.749204 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 414 }, "geometry": { "type": "Point", "coordinates": [ -122.411728, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1298 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748458 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 751 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 752 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748118 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom & Cesar Chavz St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3432 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.748051 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1299 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.748118 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Bessie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1300 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.746897 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Precita Ave", "tippecanoe:retain_points_multiplier_sequence": 1308 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Stoneman St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1309 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.745336 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_sequence": 753 }, "geometry": { "type": "Point", "coordinates": [ -122.411900, 37.748390 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Harrison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 754 }, "geometry": { "type": "Point", "coordinates": [ -122.411642, 37.748186 ] } } -, -{ "type": "Feature", "properties": { "name": "C. Chavez St&Harrison St", "tippecanoe:retain_points_multiplier_sequence": 3434 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.748322 ] } } -, -{ "type": "Feature", "properties": { "name": "Cesar Chavez St & Florida St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 750 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.748254 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & 29th St", "tippecanoe:retain_points_multiplier_sequence": 1984 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.744318 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 910 }, "geometry": { "type": "Point", "coordinates": [ -122.419968, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Elsie St", "tippecanoe:retain_points_multiplier_sequence": 911 }, "geometry": { "type": "Point", "coordinates": [ -122.419710, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bocana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 908 }, "geometry": { "type": "Point", "coordinates": [ -122.418423, 37.739295 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 907 }, "geometry": { "type": "Point", "coordinates": [ -122.416620, 37.739024 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 906 }, "geometry": { "type": "Point", "coordinates": [ -122.416363, 37.739092 ] } } -, -{ "type": "Feature", "properties": { "name": "Ripley St & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 2471 }, "geometry": { "type": "Point", "coordinates": [ -122.413187, 37.744182 ] } } -, -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2469 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.744386 ] } } -, -{ "type": "Feature", "properties": { "name": "Ripley St & Alabama St", "tippecanoe:retain_points_multiplier_sequence": 2470 }, "geometry": { "type": "Point", "coordinates": [ -122.410526, 37.744250 ] } } -, -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Powhattan St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3356 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.741467 ] } } -, -{ "type": "Feature", "properties": { "name": "Nevada St & Powhattan Ave", "tippecanoe:retain_points_multiplier_sequence": 2124 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.741264 ] } } -, -{ "type": "Feature", "properties": { "name": "Bernal Heights Blvd & Bradford St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 574 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.741807 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 913 }, "geometry": { "type": "Point", "coordinates": [ -122.414646, 37.738820 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 912 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Folsom St", "tippecanoe:retain_points_multiplier_sequence": 914 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.739024 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1301 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 1302 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.738820 ] } } -, -{ "type": "Feature", "properties": { "name": "FOLSOM ST & JARBOE AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3197 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.738277 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & JARBOE AVE", "tippecanoe:retain_points_multiplier_sequence": 3196 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.738209 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Tompkins St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1310 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.737191 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1306 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.736037 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 917 }, "geometry": { "type": "Point", "coordinates": [ -122.411985, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Prentiss St", "tippecanoe:retain_points_multiplier_sequence": 918 }, "geometry": { "type": "Point", "coordinates": [ -122.412071, 37.739567 ] } } -, -{ "type": "Feature", "properties": { "name": "Nevada St & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2123 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.740042 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Bradford St", "tippecanoe:retain_points_multiplier_sequence": 909 }, "geometry": { "type": "Point", "coordinates": [ -122.409754, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "name": "CORTLAND AVE & BRONTE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3183 }, "geometry": { "type": "Point", "coordinates": [ -122.410183, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Chenery St & Roanoke St", "tippecanoe:retain_points_multiplier_sequence": 783 }, "geometry": { "type": "Point", "coordinates": [ -122.430267, 37.735494 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Rotteck St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 584 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.733186 ] } } -, -{ "type": "Feature", "properties": { "name": "Still St & Lyell St", "tippecanoe:retain_points_multiplier_sequence": 2679 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 582 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Milton St", "tippecanoe:retain_points_multiplier_sequence": 581 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.733458 ] } } -, -{ "type": "Feature", "properties": { "name": "4080 Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1987 }, "geometry": { "type": "Point", "coordinates": [ -122.428036, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "name": "Bosworth St & Mission St", "tippecanoe:retain_points_multiplier_sequence": 583 }, "geometry": { "type": "Point", "coordinates": [ -122.426662, 37.733729 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1993 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Bosworth St", "tippecanoe:retain_points_multiplier_sequence": 1992 }, "geometry": { "type": "Point", "coordinates": [ -122.426834, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Rousseau St & Cayuga Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2472 }, "geometry": { "type": "Point", "coordinates": [ -122.429667, 37.731421 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_sequence": 2017 }, "geometry": { "type": "Point", "coordinates": [ -122.429237, 37.730675 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Trumbull St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2018 }, "geometry": { "type": "Point", "coordinates": [ -122.429752, 37.730471 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2607 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2015 }, "geometry": { "type": "Point", "coordinates": [ -122.431297, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 2609 }, "geometry": { "type": "Point", "coordinates": [ -122.431211, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2608 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.728774 ] } } -, -{ "type": "Feature", "properties": { "name": "Trumbull St & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2826 }, "geometry": { "type": "Point", "coordinates": [ -122.426405, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2604 }, "geometry": { "type": "Point", "coordinates": [ -122.428808, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_sequence": 3320 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.728570 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Lisbon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3323 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.728638 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Craut St", "tippecanoe:retain_points_multiplier_sequence": 2601 }, "geometry": { "type": "Point", "coordinates": [ -122.428122, 37.728570 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2012 }, "geometry": { "type": "Point", "coordinates": [ -122.424688, 37.735630 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Richland Ave", "tippecanoe:retain_points_multiplier_sequence": 2011 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735901 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 949 }, "geometry": { "type": "Point", "coordinates": [ -122.424431, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & College Ave", "tippecanoe:retain_points_multiplier_sequence": 946 }, "geometry": { "type": "Point", "coordinates": [ -122.424088, 37.735223 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Agnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 943 }, "geometry": { "type": "Point", "coordinates": [ -122.421856, 37.735087 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_sequence": 2599 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.728706 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Congdon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2600 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.728570 ] } } -, -{ "type": "Feature", "properties": { "name": "Trumbull St & Stoneybrook Ave", "tippecanoe:retain_points_multiplier_sequence": 2827 }, "geometry": { "type": "Point", "coordinates": [ -122.421942, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Gambier St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2603 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.728910 ] } } -, -{ "type": "Feature", "properties": { "name": "SILVER AVE & GAMBIER ST", "tippecanoe:retain_points_multiplier_sequence": 3174 }, "geometry": { "type": "Point", "coordinates": [ -122.422457, 37.728774 ] } } -, -{ "type": "Feature", "properties": { "name": "Excelsior Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1217 }, "geometry": { "type": "Point", "coordinates": [ -122.430611, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Madrid St", "tippecanoe:retain_points_multiplier_sequence": 626 }, "geometry": { "type": "Point", "coordinates": [ -122.431469, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Excelsior Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 556 }, "geometry": { "type": "Point", "coordinates": [ -122.427263, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 2240 }, "geometry": { "type": "Point", "coordinates": [ -122.431383, 37.720831 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Naples St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2239 }, "geometry": { "type": "Point", "coordinates": [ -122.431040, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 1910 }, "geometry": { "type": "Point", "coordinates": [ -122.430010, 37.722528 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2229 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720152 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 2230 }, "geometry": { "type": "Point", "coordinates": [ -122.429495, 37.720084 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2238 }, "geometry": { "type": "Point", "coordinates": [ -122.428980, 37.719677 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Athens St", "tippecanoe:retain_points_multiplier_sequence": 625 }, "geometry": { "type": "Point", "coordinates": [ -122.428551, 37.721646 ] } } -, -{ "type": "Feature", "properties": { "name": "Athens St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 555 }, "geometry": { "type": "Point", "coordinates": [ -122.428465, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2072 }, "geometry": { "type": "Point", "coordinates": [ -122.427607, 37.721374 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 628 }, "geometry": { "type": "Point", "coordinates": [ -122.427778, 37.721306 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Excelsior Ave", "tippecanoe:retain_points_multiplier_sequence": 2073 }, "geometry": { "type": "Point", "coordinates": [ -122.426491, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Munich St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 629 }, "geometry": { "type": "Point", "coordinates": [ -122.427006, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Persia Ave", "tippecanoe:retain_points_multiplier_sequence": 2077 }, "geometry": { "type": "Point", "coordinates": [ -122.428722, 37.719812 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2237 }, "geometry": { "type": "Point", "coordinates": [ -122.428637, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 631 }, "geometry": { "type": "Point", "coordinates": [ -122.426147, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2366 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718998 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2243 }, "geometry": { "type": "Point", "coordinates": [ -122.427349, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Persia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2367 }, "geometry": { "type": "Point", "coordinates": [ -122.427177, 37.718862 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 2242 }, "geometry": { "type": "Point", "coordinates": [ -122.427092, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 567 }, "geometry": { "type": "Point", "coordinates": [ -122.424345, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & La Grande Ave", "tippecanoe:retain_points_multiplier_sequence": 566 }, "geometry": { "type": "Point", "coordinates": [ -122.424259, 37.724768 ] } } -, -{ "type": "Feature", "properties": { "name": "Avalon Ave & Peru Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 568 }, "geometry": { "type": "Point", "coordinates": [ -122.423401, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Peru Ave", "tippecanoe:retain_points_multiplier_sequence": 1228 }, "geometry": { "type": "Point", "coordinates": [ -122.423229, 37.725176 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Madison St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1227 }, "geometry": { "type": "Point", "coordinates": [ -122.422113, 37.725447 ] } } -, -{ "type": "Feature", "properties": { "name": "Brazil Ave & Prague St", "tippecanoe:retain_points_multiplier_sequence": 3203 }, "geometry": { "type": "Point", "coordinates": [ -122.425890, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2365 }, "geometry": { "type": "Point", "coordinates": [ -122.426062, 37.720423 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & BRAZIL AVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719337 ] } } -, -{ "type": "Feature", "properties": { "name": "DUBLIN ST & LAGRANDE AVE", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -122.425804, 37.719201 ] } } -, -{ "type": "Feature", "properties": { "name": "Richland Ave & Murray St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2468 }, "geometry": { "type": "Point", "coordinates": [ -122.420053, 37.735766 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Murray St", "tippecanoe:retain_points_multiplier_sequence": 950 }, "geometry": { "type": "Point", "coordinates": [ -122.420139, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Roscoe St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 954 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.735087 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Porter St", "tippecanoe:retain_points_multiplier_sequence": 951 }, "geometry": { "type": "Point", "coordinates": [ -122.418251, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd/St Mary's Park bridge", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 528 }, "geometry": { "type": "Point", "coordinates": [ -122.420568, 37.732304 ] } } -, -{ "type": "Feature", "properties": { "name": "989 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1216 }, "geometry": { "type": "Point", "coordinates": [ -122.418938, 37.732643 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 944 }, "geometry": { "type": "Point", "coordinates": [ -122.416706, 37.734951 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Andover St", "tippecanoe:retain_points_multiplier_sequence": 945 }, "geometry": { "type": "Point", "coordinates": [ -122.416964, 37.734815 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Anderson St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3408 }, "geometry": { "type": "Point", "coordinates": [ -122.415676, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "945 Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 1215 }, "geometry": { "type": "Point", "coordinates": [ -122.417736, 37.732779 ] } } -, -{ "type": "Feature", "properties": { "name": "831 Ellsworth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3061 }, "geometry": { "type": "Point", "coordinates": [ -122.415247, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Gates St", "tippecanoe:retain_points_multiplier_sequence": 526 }, "geometry": { "type": "Point", "coordinates": [ -122.415762, 37.732507 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2597 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.729113 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 2598 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.729045 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Princeton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2611 }, "geometry": { "type": "Point", "coordinates": [ -122.416277, 37.728842 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 3402 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "CRESCENT AVE & ELLSWORTH ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3179 }, "geometry": { "type": "Point", "coordinates": [ -122.415075, 37.734747 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Ellsworth St", "tippecanoe:retain_points_multiplier_sequence": 947 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Folsom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 948 }, "geometry": { "type": "Point", "coordinates": [ -122.413788, 37.734680 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Ogden St", "tippecanoe:retain_points_multiplier_sequence": 1307 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.735766 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1303 }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.734951 ] } } -, -{ "type": "Feature", "properties": { "name": "Folsom St & Crescent Ave", "tippecanoe:retain_points_multiplier_sequence": 1304 }, "geometry": { "type": "Point", "coordinates": [ -122.413702, 37.734815 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Flosom St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3375 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "346 Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 525 }, "geometry": { "type": "Point", "coordinates": [ -122.413273, 37.733593 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 953 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.734883 ] } } -, -{ "type": "Feature", "properties": { "name": "Crescent Ave & Putnam St", "tippecanoe:retain_points_multiplier_sequence": 952 }, "geometry": { "type": "Point", "coordinates": [ -122.411127, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2602 }, "geometry": { "type": "Point", "coordinates": [ -122.413015, 37.729928 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & University St", "tippecanoe:retain_points_multiplier_sequence": 1229 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.727416 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2894 }, "geometry": { "type": "Point", "coordinates": [ -122.414389, 37.727416 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Boylston St", "tippecanoe:retain_points_multiplier_sequence": 2595 }, "geometry": { "type": "Point", "coordinates": [ -122.410870, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1226 }, "geometry": { "type": "Point", "coordinates": [ -122.420483, 37.725855 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Harvard St", "tippecanoe:retain_points_multiplier_sequence": 1225 }, "geometry": { "type": "Point", "coordinates": [ -122.420311, 37.725990 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1223 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.726398 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Cambridge St", "tippecanoe:retain_points_multiplier_sequence": 1224 }, "geometry": { "type": "Point", "coordinates": [ -122.418509, 37.726398 ] } } -, -{ "type": "Feature", "properties": { "name": "Felton St & Amherst St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1222 }, "geometry": { "type": "Point", "coordinates": [ -122.416534, 37.726873 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_sequence": 1805 }, "geometry": { "type": "Point", "coordinates": [ -122.418766, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & John F Shelley Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1806 }, "geometry": { "type": "Point", "coordinates": [ -122.418594, 37.718726 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Burrows St", "tippecanoe:retain_points_multiplier_sequence": 2893 }, "geometry": { "type": "Point", "coordinates": [ -122.414131, 37.726601 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2891 }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.725108 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2892 }, "geometry": { "type": "Point", "coordinates": [ -122.413359, 37.724972 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2896 }, "geometry": { "type": "Point", "coordinates": [ -122.413101, 37.723954 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 2897 }, "geometry": { "type": "Point", "coordinates": [ -122.412930, 37.723818 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3034 }, "geometry": { "type": "Point", "coordinates": [ -122.410440, 37.723207 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 3035 }, "geometry": { "type": "Point", "coordinates": [ -122.410612, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "University St & Woolsey St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2895 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.722732 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & University St", "tippecanoe:retain_points_multiplier_sequence": 3039 }, "geometry": { "type": "Point", "coordinates": [ -122.412415, 37.722732 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & University St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1809 }, "geometry": { "type": "Point", "coordinates": [ -122.411299, 37.718930 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 1810 }, "geometry": { "type": "Point", "coordinates": [ -122.411385, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 402 }, "geometry": { "type": "Point", "coordinates": [ -122.409239, 37.752869 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 24th St", "tippecanoe:retain_points_multiplier_sequence": 617 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.753073 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Bryant St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 403 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.752733 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 618 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.751308 ] } } -, -{ "type": "Feature", "properties": { "name": "Hampshire St & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1495 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 619 }, "geometry": { "type": "Point", "coordinates": [ -122.408895, 37.751105 ] } } -, -{ "type": "Feature", "properties": { "name": "Bryant St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 620 }, "geometry": { "type": "Point", "coordinates": [ -122.408724, 37.749544 ] } } -, -{ "type": "Feature", "properties": { "name": "24th St & Potrero Ave", "tippecanoe:retain_points_multiplier_sequence": 418 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.753005 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2334 }, "geometry": { "type": "Point", "coordinates": [ -122.406235, 37.753276 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 24th St", "tippecanoe:retain_points_multiplier_sequence": 2335 }, "geometry": { "type": "Point", "coordinates": [ -122.406406, 37.752665 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Potrero Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 446 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.751376 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_sequence": 2337 }, "geometry": { "type": "Point", "coordinates": [ -122.406321, 37.751240 ] } } -, -{ "type": "Feature", "properties": { "name": "Potrero Ave & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2336 }, "geometry": { "type": "Point", "coordinates": [ -122.406063, 37.751647 ] } } -, -{ "type": "Feature", "properties": { "name": "C. Chavez St&Florida St", "tippecanoe:retain_points_multiplier_sequence": 3433 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.748390 ] } } -, -{ "type": "Feature", "properties": { "name": "228 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 632 }, "geometry": { "type": "Point", "coordinates": [ -122.404432, 37.744725 ] } } -, -{ "type": "Feature", "properties": { "name": "Kansas St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 1707 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.751919 ] } } -, -{ "type": "Feature", "properties": { "name": "Rhode Island St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2463 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.752122 ] } } -, -{ "type": "Feature", "properties": { "name": "Kansas St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 1708 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & Rhode Island St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 456 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.750697 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_sequence": 450 }, "geometry": { "type": "Point", "coordinates": [ -122.400141, 37.750833 ] } } -, -{ "type": "Feature", "properties": { "name": "26th St & De Haro St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 451 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.750765 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 642 }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.747100 ] } } -, -{ "type": "Feature", "properties": { "name": "Bradford St & Esmeralda Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 590 }, "geometry": { "type": "Point", "coordinates": [ -122.409325, 37.743028 ] } } -, -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_sequence": 589 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742892 ] } } -, -{ "type": "Feature", "properties": { "name": "Bradford St & Bernal Heights Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 588 }, "geometry": { "type": "Point", "coordinates": [ -122.409410, 37.742010 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 644 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.743300 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Bayshore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3069 }, "geometry": { "type": "Point", "coordinates": [ -122.405033, 37.742825 ] } } -, -{ "type": "Feature", "properties": { "name": "380 Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 633 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.741331 ] } } -, -{ "type": "Feature", "properties": { "name": "Cortland Ave & Hilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 915 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_sequence": 639 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3243 }, "geometry": { "type": "Point", "coordinates": [ -122.407265, 37.738345 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Alemany Blvd", "tippecanoe:retain_points_multiplier_sequence": 634 }, "geometry": { "type": "Point", "coordinates": [ -122.407007, 37.737734 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Cortland Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 638 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Marengo St", "tippecanoe:retain_points_multiplier_sequence": 643 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.738684 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1597 }, "geometry": { "type": "Point", "coordinates": [ -122.406750, 37.737938 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Loomis St", "tippecanoe:retain_points_multiplier_sequence": 3070 }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.742553 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2127 }, "geometry": { "type": "Point", "coordinates": [ -122.403316, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Barneveld Ave", "tippecanoe:retain_points_multiplier_sequence": 2126 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.741874 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2810 }, "geometry": { "type": "Point", "coordinates": [ -122.399025, 37.743911 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Jerrold Ave", "tippecanoe:retain_points_multiplier_sequence": 2809 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.743911 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2812 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.741467 ] } } -, -{ "type": "Feature", "properties": { "name": "Toland St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2811 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.742282 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1599 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.739159 ] } } -, -{ "type": "Feature", "properties": { "name": "Industrial St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1598 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.739567 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Industrial St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2201 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.739499 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2613 }, "geometry": { "type": "Point", "coordinates": [ -122.398853, 37.736376 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3025 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.752394 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_sequence": 447 }, "geometry": { "type": "Point", "coordinates": [ -122.398338, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Wisconsin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 448 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.752190 ] } } -, -{ "type": "Feature", "properties": { "name": "Wisconsin St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 3026 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.751308 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 441 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.752326 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Connecticut St", "tippecanoe:retain_points_multiplier_sequence": 442 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.752258 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 899 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.751240 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & 26th St", "tippecanoe:retain_points_multiplier_sequence": 898 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.751444 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1204 }, "geometry": { "type": "Point", "coordinates": [ -122.397051, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 1203 }, "geometry": { "type": "Point", "coordinates": [ -122.396879, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 901 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.749883 ] } } -, -{ "type": "Feature", "properties": { "name": "Connecticut St & Cesar Chavez St", "tippecanoe:retain_points_multiplier_sequence": 900 }, "geometry": { "type": "Point", "coordinates": [ -122.396193, 37.750019 ] } } -, -{ "type": "Feature", "properties": { "name": "25th St & Dakota St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 443 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.752530 ] } } -, -{ "type": "Feature", "properties": { "name": "25th Avenue & Dakota Street", "tippecanoe:retain_points_multiplier_sequence": 3333 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.752326 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1209 }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.747372 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Napoleon St", "tippecanoe:retain_points_multiplier_sequence": 1208 }, "geometry": { "type": "Point", "coordinates": [ -122.395849, 37.747236 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1213 }, "geometry": { "type": "Point", "coordinates": [ -122.393875, 37.745947 ] } } -, -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_sequence": 3332 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752598 ] } } -, -{ "type": "Feature", "properties": { "name": "Pennsylvania Avenue & 25th Street", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3334 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.752462 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_sequence": 139 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.752530 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1665 }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.743300 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Selby St", "tippecanoe:retain_points_multiplier_sequence": 1666 }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.742757 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1663 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.742078 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Rankin St", "tippecanoe:retain_points_multiplier_sequence": 1664 }, "geometry": { "type": "Point", "coordinates": [ -122.394733, 37.741671 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Rankin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2213 }, "geometry": { "type": "Point", "coordinates": [ -122.398252, 37.738209 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 2612 }, "geometry": { "type": "Point", "coordinates": [ -122.398596, 37.736309 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2212 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.737191 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2610 }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.737123 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2211 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.736105 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 2259 }, "geometry": { "type": "Point", "coordinates": [ -122.394648, 37.736241 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2257 }, "geometry": { "type": "Point", "coordinates": [ -122.394133, 37.736852 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 2258 }, "geometry": { "type": "Point", "coordinates": [ -122.394047, 37.736648 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1212 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.744250 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 3222 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.744046 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1661 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740924 ] } } -, -{ "type": "Feature", "properties": { "name": "Jerrold Ave & Quint St", "tippecanoe:retain_points_multiplier_sequence": 1662 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.740721 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1211 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.742960 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 3282 }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.742757 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3271 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742757 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3155 }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.742689 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1202 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & EVANS AVE", "tippecanoe:retain_points_multiplier_sequence": 3158 }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.742621 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 146 }, "geometry": { "type": "Point", "coordinates": [ -122.388124, 37.742417 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Galvez Ave", "tippecanoe:retain_points_multiplier_sequence": 149 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740856 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2254 }, "geometry": { "type": "Point", "coordinates": [ -122.391300, 37.739770 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_sequence": 2255 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.738073 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Mckinnon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2256 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.737870 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 3287 }, "geometry": { "type": "Point", "coordinates": [ -122.390528, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3288 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736309 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 3286 }, "geometry": { "type": "Point", "coordinates": [ -122.391644, 37.736241 ] } } -, -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1919 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.736309 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 151 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.739295 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Jerrold Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 153 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.738888 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3301 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3270 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Hudson/Innes", "tippecanoe:retain_points_multiplier_sequence": 3309 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.739906 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 150 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.740110 ] } } -, -{ "type": "Feature", "properties": { "name": "New Hall & Hudsons SW-FS/BZ", "tippecanoe:retain_points_multiplier_sequence": 3449 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } -, -{ "type": "Feature", "properties": { "name": "New Hall & Hudson SW-FS/BZ", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3450 }, "geometry": { "type": "Point", "coordinates": [ -122.388382, 37.739974 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & La Salle Ave", "tippecanoe:retain_points_multiplier_sequence": 155 }, "geometry": { "type": "Point", "coordinates": [ -122.389841, 37.737191 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Kirkwood Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 156 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.737938 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3302 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3269 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Kirkwood/La Salle", "tippecanoe:retain_points_multiplier_sequence": 3308 }, "geometry": { "type": "Point", "coordinates": [ -122.389669, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Augusta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 635 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.734272 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2615 }, "geometry": { "type": "Point", "coordinates": [ -122.405977, 37.732439 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2614 }, "geometry": { "type": "Point", "coordinates": [ -122.405720, 37.732372 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 2577 }, "geometry": { "type": "Point", "coordinates": [ -122.405548, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 645 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.733186 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_sequence": 647 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Silver Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 646 }, "geometry": { "type": "Point", "coordinates": [ -122.404776, 37.732983 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_sequence": 2596 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.733050 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2606 }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Merrill St", "tippecanoe:retain_points_multiplier_sequence": 2605 }, "geometry": { "type": "Point", "coordinates": [ -122.408810, 37.731489 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Felton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2573 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.730131 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Thornton Ave", "tippecanoe:retain_points_multiplier_sequence": 2579 }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.730267 ] } } -, -{ "type": "Feature", "properties": { "name": "Girard ST & Burrows ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3496 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.728027 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_sequence": 570 }, "geometry": { "type": "Point", "coordinates": [ -122.404690, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 569 }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.727416 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Augusta St", "tippecanoe:retain_points_multiplier_sequence": 2594 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.734612 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave&Santa Fe Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3223 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.734747 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 2617 }, "geometry": { "type": "Point", "coordinates": [ -122.401085, 37.735290 ] } } -, -{ "type": "Feature", "properties": { "name": "Silver Ave & Topeka Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2616 }, "geometry": { "type": "Point", "coordinates": [ -122.400656, 37.735358 ] } } -, -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_sequence": 595 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Scotia Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 594 }, "geometry": { "type": "Point", "coordinates": [ -122.399282, 37.731896 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 637 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.730267 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2569 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_sequence": 2570 }, "geometry": { "type": "Point", "coordinates": [ -122.403660, 37.727959 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2571 }, "geometry": { "type": "Point", "coordinates": [ -122.403574, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727755 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -122.403231, 37.727620 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Donner Ave", "tippecanoe:retain_points_multiplier_sequence": 2253 }, "geometry": { "type": "Point", "coordinates": [ -122.401428, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Vesta St & Phelps St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2938 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730403 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2260 }, "geometry": { "type": "Point", "coordinates": [ -122.399883, 37.730199 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2252 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.729113 ] } } -, -{ "type": "Feature", "properties": { "name": "Phelps St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 2251 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.729113 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Bacon St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1545 }, "geometry": { "type": "Point", "coordinates": [ -122.408466, 37.726126 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.726534 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Somerset St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.726669 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1546 }, "geometry": { "type": "Point", "coordinates": [ -122.408123, 37.725244 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Bowdoin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3033 }, "geometry": { "type": "Point", "coordinates": [ -122.409582, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_sequence": 3038 }, "geometry": { "type": "Point", "coordinates": [ -122.408638, 37.723614 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3037 }, "geometry": { "type": "Point", "coordinates": [ -122.408381, 37.723750 ] } } -, -{ "type": "Feature", "properties": { "name": "Holyoke St & Wayland St", "tippecanoe:retain_points_multiplier_sequence": 1547 }, "geometry": { "type": "Point", "coordinates": [ -122.407951, 37.725040 ] } } -, -{ "type": "Feature", "properties": { "name": "Woolsey St & Holyoke St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3036 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 572 }, "geometry": { "type": "Point", "coordinates": [ -122.406664, 37.726805 ] } } -, -{ "type": "Feature", "properties": { "name": "Bacon St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 571 }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.726941 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Dartmouth St", "tippecanoe:retain_points_multiplier_sequence": 1800 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.719405 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1804 }, "geometry": { "type": "Point", "coordinates": [ -122.407093, 37.719880 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 1802 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Hamilton St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1803 }, "geometry": { "type": "Point", "coordinates": [ -122.406921, 37.720084 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 1808 }, "geometry": { "type": "Point", "coordinates": [ -122.405291, 37.720491 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wayland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2583 }, "geometry": { "type": "Point", "coordinates": [ -122.402973, 37.726398 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Woolsey St", "tippecanoe:retain_points_multiplier_sequence": 2582 }, "geometry": { "type": "Point", "coordinates": [ -122.402716, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Dwight St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2572 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.724090 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 2576 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.724157 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2227 }, "geometry": { "type": "Point", "coordinates": [ -122.401600, 37.723886 ] } } -, -{ "type": "Feature", "properties": { "name": "Bayshore St & Paul Ave", "tippecanoe:retain_points_multiplier_sequence": 3457 }, "geometry": { "type": "Point", "coordinates": [ -122.400827, 37.723546 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Bay Shore Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2225 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.723614 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Wheat St", "tippecanoe:retain_points_multiplier_sequence": 2228 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.723411 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1798 }, "geometry": { "type": "Point", "coordinates": [ -122.403059, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 1799 }, "geometry": { "type": "Point", "coordinates": [ -122.403145, 37.720899 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1801 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.720695 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2575 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.721578 ] } } -, -{ "type": "Feature", "properties": { "name": "Mansell St & San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1807 }, "geometry": { "type": "Point", "coordinates": [ -122.401171, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Mansell St", "tippecanoe:retain_points_multiplier_sequence": 2574 }, "geometry": { "type": "Point", "coordinates": [ -122.400913, 37.721510 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Bayshore St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3456 }, "geometry": { "type": "Point", "coordinates": [ -122.399797, 37.721510 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Ward St", "tippecanoe:retain_points_multiplier_sequence": 2580 }, "geometry": { "type": "Point", "coordinates": [ -122.400398, 37.719405 ] } } -, -{ "type": "Feature", "properties": { "name": "Topeka Ave & Bridge View Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2823 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Bridge View Dr & Topeka Ave", "tippecanoe:retain_points_multiplier_sequence": 596 }, "geometry": { "type": "Point", "coordinates": [ -122.397652, 37.733186 ] } } -, -{ "type": "Feature", "properties": { "name": "Topeka Ave & Venus St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2825 }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.732032 ] } } -, -{ "type": "Feature", "properties": { "name": "Topeka Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 2824 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Reddy St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2450 }, "geometry": { "type": "Point", "coordinates": [ -122.395077, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Reddy St & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 2451 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.729792 ] } } -, -{ "type": "Feature", "properties": { "name": "Williams Ave & Reddy St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3032 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.729724 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 169 }, "geometry": { "type": "Point", "coordinates": [ -122.393274, 37.727891 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2209 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 1921 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2210 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1920 }, "geometry": { "type": "Point", "coordinates": [ -122.392159, 37.735766 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3071 }, "geometry": { "type": "Point", "coordinates": [ -122.392073, 37.735698 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 158 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.735087 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3303 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Oakdale/Palou", "tippecanoe:retain_points_multiplier_sequence": 3307 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.734340 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 161 }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.734815 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_sequence": 160 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.734069 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Palou Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 159 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734136 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 2197 }, "geometry": { "type": "Point", "coordinates": [ -122.390785, 37.734001 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2198 }, "geometry": { "type": "Point", "coordinates": [ -122.390871, 37.733865 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Bayview St", "tippecanoe:retain_points_multiplier_sequence": 140 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3304 }, "geometry": { "type": "Point", "coordinates": [ -122.391558, 37.732304 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Revere/Shafter", "tippecanoe:retain_points_multiplier_sequence": 3268 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2501 }, "geometry": { "type": "Point", "coordinates": [ -122.391386, 37.732439 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 163 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.732236 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2502 }, "geometry": { "type": "Point", "coordinates": [ -122.391214, 37.732168 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Newcomb Ave", "tippecanoe:retain_points_multiplier_sequence": 157 }, "geometry": { "type": "Point", "coordinates": [ -122.390356, 37.735426 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2208 }, "geometry": { "type": "Point", "coordinates": [ -122.389154, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2507 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.731693 ] } } -, -{ "type": "Feature", "properties": { "name": "Lane St & Revere Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3289 }, "geometry": { "type": "Point", "coordinates": [ -122.390184, 37.731693 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Lane St", "tippecanoe:retain_points_multiplier_sequence": 2506 }, "geometry": { "type": "Point", "coordinates": [ -122.390013, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2207 }, "geometry": { "type": "Point", "coordinates": [ -122.388897, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Thomas Ave", "tippecanoe:retain_points_multiplier_sequence": 165 }, "geometry": { "type": "Point", "coordinates": [ -122.391987, 37.730675 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Thornton Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 166 }, "geometry": { "type": "Point", "coordinates": [ -122.392330, 37.730471 ] } } -, -{ "type": "Feature", "properties": { "name": "Williams Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 3031 }, "geometry": { "type": "Point", "coordinates": [ -122.392931, 37.729385 ] } } -, -{ "type": "Feature", "properties": { "name": "3RD ST & WILLIAMS ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3159 }, "geometry": { "type": "Point", "coordinates": [ -122.392759, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_sequence": 3266 }, "geometry": { "type": "Point", "coordinates": [ -122.392673, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Williams Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3265 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729317 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 167 }, "geometry": { "type": "Point", "coordinates": [ -122.392588, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Lane St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2937 }, "geometry": { "type": "Point", "coordinates": [ -122.392244, 37.729181 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Yosemite Ave", "tippecanoe:retain_points_multiplier_sequence": 168 }, "geometry": { "type": "Point", "coordinates": [ -122.393017, 37.727891 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2935 }, "geometry": { "type": "Point", "coordinates": [ -122.390442, 37.728095 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2936 }, "geometry": { "type": "Point", "coordinates": [ -122.390270, 37.727891 ] } } -, -{ "type": "Feature", "properties": { "name": "Armstrong Ave & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3313 }, "geometry": { "type": "Point", "coordinates": [ -122.393532, 37.726941 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 141 }, "geometry": { "type": "Point", "coordinates": [ -122.394304, 37.725651 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3236 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Carroll Ave", "tippecanoe:retain_points_multiplier_sequence": 3264 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725515 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Carroll Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 142 }, "geometry": { "type": "Point", "coordinates": [ -122.394218, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_sequence": 144 }, "geometry": { "type": "Point", "coordinates": [ -122.394991, 37.724157 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Egbert Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 145 }, "geometry": { "type": "Point", "coordinates": [ -122.394905, 37.723818 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Fitzgerald Ave", "tippecanoe:retain_points_multiplier_sequence": 3250 }, "geometry": { "type": "Point", "coordinates": [ -122.395248, 37.723139 ] } } -, -{ "type": "Feature", "properties": { "name": "Salinas Ave & Gould St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3458 }, "geometry": { "type": "Point", "coordinates": [ -122.398424, 37.721102 ] } } -, -{ "type": "Feature", "properties": { "name": "Paul Ave & Carr St", "tippecanoe:retain_points_multiplier_sequence": 2226 }, "geometry": { "type": "Point", "coordinates": [ -122.396364, 37.722460 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Salinas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 164 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.720763 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Ingerson Ave", "tippecanoe:retain_points_multiplier_sequence": 152 }, "geometry": { "type": "Point", "coordinates": [ -122.396021, 37.721170 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3262 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Le Conte Ave", "tippecanoe:retain_points_multiplier_sequence": 3290 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Le Conte Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3306 }, "geometry": { "type": "Point", "coordinates": [ -122.397480, 37.718794 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Key St", "tippecanoe:retain_points_multiplier_sequence": 154 }, "geometry": { "type": "Point", "coordinates": [ -122.396708, 37.719745 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3263 }, "geometry": { "type": "Point", "coordinates": [ -122.395678, 37.722392 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street/Gilman/Paul", "tippecanoe:retain_points_multiplier_sequence": 3267 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722460 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Gilman Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 148 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722664 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1373 }, "geometry": { "type": "Point", "coordinates": [ -122.395420, 37.722460 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman St & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3314 }, "geometry": { "type": "Point", "coordinates": [ -122.395592, 37.722324 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1267 }, "geometry": { "type": "Point", "coordinates": [ -122.394819, 37.722868 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1266 }, "geometry": { "type": "Point", "coordinates": [ -122.393360, 37.722053 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 1376 }, "geometry": { "type": "Point", "coordinates": [ -122.393618, 37.721442 ] } } -, -{ "type": "Feature", "properties": { "name": "Van Dyke Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2934 }, "geometry": { "type": "Point", "coordinates": [ -122.388554, 37.727009 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1265 }, "geometry": { "type": "Point", "coordinates": [ -122.391472, 37.720967 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1375 }, "geometry": { "type": "Point", "coordinates": [ -122.391729, 37.720356 ] } } -, -{ "type": "Feature", "properties": { "name": "Fitzgerald Ave & Hawes St", "tippecanoe:retain_points_multiplier_sequence": 1264 }, "geometry": { "type": "Point", "coordinates": [ -122.389584, 37.719948 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3335 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3339 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3336 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.755380 ] } } -, -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.755651 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & 25th St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 138 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753140 ] } } -, -{ "type": "Feature", "properties": { "name": "Muni Metro East/Not a public stop", "tippecanoe:retain_points_multiplier_sequence": 3325 }, "geometry": { "type": "Point", "coordinates": [ -122.386837, 37.752801 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3292 }, "geometry": { "type": "Point", "coordinates": [ -122.387609, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3281 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749069 ] } } -, -{ "type": "Feature", "properties": { "name": "Third Street & Marin St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3272 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.749001 ] } } -, -{ "type": "Feature", "properties": { "name": "Third St & Marin St", "tippecanoe:retain_points_multiplier_sequence": 3291 }, "geometry": { "type": "Point", "coordinates": [ -122.387438, 37.748933 ] } } -, -{ "type": "Feature", "properties": { "name": "3rd St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 143 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.745879 ] } } -, -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_sequence": 1051 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.746082 ] } } -, -{ "type": "Feature", "properties": { "name": "Cargo Way & 3rd St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1052 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.745743 ] } } -, -{ "type": "Feature", "properties": { "name": "Newhall St & Fairfax Ave", "tippecanoe:retain_points_multiplier_sequence": 3321 }, "geometry": { "type": "Point", "coordinates": [ -122.387180, 37.741399 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Evans Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1932 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.740517 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1934 }, "geometry": { "type": "Point", "coordinates": [ -122.383919, 37.742553 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Newhall St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1933 }, "geometry": { "type": "Point", "coordinates": [ -122.383661, 37.742553 ] } } -, -{ "type": "Feature", "properties": { "name": "Cargo Way & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1053 }, "geometry": { "type": "Point", "coordinates": [ -122.383404, 37.743911 ] } } -, -{ "type": "Feature", "properties": { "name": "Mendell St & Cargo Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1931 }, "geometry": { "type": "Point", "coordinates": [ -122.383146, 37.743707 ] } } -, -{ "type": "Feature", "properties": { "name": "MENDELL ST/Opposite US POST OFFICE", "tippecanoe:retain_points_multiplier_sequence": 1936 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.741128 ] } } -, -{ "type": "Feature", "properties": { "name": "MENDELL ST/US POST OFFICE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1935 }, "geometry": { "type": "Point", "coordinates": [ -122.384434, 37.741060 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 3098 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.740924 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1563 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.739024 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Mendell St", "tippecanoe:retain_points_multiplier_sequence": 1562 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.738956 ] } } -, -{ "type": "Feature", "properties": { "name": "Cashmere St & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 746 }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.736580 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Newhall St", "tippecanoe:retain_points_multiplier_sequence": 1210 }, "geometry": { "type": "Point", "coordinates": [ -122.382975, 37.739974 ] } } -, -{ "type": "Feature", "properties": { "name": "EVANS AVE/US Post Office", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3177 }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.739838 ] } } -, -{ "type": "Feature", "properties": { "name": "EVANS AVE/Opposite US Post Office", "tippecanoe:retain_points_multiplier_sequence": 1214 }, "geometry": { "type": "Point", "coordinates": [ -122.382803, 37.739702 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1560 }, "geometry": { "type": "Point", "coordinates": [ -122.384090, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1561 }, "geometry": { "type": "Point", "coordinates": [ -122.384176, 37.737598 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1206 }, "geometry": { "type": "Point", "coordinates": [ -122.381086, 37.738752 ] } } -, -{ "type": "Feature", "properties": { "name": "Keith St & Evans Ave", "tippecanoe:retain_points_multiplier_sequence": 1710 }, "geometry": { "type": "Point", "coordinates": [ -122.381001, 37.738616 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1205 }, "geometry": { "type": "Point", "coordinates": [ -122.380829, 37.738752 ] } } -, -{ "type": "Feature", "properties": { "name": "Middle Point & Acacia", "tippecanoe:retain_points_multiplier_sequence": 3415 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.737055 ] } } -, -{ "type": "Feature", "properties": { "name": "Evans Ave & Middle Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1207 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.737666 ] } } -, -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1928 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.736987 ] } } -, -{ "type": "Feature", "properties": { "name": "Cashmere St & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 745 }, "geometry": { "type": "Point", "coordinates": [ -122.386923, 37.735833 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 2206 }, "geometry": { "type": "Point", "coordinates": [ -122.387352, 37.732032 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Keith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2205 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.731829 ] } } -, -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_sequence": 1711 }, "geometry": { "type": "Point", "coordinates": [ -122.386665, 37.732575 ] } } -, -{ "type": "Feature", "properties": { "name": "Keith St & Oakdale Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1712 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.732372 ] } } -, -{ "type": "Feature", "properties": { "name": "Newcomb Ave & Keith St", "tippecanoe:retain_points_multiplier_sequence": 1917 }, "geometry": { "type": "Point", "coordinates": [ -122.385979, 37.733118 ] } } -, -{ "type": "Feature", "properties": { "name": "Newcomb Ave & La Salle Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1918 }, "geometry": { "type": "Point", "coordinates": [ -122.385035, 37.733186 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Cashmere St", "tippecanoe:retain_points_multiplier_sequence": 1557 }, "geometry": { "type": "Point", "coordinates": [ -122.383490, 37.735969 ] } } -, -{ "type": "Feature", "properties": { "name": "Cashmere St & Hudson Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 744 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.735698 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ardath Ct", "tippecanoe:retain_points_multiplier_sequence": 1556 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.734680 ] } } -, -{ "type": "Feature", "properties": { "name": "La Salle Ave & Newcomb Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1758 }, "geometry": { "type": "Point", "coordinates": [ -122.384777, 37.732983 ] } } -, -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_sequence": 3041 }, "geometry": { "type": "Point", "coordinates": [ -122.383318, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Whitney Young Cir & Progress St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3042 }, "geometry": { "type": "Point", "coordinates": [ -122.383060, 37.733254 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2505 }, "geometry": { "type": "Point", "coordinates": [ -122.386580, 37.729588 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Jennings St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2204 }, "geometry": { "type": "Point", "coordinates": [ -122.385120, 37.730810 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Jennings St", "tippecanoe:retain_points_multiplier_sequence": 2504 }, "geometry": { "type": "Point", "coordinates": [ -122.386322, 37.729520 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1612 }, "geometry": { "type": "Point", "coordinates": [ -122.385635, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 2203 }, "geometry": { "type": "Point", "coordinates": [ -122.383575, 37.729724 ] } } -, -{ "type": "Feature", "properties": { "name": "Revere Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2503 }, "geometry": { "type": "Point", "coordinates": [ -122.384691, 37.728502 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Revere Ave", "tippecanoe:retain_points_multiplier_sequence": 1611 }, "geometry": { "type": "Point", "coordinates": [ -122.384605, 37.728366 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2202 }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.729453 ] } } -, -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_sequence": 1930 }, "geometry": { "type": "Point", "coordinates": [ -122.379456, 37.735019 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Innes Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1610 }, "geometry": { "type": "Point", "coordinates": [ -122.379541, 37.734001 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_sequence": 1565 }, "geometry": { "type": "Point", "coordinates": [ -122.382116, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Whitney Young Cir", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1564 }, "geometry": { "type": "Point", "coordinates": [ -122.381859, 37.733322 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Harbor Rd", "tippecanoe:retain_points_multiplier_sequence": 1609 }, "geometry": { "type": "Point", "coordinates": [ -122.380056, 37.733458 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1558 }, "geometry": { "type": "Point", "coordinates": [ -122.379885, 37.732507 ] } } -, -{ "type": "Feature", "properties": { "name": "Hudson Ave & Ingalls St", "tippecanoe:retain_points_multiplier_sequence": 1559 }, "geometry": { "type": "Point", "coordinates": [ -122.379713, 37.732372 ] } } -, -{ "type": "Feature", "properties": { "name": "Middle Point Rd & West Point Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1929 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.735155 ] } } -, -{ "type": "Feature", "properties": { "name": "MIDDLE POINT RD & HARE ST", "tippecanoe:retain_points_multiplier_sequence": 3164 }, "geometry": { "type": "Point", "coordinates": [ -122.379370, 37.734408 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Ingalls St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2122 }, "geometry": { "type": "Point", "coordinates": [ -122.378941, 37.731625 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_sequence": 1606 }, "geometry": { "type": "Point", "coordinates": [ -122.377224, 37.732915 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Hunters Point Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1607 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.732711 ] } } -, -{ "type": "Feature", "properties": { "name": "La Salle Ave & Osceola Dr", "tippecanoe:retain_points_multiplier_sequence": 1759 }, "geometry": { "type": "Point", "coordinates": [ -122.381687, 37.731353 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Beatrice Ln", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1608 }, "geometry": { "type": "Point", "coordinates": [ -122.380314, 37.730607 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Baldwin Ct", "tippecanoe:retain_points_multiplier_sequence": 2128 }, "geometry": { "type": "Point", "coordinates": [ -122.381344, 37.729385 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2200 }, "geometry": { "type": "Point", "coordinates": [ -122.381430, 37.728706 ] } } -, -{ "type": "Feature", "properties": { "name": "Palou Ave & Crespi Dr", "tippecanoe:retain_points_multiplier_sequence": 2199 }, "geometry": { "type": "Point", "coordinates": [ -122.380228, 37.727959 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Harbor Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2121 }, "geometry": { "type": "Point", "coordinates": [ -122.377052, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Kiska Rd & Reardon Rd", "tippecanoe:retain_points_multiplier_sequence": 1390 }, "geometry": { "type": "Point", "coordinates": [ -122.377138, 37.730064 ] } } -, -{ "type": "Feature", "properties": { "name": "Oakdale Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2129 }, "geometry": { "type": "Point", "coordinates": [ -122.379284, 37.728231 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Van Dyke Ave", "tippecanoe:retain_points_multiplier_sequence": 1614 }, "geometry": { "type": "Point", "coordinates": [ -122.386751, 37.726126 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingalls St & Thomas Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1613 }, "geometry": { "type": "Point", "coordinates": [ -122.385721, 37.727077 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1605 }, "geometry": { "type": "Point", "coordinates": [ -122.375851, 37.731964 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1604 }, "geometry": { "type": "Point", "coordinates": [ -122.375593, 37.732032 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1603 }, "geometry": { "type": "Point", "coordinates": [ -122.374048, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Northridge Rd & Dormitory Rd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2120 }, "geometry": { "type": "Point", "coordinates": [ -122.374477, 37.730267 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Fitch St", "tippecanoe:retain_points_multiplier_sequence": 1602 }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.730946 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1601 }, "geometry": { "type": "Point", "coordinates": [ -122.372160, 37.729860 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes Ave & Earl St", "tippecanoe:retain_points_multiplier_sequence": 1600 }, "geometry": { "type": "Point", "coordinates": [ -122.371902, 37.729860 ] } } -, -{ "type": "Feature", "properties": { "name": "Innes St & Donahue St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1617 }, "geometry": { "type": "Point", "coordinates": [ -122.370186, 37.729113 ] } } -, -{ "type": "Feature", "properties": { "name": "Donahue St & Innes Ave", "tippecanoe:retain_points_multiplier_sequence": 1129 }, "geometry": { "type": "Point", "coordinates": [ -122.369671, 37.729249 ] } } -, -{ "type": "Feature", "properties": { "name": "SPEAR ST & COCHRANE ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3146 }, "geometry": { "type": "Point", "coordinates": [ -122.368727, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "Spear Ave & Cochrane St", "tippecanoe:retain_points_multiplier_sequence": 2653 }, "geometry": { "type": "Point", "coordinates": [ -122.367954, 37.725312 ] } } -, -{ "type": "Feature", "properties": { "name": "ROBINSON ST/Bldg 152", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2447 }, "geometry": { "type": "Point", "coordinates": [ -122.365208, 37.728570 ] } } -, -{ "type": "Feature", "properties": { "name": "Galvez Ave & Horne Ave", "tippecanoe:retain_points_multiplier_sequence": 2021 }, "geometry": { "type": "Point", "coordinates": [ -122.365465, 37.727891 ] } } -, -{ "type": "Feature", "properties": { "name": "Lockwood St & Bldg 214", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3140 }, "geometry": { "type": "Point", "coordinates": [ -122.361002, 37.727348 ] } } -, -{ "type": "Feature", "properties": { "name": "655 John Muir Ave", "tippecanoe:retain_points_multiplier_sequence": 1627 }, "geometry": { "type": "Point", "coordinates": [ -122.497730, 37.717029 ] } } -, -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1625 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716553 ] } } -, -{ "type": "Feature", "properties": { "name": "555 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1626 }, "geometry": { "type": "Point", "coordinates": [ -122.496529, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1623 }, "geometry": { "type": "Point", "coordinates": [ -122.495327, 37.716214 ] } } -, -{ "type": "Feature", "properties": { "name": "515 John Muir Dr", "tippecanoe:retain_points_multiplier_sequence": 1624 }, "geometry": { "type": "Point", "coordinates": [ -122.495413, 37.716078 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1400 }, "geometry": { "type": "Point", "coordinates": [ -122.485371, 37.714856 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1401 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Lake Merced & Brotherhood Way", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1399 }, "geometry": { "type": "Point", "coordinates": [ -122.485113, 37.714584 ] } } -, -{ "type": "Feature", "properties": { "name": "Arballo Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 532 }, "geometry": { "type": "Point", "coordinates": [ -122.483311, 37.717368 ] } } -, -{ "type": "Feature", "properties": { "name": "Garces Dr & Bucareli Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1457 }, "geometry": { "type": "Point", "coordinates": [ -122.481508, 37.716010 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautisa Cir.", "tippecanoe:retain_points_multiplier_sequence": 3465 }, "geometry": { "type": "Point", "coordinates": [ -122.478676, 37.718455 ] } } -, -{ "type": "Feature", "properties": { "name": "Garces Dr & Grijalva Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1459 }, "geometry": { "type": "Point", "coordinates": [ -122.480135, 37.714992 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood way & Grace community Church NE-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3472 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714584 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Grace SE-FS/SB", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3469 }, "geometry": { "type": "Point", "coordinates": [ -122.480221, 37.714517 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Juan Bautista Cir", "tippecanoe:retain_points_multiplier_sequence": 1316 }, "geometry": { "type": "Point", "coordinates": [ -122.477045, 37.717708 ] } } -, -{ "type": "Feature", "properties": { "name": "FONT BLVD & GONZALEZ DR", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3200 }, "geometry": { "type": "Point", "coordinates": [ -122.476015, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Gonzalez Dr & Font Blvd", "tippecanoe:retain_points_multiplier_sequence": 1379 }, "geometry": { "type": "Point", "coordinates": [ -122.475929, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Gonzalez Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1315 }, "geometry": { "type": "Point", "coordinates": [ -122.475758, 37.716757 ] } } -, -{ "type": "Feature", "properties": { "name": "Garces Dr & Gonzalez Dr", "tippecanoe:retain_points_multiplier_sequence": 1458 }, "geometry": { "type": "Point", "coordinates": [ -122.478333, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 862 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Castelo Ave", "tippecanoe:retain_points_multiplier_sequence": 861 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.717436 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 328 }, "geometry": { "type": "Point", "coordinates": [ -122.473011, 37.717300 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1314 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Cambon Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 863 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.716010 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Cambon Dr", "tippecanoe:retain_points_multiplier_sequence": 1313 }, "geometry": { "type": "Point", "coordinates": [ -122.474298, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 785 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } -, -{ "type": "Feature", "properties": { "name": "Font Blvd & Chumasero Dr W-NS/SB", "tippecanoe:retain_points_multiplier_sequence": 3466 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714992 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 784 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 1630 }, "geometry": { "type": "Point", "coordinates": [ -122.472410, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Junipero Serra Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 327 }, "geometry": { "type": "Point", "coordinates": [ -122.472239, 37.716893 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_sequence": 338 }, "geometry": { "type": "Point", "coordinates": [ -122.471638, 37.716214 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Font Blvd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1632 }, "geometry": { "type": "Point", "coordinates": [ -122.471895, 37.714652 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Byxbee St", "tippecanoe:retain_points_multiplier_sequence": 2445 }, "geometry": { "type": "Point", "coordinates": [ -122.470264, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way NW-FS/sb", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3467 }, "geometry": { "type": "Point", "coordinates": [ -122.474556, 37.713770 ] } } -, -{ "type": "Feature", "properties": { "name": "Brotherhood Way & Summit Way SE-FS/SB", "tippecanoe:retain_points_multiplier_sequence": 3470 }, "geometry": { "type": "Point", "coordinates": [ -122.474470, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 786 }, "geometry": { "type": "Point", "coordinates": [ -122.473183, 37.714041 ] } } -, -{ "type": "Feature", "properties": { "name": "Chumasero Dr & Galindo Ave", "tippecanoe:retain_points_multiplier_sequence": 3475 }, "geometry": { "type": "Point", "coordinates": [ -122.473097, 37.714041 ] } } -, -{ "type": "Feature", "properties": { "name": "JUNIPERO SERRA RAMP & BROTHERHOOD WAY", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1671 }, "geometry": { "type": "Point", "coordinates": [ -122.471724, 37.714109 ] } } -, -{ "type": "Feature", "properties": { "name": "Junipero Serra Blvd & Brotherhood Way", "tippecanoe:retain_points_multiplier_sequence": 1631 }, "geometry": { "type": "Point", "coordinates": [ -122.471294, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "name": "19th Ave & Randolph St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 346 }, "geometry": { "type": "Point", "coordinates": [ -122.470007, 37.714449 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph & 19th Ave", "tippecanoe:retain_points_multiplier_sequence": 3143 }, "geometry": { "type": "Point", "coordinates": [ -122.469664, 37.714313 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2441 }, "geometry": { "type": "Point", "coordinates": [ -122.467003, 37.714313 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Arch St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2442 }, "geometry": { "type": "Point", "coordinates": [ -122.467260, 37.714177 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_sequence": 2443 }, "geometry": { "type": "Point", "coordinates": [ -122.463398, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "Randolph St & Bright St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2444 }, "geometry": { "type": "Point", "coordinates": [ -122.463570, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Orizaba Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2168 }, "geometry": { "type": "Point", "coordinates": [ -122.462626, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2279 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Thrift St", "tippecanoe:retain_points_multiplier_sequence": 2289 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.717708 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2286 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Montana St", "tippecanoe:retain_points_multiplier_sequence": 2285 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716553 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2283 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.716010 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Minerva St", "tippecanoe:retain_points_multiplier_sequence": 2284 }, "geometry": { "type": "Point", "coordinates": [ -122.456102, 37.715875 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Lobos St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2280 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.714856 ] } } -, -{ "type": "Feature", "properties": { "name": "Broad St & Capitol Ave", "tippecanoe:retain_points_multiplier_sequence": 592 }, "geometry": { "type": "Point", "coordinates": [ -122.458935, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "PLYMOUTH AVE & BROAD ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3195 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Broad St & Plymouth Ave", "tippecanoe:retain_points_multiplier_sequence": 593 }, "geometry": { "type": "Point", "coordinates": [ -122.456188, 37.713159 ] } } -, -{ "type": "Feature", "properties": { "name": "Plymouth Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2273 }, "geometry": { "type": "Point", "coordinates": [ -122.456017, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Sadowa St", "tippecanoe:retain_points_multiplier_sequence": 2528 }, "geometry": { "type": "Point", "coordinates": [ -122.455931, 37.713226 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3119 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718455 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_sequence": 2518 }, "geometry": { "type": "Point", "coordinates": [ -122.448635, 37.718251 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3121 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_sequence": 2517 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Lakeview Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3122 }, "geometry": { "type": "Point", "coordinates": [ -122.450352, 37.716078 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_sequence": 2508 }, "geometry": { "type": "Point", "coordinates": [ -122.453442, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Broad St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2509 }, "geometry": { "type": "Point", "coordinates": [ -122.453184, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2511 }, "geometry": { "type": "Point", "coordinates": [ -122.452240, 37.713973 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2510 }, "geometry": { "type": "Point", "coordinates": [ -122.452154, 37.714177 ] } } -, -{ "type": "Feature", "properties": { "name": "San Jose Ave & Farallones St", "tippecanoe:retain_points_multiplier_sequence": 2512 }, "geometry": { "type": "Point", "coordinates": [ -122.452068, 37.714041 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Mt Vernon Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2006 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714720 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Allison St", "tippecanoe:retain_points_multiplier_sequence": 1988 }, "geometry": { "type": "Point", "coordinates": [ -122.442627, 37.714449 ] } } -, -{ "type": "Feature", "properties": { "name": "Alemany Blvd & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 527 }, "geometry": { "type": "Point", "coordinates": [ -122.442369, 37.717640 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_sequence": 1436 }, "geometry": { "type": "Point", "coordinates": [ -122.441082, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2001 }, "geometry": { "type": "Point", "coordinates": [ -122.441168, 37.716486 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 2002 }, "geometry": { "type": "Point", "coordinates": [ -122.440825, 37.716621 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Mission St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1437 }, "geometry": { "type": "Point", "coordinates": [ -122.440910, 37.716486 ] } } -, -{ "type": "Feature", "properties": { "name": "Mission St & Amazon Ave", "tippecanoe:retain_points_multiplier_sequence": 1989 }, "geometry": { "type": "Point", "coordinates": [ -122.440395, 37.717165 ] } } -, -{ "type": "Feature", "properties": { "name": "GENEVA AVE & MISSION ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ -122.440739, 37.716418 ] } } -, -{ "type": "Feature", "properties": { "name": "London St & Geneva Ave", "tippecanoe:retain_points_multiplier_sequence": 1757 }, "geometry": { "type": "Point", "coordinates": [ -122.440224, 37.716146 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1441 }, "geometry": { "type": "Point", "coordinates": [ -122.439623, 37.715671 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Paris St", "tippecanoe:retain_points_multiplier_sequence": 1440 }, "geometry": { "type": "Point", "coordinates": [ -122.439280, 37.715739 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Madrid St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1435 }, "geometry": { "type": "Point", "coordinates": [ -122.437563, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1912 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714449 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1438 }, "geometry": { "type": "Point", "coordinates": [ -122.436018, 37.714245 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1914 }, "geometry": { "type": "Point", "coordinates": [ -122.434731, 37.716078 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & France Ave", "tippecanoe:retain_points_multiplier_sequence": 1911 }, "geometry": { "type": "Point", "coordinates": [ -122.433529, 37.717640 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Italy Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2076 }, "geometry": { "type": "Point", "coordinates": [ -122.432327, 37.715128 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Rolph St", "tippecanoe:retain_points_multiplier_sequence": 1915 }, "geometry": { "type": "Point", "coordinates": [ -122.436790, 37.713498 ] } } -, -{ "type": "Feature", "properties": { "name": "Naples St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1913 }, "geometry": { "type": "Point", "coordinates": [ -122.436361, 37.714177 ] } } -, -{ "type": "Feature", "properties": { "name": "Geneva Ave & Naples St", "tippecanoe:retain_points_multiplier_sequence": 1439 }, "geometry": { "type": "Point", "coordinates": [ -122.435932, 37.714041 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & Geneva Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2075 }, "geometry": { "type": "Point", "coordinates": [ -122.433701, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Moscow St & France Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2074 }, "geometry": { "type": "Point", "coordinates": [ -122.431126, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_sequence": 2497 }, "geometry": { "type": "Point", "coordinates": [ -122.430096, 37.718183 ] } } -, -{ "type": "Feature", "properties": { "name": "Russia Ave & Moscow St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2496 }, "geometry": { "type": "Point", "coordinates": [ -122.429838, 37.718115 ] } } -, -{ "type": "Feature", "properties": { "name": "Prague St & Russia Ave", "tippecanoe:retain_points_multiplier_sequence": 2368 }, "geometry": { "type": "Point", "coordinates": [ -122.428207, 37.717572 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2232 }, "geometry": { "type": "Point", "coordinates": [ -122.422800, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "Persia Ave & Brazil Ave", "tippecanoe:retain_points_multiplier_sequence": 2231 }, "geometry": { "type": "Point", "coordinates": [ -122.422543, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "SUNNYDALE AVE/MCLAREN SCHOOL", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2726 }, "geometry": { "type": "Point", "coordinates": [ -122.422199, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "name": "1900 Sunnydale Ave", "tippecanoe:retain_points_multiplier_sequence": 2725 }, "geometry": { "type": "Point", "coordinates": [ -122.421341, 37.713430 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Hahn St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2939 }, "geometry": { "type": "Point", "coordinates": [ -122.415161, 37.713498 ] } } -, -{ "type": "Feature", "properties": { "name": "Hahn St & Visitacion Ave", "tippecanoe:retain_points_multiplier_sequence": 3064 }, "geometry": { "type": "Point", "coordinates": [ -122.415504, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Valley Middle School", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3085 }, "geometry": { "type": "Point", "coordinates": [ -122.413960, 37.716214 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 3258 }, "geometry": { "type": "Point", "coordinates": [ -122.413445, 37.715060 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Elliot St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3259 }, "geometry": { "type": "Point", "coordinates": [ -122.411213, 37.714449 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_sequence": 2941 }, "geometry": { "type": "Point", "coordinates": [ -122.414560, 37.713226 ] } } -, -{ "type": "Feature", "properties": { "name": "Visitacion Ave & Sawyer St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2940 }, "geometry": { "type": "Point", "coordinates": [ -122.414217, 37.713294 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3059 }, "geometry": { "type": "Point", "coordinates": [ -122.407436, 37.717776 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3010 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.717843 ] } } -, -{ "type": "Feature", "properties": { "name": "Delta St & Tioga Ave", "tippecanoe:retain_points_multiplier_sequence": 1128 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.717300 ] } } -, -{ "type": "Feature", "properties": { "name": "Tioga Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3082 }, "geometry": { "type": "Point", "coordinates": [ -122.407608, 37.717165 ] } } -, -{ "type": "Feature", "properties": { "name": "Tioga Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3083 }, "geometry": { "type": "Point", "coordinates": [ -122.405806, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3089 }, "geometry": { "type": "Point", "coordinates": [ -122.405205, 37.717368 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3088 }, "geometry": { "type": "Point", "coordinates": [ -122.405462, 37.717232 ] } } -, -{ "type": "Feature", "properties": { "name": "356 Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3007 }, "geometry": { "type": "Point", "coordinates": [ -122.404346, 37.717029 ] } } -, -{ "type": "Feature", "properties": { "name": "Rutland St & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 3074 }, "geometry": { "type": "Point", "coordinates": [ -122.406149, 37.715331 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Delta St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3257 }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.713838 ] } } -, -{ "type": "Feature", "properties": { "name": "Raymond Ave & Rutland St", "tippecanoe:retain_points_multiplier_sequence": 3256 }, "geometry": { "type": "Point", "coordinates": [ -122.407179, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Arleta Ave & Alpha St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 545 }, "geometry": { "type": "Point", "coordinates": [ -122.404947, 37.713226 ] } } -, -{ "type": "Feature", "properties": { "name": "367 Wilde Ave", "tippecanoe:retain_points_multiplier_sequence": 3008 }, "geometry": { "type": "Point", "coordinates": [ -122.404089, 37.716893 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3014 }, "geometry": { "type": "Point", "coordinates": [ -122.402287, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Goettingen St", "tippecanoe:retain_points_multiplier_sequence": 3013 }, "geometry": { "type": "Point", "coordinates": [ -122.402201, 37.716078 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3011 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716621 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Girard St", "tippecanoe:retain_points_multiplier_sequence": 3012 }, "geometry": { "type": "Point", "coordinates": [ -122.400227, 37.716486 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Wilde Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2581 }, "geometry": { "type": "Point", "coordinates": [ -122.399969, 37.716689 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_sequence": 3009 }, "geometry": { "type": "Point", "coordinates": [ -122.401257, 37.716350 ] } } -, -{ "type": "Feature", "properties": { "name": "Wilde Ave & Brussels St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3087 }, "geometry": { "type": "Point", "coordinates": [ -122.400999, 37.716282 ] } } -, -{ "type": "Feature", "properties": { "name": "3800 San Bruno Ave", "tippecanoe:retain_points_multiplier_sequence": 2567 }, "geometry": { "type": "Point", "coordinates": [ -122.400570, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "3801 San Bruno Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2568 }, "geometry": { "type": "Point", "coordinates": [ -122.400484, 37.714652 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Campbell Ave", "tippecanoe:retain_points_multiplier_sequence": 636 }, "geometry": { "type": "Point", "coordinates": [ -122.399368, 37.714788 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 640 }, "geometry": { "type": "Point", "coordinates": [ -122.398939, 37.714992 ] } } -, -{ "type": "Feature", "properties": { "name": "San Bruno Ave & Somerset St", "tippecanoe:retain_points_multiplier_sequence": 2578 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.713838 ] } } -, -{ "type": "Feature", "properties": { "name": "SAN BRUNO AVE & SOMERSET ST", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3167 }, "geometry": { "type": "Point", "coordinates": [ -122.402029, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Bay Shore Blvd & Hester Ave", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 641 }, "geometry": { "type": "Point", "coordinates": [ -122.400055, 37.713566 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Hawes St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1616 }, "geometry": { "type": "Point", "coordinates": [ -122.390957, 37.718047 ] } } -, -{ "type": "Feature", "properties": { "name": "Ingerson Ave & Griffith St", "tippecanoe:retain_points_multiplier_sequence": 1615 }, "geometry": { "type": "Point", "coordinates": [ -122.389240, 37.717029 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Griffith St", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1374 }, "geometry": { "type": "Point", "coordinates": [ -122.388296, 37.718251 ] } } -, -{ "type": "Feature", "properties": { "name": "JAMESTOWN AVE & CANDLESTICK PARK", "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ -122.388725, 37.714381 ] } } -, -{ "type": "Feature", "properties": { "name": "49ERS DRIVE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.713362 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Bill Walsh Way", "tippecanoe:retain_points_multiplier_sequence": 2274 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -, -{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3261 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } -] } +{ "type": "Feature", "properties": { "name": "Gilman Ave & Giants Dr", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2807 }, "geometry": { "type": "Point", "coordinates": [ -122.387009, 37.717504 ] } } +] } , { "type": "FeatureCollection", "properties": { "layer": "subway", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } -, -{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.435331, 37.762708 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } +{ "type": "Feature", "properties": { "name": "Metro Castro Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.435246, 37.762641 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } +{ "type": "Feature", "properties": { "name": "Metro Forest Hill Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -122.458591, 37.748322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -122.402115, 37.788760 ] } } , -{ "type": "Feature", "properties": { "name": "Van Ness Station Outbound", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.419367, 37.775260 ] } } +{ "type": "Feature", "properties": { "name": "Metro Montgomery Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -122.401943, 37.788692 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775125 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.396536, 37.793033 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Embarcadero Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -122.396450, 37.793168 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.412500, 37.780348 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.419195, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } +{ "type": "Feature", "properties": { "name": "Metro Van Ness Station/Downtown", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.419281, 37.775057 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Outbd", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.414989, 37.778652 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Church Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -122.429152, 37.767187 ] } } +{ "type": "Feature", "properties": { "name": "Metro Civic Center Station/Downtn", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.414818, 37.778517 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } +{ "type": "Feature", "properties": { "name": "Metro Church Station/Outbound", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -122.429323, 37.767322 ] } } , -{ "type": "Feature", "properties": { "name": "Metro Powell Station/Downtown", "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -122.407694, 37.784215 ] } } +{ "type": "Feature", "properties": { "name": "Metro Powell Station/Outbound", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -122.407780, 37.784283 ] } } ] } ] } , @@ -14090,15 +12192,15 @@ { "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , -{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } +{ "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , { "type": "Feature", "properties": { "name": "REFERENCE & REFERENCE", "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -12.239971, 37.820023 ] } } , diff --git a/tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json b/tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json index 4657b4732..149ecabb3 100644 --- a/tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json +++ b/tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "45.000000,33.256630,2", "description": "tests/ne_110m_admin_0_countries/out/--coalesce_-z2_-Ccat.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json b/tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json index 0bfda68a6..833c98858 100644 --- a/tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json +++ b/tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-B10_-z0_--retain-points-multiplier_10_-d8_-yNAME.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-R5%2f17%2f11.json b/tests/ne_110m_admin_0_countries/out/-R5%2f17%2f11.json index 574c9f5cd..976be07cc 100644 --- a/tests/ne_110m_admin_0_countries/out/-R5%2f17%2f11.json +++ b/tests/ne_110m_admin_0_countries/out/-R5%2f17%2f11.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-R5%2f17%2f11.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json index 63520a114..b2d1c4c89 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json.check.mbtiles", @@ -9,56 +9,44 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":167,\"tile_size_desired\":39239},{\"dropped_as_needed\":184,\"tile_size_desired\":25163},{\"dropped_as_needed\":160,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":133,\"tile_size_desired\":10758},{\"dropped_as_needed\":58,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"strategies": "[{\"dropped_as_needed\":172,\"tile_size_desired\":39270},{\"dropped_as_needed\":199,\"tile_size_desired\":25172},{\"dropped_as_needed\":169,\"tile_size_desired\":21223},{\"dropped_as_needed\":150,\"tile_size_desired\":10751},{\"dropped_as_needed\":60,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", "tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "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": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.105999 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 48.048710 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.437857 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.840291 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.836828 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.388672, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -74.003906, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.244696 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.472656, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.669922, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.281250, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.410156, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.656250, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -140.009766, 60.283408 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.185547, 71.910888 ], [ -93.867188, 71.746432 ], [ -92.900391, 71.328950 ], [ -91.494141, 70.199994 ], [ -92.373047, 69.687618 ], [ -90.527344, 69.503765 ], [ -90.527344, 68.463800 ], [ -89.208984, 69.256149 ], [ -87.978516, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.908619 ], [ -85.605469, 68.784144 ], [ -85.517578, 69.869892 ], [ -84.111328, 69.809309 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -81.210938, 68.656555 ], [ -82.001953, 68.138852 ], [ -81.298828, 67.609221 ], [ -81.386719, 67.101656 ], [ -83.320312, 66.407955 ], [ -84.726562, 66.266856 ], [ -85.781250, 66.548263 ], [ -86.044922, 66.053716 ], [ -87.011719, 65.219894 ], [ -87.363281, 64.774125 ], [ -88.505859, 64.091408 ], [ -89.912109, 64.014496 ], [ -90.703125, 63.626745 ], [ -90.791016, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.218750, 60.887700 ], [ -94.658203, 60.108670 ], [ -94.658203, 58.950008 ], [ -93.251953, 58.768200 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -89.033203, 56.848972 ], [ -88.066406, 56.462490 ], [ -87.363281, 56.022948 ], [ -86.044922, 55.727110 ], [ -84.990234, 55.279115 ], [ -82.265625, 55.128649 ], [ -82.441406, 54.265224 ], [ -82.089844, 53.278353 ], [ -81.386719, 52.160455 ], [ -79.892578, 51.234407 ], [ -79.101562, 51.508742 ], [ -78.574219, 52.536273 ], [ -79.101562, 54.162434 ], [ -79.804688, 54.673831 ], [ -78.222656, 55.128649 ], [ -77.080078, 55.825973 ], [ -76.552734, 56.511018 ], [ -76.640625, 57.183902 ], [ -77.343750, 58.031372 ], [ -78.486328, 58.813742 ], [ -77.343750, 59.844815 ], [ -77.783203, 60.759160 ], [ -78.134766, 62.308794 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.828125, 62.431074 ], [ -71.718750, 61.522695 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.609375, 60.239811 ], [ -69.257812, 58.950008 ], [ -68.378906, 58.813742 ], [ -67.675781, 58.217025 ], [ -66.181641, 58.768200 ], [ -65.214844, 59.888937 ], [ -64.599609, 60.326948 ], [ -61.435547, 56.944974 ], [ -61.787109, 56.316537 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.229023 ], [ -58.007812, 54.927142 ], [ -57.304688, 54.622978 ], [ -56.953125, 53.800651 ], [ -56.162109, 53.644638 ], [ -55.722656, 53.278353 ], [ -55.722656, 52.160455 ], [ -57.128906, 51.399206 ], [ -58.798828, 51.069017 ], [ -60.029297, 50.233152 ], [ -61.699219, 50.064192 ], [ -63.896484, 50.289339 ], [ -66.357422, 50.233152 ], [ -67.236328, 49.496675 ], [ -68.554688, 49.095452 ], [ -71.103516, 46.800059 ], [ -70.224609, 46.980252 ], [ -68.642578, 48.283193 ], [ -66.533203, 49.152970 ], [ -65.039062, 49.210420 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.048710 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 46.980252 ], [ -60.468750, 46.255847 ], [ -59.765625, 45.890008 ], [ -60.996094, 45.274886 ], [ -63.281250, 44.653024 ], [ -64.248047, 44.276671 ], [ -65.390625, 43.516689 ], [ -66.093750, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.763672, 45.706179 ], [ -67.763672, 47.040182 ], [ -68.203125, 47.338823 ], [ -68.906250, 47.159840 ], [ -69.257812, 47.457809 ], [ -69.960938, 46.679594 ], [ -70.312500, 45.890008 ], [ -70.664062, 45.460131 ], [ -71.367188, 45.274886 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -75.322266, 44.840291 ], [ -76.464844, 44.024422 ], [ -76.816406, 43.644026 ], [ -78.750000, 43.644026 ], [ -79.189453, 43.452919 ], [ -78.925781, 42.875964 ], [ -80.244141, 42.358544 ], [ -81.298828, 42.228517 ], [ -82.441406, 41.705729 ], [ -82.705078, 41.705729 ], [ -83.056641, 41.836828 ], [ -83.144531, 42.098222 ], [ -82.441406, 43.004647 ], [ -82.177734, 43.580391 ], [ -82.529297, 45.336702 ], [ -83.583984, 45.828799 ], [ -83.496094, 46.012224 ], [ -83.583984, 46.134170 ], [ -83.847656, 46.134170 ], [ -84.111328, 46.255847 ], [ -84.111328, 46.498392 ], [ -84.375000, 46.437857 ], [ -84.638672, 46.437857 ], [ -84.550781, 46.558860 ], [ -84.814453, 46.619261 ], [ -84.902344, 46.920255 ], [ -88.417969, 48.283193 ], [ -89.296875, 48.048710 ], [ -89.560547, 47.989922 ], [ -90.791016, 48.283193 ], [ -91.669922, 48.166085 ], [ -92.636719, 48.458352 ], [ -94.306641, 48.690960 ], [ -94.658203, 48.864715 ], [ -94.833984, 49.382373 ], [ -95.185547, 49.382373 ], [ -95.185547, 48.980217 ], [ -122.958984, 48.980217 ], [ -125.595703, 50.401515 ], [ -127.441406, 50.847573 ], [ -127.968750, 51.727028 ], [ -127.880859, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.540307 ], [ -130.517578, 54.265224 ], [ -130.517578, 54.826008 ], [ -129.990234, 55.279115 ], [ -129.990234, 55.924586 ], [ -131.748047, 56.559482 ], [ -133.330078, 58.401712 ], [ -134.912109, 59.265881 ], [ -135.439453, 59.800634 ], [ -136.494141, 59.445075 ], [ -137.460938, 58.904646 ], [ -139.042969, 60.020952 ], [ -140.009766, 60.283408 ], [ -140.976562, 60.326948 ], [ -140.976562, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 69.005675 ], [ -136.494141, 68.911005 ], [ -135.615234, 69.318320 ], [ -134.384766, 69.626510 ], [ -132.890625, 69.503765 ], [ -131.396484, 69.930300 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.320312, 70.020587 ], [ -128.144531, 70.495574 ], [ -127.441406, 70.377854 ], [ -125.771484, 69.472969 ], [ -124.453125, 70.170201 ], [ -124.277344, 69.411242 ], [ -123.046875, 69.565226 ], [ -122.695312, 69.869892 ], [ -121.464844, 69.809309 ], [ -119.970703, 69.380313 ], [ -117.597656, 69.005675 ], [ -116.191406, 68.847665 ], [ -115.224609, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.466797, 67.676085 ], [ -110.830078, 67.809245 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.753906, 67.875541 ], [ -108.808594, 68.301905 ], [ -108.193359, 68.656555 ], [ -106.962891, 68.688521 ], [ -106.171875, 68.784144 ], [ -105.380859, 68.560384 ], [ -104.326172, 68.007571 ], [ -103.183594, 68.106102 ], [ -101.425781, 67.642676 ], [ -99.931641, 67.809245 ], [ -98.437500, 67.776025 ], [ -98.525391, 68.399180 ], [ -97.646484, 68.592487 ], [ -96.152344, 68.236823 ], [ -96.152344, 67.305976 ], [ -95.449219, 68.106102 ], [ -94.658203, 68.073305 ], [ -94.218750, 69.068563 ], [ -95.273438, 69.687618 ], [ -96.503906, 70.080562 ], [ -96.416016, 71.187754 ], [ -95.185547, 71.910888 ] ] ], [ [ [ -79.892578, 62.390369 ], [ -79.541016, 62.349609 ], [ -79.277344, 62.144976 ], [ -79.628906, 61.648162 ], [ -80.068359, 61.731526 ], [ -80.332031, 62.021528 ], [ -79.892578, 62.390369 ] ] ], [ [ [ -63.984375, 47.040182 ], [ -63.632812, 46.558860 ], [ -62.929688, 46.437857 ], [ -62.050781, 46.437857 ], [ -62.490234, 46.012224 ], [ -62.841797, 45.951150 ], [ -64.160156, 46.377254 ], [ -64.423828, 46.739861 ], [ -63.984375, 47.040182 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.714462 ], [ -83.056641, 62.144976 ], [ -83.759766, 62.186014 ], [ -84.023438, 62.471724 ], [ -83.232422, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -55.898438, 51.618017 ], [ -55.371094, 51.563412 ], [ -56.777344, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.458984, 49.951220 ], [ -55.810547, 49.610710 ], [ -54.931641, 49.325122 ], [ -54.492188, 49.553726 ], [ -53.437500, 49.267805 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.646484, 47.517201 ], [ -53.085938, 46.679594 ], [ -53.525391, 46.619261 ], [ -54.140625, 46.800059 ], [ -53.964844, 47.635784 ], [ -54.228516, 47.754098 ], [ -55.371094, 46.860191 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -59.238281, 47.576526 ], [ -59.414062, 47.872144 ], [ -58.798828, 48.224673 ], [ -59.238281, 48.516604 ], [ -58.359375, 49.152970 ], [ -57.392578, 50.736455 ], [ -56.777344, 51.289406 ], [ -55.898438, 51.618017 ] ] ], [ [ [ -98.261719, 70.140364 ], [ -96.591797, 69.687618 ], [ -95.625000, 69.099940 ], [ -96.240234, 68.752315 ], [ -97.646484, 69.068563 ], [ -98.437500, 68.942607 ], [ -99.755859, 69.411242 ], [ -98.876953, 69.718107 ], [ -98.261719, 70.140364 ] ] ], [ [ [ -115.224609, 73.302624 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.412109, 72.945431 ], [ -111.093750, 72.448792 ], [ -109.951172, 72.971189 ], [ -108.984375, 72.633374 ], [ -108.193359, 71.663663 ], [ -107.666016, 72.073911 ], [ -108.369141, 73.099413 ], [ -107.490234, 73.226700 ], [ -106.523438, 73.073844 ], [ -105.380859, 72.659588 ], [ -104.501953, 70.988349 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.595890 ], [ -102.744141, 69.503765 ], [ -102.128906, 69.131271 ], [ -102.392578, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.996094, 69.193800 ], [ -107.138672, 69.131271 ], [ -108.984375, 68.784144 ], [ -113.291016, 68.528235 ], [ -113.818359, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -115.136719, 70.229744 ], [ -113.730469, 70.199994 ], [ -112.412109, 70.377854 ], [ -114.345703, 70.612614 ], [ -116.455078, 70.524897 ], [ -117.861328, 70.554179 ], [ -118.388672, 70.902268 ], [ -116.103516, 71.300793 ], [ -117.685547, 71.300793 ], [ -119.443359, 71.552741 ], [ -118.564453, 72.315785 ], [ -117.861328, 72.711903 ], [ -115.224609, 73.302624 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -65.830078, 83.026219 ], [ -63.720703, 82.896987 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.367483 ], [ -64.335938, 81.923186 ], [ -66.796875, 81.723188 ], [ -67.675781, 81.505299 ], [ -65.478516, 81.505299 ], [ -67.851562, 80.900669 ], [ -69.433594, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.212891, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.904297, 79.318942 ], [ -75.498047, 79.204309 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -76.376953, 78.188586 ], [ -77.871094, 77.897255 ], [ -78.398438, 77.504119 ], [ -79.716797, 77.215640 ], [ -79.628906, 76.980149 ], [ -77.871094, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.144531, 76.455203 ], [ -86.132812, 76.289542 ], [ -87.626953, 76.413973 ], [ -89.472656, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.626953, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.308594, 78.188586 ], [ -87.978516, 78.367146 ], [ -87.187500, 78.750659 ], [ -85.341797, 79.004962 ], [ -85.078125, 79.351472 ], [ -86.484375, 79.734281 ], [ -86.923828, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.103470 ], [ -81.826172, 80.459509 ], [ -84.111328, 80.575346 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.175781, 81.255032 ], [ -91.406250, 81.557074 ], [ -91.582031, 81.898451 ], [ -90.087891, 82.082145 ], [ -88.945312, 82.118384 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.597439 ], [ -83.144531, 82.320646 ], [ -82.441406, 82.864308 ], [ -81.123047, 83.015539 ], [ -79.277344, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -85.869141, 73.800318 ], [ -86.572266, 73.150440 ], [ -85.781250, 72.528130 ], [ -84.814453, 73.327858 ], [ -82.353516, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.771484, 72.073911 ], [ -78.750000, 72.342464 ], [ -77.783203, 72.738003 ], [ -75.585938, 72.235514 ], [ -74.267578, 71.773941 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.931004 ], [ -68.818359, 70.524897 ], [ -67.939453, 70.110485 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.445312, 68.073305 ], [ -64.863281, 67.842416 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.861082 ], [ -62.138672, 66.160511 ], [ -63.896484, 64.997939 ], [ -65.126953, 65.440002 ], [ -66.708984, 66.372755 ], [ -68.027344, 66.266856 ], [ -68.115234, 65.694476 ], [ -67.060547, 65.109148 ], [ -65.742188, 64.661517 ], [ -65.302734, 64.396938 ], [ -64.687500, 63.391522 ], [ -65.039062, 62.674143 ], [ -66.269531, 62.955223 ], [ -68.818359, 63.743631 ], [ -66.357422, 62.267923 ], [ -66.181641, 61.938950 ], [ -68.906250, 62.349609 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.665760 ], [ -74.794922, 64.661517 ], [ -74.794922, 64.396938 ], [ -77.695312, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.871094, 65.293468 ], [ -76.025391, 65.330178 ], [ -73.916016, 65.440002 ], [ -74.267578, 65.802776 ], [ -73.916016, 66.302205 ], [ -72.685547, 67.272043 ], [ -72.949219, 67.742759 ], [ -73.300781, 68.073305 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.879358 ], [ -76.201172, 69.162558 ], [ -77.255859, 69.778952 ], [ -78.134766, 69.839622 ], [ -78.925781, 70.170201 ], [ -79.453125, 69.869892 ], [ -81.298828, 69.748551 ], [ -84.902344, 69.960439 ], [ -87.099609, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.472656, 70.757966 ], [ -88.505859, 71.216075 ], [ -89.912109, 71.216075 ], [ -90.175781, 72.235514 ], [ -89.472656, 73.124945 ], [ -88.417969, 73.528399 ], [ -85.869141, 73.800318 ] ] ], [ [ [ -92.373047, 81.255032 ], [ -91.142578, 80.718183 ], [ -87.802734, 80.312728 ], [ -87.011719, 79.655668 ], [ -85.781250, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.296044 ], [ -90.791016, 78.206563 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.750659 ], [ -93.955078, 79.121686 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.367701 ], [ -96.064453, 79.702907 ], [ -96.679688, 80.163710 ], [ -95.976562, 80.604086 ], [ -95.361328, 80.900669 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.201420 ], [ -92.373047, 81.255032 ] ] ], [ [ [ -128.320312, 50.792047 ], [ -126.738281, 50.401515 ], [ -125.771484, 50.289339 ], [ -124.892578, 49.496675 ], [ -123.925781, 49.037868 ], [ -123.486328, 48.516604 ], [ -124.013672, 48.341646 ], [ -125.683594, 48.806863 ], [ -125.947266, 49.152970 ], [ -126.826172, 49.553726 ], [ -127.001953, 49.837982 ], [ -128.056641, 50.007739 ], [ -128.408203, 50.513427 ], [ -128.320312, 50.792047 ] ] ], [ [ [ -96.767578, 77.157163 ], [ -94.658203, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.582031, 76.780655 ], [ -90.703125, 76.455203 ], [ -90.966797, 76.079668 ], [ -89.824219, 75.845169 ], [ -89.208984, 75.606801 ], [ -86.396484, 75.475131 ], [ -84.814453, 75.693931 ], [ -82.792969, 75.780545 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.804688, 74.913708 ], [ -80.419922, 74.660016 ], [ -81.914062, 74.449358 ], [ -83.232422, 74.566736 ], [ -86.132812, 74.402163 ], [ -88.154297, 74.402163 ], [ -89.736328, 74.519889 ], [ -92.460938, 74.844929 ], [ -92.724609, 75.386696 ], [ -92.900391, 75.888091 ], [ -93.867188, 76.310358 ], [ -95.976562, 76.434604 ], [ -97.119141, 76.760541 ], [ -96.767578, 77.157163 ] ] ], [ [ [ -64.160156, 49.951220 ], [ -62.841797, 49.724479 ], [ -61.875000, 49.267805 ], [ -61.787109, 49.095452 ], [ -62.314453, 49.095452 ], [ -63.632812, 49.382373 ], [ -64.511719, 49.894634 ], [ -64.160156, 49.951220 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.146484, 74.235878 ], [ -117.597656, 74.188052 ], [ -116.542969, 73.898111 ], [ -115.488281, 73.478485 ], [ -116.806641, 73.226700 ], [ -119.179688, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.328950 ], [ -125.947266, 71.856229 ], [ -124.804688, 73.022592 ], [ -123.925781, 73.677264 ], [ -124.892578, 74.283563 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -133.154297, 54.162434 ], [ -132.714844, 54.059388 ], [ -131.748047, 54.110943 ], [ -132.011719, 52.961875 ], [ -131.220703, 52.160455 ], [ -131.572266, 52.160455 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.120405 ], [ -133.066406, 53.435719 ], [ -133.242188, 53.852527 ], [ -133.154297, 54.162434 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.544922, 76.679785 ], [ -107.841797, 75.845169 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -105.732422, 75.475131 ], [ -106.347656, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.425777 ], [ -113.730469, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.279297, 75.050354 ], [ -117.685547, 75.230667 ], [ -116.367188, 76.205967 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.541113 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.140625, 73.627789 ], [ -97.382812, 73.751205 ], [ -97.119141, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.503906, 72.554498 ], [ -96.679688, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.746432 ], [ -102.480469, 72.501722 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.513672, 73.353055 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -116.191406, 77.636542 ], [ -116.367188, 76.880775 ], [ -117.070312, 76.537296 ], [ -118.037109, 76.475773 ], [ -119.882812, 76.058508 ], [ -121.464844, 75.909504 ], [ -122.871094, 76.121893 ], [ -121.201172, 76.860810 ], [ -119.091797, 77.504119 ], [ -117.597656, 77.504119 ], [ -116.191406, 77.636542 ] ] ], [ [ [ -85.869141, 65.730626 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.847656, 65.109148 ], [ -81.650391, 64.472794 ], [ -81.562500, 63.975961 ], [ -80.859375, 64.052978 ], [ -80.068359, 63.743631 ], [ -80.947266, 63.430860 ], [ -82.529297, 63.665760 ], [ -83.144531, 64.091408 ], [ -84.111328, 63.587675 ], [ -85.517578, 63.035039 ], [ -85.869141, 63.626745 ], [ -87.187500, 63.548552 ], [ -86.396484, 64.052978 ], [ -85.869141, 65.730626 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.734375, 76.247817 ], [ -97.734375, 75.737303 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.890816 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.650431 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.331142 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.639226 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ], [ [ [ -94.482422, 74.140084 ], [ -92.460938, 74.091974 ], [ -90.527344, 73.849286 ], [ -92.021484, 72.971189 ], [ -93.164062, 72.764065 ], [ -94.306641, 72.019729 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -95.976562, 73.428424 ], [ -95.537109, 73.873717 ], [ -94.482422, 74.140084 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -103.535156, 79.171335 ], [ -100.810547, 78.801980 ], [ -100.019531, 78.331648 ], [ -99.667969, 77.915669 ], [ -101.337891, 78.025574 ], [ -102.919922, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.380859, 78.920832 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -80.332031, 73.751205 ], [ -78.046875, 73.652545 ], [ -76.376953, 73.099413 ], [ -76.289062, 72.816074 ], [ -78.398438, 72.867930 ], [ -79.453125, 72.738003 ], [ -79.804688, 72.790088 ], [ -80.859375, 73.327858 ], [ -80.859375, 73.701948 ], [ -80.332031, 73.751205 ] ] ], [ [ [ -98.613281, 78.870048 ], [ -97.294922, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.537109, 78.420193 ], [ -95.800781, 78.061989 ], [ -97.294922, 77.841848 ], [ -98.085938, 78.080156 ], [ -98.525391, 78.455425 ], [ -98.613281, 78.870048 ] ] ], [ [ [ -75.937500, 68.301905 ], [ -75.146484, 68.007571 ], [ -75.146484, 67.575717 ], [ -75.234375, 67.441229 ], [ -75.849609, 67.135829 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.575717 ], [ -76.816406, 68.138852 ], [ -75.937500, 68.301905 ] ] ], [ [ [ -94.833984, 75.650431 ], [ -93.955078, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.130859, 74.590108 ], [ -95.625000, 74.660016 ], [ -96.855469, 74.936567 ], [ -96.328125, 75.386696 ], [ -94.833984, 75.650431 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.989049 ], [ -110.214844, 77.692870 ], [ -112.060547, 77.408678 ], [ -113.554688, 77.730282 ], [ -112.763672, 78.043795 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -105.292969, 73.627789 ], [ -104.501953, 73.428424 ], [ -105.380859, 72.764065 ], [ -106.962891, 73.453473 ], [ -106.611328, 73.602996 ], [ -105.292969, 73.627789 ] ] ], [ [ [ -111.533203, 78.853070 ], [ -111.005859, 78.801980 ], [ -109.687500, 78.595299 ], [ -110.917969, 78.402537 ], [ -112.500000, 78.402537 ], [ -112.500000, 78.543044 ], [ -111.533203, 78.853070 ] ] ], [ [ [ -96.416016, 77.841848 ], [ -94.394531, 77.823323 ], [ -93.691406, 77.636542 ], [ -93.867188, 77.523122 ], [ -94.306641, 77.485088 ], [ -96.152344, 77.561042 ], [ -96.416016, 77.841848 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.068359, 83.647837 ], [ -27.070312, 83.520162 ], [ -20.830078, 82.732092 ], [ -22.675781, 82.344100 ], [ -26.542969, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.873047, 81.786210 ], [ -22.939453, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.203125, 81.147481 ], [ -20.654297, 81.518272 ], [ -15.732422, 81.910828 ], [ -12.744141, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.259766, 80.575346 ], [ -16.875000, 80.356995 ], [ -20.039062, 80.178713 ], [ -17.753906, 80.133635 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.980149 ], [ -20.039062, 76.940488 ], [ -21.708984, 76.618901 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.163300 ], [ -19.335938, 74.307353 ], [ -21.621094, 74.211983 ], [ -20.390625, 73.824820 ], [ -20.742188, 73.453473 ], [ -22.148438, 73.302624 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.181804 ], [ -24.257812, 72.607120 ], [ -24.785156, 72.342464 ], [ -23.466797, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.324219, 70.140364 ], [ -25.048828, 69.256149 ], [ -27.773438, 68.463800 ], [ -30.673828, 68.138852 ], [ -31.816406, 68.106102 ], [ -32.783203, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.386719, 65.982270 ], [ -37.001953, 65.946472 ], [ -39.814453, 65.476508 ], [ -40.693359, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.220703, 63.470145 ], [ -42.802734, 62.674143 ], [ -42.451172, 61.897578 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.020952 ], [ -46.230469, 60.844911 ], [ -48.251953, 60.844911 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.591797, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.701172, 66.089364 ], [ -53.261719, 66.826520 ], [ -53.964844, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.720441 ], [ -51.064453, 69.162558 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.411242 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.595890 ], [ -54.755859, 70.289117 ], [ -54.316406, 70.815812 ], [ -53.437500, 70.844673 ], [ -51.416016, 70.583418 ], [ -53.964844, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.810547, 71.663663 ], [ -54.755859, 72.580829 ], [ -55.283203, 72.971189 ], [ -57.304688, 74.706450 ], [ -58.623047, 75.095633 ], [ -58.623047, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.369141, 76.184995 ], [ -68.466797, 76.058508 ], [ -69.697266, 76.372619 ], [ -71.367188, 76.999935 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.370301 ], [ -71.015625, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.125000, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.302734, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.886056 ], [ -50.361328, 82.437205 ], [ -47.988281, 82.070028 ], [ -46.582031, 81.984696 ], [ -44.560547, 81.659685 ], [ -46.933594, 82.202302 ], [ -46.757812, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.583984, 83.549851 ], [ -35.068359, 83.647837 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.513260 ], [ -14.501953, 66.443107 ], [ -14.765625, 65.802776 ], [ -13.623047, 65.109148 ], [ -14.941406, 64.358931 ], [ -18.632812, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.396938 ], [ -23.994141, 64.886265 ], [ -22.148438, 65.072130 ], [ -22.236328, 65.366837 ], [ -24.345703, 65.622023 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.266856 ], [ -17.841797, 65.982270 ], [ -16.171875, 66.513260 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.406109 ], [ -77.871094, 0.790990 ], [ -77.695312, 0.790990 ], [ -77.431641, 0.439449 ], [ -76.552734, 0.263671 ], [ -76.289062, 0.439449 ], [ -75.410156, -0.175781 ], [ -75.234375, -0.878872 ], [ -75.585938, -1.581830 ], [ -76.640625, -2.635789 ], [ -77.871094, -2.986927 ], [ -78.486328, -3.864255 ], [ -78.662109, -4.565474 ], [ -79.189453, -4.915833 ], [ -79.628906, -4.477856 ], [ -80.068359, -4.302591 ], [ -80.419922, -4.390229 ], [ -80.507812, -4.039618 ], [ -80.156250, -3.864255 ], [ -80.332031, -3.425692 ], [ -79.804688, -2.635789 ], [ -79.980469, -2.196727 ], [ -80.332031, -2.723583 ], [ -80.947266, -2.284551 ], [ -80.771484, -1.933227 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.878872 ], [ -79.980469, 0.351560 ], [ -80.068359, 0.790990 ], [ -78.837891, 1.406109 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.113281, 69.565226 ], [ 29.443359, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.773438, 70.170201 ], [ 26.191406, 69.839622 ], [ 25.664062, 69.099940 ], [ 24.697266, 68.656555 ], [ 23.642578, 68.879358 ], [ 22.324219, 68.847665 ], [ 21.269531, 69.380313 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 18.017578, 68.560384 ], [ 17.753906, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.774125 ], [ 13.886719, 64.434892 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.052978 ], [ 11.953125, 63.114638 ], [ 11.953125, 61.814664 ], [ 12.656250, 61.312452 ], [ 12.304688, 60.108670 ], [ 11.425781, 59.445075 ], [ 10.986328, 58.859224 ], [ 10.371094, 59.489726 ], [ 8.349609, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.585436 ], [ 5.273438, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.888672, 62.633770 ], [ 8.525391, 63.470145 ], [ 10.546875, 64.472794 ], [ 12.392578, 65.874725 ], [ 14.765625, 67.809245 ], [ 19.160156, 69.809309 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.521484, 71.016960 ], [ 26.367188, 70.988349 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 18.281250, 79.702907 ], [ 21.533203, 78.954560 ], [ 18.984375, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.800739 ], [ 15.908203, 76.760541 ], [ 13.798828, 77.389504 ], [ 14.677734, 77.730282 ], [ 13.183594, 78.025574 ], [ 11.250000, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.655668 ], [ 15.117188, 79.671438 ], [ 15.556641, 80.012423 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.939453, 80.661308 ], [ 25.488281, 80.401063 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.512662 ], [ 23.027344, 79.400085 ], [ 20.039062, 79.560546 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.402344, 80.312728 ], [ 20.478516, 80.604086 ], [ 21.884766, 80.356995 ], [ 22.939453, 80.661308 ] ] ], [ [ [ 22.851562, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.697266, 77.860345 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.445312, 77.934055 ], [ 20.830078, 78.260332 ], [ 22.851562, 78.455425 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.029297, 51.124213 ], [ 15.468750, 50.792047 ], [ 16.259766, 50.680797 ], [ 16.171875, 50.401515 ], [ 16.699219, 50.233152 ], [ 16.875000, 50.457504 ], [ 17.578125, 50.345460 ], [ 17.666016, 50.064192 ], [ 18.369141, 50.007739 ], [ 18.896484, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.193359, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 48.922499 ], [ 17.578125, 48.806863 ], [ 17.138672, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.523438, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.292969, 49.037868 ], [ 14.941406, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.623047, 48.864715 ], [ 12.480469, 49.553726 ], [ 12.216797, 50.289339 ], [ 13.007812, 50.457504 ], [ 13.359375, 50.736455 ], [ 14.062500, 50.903033 ], [ 14.326172, 51.124213 ], [ 14.589844, 51.013755 ], [ 15.029297, 51.124213 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.876953, 52.052490 ], [ 100.019531, 51.618017 ], [ 102.041016, 51.234407 ], [ 102.216797, 50.513427 ], [ 103.710938, 50.064192 ], [ 105.908203, 50.401515 ], [ 106.875000, 50.289339 ], [ 107.841797, 49.781264 ], [ 108.457031, 49.267805 ], [ 109.423828, 49.267805 ], [ 110.654297, 49.152970 ], [ 111.621094, 49.382373 ], [ 112.939453, 49.553726 ], [ 114.345703, 50.233152 ], [ 114.960938, 50.120578 ], [ 115.488281, 49.781264 ], [ 116.718750, 49.894634 ], [ 115.488281, 48.107431 ], [ 115.751953, 47.754098 ], [ 116.279297, 47.872144 ], [ 117.333984, 47.694974 ], [ 118.037109, 48.048710 ], [ 118.828125, 47.754098 ], [ 119.794922, 47.040182 ], [ 119.707031, 46.679594 ], [ 118.916016, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.377254 ], [ 116.015625, 45.706179 ], [ 114.433594, 45.336702 ], [ 113.466797, 44.777936 ], [ 111.884766, 45.089036 ], [ 111.357422, 44.465151 ], [ 111.796875, 43.771094 ], [ 111.093750, 43.389082 ], [ 110.390625, 42.875964 ], [ 109.248047, 42.488302 ], [ 107.753906, 42.488302 ], [ 106.171875, 42.163403 ], [ 104.941406, 41.574361 ], [ 104.501953, 41.902277 ], [ 103.271484, 41.902277 ], [ 101.865234, 42.488302 ], [ 100.810547, 42.682435 ], [ 99.492188, 42.553080 ], [ 97.470703, 42.747012 ], [ 96.328125, 42.747012 ], [ 95.800781, 43.325178 ], [ 95.273438, 44.213710 ], [ 94.658203, 44.339565 ], [ 93.515625, 44.964798 ], [ 90.966797, 45.274886 ], [ 90.615234, 45.706179 ], [ 90.966797, 46.860191 ], [ 90.263672, 47.694974 ], [ 88.857422, 48.048710 ], [ 87.978516, 48.574790 ], [ 87.714844, 49.325122 ], [ 88.769531, 49.496675 ], [ 90.703125, 50.345460 ], [ 92.197266, 50.792047 ], [ 93.076172, 50.513427 ], [ 94.130859, 50.457504 ], [ 94.833984, 50.007739 ], [ 95.800781, 49.951220 ], [ 97.294922, 49.724479 ], [ 98.261719, 50.401515 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.906250, -48.632909 ], [ 69.609375, -48.922499 ], [ 70.488281, -49.037868 ], [ 70.576172, -49.267805 ], [ 70.312500, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.267805 ], [ 68.906250, -48.632909 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.088462 ], [ -43.330078, -80.027655 ], [ -44.912109, -80.342262 ], [ -46.494141, -80.589727 ], [ -48.427734, -80.830907 ], [ -50.449219, -81.024916 ], [ -52.822266, -80.969904 ], [ -54.140625, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.608215 ], [ -49.921875, -78.819036 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.042864 ], [ -60.117188, -80.997452 ], [ -62.226562, -80.858875 ], [ -64.511719, -80.928426 ], [ -65.742188, -80.589727 ], [ -66.269531, -80.253391 ], [ -64.072266, -80.297927 ], [ -61.875000, -80.386396 ], [ -60.644531, -79.624056 ] ] ], [ [ [ -57.832031, -63.273182 ], [ -57.216797, -63.509375 ], [ -57.568359, -63.860036 ], [ -58.623047, -64.168107 ], [ -59.062500, -64.358931 ], [ -59.765625, -64.206377 ], [ -60.644531, -64.320872 ], [ -62.050781, -64.811557 ], [ -62.490234, -65.109148 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.874725 ], [ -62.138672, -66.196009 ], [ -62.841797, -66.407955 ], [ -63.720703, -66.513260 ], [ -65.478516, -67.575717 ], [ -65.654297, -67.941650 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.688521 ], [ -63.984375, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.753906, -69.626510 ], [ -62.314453, -70.377854 ], [ -61.787109, -70.728979 ], [ -61.523438, -71.102543 ], [ -61.347656, -72.019729 ], [ -60.732422, -73.175897 ], [ -60.820312, -73.701948 ], [ -61.347656, -74.116047 ], [ -61.962891, -74.449358 ], [ -63.281250, -74.566736 ], [ -64.335938, -75.253057 ], [ -65.830078, -75.628632 ], [ -67.236328, -75.802118 ], [ -69.785156, -76.226907 ], [ -70.576172, -76.639226 ], [ -72.246094, -76.679785 ], [ -74.003906, -76.639226 ], [ -75.585938, -76.720223 ], [ -77.255859, -76.720223 ], [ -76.904297, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.267578, -77.561042 ], [ -73.652344, -77.915669 ], [ -74.794922, -78.224513 ], [ -76.464844, -78.116408 ], [ -77.958984, -78.384855 ], [ -78.046875, -79.187834 ], [ -76.816406, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.322266, -80.253391 ], [ -73.212891, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.321593 ], [ -65.742188, -81.479293 ], [ -63.281250, -81.748454 ], [ -59.677734, -82.379147 ], [ -58.710938, -82.842440 ], [ -58.183594, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.613281, -82.261699 ], [ -51.503906, -82.009169 ], [ -49.746094, -81.723188 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.361287 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.900669 ], [ -30.058594, -80.589727 ], [ -28.564453, -80.342262 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.639874 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.088462 ], [ -35.771484, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.655346 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.679785 ], [ -25.488281, -76.289542 ], [ -23.906250, -76.247817 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.490234, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.380859, -74.116047 ], [ -16.435547, -73.873717 ], [ -16.083984, -73.453473 ], [ -15.468750, -73.150440 ], [ -13.271484, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.019729 ], [ -10.986328, -71.552741 ], [ -10.283203, -71.272595 ], [ -9.140625, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.413177 ], [ -4.306641, -71.469124 ], [ -1.757812, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.878906, -71.300793 ], [ 1.845703, -71.130988 ], [ 4.130859, -70.844673 ], [ 5.185547, -70.612614 ], [ 6.240234, -70.466207 ], [ 7.119141, -70.259452 ], [ 7.734375, -69.900118 ], [ 8.525391, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.810547, -70.844673 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.259452 ], [ 13.447266, -69.960439 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.407348 ], [ 15.908203, -70.020587 ], [ 17.050781, -69.900118 ], [ 19.248047, -69.900118 ], [ 21.445312, -70.080562 ], [ 21.884766, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.642578, -70.524897 ], [ 27.070312, -70.466207 ], [ 29.179688, -70.199994 ], [ 30.058594, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.992188, -69.657086 ], [ 32.783203, -69.380313 ], [ 33.310547, -68.847665 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.332031, -69.005675 ], [ 36.123047, -69.256149 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.534518 ], [ 38.671875, -69.778952 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.957031, -68.942607 ], [ 41.923828, -68.592487 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.709445 ], [ 48.955078, -67.101656 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.976562, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.646484, -66.053716 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.982270 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.687784 ], [ 58.710938, -67.272043 ], [ 59.941406, -67.407487 ], [ 61.435547, -67.941650 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.521484, -69.687618 ], [ 68.554688, -69.930300 ], [ 67.851562, -70.318738 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.906250, -71.074056 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.154890 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.100944 ], [ 71.894531, -71.328950 ], [ 73.125000, -70.728979 ], [ 73.828125, -69.869892 ], [ 74.531250, -69.778952 ], [ 75.585938, -69.748551 ], [ 77.607422, -69.472969 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.089844, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.693359, -67.101656 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.857422, -66.964476 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.218750, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.701172, -67.101656 ], [ 99.755859, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.964476 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.642578, -65.874725 ], [ 114.345703, -66.089364 ], [ 115.576172, -66.687784 ], [ 116.718750, -66.652977 ], [ 117.421875, -66.930060 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.272043 ], [ 120.849609, -67.204032 ], [ 122.343750, -66.548263 ], [ 123.222656, -66.478208 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.548263 ], [ 127.001953, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.978516, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.730626 ], [ 135.087891, -65.293468 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.018018 ], [ 136.582031, -66.791909 ], [ 137.460938, -66.964476 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 145.458984, -66.930060 ], [ 146.162109, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.689453, -67.908619 ], [ 148.798828, -68.399180 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.162558 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.697266, -69.990535 ], [ 160.839844, -70.229744 ], [ 161.542969, -70.583418 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.757966 ], [ 167.343750, -70.844673 ], [ 168.398438, -70.959697 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.691293 ], [ 171.123047, -72.100944 ], [ 170.595703, -72.448792 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.824820 ], [ 167.343750, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.673828, -74.775843 ], [ 164.267578, -75.453071 ], [ 163.564453, -76.247817 ], [ 163.476562, -77.059116 ], [ 164.091797, -77.466028 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.188586 ], [ 166.640625, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.234375, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.806641, -79.154810 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.685144 ], [ 162.509766, -82.057893 ], [ 163.740234, -82.390794 ], [ 166.640625, -83.026219 ], [ 168.925781, -83.339153 ], [ 169.365234, -83.829945 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 175.957031, -84.160849 ], [ 180.000000, -84.714152 ], [ 180.087891, -84.722243 ], [ 180.966797, -84.142939 ], [ 182.724609, -84.457112 ], [ 183.955078, -84.097922 ], [ 184.130859, -84.115970 ], [ 185.625000, -84.532994 ], [ 187.031250, -84.079819 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.310902 ], [ -186.767578, -84.414502 ], [ -184.042969, -84.160849 ], [ -180.000000, -84.714152 ], [ -179.912109, -84.722243 ], [ -179.033203, -84.142939 ], [ -177.275391, -84.457112 ], [ -176.044922, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.375000, -84.532994 ], [ -172.880859, -84.061661 ], [ -169.980469, -83.886366 ], [ -166.992188, -84.566386 ], [ -164.179688, -84.826305 ], [ -162.597656, -85.051129 ], [ -161.894531, -85.141284 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.908203, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.316708 ], [ -143.173828, -85.051129 ], [ -143.085938, -85.043541 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.532994 ], [ -150.029297, -84.293450 ], [ -150.908203, -83.905058 ], [ -153.544922, -83.686615 ], [ -153.369141, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.773644 ], [ -155.302734, -81.413933 ], [ -156.796875, -81.106811 ], [ -154.423828, -81.160996 ], [ -152.138672, -80.997452 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.216797, -80.675559 ], [ -146.425781, -80.342262 ], [ -146.777344, -79.920548 ], [ -149.501953, -79.351472 ], [ -151.611328, -79.302640 ], [ -153.369141, -79.154810 ], [ -155.302734, -79.071812 ], [ -156.005859, -78.699106 ], [ -157.236328, -78.384855 ], [ -158.027344, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.851562, -76.980149 ], [ -156.972656, -77.293202 ], [ -155.302734, -77.196176 ], [ -153.720703, -77.059116 ], [ -152.929688, -77.504119 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.710938, -76.900709 ], [ -147.656250, -76.578159 ], [ -146.074219, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.162109, -75.386696 ], [ -144.931641, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.822266, -75.342282 ], [ -141.679688, -75.095633 ], [ -140.185547, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.175781, -74.307353 ], [ -133.769531, -74.449358 ], [ -132.275391, -74.307353 ], [ -130.957031, -74.472903 ], [ -129.550781, -74.449358 ], [ -128.232422, -74.331108 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.519889 ], [ -119.707031, -74.472903 ], [ -118.652344, -74.188052 ], [ -117.509766, -74.019543 ], [ -116.191406, -74.235878 ], [ -115.048828, -74.067866 ], [ -113.906250, -73.726595 ], [ -113.291016, -74.019543 ], [ -112.939453, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.425777 ], [ -110.039062, -74.798906 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.171875, -75.118222 ], [ -104.853516, -74.959392 ], [ -103.359375, -74.982183 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -101.250000, -74.188052 ], [ -102.568359, -74.116047 ], [ -103.095703, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.764065 ], [ -101.601562, -72.816074 ], [ -100.283203, -72.764065 ], [ -99.140625, -72.919635 ], [ -98.085938, -73.201317 ], [ -97.646484, -73.553302 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.175897 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.099413 ], [ -85.166016, -73.478485 ], [ -83.847656, -73.528399 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.277344, -73.528399 ], [ -77.958984, -73.428424 ], [ -76.904297, -73.627789 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -72.861328, -73.403338 ], [ -68.906250, -72.996909 ], [ -67.939453, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.412109, -68.138852 ], [ -67.763672, -67.339861 ], [ -67.236328, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.160156, -65.183030 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.282760 ], [ -60.732422, -64.091408 ], [ -59.853516, -63.937372 ], [ -59.150391, -63.704722 ], [ -58.623047, -63.391522 ], [ -57.832031, -63.273182 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.279297, -78.384855 ], [ -160.224609, -78.699106 ], [ -159.521484, -79.038437 ], [ -159.169922, -79.496652 ], [ -161.103516, -79.639874 ], [ -162.421875, -79.286313 ], [ -163.037109, -78.870048 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.431641, -73.327858 ], [ -119.882812, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.267578, -73.824820 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.019543 ], [ -122.607422, -73.652545 ], [ -122.431641, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.947266, -73.726595 ], [ -127.265625, -73.453473 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.458984, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.910156, -72.073911 ], [ -96.767578, -71.965388 ], [ -96.240234, -72.528130 ], [ -96.943359, -72.448792 ], [ -98.173828, -72.475276 ], [ -99.404297, -72.448792 ], [ -100.810547, -72.501722 ], [ -101.777344, -72.315785 ], [ -102.304688, -71.883578 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -70.224609, -68.879358 ], [ -69.697266, -69.256149 ], [ -68.466797, -70.959697 ], [ -68.291016, -71.413177 ], [ -68.818359, -72.181804 ], [ -69.960938, -72.315785 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.894531, -72.100944 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -74.970703, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.159391 ], [ -72.070312, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.224609, -68.879358 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.928487 ], [ 125.068359, -9.362353 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.401378 ], [ 123.486328, -10.228437 ], [ 123.574219, -9.882275 ], [ 124.013672, -9.275622 ], [ 124.980469, -8.928487 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.761719, -9.968851 ], [ 120.673828, -10.228437 ], [ 120.322266, -10.228437 ], [ 119.003906, -9.535749 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.790990 ], [ 134.384766, -2.811371 ], [ 135.439453, -3.337954 ], [ 136.318359, -2.284551 ], [ 137.460938, -1.669686 ], [ 138.339844, -1.669686 ], [ 139.921875, -2.372369 ], [ 140.976562, -2.635789 ], [ 141.064453, -9.102097 ], [ 140.185547, -8.320212 ], [ 139.130859, -8.059230 ], [ 138.867188, -8.407168 ], [ 137.636719, -8.407168 ], [ 138.076172, -7.623887 ], [ 138.691406, -7.362467 ], [ 138.427734, -6.227934 ], [ 137.900391, -5.353521 ], [ 135.966797, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.513421 ], [ 133.330078, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.714844, -3.776559 ], [ 132.714844, -3.337954 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.275391, -2.196727 ], [ 131.835938, -1.581830 ], [ 130.957031, -1.406109 ], [ 130.517578, -0.966751 ], [ 131.835938, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.861328, -8.059230 ], [ 118.300781, -8.320212 ], [ 118.916016, -8.320212 ], [ 119.091797, -8.667918 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.494105 ], [ 117.597656, -8.407168 ], [ 117.861328, -8.059230 ] ] ], [ [ [ 122.871094, -8.059230 ], [ 122.783203, -8.667918 ], [ 121.289062, -8.928487 ], [ 119.882812, -8.841651 ], [ 119.882812, -8.407168 ], [ 120.673828, -8.233237 ], [ 121.376953, -8.494105 ], [ 121.992188, -8.494105 ], [ 122.871094, -8.059230 ] ] ], [ [ [ 106.083984, -5.878332 ], [ 107.226562, -5.965754 ], [ 108.457031, -6.402648 ], [ 108.632812, -6.751896 ], [ 110.566406, -6.839170 ], [ 110.742188, -6.489983 ], [ 112.587891, -6.926427 ], [ 112.939453, -7.623887 ], [ 114.521484, -7.798079 ], [ 115.664062, -8.407168 ], [ 114.521484, -8.754795 ], [ 113.466797, -8.320212 ], [ 111.533203, -8.320212 ], [ 108.720703, -7.623887 ], [ 108.281250, -7.798079 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.083984, -5.878332 ] ] ], [ [ [ 116.982422, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.878872 ], [ 117.773438, 0.790990 ], [ 117.509766, 0.087891 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.460181 ], [ 116.191406, -4.039618 ], [ 116.015625, -3.688855 ], [ 114.873047, -4.127285 ], [ 114.433594, -3.513421 ], [ 113.730469, -3.425692 ], [ 113.291016, -3.162456 ], [ 112.060547, -3.513421 ], [ 111.708984, -2.986927 ], [ 110.214844, -2.899153 ], [ 110.039062, -1.581830 ], [ 109.599609, -1.318243 ], [ 109.072266, -0.439449 ], [ 108.984375, 0.439449 ], [ 109.072266, 1.318243 ], [ 109.687500, 2.021065 ], [ 109.863281, 1.318243 ], [ 110.478516, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.878872 ], [ 112.412109, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.406109 ], [ 115.136719, 2.811371 ], [ 115.488281, 3.162456 ], [ 115.839844, 4.302591 ], [ 116.982422, 4.302591 ] ] ], [ [ [ 95.273438, 5.441022 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.302591 ], [ 99.667969, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.689453, 2.108899 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.527336 ], [ 103.798828, 0.087891 ], [ 103.447266, -0.703107 ], [ 103.974609, -1.054628 ], [ 104.326172, -1.054628 ], [ 104.501953, -1.757537 ], [ 104.853516, -2.372369 ], [ 105.644531, -2.460181 ], [ 106.083984, -3.074695 ], [ 105.820312, -4.302591 ], [ 105.820312, -5.878332 ], [ 104.677734, -5.878332 ], [ 103.886719, -5.003394 ], [ 102.568359, -4.214943 ], [ 101.425781, -2.811371 ], [ 100.107422, -0.615223 ], [ 99.228516, 0.175781 ], [ 98.613281, 1.845384 ], [ 97.734375, 2.460181 ], [ 97.207031, 3.337954 ], [ 96.416016, 3.864255 ], [ 95.361328, 5.003394 ], [ 95.273438, 5.441022 ] ] ], [ [ [ 134.472656, -5.441022 ], [ 134.736328, -5.703448 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.926427 ], [ 134.121094, -6.140555 ], [ 134.472656, -5.441022 ] ] ], [ [ [ 125.068359, 1.669686 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.662109, 0.263671 ], [ 122.695312, 0.439449 ], [ 120.146484, 0.263671 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.310547, -0.615223 ], [ 123.222656, -1.054628 ], [ 122.783203, -0.966751 ], [ 122.431641, -1.493971 ], [ 121.464844, -1.933227 ], [ 122.431641, -3.162456 ], [ 122.255859, -3.513421 ], [ 123.134766, -4.653080 ], [ 123.134766, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.695312, -4.477856 ], [ 121.728516, -4.828260 ], [ 121.464844, -4.565474 ], [ 121.640625, -4.214943 ], [ 120.937500, -3.601142 ], [ 120.937500, -2.635789 ], [ 120.322266, -2.899153 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.703448 ], [ 119.355469, -5.353521 ], [ 119.619141, -4.477856 ], [ 119.531250, -3.513421 ], [ 119.091797, -3.513421 ], [ 118.740234, -2.811371 ], [ 119.179688, -2.108899 ], [ 119.355469, -1.318243 ], [ 120.058594, 0.527336 ], [ 120.849609, 1.318243 ], [ 121.640625, 1.054628 ], [ 122.958984, 0.878872 ], [ 124.101562, 0.878872 ], [ 125.068359, 1.669686 ] ] ], [ [ [ 127.968750, 2.196727 ], [ 127.968750, 1.669686 ], [ 128.583984, 1.581830 ], [ 128.671875, 1.142502 ], [ 128.671875, 0.263671 ], [ 128.144531, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.408203, -0.790990 ], [ 128.056641, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.441406, 1.054628 ], [ 127.617188, 1.845384 ], [ 127.968750, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.429688, -3.074695 ], [ 130.869141, -3.864255 ], [ 129.990234, -3.425692 ], [ 127.880859, -3.425692 ], [ 128.144531, -2.811371 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.162456 ], [ 127.265625, -3.425692 ], [ 126.914062, -3.776559 ], [ 126.210938, -3.601142 ], [ 125.947266, -3.162456 ], [ 127.001953, -3.162456 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 68.974164 ], [ 182.460938, 68.204212 ], [ 185.097656, 67.204032 ], [ 185.009766, 66.583217 ], [ 185.625000, 66.337505 ], [ 185.449219, 67.067433 ], [ 187.031250, 66.964476 ], [ 187.031250, 64.244595 ], [ 186.064453, 64.282760 ], [ 185.361328, 64.623877 ], [ 184.042969, 64.923542 ], [ 183.779297, 65.366837 ], [ 182.812500, 65.512963 ], [ 181.669922, 65.403445 ], [ 181.054688, 65.730626 ], [ 181.318359, 66.124962 ], [ 180.087891, 65.874725 ], [ 180.527344, 65.403445 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.451172, 64.623877 ], [ 178.330078, 64.091408 ], [ 178.945312, 63.233627 ], [ 179.384766, 62.995158 ], [ 179.472656, 62.552857 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.648162 ], [ 170.683594, 60.326948 ], [ 170.332031, 59.888937 ], [ 168.925781, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.712097 ], [ 163.564453, 59.888937 ], [ 163.212891, 59.220934 ], [ 161.982422, 58.263287 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.037109, 56.170023 ], [ 162.158203, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.158203, 54.876607 ], [ 160.400391, 54.367759 ], [ 160.048828, 53.225768 ], [ 158.554688, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.445312, 51.727028 ], [ 155.390625, 55.379110 ], [ 155.917969, 56.752723 ], [ 156.796875, 57.373938 ], [ 156.796875, 57.844751 ], [ 158.378906, 58.077876 ], [ 160.136719, 59.310768 ], [ 161.894531, 60.326948 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.300781, 62.471724 ], [ 162.685547, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.345703, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.248047, 59.756395 ], [ 155.039062, 59.130863 ], [ 152.841797, 58.904646 ], [ 151.259766, 58.768200 ], [ 151.347656, 59.489726 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.207031, 59.040555 ], [ 135.087891, 54.724620 ], [ 136.669922, 54.622978 ], [ 137.197266, 53.956086 ], [ 138.164062, 53.748711 ], [ 138.779297, 54.265224 ], [ 139.921875, 54.213861 ], [ 141.328125, 53.067627 ], [ 141.416016, 52.214339 ], [ 140.625000, 51.234407 ], [ 140.537109, 50.064192 ], [ 140.097656, 48.458352 ], [ 138.515625, 46.980252 ], [ 138.251953, 46.316584 ], [ 134.912109, 43.389082 ], [ 133.505859, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.261206 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.228517 ], [ 130.605469, 42.423457 ], [ 130.605469, 42.875964 ], [ 131.132812, 42.940339 ], [ 131.308594, 44.087585 ], [ 131.044922, 44.964798 ], [ 131.923828, 45.336702 ], [ 133.066406, 45.151053 ], [ 133.769531, 46.134170 ], [ 134.121094, 47.219568 ], [ 134.472656, 47.576526 ], [ 135.000000, 48.458352 ], [ 133.330078, 48.166085 ], [ 132.539062, 47.813155 ], [ 130.957031, 47.813155 ], [ 130.605469, 48.748945 ], [ 129.375000, 49.439557 ], [ 127.617188, 49.781264 ], [ 127.265625, 50.736455 ], [ 125.947266, 52.802761 ], [ 125.068359, 53.173119 ], [ 123.574219, 53.435719 ], [ 122.255859, 53.435719 ], [ 121.025391, 53.225768 ], [ 120.146484, 52.749594 ], [ 120.761719, 52.536273 ], [ 120.761719, 51.944265 ], [ 120.146484, 51.618017 ], [ 119.267578, 50.569283 ], [ 119.267578, 50.120578 ], [ 117.861328, 49.496675 ], [ 116.718750, 49.894634 ], [ 115.488281, 49.781264 ], [ 114.960938, 50.120578 ], [ 114.345703, 50.233152 ], [ 112.939453, 49.553726 ], [ 111.621094, 49.382373 ], [ 110.654297, 49.152970 ], [ 109.423828, 49.267805 ], [ 108.457031, 49.267805 ], [ 107.841797, 49.781264 ], [ 106.875000, 50.289339 ], [ 105.908203, 50.401515 ], [ 103.710938, 50.064192 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.234407 ], [ 100.019531, 51.618017 ], [ 98.876953, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.261719, 50.401515 ], [ 97.294922, 49.724479 ], [ 95.800781, 49.951220 ], [ 94.833984, 50.007739 ], [ 94.130859, 50.457504 ], [ 93.076172, 50.513427 ], [ 92.197266, 50.792047 ], [ 90.703125, 50.345460 ], [ 88.769531, 49.496675 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.837982 ], [ 85.517578, 49.667628 ], [ 85.078125, 50.120578 ], [ 84.375000, 50.289339 ], [ 83.935547, 50.903033 ], [ 83.408203, 51.069017 ], [ 81.914062, 50.792047 ], [ 80.595703, 51.399206 ], [ 80.068359, 50.847573 ], [ 77.783203, 53.383328 ], [ 76.552734, 54.162434 ], [ 76.904297, 54.470038 ], [ 74.355469, 53.540307 ], [ 73.388672, 53.488046 ], [ 73.476562, 54.059388 ], [ 72.246094, 54.367759 ], [ 71.191406, 54.110943 ], [ 70.839844, 55.178868 ], [ 69.082031, 55.379110 ], [ 68.203125, 54.977614 ], [ 65.654297, 54.622978 ], [ 65.214844, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.996094, 53.644638 ], [ 61.699219, 52.961875 ], [ 60.732422, 52.696361 ], [ 60.908203, 52.429222 ], [ 59.941406, 51.944265 ], [ 61.611328, 51.289406 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.677734, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.722656, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.800781, 51.672555 ], [ 48.691406, 50.625073 ], [ 48.603516, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.382373 ], [ 47.021484, 49.152970 ], [ 46.494141, 48.400032 ], [ 47.285156, 47.694974 ], [ 48.076172, 47.754098 ], [ 48.691406, 47.100045 ], [ 48.603516, 46.558860 ], [ 49.130859, 46.377254 ], [ 48.603516, 45.828799 ], [ 47.636719, 45.644768 ], [ 46.669922, 44.590467 ], [ 47.548828, 43.644026 ], [ 47.460938, 43.004647 ], [ 48.603516, 41.836828 ], [ 47.988281, 41.376809 ], [ 47.812500, 41.178654 ], [ 47.373047, 41.244772 ], [ 46.669922, 41.836828 ], [ 45.791016, 42.098222 ], [ 45.439453, 42.488302 ], [ 44.560547, 42.682435 ], [ 43.945312, 42.553080 ], [ 43.769531, 42.747012 ], [ 42.363281, 43.197167 ], [ 40.078125, 43.580391 ], [ 39.990234, 43.452919 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.650391, 45.274886 ], [ 37.441406, 45.398450 ], [ 38.232422, 46.255847 ], [ 37.705078, 46.619261 ], [ 39.111328, 47.040182 ], [ 39.111328, 47.279229 ], [ 38.232422, 47.100045 ], [ 38.232422, 47.517201 ], [ 38.759766, 47.813155 ], [ 39.726562, 47.872144 ], [ 39.902344, 48.224673 ], [ 39.638672, 48.806863 ], [ 40.078125, 49.325122 ], [ 40.078125, 49.610710 ], [ 38.583984, 49.951220 ], [ 37.968750, 49.894634 ], [ 37.353516, 50.401515 ], [ 36.650391, 50.233152 ], [ 35.332031, 50.569283 ], [ 35.419922, 50.792047 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.234407 ], [ 34.101562, 51.563412 ], [ 34.365234, 51.781436 ], [ 33.750000, 52.321911 ], [ 32.695312, 52.214339 ], [ 32.431641, 52.268157 ], [ 32.167969, 52.052490 ], [ 31.816406, 52.106505 ], [ 31.289062, 53.067627 ], [ 31.464844, 53.173119 ], [ 32.343750, 53.120405 ], [ 32.695312, 53.330873 ], [ 32.431641, 53.592505 ], [ 31.728516, 53.800651 ], [ 31.816406, 53.956086 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.826008 ], [ 30.937500, 55.078367 ], [ 30.849609, 55.528631 ], [ 29.882812, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.267578, 55.924586 ], [ 28.212891, 56.170023 ], [ 27.861328, 56.752723 ], [ 27.773438, 57.231503 ], [ 27.246094, 57.468589 ], [ 27.685547, 57.797944 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.310768 ], [ 27.949219, 59.489726 ], [ 29.091797, 60.020952 ], [ 28.037109, 60.500525 ], [ 31.113281, 62.349609 ], [ 31.552734, 62.875188 ], [ 30.058594, 63.548552 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.234375, 65.802776 ], [ 29.091797, 66.930060 ], [ 29.970703, 67.709445 ], [ 28.476562, 68.366801 ], [ 28.564453, 69.068563 ], [ 29.443359, 69.162558 ], [ 31.113281, 69.565226 ], [ 32.167969, 69.900118 ], [ 33.750000, 69.287257 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.044922, 67.441229 ], [ 41.132812, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.408203, 65.982270 ], [ 33.925781, 66.757250 ], [ 33.222656, 66.618122 ], [ 34.804688, 65.910623 ], [ 34.980469, 64.396938 ], [ 37.001953, 63.860036 ], [ 37.177734, 64.320872 ], [ 36.562500, 64.774125 ], [ 37.177734, 65.146115 ], [ 39.550781, 64.510643 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.099609, 66.478208 ], [ 42.978516, 66.407955 ], [ 43.945312, 66.053716 ], [ 44.560547, 66.757250 ], [ 43.681641, 67.339861 ], [ 44.208984, 67.941650 ], [ 43.417969, 68.560384 ], [ 46.230469, 68.236823 ], [ 46.845703, 67.676085 ], [ 45.527344, 67.575717 ], [ 45.527344, 66.998844 ], [ 46.318359, 66.652977 ], [ 47.900391, 66.895596 ], [ 48.164062, 67.508568 ], [ 53.701172, 68.847665 ], [ 54.492188, 68.815927 ], [ 53.525391, 68.204212 ], [ 54.755859, 68.106102 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.269387 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.556641, 69.839622 ], [ 63.544922, 69.534518 ], [ 64.863281, 69.224997 ], [ 68.554688, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.203125, 69.131271 ], [ 68.115234, 69.349339 ], [ 66.972656, 69.442128 ], [ 67.236328, 69.930300 ], [ 66.708984, 70.699951 ], [ 66.708984, 71.016960 ], [ 68.554688, 71.938158 ], [ 69.169922, 72.842021 ], [ 69.960938, 73.048236 ], [ 72.597656, 72.764065 ], [ 72.773438, 72.208678 ], [ 71.806641, 71.413177 ], [ 72.509766, 71.102543 ], [ 72.773438, 70.377854 ], [ 72.597656, 69.005675 ], [ 73.652344, 68.399180 ], [ 73.212891, 67.742759 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.160511 ], [ 72.861328, 66.548263 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.272043 ], [ 75.058594, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.970703, 68.974164 ], [ 73.828125, 69.068563 ], [ 73.564453, 69.626510 ], [ 74.443359, 70.641769 ], [ 73.125000, 71.441171 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.842021 ], [ 75.673828, 72.289067 ], [ 75.322266, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.937500, 71.883578 ], [ 77.607422, 72.262310 ], [ 79.628906, 72.315785 ], [ 81.474609, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 82.265625, 73.849286 ], [ 84.638672, 73.800318 ], [ 86.835938, 73.946791 ], [ 86.044922, 74.449358 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.251953, 76.037317 ], [ 95.888672, 76.142958 ], [ 96.679688, 75.909504 ], [ 98.964844, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.074219, 76.860810 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.692870 ], [ 106.083984, 77.370301 ], [ 104.677734, 77.118032 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.475773 ], [ 108.193359, 76.720223 ], [ 111.093750, 76.700019 ], [ 113.291016, 76.226907 ], [ 114.169922, 75.845169 ], [ 113.906250, 75.320025 ], [ 112.763672, 75.027664 ], [ 110.126953, 74.472903 ], [ 109.423828, 74.188052 ], [ 110.654297, 74.043723 ], [ 112.148438, 73.775780 ], [ 113.027344, 73.971078 ], [ 113.554688, 73.327858 ], [ 113.994141, 73.602996 ], [ 115.576172, 73.751205 ], [ 118.740234, 73.578167 ], [ 119.003906, 73.124945 ], [ 123.222656, 72.971189 ], [ 123.222656, 73.726595 ], [ 125.419922, 73.553302 ], [ 127.001953, 73.553302 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.395706 ], [ 128.496094, 71.992578 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.828840 ], [ 133.857422, 71.385142 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.251953, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.842021 ], [ 149.501953, 72.208678 ], [ 150.380859, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.873047, 70.466207 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 164.091797, 69.657086 ], [ 165.937500, 69.472969 ], [ 167.871094, 69.595890 ], [ 169.541016, 68.688521 ], [ 170.859375, 69.005675 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 173.671875, 69.809309 ], [ 175.693359, 69.869892 ], [ 178.593750, 69.411242 ], [ 180.000000, 68.974164 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -177.539062, 68.204212 ], [ -174.902344, 67.204032 ], [ -174.990234, 66.583217 ], [ -174.375000, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.826172, 66.930060 ], [ -169.892578, 65.982270 ], [ -170.859375, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.529297, 64.472794 ], [ -172.968750, 64.244595 ], [ -173.935547, 64.282760 ], [ -174.638672, 64.623877 ], [ -175.957031, 64.923542 ], [ -176.220703, 65.366837 ], [ -177.187500, 65.512963 ], [ -178.330078, 65.403445 ], [ -178.945312, 65.730626 ], [ -178.681641, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.403445 ], [ -180.000000, 64.997939 ], [ -181.318359, 64.548440 ], [ -182.548828, 64.623877 ], [ -181.669922, 64.091408 ], [ -181.054688, 63.233627 ], [ -180.615234, 62.995158 ], [ -180.527344, 62.552857 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -185.449219, 61.773123 ], [ -186.328125, 61.648162 ], [ -187.031250, 61.312452 ], [ -187.031250, 69.869892 ], [ -186.328125, 69.809309 ], [ -184.306641, 69.869892 ], [ -181.406250, 69.411242 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.537296 ], [ 68.203125, 76.226907 ], [ 61.611328, 75.253057 ], [ 58.447266, 74.307353 ], [ 55.458984, 72.369105 ], [ 55.634766, 71.552741 ], [ 57.568359, 70.728979 ], [ 56.953125, 70.641769 ], [ 53.701172, 70.757966 ], [ 53.437500, 71.216075 ], [ 51.591797, 71.469124 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.470703, 72.764065 ], [ 54.404297, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.634766, 75.073010 ], [ 57.832031, 75.606801 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.181641, 76.800739 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 95.976562, 81.255032 ], [ 97.910156, 80.746492 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.750659 ], [ 95.009766, 79.038437 ], [ 93.339844, 79.432371 ], [ 92.548828, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.976562, 81.255032 ] ] ], [ [ [ 138.867188, 76.142958 ], [ 141.503906, 76.100796 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.253057 ], [ 137.548828, 75.952235 ], [ 138.867188, 76.142958 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.749594 ], [ 143.261719, 51.781436 ], [ 143.613281, 50.736455 ], [ 144.667969, 48.980217 ], [ 143.173828, 49.325122 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.860191 ], [ 143.525391, 46.134170 ], [ 142.734375, 46.739861 ], [ 142.119141, 45.951150 ], [ 141.943359, 46.800059 ], [ 142.031250, 47.754098 ], [ 141.943359, 48.864715 ], [ 142.119141, 49.610710 ], [ 142.207031, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.278353 ], [ 142.646484, 53.748711 ], [ 142.207031, 54.213861 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 102.128906, 79.351472 ], [ 102.832031, 79.286313 ], [ 105.380859, 78.716316 ], [ 105.117188, 78.313860 ], [ 99.404297, 77.915669 ], [ 101.250000, 79.237185 ], [ 102.128906, 79.351472 ] ] ], [ [ [ 50.009766, 80.914558 ], [ 51.503906, 80.703997 ], [ 51.152344, 80.546518 ], [ 48.867188, 80.342262 ], [ 48.779297, 80.178713 ], [ 47.548828, 80.012423 ], [ 46.494141, 80.253391 ], [ 47.109375, 80.560943 ], [ 44.824219, 80.589727 ], [ 46.757812, 80.774716 ], [ 48.339844, 80.788795 ], [ 48.515625, 80.517603 ], [ 49.130859, 80.760615 ], [ 50.009766, 80.914558 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.183594, 75.342282 ], [ 150.732422, 75.073010 ], [ 149.589844, 74.683250 ], [ 148.007812, 74.775843 ], [ 146.162109, 75.163300 ], [ 146.337891, 75.497157 ] ] ], [ [ [ -180.000000, 71.524909 ], [ -179.912109, 71.552741 ], [ -179.033203, 71.552741 ], [ -177.539062, 71.272595 ], [ -177.626953, 71.130988 ], [ -178.681641, 70.902268 ], [ -180.000000, 70.844673 ], [ -181.054688, 70.786910 ], [ -181.318359, 71.102543 ], [ -180.000000, 71.524909 ] ] ], [ [ [ 180.000000, 71.524909 ], [ 180.087891, 71.552741 ], [ 180.966797, 71.552741 ], [ 182.460938, 71.272595 ], [ 182.373047, 71.130988 ], [ 181.318359, 70.902268 ], [ 180.000000, 70.844673 ], [ 178.945312, 70.786910 ], [ 178.681641, 71.102543 ], [ 180.000000, 71.524909 ] ] ], [ [ [ 142.031250, 73.849286 ], [ 143.525391, 73.478485 ], [ 143.613281, 73.201317 ], [ 142.119141, 73.201317 ], [ 140.009766, 73.327858 ], [ 139.833984, 73.378215 ], [ 140.800781, 73.775780 ], [ 142.031250, 73.849286 ] ] ], [ [ [ 21.269531, 55.178868 ], [ 22.324219, 55.028022 ], [ 22.763672, 54.876607 ], [ 22.675781, 54.572062 ], [ 22.763672, 54.316523 ], [ 20.917969, 54.316523 ], [ 19.687500, 54.418930 ], [ 19.863281, 54.876607 ], [ 21.269531, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.505859, -79.088462 ], [ -43.330078, -80.027655 ], [ -44.912109, -80.342262 ], [ -46.494141, -80.589727 ], [ -48.427734, -80.830907 ], [ -50.449219, -81.024916 ], [ -52.822266, -80.969904 ], [ -54.140625, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.608215 ], [ -49.921875, -78.819036 ], [ -48.691406, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.042864 ], [ -60.117188, -80.997452 ], [ -62.226562, -80.858875 ], [ -64.511719, -80.928426 ], [ -65.742188, -80.589727 ], [ -66.269531, -80.253391 ], [ -64.072266, -80.297927 ], [ -61.875000, -80.386396 ], [ -60.644531, -79.624056 ] ] ], [ [ [ -57.832031, -63.273182 ], [ -57.216797, -63.509375 ], [ -57.568359, -63.860036 ], [ -58.623047, -64.168107 ], [ -59.062500, -64.358931 ], [ -59.765625, -64.206377 ], [ -60.644531, -64.320872 ], [ -62.050781, -64.811557 ], [ -62.490234, -65.109148 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.874725 ], [ -62.138672, -66.196009 ], [ -62.841797, -66.407955 ], [ -63.720703, -66.513260 ], [ -65.478516, -67.575717 ], [ -65.654297, -67.941650 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.688521 ], [ -63.984375, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.753906, -69.626510 ], [ -62.314453, -70.377854 ], [ -61.787109, -70.728979 ], [ -61.523438, -71.102543 ], [ -61.347656, -72.019729 ], [ -60.732422, -73.175897 ], [ -60.820312, -73.701948 ], [ -61.347656, -74.116047 ], [ -61.962891, -74.449358 ], [ -63.281250, -74.566736 ], [ -64.335938, -75.253057 ], [ -65.830078, -75.628632 ], [ -67.236328, -75.802118 ], [ -69.785156, -76.226907 ], [ -70.576172, -76.639226 ], [ -72.246094, -76.679785 ], [ -74.003906, -76.639226 ], [ -75.585938, -76.720223 ], [ -77.255859, -76.720223 ], [ -76.904297, -77.098423 ], [ -75.410156, -77.273855 ], [ -74.267578, -77.561042 ], [ -73.652344, -77.915669 ], [ -74.794922, -78.224513 ], [ -76.464844, -78.116408 ], [ -77.958984, -78.384855 ], [ -78.046875, -79.187834 ], [ -76.816406, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.322266, -80.253391 ], [ -73.212891, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.048828, -80.997452 ], [ -68.203125, -81.321593 ], [ -65.742188, -81.479293 ], [ -63.281250, -81.748454 ], [ -59.677734, -82.379147 ], [ -58.710938, -82.842440 ], [ -58.183594, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.613281, -82.261699 ], [ -51.503906, -82.009169 ], [ -49.746094, -81.723188 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.361287 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.900669 ], [ -30.058594, -80.589727 ], [ -28.564453, -80.342262 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.639874 ], [ -29.707031, -79.253586 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.448477 ], [ -35.683594, -79.448477 ], [ -35.947266, -79.088462 ], [ -35.771484, -78.331648 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.655346 ], [ -29.794922, -77.059116 ], [ -28.916016, -76.679785 ], [ -25.488281, -76.289542 ], [ -23.906250, -76.247817 ], [ -22.500000, -76.100796 ], [ -20.039062, -75.672197 ], [ -17.490234, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.380859, -74.116047 ], [ -16.435547, -73.873717 ], [ -16.083984, -73.453473 ], [ -15.468750, -73.150440 ], [ -13.271484, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.019729 ], [ -10.986328, -71.552741 ], [ -10.283203, -71.272595 ], [ -9.140625, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.382812, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.413177 ], [ -4.306641, -71.469124 ], [ -1.757812, -71.159391 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 0.878906, -71.300793 ], [ 1.845703, -71.130988 ], [ 4.130859, -70.844673 ], [ 5.185547, -70.612614 ], [ 6.240234, -70.466207 ], [ 7.119141, -70.259452 ], [ 7.734375, -69.900118 ], [ 8.525391, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.810547, -70.844673 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.259452 ], [ 13.447266, -69.960439 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.407348 ], [ 15.908203, -70.020587 ], [ 17.050781, -69.900118 ], [ 19.248047, -69.900118 ], [ 21.445312, -70.080562 ], [ 21.884766, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.642578, -70.524897 ], [ 27.070312, -70.466207 ], [ 29.179688, -70.199994 ], [ 30.058594, -69.930300 ], [ 30.937500, -69.748551 ], [ 31.992188, -69.657086 ], [ 32.783203, -69.380313 ], [ 33.310547, -68.847665 ], [ 33.837891, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.332031, -69.005675 ], [ 36.123047, -69.256149 ], [ 37.177734, -69.162558 ], [ 37.880859, -69.534518 ], [ 38.671875, -69.778952 ], [ 39.638672, -69.534518 ], [ 39.990234, -69.099940 ], [ 40.957031, -68.942607 ], [ 41.923828, -68.592487 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.709445 ], [ 48.955078, -67.101656 ], [ 49.921875, -67.101656 ], [ 50.712891, -66.861082 ], [ 50.976562, -66.513260 ], [ 51.767578, -66.231457 ], [ 52.646484, -66.053716 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.982270 ], [ 57.128906, -66.231457 ], [ 57.216797, -66.687784 ], [ 58.710938, -67.272043 ], [ 59.941406, -67.407487 ], [ 61.435547, -67.941650 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.951172, -67.609221 ], [ 66.884766, -67.842416 ], [ 67.851562, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.521484, -69.687618 ], [ 68.554688, -69.930300 ], [ 67.851562, -70.318738 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.906250, -71.074056 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.154890 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.100944 ], [ 71.894531, -71.328950 ], [ 73.125000, -70.728979 ], [ 73.828125, -69.869892 ], [ 74.531250, -69.778952 ], [ 75.585938, -69.748551 ], [ 77.607422, -69.472969 ], [ 78.398438, -68.688521 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.089844, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.693359, -67.101656 ], [ 86.748047, -67.135829 ], [ 87.451172, -66.861082 ], [ 87.978516, -66.196009 ], [ 88.857422, -66.964476 ], [ 89.648438, -67.135829 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.101656 ], [ 93.515625, -67.204032 ], [ 94.218750, -67.101656 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.373698 ], [ 96.679688, -67.238062 ], [ 97.734375, -67.238062 ], [ 98.701172, -67.101656 ], [ 99.755859, -67.238062 ], [ 102.832031, -65.549367 ], [ 103.447266, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.964476 ], [ 110.214844, -66.687784 ], [ 111.708984, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.642578, -65.874725 ], [ 114.345703, -66.089364 ], [ 115.576172, -66.687784 ], [ 116.718750, -66.652977 ], [ 117.421875, -66.930060 ], [ 118.564453, -67.169955 ], [ 119.794922, -67.272043 ], [ 120.849609, -67.204032 ], [ 122.343750, -66.548263 ], [ 123.222656, -66.478208 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.548263 ], [ 127.001953, -66.548263 ], [ 128.759766, -66.757250 ], [ 130.781250, -66.407955 ], [ 132.978516, -66.372755 ], [ 134.736328, -66.196009 ], [ 135.000000, -65.730626 ], [ 135.087891, -65.293468 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.018018 ], [ 136.582031, -66.791909 ], [ 137.460938, -66.964476 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 145.458984, -66.930060 ], [ 146.162109, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.689453, -67.908619 ], [ 148.798828, -68.399180 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 155.917969, -69.162558 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.697266, -69.990535 ], [ 160.839844, -70.229744 ], [ 161.542969, -70.583418 ], [ 162.685547, -70.728979 ], [ 166.113281, -70.757966 ], [ 167.343750, -70.844673 ], [ 168.398438, -70.959697 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.691293 ], [ 171.123047, -72.100944 ], [ 170.595703, -72.448792 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.824820 ], [ 167.343750, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.673828, -74.775843 ], [ 164.267578, -75.453071 ], [ 163.564453, -76.247817 ], [ 163.476562, -77.059116 ], [ 164.091797, -77.466028 ], [ 164.267578, -77.823323 ], [ 164.707031, -78.188586 ], [ 166.640625, -78.313860 ], [ 166.992188, -78.750659 ], [ 165.234375, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.806641, -79.154810 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.193694 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.685144 ], [ 162.509766, -82.057893 ], [ 163.740234, -82.390794 ], [ 166.640625, -83.026219 ], [ 168.925781, -83.339153 ], [ 169.365234, -83.829945 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 175.957031, -84.160849 ], [ 180.000000, -84.714152 ], [ 180.087891, -84.722243 ], [ 180.966797, -84.142939 ], [ 182.724609, -84.457112 ], [ 183.955078, -84.097922 ], [ 184.130859, -84.115970 ], [ 185.625000, -84.532994 ], [ 187.031250, -84.079819 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.310902 ], [ -186.767578, -84.414502 ], [ -184.042969, -84.160849 ], [ -180.000000, -84.714152 ], [ -179.912109, -84.722243 ], [ -179.033203, -84.142939 ], [ -177.275391, -84.457112 ], [ -176.044922, -84.097922 ], [ -175.869141, -84.115970 ], [ -174.375000, -84.532994 ], [ -172.880859, -84.061661 ], [ -169.980469, -83.886366 ], [ -166.992188, -84.566386 ], [ -164.179688, -84.826305 ], [ -162.597656, -85.051129 ], [ -161.894531, -85.141284 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.908203, -85.295131 ], [ -148.535156, -85.608630 ], [ -145.898438, -85.316708 ], [ -143.173828, -85.051129 ], [ -143.085938, -85.043541 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.532994 ], [ -150.029297, -84.293450 ], [ -150.908203, -83.905058 ], [ -153.544922, -83.686615 ], [ -153.369141, -83.236426 ], [ -152.666016, -82.448764 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.773644 ], [ -155.302734, -81.413933 ], [ -156.796875, -81.106811 ], [ -154.423828, -81.160996 ], [ -152.138672, -80.997452 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.038617 ], [ -147.216797, -80.675559 ], [ -146.425781, -80.342262 ], [ -146.777344, -79.920548 ], [ -149.501953, -79.351472 ], [ -151.611328, -79.302640 ], [ -153.369141, -79.154810 ], [ -155.302734, -79.071812 ], [ -156.005859, -78.699106 ], [ -157.236328, -78.384855 ], [ -158.027344, -78.025574 ], [ -158.378906, -76.880775 ], [ -157.851562, -76.980149 ], [ -156.972656, -77.293202 ], [ -155.302734, -77.196176 ], [ -153.720703, -77.059116 ], [ -152.929688, -77.504119 ], [ -151.347656, -77.389504 ], [ -150.029297, -77.176684 ], [ -148.710938, -76.900709 ], [ -147.656250, -76.578159 ], [ -146.074219, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.162109, -75.386696 ], [ -144.931641, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.822266, -75.342282 ], [ -141.679688, -75.095633 ], [ -140.185547, -75.073010 ], [ -138.867188, -74.959392 ], [ -135.175781, -74.307353 ], [ -133.769531, -74.449358 ], [ -132.275391, -74.307353 ], [ -130.957031, -74.472903 ], [ -129.550781, -74.449358 ], [ -128.232422, -74.331108 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.472903 ], [ -121.113281, -74.519889 ], [ -119.707031, -74.472903 ], [ -118.652344, -74.188052 ], [ -117.509766, -74.019543 ], [ -116.191406, -74.235878 ], [ -115.048828, -74.067866 ], [ -113.906250, -73.726595 ], [ -113.291016, -74.019543 ], [ -112.939453, -74.378513 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.425777 ], [ -110.039062, -74.798906 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.171875, -75.118222 ], [ -104.853516, -74.959392 ], [ -103.359375, -74.982183 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -101.250000, -74.188052 ], [ -102.568359, -74.116047 ], [ -103.095703, -73.726595 ], [ -103.710938, -72.607120 ], [ -102.919922, -72.764065 ], [ -101.601562, -72.816074 ], [ -100.283203, -72.764065 ], [ -99.140625, -72.919635 ], [ -98.085938, -73.201317 ], [ -97.646484, -73.553302 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.175897 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.099413 ], [ -85.166016, -73.478485 ], [ -83.847656, -73.528399 ], [ -82.705078, -73.627789 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.332031, -73.124945 ], [ -79.277344, -73.528399 ], [ -77.958984, -73.428424 ], [ -76.904297, -73.627789 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -72.861328, -73.403338 ], [ -68.906250, -72.996909 ], [ -67.939453, -72.790088 ], [ -67.412109, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.587891, -68.528235 ], [ -67.412109, -68.138852 ], [ -67.763672, -67.339861 ], [ -67.236328, -66.861082 ], [ -66.093750, -66.196009 ], [ -64.599609, -65.585720 ], [ -64.160156, -65.183030 ], [ -63.632812, -64.886265 ], [ -63.017578, -64.623877 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.282760 ], [ -60.732422, -64.091408 ], [ -59.853516, -63.937372 ], [ -59.150391, -63.704722 ], [ -58.623047, -63.391522 ], [ -57.832031, -63.273182 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.279297, -78.384855 ], [ -160.224609, -78.699106 ], [ -159.521484, -79.038437 ], [ -159.169922, -79.496652 ], [ -161.103516, -79.639874 ], [ -162.421875, -79.286313 ], [ -163.037109, -78.870048 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.431641, -73.327858 ], [ -119.882812, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.267578, -73.824820 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.019543 ], [ -122.607422, -73.652545 ], [ -122.431641, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.947266, -73.726595 ], [ -127.265625, -73.453473 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.458984, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.910156, -72.073911 ], [ -96.767578, -71.965388 ], [ -96.240234, -72.528130 ], [ -96.943359, -72.448792 ], [ -98.173828, -72.475276 ], [ -99.404297, -72.448792 ], [ -100.810547, -72.501722 ], [ -101.777344, -72.315785 ], [ -102.304688, -71.883578 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -70.224609, -68.879358 ], [ -69.697266, -69.256149 ], [ -68.466797, -70.959697 ], [ -68.291016, -71.413177 ], [ -68.818359, -72.181804 ], [ -69.960938, -72.315785 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.894531, -72.100944 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -74.970703, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.159391 ], [ -72.070312, -71.187754 ], [ -71.806641, -70.670881 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.224609, -68.879358 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.330078, -17.308688 ], [ 178.681641, -17.644022 ], [ 178.593750, -18.145852 ], [ 177.890625, -18.312811 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.626953, -17.392579 ], [ 178.154297, -17.476432 ], [ 178.330078, -17.308688 ] ] ], [ [ [ -181.669922, -17.308688 ], [ -181.318359, -17.644022 ], [ -181.406250, -18.145852 ], [ -182.109375, -18.312811 ], [ -182.636719, -18.145852 ], [ -182.724609, -17.727759 ], [ -182.373047, -17.392579 ], [ -181.845703, -17.476432 ], [ -181.669922, -17.308688 ] ] ], [ [ [ 180.000000, -16.045813 ], [ 180.175781, -16.045813 ], [ 180.087891, -16.467695 ], [ 180.000000, -16.551962 ], [ 178.681641, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -16.045813 ] ] ], [ [ [ -180.000000, -16.045813 ], [ -179.824219, -16.045813 ], [ -180.000000, -16.551962 ], [ -180.615234, -16.804541 ], [ -181.318359, -16.972741 ], [ -181.406250, -16.636192 ], [ -180.000000, -16.045813 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.379883, 3.513421 ], [ -64.423828, 3.118576 ], [ -64.248047, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.313477, 0.703107 ], [ -66.884766, 1.274309 ], [ -67.192383, 2.240640 ], [ -67.456055, 2.591889 ], [ -67.807617, 2.811371 ], [ -67.324219, 3.337954 ], [ -67.324219, 3.513421 ], [ -64.379883, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.362176 ], [ -77.871094, 0.790990 ], [ -77.651367, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.596680, 0.263671 ], [ -76.289062, 0.395505 ], [ -75.629883, 0.000000 ], [ -75.366211, -0.131836 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.581830 ], [ -76.640625, -2.591889 ], [ -77.827148, -2.986927 ], [ -78.442383, -3.864255 ], [ -78.618164, -4.565474 ], [ -79.189453, -4.959615 ], [ -79.628906, -4.434044 ], [ -80.024414, -4.346411 ], [ -80.463867, -4.434044 ], [ -80.463867, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.635789 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.112305, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.643063 ], [ -68.642578, -54.876607 ], [ -66.972656, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.603178 ], [ -68.642578, -55.578345 ], [ -69.213867, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.246094, -54.495568 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.828125, -53.041213 ], [ -72.421875, -53.722717 ], [ -71.103516, -54.085173 ], [ -70.576172, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -69.082031, -18.271086 ], [ -68.950195, -18.979026 ], [ -68.422852, -19.394068 ], [ -68.774414, -20.385825 ], [ -68.203125, -21.493964 ], [ -67.807617, -22.877440 ], [ -67.104492, -22.755921 ], [ -66.972656, -22.998852 ], [ -67.324219, -24.006326 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.194877 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.382175 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.353637 ], [ -70.092773, -33.100745 ], [ -69.829102, -33.284620 ], [ -69.829102, -34.198173 ], [ -70.400391, -35.173808 ], [ -70.356445, -35.995785 ], [ -71.103516, -36.668419 ], [ -71.103516, -37.579413 ], [ -70.795898, -38.548165 ], [ -71.411133, -38.925229 ], [ -71.894531, -40.847060 ], [ -71.762695, -42.065607 ], [ -72.158203, -42.261049 ], [ -71.894531, -43.421009 ], [ -71.455078, -43.802819 ], [ -71.806641, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.235352, -44.777936 ], [ -71.674805, -44.964798 ], [ -71.542969, -45.552525 ], [ -71.938477, -46.890232 ], [ -72.465820, -47.724545 ], [ -72.333984, -48.253941 ], [ -72.641602, -48.864715 ], [ -73.432617, -49.325122 ], [ -73.344727, -50.373496 ], [ -72.993164, -50.736455 ], [ -72.290039, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.894531, -51.998410 ], [ -69.477539, -52.133488 ], [ -68.554688, -52.295042 ], [ -69.477539, -52.295042 ], [ -69.960938, -52.536273 ], [ -70.839844, -52.908902 ], [ -71.015625, -53.826597 ], [ -71.411133, -53.852527 ], [ -72.553711, -53.540307 ], [ -73.696289, -52.829321 ], [ -74.926758, -52.268157 ], [ -75.278320, -51.618017 ], [ -74.970703, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.629883, -48.661943 ], [ -75.190430, -47.724545 ], [ -74.135742, -46.950262 ], [ -75.629883, -46.649436 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.087585 ], [ -73.256836, -44.465151 ], [ -72.729492, -42.391009 ], [ -73.388672, -42.130821 ], [ -73.696289, -43.357138 ], [ -74.311523, -43.229195 ], [ -73.696289, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.496456 ], [ -71.850586, -33.906896 ], [ -71.455078, -32.435613 ], [ -71.674805, -30.902225 ], [ -71.367188, -30.107118 ], [ -71.499023, -28.844674 ], [ -70.883789, -27.644606 ], [ -70.708008, -25.720735 ], [ -70.092773, -21.412162 ], [ -70.180664, -19.766704 ], [ -70.356445, -18.354526 ], [ -69.873047, -18.104087 ], [ -69.609375, -17.560247 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.324219, 3.513421 ], [ -67.324219, 3.337954 ], [ -67.807617, 2.811371 ], [ -67.456055, 2.591889 ], [ -67.192383, 2.240640 ], [ -66.884766, 1.274309 ], [ -67.060547, 1.142502 ], [ -67.280273, 1.713612 ], [ -67.543945, 2.021065 ], [ -67.851562, 1.713612 ], [ -69.829102, 1.713612 ], [ -69.785156, 1.098565 ], [ -69.213867, 0.966751 ], [ -69.257812, 0.615223 ], [ -69.433594, 0.703107 ], [ -70.004883, 0.527336 ], [ -70.004883, -0.175781 ], [ -69.565430, -0.571280 ], [ -69.433594, -1.142502 ], [ -69.873047, -4.302591 ], [ -70.400391, -3.776559 ], [ -70.708008, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.795898, -2.240640 ], [ -71.411133, -2.328460 ], [ -71.762695, -2.152814 ], [ -72.333984, -2.416276 ], [ -73.081055, -2.328460 ], [ -73.652344, -1.274309 ], [ -74.135742, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.043945 ], [ -75.366211, -0.131836 ], [ -75.629883, 0.000000 ], [ -76.289062, 0.395505 ], [ -76.596680, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.651367, 0.834931 ], [ -77.871094, 0.790990 ], [ -78.837891, 1.362176 ], [ -78.969727, 1.669686 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.915039, 2.679687 ], [ -77.387695, 3.513421 ], [ -67.324219, 3.513421 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.075195, 3.513421 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.052734, 3.513421 ], [ -52.075195, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.625977, -17.350638 ], [ -181.274414, -17.644022 ], [ -181.450195, -18.145852 ], [ -182.065430, -18.271086 ], [ -182.636719, -18.145852 ], [ -182.724609, -17.727759 ], [ -182.329102, -17.392579 ], [ -181.889648, -17.518344 ], [ -181.625977, -17.350638 ] ] ], [ [ [ -180.000000, -16.088042 ], [ -179.780273, -16.003576 ], [ -179.912109, -16.509833 ], [ -180.000000, -16.551962 ], [ -180.615234, -16.804541 ], [ -181.274414, -17.014768 ], [ -181.406250, -16.636192 ], [ -180.922852, -16.425548 ], [ -180.571289, -16.383391 ], [ -180.000000, -16.088042 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.362176 ], [ -77.871094, 0.790990 ], [ -77.651367, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.596680, 0.263671 ], [ -76.289062, 0.395505 ], [ -75.629883, 0.000000 ], [ -75.366211, -0.131836 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.581830 ], [ -76.640625, -2.591889 ], [ -77.827148, -2.986927 ], [ -78.442383, -3.864255 ], [ -78.618164, -4.565474 ], [ -79.189453, -4.959615 ], [ -79.628906, -4.434044 ], [ -80.024414, -4.346411 ], [ -80.463867, -4.434044 ], [ -80.463867, -4.039618 ], [ -80.200195, -3.820408 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.635789 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.112305, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.832589 ], [ -45.175781, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.512662 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -54.008789, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -180.000000, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ] ] ], [ [ [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.039656 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.886719, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -148.051758, -79.655668 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.764648, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.897461, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.460938, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.435547, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.832031, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.358931 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.948242, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.039656 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.707031, -79.631968 ], [ -29.707031, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.237366 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.468750, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.395706 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.258480 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.376004 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.514931 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.762695, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.625977, -17.350638 ], [ -181.274414, -17.644022 ], [ -181.450195, -18.145852 ], [ -182.065430, -18.271086 ], [ -182.636719, -18.145852 ], [ -182.724609, -17.727759 ], [ -182.329102, -17.392579 ], [ -181.889648, -17.518344 ], [ -181.625977, -17.350638 ] ] ], [ [ [ -180.000000, -16.088042 ], [ -179.780273, -16.003576 ], [ -179.912109, -16.509833 ], [ -180.000000, -16.551962 ], [ -180.615234, -16.804541 ], [ -181.274414, -17.014768 ], [ -181.406250, -16.636192 ], [ -180.922852, -16.425548 ], [ -180.571289, -16.383391 ], [ -180.000000, -16.088042 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.103648 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.591652 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.835797 ], [ -94.350586, 48.661943 ], [ -92.592773, 48.458352 ], [ -91.625977, 48.136767 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.252930, 48.019324 ], [ -88.374023, 48.312428 ], [ -84.858398, 46.890232 ], [ -84.770508, 46.649436 ], [ -84.550781, 46.528635 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.155273, 46.498392 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.103709 ], [ -83.627930, 46.103709 ], [ -83.452148, 45.981695 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.133789, 43.580391 ], [ -82.441406, 42.972502 ], [ -83.100586, 42.065607 ], [ -83.144531, 41.967659 ], [ -83.012695, 41.836828 ], [ -82.705078, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.298828, 42.195969 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.013672, 43.261206 ], [ -79.189453, 43.452919 ], [ -78.706055, 43.612217 ], [ -76.816406, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.882812, 44.995883 ], [ -71.499023, 44.995883 ], [ -71.411133, 45.243953 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.675818 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.946714 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -74.003906, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.926758, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.914764 ], [ -75.717773, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.551758, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.428711, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.175781, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.839449 ], [ -99.008789, 26.352498 ], [ -99.316406, 26.824071 ], [ -99.536133, 27.527758 ], [ -100.107422, 28.110749 ], [ -100.942383, 29.382175 ], [ -101.645508, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -105.029297, 30.637912 ], [ -106.127930, 31.391158 ], [ -106.523438, 31.765537 ], [ -108.237305, 31.765537 ], [ -108.237305, 31.353637 ], [ -111.005859, 31.316101 ], [ -114.829102, 32.509762 ], [ -114.741211, 32.731841 ], [ -117.114258, 32.546813 ], [ -117.290039, 33.063924 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.166085 ], [ -122.827148, 49.009051 ], [ -95.141602, 49.009051 ], [ -95.141602, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.436799 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.305185 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.778522 ], [ -134.956055, 59.265881 ], [ -134.252930, 58.859224 ], [ -133.374023, 58.401712 ], [ -131.704102, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.737686 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.577148, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.366211, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.772461, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.475586, 60.217991 ], [ -166.464844, 60.392148 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.229492, 71.924528 ], [ -93.911133, 71.760191 ], [ -92.856445, 71.314877 ], [ -91.538086, 70.185103 ], [ -92.416992, 69.702868 ], [ -90.527344, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.608521 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.561523, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -81.210938, 68.672544 ], [ -81.958008, 68.138852 ], [ -81.254883, 67.592475 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.407955 ], [ -84.726562, 66.249163 ], [ -85.781250, 66.565747 ], [ -86.088867, 66.053716 ], [ -87.011719, 65.219894 ], [ -87.319336, 64.774125 ], [ -88.461914, 64.091408 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.791016, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.262695, 60.909073 ], [ -94.614258, 60.108670 ], [ -94.702148, 58.950008 ], [ -93.208008, 58.790978 ], [ -92.768555, 57.844751 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -89.033203, 56.848972 ], [ -88.022461, 56.462490 ], [ -87.319336, 55.998381 ], [ -86.088867, 55.727110 ], [ -84.990234, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.386719, 52.160455 ], [ -79.892578, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.145508, 54.136696 ], [ -79.848633, 54.673831 ], [ -78.222656, 55.128649 ], [ -77.080078, 55.825973 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.844815 ], [ -77.783203, 60.759160 ], [ -78.090820, 62.329208 ], [ -77.431641, 62.552857 ], [ -75.717773, 62.288365 ], [ -74.663086, 62.186014 ], [ -73.828125, 62.451406 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.301758, 58.950008 ], [ -68.378906, 58.790978 ], [ -67.631836, 58.217025 ], [ -66.181641, 58.768200 ], [ -65.258789, 59.866883 ], [ -64.599609, 60.326948 ], [ -63.808594, 59.445075 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.203953 ], [ -57.963867, 54.952386 ], [ -57.348633, 54.622978 ], [ -56.953125, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.278353 ], [ -55.678711, 52.133488 ], [ -57.128906, 51.426614 ], [ -58.754883, 51.069017 ], [ -60.029297, 50.233152 ], [ -61.743164, 50.092393 ], [ -63.852539, 50.289339 ], [ -65.346680, 50.289339 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.525208 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.754098 ], [ -71.103516, 46.830134 ], [ -70.268555, 46.980252 ], [ -68.642578, 48.312428 ], [ -66.533203, 49.124219 ], [ -65.039062, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.819336, 46.980252 ], [ -64.467773, 46.225453 ], [ -63.193359, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.237305, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.346680, 43.548548 ], [ -66.137695, 43.612217 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.305803 ], [ -66.005859, 45.243953 ], [ -67.148438, 45.151053 ], [ -67.807617, 45.706179 ], [ -67.807617, 47.070122 ], [ -68.247070, 47.368594 ], [ -68.906250, 47.189712 ], [ -69.257812, 47.457809 ], [ -70.004883, 46.679594 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.103516, 45.305803 ], [ -71.411133, 45.243953 ], [ -71.499023, 44.995883 ], [ -74.882812, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.644026 ], [ -78.706055, 43.612217 ], [ -79.189453, 43.452919 ], [ -79.013672, 43.261206 ], [ -78.925781, 42.875964 ], [ -80.244141, 42.358544 ], [ -81.298828, 42.195969 ], [ -82.441406, 41.672912 ], [ -82.705078, 41.672912 ], [ -83.012695, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.100586, 42.065607 ], [ -82.441406, 42.972502 ], [ -82.133789, 43.580391 ], [ -82.529297, 45.336702 ], [ -83.583984, 45.828799 ], [ -83.452148, 45.981695 ], [ -83.627930, 46.103709 ], [ -83.891602, 46.103709 ], [ -84.111328, 46.286224 ], [ -84.155273, 46.498392 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.528635 ], [ -84.770508, 46.649436 ], [ -84.858398, 46.890232 ], [ -88.374023, 48.312428 ], [ -89.252930, 48.019324 ], [ -89.604492, 48.019324 ], [ -90.834961, 48.283193 ], [ -91.625977, 48.136767 ], [ -92.592773, 48.458352 ], [ -94.350586, 48.661943 ], [ -94.658203, 48.835797 ], [ -94.833984, 49.382373 ], [ -95.141602, 49.382373 ], [ -95.141602, 49.009051 ], [ -122.958984, 49.009051 ], [ -124.892578, 49.979488 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.819818 ], [ -128.012695, 51.727028 ], [ -127.836914, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.517578, 54.800685 ], [ -129.990234, 55.279115 ], [ -129.990234, 55.924586 ], [ -131.704102, 56.559482 ], [ -133.374023, 58.401712 ], [ -134.252930, 58.859224 ], [ -134.956055, 59.265881 ], [ -135.483398, 59.778522 ], [ -136.494141, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.283408 ], [ -140.976562, 60.305185 ], [ -140.976562, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.494141, 68.895187 ], [ -135.615234, 69.318320 ], [ -134.428711, 69.626510 ], [ -132.934570, 69.503765 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.364258, 70.005567 ], [ -128.144531, 70.480896 ], [ -127.441406, 70.377854 ], [ -125.771484, 69.472969 ], [ -124.409180, 70.155288 ], [ -124.277344, 69.395783 ], [ -123.046875, 69.565226 ], [ -122.695312, 69.854762 ], [ -121.464844, 69.794136 ], [ -119.926758, 69.380313 ], [ -117.597656, 69.005675 ], [ -116.235352, 68.847665 ], [ -115.268555, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.786133, 67.809245 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.797852, 67.892086 ], [ -108.808594, 68.318146 ], [ -108.149414, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.171875, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.326172, 68.024022 ], [ -103.227539, 68.089709 ], [ -101.469727, 67.642676 ], [ -99.887695, 67.809245 ], [ -98.437500, 67.776025 ], [ -98.569336, 68.399180 ], [ -97.690430, 68.576441 ], [ -96.108398, 68.236823 ], [ -96.108398, 67.289015 ], [ -95.493164, 68.089709 ], [ -94.702148, 68.056889 ], [ -94.218750, 69.068563 ], [ -95.317383, 69.687618 ], [ -96.459961, 70.095529 ], [ -96.372070, 71.187754 ], [ -95.229492, 71.924528 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.541016, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.627286 ], [ -80.112305, 61.710706 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.490234, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.407564 ], [ -64.379883, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -83.232422, 62.915233 ], [ -81.870117, 62.895218 ], [ -81.914062, 62.714462 ], [ -83.056641, 62.165502 ], [ -83.759766, 62.186014 ], [ -83.979492, 62.451406 ], [ -83.232422, 62.915233 ] ] ], [ [ [ -55.854492, 51.645294 ], [ -55.415039, 51.590723 ], [ -56.777344, 49.809632 ], [ -56.162109, 50.148746 ], [ -55.458984, 49.922935 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.325122 ], [ -54.492188, 49.553726 ], [ -53.481445, 49.239121 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.166085 ], [ -52.646484, 47.546872 ], [ -53.085938, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.635784 ], [ -54.228516, 47.754098 ], [ -55.415039, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -57.304688, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.403320, 49.124219 ], [ -57.348633, 50.708634 ], [ -56.733398, 51.289406 ], [ -55.854492, 51.645294 ] ] ], [ [ [ -98.217773, 70.140364 ], [ -96.547852, 69.687618 ], [ -95.668945, 69.099940 ], [ -96.284180, 68.752315 ], [ -97.602539, 69.052858 ], [ -98.437500, 68.958391 ], [ -99.799805, 69.395783 ], [ -98.920898, 69.702868 ], [ -98.217773, 70.140364 ] ] ], [ [ [ -115.180664, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.653320, 72.646486 ], [ -112.456055, 72.958315 ], [ -111.049805, 72.448792 ], [ -109.907227, 72.958315 ], [ -109.028320, 72.633374 ], [ -108.193359, 71.649833 ], [ -107.666016, 72.060381 ], [ -108.413086, 73.086633 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.073844 ], [ -105.380859, 72.672681 ], [ -104.765625, 71.705093 ], [ -104.458008, 70.988349 ], [ -102.788086, 70.495574 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.580563 ], [ -102.744141, 69.503765 ], [ -102.084961, 69.115611 ], [ -102.436523, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.178184 ], [ -107.138672, 69.115611 ], [ -108.984375, 68.784144 ], [ -113.334961, 68.528235 ], [ -113.862305, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.065585 ], [ -115.136719, 70.244604 ], [ -113.730469, 70.185103 ], [ -112.412109, 70.363091 ], [ -114.345703, 70.598021 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.539543 ], [ -118.432617, 70.902268 ], [ -116.103516, 71.314877 ], [ -117.641602, 71.300793 ], [ -119.399414, 71.552741 ], [ -118.564453, 72.302431 ], [ -117.861328, 72.711903 ], [ -115.180664, 73.315246 ] ] ], [ [ [ -80.332031, 73.763497 ], [ -78.046875, 73.652545 ], [ -76.333008, 73.099413 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.738003 ], [ -79.760742, 72.803086 ], [ -80.859375, 73.327858 ], [ -80.815430, 73.689611 ], [ -80.332031, 73.763497 ] ] ], [ [ [ -72.817383, 83.231249 ], [ -65.830078, 83.026219 ], [ -63.676758, 82.902419 ], [ -61.831055, 82.631333 ], [ -61.875000, 82.361644 ], [ -64.335938, 81.929358 ], [ -66.752930, 81.723188 ], [ -67.675781, 81.498805 ], [ -65.478516, 81.505299 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.256836, 79.631968 ], [ -73.872070, 79.432371 ], [ -76.904297, 79.327084 ], [ -75.541992, 79.196075 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -76.333008, 78.179588 ], [ -77.871094, 77.897255 ], [ -78.354492, 77.504119 ], [ -79.760742, 77.205912 ], [ -79.628906, 76.980149 ], [ -77.915039, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.551758, 76.174498 ], [ -83.188477, 76.455203 ], [ -86.132812, 76.299953 ], [ -87.583008, 76.424292 ], [ -89.472656, 76.475773 ], [ -89.604492, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.670898, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.179588 ], [ -87.978516, 78.376004 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.078125, 79.343349 ], [ -86.528320, 79.734281 ], [ -86.923828, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.103470 ], [ -81.870117, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.583008, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.362305, 81.550619 ], [ -91.582031, 81.892256 ], [ -90.087891, 82.082145 ], [ -88.945312, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.517578, 82.653843 ], [ -84.243164, 82.597439 ], [ -83.188477, 82.320646 ], [ -82.441406, 82.858847 ], [ -81.079102, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.245117, 83.174035 ], [ -75.717773, 83.063469 ], [ -72.817383, 83.231249 ] ] ], [ [ [ -85.825195, 73.800318 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.528130 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.727539, 72.060381 ], [ -78.750000, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.585938, 72.248917 ], [ -74.223633, 71.773941 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.916641 ], [ -68.774414, 70.524897 ], [ -67.895508, 70.125430 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -66.445312, 68.073305 ], [ -64.863281, 67.842416 ], [ -63.413086, 66.930060 ], [ -61.831055, 66.861082 ], [ -62.182617, 66.160511 ], [ -63.896484, 64.997939 ], [ -65.126953, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.642704 ], [ -65.302734, 64.377941 ], [ -64.687500, 63.391522 ], [ -64.995117, 62.674143 ], [ -66.269531, 62.935235 ], [ -68.774414, 63.743631 ], [ -66.313477, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.862305, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.695312, 64.225493 ], [ -78.574219, 64.567319 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.802776 ], [ -73.959961, 66.302205 ], [ -72.641602, 67.289015 ], [ -72.905273, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.560384 ], [ -76.860352, 68.895187 ], [ -76.245117, 69.146920 ], [ -77.299805, 69.763757 ], [ -78.178711, 69.824471 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.748551 ], [ -84.946289, 69.960439 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.757966 ], [ -88.461914, 71.216075 ], [ -89.868164, 71.216075 ], [ -90.219727, 72.235514 ], [ -89.428711, 73.124945 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.800318 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -126.694336, 50.401515 ], [ -125.771484, 50.289339 ], [ -124.936523, 49.468124 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.639648, 48.835797 ], [ -125.947266, 49.181703 ], [ -126.870117, 49.525208 ], [ -127.045898, 49.809632 ], [ -128.056641, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -92.416992, 81.255032 ], [ -91.142578, 80.725269 ], [ -89.428711, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.663556 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.791016, 78.215541 ], [ -92.856445, 78.340533 ], [ -93.955078, 78.750659 ], [ -93.955078, 79.113389 ], [ -93.164062, 79.383905 ], [ -94.965820, 79.375806 ], [ -96.064453, 79.702907 ], [ -96.723633, 80.156200 ], [ -96.020508, 80.604086 ], [ -95.317383, 80.907616 ], [ -94.306641, 80.976799 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.255032 ] ] ], [ [ [ -64.160156, 49.951220 ], [ -62.841797, 49.696062 ], [ -61.831055, 49.296472 ], [ -61.787109, 49.095452 ], [ -62.314453, 49.095452 ], [ -63.588867, 49.410973 ], [ -64.511719, 49.866317 ], [ -64.160156, 49.951220 ] ] ], [ [ [ -96.723633, 77.157163 ], [ -94.702148, 77.098423 ], [ -93.559570, 76.780655 ], [ -91.625977, 76.780655 ], [ -90.747070, 76.444907 ], [ -90.966797, 76.069092 ], [ -89.824219, 75.845169 ], [ -89.208984, 75.606801 ], [ -87.846680, 75.563041 ], [ -86.396484, 75.486148 ], [ -84.770508, 75.693931 ], [ -82.749023, 75.780545 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.342282 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.437572 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.413974 ], [ -88.154297, 74.390342 ], [ -89.780273, 74.519889 ], [ -92.416992, 74.833436 ], [ -92.768555, 75.386696 ], [ -92.900391, 75.877372 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.119141, 76.750473 ], [ -96.723633, 77.157163 ] ] ], [ [ [ -133.198242, 54.162434 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.110943 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.187405 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.066406, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.162434 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.102539, 74.235878 ], [ -117.553711, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.532227, 73.478485 ], [ -116.762695, 73.226700 ], [ -119.223633, 72.514931 ], [ -120.454102, 71.815130 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.804688, 73.022592 ], [ -123.925781, 73.677264 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -109.599609, 76.790701 ], [ -108.544922, 76.679785 ], [ -108.193359, 76.205967 ], [ -107.797852, 75.845169 ], [ -106.918945, 76.016094 ], [ -105.864258, 75.973553 ], [ -105.688477, 75.475131 ], [ -106.303711, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.413974 ], [ -113.730469, 74.390342 ], [ -113.862305, 74.718037 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.039013 ], [ -117.729492, 75.219460 ], [ -116.367188, 76.195485 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.790701 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.184570, 73.627789 ], [ -97.382812, 73.763497 ], [ -97.119141, 73.465984 ], [ -98.041992, 72.996909 ], [ -96.547852, 72.554498 ], [ -96.723633, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.732662 ], [ -102.480469, 72.514931 ], [ -102.480469, 72.829052 ], [ -100.458984, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -85.869141, 65.730626 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.529297, 63.646259 ], [ -83.100586, 64.110602 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.830254 ], [ -85.869141, 65.730626 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.323242, 76.880775 ], [ -117.114258, 76.527061 ], [ -118.037109, 76.486046 ], [ -119.882812, 76.047916 ], [ -121.508789, 75.898801 ], [ -122.871094, 76.111348 ], [ -121.157227, 76.860810 ], [ -119.091797, 77.513624 ], [ -117.553711, 77.494607 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -98.481445, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.690430, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.799805, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.854492, 75.639536 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.341523 ], [ -101.469727, 76.310358 ], [ -99.975586, 76.649377 ], [ -98.569336, 76.588356 ], [ -98.481445, 76.720223 ] ] ], [ [ [ -94.482422, 74.140084 ], [ -92.416992, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.262695, 72.019729 ], [ -95.405273, 72.060381 ], [ -96.020508, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.493164, 73.861506 ], [ -94.482422, 74.140084 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.163075 ], [ -100.810547, 78.801980 ], [ -100.063477, 78.322757 ], [ -99.667969, 77.906466 ], [ -101.293945, 78.016453 ], [ -102.963867, 78.340533 ], [ -105.161133, 78.376004 ], [ -104.194336, 78.673242 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -98.613281, 78.870048 ], [ -97.338867, 78.836065 ], [ -96.767578, 78.767792 ], [ -95.581055, 78.420193 ], [ -95.844727, 78.052896 ], [ -97.294922, 77.851100 ], [ -98.129883, 78.080156 ], [ -98.569336, 78.455425 ], [ -98.613281, 78.870048 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.102539, 68.007571 ], [ -75.102539, 67.575717 ], [ -75.234375, 67.441229 ], [ -75.849609, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -94.833984, 75.650431 ], [ -93.999023, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.174805, 74.590108 ], [ -95.625000, 74.671638 ], [ -96.811523, 74.925142 ], [ -96.284180, 75.375605 ], [ -94.833984, 75.650431 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.998190 ], [ -110.170898, 77.692870 ], [ -112.060547, 77.408678 ], [ -113.554688, 77.730282 ], [ -112.719727, 78.052896 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -111.489258, 78.853070 ], [ -110.961914, 78.801980 ], [ -109.643555, 78.603986 ], [ -110.874023, 78.402537 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.489258, 78.853070 ] ] ], [ [ [ -105.249023, 73.640171 ], [ -104.501953, 73.415885 ], [ -105.380859, 72.764065 ], [ -106.918945, 73.465984 ], [ -106.611328, 73.602996 ], [ -105.249023, 73.640171 ] ] ], [ [ [ -96.416016, 77.832589 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.823242, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.152344, 77.551572 ], [ -96.416016, 77.832589 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.741211, 32.731841 ], [ -114.829102, 32.509762 ], [ -111.005859, 31.316101 ], [ -108.237305, 31.353637 ], [ -108.237305, 31.765537 ], [ -106.523438, 31.765537 ], [ -106.127930, 31.391158 ], [ -105.029297, 30.637912 ], [ -104.458008, 29.573457 ], [ -103.930664, 29.267233 ], [ -103.095703, 28.960089 ], [ -102.480469, 29.764377 ], [ -101.645508, 29.764377 ], [ -100.942383, 29.382175 ], [ -100.107422, 28.110749 ], [ -99.536133, 27.527758 ], [ -99.316406, 26.824071 ], [ -99.008789, 26.352498 ], [ -97.514648, 25.839449 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.005973 ], [ -97.690430, 24.287027 ], [ -97.778320, 22.917923 ], [ -97.866211, 22.431340 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.207031, 20.632784 ], [ -96.503906, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.888672, 18.812718 ], [ -94.833984, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.768555, 18.521283 ], [ -91.406250, 18.895893 ], [ -90.791016, 19.269665 ], [ -90.527344, 19.849394 ], [ -90.439453, 20.715015 ], [ -90.263672, 21.002471 ], [ -89.604492, 21.248422 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.453069 ], [ -87.055664, 21.534847 ], [ -86.791992, 21.330315 ], [ -86.835938, 20.838278 ], [ -87.363281, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.505859, 18.479609 ], [ -88.857422, 17.895114 ], [ -89.033203, 18.020528 ], [ -89.165039, 17.936929 ], [ -89.165039, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.266728 ], [ -91.450195, 17.266728 ], [ -90.703125, 16.678293 ], [ -90.615234, 16.467695 ], [ -90.439453, 16.425548 ], [ -90.483398, 16.088042 ], [ -91.757812, 16.045813 ], [ -92.241211, 15.241790 ], [ -92.065430, 15.072124 ], [ -92.197266, 14.817371 ], [ -92.241211, 14.519780 ], [ -93.339844, 15.623037 ], [ -93.867188, 15.919074 ], [ -94.702148, 16.214675 ], [ -95.229492, 16.130262 ], [ -96.064453, 15.749963 ], [ -96.547852, 15.665354 ], [ -97.998047, 16.088042 ], [ -98.964844, 16.551962 ], [ -99.711914, 16.720385 ], [ -100.810547, 17.182779 ], [ -101.645508, 17.644022 ], [ -101.909180, 17.936929 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.312811 ], [ -103.930664, 18.729502 ], [ -104.985352, 19.311143 ], [ -105.512695, 19.932041 ], [ -105.732422, 20.427013 ], [ -105.380859, 20.550509 ], [ -105.512695, 20.797201 ], [ -105.249023, 21.084500 ], [ -105.249023, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.040039, 22.755921 ], [ -106.918945, 23.765237 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.165173 ], [ -109.248047, 25.562265 ], [ -109.423828, 25.839449 ], [ -109.291992, 26.431228 ], [ -109.819336, 26.667096 ], [ -110.390625, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.031055 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.916992, 31.391158 ], [ -114.785156, 30.902225 ], [ -114.653320, 30.145127 ], [ -113.422852, 28.844674 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.983398, 28.420391 ], [ -112.763672, 27.761330 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.269531, 25.720735 ], [ -110.698242, 24.806681 ], [ -110.654297, 24.287027 ], [ -110.170898, 24.246965 ], [ -109.423828, 23.362429 ], [ -109.423828, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.726875 ], [ -112.148438, 25.482951 ], [ -112.280273, 25.997550 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.627818 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.960938, 27.800210 ], [ -114.565430, 27.722436 ], [ -114.213867, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.916992, 29.267233 ], [ -115.532227, 29.573457 ], [ -116.718750, 31.653381 ], [ -117.114258, 32.546813 ], [ -114.741211, 32.731841 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.103648 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.591652 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.902278 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.835797 ], [ -94.350586, 48.661943 ], [ -92.592773, 48.458352 ], [ -91.625977, 48.136767 ], [ -90.834961, 48.283193 ], [ -89.604492, 48.019324 ], [ -89.252930, 48.019324 ], [ -88.374023, 48.312428 ], [ -84.858398, 46.890232 ], [ -84.770508, 46.649436 ], [ -84.550781, 46.528635 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.155273, 46.498392 ], [ -84.111328, 46.286224 ], [ -83.891602, 46.103709 ], [ -83.627930, 46.103709 ], [ -83.452148, 45.981695 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.133789, 43.580391 ], [ -82.441406, 42.972502 ], [ -83.100586, 42.065607 ], [ -83.144531, 41.967659 ], [ -83.012695, 41.836828 ], [ -82.705078, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.298828, 42.195969 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.013672, 43.261206 ], [ -79.189453, 43.452919 ], [ -78.706055, 43.612217 ], [ -76.816406, 43.644026 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.882812, 44.995883 ], [ -71.499023, 44.995883 ], [ -71.411133, 45.243953 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.368594 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.675818 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.946714 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -74.003906, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.926758, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.099983 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.914764 ], [ -75.717773, 35.567980 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.551758, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.954935 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.428711, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.175781, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.802518 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.839449 ], [ -99.008789, 26.352498 ], [ -99.316406, 26.824071 ], [ -99.536133, 27.527758 ], [ -100.107422, 28.110749 ], [ -100.942383, 29.382175 ], [ -101.645508, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -105.029297, 30.637912 ], [ -106.127930, 31.391158 ], [ -106.523438, 31.765537 ], [ -108.237305, 31.765537 ], [ -108.237305, 31.353637 ], [ -111.005859, 31.316101 ], [ -114.829102, 32.509762 ], [ -114.741211, 32.731841 ], [ -117.114258, 32.546813 ], [ -117.290039, 33.063924 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.166085 ], [ -122.827148, 49.009051 ], [ -95.141602, 49.009051 ], [ -95.141602, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.436799 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.305185 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.778522 ], [ -134.956055, 59.265881 ], [ -134.252930, 58.859224 ], [ -133.374023, 58.401712 ], [ -131.704102, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.737686 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.577148, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.578345 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.366211, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.124962 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.772461, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.475586, 60.217991 ], [ -166.464844, 60.392148 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.068359, 83.642973 ], [ -27.114258, 83.520162 ], [ -20.830078, 82.726530 ], [ -22.675781, 82.344100 ], [ -26.499023, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.829102, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.610352, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.788086, 81.716859 ], [ -12.216797, 81.288376 ], [ -16.303711, 80.582539 ], [ -16.831055, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.709961, 80.126102 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.990046 ], [ -20.039062, 76.940488 ], [ -21.665039, 76.629067 ], [ -19.819336, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.152043 ], [ -19.379883, 74.295463 ], [ -21.577148, 74.223935 ], [ -20.434570, 73.812574 ], [ -20.742188, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.280273, 72.181804 ], [ -24.257812, 72.593979 ], [ -24.785156, 72.329130 ], [ -23.422852, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.752930, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.532227, 71.427179 ], [ -25.180664, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.125430 ], [ -25.048828, 69.256149 ], [ -27.729492, 68.463800 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.946472 ], [ -39.814453, 65.458261 ], [ -40.649414, 64.848937 ], [ -40.693359, 64.129784 ], [ -41.176758, 63.489767 ], [ -42.802734, 62.674143 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.108670 ], [ -44.780273, 60.042904 ], [ -46.274414, 60.844911 ], [ -48.251953, 60.866312 ], [ -49.218750, 61.396719 ], [ -49.921875, 62.390369 ], [ -51.635742, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.657227, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.187000 ], [ -52.998047, 68.350594 ], [ -51.459961, 68.736383 ], [ -51.064453, 69.146920 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.815812 ], [ -53.437500, 70.830248 ], [ -51.372070, 70.568803 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.854492, 71.649833 ], [ -54.711914, 72.580829 ], [ -55.327148, 72.958315 ], [ -57.304688, 74.706450 ], [ -58.579102, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.413086, 76.174498 ], [ -66.049805, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.429011 ], [ -69.389648, 78.912384 ], [ -65.698242, 79.391998 ], [ -65.302734, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.676758, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.767353 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.041992, 81.886056 ], [ -50.405273, 82.437205 ], [ -47.988281, 82.063963 ], [ -46.582031, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.202302 ], [ -46.757812, 82.625695 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.068359, 83.642973 ] ] ] } } , @@ -66,35 +54,23 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -14.501953, 66.460663 ], [ -14.721680, 65.802776 ], [ -13.623047, 65.127638 ], [ -14.897461, 64.358931 ], [ -18.676758, 63.489767 ], [ -22.763672, 63.956673 ], [ -21.796875, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.603878 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.284537 ], [ -17.797852, 66.000150 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.293564 ], [ -7.998047, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.250977, 41.902277 ], [ -6.679688, 41.869561 ], [ -6.372070, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.346544 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.514648, 39.639538 ], [ -7.119141, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.065392 ], [ -7.163086, 37.788081 ], [ -7.558594, 37.439974 ], [ -7.470703, 37.090240 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.876953, 36.879621 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.272461, 38.341656 ], [ -9.536133, 38.754083 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.740986 ], [ -8.789062, 40.747257 ], [ -8.789062, 41.178654 ], [ -9.008789, 41.541478 ], [ -9.052734, 41.869561 ], [ -8.657227, 42.130821 ], [ -8.261719, 42.293564 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.866211, 5.397273 ], [ -51.811523, 4.565474 ], [ -51.679688, 4.171115 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.184570, 3.206333 ], [ -54.008789, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.515625, 50.429518 ], [ 3.515625, 43.165123 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.614258, 48.690960 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.362176 ], [ -77.871094, 0.790990 ], [ -77.651367, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.596680, 0.263671 ], [ -76.289062, 0.395505 ], [ -75.629883, 0.000000 ], [ -75.366211, -0.131836 ], [ -75.234375, -0.922812 ], [ -75.541992, -1.581830 ], [ -76.640625, -2.591889 ], [ -77.827148, -2.986927 ], [ -78.178711, -3.513421 ], [ -80.288086, -3.513421 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.635789 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.112305, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 51.454007 ], [ 3.515625, 51.316881 ], [ 3.295898, 51.344339 ], [ 3.515625, 51.454007 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.515625, 15.538376 ], [ 3.515625, 11.738302 ], [ 2.856445, 12.254128 ], [ 2.504883, 12.254128 ], [ 2.153320, 11.953349 ], [ 2.197266, 12.640338 ], [ 1.010742, 12.854649 ], [ 1.010742, 13.325485 ], [ 0.439453, 14.008696 ], [ 0.307617, 14.434680 ], [ 0.395508, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.406250, 15.326572 ], [ 2.768555, 15.411319 ], [ 3.515625, 15.538376 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.958391 ], [ -177.539062, 68.204212 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.583217 ], [ -174.331055, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.870117, 66.912834 ], [ -169.892578, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.573242, 64.453849 ], [ -172.968750, 64.244595 ], [ -173.891602, 64.282760 ], [ -174.638672, 64.623877 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.348514 ], [ -177.231445, 65.512963 ], [ -178.374023, 65.385147 ], [ -178.901367, 65.748683 ], [ -178.681641, 66.107170 ], [ -179.868164, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.274414, 64.529548 ], [ -182.592773, 64.605038 ], [ -181.669922, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.615234, 62.975198 ], [ -180.527344, 62.573106 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -183.515625, 62.288365 ], [ -183.515625, 69.748551 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.958391 ] ] ], [ [ [ -180.000000, 71.510978 ], [ -179.868164, 71.552741 ], [ -179.033203, 71.552741 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.887885 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.786910 ], [ -181.274414, 71.102543 ], [ -180.000000, 71.510978 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 3.513421 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.292969, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.528320, 3.513421 ], [ 47.153320, 3.513421 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.620117, 3.513421 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.137695, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.627930, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.318146 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.079102, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.682617, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.736328, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 13.007812, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.886719, 0.000000 ], [ 14.326172, -0.571280 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.074219, -3.995781 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.950195, -48.632909 ], [ 69.565430, -48.951366 ], [ 70.532227, -49.066668 ], [ 70.576172, -49.267805 ], [ 70.268555, -49.696062 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.950195, -48.632909 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.885072 ], [ 125.068359, -9.102097 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.276727 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.592773, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.647461, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.718750, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.259766, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.620117, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.607422, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.876953, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 152.138672, -4.127285 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.962891, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.484768 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.127285 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.809221 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.237366 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.199994 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.627930, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.318146 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.557617, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.214844, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.849609, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.101562, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.079102, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.682617, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.736328, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ] ] ] ] } } ] } ] } , @@ -102,29 +78,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -2.988281, 58.631217 ], [ -3.515625, 58.124320 ] ] ], [ [ [ -3.515625, 57.633640 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.538086, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.513427 ], [ -2.944336, 50.708634 ], [ -3.515625, 50.289339 ], [ -3.515625, 51.399206 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.426614 ], [ -3.515625, 53.435719 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.527344, 15.114553 ], [ -0.263672, 14.944785 ], [ 0.395508, 14.944785 ], [ 0.307617, 14.434680 ], [ 0.439453, 14.008696 ], [ 1.010742, 13.325485 ], [ 1.010742, 12.854649 ], [ 2.197266, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.450195, 11.566144 ], [ 1.230469, 11.092166 ], [ 0.878906, 11.005904 ], [ 0.000000, 11.005904 ], [ -0.439453, 11.092166 ], [ -0.747070, 10.919618 ], [ -1.186523, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.944336, 10.401378 ], [ -2.812500, 9.622414 ], [ -3.515625, 9.882275 ], [ -3.515625, 13.325485 ], [ -3.120117, 13.539201 ], [ -2.988281, 13.795406 ], [ -2.197266, 14.264383 ], [ -2.021484, 14.562318 ], [ -1.054688, 14.987240 ], [ -0.527344, 15.114553 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.608398, 69.068563 ], [ 29.003906, 69.763757 ], [ 27.729492, 70.170201 ], [ 26.191406, 69.824471 ], [ 25.708008, 69.099940 ], [ 24.741211, 68.656555 ], [ 23.642578, 68.895187 ], [ 22.368164, 68.847665 ], [ 21.225586, 69.364831 ], [ 20.654297, 69.099940 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 17.973633, 68.560384 ], [ 17.709961, 68.007571 ], [ 16.787109, 68.007571 ], [ 15.117188, 66.196009 ], [ 13.535156, 64.792848 ], [ 13.930664, 64.453849 ], [ 13.579102, 64.052978 ], [ 12.568359, 64.072200 ], [ 11.909180, 63.134503 ], [ 11.997070, 61.793900 ], [ 12.612305, 61.291349 ], [ 12.304688, 60.108670 ], [ 11.469727, 59.422728 ], [ 11.030273, 58.859224 ], [ 10.371094, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.932617, 62.613562 ], [ 8.569336, 63.450509 ], [ 10.546875, 64.491725 ], [ 12.348633, 65.874725 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.204102, 69.824471 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.565430, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 17.006836, 80.050460 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.739618 ], [ 13.183594, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.161133, 79.671438 ], [ 15.512695, 80.012423 ], [ 17.006836, 80.050460 ] ] ], [ [ [ 22.939453, 80.654174 ], [ 25.444336, 80.408388 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.520657 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.434570, 80.596909 ], [ 21.928711, 80.356995 ], [ 22.939453, 80.654174 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.741211, 77.851100 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.401367, 77.934055 ], [ 20.830078, 78.251387 ], [ 22.895508, 78.455425 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.170201 ], [ 29.003906, 69.763757 ], [ 28.608398, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.692771 ], [ 29.047852, 66.947274 ], [ 30.234375, 65.802776 ], [ 29.531250, 64.942160 ], [ 30.454102, 64.206377 ], [ 30.014648, 63.548552 ], [ 31.508789, 62.875188 ], [ 31.157227, 62.349609 ], [ 28.081055, 60.500525 ], [ 26.235352, 60.413852 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.456055, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.312500, 65.531171 ], [ 23.906250, 66.000150 ], [ 23.554688, 66.390361 ], [ 23.554688, 67.941650 ], [ 21.972656, 68.624544 ], [ 20.654297, 69.099940 ], [ 21.225586, 69.364831 ], [ 22.368164, 68.847665 ], [ 23.642578, 68.895187 ], [ 24.741211, 68.656555 ], [ 25.708008, 69.099940 ], [ 26.191406, 69.824471 ], [ 27.729492, 70.170201 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.099940 ], [ 21.972656, 68.624544 ], [ 23.554688, 67.941650 ], [ 23.554688, 66.390361 ], [ 23.906250, 66.000150 ], [ 22.192383, 65.730626 ], [ 21.225586, 65.035060 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.333540 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.086763 ], [ 17.885742, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.864258, 56.096556 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.963867, 55.354135 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.422728 ], [ 12.304688, 60.108670 ], [ 12.612305, 61.291349 ], [ 11.997070, 61.793900 ], [ 11.909180, 63.134503 ], [ 12.568359, 64.072200 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.453849 ], [ 13.535156, 64.792848 ], [ 15.117188, 66.196009 ], [ 16.787109, 68.007571 ], [ 17.709961, 68.007571 ], [ 17.973633, 68.560384 ], [ 19.863281, 68.399180 ], [ 20.039062, 69.068563 ], [ 20.654297, 69.099940 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.172852, 47.129951 ], [ 12.392578, 46.769968 ], [ 13.798828, 46.498392 ], [ 13.710938, 46.012224 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.568359, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.084961, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 7.558594, 44.119142 ], [ 6.987305, 44.245199 ], [ 6.767578, 45.026950 ], [ 7.075195, 45.336702 ], [ 6.811523, 45.706179 ], [ 6.855469, 45.981695 ], [ 7.294922, 45.767523 ], [ 7.734375, 45.828799 ], [ 8.305664, 46.164614 ], [ 8.481445, 46.012224 ], [ 8.964844, 46.042736 ], [ 9.184570, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.498392 ], [ 10.458984, 46.890232 ], [ 11.030273, 46.739861 ], [ 11.162109, 46.950262 ], [ 12.172852, 47.129951 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.636719, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.603516, 50.373496 ], [ 4.306641, 49.894634 ], [ 4.790039, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.888672, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.009051 ], [ 7.602539, 48.341646 ], [ 7.470703, 47.606163 ], [ 7.207031, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.279229 ], [ 6.020508, 46.739861 ], [ 6.020508, 46.286224 ], [ 6.503906, 46.437857 ], [ 6.855469, 45.981695 ], [ 6.811523, 45.706179 ], [ 7.075195, 45.336702 ], [ 6.767578, 45.026950 ], [ 6.987305, 44.245199 ], [ 7.558594, 44.119142 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ 0.703125, 42.811522 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.694974 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 68.958391 ], [ 182.460938, 68.204212 ], [ 183.515625, 67.809245 ], [ 183.515625, 65.403445 ], [ 182.768555, 65.512963 ], [ 181.625977, 65.385147 ], [ 181.098633, 65.748683 ], [ 181.318359, 66.107170 ], [ 180.131836, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.725586, 64.529548 ], [ 177.407227, 64.605038 ], [ 178.330078, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.384766, 62.975198 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.326948 ], [ 170.332031, 59.888937 ], [ 168.881836, 60.565379 ], [ 166.289062, 59.778522 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.734253 ], [ 163.520508, 59.866883 ], [ 163.212891, 59.220934 ], [ 162.026367, 58.240164 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.037109, 56.170023 ], [ 162.114258, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.356445, 54.342149 ], [ 160.004883, 53.199452 ], [ 158.510742, 52.961875 ], [ 158.247070, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.401367, 51.699800 ], [ 156.005859, 53.146770 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.821355 ], [ 158.378906, 58.054632 ], [ 160.136719, 59.310768 ], [ 161.850586, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.487305, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.756395 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.881942 ], [ 151.259766, 58.790978 ], [ 151.347656, 59.512029 ], [ 149.765625, 59.645540 ], [ 148.535156, 59.153403 ], [ 145.502930, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.823242, 54.265224 ], [ 139.921875, 54.188155 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.234407 ], [ 140.493164, 50.035974 ], [ 140.053711, 48.458352 ], [ 138.559570, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.389082 ], [ 133.549805, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.228517 ], [ 130.649414, 42.391009 ], [ 130.649414, 42.908160 ], [ 131.132812, 42.940339 ], [ 131.308594, 44.119142 ], [ 131.044922, 44.964798 ], [ 131.879883, 45.305803 ], [ 133.110352, 45.151053 ], [ 133.769531, 46.103709 ], [ 134.121094, 47.219568 ], [ 134.516602, 47.576526 ], [ 135.043945, 48.487486 ], [ 133.374023, 48.195387 ], [ 132.495117, 47.783635 ], [ 131.000977, 47.783635 ], [ 130.561523, 48.719961 ], [ 129.418945, 49.439557 ], [ 127.661133, 49.752880 ], [ 127.265625, 50.736455 ], [ 126.958008, 51.344339 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.802761 ], [ 125.068359, 53.173119 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 120.981445, 53.252069 ], [ 120.190430, 52.749594 ], [ 120.717773, 52.509535 ], [ 120.717773, 51.971346 ], [ 120.190430, 51.645294 ], [ 119.267578, 50.569283 ], [ 119.267578, 50.148746 ], [ 117.861328, 49.525208 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.148746 ], [ 114.345703, 50.261254 ], [ 112.895508, 49.553726 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.423828, 49.296472 ], [ 108.457031, 49.296472 ], [ 107.885742, 49.781264 ], [ 106.875000, 50.261254 ], [ 105.908203, 50.401515 ], [ 104.633789, 50.289339 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.084961, 51.261915 ], [ 100.898438, 51.508742 ], [ 99.975586, 51.645294 ], [ 98.876953, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.217773, 50.429518 ], [ 97.250977, 49.724479 ], [ 95.800781, 49.979488 ], [ 94.833984, 50.007739 ], [ 94.130859, 50.485474 ], [ 93.120117, 50.485474 ], [ 92.241211, 50.792047 ], [ 90.703125, 50.345460 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.837982 ], [ 85.561523, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.903033 ], [ 83.364258, 51.069017 ], [ 81.958008, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.904297, 54.495568 ], [ 74.399414, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.246094, 54.367759 ], [ 71.191406, 54.136696 ], [ 70.883789, 55.178868 ], [ 69.082031, 55.379110 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.597528 ], [ 65.170898, 54.342149 ], [ 61.435547, 54.007769 ], [ 60.996094, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.985352, 51.971346 ], [ 61.567383, 51.261915 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 52.338867, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.597186 ], [ 48.559570, 49.866317 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.065430, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.329102, 47.724545 ], [ 48.076172, 47.754098 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.086914, 46.407564 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.592773, 43.675818 ], [ 47.504883, 42.972502 ], [ 48.603516, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.669922, 41.836828 ], [ 46.406250, 41.869561 ], [ 45.791016, 42.098222 ], [ 45.483398, 42.488302 ], [ 44.516602, 42.714732 ], [ 43.945312, 42.553080 ], [ 43.769531, 42.747012 ], [ 42.407227, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.078125, 43.548548 ], [ 39.946289, 43.421009 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.694336, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.255847 ], [ 37.661133, 46.649436 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.249407 ], [ 38.232422, 47.100045 ], [ 38.276367, 47.546872 ], [ 38.759766, 47.813155 ], [ 39.726562, 47.901614 ], [ 39.902344, 48.224673 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.296472 ], [ 40.078125, 49.610710 ], [ 38.583984, 49.922935 ], [ 38.012695, 49.922935 ], [ 37.397461, 50.373496 ], [ 36.606445, 50.233152 ], [ 35.375977, 50.569283 ], [ 35.375977, 50.764259 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.261915 ], [ 34.145508, 51.563412 ], [ 34.409180, 51.781436 ], [ 33.750000, 52.321911 ], [ 32.695312, 52.241256 ], [ 32.431641, 52.295042 ], [ 32.167969, 52.052490 ], [ 31.772461, 52.106505 ], [ 31.552734, 52.749594 ], [ 31.289062, 53.067627 ], [ 31.508789, 53.173119 ], [ 32.299805, 53.120405 ], [ 32.695312, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.800685 ], [ 30.981445, 55.078367 ], [ 30.893555, 55.553495 ], [ 29.882812, 55.801281 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.752723 ], [ 27.773438, 57.255281 ], [ 27.290039, 57.468589 ], [ 27.729492, 57.797944 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.310768 ], [ 27.993164, 59.467408 ], [ 29.135742, 60.020952 ], [ 28.081055, 60.500525 ], [ 31.157227, 62.349609 ], [ 31.508789, 62.875188 ], [ 30.014648, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.531250, 64.942160 ], [ 30.234375, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.692771 ], [ 28.432617, 68.366801 ], [ 28.608398, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.113281, 69.565226 ], [ 32.124023, 69.900118 ], [ 33.793945, 69.302794 ], [ 36.518555, 69.068563 ], [ 40.297852, 67.925140 ], [ 41.044922, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.034180, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.892680 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.840668 ], [ 37.133789, 64.339908 ], [ 36.518555, 64.755390 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.529548 ], [ 40.429688, 64.755390 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.208984, 67.958148 ], [ 43.461914, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.571289, 67.558948 ], [ 45.571289, 67.016009 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.878345 ], [ 48.120117, 67.525373 ], [ 50.229492, 67.991108 ], [ 53.701172, 68.863517 ], [ 54.492188, 68.815927 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.089709 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.285651 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.907227, 69.240579 ], [ 68.510742, 68.089709 ], [ 69.169922, 68.608521 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.349339 ], [ 66.928711, 69.457554 ], [ 67.280273, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.708984, 71.031249 ], [ 68.554688, 71.938158 ], [ 69.213867, 72.842021 ], [ 69.960938, 73.035419 ], [ 72.597656, 72.777081 ], [ 72.817383, 72.222101 ], [ 71.850586, 71.413177 ], [ 72.465820, 71.088305 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.256836, 67.742759 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.058594, 67.759398 ], [ 74.487305, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.627197 ], [ 73.081055, 71.441171 ], [ 74.882812, 72.114445 ], [ 74.663086, 72.829052 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.893555, 71.869909 ], [ 77.563477, 72.262310 ], [ 79.672852, 72.315785 ], [ 81.518555, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 82.265625, 73.849286 ], [ 84.638672, 73.800318 ], [ 86.835938, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.639536 ], [ 92.900391, 75.769747 ], [ 93.251953, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.679688, 75.920199 ], [ 98.920898, 76.444907 ], [ 100.766602, 76.434604 ], [ 101.030273, 76.860810 ], [ 101.997070, 77.283532 ], [ 104.370117, 77.702234 ], [ 106.083984, 77.370301 ], [ 104.721680, 77.127825 ], [ 106.962891, 76.970245 ], [ 107.226562, 76.475773 ], [ 108.149414, 76.720223 ], [ 111.093750, 76.710125 ], [ 113.334961, 76.226907 ], [ 114.125977, 75.845169 ], [ 113.906250, 75.331158 ], [ 112.763672, 75.027664 ], [ 110.170898, 74.472903 ], [ 109.379883, 74.176073 ], [ 110.654297, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.027344, 73.971078 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.590586 ], [ 115.576172, 73.751205 ], [ 118.784180, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.178711, 72.971189 ], [ 123.266602, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.035419 ], [ 129.067383, 72.395706 ], [ 128.452148, 71.978988 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.842539 ], [ 133.857422, 71.385142 ], [ 135.571289, 71.649833 ], [ 137.504883, 71.343013 ], [ 138.251953, 71.622143 ], [ 139.877930, 71.483086 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.501953, 72.195246 ], [ 150.336914, 71.608283 ], [ 152.973633, 70.844673 ], [ 157.016602, 71.031249 ], [ 158.994141, 70.873491 ], [ 159.829102, 70.451508 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.290039, 69.641804 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.580563 ], [ 169.584961, 68.688521 ], [ 170.815430, 69.021414 ], [ 170.024414, 69.657086 ], [ 170.463867, 70.095529 ], [ 173.627930, 69.824471 ], [ 175.737305, 69.869892 ], [ 178.593750, 69.395783 ], [ 180.000000, 68.958391 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.547523 ], [ 68.159180, 76.237366 ], [ 64.643555, 75.737303 ], [ 61.567383, 75.264239 ], [ 58.491211, 74.307353 ], [ 56.997070, 73.327858 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.524414, 70.714471 ], [ 56.953125, 70.627197 ], [ 53.657227, 70.757966 ], [ 53.393555, 71.201920 ], [ 51.591797, 71.469124 ], [ 51.459961, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.448242, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.084326 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.225586, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 95.932617, 81.248348 ], [ 97.866211, 80.746492 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.878528 ], [ 97.778320, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.424308 ], [ 92.548828, 80.141163 ], [ 91.186523, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.932617, 81.248348 ] ] ], [ [ [ 138.823242, 76.132430 ], [ 141.459961, 76.090236 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.977539, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.132430 ] ] ], [ [ [ 102.084961, 79.343349 ], [ 102.832031, 79.278140 ], [ 105.380859, 78.716316 ], [ 105.073242, 78.304955 ], [ 99.448242, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.343349 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.749594 ], [ 143.217773, 51.754240 ], [ 143.657227, 50.736455 ], [ 144.667969, 48.980217 ], [ 143.173828, 49.296472 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.830134 ], [ 143.525391, 46.134170 ], [ 142.734375, 46.739861 ], [ 142.075195, 45.981695 ], [ 141.899414, 46.800059 ], [ 142.031250, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.610710 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.774689 ], [ 142.207031, 54.213861 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 50.053711, 80.921494 ], [ 51.503906, 80.696895 ], [ 51.152344, 80.546518 ], [ 48.911133, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.592773, 80.012423 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.868164, 80.589727 ], [ 46.801758, 80.774716 ], [ 48.339844, 80.781758 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.753556 ], [ 50.053711, 80.921494 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.227539, 75.342282 ], [ 150.732422, 75.084326 ], [ 149.589844, 74.683250 ], [ 147.963867, 74.775843 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 180.000000, 71.510978 ], [ 180.131836, 71.552741 ], [ 180.966797, 71.552741 ], [ 182.416992, 71.272595 ], [ 182.329102, 71.130988 ], [ 181.318359, 70.887885 ], [ 180.000000, 70.830248 ], [ 178.901367, 70.786910 ], [ 178.725586, 71.102543 ], [ 180.000000, 71.510978 ] ] ], [ [ [ 142.075195, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.613281, 73.214013 ], [ 142.075195, 73.201317 ], [ 140.053711, 73.315246 ], [ 139.877930, 73.365639 ], [ 140.800781, 73.763497 ], [ 142.075195, 73.861506 ] ] ], [ [ [ 21.269531, 55.178868 ], [ 22.324219, 55.002826 ], [ 22.763672, 54.851315 ], [ 22.631836, 54.572062 ], [ 22.719727, 54.316523 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.418930 ], [ 19.907227, 54.876607 ], [ 21.269531, 55.178868 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.768555, 8.015716 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.876953, 52.052490 ], [ 99.975586, 51.645294 ], [ 100.898438, 51.508742 ], [ 102.084961, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.633789, 50.289339 ], [ 105.908203, 50.401515 ], [ 106.875000, 50.261254 ], [ 107.885742, 49.781264 ], [ 108.457031, 49.296472 ], [ 109.423828, 49.296472 ], [ 110.654297, 49.124219 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.553726 ], [ 114.345703, 50.261254 ], [ 114.960938, 50.148746 ], [ 115.488281, 49.809632 ], [ 116.674805, 49.894634 ], [ 115.488281, 48.136767 ], [ 115.751953, 47.724545 ], [ 116.323242, 47.842658 ], [ 117.290039, 47.694974 ], [ 118.081055, 48.078079 ], [ 118.872070, 47.754098 ], [ 119.750977, 47.040182 ], [ 119.663086, 46.679594 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.377254 ], [ 115.971680, 45.736860 ], [ 114.477539, 45.336702 ], [ 113.466797, 44.809122 ], [ 111.884766, 45.089036 ], [ 111.357422, 44.465151 ], [ 111.665039, 44.087585 ], [ 111.840820, 43.739352 ], [ 111.137695, 43.421009 ], [ 110.390625, 42.875964 ], [ 109.248047, 42.520700 ], [ 107.753906, 42.488302 ], [ 106.127930, 42.130821 ], [ 104.985352, 41.607228 ], [ 104.501953, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.821289, 42.520700 ], [ 100.854492, 42.650122 ], [ 99.536133, 42.520700 ], [ 97.470703, 42.747012 ], [ 96.328125, 42.714732 ], [ 95.756836, 43.325178 ], [ 95.317383, 44.245199 ], [ 94.702148, 44.339565 ], [ 93.471680, 44.964798 ], [ 90.966797, 45.274886 ], [ 90.571289, 45.706179 ], [ 90.966797, 46.890232 ], [ 90.263672, 47.694974 ], [ 88.857422, 48.078079 ], [ 88.022461, 48.603858 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.703125, 50.345460 ], [ 92.241211, 50.792047 ], [ 93.120117, 50.485474 ], [ 94.130859, 50.485474 ], [ 94.833984, 50.007739 ], [ 95.800781, 49.979488 ], [ 97.250977, 49.724479 ], [ 98.217773, 50.429518 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.302591 ], [ 114.873047, 4.346411 ], [ 114.653320, 3.995781 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.915833 ], [ 115.444336, 5.441022 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 13.007812, 1.845384 ], [ 13.271484, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.886719, 0.000000 ], [ 14.326172, -0.571280 ], [ 14.414062, -1.318243 ], [ 14.282227, -1.977147 ], [ 13.974609, -2.460181 ], [ 13.095703, -2.416276 ], [ 12.568359, -1.933227 ], [ 12.480469, -2.372369 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.733398, -3.513421 ], [ 10.634766, -3.513421 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.425692 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 141.020508, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.087891 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.137695, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.883789, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.054628 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.014648, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.600586, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.878872 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 143.481445, -3.513421 ], [ 141.020508, -3.513421 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } ] } , @@ -137,20 +97,18 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.625977, -17.329664 ], [ -181.274414, -17.623082 ], [ -181.450195, -18.145852 ], [ -181.757812, -18.229351 ], [ -181.757812, -17.434511 ], [ -181.625977, -17.329664 ] ] ], [ [ [ -180.000000, -16.066929 ], [ -179.802246, -16.024696 ], [ -179.912109, -16.509833 ], [ -180.000000, -16.551962 ], [ -180.637207, -16.804541 ], [ -181.274414, -17.014768 ], [ -181.406250, -16.636192 ], [ -180.900879, -16.425548 ], [ -180.593262, -16.383391 ], [ -180.000000, -16.066929 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -181.757812, -37.631635 ], [ -181.472168, -37.701207 ], [ -181.757812, -38.651198 ], [ -181.757812, -37.631635 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.247559, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.071777, 20.653346 ], [ -156.423340, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.752930, 21.186973 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.697754, 21.268900 ], [ -158.137207, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.741211, 22.146708 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.676454 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.353916 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.839076 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.030762, 26.372185 ], [ -99.294434, 26.843677 ], [ -99.514160, 27.547242 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.126124 ], [ -105.029297, 30.637912 ], [ -105.622559, 31.090574 ], [ -106.149902, 31.391158 ], [ -106.501465, 31.746854 ], [ -108.237305, 31.746854 ], [ -108.237305, 31.334871 ], [ -111.027832, 31.334871 ], [ -114.807129, 32.528289 ], [ -114.719238, 32.713355 ], [ -117.136230, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.859863, 39.774769 ], [ -124.387207, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.385442 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.849121, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.990234, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.217025 ], [ -137.790527, 58.505175 ], [ -139.877930, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.574779 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.203125, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.676938 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.762207, 63.223730 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.773926, 64.792848 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.970703, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.740674 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.562500, 63.322549 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.217991 ], [ -166.464844, 60.381290 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.307129, 57.088515 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.242188, 56.547372 ], [ -88.242188, 48.253941 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.443778 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.676454 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.382373 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 49.009051 ], [ -124.914551, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.441406, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.749594 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.800685 ], [ -129.990234, 55.279115 ], [ -130.012207, 55.912273 ], [ -131.704102, 56.547372 ], [ -133.352051, 58.413223 ], [ -134.274902, 58.859224 ], [ -134.934082, 59.265881 ], [ -135.483398, 59.789580 ], [ -136.472168, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.272515 ], [ -140.998535, 60.305185 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -127.309570, 50.555325 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.289339 ], [ -124.914551, 49.482401 ], [ -123.925781, 49.066668 ], [ -123.508301, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.809632 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -133.176270, 54.175297 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.173932 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.044434, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.713355 ], [ -114.807129, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.237305, 31.334871 ], [ -108.237305, 31.746854 ], [ -106.501465, 31.746854 ], [ -106.149902, 31.391158 ], [ -105.622559, 31.090574 ], [ -105.029297, 30.637912 ], [ -104.699707, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.930664, 29.267233 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.547242 ], [ -99.294434, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.536621, 25.839449 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.986058 ], [ -97.712402, 24.266997 ], [ -97.778320, 22.938160 ], [ -97.866211, 22.451649 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.910645, 18.833515 ], [ -94.833984, 18.562947 ], [ -94.416504, 18.145852 ], [ -93.559570, 18.417079 ], [ -92.790527, 18.521283 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.473518 ], [ -88.242188, 18.500447 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.066929 ], [ -92.219238, 15.241790 ], [ -92.087402, 15.072124 ], [ -92.197266, 14.838612 ], [ -92.219238, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.867188, 15.940202 ], [ -94.702148, 16.193575 ], [ -95.251465, 16.130262 ], [ -96.042480, 15.749963 ], [ -96.547852, 15.644197 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.942871, 16.573023 ], [ -99.689941, 16.699340 ], [ -100.832520, 17.161786 ], [ -101.667480, 17.644022 ], [ -101.909180, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.291950 ], [ -103.908691, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.952696 ], [ -105.732422, 20.427013 ], [ -105.402832, 20.529933 ], [ -105.490723, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.018066, 22.776182 ], [ -106.918945, 23.765237 ], [ -107.907715, 24.547123 ], [ -108.391113, 25.165173 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.450902 ], [ -109.797363, 26.667096 ], [ -110.390625, 27.156920 ], [ -110.632324, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.459033 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.012031 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.559815 ], [ -114.213867, 31.522361 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.763184, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.323730, 29.745302 ], [ -113.598633, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.748397 ], [ -113.137207, 28.420391 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.654297, 24.307053 ], [ -110.170898, 24.266997 ], [ -109.401855, 23.362429 ], [ -109.423828, 23.180764 ], [ -109.863281, 22.816694 ], [ -110.039062, 22.816694 ], [ -110.302734, 23.422928 ], [ -110.939941, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.148438, 25.463115 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.647459 ], [ -113.840332, 26.902477 ], [ -114.455566, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.191895, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.510254, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.136230, 32.528289 ], [ -114.719238, 32.713355 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.362793, 14.434680 ], [ -89.582520, 14.370834 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.136576 ], [ -92.219238, 14.541050 ], [ -92.197266, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.219238, 15.241790 ], [ -91.757812, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.518375 ], [ -154.841309, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.698242, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.917969, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.247559, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.071777, 20.653346 ], [ -156.423340, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.752930, 21.186973 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.697754, 21.268900 ], [ -158.137207, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.741211, 22.146708 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.676454 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.353916 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.839076 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.878994 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.030762, 26.372185 ], [ -99.294434, 26.843677 ], [ -99.514160, 27.547242 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.979312 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.126124 ], [ -105.029297, 30.637912 ], [ -105.622559, 31.090574 ], [ -106.149902, 31.391158 ], [ -106.501465, 31.746854 ], [ -108.237305, 31.746854 ], [ -108.237305, 31.334871 ], [ -111.027832, 31.334871 ], [ -114.807129, 32.528289 ], [ -114.719238, 32.713355 ], [ -117.136230, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.091797, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.959409 ], [ -123.859863, 39.774769 ], [ -124.387207, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.385442 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.849121, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.990234, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.253418, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.217025 ], [ -137.790527, 58.505175 ], [ -139.877930, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.574779 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.203125, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.676938 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.272515 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.762207, 63.223730 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.542969, 63.460329 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.773926, 64.792848 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.970703, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.740674 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.562500, 63.322549 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.217991 ], [ -166.464844, 60.381290 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.644022 ], [ -88.242188, 17.560247 ], [ -88.242188, 17.329664 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.014768 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.857422, 17.874203 ], [ -88.483887, 18.479609 ], [ -88.308105, 18.500447 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.713355 ], [ -114.807129, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.237305, 31.334871 ], [ -108.237305, 31.746854 ], [ -106.501465, 31.746854 ], [ -106.149902, 31.391158 ], [ -105.622559, 31.090574 ], [ -105.029297, 30.637912 ], [ -104.699707, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.930664, 29.267233 ], [ -103.117676, 28.979312 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.547242 ], [ -99.294434, 26.843677 ], [ -99.030762, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.536621, 25.839449 ], [ -97.141113, 25.878994 ], [ -97.536621, 24.986058 ], [ -97.712402, 24.266997 ], [ -97.778320, 22.938160 ], [ -97.866211, 22.451649 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.910645, 18.833515 ], [ -94.833984, 18.562947 ], [ -94.416504, 18.145852 ], [ -93.559570, 18.417079 ], [ -92.790527, 18.521283 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.473518 ], [ -88.242188, 18.500447 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.066929 ], [ -92.219238, 15.241790 ], [ -92.087402, 15.072124 ], [ -92.197266, 14.838612 ], [ -92.219238, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.867188, 15.940202 ], [ -94.702148, 16.193575 ], [ -95.251465, 16.130262 ], [ -96.042480, 15.749963 ], [ -96.547852, 15.644197 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.942871, 16.573023 ], [ -99.689941, 16.699340 ], [ -100.832520, 17.161786 ], [ -101.667480, 17.644022 ], [ -101.909180, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.291950 ], [ -103.908691, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.952696 ], [ -105.732422, 20.427013 ], [ -105.402832, 20.529933 ], [ -105.490723, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.018066, 22.776182 ], [ -106.918945, 23.765237 ], [ -107.907715, 24.547123 ], [ -108.391113, 25.165173 ], [ -109.270020, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.450902 ], [ -109.797363, 26.667096 ], [ -110.390625, 27.156920 ], [ -110.632324, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.459033 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.012031 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.559815 ], [ -114.213867, 31.522361 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.763184, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.323730, 29.745302 ], [ -113.598633, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.748397 ], [ -113.137207, 28.420391 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.720215, 24.826625 ], [ -110.654297, 24.307053 ], [ -110.170898, 24.266997 ], [ -109.401855, 23.362429 ], [ -109.423828, 23.180764 ], [ -109.863281, 22.816694 ], [ -110.039062, 22.816694 ], [ -110.302734, 23.422928 ], [ -110.939941, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.746831 ], [ -112.148438, 25.463115 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.647459 ], [ -113.840332, 26.902477 ], [ -114.455566, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.191895, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.938965, 29.286399 ], [ -115.510254, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.136230, 32.528289 ], [ -114.719238, 32.713355 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 67.204032 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.058870 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.881348, 65.540270 ], [ -172.529297, 65.440002 ], [ -172.551270, 64.463323 ], [ -172.946777, 64.254141 ], [ -173.891602, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.979004, 64.923542 ], [ -176.198730, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.352051, 65.394298 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.296387, 64.538996 ], [ -181.757812, 64.557881 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ], [ [ [ -181.757812, 64.120195 ], [ -181.691895, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.637207, 62.985180 ], [ -180.505371, 62.573106 ], [ -180.769043, 62.308794 ], [ -181.757812, 62.420903 ], [ -181.757812, 64.120195 ] ] ] ] } } ] } @@ -158,10 +116,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.700684, 70.117959 ], [ -144.909668, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.710489 ], [ -140.998535, 66.513260 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -164.421387, 67.617589 ], [ -165.388184, 68.040461 ], [ -166.772461, 68.358699 ], [ -166.201172, 68.879358 ], [ -164.421387, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.854762 ], [ -161.916504, 70.333533 ], [ -160.927734, 70.444155 ], [ -159.038086, 70.895078 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.917709 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.321915 ], [ -91.516113, 70.192550 ], [ -92.416992, 69.702868 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.471864 ], [ -90.000000, 68.800041 ], [ -89.208984, 69.256149 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.065098 ], [ -88.308105, 67.875541 ], [ -88.242188, 67.817542 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 66.513260 ], [ -140.976562, 69.710489 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.494141, 68.895187 ], [ -135.615234, 69.318320 ], [ -134.406738, 69.626510 ], [ -132.934570, 69.503765 ], [ -131.440430, 69.945375 ], [ -129.792480, 70.192550 ], [ -129.111328, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.480896 ], [ -127.441406, 70.377854 ], [ -125.749512, 69.480672 ], [ -124.431152, 70.155288 ], [ -124.299316, 69.403514 ], [ -123.068848, 69.565226 ], [ -122.673340, 69.854762 ], [ -121.464844, 69.794136 ], [ -119.948730, 69.380313 ], [ -117.597656, 69.013546 ], [ -116.235352, 68.839735 ], [ -115.246582, 68.903097 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.900354 ], [ -113.488770, 67.684429 ], [ -110.808105, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.874512, 67.382150 ], [ -107.797852, 67.883815 ], [ -108.808594, 68.310027 ], [ -108.171387, 68.656555 ], [ -106.940918, 68.696505 ], [ -106.149902, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.348145, 68.015798 ], [ -103.227539, 68.097907 ], [ -101.447754, 67.651033 ], [ -99.909668, 67.809245 ], [ -98.437500, 67.784335 ], [ -98.569336, 68.407268 ], [ -97.668457, 68.576441 ], [ -96.130371, 68.236823 ], [ -96.130371, 67.297497 ], [ -95.493164, 68.089709 ], [ -94.680176, 68.065098 ], [ -94.240723, 69.068563 ], [ -95.295410, 69.687618 ], [ -96.481934, 70.088047 ], [ -96.394043, 71.194838 ], [ -95.207520, 71.917709 ] ] ], [ [ [ -88.242188, 73.553302 ], [ -88.242188, 70.370474 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.765206 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.197754, 72.235514 ], [ -90.000000, 72.475276 ], [ -89.428711, 73.131322 ], [ -88.417969, 73.540855 ], [ -88.242188, 73.553302 ] ] ], [ [ [ -98.217773, 70.140364 ], [ -97.163086, 69.862328 ], [ -96.547852, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.262207, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.950500 ], [ -99.799805, 69.403514 ], [ -98.920898, 69.710489 ], [ -98.217773, 70.140364 ] ] ], [ [ [ -115.180664, 73.315246 ], [ -114.169922, 73.118566 ], [ -114.675293, 72.653038 ], [ -112.434082, 72.958315 ], [ -111.049805, 72.448792 ], [ -109.929199, 72.958315 ], [ -109.006348, 72.633374 ], [ -108.193359, 71.649833 ], [ -107.687988, 72.067147 ], [ -108.391113, 73.086633 ], [ -107.512207, 73.233040 ], [ -106.523438, 73.073844 ], [ -105.402832, 72.672681 ], [ -104.765625, 71.698194 ], [ -104.458008, 70.995506 ], [ -102.788086, 70.495574 ], [ -100.986328, 70.020587 ], [ -101.096191, 69.588228 ], [ -102.722168, 69.503765 ], [ -102.084961, 69.123443 ], [ -102.436523, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.178184 ], [ -107.116699, 69.115611 ], [ -109.006348, 68.776191 ], [ -113.312988, 68.536276 ], [ -113.862305, 69.005675 ], [ -115.224609, 69.279484 ], [ -116.103516, 69.170373 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.065585 ], [ -115.136719, 70.237175 ], [ -113.730469, 70.192550 ], [ -112.412109, 70.363091 ], [ -114.345703, 70.598021 ], [ -116.477051, 70.517570 ], [ -117.905273, 70.539543 ], [ -118.432617, 70.909456 ], [ -116.103516, 71.307836 ], [ -117.663574, 71.293747 ], [ -119.399414, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.861328, 72.705372 ], [ -115.180664, 73.315246 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.142578, 80.721727 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.617003 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.246913 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.142090, 79.379856 ], [ -94.965820, 79.371754 ], [ -96.086426, 79.706834 ], [ -96.701660, 80.156200 ], [ -96.020508, 80.604086 ], [ -95.317383, 80.907616 ], [ -94.306641, 80.976799 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -121.530762, 74.449358 ], [ -120.102539, 74.241846 ], [ -117.553711, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.510254, 73.472235 ], [ -116.762695, 73.220358 ], [ -119.223633, 72.521532 ], [ -120.454102, 71.821986 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.343013 ], [ -125.925293, 71.869909 ], [ -125.507812, 72.289067 ], [ -124.804688, 73.022592 ], [ -123.947754, 73.677264 ], [ -124.914551, 74.295463 ], [ -121.530762, 74.449358 ] ] ], [ [ [ -100.349121, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.382812, 73.757352 ], [ -97.119141, 73.472235 ], [ -98.063965, 72.990483 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.656749 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.508328 ], [ -102.480469, 72.829052 ], [ -100.437012, 72.705372 ], [ -101.535645, 73.359348 ], [ -100.349121, 73.843173 ] ] ], [ [ [ -109.577637, 76.795721 ], [ -108.544922, 76.679785 ], [ -108.215332, 76.200727 ], [ -107.819824, 75.845169 ], [ -106.918945, 76.010783 ], [ -105.886230, 75.968226 ], [ -105.710449, 75.480640 ], [ -106.303711, 75.004940 ], [ -109.709473, 74.850672 ], [ -112.214355, 74.419877 ], [ -113.752441, 74.396253 ], [ -113.862305, 74.718037 ], [ -111.796875, 75.163300 ], [ -116.301270, 75.044684 ], [ -117.707520, 75.219460 ], [ -116.345215, 76.200727 ], [ -115.400391, 76.480910 ], [ -112.587891, 76.142958 ], [ -110.808105, 75.546598 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.429449 ], [ -109.577637, 76.795721 ] ] ], [ [ [ -94.504395, 74.134078 ], [ -92.416992, 74.097996 ], [ -90.505371, 73.855397 ], [ -91.999512, 72.964753 ], [ -93.186035, 72.770574 ], [ -94.262695, 72.026510 ], [ -95.405273, 72.060381 ], [ -96.042480, 72.938986 ], [ -96.020508, 73.434689 ], [ -95.493164, 73.861506 ], [ -94.504395, 74.134078 ] ] ], [ [ [ -105.249023, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.757553 ], [ -106.940918, 73.459729 ], [ -106.589355, 73.602996 ], [ -105.249023, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.680176, 77.098423 ], [ -93.581543, 76.775629 ], [ -91.604004, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.966797, 76.074381 ], [ -90.000000, 75.882732 ], [ -89.824219, 75.845169 ], [ -89.187012, 75.612262 ], [ -88.242188, 75.579466 ], [ -88.242188, 74.402163 ], [ -89.758301, 74.514023 ], [ -90.000000, 74.543330 ], [ -92.416992, 74.839183 ], [ -92.768555, 75.386696 ], [ -92.900391, 75.882732 ], [ -93.889160, 76.320754 ], [ -95.954590, 76.439756 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.345215, 76.875786 ], [ -117.114258, 76.532180 ], [ -118.037109, 76.480910 ], [ -119.904785, 76.053213 ], [ -121.508789, 75.898801 ], [ -122.849121, 76.116622 ], [ -121.157227, 76.865804 ], [ -119.113770, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -94.855957, 75.644984 ], [ -93.977051, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.152832, 74.590108 ], [ -95.603027, 74.665828 ], [ -96.811523, 74.925142 ], [ -96.284180, 75.375605 ], [ -94.855957, 75.644984 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.712402, 75.742715 ], [ -98.151855, 74.999254 ], [ -99.799805, 74.896542 ], [ -100.876465, 75.056021 ], [ -100.854492, 75.639536 ], [ -102.502441, 75.563041 ], [ -102.568359, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.975586, 76.644302 ], [ -98.569336, 76.588356 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -88.242188, 80.639890 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.258372 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.923340, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.639890 ] ] ], [ [ [ -105.490723, 79.302640 ], [ -103.535156, 79.167206 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.322757 ], [ -99.667969, 77.906466 ], [ -101.293945, 78.021014 ], [ -102.941895, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.916608 ], [ -105.490723, 79.302640 ] ] ], [ [ [ -98.635254, 78.870048 ], [ -97.338867, 78.831810 ], [ -96.745605, 78.767792 ], [ -95.559082, 78.420193 ], [ -95.822754, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.547363, 78.459822 ], [ -98.635254, 78.870048 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.470633 ], [ -89.626465, 76.950415 ], [ -88.242188, 77.122930 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.408678 ], [ -113.532715, 77.730282 ], [ -112.719727, 78.052896 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -96.437988, 77.832589 ], [ -94.416504, 77.818688 ], [ -93.713379, 77.636542 ], [ -93.845215, 77.518374 ], [ -94.284668, 77.489849 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.832589 ] ] ], [ [ [ -111.489258, 78.848821 ], [ -110.961914, 78.806246 ], [ -109.665527, 78.603986 ], [ -110.874023, 78.406954 ], [ -112.543945, 78.406954 ], [ -112.521973, 78.551769 ], [ -111.489258, 78.848821 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.700684, 70.117959 ], [ -144.909668, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.710489 ], [ -140.998535, 66.513260 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -164.421387, 67.617589 ], [ -165.388184, 68.040461 ], [ -166.772461, 68.358699 ], [ -166.201172, 68.879358 ], [ -164.421387, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.854762 ], [ -161.916504, 70.333533 ], [ -160.927734, 70.444155 ], [ -159.038086, 70.895078 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.757812, 69.457554 ], [ -181.406250, 69.403514 ], [ -180.000000, 68.966279 ], [ -177.539062, 68.196052 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.058870 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.288086, 65.802776 ], [ -178.857422, 65.802776 ], [ -178.681641, 66.116068 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 69.457554 ] ] ], [ [ [ -180.000000, 71.517945 ], [ -179.868164, 71.559692 ], [ -179.033203, 71.552741 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.130988 ], [ -178.703613, 70.895078 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.779678 ], [ -181.274414, 71.095425 ], [ -180.000000, 71.517945 ] ] ] ] } } ] } ] } @@ -174,15 +132,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.116211, 1.757537 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.335449, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.038574, 1.757537 ], [ -64.116211, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.807617, 1.757537 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.587402, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.433594, -1.559866 ], [ -69.895020, -4.302591 ], [ -70.400391, -3.776559 ], [ -70.686035, -3.732708 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.262595 ], [ -71.411133, -2.350415 ], [ -71.784668, -2.174771 ], [ -72.333984, -2.438229 ], [ -73.081055, -2.306506 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.662109, 1.757537 ], [ -67.807617, 1.757537 ] ] ], [ [ [ -67.038574, 1.757537 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.302246, 1.757537 ], [ -67.038574, 1.757537 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.900842 ], [ -75.541992, -1.559866 ], [ -76.640625, -2.613839 ], [ -77.827148, -3.008870 ], [ -78.442383, -3.864255 ], [ -78.640137, -4.543570 ], [ -79.211426, -4.959615 ], [ -79.628906, -4.455951 ], [ -80.024414, -4.346411 ], [ -80.441895, -4.434044 ], [ -80.463867, -4.061536 ], [ -80.178223, -3.820408 ], [ -80.310059, -3.403758 ], [ -79.760742, -2.657738 ], [ -79.980469, -2.218684 ], [ -80.375977, -2.679687 ], [ -80.969238, -2.240640 ], [ -80.771484, -1.955187 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.222168, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.346680, -9.752370 ], [ -65.434570, -10.509417 ], [ -65.324707, -10.898042 ], [ -65.412598, -11.566144 ], [ -64.313965, -12.468760 ], [ -63.193359, -12.618897 ], [ -62.797852, -13.004558 ], [ -62.116699, -13.197165 ], [ -61.721191, -13.496473 ], [ -61.083984, -13.475106 ], [ -60.512695, -13.774066 ], [ -60.468750, -14.349548 ], [ -60.270996, -14.647368 ], [ -60.249023, -15.072124 ], [ -60.534668, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.249512, -16.299051 ], [ -58.381348, -16.867634 ], [ -58.271484, -17.266728 ], [ -57.744141, -17.560247 ], [ -57.502441, -18.166730 ], [ -57.678223, -18.958246 ], [ -57.941895, -19.394068 ], [ -57.854004, -19.973349 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.106445, -19.352611 ], [ -60.051270, -19.352611 ], [ -61.787109, -19.642588 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.043491 ], [ -62.687988, -22.248429 ], [ -62.841797, -22.044913 ], [ -63.984375, -21.983801 ], [ -64.379883, -22.796439 ], [ -64.973145, -22.085640 ], [ -66.269531, -21.841105 ], [ -67.104492, -22.735657 ], [ -67.829590, -22.877440 ], [ -68.225098, -21.493964 ], [ -68.752441, -20.365228 ], [ -68.444824, -19.414792 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.250220 ], [ -69.587402, -17.581194 ], [ -68.950195, -16.509833 ], [ -69.389648, -15.665354 ], [ -69.169922, -15.326572 ], [ -69.345703, -14.944785 ], [ -68.950195, -14.455958 ], [ -68.884277, -12.897489 ], [ -68.664551, -12.554564 ], [ -69.521484, -10.941192 ], [ -68.796387, -11.027472 ], [ -68.269043, -11.005904 ], [ -68.049316, -10.703792 ], [ -67.170410, -10.314919 ], [ -66.643066, -9.925566 ], [ -65.346680, -9.752370 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.031738, 1.757537 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.406738, -2.130856 ], [ -44.582520, -2.701635 ], [ -43.417969, -2.372369 ], [ -41.462402, -2.921097 ], [ -39.968262, -2.877208 ], [ -38.496094, -3.710782 ], [ -37.221680, -4.828260 ], [ -36.452637, -5.112830 ], [ -35.595703, -5.156599 ], [ -35.244141, -5.462896 ], [ -34.738770, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.045898, -11.049038 ], [ -37.683105, -12.168226 ], [ -38.430176, -13.047372 ], [ -38.671875, -13.047372 ], [ -38.957520, -13.795406 ], [ -38.891602, -15.665354 ], [ -39.265137, -17.874203 ], [ -39.572754, -18.271086 ], [ -39.770508, -19.601194 ], [ -40.781250, -20.899871 ], [ -40.935059, -21.943046 ], [ -41.748047, -22.370396 ], [ -41.989746, -22.978624 ], [ -43.066406, -22.958393 ], [ -44.648438, -23.342256 ], [ -45.351562, -23.805450 ], [ -46.472168, -24.086589 ], [ -47.658691, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.669434, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.228890 ], [ -50.690918, -30.977609 ], [ -51.569824, -31.784217 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.192731 ], [ -53.371582, -33.760882 ], [ -53.657227, -33.211116 ], [ -53.217773, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.503629 ], [ -55.590820, -30.845647 ], [ -55.964355, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.634277, -30.221102 ], [ -56.293945, -28.844674 ], [ -55.151367, -27.877928 ], [ -53.657227, -26.922070 ], [ -53.635254, -26.115986 ], [ -54.140625, -25.542441 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.026397 ], [ -54.645996, -23.845650 ], [ -55.019531, -24.006326 ], [ -55.393066, -23.966176 ], [ -55.524902, -23.563987 ], [ -55.612793, -22.654572 ], [ -55.788574, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.887207, -22.289096 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.735566 ], [ -58.161621, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.941895, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.744141, -17.560247 ], [ -58.271484, -17.266728 ], [ -58.381348, -16.867634 ], [ -58.249512, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.534668, -15.093339 ], [ -60.249023, -15.072124 ], [ -60.270996, -14.647368 ], [ -60.468750, -14.349548 ], [ -60.512695, -13.774066 ], [ -61.083984, -13.475106 ], [ -61.721191, -13.496473 ], [ -62.116699, -13.197165 ], [ -62.797852, -13.004558 ], [ -63.193359, -12.618897 ], [ -64.313965, -12.468760 ], [ -65.412598, -11.566144 ], [ -65.324707, -10.898042 ], [ -65.434570, -10.509417 ], [ -65.346680, -9.752370 ], [ -66.643066, -9.925566 ], [ -67.170410, -10.314919 ], [ -68.049316, -10.703792 ], [ -68.269043, -11.005904 ], [ -68.796387, -11.027472 ], [ -69.521484, -10.941192 ], [ -70.092773, -11.113727 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.180176, -10.055403 ], [ -72.553711, -9.514079 ], [ -73.234863, -9.470736 ], [ -73.015137, -9.037003 ], [ -73.564453, -8.428904 ], [ -73.981934, -7.514981 ], [ -73.718262, -7.340675 ], [ -73.718262, -6.926427 ], [ -73.125000, -6.620957 ], [ -73.212891, -6.096860 ], [ -72.971191, -5.747174 ], [ -72.883301, -5.266008 ], [ -71.740723, -4.587376 ], [ -70.927734, -4.412137 ], [ -70.795898, -4.258768 ], [ -69.895020, -4.302591 ], [ -69.433594, -1.559866 ], [ -69.411621, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.807617, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.335449, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.040527, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.568359, 1.757537 ], [ -50.031738, 1.757537 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.522906 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.950684, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.615589 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.495568 ], [ -73.278809, -53.956086 ], [ -74.663086, -52.842595 ], [ -73.828125, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.103516, -54.072283 ], [ -70.598145, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.522906 ] ] ], [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.414792 ], [ -68.752441, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.324219, -24.026397 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.175159 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.363027 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.372399 ], [ -70.070801, -33.082337 ], [ -69.807129, -33.266250 ], [ -69.807129, -34.198173 ], [ -70.378418, -35.173808 ], [ -70.356445, -36.013561 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.579413 ], [ -70.817871, -38.548165 ], [ -71.411133, -38.908133 ], [ -71.674805, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.740723, -42.049293 ], [ -72.158203, -42.261049 ], [ -71.916504, -43.405047 ], [ -71.455078, -43.786958 ], [ -71.784668, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.213379, -44.777936 ], [ -71.652832, -44.980342 ], [ -71.542969, -45.567910 ], [ -71.916504, -46.890232 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.239309 ], [ -72.641602, -48.879167 ], [ -73.410645, -49.325122 ], [ -73.322754, -50.373496 ], [ -72.971191, -50.736455 ], [ -72.312012, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.146973 ], [ -68.576660, -52.295042 ], [ -69.455566, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.895649 ], [ -71.015625, -53.839564 ], [ -71.433105, -53.852527 ], [ -72.553711, -53.527248 ], [ -73.696289, -52.829321 ], [ -74.948730, -52.268157 ], [ -75.256348, -51.631657 ], [ -74.970703, -51.041394 ], [ -75.476074, -50.373496 ], [ -75.607910, -48.676454 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.649436 ], [ -74.685059, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.449468 ], [ -72.707520, -42.391009 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.373112 ], [ -74.333496, -43.229195 ], [ -74.025879, -41.787697 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.498535, -38.289937 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.872559, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.674805, -30.921076 ], [ -71.367188, -30.088108 ], [ -71.499023, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.766704 ], [ -70.378418, -18.354526 ], [ -69.851074, -18.083201 ], [ -69.587402, -17.581194 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.642578, -52.629729 ], [ -68.247070, -53.094024 ], [ -67.741699, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.500488, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.950684, -54.901882 ], [ -67.565918, -54.863963 ], [ -68.642578, -54.863963 ], [ -68.642578, -52.629729 ] ] ], [ [ [ -66.269531, -21.841105 ], [ -64.973145, -22.085640 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.983801 ], [ -62.841797, -22.044913 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.026397 ], [ -58.798828, -24.766785 ], [ -57.788086, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.777832, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.140625, -25.542441 ], [ -53.635254, -26.115986 ], [ -53.657227, -26.922070 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.844674 ], [ -57.634277, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.139648, -33.045508 ], [ -58.359375, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.216797, -35.281501 ], [ -57.370605, -35.978006 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.116699, -39.419221 ], [ -62.336426, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.029643 ], [ -63.764648, -41.162114 ], [ -64.731445, -40.797177 ], [ -65.126953, -41.062786 ], [ -64.973145, -42.065607 ], [ -64.313965, -42.358544 ], [ -63.764648, -42.049293 ], [ -63.457031, -42.569264 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.500752 ], [ -65.324707, -44.496505 ], [ -65.566406, -45.042478 ], [ -66.511230, -45.042478 ], [ -67.302246, -45.552525 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.040182 ], [ -65.632324, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.147949, -50.736455 ], [ -68.818359, -51.767840 ], [ -68.159180, -52.348763 ], [ -68.576660, -52.295042 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.736455 ], [ -73.322754, -50.373496 ], [ -73.410645, -49.325122 ], [ -72.641602, -48.879167 ], [ -72.333984, -48.239309 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.890232 ], [ -71.542969, -45.567910 ], [ -71.652832, -44.980342 ], [ -71.213379, -44.777936 ], [ -71.323242, -44.402392 ], [ -71.784668, -44.213710 ], [ -71.455078, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.158203, -42.261049 ], [ -71.740723, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.908133 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.579413 ], [ -71.125488, -36.650793 ], [ -70.356445, -36.013561 ], [ -70.378418, -35.173808 ], [ -69.807129, -34.198173 ], [ -69.807129, -33.266250 ], [ -70.070801, -33.082337 ], [ -70.532227, -31.372399 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.363027 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.175159 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.026397 ], [ -66.994629, -22.978624 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.841105 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.557129, -51.096623 ], [ -57.744141, -51.549751 ], [ -58.051758, -51.903613 ], [ -59.392090, -52.200874 ], [ -59.853516, -51.849353 ], [ -60.710449, -52.295042 ], [ -61.193848, -51.849353 ], [ -60.007324, -51.248163 ], [ -59.150391, -51.495065 ], [ -58.557129, -51.096623 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.522906 ], [ -68.642578, -52.629729 ], [ -68.642578, -54.863963 ], [ -67.565918, -54.863963 ], [ -66.950684, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.615589 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.268066, -54.495568 ], [ -73.278809, -53.956086 ], [ -74.663086, -52.842595 ], [ -73.828125, -53.041213 ], [ -72.443848, -53.709714 ], [ -71.103516, -54.072283 ], [ -70.598145, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.522906 ] ] ], [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.250220 ], [ -68.972168, -18.979026 ], [ -68.444824, -19.414792 ], [ -68.752441, -20.365228 ], [ -68.225098, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.994629, -22.978624 ], [ -67.324219, -24.026397 ], [ -68.422852, -24.527135 ], [ -68.378906, -26.175159 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.004883, -29.363027 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.372399 ], [ -70.070801, -33.082337 ], [ -69.807129, -33.266250 ], [ -69.807129, -34.198173 ], [ -70.378418, -35.173808 ], [ -70.356445, -36.013561 ], [ -71.125488, -36.650793 ], [ -71.125488, -37.579413 ], [ -70.817871, -38.548165 ], [ -71.411133, -38.908133 ], [ -71.674805, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.740723, -42.049293 ], [ -72.158203, -42.261049 ], [ -71.916504, -43.405047 ], [ -71.455078, -43.786958 ], [ -71.784668, -44.213710 ], [ -71.323242, -44.402392 ], [ -71.213379, -44.777936 ], [ -71.652832, -44.980342 ], [ -71.542969, -45.567910 ], [ -71.916504, -46.890232 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.239309 ], [ -72.641602, -48.879167 ], [ -73.410645, -49.325122 ], [ -73.322754, -50.373496 ], [ -72.971191, -50.736455 ], [ -72.312012, -50.680797 ], [ -72.333984, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.146973 ], [ -68.576660, -52.295042 ], [ -69.455566, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.895649 ], [ -71.015625, -53.839564 ], [ -71.433105, -53.852527 ], [ -72.553711, -53.527248 ], [ -73.696289, -52.829321 ], [ -74.948730, -52.268157 ], [ -75.256348, -51.631657 ], [ -74.970703, -51.041394 ], [ -75.476074, -50.373496 ], [ -75.607910, -48.676454 ], [ -75.190430, -47.709762 ], [ -74.135742, -46.935261 ], [ -75.651855, -46.649436 ], [ -74.685059, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.449468 ], [ -72.707520, -42.391009 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.373112 ], [ -74.333496, -43.229195 ], [ -74.025879, -41.787697 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.498535, -38.289937 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.872559, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.674805, -30.921076 ], [ -71.367188, -30.088108 ], [ -71.499023, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.729980, -25.700938 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.766704 ], [ -70.378418, -18.354526 ], [ -69.851074, -18.083201 ], [ -69.587402, -17.581194 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.215937 ], [ -60.622559, -64.311349 ], [ -62.028809, -64.802204 ], [ -62.512207, -65.090646 ], [ -62.644043, -65.485626 ], [ -62.600098, -65.856756 ], [ -62.116699, -66.187139 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.835165 ], [ -64.951172, -67.204032 ], [ -67.609863, -67.204032 ], [ -67.258301, -66.878345 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.213739 ], [ -65.368652, -65.892680 ], [ -64.577637, -65.603878 ], [ -64.182129, -65.173806 ], [ -63.632812, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.172363, -63.704722 ], [ -58.601074, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } ] } @@ -190,31 +148,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.947754, 42.859860 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.691708 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.342305 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.787697 ], [ -70.180664, 42.147114 ], [ -69.895020, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.870416 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.637726 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.021528 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.422713 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.078613, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.832520, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.250488, 47.754098 ], [ -55.393066, 46.890232 ], [ -56.008301, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.673831 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.783203, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.186014 ], [ -73.850098, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.512207, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.809082, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.985840, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.104980, 48.078079 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -67.785645, 45.706179 ], [ -67.785645, 47.070122 ], [ -68.225098, 47.353711 ], [ -68.906250, 47.189712 ], [ -69.235840, 47.442950 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.499023, 45.011419 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.628123 ], [ -78.728027, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.277205 ], [ -78.925781, 42.972502 ], [ -78.947754, 42.859860 ], [ -80.244141, 42.358544 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.423457 ], [ -82.419434, 42.972502 ], [ -82.133789, 43.564472 ], [ -82.551270, 45.352145 ], [ -83.583984, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.605957, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.133301, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.543750 ], [ -84.770508, 46.634351 ], [ -84.880371, 46.905246 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.160078 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.435059, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.730957, 66.390361 ], [ -68.005371, 66.266856 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.742188, 64.652112 ], [ -65.324707, 64.387441 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.375994 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.656011 ], [ -83.100586, 64.101007 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.534847 ], [ -86.813965, 21.330315 ], [ -86.835938, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.429199, 19.476950 ], [ -87.846680, 18.250220 ], [ -88.088379, 18.521283 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.045813 ], [ -91.757812, 18.771115 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.648926, 21.453069 ], [ -87.055664, 21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.947754, 42.859860 ], [ -78.925781, 42.972502 ], [ -79.013672, 43.277205 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.691708 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.342305 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.787697 ], [ -70.180664, 42.147114 ], [ -69.895020, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.327326 ], [ -72.883301, 41.228249 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.388184, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.981445, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.870416 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.604492, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.165039, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.362793, 14.434680 ], [ -89.582520, 14.370834 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.136576 ], [ -91.757812, 14.179186 ], [ -91.757812, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.534847 ], [ -86.813965, 21.330315 ], [ -86.835938, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.429199, 19.476950 ], [ -87.846680, 18.250220 ], [ -88.088379, 18.521283 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.045813 ], [ -91.757812, 18.771115 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.648926, 21.453069 ], [ -87.055664, 21.534847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.508301, 67.204032 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -38.364258, 65.694476 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.693359, 64.139369 ], [ -41.198730, 63.479957 ], [ -42.824707, 62.684228 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.031930 ], [ -46.274414, 60.855613 ], [ -48.273926, 60.855613 ], [ -49.240723, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.282760 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -53.964844, 67.204032 ], [ -33.508301, 67.204032 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.200684, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.704895 ], [ -78.024902, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.200684, 25.204941 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.365723, 25.997550 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.903809, 26.411551 ], [ -78.969727, 26.784847 ], [ -78.508301, 26.863281 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.291504, 18.521283 ], [ -65.764160, 18.417079 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.530768 ], [ -15.842285, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.743652, 65.811781 ], [ -13.601074, 65.127638 ], [ -14.919434, 64.368438 ], [ -17.797852, 63.675506 ], [ -18.654785, 63.499573 ], [ -22.763672, 63.956673 ], [ -21.774902, 64.406431 ], [ -23.950195, 64.895589 ], [ -22.192383, 65.081389 ], [ -22.236328, 65.375994 ], [ -24.323730, 65.612952 ], [ -23.642578, 66.266856 ], [ -22.126465, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.755225 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.911621, 43.421009 ], [ -1.494141, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.329590, 42.585444 ], [ 0.703125, 42.795401 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.178654 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.686041 ], [ -4.987793, 36.332828 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.755225 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.130856 ], [ -53.415527, 2.043024 ], [ -53.547363, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 42.374778 ], [ 0.703125, 42.795401 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.494141, 43.036776 ], [ -1.911621, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.020020, 41.787697 ], [ -7.426758, 41.787697 ], [ -7.250977, 41.918629 ], [ -6.657715, 41.885921 ], [ -6.394043, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.329796 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.492676, 39.622615 ], [ -7.097168, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.422526 ], [ -7.448730, 37.090240 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.898926, 36.862043 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.736946 ], [ -9.448242, 39.385264 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.789062, 41.178654 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.885921 ], [ -8.679199, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.657227, 27.664069 ], [ -8.679199, 25.878994 ], [ -11.975098, 25.938287 ], [ -11.931152, 23.382598 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.776182 ], [ -12.919922, 21.330315 ], [ -16.853027, 21.330315 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.412162 ], [ -14.743652, 21.493964 ], [ -14.633789, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.502441, 24.766785 ], [ -12.041016, 26.037042 ], [ -11.711426, 26.096255 ], [ -11.381836, 26.882880 ], [ -10.546875, 27.000408 ], [ -10.195312, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.404297, 27.098254 ], [ -8.789062, 27.117813 ], [ -8.811035, 27.664069 ], [ -8.657227, 27.664069 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.234375, -0.900842 ], [ -75.541992, -1.559866 ], [ -75.739746, -1.757537 ], [ -80.793457, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.222168, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.833496, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.130856 ], [ -53.415527, 2.043024 ], [ -53.547363, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 42.374778 ], [ 0.703125, 42.795401 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.494141, 43.036776 ], [ -1.911621, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.690960 ], [ -3.295898, 48.908059 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.205078, 5.244128 ], [ -59.985352, 5.003394 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.434044 ], [ -59.545898, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.985352, 2.745531 ], [ -59.721680, 2.240640 ], [ -59.655762, 1.779499 ], [ -59.040527, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.326660, 1.955187 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.889306 ], [ -55.986328, 1.823423 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.964355, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.107422, 2.526037 ], [ -54.514160, 2.306506 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.372369 ], [ -53.547363, 2.328460 ], [ -53.415527, 2.043024 ], [ -52.932129, 2.130856 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.250209 ], [ -51.657715, 4.149201 ], [ -51.328125, 4.193030 ], [ -51.064453, 3.645000 ], [ -50.515137, 1.911267 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.571280 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.411621, -1.120534 ], [ -69.587402, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.543945, 2.043024 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.335449, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.401855, 3.118576 ], [ -64.357910, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.621582, 4.149201 ], [ -63.896484, 4.017699 ], [ -63.083496, 3.776559 ], [ -62.797852, 4.017699 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.205078, 5.244128 ] ] ] } } ] } ] } , @@ -236,17 +188,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.271973, 1.757537 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.492188, 1.757537 ], [ 11.271973, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 1.757537 ], [ 45.131836, 1.757537 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051758, 1.757537 ], [ 13.293457, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.326172, -0.549308 ], [ 14.436035, -1.340210 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.460181 ], [ 13.117676, -2.438229 ], [ 12.568359, -1.955187 ], [ 12.502441, -2.394322 ], [ 11.821289, -2.504085 ], [ 11.469727, -2.767478 ], [ 11.865234, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.769020 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 1.757537 ], [ 13.051758, 1.757537 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, 1.757537 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.245605, -2.218684 ], [ 29.113770, -2.284551 ], [ 29.025879, -2.833317 ], [ 29.267578, -3.294082 ], [ 29.333496, -4.499762 ], [ 29.509277, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.515836 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.366699, -11.802834 ], [ 29.333496, -12.361466 ], [ 29.619141, -12.168226 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.239945 ], [ 28.520508, -12.704651 ], [ 28.146973, -12.275599 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.931852 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.323730, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.829590, -11.027472 ], [ 22.412109, -10.984335 ], [ 22.148438, -11.092166 ], [ 22.214355, -9.903921 ], [ 21.884766, -9.514079 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.298470 ], [ 21.752930, -7.928675 ], [ 21.730957, -7.297088 ], [ 20.522461, -7.297088 ], [ 20.610352, -6.948239 ], [ 20.083008, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.166300 ], [ 19.160156, -7.732765 ], [ 19.006348, -7.993957 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.993957 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.856475 ], [ 13.029785, -5.987607 ], [ 12.744141, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.172852, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.634277, -4.981505 ], [ 12.985840, -4.784469 ], [ 13.249512, -4.872048 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.499762 ], [ 14.216309, -4.784469 ], [ 14.589844, -4.959615 ], [ 15.161133, -4.346411 ], [ 15.754395, -3.864255 ], [ 15.996094, -3.535352 ], [ 15.974121, -2.701635 ], [ 16.413574, -1.735574 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.757537 ], [ 30.717773, 1.757537 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.928223, -48.618385 ], [ 69.587402, -48.936935 ], [ 70.532227, -49.066668 ], [ 70.554199, -49.253465 ], [ 70.290527, -49.710273 ], [ 68.752441, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.928223, -48.618385 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } ] } ] } , @@ -254,32 +202,32 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.330873 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 34.161818 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.161818 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.767090, 41.590797 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.658691, 50.792047 ], [ 3.120117, 50.778155 ], [ 3.581543, 50.373496 ], [ 4.284668, 49.908787 ], [ 4.790039, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.888672, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.657715, 49.196064 ], [ 8.107910, 49.023461 ], [ 7.602539, 48.327039 ], [ 7.470703, 47.620975 ], [ 7.185059, 47.442950 ], [ 6.745605, 47.546872 ], [ 6.767578, 47.294134 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.422713 ], [ 6.833496, 45.996962 ], [ 6.811523, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.260937 ], [ 7.558594, 44.134913 ], [ 7.426758, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.329590, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.494141, 43.036776 ], [ -1.757812, 43.277205 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.353756 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 2.504883, 51.151786 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 67.204032 ], [ 15.402832, 66.513260 ], [ 15.117188, 66.196009 ], [ 13.557129, 64.783488 ], [ 13.930664, 64.444372 ], [ 13.579102, 64.052978 ], [ 12.590332, 64.062591 ], [ 11.931152, 63.124572 ], [ 11.997070, 61.804284 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.371582, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.348633, 65.883704 ], [ 13.117676, 66.513260 ], [ 13.996582, 67.204032 ], [ 16.018066, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.377441, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.509277, 66.513260 ], [ 30.212402, 65.802776 ], [ 29.553223, 64.951465 ], [ 30.454102, 64.206377 ], [ 30.036621, 63.548552 ], [ 31.508789, 62.865169 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.783513 ], [ 28.059082, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.053874 ], [ 22.873535, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.555176, 61.700291 ], [ 21.049805, 62.603453 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.531171 ], [ 23.906250, 66.009086 ], [ 23.576660, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 67.204032 ], [ 29.377441, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.615589 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.239258, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.272461, 54.826008 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.576660, 66.399160 ], [ 23.906250, 66.009086 ], [ 22.192383, 65.721594 ], [ 21.203613, 65.025785 ], [ 21.379395, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.744665 ], [ 17.116699, 61.344078 ], [ 17.841797, 60.640876 ], [ 18.786621, 60.086763 ], [ 17.863770, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.457520, 57.040730 ], [ 15.886230, 56.108810 ], [ 14.655762, 56.206704 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.366625 ], [ 12.634277, 56.304349 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.804284 ], [ 11.931152, 63.124572 ], [ 12.590332, 64.062591 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.444372 ], [ 13.557129, 64.783488 ], [ 15.117188, 66.196009 ], [ 15.402832, 66.513260 ], [ 16.018066, 67.204032 ], [ 23.554688, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.158691, 57.973157 ], [ 25.598145, 57.844751 ], [ 26.455078, 57.480403 ], [ 27.290039, 57.480403 ], [ 27.773438, 57.243394 ], [ 27.861328, 56.764768 ], [ 28.168945, 56.170023 ], [ 27.092285, 55.788929 ], [ 26.499023, 55.615589 ], [ 25.532227, 56.096556 ], [ 25.004883, 56.170023 ], [ 24.851074, 56.377419 ], [ 23.884277, 56.267761 ], [ 22.192383, 56.340901 ], [ 21.049805, 56.035226 ], [ 21.093750, 56.788845 ], [ 21.577148, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.312988, 57.004850 ], [ 24.125977, 57.028774 ], [ 24.323730, 57.797944 ], [ 25.158691, 57.973157 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.548548 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.213183 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.406250, 41.853196 ], [ 46.142578, 41.722131 ], [ 46.647949, 41.178654 ], [ 46.494141, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.244772 ], [ 43.571777, 41.095912 ], [ 42.626953, 41.590797 ], [ 41.550293, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.462402, 42.650122 ], [ 40.869141, 43.020714 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.078125, 43.548548 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.377441, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.509277, 66.513260 ], [ 30.212402, 65.802776 ], [ 29.553223, 64.951465 ], [ 30.454102, 64.206377 ], [ 30.036621, 63.548552 ], [ 31.508789, 62.865169 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.783513 ], [ 28.059082, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.053874 ], [ 22.873535, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.555176, 61.700291 ], [ 21.049805, 62.603453 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.531171 ], [ 23.906250, 66.009086 ], [ 23.576660, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 67.204032 ], [ 29.377441, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.963379, 11.566144 ], [ 14.919434, 10.898042 ], [ 15.468750, 9.990491 ], [ 14.919434, 9.990491 ], [ 14.633789, 9.925566 ], [ 14.172363, 10.012130 ], [ 13.952637, 9.557417 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.446777, 7.689217 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.567871, 5.025283 ], [ 14.479980, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.842332 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.547988 ], [ 16.018066, 2.262595 ], [ 15.930176, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.941895, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 8.767090, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.514160, 6.446318 ], [ 10.107422, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.052246, 6.642783 ], [ 11.755371, 6.991859 ], [ 11.843262, 7.406048 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.298470 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.427387 ], [ 13.161621, 9.644077 ], [ 13.315430, 10.163560 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.567871, 12.082296 ], [ 14.172363, 12.490214 ], [ 14.216309, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.514160, 37.352693 ], [ 10.217285, 37.230328 ], [ 10.173340, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.590820, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.349121, 33.779147 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.491699, 33.137551 ], [ 11.425781, 32.361403 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.953613, 31.372399 ], [ 10.063477, 30.958769 ], [ 9.975586, 30.543339 ], [ 9.492188, 30.315988 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.509762 ], [ 8.437500, 32.750323 ], [ 7.602539, 33.339707 ], [ 7.514648, 34.089061 ], [ 8.151855, 34.651285 ], [ 8.371582, 35.478565 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.514160, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.739258, 12.254128 ], [ 33.200684, 12.189704 ], [ 33.090820, 11.436955 ], [ 33.200684, 10.725381 ], [ 33.728027, 10.314919 ], [ 33.837891, 9.990491 ], [ 33.815918, 9.492408 ], [ 33.969727, 9.470736 ], [ 33.969727, 8.689639 ], [ 33.815918, 8.385431 ], [ 33.288574, 8.363693 ], [ 32.958984, 7.776309 ], [ 33.574219, 7.710992 ], [ 34.079590, 7.231699 ], [ 34.255371, 6.817353 ], [ 34.716797, 6.599131 ], [ 35.288086, 5.506640 ], [ 34.013672, 4.258768 ], [ 33.398438, 3.798484 ], [ 32.695312, 3.798484 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.776559 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.171115 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.280680 ], [ 27.971191, 4.412137 ], [ 27.377930, 5.244128 ], [ 27.224121, 5.550381 ], [ 26.455078, 5.943900 ], [ 26.213379, 6.555475 ], [ 25.795898, 6.970049 ], [ 25.114746, 7.493196 ], [ 25.114746, 7.819847 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 24.191895, 8.733077 ], [ 24.543457, 8.906780 ], [ 24.785156, 9.817329 ], [ 25.070801, 10.271681 ], [ 25.795898, 10.401378 ], [ 25.971680, 10.141932 ], [ 26.477051, 9.557417 ], [ 26.762695, 9.470736 ], [ 27.114258, 9.644077 ], [ 27.839355, 9.600750 ], [ 27.971191, 9.405710 ], [ 28.959961, 9.405710 ], [ 29.003906, 9.600750 ], [ 29.509277, 9.795678 ], [ 29.619141, 10.077037 ], [ 29.992676, 10.293301 ], [ 30.827637, 9.709057 ], [ 31.354980, 9.817329 ], [ 31.860352, 10.531020 ], [ 32.409668, 11.070603 ], [ 32.321777, 11.673755 ], [ 32.080078, 11.974845 ], [ 32.673340, 12.017830 ], [ 32.739258, 12.254128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.708496, 35.710838 ], [ 24.235840, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ], [ [ [ 26.125488, 41.820455 ], [ 26.608887, 41.557922 ], [ 26.301270, 40.930115 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.198205 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.027832, 40.847060 ], [ 21.665039, 40.930115 ], [ 22.060547, 41.145570 ], [ 22.587891, 41.129021 ], [ 22.763672, 41.310824 ], [ 22.961426, 41.343825 ], [ 23.686523, 41.310824 ], [ 24.499512, 41.590797 ], [ 25.202637, 41.228249 ], [ 26.103516, 41.327326 ], [ 26.125488, 41.820455 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.652943 ], [ 90.703125, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.936035, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.409532 ], [ 76.530762, 54.175297 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.432617, 53.488046 ], [ 73.498535, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.159180, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.805935 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.756836, 51.686180 ], [ 48.691406, 50.611132 ], [ 48.581543, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.400032 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.813486 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.538574, 42.714732 ], [ 43.923340, 42.553080 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.213183 ], [ 40.913086, 43.389082 ], [ 40.078125, 43.548548 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.264320 ], [ 38.232422, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.748535, 47.901614 ], [ 39.902344, 48.239309 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.310799 ], [ 40.078125, 49.596470 ], [ 38.605957, 49.922935 ], [ 38.012695, 49.908787 ], [ 37.397461, 50.387508 ], [ 36.628418, 50.219095 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.261915 ], [ 34.145508, 51.563412 ], [ 34.387207, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.167969, 52.066000 ], [ 31.794434, 52.106505 ], [ 31.530762, 52.736292 ], [ 31.311035, 53.067627 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.695312, 53.357109 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.787672 ], [ 31.794434, 53.969012 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.813348 ], [ 30.981445, 55.078367 ], [ 30.871582, 55.553495 ], [ 29.904785, 55.788929 ], [ 29.377441, 55.665193 ], [ 29.223633, 55.912273 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.764768 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.480403 ], [ 27.707520, 57.786233 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.299552 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.500525 ], [ 30.212402, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.865169 ], [ 30.036621, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.553223, 64.951465 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.377441, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.324219, 55.015426 ], [ 22.763672, 54.851315 ], [ 22.653809, 54.584797 ], [ 22.741699, 54.329338 ], [ 20.895996, 54.316523 ], [ 19.665527, 54.431713 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.169434, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.498535, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.553363 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.936035, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 79.650879, 42.504503 ], [ 79.145508, 42.859860 ], [ 77.651367, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.084937 ], [ 73.498535, 42.504503 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.971680, 42.261049 ], [ 70.378418, 42.081917 ], [ 69.060059, 41.376809 ], [ 68.642578, 40.663973 ], [ 68.269043, 40.663973 ], [ 67.983398, 41.129021 ], [ 66.708984, 41.162114 ], [ 66.511230, 41.983994 ], [ 66.027832, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.513184, 45.583290 ], [ 55.920410, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.954102, 42.114524 ], [ 52.492676, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.295410, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.306152, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.691406, 50.611132 ], [ 50.756836, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.805935 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.159180, 54.965002 ], [ 69.060059, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.223633, 43.293200 ], [ 75.629883, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.651367, 42.956423 ], [ 79.145508, 42.859860 ], [ 79.650879, 42.504503 ], [ 80.266113, 42.342305 ], [ 80.112305, 42.130821 ], [ 78.552246, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.062786 ], [ 76.530762, 40.430224 ], [ 75.476074, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.455566, 39.520992 ], [ 69.565430, 40.094882 ], [ 70.642090, 39.943436 ], [ 71.015625, 40.245992 ], [ 71.784668, 40.145289 ], [ 73.059082, 40.863680 ], [ 71.872559, 41.393294 ], [ 71.147461, 41.145570 ], [ 70.422363, 41.525030 ], [ 71.257324, 42.163403 ], [ 70.971680, 42.261049 ], [ 71.191406, 42.698586 ], [ 71.850586, 42.843751 ], [ 73.498535, 42.504503 ], [ 73.652344, 43.084937 ], [ 74.223633, 43.293200 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.009277, 18.999803 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.669434, 14.008696 ], [ 48.229980, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.581921 ], [ 46.713867, 13.389620 ], [ 45.878906, 13.346865 ], [ 45.615234, 13.282719 ], [ 45.395508, 13.025966 ], [ 45.153809, 12.961736 ], [ 45.000000, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.165039, 12.576010 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.242188, 13.774066 ], [ 43.088379, 14.072645 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.728814 ], [ 42.824707, 15.919074 ], [ 42.780762, 16.341226 ], [ 43.220215, 16.657244 ], [ 43.110352, 17.098792 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.329664 ], [ 44.055176, 17.413546 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.224758 ], [ 46.757812, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.108887, 18.625425 ], [ 52.009277, 18.999803 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 48.933105, 9.449062 ], [ 48.493652, 8.841651 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.286133, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.466309, 40.497092 ], [ 70.598145, 40.212441 ], [ 71.015625, 40.245992 ], [ 70.642090, 39.943436 ], [ 69.565430, 40.094882 ], [ 69.455566, 39.520992 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.937988, 38.513788 ], [ 74.267578, 38.599700 ], [ 74.860840, 38.376115 ], [ 74.838867, 37.996163 ], [ 74.970703, 37.422526 ], [ 73.937988, 37.422526 ], [ 73.256836, 37.492294 ], [ 72.641602, 37.055177 ], [ 72.202148, 36.949892 ], [ 71.850586, 36.738884 ], [ 71.455078, 37.072710 ], [ 71.542969, 37.909534 ], [ 71.235352, 37.961523 ], [ 71.345215, 38.255436 ], [ 70.795898, 38.479395 ], [ 70.378418, 38.134557 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.596824 ], [ 69.521484, 37.614231 ], [ 69.191895, 37.142803 ], [ 68.862305, 37.352693 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.400879, 38.151837 ], [ 68.181152, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.588757 ], [ 68.532715, 39.537940 ], [ 69.016113, 40.078071 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.331543, 30.107118 ], [ 83.342285, 29.458731 ], [ 83.891602, 29.324720 ], [ 84.243164, 28.844674 ], [ 85.012207, 28.652031 ], [ 85.825195, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.110352, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.682617, 27.235095 ], [ 83.298340, 27.371767 ], [ 82.001953, 27.916767 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.786918 ], [ 80.485840, 29.726222 ], [ 81.101074, 30.183122 ], [ 81.518555, 30.429730 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.652943 ], [ 90.703125, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.936035, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.409532 ], [ 76.530762, 54.175297 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.553363 ], [ 73.432617, 53.488046 ], [ 73.498535, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.169434, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.159180, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.805935 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.756836, 51.686180 ], [ 48.691406, 50.611132 ], [ 48.581543, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.400032 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.813486 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.538574, 42.714732 ], [ 43.923340, 42.553080 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.213183 ], [ 40.913086, 43.389082 ], [ 40.078125, 43.548548 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.264320 ], [ 38.232422, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.759766, 47.827908 ], [ 39.748535, 47.901614 ], [ 39.902344, 48.239309 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.310799 ], [ 40.078125, 49.596470 ], [ 38.605957, 49.922935 ], [ 38.012695, 49.908787 ], [ 37.397461, 50.387508 ], [ 36.628418, 50.219095 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.261915 ], [ 34.145508, 51.563412 ], [ 34.387207, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.241256 ], [ 32.409668, 52.295042 ], [ 32.167969, 52.066000 ], [ 31.794434, 52.106505 ], [ 31.530762, 52.736292 ], [ 31.311035, 53.067627 ], [ 31.486816, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.695312, 53.357109 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.787672 ], [ 31.794434, 53.969012 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.813348 ], [ 30.981445, 55.078367 ], [ 30.871582, 55.553495 ], [ 29.904785, 55.788929 ], [ 29.377441, 55.665193 ], [ 29.223633, 55.912273 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.764768 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.480403 ], [ 27.707520, 57.786233 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.299552 ], [ 27.971191, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.059082, 60.500525 ], [ 30.212402, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.865169 ], [ 30.036621, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.553223, 64.951465 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.377441, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.001953, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.324219, 55.015426 ], [ 22.763672, 54.851315 ], [ 22.653809, 54.584797 ], [ 22.741699, 54.329338 ], [ 20.895996, 54.316523 ], [ 19.665527, 54.431713 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.652943 ], [ 91.757812, 45.166547 ], [ 90.944824, 45.290347 ], [ 90.593262, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 88.857422, 48.063397 ], [ 88.022461, 48.603858 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.703125, 50.331436 ], [ 91.757812, 50.652943 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.758789, 49.296472 ], [ 88.022461, 48.603858 ], [ 88.857422, 48.063397 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.593262, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.166547 ], [ 91.757812, 27.780772 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.725586, 28.091366 ], [ 88.110352, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.652031 ], [ 84.243164, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.342285, 29.458731 ], [ 82.331543, 30.107118 ], [ 81.518555, 30.429730 ], [ 81.101074, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.728027, 31.522361 ], [ 78.464355, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.903809, 34.325292 ], [ 77.827148, 35.496456 ], [ 76.201172, 35.906849 ], [ 75.893555, 36.668419 ], [ 75.168457, 37.125286 ], [ 74.970703, 37.422526 ], [ 74.838867, 37.996163 ], [ 74.860840, 38.376115 ], [ 74.267578, 38.599700 ], [ 73.937988, 38.513788 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.476074, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.904297, 41.062786 ], [ 78.178711, 41.178654 ], [ 78.552246, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.266113, 42.342305 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.958008, 45.321254 ], [ 82.463379, 45.537137 ], [ 83.188477, 47.323931 ], [ 85.166016, 46.995241 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.210420 ], [ 87.758789, 49.296472 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.941895, 2.328460 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.823423 ], [ 13.293457, 1.318243 ], [ 14.018555, 1.406109 ], [ 14.282227, 1.186439 ], [ 13.842773, 0.043945 ], [ 13.864746, 0.000000 ], [ 14.326172, -0.549308 ], [ 14.436035, -1.340210 ], [ 14.348145, -1.757537 ], [ 9.184570, -1.757537 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.769020 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.941895, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.266008 ], [ 26.411133, 5.156599 ], [ 27.048340, 5.134715 ], [ 27.377930, 5.244128 ], [ 27.971191, 4.412137 ], [ 28.432617, 4.280680 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.171115 ], [ 30.827637, 3.513421 ], [ 30.783691, 2.350415 ], [ 31.179199, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.289551, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.735574 ], [ 18.083496, 2.372369 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.193030 ], [ 18.940430, 4.718778 ], [ 19.467773, 5.025283 ], [ 20.280762, 4.696879 ], [ 20.917969, 4.324501 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.697754, 4.631179 ], [ 22.851562, 4.718778 ], [ 23.291016, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.136719, 4.937724 ], [ 25.268555, 5.178482 ], [ 25.642090, 5.266008 ] ] ] } } @@ -290,10 +238,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.091309, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.586426, 69.068563 ], [ 29.025879, 69.763757 ], [ 27.729492, 70.162746 ], [ 26.169434, 69.824471 ], [ 25.686035, 69.092100 ], [ 24.741211, 68.648556 ], [ 23.664551, 68.895187 ], [ 22.346191, 68.839735 ], [ 21.247559, 69.372573 ], [ 20.654297, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.007571 ], [ 16.765137, 68.015798 ], [ 15.402832, 66.513260 ], [ 15.117188, 66.196009 ], [ 14.677734, 65.802776 ], [ 12.260742, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.252029 ], [ 23.027344, 70.199994 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 16.984863, 80.050460 ], [ 18.259277, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.479004, 77.827957 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.734951 ], [ 13.161621, 78.025574 ], [ 11.228027, 78.870048 ], [ 10.437012, 79.651722 ], [ 13.161621, 80.008612 ], [ 13.710938, 79.659613 ], [ 15.139160, 79.675377 ], [ 15.512695, 80.016233 ], [ 16.984863, 80.050460 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.927734, 79.516660 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.456543, 80.596909 ], [ 21.906738, 80.356995 ], [ 22.917480, 80.657741 ] ] ], [ [ [ 22.873535, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.500000, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.423340, 77.934055 ], [ 20.808105, 78.255861 ], [ 22.873535, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.162746 ], [ 29.025879, 69.763757 ], [ 28.586426, 69.068563 ], [ 28.454590, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.509277, 66.513260 ], [ 30.212402, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.906250, 66.009086 ], [ 23.576660, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.933397 ], [ 21.972656, 68.616534 ], [ 20.654297, 69.107777 ], [ 21.247559, 69.372573 ], [ 22.346191, 68.839735 ], [ 23.664551, 68.895187 ], [ 24.741211, 68.648556 ], [ 25.686035, 69.092100 ], [ 26.169434, 69.824471 ], [ 27.729492, 70.162746 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.107777 ], [ 21.972656, 68.616534 ], [ 23.532715, 67.933397 ], [ 23.554688, 66.513260 ], [ 23.576660, 66.399160 ], [ 23.906250, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.677734, 65.802776 ], [ 15.117188, 66.196009 ], [ 15.402832, 66.513260 ], [ 16.105957, 67.305976 ], [ 16.765137, 68.015798 ], [ 17.731934, 68.007571 ], [ 17.995605, 68.568414 ], [ 19.885254, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.654297, 69.107777 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.162746 ], [ 29.025879, 69.763757 ], [ 28.586426, 69.068563 ], [ 28.454590, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.509277, 66.513260 ], [ 30.212402, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.906250, 66.009086 ], [ 23.576660, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.933397 ], [ 21.972656, 68.616534 ], [ 20.654297, 69.107777 ], [ 21.247559, 69.372573 ], [ 22.346191, 68.839735 ], [ 23.664551, 68.895187 ], [ 24.741211, 68.648556 ], [ 25.686035, 69.092100 ], [ 26.169434, 69.824471 ], [ 27.729492, 70.162746 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.518555, 69.060712 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.804688, 65.901653 ], [ 34.826660, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.454590, 68.366801 ], [ 28.586426, 69.068563 ], [ 29.399414, 69.154740 ], [ 31.091309, 69.557553 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 40.473633, 65.802776 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.348325 ], [ 44.187012, 67.949900 ], [ 43.461914, 68.568414 ], [ 46.252441, 68.253111 ], [ 46.823730, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.142090, 67.525373 ], [ 50.229492, 67.999341 ], [ 53.723145, 68.855592 ], [ 54.470215, 68.807986 ], [ 53.481445, 68.204212 ], [ 54.733887, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.326660, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.277521 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.847193 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.232789 ], [ 68.510742, 68.089709 ], [ 69.169922, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.730957, 70.707212 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.931344 ], [ 69.191895, 72.842021 ], [ 69.938965, 73.041829 ], [ 72.597656, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.850586, 71.406172 ], [ 72.465820, 71.088305 ], [ 72.795410, 70.392606 ], [ 72.575684, 69.021414 ], [ 73.674316, 68.407268 ], [ 73.234863, 67.742759 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.280530 ], [ 75.058594, 67.759398 ], [ 74.465332, 68.326262 ], [ 74.926758, 68.989925 ], [ 73.850098, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.634484 ], [ 73.103027, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.663086, 72.829052 ], [ 75.168457, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.335983 ], [ 76.354980, 71.152294 ], [ 75.893555, 71.876745 ], [ 77.585449, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.753313 ], [ 80.617676, 72.580829 ], [ 80.507812, 73.646359 ], [ 82.243652, 73.849286 ], [ 84.660645, 73.806447 ], [ 86.813965, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.146412 ], [ 90.263672, 75.639536 ], [ 91.757812, 75.715633 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.542411 ], [ 68.181152, 76.232138 ], [ 64.643555, 75.737303 ], [ 61.589355, 75.258649 ], [ 58.469238, 74.307353 ], [ 56.997070, 73.334161 ], [ 55.415039, 72.369105 ], [ 55.612793, 71.538830 ], [ 57.546387, 70.721726 ], [ 56.953125, 70.634484 ], [ 53.679199, 70.765206 ], [ 53.415527, 71.208999 ], [ 51.591797, 71.476106 ], [ 51.459961, 72.012945 ], [ 52.470703, 72.228809 ], [ 52.448730, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.078669 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 50.031738, 80.918027 ], [ 51.525879, 80.700447 ], [ 51.130371, 80.546518 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.338575 ], [ 48.757324, 80.174965 ], [ 47.592773, 80.008612 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.771192 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.513982 ], [ 49.086914, 80.753556 ], [ 50.031738, 80.918027 ] ] ], [ [ [ 91.757812, 80.495859 ], [ 91.757812, 80.257110 ], [ 91.186523, 80.342262 ], [ 91.757812, 80.495859 ] ] ] ] } } ] } ] } @@ -306,35 +254,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.819336, 1.340210 ], [ 109.731445, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.673828, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.673828, -67.204032 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958496, -8.885072 ], [ 125.068359, -9.080400 ], [ 125.090332, -9.384032 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.969727, -9.297307 ], [ 124.958496, -8.885072 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.174805, -2.043024 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.591889 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.153809, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.857910, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.268066, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.893066, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 122.014160, -8.450639 ], [ 122.893066, -8.102739 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.337137 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.511230, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.214844, -2.943041 ], [ 110.061035, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 109.731445, 1.757537 ], [ 109.819336, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 114.741211, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.052754 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.699707, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.789425 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.455951 ], [ 121.728516, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.921097 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.069824, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.714355, -6.206090 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.241699 ], [ 128.386230, -0.769020 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.833317 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.118576 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.384032 ], [ 125.068359, -9.080400 ], [ 124.958496, -8.885072 ], [ 125.090332, -8.646196 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.733887, -40.697299 ], [ 145.393066, -40.797177 ], [ 146.359863, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.293457, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.407235 ], [ 147.919922, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.628123 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.698586 ], [ 145.305176, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.733887, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.910354 ], [ 143.151855, -12.318536 ], [ 143.525391, -12.833226 ], [ 143.591309, -13.410994 ], [ 143.569336, -13.774066 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.261230, -15.432501 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.898438, -16.909684 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.268900 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.126355 ], [ 150.490723, -22.553147 ], [ 150.732422, -22.411029 ], [ 150.908203, -23.463246 ], [ 152.072754, -24.467151 ], [ 152.863770, -25.264568 ], [ 153.127441, -26.076521 ], [ 153.171387, -26.647459 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.110749 ], [ 153.522949, -28.998532 ], [ 153.061523, -30.353916 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.018066, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.107765 ], [ 150.007324, -37.422526 ], [ 149.414062, -37.770715 ], [ 148.315430, -37.805444 ], [ 147.392578, -38.220920 ], [ 146.931152, -38.599700 ], [ 146.315918, -39.027719 ], [ 145.480957, -38.599700 ], [ 144.887695, -38.410558 ], [ 145.041504, -37.892196 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.805470 ], [ 142.185059, -38.376115 ], [ 141.613770, -38.307181 ], [ 140.646973, -38.013476 ], [ 139.987793, -37.405074 ], [ 139.812012, -36.650793 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.728677 ], [ 138.120117, -35.603719 ], [ 138.449707, -35.119909 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.083956 ], [ 136.823730, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.632916 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.760882 ], [ 136.362305, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.197754, -34.470335 ], [ 135.241699, -33.943360 ], [ 134.604492, -33.229498 ], [ 134.077148, -32.842674 ], [ 134.274902, -32.620870 ], [ 133.000488, -32.008076 ], [ 132.297363, -31.989442 ], [ 131.330566, -31.503629 ], [ 129.528809, -31.597253 ], [ 127.111816, -32.287133 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.211426, -32.953368 ], [ 124.035645, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.189941, -33.998027 ], [ 121.289062, -33.815666 ], [ 120.585938, -33.925130 ], [ 119.882812, -33.979809 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.470335 ], [ 118.498535, -34.741612 ], [ 118.015137, -35.065973 ], [ 117.290039, -35.029996 ], [ 116.630859, -35.029996 ], [ 115.554199, -34.379713 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.614619 ], [ 115.554199, -33.486435 ], [ 115.708008, -33.266250 ], [ 115.686035, -32.898038 ], [ 115.795898, -32.212801 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.631348, -28.806174 ], [ 114.609375, -28.516969 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.928223, -25.918526 ], [ 114.235840, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.730469, -25.005973 ], [ 113.620605, -24.686952 ], [ 113.400879, -24.387127 ], [ 113.510742, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.235840, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.466309, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.718750, -20.694462 ], [ 117.158203, -20.632784 ], [ 117.443848, -20.756114 ], [ 118.234863, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.398926, -19.248922 ], [ 121.662598, -18.708692 ], [ 122.233887, -18.187607 ], [ 122.321777, -17.245744 ], [ 123.002930, -16.404470 ], [ 123.442383, -17.266728 ], [ 123.859863, -17.077790 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.387207, -15.559544 ], [ 124.936523, -15.072124 ], [ 125.178223, -14.689881 ], [ 125.661621, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.814941, -14.285677 ], [ 128.364258, -14.859850 ], [ 128.979492, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.418945, -14.413400 ], [ 129.880371, -13.624633 ], [ 130.341797, -13.346865 ], [ 130.187988, -13.111580 ], [ 130.627441, -12.533115 ], [ 131.220703, -12.189704 ], [ 131.726074, -12.297068 ], [ 132.583008, -12.103781 ], [ 132.561035, -11.609193 ], [ 131.813965, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.039321 ], [ 136.494141, -11.867351 ], [ 136.955566, -12.361466 ], [ 136.691895, -12.897489 ], [ 136.296387, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.731381 ], [ 135.791016, -14.221789 ], [ 135.439453, -14.711135 ], [ 135.505371, -14.987240 ], [ 136.296387, -15.559544 ], [ 137.065430, -15.876809 ], [ 137.570801, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.056785 ], [ 139.262695, -17.371610 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.371610 ], [ 141.284180, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.525879, -13.688688 ], [ 141.657715, -12.940322 ], [ 141.833496, -12.747516 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.867351 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.660608 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.283203, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.075011 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.730076 ], [ 147.194824, -7.384258 ], [ 148.073730, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.080400 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.687398 ], [ 149.743652, -9.882275 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.787598, -10.401378 ], [ 147.919922, -10.120302 ], [ 147.128906, -9.492408 ], [ 146.557617, -8.950193 ], [ 146.052246, -8.059230 ], [ 144.733887, -7.623887 ], [ 143.898926, -7.906912 ], [ 143.283691, -8.254983 ], [ 143.415527, -8.993600 ], [ 142.624512, -9.318990 ], [ 142.075195, -9.167179 ], [ 141.042480, -9.123792 ], [ 140.998535, -2.591889 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.550381 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.699707, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.594118 ], [ 149.853516, -5.506640 ], [ 149.985352, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.227051, -5.528511 ], [ 150.798340, -5.462896 ], [ 151.083984, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.027832, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 150.930176, -2.504085 ], [ 151.479492, -2.789425 ], [ 152.248535, -3.250209 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.973861 ], [ 153.149414, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.798484 ], [ 151.391602, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.930176, -2.504085 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.189941, -16.151369 ], [ 167.211914, -15.897942 ] ] ], [ [ [ 166.618652, -14.626109 ], [ 167.102051, -14.923554 ], [ 167.277832, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.794434, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.618652, -14.626109 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.329664 ], [ 178.725586, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.371610 ], [ 178.132324, -17.497389 ], [ 178.374023, -17.329664 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.197754, -16.024696 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.425548 ], [ 179.406738, -16.383391 ], [ 180.000000, -16.066929 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.497092 ], [ 173.254395, -41.327326 ], [ 173.957520, -40.930115 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.902578 ], [ 170.617676, -45.905300 ], [ 169.343262, -46.634351 ], [ 168.420410, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.104546 ], [ 168.310547, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.672852, -43.548548 ], [ 170.529785, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.963308 ], [ 172.792969, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.562012, -35.012002 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.561997 ], [ 176.770020, -37.874853 ], [ 177.429199, -37.961523 ], [ 178.000488, -37.579413 ], [ 178.527832, -37.701207 ], [ 178.264160, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.022949, -41.294317 ], [ 175.231934, -41.689322 ], [ 175.078125, -41.426253 ], [ 174.660645, -41.277806 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.504041 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.805470 ], [ 174.748535, -38.030786 ], [ 174.704590, -37.387617 ], [ 174.287109, -36.703660 ], [ 174.309082, -36.527295 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.245619 ], [ 172.639160, -34.524661 ], [ 173.012695, -34.452218 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.171875, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.673828, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.673828, -67.204032 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.116068 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.691895, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 130.979004, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.767074 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.168457, 52.749594 ], [ 120.717773, 52.522906 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.148746 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.134664 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.611816, 50.275299 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.898438, 51.522416 ], [ 99.975586, 51.631657 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.239746, 50.415519 ], [ 97.250977, 49.724479 ], [ 95.822754, 49.979488 ], [ 94.812012, 50.007739 ], [ 94.152832, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.241211, 50.805935 ], [ 90.703125, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.958427 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.248922 ], [ 110.346680, 18.687879 ], [ 109.467773, 18.187607 ], [ 108.654785, 18.500447 ], [ 108.632812, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.789476 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.358062 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.767074 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.734455 ], [ 130.979004, 47.783635 ], [ 132.517090, 47.783635 ], [ 133.374023, 48.180739 ], [ 135.021973, 48.472921 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.119142 ], [ 131.154785, 42.924252 ], [ 130.627441, 42.908160 ], [ 130.649414, 42.391009 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.423457 ], [ 128.056641, 42.000325 ], [ 128.210449, 41.459195 ], [ 127.353516, 41.508577 ], [ 126.870117, 41.820455 ], [ 126.188965, 41.112469 ], [ 125.090332, 40.563895 ], [ 124.255371, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.047363, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.037109, 39.198205 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.874853 ], [ 121.706543, 37.474858 ], [ 122.365723, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.113281, 36.650793 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.603719 ], [ 119.157715, 34.903953 ], [ 120.234375, 34.361576 ], [ 120.629883, 33.376412 ], [ 121.223145, 32.454156 ], [ 121.904297, 31.690782 ], [ 121.882324, 30.958769 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.102051, 29.840644 ], [ 121.948242, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.135254, 28.130128 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.290039, 23.624395 ], [ 115.883789, 22.776182 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.247070, 22.044913 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.391705 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.050781, 21.820708 ], [ 106.567383, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.820312, 22.978624 ], [ 105.336914, 23.342256 ], [ 104.479980, 22.816694 ], [ 103.513184, 22.695120 ], [ 102.700195, 22.715390 ], [ 102.172852, 22.471955 ], [ 101.645508, 22.309426 ], [ 101.799316, 21.166484 ], [ 101.271973, 21.207459 ], [ 101.184082, 21.432617 ], [ 101.140137, 21.841105 ], [ 100.415039, 21.555284 ], [ 99.250488, 22.126355 ], [ 99.536133, 22.958393 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.734375, 25.085599 ], [ 98.679199, 25.918526 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.239746, 27.741885 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.591797, 28.825425 ], [ 96.108398, 29.458731 ], [ 95.405273, 29.036961 ], [ 94.570312, 29.286399 ], [ 93.405762, 28.632747 ], [ 92.504883, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.916767 ], [ 88.242188, 48.458352 ], [ 88.857422, 48.063397 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.593262, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.317383, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.350098, 42.730874 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.854492, 42.666281 ], [ 101.843262, 42.520700 ], [ 103.315430, 41.902277 ], [ 104.523926, 41.902277 ], [ 104.963379, 41.590797 ], [ 106.127930, 42.130821 ], [ 107.753906, 42.488302 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.875964 ], [ 111.137695, 43.405047 ], [ 111.818848, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.357422, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.466797, 44.809122 ], [ 114.455566, 45.336702 ], [ 115.993652, 45.721522 ], [ 116.718750, 46.392411 ], [ 117.421875, 46.679594 ], [ 118.872070, 46.800059 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.055154 ], [ 118.872070, 47.754098 ], [ 118.059082, 48.063397 ], [ 117.290039, 47.694974 ], [ 116.301270, 47.857403 ], [ 115.751953, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.148746 ], [ 119.289551, 50.583237 ], [ 120.190430, 51.645294 ], [ 120.739746, 51.957807 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.749594 ], [ 121.003418, 53.252069 ], [ 122.255859, 53.435719 ], [ 123.574219, 53.461890 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.916767 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.098254 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.882880 ], [ 91.208496, 26.804461 ], [ 92.043457, 26.843677 ], [ 92.109375, 27.449790 ], [ 91.691895, 27.780772 ], [ 92.504883, 27.897349 ], [ 93.405762, 28.632747 ], [ 94.570312, 29.286399 ], [ 95.405273, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.591797, 28.825425 ], [ 96.240234, 28.420391 ], [ 97.316895, 28.265682 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.702984 ], [ 97.141113, 27.078692 ], [ 96.416016, 27.274161 ], [ 95.119629, 26.568877 ], [ 95.163574, 25.997550 ], [ 94.592285, 25.165173 ], [ 94.548340, 24.666986 ], [ 94.108887, 23.845650 ], [ 93.317871, 24.086589 ], [ 93.295898, 23.039298 ], [ 93.054199, 22.695120 ], [ 93.164062, 22.268764 ], [ 92.680664, 22.044913 ], [ 92.153320, 23.624395 ], [ 91.867676, 23.624395 ], [ 91.713867, 22.978624 ], [ 91.164551, 23.503552 ], [ 91.472168, 24.066528 ], [ 91.911621, 24.126702 ], [ 92.373047, 24.986058 ], [ 91.801758, 25.145285 ], [ 90.878906, 25.125393 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.264568 ], [ 89.824219, 25.958045 ], [ 89.362793, 26.017298 ], [ 88.571777, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.427145 ], [ 88.703613, 24.226929 ], [ 88.527832, 23.624395 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.065278 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.698265 ], [ 88.242188, 24.427145 ] ] ], [ [ [ 88.242188, 25.740529 ], [ 88.923340, 25.244696 ], [ 88.308105, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.740529 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.116068 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.308794 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.844751 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.291628 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.535156, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.691895, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.119142 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.151053 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 130.979004, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.767074 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.168457, 52.749594 ], [ 120.717773, 52.522906 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.148746 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.134664 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.611816, 50.275299 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.898438, 51.522416 ], [ 99.975586, 51.631657 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.239746, 50.415519 ], [ 97.250977, 49.724479 ], [ 95.822754, 49.979488 ], [ 94.812012, 50.007739 ], [ 94.152832, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.241211, 50.805935 ], [ 90.703125, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.958427 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.854980, 52.052490 ], [ 99.975586, 51.631657 ], [ 100.898438, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.611816, 50.275299 ], [ 105.886230, 50.401515 ], [ 106.896973, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.479004, 49.282140 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.124219 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.539469 ], [ 114.367676, 50.247205 ], [ 114.960938, 50.134664 ], [ 115.488281, 49.809632 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.488281, 48.136767 ], [ 115.751953, 47.724545 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.694974 ], [ 118.059082, 48.063397 ], [ 118.872070, 47.754098 ], [ 119.772949, 47.055154 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.679594 ], [ 116.718750, 46.392411 ], [ 115.993652, 45.721522 ], [ 114.455566, 45.336702 ], [ 113.466797, 44.809122 ], [ 111.862793, 45.104546 ], [ 111.357422, 44.465151 ], [ 111.665039, 44.071800 ], [ 111.818848, 43.739352 ], [ 111.137695, 43.405047 ], [ 110.412598, 42.875964 ], [ 109.248047, 42.520700 ], [ 107.753906, 42.488302 ], [ 106.127930, 42.130821 ], [ 104.963379, 41.590797 ], [ 104.523926, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.843262, 42.520700 ], [ 100.854492, 42.666281 ], [ 99.514160, 42.520700 ], [ 97.448730, 42.747012 ], [ 96.350098, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.317383, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.593262, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 88.857422, 48.063397 ], [ 88.242188, 48.458352 ], [ 88.242188, 49.382373 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.703125, 50.331436 ], [ 92.241211, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.152832, 50.485474 ], [ 94.812012, 50.007739 ], [ 95.822754, 49.979488 ], [ 97.250977, 49.724479 ], [ 98.239746, 50.415519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.427013 ], [ 100.546875, 20.117840 ], [ 100.612793, 19.518375 ], [ 101.271973, 19.456234 ], [ 101.030273, 18.417079 ], [ 101.052246, 17.518344 ], [ 102.106934, 18.104087 ], [ 102.414551, 17.936929 ], [ 103.007812, 17.957832 ], [ 103.205566, 18.312811 ], [ 103.952637, 18.250220 ], [ 104.721680, 17.434511 ], [ 104.787598, 16.446622 ], [ 105.578613, 15.580711 ], [ 105.534668, 14.732386 ], [ 105.227051, 14.264383 ], [ 104.282227, 14.413400 ], [ 102.985840, 14.221789 ], [ 102.348633, 13.389620 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 101.821289, 5.812757 ], [ 101.162109, 5.681584 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 99.030762, 10.962764 ], [ 99.580078, 11.888853 ], [ 99.206543, 12.811801 ], [ 99.206543, 13.261333 ], [ 99.096680, 13.838080 ], [ 98.437500, 14.626109 ], [ 98.195801, 15.114553 ], [ 98.547363, 15.305380 ], [ 98.898926, 16.172473 ], [ 98.503418, 16.846605 ], [ 97.866211, 17.560247 ], [ 97.382812, 18.437925 ], [ 97.800293, 18.625425 ], [ 98.261719, 19.704658 ], [ 98.964844, 19.746024 ], [ 99.536133, 20.179724 ], [ 100.107422, 20.427013 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.248922 ], [ 110.346680, 18.687879 ], [ 109.467773, 18.187607 ], [ 108.654785, 18.500447 ], [ 108.632812, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.789476 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.358062 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.767074 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.734455 ], [ 130.979004, 47.783635 ], [ 132.517090, 47.783635 ], [ 133.374023, 48.180739 ], [ 135.021973, 48.472921 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.219568 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.151053 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.119142 ], [ 131.154785, 42.924252 ], [ 130.627441, 42.908160 ], [ 130.649414, 42.391009 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.423457 ], [ 128.056641, 42.000325 ], [ 128.210449, 41.459195 ], [ 127.353516, 41.508577 ], [ 126.870117, 41.820455 ], [ 126.188965, 41.112469 ], [ 125.090332, 40.563895 ], [ 124.255371, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.047363, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.757880 ], [ 122.167969, 40.430224 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.037109, 39.198205 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.874853 ], [ 121.706543, 37.474858 ], [ 122.365723, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.113281, 36.650793 ], [ 120.629883, 36.120128 ], [ 119.663086, 35.603719 ], [ 119.157715, 34.903953 ], [ 120.234375, 34.361576 ], [ 120.629883, 33.376412 ], [ 121.223145, 32.454156 ], [ 121.904297, 31.690782 ], [ 121.882324, 30.958769 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.102051, 29.840644 ], [ 121.948242, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.135254, 28.130128 ], [ 120.388184, 27.059126 ], [ 119.575195, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.290039, 23.624395 ], [ 115.883789, 22.776182 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.796387, 22.553147 ], [ 113.247070, 22.044913 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.391705 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.039551, 21.555284 ], [ 107.050781, 21.820708 ], [ 106.567383, 22.228090 ], [ 106.721191, 22.796439 ], [ 105.820312, 22.978624 ], [ 105.336914, 23.342256 ], [ 104.479980, 22.816694 ], [ 103.513184, 22.695120 ], [ 102.700195, 22.715390 ], [ 102.172852, 22.471955 ], [ 101.645508, 22.309426 ], [ 101.799316, 21.166484 ], [ 101.271973, 21.207459 ], [ 101.184082, 21.432617 ], [ 101.140137, 21.841105 ], [ 100.415039, 21.555284 ], [ 99.250488, 22.126355 ], [ 99.536133, 22.958393 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.905927 ], [ 97.734375, 25.085599 ], [ 98.679199, 25.918526 ], [ 98.701172, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.239746, 27.741885 ], [ 97.910156, 28.343065 ], [ 97.316895, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.591797, 28.825425 ], [ 96.108398, 29.458731 ], [ 95.405273, 29.036961 ], [ 94.570312, 29.286399 ], [ 93.405762, 28.632747 ], [ 92.504883, 27.897349 ], [ 91.691895, 27.780772 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.916767 ], [ 88.242188, 48.458352 ], [ 88.857422, 48.063397 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.593262, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.317383, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.350098, 42.730874 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.854492, 42.666281 ], [ 101.843262, 42.520700 ], [ 103.315430, 41.902277 ], [ 104.523926, 41.902277 ], [ 104.963379, 41.590797 ], [ 106.127930, 42.130821 ], [ 107.753906, 42.488302 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.875964 ], [ 111.137695, 43.405047 ], [ 111.818848, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.357422, 44.465151 ], [ 111.862793, 45.104546 ], [ 113.466797, 44.809122 ], [ 114.455566, 45.336702 ], [ 115.993652, 45.721522 ], [ 116.718750, 46.392411 ], [ 117.421875, 46.679594 ], [ 118.872070, 46.800059 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.055154 ], [ 118.872070, 47.754098 ], [ 118.059082, 48.063397 ], [ 117.290039, 47.694974 ], [ 116.301270, 47.857403 ], [ 115.751953, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.148746 ], [ 119.289551, 50.583237 ], [ 120.190430, 51.645294 ], [ 120.739746, 51.957807 ], [ 120.717773, 52.522906 ], [ 120.168457, 52.749594 ], [ 121.003418, 53.252069 ], [ 122.255859, 53.435719 ], [ 123.574219, 53.461890 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.343065 ], [ 98.239746, 27.741885 ], [ 98.679199, 27.508271 ], [ 98.701172, 26.745610 ], [ 98.679199, 25.918526 ], [ 97.734375, 25.085599 ], [ 97.602539, 23.905927 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.958393 ], [ 99.250488, 22.126355 ], [ 100.415039, 21.555284 ], [ 101.140137, 21.841105 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.776659 ], [ 100.107422, 20.427013 ], [ 99.536133, 20.179724 ], [ 98.964844, 19.746024 ], [ 98.261719, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.382812, 18.437925 ], [ 97.866211, 17.560247 ], [ 98.503418, 16.846605 ], [ 98.898926, 16.172473 ], [ 98.547363, 15.305380 ], [ 98.195801, 15.114553 ], [ 98.437500, 14.626109 ], [ 99.096680, 13.838080 ], [ 99.206543, 13.261333 ], [ 99.206543, 12.811801 ], [ 99.580078, 11.888853 ], [ 99.030762, 10.962764 ], [ 98.547363, 9.925566 ], [ 98.459473, 10.682201 ], [ 98.767090, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.503418, 13.132979 ], [ 98.107910, 13.645987 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.812012, 15.813396 ], [ 94.196777, 16.045813 ], [ 94.526367, 17.287709 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.373341 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.658691, 21.330315 ], [ 92.680664, 22.044913 ], [ 93.164062, 22.268764 ], [ 93.054199, 22.695120 ], [ 93.295898, 23.039298 ], [ 93.317871, 24.086589 ], [ 94.108887, 23.845650 ], [ 94.548340, 24.666986 ], [ 94.592285, 25.165173 ], [ 95.163574, 25.997550 ], [ 95.119629, 26.568877 ], [ 96.416016, 27.274161 ], [ 97.141113, 27.078692 ], [ 97.053223, 27.702984 ], [ 97.404785, 27.877928 ], [ 97.316895, 28.265682 ], [ 97.910156, 28.343065 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.444336, 5.441022 ], [ 115.356445, 4.324501 ], [ 114.873047, 4.346411 ], [ 114.653320, 4.017699 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.419922, 9.752370 ], [ 126.232910, 9.275622 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.188965, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.354004, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.572250 ], [ 124.211426, 6.162401 ], [ 123.947754, 6.882800 ], [ 124.233398, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.904614 ], [ 121.926270, 7.188101 ], [ 122.321777, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.950193 ], [ 125.463867, 8.993600 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 121.311035, 18.500447 ], [ 121.948242, 18.208480 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.940202 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.328260 ], [ 123.947754, 13.774066 ], [ 123.859863, 13.239945 ], [ 124.189453, 13.004558 ], [ 124.079590, 12.533115 ], [ 123.288574, 13.025966 ], [ 122.937012, 13.560562 ], [ 122.673340, 13.175771 ], [ 122.036133, 13.774066 ], [ 121.135254, 13.645987 ], [ 120.629883, 13.859414 ], [ 120.673828, 14.264383 ], [ 120.981445, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.080566, 14.966013 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.278320, 16.024696 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.311035, 18.500447 ] ] ], [ [ [ 124.277344, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.168226 ], [ 125.793457, 11.049038 ], [ 125.002441, 11.307708 ], [ 125.024414, 10.984335 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.892578, 11.415418 ], [ 124.870605, 11.802834 ], [ 124.277344, 12.554564 ] ] ], [ [ [ 124.079590, 11.243062 ], [ 123.991699, 10.271681 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.827148, 10.271681 ], [ 122.937012, 10.876465 ], [ 123.508301, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.243062 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.058702 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.090820, 11.156845 ], [ 122.629395, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.372070, 41.376809 ], [ 141.921387, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.169114 ], [ 140.976562, 37.142803 ], [ 140.603027, 36.350527 ], [ 140.778809, 35.835628 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.615127 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.852170 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.165527, 33.906896 ], [ 130.979004, 33.888658 ], [ 131.989746, 33.155948 ], [ 131.330566, 31.447410 ], [ 130.693359, 31.034108 ], [ 130.209961, 31.409912 ], [ 130.451660, 32.324276 ], [ 129.814453, 32.602362 ], [ 129.418945, 33.302986 ], [ 130.363770, 33.596319 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.728677 ], [ 135.681152, 35.532226 ], [ 136.713867, 37.300275 ], [ 137.395020, 36.826875 ], [ 139.416504, 38.220920 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.563895 ], [ 140.295410, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.648438, 34.143635 ], [ 134.758301, 33.797409 ], [ 134.208984, 33.192731 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.713355 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.483887, 33.943360 ], [ 133.901367, 34.361576 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.151855, 44.512176 ], [ 143.920898, 44.166445 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.988576 ], [ 143.173828, 42.000325 ], [ 141.613770, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.965820, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.317383, 43.341160 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.965332, 45.552525 ] ] ] ] } } , @@ -374,20 +318,20 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.472412, 59.789580 ], [ -135.000000, 59.321981 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -134.121094, 58.785285 ], [ -134.121094, 58.124320 ], [ -135.000000, 58.182289 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.539888 ], [ -142.569580, 60.086763 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.692884 ], [ -164.783936, 54.406143 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.219608 ], [ -157.719727, 57.568888 ], [ -157.554932, 58.326799 ], [ -157.038574, 58.921664 ], [ -158.192139, 58.614056 ], [ -158.521729, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.059326, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.800634 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.257080, 63.543658 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.778807 ], [ -162.454834, 64.557881 ], [ -162.762451, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.449111 ], [ -166.420898, 64.685016 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.761963, 66.513260 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.903174 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.462681 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.386720 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.386720 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.785285 ], [ -134.274902, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.321981 ], [ -135.472412, 59.789580 ], [ -136.483154, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.513260 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.472412, 59.789580 ], [ -135.000000, 59.321981 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -134.121094, 58.785285 ], [ -134.121094, 58.124320 ], [ -135.000000, 58.182289 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.539888 ], [ -142.569580, 60.086763 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.916483 ], [ -149.732666, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.864014, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.292236, 58.864905 ], [ -154.237061, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.646599 ], [ -161.224365, 55.366625 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.692884 ], [ -164.783936, 54.406143 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.010666 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.219608 ], [ -157.719727, 57.568888 ], [ -157.554932, 58.326799 ], [ -157.038574, 58.921664 ], [ -158.192139, 58.614056 ], [ -158.521729, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.059326, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.800634 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.355225, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.257080, 63.543658 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.778807 ], [ -162.454834, 64.557881 ], [ -162.762451, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.449111 ], [ -166.420898, 64.685016 ], [ -166.849365, 65.090646 ], [ -168.112793, 65.671856 ], [ -166.706543, 66.089364 ], [ -164.761963, 66.513260 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.903174 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.118350 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.462681 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.386720 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.756395 ], [ -166.849365, 59.944007 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.386720 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.583217 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.440002 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.254141 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.633292 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.522068 ], [ -178.363037, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.129538 ], [ -180.626221, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.319003 ], [ -180.878906, 63.129538 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.762207, 66.160511 ], [ -166.376953, 66.160511 ], [ -164.761963, 66.513260 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ] ] ], [ [ [ -161.740723, 66.160511 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.114476 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.896484, 70.891482 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.528560 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.151558 ], [ -142.075195, 69.850978 ], [ -140.987549, 69.710489 ], [ -140.987549, 66.160511 ], [ -161.740723, 66.160511 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.710489 ], [ -139.119873, 69.469116 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.417725, 69.626510 ], [ -134.121094, 69.603549 ], [ -134.121094, 66.160511 ], [ -140.987549, 66.160511 ], [ -140.987549, 69.710489 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.762207, 66.160511 ], [ -166.376953, 66.160511 ], [ -164.761963, 66.513260 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ] ] ], [ [ [ -161.740723, 66.160511 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.114476 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.044569 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ], [ -155.072021, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.896484, 70.891482 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.601670 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.528560 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.121695 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.151558 ], [ -142.075195, 69.850978 ], [ -140.987549, 69.710489 ], [ -140.987549, 66.160511 ], [ -161.740723, 66.160511 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.878906, 69.236684 ], [ -180.000000, 68.962335 ], [ -177.550049, 68.200133 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.277100, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 69.236684 ] ] ], [ [ [ -180.000000, 71.514462 ], [ -179.868164, 71.556217 ], [ -179.022217, 71.556217 ], [ -177.583008, 71.269067 ], [ -177.659912, 71.134540 ], [ -178.692627, 70.891482 ], [ -180.000000, 70.833855 ], [ -180.878906, 70.790525 ], [ -180.878906, 71.230221 ], [ -180.000000, 71.514462 ] ] ] ] } } ] } ] } @@ -409,18 +353,14 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.164126 ], [ -89.417725, 29.897806 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.716681 ], [ -94.691162, 29.477861 ], [ -95.603027, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.686730 ], [ -97.327881, 26.214591 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.305420, 26.843677 ], [ -99.525146, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.700225 ], [ -100.953369, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.710693, 30.126124 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.512451, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.027832, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.818115, 32.528289 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.301025, 33.045508 ], [ -117.949219, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.443359, 34.352507 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.717529, 36.164488 ], [ -122.552490, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.117272 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.302002, 32.036020 ], [ -111.027832, 31.334871 ], [ -108.237305, 31.344254 ], [ -108.237305, 31.756196 ], [ -106.512451, 31.756196 ], [ -106.138916, 31.400535 ], [ -105.633545, 31.081165 ], [ -105.040283, 30.647364 ], [ -104.710693, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.267233 ], [ -103.106689, 28.969701 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.953369, 29.382175 ], [ -100.458984, 28.700225 ], [ -100.107422, 28.110749 ], [ -99.525146, 27.537500 ], [ -99.305420, 26.843677 ], [ -99.019775, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.525635, 25.839449 ], [ -97.141113, 25.869109 ], [ -97.525635, 24.996016 ], [ -97.701416, 24.277012 ], [ -97.778320, 22.928042 ], [ -97.877197, 22.441495 ], [ -97.701416, 21.902278 ], [ -97.393799, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.295166, 19.321511 ], [ -95.899658, 18.823117 ], [ -94.833984, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.427502 ], [ -92.790527, 18.521283 ], [ -92.032471, 18.708692 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.280036 ], [ -90.538330, 19.870060 ], [ -90.450439, 20.704739 ], [ -90.274658, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.258661 ], [ -89.121094, 21.371244 ], [ -89.121094, 17.968283 ], [ -89.154053, 17.957832 ], [ -89.143066, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.999756, 17.821916 ], [ -90.999756, 17.256236 ], [ -91.450195, 17.256236 ], [ -91.076660, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.467695 ], [ -90.439453, 16.415009 ], [ -90.461426, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.061515 ], [ -92.208252, 14.827991 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.612456 ], [ -93.878174, 15.940202 ], [ -94.691162, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.009033, 16.109153 ], [ -98.942871, 16.562493 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.644022 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.996338, 19.311143 ], [ -105.490723, 19.942369 ], [ -105.732422, 20.437308 ], [ -105.402832, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.270996, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.688477, 22.268764 ], [ -106.029053, 22.776182 ], [ -106.907959, 23.765237 ], [ -107.918701, 24.547123 ], [ -108.402100, 25.175117 ], [ -109.259033, 25.582085 ], [ -109.445801, 25.829561 ], [ -109.291992, 26.441066 ], [ -109.797363, 26.676913 ], [ -110.390625, 27.166695 ], [ -110.643311, 27.858504 ], [ -111.181641, 27.945886 ], [ -111.763916, 28.468691 ], [ -112.225342, 28.950476 ], [ -112.269287, 29.267233 ], [ -112.807617, 30.021544 ], [ -113.159180, 30.789037 ], [ -113.148193, 31.175210 ], [ -113.873291, 31.569175 ], [ -114.202881, 31.522361 ], [ -114.774170, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.774170, 30.911651 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.754840 ], [ -113.587646, 29.065773 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.758028 ], [ -113.137207, 28.410728 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.280518, 25.730633 ], [ -110.983887, 25.294371 ], [ -110.709229, 24.826625 ], [ -110.654297, 24.297040 ], [ -110.170898, 24.266997 ], [ -109.775391, 23.815501 ], [ -109.412842, 23.362429 ], [ -109.434814, 23.180764 ], [ -109.852295, 22.816694 ], [ -110.028076, 22.826820 ], [ -110.291748, 23.433009 ], [ -110.950928, 23.996290 ], [ -111.676025, 24.487149 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.473033 ], [ -112.302246, 26.007424 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.637639 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.137368 ], [ -115.059814, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.202881, 28.110749 ], [ -114.158936, 28.565225 ], [ -114.927979, 29.276816 ], [ -115.521240, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.125244, 32.537552 ], [ -115.993652, 32.611616 ], [ -114.719238, 32.722599 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.811456 ], [ -89.154053, 17.014768 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.082732 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.538574, 14.243087 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.604248, 13.912740 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.125922 ], [ -92.230225, 14.541050 ], [ -92.208252, 14.827991 ], [ -92.087402, 15.061515 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.467695 ], [ -90.714111, 16.688817 ], [ -91.076660, 16.920195 ], [ -91.450195, 17.256236 ], [ -90.999756, 17.256236 ], [ -90.999756, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.968283 ], [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.014768 ], [ -89.154053, 17.957832 ], [ -89.121094, 17.968283 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.636230, 48.843028 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.019324 ], [ -89.121094, 48.070738 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.867703 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.188063 ], [ -124.562988, 48.378145 ], [ -123.123779, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.343750, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.152588, 49.382373 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.472412, 59.789580 ], [ -135.000000, 59.321981 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.979248, 55.285372 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.253418, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.000000, 58.182289 ], [ -135.032959, 58.188080 ], [ -135.878906, 58.199661 ], [ -135.878906, 59.656642 ], [ -135.472412, 59.789580 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.067396 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.612100 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.153076, 62.026682 ], [ -94.240723, 60.898388 ], [ -94.625244, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.218994, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.070738 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.636963, 48.136767 ], [ -92.614746, 48.451066 ], [ -93.625488, 48.611122 ], [ -94.328613, 48.669199 ], [ -94.636230, 48.843028 ], [ -94.822998, 49.389524 ], [ -95.152588, 49.382373 ], [ -95.163574, 49.001844 ], [ -122.969971, 49.001844 ], [ -124.914551, 49.986552 ], [ -125.628662, 50.415519 ], [ -127.430420, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.559889 ], [ -130.517578, 54.284469 ], [ -130.539551, 54.800685 ], [ -129.979248, 55.285372 ], [ -130.012207, 55.918430 ], [ -131.704102, 56.553428 ], [ -132.725830, 57.692406 ], [ -133.352051, 58.407468 ], [ -134.274902, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.321981 ], [ -135.472412, 59.789580 ], [ -135.878906, 59.656642 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.353271, 50.771208 ], [ -127.309570, 50.555325 ], [ -126.694336, 50.401515 ], [ -125.760498, 50.296358 ], [ -124.925537, 49.475263 ], [ -123.925781, 49.059470 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.650635, 48.828566 ], [ -125.958252, 49.181703 ], [ -126.848145, 49.532339 ], [ -127.034912, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.441162, 50.541363 ], [ -128.353271, 50.771208 ] ] ], [ [ [ -133.176270, 54.168866 ], [ -132.714844, 54.040038 ], [ -131.748047, 54.117383 ], [ -132.044678, 52.981723 ], [ -131.176758, 52.180669 ], [ -131.583252, 52.180669 ], [ -132.176514, 52.636397 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.168866 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.822998, 49.389524 ], [ -94.636230, 48.843028 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.611122 ], [ -92.614746, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.019324 ], [ -89.121094, 48.070738 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.867703 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.188063 ], [ -124.562988, 48.378145 ], [ -123.123779, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.343750, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 49.001844 ], [ -95.163574, 49.001844 ], [ -95.152588, 49.382373 ], [ -94.822998, 49.389524 ] ] ], [ [ [ -135.472412, 59.789580 ], [ -135.000000, 59.321981 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.012207, 55.918430 ], [ -129.979248, 55.285372 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.253418, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.000000, 58.182289 ], [ -135.032959, 58.188080 ], [ -135.878906, 58.199661 ], [ -135.878906, 59.656642 ], [ -135.472412, 59.789580 ] ] ] ] } } ] } ] } , @@ -462,13 +402,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.489502, 0.878872 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.489502, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.224854, 0.878872 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.559866 ], [ -69.895020, -4.302591 ], [ -70.389404, -3.765597 ], [ -70.697021, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.817871, -2.251617 ], [ -71.411133, -2.339438 ], [ -71.773682, -2.174771 ], [ -72.322998, -2.438229 ], [ -73.070068, -2.306506 ], [ -73.663330, -1.263325 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.673340, 0.823946 ], [ -77.860107, 0.812961 ], [ -77.980957, 0.878872 ], [ -69.224854, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.980957, 0.878872 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.252685 ], [ -76.289062, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.234375, -0.911827 ], [ -75.541992, -1.559866 ], [ -76.640625, -2.613839 ], [ -77.838135, -2.997899 ], [ -78.453369, -3.875216 ], [ -78.640137, -4.543570 ], [ -79.200439, -4.959615 ], [ -79.628906, -4.455951 ], [ -80.024414, -4.346411 ], [ -80.441895, -4.423090 ], [ -80.463867, -4.061536 ], [ -80.189209, -3.820408 ], [ -80.299072, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.991455, -2.218684 ], [ -80.364990, -2.679687 ], [ -80.969238, -2.251617 ], [ -80.760498, -1.966167 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.911827 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.804688, 0.878872 ], [ -77.980957, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.339438 ], [ -70.817871, -2.251617 ], [ -70.048828, -2.723583 ], [ -70.697021, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -70.795898, -4.247812 ], [ -70.927734, -4.401183 ], [ -71.751709, -4.598327 ], [ -72.894287, -5.276948 ], [ -72.960205, -5.736243 ], [ -73.223877, -6.085936 ], [ -73.125000, -6.631870 ], [ -73.729248, -6.915521 ], [ -73.718262, -7.340675 ], [ -73.981934, -7.525873 ], [ -73.575439, -8.428904 ], [ -73.015137, -9.037003 ], [ -73.223877, -9.459899 ], [ -72.564697, -9.524914 ], [ -72.180176, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.477295, -9.492408 ], [ -70.543213, -11.005904 ], [ -70.092773, -11.124507 ], [ -69.532471, -10.951978 ], [ -68.664551, -12.565287 ], [ -68.884277, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.334717, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.665354 ], [ -68.961182, -16.499299 ], [ -69.587402, -17.581194 ], [ -69.862061, -18.093644 ], [ -70.367432, -18.344098 ], [ -71.378174, -17.769612 ], [ -71.466064, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.262989 ], [ -76.014404, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.540771, -6.544560 ], [ -81.254883, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -80.189209, -3.820408 ], [ -80.463867, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.024414, -4.346411 ], [ -79.628906, -4.455951 ], [ -79.200439, -4.959615 ], [ -78.640137, -4.543570 ], [ -78.453369, -3.875216 ], [ -77.838135, -2.997899 ], [ -76.640625, -2.613839 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.335693, -9.763198 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.458033 ], [ -63.193359, -12.629618 ], [ -62.797852, -13.004558 ], [ -62.127686, -13.197165 ], [ -61.710205, -13.485790 ], [ -61.083984, -13.475106 ], [ -60.501709, -13.774066 ], [ -60.457764, -14.349548 ], [ -60.260010, -14.647368 ], [ -60.249023, -15.072124 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.238525, -16.299051 ], [ -58.392334, -16.878147 ], [ -58.282471, -17.266728 ], [ -57.733154, -17.549772 ], [ -57.502441, -18.177169 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.404430 ], [ -57.854004, -19.973349 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.352611 ], [ -60.040283, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.270508, -20.509355 ], [ -62.292480, -21.053744 ], [ -62.687988, -22.248429 ], [ -62.841797, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.379883, -22.796439 ], [ -64.962158, -22.075459 ], [ -66.269531, -21.830907 ], [ -67.104492, -22.735657 ], [ -67.829590, -22.877440 ], [ -68.225098, -21.493964 ], [ -68.752441, -20.375527 ], [ -68.444824, -19.404430 ], [ -68.972168, -18.979026 ], [ -69.104004, -18.260653 ], [ -69.587402, -17.581194 ], [ -68.961182, -16.499299 ], [ -69.389648, -15.665354 ], [ -69.158936, -15.326572 ], [ -69.334717, -14.955399 ], [ -68.950195, -14.455958 ], [ -68.928223, -13.603278 ], [ -68.884277, -12.897489 ], [ -68.664551, -12.565287 ], [ -69.532471, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.170410, -10.304110 ], [ -66.643066, -9.936388 ], [ -65.335693, -9.763198 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.097656, 0.878872 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.571045, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.901123, -1.548884 ], [ -44.417725, -2.141835 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.569939 ], [ -44.121094, -23.221155 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.636475, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.228890 ], [ -50.701904, -30.987028 ], [ -51.580811, -31.774878 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.192731 ], [ -53.371582, -33.770015 ], [ -53.646240, -33.201924 ], [ -53.206787, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.623291, -30.211608 ], [ -56.293945, -28.854296 ], [ -55.162354, -27.877928 ], [ -54.492188, -27.479035 ], [ -53.646240, -26.922070 ], [ -53.624268, -26.125850 ], [ -54.129639, -25.552354 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.016362 ], [ -54.656982, -23.835601 ], [ -55.030518, -23.996290 ], [ -55.404053, -23.956136 ], [ -55.513916, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.360236 ], [ -56.469727, -22.085640 ], [ -56.876221, -22.278931 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.735566 ], [ -58.161621, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.952881, -19.404430 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.177169 ], [ -57.733154, -17.549772 ], [ -58.282471, -17.266728 ], [ -58.392334, -16.878147 ], [ -58.238525, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.249023, -15.072124 ], [ -60.260010, -14.647368 ], [ -60.457764, -14.349548 ], [ -60.501709, -13.774066 ], [ -61.083984, -13.475106 ], [ -61.710205, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.797852, -13.004558 ], [ -63.193359, -12.629618 ], [ -64.313965, -12.458033 ], [ -65.401611, -11.566144 ], [ -65.324707, -10.898042 ], [ -65.445557, -10.509417 ], [ -65.335693, -9.763198 ], [ -66.643066, -9.936388 ], [ -67.170410, -10.304110 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.532471, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.543213, -11.005904 ], [ -70.477295, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.180176, -10.055403 ], [ -72.564697, -9.524914 ], [ -73.223877, -9.459899 ], [ -73.015137, -9.037003 ], [ -73.575439, -8.428904 ], [ -73.981934, -7.525873 ], [ -73.718262, -7.340675 ], [ -73.729248, -6.915521 ], [ -73.125000, -6.631870 ], [ -73.223877, -6.085936 ], [ -72.960205, -5.736243 ], [ -72.894287, -5.276948 ], [ -71.751709, -4.598327 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.302591 ], [ -69.444580, -1.559866 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.604237 ], [ -69.224854, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.489502, 0.878872 ], [ -50.097656, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.875792 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.766785 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.127591 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.788818, -26.617997 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.877928 ], [ -56.293945, -28.854296 ], [ -57.623291, -30.211608 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.036298 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.775635, -41.170384 ], [ -64.270020, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.685791, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.817871, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.125488, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.189086 ], [ -69.818115, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.389893, -26.185018 ], [ -68.422852, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ] ] ] } } , @@ -482,30 +420,24 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 17.821916 ], [ -90.878906, 19.217803 ], [ -90.769043, 19.280036 ], [ -90.538330, 19.870060 ], [ -90.450439, 20.704739 ], [ -90.274658, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.258661 ], [ -88.538818, 21.493964 ], [ -87.659912, 21.463293 ], [ -87.055664, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.251890 ], [ -87.615967, 19.642588 ], [ -87.440186, 19.476950 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.521283 ], [ -88.494873, 18.490029 ], [ -88.846436, 17.884659 ], [ -89.033203, 17.999632 ], [ -89.154053, 17.957832 ], [ -89.143066, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.467695 ], [ -90.439453, 16.415009 ], [ -90.461426, 16.066929 ], [ -90.878906, 16.066929 ], [ -90.878906, 16.794024 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.811456 ], [ -89.154053, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.538574, 14.243087 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.604248, 13.912740 ], [ -90.878906, 13.912740 ], [ -90.878906, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.415009 ], [ -90.604248, 16.467695 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.214881 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.783203, 23.714954 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.214881 ] ] ], [ [ [ -77.794189, 27.039557 ], [ -77.003174, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.794189, 27.039557 ] ] ], [ [ [ -78.508301, 26.873081 ], [ -77.849121, 26.843677 ], [ -77.816162, 26.578702 ], [ -78.914795, 26.421390 ], [ -78.980713, 26.794654 ], [ -78.508301, 26.873081 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.024658, 9.557417 ], [ -79.057617, 9.459899 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.939556 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.722218 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.386963, 8.298470 ], [ -80.485840, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.113615 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -82.913818, 8.428904 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.928487 ], [ -82.924805, 9.069551 ], [ -82.935791, 9.481572 ], [ -82.551270, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.863362 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.247314, 18.375379 ], [ -67.104492, 18.521283 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.781325 ], [ -71.971436, 11.609193 ], [ -72.224121, 11.113727 ], [ -72.619629, 10.822515 ], [ -72.905273, 10.455402 ], [ -73.026123, 9.741542 ], [ -73.300781, 9.156333 ], [ -72.784424, 9.080400 ], [ -72.663574, 8.624472 ], [ -72.443848, 8.407168 ], [ -72.355957, 8.004837 ], [ -72.476807, 7.634776 ], [ -72.443848, 7.427837 ], [ -72.202148, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.096860 ], [ -68.983154, 6.206090 ], [ -68.269043, 6.151478 ], [ -67.697754, 6.271618 ], [ -67.346191, 6.096860 ], [ -67.521973, 5.561315 ], [ -67.741699, 5.222247 ], [ -67.818604, 4.499762 ], [ -67.620850, 3.842332 ], [ -67.335205, 3.546318 ], [ -67.302246, 3.316018 ], [ -67.807617, 2.822344 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.060547, 1.131518 ], [ -67.258301, 1.724593 ], [ -67.532959, 2.032045 ], [ -67.873535, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.201660, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.805664, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.673340, 0.823946 ], [ -77.860107, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.262595 ], [ -78.431396, 2.624814 ], [ -77.937012, 2.701635 ], [ -77.508545, 3.326986 ], [ -77.124023, 3.853293 ], [ -77.497559, 4.083453 ], [ -77.310791, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.475586, 6.686431 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.244873, 7.939556 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.635334 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.438224 ], [ -75.662842, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.232286 ], [ -72.630615, 11.727546 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.985352, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.820557, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.117676, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.515061 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.108899 ], [ -53.778076, 2.372369 ], [ -53.558350, 2.339438 ], [ -53.415527, 2.054003 ], [ -52.943115, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.724593 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.808838, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.779785, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.160158 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.943115, 2.119878 ], [ -53.415527, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.778076, 2.372369 ], [ -54.085693, 2.108899 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.859863, 1.384143 ], [ -77.860107, 0.812961 ], [ -77.673340, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.252685 ], [ -76.289062, 0.417477 ], [ -75.805664, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.234375, -0.878872 ], [ -80.573730, -0.878872 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.977736 ], [ -78.859863, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.201660, -0.878872 ], [ -75.234375, -0.878872 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.160158 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.943115, 2.119878 ], [ -53.415527, 2.054003 ], [ -53.558350, 2.339438 ], [ -53.778076, 2.372369 ], [ -54.085693, 2.108899 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.985352, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.820557, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.117676, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.515061 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.108899 ], [ -53.778076, 2.372369 ], [ -53.558350, 2.339438 ], [ -53.415527, 2.054003 ], [ -52.943115, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.625488, -0.230712 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.724593 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.204102, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.416276 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.808838, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.779785, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.342041, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.013672, 43.269206 ], [ -79.167480, 43.468868 ], [ -78.717041, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.301514, 45.912944 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.450380 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.334184 ], [ -70.499268, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.147114 ], [ -69.884033, 41.926803 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -73.992920, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.261256 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.305121 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.066895, 66.058175 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.612100 ], [ -90.769043, 62.960218 ], [ -90.878906, 62.950227 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.661865, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.364990, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.445427 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.903076, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.404053, 51.590723 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.589349 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.246293 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.964844, 47.628380 ], [ -54.239502, 47.754098 ], [ -55.404053, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.569114 ], [ -59.271240, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -90.878906, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.044189, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.247815 ], [ -82.276611, 55.147488 ], [ -82.441406, 54.284469 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.607178, 52.562995 ], [ -79.123535, 54.143132 ], [ -79.826660, 54.667478 ], [ -78.233643, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.054632 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.446324 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.527933 ], [ -71.378174, 61.137933 ], [ -69.587402, 61.063601 ], [ -69.620361, 60.223447 ], [ -69.290771, 58.955674 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.588623, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.337646, 54.629338 ], [ -56.942139, 53.781181 ], [ -56.162109, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.368652, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.061035, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.268805 ], [ -65.368652, 43.548548 ], [ -66.126709, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.796631, 45.706179 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.450380 ], [ -70.004883, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.510010, 45.011419 ], [ -74.871826, 45.003651 ], [ -75.322266, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.694092, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.278631 ], [ -84.144287, 46.513516 ], [ -84.342041, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.880371, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.305121 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.011975 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -90.878906, 48.261256 ], [ -90.878906, 57.279043 ] ] ], [ [ [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.324707, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.280518, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.170654, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.026611, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.853027, 66.861082 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.979248, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.651136 ], [ -83.111572, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.528564, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.543658 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.863770, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.809082, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.403825 ], [ -64.522705, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.880371, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.342041, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.278631 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.034668, 41.836828 ], [ -82.694092, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.013672, 43.269206 ], [ -79.167480, 43.468868 ], [ -78.717041, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.322266, 44.816916 ], [ -74.871826, 45.003651 ], [ -71.510010, 45.011419 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.301514, 45.912944 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.450380 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.796631, 45.706179 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.334184 ], [ -70.499268, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.147114 ], [ -69.884033, 41.926803 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.333740, 40.979898 ], [ -72.246094, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.949463, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -73.992920, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.261256 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.011975 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.305121 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.855613 ], [ -48.262939, 60.860963 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.385277 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } ] } ] } @@ -546,15 +478,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.677231 ], [ -4.998779, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.431251 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.503662, 39.631077 ], [ -7.064209, 39.715638 ], [ -7.031250, 40.187267 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -8.690186, 25.878994 ], [ -11.964111, 25.938287 ], [ -11.942139, 23.372514 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.776182 ], [ -12.930908, 21.330315 ], [ -16.842041, 21.330315 ], [ -17.061768, 21.002471 ], [ -17.017822, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.694835 ], [ -12.502441, 24.766785 ], [ -12.030029, 26.027170 ], [ -11.722412, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.546875, 26.990619 ], [ -10.184326, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.800049, 27.117813 ], [ -8.822021, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.031250, 40.187267 ], [ -7.064209, 39.715638 ], [ -7.503662, 39.631077 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.376115 ], [ -7.031250, 38.074041 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.431251 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.052734, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.008789, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.880746 ], [ -14.688721, 13.635310 ], [ -14.381104, 13.624633 ], [ -14.051514, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.282227, 13.282719 ], [ -14.710693, 13.293411 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.282719 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.132979 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.402832, 13.859414 ], [ -15.084229, 13.880746 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.182788 ], [ -2.175293, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.505484 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.735762 ], [ -7.064209, 29.583012 ], [ -8.679199, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.822021, 27.654338 ], [ -8.800049, 27.117813 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.184326, 26.863281 ], [ -10.546875, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.722412, 26.106121 ], [ -12.030029, 26.027170 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.694835 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.644606 ], [ -12.623291, 28.042895 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.404053, 29.094577 ], [ -9.569092, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.305420, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.764343 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.464422 ], [ 0.878906, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -1.208496, 11.005904 ], [ -2.944336, 10.962764 ], [ -2.966309, 10.390572 ], [ -2.823486, 9.644077 ], [ -3.515625, 9.903921 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.817329 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.716788 ], [ -4.427490, 12.543840 ], [ -4.284668, 13.229251 ], [ -4.010010, 13.475106 ], [ -3.526611, 13.336175 ], [ -3.109131, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.197266, 14.243087 ], [ -1.999512, 14.562318 ], [ -1.065674, 14.976627 ], [ -0.516357, 15.114553 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.557617, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.447305 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.350734 ], [ -12.502441, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.820312, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -15.930176, 13.132979 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.282719 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.282227, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.051514, 13.795406 ], [ -14.381104, 13.624633 ], [ -14.688721, 13.635310 ], [ -15.084229, 13.880746 ], [ -15.402832, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.468506, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.372851 ], [ -15.139160, 16.583552 ], [ -14.578857, 16.594081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.790107 ], [ -4.921875, 24.976099 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.586198 ], [ -8.679199, 28.844674 ], [ -7.064209, 29.583012 ], [ -6.064453, 29.735762 ], [ -5.240479, 30.002517 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.892797 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.728167 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.259265 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.916013 ], [ -1.790771, 34.524661 ], [ -2.175293, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.506619 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.139160, 16.583552 ], [ -15.622559, 16.372851 ], [ -16.116943, 16.457159 ], [ -16.468506, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.097206 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.942139, 23.372514 ], [ -11.964111, 25.938287 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.464422 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.934170 ], [ 0.878906, 14.955399 ] ] ] } } ] } @@ -568,9 +500,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.128649 ], [ -7.360840, 54.597528 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.667478 ], [ -7.569580, 55.128649 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.009033, 41.787697 ], [ -7.426758, 41.795888 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -6.888428, 40.313043 ], [ -8.920898, 40.313043 ], [ -8.767090, 40.763901 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.972422 ], [ 0.878906, 42.722804 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.012224 ], [ -2.230225, 47.062638 ], [ -2.966309, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.647428 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.972422 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.009033, 41.787697 ], [ -7.426758, 41.795888 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.394043, 41.385052 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -6.888428, 40.313043 ], [ -8.920898, 40.313043 ], [ -8.767090, 40.763901 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } ] } ] } , @@ -602,61 +534,47 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.402588, -1.735574 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.434044 ], [ 12.315674, -4.609278 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.973861 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.491455, -2.394322 ], [ 12.579346, -1.944207 ], [ 13.106689, -2.427252 ], [ 13.996582, -2.471157 ], [ 14.304199, -1.999106 ], [ 14.425049, -1.329226 ], [ 14.315186, -0.549308 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.043945 ], [ 14.161377, 0.878872 ], [ 17.775879, 0.878872 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.878872 ], [ 43.857422, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.944781 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.010690 ], [ 30.421143, -1.131518 ], [ 29.816895, -1.439058 ], [ 29.575195, -1.340210 ], [ 29.586182, -0.582265 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.003662, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.425049, -1.329226 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.106689, -2.427252 ], [ 12.579346, -1.944207 ], [ 12.491455, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.941215 ], [ 13.458252, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.205322, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.951416, -17.790535 ], [ 21.379395, -17.926476 ], [ 23.214111, -17.518344 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.884659 ], [ 23.576660, -18.281518 ], [ 23.192139, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.830811, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.088473 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.403076, -23.855698 ], [ 14.381104, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 12.216797, -17.109293 ], [ 12.810059, -16.941215 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.003662, 0.878872 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.614776 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.693933 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.203369, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.741943, -7.917793 ], [ 21.730957, -7.286190 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.111795 ], [ 19.412842, -7.155400 ], [ 19.171143, -7.732765 ], [ 19.017334, -7.983078 ], [ 18.468018, -7.841615 ], [ 18.138428, -7.983078 ], [ 17.468262, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.370361, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.244128 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.402588, -1.735574 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.878872 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.880127, -2.086941 ], [ 40.638428, -2.504085 ], [ 40.264893, -2.569939 ], [ 40.122070, -3.283114 ], [ 39.803467, -3.677892 ], [ 39.605713, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.677892 ], [ 37.694092, -3.096636 ], [ 34.068604, -1.054628 ], [ 33.903809, -0.944781 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.453125, 0.878872 ], [ 40.989990, 0.878872 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.146708 ], [ 31.190186, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.673828, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.278076, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.748397 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.830811, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.753174, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.885010, -26.824071 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.114258, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.070068, -28.854296 ], [ 27.531738, -29.238477 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.103027, -30.543339 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.014893, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.601902 ], [ 45.000000, -25.423431 ], [ 44.044189, -24.986058 ], [ 43.758545, -24.457151 ], [ 43.692627, -23.574057 ], [ 43.341064, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.428955, -21.340548 ], [ 43.890381, -21.166484 ], [ 43.901367, -20.828010 ], [ 44.373779, -20.076570 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.044189, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.307861, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.505371, -15.971892 ], [ 45.878906, -15.792254 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.680664, 41.640078 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.360236 ], [ 0.000000, 21.790107 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.859727 ], [ 3.142090, 19.694314 ], [ 3.153076, 19.062118 ], [ 4.262695, 19.155547 ], [ 4.273682, 16.857120 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.373535, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -0.878906, 15.019075 ], [ -0.878906, 22.360236 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.934170 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.988770, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.629618 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.241455, 11.113727 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.027472 ], [ -0.439453, 11.102947 ], [ -0.758057, 10.941192 ], [ -0.878906, 10.951978 ], [ -0.878906, 15.019075 ], [ -0.516357, 15.114553 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 20.994873, 40.580585 ], [ 20.676270, 40.438586 ], [ 20.610352, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.698734 ], [ 19.962158, 39.918163 ], [ 19.401855, 40.254377 ], [ 19.313965, 40.730608 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.730225, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.701917 ] ] ], [ [ [ 26.466064, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.128491 ], [ 23.895264, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.620850, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.513788 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.466064, 41.640078 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.095215, 36.624345 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.425537, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.967951 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.514160, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.601807, 36.412442 ], [ 10.590820, 35.951330 ], [ 10.942383, 35.701917 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.334364 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.436768, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.953613, 31.372399 ], [ 10.052490, 30.958769 ], [ 9.964600, 30.543339 ], [ 9.481201, 30.306503 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.509762 ], [ 8.426514, 32.750323 ], [ 7.613525, 33.339707 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.651285 ], [ 8.371582, 35.478565 ], [ 8.217773, 36.430122 ], [ 8.415527, 36.949892 ], [ 9.514160, 37.352693 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.796510 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.756196 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.916992, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.666266 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 20.004322 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.139404, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.096619 ], [ 10.766602, 24.567108 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.711914, 26.509905 ], [ 9.624023, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.678955, 28.139816 ], [ 9.854736, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.964600, 30.543339 ], [ 10.052490, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.765537 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.139404, 22.492257 ], [ 14.853516, 22.867318 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.043491 ], [ 15.490723, 20.725291 ], [ 15.908203, 20.385825 ], [ 15.688477, 19.952696 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.535156, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.357554 ], [ 14.600830, 13.325485 ], [ 14.490967, 12.854649 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.479487 ], [ 13.996582, 12.458033 ], [ 13.315430, 13.560562 ], [ 13.084717, 13.592600 ], [ 12.304688, 13.036669 ], [ 11.524658, 13.325485 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.118408, 13.272026 ], [ 9.525146, 12.854649 ], [ 9.019775, 12.822514 ], [ 7.800293, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.822510, 13.111580 ], [ 6.448975, 13.496473 ], [ 5.438232, 13.870080 ], [ 4.372559, 13.752725 ], [ 4.108887, 13.528519 ], [ 3.966064, 12.951029 ], [ 3.680420, 12.554564 ], [ 3.614502, 11.662996 ], [ 2.845459, 12.232655 ], [ 2.493896, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.629618 ], [ 1.021729, 12.854649 ], [ 0.988770, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.934170 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.857120 ], [ 4.262695, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.569336, 21.565502 ], [ 11.997070, 23.473324 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.490967, 12.854649 ], [ 14.897461, 12.221918 ], [ 14.963379, 11.555380 ], [ 14.919434, 10.887254 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.622803, 9.925566 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.546583 ], [ 14.545898, 8.961045 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.413566 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.214943 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.357366 ], [ 8.492432, 4.499762 ], [ 8.503418, 4.773521 ], [ 8.756104, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.525146, 6.457234 ], [ 10.118408, 7.035476 ], [ 10.491943, 7.057282 ], [ 11.063232, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.309341 ], [ 12.755127, 8.722218 ], [ 12.952881, 9.416548 ], [ 13.172607, 9.644077 ], [ 13.304443, 10.163560 ], [ 13.568115, 10.800933 ], [ 14.414062, 11.576907 ], [ 14.468994, 11.899604 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.490967, 12.854649 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.499023, 31.587894 ], [ 27.454834, 31.325487 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.873940 ], [ 29.685059, 31.184609 ], [ 30.091553, 31.475524 ], [ 30.981445, 31.559815 ], [ 31.684570, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.222197 ], [ 34.925537, 29.496988 ], [ 34.639893, 29.104177 ], [ 34.431152, 28.343065 ], [ 34.156494, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.764377 ], [ 32.739258, 28.709861 ], [ 33.343506, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.475098, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.755182 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 22.004175 ], [ 25.004883, 22.004175 ], [ 25.004883, 29.238477 ], [ 24.697266, 30.040566 ], [ 24.960938, 30.666266 ], [ 24.807129, 31.090574 ], [ 25.169678, 31.569175 ], [ 26.499023, 31.587894 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.730225, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.697510, 35.701917 ] ] ], [ [ [ 26.466064, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.128491 ], [ 23.895264, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.620850, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.513788 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.413800 ], [ 22.774658, 37.309014 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.610352, 40.111689 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.466064, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.291260, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.651058 ], [ 22.500000, 12.264864 ], [ 22.510986, 11.684514 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.635334 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.896030 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.622803, 9.925566 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.919434, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.221918 ], [ 14.490967, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.357554 ], [ 13.952637, 13.998037 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.867318 ], [ 15.864258, 23.412847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.156006, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.747559, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.110107, 39.427707 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.387617 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.517822, 36.712467 ], [ 38.704834, 36.712467 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.261992 ], [ 36.145020, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.156006, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.111253 ], [ 31.695557, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.388184, 36.261992 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.212288 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.156006, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.466064, 41.640078 ], [ 28.114014, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.396729, 31.886887 ], [ 41.890869, 31.194008 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.110352, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.487308 ], [ 40.242920, 20.179724 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.583583 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.243896, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.062286 ], [ 34.782715, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.200123 ], [ 36.496582, 29.506549 ], [ 36.738281, 29.869229 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.512996 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.836090 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.487871 ], [ 41.737061, 13.923404 ], [ 42.593994, 13.004558 ], [ 43.077393, 12.704651 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.115267 ], [ 40.023193, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.518066, 14.509144 ], [ 37.902832, 14.955399 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.817371 ], [ 36.749268, 16.288506 ], [ 36.848145, 16.951724 ], [ 37.166748, 17.266728 ], [ 37.902832, 17.424029 ], [ 38.408203, 17.999632 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 22.004175 ], [ 37.188721, 21.022983 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.266728 ], [ 36.848145, 16.951724 ], [ 36.749268, 16.288506 ], [ 36.320801, 14.817371 ], [ 36.430664, 14.424040 ], [ 36.265869, 13.560562 ], [ 35.859375, 12.576010 ], [ 35.255127, 12.082296 ], [ 34.826660, 11.318481 ], [ 34.727783, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.958740, 9.579084 ], [ 33.958740, 9.459899 ], [ 33.826904, 9.481572 ], [ 33.837891, 9.979671 ], [ 33.717041, 10.325728 ], [ 33.211670, 10.725381 ], [ 33.090820, 11.436955 ], [ 33.211670, 12.178965 ], [ 32.739258, 12.243392 ], [ 32.673340, 12.028576 ], [ 32.069092, 11.974845 ], [ 32.310791, 11.684514 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.709057 ], [ 29.992676, 10.293301 ], [ 29.619141, 10.087854 ], [ 29.520264, 9.795678 ], [ 29.003906, 9.600750 ], [ 28.970947, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.828369, 9.600750 ], [ 27.114258, 9.633246 ], [ 26.751709, 9.470736 ], [ 26.477051, 9.557417 ], [ 25.960693, 10.131117 ], [ 25.795898, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.532471, 8.917634 ], [ 24.191895, 8.733077 ], [ 23.884277, 8.624472 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.389893, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.972412, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.684514 ], [ 22.500000, 12.264864 ], [ 22.291260, 12.651058 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.291260, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 20.004322 ], [ 25.004883, 20.004322 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.113014 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.724089 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.229218 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.330528 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.188870 ], [ 43.297119, 9.535749 ], [ 42.923584, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.930405 ], [ 43.143311, 11.458491 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.385010, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.413546 ], [ 45.000000, 17.424029 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.763396 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.806749 ], [ 42.604980, 15.209988 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.351768 ], [ 43.220215, 16.667769 ], [ 43.110352, 17.088291 ], [ 43.385010, 17.581194 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.834403 ], [ 13.282471, 1.318243 ], [ 14.029541, 1.395126 ], [ 14.271240, 1.197423 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.549308 ], [ 14.359131, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.145657 ], [ 27.048340, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.412137 ], [ 28.432617, 4.291636 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.948730, 4.171115 ], [ 30.838623, 3.513421 ], [ 30.772705, 2.339438 ], [ 31.179199, 2.207705 ], [ 30.849609, 1.845384 ], [ 30.465088, 1.581830 ], [ 30.091553, 1.065612 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.582265 ], [ 29.586182, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.746556 ], [ 18.094482, 2.361392 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.203986 ], [ 18.929443, 4.707828 ], [ 19.467773, 5.036227 ], [ 20.291748, 4.696879 ], [ 20.928955, 4.324501 ], [ 21.654053, 4.225900 ], [ 22.401123, 4.028659 ], [ 22.708740, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.302002, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.125732, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.342583 ], [ 35.815430, 4.773521 ], [ 36.156006, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.601142 ], [ 38.441162, 3.590178 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.770264, 4.258768 ], [ 41.176758, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.979004, 2.789425 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.011963, -0.878872 ], [ 33.903809, -0.878872 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.911267 ], [ 34.595947, 3.052754 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } ] } ] } , @@ -664,31 +582,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.778155 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 2.515869, 51.151786 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.668945, 49.532339 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.151786 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.710449, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.196009 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.568115, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.997070, 61.799093 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.315260 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 15.710449, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.146729, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.946813 ], [ 30.443115, 64.206377 ], [ 30.036621, 63.553446 ], [ 31.519775, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.505935 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.009086 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.146729, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.084961, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.898438, 55.782751 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.084298 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.472627 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.450861 ], [ 10.579834, 57.727619 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.009086 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.863770, 58.955674 ], [ 16.831055, 58.722599 ], [ 16.446533, 57.040730 ], [ 15.875244, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.095459, 55.410307 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.196009 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.668945, 49.532339 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.127622 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.507651 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.146770 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.849353 ], [ 5.987549, 51.849353 ], [ 6.152344, 50.805935 ], [ 5.603027, 51.034486 ], [ 4.976807, 51.474540 ], [ 4.042969, 51.268789 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.075439, 53.507651 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.304199, 51.117317 ], [ 14.567871, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.171875, 50.422519 ], [ 16.721191, 50.219095 ], [ 16.864014, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.644043, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.317961 ], [ 18.171387, 49.274973 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.249023, 49.037868 ], [ 14.897461, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.879167 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.972422 ], [ 12.238770, 50.268277 ], [ 12.963867, 50.485474 ], [ 13.337402, 50.736455 ], [ 14.051514, 50.923813 ], [ 14.304199, 51.117317 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.169678, 57.967331 ], [ 25.598145, 57.844751 ], [ 26.466064, 57.474497 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.850342, 56.758746 ], [ 28.179932, 56.170023 ], [ 27.103271, 55.782751 ], [ 26.499023, 55.615589 ], [ 25.532227, 56.102683 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.873291, 56.273861 ], [ 22.203369, 56.334812 ], [ 21.060791, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.577148, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.312988, 57.004850 ], [ 24.125977, 57.022794 ], [ 24.312744, 57.792089 ], [ 25.169678, 57.967331 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.102683 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.762939, 54.844990 ], [ 25.532227, 54.284469 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.752686, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.873291, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.146729, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.212402, 65.807279 ], [ 29.542236, 64.946813 ], [ 30.443115, 64.206377 ], [ 30.036621, 63.553446 ], [ 31.519775, 62.870179 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.505935 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.009086 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.146729, 66.861082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.556510 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.556510 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.381592, 46.769968 ], [ 13.809814, 46.505954 ], [ 13.699951, 46.019853 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.880295 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.623047, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.358544 ], [ 10.513916, 42.932296 ], [ 10.195312, 43.921637 ], [ 9.700928, 44.040219 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.771094 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.745605, 45.026950 ], [ 7.097168, 45.336702 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.821143 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.483265 ], [ 10.447998, 46.890232 ], [ 11.052246, 46.754917 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.290283, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 20.654297, 40.313043 ], [ 20.676270, 40.438586 ], [ 20.994873, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.763916, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.342285, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.747559, 40.738933 ], [ 43.670654, 40.313043 ], [ 27.158203, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.463666 ], [ 29.102783, 40.979898 ], [ 29.234619, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.290283, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 43.670654, 40.313043 ], [ 43.747559, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.967041, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.556510 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.660839 ], [ 36.672363, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.144287, 47.047669 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.891357, 48.231991 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.310799 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.387207, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.241256 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.300049, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.299805, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.084656 ], [ 30.871582, 55.553495 ], [ 29.893799, 55.788929 ], [ 29.366455, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.850342, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.135986, 59.299552 ], [ 27.982178, 59.472989 ], [ 29.113770, 60.026441 ], [ 28.070068, 60.505935 ], [ 30.212402, 61.778319 ], [ 31.135254, 62.359805 ], [ 31.519775, 62.870179 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.206377 ], [ 29.542236, 64.946813 ], [ 30.212402, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.146729, 66.861082 ], [ 41.121826, 66.861082 ], [ 41.121826, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.901653 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.759521, 65.494741 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.416748 ], [ 43.945312, 66.067090 ], [ 44.329834, 66.513260 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.752686, 54.857640 ], [ 22.653809, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } ] } ] } , @@ -696,10 +610,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.184211 ], [ 31.289062, 70.455184 ], [ 30.003662, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.158650 ], [ 28.597412, 69.064638 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.162746 ], [ 26.180420, 69.824471 ], [ 25.686035, 69.092100 ], [ 24.730225, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.357178, 68.843700 ], [ 21.247559, 69.368703 ], [ 20.643311, 69.107777 ], [ 20.028076, 69.064638 ], [ 19.874268, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.011685 ], [ 16.765137, 68.015798 ], [ 15.391846, 66.513260 ], [ 15.073242, 66.160511 ], [ 12.700195, 66.160511 ], [ 13.128662, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ], [ 23.027344, 70.203715 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.984770 ], [ 28.168945, 71.184211 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.621338, 79.171335 ], [ 21.544189, 78.956665 ], [ 19.028320, 78.562667 ], [ 18.468018, 77.825640 ], [ 17.589111, 77.638894 ], [ 17.116699, 76.808262 ], [ 15.908203, 76.770602 ], [ 13.765869, 77.379906 ], [ 14.666748, 77.734951 ], [ 13.172607, 78.025574 ], [ 11.217041, 78.870048 ], [ 10.931396, 79.171335 ], [ 10.766602, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.884521, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.719238, 77.853412 ], [ 22.489014, 77.444552 ], [ 20.731201, 77.676467 ], [ 21.412354, 77.934055 ], [ 20.808105, 78.253624 ], [ 22.884521, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.162746 ], [ 29.014893, 69.767557 ], [ 28.597412, 69.064638 ], [ 28.443604, 68.362750 ], [ 29.981689, 67.696941 ], [ 29.058838, 66.942972 ], [ 29.498291, 66.513260 ], [ 29.860840, 66.160511 ], [ 23.774414, 66.160511 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.543701, 67.937524 ], [ 21.983643, 68.616534 ], [ 20.643311, 69.107777 ], [ 21.247559, 69.368703 ], [ 22.357178, 68.843700 ], [ 23.664551, 68.891231 ], [ 24.730225, 68.648556 ], [ 25.686035, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.729492, 70.162746 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.107777 ], [ 21.983643, 68.616534 ], [ 23.543701, 67.937524 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.774414, 66.160511 ], [ 15.073242, 66.160511 ], [ 15.391846, 66.513260 ], [ 16.105957, 67.301737 ], [ 16.765137, 68.015798 ], [ 17.731934, 68.011685 ], [ 17.995605, 68.568414 ], [ 19.874268, 68.407268 ], [ 20.028076, 69.064638 ], [ 20.643311, 69.107777 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.162746 ], [ 29.014893, 69.767557 ], [ 28.597412, 69.064638 ], [ 28.443604, 68.362750 ], [ 29.981689, 67.696941 ], [ 29.058838, 66.942972 ], [ 29.498291, 66.513260 ], [ 29.860840, 66.160511 ], [ 23.774414, 66.160511 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.543701, 67.937524 ], [ 21.983643, 68.616534 ], [ 20.643311, 69.107777 ], [ 21.247559, 69.368703 ], [ 22.357178, 68.843700 ], [ 23.664551, 68.891231 ], [ 24.730225, 68.648556 ], [ 25.686035, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.729492, 70.162746 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.452393, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.244385, 66.160511 ], [ 29.860840, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.058838, 66.942972 ], [ 29.981689, 67.696941 ], [ 28.443604, 68.362750 ], [ 28.597412, 69.064638 ], [ 29.399414, 69.158650 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.518555, 69.064638 ], [ 40.286865, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.121826, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.364014, 66.160511 ], [ 37.452393, 66.160511 ] ] ], [ [ [ 41.330566, 66.160511 ], [ 42.088623, 66.478208 ], [ 43.011475, 66.416748 ], [ 43.703613, 66.160511 ], [ 41.330566, 66.160511 ] ] ], [ [ [ 44.022217, 66.160511 ], [ 44.329834, 66.513260 ], [ 44.527588, 66.757250 ], [ 43.703613, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.572428 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.596662 ], [ 45.560303, 67.567334 ], [ 45.560303, 67.011719 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ] ] ] ] } } ] } ] } @@ -726,9 +640,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.939209, -48.625647 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.066668 ], [ 70.565186, -49.253465 ], [ 70.279541, -49.710273 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.939209, -48.625647 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.816282 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.161865, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 57.733154, -66.861082 ], [ 50.756836, -66.861082 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.613525, -66.053716 ], [ 53.613281, -65.897167 ], [ 54.536133, -65.816282 ] ] ], [ [ [ 87.484131, -66.861082 ], [ 87.758789, -66.513260 ], [ 87.989502, -66.209308 ], [ 88.385010, -66.513260 ], [ 88.736572, -66.861082 ], [ 87.484131, -66.861082 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "French Southern and Antarctic Lands", "adm0_a3": "ATF", "geou_dif": 0, "geounit": "French Southern and Antarctic Lands", "gu_a3": "ATF", "su_dif": 0, "subunit": "French Southern and Antarctic Lands", "su_a3": "ATF", "brk_diff": 0, "name": "Fr. S. Antarctic Lands", "name_long": "French Southern and Antarctic Lands", "brk_a3": "ATF", "brk_name": "Fr. S. and Antarctic Lands", "abbrev": "Fr. S.A.L.", "postal": "TF", "formal_en": "Territory of the French Southern and Antarctic Lands", "note_adm0": "Fr.", "name_sort": "French Southern and Antarctic Lands", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 140, "gdp_md_est": 16, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TF", "iso_a3": "ATF", "iso_n3": "260", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATF", "adm0_a3_us": "ATF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Seven seas (open ocean)", "region_un": "Seven seas (open ocean)", "subregion": "Seven seas (open ocean)", "region_wb": "Sub-Saharan Africa", "name_len": 22, "long_len": 35, "abbrev_len": 10, "tiny": 2, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.939209, -48.625647 ], [ 69.576416, -48.936935 ], [ 70.521240, -49.066668 ], [ 70.565186, -49.253465 ], [ 70.279541, -49.710273 ], [ 68.741455, -49.774170 ], [ 68.719482, -49.239121 ], [ 68.939209, -48.625647 ] ] ] } } ] } ] } , @@ -744,27 +658,27 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.436193 ], [ 44.121094, 40.094882 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ] ] ], [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 44.296875, 37.002553 ], [ 44.121094, 37.125286 ], [ 44.121094, 39.385264 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.615234, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 44.121094, 40.094882 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.244772 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.328857, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.328857, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.161756 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.555576 ], [ 48.812256, 27.693256 ], [ 49.295654, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.108643, 25.948166 ], [ 50.240479, 25.611810 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 22.004175 ], [ 54.997559, 20.004322 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.287709 ], [ 46.362305, 17.235252 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.424029 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.817139, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.554443, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.053318 ], [ 48.856201, 38.814031 ], [ 48.878174, 38.324420 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.350830, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.680664, 39.512517 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.328857, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.680664, 39.512517 ], [ 48.065186, 39.580290 ], [ 48.350830, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.878174, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.378888 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.396346 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.798340, 34.406910 ], [ 60.523682, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.776123, 30.732393 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.776123, 28.700225 ], [ 62.731934, 28.256006 ], [ 62.753906, 27.381523 ], [ 63.237305, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.244156 ], [ 61.501465, 25.075648 ], [ 59.611816, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.147145 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.010254, 30.448674 ], [ 47.999268, 30.987028 ], [ 47.680664, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.472695 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.944092, 11.415418 ], [ 48.933105, 10.984335 ], [ 48.933105, 9.449062 ], [ 48.482666, 8.841651 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.415418 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.369385, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.978845 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.309014 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.396346 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.909534 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.160476 ], [ 67.829590, 37.142803 ], [ 67.071533, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.978845 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.369385, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.424029 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.235252 ], [ 46.746826, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.468297 ], [ 83.902588, 29.324720 ], [ 84.232178, 28.844674 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.207609 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.814266 ], [ 88.055420, 26.411551 ], [ 87.231445, 26.401711 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.554443, 40.103286 ], [ 69.466553, 39.529467 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.422526 ], [ 73.948975, 37.422526 ], [ 73.256836, 37.492294 ], [ 72.641602, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.839600, 36.738884 ], [ 71.444092, 37.063944 ], [ 71.542969, 37.909534 ], [ 71.235352, 37.952861 ], [ 71.345215, 38.255436 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.134557 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.605528 ], [ 69.191895, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.160476 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.697754, 39.580290 ], [ 68.532715, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.496456 ], [ 78.914795, 34.325292 ], [ 78.815918, 33.504759 ], [ 79.211426, 32.990236 ], [ 79.178467, 32.481963 ], [ 78.453369, 32.620870 ], [ 78.739014, 31.512996 ], [ 79.716797, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.726222 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.420391 ], [ 82.001953, 27.926474 ], [ 83.309326, 27.362011 ], [ 84.671631, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.627818 ], [ 87.231445, 26.401711 ], [ 88.055420, 26.411551 ], [ 88.176270, 26.814266 ], [ 88.044434, 27.449790 ], [ 88.121338, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.098254 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 90.878906, 26.833875 ], [ 90.878906, 25.135339 ], [ 90.000000, 25.254633 ], [ 89.923096, 25.274504 ], [ 89.835205, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.450902 ], [ 88.209229, 25.770214 ], [ 88.934326, 25.234758 ], [ 88.308105, 24.866503 ], [ 88.088379, 24.497146 ], [ 88.703613, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.698265 ], [ 86.978760, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.495361, 20.148785 ], [ 85.056152, 19.476950 ], [ 83.935547, 18.302381 ], [ 83.188477, 17.675428 ], [ 82.188721, 17.014768 ], [ 82.188721, 16.551962 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.321045, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.859619, 12.060809 ], [ 79.859619, 10.358151 ], [ 79.343262, 10.304110 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.221405 ], [ 78.277588, 8.928487 ], [ 77.937012, 8.254983 ], [ 77.541504, 7.961317 ], [ 76.596680, 8.895926 ], [ 76.135254, 10.304110 ], [ 75.750732, 11.307708 ], [ 75.399170, 11.781325 ], [ 74.860840, 12.736801 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.125000, 17.926476 ], [ 72.817383, 19.207429 ], [ 72.828369, 20.416717 ], [ 72.630615, 21.361013 ], [ 71.180420, 20.756114 ], [ 70.466309, 20.879343 ], [ 69.158936, 22.085640 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.847071 ], [ 68.181152, 23.694835 ], [ 68.840332, 24.357105 ], [ 71.048584, 24.357105 ], [ 70.839844, 25.214881 ], [ 70.279541, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.510498, 26.941660 ], [ 70.620117, 27.984700 ], [ 71.773682, 27.916767 ], [ 72.828369, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.410400, 31.690782 ], [ 75.256348, 32.268555 ], [ 74.454346, 32.768800 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.245605, 34.750640 ], [ 75.761719, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.496456 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.328857, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.328857, 41.640078 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.294707 ], [ 90.725098, 28.062286 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.833875 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.303452 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.010986, 28.294707 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.303452 ], [ 88.725586, 28.091366 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.844674 ], [ 83.902588, 29.324720 ], [ 83.342285, 29.468297 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.453369, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.817139, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } ] } , @@ -772,19 +686,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 46.406250, 41.861379 ], [ 46.142578, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 42.601620 ], [ 44.538574, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.967041, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.244772 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.468124 ], [ 87.747803, 49.296472 ], [ 87.363281, 49.217597 ], [ 86.824951, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.519775, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.421631, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.861816, 55.172594 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.664171 ], [ 61.699219, 52.981723 ], [ 60.743408, 52.722986 ], [ 60.930176, 52.449314 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.548344 ], [ 58.359375, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.711670, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.558860 ], [ 49.097900, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.644768 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 44.121094, 42.601620 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.666036 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.787580 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.301196 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.964463 ], [ 79.145508, 42.859860 ], [ 79.639893, 42.496403 ], [ 80.255127, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 71.257324, 42.171546 ], [ 70.960693, 42.269179 ], [ 71.191406, 42.706660 ], [ 71.839600, 42.843751 ], [ 73.487549, 42.504503 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.172594 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.519775, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.111084, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.824951, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.594238, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.715332, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.255127, 42.350425 ], [ 79.639893, 42.496403 ], [ 79.145508, 42.859860 ], [ 77.662354, 42.964463 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.504503 ], [ 71.839600, 42.843751 ], [ 71.191406, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.672306 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.708984, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.093750, 42.996612 ], [ 64.896240, 43.731414 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.074707, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.447781 ], [ 52.503662, 42.795401 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.273193, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.163086, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.807580 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.746711 ], [ 47.318115, 47.717154 ], [ 46.461182, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.746826, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.711670, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.548344 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.722986 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.603892 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.680908, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.812267 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.614258, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.755080 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.955011 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.755080 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.017822, 43.500752 ], [ 63.182373, 43.651975 ], [ 64.896240, 43.731414 ], [ 66.093750, 42.996612 ], [ 66.027832, 41.992160 ], [ 66.511230, 41.983994 ], [ 66.708984, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.672306 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.171546 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.070312, 40.313043 ], [ 70.554199, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.125977, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.755080 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.583290 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.554199, 40.313043 ], [ 69.125977, 40.313043 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.014799 ], [ 88.802490, 49.468124 ], [ 87.747803, 49.296472 ], [ 87.363281, 49.217597 ], [ 86.824951, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.111084, 50.120578 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.519775, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.421631, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.861816, 55.172594 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.603892 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.664171 ], [ 61.699219, 52.981723 ], [ 60.743408, 52.722986 ], [ 60.930176, 52.449314 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.548344 ], [ 58.359375, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.711670, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.457504 ], [ 46.746826, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.461182, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.054199, 47.746711 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.558860 ], [ 49.097900, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.644768 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.581543, 41.812267 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.680908, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 44.121094, 42.601620 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.666036 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.787580 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.611715 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.611715 ] ] ], [ [ [ 90.878906, 46.995241 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.070738 ], [ 88.011475, 48.596592 ], [ 87.747803, 49.296472 ], [ 88.802490, 49.468124 ], [ 90.000000, 50.014799 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ], [ 90.878906, 46.995241 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.255127, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.715332, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } ] } ] } , @@ -824,29 +738,27 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.431152, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.286465 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.421143, -9.665738 ], [ 120.772705, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.091862 ], [ 118.256836, -8.363693 ], [ 118.883057, -8.276727 ], [ 119.124756, -8.700499 ], [ 117.279053, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.091862 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.646196 ], [ 121.256104, -8.928487 ], [ 119.926758, -8.809082 ], [ 119.915771, -8.439772 ], [ 120.717773, -8.233237 ], [ 121.343994, -8.537565 ], [ 122.003174, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.259521, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.591218 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.554932, -8.374562 ], [ 111.522217, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.351571 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.762207, 0.878872 ], [ 117.806396, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.482989 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.491489 ], [ 113.752441, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.697998, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.566650, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.769020 ], [ 110.852051, 0.878872 ], [ 118.762207, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.007568, -1.054628 ], [ 104.370117, -1.087581 ], [ 104.534912, -1.779499 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.853271, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.864746, -5.036227 ], [ 102.579346, -4.214943 ], [ 102.150879, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.898438, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.036621, -0.516350 ], [ 120.937500, -1.406109 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.255615, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.900286 ], [ 122.453613, -3.184394 ], [ 122.266846, -3.524387 ], [ 123.167725, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.970459, -2.624814 ], [ 120.300293, -2.932069 ], [ 120.388184, -4.094411 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.670651 ], [ 119.366455, -5.375398 ], [ 119.652100, -4.455951 ], [ 119.498291, -3.491489 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.141835 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.388184, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.659668, -3.535352 ], [ 133.363037, -4.028659 ], [ 132.978516, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.692627, -2.218684 ], [ 132.231445, -2.207705 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.428075 ], [ 130.517578, -0.933797 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.853293 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.594971, -3.425692 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.375244, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.870117, -3.787522 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.173425 ], [ 127.001953, -3.129546 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "East Timor", "sov_a3": "TLS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "East Timor", "adm0_a3": "TLS", "geou_dif": 0, "geounit": "East Timor", "gu_a3": "TLS", "su_dif": 0, "subunit": "East Timor", "su_a3": "TLS", "brk_diff": 0, "name": "Timor-Leste", "name_long": "Timor-Leste", "brk_a3": "TLS", "brk_name": "Timor-Leste", "abbrev": "T.L.", "postal": "TL", "formal_en": "Democratic Republic of Timor-Leste", "name_sort": "Timor-Leste", "name_alt": "East Timor", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1131612, "gdp_md_est": 2520, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "TL", "iso_a3": "TLS", "iso_n3": "626", "un_a3": "626", "wb_a2": "TP", "wb_a3": "TMP", "woe_id": -99, "adm0_a3_is": "TLS", "adm0_a3_us": "TLS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.895926 ], [ 125.090332, -8.657057 ], [ 125.947266, -8.428904 ], [ 126.639404, -8.396300 ], [ 126.958008, -8.276727 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.352295, -11.124507 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.395752, -12.039321 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.103781 ], [ 135.296631, -12.243392 ], [ 135.878906, -11.964097 ], [ 135.878906, -14.061988 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.711135 ], [ 135.505371, -14.997852 ], [ 135.878906, -15.262989 ], [ 135.878906, -34.831841 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.952474 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.220308 ], [ 134.088135, -32.851903 ], [ 134.274902, -32.620870 ], [ 132.989502, -32.008076 ], [ 132.286377, -31.980123 ], [ 131.330566, -31.494262 ], [ 129.539795, -31.587894 ], [ 128.243408, -31.952162 ], [ 127.100830, -32.277845 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.222412, -32.962586 ], [ 124.024658, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.816162, -33.916013 ], [ 122.178955, -34.007135 ], [ 121.300049, -33.824794 ], [ 120.574951, -33.934245 ], [ 119.893799, -33.979809 ], [ 119.300537, -34.506557 ], [ 119.003906, -34.461277 ], [ 118.509521, -34.750640 ], [ 118.026123, -35.065973 ], [ 117.290039, -35.021000 ], [ 116.619873, -35.021000 ], [ 115.565186, -34.388779 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.623768 ], [ 115.543213, -33.486435 ], [ 115.718994, -33.257063 ], [ 115.675049, -32.898038 ], [ 115.806885, -32.203505 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 114.993896, -30.031055 ], [ 115.037842, -29.458731 ], [ 114.642334, -28.806174 ], [ 114.620361, -28.516969 ], [ 114.169922, -28.120439 ], [ 114.049072, -27.332735 ], [ 113.477783, -26.539394 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.939209, -25.908644 ], [ 114.235840, -26.303264 ], [ 114.213867, -25.790000 ], [ 113.719482, -24.996016 ], [ 113.620605, -24.686952 ], [ 113.389893, -24.387127 ], [ 113.499756, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.741455, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.224854, -22.512557 ], [ 114.642334, -21.830907 ], [ 115.455322, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.707764, -20.704739 ], [ 117.169189, -20.622502 ], [ 117.443848, -20.745840 ], [ 118.234863, -20.375527 ], [ 118.839111, -20.262197 ], [ 118.992920, -20.045611 ], [ 119.256592, -19.952696 ], [ 119.805908, -19.973349 ], [ 120.860596, -19.683970 ], [ 121.398926, -19.238550 ], [ 121.651611, -18.708692 ], [ 122.244873, -18.198044 ], [ 122.288818, -17.800996 ], [ 122.310791, -17.256236 ], [ 123.013916, -16.404470 ], [ 123.431396, -17.266728 ], [ 123.859863, -17.067287 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.330683 ], [ 124.376221, -15.570128 ], [ 124.925537, -15.072124 ], [ 125.167236, -14.679254 ], [ 125.672607, -14.509144 ], [ 125.683594, -14.232438 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.803955, -14.275030 ], [ 128.364258, -14.870469 ], [ 128.990479, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.407959, -14.424040 ], [ 129.891357, -13.613956 ], [ 130.341797, -13.357554 ], [ 130.187988, -13.111580 ], [ 130.616455, -12.533115 ], [ 131.220703, -12.178965 ], [ 131.737061, -12.307802 ], [ 132.572021, -12.114523 ], [ 132.561035, -11.598432 ], [ 131.824951, -11.275387 ], [ 132.352295, -11.124507 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.694314 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.362976 ], [ 109.116211, 19.818390 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.104191 ], [ 125.925293, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.266357, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.135010, 39.172659 ], [ 121.058350, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.597271 ], [ 119.641113, 39.901309 ], [ 119.025879, 39.249271 ], [ 118.048096, 39.206719 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.883057, 37.900865 ], [ 118.916016, 37.448697 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.866181 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.640869, 36.111253 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.234131, 32.463426 ], [ 121.904297, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.399170, 27.049342 ], [ 119.586182, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.894775, 22.786311 ], [ 114.763184, 22.664710 ], [ 114.147949, 22.228090 ], [ 113.807373, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.401934 ], [ 110.445557, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.632568, 21.012727 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.050537, 21.555284 ], [ 107.039795, 21.810508 ], [ 106.567383, 22.217920 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.711182, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.656494, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.271973, 21.197216 ], [ 101.184082, 21.432617 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.555284 ], [ 99.986572, 21.739091 ], [ 99.239502, 22.116177 ], [ 99.536133, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.250732, 27.751608 ], [ 97.910156, 28.333395 ], [ 97.327881, 28.265682 ], [ 96.251221, 28.410728 ], [ 96.591797, 28.835050 ], [ 96.119385, 29.449165 ], [ 95.405273, 29.027355 ], [ 94.570312, 29.276816 ], [ 93.416748, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.691895, 27.771051 ], [ 91.263428, 28.042895 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.644606 ], [ 89.121094, 41.640078 ], [ 104.908447, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.062256, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.449165 ], [ 96.591797, 28.835050 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.265682 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.702984 ], [ 97.130127, 27.088473 ], [ 96.416016, 27.264396 ], [ 95.119629, 26.568877 ], [ 95.152588, 25.997550 ], [ 94.603271, 25.165173 ], [ 94.548340, 24.676970 ], [ 94.108887, 23.855698 ], [ 93.328857, 24.076559 ], [ 93.284912, 23.039298 ], [ 93.065186, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.624395 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.153564, 23.503552 ], [ 91.472168, 24.076559 ], [ 91.911621, 24.126702 ], [ 92.373047, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.867920, 25.135339 ], [ 90.000000, 25.254633 ], [ 89.923096, 25.274504 ], [ 89.835205, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.980829 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 91.219482, 26.804461 ], [ 92.032471, 26.833875 ], [ 92.098389, 27.449790 ], [ 91.691895, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.642389 ], [ 94.570312, 29.276816 ], [ 95.405273, 29.027355 ], [ 96.119385, 29.449165 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.062256, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.908447, 41.640078 ], [ 105.062256, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.010986, 28.294707 ], [ 90.725098, 28.062286 ], [ 91.263428, 28.042895 ], [ 91.691895, 27.771051 ], [ 92.098389, 27.449790 ], [ 92.032471, 26.833875 ], [ 91.219482, 26.804461 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 89.121094, 26.980829 ], [ 89.121094, 27.644606 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.010986, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.461802 ], [ 102.755127, 21.677848 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.820557, 19.890723 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.572951 ], [ 106.040039, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.446622 ], [ 104.721680, 17.424029 ], [ 103.952637, 18.239786 ], [ 103.205566, 18.312811 ], [ 102.996826, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.117920, 18.104087 ], [ 101.063232, 17.507867 ], [ 101.041260, 18.406655 ], [ 101.282959, 19.466592 ], [ 100.601807, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.694314 ], [ 110.566406, 19.259294 ], [ 110.335693, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.621826, 19.362976 ], [ 109.116211, 19.818390 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.104191 ], [ 125.925293, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.266357, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.135010, 39.172659 ], [ 121.058350, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.597271 ], [ 119.641113, 39.901309 ], [ 119.025879, 39.249271 ], [ 118.048096, 39.206719 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.883057, 37.900865 ], [ 118.916016, 37.448697 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.866181 ], [ 121.706543, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.640869, 36.111253 ], [ 119.663086, 35.612651 ], [ 119.146729, 34.912962 ], [ 120.223389, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.234131, 32.463426 ], [ 121.904297, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.139816 ], [ 120.399170, 27.049342 ], [ 119.586182, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.894775, 22.786311 ], [ 114.763184, 22.664710 ], [ 114.147949, 22.228090 ], [ 113.807373, 22.553147 ], [ 113.236084, 22.055096 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.401934 ], [ 110.445557, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.632568, 21.012727 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.050537, 21.555284 ], [ 107.039795, 21.810508 ], [ 106.567383, 22.217920 ], [ 106.721191, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.711182, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.656494, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.271973, 21.197216 ], [ 101.184082, 21.432617 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.555284 ], [ 99.986572, 21.739091 ], [ 99.239502, 22.116177 ], [ 99.536133, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.250732, 27.751608 ], [ 97.910156, 28.333395 ], [ 97.327881, 28.265682 ], [ 96.251221, 28.410728 ], [ 96.591797, 28.835050 ], [ 96.119385, 29.449165 ], [ 95.405273, 29.027355 ], [ 94.570312, 29.276816 ], [ 93.416748, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.691895, 27.771051 ], [ 91.263428, 28.042895 ], [ 90.725098, 28.062286 ], [ 90.010986, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.644606 ], [ 89.121094, 41.640078 ], [ 104.908447, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.062256, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.611084, 13.539201 ], [ 107.490234, 12.340002 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.205078, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.216064, 14.275030 ], [ 106.040039, 13.880746 ], [ 106.501465, 14.572951 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.333395 ], [ 98.250732, 27.751608 ], [ 98.679199, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.668213, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.547119, 20.190035 ], [ 98.964844, 19.756364 ], [ 98.250732, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.371826, 18.448347 ], [ 97.855225, 17.570721 ], [ 98.492432, 16.836090 ], [ 98.898926, 16.183024 ], [ 98.536377, 15.305380 ], [ 98.195801, 15.125159 ], [ 98.426514, 14.626109 ], [ 99.096680, 13.827412 ], [ 99.206543, 13.272026 ], [ 99.195557, 12.801088 ], [ 99.591064, 11.888853 ], [ 99.041748, 10.962764 ], [ 98.558350, 9.936388 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.718239 ], [ 94.812012, 15.802825 ], [ 94.185791, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.362976 ], [ 93.658447, 19.725342 ], [ 93.076172, 19.859727 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.647705, 21.320081 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.065186, 22.705255 ], [ 93.284912, 23.039298 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.855698 ], [ 94.548340, 24.676970 ], [ 94.603271, 25.165173 ], [ 95.152588, 25.997550 ], [ 95.119629, 26.568877 ], [ 96.416016, 27.264396 ], [ 97.130127, 27.088473 ], [ 97.053223, 27.702984 ], [ 97.404785, 27.877928 ], [ 97.327881, 28.265682 ], [ 97.910156, 28.333395 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.497803, 25.294371 ], [ 121.948242, 24.996016 ], [ 121.772461, 24.397133 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.973614 ], [ 120.223389, 22.816694 ], [ 120.102539, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.455322, 5.451959 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.904887 ], [ 115.455322, 5.451959 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.704590, 41.640078 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.488737 ], [ 128.627930, 40.187267 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.353271, 38.608286 ], [ 128.210449, 38.367502 ], [ 127.781982, 38.307181 ], [ 127.067871, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.232910, 37.840157 ], [ 126.177979, 37.753344 ], [ 125.694580, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.952861 ], [ 124.716797, 38.108628 ], [ 124.991455, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.572240 ], [ 125.925293, 40.979898 ], [ 126.177979, 41.104191 ], [ 126.694336, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.155518, 41.640078 ], [ 129.704590, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.826416, 7.297088 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.607178, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.460518 ], [ 122.080078, 6.904614 ], [ 121.915283, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.244110 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.332764, 18.229351 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.267414 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.178467, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.275030 ], [ 120.992432, 14.530415 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.915771, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.049038 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.299316, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.282491 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.887254 ], [ 123.497314, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.169189, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.587669 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.444598 ], [ 121.970215, 10.908830 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.871247 ], [ 135.878906, 33.532237 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.379713 ], [ 132.154541, 33.906896 ], [ 130.989990, 33.888658 ], [ 132.000732, 33.146750 ], [ 131.330566, 31.447410 ], [ 130.682373, 31.034108 ], [ 130.198975, 31.419288 ], [ 130.451660, 32.314991 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.879883, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.681152, 35.523285 ], [ 135.878906, 35.871247 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.637451, 34.152727 ], [ 134.769287, 33.806538 ], [ 134.197998, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.275146, 33.293804 ], [ 133.011475, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.468108 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.361576 ] ] ] ] } } , @@ -858,10 +770,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.203953 ], [ 135.120850, 54.730964 ], [ 135.878906, 54.667478 ], [ 135.878906, 44.300264 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.901611, 42.795401 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.391009 ], [ 130.638428, 42.900113 ], [ 131.143799, 42.932296 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.118942 ], [ 134.110107, 47.212106 ], [ 134.505615, 47.576526 ], [ 135.000000, 48.436490 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.506104, 47.791016 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.727209 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.759978 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.351201 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.796119 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.244873, 53.429174 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.756243 ], [ 120.728760, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.645294 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.887557 ], [ 115.488281, 49.802541 ], [ 114.960938, 50.141706 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.546598 ], [ 111.577148, 49.375220 ], [ 110.665283, 49.131408 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.885986, 50.275299 ], [ 105.886230, 50.408518 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.887451, 51.515580 ], [ 99.986572, 51.631657 ], [ 98.865967, 52.045734 ], [ 97.822266, 51.013755 ], [ 98.228760, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.979488 ], [ 94.812012, 50.014799 ], [ 94.152832, 50.478483 ], [ 93.109131, 50.492463 ], [ 92.230225, 50.798991 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.014799 ], [ 89.121094, 49.610710 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.796119 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.351201 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.727209 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.374023, 48.180739 ], [ 135.000000, 48.472921 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.505615, 47.576526 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.118942 ], [ 133.099365, 45.143305 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.932296 ], [ 130.638428, 42.900113 ], [ 130.638428, 42.391009 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.423457 ], [ 128.056641, 41.992160 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 126.870117, 41.820455 ], [ 126.177979, 41.104191 ], [ 125.925293, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.597271 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.997274 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.282617 ], [ 92.131348, 45.112300 ], [ 93.482666, 44.972571 ], [ 94.691162, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.767822, 43.317185 ], [ 96.350098, 42.722804 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.512602 ], [ 103.315430, 41.910453 ], [ 104.523926, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.130821 ], [ 107.742920, 42.480200 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.867912 ], [ 111.126709, 43.405047 ], [ 111.829834, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.104546 ], [ 112.434082, 45.011419 ], [ 113.466797, 44.809122 ], [ 114.455566, 45.336702 ], [ 115.982666, 45.729191 ], [ 116.718750, 46.384833 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.047669 ], [ 118.861084, 47.746711 ], [ 118.059082, 48.063397 ], [ 117.290039, 47.694974 ], [ 116.312256, 47.850031 ], [ 115.740967, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.131408 ], [ 116.674805, 49.887557 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.739746, 51.964577 ], [ 120.728760, 52.516221 ], [ 120.179443, 52.756243 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.429174 ], [ 123.574219, 53.461890 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.865967, 52.045734 ], [ 99.986572, 51.631657 ], [ 100.887451, 51.515580 ], [ 102.062988, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.677979, 50.092393 ], [ 104.622803, 50.275299 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.479004, 49.282140 ], [ 109.401855, 49.296472 ], [ 110.665283, 49.131408 ], [ 111.577148, 49.375220 ], [ 112.895508, 49.546598 ], [ 114.367676, 50.247205 ], [ 114.960938, 50.141706 ], [ 115.488281, 49.802541 ], [ 116.674805, 49.887557 ], [ 116.191406, 49.131408 ], [ 115.488281, 48.136767 ], [ 115.740967, 47.724545 ], [ 116.312256, 47.850031 ], [ 117.290039, 47.694974 ], [ 118.059082, 48.063397 ], [ 118.861084, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.384833 ], [ 115.982666, 45.729191 ], [ 114.455566, 45.336702 ], [ 113.466797, 44.809122 ], [ 112.434082, 45.011419 ], [ 111.873779, 45.104546 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.739352 ], [ 111.126709, 43.405047 ], [ 110.412598, 42.867912 ], [ 109.248047, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.130821 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.910453 ], [ 103.315430, 41.910453 ], [ 101.832275, 42.512602 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.520700 ], [ 97.448730, 42.747012 ], [ 96.350098, 42.722804 ], [ 95.767822, 43.317185 ], [ 95.306396, 44.245199 ], [ 94.691162, 44.355278 ], [ 93.482666, 44.972571 ], [ 92.131348, 45.112300 ], [ 90.944824, 45.282617 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.121094, 47.997274 ], [ 89.121094, 49.610710 ], [ 90.000000, 50.014799 ], [ 90.714111, 50.331436 ], [ 92.230225, 50.798991 ], [ 93.109131, 50.492463 ], [ 94.152832, 50.478483 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.261963, 49.724479 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.013755 ], [ 98.865967, 52.045734 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.796119 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.351201 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.727209 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.374023, 48.180739 ], [ 135.000000, 48.472921 ], [ 135.021973, 48.480204 ], [ 135.000000, 48.436490 ], [ 134.505615, 47.576526 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.118942 ], [ 133.099365, 45.143305 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.932296 ], [ 130.638428, 42.900113 ], [ 130.638428, 42.391009 ], [ 129.990234, 42.988576 ], [ 129.594727, 42.423457 ], [ 128.056641, 41.992160 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 126.870117, 41.820455 ], [ 126.177979, 41.104191 ], [ 125.925293, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.597271 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.997274 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.282617 ], [ 92.131348, 45.112300 ], [ 93.482666, 44.972571 ], [ 94.691162, 44.355278 ], [ 95.306396, 44.245199 ], [ 95.767822, 43.317185 ], [ 96.350098, 42.722804 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.512602 ], [ 103.315430, 41.910453 ], [ 104.523926, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.130821 ], [ 107.742920, 42.480200 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.867912 ], [ 111.126709, 43.405047 ], [ 111.829834, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.104546 ], [ 112.434082, 45.011419 ], [ 113.466797, 44.809122 ], [ 114.455566, 45.336702 ], [ 115.982666, 45.729191 ], [ 116.718750, 46.384833 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.047669 ], [ 118.861084, 47.746711 ], [ 118.059082, 48.063397 ], [ 117.290039, 47.694974 ], [ 116.312256, 47.850031 ], [ 115.740967, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.131408 ], [ 116.674805, 49.887557 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.739746, 51.964577 ], [ 120.728760, 52.516221 ], [ 120.179443, 52.756243 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.429174 ], [ 123.574219, 53.461890 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.988576 ], [ 130.638428, 42.391009 ], [ 130.781250, 42.220382 ], [ 130.396729, 42.277309 ], [ 129.968262, 41.943149 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.488737 ], [ 128.792725, 40.313043 ], [ 124.749756, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.925293, 40.979898 ], [ 126.177979, 41.104191 ], [ 126.870117, 41.820455 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.056641, 41.992160 ], [ 129.594727, 42.423457 ], [ 129.990234, 42.988576 ] ] ] } } ] } ] } @@ -892,11 +804,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.031411 ], [ 136.208496, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.778918 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.266856 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.032959, -65.721594 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 140.141602, -66.861082 ], [ 140.811768, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.711914, -66.861082 ], [ 140.141602, -66.861082 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 144.744873, -40.705628 ], [ 145.393066, -40.788860 ], [ 145.920410, -40.979898 ], [ 146.359863, -41.137296 ], [ 146.997070, -40.979898 ], [ 147.689209, -40.805494 ], [ 148.293457, -40.871988 ], [ 148.293457, -40.979898 ], [ 148.359375, -42.065607 ], [ 148.018799, -42.407235 ], [ 147.908936, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.636075 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.690511 ], [ 145.294189, -42.032974 ], [ 144.722900, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.744873, -40.705628 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.803955, -40.497092 ], [ 173.056641, -40.979898 ], [ 173.243408, -41.335576 ], [ 173.869629, -40.979898 ], [ 173.957520, -40.930115 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.352072 ], [ 174.243164, -41.771312 ], [ 173.880615, -42.236652 ], [ 173.221436, -42.972502 ], [ 172.716064, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.894796 ], [ 170.617676, -45.905300 ], [ 169.332275, -46.641894 ], [ 168.409424, -46.619261 ], [ 167.761230, -46.293816 ], [ 166.673584, -46.217852 ], [ 166.508789, -45.851760 ], [ 167.047119, -45.112300 ], [ 168.299561, -44.127028 ], [ 168.947754, -43.937462 ], [ 169.672852, -43.556510 ], [ 170.529785, -43.028745 ], [ 171.123047, -42.512602 ], [ 171.573486, -41.771312 ], [ 171.947021, -41.516804 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.955011 ], [ 172.803955, -40.497092 ] ] ], [ [ [ 176.715088, -40.313043 ], [ 176.242676, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.242920, -41.689322 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.231934, -40.455307 ], [ 175.144043, -40.313043 ], [ 176.715088, -40.313043 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.065918, -65.307240 ], [ 135.692139, -65.581179 ], [ 135.878906, -66.031411 ], [ 136.208496, -66.443107 ], [ 136.285400, -66.513260 ], [ 136.614990, -66.778918 ], [ 137.010498, -66.861082 ], [ 134.121094, -66.861082 ], [ 134.121094, -66.266856 ], [ 134.758301, -66.209308 ], [ 135.000000, -65.775744 ], [ 135.032959, -65.721594 ], [ 135.065918, -65.307240 ] ] ], [ [ [ 140.141602, -66.861082 ], [ 140.811768, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.796238 ], [ 144.371338, -66.835165 ], [ 144.711914, -66.861082 ], [ 140.141602, -66.861082 ] ] ] ] } } ] } ] } , @@ -908,8 +820,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.272217, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.645264, -6.085936 ], [ 147.886963, -6.610044 ], [ 146.975098, -6.719165 ], [ 147.194824, -7.384258 ], [ 148.084717, -8.048352 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.271240, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.743652, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.787598, -10.390572 ], [ 147.908936, -10.131117 ], [ 147.139893, -9.492408 ], [ 146.568604, -8.939340 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.634776 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.624512, -9.329831 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.112945 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.473832 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.845545 ], [ 150.238037, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.293213, -5.583184 ], [ 149.842529, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.528511 ], [ 150.809326, -5.451959 ], [ 151.094971, -5.112830 ], [ 151.644287, -4.751624 ], [ 151.534424, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.654541, -5.047171 ], [ 154.764404, -5.342583 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.016846, -6.544560 ], [ 155.885010, -6.817353 ], [ 155.599365, -6.915521 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.654541, -5.047171 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.644043, -3.655964 ], [ 153.017578, -3.984821 ], [ 153.138428, -4.499762 ], [ 152.830811, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.941162, -2.504085 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.211914, -15.887376 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.178955, -16.161921 ], [ 167.211914, -15.887376 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.113037, -14.934170 ], [ 167.266846, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.665354 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.714600, -17.633552 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.121338, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ], [ 180.087891, -16.499299 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.436085 ], [ 179.417725, -16.383391 ], [ 180.000000, -16.066929 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.803955, -40.497092 ], [ 173.056641, -40.979898 ], [ 173.243408, -41.335576 ], [ 173.869629, -40.979898 ], [ 173.957520, -40.930115 ], [ 173.990479, -40.979898 ], [ 174.243164, -41.352072 ], [ 174.243164, -41.640078 ], [ 171.760254, -41.640078 ], [ 171.947021, -41.516804 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.955011 ], [ 172.803955, -40.497092 ] ] ], [ [ [ 173.001709, -34.452218 ], [ 173.551025, -35.003003 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.352783, -36.527295 ], [ 175.814209, -36.800488 ], [ 175.957031, -37.553288 ], [ 176.759033, -37.883525 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.275146, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.934814, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.890869, -40.069665 ], [ 176.242676, -40.979898 ], [ 176.011963, -41.286062 ], [ 175.330811, -41.640078 ], [ 175.209961, -41.640078 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.277806 ], [ 174.858398, -40.979898 ], [ 175.231934, -40.455307 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.512517 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.796908 ], [ 174.748535, -38.030786 ], [ 174.693604, -37.378888 ], [ 174.287109, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.836670, -36.120128 ], [ 173.056641, -35.236646 ], [ 172.639160, -34.524661 ], [ 173.001709, -34.452218 ] ] ] ] } } @@ -1028,17 +938,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.822754, 59.728716 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -157.500000, 56.668302 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.465635 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.044067, 58.918828 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.682649 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.477905, 59.786816 ], [ -136.477661, 59.464617 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.015259, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.015259, 60.277962 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.464617 ], [ -135.477905, 59.786816 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.822754, 59.728716 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.459926 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.706556 ], [ -150.606079, 59.369593 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.726944 ], [ -150.347900, 61.034352 ], [ -150.622559, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.147519 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.424252 ], [ -156.555176, 56.980911 ], [ -157.500000, 56.668302 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.465635 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.329683 ], [ -157.500000, 58.387318 ], [ -157.044067, 58.918828 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.682649 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.226318, 57.970244 ], [ -152.567139, 57.900256 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.970244 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.887885 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.357067 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.897165 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.560547, 69.590144 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.987549, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.582642, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.901978, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.721680, 70.530391 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.153423 ], [ -142.075195, 69.852870 ], [ -140.987549, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.887885 ], [ -157.500000, 71.041960 ], [ -156.582642, 71.357067 ] ] ] } } ] } ] } , @@ -1076,17 +986,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 48.998240 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -112.060547, 48.998240 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.055664, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.296358 ], [ -125.414429, 49.951220 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.181703 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.446655, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 48.998240 ], [ -112.500000, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.716819 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.756243 ], [ -129.303589, 53.563152 ], [ -130.517578, 54.287675 ], [ -130.534058, 54.803851 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.181763, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.184037 ], [ -132.182007, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.412806 ], [ -133.242188, 53.852527 ], [ -133.181763, 54.168866 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 48.998240 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.535522, 42.767179 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.398193, 47.720849 ], [ -124.689331, 48.184401 ], [ -124.568481, 48.378145 ], [ -123.118286, 48.041365 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -112.060547, 48.998240 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.803851 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.055664, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.990234, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.055664, 55.776573 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.193871 ], [ -135.439453, 59.753628 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.990234, 55.528631 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -131.709595, 56.553428 ], [ -132.731323, 57.692406 ], [ -133.357544, 58.410345 ], [ -134.269409, 58.862064 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.324783 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.271495 ], [ -134.269409, 58.862064 ], [ -133.357544, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.709595, 56.553428 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.990234, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.055664, 55.776573 ], [ -132.247925, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.193871 ], [ -135.439453, 59.753628 ] ] ] } } ] } ] } , @@ -1131,8 +1041,6 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.712402, 21.943046 ], [ -97.701416, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.637925 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.526492 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.774536, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.709877 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.110125 ], [ -89.598999, 21.263781 ], [ -89.560547, 21.268900 ], [ -89.560547, 17.811456 ], [ -90.000000, 17.816686 ], [ -90.999756, 17.816686 ], [ -90.999756, 17.256236 ], [ -91.455688, 17.250990 ], [ -91.082153, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.598755, 16.472963 ], [ -90.439453, 16.409740 ], [ -90.466919, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.066819 ], [ -92.202759, 14.827991 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.617747 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.014526, 16.109153 ], [ -98.948364, 16.567758 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.667480, 17.649257 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.617065, 21.943046 ], [ -105.693970, 22.268764 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.816686 ], [ -89.560547, 17.811456 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.227113 ], [ -89.719849, 14.136576 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.736717 ], [ -90.609741, 13.907408 ], [ -91.230469, 13.928736 ], [ -91.691895, 14.125922 ], [ -92.230225, 14.541050 ], [ -92.202759, 14.827991 ], [ -92.087402, 15.066819 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.466919, 16.066929 ], [ -90.439453, 16.409740 ], [ -90.598755, 16.472963 ], [ -90.714111, 16.688817 ], [ -91.082153, 16.920195 ], [ -91.455688, 17.250990 ], [ -90.999756, 17.256236 ], [ -90.999756, 17.816686 ], [ -90.000000, 17.816686 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.227113 ], [ -89.560547, 13.491131 ], [ -89.813232, 13.523179 ], [ -90.000000, 13.662001 ], [ -90.093384, 13.736717 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.136576 ], [ -89.560547, 14.227113 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.370834 ], [ -89.560547, 14.301647 ] ] ] ] } } ] } ] } , @@ -1146,9 +1054,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.829468, 48.268569 ], [ -91.642456, 48.140432 ], [ -92.609253, 48.451066 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.641724, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.158081, 49.385949 ], [ -95.158081, 48.998240 ], [ -112.939453, 48.998240 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.641724, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.451066 ], [ -91.642456, 48.140432 ], [ -90.829468, 48.268569 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.158081, 49.385949 ], [ -94.817505, 49.389524 ] ] ] } } ] } ] } , @@ -1226,16 +1134,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.228437 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.526978, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.011297 ], [ -70.482788, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.185669, -10.055403 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.525873 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.920974 ], [ -73.119507, -6.631870 ], [ -73.218384, -6.091398 ], [ -72.965698, -5.741708 ], [ -72.894287, -5.276948 ], [ -71.746216, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.253290 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.015869, 0.439449 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.812378, -2.257106 ], [ -71.411133, -2.344926 ], [ -71.773682, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.070068, -2.306506 ], [ -73.657837, -1.257834 ], [ -74.124756, -1.005197 ], [ -74.443359, -0.532829 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.448120, 0.439449 ], [ -70.015869, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.448120, 0.439449 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.800171, 0.082397 ], [ -75.646362, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.234375, -0.911827 ], [ -75.547485, -1.559866 ], [ -76.635132, -2.608352 ], [ -77.838135, -3.003384 ], [ -78.453369, -3.875216 ], [ -78.640137, -4.549046 ], [ -79.205933, -4.959615 ], [ -79.623413, -4.455951 ], [ -80.029907, -4.346411 ], [ -80.441895, -4.423090 ], [ -80.469360, -4.061536 ], [ -80.183716, -3.820408 ], [ -80.304565, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.985962, -2.218684 ], [ -80.370483, -2.685174 ], [ -80.969238, -2.246129 ], [ -80.765991, -1.966167 ], [ -80.936279, -1.060120 ], [ -80.584717, -0.906334 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.035400, 0.439449 ], [ -77.448120, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.015869, 0.439449 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.554375 ], [ -69.895020, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.812378, -2.257106 ], [ -71.411133, -2.344926 ], [ -71.773682, -2.169281 ], [ -72.328491, -2.432740 ], [ -73.070068, -2.306506 ], [ -73.657837, -1.257834 ], [ -74.124756, -1.005197 ], [ -74.443359, -0.532829 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.448120, 0.439449 ], [ -70.015869, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.443359, -0.532829 ], [ -74.124756, -1.005197 ], [ -73.657837, -1.257834 ], [ -73.070068, -2.306506 ], [ -72.328491, -2.432740 ], [ -71.773682, -2.169281 ], [ -71.411133, -2.344926 ], [ -70.812378, -2.257106 ], [ -70.048828, -2.723583 ], [ -70.691528, -3.743671 ], [ -70.394897, -3.765597 ], [ -69.895020, -4.297113 ], [ -70.795898, -4.253290 ], [ -70.927734, -4.401183 ], [ -71.746216, -4.592852 ], [ -72.894287, -5.276948 ], [ -72.965698, -5.741708 ], [ -73.218384, -6.091398 ], [ -73.119507, -6.631870 ], [ -73.723755, -6.920974 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.525873 ], [ -73.569946, -8.423470 ], [ -73.015137, -9.031578 ], [ -73.229370, -9.459899 ], [ -72.564697, -9.519497 ], [ -72.185669, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.482788, -9.492408 ], [ -70.548706, -11.011297 ], [ -70.092773, -11.124507 ], [ -69.526978, -10.951978 ], [ -68.664551, -12.559925 ], [ -68.878784, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.340210, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.660065 ], [ -68.961182, -16.499299 ], [ -69.592896, -17.581194 ], [ -69.856567, -18.093644 ], [ -70.372925, -18.349312 ], [ -71.372681, -17.774843 ], [ -71.460571, -17.361125 ], [ -73.443604, -16.357039 ], [ -75.239868, -15.268288 ], [ -76.008911, -14.647368 ], [ -76.420898, -13.822078 ], [ -76.261597, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.447632, -7.928675 ], [ -79.760742, -7.193551 ], [ -80.535278, -6.539103 ], [ -81.249390, -6.135093 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.735201 ], [ -81.101074, -4.034138 ], [ -80.304565, -3.403758 ], [ -80.183716, -3.820408 ], [ -80.469360, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.029907, -4.346411 ], [ -79.623413, -4.455951 ], [ -79.205933, -4.959615 ], [ -78.640137, -4.549046 ], [ -78.453369, -3.875216 ], [ -77.838135, -3.003384 ], [ -76.635132, -2.608352 ], [ -75.547485, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.371704, -0.153808 ], [ -75.108032, -0.054932 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.228437 ], [ -67.060547, -22.350076 ], [ -67.977905, -22.350076 ], [ -68.093262, -21.943046 ], [ -68.219604, -21.493964 ], [ -68.757935, -20.370377 ], [ -68.444824, -19.404430 ], [ -68.966675, -18.984220 ], [ -69.098511, -18.260653 ], [ -69.592896, -17.581194 ], [ -68.961182, -16.499299 ], [ -69.389648, -15.660065 ], [ -69.158936, -15.326572 ], [ -69.340210, -14.955399 ], [ -68.950195, -14.455958 ], [ -68.928223, -13.603278 ], [ -68.878784, -12.897489 ], [ -68.664551, -12.559925 ], [ -69.526978, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -67.060547, -10.228437 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.228437 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.526978, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.011297 ], [ -70.482788, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.185669, -10.055403 ], [ -72.564697, -9.519497 ], [ -73.229370, -9.459899 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.525873 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.920974 ], [ -73.119507, -6.631870 ], [ -73.218384, -6.091398 ], [ -72.965698, -5.741708 ], [ -72.894287, -5.276948 ], [ -71.746216, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.253290 ], [ -69.895020, -4.297113 ], [ -69.444580, -1.554375 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.592896, -17.581194 ], [ -69.098511, -18.260653 ], [ -68.966675, -18.984220 ], [ -68.444824, -19.404430 ], [ -68.757935, -20.370377 ], [ -68.219604, -21.493964 ], [ -68.093262, -21.943046 ], [ -67.977905, -22.350076 ], [ -70.224609, -22.350076 ], [ -70.169678, -21.943046 ], [ -70.092773, -21.391705 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.349312 ], [ -69.856567, -18.093644 ], [ -69.592896, -17.581194 ] ] ] } } ] } ] } @@ -1248,27 +1156,23 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.302612, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.357544, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.731079, 16.235772 ], [ -88.928833, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.957832 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.489380, 18.484819 ], [ -88.302612, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.013769 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.281860, 14.679254 ], [ -83.182983, 14.312292 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.870715 ], [ -83.474121, 12.420483 ], [ -83.627930, 12.318536 ], [ -83.721313, 11.894228 ], [ -83.649902, 11.630716 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.941192 ], [ -83.897095, 10.725381 ], [ -84.188232, 10.795537 ], [ -84.358521, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.528320, 11.808211 ], [ -86.748047, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.319336, 12.983148 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.255986 ], [ -86.731567, 13.261333 ], [ -86.753540, 13.752725 ], [ -86.522827, 13.779402 ], [ -86.314087, 13.768731 ], [ -86.094360, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.698853, 13.960723 ], [ -85.512085, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.562318 ], [ -85.050659, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.620794 ], [ -84.226685, 14.748323 ], [ -83.973999, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.013769 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.358521, 11.000512 ], [ -84.188232, 10.795537 ], [ -83.897095, 10.725381 ], [ -83.655396, 10.941192 ], [ -83.402710, 10.395975 ], [ -83.018188, 9.990491 ], [ -82.545776, 9.568251 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.721558, 8.923060 ], [ -82.869873, 8.809082 ], [ -82.831421, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.053277 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.649658, 9.616998 ], [ -84.715576, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.136524 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.502808, 9.421968 ], [ -78.057861, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.934115 ], [ -77.431641, 7.640220 ], [ -77.755737, 7.710992 ], [ -77.882080, 7.226249 ], [ -78.217163, 7.509535 ], [ -78.431396, 8.053791 ], [ -78.184204, 8.320212 ], [ -78.436890, 8.385431 ], [ -78.623657, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.933914 ], [ -79.760742, 8.586453 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.422389 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.133789, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.293035 ], [ -82.853394, 8.075546 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.831421, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.721558, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.568251 ], [ -82.188721, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.716309, 9.031578 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.524292, 9.112945 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.799683, 18.526492 ], [ -76.898804, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.863747 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.799683, 18.526492 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.525269, 21.207459 ], [ -76.195679, 21.222821 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.875226 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.722534, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.106323, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.496094, 22.167058 ], [ -83.908081, 22.156883 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.912471 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.295590 ], [ -69.224854, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.692017, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.625854, 18.380592 ], [ -69.955444, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.759150 ], [ -71.707764, 18.046644 ], [ -71.685791, 18.318026 ], [ -71.943970, 18.615013 ], [ -71.702271, 18.786717 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.377563 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.775948 ], [ -71.971436, 11.609193 ], [ -72.229614, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.026123, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.658081, 8.624472 ], [ -72.438354, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.443848, 7.422389 ], [ -72.196655, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.102322 ], [ -68.983154, 6.206090 ], [ -68.263550, 6.151478 ], [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.604237 ], [ -69.450073, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.326986 ], [ -77.129517, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.669505 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.934115 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.640765 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.196167, 11.313094 ], [ -73.416138, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.240601, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.952606 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.581909, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.230591, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.547221 ], [ -67.060547, 10.568822 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.630301 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -68.263550, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.102322 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.089990 ], [ -71.960449, 6.991859 ], [ -72.196655, 7.340675 ], [ -72.443848, 7.422389 ], [ -72.482300, 7.634776 ], [ -72.361450, 8.004837 ], [ -72.438354, 8.407168 ], [ -72.658081, 8.624472 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.150909 ], [ -73.026123, 9.736128 ], [ -72.905273, 10.450000 ], [ -72.614136, 10.822515 ], [ -72.229614, 11.108337 ], [ -71.971436, 11.609193 ], [ -71.334229, 11.775948 ], [ -71.361694, 11.539234 ], [ -71.949463, 11.420802 ], [ -71.619873, 10.968157 ], [ -71.630859, 10.444598 ], [ -72.075806, 9.866040 ], [ -71.696777, 9.069551 ], [ -71.262817, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.153198, 11.377724 ], [ -70.296021, 11.845847 ], [ -69.944458, 12.162856 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.060547, 1.131518 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.450073, 0.708600 ], [ -69.252319, 0.604237 ], [ -69.219360, 0.983228 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.378651 ], [ -77.854614, 0.807468 ], [ -77.667847, 0.823946 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.294556, 0.417477 ], [ -75.800171, 0.082397 ], [ -75.646362, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.322266, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.983228 ], [ -78.854370, 1.378651 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.377563 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.775948 ], [ -71.971436, 11.609193 ], [ -72.229614, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.026123, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.658081, 8.624472 ], [ -72.438354, 8.407168 ], [ -72.361450, 8.004837 ], [ -72.482300, 7.634776 ], [ -72.443848, 7.422389 ], [ -72.196655, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.089990 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.102322 ], [ -68.983154, 6.206090 ], [ -68.263550, 6.151478 ], [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.604237 ], [ -69.450073, 0.708600 ], [ -70.015869, 0.543815 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.713745, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.108032, -0.054932 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.294556, 0.417477 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.326986 ], [ -77.129517, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.669505 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.226249 ], [ -77.755737, 7.710992 ], [ -77.431641, 7.640220 ], [ -77.244873, 7.934115 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.640765 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.196167, 11.313094 ], [ -73.416138, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.240601, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.108032, -0.054932 ], [ -74.569702, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.371704, -0.153808 ], [ -75.108032, -0.054932 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.060547, 1.131518 ], [ -67.060547, -0.439449 ], [ -69.713745, -0.439449 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.543815 ], [ -69.450073, 0.708600 ], [ -69.252319, 0.604237 ], [ -69.219360, 0.983228 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , @@ -1286,9 +1190,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -76.376953, 44.095476 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.766237 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.328247, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.262329, 40.647304 ], [ -73.976440, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.064331, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.664072 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.421694 ], [ -68.510742, 49.066668 ], [ -69.955444, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.648071, 48.301467 ], [ -67.500000, 48.759810 ], [ -67.060547, 48.933326 ], [ -67.060547, 45.147179 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.185979 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.694667 ], [ -70.307007, 45.916766 ], [ -70.658569, 45.460131 ], [ -71.087036, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.376953, 44.095476 ], [ -76.497803, 44.016521 ], [ -76.821899, 43.628123 ], [ -78.722534, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.249634, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.441406, 41.677015 ], [ -82.688599, 41.677015 ], [ -83.029175, 41.832735 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.897339, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.139282, 43.572432 ], [ -82.551270, 45.348285 ], [ -83.594971, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.144287, 46.513516 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.545288, 46.539971 ], [ -84.781494, 46.638122 ], [ -84.874878, 46.901492 ], [ -86.462402, 47.554287 ], [ -88.379517, 48.301467 ], [ -89.274902, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.357788, 56.022948 ], [ -87.324829, 55.998381 ], [ -86.308594, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.304138 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.278353 ], [ -81.403198, 52.157085 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.532669 ], [ -78.601685, 52.562995 ], [ -79.123535, 54.139915 ], [ -79.832153, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.948242, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.379517, 48.301467 ], [ -86.462402, 47.554287 ], [ -84.874878, 46.901492 ], [ -84.781494, 46.638122 ], [ -84.545288, 46.539971 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.594971, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.139282, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.677015 ], [ -82.441406, 41.677015 ], [ -81.276855, 42.208176 ], [ -80.249634, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.722534, 43.624147 ], [ -76.821899, 43.628123 ], [ -76.497803, 44.016521 ], [ -76.376953, 44.095476 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.087036, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.307007, 45.916766 ], [ -69.999390, 46.694667 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.185979 ], [ -68.236084, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.766237 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.647583, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.966431, 41.635973 ], [ -70.642090, 41.475660 ], [ -71.119995, 41.496235 ], [ -71.861572, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.877808, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.328247, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.262329, 40.647304 ], [ -73.976440, 40.647304 ], [ -73.954468, 40.751418 ], [ -74.064331, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.274902, 48.019324 ], [ -88.379517, 48.301467 ] ] ] } } ] } ] } , @@ -1370,23 +1274,27 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.332168 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.176469 ], [ -48.663940, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.982319 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.492188, -27.474161 ], [ -53.646240, -26.922070 ], [ -53.629761, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.160201 ], [ -54.294434, -24.572104 ], [ -54.294434, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.030518, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.519409, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.908936, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.374390, -22.796439 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.373901, -21.943046 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.482106 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.332168 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.477173, -27.176469 ], [ -48.663940, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.982319 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.212280, -32.727220 ], [ -53.789062, -32.045333 ], [ -54.574585, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.492188, -27.474161 ], [ -53.646240, -26.922070 ], [ -53.629761, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.160201 ], [ -54.294434, -24.572104 ], [ -54.294434, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.030518, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.519409, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.355156 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.908936, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.799561, -22.355156 ], [ -55.612793, -22.654572 ], [ -55.519409, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.030518, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.294434, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.160201 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.386401 ], [ -56.486206, -27.547242 ], [ -57.612305, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.160201 ], [ -58.809814, -24.771772 ], [ -60.029297, -24.031414 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.031414 ], [ -58.809814, -24.771772 ], [ -57.777100, -25.160201 ], [ -57.634277, -25.601902 ], [ -58.617554, -27.122702 ], [ -57.612305, -27.396155 ], [ -56.486206, -27.547242 ], [ -55.695190, -27.386401 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.629761, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.015279 ], [ -58.145142, -32.045333 ], [ -58.134155, -33.040903 ], [ -58.348389, -33.261657 ], [ -58.496704, -34.429567 ], [ -57.227783, -35.285985 ], [ -57.359619, -35.978006 ], [ -56.738892, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.182069 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.127686, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.748413, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.111870 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.574585, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.212280, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.461277 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.261657 ], [ -58.134155, -33.040903 ], [ -58.145142, -32.045333 ], [ -57.875977, -31.015279 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.482106 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.482106 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.335693, -9.763198 ], [ -65.445557, -10.509417 ], [ -65.319214, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.463396 ], [ -63.198853, -12.629618 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.491131 ], [ -61.083984, -13.480448 ], [ -60.501709, -13.774066 ], [ -60.457764, -14.354870 ], [ -60.265503, -14.647368 ], [ -60.249023, -15.077428 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.238525, -16.299051 ], [ -58.386841, -16.878147 ], [ -58.282471, -17.271973 ], [ -57.733154, -17.555009 ], [ -57.496948, -18.171950 ], [ -57.678223, -18.963442 ], [ -57.947388, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.357794 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.053744 ], [ -62.583618, -21.943046 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.373901, -21.943046 ], [ -66.747437, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.335693, -9.763198 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.504150, 0.439449 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.587036, -1.235866 ], [ -47.823486, -0.582265 ], [ -46.565552, -0.939289 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.475220, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.730428 ], [ -58.167114, -20.174567 ], [ -57.854004, -19.968186 ], [ -57.947388, -19.399249 ], [ -57.678223, -18.963442 ], [ -57.496948, -18.171950 ], [ -57.733154, -17.555009 ], [ -58.282471, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.238525, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.249023, -15.077428 ], [ -60.265503, -14.647368 ], [ -60.457764, -14.354870 ], [ -60.501709, -13.774066 ], [ -61.083984, -13.480448 ], [ -61.715698, -13.491131 ], [ -62.127686, -13.197165 ], [ -62.803345, -12.999205 ], [ -63.198853, -12.629618 ], [ -64.313965, -12.463396 ], [ -65.401611, -11.566144 ], [ -65.319214, -10.898042 ], [ -65.445557, -10.509417 ], [ -65.335693, -9.763198 ], [ -66.648560, -9.930977 ], [ -67.175903, -10.304110 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.504150, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.335693, -9.763198 ], [ -65.445557, -10.509417 ], [ -65.319214, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.463396 ], [ -63.198853, -12.629618 ], [ -62.803345, -12.999205 ], [ -62.127686, -13.197165 ], [ -61.715698, -13.491131 ], [ -61.083984, -13.480448 ], [ -60.501709, -13.774066 ], [ -60.457764, -14.354870 ], [ -60.265503, -14.647368 ], [ -60.249023, -15.077428 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.238525, -16.299051 ], [ -58.386841, -16.878147 ], [ -58.282471, -17.271973 ], [ -57.733154, -17.555009 ], [ -57.496948, -18.171950 ], [ -57.678223, -18.963442 ], [ -57.947388, -19.399249 ], [ -57.854004, -19.968186 ], [ -58.167114, -20.174567 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.357794 ], [ -60.045776, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.053744 ], [ -62.583618, -21.943046 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.962158, -22.075459 ], [ -65.676270, -21.943046 ], [ -66.275024, -21.830907 ], [ -66.373901, -21.943046 ], [ -66.747437, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.175903, -10.304110 ], [ -66.648560, -9.930977 ], [ -65.335693, -9.763198 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.045776, -19.342245 ], [ -59.117432, -19.357794 ], [ -58.183594, -19.870060 ], [ -58.167114, -20.174567 ], [ -57.870483, -20.730428 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.475220, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.682495, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.292480, -21.053744 ], [ -62.265015, -20.514499 ], [ -61.787109, -19.632240 ], [ -60.045776, -19.342245 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.275024, -21.830907 ], [ -65.676270, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.747437, -22.350076 ], [ -66.373901, -21.943046 ], [ -66.275024, -21.830907 ] ] ], [ [ [ -64.160156, -22.350076 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ] ] ] ] } } ] } @@ -1394,25 +1302,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.098999, 18.521283 ], [ -66.280518, 18.516075 ], [ -65.769653, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.846558, 17.973508 ], [ -66.599121, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.892648 ], [ -60.897217, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.682739, 10.757763 ], [ -61.105957, 10.892648 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.691649 ], [ -67.939453, 6.217012 ], [ -67.697754, 6.266158 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.030518, 6.025848 ], [ -53.959351, 5.758105 ], [ -54.481201, 4.899414 ], [ -54.398804, 4.214943 ], [ -54.008789, 3.617589 ], [ -54.179077, 3.189879 ], [ -54.266968, 2.734557 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.421764 ], [ -55.975342, 2.509573 ], [ -56.074219, 2.218684 ], [ -55.903931, 2.021065 ], [ -55.997314, 1.817932 ], [ -56.541138, 1.900286 ], [ -57.150879, 2.767478 ], [ -57.282715, 3.332470 ], [ -57.601318, 3.332470 ], [ -58.046265, 4.061536 ], [ -57.859497, 4.576425 ], [ -57.914429, 4.811839 ], [ -57.304688, 5.074529 ], [ -57.145386, 5.971217 ], [ -55.947876, 5.774501 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.025848 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.098999, 18.521283 ], [ -66.280518, 18.516075 ], [ -65.769653, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.846558, 17.973508 ], [ -66.599121, 17.983958 ], [ -67.186890, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.540405, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.251617 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.421021, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.949341, 1.043643 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.691649 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.498597 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.968628, 4.538094 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.880493, 10.714587 ], [ -62.731934, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.760132, 8.369127 ], [ -60.551147, 7.781751 ], [ -60.639038, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.855532 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.968628, 4.538094 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.890991, 4.023179 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.498597 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.549927, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.602864 ], [ -67.500000, 2.630301 ], [ -67.807617, 2.822344 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.340698, 6.096860 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -67.939453, 6.217012 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.547221 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.319458, 10.639014 ], [ -63.078003, 10.703792 ], [ -61.880493, 10.714587 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.096860 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.822344 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.602864 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.131518 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.691649 ], [ -67.939453, 6.217012 ], [ -67.697754, 6.266158 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.760132, 8.369127 ], [ -59.100952, 7.999397 ], [ -58.480225, 7.346123 ], [ -58.452759, 6.833716 ], [ -58.079224, 6.806444 ], [ -57.145386, 5.971217 ], [ -57.304688, 5.074529 ], [ -57.914429, 4.811839 ], [ -57.859497, 4.576425 ], [ -58.046265, 4.061536 ], [ -57.601318, 3.332470 ], [ -57.282715, 3.332470 ], [ -57.150879, 2.767478 ], [ -56.541138, 1.900286 ], [ -56.782837, 1.861855 ], [ -57.337646, 1.949697 ], [ -57.661743, 1.680667 ], [ -58.112183, 1.504954 ], [ -58.430786, 1.466515 ], [ -58.540649, 1.268817 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.784990 ], [ -59.716187, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.815063, 3.606625 ], [ -59.540405, 3.957421 ], [ -59.765625, 4.423090 ], [ -60.111694, 4.576425 ], [ -59.979858, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.408081, 5.960290 ], [ -61.138916, 6.233395 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.855532 ], [ -60.292969, 7.046379 ], [ -60.639038, 7.416942 ], [ -60.551147, 7.781751 ], [ -59.760132, 8.369127 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.758105 ], [ -52.882690, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.154679 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.937622, 2.125367 ], [ -53.421021, 2.054003 ], [ -53.552856, 2.333949 ], [ -53.778076, 2.377857 ], [ -54.085693, 2.103409 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.398804, 4.214943 ], [ -54.481201, 4.899414 ], [ -53.959351, 5.758105 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.216064, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.540405, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.251617 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.466515 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.337646, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.541138, 1.900286 ], [ -55.997314, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.421021, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.949341, 1.043643 ], [ -50.701904, 0.225219 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.076904 ], [ -48.619995, -0.236205 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.691649 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.549927, 0.790990 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.498597 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.890991, 4.023179 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.968628, 4.538094 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.939453, 44.367060 ], [ -67.939453, 47.163575 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.267805 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.781181 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.271783 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.065565 ], [ -60.034790, 50.243692 ], [ -61.721191, 50.081820 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.299867 ], [ -66.401367, 50.229638 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.421694 ], [ -67.939453, 49.267805 ] ] ], [ [ [ -64.017334, 47.036439 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.728566 ], [ -64.017334, 47.036439 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.409546, 51.587310 ], [ -55.601807, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.145630, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.585787 ], [ -54.937134, 49.314380 ], [ -54.475708, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.158757 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.656977 ], [ -53.519897, 46.619261 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.754098 ], [ -55.398560, 46.886477 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.390912 ], [ -56.250000, 47.632082 ], [ -57.326660, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.798828, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -67.939453, 48.582058 ], [ -67.500000, 48.759810 ], [ -66.555176, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.740693 ], [ -61.523438, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.253784, 44.668653 ], [ -64.248047, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.139430 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.582058 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.106242 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.139430 ], [ -66.967163, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.939453, 44.367060 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , @@ -1548,15 +1456,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.599346 ], [ -14.100952, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.143678 ], [ -11.469727, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.388294 ], [ -12.205811, 12.463396 ], [ -12.277222, 12.356100 ], [ -12.496948, 12.334636 ], [ -13.216553, 12.576010 ], [ -15.551147, 12.629618 ], [ -15.814819, 12.517028 ], [ -16.149902, 12.549202 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -15.930176, 13.127629 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.277373 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.298757 ], [ -14.276733, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.046021, 13.795406 ], [ -14.375610, 13.624633 ], [ -14.688721, 13.629972 ], [ -15.084229, 13.875413 ], [ -15.397339, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.715698, 13.592600 ], [ -17.127686, 14.376155 ], [ -17.627563, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.623037 ], [ -16.463013, 16.135539 ], [ -16.122437, 16.457159 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.588817 ], [ -14.578857, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.084229, 13.875413 ], [ -14.688721, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.795406 ], [ -13.842773, 13.507155 ], [ -14.276733, 13.282719 ], [ -14.710693, 13.298757 ], [ -15.139160, 13.507155 ], [ -15.512695, 13.277373 ], [ -15.688477, 13.272026 ], [ -15.930176, 13.127629 ], [ -16.842041, 13.149027 ], [ -16.715698, 13.592600 ], [ -15.622559, 13.624633 ], [ -15.397339, 13.859414 ], [ -15.084229, 13.875413 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.157837, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.501326 ], [ -9.552612, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.331870 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.801439 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.040534 ], [ -14.100952, 16.304323 ], [ -14.578857, 16.599346 ], [ -15.133667, 16.588817 ], [ -15.622559, 16.367580 ], [ -16.122437, 16.457159 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.098458 ], [ -16.375122, 19.596019 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.847534, 21.335432 ], [ -12.930908, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.157837, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.862427, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.928862 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.248411 ], [ -2.966309, 13.800741 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.475106 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.377724 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.098670 ], [ -6.207275, 10.525619 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.624512, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.410034, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.893188, 12.060809 ], [ -10.167847, 11.845847 ], [ -10.590820, 11.926478 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.299438, 12.076924 ], [ -11.458740, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.469727, 12.752874 ], [ -11.552124, 13.143678 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.801439 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.331870 ], [ -9.700928, 15.262989 ], [ -9.552612, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.317383, 16.204125 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.157837, 22.350076 ], [ -0.862427, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.928862 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.439453, 13.976715 ], [ 0.439453, 11.005904 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.763550, 10.935798 ], [ -1.203003, 11.011297 ], [ -2.938843, 10.962764 ], [ -2.966309, 10.395975 ], [ -2.828979, 9.644077 ], [ -3.510132, 9.898510 ], [ -3.982544, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.377724 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.475106 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.800741 ], [ -2.191772, 14.248411 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.623779, 9.270201 ], [ -10.656738, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.622414 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.860628 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.334636 ], [ -12.277222, 12.356100 ], [ -12.205811, 12.463396 ], [ -11.656494, 12.388294 ], [ -11.513672, 12.441941 ], [ -11.458740, 12.076924 ], [ -11.299438, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.926478 ], [ -10.167847, 11.845847 ], [ -9.893188, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.129639, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.410034, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.311157, 9.790264 ], [ -8.080444, 9.378612 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.223267, 8.124491 ], [ -8.278198, 7.689217 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.542998 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.656738, 8.977323 ], [ -10.623779, 9.270201 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.887687 ], [ -14.331665, 10.017539 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.122925, 11.679135 ], [ -13.903198, 11.679135 ], [ -13.743896, 11.813588 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.248760 ], [ -13.699951, 12.586732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.509296 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.862427, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , @@ -1568,18 +1476,18 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.466919, 38.294248 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.099003 ], [ -7.536621, 37.426888 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.031986 ], [ -7.498169, 39.631077 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.875977, 23.286765 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.502441, 24.771772 ], [ -12.030029, 26.032106 ], [ -11.716919, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.794556, 27.122702 ], [ -8.816528, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.509399, 41.310824 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.025757, 40.183070 ], [ -7.064209, 39.711413 ], [ -7.498169, 39.631077 ], [ -7.097168, 39.031986 ], [ -7.371826, 38.371809 ], [ -7.031250, 38.074041 ], [ -7.168579, 37.805444 ], [ -7.536621, 37.426888 ], [ -7.454224, 37.099003 ], [ -7.855225, 36.840065 ], [ -8.382568, 36.980615 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.653383 ], [ -8.838501, 38.268376 ], [ -9.288940, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.047241, 39.753657 ], [ -8.975830, 40.157885 ], [ -8.767090, 40.759741 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.860474, 41.310824 ], [ -6.509399, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.875977, 23.286765 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.958374, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.502441, 24.771772 ], [ -12.030029, 26.032106 ], [ -11.716919, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.794556, 27.122702 ], [ -8.816528, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.104370, 40.124291 ], [ 0.000000, 39.901309 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.466919, 38.294248 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.444335 ], [ -2.147827, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.031332 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.099003 ], [ -7.536621, 37.426888 ], [ -7.168579, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.031986 ], [ -7.498169, 39.631077 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.759886 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.641968, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.529187 ], [ -1.735840, 33.920572 ], [ -1.389771, 32.865746 ], [ -1.126099, 32.653251 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.096536 ], [ -3.070679, 31.723495 ], [ -3.647461, 31.639352 ], [ -3.691406, 30.897511 ], [ -4.861450, 30.500751 ], [ -5.240479, 30.002517 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.668213, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.122702 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.189819, 26.863281 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.106121 ], [ -12.030029, 26.032106 ], [ -12.502441, 24.771772 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.522137 ], [ -14.826050, 25.105497 ], [ -14.798584, 25.636574 ], [ -14.441528, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.935895 ], [ -9.816284, 31.179910 ], [ -9.437256, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.111805 ], [ -6.245728, 35.146863 ], [ -5.932617, 35.759886 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.976099 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.958374, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.875977, 23.286765 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.257563 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.976099 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.591066 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 30.002517 ], [ -4.861450, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.639352 ], [ -3.070679, 31.723495 ], [ -2.614746, 32.096536 ], [ -1.307373, 32.263911 ], [ -1.126099, 32.653251 ], [ -1.389771, 32.865746 ], [ -1.735840, 33.920572 ], [ -1.790771, 34.529187 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.257563 ] ] ] } } ] } ] } @@ -1590,11 +1498,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.909194 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.626158 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.698197 ], [ -3.619995, 50.229638 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.778809, 50.159305 ], [ -4.312134, 51.210325 ], [ -3.416748, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.224243, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.062641 ], [ -4.718628, 55.509971 ], [ -5.037231, 55.776573 ], [ -5.048218, 55.782751 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.663452, 54.556137 ], [ -6.196289, 53.868725 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.827353 ], [ 0.439453, 42.638000 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -1.505127, 43.032761 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.192017, 46.016039 ], [ -2.224731, 47.062638 ], [ -2.960815, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.643798 ], [ -1.933594, 49.777717 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.439453, 49.827353 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.860962, 40.647304 ], [ -8.805542, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.992310, 41.541478 ], [ -9.036255, 41.881831 ], [ -8.673706, 42.134895 ], [ -8.261719, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.827353 ], [ 0.439453, 42.638000 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -1.505127, 43.032761 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.192017, 46.016039 ], [ -2.224731, 47.062638 ], [ -2.960815, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.643798 ], [ -1.933594, 49.777717 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.439453, 49.827353 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.456906 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.860962, 40.647304 ], [ -6.855469, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.673706, 42.134895 ], [ -9.036255, 41.881831 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } ] } ] } , @@ -1668,8 +1576,6 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.814331, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.422970 ], [ 17.523193, -0.741556 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.340934 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.778995 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.603803 ], [ 11.914673, -5.036227 ], [ 11.096191, -3.979341 ], [ 11.854248, -3.425692 ], [ 11.480713, -2.767478 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.394322 ], [ 12.573853, -1.949697 ], [ 13.112183, -2.427252 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.554801 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.991089, 0.439449 ], [ 17.814331, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.991089, 0.439449 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.554801 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.112183, -2.427252 ], [ 12.573853, -1.949697 ], [ 12.496948, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.979341 ], [ 10.063477, -2.970470 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.827515, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.338379, 0.439449 ], [ 13.991089, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.861939 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.620957 ], [ 16.858521, -7.220800 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.462524, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.599365, -6.937333 ], [ 20.516968, -7.297088 ], [ 21.725464, -7.291639 ], [ 21.747437, -7.917793 ], [ 21.950684, -8.303906 ], [ 21.802368, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 22.939453, -10.995120 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.350638 ], [ 14.057007, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.792254 ], [ 12.123413, -14.875778 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.733154, -5.965754 ], [ 13.024292, -5.982144 ], [ 13.375854, -5.861939 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.778995 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.036227 ], [ 12.321167, -4.603803 ], [ 12.623291, -4.439521 ] ] ] ] } } @@ -1696,18 +1602,20 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.048618 ], [ 15.485229, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.298462, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.998037 ], [ 13.952637, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.210815, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.463396 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.597939 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.330830 ], [ 10.991821, 13.389620 ], [ 10.700684, 13.245293 ], [ 10.112915, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.116930 ], [ 6.443481, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.533860 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.554564 ], [ 3.609009, 11.657616 ], [ 2.850952, 12.238023 ], [ 2.488403, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.624258 ], [ 1.021729, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.268188, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.238023 ], [ 3.609009, 11.657616 ], [ 3.570557, 11.329253 ], [ 3.795776, 10.736175 ], [ 3.598022, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.140063 ], [ 2.724609, 8.504970 ], [ 2.746582, 7.868823 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.833716 ], [ 1.664429, 9.129216 ], [ 1.461182, 9.335252 ], [ 1.422729, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.108337 ], [ 1.444702, 11.549998 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.488403, 12.232655 ], [ 2.850952, 12.238023 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.422729, 9.822742 ], [ 1.461182, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.833716 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.488892, 7.411495 ], [ 0.714111, 8.314777 ], [ 0.461426, 8.678779 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.709189 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.443481, 13.491131 ], [ 6.822510, 13.116930 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.112915, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.389620 ], [ 11.530151, 13.330830 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.597939 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.463396 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.087667 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.800933 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.216797, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.837769, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.057282 ], [ 10.118408, 7.040927 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.446318 ], [ 8.756104, 5.479300 ], [ 8.497925, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.080688, 4.466904 ], [ 6.696167, 4.242334 ], [ 5.899658, 4.264246 ], [ 5.361328, 4.888467 ], [ 5.031738, 5.610519 ], [ 4.323120, 6.271618 ], [ 3.576050, 6.260697 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.140063 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.598022, 10.331132 ], [ 3.795776, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.609009, 11.657616 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.533860 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.262595 ], [ 11.282959, 1.060120 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.562765 ], [ 18.451538, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.896729, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.291136 ], [ 17.693481, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 14.227295, -0.439449 ], [ 13.875732, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.024048, 1.395126 ], [ 13.282471, 1.312751 ], [ 13.002319, 1.828913 ], [ 13.073730, 2.268084 ], [ 14.337158, 2.229662 ], [ 15.144653, 1.966167 ], [ 15.941162, 1.730084 ], [ 16.012573, 2.268084 ], [ 16.534424, 3.200848 ], [ 17.133179, 3.727227 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.934204, 12.586732 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 21.725464, 10.568822 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.962646, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.498643 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.694661 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.798225 ], [ 14.545898, 8.966471 ], [ 13.952637, 9.552000 ], [ 14.172363, 10.022948 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.957886, 11.555380 ], [ 14.891968, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.952637, 13.352210 ], [ 13.958130, 13.998037 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.298462, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.485229, 20.730428 ], [ 15.468750, 21.048618 ], [ 15.095215, 21.309846 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.891968, 12.216549 ], [ 14.957886, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.552000 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.798225 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.694661 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.030755 ], [ 14.479980, 4.735201 ], [ 14.952393, 4.209465 ], [ 15.034790, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.558963 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.730084 ], [ 15.144653, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.749878, 2.328460 ], [ 11.277466, 2.262595 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.486938, 4.494285 ], [ 8.497925, 4.773521 ], [ 8.756104, 5.479300 ], [ 9.234009, 6.446318 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.040927 ], [ 10.497437, 7.057282 ], [ 11.057739, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.837769, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.952881, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.800933 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.087667 ], [ 14.183350, 12.484850 ], [ 14.210815, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.451538, 3.502455 ], [ 17.808838, 3.562765 ], [ 17.133179, 3.727227 ], [ 16.534424, 3.200848 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.014356 ], [ 15.402832, 3.337954 ], [ 15.034790, 3.853293 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.735201 ], [ 14.556885, 5.030755 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.498643 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.962646, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.015302 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.568822 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 21.934204, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.749878, 2.328460 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.073730, 2.268084 ], [ 13.002319, 1.828913 ], [ 13.282471, 1.312751 ], [ 14.024048, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.875732, 0.000000 ], [ 14.227295, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.288940, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.060120 ], [ 11.277466, 2.262595 ], [ 11.749878, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.324501 ], [ 21.659546, 4.225900 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.693481, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.391113, 2.899153 ], [ 18.451538, 3.502455 ], [ 18.544922, 4.203986 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } @@ -1720,21 +1628,19 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.075459 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.075459 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.533447, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.111689 ], [ 20.148926, 39.626846 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.390869, 41.310824 ], [ 20.533447, 41.310824 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.416862 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.311491 ], [ 20.731201, 38.771216 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.626846 ], [ 20.615845, 40.111689 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.998166 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.035112 ], [ 15.518188, 38.229550 ] ] ], [ [ [ 16.463013, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 18.374634, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.216604 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.705200, 40.605612 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.463013, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.501269 ], [ 9.667969, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.178833, 36.725677 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.901587 ], [ 10.601807, 36.408021 ], [ 10.590820, 35.946883 ], [ 10.936890, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.338135, 33.783713 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.486206, 33.137551 ], [ 11.431274, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.760867 ], [ 9.948120, 31.377089 ], [ 10.057983, 30.963479 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.437500, 32.505129 ], [ 8.432007, 32.750323 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.434542 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.518188, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.998166 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.035112 ], [ 15.518188, 38.229550 ] ] ], [ [ [ 16.463013, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 18.374634, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.812756 ], [ 17.737427, 40.279526 ], [ 16.869507, 40.442767 ], [ 16.446533, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.050781, 38.903858 ], [ 16.633301, 38.843986 ], [ 16.100464, 37.987504 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.216604 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 14.996338, 40.174676 ], [ 14.705200, 40.605612 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.463013, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.501269 ], [ 9.667969, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.805542, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.388062, 40.380028 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.533447, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.327881, 37.116526 ], [ 7.734375, 36.884014 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.434542 ], [ 8.377075, 35.478565 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.432007, 32.750323 ], [ 8.437500, 32.505129 ], [ 9.058228, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.142257 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 11.997070, 23.473324 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.075459 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.866438 ], [ 5.317383, 36.716871 ], [ 6.262207, 37.112146 ], [ 7.327881, 37.116526 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.486206, 33.137551 ], [ 12.661743, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.243530, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.765439 ], [ 19.088745, 30.268556 ], [ 19.572144, 30.524413 ], [ 20.055542, 30.987028 ], [ 19.819336, 31.751525 ], [ 20.132446, 32.236036 ], [ 20.852051, 32.708733 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.579221 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.858765, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.096255 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.142257 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.963479 ], [ 9.948120, 31.377089 ], [ 10.634766, 31.760867 ], [ 10.942383, 32.082575 ], [ 11.431274, 32.370683 ], [ 11.486206, 33.137551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.062256, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 11.997070, 23.473324 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.858765, 23.407806 ], [ 18.918457, 21.943046 ], [ 19.764404, 21.534847 ], [ 15.062256, 21.534847 ], [ 14.996338, 21.943046 ], [ 14.853516, 22.862256 ], [ 15.858765, 23.407806 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 22.939453, 39.576056 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.416862 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.311491 ], [ 20.731201, 38.771216 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.626846 ], [ 20.615845, 40.111689 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , @@ -1742,41 +1648,39 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.466845 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.805218 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.771208 ], [ -0.439453, 54.466845 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 42.795401 ], [ 1.829224, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.037720, 41.894100 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.719604, 40.676472 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.771211 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.581400 ], [ 0.703125, 42.795401 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.852746 ], [ 6.157837, 50.802463 ], [ 5.608521, 51.037940 ], [ 4.971313, 51.474540 ], [ 4.048462, 51.268789 ], [ 3.312378, 51.344339 ], [ 3.828735, 51.621427 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.784302, 50.088869 ], [ 6.042480, 50.127622 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.937134, 54.597528 ], [ 10.947876, 54.364558 ], [ 10.936890, 54.007769 ], [ 11.958618, 54.197797 ], [ 12.518921, 54.470038 ], [ 13.645020, 54.075506 ], [ 14.117432, 53.758454 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.626395 ], [ 14.683228, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 51.003386 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.485474 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.518921, 49.546598 ], [ 13.029785, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.881470, 48.290503 ], [ 13.024292, 47.635784 ], [ 12.930908, 47.468950 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.519897, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.465210, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.464554 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.852746 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.396550 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.387817, 43.008664 ], [ 9.558105, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.541870, 42.256984 ], [ 8.745117, 42.629917 ], [ 9.387817, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.781629 ], [ 3.587036, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.465210, 47.620975 ], [ 7.190552, 47.450380 ], [ 6.734619, 47.543164 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.020508, 46.274834 ], [ 6.498413, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.710015 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.695680 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.401056 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.581400 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.948045 ], [ 2.515869, 51.148340 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.519897, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.103784 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.441642 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.498413, 46.430285 ], [ 6.020508, 46.274834 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.543164 ], [ 7.190552, 47.450380 ], [ 7.465210, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.519897, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.041260, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.980591, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.961848 ], [ 8.118896, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.890503, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.862776 ], [ 22.516479, 49.475263 ], [ 22.774658, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.471694 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.432413 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.907471, 49.435985 ], [ 18.391113, 49.990084 ], [ 17.649536, 50.050085 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.474987 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.683228, 52.089633 ], [ 14.436035, 52.626395 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.117432, 53.758454 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 51.003386 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.474987 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.050085 ], [ 18.391113, 49.990084 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.045070 ], [ 17.913208, 48.998240 ], [ 17.885742, 48.904449 ], [ 17.545166, 48.799627 ], [ 17.100220, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.965794 ], [ 14.337158, 48.556614 ], [ 13.595581, 48.875554 ], [ 13.029785, 49.307217 ], [ 12.518921, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.485474 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.804321, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.046753, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.103784 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.139893, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.930908, 47.468950 ], [ 13.024292, 47.635784 ], [ 12.881470, 48.290503 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.337158, 48.556614 ], [ 14.902954, 48.965794 ], [ 15.254517, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.733025 ], [ 15.325928, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.467836 ], [ 13.716431, 45.498647 ], [ 13.936157, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.804321, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.880493, 46.381044 ], [ 17.627563, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.069641 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.213004 ], [ 16.320190, 45.003651 ], [ 15.957642, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.237793, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.913452, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.077400 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.733025 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.220581, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.632568, 43.213183 ], [ 19.956665, 43.104994 ], [ 20.341187, 42.900113 ], [ 20.258789, 42.811522 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.302979, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.160156, 41.955405 ], [ 18.880005, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 18.704224, 43.201172 ], [ 19.033813, 43.432977 ], [ 19.220581, 43.524655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.432413 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.471694 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.802612, 48.625647 ], [ 20.473022, 48.563885 ], [ 20.236816, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.264913 ], [ 19.176636, 48.111099 ], [ 18.775635, 48.081749 ], [ 18.698730, 47.879513 ], [ 17.858276, 47.757791 ], [ 17.490234, 47.868459 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.100220, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.904449 ], [ 17.913208, 48.998240 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.997274 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.625647 ], [ 21.873779, 48.319734 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.995241 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.594116, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.627563, 45.951150 ], [ 16.880493, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 17.490234, 47.868459 ], [ 17.858276, 47.757791 ], [ 18.698730, 47.879513 ], [ 18.775635, 48.081749 ], [ 19.176636, 48.111099 ], [ 19.660034, 48.264913 ], [ 19.769897, 48.202710 ], [ 20.236816, 48.327039 ], [ 20.473022, 48.563885 ], [ 20.802612, 48.625647 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.997274 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 21.560669, 44.770137 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.417732 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.995241 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 22.939453, 47.997274 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.157349, 40.950863 ], [ 8.712158, 40.901058 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.804321, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.936157, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.602202 ], [ 12.590332, 44.091531 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.924683, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.517700, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.189575, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.921637 ], [ 9.700928, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.426514, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.695680 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.800537, 45.710015 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.441642 ], [ 9.920654, 46.316584 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.046753, 46.751153 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.939453, 41.459195 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.462036, 41.516804 ], [ 20.588379, 41.857288 ], [ 20.714722, 41.849105 ], [ 20.764160, 42.053372 ], [ 21.351929, 42.208176 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.939453, 41.335576 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.890503, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.867124 ], [ 21.269531, 55.191412 ] ] ] } } ] } @@ -1786,11 +1690,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.551147, 66.687784 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.193792 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.573608, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.991577, 61.799093 ], [ 12.628784, 61.293988 ], [ 12.299194, 60.116882 ], [ 11.469727, 59.431110 ], [ 11.024780, 58.856383 ], [ 10.354614, 59.470199 ], [ 8.382568, 58.312374 ], [ 7.047729, 58.077876 ], [ 5.663452, 58.588299 ], [ 5.306396, 59.662192 ], [ 4.993286, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.552856, 63.452964 ], [ 10.530396, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.342896, 66.687784 ], [ 15.551147, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.818864 ], [ 22.939453, 64.057785 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.105747 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.623291, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.024780, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.628784, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.216634 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.610909 ], [ 10.914917, 56.459455 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.191424 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.541315 ], [ 8.256226, 56.809901 ], [ 8.541870, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.818864 ], [ 22.939453, 64.057785 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.521973, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.032157 ], [ 21.088257, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ] ] ] } } , @@ -1802,9 +1706,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.255741 ], [ 22.500000, 70.218593 ], [ 22.939453, 70.205576 ], [ 22.939453, 68.863517 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 21.247559, 69.370638 ], [ 20.643311, 69.105818 ], [ 20.022583, 69.064638 ], [ 19.879761, 68.407268 ], [ 17.995605, 68.566406 ], [ 17.726440, 68.009628 ], [ 16.770630, 68.013742 ], [ 15.391846, 66.513260 ], [ 15.238037, 66.337505 ], [ 12.908936, 66.337505 ], [ 13.128662, 66.513260 ], [ 14.760132, 67.811319 ], [ 16.435547, 68.562391 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.247559, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.863517 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.391090 ], [ 21.978149, 68.616534 ], [ 20.643311, 69.105818 ], [ 21.247559, 69.370638 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.238037, 66.337505 ], [ 15.391846, 66.513260 ], [ 16.111450, 67.301737 ], [ 16.770630, 68.013742 ], [ 17.726440, 68.009628 ], [ 17.995605, 68.566406 ], [ 19.879761, 68.407268 ], [ 20.022583, 69.064638 ], [ 20.643311, 69.105818 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.247559, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.863517 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.391090 ], [ 21.978149, 68.616534 ], [ 20.643311, 69.105818 ], [ 21.247559, 69.370638 ] ] ] } } ] } ] } , @@ -1850,16 +1754,20 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.725684 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.214591 ], [ 32.832642, -26.740705 ], [ 32.069092, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.750488, -25.482951 ], [ 31.931763, -24.367114 ], [ 31.668091, -23.659619 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 31.860352, -21.534847 ], [ 35.271606, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.015137, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.784668, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.388698 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.278640 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.668091, -23.659619 ], [ 31.931763, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.041870, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.679321, -26.396790 ], [ 30.684814, -26.745610 ], [ 31.283569, -27.283926 ], [ 31.865845, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.832642, -26.740705 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.299544 ], [ 32.200928, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.899048, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.053101, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.224903 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.664925 ], [ 25.779419, -33.943360 ], [ 25.175171, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.593140, -33.792844 ], [ 22.988892, -33.916013 ], [ 22.571411, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.278640 ], [ 22.500000, -26.032106 ], [ 22.576904, -25.977799 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.388698 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.849485 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.873992 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.976440, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.986058 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.129028, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.767212, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.586182, -0.587758 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.866333, 0.439449 ], [ 34.129028, 0.439449 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.319092, 0.439449 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.039185, -0.917319 ], [ 41.808472, -1.444549 ], [ 41.583252, -1.680667 ], [ 40.995483, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.989990, 0.439449 ], [ 43.319092, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, -12.897489 ], [ 22.060547, -9.730714 ], [ 22.208862, -9.893099 ], [ 22.153931, -11.086775 ], [ 22.401123, -10.995120 ], [ 22.500000, -11.000512 ], [ 22.835083, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.911743, -10.925011 ], [ 24.016113, -11.237674 ], [ 23.906250, -11.722167 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.913552 ], [ 22.500000, -12.902844 ], [ 22.060547, -12.897489 ] ] ], [ [ [ 22.060547, -16.288506 ], [ 22.500000, -16.820316 ], [ 22.560425, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.680662 ], [ 22.060547, -17.780074 ], [ 22.060547, -16.288506 ] ] ] ] } } @@ -1868,23 +1776,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.586182, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.289551, -1.620267 ], [ 29.256592, -2.213195 ], [ 29.119263, -2.290039 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.938436 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.792080 ], [ 28.641357, -11.969471 ], [ 29.338989, -12.361466 ], [ 29.613647, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.932495, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.152466, -12.270231 ], [ 27.388916, -12.130635 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.329253 ], [ 24.785156, -11.237674 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.925011 ], [ 23.455811, -10.865676 ], [ 22.835083, -11.016689 ], [ 22.500000, -11.000512 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.893099 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.470581, -2.416276 ], [ 30.525513, -2.805885 ], [ 30.745239, -3.036298 ], [ 30.750732, -3.359889 ], [ 30.503540, -3.568248 ], [ 30.119019, -4.088932 ], [ 29.750977, -4.450474 ], [ 29.338989, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.630127, -2.915611 ], [ 29.937744, -2.350415 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.558228, -8.760224 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.112793, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.211670, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.272827, -15.506619 ], [ 29.514771, -15.644197 ], [ 28.948975, -16.040534 ], [ 28.828125, -16.388661 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.042847, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.081787, -17.659726 ], [ 25.076294, -17.581194 ], [ 24.680786, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.560425, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.722167 ], [ 24.016113, -11.237674 ], [ 23.911743, -10.925011 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.329253 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.130635 ], [ 28.152466, -12.270231 ], [ 28.526001, -12.699292 ], [ 28.932495, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.613647, -12.178965 ], [ 29.338989, -12.361466 ], [ 28.641357, -11.969471 ], [ 28.372192, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.238674 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.272827, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.849365, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.657349, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.100909 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.020630, -21.483741 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.647583, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.042847, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.040534 ], [ 29.514771, -15.644197 ], [ 30.272827, -15.506619 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.765503, -3.677892 ], [ 39.204712, -4.674980 ], [ 38.743286, -5.911117 ], [ 38.798218, -6.473609 ], [ 39.440918, -6.839170 ], [ 39.468384, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.483239 ], [ 39.534302, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.314331, -10.314919 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.270000 ], [ 37.468872, -11.566144 ], [ 36.776733, -11.593051 ], [ 36.513062, -11.722167 ], [ 35.310059, -11.436955 ], [ 34.557495, -11.517705 ], [ 34.277344, -10.158153 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.558228, -8.760224 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.517272 ], [ 29.421387, -5.938436 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.750977, -4.450474 ], [ 30.119019, -4.088932 ], [ 30.503540, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.745239, -3.036298 ], [ 30.525513, -2.805885 ], [ 30.470581, -2.416276 ], [ 30.756226, -2.284551 ], [ 30.816650, -1.697139 ], [ 30.421143, -1.137010 ], [ 30.767212, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.797974, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.674980 ], [ 37.765503, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.158153 ], [ 34.557495, -11.517705 ], [ 34.277344, -12.280966 ], [ 34.557495, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.266113, -13.886079 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.337524, -16.109153 ], [ 35.035400, -16.799282 ], [ 34.381714, -16.183024 ], [ 34.304810, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.063110, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.211670, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.314331, -10.314919 ], [ 40.479126, -10.763159 ], [ 40.435181, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.200488 ], [ 40.775757, -14.689881 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.098792 ], [ 37.408447, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.782211 ], [ 34.700317, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.557251, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.272827, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.063110, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.304810, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.799282 ], [ 35.337524, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.266113, -13.886079 ], [ 34.909058, -13.565902 ], [ 34.557495, -13.581921 ], [ 34.277344, -12.280966 ], [ 34.557495, -11.517705 ], [ 35.310059, -11.436955 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.593051 ], [ 37.468872, -11.566144 ], [ 37.825928, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.314331, -10.314919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.998295 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.081787, -17.659726 ], [ 25.263062, -17.738223 ], [ 25.647583, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.937988, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.576660, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.659726 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.100909 ], [ 30.322266, -22.273847 ], [ 30.657349, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.223145, -22.350076 ], [ 28.937988, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.055096 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.161361 ], [ 43.895874, -20.828010 ], [ 44.373779, -20.071411 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.408305 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.214675 ], [ 44.945068, -16.177749 ], [ 45.000000, -16.156645 ], [ 45.439453, -15.998295 ] ] ] } } ] } ] } , @@ -1892,62 +1798,64 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.350076 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.840332, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.060547, 20.437308 ], [ 22.060547, 22.350076 ], [ 24.999390, 22.350076 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.949363 ], [ 27.213135, 5.550381 ], [ 27.372437, 5.233187 ], [ 27.042847, 5.129243 ], [ 26.400146, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.173011 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.899414 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.060547, 4.121806 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.973550 ], [ 22.500000, 11.043647 ], [ 22.862549, 11.140677 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.021851, 15.681221 ], [ 22.565918, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.510986, 11.679135 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.973550 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.479858, 18.615013 ], [ 38.408203, 17.999632 ], [ 37.902832, 17.429270 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.293779 ], [ 36.320801, 14.822681 ], [ 36.430664, 14.424040 ], [ 36.271362, 13.565902 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.255371, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.085327, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.673340, 12.023203 ], [ 32.074585, 11.974845 ], [ 32.316284, 11.679135 ], [ 32.398682, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.811916 ], [ 30.838623, 9.709057 ], [ 29.998169, 10.293301 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.795678 ], [ 28.998413, 9.606166 ], [ 28.965454, 9.400291 ], [ 27.971191, 9.400291 ], [ 27.833862, 9.606166 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.960693, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.811916 ], [ 24.537964, 8.917634 ], [ 24.191895, 8.727648 ], [ 23.884277, 8.619041 ], [ 23.807373, 8.667918 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.554688, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.862549, 11.140677 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.500000, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.328260 ], [ 22.500000, 14.785505 ], [ 22.565918, 14.944785 ], [ 23.021851, 15.681221 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.085327, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.787194 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.828261 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 33.387451, 3.787522 ], [ 32.684326, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.427124, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.372437, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.949363 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.565430, 8.227801 ], [ 23.884277, 8.619041 ], [ 24.191895, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.811916 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.960693, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.606166 ], [ 27.971191, 9.400291 ], [ 28.965454, 9.400291 ], [ 28.998413, 9.606166 ], [ 29.514771, 9.795678 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.293301 ], [ 30.838623, 9.709057 ], [ 31.354980, 9.811916 ], [ 31.849365, 10.531020 ], [ 32.398682, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.974845 ], [ 32.673340, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.060669, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.801439 ], [ 42.604980, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.913791 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.480591, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.178467, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.679565, -0.439449 ], [ 29.816895, -0.203247 ], [ 29.833374, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.850874 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.793003 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.924356 ], [ 39.814453, 15.437796 ], [ 41.176758, 14.493190 ], [ 41.737061, 13.923404 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.120595 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.822681 ], [ 36.754761, 16.293779 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.429270 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.463874 ], [ 42.775269, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.753540, 11.049038 ], [ 41.737061, 11.356182 ], [ 41.660156, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.543840 ], [ 42.780762, 12.458033 ], [ 43.082886, 12.699292 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.337114 ], [ 35.815430, 4.778995 ], [ 36.161499, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.122559, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.671875, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.420208 ], [ 39.852905, 3.836851 ], [ 40.770264, 4.258768 ], [ 41.171265, 3.919060 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.060669, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.077790 ], [ 42.269897, 17.476432 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.120595 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 42.000732, 12.098410 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.356182 ], [ 41.753540, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.775269, 10.925011 ], [ 42.561035, 10.574222 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.676147, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.253290 ], [ 42.127075, 4.236856 ], [ 41.852417, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.852905, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.617589 ], [ 38.435669, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.853638, 4.450474 ], [ 36.161499, 4.450474 ], [ 35.815430, 4.778995 ], [ 35.815430, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.828261 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.787194 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.255371, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.565902 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.060669, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.068777 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.801439 ], [ 42.604980, 15.215288 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.913791 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.463874 ], [ 43.472900, 11.275387 ], [ 43.665161, 10.865676 ], [ 44.115601, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.666006 ], [ 45.439453, 8.542998 ], [ 45.000000, 8.705929 ], [ 43.676147, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.775269, 10.925011 ], [ 43.143311, 11.463874 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.960677 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.473145, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.783938 ], [ 41.852417, 3.919060 ], [ 42.127075, 4.236856 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.959615 ], [ 44.961548, 5.003394 ], [ 45.000000, 5.041699 ], [ 45.439453, 5.506640 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.151128 ], [ 27.042847, 5.129243 ], [ 27.372437, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.427124, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.850874 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.816895, -0.203247 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.121806 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.899414 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.173011 ], [ 25.653076, 5.255068 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.337114 ], [ 35.815430, 4.778995 ], [ 36.161499, 4.450474 ], [ 36.853638, 4.450474 ], [ 38.122559, 3.601142 ], [ 38.435669, 3.590178 ], [ 38.671875, 3.617589 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.420208 ], [ 39.852905, 3.836851 ], [ 40.770264, 4.258768 ], [ 41.171265, 3.919060 ], [ 41.852417, 3.919060 ], [ 40.979004, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.178467, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.933228, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.189560 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.900878 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.090574 ], [ 24.955444, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.697510, 35.706377 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.921971 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.281501 ], [ 23.697510, 35.706377 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 24.406128, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.340454, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.258569 ], [ 22.851562, 39.660685 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.972222 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.408021 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.933228, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.670685 ], [ 33.898315, 35.245619 ], [ 33.975220, 35.056980 ], [ 33.865356, 35.092945 ], [ 33.673096, 35.016501 ], [ 33.524780, 35.038992 ], [ 33.475342, 34.998504 ], [ 33.453369, 35.101934 ], [ 33.381958, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.920532, 35.088451 ], [ 32.733765, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.384572 ], [ 33.667603, 35.371135 ], [ 34.573975, 35.670685 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.381958, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 34.998504 ], [ 33.524780, 35.038992 ], [ 33.673096, 35.016501 ], [ 33.865356, 35.092945 ], [ 33.975220, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.492065, 34.700977 ], [ 32.255859, 35.101934 ], [ 32.733765, 35.137879 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.493530, 31.587894 ], [ 27.460327, 31.320794 ], [ 28.449097, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.475524 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.935213 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.920044, 29.501769 ], [ 34.639893, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.134766, 28.415560 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.491333, 23.750154 ], [ 35.524292, 23.099944 ], [ 36.688843, 22.202663 ], [ 36.864624, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.955444, 30.661541 ], [ 24.801636, 31.090574 ], [ 25.164185, 31.569175 ], [ 26.493530, 31.587894 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.996704, 34.646766 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.458374, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.480347, 33.906896 ], [ 35.996704, 34.646766 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.654175, 40.254377 ], [ 44.401245, 40.006580 ], [ 44.791260, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.291382, 37.002553 ], [ 43.939819, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.257563 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.567012 ], [ 34.716797, 36.796090 ], [ 34.024658, 36.222119 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.646385 ], [ 30.618896, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.001953, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.401245, 40.006580 ], [ 43.654175, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.383253 ], [ 43.939819, 37.256566 ], [ 44.291382, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.891551 ], [ 39.193726, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.420505 ], [ 41.385498, 35.630512 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.275435 ], [ 35.837402, 32.870360 ], [ 35.700073, 32.717977 ], [ 35.722046, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 34.974976, 31.868228 ], [ 35.227661, 31.756196 ], [ 34.969482, 31.615966 ], [ 34.925537, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.920044, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.953003, 32.828827 ], [ 35.095825, 33.082337 ], [ 35.128784, 33.091542 ], [ 35.458374, 33.086939 ], [ 35.551758, 33.266250 ], [ 35.820923, 33.275435 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.864624, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 21.999082 ], [ 36.864624, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.509623 ], [ 45.357056, 40.559721 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.193726, 32.161663 ], [ 40.402222, 31.891551 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.067383, 22.578510 ], [ 38.490601, 23.689805 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.128784, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.608637 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.358239 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.506549 ], [ 36.738281, 29.864465 ], [ 37.501831, 30.002517 ], [ 37.666626, 30.339695 ], [ 37.996216, 30.510217 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.193726, 32.161663 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ] ] } } ] } ] } @@ -1958,8 +1866,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.285723 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 22.060547, 48.410972 ], [ 22.060547, 49.285723 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.461548, 44.703802 ], [ 22.500000, 44.680372 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.429857 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.209180 ], [ 22.604370, 42.900113 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.581400 ], [ 22.500000, 42.512602 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.322001 ], [ 22.060547, 42.309815 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.461548, 44.703802 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.767944, 56.022948 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.767944, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.848153 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.914046 ], [ 23.241577, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.648315, 54.581613 ], [ 22.758179, 54.857640 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } @@ -1968,32 +1874,30 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.140015, 51.566827 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.774682 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.391968, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.067139, 49.600030 ], [ 40.078125, 49.307217 ], [ 39.677124, 48.785152 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.103784 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.274834 ], [ 35.018921, 45.652448 ], [ 35.507812, 45.410020 ], [ 36.529541, 45.471688 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.673584, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.305803 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.598666 ], [ 28.657837, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.517296 ], [ 29.168701, 46.381044 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.675826 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.668823, 48.118434 ], [ 28.256836, 48.155093 ], [ 27.520752, 48.465637 ], [ 26.856079, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.944214, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.708740, 47.883197 ], [ 22.642822, 48.151428 ], [ 22.500000, 48.221013 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.774658, 49.027063 ], [ 22.516479, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.426019 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.573656 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.552979, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.783447, 52.103131 ], [ 32.156982, 52.062623 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.750000, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.088013, 48.421910 ], [ 22.500000, 48.221013 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.883197 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 48.410972 ], [ 22.088013, 48.421910 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.921997, 48.122101 ], [ 27.235107, 47.827908 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.157959, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.305803 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.624634, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.240601, 44.174325 ], [ 26.065063, 43.945372 ], [ 25.570679, 43.687736 ], [ 24.098511, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.410240 ], [ 22.500000, 44.429857 ], [ 22.703247, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.703802 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.708740, 47.883197 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.400635, 47.982568 ], [ 24.867554, 47.739323 ], [ 25.208130, 47.890564 ], [ 25.944214, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.155093 ], [ 28.668823, 48.118434 ], [ 29.124756, 47.850031 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.675826 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.168701, 46.381044 ], [ 29.069824, 46.517296 ], [ 28.861084, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.657837, 45.939691 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.921997, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.856079, 48.367198 ], [ 27.520752, 48.465637 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.928833, 42.553080 ], [ 44.538574, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.508552 ], [ 45.439453, 41.327326 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.621460, 41.582580 ], [ 41.555786, 41.537366 ], [ 41.704102, 41.963575 ], [ 41.451416, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.319824, 43.129052 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.552529 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.322001 ], [ 22.500000, 42.244785 ], [ 22.879028, 42.000325 ], [ 22.950439, 41.339700 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 42.309815 ], [ 22.379150, 42.322001 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.688969 ], [ 23.763428, 40.647304 ], [ 22.060547, 40.647304 ], [ 22.060547, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.306698 ], [ 22.950439, 41.339700 ], [ 23.692017, 41.310824 ], [ 24.494019, 41.582580 ], [ 25.197144, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.537366 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.736572, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.020733 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.143042 ], [ 27.998657, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.143042 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.428467, 40.647304 ], [ 43.736572, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.508552 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.710696 ], [ 43.928833, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.638122 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.785152 ], [ 40.078125, 49.307217 ], [ 40.067139, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.140015, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.541748, 52.742943 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.404175, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.156001 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.081512 ], [ 30.871582, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.211722 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.867834 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.508552 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.710696 ], [ 43.928833, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.436966 ], [ 38.677368, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.638122 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.103784 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.785152 ], [ 40.078125, 49.307217 ], [ 40.067139, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.391968, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.140015, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.062623 ], [ 31.783447, 52.103131 ], [ 31.541748, 52.742943 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.404175, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.788940, 53.975474 ], [ 31.382446, 54.156001 ], [ 30.756226, 54.813348 ], [ 30.970459, 55.081512 ], [ 30.871582, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.893799, 55.788929 ], [ 29.371948, 55.671389 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.857640 ], [ 22.648315, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.322510, 66.687784 ], [ 29.503784, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.203987 ], [ 30.036621, 63.553446 ], [ 31.514282, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.780916 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.424699 ], [ 24.494019, 60.056616 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.445068, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.900757, 66.006852 ], [ 23.565674, 66.396961 ], [ 23.565674, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.322510, 66.687784 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.900757, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.635623 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.322510, 66.687784 ], [ 29.503784, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.542236, 64.949139 ], [ 30.443115, 64.203987 ], [ 30.036621, 63.553446 ], [ 31.514282, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.780916 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.424699 ], [ 24.494019, 60.056616 ], [ 22.868042, 59.847574 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.445068, 63.818864 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.900757, 66.006852 ], [ 23.565674, 66.396961 ], [ 23.565674, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.322510, 66.687784 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.477450 ], [ 27.290039, 57.474497 ], [ 27.767944, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.174438, 56.170023 ], [ 27.075806, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 24.999390, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.521973, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 24.999390, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } @@ -2008,10 +1912,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.163452, 71.185982 ], [ 31.294556, 70.453346 ], [ 30.003662, 70.186965 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 29.014893, 69.765657 ], [ 27.734985, 70.164610 ], [ 26.180420, 69.824471 ], [ 25.691528, 69.092100 ], [ 24.735718, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.218593 ], [ 23.021851, 70.201855 ], [ 24.548950, 71.031249 ], [ 26.372681, 70.986560 ], [ 28.163452, 71.185982 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.734985, 70.164610 ], [ 29.014893, 69.765657 ], [ 28.591919, 69.064638 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.503784, 66.513260 ], [ 29.679565, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.565674, 66.513260 ], [ 23.538208, 67.935460 ], [ 22.500000, 68.391090 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.984016 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.664551, 68.891231 ], [ 24.735718, 68.648556 ], [ 25.691528, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.734985, 70.164610 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.582459 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.935460 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.396961 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.582459 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.734985, 70.164610 ], [ 29.014893, 69.765657 ], [ 28.591919, 69.064638 ], [ 28.443604, 68.364776 ], [ 29.976196, 67.699025 ], [ 29.053345, 66.945123 ], [ 29.503784, 66.513260 ], [ 29.679565, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.396961 ], [ 23.565674, 66.513260 ], [ 23.538208, 67.935460 ], [ 22.500000, 68.391090 ], [ 22.060547, 68.582459 ], [ 22.060547, 68.984016 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.664551, 68.891231 ], [ 24.735718, 68.648556 ], [ 25.691528, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.734985, 70.164610 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.414185, 66.337505 ], [ 35.381470, 66.513260 ], [ 33.920288, 66.759418 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 33.848877, 66.337505 ], [ 29.679565, 66.337505 ], [ 29.503784, 66.513260 ], [ 29.053345, 66.945123 ], [ 29.976196, 67.699025 ], [ 28.443604, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.905780 ], [ 33.777466, 69.300853 ], [ 36.513062, 69.062675 ], [ 40.292358, 67.933397 ], [ 41.061401, 67.458082 ], [ 41.127319, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.166016, 66.337505 ], [ 36.414185, 66.337505 ] ] ], [ [ [ 41.759033, 66.337505 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.231201, 66.337505 ], [ 41.759033, 66.337505 ] ] ], [ [ [ 44.176025, 66.337505 ], [ 44.324341, 66.513260 ], [ 44.533081, 66.757250 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.570421 ], [ 45.000000, 68.393113 ], [ 45.439453, 68.342487 ], [ 45.439453, 66.337505 ], [ 44.176025, 66.337505 ] ] ] ] } } ] } ] } @@ -2074,12 +1978,12 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.442505, 22.350076 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 54.997559, 19.999160 ], [ 51.998291, 18.999803 ], [ 49.114380, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.466431, 17.114543 ], [ 46.999512, 16.951724 ], [ 46.752319, 17.282464 ], [ 46.367798, 17.235252 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.560547, 17.418787 ], [ 44.560547, 22.350076 ], [ 55.442505, 22.350076 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.863362 ], [ 45.000000, 8.705929 ], [ 46.950073, 7.999397 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.041699 ], [ 44.961548, 5.003394 ], [ 44.560547, 4.986977 ], [ 44.560547, 8.863362 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.998291, 18.999803 ], [ 53.107910, 16.651981 ], [ 52.382812, 16.383391 ], [ 52.190552, 15.940202 ], [ 52.168579, 15.596584 ], [ 51.174316, 15.172879 ], [ 49.575806, 14.711135 ], [ 48.680420, 14.003367 ], [ 48.240967, 13.950061 ], [ 47.938843, 14.008696 ], [ 47.356567, 13.592600 ], [ 46.719360, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.956383 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.560547, 12.720726 ], [ 44.560547, 17.418787 ], [ 45.000000, 17.429270 ], [ 45.214233, 17.434511 ], [ 45.401001, 17.334908 ], [ 46.367798, 17.235252 ], [ 46.752319, 17.282464 ], [ 46.999512, 16.951724 ], [ 47.466431, 17.114543 ], [ 48.186035, 18.166730 ], [ 49.114380, 18.615013 ], [ 51.998291, 18.999803 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.442505, 22.350076 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 54.997559, 19.999160 ], [ 51.998291, 18.999803 ], [ 49.114380, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.466431, 17.114543 ], [ 46.999512, 16.951724 ], [ 46.752319, 17.282464 ], [ 46.367798, 17.235252 ], [ 45.401001, 17.334908 ], [ 45.214233, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.560547, 17.418787 ], [ 44.560547, 22.350076 ], [ 55.442505, 22.350076 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.804077, 22.350076 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.282227, 21.432617 ], [ 58.859253, 21.115249 ], [ 58.485718, 20.427013 ], [ 58.035278, 20.483628 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.607056, 18.573362 ], [ 56.513672, 18.088423 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.230005 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.651981 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.999160 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.442505, 22.350076 ], [ 59.804077, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.944092, 11.393879 ], [ 48.938599, 10.984335 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 8.004837 ], [ 46.950073, 7.999397 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.547221 ], [ 45.554810, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.129897 ], [ 48.021240, 11.194568 ], [ 48.378296, 11.377724 ], [ 48.949585, 11.410033 ] ] ] } } @@ -2096,27 +2000,31 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.984045 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.357056, 40.559721 ], [ 45.889893, 40.216635 ], [ 45.609741, 39.901309 ], [ 46.032715, 39.626846 ], [ 46.483154, 39.465885 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.321550 ], [ 45.741577, 39.474365 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.884450 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.679610 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.987028 ], [ 48.004761, 30.987028 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.971802, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.180941 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.774780, 37.169072 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.714478, 41.170384 ], [ 66.681519, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.969849, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.969849, 41.310824 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.258569 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.465885 ], [ 46.032715, 39.626846 ], [ 45.609741, 39.901309 ], [ 45.889893, 40.216635 ], [ 45.357056, 40.559721 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.321550 ], [ 46.142578, 38.741231 ], [ 45.455933, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.180941 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.691637 ], [ 50.213013, 26.278640 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.329132 ], [ 50.657959, 25.000994 ], [ 50.811768, 24.756808 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.619263, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.206299, 22.710323 ], [ 55.667725, 21.999082 ], [ 55.645752, 21.943046 ], [ 55.508423, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.455933, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.965854 ], [ 56.178589, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.030786 ], [ 58.436279, 37.522797 ], [ 59.232788, 37.413800 ], [ 60.375366, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.678640 ], [ 60.963135, 33.527658 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.381779 ], [ 61.781616, 30.737114 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.770630, 28.700225 ], [ 62.726440, 28.260844 ], [ 62.753906, 27.376645 ], [ 63.231812, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.495972, 25.080624 ], [ 59.617310, 25.378772 ], [ 58.524170, 25.611810 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.966142 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.850220, 28.815800 ], [ 50.114136, 30.149877 ], [ 49.575806, 29.983487 ], [ 48.938599, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.987028 ], [ 47.686157, 30.987028 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.679610 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.971802, 29.973970 ], [ 48.180542, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.516724, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.103384 ], [ 67.939453, 31.606610 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.044556, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.319931 ], [ 60.875244, 29.831114 ], [ 61.781616, 30.737114 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.678640 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.272532 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.009117 ], [ 64.544678, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.974515 ], [ 66.516724, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.544678, 36.310699 ], [ 63.984375, 36.009117 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.272532 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.375366, 36.527295 ], [ 59.232788, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.030786 ], [ 56.618042, 38.121593 ], [ 56.178589, 37.935533 ], [ 55.513916, 37.965854 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.734131, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.291797 ], [ 53.355103, 39.977120 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 56.145630, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.976492 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.516724, 37.361426 ], [ 66.544189, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.926295 ], [ 56.843262, 24.241956 ], [ 57.403564, 23.880815 ], [ 58.139648, 23.750154 ], [ 58.727417, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.804077, 22.309426 ], [ 59.578857, 21.943046 ], [ 59.337158, 21.534847 ], [ 55.508423, 21.534847 ], [ 55.645752, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.206299, 22.710323 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.936055 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.272005 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.926295 ] ] ], [ [ [ 56.359863, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.068726, 26.056783 ], [ 56.359863, 26.396790 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.103384 ], [ 67.829590, 37.147182 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.976492 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.976492 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.528198, 25.234758 ], [ 62.907715, 25.219851 ], [ 61.495972, 25.080624 ], [ 61.875000, 26.239229 ], [ 63.314209, 26.755421 ], [ 63.231812, 27.215556 ], [ 62.753906, 27.376645 ], [ 62.726440, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.550659, 29.319931 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.044556, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.737114 ], [ 66.939697, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } ] } ] } , @@ -2126,15 +2034,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.211722 ], [ 45.181274, 40.984045 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.428467, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.936610 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.600710 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.737915, 52.719658 ], [ 60.924683, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.044848 ], [ 55.717163, 50.621588 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.576050, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.466675, 48.392738 ], [ 47.312622, 47.717154 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.562637 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.936610 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.714478, 41.170384 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.996243 ], [ 66.099243, 42.996612 ], [ 64.901733, 43.727445 ], [ 63.187866, 43.651975 ], [ 62.012329, 43.504737 ], [ 61.056519, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.931396, 44.995883 ], [ 55.969849, 41.306698 ], [ 55.453491, 41.261291 ], [ 54.755859, 42.045213 ], [ 54.080200, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.783601 ], [ 52.448730, 42.028894 ], [ 52.690430, 42.443728 ], [ 52.503662, 42.791370 ], [ 51.344604, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.516093 ], [ 51.317139, 45.247821 ], [ 52.168579, 45.410020 ], [ 53.041992, 45.259422 ], [ 53.223267, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.047669 ], [ 50.031738, 46.607941 ], [ 49.103394, 46.399988 ], [ 48.592529, 46.562637 ], [ 48.696899, 47.073863 ], [ 48.059692, 47.743017 ], [ 47.312622, 47.717154 ], [ 46.466675, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.752319, 49.357334 ], [ 47.548828, 50.454007 ], [ 48.576050, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.530640, 51.027576 ], [ 55.717163, 50.621588 ], [ 56.777344, 51.044848 ], [ 58.364868, 51.062113 ], [ 59.644775, 50.544854 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.924683, 52.445966 ], [ 60.737915, 52.719658 ], [ 61.699219, 52.978416 ], [ 60.979614, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.176392, 54.354956 ], [ 65.665283, 54.600710 ], [ 67.500000, 54.873446 ], [ 67.939453, 54.936610 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.108887, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.211722 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.499634, 41.062786 ], [ 46.636963, 41.182788 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.869561 ], [ 52.816772, 41.137296 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.326062 ], [ 54.755859, 42.045213 ], [ 55.453491, 41.261291 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.974365, 42.224450 ], [ 60.084229, 41.426253 ], [ 60.463257, 41.219986 ], [ 61.545410, 41.265421 ], [ 61.880493, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.094727, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.056519, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.651975 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.996243 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.170384 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.880493, 41.083492 ], [ 61.545410, 41.265421 ], [ 60.463257, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.224450 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.936610 ], [ 67.500000, 54.873446 ], [ 65.665283, 54.600710 ], [ 65.176392, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.737915, 52.719658 ], [ 60.924683, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.044848 ], [ 55.717163, 50.621588 ], [ 54.530640, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.576050, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.357334 ], [ 47.043457, 49.152970 ], [ 46.466675, 48.392738 ], [ 47.312622, 47.717154 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.562637 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.774536, 42.094146 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } ] } ] } , @@ -2202,21 +2110,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.978271, 22.350076 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 86.973267, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.500854, 20.153942 ], [ 85.061646, 19.476950 ], [ 83.941040, 18.302381 ], [ 83.188477, 17.670194 ], [ 82.194214, 17.014768 ], [ 82.188721, 16.557227 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.326538, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.865112, 12.055437 ], [ 79.859619, 10.358151 ], [ 79.337769, 10.309515 ], [ 78.887329, 9.546583 ], [ 79.189453, 9.215982 ], [ 78.277588, 8.933914 ], [ 77.942505, 8.254983 ], [ 77.541504, 7.966758 ], [ 76.591187, 8.901353 ], [ 76.129761, 10.298706 ], [ 75.745239, 11.307708 ], [ 75.393677, 11.781325 ], [ 74.866333, 12.742158 ], [ 74.619141, 13.992706 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.119507, 17.926476 ], [ 72.822876, 19.207429 ], [ 72.822876, 20.421865 ], [ 72.630615, 21.355897 ], [ 71.174927, 20.756114 ], [ 70.471802, 20.879343 ], [ 69.323730, 21.943046 ], [ 69.164429, 22.090730 ], [ 69.510498, 22.350076 ], [ 88.978271, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.978271, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.822742 ], [ 80.837402, 9.270201 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.520427 ], [ 81.639404, 6.479067 ], [ 81.216431, 6.195168 ], [ 80.348511, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.822742 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.236508 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.389893, 38.156157 ], [ 67.829590, 37.147182 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.157978 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.027100, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.636353, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.465088, 40.563895 ], [ 74.778442, 40.367474 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.605688 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.496652 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.721274 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.554688, 31.714149 ], [ 67.791138, 31.583215 ], [ 67.681274, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.060547, 31.306715 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.147182 ], [ 68.137207, 37.024484 ], [ 68.856812, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.487995 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.245992 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.605688 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.866333, 38.380422 ], [ 74.827881, 37.991834 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.496652 ], [ 72.636108, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.138877 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.856812, 37.343959 ], [ 68.137207, 37.024484 ], [ 67.829590, 37.147182 ], [ 68.389893, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.236508 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.506557 ], [ 74.240112, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.448853, 32.764181 ], [ 75.256348, 32.273200 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.449097, 29.978729 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.614624, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.306715 ], [ 67.500000, 31.302022 ], [ 67.681274, 31.302022 ], [ 67.791138, 31.583215 ], [ 68.554688, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.075742 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , @@ -2226,23 +2134,25 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.439453, 28.159190 ], [ 90.439453, 26.868181 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.445984 ], [ 89.357300, 26.012361 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.873901, 22.877440 ], [ 88.527832, 23.629427 ], [ 88.698120, 24.231938 ], [ 88.082886, 24.502145 ], [ 88.308105, 24.866503 ], [ 88.928833, 25.239727 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.445984 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.839862 ], [ 83.897095, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.326050, 30.116622 ], [ 81.524048, 30.424993 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.517679 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.190186, 35.897950 ], [ 75.899048, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.827881, 37.991834 ], [ 74.866333, 38.380422 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.367474 ], [ 75.465088, 40.563895 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.065552, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.036812 ], [ 73.427124, 53.491314 ], [ 74.382935, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.178512 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.380737, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.539551, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.357788, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.454094 ], [ 85.166016, 47.002734 ], [ 83.182983, 47.331377 ], [ 82.457886, 45.540984 ], [ 81.947021, 45.317392 ], [ 79.963989, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.178223, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.140015, 42.855833 ], [ 77.656860, 42.960443 ], [ 75.997925, 42.988576 ], [ 75.635376, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.092961 ], [ 73.487549, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.960693, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.258057, 40.663973 ], [ 68.076782, 40.979898 ], [ 67.983398, 41.137296 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 54.807017 ], [ 67.500000, 54.873446 ], [ 68.170166, 54.971308 ], [ 69.065552, 55.385352 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.960693, 42.265114 ], [ 71.257324, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.053589, 40.867834 ], [ 72.663574, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.664062, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.290771, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.157978 ], [ 67.500000, 41.149706 ], [ 67.983398, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.265114 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.635376, 42.875964 ], [ 75.997925, 42.988576 ], [ 77.656860, 42.960443 ], [ 79.140015, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.117798, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.053589, 40.867834 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.520917 ], [ 71.257324, 42.167475 ], [ 70.960693, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.487549, 42.500453 ], [ 73.646851, 43.092961 ], [ 74.212646, 43.297198 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.959160 ], [ 70.526733, 40.647304 ], [ 69.290771, 40.647304 ], [ 69.329224, 40.726446 ], [ 70.664062, 40.959160 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.471694 ], [ 87.753296, 49.296472 ], [ 87.357788, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.539551, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.380737, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.178512 ], [ 76.893311, 54.489187 ], [ 74.382935, 53.546836 ], [ 73.427124, 53.491314 ], [ 73.509521, 54.036812 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.065552, 55.385352 ], [ 68.170166, 54.971308 ], [ 67.500000, 54.873446 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.208549 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.851929, 48.070738 ], [ 88.011475, 48.600225 ], [ 87.753296, 49.296472 ], [ 88.807983, 49.471694 ], [ 90.000000, 50.011269 ], [ 90.439453, 50.208549 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.011475, 48.600225 ], [ 88.851929, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.117798, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.178223, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.963989, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.540984 ], [ 83.182983, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.720825, 47.454094 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.357788, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } ] } ] } , @@ -2302,20 +2212,14 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.694314 ], [ 110.571899, 19.254108 ], [ 110.341187, 18.677471 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.505657 ], [ 108.627319, 19.368159 ], [ 109.121704, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 111.846313, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.445557, 20.339476 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.396819 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.605835, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.766357, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.804810, 21.176729 ], [ 101.271973, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.116177 ], [ 99.321899, 22.350076 ], [ 101.766357, 22.350076 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.147583, 22.350076 ], [ 93.164062, 22.278931 ], [ 92.675171, 22.039822 ], [ 92.570801, 22.350076 ], [ 93.147583, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.570801, 22.350076 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.301636, 21.473518 ], [ 92.367554, 20.668766 ], [ 92.081909, 21.192094 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.713867, 22.350076 ], [ 92.570801, 22.350076 ] ] ], [ [ [ 90.560303, 22.350076 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.560303, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.209351, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.694314 ], [ 110.571899, 19.254108 ], [ 110.341187, 18.677471 ], [ 109.473267, 18.198044 ], [ 108.654785, 18.505657 ], [ 108.627319, 19.368159 ], [ 109.121704, 19.823558 ], [ 110.209351, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 111.846313, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.445557, 20.339476 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.396819 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.605835, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.766357, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.804810, 21.176729 ], [ 101.271973, 21.202337 ], [ 101.178589, 21.437730 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.116177 ], [ 99.321899, 22.350076 ], [ 101.766357, 22.350076 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.321899, 22.350076 ], [ 99.239502, 22.116177 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.178589, 21.437730 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.541626, 20.184879 ], [ 98.959351, 19.751194 ], [ 98.256226, 19.709829 ], [ 97.800293, 18.625425 ], [ 97.377319, 18.443136 ], [ 97.860718, 17.565484 ], [ 98.492432, 16.836090 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.310678 ], [ 98.190308, 15.125159 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.266680 ], [ 99.195557, 12.806445 ], [ 99.585571, 11.894228 ], [ 99.036255, 10.962764 ], [ 98.552856, 9.930977 ], [ 98.459473, 10.676803 ], [ 98.767090, 11.442339 ], [ 98.426514, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.366821, 15.712951 ], [ 94.806519, 15.802825 ], [ 94.191284, 16.040534 ], [ 94.531860, 17.277219 ], [ 94.323120, 18.213698 ], [ 93.543091, 19.368159 ], [ 93.663940, 19.725342 ], [ 93.076172, 19.854561 ], [ 92.367554, 20.668766 ], [ 92.301636, 21.473518 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.147583, 22.350076 ], [ 99.321899, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.761250 ], [ 104.820557, 19.885557 ], [ 104.183350, 19.627066 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.486911 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.204687 ], [ 107.380371, 14.200488 ], [ 106.495972, 14.572951 ], [ 106.045532, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 102.996826, 17.963058 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.057739, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.178589, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.176729 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.546875, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.057739, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 102.996826, 17.963058 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.776611, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.216064, 14.275030 ], [ 104.282227, 14.418720 ], [ 102.985840, 14.227113 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.629618 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.871216, 9.210560 ], [ 100.277710, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.812757 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.850078 ], [ 99.519653, 7.346123 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.036255, 10.962764 ], [ 99.585571, 11.894228 ], [ 99.195557, 12.806445 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.190308, 15.125159 ], [ 98.536377, 15.310678 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.709829 ], [ 98.959351, 19.751194 ], [ 99.541626, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.331665, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.985840, 14.227113 ], [ 104.282227, 14.418720 ], [ 105.216064, 14.275030 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.572951 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.278886 ], [ 109.335938, 13.427024 ], [ 109.198608, 11.668376 ], [ 108.363647, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.402588, 9.530332 ], [ 105.155640, 8.597316 ], [ 104.793091, 9.243093 ], [ 105.078735, 9.920155 ], [ 104.331665, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.380371, 14.200488 ], [ 107.567139, 15.204687 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.486911 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.627066 ], [ 104.820557, 19.885557 ], [ 104.436035, 20.761250 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 111.796875, 0.906334 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.774513 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.368408, 2.696148 ], [ 111.796875, 2.888180 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.812757 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.436279, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.227295, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.271973, 3.272146 ], [ 100.695190, 3.940981 ], [ 100.557861, 4.768047 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } @@ -2326,18 +2230,14 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.943046 ], [ 111.846313, 21.550175 ], [ 111.736450, 21.534847 ], [ 109.281006, 21.534847 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.726685, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.331421, 23.352343 ], [ 104.474487, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.172852, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.755371, 21.534847 ], [ 101.173096, 21.534847 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.116177 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.662720, 24.061512 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.673706, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.684692, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.910156, 28.338230 ], [ 97.327881, 28.260844 ], [ 96.251221, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.119385, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.411255, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.042895 ], [ 90.730591, 28.067133 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.560547, 28.081674 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.453948 ], [ 96.586304, 28.830238 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.260844 ], [ 97.404785, 27.882784 ], [ 97.053223, 27.698120 ], [ 97.135620, 27.083582 ], [ 96.421509, 27.264396 ], [ 95.125122, 26.573790 ], [ 95.152588, 26.002487 ], [ 94.603271, 25.160201 ], [ 94.553833, 24.676970 ], [ 94.108887, 23.850674 ], [ 93.323364, 24.076559 ], [ 93.284912, 23.044353 ], [ 93.059692, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.675171, 22.039822 ], [ 92.147827, 23.629427 ], [ 91.867676, 23.624395 ], [ 91.708374, 22.983681 ], [ 91.159058, 23.503552 ], [ 91.466675, 24.071544 ], [ 91.917114, 24.131715 ], [ 92.378540, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.873413, 25.130366 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.560547, 25.992612 ], [ 89.560547, 26.794654 ], [ 89.741821, 26.721080 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.877981 ], [ 91.219482, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.103882, 27.454665 ], [ 91.697388, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.411255, 28.642389 ], [ 94.564819, 29.276816 ], [ 95.405273, 29.032158 ], [ 96.119385, 29.453948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.730591, 28.067133 ], [ 91.257935, 28.042895 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.454665 ], [ 92.032471, 26.838776 ], [ 91.219482, 26.809364 ], [ 90.373535, 26.877981 ], [ 90.000000, 26.784847 ], [ 89.741821, 26.721080 ], [ 89.560547, 26.794654 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.992612 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.873413, 25.130366 ], [ 91.801758, 25.145285 ], [ 92.378540, 24.976099 ], [ 91.917114, 24.131715 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.708374, 22.983681 ], [ 91.867676, 23.624395 ], [ 92.147827, 23.629427 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.658691, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.703369 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.587769, 22.390714 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.992612 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.943046 ], [ 111.846313, 21.550175 ], [ 111.736450, 21.534847 ], [ 109.281006, 21.534847 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.726685, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.331421, 23.352343 ], [ 104.474487, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.705688, 22.710323 ], [ 102.172852, 22.466878 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.755371, 21.534847 ], [ 101.173096, 21.534847 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.560393 ], [ 99.981079, 21.744194 ], [ 99.585571, 21.943046 ], [ 99.239502, 22.116177 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.662720, 24.061512 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.673706, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.684692, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.910156, 28.338230 ], [ 97.327881, 28.260844 ], [ 96.251221, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.119385, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.411255, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.042895 ], [ 90.730591, 28.067133 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.560547, 28.081674 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.338230 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.585571, 21.943046 ], [ 99.981079, 21.744194 ], [ 100.415039, 21.560393 ], [ 101.151123, 21.851302 ], [ 101.173096, 21.534847 ], [ 92.658691, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.164062, 22.278931 ], [ 93.059692, 22.705255 ], [ 93.284912, 23.044353 ], [ 93.323364, 24.076559 ], [ 94.108887, 23.850674 ], [ 94.553833, 24.676970 ], [ 94.603271, 25.160201 ], [ 95.152588, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.421509, 27.264396 ], [ 97.135620, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.404785, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.910156, 28.338230 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.466878 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 102.826538, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 102.172852, 22.466878 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.331421, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.726685, 22.796439 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 108.023071, 21.534847 ], [ 102.826538, 21.534847 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.172852, 22.466878 ], [ 102.705688, 22.710323 ], [ 103.502197, 22.705255 ], [ 104.474487, 22.816694 ], [ 105.331421, 23.352343 ] ] ] } } ] } ] } @@ -2346,9 +2246,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 56.022948 ], [ 112.939453, 49.564415 ], [ 112.895508, 49.543034 ], [ 112.500000, 49.493107 ], [ 111.582642, 49.378797 ], [ 110.659790, 49.131408 ], [ 109.401855, 49.292889 ], [ 108.473511, 49.282140 ], [ 107.869263, 49.795450 ], [ 106.891479, 50.275299 ], [ 105.886230, 50.405017 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.088869 ], [ 102.255249, 50.509933 ], [ 102.062988, 51.258477 ], [ 100.887451, 51.515580 ], [ 99.981079, 51.635067 ], [ 98.860474, 52.045734 ], [ 97.827759, 51.010299 ], [ 98.234253, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.975955 ], [ 94.817505, 50.014799 ], [ 94.147339, 50.481978 ], [ 93.103638, 50.495958 ], [ 92.235718, 50.802463 ], [ 90.714111, 50.331436 ], [ 89.560547, 49.813176 ], [ 89.560547, 56.022948 ], [ 112.939453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.883197 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.972290, 46.886477 ], [ 90.587769, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.482666, 44.976457 ], [ 94.691162, 44.351350 ], [ 95.306396, 44.241264 ], [ 95.762329, 43.321181 ], [ 96.350098, 42.726839 ], [ 97.454224, 42.747012 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.662241 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.906365 ], [ 104.523926, 41.906365 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.480200 ], [ 109.242554, 42.520700 ], [ 110.412598, 42.871938 ], [ 111.132202, 43.405047 ], [ 111.829834, 43.743321 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.100669 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.883197 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.860474, 52.045734 ], [ 99.981079, 51.635067 ], [ 100.887451, 51.515580 ], [ 102.062988, 51.258477 ], [ 102.255249, 50.509933 ], [ 103.677979, 50.088869 ], [ 104.622803, 50.275299 ], [ 105.886230, 50.405017 ], [ 106.891479, 50.275299 ], [ 107.869263, 49.795450 ], [ 108.473511, 49.282140 ], [ 109.401855, 49.292889 ], [ 110.659790, 49.131408 ], [ 111.582642, 49.378797 ], [ 112.500000, 49.493107 ], [ 112.895508, 49.543034 ], [ 112.939453, 49.564415 ], [ 112.939453, 44.914249 ], [ 112.500000, 44.999767 ], [ 111.873779, 45.100669 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.743321 ], [ 111.132202, 43.405047 ], [ 110.412598, 42.871938 ], [ 109.242554, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.134895 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.906365 ], [ 103.309937, 41.906365 ], [ 101.832275, 42.516651 ], [ 100.843506, 42.662241 ], [ 99.514160, 42.524748 ], [ 97.454224, 42.747012 ], [ 96.350098, 42.726839 ], [ 95.762329, 43.321181 ], [ 95.306396, 44.241264 ], [ 94.691162, 44.351350 ], [ 93.482666, 44.976457 ], [ 92.131348, 45.116177 ], [ 90.944824, 45.286482 ], [ 90.587769, 45.721522 ], [ 90.972290, 46.886477 ], [ 90.280151, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.560547, 47.883197 ], [ 89.560547, 49.813176 ], [ 90.714111, 50.331436 ], [ 92.235718, 50.802463 ], [ 93.103638, 50.495958 ], [ 94.147339, 50.481978 ], [ 94.817505, 50.014799 ], [ 95.811768, 49.975955 ], [ 97.261963, 49.724479 ], [ 98.234253, 50.422519 ], [ 97.827759, 51.010299 ], [ 98.860474, 52.045734 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 47.883197 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.694974 ], [ 90.972290, 46.886477 ], [ 90.587769, 45.721522 ], [ 90.944824, 45.286482 ], [ 92.131348, 45.116177 ], [ 93.482666, 44.976457 ], [ 94.691162, 44.351350 ], [ 95.306396, 44.241264 ], [ 95.762329, 43.321181 ], [ 96.350098, 42.726839 ], [ 97.454224, 42.747012 ], [ 99.514160, 42.524748 ], [ 100.843506, 42.662241 ], [ 101.832275, 42.516651 ], [ 103.309937, 41.906365 ], [ 104.523926, 41.906365 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.134895 ], [ 107.742920, 42.480200 ], [ 109.242554, 42.520700 ], [ 110.412598, 42.871938 ], [ 111.132202, 43.405047 ], [ 111.829834, 43.743321 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.100669 ], [ 112.500000, 44.999767 ], [ 112.939453, 44.914249 ], [ 112.939453, 40.647304 ], [ 89.560547, 40.647304 ], [ 89.560547, 47.883197 ] ] ] } } ] } ] } , @@ -2426,12 +2326,14 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.050005 ], [ 112.939453, 21.943046 ], [ 112.060547, 21.626793 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 114.323730, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.323730, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.745239, 21.968519 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.179688, 5.408211 ], [ 119.108276, 5.014339 ], [ 118.438110, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.308069 ], [ 115.867310, 4.308069 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.499463 ], [ 112.379150, 1.411600 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.867554, 4.346411 ], [ 115.345459, 4.319024 ], [ 115.449829, 5.446491 ], [ 116.218872, 6.140555 ], [ 116.724243, 6.926427 ], [ 117.130737, 6.926427 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.745239, 21.968519 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.535034, 7.188101 ], [ 126.194458, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.612671, 7.836173 ], [ 123.294067, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.193551 ], [ 122.310791, 8.037473 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.695069 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.515836 ], [ 124.766235, 8.961045 ], [ 125.469360, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 121.322021, 18.505657 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.514038, 17.093542 ], [ 122.250366, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.503296, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.854370, 13.239945 ], [ 124.183960, 12.999205 ], [ 124.079590, 12.538478 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.555222 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.758947 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.283813, 16.035255 ], [ 120.388184, 17.596903 ], [ 120.717773, 18.505657 ], [ 121.322021, 18.505657 ] ] ], [ [ [ 124.266357, 12.559925 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.313094 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.799194, 10.136524 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.876099, 11.792080 ], [ 124.266357, 12.559925 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.277086 ], [ 123.623657, 9.952620 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.497314, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.318990 ], [ 117.174683, 8.369127 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.894228 ], [ 122.481079, 11.582288 ], [ 123.118286, 11.582288 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.964722, 10.903436 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.894228 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.525269, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.345459, 4.319024 ], [ 114.867554, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.598389, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.368039 ], [ 132.654419, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.368039 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.238647, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.684082, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.016182 ], [ 122.926025, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.930298, 2.174771 ], [ 128.001709, 1.631249 ], [ 128.594971, 1.543392 ], [ 128.688354, 1.131518 ], [ 128.633423, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.111572, -0.439449 ], [ 127.803955, -0.439449 ], [ 127.694092, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.600708, 1.812442 ], [ 127.930298, 2.174771 ] ] ], [ [ [ 117.015381, 4.308069 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.290039 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.476807, 0.104370 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.411600 ], [ 112.862549, 1.499463 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.308069 ], [ 117.015381, 4.308069 ] ] ] ] } } ] } ] } @@ -2442,6 +2344,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.492310, 25.294371 ], [ 121.953735, 24.996016 ], [ 121.777954, 24.392130 ], [ 121.173706, 22.791375 ], [ 120.745239, 21.968519 ], [ 120.217896, 22.816694 ], [ 120.108032, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.492310, 25.294371 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.682617, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.012451, 40.484560 ], [ 128.633423, 40.191463 ], [ 127.968750, 40.023408 ], [ 127.534790, 39.757880 ], [ 127.501831, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.049052 ], [ 128.347778, 38.612578 ], [ 128.204956, 38.371809 ], [ 127.781982, 38.302870 ], [ 127.073364, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.238403, 37.840157 ], [ 126.172485, 37.749001 ], [ 125.689087, 37.939865 ], [ 125.568237, 37.753344 ], [ 125.277100, 37.670777 ], [ 125.238647, 37.857507 ], [ 124.980469, 37.948529 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.548165 ], [ 125.222168, 38.664067 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.389509 ], [ 125.321045, 39.550648 ], [ 124.738770, 39.660685 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.568067 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.682617, 41.310824 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.609985, 35.733136 ], [ 135.000000, 35.657296 ], [ 135.439453, 35.572449 ], [ 135.439453, 33.664925 ], [ 135.120850, 33.847608 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.375179 ], [ 132.154541, 33.906896 ], [ 130.984497, 33.884097 ], [ 132.000732, 33.151349 ], [ 131.330566, 31.452096 ], [ 130.687866, 31.029401 ], [ 130.204468, 31.419288 ], [ 130.446167, 32.319634 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.885376, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.609985, 35.733136 ] ] ], [ [ [ 133.901367, 34.366111 ], [ 134.637451, 34.148181 ], [ 134.763794, 33.806538 ], [ 134.203491, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.280640, 33.289212 ], [ 133.016968, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.368774, 33.463525 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.366111 ] ] ] ] } } ] } ] } @@ -2450,10 +2354,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.439453, 56.022948 ], [ 135.439453, 54.927142 ], [ 135.126343, 54.730964 ], [ 135.439453, 54.705582 ], [ 135.439453, 43.921637 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.907104, 42.799431 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.395066 ], [ 130.632935, 42.904136 ], [ 131.143799, 42.928274 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.968684 ], [ 131.885376, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.115134 ], [ 134.110107, 47.212106 ], [ 134.500122, 47.580231 ], [ 135.000000, 48.432845 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.184401 ], [ 132.506104, 47.787326 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.730832 ], [ 129.396973, 49.439557 ], [ 127.655640, 49.759978 ], [ 127.287598, 50.739932 ], [ 126.941528, 51.354631 ], [ 126.562500, 51.784834 ], [ 125.947266, 52.792797 ], [ 125.068359, 53.159947 ], [ 123.568726, 53.458620 ], [ 122.244873, 53.432447 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.752919 ], [ 120.723267, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.641885 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.877808, 49.510944 ], [ 116.680298, 49.887557 ], [ 115.488281, 49.806087 ], [ 114.960938, 50.141706 ], [ 114.362183, 50.247205 ], [ 112.895508, 49.543034 ], [ 112.500000, 49.493107 ], [ 112.060547, 49.439557 ], [ 112.060547, 56.022948 ], [ 135.439453, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.458620 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.792797 ], [ 126.562500, 51.784834 ], [ 126.941528, 51.354631 ], [ 127.287598, 50.739932 ], [ 127.655640, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.730832 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.787326 ], [ 133.374023, 48.184401 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.115134 ], [ 133.099365, 45.143305 ], [ 131.885376, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.928274 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.995728, 42.984558 ], [ 129.594727, 42.423457 ], [ 128.051147, 41.996243 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.870117, 41.816361 ], [ 126.183472, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.238647, 40.647304 ], [ 121.942749, 40.647304 ], [ 121.640625, 40.946714 ], [ 120.899048, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.461060, 45.340563 ], [ 115.982666, 45.725356 ], [ 116.718750, 46.388622 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.803820 ], [ 119.663086, 46.690899 ], [ 119.772949, 47.047669 ], [ 118.866577, 47.746711 ], [ 118.064575, 48.067068 ], [ 117.295532, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.680298, 49.887557 ], [ 117.877808, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.641885 ], [ 120.739746, 51.964577 ], [ 120.723267, 52.516221 ], [ 120.179443, 52.752919 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.574219, 53.458620 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.247205 ], [ 114.960938, 50.141706 ], [ 115.488281, 49.806087 ], [ 116.680298, 49.887557 ], [ 116.191406, 49.135003 ], [ 115.482788, 48.136767 ], [ 115.740967, 47.728240 ], [ 116.306763, 47.853717 ], [ 117.295532, 47.698672 ], [ 118.064575, 48.067068 ], [ 118.866577, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.690899 ], [ 118.872070, 46.803820 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.388622 ], [ 115.982666, 45.725356 ], [ 114.461060, 45.340563 ], [ 113.461304, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.060547, 45.073521 ], [ 112.060547, 49.439557 ], [ 112.500000, 49.493107 ], [ 112.895508, 49.543034 ], [ 114.362183, 50.247205 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.458620 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.792797 ], [ 126.562500, 51.784834 ], [ 126.941528, 51.354631 ], [ 127.287598, 50.739932 ], [ 127.655640, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.730832 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.787326 ], [ 133.374023, 48.184401 ], [ 135.000000, 48.472921 ], [ 135.027466, 48.476563 ], [ 135.000000, 48.432845 ], [ 134.500122, 47.580231 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.115134 ], [ 133.099365, 45.143305 ], [ 131.885376, 45.321254 ], [ 131.022949, 44.968684 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.928274 ], [ 130.632935, 42.904136 ], [ 130.638428, 42.395066 ], [ 129.995728, 42.984558 ], [ 129.594727, 42.423457 ], [ 128.051147, 41.996243 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.504464 ], [ 126.870117, 41.816361 ], [ 126.183472, 41.108330 ], [ 125.919800, 40.979898 ], [ 125.238647, 40.647304 ], [ 121.942749, 40.647304 ], [ 121.640625, 40.946714 ], [ 120.899048, 40.647304 ], [ 112.060547, 40.647304 ], [ 112.060547, 45.073521 ], [ 112.500000, 44.999767 ], [ 113.461304, 44.809122 ], [ 114.461060, 45.340563 ], [ 115.982666, 45.725356 ], [ 116.718750, 46.388622 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.803820 ], [ 119.663086, 46.690899 ], [ 119.772949, 47.047669 ], [ 118.866577, 47.746711 ], [ 118.064575, 48.067068 ], [ 117.295532, 47.698672 ], [ 116.306763, 47.853717 ], [ 115.740967, 47.728240 ], [ 115.482788, 48.136767 ], [ 116.191406, 49.135003 ], [ 116.680298, 49.887557 ], [ 117.877808, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.641885 ], [ 120.739746, 51.964577 ], [ 120.723267, 52.516221 ], [ 120.179443, 52.752919 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.574219, 53.458620 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.995728, 42.984558 ], [ 130.638428, 42.395066 ], [ 130.781250, 42.220382 ], [ 130.402222, 42.281373 ], [ 129.968262, 41.943149 ], [ 129.666138, 41.603121 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.884448 ], [ 129.188232, 40.659806 ], [ 129.171753, 40.647304 ], [ 125.238647, 40.647304 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.870117, 41.816361 ], [ 127.342529, 41.504464 ], [ 128.210449, 41.467428 ], [ 128.051147, 41.996243 ], [ 129.594727, 42.423457 ], [ 129.995728, 42.984558 ] ] ] } } ] } ] } @@ -2832,25 +2736,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.995789, 61.710706 ], [ -140.995789, 61.606396 ], [ -140.998535, 60.306546 ], [ -140.012512, 60.276600 ], [ -139.040222, 60.000359 ], [ -138.339844, 59.562158 ], [ -137.452698, 58.904646 ], [ -136.480408, 59.463222 ], [ -135.475159, 59.788198 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.270091 ], [ -134.780273, 59.170298 ], [ -134.780273, 58.170702 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.798767, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.825500, 59.727331 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.458572 ], [ -146.250000, 60.574825 ], [ -146.469727, 60.654340 ], [ -146.469727, 61.710706 ], [ -140.995789, 61.710706 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 61.710706 ], [ -134.780273, 59.170298 ], [ -134.945068, 59.270091 ], [ -135.000000, 59.324783 ], [ -135.475159, 59.788198 ], [ -136.480408, 59.463222 ], [ -137.452698, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.040222, 60.000359 ], [ -140.012512, 60.276600 ], [ -140.998535, 60.306546 ], [ -140.995789, 61.606396 ], [ -140.995789, 61.710706 ], [ -134.780273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.995789, 61.710706 ], [ -140.995789, 61.606396 ], [ -140.998535, 60.306546 ], [ -140.012512, 60.276600 ], [ -139.040222, 60.000359 ], [ -138.339844, 59.562158 ], [ -137.452698, 58.904646 ], [ -136.480408, 59.463222 ], [ -135.475159, 59.788198 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.270091 ], [ -134.780273, 59.170298 ], [ -134.780273, 58.170702 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.798767, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.825500, 59.727331 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.458572 ], [ -146.250000, 60.574825 ], [ -146.469727, 60.654340 ], [ -146.469727, 61.710706 ], [ -140.995789, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.990295, 66.600676 ], [ -140.990295, 66.513260 ], [ -140.995789, 61.606396 ], [ -140.995789, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.990295, 66.600676 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 66.600676 ], [ -134.780273, 61.501734 ], [ -140.995789, 61.501734 ], [ -140.995789, 61.606396 ], [ -140.990295, 66.513260 ], [ -140.990295, 66.600676 ], [ -134.780273, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.990295, 66.600676 ], [ -140.990295, 66.513260 ], [ -140.995789, 61.606396 ], [ -140.995789, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.990295, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 70.158085 ], [ -146.250000, 70.147827 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.989595 ], [ -143.588562, 70.152491 ], [ -142.072449, 69.851924 ], [ -140.984802, 69.712393 ], [ -140.990295, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.158085 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.984802, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.546082, 68.989925 ], [ -136.502380, 68.898154 ], [ -135.626221, 69.315410 ], [ -135.000000, 69.476821 ], [ -134.780273, 69.533557 ], [ -134.780273, 66.425537 ], [ -140.993042, 66.425537 ], [ -140.990295, 66.513260 ], [ -140.984802, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 70.158085 ], [ -146.250000, 70.147827 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.989595 ], [ -143.588562, 70.152491 ], [ -142.072449, 69.851924 ], [ -140.984802, 69.712393 ], [ -140.990295, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.158085 ] ] ] } } ] } ] } , @@ -2904,25 +2808,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.565735, 48.379970 ], [ -123.750000, 48.188063 ], [ -123.530273, 48.136767 ], [ -123.530273, 40.813809 ], [ -124.266357, 40.813809 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.214172, 42.000325 ], [ -124.532776, 42.765162 ], [ -124.142761, 43.707594 ], [ -123.898315, 45.523668 ], [ -124.079590, 46.863947 ], [ -124.395447, 47.720849 ], [ -124.686584, 48.184401 ], [ -124.565735, 48.379970 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.931274, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.750000, 48.832182 ], [ -123.530273, 48.536613 ], [ -123.530273, 48.503867 ], [ -123.750000, 48.443778 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.738525, 48.922499 ], [ -125.859375, 49.066668 ], [ -123.931274, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.565735, 48.379970 ], [ -123.750000, 48.188063 ], [ -123.530273, 48.136767 ], [ -123.530273, 40.813809 ], [ -124.266357, 40.813809 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.214172, 42.000325 ], [ -124.532776, 42.765162 ], [ -124.142761, 43.707594 ], [ -123.898315, 45.523668 ], [ -124.079590, 46.863947 ], [ -124.395447, 47.720849 ], [ -124.686584, 48.184401 ], [ -124.565735, 48.379970 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.006714, 55.899956 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.536804, 54.802268 ], [ -131.086121, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.055664, 55.776573 ], [ -132.096863, 55.899956 ], [ -130.006714, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.294603 ], [ -125.414429, 49.949453 ], [ -124.920044, 49.475263 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.708801, 48.777913 ], [ -125.483093, 48.777913 ], [ -125.656128, 48.824949 ], [ -125.738525, 48.922499 ], [ -125.955505, 49.179908 ], [ -126.850891, 49.530557 ], [ -127.029419, 49.814949 ], [ -128.059387, 49.995381 ], [ -128.443909, 50.539617 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -123.530273, 55.899956 ], [ -123.530273, 49.285723 ], [ -123.750000, 49.398463 ], [ -124.909058, 49.984786 ], [ -125.625916, 50.417269 ], [ -127.435913, 50.830228 ], [ -127.993469, 51.715118 ], [ -127.850647, 52.330304 ], [ -129.130554, 52.754581 ], [ -129.306335, 53.561520 ], [ -130.514832, 54.287675 ], [ -130.536804, 54.802268 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.899956 ], [ -123.530273, 55.899956 ] ] ], [ [ [ -133.179016, 54.170474 ], [ -132.709351, 54.040038 ], [ -131.750793, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.179504, 52.180669 ], [ -131.577759, 52.182353 ], [ -132.179260, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.411169 ], [ -133.239441, 53.850906 ], [ -133.179016, 54.170474 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.006714, 55.899956 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.536804, 54.802268 ], [ -131.086121, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.055664, 55.776573 ], [ -132.096863, 55.899956 ], [ -130.006714, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 59.539888 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.270091 ], [ -134.272156, 58.860644 ], [ -133.354797, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.706848, 56.551914 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.995728, 55.652798 ], [ -132.017212, 55.652798 ], [ -132.055664, 55.776573 ], [ -132.250671, 56.369814 ], [ -133.538818, 57.179436 ], [ -134.077148, 58.122869 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.190976 ], [ -135.219727, 59.539888 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 61.710706 ], [ -123.530273, 55.652798 ], [ -129.995728, 55.652798 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -131.706848, 56.551914 ], [ -132.731323, 57.692406 ], [ -133.354797, 58.410345 ], [ -134.272156, 58.860644 ], [ -134.945068, 59.270091 ], [ -135.000000, 59.324783 ], [ -135.219727, 59.539888 ], [ -135.219727, 61.710706 ], [ -123.530273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 59.539888 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.270091 ], [ -134.272156, 58.860644 ], [ -133.354797, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.706848, 56.551914 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.995728, 55.652798 ], [ -132.017212, 55.652798 ], [ -132.055664, 55.776573 ], [ -132.250671, 56.369814 ], [ -133.538818, 57.179436 ], [ -134.077148, 58.122869 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.190976 ], [ -135.219727, 59.539888 ] ] ] } } ] } ] } , @@ -3010,17 +2914,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 44.995883 ], [ -123.898315, 45.523668 ], [ -123.969727, 46.052267 ], [ -123.969727, 48.239309 ], [ -123.750000, 48.188063 ], [ -123.121033, 48.039529 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.359293 ], [ -122.500305, 48.180739 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.931274, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.750000, 48.832182 ], [ -123.511047, 48.509326 ], [ -123.750000, 48.443778 ], [ -123.969727, 48.383618 ], [ -123.969727, 49.066668 ], [ -123.931274, 49.066668 ] ] ], [ [ [ -112.280273, 49.066668 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.001844 ], [ -123.099060, 49.066668 ], [ -112.280273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 44.995883 ], [ -123.898315, 45.523668 ], [ -123.969727, 46.052267 ], [ -123.969727, 48.239309 ], [ -123.750000, 48.188063 ], [ -123.121033, 48.039529 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.359293 ], [ -122.500305, 48.180739 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ], [ -122.747498, 48.777913 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.969727, 49.082861 ], [ -123.923035, 49.063069 ], [ -123.708801, 48.777913 ], [ -123.969727, 48.777913 ], [ -123.969727, 49.082861 ] ] ], [ [ [ -112.280273, 55.899956 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.001844 ], [ -123.750000, 49.398463 ], [ -123.969727, 49.509160 ], [ -123.969727, 55.899956 ], [ -112.280273, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ], [ -122.747498, 48.777913 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } ] } ] } , @@ -3126,17 +3030,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.066668 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 49.066668 ], [ -101.030273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 55.899956 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 55.899956 ], [ -101.030273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } ] } ] } , @@ -3250,17 +3154,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713135, 49.066668 ], [ -94.666443, 48.922499 ], [ -94.638977, 48.839413 ], [ -94.328613, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.609253, 48.449244 ], [ -91.639709, 48.140432 ], [ -90.829468, 48.270397 ], [ -90.000000, 48.094592 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.158081, 49.000042 ], [ -95.158081, 49.066668 ], [ -94.713135, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.780273, 49.066668 ], [ -89.780273, 48.048710 ], [ -90.000000, 48.094592 ], [ -90.829468, 48.270397 ], [ -91.639709, 48.140432 ], [ -92.609253, 48.449244 ], [ -93.630981, 48.609306 ], [ -94.328613, 48.671013 ], [ -94.638977, 48.839413 ], [ -94.666443, 48.922499 ], [ -94.713135, 49.066668 ], [ -89.780273, 49.066668 ] ] ], [ [ [ -95.158081, 49.066668 ], [ -95.158081, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 49.066668 ], [ -95.158081, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713135, 49.066668 ], [ -94.666443, 48.922499 ], [ -94.638977, 48.839413 ], [ -94.328613, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.609253, 48.449244 ], [ -91.639709, 48.140432 ], [ -90.829468, 48.270397 ], [ -90.000000, 48.094592 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.158081, 49.000042 ], [ -95.158081, 49.066668 ], [ -94.713135, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.666443, 48.922499 ], [ -94.638977, 48.839413 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.158081, 49.000042 ], [ -95.155334, 49.384161 ], [ -94.817505, 49.389524 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 55.899956 ], [ -89.780273, 48.777913 ], [ -94.526367, 48.777913 ], [ -94.638977, 48.839413 ], [ -94.666443, 48.922499 ], [ -94.817505, 49.389524 ], [ -95.155334, 49.384161 ], [ -95.158081, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 55.899956 ], [ -89.780273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.666443, 48.922499 ], [ -94.638977, 48.839413 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.158081, 49.000042 ], [ -95.155334, 49.384161 ], [ -94.817505, 49.389524 ] ] ] } } ] } ] } , @@ -3370,9 +3274,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.021912, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.530273, 9.421968 ], [ -78.530273, 8.556578 ], [ -78.620911, 8.716789 ], [ -78.750000, 8.790083 ], [ -79.120789, 8.996313 ], [ -79.557495, 8.931200 ], [ -79.760742, 8.583737 ], [ -80.164490, 8.333800 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.089143 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.419666 ], [ -80.419922, 7.272568 ], [ -80.886841, 7.220800 ], [ -81.059875, 7.817126 ], [ -81.188965, 7.648387 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.131042, 8.176149 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.290317 ], [ -82.850647, 8.072827 ], [ -82.966003, 8.225082 ], [ -82.913818, 8.423470 ], [ -82.828674, 8.627188 ], [ -82.869873, 8.806368 ], [ -82.718811, 8.925774 ], [ -82.927551, 9.074976 ], [ -82.933044, 9.476154 ], [ -82.545776, 9.565543 ], [ -82.185974, 9.207849 ], [ -82.207947, 8.996313 ], [ -81.809692, 8.950193 ], [ -81.713562, 9.031578 ], [ -81.438904, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.521545, 9.110233 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.381397 ], [ -78.750000, 1.320989 ], [ -78.530273, 1.194677 ], [ -78.530273, -0.219726 ], [ -80.362244, -0.219726 ], [ -80.233154, 0.000000 ], [ -80.021667, 0.359800 ], [ -80.090332, 0.769020 ], [ -79.543762, 0.983228 ], [ -78.854370, 1.381397 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 2.471157 ], [ -78.530273, 1.194677 ], [ -78.750000, 1.320989 ], [ -78.854370, 1.381397 ], [ -78.991699, 1.691649 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.765773 ], [ -78.662109, 2.268084 ], [ -78.530273, 2.471157 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.381397 ], [ -78.750000, 1.320989 ], [ -78.530273, 1.194677 ], [ -78.530273, -0.219726 ], [ -80.362244, -0.219726 ], [ -80.233154, 0.000000 ], [ -80.021667, 0.359800 ], [ -80.090332, 0.769020 ], [ -79.543762, 0.983228 ], [ -78.854370, 1.381397 ] ] ] } } ] } ] } , @@ -3384,15 +3288,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.299866, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.489531 ], [ -88.302612, 17.132916 ], [ -88.239441, 17.035777 ], [ -88.354797, 16.530898 ], [ -88.552551, 16.264777 ], [ -88.731079, 16.233135 ], [ -88.931580, 15.887376 ], [ -89.228210, 15.887376 ], [ -89.151306, 17.014768 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.955219 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.882045 ], [ -88.489380, 18.487424 ], [ -88.299866, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.006216 ], [ -85.682373, 15.953407 ], [ -85.443420, 15.884734 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.995655 ], [ -84.526062, 15.858316 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.773499, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.995199 ], [ -83.490601, 15.016422 ], [ -83.627930, 14.881087 ], [ -83.976746, 14.748323 ], [ -84.229431, 14.748323 ], [ -84.449158, 14.620794 ], [ -84.649658, 14.665969 ], [ -84.819946, 14.820026 ], [ -84.924316, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.559659 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.800476, 13.835413 ], [ -86.097107, 14.038008 ], [ -86.311340, 13.771399 ], [ -86.520081, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.879883, 13.253313 ], [ -87.006226, 13.025966 ], [ -87.316589, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.723083, 13.784737 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.963389 ], [ -88.503113, 13.846080 ], [ -88.541565, 13.979381 ], [ -88.843689, 14.139239 ], [ -89.057922, 14.338904 ], [ -89.354553, 14.424040 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.873124 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.345113 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.901611, 15.863600 ], [ -87.615967, 15.879451 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.901855, 15.757893 ], [ -86.440430, 15.781682 ], [ -86.119080, 15.892659 ], [ -86.000977, 16.006216 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.354553, 14.424040 ], [ -89.057922, 14.338904 ], [ -88.843689, 14.139239 ], [ -88.541565, 13.979381 ], [ -88.503113, 13.846080 ], [ -88.066406, 13.963389 ], [ -87.860413, 13.894077 ], [ -87.723083, 13.784737 ], [ -87.791748, 13.384276 ], [ -87.904358, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.843689, 13.258660 ], [ -89.255676, 13.459080 ], [ -89.813232, 13.520508 ], [ -90.000000, 13.662001 ], [ -90.096130, 13.734049 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.722595, 14.133912 ], [ -89.533081, 14.245749 ], [ -89.588013, 14.362852 ], [ -89.354553, 14.424040 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.995199 ], [ -83.232422, 14.899668 ], [ -83.284607, 14.676597 ], [ -83.182983, 14.309631 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.551025, 13.127629 ], [ -83.498840, 12.868037 ], [ -83.474121, 12.417801 ], [ -83.625183, 12.321219 ], [ -83.718567, 11.894228 ], [ -83.649902, 11.628026 ], [ -83.855896, 11.372339 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.102947 ], [ -83.677368, 10.962764 ], [ -84.325562, 10.962764 ], [ -84.355774, 11.000512 ], [ -84.674377, 11.081385 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.465393, 11.178402 ], [ -85.561523, 11.216122 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.525574, 11.808211 ], [ -86.745300, 12.144061 ], [ -87.168274, 12.458033 ], [ -87.668152, 12.910875 ], [ -87.558289, 13.063426 ], [ -87.393494, 12.913552 ], [ -87.316589, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.253313 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.520081, 13.779402 ], [ -86.311340, 13.771399 ], [ -86.097107, 14.038008 ], [ -85.800476, 13.835413 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.559659 ], [ -85.053406, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.820026 ], [ -84.649658, 14.665969 ], [ -84.449158, 14.620794 ], [ -84.229431, 14.748323 ], [ -83.976746, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.006216 ], [ -85.682373, 15.953407 ], [ -85.443420, 15.884734 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.995655 ], [ -84.526062, 15.858316 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.773499, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.995199 ], [ -83.490601, 15.016422 ], [ -83.627930, 14.881087 ], [ -83.976746, 14.748323 ], [ -84.229431, 14.748323 ], [ -84.449158, 14.620794 ], [ -84.649658, 14.665969 ], [ -84.819946, 14.820026 ], [ -84.924316, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.559659 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.800476, 13.835413 ], [ -86.097107, 14.038008 ], [ -86.311340, 13.771399 ], [ -86.520081, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.879883, 13.253313 ], [ -87.006226, 13.025966 ], [ -87.316589, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.723083, 13.784737 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.963389 ], [ -88.503113, 13.846080 ], [ -88.541565, 13.979381 ], [ -88.843689, 14.139239 ], [ -89.057922, 14.338904 ], [ -89.354553, 14.424040 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.873124 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.345113 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.901611, 15.863600 ], [ -87.615967, 15.879451 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.901855, 15.757893 ], [ -86.440430, 15.781682 ], [ -86.119080, 15.892659 ], [ -86.000977, 16.006216 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.561523, 11.216122 ], [ -85.465393, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.860901, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.561523, 11.216122 ] ] ], [ [ [ -84.885864, 10.962764 ], [ -84.674377, 11.081385 ], [ -84.355774, 11.000512 ], [ -84.325562, 10.962764 ], [ -84.885864, 10.962764 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.995199 ], [ -83.232422, 14.899668 ], [ -83.284607, 14.676597 ], [ -83.182983, 14.309631 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.551025, 13.127629 ], [ -83.498840, 12.868037 ], [ -83.474121, 12.417801 ], [ -83.625183, 12.321219 ], [ -83.718567, 11.894228 ], [ -83.649902, 11.628026 ], [ -83.855896, 11.372339 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.102947 ], [ -83.677368, 10.962764 ], [ -84.325562, 10.962764 ], [ -84.355774, 11.000512 ], [ -84.674377, 11.081385 ], [ -84.885864, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.465393, 11.178402 ], [ -85.561523, 11.216122 ], [ -85.608215, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.525574, 11.808211 ], [ -86.745300, 12.144061 ], [ -87.168274, 12.458033 ], [ -87.668152, 12.910875 ], [ -87.558289, 13.063426 ], [ -87.393494, 12.913552 ], [ -87.316589, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.253313 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.520081, 13.779402 ], [ -86.311340, 13.771399 ], [ -86.097107, 14.038008 ], [ -85.800476, 13.835413 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.559659 ], [ -85.053406, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.820026 ], [ -84.649658, 14.665969 ], [ -84.449158, 14.620794 ], [ -84.229431, 14.748323 ], [ -83.976746, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.143431 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.384216, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.438904, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.034424, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.548035, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.561523, 11.216122 ], [ -85.465393, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.860901, 10.962764 ], [ -85.608215, 11.178402 ], [ -85.561523, 11.216122 ] ] ], [ [ [ -84.885864, 10.962764 ], [ -84.674377, 11.081385 ], [ -84.355774, 11.000512 ], [ -84.325562, 10.962764 ], [ -84.885864, 10.962764 ] ] ] ] } } ] } ] } , @@ -3414,9 +3318,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.376770, 48.303294 ], [ -87.440186, 47.940267 ], [ -86.462402, 47.552433 ], [ -84.874878, 46.899616 ], [ -84.778748, 46.636237 ], [ -84.542542, 46.538082 ], [ -84.605713, 46.439750 ], [ -84.336548, 46.409458 ], [ -84.141541, 46.511625 ], [ -84.092102, 46.274834 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.468628, 45.995054 ], [ -83.592224, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.136536, 43.570442 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.429539 ], [ -83.119812, 42.079878 ], [ -83.141785, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.691345, 41.674963 ], [ -82.438660, 41.674963 ], [ -81.276855, 42.208176 ], [ -80.246887, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.010925, 43.269206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.614205 ], [ -78.719788, 43.624147 ], [ -78.530273, 43.626135 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.140432 ], [ -90.000000, 48.094592 ], [ -89.598999, 48.010138 ], [ -89.272156, 48.019324 ], [ -88.376770, 48.303294 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 49.066668 ], [ -78.530273, 43.626135 ], [ -78.719788, 43.624147 ], [ -78.750000, 43.614205 ], [ -79.172974, 43.466874 ], [ -79.010925, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.939514, 42.863886 ], [ -80.246887, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.438660, 41.674963 ], [ -82.691345, 41.674963 ], [ -83.029175, 41.832735 ], [ -83.141785, 41.975827 ], [ -83.119812, 42.079878 ], [ -82.900085, 42.429539 ], [ -82.430420, 42.980540 ], [ -82.136536, 43.570442 ], [ -82.551270, 45.348285 ], [ -83.592224, 45.817315 ], [ -83.468628, 45.995054 ], [ -83.616943, 46.117038 ], [ -83.891602, 46.117038 ], [ -84.092102, 46.274834 ], [ -84.141541, 46.511625 ], [ -84.336548, 46.409458 ], [ -84.605713, 46.439750 ], [ -84.542542, 46.538082 ], [ -84.778748, 46.636237 ], [ -84.874878, 46.899616 ], [ -86.462402, 47.552433 ], [ -87.440186, 47.940267 ], [ -88.376770, 48.303294 ], [ -89.272156, 48.019324 ], [ -89.598999, 48.010138 ], [ -90.000000, 48.094592 ], [ -90.219727, 48.140432 ], [ -90.219727, 49.066668 ], [ -78.530273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.376770, 48.303294 ], [ -87.440186, 47.940267 ], [ -86.462402, 47.552433 ], [ -84.874878, 46.899616 ], [ -84.778748, 46.636237 ], [ -84.542542, 46.538082 ], [ -84.605713, 46.439750 ], [ -84.336548, 46.409458 ], [ -84.141541, 46.511625 ], [ -84.092102, 46.274834 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.468628, 45.995054 ], [ -83.592224, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.136536, 43.570442 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.429539 ], [ -83.119812, 42.079878 ], [ -83.141785, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.691345, 41.674963 ], [ -82.438660, 41.674963 ], [ -81.276855, 42.208176 ], [ -80.246887, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.010925, 43.269206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.614205 ], [ -78.719788, 43.624147 ], [ -78.530273, 43.626135 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.140432 ], [ -90.000000, 48.094592 ], [ -89.598999, 48.010138 ], [ -89.272156, 48.019324 ], [ -88.376770, 48.303294 ] ] ] } } ] } ] } , @@ -3564,27 +3468,27 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.565430, -10.962764 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.008601 ], [ -70.545959, -10.962764 ], [ -69.565430, -10.962764 ] ] ], [ [ [ -68.233337, -10.962764 ], [ -68.271790, -11.013993 ], [ -68.785400, -11.035560 ], [ -69.433594, -10.962764 ], [ -68.233337, -10.962764 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.524231, -10.962764 ], [ -69.408875, -11.178402 ], [ -68.664551, -12.562606 ], [ -68.878784, -12.900166 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.453299 ], [ -69.340210, -14.952746 ], [ -69.161682, -15.323923 ], [ -69.389648, -15.660065 ], [ -68.958435, -16.501933 ], [ -69.590149, -17.581194 ], [ -69.859314, -18.093644 ], [ -70.372925, -18.346705 ], [ -71.375427, -17.774843 ], [ -71.463318, -17.363746 ], [ -73.443604, -16.359674 ], [ -75.237122, -15.265638 ], [ -76.008911, -14.650026 ], [ -76.423645, -13.822078 ], [ -76.258850, -13.533860 ], [ -77.107544, -12.221918 ], [ -77.665100, -11.178402 ], [ -77.780457, -10.962764 ], [ -70.545959, -10.962764 ], [ -70.548706, -11.008601 ], [ -70.092773, -11.124507 ], [ -69.565430, -10.962764 ], [ -69.524231, -10.962764 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.962764 ], [ -67.280273, -22.146708 ], [ -68.035583, -22.146708 ], [ -68.093262, -21.943046 ], [ -68.219604, -21.493964 ], [ -68.757935, -20.372952 ], [ -68.442078, -19.404430 ], [ -68.966675, -18.981623 ], [ -69.101257, -18.260653 ], [ -69.590149, -17.581194 ], [ -68.958435, -16.501933 ], [ -69.389648, -15.660065 ], [ -69.161682, -15.323923 ], [ -69.340210, -14.952746 ], [ -68.950195, -14.453299 ], [ -68.928223, -13.603278 ], [ -68.878784, -12.900166 ], [ -68.664551, -12.562606 ], [ -69.408875, -11.178402 ], [ -69.524231, -10.962764 ], [ -69.433594, -10.962764 ], [ -68.785400, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.233337, -10.962764 ], [ -67.280273, -10.962764 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.565430, -10.962764 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.008601 ], [ -70.545959, -10.962764 ], [ -69.565430, -10.962764 ] ] ], [ [ [ -68.233337, -10.962764 ], [ -68.271790, -11.013993 ], [ -68.785400, -11.035560 ], [ -69.433594, -10.962764 ], [ -68.233337, -10.962764 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.590149, -17.581194 ], [ -69.101257, -18.260653 ], [ -68.966675, -18.981623 ], [ -68.442078, -19.404430 ], [ -68.757935, -20.372952 ], [ -68.219604, -21.493964 ], [ -68.093262, -21.943046 ], [ -68.035583, -22.146708 ], [ -70.197144, -22.146708 ], [ -70.166931, -21.943046 ], [ -70.090027, -21.394262 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.346705 ], [ -69.859314, -18.093644 ], [ -69.590149, -17.581194 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 0.219726 ], [ -67.280273, -10.355450 ], [ -67.500000, -10.458103 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.785400, -11.035560 ], [ -69.529724, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.301270, -10.079741 ], [ -72.185669, -10.052698 ], [ -72.561951, -9.519497 ], [ -73.226624, -9.462608 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.918247 ], [ -73.119507, -6.629142 ], [ -73.218384, -6.088667 ], [ -72.965698, -5.741708 ], [ -72.891541, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.892273, -4.297113 ], [ -69.444580, -1.557120 ], [ -69.419861, -1.123280 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.184021 ], [ -70.018616, 0.000000 ], [ -70.018616, 0.219726 ], [ -67.280273, 0.219726 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.018616, 0.219726 ], [ -70.018616, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.576416, -0.549308 ], [ -69.419861, -1.123280 ], [ -69.444580, -1.557120 ], [ -69.892273, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.726327 ], [ -70.812378, -2.257106 ], [ -71.413879, -2.342182 ], [ -71.773682, -2.169281 ], [ -72.325745, -2.435484 ], [ -73.070068, -2.309250 ], [ -73.660583, -1.260579 ], [ -74.122009, -1.002451 ], [ -74.440613, -0.530083 ], [ -75.105286, -0.057678 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.800171, 0.085144 ], [ -76.000671, 0.219726 ], [ -70.018616, 0.219726 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.000671, 0.219726 ], [ -75.800171, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.234375, -0.911827 ], [ -75.544739, -1.562611 ], [ -76.635132, -2.608352 ], [ -77.838135, -3.003384 ], [ -78.450623, -3.872476 ], [ -78.640137, -4.549046 ], [ -78.969727, -4.787206 ], [ -78.969727, 0.219726 ], [ -76.000671, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.018616, 0.219726 ], [ -70.018616, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.576416, -0.549308 ], [ -69.419861, -1.123280 ], [ -69.444580, -1.557120 ], [ -69.892273, -4.297113 ], [ -70.394897, -3.765597 ], [ -70.691528, -3.743671 ], [ -70.048828, -2.726327 ], [ -70.812378, -2.257106 ], [ -71.413879, -2.342182 ], [ -71.773682, -2.169281 ], [ -72.325745, -2.435484 ], [ -73.070068, -2.309250 ], [ -73.660583, -1.260579 ], [ -74.122009, -1.002451 ], [ -74.440613, -0.530083 ], [ -75.105286, -0.057678 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.800171, 0.085144 ], [ -76.000671, 0.219726 ], [ -70.018616, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.105286, -0.057678 ], [ -74.440613, -0.530083 ], [ -74.122009, -1.002451 ], [ -73.660583, -1.260579 ], [ -73.070068, -2.309250 ], [ -72.325745, -2.435484 ], [ -71.773682, -2.169281 ], [ -71.413879, -2.342182 ], [ -70.812378, -2.257106 ], [ -70.048828, -2.726327 ], [ -70.691528, -3.743671 ], [ -70.394897, -3.765597 ], [ -69.892273, -4.297113 ], [ -70.795898, -4.250551 ], [ -70.927734, -4.401183 ], [ -71.748962, -4.592852 ], [ -72.891541, -5.274213 ], [ -72.965698, -5.741708 ], [ -73.218384, -6.088667 ], [ -73.119507, -6.629142 ], [ -73.723755, -6.918247 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.523150 ], [ -73.569946, -8.423470 ], [ -73.015137, -9.031578 ], [ -73.226624, -9.462608 ], [ -72.561951, -9.519497 ], [ -72.185669, -10.052698 ], [ -71.301270, -10.079741 ], [ -70.482788, -9.489699 ], [ -70.548706, -11.008601 ], [ -70.092773, -11.124507 ], [ -69.529724, -10.951978 ], [ -69.408875, -11.178402 ], [ -69.293518, -11.393879 ], [ -77.549744, -11.393879 ], [ -77.665100, -11.178402 ], [ -78.090820, -10.377064 ], [ -78.750000, -8.993600 ], [ -78.969727, -8.529417 ], [ -78.969727, -4.787206 ], [ -78.640137, -4.549046 ], [ -78.450623, -3.872476 ], [ -77.838135, -3.003384 ], [ -76.635132, -2.608352 ], [ -75.544739, -1.562611 ], [ -75.234375, -0.911827 ], [ -75.374451, -0.151062 ], [ -75.105286, -0.057678 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.355450 ], [ -67.280273, -11.393879 ], [ -69.293518, -11.393879 ], [ -69.408875, -11.178402 ], [ -69.529724, -10.951978 ], [ -68.785400, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.049316, -10.711888 ], [ -67.500000, -10.458103 ], [ -67.280273, -10.355450 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 0.219726 ], [ -67.280273, -10.355450 ], [ -67.500000, -10.458103 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.785400, -11.035560 ], [ -69.529724, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.301270, -10.079741 ], [ -72.185669, -10.052698 ], [ -72.561951, -9.519497 ], [ -73.226624, -9.462608 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.918247 ], [ -73.119507, -6.629142 ], [ -73.218384, -6.088667 ], [ -72.965698, -5.741708 ], [ -72.891541, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.892273, -4.297113 ], [ -69.444580, -1.557120 ], [ -69.419861, -1.123280 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.184021 ], [ -70.018616, 0.000000 ], [ -70.018616, 0.219726 ], [ -67.280273, 0.219726 ] ] ] } } ] } ] } , @@ -3592,15 +3496,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.969727, 9.449062 ], [ -78.750000, 9.435515 ], [ -78.500061, 9.419258 ], [ -78.055115, 9.248514 ], [ -77.728271, 8.947480 ], [ -77.351990, 8.670633 ], [ -77.475586, 8.523984 ], [ -77.242126, 7.934115 ], [ -77.431641, 7.637498 ], [ -77.752991, 7.710992 ], [ -77.882080, 7.223524 ], [ -78.214417, 7.512258 ], [ -78.428650, 8.051071 ], [ -78.181458, 8.320212 ], [ -78.434143, 8.388148 ], [ -78.620911, 8.716789 ], [ -78.750000, 8.790083 ], [ -78.969727, 8.912207 ], [ -78.969727, 9.449062 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.826599, 11.393879 ], [ -68.573914, 11.178402 ], [ -68.233337, 10.884557 ], [ -68.194885, 10.555322 ], [ -67.500000, 10.547221 ], [ -67.280273, 10.547221 ], [ -67.280273, 2.380601 ], [ -67.447815, 2.600120 ], [ -67.500000, 2.633045 ], [ -67.810364, 2.819601 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.839591 ], [ -67.824097, 4.505238 ], [ -67.744446, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.500000, 5.621453 ], [ -67.340698, 6.094129 ], [ -67.500000, 6.173324 ], [ -67.695007, 6.266158 ], [ -68.266296, 6.154209 ], [ -68.985901, 6.206090 ], [ -69.389648, 6.099591 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.087265 ], [ -71.960449, 6.991859 ], [ -72.199402, 7.340675 ], [ -72.443848, 7.425113 ], [ -72.479553, 7.632054 ], [ -72.361450, 8.002117 ], [ -72.441101, 8.404451 ], [ -72.660828, 8.624472 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.150909 ], [ -73.028870, 9.736128 ], [ -72.905273, 10.450000 ], [ -72.614136, 10.822515 ], [ -72.226868, 11.108337 ], [ -72.191162, 11.178402 ], [ -72.084045, 11.393879 ], [ -71.924744, 11.393879 ], [ -71.770935, 11.178402 ], [ -71.619873, 10.968157 ], [ -71.633606, 10.447299 ], [ -72.073059, 9.866040 ], [ -71.696777, 9.072264 ], [ -71.265564, 9.137351 ], [ -71.040344, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.375031 ], [ -70.161438, 11.393879 ], [ -68.826599, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.084045, 11.393879 ], [ -72.191162, 11.178402 ], [ -72.226868, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.028870, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.660828, 8.624472 ], [ -72.441101, 8.404451 ], [ -72.361450, 8.002117 ], [ -72.479553, 7.632054 ], [ -72.443848, 7.425113 ], [ -72.199402, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.087265 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.099591 ], [ -68.985901, 6.206090 ], [ -68.266296, 6.154209 ], [ -67.695007, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.094129 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.555848 ], [ -67.744446, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.839591 ], [ -67.500000, 3.710782 ], [ -67.337952, 3.543576 ], [ -67.302246, 3.318760 ], [ -67.500000, 3.124061 ], [ -67.810364, 2.819601 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.600120 ], [ -67.280273, 2.380601 ], [ -67.280273, 1.743810 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.804382, 1.090327 ], [ -69.219360, 0.985974 ], [ -69.252319, 0.601490 ], [ -69.452820, 0.705854 ], [ -70.015869, 0.541069 ], [ -70.018616, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.977417, -0.219726 ], [ -74.877319, -0.219726 ], [ -75.105286, -0.057678 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.800171, 0.085144 ], [ -76.291809, 0.414730 ], [ -76.577454, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.826693 ], [ -77.854614, 0.810215 ], [ -78.750000, 1.320989 ], [ -78.854370, 1.381397 ], [ -78.969727, 1.642231 ], [ -78.969727, 1.694394 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.765773 ], [ -78.662109, 2.268084 ], [ -78.428650, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.511292, 3.324244 ], [ -77.126770, 3.850553 ], [ -77.497559, 4.088932 ], [ -77.308044, 4.666767 ], [ -77.533264, 5.583184 ], [ -77.319031, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.223524 ], [ -77.752991, 7.710992 ], [ -77.431641, 7.637498 ], [ -77.242126, 7.934115 ], [ -77.475586, 8.523984 ], [ -77.351990, 8.670633 ], [ -76.835632, 8.638049 ], [ -76.085815, 9.337962 ], [ -75.673828, 9.443643 ], [ -75.665588, 9.774025 ], [ -75.481567, 10.620118 ], [ -74.907532, 11.084080 ], [ -74.275818, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.196167, 11.310401 ], [ -73.413391, 11.226898 ], [ -73.155212, 11.393879 ], [ -72.084045, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.280273, 1.743810 ], [ -67.280273, -0.219726 ], [ -69.977417, -0.219726 ], [ -70.021362, -0.184021 ], [ -70.018616, 0.000000 ], [ -70.015869, 0.541069 ], [ -69.452820, 0.705854 ], [ -69.252319, 0.601490 ], [ -69.219360, 0.985974 ], [ -69.804382, 1.090327 ], [ -69.818115, 1.713612 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.826599, 11.393879 ], [ -68.573914, 11.178402 ], [ -68.233337, 10.884557 ], [ -68.194885, 10.555322 ], [ -67.500000, 10.547221 ], [ -67.280273, 10.547221 ], [ -67.280273, 2.380601 ], [ -67.447815, 2.600120 ], [ -67.500000, 2.633045 ], [ -67.810364, 2.819601 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.839591 ], [ -67.824097, 4.505238 ], [ -67.744446, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.500000, 5.621453 ], [ -67.340698, 6.094129 ], [ -67.500000, 6.173324 ], [ -67.695007, 6.266158 ], [ -68.266296, 6.154209 ], [ -68.985901, 6.206090 ], [ -69.389648, 6.099591 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.087265 ], [ -71.960449, 6.991859 ], [ -72.199402, 7.340675 ], [ -72.443848, 7.425113 ], [ -72.479553, 7.632054 ], [ -72.361450, 8.002117 ], [ -72.441101, 8.404451 ], [ -72.660828, 8.624472 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.150909 ], [ -73.028870, 9.736128 ], [ -72.905273, 10.450000 ], [ -72.614136, 10.822515 ], [ -72.226868, 11.108337 ], [ -72.191162, 11.178402 ], [ -72.084045, 11.393879 ], [ -71.924744, 11.393879 ], [ -71.770935, 11.178402 ], [ -71.619873, 10.968157 ], [ -71.633606, 10.447299 ], [ -72.073059, 9.866040 ], [ -71.696777, 9.072264 ], [ -71.265564, 9.137351 ], [ -71.040344, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.375031 ], [ -70.161438, 11.393879 ], [ -68.826599, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.381397 ], [ -78.750000, 1.320989 ], [ -77.854614, 0.810215 ], [ -77.667847, 0.826693 ], [ -77.426147, 0.395505 ], [ -76.577454, 0.258178 ], [ -76.291809, 0.414730 ], [ -75.800171, 0.085144 ], [ -75.649109, 0.000000 ], [ -75.374451, -0.151062 ], [ -75.360718, -0.219726 ], [ -78.969727, -0.219726 ], [ -78.969727, 1.315497 ], [ -78.854370, 1.381397 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -72.084045, 11.393879 ], [ -72.191162, 11.178402 ], [ -72.226868, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.028870, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.660828, 8.624472 ], [ -72.441101, 8.404451 ], [ -72.361450, 8.002117 ], [ -72.479553, 7.632054 ], [ -72.443848, 7.425113 ], [ -72.199402, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.087265 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.099591 ], [ -68.985901, 6.206090 ], [ -68.266296, 6.154209 ], [ -67.695007, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.094129 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.555848 ], [ -67.744446, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.839591 ], [ -67.500000, 3.710782 ], [ -67.337952, 3.543576 ], [ -67.302246, 3.318760 ], [ -67.500000, 3.124061 ], [ -67.810364, 2.819601 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.600120 ], [ -67.280273, 2.380601 ], [ -67.280273, 1.743810 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.804382, 1.090327 ], [ -69.219360, 0.985974 ], [ -69.252319, 0.601490 ], [ -69.452820, 0.705854 ], [ -70.015869, 0.541069 ], [ -70.018616, 0.000000 ], [ -70.021362, -0.184021 ], [ -69.977417, -0.219726 ], [ -74.877319, -0.219726 ], [ -75.105286, -0.057678 ], [ -75.374451, -0.151062 ], [ -75.649109, 0.000000 ], [ -75.800171, 0.085144 ], [ -76.291809, 0.414730 ], [ -76.577454, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.826693 ], [ -77.854614, 0.810215 ], [ -78.750000, 1.320989 ], [ -78.854370, 1.381397 ], [ -78.969727, 1.642231 ], [ -78.969727, 1.694394 ], [ -78.750000, 1.741065 ], [ -78.618164, 1.765773 ], [ -78.662109, 2.268084 ], [ -78.428650, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.511292, 3.324244 ], [ -77.126770, 3.850553 ], [ -77.497559, 4.088932 ], [ -77.308044, 4.666767 ], [ -77.533264, 5.583184 ], [ -77.319031, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.223524 ], [ -77.752991, 7.710992 ], [ -77.431641, 7.637498 ], [ -77.242126, 7.934115 ], [ -77.475586, 8.523984 ], [ -77.351990, 8.670633 ], [ -76.835632, 8.638049 ], [ -76.085815, 9.337962 ], [ -75.673828, 9.443643 ], [ -75.665588, 9.774025 ], [ -75.481567, 10.620118 ], [ -74.907532, 11.084080 ], [ -74.275818, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.196167, 11.310401 ], [ -73.413391, 11.226898 ], [ -73.155212, 11.393879 ], [ -72.084045, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.105286, -0.057678 ], [ -74.877319, -0.219726 ], [ -75.360718, -0.219726 ], [ -75.374451, -0.151062 ], [ -75.105286, -0.057678 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.280273, 1.743810 ], [ -67.280273, -0.219726 ], [ -69.977417, -0.219726 ], [ -70.021362, -0.184021 ], [ -70.018616, 0.000000 ], [ -70.015869, 0.541069 ], [ -69.452820, 0.705854 ], [ -69.252319, 0.601490 ], [ -69.219360, 0.985974 ], [ -69.804382, 1.090327 ], [ -69.818115, 1.713612 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ] ] ] } } ] } ] } , @@ -3614,9 +3518,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Dominican Republic", "sov_a3": "DOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Dominican Republic", "adm0_a3": "DOM", "geou_dif": 0, "geounit": "Dominican Republic", "gu_a3": "DOM", "su_dif": 0, "subunit": "Dominican Republic", "su_a3": "DOM", "brk_diff": 0, "name": "Dominican Rep.", "name_long": "Dominican Republic", "brk_a3": "DOM", "brk_name": "Dominican Rep.", "abbrev": "Dom. Rep.", "postal": "DO", "formal_en": "Dominican Republic", "name_sort": "Dominican Republic", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 9650054, "gdp_md_est": 78000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DO", "iso_a3": "DOM", "iso_n3": "214", "un_a3": "214", "wb_a2": "DO", "wb_a3": "DOM", "woe_id": -99, "adm0_a3_is": "DOM", "adm0_a3_us": "DOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 14, "long_len": 18, "abbrev_len": 9, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.292998 ], [ -69.222107, 19.313735 ], [ -69.255066, 19.015384 ], [ -68.810120, 18.979026 ], [ -68.318481, 18.612410 ], [ -68.689270, 18.205871 ], [ -69.164429, 18.422290 ], [ -69.623108, 18.380592 ], [ -69.952698, 18.427502 ], [ -70.133972, 18.245003 ], [ -70.518494, 18.184997 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.284126 ], [ -71.400146, 17.599521 ], [ -71.658325, 17.756534 ], [ -71.707764, 18.044033 ], [ -71.688538, 18.315418 ], [ -71.943970, 18.617616 ], [ -71.702271, 18.784117 ], [ -71.625366, 19.171113 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.331482, 11.775948 ], [ -71.358948, 11.539234 ], [ -71.946716, 11.423495 ], [ -71.770935, 11.178402 ], [ -71.619873, 10.968157 ], [ -71.619873, 10.962764 ], [ -72.424622, 10.962764 ], [ -72.226868, 11.108337 ], [ -72.191162, 11.178402 ], [ -71.974182, 11.609193 ], [ -71.331482, 11.775948 ] ] ], [ [ [ -71.400146, 10.962764 ], [ -71.400146, 10.968157 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.375031 ], [ -70.293274, 11.845847 ], [ -69.944458, 12.162856 ], [ -69.584656, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.573914, 11.178402 ], [ -68.323975, 10.962764 ], [ -71.400146, 10.962764 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.754456, 12.436577 ], [ -71.400146, 12.374880 ], [ -71.136475, 12.111837 ], [ -71.331482, 11.775948 ], [ -71.974182, 11.609193 ], [ -72.191162, 11.178402 ], [ -72.226868, 11.108337 ], [ -72.424622, 10.962764 ], [ -75.055847, 10.962764 ], [ -74.907532, 11.084080 ], [ -74.275818, 11.102947 ], [ -74.248352, 11.178402 ], [ -74.196167, 11.310401 ], [ -73.413391, 11.226898 ], [ -72.627869, 11.732924 ], [ -72.237854, 11.956036 ], [ -71.754456, 12.436577 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.331482, 11.775948 ], [ -71.358948, 11.539234 ], [ -71.946716, 11.423495 ], [ -71.770935, 11.178402 ], [ -71.619873, 10.968157 ], [ -71.619873, 10.962764 ], [ -72.424622, 10.962764 ], [ -72.226868, 11.108337 ], [ -72.191162, 11.178402 ], [ -71.974182, 11.609193 ], [ -71.331482, 11.775948 ] ] ], [ [ [ -71.400146, 10.962764 ], [ -71.400146, 10.968157 ], [ -70.760193, 11.178402 ], [ -70.155945, 11.375031 ], [ -70.293274, 11.845847 ], [ -69.944458, 12.162856 ], [ -69.584656, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.573914, 11.178402 ], [ -68.323975, 10.962764 ], [ -71.400146, 10.962764 ] ] ] ] } } ] } ] } , @@ -3636,9 +3540,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.238586, 47.448522 ], [ -68.906250, 47.184113 ], [ -68.233337, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.261355 ], [ -67.280273, 44.666700 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.683764 ], [ -70.644836, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.079041, 41.779505 ], [ -70.186157, 42.145078 ], [ -69.884033, 41.922716 ], [ -69.963684, 41.638026 ], [ -70.639343, 41.475660 ], [ -71.119995, 41.494178 ], [ -71.858826, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.875061, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.710022, 40.930115 ], [ -73.330994, 40.979898 ], [ -72.240601, 41.118676 ], [ -72.023621, 40.979898 ], [ -71.943970, 40.930115 ], [ -72.487793, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.851806 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.964463 ], [ -78.969727, 43.133061 ], [ -78.969727, 43.536603 ], [ -78.750000, 43.614205 ], [ -78.719788, 43.624147 ], [ -77.739258, 43.628123 ], [ -76.819153, 43.628123 ], [ -76.500549, 44.018496 ], [ -76.374207, 44.095476 ], [ -75.319519, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.347473, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.084290, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.304260, 45.914855 ], [ -69.999390, 46.692783 ], [ -69.238586, 47.448522 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.969727, 43.536603 ], [ -78.969727, 49.066668 ], [ -68.513489, 49.066668 ], [ -68.672791, 48.922499 ], [ -69.952698, 47.744864 ], [ -71.103516, 46.822617 ], [ -70.254822, 46.985874 ], [ -68.650818, 48.299640 ], [ -67.500000, 48.757999 ], [ -67.280273, 48.844836 ], [ -67.280273, 45.261355 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.233337, 47.355571 ], [ -68.906250, 47.184113 ], [ -69.238586, 47.448522 ], [ -69.999390, 46.692783 ], [ -70.304260, 45.914855 ], [ -70.661316, 45.460131 ], [ -71.084290, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.347473, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.319519, 44.816916 ], [ -76.374207, 44.095476 ], [ -76.500549, 44.018496 ], [ -76.819153, 43.628123 ], [ -77.739258, 43.628123 ], [ -78.719788, 43.624147 ], [ -78.750000, 43.614205 ], [ -78.969727, 43.536603 ] ] ], [ [ [ -78.969727, 43.133061 ], [ -78.920288, 42.964463 ], [ -78.939514, 42.863886 ], [ -78.969727, 42.851806 ], [ -78.969727, 43.133061 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.238586, 47.448522 ], [ -68.906250, 47.184113 ], [ -68.233337, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.261355 ], [ -67.280273, 44.666700 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.683764 ], [ -70.644836, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.079041, 41.779505 ], [ -70.186157, 42.145078 ], [ -69.884033, 41.922716 ], [ -69.963684, 41.638026 ], [ -70.639343, 41.475660 ], [ -71.119995, 41.494178 ], [ -71.858826, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.875061, 41.219986 ], [ -73.569946, 40.979898 ], [ -73.710022, 40.930115 ], [ -73.330994, 40.979898 ], [ -72.240601, 41.118676 ], [ -72.023621, 40.979898 ], [ -71.943970, 40.930115 ], [ -72.487793, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.851806 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.964463 ], [ -78.969727, 43.133061 ], [ -78.969727, 43.536603 ], [ -78.750000, 43.614205 ], [ -78.719788, 43.624147 ], [ -77.739258, 43.628123 ], [ -76.819153, 43.628123 ], [ -76.500549, 44.018496 ], [ -76.374207, 44.095476 ], [ -75.319519, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.347473, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.084290, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.304260, 45.914855 ], [ -69.999390, 46.692783 ], [ -69.238586, 47.448522 ] ] ] } } ] } ] } , @@ -3774,23 +3678,23 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.214294, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.463542 ], [ -58.428040, -33.909175 ], [ -58.348389, -33.263953 ], [ -58.131409, -33.040903 ], [ -58.142395, -32.045333 ], [ -58.068237, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.068237, -31.765537 ], [ -58.142395, -32.045333 ], [ -58.131409, -33.040903 ], [ -58.348389, -33.263953 ], [ -58.428040, -33.909175 ], [ -58.496704, -34.431833 ], [ -57.225037, -35.288227 ], [ -57.362366, -35.978006 ], [ -56.736145, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.184228 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.927366 ], [ -62.336426, -38.826871 ], [ -62.124939, -39.423464 ], [ -62.330933, -40.172578 ], [ -62.146912, -40.676472 ], [ -62.663269, -40.979898 ], [ -62.745667, -41.029643 ], [ -63.613586, -41.145570 ], [ -63.827820, -41.145570 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.803415 ], [ -64.992371, -40.979898 ], [ -65.118713, -41.064857 ], [ -65.107727, -41.145570 ], [ -67.719727, -41.145570 ], [ -67.719727, -31.765537 ], [ -58.068237, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -31.765537 ], [ -56.030273, -34.822823 ], [ -56.214294, -34.858890 ], [ -56.250000, -34.843113 ], [ -57.139893, -34.429567 ], [ -57.818298, -34.463542 ], [ -58.428040, -33.909175 ], [ -58.348389, -33.263953 ], [ -58.131409, -33.040903 ], [ -58.142395, -32.045333 ], [ -58.068237, -31.765537 ], [ -56.030273, -31.765537 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, -28.630336 ], [ -56.030273, -30.838573 ], [ -56.250000, -30.670991 ], [ -56.975098, -30.109494 ], [ -57.626038, -30.216355 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.818206 ], [ -56.030273, -28.630336 ] ] ], [ [ [ -56.030273, -22.263680 ], [ -56.250000, -22.174688 ], [ -56.472473, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.919922, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.263680 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.583618, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.993989 ], [ -64.377136, -22.798971 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.272278, -21.833456 ], [ -66.373901, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.109494 ], [ -56.250000, -30.670991 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.142395, -32.045333 ], [ -58.117676, -31.952162 ], [ -57.875977, -31.017633 ], [ -57.626038, -30.216355 ], [ -56.975098, -30.109494 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, -28.630336 ], [ -56.030273, -30.838573 ], [ -56.250000, -30.670991 ], [ -56.975098, -30.109494 ], [ -57.626038, -30.216355 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.818206 ], [ -56.030273, -28.630336 ] ] ], [ [ [ -56.030273, -22.263680 ], [ -56.250000, -22.174688 ], [ -56.472473, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.919922, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.263680 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.281472 ], [ -56.472473, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.500963 ], [ -56.486206, -27.549677 ], [ -57.609558, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.604379 ], [ -57.777100, -25.162687 ], [ -58.807068, -24.771772 ], [ -60.029297, -24.033922 ], [ -60.847778, -23.880815 ], [ -62.685242, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.454665 ], [ -56.030273, -28.630336 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.281472 ], [ -56.472473, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.454665 ], [ -56.250000, -27.500963 ], [ -56.486206, -27.549677 ], [ -57.609558, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.604379 ], [ -57.777100, -25.162687 ], [ -58.807068, -24.771772 ], [ -60.029297, -24.033922 ], [ -60.847778, -23.880815 ], [ -62.685242, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.109494 ], [ -56.250000, -30.670991 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.142395, -32.045333 ], [ -58.117676, -31.952162 ], [ -57.875977, -31.017633 ], [ -57.626038, -30.216355 ], [ -56.975098, -30.109494 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.811631 ], [ -67.107239, -22.735657 ] ] ] } } ] } @@ -3798,37 +3702,37 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ], [ -56.321411, -22.146708 ], [ -56.472473, -22.085640 ], [ -56.598816, -22.146708 ], [ -57.626038, -22.146708 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.732997 ], [ -58.167114, -20.177145 ], [ -57.854004, -19.970767 ], [ -57.950134, -19.399249 ], [ -57.675476, -18.960844 ], [ -57.499695, -18.174559 ], [ -57.735901, -17.552391 ], [ -58.279724, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.241272, -16.299051 ], [ -60.158386, -16.259504 ], [ -60.542908, -15.093339 ], [ -60.251770, -15.077428 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.354870 ], [ -60.504456, -13.776734 ], [ -61.083984, -13.480448 ], [ -61.712952, -13.488460 ], [ -62.127686, -13.199839 ], [ -62.803345, -13.001882 ], [ -63.196106, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.401611, -11.566144 ], [ -65.354919, -11.178402 ], [ -65.330200, -10.962764 ], [ -56.030273, -10.962764 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.330200, -10.962764 ], [ -65.354919, -11.178402 ], [ -65.401611, -11.566144 ], [ -64.316711, -12.460715 ], [ -63.196106, -12.626938 ], [ -62.803345, -13.001882 ], [ -62.127686, -13.199839 ], [ -61.712952, -13.488460 ], [ -61.083984, -13.480448 ], [ -60.504456, -13.776734 ], [ -60.460510, -14.354870 ], [ -60.265503, -14.644711 ], [ -60.251770, -15.077428 ], [ -60.542908, -15.093339 ], [ -60.158386, -16.259504 ], [ -58.241272, -16.299051 ], [ -58.386841, -16.878147 ], [ -58.279724, -17.271973 ], [ -57.735901, -17.552391 ], [ -57.499695, -18.174559 ], [ -57.675476, -18.960844 ], [ -57.950134, -19.399249 ], [ -57.854004, -19.970767 ], [ -58.167114, -20.177145 ], [ -58.183594, -19.867477 ], [ -59.114685, -19.357794 ], [ -60.043030, -19.342245 ], [ -61.787109, -19.634827 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.051181 ], [ -62.583618, -21.943046 ], [ -62.652283, -22.146708 ], [ -62.762146, -22.146708 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.993989 ], [ -64.061279, -22.146708 ], [ -64.907227, -22.146708 ], [ -64.964905, -22.075459 ], [ -65.679016, -21.943046 ], [ -66.272278, -21.833456 ], [ -66.373901, -21.943046 ], [ -66.563416, -22.146708 ], [ -67.719727, -22.146708 ], [ -67.719727, -10.962764 ], [ -65.330200, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.907227, -22.146708 ], [ -66.563416, -22.146708 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ], [ [ [ -64.061279, -22.146708 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.762146, -22.146708 ], [ -64.061279, -22.146708 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ], [ -56.321411, -22.146708 ], [ -56.472473, -22.085640 ], [ -56.598816, -22.146708 ], [ -57.626038, -22.146708 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.732997 ], [ -58.167114, -20.177145 ], [ -57.854004, -19.970767 ], [ -57.950134, -19.399249 ], [ -57.675476, -18.960844 ], [ -57.499695, -18.174559 ], [ -57.735901, -17.552391 ], [ -58.279724, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.241272, -16.299051 ], [ -60.158386, -16.259504 ], [ -60.542908, -15.093339 ], [ -60.251770, -15.077428 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.354870 ], [ -60.504456, -13.776734 ], [ -61.083984, -13.480448 ], [ -61.712952, -13.488460 ], [ -62.127686, -13.199839 ], [ -62.803345, -13.001882 ], [ -63.196106, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.401611, -11.566144 ], [ -65.354919, -11.178402 ], [ -65.330200, -10.962764 ], [ -56.030273, -10.962764 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.043030, -19.342245 ], [ -59.114685, -19.357794 ], [ -58.183594, -19.867477 ], [ -58.167114, -20.177145 ], [ -57.870483, -20.732997 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -57.626038, -22.146708 ], [ -62.652283, -22.146708 ], [ -62.583618, -21.943046 ], [ -62.292480, -21.051181 ], [ -62.265015, -20.514499 ], [ -61.787109, -19.634827 ], [ -60.043030, -19.342245 ] ] ], [ [ [ -56.598816, -22.146708 ], [ -56.472473, -22.085640 ], [ -56.321411, -22.146708 ], [ -56.598816, -22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.272278, -21.833456 ], [ -65.679016, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.907227, -22.146708 ], [ -66.563416, -22.146708 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ], [ [ [ -64.061279, -22.146708 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.762146, -22.146708 ], [ -64.061279, -22.146708 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ], [ -65.382385, -11.393879 ], [ -65.354919, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.512117 ], [ -65.338440, -9.763198 ], [ -66.645813, -9.930977 ], [ -67.173157, -10.306813 ], [ -67.500000, -10.458103 ], [ -67.719727, -10.560722 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.338440, -9.763198 ], [ -65.445557, -10.512117 ], [ -65.321960, -10.895345 ], [ -65.354919, -11.178402 ], [ -65.382385, -11.393879 ], [ -67.719727, -11.393879 ], [ -67.719727, -10.560722 ], [ -67.500000, -10.458103 ], [ -67.173157, -10.306813 ], [ -66.645813, -9.930977 ], [ -65.338440, -9.763198 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ], [ -65.382385, -11.393879 ], [ -65.354919, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.512117 ], [ -65.338440, -9.763198 ], [ -66.645813, -9.930977 ], [ -67.173157, -10.306813 ], [ -67.500000, -10.458103 ], [ -67.719727, -10.560722 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.889951 ], [ -60.894470, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.949158, 10.090558 ], [ -61.660767, 10.366257 ], [ -61.679993, 10.760461 ], [ -61.105957, 10.889951 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, 5.257803 ], [ -67.719727, 6.263428 ], [ -67.695007, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.094129 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.555848 ], [ -67.719727, 5.257803 ] ] ], [ [ [ -67.719727, 2.764735 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.600120 ], [ -67.181396, 2.251617 ], [ -66.876526, 1.252342 ], [ -67.066040, 1.128772 ], [ -67.261047, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.719727, 1.848129 ], [ -67.719727, 2.764735 ] ] ], [ [ [ -67.719727, 4.162897 ], [ -67.620850, 3.839591 ], [ -67.500000, 3.710782 ], [ -67.337952, 3.543576 ], [ -67.302246, 3.318760 ], [ -67.500000, 3.124061 ], [ -67.719727, 2.910125 ], [ -67.719727, 4.162897 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.880493, 10.714587 ], [ -62.729187, 10.420287 ], [ -62.388611, 9.947209 ], [ -61.589355, 9.874158 ], [ -60.831299, 9.381322 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.757385, 8.366410 ], [ -60.551147, 7.779030 ], [ -60.639038, 7.414219 ], [ -60.295715, 7.043653 ], [ -60.542908, 6.855532 ], [ -61.158142, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.410828, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.918569 ], [ -60.965881, 4.535356 ], [ -62.086487, 4.162897 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.888245, 4.020439 ], [ -64.629822, 4.149201 ], [ -64.816589, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.410095, 3.126804 ], [ -64.270020, 2.495853 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.354919, 1.095819 ], [ -65.547180, 0.788244 ], [ -66.324463, 0.725078 ], [ -66.876526, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.447815, 2.600120 ], [ -67.500000, 2.633045 ], [ -67.719727, 2.764735 ], [ -67.719727, 2.910125 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.318760 ], [ -67.337952, 3.543576 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.839591 ], [ -67.719727, 4.162897 ], [ -67.719727, 5.257803 ], [ -67.521973, 5.555848 ], [ -67.500000, 5.621453 ], [ -67.340698, 6.094129 ], [ -67.500000, 6.173324 ], [ -67.695007, 6.266158 ], [ -67.719727, 6.263428 ], [ -67.719727, 10.549922 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.544521 ], [ -66.228333, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.316711, 10.641713 ], [ -63.078003, 10.701093 ], [ -61.880493, 10.714587 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.889951 ], [ -60.894470, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.949158, 10.090558 ], [ -61.660767, 10.366257 ], [ -61.679993, 10.760461 ], [ -61.105957, 10.889951 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.757385, 8.366410 ], [ -59.100952, 7.999397 ], [ -58.482971, 7.348847 ], [ -58.455505, 6.833716 ], [ -58.079224, 6.809171 ], [ -57.540894, 6.320758 ], [ -57.148132, 5.973949 ], [ -57.307434, 5.074529 ], [ -57.914429, 4.811839 ], [ -57.859497, 4.576425 ], [ -58.043518, 4.061536 ], [ -57.601318, 3.335212 ], [ -57.282715, 3.332470 ], [ -57.150879, 2.770221 ], [ -56.538391, 1.900286 ], [ -56.782837, 1.864600 ], [ -57.334900, 1.949697 ], [ -57.661743, 1.683413 ], [ -58.112183, 1.507700 ], [ -58.430786, 1.463769 ], [ -58.540649, 1.268817 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.787735 ], [ -59.718933, 2.248873 ], [ -59.974365, 2.756504 ], [ -59.815063, 3.606625 ], [ -59.537659, 3.960161 ], [ -59.768372, 4.423090 ], [ -60.111694, 4.573687 ], [ -59.979858, 5.014339 ], [ -60.213318, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.410828, 5.960290 ], [ -61.138916, 6.233395 ], [ -61.158142, 6.697343 ], [ -60.542908, 6.855532 ], [ -60.295715, 7.043653 ], [ -60.639038, 7.414219 ], [ -60.551147, 7.779030 ], [ -59.757385, 8.366410 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.148132, 5.973949 ], [ -56.250000, 5.823687 ], [ -56.030273, 5.785432 ], [ -56.030273, 2.344926 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.169281 ], [ -56.030273, 1.823423 ], [ -56.250000, 1.856365 ], [ -56.538391, 1.900286 ], [ -57.150879, 2.770221 ], [ -57.282715, 3.332470 ], [ -57.601318, 3.335212 ], [ -58.043518, 4.061536 ], [ -57.859497, 4.576425 ], [ -57.914429, 4.811839 ], [ -57.307434, 5.074529 ], [ -57.148132, 5.973949 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, 1.823423 ], [ -56.030273, -0.219726 ], [ -67.719727, -0.219726 ], [ -67.719727, 1.848129 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.261047, 1.719102 ], [ -67.066040, 1.128772 ], [ -66.876526, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.547180, 0.788244 ], [ -65.354919, 1.095819 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.495853 ], [ -64.410095, 3.126804 ], [ -64.368896, 3.798484 ], [ -64.816589, 4.056056 ], [ -64.629822, 4.149201 ], [ -63.888245, 4.020439 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.086487, 4.162897 ], [ -60.965881, 4.535356 ], [ -60.600586, 4.918569 ], [ -60.732422, 5.200365 ], [ -60.213318, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.573687 ], [ -59.768372, 4.423090 ], [ -59.537659, 3.960161 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.718933, 2.248873 ], [ -59.644775, 1.787735 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.463769 ], [ -58.112183, 1.507700 ], [ -57.661743, 1.683413 ], [ -57.334900, 1.949697 ], [ -56.782837, 1.864600 ], [ -56.538391, 1.900286 ], [ -56.250000, 1.856365 ], [ -56.030273, 1.823423 ] ] ], [ [ [ -56.030273, 2.169281 ], [ -56.074219, 2.221428 ], [ -56.030273, 2.344926 ], [ -56.030273, 2.169281 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, 5.257803 ], [ -67.719727, 6.263428 ], [ -67.695007, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.094129 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.555848 ], [ -67.719727, 5.257803 ] ] ], [ [ [ -67.719727, 2.764735 ], [ -67.500000, 2.633045 ], [ -67.447815, 2.600120 ], [ -67.181396, 2.251617 ], [ -66.876526, 1.252342 ], [ -67.066040, 1.128772 ], [ -67.261047, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.719727, 1.848129 ], [ -67.719727, 2.764735 ] ] ], [ [ [ -67.719727, 4.162897 ], [ -67.620850, 3.839591 ], [ -67.500000, 3.710782 ], [ -67.337952, 3.543576 ], [ -67.302246, 3.318760 ], [ -67.500000, 3.124061 ], [ -67.719727, 2.910125 ], [ -67.719727, 4.162897 ] ] ] ] } } ] } ] } , @@ -3840,9 +3744,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 45.640928 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.137493 ], [ -66.964417, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.719727, 44.467111 ], [ -67.719727, 45.640928 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.756165, 49.066668 ], [ -64.495239, 48.922499 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.993368 ], [ -64.473267, 46.238752 ], [ -63.174133, 45.738777 ], [ -61.520691, 45.884273 ], [ -60.518188, 47.008353 ], [ -60.449524, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.265222 ], [ -63.253784, 44.670606 ], [ -64.245300, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.123962, 43.618182 ], [ -66.162415, 44.465151 ], [ -64.426575, 45.292279 ], [ -66.025085, 45.259422 ], [ -67.137451, 45.137493 ], [ -67.500000, 45.452424 ], [ -67.719727, 45.640928 ], [ -67.719727, 48.671013 ], [ -67.500000, 48.757999 ], [ -67.085266, 48.922499 ], [ -66.719971, 49.066668 ], [ -64.756165, 49.066668 ] ] ], [ [ [ -64.014587, 47.036439 ], [ -63.665771, 46.549417 ], [ -62.937927, 46.415139 ], [ -62.012329, 46.443535 ], [ -62.503967, 46.033203 ], [ -62.874756, 45.968334 ], [ -64.143677, 46.392411 ], [ -64.393616, 46.726683 ], [ -64.014587, 47.036439 ] ] ], [ [ [ -56.030273, 49.066668 ], [ -56.030273, 47.576526 ], [ -56.250000, 47.632082 ], [ -57.323914, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.899772 ], [ -58.796082, 48.252112 ], [ -59.232788, 48.523881 ], [ -58.675232, 48.922499 ], [ -58.474731, 49.066668 ], [ -56.030273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 45.640928 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.137493 ], [ -66.964417, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.719727, 44.467111 ], [ -67.719727, 45.640928 ] ] ] } } ] } ] } , @@ -3952,11 +3856,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.797911 ], [ -46.472168, -24.089097 ], [ -47.647705, -24.886436 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.474426, -27.176469 ], [ -48.661194, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.984673 ], [ -51.575317, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.099915, -32.138409 ], [ -53.709412, -32.138409 ], [ -53.789062, -32.047661 ], [ -53.923645, -31.952162 ], [ -54.571838, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.972595, -30.883369 ], [ -56.250000, -30.670991 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.036961 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.818206 ], [ -55.162354, -27.882784 ], [ -54.489441, -27.474161 ], [ -53.648987, -26.924519 ], [ -53.627014, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.738055 ], [ -54.429016, -25.162687 ], [ -54.294434, -24.569606 ], [ -54.291687, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.027771, -24.001308 ], [ -55.401306, -23.956136 ], [ -55.516663, -23.571540 ], [ -55.610046, -22.654572 ], [ -55.796814, -22.357696 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.088185 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.670991 ], [ -55.972595, -30.883369 ], [ -55.601807, -30.852721 ], [ -54.571838, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.047661 ], [ -53.709412, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.088185 ], [ -56.250000, -22.174688 ], [ -55.796814, -22.357696 ], [ -55.610046, -22.654572 ], [ -55.516663, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.027771, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.291687, -24.021379 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.162687 ], [ -54.624023, -25.738055 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.388840 ], [ -56.250000, -27.500963 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.088185 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.818206 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.036961 ], [ -56.469727, -27.544806 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.088185 ], [ -56.250000, -22.174688 ], [ -55.796814, -22.357696 ], [ -55.610046, -22.654572 ], [ -55.516663, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.027771, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.291687, -24.021379 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.162687 ], [ -54.624023, -25.738055 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.388840 ], [ -56.250000, -27.500963 ], [ -56.469727, -27.544806 ], [ -56.469727, -22.088185 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.670991 ], [ -55.972595, -30.883369 ], [ -55.601807, -30.852721 ], [ -54.571838, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.047661 ], [ -53.709412, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } ] } ] } , @@ -3978,9 +3882,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.033264, 6.025848 ], [ -53.959351, 5.755372 ], [ -54.478455, 4.896677 ], [ -54.398804, 4.212204 ], [ -54.006042, 3.620330 ], [ -54.181824, 3.189879 ], [ -54.269714, 2.731813 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.523293 ], [ -55.568848, 2.421764 ], [ -55.972595, 2.509573 ], [ -56.074219, 2.221428 ], [ -55.906677, 2.021065 ], [ -55.994568, 1.817932 ], [ -56.250000, 1.856365 ], [ -56.469727, 1.889306 ], [ -56.469727, 5.859207 ], [ -56.250000, 5.823687 ], [ -55.950623, 5.771769 ], [ -55.840759, 5.952095 ], [ -55.033264, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.974060, 1.735574 ], [ -49.946594, 1.046390 ], [ -50.699158, 0.222473 ], [ -50.468445, 0.000000 ], [ -50.388794, -0.079651 ], [ -48.798523, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.889306 ], [ -56.250000, 1.856365 ], [ -55.994568, 1.817932 ], [ -55.906677, 2.021065 ], [ -56.074219, 2.221428 ], [ -55.972595, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.523293 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.778076, 2.377857 ], [ -53.555603, 2.333949 ], [ -53.418274, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.555847, 2.504085 ], [ -52.248230, 3.241982 ], [ -51.657715, 4.157419 ], [ -51.317139, 4.203986 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.755372 ], [ -52.882690, 5.410945 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.157419 ], [ -52.248230, 3.241982 ], [ -52.555847, 2.504085 ], [ -52.940369, 2.125367 ], [ -53.418274, 2.054003 ], [ -53.555603, 2.333949 ], [ -53.778076, 2.377857 ], [ -54.088440, 2.106154 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.011536, 3.623071 ], [ -54.398804, 4.212204 ], [ -54.478455, 4.896677 ], [ -53.959351, 5.755372 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.974060, 1.735574 ], [ -49.946594, 1.046390 ], [ -50.699158, 0.222473 ], [ -50.468445, 0.000000 ], [ -50.388794, -0.079651 ], [ -48.798523, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.889306 ], [ -56.250000, 1.856365 ], [ -55.994568, 1.817932 ], [ -55.906677, 2.021065 ], [ -56.074219, 2.221428 ], [ -55.972595, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.523293 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.778076, 2.377857 ], [ -53.555603, 2.333949 ], [ -53.418274, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.555847, 2.504085 ], [ -52.248230, 3.241982 ], [ -51.657715, 4.157419 ], [ -51.317139, 4.203986 ] ] ] } } ] } ] } , @@ -4282,10 +4186,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.806824, 11.393879 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.581360, 11.393879 ], [ -14.806824, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 11.393879 ], [ -11.030273, 9.933682 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.917419, 10.047289 ], [ -12.150879, 9.857922 ], [ -12.425537, 9.836273 ], [ -12.595825, 9.619706 ], [ -12.711182, 9.343382 ], [ -13.246765, 8.904067 ], [ -13.686218, 9.495117 ], [ -14.073486, 9.884981 ], [ -14.328918, 10.014834 ], [ -14.578857, 10.214922 ], [ -14.694214, 10.655210 ], [ -14.839783, 10.876465 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.806824, 11.393879 ], [ -11.030273, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -11.030273, 9.933682 ], [ -11.030273, 7.536764 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.708679, 6.860985 ], [ -12.428284, 7.261670 ], [ -12.950134, 7.798079 ], [ -13.123169, 8.165274 ], [ -13.246765, 8.904067 ], [ -12.711182, 9.343382 ], [ -12.595825, 9.619706 ], [ -12.425537, 9.836273 ], [ -12.150879, 9.857922 ], [ -11.917419, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 11.393879 ], [ -11.030273, 9.933682 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.917419, 10.047289 ], [ -12.150879, 9.857922 ], [ -12.425537, 9.836273 ], [ -12.595825, 9.619706 ], [ -12.711182, 9.343382 ], [ -13.246765, 8.904067 ], [ -13.686218, 9.495117 ], [ -14.073486, 9.884981 ], [ -14.328918, 10.014834 ], [ -14.578857, 10.214922 ], [ -14.694214, 10.655210 ], [ -14.839783, 10.876465 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.806824, 11.393879 ], [ -11.030273, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 7.536764 ], [ -11.030273, 6.394460 ], [ -11.250000, 6.604587 ], [ -11.439514, 6.784626 ], [ -11.250000, 7.038202 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.397877 ], [ -11.030273, 7.536764 ] ] ] } } ] } ] } @@ -4296,16 +4200,16 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.891479, 21.943046 ], [ -16.605835, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.081482, 13.875413 ], [ -14.685974, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.792739 ], [ -13.845520, 13.504485 ], [ -14.276733, 13.280046 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.277373 ], [ -15.691223, 13.269353 ], [ -15.930176, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.712952, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.859414 ], [ -15.081482, 13.875413 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.010559, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } ] } ] } @@ -4414,39 +4318,39 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.095966 ], [ -6.204529, 10.522919 ], [ -6.492920, 10.412183 ], [ -6.665955, 10.431092 ], [ -6.849976, 10.139228 ], [ -7.621765, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.407288, 10.908830 ], [ -8.621521, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.199280, 11.393879 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.095966 ], [ -6.204529, 10.522919 ], [ -6.492920, 10.412183 ], [ -6.665955, 10.431092 ], [ -6.849976, 10.139228 ], [ -7.621765, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.407288, 10.908830 ], [ -8.621521, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.199280, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.760803, 10.935798 ], [ -1.203003, 11.008601 ], [ -2.941589, 10.962764 ], [ -2.963562, 10.395975 ], [ -2.826233, 9.641369 ], [ -3.512878, 9.901216 ], [ -3.979797, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.199280, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.250000, 10.047289 ], [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.038202 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.795535 ], [ -11.469727, 10.047289 ], [ -11.250000, 10.047289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.047289 ], [ -11.469727, 10.047289 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.540281 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.209290, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.440247, 7.686495 ], [ -8.484192, 7.395153 ], [ -8.385315, 6.912794 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.192438 ], [ -7.992554, 6.126900 ], [ -7.569580, 5.706181 ], [ -7.539368, 5.312501 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.973328, 4.354627 ], [ -9.006042, 4.833733 ], [ -9.912415, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.250000, 6.604587 ], [ -11.439514, 6.784626 ], [ -11.250000, 7.038202 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.397877 ], [ -10.695190, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.540281 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Cรดte d'Ivoire", "name_long": "Cรดte d'Ivoire", "brk_a3": "CIV", "brk_name": "Cรดte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Cรดte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.204529, 10.522919 ], [ -6.050720, 10.095966 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.979797, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.826233, 9.641369 ], [ -2.562561, 8.219646 ], [ -2.982788, 7.378810 ], [ -3.243713, 6.249776 ], [ -2.809753, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.984241 ], [ -4.010010, 5.178482 ], [ -4.649963, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.528625, 4.705091 ], [ -7.520142, 4.338195 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.539368, 5.312501 ], [ -7.569580, 5.706181 ], [ -7.992554, 6.126900 ], [ -8.311157, 6.192438 ], [ -8.602295, 6.468151 ], [ -8.385315, 6.912794 ], [ -8.484192, 7.395153 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.686495 ], [ -8.220520, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.375903 ], [ -8.308411, 9.790264 ], [ -8.228760, 10.128413 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.621765, 10.147339 ], [ -6.849976, 10.139228 ], [ -6.665955, 10.431092 ], [ -6.492920, 10.412183 ], [ -6.204529, 10.522919 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.615986 ], [ 0.000000, 5.533978 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.826233, 9.641369 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.374362 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.546570, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.325623, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.546570, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ -0.439453, 11.097556 ], [ -0.708618, 10.962764 ], [ -0.917358, 10.962764 ], [ -1.203003, 11.008601 ], [ -2.938843, 10.962764 ], [ -5.462952, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.007263, 13.472435 ], [ -3.523865, 13.338848 ], [ -3.103638, 13.541871 ], [ -2.969055, 13.798074 ], [ -2.191772, 14.245749 ], [ -2.002258, 14.559659 ], [ -1.065674, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ -0.439453, 11.097556 ], [ -0.708618, 10.962764 ], [ -0.917358, 10.962764 ], [ -1.203003, 11.008601 ], [ -2.938843, 10.962764 ], [ -5.462952, 10.962764 ], [ -5.325623, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.007263, 13.472435 ], [ -3.523865, 13.338848 ], [ -3.103638, 13.541871 ], [ -2.969055, 13.798074 ], [ -2.191772, 14.245749 ], [ -2.002258, 14.559659 ], [ -1.065674, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 22.146708 ], [ 0.219727, 21.652323 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.546570, 22.146708 ], [ 0.219727, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.219727, 11.013993 ], [ 0.219727, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.917358, 10.962764 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.708618, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.708618, 10.962764 ] ] ] ] } } ] } ] } , @@ -4456,20 +4360,20 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.274170, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.902477 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.338230 ], [ -11.250000, 28.529036 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.274170, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.973610 ], [ -1.549072, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.091919, 21.739091 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.924622, 24.973610 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.973610 ], [ -1.549072, 22.793907 ], [ -0.230713, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.091919, 21.739091 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.924622, 24.973610 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 32.138409 ], [ 0.219727, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.793907 ], [ -4.924622, 24.973610 ], [ -8.684692, 27.396155 ], [ -8.665466, 27.588632 ], [ -8.673706, 28.842268 ], [ -7.058716, 29.578234 ], [ -6.061707, 29.730992 ], [ -5.243225, 30.000138 ], [ -4.858704, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.637014 ], [ -3.067932, 31.723495 ], [ -2.790527, 31.952162 ], [ -2.617493, 32.094209 ], [ -2.274170, 32.138409 ], [ 0.219727, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 41.145570 ], [ 0.219727, 40.227121 ], [ 0.107117, 40.124291 ], [ 0.000000, 39.899202 ], [ -0.277405, 39.310925 ], [ 0.000000, 38.901721 ], [ 0.112610, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.466919, 38.292092 ], [ -0.683899, 37.642510 ], [ -1.439209, 37.442155 ], [ -2.145081, 36.675028 ], [ -3.416748, 36.659606 ], [ -4.369812, 36.677231 ], [ -4.996033, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.029111 ], [ -6.237488, 36.368222 ], [ -6.520386, 36.943307 ], [ -7.454224, 37.096812 ], [ -7.536621, 37.429069 ], [ -7.165833, 37.803274 ], [ -7.028503, 38.076204 ], [ -7.374573, 38.373962 ], [ -7.097168, 39.029852 ], [ -7.498169, 39.628961 ], [ -7.066956, 39.711413 ], [ -7.025757, 40.185168 ], [ -6.863708, 40.331890 ], [ -6.852722, 40.979898 ], [ -6.849976, 41.110399 ], [ -6.792297, 41.145570 ], [ 0.219727, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.792297, 41.145570 ], [ -6.849976, 41.110399 ], [ -6.852722, 40.979898 ], [ -6.863708, 40.331890 ], [ -7.025757, 40.185168 ], [ -7.066956, 39.711413 ], [ -7.498169, 39.628961 ], [ -7.097168, 39.029852 ], [ -7.374573, 38.373962 ], [ -7.028503, 38.076204 ], [ -7.165833, 37.803274 ], [ -7.536621, 37.429069 ], [ -7.454224, 37.096812 ], [ -7.855225, 36.837866 ], [ -8.382568, 36.978421 ], [ -8.898926, 36.868635 ], [ -8.745117, 37.651209 ], [ -8.841248, 38.266219 ], [ -9.286194, 38.358888 ], [ -9.527893, 38.736946 ], [ -9.448242, 39.391632 ], [ -9.047241, 39.755769 ], [ -8.978577, 40.159984 ], [ -8.769836, 40.759741 ], [ -8.780823, 40.979898 ], [ -8.789062, 41.145570 ], [ -6.792297, 41.145570 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 41.145570 ], [ 0.219727, 40.227121 ], [ 0.107117, 40.124291 ], [ 0.000000, 39.899202 ], [ -0.277405, 39.310925 ], [ 0.000000, 38.901721 ], [ 0.112610, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.466919, 38.292092 ], [ -0.683899, 37.642510 ], [ -1.439209, 37.442155 ], [ -2.145081, 36.675028 ], [ -3.416748, 36.659606 ], [ -4.369812, 36.677231 ], [ -4.996033, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.029111 ], [ -6.237488, 36.368222 ], [ -6.520386, 36.943307 ], [ -7.454224, 37.096812 ], [ -7.536621, 37.429069 ], [ -7.165833, 37.803274 ], [ -7.028503, 38.076204 ], [ -7.374573, 38.373962 ], [ -7.097168, 39.029852 ], [ -7.498169, 39.628961 ], [ -7.066956, 39.711413 ], [ -7.025757, 40.185168 ], [ -6.863708, 40.331890 ], [ -6.852722, 40.979898 ], [ -6.849976, 41.110399 ], [ -6.792297, 41.145570 ], [ 0.219727, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.929871, 35.759886 ], [ -5.193787, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.639221, 35.400245 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.793518, 34.526924 ], [ -1.733093, 33.920572 ], [ -1.387024, 32.863439 ], [ -1.123352, 32.650938 ], [ -1.307373, 32.263911 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.018494, 31.765537 ], [ -9.555359, 31.765537 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.240985 ], [ -7.654724, 33.696923 ], [ -6.913147, 34.109531 ], [ -6.242981, 35.146863 ], [ -5.929871, 35.759886 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 36.115690 ], [ 0.219727, 31.765537 ], [ -3.018494, 31.765537 ], [ -2.790527, 31.952162 ], [ -2.617493, 32.094209 ], [ -1.307373, 32.263911 ], [ -1.123352, 32.650938 ], [ -1.387024, 32.863439 ], [ -1.733093, 33.920572 ], [ -1.793518, 34.526924 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.971338 ], [ 0.219727, 36.115690 ] ] ] } } @@ -4478,11 +4382,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.978821, 43.749273 ], [ -6.753845, 43.568452 ], [ -5.410767, 43.574422 ], [ -4.347839, 43.403052 ], [ -3.518372, 43.454913 ], [ -1.900635, 43.423004 ], [ -1.502380, 43.034768 ], [ 0.000000, 42.664261 ], [ 0.219727, 42.609706 ], [ 0.219727, 40.813809 ], [ -6.855469, 40.813809 ], [ -6.852722, 40.979898 ], [ -6.849976, 41.110399 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.883876 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.264465, 42.281373 ], [ -8.670959, 42.134895 ], [ -9.033508, 41.879786 ], [ -8.984070, 42.593533 ], [ -9.393311, 43.026737 ], [ -7.978821, 43.749273 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 49.066668 ], [ 0.219727, 42.609706 ], [ 0.000000, 42.664261 ], [ -1.502380, 43.034768 ], [ -1.900635, 43.423004 ], [ -1.384277, 44.022447 ], [ -1.194763, 46.014131 ], [ -2.224731, 47.064509 ], [ -2.963562, 47.570967 ], [ -4.490662, 47.954984 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.617737, 48.643798 ], [ -1.694641, 48.922499 ], [ -1.733093, 49.066668 ], [ 0.219727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.264465, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.883876 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.110399 ], [ -6.852722, 40.979898 ], [ -6.855469, 40.813809 ], [ -8.772583, 40.813809 ], [ -8.780823, 40.979898 ], [ -8.791809, 41.184855 ], [ -8.989563, 41.543533 ], [ -9.033508, 41.879786 ], [ -8.670959, 42.134895 ], [ -8.264465, 42.281373 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 49.066668 ], [ 0.219727, 42.609706 ], [ 0.000000, 42.664261 ], [ -1.502380, 43.034768 ], [ -1.900635, 43.423004 ], [ -1.384277, 44.022447 ], [ -1.194763, 46.014131 ], [ -2.224731, 47.064509 ], [ -2.963562, 47.570967 ], [ -4.490662, 47.954984 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.617737, 48.643798 ], [ -1.694641, 48.922499 ], [ -1.733093, 49.066668 ], [ 0.219727, 49.066668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.978821, 43.749273 ], [ -6.753845, 43.568452 ], [ -5.410767, 43.574422 ], [ -4.347839, 43.403052 ], [ -3.518372, 43.454913 ], [ -1.900635, 43.423004 ], [ -1.502380, 43.034768 ], [ 0.000000, 42.664261 ], [ 0.219727, 42.609706 ], [ 0.219727, 40.813809 ], [ -6.855469, 40.813809 ], [ -6.852722, 40.979898 ], [ -6.849976, 41.110399 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.883876 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.264465, 42.281373 ], [ -8.670959, 42.134895 ], [ -9.033508, 41.879786 ], [ -8.984070, 42.593533 ], [ -9.393311, 43.026737 ], [ -7.978821, 43.749273 ] ] ] } } ] } ] } , @@ -4552,9 +4456,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.464165 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 0.219726 ], [ 11.469727, -3.705300 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 10.066223, -2.970470 ], [ 9.404297, -2.144580 ], [ 8.797302, -1.112296 ], [ 8.830261, -0.780005 ], [ 9.047241, -0.458674 ], [ 9.201050, 0.000000 ], [ 9.275208, 0.219726 ], [ 11.469727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, -3.705300 ], [ 11.469727, -4.464165 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.469727, -3.705300 ] ] ] } } ] } ] } , @@ -4562,18 +4466,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.376038, 11.393879 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.022080 ], [ -0.219727, 11.059821 ], [ -0.219727, 11.393879 ], [ 1.376038, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.733477 ], [ 3.600769, 10.331132 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.137351 ], [ 2.724609, 8.507687 ], [ 2.749329, 7.871544 ], [ 2.691650, 6.257967 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.830988 ], [ 1.664429, 9.129216 ], [ 1.463928, 9.335252 ], [ 1.425476, 9.825448 ], [ 1.076660, 10.174374 ], [ 0.771790, 10.471607 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.376038, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.174374 ], [ 1.425476, 9.825448 ], [ 1.463928, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.830988 ], [ 1.864929, 6.143286 ], [ 1.060181, 5.927508 ], [ 0.837708, 6.279808 ], [ 0.571289, 6.915521 ], [ 0.491638, 7.411495 ], [ 0.711365, 8.312059 ], [ 0.461426, 8.676064 ], [ 0.365295, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.916921 ], [ 0.024719, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.022080 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.916921 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.219727, 5.451959 ], [ -0.219727, 11.059821 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.578796, 11.393879 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.795776, 10.733477 ], [ 3.600769, 10.331132 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.137351 ], [ 2.724609, 8.507687 ], [ 2.749329, 7.871544 ], [ 2.691650, 6.257967 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.830988 ], [ 1.664429, 9.129216 ], [ 1.463928, 9.335252 ], [ 1.425476, 9.825448 ], [ 1.076660, 10.174374 ], [ 0.771790, 10.471607 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.376038, 11.393879 ], [ 3.578796, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.578796, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.497437, 7.054557 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.287295 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.948364, 3.905359 ], [ 8.745117, 4.351889 ], [ 8.489685, 4.494285 ], [ 8.500671, 4.770784 ], [ 8.758850, 5.479300 ], [ 9.234009, 6.443589 ], [ 9.522400, 6.454505 ], [ 10.118408, 7.038202 ], [ 10.497437, 7.054557 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.497437, 7.054557 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.287295 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.948364, 3.905359 ], [ 8.745117, 4.351889 ], [ 8.489685, 4.494285 ], [ 8.500671, 4.770784 ], [ 8.758850, 5.479300 ], [ 9.234009, 6.443589 ], [ 9.522400, 6.454505 ], [ 10.118408, 7.038202 ], [ 10.497437, 7.054557 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 2.287295 ], [ 11.469727, -0.219726 ], [ 9.129639, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.291687, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.469727, 2.287295 ] ] ] } } ] } ] } @@ -4584,15 +4488,15 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.431213, 13.990041 ], [ 0.994263, 13.336175 ], [ 1.024475, 12.851971 ], [ 2.178040, 12.624258 ], [ 2.153320, 11.939914 ], [ 1.936340, 11.641476 ], [ 1.447449, 11.547307 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ -0.219727, 11.059821 ], [ -0.219727, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.373535, 14.928862 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.613037, 22.146708 ], [ 9.247742, 21.943046 ], [ 8.572083, 21.565502 ], [ 5.677185, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.141049 ], [ 1.823730, 20.609649 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.935403 ], [ -0.219727, 22.146708 ], [ 9.613037, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.336175 ], [ 11.250000, 13.360227 ], [ 10.989075, 13.386948 ], [ 10.700684, 13.247966 ], [ 10.115662, 13.277373 ], [ 9.525146, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.114255 ], [ 6.446228, 13.493802 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.531190 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.551883 ], [ 3.611755, 11.660306 ], [ 2.848206, 12.235339 ], [ 2.491150, 12.232655 ], [ 2.153320, 11.939914 ], [ 2.178040, 12.624258 ], [ 1.024475, 12.851971 ], [ 0.994263, 13.336175 ], [ 0.431213, 13.990041 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.408672 ], [ 3.639221, 15.567482 ], [ 3.724365, 16.183024 ], [ 4.270935, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.677185, 19.601194 ], [ 8.572083, 21.565502 ], [ 9.247742, 21.943046 ], [ 9.613037, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.889893, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.628235, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.889893, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.446228, 13.493802 ], [ 6.819763, 13.114255 ], [ 7.330627, 13.098205 ], [ 7.805786, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.851971 ], [ 10.115662, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.386948 ], [ 11.250000, 13.360227 ], [ 11.469727, 13.336175 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.628235, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.611755, 11.660306 ], [ 3.680420, 12.551883 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.531190 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } ] } @@ -4616,24 +4520,24 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.219727, 39.436193 ], [ -0.219727, 41.145570 ], [ 1.604004, 41.145570 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.722351, 40.678555 ], [ 0.107117, 40.124291 ], [ 0.000000, 39.899202 ], [ -0.219727, 39.436193 ] ] ], [ [ [ -0.219727, 39.223743 ], [ 0.000000, 38.901721 ], [ 0.112610, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.219727, 38.483695 ], [ -0.219727, 39.223743 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.499181 ], [ 9.670715, 39.176917 ], [ 9.214783, 39.240763 ], [ 8.808289, 38.905996 ], [ 8.429260, 39.172659 ], [ 8.388062, 40.377936 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.104919, 41.145570 ], [ 9.264221, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.350509 ], [ 10.209045, 37.230328 ], [ 10.181580, 36.723475 ], [ 11.027527, 37.092431 ], [ 11.098938, 36.899391 ], [ 10.599060, 36.410231 ], [ 10.593567, 35.946883 ], [ 10.939636, 35.699686 ], [ 10.807800, 34.834096 ], [ 10.148621, 34.329828 ], [ 10.340881, 33.785996 ], [ 10.857239, 33.767732 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.234093 ], [ 11.469727, 33.144451 ], [ 11.469727, 32.879587 ], [ 11.431274, 32.368363 ], [ 11.250000, 32.261588 ], [ 10.945129, 32.082575 ], [ 10.818787, 31.952162 ], [ 10.640259, 31.765537 ], [ 9.135132, 31.765537 ], [ 9.055481, 32.103516 ], [ 8.440247, 32.505129 ], [ 8.429260, 32.748013 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.480802 ], [ 8.217773, 36.432332 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.350509 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.330627, 37.118716 ], [ 7.737122, 36.886211 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.432332 ], [ 8.377075, 35.480802 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.429260, 32.748013 ], [ 8.440247, 32.505129 ], [ 9.055481, 32.103516 ], [ 9.135132, 31.765537 ], [ -0.219727, 31.765537 ], [ -0.219727, 35.873472 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.971338 ], [ 0.502625, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.161316, 36.782892 ], [ 4.814758, 36.864240 ], [ 5.320129, 36.716871 ], [ 6.262207, 37.109955 ], [ 7.330627, 37.118716 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.499181 ], [ 9.670715, 39.176917 ], [ 9.214783, 39.240763 ], [ 8.808289, 38.905996 ], [ 8.429260, 39.172659 ], [ 8.388062, 40.377936 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.104919, 41.145570 ], [ 9.264221, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.879587 ], [ 11.469727, 31.765537 ], [ 10.640259, 31.765537 ], [ 10.818787, 31.952162 ], [ 10.945129, 32.082575 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.469727, 32.879587 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.390564, 43.010673 ], [ 9.560852, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.544617, 42.256984 ], [ 8.745117, 42.627896 ], [ 9.390564, 43.010673 ] ] ], [ [ [ 7.717896, 49.066668 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.594299, 48.332517 ], [ 7.467957, 47.620975 ], [ 7.193298, 47.450380 ], [ 6.737366, 47.541310 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.023254, 46.272936 ], [ 6.501160, 46.430285 ], [ 6.844482, 45.991237 ], [ 6.803284, 45.708097 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.550354, 44.127028 ], [ 7.434998, 43.693694 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.399061 ], [ 3.100891, 43.074907 ], [ 2.985535, 42.472097 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.795401 ], [ 0.337830, 42.579377 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.716750 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.795401 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.472097 ], [ 3.040466, 41.892055 ], [ 2.092896, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.758057, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.716750 ], [ 0.000000, 42.664261 ], [ 0.337830, 42.579377 ], [ 0.700378, 42.795401 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.390564, 43.010673 ], [ 9.560852, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.544617, 42.256984 ], [ 8.745117, 42.627896 ], [ 9.390564, 43.010673 ] ] ], [ [ [ 7.717896, 49.066668 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.594299, 48.332517 ], [ 7.467957, 47.620975 ], [ 7.193298, 47.450380 ], [ 6.737366, 47.541310 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.023254, 46.272936 ], [ 6.501160, 46.430285 ], [ 6.844482, 45.991237 ], [ 6.803284, 45.708097 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.550354, 44.127028 ], [ 7.434998, 43.693694 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.399061 ], [ 3.100891, 43.074907 ], [ 2.985535, 42.472097 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.795401 ], [ 0.337830, 42.579377 ], [ 0.000000, 42.664261 ], [ -0.219727, 42.716750 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.522644, 47.831596 ], [ 9.593811, 47.524620 ], [ 9.632263, 47.348128 ], [ 9.481201, 47.101914 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.483265 ], [ 9.923401, 46.314687 ], [ 9.181824, 46.439750 ], [ 8.967590, 46.037016 ], [ 8.489685, 46.004593 ], [ 8.316650, 46.162712 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.844482, 45.991237 ], [ 6.501160, 46.430285 ], [ 6.023254, 46.272936 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.737366, 47.541310 ], [ 7.193298, 47.450380 ], [ 7.467957, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.522644, 47.831596 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.301585 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.533893 ], [ 11.469727, 46.995241 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.101914 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.524620 ], [ 9.895935, 47.580231 ] ] ] } } @@ -4646,17 +4550,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 54.077117 ], [ 0.000000, 53.670680 ], [ 0.184021, 53.324312 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.806917 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.769471 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.077117 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.841736, 52.227799 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.851049 ], [ 6.157837, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.974060, 51.474540 ], [ 4.045715, 51.267071 ], [ 3.315125, 51.346054 ], [ 3.831482, 51.619722 ], [ 4.704895, 53.092375 ], [ 6.075439, 53.510918 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.841736, 52.227799 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.851049 ], [ 6.157837, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.974060, 51.474540 ], [ 4.045715, 51.267071 ], [ 3.315125, 51.346054 ], [ 3.831482, 51.619722 ], [ 4.704895, 53.092375 ], [ 6.075439, 53.510918 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.974060, 51.474540 ], [ 5.605774, 51.037940 ], [ 6.157837, 50.804199 ], [ 6.042480, 50.127622 ], [ 5.781555, 50.090631 ], [ 5.674438, 49.528774 ], [ 4.798279, 49.984786 ], [ 4.284668, 49.907018 ], [ 3.587036, 50.378751 ], [ 3.122864, 50.779892 ], [ 2.658691, 50.797255 ], [ 2.513123, 51.148340 ], [ 3.315125, 51.346054 ], [ 4.045715, 51.267071 ], [ 4.974060, 51.474540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.242981, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.077209, 55.899956 ], [ 9.953613, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.077209, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.106112 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } ] } ] } , @@ -4664,9 +4568,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.433903 ], [ 11.250000, 59.147769 ], [ 11.027527, 58.856383 ], [ 10.357361, 59.470199 ], [ 8.382568, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.666199, 58.588299 ], [ 5.309143, 59.663579 ], [ 5.042725, 61.606396 ], [ 5.028992, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.040097 ], [ 11.250000, 58.447733 ], [ 11.027527, 58.856383 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.832764, 55.652798 ], [ 8.116150, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.433903 ], [ 11.469727, 58.040097 ], [ 11.250000, 58.447733 ], [ 11.027527, 58.856383 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.433903 ] ] ] } } ] } ] } , @@ -4768,10 +4672,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.795105, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.425716 ], [ 17.523193, -0.744303 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.856034 ], [ 15.172119, -4.343673 ], [ 14.581604, -4.970560 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.257751, -4.882994 ], [ 12.996826, -4.781732 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.606540 ], [ 11.914673, -5.038963 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.391578 ], [ 12.576599, -1.949697 ], [ 13.109436, -2.429996 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.911438, 0.219726 ], [ 17.795105, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.795105, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.425716 ], [ 17.523193, -0.744303 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.856034 ], [ 15.172119, -4.343673 ], [ 14.581604, -4.970560 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.257751, -4.882994 ], [ 12.996826, -4.781732 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.606540 ], [ 11.914673, -5.038963 ], [ 11.250000, -4.179333 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.391578 ], [ 12.576599, -1.949697 ], [ 13.109436, -2.429996 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.911438, 0.219726 ], [ 17.795105, 0.219726 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.864671 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.623686 ], [ 16.861267, -7.223524 ], [ 17.089233, -7.544933 ], [ 17.473755, -8.067388 ], [ 18.132935, -7.988518 ], [ 18.465271, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.091248, -6.942786 ], [ 20.602112, -6.940059 ], [ 20.514221, -7.299812 ], [ 21.728210, -7.291639 ], [ 21.747437, -7.920514 ], [ 21.947937, -8.306624 ], [ 21.802368, -8.909493 ], [ 21.876526, -9.524914 ], [ 22.208862, -9.895804 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.011297 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.120422, -9.765904 ], [ 12.875977, -9.167179 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.933655, -7.596663 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.735901, -5.965754 ], [ 13.024292, -5.984875 ], [ 13.375854, -5.864671 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.996826, -4.781732 ], [ 12.631531, -4.992450 ], [ 12.466736, -5.249598 ], [ 12.436523, -5.684317 ], [ 12.181091, -5.790897 ], [ 11.914673, -5.038963 ], [ 12.318420, -4.606540 ], [ 12.620544, -4.436782 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.011297 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.208862, -9.895804 ], [ 21.876526, -9.524914 ], [ 21.802368, -8.909493 ], [ 21.947937, -8.306624 ], [ 21.747437, -7.920514 ], [ 21.728210, -7.291639 ], [ 20.514221, -7.299812 ], [ 20.602112, -6.940059 ], [ 20.091248, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.465271, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.861267, -7.223524 ], [ 16.572876, -6.623686 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.864671 ], [ 13.024292, -5.984875 ], [ 12.735901, -5.965754 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.790897 ], [ 12.436523, -5.684317 ], [ 12.466736, -5.249598 ], [ 12.631531, -4.992450 ], [ 12.996826, -4.781732 ], [ 13.257751, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.970560 ], [ 15.172119, -4.343673 ], [ 15.754395, -3.856034 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.744303 ], [ 17.638550, -0.425716 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.795105, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } @@ -4782,18 +4686,18 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.221802, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.573608, 10.798235 ], [ 13.309937, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.955627, 9.416548 ], [ 12.752380, 8.716789 ], [ 12.219543, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.840515, 7.397877 ], [ 11.747131, 6.980954 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.664608 ], [ 11.030273, 11.393879 ], [ 14.221802, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.265340 ], [ 11.250000, 2.262595 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.265340 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.938660, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.262595 ], [ 11.030273, 2.265340 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.938660, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.752625, 2.325716 ], [ 12.359619, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.076477, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.026794, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.752625, 2.325716 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.321763 ], [ 21.659546, 4.223161 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.288390 ], [ 17.773132, 0.856902 ], [ 17.899475, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.393860, 2.899153 ], [ 18.454285, 3.505197 ], [ 18.542175, 4.201247 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } @@ -4806,12 +4710,12 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.084717, 13.595269 ], [ 13.318176, 13.555222 ], [ 13.996582, 12.460715 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.084982 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.985596, 11.178402 ], [ 13.752136, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.381604 ], [ 11.250000, 13.360227 ], [ 11.527405, 13.328158 ], [ 12.301941, 13.036669 ], [ 13.084717, 13.595269 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.894714, 12.219233 ], [ 14.960632, 11.555380 ], [ 14.938660, 11.178402 ], [ 14.927673, 10.962764 ], [ 13.752136, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.576111, 12.084982 ], [ 14.180603, 12.484850 ], [ 14.213562, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 10.962764 ], [ 22.219849, 10.962764 ], [ 22.230835, 10.970854 ], [ 22.719727, 11.102947 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.938660, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 15.188784 ], [ 22.719727, 11.509631 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 21.936951, 12.589413 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.184143, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 22.719727, 15.188784 ] ] ] } } ] } ] } @@ -4832,17 +4736,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520935, 38.231708 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.334412, 36.995972 ], [ 13.826294, 37.105575 ], [ 12.431030, 37.612056 ], [ 12.571106, 38.125915 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.520935, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 18.377380, 40.354917 ], [ 18.479004, 40.168380 ], [ 18.292236, 39.810646 ], [ 17.737427, 40.277430 ], [ 16.869507, 40.442767 ], [ 16.449280, 39.795876 ], [ 17.171631, 39.425586 ], [ 17.053528, 38.903858 ], [ 16.636047, 38.843986 ], [ 16.100464, 37.985340 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.214446 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.963680 ], [ 15.718689, 39.544294 ], [ 15.413818, 40.048643 ], [ 14.999084, 40.172578 ], [ 14.702454, 40.603527 ], [ 14.059753, 40.786780 ], [ 13.853760, 40.979898 ], [ 13.675232, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.585632, 41.145570 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.109588 ], [ 20.148926, 39.624730 ], [ 19.978638, 39.694507 ], [ 19.959412, 39.916056 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.349670, 40.979898 ], [ 19.371643, 41.145570 ], [ 20.585632, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.365381 ], [ 22.626343, 40.256473 ], [ 22.719727, 40.006580 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.670532, 36.844461 ], [ 21.294250, 37.644685 ], [ 21.121216, 38.309336 ], [ 20.731201, 38.769075 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.624730 ], [ 20.615845, 40.109588 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.175903, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.612610, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 36.831272 ], [ 11.030273, 37.088049 ], [ 11.098938, 36.899391 ], [ 11.030273, 36.831272 ] ] ], [ [ [ 11.030273, 33.440609 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.234093 ], [ 11.488953, 33.137551 ], [ 11.431274, 32.368363 ], [ 11.250000, 32.261588 ], [ 11.030273, 32.131431 ], [ 11.030273, 33.440609 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520935, 38.231708 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.334412, 36.995972 ], [ 13.826294, 37.105575 ], [ 12.431030, 37.612056 ], [ 12.571106, 38.125915 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.520935, 38.231708 ] ] ], [ [ [ 16.866760, 41.145570 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 18.377380, 40.354917 ], [ 18.479004, 40.168380 ], [ 18.292236, 39.810646 ], [ 17.737427, 40.277430 ], [ 16.869507, 40.442767 ], [ 16.449280, 39.795876 ], [ 17.171631, 39.425586 ], [ 17.053528, 38.903858 ], [ 16.636047, 38.843986 ], [ 16.100464, 37.985340 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.214446 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.963680 ], [ 15.718689, 39.544294 ], [ 15.413818, 40.048643 ], [ 14.999084, 40.172578 ], [ 14.702454, 40.603527 ], [ 14.059753, 40.786780 ], [ 13.853760, 40.979898 ], [ 13.675232, 41.145570 ], [ 16.866760, 41.145570 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.612610, 41.145570 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.488953, 33.137551 ], [ 12.664490, 32.791892 ], [ 13.081970, 32.879587 ], [ 13.919678, 32.711044 ], [ 15.246277, 32.266233 ], [ 15.411072, 31.952162 ], [ 15.509949, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.131431 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.488953, 33.137551 ] ] ], [ [ [ 19.830322, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.135193, 32.238359 ], [ 20.854797, 32.706422 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.719727, 32.664813 ], [ 22.719727, 31.765537 ], [ 19.830322, 31.765537 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.365381 ], [ 22.626343, 40.256473 ], [ 22.719727, 40.006580 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.670532, 36.844461 ], [ 21.294250, 37.644685 ], [ 21.121216, 38.309336 ], [ 20.731201, 38.769075 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.624730 ], [ 20.615845, 40.109588 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.175903, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.612610, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } ] } ] } , @@ -4850,58 +4754,58 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.348389, 49.066668 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.244019, 48.416442 ], [ 12.884216, 48.288676 ], [ 13.027039, 47.637634 ], [ 12.933655, 47.467093 ], [ 12.620544, 47.672786 ], [ 12.142639, 47.702368 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.532038 ], [ 11.030273, 47.543164 ], [ 11.030273, 49.066668 ], [ 13.348389, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.629089, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.785152 ], [ 16.960144, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.534424, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.136414, 46.658862 ], [ 14.633789, 46.432178 ], [ 13.807068, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.153625, 47.115000 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 11.030273, 46.754917 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.532038 ], [ 11.425781, 47.524620 ], [ 12.142639, 47.702368 ], [ 12.620544, 47.672786 ], [ 12.933655, 47.467093 ], [ 13.027039, 47.637634 ], [ 12.884216, 48.288676 ], [ 13.244019, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.339905, 48.554796 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.202087, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.564636, 46.504064 ], [ 15.768127, 46.238752 ], [ 15.671997, 45.834540 ], [ 15.323181, 45.731108 ], [ 15.328674, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.635167 ], [ 14.411316, 45.465910 ], [ 13.716431, 45.500572 ], [ 13.938904, 45.590978 ], [ 13.697205, 46.016039 ], [ 13.807068, 46.509735 ], [ 14.633789, 46.432178 ], [ 15.136414, 46.658862 ], [ 16.012573, 46.683363 ], [ 16.202087, 46.852678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.085266, 48.421910 ], [ 21.871033, 48.319734 ], [ 20.802612, 48.623832 ], [ 20.473022, 48.562068 ], [ 20.239563, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.111099 ], [ 18.778381, 48.081749 ], [ 18.695984, 47.881355 ], [ 17.858276, 47.757791 ], [ 17.487488, 47.866617 ], [ 16.979370, 48.123934 ], [ 16.880493, 48.469279 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.110962, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.153625, 47.115000 ], [ 12.376099, 46.768087 ], [ 13.807068, 46.509735 ], [ 13.697205, 46.016039 ], [ 13.938904, 45.590978 ], [ 13.142395, 45.736860 ], [ 12.329407, 45.381090 ], [ 12.384338, 44.885066 ], [ 12.260742, 44.600246 ], [ 12.590332, 44.091531 ], [ 13.526917, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.927429, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 17.624817, 40.813809 ], [ 14.032288, 40.813809 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.188989 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.703678 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.754917 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 12.153625, 47.115000 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.085266, 48.421910 ], [ 21.871033, 48.319734 ], [ 20.802612, 48.623832 ], [ 20.473022, 48.562068 ], [ 20.239563, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.111099 ], [ 18.778381, 48.081749 ], [ 18.695984, 47.881355 ], [ 17.858276, 47.757791 ], [ 17.487488, 47.866617 ], [ 16.979370, 48.123934 ], [ 16.880493, 48.469279 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.110962, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.623832 ], [ 21.871033, 48.319734 ], [ 22.085266, 48.421910 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.993368 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.596863, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.630310, 45.951150 ], [ 16.883240, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.534424, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.866617 ], [ 17.858276, 47.757791 ], [ 18.695984, 47.881355 ], [ 18.778381, 48.081749 ], [ 19.173889, 48.111099 ], [ 19.660034, 48.266741 ], [ 19.769897, 48.202710 ], [ 20.239563, 48.327039 ], [ 20.473022, 48.562068 ], [ 20.802612, 48.623832 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.217834, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.629822, 43.213183 ], [ 19.959412, 43.106999 ], [ 20.338440, 42.898101 ], [ 20.258789, 42.813537 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.305725, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.162903, 41.955405 ], [ 18.882751, 42.281373 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.706970, 43.199170 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.271206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.910172 ], [ 21.439819, 42.861873 ], [ 21.632080, 42.676378 ], [ 21.774902, 42.682435 ], [ 21.662292, 42.439674 ], [ 21.544189, 42.319970 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.206142 ], [ 20.761414, 42.051332 ], [ 20.717468, 41.847059 ], [ 20.591125, 41.855242 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.319970 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.813537 ], [ 20.497742, 42.884015 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.271206 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.719727, 43.448931 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.629089, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.886881 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.085266, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.384644, 48.922499 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.623832 ], [ 21.871033, 48.319734 ], [ 22.085266, 48.421910 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.993368 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.596863, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.630310, 45.951150 ], [ 16.883240, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.534424, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.866617 ], [ 17.858276, 47.757791 ], [ 18.695984, 47.881355 ], [ 18.778381, 48.081749 ], [ 19.173889, 48.111099 ], [ 19.660034, 48.266741 ], [ 19.769897, 48.202710 ], [ 20.239563, 48.327039 ], [ 20.473022, 48.562068 ], [ 20.802612, 48.623832 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.992595 ], [ 22.719727, 42.102298 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.719727, 42.992595 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.448931 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.886881 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.886881 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.153625, 47.115000 ], [ 12.376099, 46.768087 ], [ 13.807068, 46.509735 ], [ 13.697205, 46.016039 ], [ 13.938904, 45.590978 ], [ 13.142395, 45.736860 ], [ 12.329407, 45.381090 ], [ 12.384338, 44.885066 ], [ 12.260742, 44.600246 ], [ 12.590332, 44.091531 ], [ 13.526917, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.927429, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.520447, 40.876141 ], [ 17.624817, 40.813809 ], [ 14.032288, 40.813809 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.188989 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.703678 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.754917 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 12.153625, 47.115000 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.992595 ], [ 22.719727, 42.102298 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.719727, 42.992595 ] ] ], [ [ [ 22.719727, 43.448931 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.448931 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.449768, 55.899956 ], [ 14.361877, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.361942 ], [ 12.804565, 55.776573 ], [ 12.763367, 55.899956 ], [ 14.449768, 55.899956 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.518921, 54.470038 ], [ 13.647766, 54.075506 ], [ 14.120178, 53.756831 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.438782, 52.624727 ], [ 14.685974, 52.089633 ], [ 14.606323, 51.745738 ], [ 15.018311, 51.106971 ], [ 14.570618, 51.001657 ], [ 14.306946, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.966614, 50.483726 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.968889 ], [ 12.521667, 49.546598 ], [ 13.032532, 49.307217 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.065836 ], [ 11.955872, 54.196190 ], [ 12.518921, 54.470038 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.404070 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.126017 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.826294, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 14.644775, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 15.919189, 48.777913 ], [ 14.644775, 48.777913 ] ] ], [ [ [ 16.427307, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.517944, 48.777913 ], [ 16.427307, 48.777913 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.075500, 48.777913 ], [ 16.517944, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.427307, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.430626 ], [ 20.887756, 49.328702 ], [ 21.607361, 49.469909 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.030665 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.258301, 48.777913 ], [ 17.075500, 48.777913 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.171387, 49.271389 ], [ 18.399353, 49.314380 ], [ 18.555908, 49.494891 ], [ 18.852539, 49.496675 ], [ 18.910217, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.759501 ], [ 22.719727, 54.364558 ], [ 22.651062, 54.583205 ], [ 22.719727, 54.759501 ] ] ], [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.315979, 55.015426 ], [ 21.269531, 55.189845 ], [ 21.121216, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ] ] } } @@ -4916,11 +4820,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.106934, 61.710706 ], [ 12.238770, 61.606396 ], [ 12.631531, 61.293988 ], [ 12.299194, 60.118251 ], [ 11.466980, 59.432506 ], [ 11.250000, 59.147769 ], [ 11.030273, 58.860644 ], [ 11.030273, 61.710706 ], [ 12.106934, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.987998 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.954258 ], [ 16.828308, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.104215 ], [ 14.666748, 56.200593 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.804565, 55.776573 ], [ 12.626038, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.250000, 58.447733 ], [ 11.030273, 58.850700 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.147769 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.631531, 61.293988 ], [ 12.238770, 61.606396 ], [ 12.106934, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.987998 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.524719, 57.754007 ], [ 22.719727, 57.570361 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.325675 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.030622 ], [ 21.091003, 56.784332 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ] ] ] } } , @@ -4932,9 +4836,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.471497, 66.600676 ], [ 15.391846, 66.513260 ], [ 15.108948, 66.193792 ], [ 13.554382, 64.786998 ], [ 13.919678, 64.445557 ], [ 13.570862, 64.049373 ], [ 12.579346, 64.066194 ], [ 11.931152, 63.128297 ], [ 11.991577, 61.800390 ], [ 12.238770, 61.606396 ], [ 12.370605, 61.501734 ], [ 11.030273, 61.501734 ], [ 11.030273, 64.875772 ], [ 11.250000, 65.044333 ], [ 12.359619, 65.879215 ], [ 13.125916, 66.513260 ], [ 13.233032, 66.600676 ], [ 15.471497, 66.600676 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 63.951849 ], [ 22.719727, 61.501734 ], [ 21.497498, 61.501734 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.058044, 62.607244 ], [ 21.535950, 63.190302 ], [ 22.442322, 63.817652 ], [ 22.500000, 63.845512 ], [ 22.719727, 63.951849 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 66.600676 ], [ 22.719727, 65.812906 ], [ 22.500000, 65.775744 ], [ 22.184143, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.778137, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.254028, 61.606396 ], [ 17.201843, 61.501734 ], [ 12.370605, 61.501734 ], [ 12.238770, 61.606396 ], [ 11.991577, 61.800390 ], [ 11.931152, 63.128297 ], [ 12.579346, 64.066194 ], [ 13.570862, 64.049373 ], [ 13.919678, 64.445557 ], [ 13.554382, 64.786998 ], [ 15.108948, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.471497, 66.600676 ], [ 22.719727, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 63.951849 ], [ 22.719727, 61.501734 ], [ 21.497498, 61.501734 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.058044, 62.607244 ], [ 21.535950, 63.190302 ], [ 22.442322, 63.817652 ], [ 22.500000, 63.845512 ], [ 22.719727, 63.951849 ] ] ] } } ] } ] } , @@ -4942,9 +4846,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.254813 ], [ 22.500000, 70.218593 ], [ 22.719727, 70.212085 ], [ 22.719727, 68.855592 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 21.244812, 69.370638 ], [ 20.646057, 69.105818 ], [ 20.025330, 69.065619 ], [ 19.879761, 68.407268 ], [ 17.992859, 68.567410 ], [ 17.729187, 68.010656 ], [ 16.767883, 68.013742 ], [ 16.108704, 67.302797 ], [ 15.391846, 66.513260 ], [ 15.314941, 66.425537 ], [ 13.018799, 66.425537 ], [ 13.125916, 66.513260 ], [ 14.760132, 67.810282 ], [ 16.435547, 68.563395 ], [ 19.184875, 69.817839 ], [ 21.379395, 70.254813 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.244812, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.719727, 68.855592 ], [ 22.719727, 68.295811 ], [ 22.500000, 68.392101 ], [ 21.978149, 68.616534 ], [ 20.646057, 69.105818 ], [ 21.244812, 69.370638 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.646057, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.392101 ], [ 22.719727, 68.295811 ], [ 22.719727, 66.425537 ], [ 15.314941, 66.425537 ], [ 15.391846, 66.513260 ], [ 16.108704, 67.302797 ], [ 16.767883, 68.013742 ], [ 17.729187, 68.010656 ], [ 17.992859, 68.567410 ], [ 19.879761, 68.407268 ], [ 20.025330, 69.065619 ], [ 20.646057, 69.105818 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.244812, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.719727, 68.855592 ], [ 22.719727, 68.295811 ], [ 22.500000, 68.392101 ], [ 21.978149, 68.616534 ], [ 20.646057, 69.105818 ], [ 21.244812, 69.370638 ] ] ] } } ] } ] } , @@ -5060,43 +4964,43 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.903809, -0.950274 ], [ 33.750000, -0.955766 ], [ 31.865845, -1.027167 ], [ 30.769958, -1.013436 ], [ 30.418396, -1.134264 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.588928, -0.587758 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.849854, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.455811, -10.868373 ], [ 23.911743, -10.927708 ], [ 23.996887, -11.178402 ], [ 24.018860, -11.237674 ], [ 23.980408, -11.393879 ], [ 22.280273, -11.393879 ], [ 22.280273, -11.038255 ], [ 22.403870, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.837830, -11.016689 ], [ 23.455811, -10.868373 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.849854, 0.219726 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.588928, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.292297, -1.620267 ], [ 29.253845, -2.215939 ], [ 29.116516, -2.292784 ], [ 29.025879, -2.838804 ], [ 29.275818, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.418640, -5.941168 ], [ 29.619141, -6.520001 ], [ 30.198669, -7.079088 ], [ 30.739746, -8.339236 ], [ 30.346985, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.164467 ], [ 28.674316, -9.606166 ], [ 28.495789, -10.790141 ], [ 28.449097, -11.178402 ], [ 28.421631, -11.393879 ], [ 25.463562, -11.393879 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.927708 ], [ 23.455811, -10.868373 ], [ 22.837830, -11.016689 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, 0.219726 ], [ 29.849854, 0.219726 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.903809, -0.950274 ], [ 33.750000, -0.955766 ], [ 31.865845, -1.027167 ], [ 30.769958, -1.013436 ], [ 30.418396, -1.134264 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.588928, -0.587758 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.849854, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.418396, -1.134264 ], [ 30.816650, -1.699885 ], [ 30.758972, -2.287295 ], [ 30.470581, -2.413532 ], [ 29.937744, -2.347670 ], [ 29.632874, -2.918354 ], [ 29.025879, -2.838804 ], [ 29.116516, -2.292784 ], [ 29.253845, -2.215939 ], [ 29.292297, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.418396, -1.134264 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 33.969727, -0.994213 ], [ 33.969727, -9.733421 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.192688, -8.931200 ], [ 31.555481, -8.762938 ], [ 31.157227, -8.594600 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.520001 ], [ 29.418640, -5.941168 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.753723, -4.453212 ], [ 30.116272, -4.088932 ], [ 30.506287, -3.568248 ], [ 30.753479, -3.359889 ], [ 30.742493, -3.033555 ], [ 30.528259, -2.808628 ], [ 30.470581, -2.413532 ], [ 30.758972, -2.287295 ], [ 30.816650, -1.699885 ], [ 30.418396, -1.134264 ], [ 30.769958, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.347670 ], [ 30.470581, -2.413532 ], [ 30.528259, -2.808628 ], [ 30.742493, -3.033555 ], [ 30.753479, -3.359889 ], [ 30.506287, -3.568248 ], [ 30.116272, -4.088932 ], [ 29.753723, -4.453212 ], [ 29.338989, -4.499762 ], [ 29.275818, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.632874, -2.918354 ], [ 29.937744, -2.347670 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.927708 ], [ 24.257812, -10.951978 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.018860, -11.237674 ], [ 23.996887, -11.178402 ], [ 23.911743, -10.927708 ] ] ], [ [ [ 28.421631, -11.393879 ], [ 28.449097, -11.178402 ], [ 28.495789, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.346985, -8.238674 ], [ 30.739746, -8.339236 ], [ 31.157227, -8.594600 ], [ 31.555481, -8.762938 ], [ 32.192688, -8.931200 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.219910, -11.178402 ], [ 33.167725, -11.393879 ], [ 28.421631, -11.393879 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.167725, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 33.969727, -0.994213 ], [ 33.969727, -9.733421 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.192688, -8.931200 ], [ 31.555481, -8.762938 ], [ 31.157227, -8.594600 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.520001 ], [ 29.418640, -5.941168 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.753723, -4.453212 ], [ 30.116272, -4.088932 ], [ 30.506287, -3.568248 ], [ 30.753479, -3.359889 ], [ 30.742493, -3.033555 ], [ 30.528259, -2.808628 ], [ 30.470581, -2.413532 ], [ 30.758972, -2.287295 ], [ 30.816650, -1.699885 ], [ 30.418396, -1.134264 ], [ 30.769958, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.167725, -11.393879 ], [ 33.219910, -11.178402 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.090558 ], [ 23.557434, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.665203 ], [ 24.568176, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.978228 ], [ 26.213379, 6.547289 ], [ 26.466064, 5.946631 ], [ 27.213135, 5.550381 ], [ 27.375183, 5.233187 ], [ 27.042847, 5.126508 ], [ 26.402893, 5.151128 ], [ 25.650330, 5.255068 ], [ 25.279541, 5.170276 ], [ 25.128479, 4.926779 ], [ 24.804382, 4.896677 ], [ 24.411621, 5.110094 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 22.280273, 4.061536 ], [ 22.280273, 10.984335 ], [ 22.500000, 11.043647 ], [ 22.865295, 11.143372 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.090558 ], [ 23.557434, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.665203 ], [ 24.568176, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.978228 ], [ 26.213379, 6.547289 ], [ 26.466064, 5.946631 ], [ 27.213135, 5.550381 ], [ 27.375183, 5.233187 ], [ 27.042847, 5.126508 ], [ 26.402893, 5.151128 ], [ 25.650330, 5.255068 ], [ 25.279541, 5.170276 ], [ 25.128479, 4.926779 ], [ 24.804382, 4.896677 ], [ 24.411621, 5.110094 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.220421 ], [ 22.403870, 4.028659 ], [ 22.280273, 4.061536 ], [ 22.280273, 10.984335 ], [ 22.500000, 11.043647 ], [ 22.865295, 11.143372 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.611582 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.244654 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.129272, 11.178402 ], [ 33.093567, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.093567, 11.393879 ], [ 33.129272, 11.178402 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.969727, 9.037003 ], [ 33.969727, 8.673348 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.784472 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.223161 ], [ 33.750000, 4.058796 ], [ 33.390198, 3.790262 ], [ 32.687073, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.429871, 4.286158 ], [ 27.979431, 4.409398 ], [ 27.375183, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.946631 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.978228 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.568176, 8.230519 ], [ 23.887024, 8.619041 ], [ 24.194641, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.809210 ], [ 25.070801, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.963440, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.833862, 9.603458 ], [ 27.971191, 9.397581 ], [ 28.965454, 9.397581 ], [ 29.001160, 9.603458 ], [ 29.514771, 9.792971 ], [ 29.619141, 10.085150 ], [ 29.995422, 10.290599 ], [ 30.838623, 9.706350 ], [ 31.352234, 9.809210 ], [ 31.849365, 10.531020 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.093567, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.650330, 5.255068 ], [ 26.402893, 5.151128 ], [ 27.042847, 5.126508 ], [ 27.375183, 5.233187 ], [ 27.979431, 4.409398 ], [ 28.429871, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.954224, 4.173855 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.848129 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.811401, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.061536 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.110094 ], [ 24.804382, 4.896677 ], [ 25.128479, 4.926779 ], [ 25.279541, 5.170276 ], [ 25.650330, 5.255068 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.223161 ], [ 33.969727, 0.216979 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.811401, -0.219726 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.848129 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.687073, 3.793003 ], [ 33.390198, 3.790262 ], [ 33.750000, 4.058796 ], [ 33.969727, 4.223161 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.037003 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.611582 ], [ 33.969727, 9.037003 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.650330, 5.255068 ], [ 26.402893, 5.151128 ], [ 27.042847, 5.126508 ], [ 27.375183, 5.233187 ], [ 27.979431, 4.409398 ], [ 28.429871, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.954224, 4.173855 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.848129 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.811401, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.061536 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.110094 ], [ 24.804382, 4.896677 ], [ 25.128479, 4.926779 ], [ 25.279541, 5.170276 ], [ 25.650330, 5.255068 ] ] ] } } ] } ] } , @@ -5104,12 +5008,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.999390, 22.146708 ], [ 24.999390, 20.004322 ], [ 23.851318, 19.999160 ], [ 23.837585, 19.580493 ], [ 22.500000, 20.226120 ], [ 22.280273, 20.331750 ], [ 22.280273, 22.146708 ], [ 24.999390, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.911987, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.984335 ], [ 22.865295, 11.143372 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 12.645698 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.500000, 12.136005 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.645698 ] ] ], [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 13.432367 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.432367 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 21.999082 ], [ 33.969727, 10.962764 ], [ 33.167725, 10.962764 ], [ 33.129272, 11.178402 ], [ 33.088074, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.676086, 12.025889 ], [ 32.074585, 11.972158 ], [ 32.313538, 11.681825 ], [ 32.384949, 11.178402 ], [ 32.401428, 11.081385 ], [ 32.283325, 10.962764 ], [ 22.911987, 10.962764 ], [ 22.865295, 11.143372 ], [ 22.865295, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.508240, 11.679135 ], [ 22.500000, 12.136005 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 22.280273, 12.645698 ], [ 22.280273, 13.346865 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.432367 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 23.024597, 15.681221 ], [ 23.887024, 15.609811 ], [ 23.837585, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 33.969727, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.088074, 11.442339 ], [ 33.129272, 11.178402 ], [ 33.167725, 10.962764 ], [ 32.283325, 10.962764 ], [ 32.401428, 11.081385 ], [ 32.384949, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.074585, 11.972158 ], [ 32.676086, 12.025889 ], [ 32.744751, 12.248760 ] ] ] } } @@ -5128,17 +5032,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.700256, 35.704147 ], [ 24.246826, 35.368895 ], [ 25.024109, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.743713, 35.180543 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.919719 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.279259 ], [ 23.700256, 35.704147 ] ] ], [ [ [ 26.397400, 41.145570 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 23.713989, 40.686886 ], [ 24.408875, 40.124291 ], [ 23.900757, 39.962386 ], [ 23.343201, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.256473 ], [ 22.848816, 39.658571 ], [ 23.348694, 39.189691 ], [ 22.972412, 38.970087 ], [ 23.529968, 38.509490 ], [ 24.024353, 38.220920 ], [ 24.040833, 37.655558 ], [ 23.115234, 37.920368 ], [ 23.409119, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.520673 ], [ 22.280273, 41.141433 ], [ 22.596130, 41.131090 ], [ 22.612610, 41.145570 ], [ 26.397400, 41.145570 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.612610, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.280273, 41.141433 ], [ 22.280273, 41.145570 ], [ 22.612610, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 32.731841 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.191884 ], [ 23.609619, 32.187236 ], [ 23.928223, 32.017392 ], [ 24.474792, 31.952162 ], [ 24.922485, 31.898546 ], [ 25.021362, 31.765537 ], [ 22.280273, 31.765537 ], [ 22.280273, 32.731841 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 41.145570 ], [ 33.969727, 36.215471 ], [ 33.750000, 36.199958 ], [ 32.508545, 36.106815 ], [ 31.698303, 36.644182 ], [ 30.621643, 36.677231 ], [ 30.390930, 36.261992 ], [ 29.698792, 36.144529 ], [ 28.731995, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.803894, 38.985033 ], [ 26.169434, 39.463764 ], [ 27.279053, 40.419769 ], [ 28.819885, 40.459487 ], [ 29.105530, 40.979898 ], [ 29.198914, 41.145570 ], [ 30.311279, 41.145570 ], [ 31.146240, 41.087632 ], [ 31.253357, 41.145570 ], [ 33.969727, 41.145570 ] ] ], [ [ [ 28.874817, 41.145570 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.691052 ], [ 26.358948, 40.151588 ], [ 26.043091, 40.618122 ], [ 26.056824, 40.824202 ], [ 26.295776, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.397400, 41.145570 ], [ 28.874817, 41.145570 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.700256, 35.704147 ], [ 24.246826, 35.368895 ], [ 25.024109, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.743713, 35.180543 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.919719 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.279259 ], [ 23.700256, 35.704147 ] ] ], [ [ [ 26.397400, 41.145570 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 23.713989, 40.686886 ], [ 24.408875, 40.124291 ], [ 23.900757, 39.962386 ], [ 23.343201, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.256473 ], [ 22.848816, 39.658571 ], [ 23.348694, 39.189691 ], [ 22.972412, 38.970087 ], [ 23.529968, 38.509490 ], [ 24.024353, 38.220920 ], [ 24.040833, 37.655558 ], [ 23.115234, 37.920368 ], [ 23.409119, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.520673 ], [ 22.280273, 41.141433 ], [ 22.596130, 41.131090 ], [ 22.612610, 41.145570 ], [ 26.397400, 41.145570 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.384705, 35.162582 ], [ 33.456116, 35.101934 ], [ 33.475342, 35.000754 ], [ 33.524780, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ], [ 33.969727, 35.059229 ], [ 33.969727, 34.964748 ], [ 33.750000, 34.876918 ], [ 32.980957, 34.572168 ], [ 32.489319, 34.700977 ], [ 32.255859, 35.104181 ], [ 32.731018, 35.140125 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 35.471855 ], [ 33.969727, 35.288227 ], [ 33.901062, 35.245619 ], [ 33.969727, 35.068221 ], [ 33.969727, 35.059229 ], [ 33.865356, 35.092945 ], [ 33.750000, 35.047987 ], [ 33.675842, 35.018750 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.000754 ], [ 33.456116, 35.101934 ], [ 33.384705, 35.162582 ], [ 33.189697, 35.173808 ], [ 32.920532, 35.088451 ], [ 32.731018, 35.140125 ], [ 32.802429, 35.144617 ], [ 32.947998, 35.386811 ], [ 33.667603, 35.373375 ], [ 33.969727, 35.471855 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.384705, 35.162582 ], [ 33.456116, 35.101934 ], [ 33.475342, 35.000754 ], [ 33.524780, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ], [ 33.969727, 35.059229 ], [ 33.969727, 34.964748 ], [ 33.750000, 34.876918 ], [ 32.980957, 34.572168 ], [ 32.489319, 34.700977 ], [ 32.255859, 35.104181 ], [ 32.731018, 35.140125 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 41.145570 ], [ 33.969727, 36.215471 ], [ 33.750000, 36.199958 ], [ 32.508545, 36.106815 ], [ 31.698303, 36.644182 ], [ 30.621643, 36.677231 ], [ 30.390930, 36.261992 ], [ 29.698792, 36.144529 ], [ 28.731995, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.803894, 38.985033 ], [ 26.169434, 39.463764 ], [ 27.279053, 40.419769 ], [ 28.819885, 40.459487 ], [ 29.105530, 40.979898 ], [ 29.198914, 41.145570 ], [ 30.311279, 41.145570 ], [ 31.146240, 41.087632 ], [ 31.253357, 41.145570 ], [ 33.969727, 41.145570 ] ] ], [ [ [ 28.874817, 41.145570 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.691052 ], [ 26.358948, 40.151588 ], [ 26.043091, 40.618122 ], [ 26.056824, 40.824202 ], [ 26.295776, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.397400, 41.145570 ], [ 28.874817, 41.145570 ] ] ] ] } } ] } ] } , @@ -5148,21 +5052,21 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.538452, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.538452, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.327039 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.280273, 47.733782 ], [ 22.280273, 48.327039 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.682325 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.427896 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.089558 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.398467 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.327026, 44.565034 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.327048 ], [ 32.632141, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.333654 ], [ 31.676331, 46.705969 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.463983 ], [ 28.679810, 45.303871 ], [ 28.234863, 45.489020 ], [ 28.484802, 45.596744 ], [ 28.660583, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.863831, 46.437857 ], [ 29.072571, 46.517296 ], [ 29.171448, 46.379149 ], [ 29.759216, 46.350719 ], [ 30.025635, 46.424606 ], [ 29.838867, 46.524855 ], [ 29.907532, 46.673941 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.050598, 47.509780 ], [ 29.122009, 47.848188 ], [ 28.671570, 48.118434 ], [ 28.259583, 48.155093 ], [ 27.523499, 48.467458 ], [ 26.858826, 48.369023 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.946960, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.737476 ], [ 24.403381, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.280273, 48.327039 ], [ 22.280273, 48.824949 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.327039 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.280273, 47.733782 ], [ 22.280273, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.398467 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.327026, 44.565034 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.327048 ], [ 32.632141, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.333654 ], [ 31.676331, 46.705969 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.463983 ], [ 28.679810, 45.303871 ], [ 28.234863, 45.489020 ], [ 28.484802, 45.596744 ], [ 28.660583, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.863831, 46.437857 ], [ 29.072571, 46.517296 ], [ 29.171448, 46.379149 ], [ 29.759216, 46.350719 ], [ 30.025635, 46.424606 ], [ 29.838867, 46.524855 ], [ 29.907532, 46.673941 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.050598, 47.509780 ], [ 29.122009, 47.848188 ], [ 28.671570, 48.118434 ], [ 28.259583, 48.155093 ], [ 27.523499, 48.467458 ], [ 26.858826, 48.369023 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.946960, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.737476 ], [ 24.403381, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.280273, 48.327039 ], [ 22.280273, 48.824949 ], [ 22.538452, 49.066668 ], [ 22.629089, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.752686, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.656555, 44.235360 ], [ 22.944946, 43.824620 ], [ 23.332214, 43.897892 ], [ 24.101257, 43.741336 ], [ 25.567932, 43.687736 ], [ 26.065063, 43.943395 ], [ 27.243347, 44.176295 ], [ 27.971191, 43.812729 ], [ 28.558960, 43.707594 ], [ 28.039856, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.995911, 42.006448 ], [ 27.136230, 42.141005 ], [ 26.117249, 41.826595 ], [ 26.106262, 41.329389 ], [ 25.197144, 41.234446 ], [ 24.491272, 41.584634 ], [ 23.692017, 41.308761 ], [ 22.953186, 41.337638 ], [ 22.881775, 41.998284 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.986145, 43.211182 ], [ 22.500000, 43.644026 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.089558 ], [ 22.656555, 44.235360 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.427896 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.682325 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.133159 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.315002, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.133159 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.024814 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.105530, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.736479 ], [ 33.513794, 42.018692 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.024814 ] ] ], [ [ [ 27.136230, 42.141005 ], [ 27.995911, 42.006448 ], [ 28.116760, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.056824, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.295776, 40.936340 ], [ 26.315002, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.117249, 41.826595 ], [ 27.136230, 42.141005 ] ] ] ] } } ] } @@ -5204,10 +5108,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.410400, 66.600676 ], [ 29.501038, 66.513260 ], [ 30.217896, 65.806153 ], [ 29.544983, 64.949139 ], [ 30.445862, 64.203987 ], [ 30.036621, 63.552222 ], [ 31.517029, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.779617 ], [ 29.915771, 61.606396 ], [ 29.737244, 61.501734 ], [ 22.280273, 61.501734 ], [ 22.280273, 63.705939 ], [ 22.442322, 63.817652 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.397644, 65.111460 ], [ 25.293274, 65.534584 ], [ 23.903503, 66.006852 ], [ 23.565674, 66.395861 ], [ 23.562927, 66.513260 ], [ 23.562927, 66.600676 ], [ 29.410400, 66.600676 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.562927, 66.600676 ], [ 23.562927, 66.513260 ], [ 23.565674, 66.395861 ], [ 23.903503, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.280273, 65.739656 ], [ 22.280273, 66.600676 ], [ 23.562927, 66.600676 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.410400, 66.600676 ], [ 29.501038, 66.513260 ], [ 30.217896, 65.806153 ], [ 29.544983, 64.949139 ], [ 30.445862, 64.203987 ], [ 30.036621, 63.552222 ], [ 31.517029, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.779617 ], [ 29.915771, 61.606396 ], [ 29.737244, 61.501734 ], [ 22.280273, 61.501734 ], [ 22.280273, 63.705939 ], [ 22.442322, 63.817652 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.397644, 65.111460 ], [ 25.293274, 65.534584 ], [ 23.903503, 66.006852 ], [ 23.565674, 66.395861 ], [ 23.562927, 66.513260 ], [ 23.562927, 66.600676 ], [ 29.410400, 66.600676 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.255615, 66.600676 ], [ 33.453369, 66.513260 ], [ 33.750000, 66.380459 ], [ 33.969727, 66.282328 ], [ 33.969727, 61.501734 ], [ 29.737244, 61.501734 ], [ 29.915771, 61.606396 ], [ 30.212402, 61.779617 ], [ 31.140747, 62.357256 ], [ 31.517029, 62.867674 ], [ 30.036621, 63.552222 ], [ 30.445862, 64.203987 ], [ 29.544983, 64.949139 ], [ 30.217896, 65.806153 ], [ 29.501038, 66.513260 ], [ 29.410400, 66.600676 ], [ 33.255615, 66.600676 ] ] ] } } ] } ] } @@ -5216,10 +5120,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.316772, 70.685421 ], [ 30.624390, 70.612614 ], [ 31.294556, 70.453346 ], [ 30.006409, 70.186034 ], [ 31.102295, 69.558512 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 29.014893, 69.766607 ], [ 27.732239, 70.164610 ], [ 26.180420, 69.825418 ], [ 25.688782, 69.092100 ], [ 24.735718, 68.649556 ], [ 23.661804, 68.891231 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 22.280273, 68.878368 ], [ 22.280273, 70.226028 ], [ 22.500000, 70.218593 ], [ 23.024597, 70.201855 ], [ 23.771667, 70.612614 ], [ 23.903503, 70.685421 ], [ 30.316772, 70.685421 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.732239, 70.164610 ], [ 29.014893, 69.766607 ], [ 28.591919, 69.064638 ], [ 28.446350, 68.364776 ], [ 29.976196, 67.697983 ], [ 29.053345, 66.944048 ], [ 29.501038, 66.513260 ], [ 29.591675, 66.425537 ], [ 23.565674, 66.425537 ], [ 23.562927, 66.513260 ], [ 23.538208, 67.936492 ], [ 22.500000, 68.392101 ], [ 22.280273, 68.486977 ], [ 22.280273, 68.878368 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.661804, 68.891231 ], [ 24.735718, 68.649556 ], [ 25.688782, 69.092100 ], [ 26.180420, 69.825418 ], [ 27.732239, 70.164610 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 68.486977 ], [ 22.500000, 68.392101 ], [ 23.538208, 67.936492 ], [ 23.562927, 66.513260 ], [ 23.565674, 66.425537 ], [ 22.280273, 66.425537 ], [ 22.280273, 68.486977 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.732239, 70.164610 ], [ 29.014893, 69.766607 ], [ 28.591919, 69.064638 ], [ 28.446350, 68.364776 ], [ 29.976196, 67.697983 ], [ 29.053345, 66.944048 ], [ 29.501038, 66.513260 ], [ 29.591675, 66.425537 ], [ 23.565674, 66.425537 ], [ 23.562927, 66.513260 ], [ 23.538208, 67.936492 ], [ 22.500000, 68.392101 ], [ 22.280273, 68.486977 ], [ 22.280273, 68.878368 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.661804, 68.891231 ], [ 24.735718, 68.649556 ], [ 25.688782, 69.092100 ], [ 26.180420, 69.825418 ], [ 27.732239, 70.164610 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.132263, 69.905780 ], [ 33.750000, 69.310558 ], [ 33.774719, 69.301823 ], [ 33.969727, 69.284342 ], [ 33.969727, 66.750746 ], [ 33.917542, 66.759418 ], [ 33.750000, 66.730138 ], [ 33.184204, 66.632288 ], [ 33.453369, 66.513260 ], [ 33.651123, 66.425537 ], [ 29.591675, 66.425537 ], [ 29.501038, 66.513260 ], [ 29.053345, 66.944048 ], [ 29.976196, 67.697983 ], [ 28.446350, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.558512 ], [ 32.132263, 69.905780 ] ] ] } } ] } ] } @@ -5312,16 +5216,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.069153, 0.219726 ], [ 42.871399, 0.000000 ], [ 42.041931, -0.920065 ], [ 41.811218, -1.447295 ], [ 41.585999, -1.683413 ], [ 40.992737, -0.859648 ], [ 40.989990, 0.000000 ], [ 40.989990, 0.219726 ], [ 43.069153, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.972473, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.895569, 0.000000 ], [ 33.903809, -0.950274 ], [ 33.750000, -0.955766 ], [ 33.530273, -0.964005 ], [ 33.530273, 0.219726 ], [ 33.972473, 0.219726 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.859648 ], [ 41.585999, -1.683413 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.122070, -3.277630 ], [ 39.800720, -3.680632 ], [ 39.605713, -4.346411 ], [ 39.201965, -4.677717 ], [ 37.768250, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.071350, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.972473, 0.219726 ], [ 40.989990, 0.219726 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.069153, 0.219726 ], [ 42.871399, 0.000000 ], [ 42.041931, -0.920065 ], [ 41.811218, -1.447295 ], [ 41.585999, -1.683413 ], [ 40.992737, -0.859648 ], [ 40.989990, 0.000000 ], [ 40.989990, 0.219726 ], [ 43.069153, 0.219726 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.071350, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.768250, -3.677892 ], [ 39.201965, -4.677717 ], [ 38.740540, -5.908385 ], [ 38.800964, -6.476338 ], [ 39.440918, -6.839170 ], [ 39.471130, -7.100893 ], [ 39.193726, -7.702826 ], [ 39.251404, -8.007557 ], [ 39.185486, -8.485955 ], [ 39.537048, -9.112945 ], [ 39.949036, -10.098670 ], [ 40.317078, -10.317621 ], [ 39.520569, -10.898042 ], [ 38.729553, -11.178402 ], [ 38.427429, -11.286161 ], [ 37.828674, -11.270000 ], [ 37.680359, -11.393879 ], [ 34.532776, -11.393879 ], [ 34.488831, -11.178402 ], [ 34.280090, -10.160857 ], [ 33.750000, -9.430096 ], [ 33.739014, -9.416548 ], [ 33.530273, -9.378612 ], [ 33.530273, -0.964005 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.530273, -9.378612 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.430096 ], [ 34.280090, -10.160857 ], [ 34.488831, -11.178402 ], [ 34.532776, -11.393879 ], [ 33.530273, -11.393879 ], [ 33.530273, -9.378612 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.219726 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.859648 ], [ 41.585999, -1.683413 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.262146, -2.572682 ], [ 40.122070, -3.277630 ], [ 39.800720, -3.680632 ], [ 39.605713, -4.346411 ], [ 39.201965, -4.677717 ], [ 37.768250, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.071350, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 33.972473, 0.219726 ], [ 40.989990, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.317078, -10.317621 ], [ 40.479126, -10.765858 ], [ 40.462646, -11.178402 ], [ 40.451660, -11.393879 ], [ 37.680359, -11.393879 ], [ 37.828674, -11.270000 ], [ 38.427429, -11.286161 ], [ 38.729553, -11.178402 ], [ 39.520569, -10.898042 ], [ 40.317078, -10.317621 ] ] ] } } ] } ] } @@ -5332,17 +5236,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.244654 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.374562 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.716435 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.716435 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.728821, 11.393879 ], [ 41.739807, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.778015, 10.927708 ], [ 42.558289, 10.571522 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.678894, 9.183447 ], [ 45.000000, 8.703214 ], [ 45.219727, 8.624472 ], [ 45.219727, 5.274213 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 43.659668, 4.956879 ], [ 42.769775, 4.253290 ], [ 42.129822, 4.234117 ], [ 41.855164, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.767517, 4.256029 ], [ 39.855652, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.499714 ], [ 38.671875, 3.614848 ], [ 38.435669, 3.587436 ], [ 38.119812, 3.598401 ], [ 36.856384, 4.447736 ], [ 36.158752, 4.447736 ], [ 35.818176, 4.776258 ], [ 35.818176, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.825534 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 33.530273, 7.716435 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.961487, 9.584501 ], [ 34.258118, 10.630916 ], [ 34.730530, 10.908830 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 34.873352, 11.393879 ], [ 41.728821, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.005432, 4.250551 ], [ 34.477844, 3.554541 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.178201 ], [ 34.181213, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.895569, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.894398 ], [ 33.750000, 4.058796 ], [ 34.005432, 4.250551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.099365, 11.393879 ], [ 42.951050, 11.178402 ], [ 42.778015, 10.927708 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.728821, 11.393879 ], [ 43.099365, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.818176, 5.337114 ], [ 35.818176, 4.776258 ], [ 36.158752, 4.447736 ], [ 36.856384, 4.447736 ], [ 38.119812, 3.598401 ], [ 38.435669, 3.587436 ], [ 38.671875, 3.614848 ], [ 38.891602, 3.499714 ], [ 39.559021, 3.422950 ], [ 39.855652, 3.839591 ], [ 40.767517, 4.256029 ], [ 41.171265, 3.919060 ], [ 41.855164, 3.919060 ], [ 40.981750, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.181213, 0.516350 ], [ 34.672852, 1.178201 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.477844, 3.554541 ], [ 34.005432, 4.250551 ], [ 35.299072, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.274213 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.068909, 1.051882 ], [ 43.135071, 0.291136 ], [ 42.871399, 0.000000 ], [ 42.673645, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.981750, 2.783938 ], [ 41.855164, 3.919060 ], [ 42.129822, 4.234117 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.956879 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.274213 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.728821, 11.393879 ], [ 41.739807, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.778015, 10.927708 ], [ 42.558289, 10.571522 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.678894, 9.183447 ], [ 45.000000, 8.703214 ], [ 45.219727, 8.624472 ], [ 45.219727, 5.274213 ], [ 45.000000, 5.041699 ], [ 44.964294, 5.000658 ], [ 43.659668, 4.956879 ], [ 42.769775, 4.253290 ], [ 42.129822, 4.234117 ], [ 41.855164, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.767517, 4.256029 ], [ 39.855652, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.499714 ], [ 38.671875, 3.614848 ], [ 38.435669, 3.587436 ], [ 38.119812, 3.598401 ], [ 36.856384, 4.447736 ], [ 36.158752, 4.447736 ], [ 35.818176, 4.776258 ], [ 35.818176, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.825534 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 33.530273, 7.716435 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.374562 ], [ 33.824158, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.961487, 9.584501 ], [ 34.258118, 10.630916 ], [ 34.730530, 10.908830 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 34.873352, 11.393879 ], [ 41.728821, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.005432, 4.250551 ], [ 34.477844, 3.554541 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.178201 ], [ 34.181213, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.895569, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.894398 ], [ 33.750000, 4.058796 ], [ 34.005432, 4.250551 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.266907, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.703214 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.266907, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.818176, 5.337114 ], [ 35.818176, 4.776258 ], [ 36.158752, 4.447736 ], [ 36.856384, 4.447736 ], [ 38.119812, 3.598401 ], [ 38.435669, 3.587436 ], [ 38.671875, 3.614848 ], [ 38.891602, 3.499714 ], [ 39.559021, 3.422950 ], [ 39.855652, 3.839591 ], [ 40.767517, 4.256029 ], [ 41.171265, 3.919060 ], [ 41.855164, 3.919060 ], [ 40.981750, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.895569, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.181213, 0.516350 ], [ 34.672852, 1.178201 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.477844, 3.554541 ], [ 34.005432, 4.250551 ], [ 35.299072, 5.506640 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.274213 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.068909, 1.051882 ], [ 43.135071, 0.291136 ], [ 42.871399, 0.000000 ], [ 42.673645, -0.219726 ], [ 40.989990, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.981750, 2.783938 ], [ 41.855164, 3.919060 ], [ 42.129822, 4.234117 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.956879 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.041699 ], [ 45.219727, 5.274213 ] ] ] } } ] } ] } , @@ -5350,17 +5254,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.741028, 22.146708 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 22.146708 ], [ 36.741028, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.883850, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.482605, 18.615013 ], [ 37.861633, 18.367559 ], [ 38.410950, 17.997019 ], [ 37.902832, 17.426649 ], [ 37.166748, 17.264105 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.291142 ], [ 36.323547, 14.822681 ], [ 36.430664, 14.421380 ], [ 36.271362, 13.563232 ], [ 35.864868, 12.578691 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.744263, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ], [ 39.100342, 14.740355 ], [ 39.339294, 14.530415 ], [ 40.025940, 14.519780 ], [ 40.896606, 14.117931 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.451066 ], [ 42.008972, 12.865360 ], [ 42.352295, 12.541159 ], [ 42.000732, 12.101095 ], [ 41.662903, 11.630716 ], [ 41.739807, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.731323, 10.962764 ], [ 34.744263, 10.962764 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.578691 ], [ 36.271362, 13.563232 ], [ 36.430664, 14.421380 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ], [ 45.000000, 17.429270 ], [ 44.063416, 17.410925 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.075164 ], [ 42.269897, 17.473812 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.034424, 22.146708 ], [ 45.219727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.063416, 17.410925 ], [ 45.000000, 17.429270 ], [ 45.219727, 17.431890 ], [ 45.219727, 12.975118 ], [ 45.145569, 12.953706 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.637658 ], [ 43.222961, 13.221230 ], [ 43.250427, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.893372, 14.801439 ], [ 42.604980, 15.212638 ], [ 42.805481, 15.262989 ], [ 42.701111, 15.718239 ], [ 42.824707, 15.911150 ], [ 42.778015, 16.349132 ], [ 43.217468, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.883850, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.482605, 18.615013 ], [ 37.861633, 18.367559 ], [ 38.410950, 17.997019 ], [ 37.902832, 17.426649 ], [ 37.166748, 17.264105 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.291142 ], [ 36.323547, 14.822681 ], [ 36.430664, 14.421380 ], [ 36.271362, 13.563232 ], [ 35.864868, 12.578691 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.744263, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.410950, 17.997019 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.921715 ], [ 39.814453, 15.435148 ], [ 41.179504, 14.490531 ], [ 41.734314, 13.920738 ], [ 42.278137, 13.344193 ], [ 42.588501, 12.999205 ], [ 43.080139, 12.699292 ], [ 42.780762, 12.455351 ], [ 42.352295, 12.541159 ], [ 42.008972, 12.865360 ], [ 41.599731, 13.451066 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.117931 ], [ 40.025940, 14.519780 ], [ 39.339294, 14.530415 ], [ 39.100342, 14.740355 ], [ 38.512573, 14.506485 ], [ 37.905579, 14.960706 ], [ 37.592468, 14.213801 ], [ 36.430664, 14.421380 ], [ 36.323547, 14.822681 ], [ 36.754761, 16.291142 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.264105 ], [ 37.902832, 17.426649 ], [ 38.410950, 17.997019 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.080139, 12.699292 ], [ 43.319092, 12.390976 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.735613 ], [ 43.146057, 11.461183 ], [ 42.951050, 11.178402 ], [ 42.802734, 10.962764 ], [ 42.731323, 10.962764 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.748047, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.662903, 11.630716 ], [ 42.000732, 12.101095 ], [ 42.352295, 12.541159 ], [ 42.780762, 12.455351 ], [ 43.080139, 12.699292 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ], [ 45.000000, 17.429270 ], [ 44.063416, 17.410925 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.075164 ], [ 42.269897, 17.473812 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.034424, 22.146708 ], [ 45.219727, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ], [ 39.100342, 14.740355 ], [ 39.339294, 14.530415 ], [ 40.025940, 14.519780 ], [ 40.896606, 14.117931 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.451066 ], [ 42.008972, 12.865360 ], [ 42.352295, 12.541159 ], [ 42.000732, 12.101095 ], [ 41.662903, 11.630716 ], [ 41.739807, 11.356182 ], [ 41.748047, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.731323, 10.962764 ], [ 34.744263, 10.962764 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.578691 ], [ 36.271362, 13.563232 ], [ 36.430664, 14.421380 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.063416, 17.410925 ], [ 45.000000, 17.429270 ], [ 45.219727, 17.431890 ], [ 45.219727, 12.975118 ], [ 45.145569, 12.953706 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.637658 ], [ 43.222961, 13.221230 ], [ 43.250427, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.893372, 14.801439 ], [ 42.604980, 15.212638 ], [ 42.805481, 15.262989 ], [ 42.701111, 15.718239 ], [ 42.824707, 15.911150 ], [ 42.778015, 16.349132 ], [ 43.217468, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.146057, 11.461183 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.621216, 10.962764 ], [ 42.802734, 10.962764 ], [ 42.951050, 11.178402 ], [ 43.146057, 11.461183 ] ] ] } } ] } @@ -5370,17 +5274,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.028349 ], [ 33.530273, 30.984673 ], [ 33.750000, 30.968189 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.028349 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546265, 32.138409 ], [ 35.546265, 31.781882 ], [ 35.397949, 31.489578 ], [ 34.928284, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.224915, 31.753861 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.060120, 32.138409 ], [ 35.546265, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.295349, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 37.001953, 31.508313 ], [ 37.998962, 30.507850 ], [ 37.669373, 30.339695 ], [ 37.504578, 30.004895 ], [ 36.741028, 29.864465 ], [ 36.502075, 29.504159 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.355846 ], [ 34.922791, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546265, 32.138409 ], [ 35.546265, 31.781882 ], [ 35.397949, 31.489578 ], [ 34.928284, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.224915, 31.753861 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.060120, 32.138409 ], [ 35.546265, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.883850, 21.943046 ], [ 36.952515, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 37.001953, 31.508313 ], [ 37.998962, 30.507850 ], [ 37.669373, 30.339695 ], [ 37.504578, 30.004895 ], [ 36.741028, 29.864465 ], [ 36.502075, 29.504159 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.355846 ], [ 34.922791, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.295349, 32.138409 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.178543 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.156959 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.067383, 22.578510 ], [ 38.493347, 23.687289 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.284523 ], [ 37.155762, 24.859026 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.827089 ], [ 36.249390, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.131531, 28.062286 ], [ 34.631653, 28.057439 ], [ 34.788208, 28.606226 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.355846 ], [ 36.068115, 29.197726 ], [ 36.502075, 29.504159 ], [ 36.741028, 29.864465 ], [ 37.504578, 30.004895 ], [ 37.669373, 30.339695 ], [ 37.998962, 30.507850 ], [ 37.001953, 31.508313 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.295349, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.883850, 21.943046 ], [ 36.952515, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } ] } ] } , @@ -5388,30 +5292,30 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.057922, 41.145570 ], [ 43.582764, 41.091772 ], [ 43.478394, 41.145570 ], [ 44.057922, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.478394, 41.145570 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.741014 ], [ 43.656921, 40.254377 ], [ 44.401245, 40.004476 ], [ 44.794006, 39.713525 ], [ 44.110107, 39.427707 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.294128, 37.002553 ], [ 43.942566, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.212463, 37.074902 ], [ 40.674133, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.622141 ], [ 36.738281, 36.818080 ], [ 36.686096, 36.259778 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.564806 ], [ 34.714050, 36.796090 ], [ 34.027405, 36.219903 ], [ 33.750000, 36.199958 ], [ 33.530273, 36.182225 ], [ 33.530273, 41.145570 ], [ 37.617188, 41.145570 ], [ 38.347778, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.102121 ], [ 40.374756, 41.013066 ], [ 40.671387, 41.145570 ], [ 43.478394, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.092945 ], [ 33.972473, 35.059229 ], [ 34.005432, 34.978252 ], [ 33.750000, 34.876918 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.576721, 35.670685 ], [ 33.901062, 35.245619 ], [ 33.972473, 35.059229 ], [ 33.865356, 35.092945 ], [ 33.750000, 35.047987 ], [ 33.675842, 35.018750 ], [ 33.530273, 35.038992 ], [ 33.530273, 35.375614 ], [ 33.667603, 35.373375 ], [ 33.750000, 35.400245 ], [ 34.576721, 35.670685 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.865356, 35.092945 ], [ 33.972473, 35.059229 ], [ 34.005432, 34.978252 ], [ 33.750000, 34.876918 ], [ 33.530273, 34.791250 ], [ 33.530273, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.478394, 41.145570 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.741014 ], [ 43.656921, 40.254377 ], [ 44.401245, 40.004476 ], [ 44.794006, 39.713525 ], [ 44.110107, 39.427707 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.294128, 37.002553 ], [ 43.942566, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.212463, 37.074902 ], [ 40.674133, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.622141 ], [ 36.738281, 36.818080 ], [ 36.686096, 36.259778 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.564806 ], [ 34.714050, 36.796090 ], [ 34.027405, 36.219903 ], [ 33.750000, 36.199958 ], [ 33.530273, 36.182225 ], [ 33.530273, 41.145570 ], [ 37.617188, 41.145570 ], [ 38.347778, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.102121 ], [ 40.374756, 41.013066 ], [ 40.671387, 41.145570 ], [ 43.478394, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.628280 ], [ 41.006470, 34.418239 ], [ 38.792725, 33.378706 ], [ 36.834412, 32.312670 ], [ 35.700073, 32.715666 ], [ 35.837402, 32.868053 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.999451, 34.644507 ], [ 35.906067, 35.409200 ], [ 36.150513, 35.822267 ], [ 36.686096, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.622141 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.674133, 37.090240 ], [ 41.212463, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.052185, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.542176 ], [ 45.000000, 39.738874 ], [ 44.794006, 39.713525 ], [ 44.401245, 40.004476 ], [ 43.656921, 40.254377 ], [ 43.753052, 40.741014 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.057922, 41.145570 ], [ 45.052185, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.665894, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.124817, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.378706 ], [ 39.196472, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.538025, 31.765537 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.393878 ], [ 35.719299, 32.708733 ], [ 36.834412, 32.312670 ], [ 38.792725, 33.378706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.738874 ], [ 45.219727, 39.542176 ], [ 45.219727, 39.091700 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.378706 ], [ 39.196472, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.773499, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.538025, 31.765537 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.393878 ], [ 35.719299, 32.708733 ], [ 36.834412, 32.312670 ], [ 38.792725, 33.378706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.196472, 32.161663 ], [ 40.124817, 31.952162 ], [ 40.399475, 31.889219 ], [ 40.665894, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.773499, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.196472, 32.161663 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.738874 ], [ 45.219727, 39.542176 ], [ 45.219727, 39.091700 ], [ 45.000000, 39.291797 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.738874 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.052185, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.291797 ], [ 45.219727, 39.091700 ], [ 45.219727, 36.348315 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.794006, 39.713525 ] ] ] } } ] } ] } @@ -5426,9 +5330,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 40.813809 ], [ 43.717346, 40.813809 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 49.066668 ], [ 45.219727, 42.559150 ], [ 45.000000, 42.607685 ], [ 44.538574, 42.712714 ], [ 43.931580, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.078125, 43.552529 ], [ 39.954529, 43.434972 ], [ 38.680115, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.675110, 45.243953 ], [ 37.402954, 45.404235 ], [ 38.232422, 46.240652 ], [ 37.674866, 46.636237 ], [ 39.147034, 47.043926 ], [ 39.122314, 47.262456 ], [ 38.224182, 47.101914 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.896851, 48.231991 ], [ 39.674377, 48.783342 ], [ 39.781494, 48.922499 ], [ 39.894104, 49.066668 ], [ 45.219727, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.219727, 41.409776 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 49.066668 ], [ 45.219727, 42.559150 ], [ 45.000000, 42.607685 ], [ 44.538574, 42.712714 ], [ 43.931580, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.078125, 43.552529 ], [ 39.954529, 43.434972 ], [ 38.680115, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.675110, 45.243953 ], [ 37.402954, 45.404235 ], [ 38.232422, 46.240652 ], [ 37.674866, 46.636237 ], [ 39.147034, 47.043926 ], [ 39.122314, 47.262456 ], [ 38.224182, 47.101914 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.896851, 48.231991 ], [ 39.674377, 48.783342 ], [ 39.781494, 48.922499 ], [ 39.894104, 49.066668 ], [ 45.219727, 49.066668 ] ] ] } } ] } ] } , @@ -5542,10 +5446,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.001038, 18.999803 ], [ 53.107910, 16.651981 ], [ 52.385559, 16.383391 ], [ 52.190552, 15.937561 ], [ 52.168579, 15.596584 ], [ 51.171570, 15.175530 ], [ 49.575806, 14.708478 ], [ 48.680420, 14.003367 ], [ 48.238220, 13.947396 ], [ 47.938843, 14.006031 ], [ 47.353821, 13.592600 ], [ 46.716614, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.290738 ], [ 45.406494, 13.025966 ], [ 45.145569, 12.953706 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.699292 ], [ 44.780273, 12.710009 ], [ 44.780273, 17.424029 ], [ 45.000000, 17.429270 ], [ 45.216980, 17.434511 ], [ 45.401001, 17.332286 ], [ 46.367798, 17.232628 ], [ 46.749573, 17.282464 ], [ 46.999512, 16.949097 ], [ 47.466431, 17.117168 ], [ 48.183289, 18.166730 ], [ 49.117126, 18.617616 ], [ 52.001038, 18.999803 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.571594, 22.146708 ], [ 55.667725, 21.999082 ], [ 55.648499, 21.943046 ], [ 55.000305, 19.999160 ], [ 52.001038, 18.999803 ], [ 49.117126, 18.617616 ], [ 48.183289, 18.166730 ], [ 47.466431, 17.117168 ], [ 46.999512, 16.949097 ], [ 46.749573, 17.282464 ], [ 46.367798, 17.232628 ], [ 45.401001, 17.332286 ], [ 45.216980, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.780273, 17.424029 ], [ 44.780273, 22.146708 ], [ 55.571594, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.001038, 18.999803 ], [ 53.107910, 16.651981 ], [ 52.385559, 16.383391 ], [ 52.190552, 15.937561 ], [ 52.168579, 15.596584 ], [ 51.171570, 15.175530 ], [ 49.575806, 14.708478 ], [ 48.680420, 14.003367 ], [ 48.238220, 13.947396 ], [ 47.938843, 14.006031 ], [ 47.353821, 13.592600 ], [ 46.716614, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.290738 ], [ 45.406494, 13.025966 ], [ 45.145569, 12.953706 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.699292 ], [ 44.780273, 12.710009 ], [ 44.780273, 17.424029 ], [ 45.000000, 17.429270 ], [ 45.216980, 17.434511 ], [ 45.401001, 17.332286 ], [ 46.367798, 17.232628 ], [ 46.749573, 17.282464 ], [ 46.999512, 16.949097 ], [ 47.466431, 17.117168 ], [ 48.183289, 18.166730 ], [ 49.117126, 18.617616 ], [ 52.001038, 18.999803 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.046644 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.662231, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.274963, 17.227382 ], [ 54.791565, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.707232 ], [ 53.107910, 16.651981 ], [ 52.001038, 18.999803 ], [ 55.000305, 19.999160 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.410033 ], [ 48.941345, 11.393879 ], [ 48.941345, 11.178402 ], [ 48.938599, 10.981639 ], [ 48.938599, 10.962764 ], [ 47.059937, 10.962764 ], [ 47.526855, 11.127202 ], [ 47.911377, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.946838, 11.410033 ] ] ] } } @@ -5560,6 +5464,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.471436, 27.110479 ], [ 50.152588, 26.689183 ], [ 50.213013, 26.276177 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.326649 ], [ 50.660706, 25.000994 ], [ 50.809021, 24.754314 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.244460 ], [ 51.616516, 24.013853 ], [ 52.001038, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.209045, 22.707789 ], [ 55.667725, 21.999082 ], [ 55.648499, 21.943046 ], [ 55.579834, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } @@ -5567,8 +5473,6 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.269501 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.933545 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.209045, 22.707789 ], [ 55.005798, 22.497332 ], [ 52.001038, 23.001380 ], [ 51.616516, 24.013853 ], [ 51.580811, 24.244460 ], [ 51.756592, 24.294537 ], [ 51.795044, 24.018871 ], [ 52.577820, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.692688, 24.796708 ], [ 55.439758, 25.438314 ], [ 56.071472, 26.054315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.469727, 24.814161 ], [ 56.469727, 21.739091 ], [ 55.579834, 21.739091 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.209045, 22.707789 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.527649, 23.933545 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.269501 ], [ 55.887451, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.239229 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.686157, 31.952162 ], [ 47.559814, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } ] } ] } , @@ -5596,23 +5500,23 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.557556, 40.813809 ], [ 44.780273, 40.813809 ], [ 44.780273, 41.226183 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.977539, 49.066668 ], [ 46.867676, 48.922499 ], [ 46.466675, 48.394562 ], [ 47.315369, 47.715306 ], [ 48.056946, 47.743017 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.560749 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.659924 ], [ 47.491150, 42.986567 ], [ 48.584290, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.826595 ], [ 46.406250, 41.861379 ], [ 45.777283, 42.092108 ], [ 45.469666, 42.502478 ], [ 45.000000, 42.607685 ], [ 44.780273, 42.658202 ], [ 44.780273, 49.066668 ], [ 46.977539, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.120053 ], [ 56.250000, 45.069641 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.456238, 41.259227 ], [ 54.755859, 42.043174 ], [ 54.080200, 42.324032 ], [ 52.943115, 42.116561 ], [ 52.503662, 41.783601 ], [ 52.445984, 42.026854 ], [ 52.693176, 42.443728 ], [ 52.500916, 42.791370 ], [ 51.341858, 43.133061 ], [ 50.891418, 44.030346 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.514135 ], [ 51.317139, 45.245887 ], [ 52.168579, 45.408092 ], [ 53.041992, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.049540 ], [ 50.034485, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.560749 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.743017 ], [ 47.315369, 47.715306 ], [ 46.466675, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.826595 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.988281, 41.405656 ], [ 48.584290, 41.808173 ], [ 49.111633, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.446716, 40.813809 ], [ 45.557556, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.636963, 41.180721 ], [ 46.145325, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.157349, 40.813809 ], [ 52.899170, 40.813809 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 54.360352, 40.813809 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.551756 ], [ 53.720398, 42.122673 ], [ 52.915649, 41.867516 ], [ 52.814026, 41.135227 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.080200, 42.324032 ], [ 54.755859, 42.043174 ], [ 55.456238, 41.259227 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.360352, 40.813809 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.977539, 49.066668 ], [ 46.867676, 48.922499 ], [ 46.466675, 48.394562 ], [ 47.315369, 47.715306 ], [ 48.056946, 47.743017 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.560749 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.659924 ], [ 47.491150, 42.986567 ], [ 48.584290, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.826595 ], [ 46.406250, 41.861379 ], [ 45.777283, 42.092108 ], [ 45.469666, 42.502478 ], [ 45.000000, 42.607685 ], [ 44.780273, 42.658202 ], [ 44.780273, 49.066668 ], [ 46.977539, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 55.899956 ], [ 56.469727, 50.922082 ], [ 56.250000, 50.833698 ], [ 55.717163, 50.621588 ], [ 54.533386, 51.025849 ], [ 52.327881, 51.718521 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.605903 ], [ 48.578796, 49.875168 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.355545 ], [ 47.043457, 49.151173 ], [ 46.867676, 48.922499 ], [ 46.757812, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.327881, 51.718521 ], [ 54.533386, 51.025849 ], [ 55.717163, 50.621588 ], [ 56.250000, 50.833698 ], [ 56.469727, 50.922082 ], [ 56.469727, 48.777913 ], [ 46.757812, 48.777913 ], [ 46.867676, 48.922499 ], [ 47.043457, 49.151173 ], [ 46.752319, 49.355545 ], [ 47.548828, 50.454007 ], [ 48.578796, 49.875168 ], [ 48.702393, 50.605903 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.718521 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 55.899956 ], [ 56.469727, 50.922082 ], [ 56.250000, 50.833698 ], [ 55.717163, 50.621588 ], [ 54.533386, 51.025849 ], [ 52.327881, 51.718521 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.605903 ], [ 48.578796, 49.875168 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.355545 ], [ 47.043457, 49.151173 ], [ 46.867676, 48.922499 ], [ 46.757812, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ] ] ] } } ] } ] } , @@ -5714,14 +5618,14 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.869751, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.379434 ], [ 61.781616, 30.734754 ], [ 60.875244, 29.828731 ], [ 61.369629, 29.303166 ], [ 61.770630, 28.700225 ], [ 62.729187, 28.260844 ], [ 62.756653, 27.379084 ], [ 63.234558, 27.217999 ], [ 63.316956, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.498718, 25.078136 ], [ 59.617310, 25.381254 ], [ 58.526917, 25.609333 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 56.250000, 27.086028 ], [ 56.030273, 27.037110 ], [ 56.030273, 32.138409 ], [ 60.869751, 32.138409 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.395847 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 66.939697, 31.304368 ], [ 66.382141, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.047302, 29.473079 ], [ 64.349670, 29.559123 ], [ 64.149170, 29.341481 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.317536 ], [ 60.875244, 29.828731 ], [ 61.781616, 30.734754 ], [ 61.699219, 31.379434 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.869751, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.395847 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.145691, 24.664490 ], [ 66.373901, 25.425912 ], [ 64.530945, 25.237243 ], [ 62.904968, 25.217366 ], [ 61.498718, 25.078136 ], [ 61.875000, 26.239229 ], [ 63.316956, 26.755421 ], [ 63.234558, 27.217999 ], [ 62.756653, 27.379084 ], [ 62.729187, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.303166 ], [ 60.875244, 29.828731 ], [ 62.550659, 29.317536 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.341481 ], [ 64.349670, 29.559123 ], [ 65.047302, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.382141, 30.739475 ], [ 66.939697, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.719727, 31.395847 ] ] ] } } ] } ] } @@ -5730,13 +5634,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.609863, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.028622 ], [ 58.436279, 37.522797 ], [ 59.235535, 37.413800 ], [ 60.378113, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.803833, 34.404644 ], [ 60.529175, 33.676354 ], [ 60.963135, 33.529948 ], [ 60.537415, 32.981020 ], [ 60.864258, 32.182586 ], [ 60.891724, 31.952162 ], [ 60.916443, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.618042, 38.121593 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.028622 ], [ 58.436279, 37.522797 ], [ 59.235535, 37.413800 ], [ 60.378113, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.803833, 34.404644 ], [ 60.529175, 33.676354 ], [ 60.963135, 33.529948 ], [ 60.537415, 32.981020 ], [ 60.864258, 32.182586 ], [ 60.891724, 31.952162 ], [ 60.916443, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.963689 ], [ 56.618042, 38.121593 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.770630, 41.145570 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.893171 ], [ 65.214844, 38.401949 ], [ 66.546936, 37.974515 ], [ 66.519470, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.745178, 37.112146 ], [ 64.547424, 36.312912 ], [ 63.981628, 36.006895 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.270289 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.378113, 36.527295 ], [ 59.235535, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.329407, 38.028622 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.770630, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.609863, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.049052 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.609863, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.916443, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.580290 ], [ 67.719727, 39.049052 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 67.719727, 39.580290 ] ] ] } } ] } @@ -5746,17 +5650,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.147638 ], [ 66.714478, 41.168317 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.994202 ], [ 66.099243, 42.998621 ], [ 64.901733, 43.727445 ], [ 63.185120, 43.649988 ], [ 62.012329, 43.504737 ], [ 61.059265, 44.406316 ], [ 60.240784, 44.783785 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.069641 ], [ 56.030273, 45.019185 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.751046 ], [ 59.977112, 42.222416 ], [ 60.084229, 41.424194 ], [ 60.466003, 41.219986 ], [ 61.548157, 41.265421 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.308761 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.751046 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.751046 ], [ 59.977112, 42.222416 ], [ 60.084229, 41.424194 ], [ 60.466003, 41.219986 ], [ 61.548157, 41.265421 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.308761 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.751046 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 55.899956 ], [ 67.719727, 54.905041 ], [ 67.500000, 54.871866 ], [ 65.668030, 54.600710 ], [ 65.179138, 54.354956 ], [ 61.435547, 54.006155 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.740662, 52.719658 ], [ 60.927429, 52.447640 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.933167, 50.842370 ], [ 59.642029, 50.544854 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.043121 ], [ 56.250000, 50.833698 ], [ 56.030273, 50.746884 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 54.905041 ], [ 67.719727, 48.777913 ], [ 56.030273, 48.777913 ], [ 56.030273, 50.746884 ], [ 56.250000, 50.833698 ], [ 56.777344, 51.043121 ], [ 58.362122, 51.063839 ], [ 59.642029, 50.544854 ], [ 59.933167, 50.842370 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.927429, 52.447640 ], [ 60.740662, 52.719658 ], [ 61.699219, 52.980070 ], [ 60.976868, 53.665798 ], [ 61.435547, 54.006155 ], [ 65.179138, 54.354956 ], [ 65.668030, 54.600710 ], [ 67.500000, 54.871866 ], [ 67.719727, 54.905041 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 55.899956 ], [ 67.719727, 54.905041 ], [ 67.500000, 54.871866 ], [ 65.668030, 54.600710 ], [ 65.179138, 54.354956 ], [ 61.435547, 54.006155 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.740662, 52.719658 ], [ 60.927429, 52.447640 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.933167, 50.842370 ], [ 59.642029, 50.544854 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.043121 ], [ 56.250000, 50.833698 ], [ 56.030273, 50.746884 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ] ] ] } } ] } ] } , @@ -5872,53 +5776,53 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.296265, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 68.925476, 31.620644 ], [ 68.557434, 31.714149 ], [ 67.793884, 31.583215 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.304368 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.296265, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.061340, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.421387, 30.979964 ], [ 73.451843, 29.976349 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.617371, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.169678, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.843079, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.500000, 31.304368 ], [ 67.684021, 31.302022 ], [ 67.793884, 31.583215 ], [ 68.557434, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.296265, 32.138409 ], [ 75.061340, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.579712, 32.138409 ], [ 78.629150, 31.952162 ], [ 78.739014, 31.515337 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.543457, 21.739091 ], [ 69.320984, 21.943046 ], [ 69.164429, 22.088185 ], [ 69.645081, 22.451649 ], [ 69.348450, 22.842008 ], [ 68.175659, 23.692320 ], [ 68.843079, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.282288, 25.723210 ], [ 70.169678, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.617371, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.451843, 29.976349 ], [ 74.421387, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.061340, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.579712, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.260803, 40.661889 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.609863, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.280273, 37.298090 ], [ 67.280273, 41.145570 ], [ 67.609863, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.969727, 32.521342 ], [ 78.969727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.629150, 31.952162 ], [ 78.458862, 32.618557 ], [ 78.750000, 32.563018 ], [ 78.969727, 32.521342 ] ] ], [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 77.838135, 35.494220 ], [ 76.192932, 35.897950 ], [ 75.896301, 36.666216 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.830627, 37.989669 ], [ 74.863586, 38.378269 ], [ 74.256592, 38.606140 ], [ 73.929749, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.894987 ], [ 74.775696, 40.365381 ], [ 75.467834, 40.561808 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.758484, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.298090 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.666216 ], [ 76.192932, 35.897950 ], [ 77.838135, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.504293 ], [ 74.240112, 34.748383 ], [ 73.751221, 34.318487 ], [ 74.105530, 33.440609 ], [ 74.451599, 32.764181 ], [ 75.259094, 32.270878 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.128723, 31.765537 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.263306, 32.502813 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.930725, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.153600 ], [ 71.499023, 35.650601 ], [ 71.262817, 36.073522 ], [ 71.845093, 36.509636 ], [ 72.919006, 36.719072 ], [ 74.067078, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.494220 ], [ 78.750000, 34.499766 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.521342 ], [ 78.750000, 32.563018 ], [ 78.458862, 32.618557 ], [ 78.629150, 31.952162 ], [ 78.675842, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.259094, 32.270878 ], [ 74.451599, 32.764181 ], [ 74.105530, 33.440609 ], [ 73.751221, 34.318487 ], [ 74.240112, 34.748383 ], [ 75.756226, 34.504293 ], [ 76.871338, 34.653545 ], [ 77.838135, 35.494220 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.969727, 32.521342 ], [ 78.969727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.629150, 31.952162 ], [ 78.458862, 32.618557 ], [ 78.750000, 32.563018 ], [ 78.969727, 32.521342 ] ] ], [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 77.838135, 35.494220 ], [ 76.192932, 35.897950 ], [ 75.896301, 36.666216 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.830627, 37.989669 ], [ 74.863586, 38.378269 ], [ 74.256592, 38.606140 ], [ 73.929749, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.894987 ], [ 74.775696, 40.365381 ], [ 75.467834, 40.561808 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.758484, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.867912 ], [ 78.750000, 42.884015 ], [ 77.659607, 42.960443 ], [ 76.000671, 42.988576 ], [ 75.638123, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.090955 ], [ 73.490295, 42.500453 ], [ 71.845093, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.963440, 42.267147 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.172913, 40.813809 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.500000, 41.147638 ], [ 67.280273, 41.153842 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.153842 ], [ 67.500000, 41.147638 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.172913, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.153842 ] ] ], [ [ [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.963440, 42.267147 ], [ 71.260071, 42.167475 ], [ 70.419617, 41.520917 ], [ 71.158447, 41.143501 ], [ 71.869812, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 72.962952, 40.813809 ], [ 70.600891, 40.813809 ], [ 70.666809, 40.961234 ], [ 69.823608, 40.813809 ], [ 68.719482, 40.813809 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 41.728280 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.184855 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.728280 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.728280 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.600891, 40.813809 ], [ 69.823608, 40.813809 ], [ 70.666809, 40.961234 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 41.728280 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.184855 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.728280 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 55.899956 ], [ 78.969727, 52.094695 ], [ 78.750000, 52.343730 ], [ 77.799683, 53.404620 ], [ 76.525269, 54.176904 ], [ 76.890564, 54.490782 ], [ 74.385681, 53.546836 ], [ 73.424377, 53.489680 ], [ 73.509521, 54.035199 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.864563, 55.169456 ], [ 69.068298, 55.385352 ], [ 68.170166, 54.969732 ], [ 67.500000, 54.871866 ], [ 67.280273, 54.840245 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.068298, 55.385352 ], [ 70.864563, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.035199 ], [ 73.424377, 53.489680 ], [ 74.385681, 53.546836 ], [ 76.890564, 54.490782 ], [ 76.525269, 54.176904 ], [ 77.799683, 53.404620 ], [ 78.750000, 52.343730 ], [ 78.969727, 52.094695 ], [ 78.969727, 48.777913 ], [ 67.280273, 48.777913 ], [ 67.280273, 54.840245 ], [ 67.500000, 54.871866 ], [ 68.170166, 54.969732 ], [ 69.068298, 55.385352 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 55.899956 ], [ 78.969727, 52.094695 ], [ 78.750000, 52.343730 ], [ 77.799683, 53.404620 ], [ 76.525269, 54.176904 ], [ 76.890564, 54.490782 ], [ 74.385681, 53.546836 ], [ 73.424377, 53.489680 ], [ 73.509521, 54.035199 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.864563, 55.169456 ], [ 69.068298, 55.385352 ], [ 68.170166, 54.969732 ], [ 67.500000, 54.871866 ], [ 67.280273, 54.840245 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ] ] ] } } ] } ] } , @@ -6030,8 +5934,6 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 32.138409 ], [ 90.219727, 28.229390 ], [ 90.016479, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.475403, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.875500 ], [ 86.954041, 27.974998 ], [ 85.822449, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.234924, 28.839862 ], [ 83.899841, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.328796, 30.114246 ], [ 81.526794, 30.422625 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.750000, 31.508313 ], [ 78.739014, 31.515337 ], [ 78.579712, 32.138409 ], [ 90.219727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.526794, 30.422625 ], [ 82.328796, 30.114246 ], [ 83.336792, 29.463514 ], [ 83.899841, 29.319931 ], [ 84.234924, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.822449, 28.202768 ], [ 86.954041, 27.974998 ], [ 88.121338, 27.875500 ], [ 88.044434, 27.444916 ], [ 88.173523, 26.809364 ], [ 88.060913, 26.414010 ], [ 87.228699, 26.396790 ], [ 86.025696, 26.630273 ], [ 85.251160, 26.725987 ], [ 84.674377, 27.235095 ], [ 83.303833, 27.364450 ], [ 81.999207, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.087585, 28.794139 ], [ 80.477600, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.526794, 30.422625 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.579712, 32.138409 ], [ 78.739014, 31.515337 ], [ 78.750000, 31.508313 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.477600, 29.730992 ], [ 80.087585, 28.794139 ], [ 81.057129, 28.415560 ], [ 81.999207, 27.926474 ], [ 83.303833, 27.364450 ], [ 84.674377, 27.235095 ], [ 85.251160, 26.725987 ], [ 86.025696, 26.630273 ], [ 87.228699, 26.396790 ], [ 88.060913, 26.414010 ], [ 88.173523, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.875500 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.744568, 26.718627 ], [ 90.000000, 26.782395 ], [ 90.219727, 26.838776 ], [ 90.219727, 25.227305 ], [ 90.000000, 25.257117 ], [ 89.920349, 25.269536 ], [ 89.832458, 25.965453 ], [ 89.354553, 26.014829 ], [ 88.563538, 26.445984 ], [ 88.209229, 25.767740 ], [ 88.931580, 25.239727 ], [ 88.305359, 24.866503 ], [ 88.085632, 24.502145 ], [ 88.700867, 24.234442 ], [ 88.530579, 23.631944 ], [ 88.876648, 22.879971 ], [ 89.033203, 22.055096 ], [ 88.986511, 21.943046 ], [ 88.906860, 21.739091 ], [ 78.530273, 21.739091 ], [ 78.530273, 32.138409 ], [ 78.579712, 32.138409 ] ] ] } } @@ -6039,38 +5941,40 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.297126 ], [ 90.219727, 28.229390 ], [ 90.219727, 26.838776 ], [ 90.000000, 26.782395 ], [ 89.744568, 26.718627 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.475403, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.297126 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.563538, 26.445984 ], [ 89.354553, 26.014829 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.269536 ], [ 90.000000, 25.257117 ], [ 90.219727, 25.227305 ], [ 90.219727, 21.861499 ], [ 90.000000, 21.965972 ], [ 89.846191, 22.039822 ], [ 89.772034, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.965972 ], [ 89.033203, 22.055096 ], [ 88.876648, 22.879971 ], [ 88.530579, 23.631944 ], [ 88.700867, 24.234442 ], [ 88.085632, 24.502145 ], [ 88.305359, 24.866503 ], [ 88.931580, 25.239727 ], [ 88.209229, 25.767740 ], [ 88.563538, 26.445984 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 32.138409 ], [ 90.219727, 28.229390 ], [ 90.016479, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.475403, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.875500 ], [ 86.954041, 27.974998 ], [ 85.822449, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.234924, 28.839862 ], [ 83.899841, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.328796, 30.114246 ], [ 81.526794, 30.422625 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.750000, 31.508313 ], [ 78.739014, 31.515337 ], [ 78.579712, 32.138409 ], [ 90.219727, 32.138409 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 41.145570 ], [ 90.219727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.530273, 32.338200 ], [ 78.530273, 32.604675 ], [ 78.750000, 32.563018 ], [ 79.175720, 32.484280 ], [ 79.208679, 32.994843 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 78.530273, 34.739356 ], [ 78.530273, 41.145570 ], [ 90.219727, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.530273, 32.604675 ], [ 78.530273, 34.739356 ], [ 78.750000, 34.499766 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 79.208679, 32.994843 ], [ 79.175720, 32.484280 ], [ 78.750000, 32.563018 ], [ 78.530273, 32.604675 ] ] ], [ [ [ 78.530273, 32.338200 ], [ 78.675842, 31.765537 ], [ 78.530273, 31.765537 ], [ 78.530273, 32.338200 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 41.145570 ], [ 90.219727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.530273, 32.338200 ], [ 78.530273, 32.604675 ], [ 78.750000, 32.563018 ], [ 79.175720, 32.484280 ], [ 79.208679, 32.994843 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 78.530273, 34.739356 ], [ 78.530273, 41.145570 ], [ 90.219727, 41.145570 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.142761, 42.855833 ], [ 79.642639, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.120544, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.190247, 49.066668 ], [ 87.025452, 48.922499 ], [ 86.599731, 48.549342 ], [ 85.767517, 48.456530 ], [ 85.720825, 47.452237 ], [ 85.163269, 47.000861 ], [ 83.180237, 47.329516 ], [ 82.457886, 45.539060 ], [ 81.947021, 45.317392 ], [ 79.966736, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.180969, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.642639, 42.496403 ], [ 79.142761, 42.855833 ], [ 78.750000, 42.884015 ], [ 78.530273, 42.900113 ], [ 78.530273, 49.066668 ], [ 87.190247, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.838440, 49.066668 ], [ 87.893372, 48.922499 ], [ 88.014221, 48.600225 ], [ 88.854675, 48.068903 ], [ 90.000000, 47.767022 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.120544, 42.124710 ], [ 80.260620, 42.350425 ], [ 80.180969, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.966736, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.539060 ], [ 83.180237, 47.329516 ], [ 85.163269, 47.000861 ], [ 85.720825, 47.452237 ], [ 85.767517, 48.456530 ], [ 86.599731, 48.549342 ], [ 87.025452, 48.922499 ], [ 87.190247, 49.066668 ], [ 87.838440, 49.066668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 42.900113 ], [ 78.750000, 42.884015 ], [ 79.142761, 42.855833 ], [ 79.642639, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.120544, 42.124710 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.530273, 41.568197 ], [ 78.530273, 42.900113 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 49.066668 ], [ 90.219727, 47.709762 ], [ 90.000000, 47.767022 ], [ 88.854675, 48.068903 ], [ 88.014221, 48.600225 ], [ 87.893372, 48.922499 ], [ 87.838440, 49.066668 ], [ 90.219727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.838440, 49.066668 ], [ 87.893372, 48.922499 ], [ 88.014221, 48.600225 ], [ 88.854675, 48.068903 ], [ 90.000000, 47.767022 ], [ 90.219727, 47.709762 ], [ 90.219727, 40.813809 ], [ 78.530273, 40.813809 ], [ 78.530273, 41.568197 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 80.120544, 42.124710 ], [ 80.260620, 42.350425 ], [ 80.180969, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.966736, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.539060 ], [ 83.180237, 47.329516 ], [ 85.163269, 47.000861 ], [ 85.720825, 47.452237 ], [ 85.767517, 48.456530 ], [ 86.599731, 48.549342 ], [ 87.025452, 48.922499 ], [ 87.190247, 49.066668 ], [ 87.838440, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 55.899956 ], [ 90.219727, 50.110011 ], [ 90.000000, 50.011269 ], [ 88.805237, 49.469909 ], [ 87.750549, 49.296472 ], [ 87.360535, 49.215803 ], [ 86.830444, 49.827353 ], [ 85.542297, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.416199, 50.312146 ], [ 83.935547, 50.889174 ], [ 83.383484, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.343730 ], [ 78.530273, 52.591369 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 52.591369 ], [ 78.750000, 52.343730 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.383484, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.416199, 50.312146 ], [ 85.116577, 50.117056 ], [ 85.542297, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.360535, 49.215803 ], [ 87.025452, 48.922499 ], [ 86.857910, 48.777913 ], [ 78.530273, 48.777913 ], [ 78.530273, 52.591369 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.750549, 49.296472 ], [ 87.948303, 48.777913 ], [ 86.857910, 48.777913 ], [ 87.025452, 48.922499 ], [ 87.360535, 49.215803 ], [ 87.750549, 49.296472 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 55.899956 ], [ 90.219727, 50.110011 ], [ 90.000000, 50.011269 ], [ 88.805237, 49.469909 ], [ 87.750549, 49.296472 ], [ 87.360535, 49.215803 ], [ 86.830444, 49.827353 ], [ 85.542297, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.416199, 50.312146 ], [ 83.935547, 50.889174 ], [ 83.383484, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.343730 ], [ 78.530273, 52.591369 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 50.110011 ], [ 90.219727, 48.777913 ], [ 87.948303, 48.777913 ], [ 87.750549, 49.296472 ], [ 88.805237, 49.469909 ], [ 90.000000, 50.011269 ], [ 90.219727, 50.110011 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.750549, 49.296472 ], [ 87.948303, 48.777913 ], [ 86.857910, 48.777913 ], [ 87.025452, 48.922499 ], [ 87.360535, 49.215803 ], [ 87.750549, 49.296472 ] ] ] } } ] } ] } , @@ -6178,30 +6082,30 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 22.146708 ], [ 101.469727, 21.192094 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.181335, 21.437730 ], [ 101.151123, 21.848753 ], [ 100.417786, 21.557839 ], [ 99.983826, 21.744194 ], [ 99.588318, 21.943046 ], [ 99.242249, 22.118722 ], [ 99.250488, 22.146708 ], [ 101.469727, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 92.892151, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.636719, 22.146708 ], [ 92.892151, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.636719, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.304382, 21.476073 ], [ 92.367554, 20.671336 ], [ 92.081909, 21.192094 ], [ 92.024231, 21.700817 ], [ 91.930847, 21.943046 ], [ 91.848450, 22.146708 ], [ 92.636719, 22.146708 ] ] ], [ [ [ 90.447693, 22.146708 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 22.146708 ], [ 90.447693, 22.146708 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.242249, 22.118722 ], [ 99.588318, 21.943046 ], [ 99.983826, 21.744194 ], [ 100.417786, 21.557839 ], [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 100.329895, 20.786931 ], [ 100.115662, 20.416717 ], [ 99.544373, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.707243 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.308029 ], [ 98.193054, 15.122507 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.269353 ], [ 99.195557, 12.803767 ], [ 99.588318, 11.891541 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.659973, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.429260, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.165833, 16.928078 ], [ 96.506653, 16.428182 ], [ 95.369568, 15.715595 ], [ 94.809265, 15.802825 ], [ 94.188538, 16.037895 ], [ 94.534607, 17.277219 ], [ 94.325867, 18.213698 ], [ 93.540344, 19.365567 ], [ 93.663940, 19.727928 ], [ 93.078918, 19.854561 ], [ 92.367554, 20.671336 ], [ 92.304382, 21.476073 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.892151, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 22.146708 ], [ 101.469727, 21.192094 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.181335, 21.437730 ], [ 101.151123, 21.848753 ], [ 100.417786, 21.557839 ], [ 99.983826, 21.744194 ], [ 99.588318, 21.943046 ], [ 99.242249, 22.118722 ], [ 99.250488, 22.146708 ], [ 101.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 100.607300, 19.508020 ], [ 100.549622, 20.110102 ], [ 100.115662, 20.416717 ], [ 100.329895, 20.786931 ], [ 101.181335, 21.437730 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.250488, 22.146708 ], [ 99.242249, 22.118722 ], [ 99.588318, 21.943046 ], [ 99.983826, 21.744194 ], [ 100.417786, 21.557839 ], [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 100.329895, 20.786931 ], [ 100.115662, 20.416717 ], [ 99.544373, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.707243 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.308029 ], [ 98.193054, 15.122507 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.269353 ], [ 99.195557, 12.803767 ], [ 99.588318, 11.891541 ], [ 99.165344, 11.178402 ], [ 99.039001, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.659973, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.429260, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.165833, 16.928078 ], [ 96.506653, 16.428182 ], [ 95.369568, 15.715595 ], [ 94.809265, 15.802825 ], [ 94.188538, 16.037895 ], [ 94.534607, 17.277219 ], [ 94.325867, 18.213698 ], [ 93.540344, 19.365567 ], [ 93.663940, 19.727928 ], [ 93.078918, 19.854561 ], [ 92.367554, 20.671336 ], [ 92.304382, 21.476073 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.892151, 22.146708 ], [ 99.250488, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.039001, 10.962764 ], [ 99.165344, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 100.607300, 19.508020 ], [ 100.549622, 20.110102 ], [ 100.115662, 20.416717 ], [ 100.329895, 20.786931 ], [ 101.181335, 21.437730 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 32.138409 ], [ 101.469727, 21.739091 ], [ 101.159363, 21.739091 ], [ 101.151123, 21.848753 ], [ 100.870972, 21.739091 ], [ 99.992065, 21.739091 ], [ 99.588318, 21.943046 ], [ 99.242249, 22.118722 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.142886 ], [ 98.659973, 24.064020 ], [ 97.605286, 23.898394 ], [ 97.723389, 25.083111 ], [ 98.670959, 25.918526 ], [ 98.712158, 26.743158 ], [ 98.681946, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.912903, 28.335813 ], [ 97.327881, 28.260844 ], [ 96.248474, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.116638, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.414001, 28.639979 ], [ 92.502136, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.040471 ], [ 90.730591, 28.064710 ], [ 90.016479, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.780273, 28.185823 ], [ 89.780273, 32.138409 ], [ 101.469727, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.116638, 29.453948 ], [ 96.586304, 28.830238 ], [ 96.248474, 28.410728 ], [ 97.327881, 28.260844 ], [ 97.402039, 27.882784 ], [ 97.053223, 27.698120 ], [ 97.132874, 27.083582 ], [ 96.418762, 27.264396 ], [ 95.125122, 26.573790 ], [ 95.155334, 26.002487 ], [ 94.603271, 25.162687 ], [ 94.553833, 24.674474 ], [ 94.106140, 23.850674 ], [ 93.326111, 24.079067 ], [ 93.287659, 23.044353 ], [ 93.059692, 22.702722 ], [ 93.166809, 22.278931 ], [ 92.672424, 22.042367 ], [ 92.145081, 23.626911 ], [ 91.870422, 23.624395 ], [ 91.705627, 22.986210 ], [ 91.159058, 23.503552 ], [ 91.466675, 24.071544 ], [ 91.914368, 24.129209 ], [ 92.375793, 24.976099 ], [ 91.799011, 25.147771 ], [ 90.873413, 25.132852 ], [ 90.000000, 25.257117 ], [ 89.920349, 25.269536 ], [ 89.832458, 25.965453 ], [ 89.780273, 25.970391 ], [ 89.780273, 26.728440 ], [ 90.000000, 26.782395 ], [ 90.373535, 26.875531 ], [ 91.216736, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.103882, 27.452228 ], [ 91.697388, 27.771051 ], [ 92.502136, 27.897349 ], [ 93.414001, 28.639979 ], [ 94.564819, 29.276816 ], [ 95.405273, 29.032158 ], [ 96.116638, 29.453948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.297126 ], [ 90.730591, 28.064710 ], [ 91.257935, 28.040471 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.452228 ], [ 92.032471, 26.838776 ], [ 91.216736, 26.809364 ], [ 90.373535, 26.875531 ], [ 90.000000, 26.782395 ], [ 89.780273, 26.728440 ], [ 89.780273, 28.185823 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.297126 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 25.970391 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.269536 ], [ 90.000000, 25.257117 ], [ 90.873413, 25.132852 ], [ 91.799011, 25.147771 ], [ 92.375793, 24.976099 ], [ 91.914368, 24.129209 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.705627, 22.986210 ], [ 91.870422, 23.624395 ], [ 92.145081, 23.626911 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.664185, 21.739091 ], [ 92.010498, 21.739091 ], [ 91.930847, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.497131, 22.804035 ], [ 90.587769, 22.393253 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.965972 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 25.970391 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 32.138409 ], [ 101.469727, 21.739091 ], [ 101.159363, 21.739091 ], [ 101.151123, 21.848753 ], [ 100.870972, 21.739091 ], [ 99.992065, 21.739091 ], [ 99.588318, 21.943046 ], [ 99.242249, 22.118722 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.142886 ], [ 98.659973, 24.064020 ], [ 97.605286, 23.898394 ], [ 97.723389, 25.083111 ], [ 98.670959, 25.918526 ], [ 98.712158, 26.743158 ], [ 98.681946, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.912903, 28.335813 ], [ 97.327881, 28.260844 ], [ 96.248474, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.116638, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.414001, 28.639979 ], [ 92.502136, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.040471 ], [ 90.730591, 28.064710 ], [ 90.016479, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.780273, 28.185823 ], [ 89.780273, 32.138409 ], [ 101.469727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.912903, 28.335813 ], [ 98.245239, 27.746746 ], [ 98.681946, 27.508271 ], [ 98.712158, 26.743158 ], [ 98.670959, 25.918526 ], [ 97.723389, 25.083111 ], [ 97.605286, 23.898394 ], [ 98.659973, 24.064020 ], [ 98.898926, 23.142886 ], [ 99.530640, 22.948277 ], [ 99.242249, 22.118722 ], [ 99.588318, 21.943046 ], [ 99.992065, 21.739091 ], [ 92.664185, 21.739091 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 93.166809, 22.278931 ], [ 93.059692, 22.702722 ], [ 93.287659, 23.044353 ], [ 93.326111, 24.079067 ], [ 94.106140, 23.850674 ], [ 94.553833, 24.674474 ], [ 94.603271, 25.162687 ], [ 95.155334, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.418762, 27.264396 ], [ 97.132874, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.402039, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.912903, 28.335813 ] ] ], [ [ [ 100.870972, 21.739091 ], [ 101.151123, 21.848753 ], [ 101.159363, 21.739091 ], [ 100.870972, 21.739091 ] ] ] ] } } ] } ] } @@ -6214,9 +6118,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 47.826064 ], [ 90.000000, 47.767022 ], [ 90.280151, 47.693126 ], [ 90.969543, 46.888355 ], [ 90.585022, 45.719604 ], [ 90.944824, 45.286482 ], [ 92.134094, 45.114238 ], [ 93.479919, 44.974514 ], [ 94.688416, 44.351350 ], [ 95.306396, 44.241264 ], [ 95.762329, 43.319183 ], [ 96.350098, 42.724821 ], [ 97.451477, 42.749029 ], [ 99.516907, 42.524748 ], [ 100.846252, 42.664261 ], [ 101.250000, 42.603642 ], [ 101.469727, 42.569264 ], [ 101.469727, 40.813809 ], [ 89.780273, 40.813809 ], [ 89.780273, 47.826064 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 49.066668 ], [ 101.469727, 42.569264 ], [ 101.250000, 42.603642 ], [ 100.846252, 42.664261 ], [ 99.516907, 42.524748 ], [ 97.451477, 42.749029 ], [ 96.350098, 42.724821 ], [ 95.762329, 43.319183 ], [ 95.306396, 44.241264 ], [ 94.688416, 44.351350 ], [ 93.479919, 44.974514 ], [ 92.134094, 45.114238 ], [ 90.944824, 45.286482 ], [ 90.585022, 45.719604 ], [ 90.969543, 46.888355 ], [ 90.280151, 47.693126 ], [ 90.000000, 47.767022 ], [ 89.780273, 47.826064 ], [ 89.780273, 49.066668 ], [ 101.469727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 47.826064 ], [ 90.000000, 47.767022 ], [ 90.280151, 47.693126 ], [ 90.969543, 46.888355 ], [ 90.585022, 45.719604 ], [ 90.944824, 45.286482 ], [ 92.134094, 45.114238 ], [ 93.479919, 44.974514 ], [ 94.688416, 44.351350 ], [ 95.306396, 44.241264 ], [ 95.762329, 43.319183 ], [ 96.350098, 42.724821 ], [ 97.451477, 42.749029 ], [ 99.516907, 42.524748 ], [ 100.846252, 42.664261 ], [ 101.250000, 42.603642 ], [ 101.469727, 42.569264 ], [ 101.469727, 40.813809 ], [ 89.780273, 40.813809 ], [ 89.780273, 47.826064 ] ] ] } } ] } ] } , @@ -6340,10 +6244,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 6.855532 ], [ 101.250000, 6.811898 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.813049, 5.810024 ], [ 101.250000, 5.708914 ], [ 101.153870, 5.692516 ], [ 101.074219, 6.206090 ], [ 101.030273, 6.227934 ], [ 101.030273, 6.855532 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.855286, 11.393879 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 107.221069, 10.363555 ], [ 106.405334, 9.530332 ], [ 105.158386, 8.600032 ], [ 104.795837, 9.240382 ], [ 105.075989, 9.917449 ], [ 104.334412, 10.487812 ], [ 105.199585, 10.889951 ], [ 106.248779, 10.962764 ], [ 105.935669, 11.393879 ], [ 108.855286, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.935669, 11.393879 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.889951 ], [ 104.334412, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.972107, 11.393879 ], [ 105.935669, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.719727, 3.052754 ], [ 112.719727, 1.472006 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 111.796875, 0.903588 ], [ 111.159668, 0.977736 ], [ 110.514221, 0.771766 ], [ 109.830322, 1.337464 ], [ 109.662781, 2.007341 ], [ 110.396118, 1.664195 ], [ 111.167908, 1.850874 ], [ 111.371155, 2.696148 ], [ 111.796875, 2.885437 ], [ 112.500000, 3.011613 ], [ 112.719727, 3.052754 ] ] ], [ [ [ 101.030273, 6.227934 ], [ 101.074219, 6.206090 ], [ 101.153870, 5.692516 ], [ 101.250000, 5.708914 ], [ 101.813049, 5.810024 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.126900 ], [ 102.961121, 5.525777 ], [ 103.381348, 4.855628 ], [ 103.439026, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.792168 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.230042, 1.293530 ], [ 103.518677, 1.227628 ], [ 102.573853, 1.966167 ], [ 101.390076, 2.761991 ], [ 101.274719, 3.269404 ], [ 101.250000, 3.296824 ], [ 101.030273, 3.551800 ], [ 101.030273, 6.227934 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.662781, 2.007341 ], [ 109.830322, 1.337464 ], [ 110.514221, 0.771766 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.903588 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.719727, 1.472006 ], [ 112.719727, -0.219726 ], [ 109.053040, -0.219726 ], [ 109.020081, 0.000000 ], [ 108.951416, 0.414730 ], [ 109.069519, 1.342956 ], [ 109.662781, 2.007341 ] ] ], [ [ [ 101.030273, 2.092430 ], [ 101.250000, 2.089685 ], [ 101.659241, 2.084196 ], [ 102.496948, 1.397872 ], [ 103.076477, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.677979, -0.219726 ], [ 101.030273, -0.219726 ], [ 101.030273, 2.092430 ] ] ] ] } } @@ -6356,13 +6260,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.802858 ], [ 101.151123, 21.848753 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.406311, 22.146708 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.675296 ], [ 103.202820, 20.766387 ], [ 104.436035, 20.758682 ], [ 104.823303, 19.885557 ], [ 104.183350, 19.624479 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.484291 ], [ 106.556396, 16.604610 ], [ 107.311707, 15.908508 ], [ 107.564392, 15.202037 ], [ 107.383118, 14.203151 ], [ 106.495972, 14.570293 ], [ 106.042786, 13.880746 ], [ 105.218811, 14.272369 ], [ 105.545654, 14.724417 ], [ 105.589600, 15.570128 ], [ 104.779358, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.239786 ], [ 103.200073, 18.310203 ], [ 102.999573, 17.960445 ], [ 102.411804, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 101.030273, 19.479540 ], [ 101.030273, 21.322640 ], [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.174168 ], [ 101.700439, 21.943046 ], [ 101.675720, 22.146708 ], [ 102.406311, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.326695 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.570293 ], [ 107.383118, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.348633, 13.394963 ], [ 102.988586, 14.224451 ], [ 104.282227, 14.416060 ], [ 105.218811, 14.272369 ], [ 106.042786, 13.880746 ], [ 106.495972, 14.570293 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.406311, 22.146708 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.675296 ], [ 103.202820, 20.766387 ], [ 104.436035, 20.758682 ], [ 104.823303, 19.885557 ], [ 104.183350, 19.624479 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.484291 ], [ 106.556396, 16.604610 ], [ 107.311707, 15.908508 ], [ 107.564392, 15.202037 ], [ 107.383118, 14.203151 ], [ 106.495972, 14.570293 ], [ 106.042786, 13.880746 ], [ 105.218811, 14.272369 ], [ 105.545654, 14.724417 ], [ 105.589600, 15.570128 ], [ 104.779358, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.955383, 18.239786 ], [ 103.200073, 18.310203 ], [ 102.999573, 17.960445 ], [ 102.411804, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.250000, 19.326695 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 101.030273, 19.479540 ], [ 101.030273, 21.322640 ], [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.802063, 21.174168 ], [ 101.700439, 21.943046 ], [ 101.675720, 22.146708 ], [ 102.406311, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.652527, 22.146708 ], [ 106.888733, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.652527, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.570293 ], [ 107.383118, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.348633, 13.394963 ], [ 102.988586, 14.224451 ], [ 104.282227, 14.416060 ], [ 105.218811, 14.272369 ], [ 106.042786, 13.880746 ], [ 106.495972, 14.570293 ] ] ] } } ] } ] } , @@ -6386,9 +6290,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.873779, 45.102608 ], [ 112.436829, 45.011419 ], [ 112.500000, 44.999767 ], [ 112.719727, 44.955081 ], [ 112.719727, 40.813809 ], [ 101.030273, 40.813809 ], [ 101.030273, 42.635979 ], [ 101.250000, 42.603642 ], [ 101.832275, 42.514626 ], [ 103.312683, 41.908409 ], [ 104.521179, 41.908409 ], [ 104.966125, 41.596959 ], [ 106.130676, 42.134895 ], [ 107.745667, 42.482226 ], [ 109.242554, 42.518675 ], [ 110.412598, 42.871938 ], [ 111.129456, 43.407043 ], [ 111.829834, 43.743321 ], [ 111.667786, 44.073774 ], [ 111.349182, 44.457310 ], [ 111.873779, 45.102608 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 49.066668 ], [ 112.719727, 44.955081 ], [ 112.500000, 44.999767 ], [ 112.436829, 45.011419 ], [ 111.873779, 45.102608 ], [ 111.349182, 44.457310 ], [ 111.667786, 44.073774 ], [ 111.829834, 43.743321 ], [ 111.129456, 43.407043 ], [ 110.412598, 42.871938 ], [ 109.242554, 42.518675 ], [ 107.745667, 42.482226 ], [ 106.130676, 42.134895 ], [ 104.966125, 41.596959 ], [ 104.521179, 41.908409 ], [ 103.312683, 41.908409 ], [ 101.832275, 42.514626 ], [ 101.250000, 42.603642 ], [ 101.030273, 42.635979 ], [ 101.030273, 49.066668 ], [ 112.719727, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.873779, 45.102608 ], [ 112.436829, 45.011419 ], [ 112.500000, 44.999767 ], [ 112.719727, 44.955081 ], [ 112.719727, 40.813809 ], [ 101.030273, 40.813809 ], [ 101.030273, 42.635979 ], [ 101.250000, 42.603642 ], [ 101.832275, 42.514626 ], [ 103.312683, 41.908409 ], [ 104.521179, 41.908409 ], [ 104.966125, 41.596959 ], [ 106.130676, 42.134895 ], [ 107.745667, 42.482226 ], [ 109.242554, 42.518675 ], [ 110.412598, 42.871938 ], [ 111.129456, 43.407043 ], [ 111.829834, 43.743321 ], [ 111.667786, 44.073774 ], [ 111.349182, 44.457310 ], [ 111.873779, 45.102608 ] ] ] } } ] } ] } , @@ -6522,12 +6426,12 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.929153 ], [ 117.644348, 6.421754 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.182434, 5.408211 ], [ 119.111023, 5.017075 ], [ 118.440857, 4.967824 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.305330 ], [ 115.864563, 4.305330 ], [ 115.518494, 3.167940 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.216644 ], [ 112.859802, 1.496717 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.011613 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.870300, 4.349150 ], [ 115.348206, 4.316285 ], [ 115.449829, 5.446491 ], [ 116.221619, 6.143286 ], [ 116.724243, 6.923700 ], [ 117.130737, 6.929153 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 6.934606 ], [ 123.969727, 6.806444 ], [ 123.939514, 6.885527 ], [ 123.969727, 6.934606 ] ] ], [ [ [ 123.969727, 7.563992 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.296814, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.190826 ], [ 122.313538, 8.034754 ], [ 122.942505, 8.317495 ], [ 123.486328, 8.692354 ], [ 123.750000, 8.358258 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.563992 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.266276 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.310547, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.500061, 10.941192 ], [ 123.338013, 10.266276 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.512024, 11.369646 ], [ 119.553223, 11.178402 ], [ 119.690552, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.316280 ], [ 117.174683, 8.366410 ], [ 117.663574, 9.066839 ], [ 118.385925, 9.684691 ], [ 118.987427, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.512024, 11.369646 ] ] ], [ [ [ 123.110046, 11.393879 ], [ 123.101807, 11.178402 ], [ 123.101807, 11.164929 ], [ 122.637634, 10.741572 ], [ 122.003174, 10.441897 ], [ 121.967468, 10.906133 ], [ 122.005920, 11.178402 ], [ 122.036133, 11.393879 ], [ 123.110046, 11.393879 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.911827 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.775696, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.482300, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } ] } ] } @@ -6558,9 +6462,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 26, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 49.066668 ], [ 123.969727, 40.813809 ], [ 121.775208, 40.813809 ], [ 121.640625, 40.946714 ], [ 121.313782, 40.813809 ], [ 112.280273, 40.813809 ], [ 112.280273, 45.036656 ], [ 112.500000, 44.999767 ], [ 113.464050, 44.809122 ], [ 114.461060, 45.340563 ], [ 115.985413, 45.727274 ], [ 116.718750, 46.388622 ], [ 117.421875, 46.672056 ], [ 118.874817, 46.805700 ], [ 119.663086, 46.692783 ], [ 119.772949, 47.047669 ], [ 118.866577, 47.746711 ], [ 118.064575, 48.067068 ], [ 117.295532, 47.696823 ], [ 116.309509, 47.853717 ], [ 115.743713, 47.726392 ], [ 115.485535, 48.134934 ], [ 116.040344, 48.922499 ], [ 116.141968, 49.066668 ], [ 123.969727, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.141968, 49.066668 ], [ 116.040344, 48.922499 ], [ 115.485535, 48.134934 ], [ 115.743713, 47.726392 ], [ 116.309509, 47.853717 ], [ 117.295532, 47.696823 ], [ 118.064575, 48.067068 ], [ 118.866577, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.692783 ], [ 118.874817, 46.805700 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.388622 ], [ 115.985413, 45.727274 ], [ 114.461060, 45.340563 ], [ 113.464050, 44.809122 ], [ 112.500000, 44.999767 ], [ 112.280273, 45.036656 ], [ 112.280273, 49.066668 ], [ 116.141968, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 49.066668 ], [ 123.969727, 40.813809 ], [ 121.775208, 40.813809 ], [ 121.640625, 40.946714 ], [ 121.313782, 40.813809 ], [ 112.280273, 40.813809 ], [ 112.280273, 45.036656 ], [ 112.500000, 44.999767 ], [ 113.464050, 44.809122 ], [ 114.461060, 45.340563 ], [ 115.985413, 45.727274 ], [ 116.718750, 46.388622 ], [ 117.421875, 46.672056 ], [ 118.874817, 46.805700 ], [ 119.663086, 46.692783 ], [ 119.772949, 47.047669 ], [ 118.866577, 47.746711 ], [ 118.064575, 48.067068 ], [ 117.295532, 47.696823 ], [ 116.309509, 47.853717 ], [ 115.743713, 47.726392 ], [ 115.485535, 48.134934 ], [ 116.040344, 48.922499 ], [ 116.141968, 49.066668 ], [ 123.969727, 49.066668 ] ] ] } } ] } ] } , @@ -6568,9 +6472,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.969727, 55.899956 ], [ 123.969727, 53.380052 ], [ 123.750000, 53.422628 ], [ 123.571472, 53.458620 ], [ 122.244873, 53.432447 ], [ 121.003418, 53.252069 ], [ 120.176697, 52.754581 ], [ 120.726013, 52.516221 ], [ 120.737000, 51.964577 ], [ 120.182190, 51.643590 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.143466 ], [ 117.880554, 49.510944 ], [ 116.677551, 49.889326 ], [ 115.485535, 49.804314 ], [ 114.960938, 50.139946 ], [ 114.362183, 50.248961 ], [ 112.898254, 49.543034 ], [ 112.500000, 49.493107 ], [ 112.280273, 49.466339 ], [ 112.280273, 55.899956 ], [ 123.969727, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.571472, 53.458620 ], [ 123.750000, 53.422628 ], [ 123.969727, 53.380052 ], [ 123.969727, 48.777913 ], [ 115.938721, 48.777913 ], [ 116.040344, 48.922499 ], [ 116.191406, 49.135003 ], [ 116.677551, 49.889326 ], [ 117.880554, 49.510944 ], [ 119.289551, 50.143466 ], [ 119.278564, 50.583237 ], [ 120.182190, 51.643590 ], [ 120.737000, 51.964577 ], [ 120.726013, 52.516221 ], [ 120.176697, 52.754581 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.571472, 53.458620 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 114.362183, 50.248961 ], [ 114.960938, 50.139946 ], [ 115.485535, 49.804314 ], [ 116.677551, 49.889326 ], [ 116.191406, 49.135003 ], [ 116.040344, 48.922499 ], [ 115.938721, 48.777913 ], [ 112.280273, 48.777913 ], [ 112.280273, 49.466339 ], [ 112.500000, 49.493107 ], [ 112.898254, 49.543034 ], [ 114.362183, 50.248961 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.571472, 53.458620 ], [ 123.750000, 53.422628 ], [ 123.969727, 53.380052 ], [ 123.969727, 48.777913 ], [ 115.938721, 48.777913 ], [ 116.040344, 48.922499 ], [ 116.191406, 49.135003 ], [ 116.677551, 49.889326 ], [ 117.880554, 49.510944 ], [ 119.289551, 50.143466 ], [ 119.278564, 50.583237 ], [ 120.182190, 51.643590 ], [ 120.737000, 51.964577 ], [ 120.726013, 52.516221 ], [ 120.176697, 52.754581 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.432447 ], [ 123.571472, 53.458620 ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json index a5079ed00..11d73e75a 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-fraction-as-needed.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json index 32d0578ed..cc37a5c8a 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--drop-smallest-as-needed.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json index bb126a848..cef246325 100644 --- a/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json +++ b/tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json.check.mbtiles", @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-ae_-zg_-M5000_--force-feature-limit.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":324,\"tile_size_desired\":39239},{\"dropped_as_needed\":160,\"tiny_polygons\":2,\"tile_size_desired\":25163},{\"dropped_as_needed\":124,\"tiny_polygons\":2,\"tile_size_desired\":21214},{\"dropped_as_needed\":80,\"tile_size_desired\":10758},{\"dropped_as_needed\":12,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", +"strategies": "[{\"dropped_as_needed\":165,\"tile_size_desired\":39239},{\"dropped_as_needed\":160,\"tiny_polygons\":1,\"tile_size_desired\":25163},{\"dropped_as_needed\":124,\"tiny_polygons\":1,\"tile_size_desired\":21214},{\"dropped_as_needed\":80,\"tile_size_desired\":10758},{\"dropped_as_needed\":12,\"tile_size_desired\":6601},{\"tiny_polygons\":2}]", "tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" diff --git a/tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json b/tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json index a17b02f41..66bcfcfd4 100644 --- a/tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json +++ b/tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-110.039063,26.980829,-92.021484,51.998410", "center": "-92.021484,26.980829,0", "description": "tests/ne_110m_admin_0_countries/out/-z0_--clip-bounding-box_-110,27,-92,52.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z0_--order-largest-first.json b/tests/ne_110m_admin_0_countries/out/-z0_--order-largest-first.json index cfe118274..2850e547a 100644 --- a/tests/ne_110m_admin_0_countries/out/-z0_--order-largest-first.json +++ b/tests/ne_110m_admin_0_countries/out/-z0_--order-largest-first.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-z0_--order-largest-first.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z0_--order-smallest-first.json b/tests/ne_110m_admin_0_countries/out/-z0_--order-smallest-first.json index 21be1d4af..4df61fea5 100644 --- a/tests/ne_110m_admin_0_countries/out/-z0_--order-smallest-first.json +++ b/tests/ne_110m_admin_0_countries/out/-z0_--order-smallest-first.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-z0_--order-smallest-first.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_100.json b/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_100.json index 6bbeb7deb..5a5f36ed5 100644 --- a/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_100.json +++ b/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_100.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_100.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--order-largest-first.json b/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--order-largest-first.json index 266e6cac5..5770fbf48 100644 --- a/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--order-largest-first.json +++ b/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--order-largest-first.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--order-largest-first.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--simplification_50.json b/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--simplification_50.json index 353d71e7e..03c5b3ce1 100644 --- a/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--simplification_50.json +++ b/tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--simplification_50.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-z0_--tiny-polygon-size_50_--simplification_50.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z1_-yname_--no-simplification-of-shared-nodes.json b/tests/ne_110m_admin_0_countries/out/-z1_-yname_--no-simplification-of-shared-nodes.json index dc941b531..dce95bbd4 100644 --- a/tests/ne_110m_admin_0_countries/out/-z1_-yname_--no-simplification-of-shared-nodes.json +++ b/tests/ne_110m_admin_0_countries/out/-z1_-yname_--no-simplification-of-shared-nodes.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "90.000000,42.525564,1", "description": "tests/ne_110m_admin_0_countries/out/-z1_-yname_--no-simplification-of-shared-nodes.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z2_--convert-polygons-to-label-points.json b/tests/ne_110m_admin_0_countries/out/-z2_--convert-polygons-to-label-points.json index 98e9e8814..01201ee70 100644 --- a/tests/ne_110m_admin_0_countries/out/-z2_--convert-polygons-to-label-points.json +++ b/tests/ne_110m_admin_0_countries/out/-z2_--convert-polygons-to-label-points.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "45.000000,33.256630,2", "description": "tests/ne_110m_admin_0_countries/out/-z2_--convert-polygons-to-label-points.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z3_-ai.json b/tests/ne_110m_admin_0_countries/out/-z3_-ai.json index d230af206..dd3ae3597 100644 --- a/tests/ne_110m_admin_0_countries/out/-z3_-ai.json +++ b/tests/ne_110m_admin_0_countries/out/-z3_-ai.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "22.500000,20.489949,3", "description": "tests/ne_110m_admin_0_countries/out/-z3_-ai.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json index 193085b35..e29cb53da 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json index 607e9531a..a906eea36 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json.check.mbtiles", @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z4_-yname_--drop-polygons.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":172},{\"dropped_by_rate\":203},{\"dropped_by_rate\":187},{\"dropped_by_rate\":168},{}]", +"strategies": "[{\"dropped_by_rate\":172},{\"dropped_by_rate\":203},{\"dropped_by_rate\":183,\"tiny_polygons\":1},{\"dropped_by_rate\":148},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,13 +17,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.830078, 20.303418 ], [ -155.214844, 19.973349 ], [ -154.775391, 19.476950 ], [ -155.654297, 18.895893 ], [ -155.917969, 19.062118 ], [ -156.093750, 19.725342 ], [ -155.830078, 19.973349 ], [ -155.830078, 20.303418 ] ] ], [ [ [ -156.621094, 21.043491 ], [ -156.005859, 20.797201 ], [ -156.445312, 20.550509 ], [ -156.708984, 20.961440 ], [ -156.621094, 21.043491 ] ] ], [ [ [ -156.796875, 21.207459 ], [ -156.796875, 21.043491 ], [ -157.324219, 21.125498 ], [ -157.236328, 21.207459 ], [ -156.796875, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.675781, 21.289374 ], [ -158.115234, 21.289374 ], [ -158.291016, 21.616579 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.609375, 22.268764 ], [ -159.345703, 22.187405 ], [ -159.345703, 21.943046 ], [ -159.433594, 21.861499 ], [ -159.785156, 22.024546 ], [ -159.609375, 22.268764 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.864715 ], [ -94.306641, 48.690960 ], [ -92.636719, 48.458352 ], [ -91.669922, 48.166085 ], [ -90.791016, 48.283193 ], [ -89.560547, 47.989922 ], [ -89.296875, 47.989922 ], [ -88.417969, 48.283193 ], [ -84.902344, 46.920255 ], [ -84.814453, 46.619261 ], [ -84.550781, 46.558860 ], [ -84.638672, 46.437857 ], [ -84.375000, 46.377254 ], [ -84.111328, 46.498392 ], [ -84.111328, 46.255847 ], [ -83.847656, 46.134170 ], [ -83.583984, 46.134170 ], [ -83.496094, 46.012224 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.177734, 43.580391 ], [ -82.441406, 43.004647 ], [ -83.144531, 42.098222 ], [ -83.056641, 41.836828 ], [ -82.705078, 41.705729 ], [ -82.441406, 41.705729 ], [ -81.298828, 42.228517 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.189453, 43.452919 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -76.464844, 44.024422 ], [ -75.322266, 44.840291 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -71.367188, 45.274886 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.890008 ], [ -69.960938, 46.679594 ], [ -69.257812, 47.457809 ], [ -68.906250, 47.159840 ], [ -68.203125, 47.338823 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.777936 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.875964 ], [ -70.839844, 42.358544 ], [ -70.488281, 41.771312 ], [ -70.048828, 41.771312 ], [ -70.224609, 42.163403 ], [ -69.873047, 41.902277 ], [ -69.960938, 41.640078 ], [ -72.861328, 41.244772 ], [ -73.740234, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.982422, 40.913513 ], [ -73.300781, 40.647304 ], [ -74.003906, 40.647304 ], [ -73.916016, 40.780541 ], [ -74.267578, 40.446947 ], [ -73.916016, 40.446947 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.959409 ], [ -74.970703, 39.164141 ], [ -75.498047, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.754083 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.230328 ], [ -75.761719, 37.926868 ], [ -76.201172, 38.341656 ], [ -76.376953, 39.164141 ], [ -76.552734, 38.685510 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.203655 ], [ -76.289062, 37.926868 ], [ -76.289062, 36.949892 ], [ -75.937500, 36.879621 ], [ -75.761719, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.431641, 34.524661 ], [ -78.046875, 33.943360 ], [ -78.574219, 33.870416 ], [ -79.101562, 33.504759 ], [ -79.189453, 33.137551 ], [ -80.332031, 32.472695 ], [ -81.298828, 31.428663 ], [ -81.474609, 30.751278 ], [ -81.298828, 30.069094 ], [ -80.507812, 28.459033 ], [ -80.507812, 28.071980 ], [ -80.068359, 26.902477 ], [ -80.156250, 25.799891 ], [ -80.419922, 25.165173 ], [ -80.683594, 25.085599 ], [ -81.210938, 25.165173 ], [ -81.298828, 25.641526 ], [ -81.738281, 25.878994 ], [ -82.880859, 27.916767 ], [ -82.617188, 28.536275 ], [ -82.968750, 29.075375 ], [ -83.671875, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.078125, 29.611670 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.372875 ], [ -87.539062, 30.297018 ], [ -88.417969, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.916852 ], [ -89.384766, 29.458731 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.736328, 29.305561 ], [ -90.175781, 29.152161 ], [ -90.878906, 29.152161 ], [ -91.582031, 29.688053 ], [ -92.460938, 29.535230 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -95.625000, 28.767659 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.667096 ], [ -97.119141, 25.878994 ], [ -97.558594, 25.799891 ], [ -99.052734, 26.352498 ], [ -99.492188, 27.527758 ], [ -100.107422, 28.071980 ], [ -100.986328, 29.382175 ], [ -101.689453, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -104.414062, 29.535230 ], [ -105.029297, 30.675715 ], [ -106.523438, 31.728167 ], [ -108.193359, 31.728167 ], [ -108.281250, 31.353637 ], [ -111.005859, 31.353637 ], [ -114.785156, 32.546813 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -117.333984, 33.063924 ], [ -117.949219, 33.651208 ], [ -118.388672, 33.724340 ], [ -118.476562, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.379713 ], [ -120.322266, 34.452218 ], [ -120.585938, 34.597042 ], [ -120.761719, 35.173808 ], [ -121.728516, 36.173357 ], [ -122.519531, 37.579413 ], [ -122.519531, 37.788081 ], [ -123.750000, 38.959409 ], [ -123.837891, 39.774769 ], [ -124.365234, 40.313043 ], [ -124.189453, 41.112469 ], [ -124.189453, 41.967659 ], [ -124.541016, 42.747012 ], [ -124.101562, 43.707594 ], [ -123.925781, 45.521744 ], [ -124.101562, 46.860191 ], [ -124.716797, 48.166085 ], [ -124.541016, 48.400032 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.338823 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -95.185547, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -147.568359, 70.199994 ], [ -145.722656, 70.110485 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -142.031250, 69.839622 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.283408 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.977005 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.445075 ], [ -135.439453, 59.800634 ], [ -134.912109, 59.265881 ], [ -133.330078, 58.401712 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.826008 ], [ -131.044922, 55.178868 ], [ -131.923828, 55.478853 ], [ -132.275391, 56.365250 ], [ -133.505859, 57.183902 ], [ -134.033203, 58.124320 ], [ -136.582031, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 59.977005 ], [ -145.898438, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -149.765625, 59.712097 ], [ -150.644531, 59.355596 ], [ -151.699219, 59.175928 ], [ -151.875000, 59.756395 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -156.269531, 57.421294 ], [ -156.533203, 56.992883 ], [ -158.115234, 56.462490 ], [ -158.466797, 55.973798 ], [ -159.609375, 55.578345 ], [ -160.312500, 55.627996 ], [ -163.037109, 54.673831 ], [ -164.794922, 54.418930 ], [ -164.970703, 54.572062 ], [ -162.861328, 55.329144 ], [ -161.806641, 55.875311 ], [ -160.576172, 56.022948 ], [ -160.048828, 56.413901 ], [ -158.642578, 56.992883 ], [ -158.466797, 57.231503 ], [ -157.763672, 57.562995 ], [ -157.587891, 58.309489 ], [ -157.060547, 58.904646 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.768200 ], [ -159.082031, 58.401712 ], [ -159.697266, 58.950008 ], [ -159.960938, 58.585436 ], [ -160.312500, 59.085739 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -164.619141, 60.283408 ], [ -165.322266, 60.500525 ], [ -165.322266, 61.058285 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.882812, 62.633770 ], [ -164.531250, 63.154355 ], [ -163.740234, 63.233627 ], [ -163.037109, 63.074866 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.470145 ], [ -160.751953, 63.782486 ], [ -160.927734, 64.206377 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -161.367188, 64.774125 ], [ -162.421875, 64.548440 ], [ -162.773438, 64.320872 ], [ -163.564453, 64.548440 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -166.816406, 65.072130 ], [ -168.134766, 65.658275 ], [ -166.728516, 66.089364 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -162.509766, 66.722541 ], [ -163.740234, 67.101656 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.125000, 69.380313 ], [ -162.949219, 69.869892 ], [ -161.894531, 70.318738 ], [ -160.927734, 70.436799 ], [ -158.994141, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ], [ [ [ -153.193359, 57.984808 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.610107 ], [ -153.017578, 57.136239 ], [ -153.984375, 56.752723 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.193359, 57.984808 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.704722 ], [ -169.716797, 63.430860 ], [ -168.662109, 63.312683 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.995158 ], [ -170.683594, 63.391522 ], [ -171.562500, 63.312683 ], [ -171.826172, 63.391522 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.370429 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.888937 ], [ -166.201172, 59.756395 ], [ -167.431641, 60.196156 ], [ -166.464844, 60.370429 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.009766, 51.454007 ], [ 5.625000, 51.013755 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.064192 ], [ 5.712891, 49.553726 ], [ 4.833984, 50.007739 ], [ 4.306641, 49.894634 ], [ 3.164062, 50.792047 ], [ 2.636719, 50.792047 ], [ 2.548828, 51.124213 ], [ 3.339844, 51.344339 ], [ 4.042969, 51.289406 ], [ 5.009766, 51.454007 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ -0.087891, 10.746969 ], [ 0.351562, 10.228437 ], [ 0.439453, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.527344, 7.449624 ], [ 0.615234, 6.926427 ], [ 1.054688, 5.965754 ], [ -1.933594, 4.740675 ], [ -2.812500, 5.003394 ], [ -2.812500, 5.353521 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.900391, 10.919618 ], [ -0.791016, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 11.074219, 37.090240 ], [ 11.074219, 36.879621 ], [ 10.634766, 36.385913 ], [ 10.634766, 35.960223 ], [ 10.898438, 35.675147 ], [ 10.810547, 34.813803 ], [ 10.195312, 34.307144 ], [ 10.371094, 33.797409 ], [ 10.898438, 33.797409 ], [ 11.074219, 33.284620 ], [ 11.513672, 33.137551 ], [ 11.425781, 32.398516 ], [ 9.931641, 31.353637 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.524413 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.472695 ], [ 8.437500, 32.768800 ], [ 7.646484, 33.358062 ], [ 7.558594, 34.089061 ], [ 8.173828, 34.669359 ], [ 8.349609, 35.460670 ], [ 8.261719, 36.456636 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.321911 ], [ 34.365234, 51.781436 ], [ 34.101562, 51.563412 ], [ 34.189453, 51.234407 ], [ 35.068359, 51.179343 ], [ 35.419922, 50.792047 ], [ 35.332031, 50.569283 ], [ 36.650391, 50.233152 ], [ 37.353516, 50.401515 ], [ 38.056641, 49.894634 ], [ 38.583984, 49.951220 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.325122 ], [ 39.638672, 48.806863 ], [ 39.902344, 48.224673 ], [ 39.726562, 47.872144 ], [ 38.759766, 47.813155 ], [ 38.232422, 47.517201 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.040182 ], [ 36.738281, 46.679594 ], [ 35.859375, 46.619261 ], [ 34.980469, 46.255847 ], [ 34.980469, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.562500, 45.460131 ], [ 36.298828, 45.089036 ], [ 35.244141, 44.964798 ], [ 33.925781, 44.339565 ], [ 33.310547, 44.590467 ], [ 33.574219, 45.026950 ], [ 32.431641, 45.336702 ], [ 32.607422, 45.521744 ], [ 33.574219, 45.828799 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.316584 ], [ 31.640625, 46.679594 ], [ 30.761719, 46.558860 ], [ 30.410156, 46.012224 ], [ 29.619141, 45.274886 ], [ 29.179688, 45.460131 ], [ 28.652344, 45.274886 ], [ 28.212891, 45.460131 ], [ 28.476562, 45.583290 ], [ 28.916016, 46.255847 ], [ 28.828125, 46.437857 ], [ 29.091797, 46.498392 ], [ 29.179688, 46.377254 ], [ 30.058594, 46.437857 ], [ 29.882812, 46.498392 ], [ 29.882812, 46.679594 ], [ 29.531250, 46.920255 ], [ 29.443359, 47.338823 ], [ 29.091797, 47.517201 ], [ 29.091797, 47.872144 ], [ 28.652344, 48.107431 ], [ 28.300781, 48.166085 ], [ 27.509766, 48.458352 ], [ 26.894531, 48.341646 ], [ 26.630859, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.224609, 47.872144 ], [ 24.873047, 47.754098 ], [ 24.433594, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.166085 ], [ 22.060547, 48.400032 ], [ 22.587891, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.466797, 50.289339 ], [ 23.906250, 50.401515 ], [ 23.994141, 50.680797 ], [ 23.554688, 51.563412 ], [ 23.994141, 51.618017 ], [ 24.521484, 51.890054 ], [ 26.367188, 51.835778 ], [ 27.421875, 51.563412 ], [ 28.212891, 51.563412 ], [ 28.652344, 51.399206 ], [ 29.003906, 51.618017 ], [ 29.267578, 51.344339 ], [ 30.146484, 51.399206 ], [ 30.585938, 51.344339 ], [ 30.585938, 51.835778 ], [ 30.937500, 52.052490 ], [ 32.167969, 52.052490 ], [ 32.431641, 52.268157 ], [ 32.695312, 52.214339 ], [ 33.750000, 52.321911 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.537109, 9.188870 ], [ 49.482422, 6.839170 ], [ 48.603516, 5.353521 ], [ 46.582031, 2.811371 ], [ 43.154297, 0.263671 ], [ 42.011719, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.214943 ], [ 42.802734, 4.214943 ], [ 43.681641, 4.915833 ], [ 45.000000, 5.003394 ], [ 47.812500, 7.972198 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.152344, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.379110 ], [ 70.839844, 55.178868 ], [ 71.191406, 54.110943 ], [ 72.246094, 54.367759 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.488046 ], [ 74.355469, 53.540307 ], [ 76.904297, 54.470038 ], [ 76.552734, 54.162434 ], [ 77.783203, 53.383328 ], [ 80.068359, 50.847573 ], [ 80.595703, 51.399206 ], [ 81.914062, 50.792047 ], [ 83.408203, 51.069017 ], [ 83.935547, 50.903033 ], [ 84.462891, 50.289339 ], [ 85.078125, 50.120578 ], [ 85.517578, 49.667628 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 86.572266, 48.574790 ], [ 85.781250, 48.458352 ], [ 85.693359, 47.457809 ], [ 85.166016, 46.980252 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.521744 ], [ 81.914062, 45.336702 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.197167 ], [ 80.156250, 42.940339 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.488302 ], [ 79.101562, 42.875964 ], [ 76.025391, 43.004647 ], [ 75.673828, 42.875964 ], [ 74.179688, 43.325178 ], [ 73.652344, 43.068888 ], [ 73.476562, 42.488302 ], [ 71.806641, 42.811522 ], [ 71.191406, 42.682435 ], [ 70.927734, 42.293564 ], [ 70.400391, 42.098222 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.647304 ], [ 68.291016, 40.647304 ], [ 68.027344, 41.112469 ], [ 66.708984, 41.178654 ], [ 66.533203, 41.967659 ], [ 66.005859, 41.967659 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.707594 ], [ 62.050781, 43.516689 ], [ 61.083984, 44.402392 ], [ 58.535156, 45.583290 ], [ 55.898438, 44.964798 ], [ 55.986328, 41.310824 ], [ 55.458984, 41.244772 ], [ 54.755859, 42.032974 ], [ 54.052734, 42.293564 ], [ 52.910156, 42.098222 ], [ 52.470703, 41.771312 ], [ 52.470703, 42.032974 ], [ 52.734375, 42.423457 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.273438, 44.590467 ], [ 51.240234, 44.527843 ], [ 51.328125, 45.274886 ], [ 52.207031, 45.398450 ], [ 53.085938, 45.274886 ], [ 53.261719, 46.255847 ], [ 53.085938, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.152344, 47.040182 ], [ 50.009766, 46.619261 ], [ 49.130859, 46.377254 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.100045 ], [ 48.076172, 47.754098 ], [ 47.285156, 47.694974 ], [ 46.494141, 48.400032 ], [ 47.021484, 49.152970 ], [ 46.757812, 49.382373 ], [ 47.548828, 50.457504 ], [ 48.603516, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.800781, 51.672555 ], [ 52.294922, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.677734, 50.569283 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.611328, 51.289406 ], [ 59.941406, 51.944265 ], [ 60.908203, 52.429222 ], [ 60.732422, 52.696361 ], [ 61.699219, 52.961875 ], [ 60.996094, 53.644638 ], [ 61.435547, 54.007769 ], [ 65.214844, 54.367759 ], [ 65.654297, 54.622978 ], [ 68.203125, 54.977614 ], [ 69.082031, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.972741 ], [ 14.062500, -17.392579 ], [ 18.281250, -17.308688 ], [ 18.984375, -17.811456 ], [ 21.357422, -17.895114 ], [ 23.994141, -17.308688 ], [ 24.697266, -17.392579 ], [ 25.048828, -17.560247 ], [ 23.554688, -18.312811 ], [ 23.203125, -17.895114 ], [ 21.621094, -18.229351 ], [ 20.917969, -18.229351 ], [ 20.917969, -21.779905 ], [ 19.863281, -21.861499 ], [ 19.863281, -28.459033 ], [ 18.984375, -28.998532 ], [ 18.457031, -29.075375 ], [ 17.402344, -28.767659 ], [ 17.226562, -28.381735 ], [ 16.787109, -28.071980 ], [ 16.347656, -28.613459 ], [ 15.644531, -27.839076 ], [ 15.205078, -27.059126 ], [ 14.765625, -25.403585 ], [ 14.414062, -23.885838 ], [ 14.238281, -22.105999 ], [ 13.359375, -20.879343 ], [ 12.568359, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.777344, -17.308688 ], [ 12.216797, -17.140790 ], [ 12.832031, -16.972741 ], [ 13.447266, -16.972741 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 32.167969, -8.928487 ], [ 33.222656, -9.709057 ], [ 33.486328, -10.487812 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.468760 ], [ 32.958984, -12.811801 ], [ 32.695312, -13.752725 ], [ 33.222656, -14.008696 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.538376 ], [ 29.531250, -15.623037 ], [ 28.916016, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.070312, -17.978733 ], [ 25.224609, -17.727759 ], [ 24.697266, -17.392579 ], [ 23.994141, -17.308688 ], [ 23.203125, -17.560247 ], [ 21.884766, -16.045813 ], [ 21.972656, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.695273 ], [ 23.994141, -11.264612 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.919618 ], [ 24.345703, -11.264612 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.953349 ], [ 27.158203, -11.609193 ], [ 27.421875, -12.125264 ], [ 28.125000, -12.297068 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.211180 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.652344, -9.622414 ], [ 28.476562, -9.188870 ], [ 28.740234, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } ] } ] } , @@ -37,11 +37,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.062118 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.049805, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.550509 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.861499 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -94.833984, 49.382373 ], [ -94.658203, 48.835797 ], [ -94.306641, 48.661943 ], [ -92.592773, 48.458352 ], [ -91.625977, 48.136767 ], [ -90.834961, 48.253941 ], [ -89.604492, 48.019324 ], [ -89.252930, 48.019324 ], [ -88.374023, 48.312428 ], [ -84.858398, 46.890232 ], [ -84.770508, 46.649436 ], [ -84.550781, 46.528635 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.155273, 46.498392 ], [ -84.067383, 46.286224 ], [ -83.891602, 46.103709 ], [ -83.627930, 46.103709 ], [ -83.452148, 45.981695 ], [ -83.583984, 45.828799 ], [ -82.529297, 45.336702 ], [ -82.133789, 43.580391 ], [ -82.441406, 42.972502 ], [ -83.100586, 42.065607 ], [ -83.144531, 41.967659 ], [ -83.012695, 41.836828 ], [ -82.705078, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.254883, 42.195969 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.875964 ], [ -79.013672, 43.261206 ], [ -79.189453, 43.452919 ], [ -78.706055, 43.612217 ], [ -76.816406, 43.612217 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.882812, 44.995883 ], [ -71.499023, 44.995883 ], [ -71.411133, 45.243953 ], [ -71.103516, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.679594 ], [ -69.213867, 47.457809 ], [ -68.906250, 47.189712 ], [ -68.247070, 47.338823 ], [ -67.807617, 47.070122 ], [ -67.807617, 45.706179 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.308127 ], [ -70.092773, 43.675818 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -73.959961, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.065392 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.879621 ], [ -75.717773, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.906896 ], [ -78.530273, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.507812, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.916852 ], [ -84.111328, 30.069094 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.384766, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.131836, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.764377 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.458731 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.839449 ], [ -99.008789, 26.352498 ], [ -99.316406, 26.824071 ], [ -99.536133, 27.527758 ], [ -100.107422, 28.110749 ], [ -100.942383, 29.382175 ], [ -101.645508, 29.764377 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -105.029297, 30.637912 ], [ -106.127930, 31.391158 ], [ -106.523438, 31.765537 ], [ -108.237305, 31.765537 ], [ -108.237305, 31.353637 ], [ -111.005859, 31.316101 ], [ -114.829102, 32.509762 ], [ -114.697266, 32.731841 ], [ -117.114258, 32.546813 ], [ -117.290039, 33.027088 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.137879 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.189453, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.057617, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.563477, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.475586, 48.166085 ], [ -122.827148, 49.009051 ], [ -95.141602, 49.009051 ], [ -95.141602, 49.382373 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.422079 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.305185 ], [ -140.009766, 60.283408 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.494141, 59.467408 ], [ -135.483398, 59.778522 ], [ -134.956055, 59.265881 ], [ -134.252930, 58.859224 ], [ -133.374023, 58.401712 ], [ -131.704102, 56.559482 ], [ -129.990234, 55.924586 ], [ -129.990234, 55.279115 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.533203, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.553495 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.850586, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.322266, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.107170 ], [ -162.465820, 66.739902 ], [ -163.696289, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.366211, 68.040461 ], [ -166.772461, 68.350594 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.431641, 60.217991 ], [ -166.464844, 60.392148 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.083984, 10.876465 ], [ -60.908203, 10.833306 ], [ -60.952148, 10.098670 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.699219, 10.746969 ], [ -61.083984, 10.876465 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.795898, 19.890723 ], [ -70.224609, 19.601194 ], [ -69.960938, 19.642588 ], [ -69.785156, 19.311143 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.334961, 18.604601 ], [ -68.686523, 18.187607 ], [ -69.169922, 18.437925 ], [ -69.609375, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.229351 ], [ -70.532227, 18.187607 ], [ -70.664062, 18.437925 ], [ -71.015625, 18.271086 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.674805, 18.312811 ], [ -71.938477, 18.604601 ], [ -71.718750, 18.771115 ], [ -71.630859, 19.186678 ], [ -71.718750, 19.725342 ], [ -71.586914, 19.890723 ], [ -70.795898, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.640338 ], [ -13.710938, 12.597455 ], [ -13.710938, 12.254128 ], [ -13.842773, 12.125264 ], [ -13.754883, 11.824341 ], [ -13.886719, 11.695273 ], [ -14.106445, 11.695273 ], [ -14.370117, 11.523088 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.049038 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.824341 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.655273, 12.382928 ], [ -16.127930, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.640338 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.410786 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.966140 ], [ -5.493164, 16.341226 ], [ -5.317383, 16.214675 ], [ -5.537109, 15.496032 ], [ -9.536133, 15.496032 ], [ -9.711914, 15.241790 ], [ -10.063477, 15.326572 ], [ -10.634766, 15.114553 ], [ -11.337891, 15.411319 ], [ -11.645508, 15.368950 ], [ -11.821289, 14.817371 ], [ -12.172852, 14.604847 ], [ -13.447266, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.589844, 16.594081 ], [ -15.117188, 16.594081 ], [ -15.600586, 16.383391 ], [ -16.127930, 16.467695 ], [ -16.479492, 16.130262 ], [ -16.567383, 16.678293 ], [ -16.259766, 17.182779 ], [ -16.127930, 18.104087 ], [ -16.391602, 19.601194 ], [ -16.259766, 20.097206 ], [ -16.523438, 20.550509 ], [ -17.050781, 21.002471 ], [ -16.831055, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.095703, 22.755921 ], [ -12.875977, 23.281719 ], [ -11.953125, 23.362429 ], [ -11.953125, 25.918526 ], [ -8.701172, 25.878994 ], [ -8.701172, 27.410786 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.295898, 51.344339 ], [ 3.515625, 51.316881 ], [ 3.515625, 50.429518 ], [ 3.120117, 50.792047 ], [ 2.680664, 50.792047 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.344339 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.483398, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.483398, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.944336, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } ] } ] } , @@ -49,13 +49,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.230469, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.826520 ], [ 143.085938, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.238062 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.247817 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.949188 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ 180.000000, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.447266, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.050781, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.214875 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.671875, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.825836 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.697266, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.685421 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.238062 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.601562, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.105469, -66.947274 ], [ 110.258789, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.670387 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.893555, -67.187000 ], [ 122.343750, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.145508, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.726562, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.780273, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.638672, 3.513421 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 39.638672, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 3.513421 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.284551 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 15.292969, 3.513421 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.528320, 3.513421 ], [ 47.153320, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.366211, -8.233237 ], [ 30.761719, -8.363693 ], [ 31.552734, -8.754795 ], [ 32.211914, -8.928487 ], [ 32.783203, -9.232249 ], [ 33.222656, -9.665738 ], [ 33.486328, -10.531020 ], [ 33.310547, -10.790141 ], [ 33.134766, -11.609193 ], [ 33.310547, -12.425848 ], [ 33.002930, -12.768946 ], [ 32.695312, -13.710035 ], [ 33.222656, -13.966054 ], [ 30.190430, -14.817371 ], [ 30.278320, -15.496032 ], [ 29.531250, -15.665354 ], [ 28.959961, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.597656, -17.308688 ], [ 27.026367, -17.936929 ], [ 26.718750, -17.978733 ], [ 26.367188, -17.853290 ], [ 25.268555, -17.727759 ], [ 24.697266, -17.350638 ], [ 24.038086, -17.308688 ], [ 23.203125, -17.518344 ], [ 22.543945, -16.888660 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.038086, -12.897489 ], [ 23.950195, -12.554564 ], [ 24.082031, -12.211180 ], [ 23.906250, -11.738302 ], [ 24.038086, -11.221510 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.301758, -11.264612 ], [ 24.785156, -11.221510 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.609193 ], [ 27.377930, -12.125264 ], [ 28.168945, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.168226 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.696289, -9.622414 ], [ 28.432617, -9.188870 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.366211, -8.233237 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.620117, 3.513421 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.181641, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.362176 ], [ 109.687500, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.294082 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.832031, -16.930705 ], [ 13.447266, -16.972741 ], [ 14.062500, -17.434511 ], [ 14.194336, -17.350638 ], [ 18.281250, -17.308688 ], [ 18.940430, -17.811456 ], [ 21.401367, -17.936929 ], [ 24.038086, -17.308688 ], [ 24.697266, -17.350638 ], [ 25.092773, -17.602139 ], [ 25.092773, -17.644022 ], [ 24.521484, -17.895114 ], [ 24.213867, -17.895114 ], [ 23.598633, -18.271086 ], [ 23.203125, -17.853290 ], [ 21.665039, -18.229351 ], [ 20.917969, -18.271086 ], [ 20.874023, -21.820708 ], [ 19.907227, -21.861499 ], [ 19.907227, -28.459033 ], [ 18.984375, -28.960089 ], [ 18.457031, -29.036961 ], [ 17.402344, -28.767659 ], [ 17.226562, -28.343065 ], [ 16.831055, -28.071980 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.839076 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.765625, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.370117, -22.674847 ], [ 14.282227, -22.105999 ], [ 13.886719, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.612305, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.733398, -17.308688 ], [ 12.216797, -17.098792 ], [ 12.832031, -16.930705 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.854492, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.920898, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.437500, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 152.138672, -4.171115 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 152.006836, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.528511 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.171115 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } ] } , @@ -63,19 +61,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ 2.504883, 51.151786 ], [ 2.680664, 50.792047 ], [ 3.120117, 50.792047 ], [ 3.603516, 50.373496 ], [ 4.306641, 49.894634 ], [ 4.790039, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.888672, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.009051 ], [ 7.602539, 48.341646 ], [ 7.470703, 47.606163 ], [ 7.207031, 47.457809 ], [ 6.723633, 47.546872 ], [ 6.767578, 47.279229 ], [ 6.020508, 46.709736 ], [ 6.020508, 46.286224 ], [ 6.503906, 46.437857 ], [ 6.855469, 45.981695 ], [ 6.811523, 45.706179 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.026950 ], [ 7.031250, 44.245199 ], [ 7.558594, 44.119142 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.455888 ], [ 1.845703, 42.326062 ], [ 0.703125, 42.779275 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.650122 ], [ -1.494141, 43.036776 ], [ -1.889648, 43.421009 ], [ -1.406250, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.694974 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.362305, 50.120578 ], [ 1.625977, 50.958427 ], [ 2.504883, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.481383 ], [ 5.625000, 51.041394 ], [ 6.152344, 50.792047 ], [ 6.064453, 50.120578 ], [ 5.800781, 50.092393 ], [ 5.668945, 49.525208 ], [ 4.790039, 49.979488 ], [ 4.306641, 49.894634 ], [ 3.603516, 50.373496 ], [ 3.120117, 50.792047 ], [ 2.680664, 50.792047 ], [ 2.504883, 51.151786 ], [ 3.295898, 51.344339 ], [ 4.042969, 51.261915 ], [ 4.965820, 51.481383 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.483398, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -2.812500, 5.397273 ], [ -3.251953, 6.227934 ], [ -2.988281, 7.362467 ], [ -2.548828, 8.233237 ], [ -2.988281, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.186523, 11.005904 ], [ -0.747070, 10.919618 ], [ -0.439453, 11.092166 ] ] ] } } , { "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.852539, 45.920587 ], [ 19.072266, 45.521744 ], [ 19.379883, 45.243953 ], [ 19.028320, 44.871443 ], [ 18.544922, 45.089036 ], [ 17.885742, 45.058001 ], [ 17.006836, 45.243953 ], [ 16.523438, 45.213004 ], [ 16.303711, 44.995883 ], [ 15.952148, 45.243953 ], [ 15.732422, 44.809122 ], [ 16.259766, 44.339565 ], [ 16.479492, 44.024422 ], [ 16.918945, 43.675818 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.036776 ], [ 18.544922, 42.650122 ], [ 18.457031, 42.488302 ], [ 17.534180, 42.843751 ], [ 16.918945, 43.197167 ], [ 16.040039, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.941406, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.282227, 45.243953 ], [ 13.974609, 44.809122 ], [ 13.666992, 45.120053 ], [ 13.666992, 45.490946 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.336914, 45.460131 ], [ 15.336914, 45.736860 ], [ 15.688477, 45.828799 ], [ 15.776367, 46.225453 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.335224 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 11.030273, 37.090240 ], [ 11.118164, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.942383, 35.710838 ], [ 10.810547, 34.813803 ], [ 10.151367, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.469727, 33.137551 ], [ 11.425781, 32.361403 ], [ 10.942383, 32.063956 ], [ 10.634766, 31.765537 ], [ 9.931641, 31.391158 ], [ 10.063477, 30.977609 ], [ 9.975586, 30.524413 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.509762 ], [ 8.437500, 32.731841 ], [ 7.602539, 33.358062 ], [ 7.514648, 34.089061 ], [ 8.129883, 34.669359 ], [ 8.393555, 35.460670 ], [ 8.217773, 36.421282 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.335224 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.321911 ], [ 34.409180, 51.754240 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.261915 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.764259 ], [ 35.375977, 50.569283 ], [ 36.650391, 50.233152 ], [ 37.397461, 50.373496 ], [ 38.012695, 49.922935 ], [ 38.583984, 49.922935 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.296472 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.224673 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.813155 ], [ 38.276367, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.010226 ], [ 36.782227, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.980469, 46.286224 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.518555, 45.460131 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.559163 ], [ 33.530273, 45.026950 ], [ 32.475586, 45.336702 ], [ 32.651367, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.316584 ], [ 31.684570, 46.709736 ], [ 30.761719, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.619141, 45.305803 ], [ 29.135742, 45.460131 ], [ 28.696289, 45.305803 ], [ 28.256836, 45.490946 ], [ 28.476562, 45.583290 ], [ 28.652344, 45.951150 ], [ 28.916016, 46.255847 ], [ 28.872070, 46.437857 ], [ 29.091797, 46.528635 ], [ 29.179688, 46.377254 ], [ 29.750977, 46.346928 ], [ 30.014648, 46.407564 ], [ 29.838867, 46.528635 ], [ 29.926758, 46.679594 ], [ 29.575195, 46.920255 ], [ 29.399414, 47.338823 ], [ 29.047852, 47.517201 ], [ 29.135742, 47.842658 ], [ 28.652344, 48.107431 ], [ 28.256836, 48.166085 ], [ 27.509766, 48.458352 ], [ 26.850586, 48.370848 ], [ 26.630859, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.927734, 47.989922 ], [ 25.224609, 47.901614 ], [ 24.873047, 47.724545 ], [ 24.389648, 47.989922 ], [ 23.774414, 47.989922 ], [ 23.159180, 48.107431 ], [ 22.719727, 47.872144 ], [ 22.631836, 48.136767 ], [ 22.104492, 48.429201 ], [ 22.280273, 48.835797 ], [ 22.543945, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.468124 ], [ 23.422852, 50.317408 ], [ 23.906250, 50.429518 ], [ 24.038086, 50.708634 ], [ 23.510742, 51.563412 ], [ 23.994141, 51.618017 ], [ 24.565430, 51.890054 ], [ 25.312500, 51.917168 ], [ 26.323242, 51.835778 ], [ 27.465820, 51.590723 ], [ 28.256836, 51.563412 ], [ 28.608398, 51.426614 ], [ 29.003906, 51.590723 ], [ 29.267578, 51.371780 ], [ 30.146484, 51.426614 ], [ 30.541992, 51.316881 ], [ 30.629883, 51.808615 ], [ 30.937500, 52.052490 ], [ 31.772461, 52.106505 ], [ 32.167969, 52.052490 ], [ 32.431641, 52.295042 ], [ 32.739258, 52.241256 ], [ 33.750000, 52.321911 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.941406, 11.566144 ], [ 14.941406, 10.876465 ], [ 15.468750, 9.968851 ], [ 14.897461, 9.968851 ], [ 14.633789, 9.925566 ], [ 14.194336, 10.012130 ], [ 13.974609, 9.535749 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.424805, 7.710992 ], [ 14.765625, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.545898, 5.047171 ], [ 14.501953, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.864255 ], [ 15.424805, 3.337954 ], [ 15.864258, 3.030812 ], [ 15.908203, 2.547988 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 8.745117, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.536133, 6.446318 ], [ 10.107422, 7.057282 ], [ 10.502930, 7.057282 ], [ 11.074219, 6.620957 ], [ 11.733398, 6.970049 ], [ 11.821289, 7.406048 ], [ 12.084961, 7.798079 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.711359 ], [ 12.963867, 9.405710 ], [ 13.183594, 9.622414 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.458008, 11.910354 ], [ 14.589844, 12.082296 ], [ 14.194336, 12.468760 ], [ 14.194336, 12.811801 ], [ 14.501953, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.862305, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.665354 ], [ 22.587891, 14.944785 ], [ 22.324219, 14.306969 ], [ 22.500000, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.280273, 13.368243 ], [ 22.060547, 12.940322 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.695273 ], [ 22.895508, 11.393879 ], [ 22.851562, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.492408 ], [ 20.083008, 9.015302 ], [ 19.116211, 9.058702 ], [ 18.808594, 8.971897 ], [ 18.896484, 8.624472 ], [ 18.413086, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.493196 ], [ 16.479492, 7.710992 ], [ 16.303711, 7.754537 ], [ 16.127930, 7.493196 ], [ 15.292969, 7.406048 ], [ 15.424805, 7.710992 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.974609, 9.535749 ], [ 14.194336, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.897461, 9.968851 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.876465 ], [ 14.941406, 11.566144 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.368243 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.665354 ], [ 15.249023, 16.636192 ], [ 15.292969, 17.936929 ], [ 15.688477, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.877440 ], [ 15.864258, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.978733 ], [ 38.979492, 16.846605 ], [ 39.287109, 15.919074 ], [ 39.814453, 15.453680 ], [ 41.176758, 14.477234 ], [ 42.583008, 12.983148 ], [ 43.066406, 12.683215 ], [ 42.802734, 12.468760 ], [ 42.363281, 12.554564 ], [ 42.011719, 12.854649 ], [ 41.616211, 13.453737 ], [ 41.176758, 13.752725 ], [ 40.913086, 14.136576 ], [ 40.034180, 14.519780 ], [ 39.331055, 14.519780 ], [ 39.111328, 14.732386 ], [ 38.496094, 14.519780 ], [ 37.924805, 14.944785 ], [ 37.617188, 14.221789 ], [ 36.430664, 14.434680 ], [ 36.342773, 14.817371 ], [ 36.738281, 16.299051 ], [ 36.870117, 16.972741 ], [ 37.177734, 17.266728 ], [ 37.924805, 17.434511 ], [ 38.408203, 17.978733 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.924805, 14.944785 ], [ 38.496094, 14.519780 ], [ 39.111328, 14.732386 ], [ 39.331055, 14.519780 ], [ 40.034180, 14.519780 ], [ 40.913086, 14.136576 ], [ 41.176758, 13.752725 ], [ 41.616211, 13.453737 ], [ 42.011719, 12.854649 ], [ 42.363281, 12.554564 ], [ 41.660156, 11.609193 ], [ 41.748047, 11.049038 ], [ 42.319336, 11.049038 ], [ 42.539062, 11.092166 ], [ 42.758789, 10.919618 ], [ 42.583008, 10.574222 ], [ 43.286133, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.933594, 8.015716 ], [ 47.812500, 8.015716 ], [ 44.956055, 5.003394 ], [ 43.681641, 4.959615 ], [ 42.758789, 4.258768 ], [ 42.143555, 4.214943 ], [ 41.835938, 3.908099 ], [ 41.176758, 3.908099 ], [ 40.781250, 4.258768 ], [ 39.858398, 3.820408 ], [ 39.550781, 3.425692 ], [ 38.891602, 3.513421 ], [ 38.671875, 3.601142 ], [ 38.144531, 3.601142 ], [ 36.870117, 4.434044 ], [ 36.166992, 4.434044 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.353521 ], [ 35.288086, 5.484768 ], [ 34.716797, 6.577303 ], [ 34.233398, 6.839170 ], [ 34.057617, 7.231699 ], [ 33.574219, 7.710992 ], [ 32.958984, 7.798079 ], [ 33.310547, 8.363693 ], [ 33.837891, 8.363693 ], [ 33.969727, 8.667918 ], [ 33.969727, 9.579084 ], [ 34.277344, 10.617418 ], [ 34.716797, 10.919618 ], [ 34.848633, 11.307708 ], [ 35.244141, 12.082296 ], [ 35.859375, 12.554564 ], [ 36.254883, 13.581921 ], [ 36.430664, 14.434680 ], [ 37.617188, 14.221789 ], [ 37.924805, 14.944785 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.379110 ], [ 70.883789, 55.178868 ], [ 71.191406, 54.136696 ], [ 72.246094, 54.367759 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.399414, 53.540307 ], [ 76.904297, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.958008, 50.819818 ], [ 83.364258, 51.069017 ], [ 83.935547, 50.875311 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.561523, 49.696062 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 86.616211, 48.545705 ], [ 85.781250, 48.458352 ], [ 85.737305, 47.457809 ], [ 85.166016, 47.010226 ], [ 83.188477, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.958008, 45.305803 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.165123 ], [ 80.200195, 42.908160 ], [ 80.244141, 42.358544 ], [ 79.628906, 42.488302 ], [ 79.145508, 42.843751 ], [ 77.651367, 42.972502 ], [ 75.981445, 42.972502 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.100983 ], [ 73.476562, 42.488302 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.714732 ], [ 70.971680, 42.261049 ], [ 70.400391, 42.065607 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.680638 ], [ 68.247070, 40.647304 ], [ 67.983398, 41.145570 ], [ 66.708984, 41.178654 ], [ 66.533203, 42.000325 ], [ 66.005859, 42.000325 ], [ 66.093750, 43.004647 ], [ 64.907227, 43.739352 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.516689 ], [ 61.040039, 44.402392 ], [ 58.491211, 45.583290 ], [ 55.942383, 44.995883 ], [ 55.986328, 41.310824 ], [ 55.458984, 41.244772 ], [ 54.755859, 42.032974 ], [ 54.096680, 42.326062 ], [ 52.954102, 42.098222 ], [ 52.514648, 41.771312 ], [ 52.470703, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.514648, 42.779275 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.317383, 44.621754 ], [ 51.284180, 44.527843 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.398450 ], [ 53.041992, 45.243953 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.040182 ], [ 50.053711, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.076172, 47.754098 ], [ 47.329102, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.065430, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.866317 ], [ 48.691406, 50.597186 ], [ 50.756836, 51.699800 ], [ 52.338867, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.611328, 51.261915 ], [ 59.985352, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.996094, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.342149 ], [ 65.654297, 54.597528 ], [ 68.159180, 54.977614 ], [ 69.082031, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.039321 ], [ 51.064453, 10.617418 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.021065 ], [ 44.077148, 1.054628 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 41.000977, -0.878872 ], [ 41.000977, 2.767478 ], [ 41.835938, 3.908099 ], [ 42.143555, 4.214943 ], [ 42.758789, 4.258768 ], [ 43.681641, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.812500, 8.015716 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.744141, 21.657428 ], [ 103.227539, 20.756114 ], [ 104.458008, 20.756114 ], [ 104.809570, 19.890723 ], [ 104.194336, 19.642588 ], [ 103.886719, 19.269665 ], [ 105.117188, 18.646245 ], [ 106.567383, 16.594081 ], [ 107.314453, 15.919074 ], [ 107.578125, 15.199386 ], [ 107.402344, 14.179186 ], [ 106.479492, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.205078, 14.264383 ], [ 105.556641, 14.732386 ], [ 105.600586, 15.580711 ], [ 104.765625, 16.425548 ], [ 104.721680, 17.434511 ], [ 103.974609, 18.229351 ], [ 103.183594, 18.312811 ], [ 103.007812, 17.978733 ], [ 102.436523, 17.936929 ], [ 102.128906, 18.104087 ], [ 101.074219, 17.518344 ], [ 101.030273, 18.396230 ], [ 101.293945, 19.476950 ], [ 100.590820, 19.518375 ], [ 100.546875, 20.097206 ], [ 100.107422, 20.427013 ], [ 100.327148, 20.797201 ], [ 101.162109, 21.453069 ], [ 101.293945, 21.207459 ], [ 101.821289, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.114258, 6.926427 ], [ 117.641602, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.397273 ], [ 119.091797, 5.003394 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.905273, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.883789, 4.302591 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.406109 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.181641, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.687500, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.213867, 4.521666 ], [ 114.653320, 3.995781 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.302591 ], [ 115.444336, 5.441022 ], [ 116.235352, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.926427 ] ] ], [ [ [ 100.283203, 6.620957 ], [ 101.074219, 6.184246 ], [ 101.162109, 5.703448 ], [ 101.821289, 5.790897 ], [ 102.128906, 6.227934 ], [ 102.392578, 6.140555 ], [ 102.963867, 5.528511 ], [ 103.403320, 4.872048 ], [ 103.447266, 4.171115 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.767478 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.309766 ], [ 100.327148, 6.053161 ], [ 100.107422, 6.446318 ], [ 100.283203, 6.620957 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.020508, -2.591889 ], [ 143.481445, -3.513421 ], [ 141.020508, -3.513421 ], [ 141.020508, -2.591889 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } ] } , @@ -95,13 +95,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.497664 ], [ -154.819336, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.676270, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.895996, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.599121, 21.002471 ], [ -156.247559, 20.920397 ], [ -155.983887, 20.756114 ], [ -156.071777, 20.632784 ], [ -156.401367, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.599121, 21.002471 ] ] ], [ [ [ -157.258301, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.207459 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.309846 ], [ -157.697754, 21.268900 ], [ -158.115234, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.661943 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.372875 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.477861 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.819645 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.316895, 26.214591 ], [ -97.141113, 25.859224 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.008789, 26.372185 ], [ -99.294434, 26.843677 ], [ -99.514160, 27.547242 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.126124 ], [ -105.029297, 30.637912 ], [ -105.622559, 31.090574 ], [ -106.149902, 31.391158 ], [ -106.501465, 31.746854 ], [ -108.237305, 31.746854 ], [ -108.237305, 31.334871 ], [ -111.027832, 31.334871 ], [ -114.807129, 32.528289 ], [ -114.719238, 32.713355 ], [ -117.114258, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.069824, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.942321 ], [ -123.859863, 39.757880 ], [ -124.387207, 40.313043 ], [ -124.167480, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.370848 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.827148, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.438965, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.968262, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.491304 ], [ -132.253418, 56.365250 ], [ -133.527832, 57.171992 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.205450 ], [ -137.790527, 58.493694 ], [ -139.855957, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.557129, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.006348, 59.344395 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.224121, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.772949, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.341642 ], [ -161.806641, 55.887635 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.181152, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.665513 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.806152, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.740234, 63.213830 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.520996, 63.450509 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.396938 ], [ -160.773926, 64.783488 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.948730, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.215332, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.809651 ], [ -153.215332, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.101074, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.540527, 63.312683 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.179199, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.207075 ], [ -166.464844, 60.381290 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.505859, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.143066, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.340820, 14.413400 ], [ -89.582520, 14.349548 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.115267 ], [ -92.219238, 14.541050 ], [ -92.197266, 14.817371 ], [ -92.087402, 15.072124 ], [ -92.219238, 15.241790 ], [ -91.735840, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -90.988770, 17.245744 ], [ -90.988770, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.644022 ], [ -88.242188, 17.560247 ], [ -88.242188, 17.329664 ], [ -88.308105, 17.119793 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.835449, 17.874203 ], [ -88.483887, 18.479609 ], [ -88.308105, 18.500447 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 67.204032 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.067433 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.881348, 65.540270 ], [ -172.529297, 65.440002 ], [ -172.551270, 64.463323 ], [ -172.946777, 64.254141 ], [ -173.891602, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.979004, 64.923542 ], [ -176.198730, 65.357677 ], [ -177.209473, 65.522068 ], [ -178.352051, 65.385147 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.107170 ], [ -179.890137, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.296387, 64.529548 ], [ -181.757812, 64.557881 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ], [ [ [ -181.757812, 64.120195 ], [ -181.691895, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.637207, 62.985180 ], [ -180.527344, 62.562983 ], [ -180.769043, 62.298581 ], [ -181.757812, 62.420903 ], [ -181.757812, 64.120195 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.692688 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.117959 ], [ -144.909668, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.710489 ], [ -140.998535, 66.513260 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.731223 ], [ -163.718262, 67.118748 ], [ -164.421387, 67.617589 ], [ -165.388184, 68.040461 ], [ -166.772461, 68.358699 ], [ -166.201172, 68.879358 ], [ -164.421387, 68.911005 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.854762 ], [ -161.916504, 70.333533 ], [ -160.927734, 70.444155 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.757812, 69.457554 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.966279 ], [ -177.539062, 68.196052 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.058870 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.288086, 65.802776 ], [ -178.857422, 65.802776 ], [ -178.681641, 66.107170 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 69.457554 ] ] ], [ [ [ -180.000000, 71.517945 ], [ -179.868164, 71.559692 ], [ -179.011230, 71.552741 ], [ -177.583008, 71.265539 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.895078 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.779678 ], [ -181.274414, 71.095425 ], [ -180.000000, 71.517945 ] ] ] ] } } ] } ] } , @@ -114,8 +118,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.053711, 1.757537 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.812500, -0.593251 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.406738, -2.130856 ], [ -44.582520, -2.701635 ], [ -43.417969, -2.394322 ], [ -41.462402, -2.921097 ], [ -39.968262, -2.877208 ], [ -38.496094, -3.710782 ], [ -37.221680, -4.828260 ], [ -36.452637, -5.112830 ], [ -35.595703, -5.156599 ], [ -35.222168, -5.462896 ], [ -34.716797, -7.340675 ], [ -35.134277, -8.993600 ], [ -35.639648, -9.644077 ], [ -37.045898, -11.049038 ], [ -37.683105, -12.168226 ], [ -38.430176, -13.047372 ], [ -38.671875, -13.068777 ], [ -38.957520, -13.795406 ], [ -38.869629, -15.665354 ], [ -39.265137, -17.874203 ], [ -39.572754, -18.271086 ], [ -39.748535, -19.601194 ], [ -40.781250, -20.899871 ], [ -40.935059, -21.943046 ], [ -41.748047, -22.370396 ], [ -41.989746, -22.978624 ], [ -43.066406, -22.978624 ], [ -44.648438, -23.362429 ], [ -45.351562, -23.805450 ], [ -46.472168, -24.086589 ], [ -47.636719, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.669434, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.592285, -29.228890 ], [ -50.690918, -30.977609 ], [ -51.569824, -31.784217 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.192731 ], [ -53.371582, -33.779147 ], [ -53.657227, -33.211116 ], [ -53.217773, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.580078, -31.503629 ], [ -55.590820, -30.864510 ], [ -55.964355, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.612305, -30.221102 ], [ -56.293945, -28.863918 ], [ -55.151367, -27.877928 ], [ -53.635254, -26.922070 ], [ -53.635254, -26.135714 ], [ -54.118652, -25.542441 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.026397 ], [ -54.645996, -23.845650 ], [ -55.019531, -24.006326 ], [ -55.393066, -23.966176 ], [ -55.524902, -23.584126 ], [ -55.612793, -22.654572 ], [ -55.788574, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.887207, -22.289096 ], [ -57.941895, -22.085640 ], [ -57.875977, -20.735566 ], [ -58.161621, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.941895, -19.394068 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.166730 ], [ -57.722168, -17.560247 ], [ -58.271484, -17.266728 ], [ -58.381348, -16.888660 ], [ -58.227539, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.534668, -15.093339 ], [ -60.249023, -15.072124 ], [ -60.270996, -14.647368 ], [ -60.446777, -14.349548 ], [ -60.490723, -13.774066 ], [ -61.083984, -13.475106 ], [ -61.721191, -13.496473 ], [ -62.116699, -13.197165 ], [ -62.797852, -13.004558 ], [ -63.193359, -12.640338 ], [ -64.313965, -12.468760 ], [ -65.390625, -11.566144 ], [ -65.324707, -10.898042 ], [ -65.434570, -10.509417 ], [ -65.324707, -9.774025 ], [ -66.643066, -9.925566 ], [ -67.170410, -10.314919 ], [ -68.049316, -10.725381 ], [ -68.269043, -11.027472 ], [ -68.774414, -11.049038 ], [ -69.521484, -10.962764 ], [ -70.092773, -11.135287 ], [ -70.554199, -11.005904 ], [ -70.488281, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.180176, -10.055403 ], [ -72.553711, -9.514079 ], [ -73.234863, -9.470736 ], [ -73.015137, -9.037003 ], [ -73.564453, -8.428904 ], [ -73.981934, -7.536764 ], [ -73.718262, -7.340675 ], [ -73.718262, -6.926427 ], [ -73.125000, -6.642783 ], [ -73.212891, -6.096860 ], [ -72.971191, -5.747174 ], [ -72.883301, -5.287887 ], [ -71.740723, -4.587376 ], [ -70.927734, -4.412137 ], [ -70.795898, -4.258768 ], [ -69.895020, -4.302591 ], [ -69.433594, -1.559866 ], [ -69.411621, -1.120534 ], [ -69.565430, -0.549308 ], [ -70.026855, -0.197754 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.615223 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.807617, 1.757537 ], [ -67.302246, 1.757537 ], [ -67.060547, 1.142502 ], [ -66.862793, 1.252342 ], [ -66.313477, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.116211, 1.757537 ], [ -59.611816, 1.757537 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.568359, 1.757537 ], [ -50.053711, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.620605, -52.643063 ], [ -68.247070, -53.107217 ], [ -67.741699, -53.852527 ], [ -66.445312, -54.457267 ], [ -65.039062, -54.699234 ], [ -65.500488, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.950684, -54.901882 ], [ -67.565918, -54.876607 ], [ -68.620605, -54.876607 ], [ -68.620605, -52.643063 ] ] ], [ [ [ -66.269531, -21.841105 ], [ -64.951172, -22.085640 ], [ -64.379883, -22.796439 ], [ -63.984375, -22.004175 ], [ -62.841797, -22.044913 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.026397 ], [ -58.798828, -24.766785 ], [ -57.766113, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.623047, -27.117813 ], [ -57.612305, -27.391278 ], [ -56.491699, -27.547242 ], [ -55.700684, -27.391278 ], [ -54.777832, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.118652, -25.542441 ], [ -53.635254, -26.135714 ], [ -53.635254, -26.922070 ], [ -55.151367, -27.877928 ], [ -56.293945, -28.863918 ], [ -57.612305, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.139648, -33.045508 ], [ -58.337402, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.216797, -35.281501 ], [ -57.348633, -35.978006 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.897194 ], [ -57.744141, -38.186387 ], [ -59.238281, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.822591 ], [ -62.116699, -39.419221 ], [ -62.336426, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.029643 ], [ -63.764648, -41.162114 ], [ -64.731445, -40.797177 ], [ -65.104980, -41.062786 ], [ -64.973145, -42.065607 ], [ -64.291992, -42.358544 ], [ -63.742676, -42.049293 ], [ -63.457031, -42.569264 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.500752 ], [ -65.324707, -44.496505 ], [ -65.566406, -45.042478 ], [ -66.511230, -45.042478 ], [ -67.280273, -45.552525 ], [ -67.587891, -46.301406 ], [ -66.599121, -47.040182 ], [ -65.632324, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.170410, -48.705463 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.125977, -50.736455 ], [ -68.818359, -51.767840 ], [ -68.137207, -52.348763 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.333984, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.736455 ], [ -73.322754, -50.387508 ], [ -73.410645, -49.325122 ], [ -72.641602, -48.879167 ], [ -72.333984, -48.239309 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.890232 ], [ -71.542969, -45.567910 ], [ -71.652832, -44.980342 ], [ -71.213379, -44.793531 ], [ -71.323242, -44.402392 ], [ -71.784668, -44.213710 ], [ -71.455078, -43.786958 ], [ -71.916504, -43.405047 ], [ -72.136230, -42.261049 ], [ -71.740723, -42.049293 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.925229 ], [ -70.817871, -38.548165 ], [ -71.125488, -37.579413 ], [ -71.125488, -36.668419 ], [ -70.356445, -36.013561 ], [ -70.378418, -35.173808 ], [ -69.807129, -34.198173 ], [ -69.807129, -33.284620 ], [ -70.070801, -33.100745 ], [ -70.532227, -31.372399 ], [ -69.916992, -30.334954 ], [ -70.004883, -29.363027 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.378906, -26.194877 ], [ -68.422852, -24.527135 ], [ -67.324219, -24.026397 ], [ -66.972656, -22.998852 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.841105 ] ] ] ] } } ] } ] } , @@ -123,18 +125,20 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.925781, 42.859860 ], [ -78.925781, 42.956423 ], [ -79.013672, 43.261206 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.486816, 44.008620 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.675818 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.771312 ], [ -70.180664, 42.147114 ], [ -69.873047, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.310824 ], [ -72.883301, 41.211722 ], [ -73.696289, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.245605, 40.463666 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.366211, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.247821 ], [ -75.717773, 37.926868 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.530762, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.909534 ], [ -76.245117, 36.967449 ], [ -75.959473, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.852170 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.859224 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.275879, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.517090, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.477861 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.668963 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.505859, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.143066, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.340820, 14.413400 ], [ -89.582520, 14.349548 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.115267 ], [ -91.757812, 14.179186 ], [ -91.757812, 16.045813 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.725098, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.110352, 18.083201 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.476432 ], [ -88.308105, 17.119793 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.835449, 17.874203 ], [ -88.483887, 18.479609 ], [ -88.308105, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.562988, 9.600750 ], [ -79.013672, 9.557417 ], [ -79.057617, 9.449062 ], [ -78.508301, 9.427387 ], [ -78.046875, 9.253936 ], [ -77.717285, 8.950193 ], [ -77.343750, 8.667918 ], [ -77.475586, 8.515836 ], [ -77.233887, 7.928675 ], [ -77.431641, 7.645665 ], [ -77.761230, 7.710992 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.420410, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.320212 ], [ -80.375977, 8.298470 ], [ -80.485840, 8.080985 ], [ -80.002441, 7.536764 ], [ -80.266113, 7.427837 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.209900 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.397461, 8.298470 ], [ -82.814941, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.211490 ], [ -82.836914, 8.624472 ], [ -82.858887, 8.798225 ], [ -82.727051, 8.928487 ], [ -82.924805, 9.080400 ], [ -82.924805, 9.470736 ], [ -82.551270, 9.557417 ], [ -82.177734, 9.210560 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.430664, 8.776511 ], [ -80.947266, 8.863362 ], [ -80.529785, 9.102097 ], [ -79.914551, 9.318990 ], [ -79.562988, 9.600750 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.898042 ], [ -60.886230, 10.854886 ], [ -60.930176, 10.098670 ], [ -61.765137, 9.990491 ], [ -61.940918, 10.077037 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.746969 ], [ -61.105957, 10.898042 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.586914, 19.890723 ], [ -70.795898, 19.870060 ], [ -70.202637, 19.621892 ], [ -69.938965, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.796387, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.417079 ], [ -69.631348, 18.375379 ], [ -69.960938, 18.417079 ], [ -70.136719, 18.250220 ], [ -70.510254, 18.187607 ], [ -70.664062, 18.417079 ], [ -70.993652, 18.271086 ], [ -71.389160, 17.602139 ], [ -71.652832, 17.748687 ], [ -71.696777, 18.041421 ], [ -71.674805, 18.312811 ], [ -71.938477, 18.604601 ], [ -71.696777, 18.791918 ], [ -71.630859, 19.165924 ], [ -71.718750, 19.704658 ], [ -71.586914, 19.890723 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.739352 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.564472 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.494141, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.351562, 42.585444 ], [ 0.703125, 42.795401 ], [ 1.757812, 42.374778 ], [ 1.757812, 41.162114 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.631635 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.668419 ], [ -4.987793, 36.315125 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.932330 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.065392 ], [ -7.360840, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.053223, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.739352 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.417480, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.197754, 53.317749 ], [ 0.483398, 52.922151 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.944336, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.951220 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.488046 ], [ -3.098145, 53.396432 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.776573 ], [ -5.581055, 55.304138 ], [ -5.646973, 56.267761 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -6.723633, 55.166319 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.943359, 54.072283 ], [ -7.558594, 54.059388 ], [ -7.360840, 54.597528 ], [ -7.558594, 55.128649 ], [ -6.723633, 55.166319 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.556641, 12.618897 ], [ -13.688965, 12.576010 ], [ -13.710938, 12.254128 ], [ -13.820801, 12.146746 ], [ -13.732910, 11.802834 ], [ -13.908691, 11.673755 ], [ -14.128418, 11.673755 ], [ -14.370117, 11.501557 ], [ -14.677734, 11.523088 ], [ -15.117188, 11.027472 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.554564 ], [ -15.820312, 12.511665 ], [ -15.556641, 12.618897 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ -6.459961, 24.946219 ], [ -5.493164, 16.320139 ], [ -5.317383, 16.193575 ], [ -5.537109, 15.496032 ], [ -9.558105, 15.474857 ], [ -9.689941, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.656738, 15.135764 ], [ -11.337891, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.821289, 14.796128 ], [ -12.172852, 14.604847 ], [ -12.832031, 15.305380 ], [ -13.425293, 16.045813 ], [ -14.106445, 16.299051 ], [ -14.567871, 16.594081 ], [ -15.139160, 16.594081 ], [ -15.622559, 16.362310 ], [ -16.127930, 16.446622 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.523438, 20.571082 ], [ -17.050781, 21.002471 ], [ -16.853027, 21.330315 ], [ -12.919922, 21.330315 ], [ -13.117676, 22.776182 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.362429 ], [ -11.975098, 25.938287 ], [ -8.679199, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.966140 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.347762 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.505371, 15.114553 ], [ -1.054688, 14.966013 ], [ -1.999512, 14.562318 ], [ -2.197266, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.098145, 13.539201 ], [ -3.515625, 13.325485 ], [ -3.999023, 13.475106 ], [ -4.284668, 13.218556 ], [ -4.416504, 12.533115 ], [ -5.207520, 11.716788 ], [ -5.185547, 11.372339 ], [ -5.471191, 10.941192 ], [ -5.405273, 10.358151 ], [ -5.822754, 10.228437 ], [ -6.042480, 10.098670 ], [ -6.196289, 10.531020 ], [ -6.481934, 10.401378 ], [ -6.657715, 10.422988 ], [ -6.855469, 10.141932 ], [ -7.624512, 10.141932 ], [ -7.888184, 10.293301 ], [ -8.020020, 10.206813 ], [ -8.327637, 10.487812 ], [ -8.283691, 10.790141 ], [ -8.415527, 10.898042 ], [ -8.613281, 10.811724 ], [ -8.569336, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.789062, 11.802834 ], [ -8.898926, 12.082296 ], [ -9.118652, 12.297068 ], [ -9.316406, 12.340002 ], [ -9.887695, 12.060809 ], [ -10.173340, 11.845847 ], [ -10.590820, 11.931852 ], [ -10.876465, 12.168226 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.082296 ], [ -11.447754, 12.082296 ], [ -11.513672, 12.447305 ], [ -11.469727, 12.747516 ], [ -11.557617, 13.132979 ], [ -11.931152, 13.410994 ], [ -12.128906, 13.987376 ], [ -12.172852, 14.604847 ], [ -11.821289, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.337891, 15.411319 ], [ -10.656738, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.689941, 15.262989 ], [ -9.558105, 15.474857 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.193575 ], [ -5.493164, 16.320139 ], [ -6.459961, 24.946219 ], [ -4.921875, 24.966140 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.725098, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.696879 ], [ -2.856445, 4.981505 ], [ -2.812500, 5.375398 ], [ -3.251953, 6.249776 ], [ -2.988281, 7.384258 ], [ -2.548828, 8.211490 ], [ -2.966309, 10.401378 ], [ -2.944336, 10.962764 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.005904 ], [ 0.900879, 10.984335 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.757812, 6.446318 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.725098, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.005904 ] ] ] } } ] } ] } @@ -155,13 +159,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.713379, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.943848, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.901653 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.704590, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.704590, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.958496, 1.757537 ], [ 34.672852, 1.186439 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.432129, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.717773, 1.757537 ], [ 34.958496, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 1.757537 ], [ 45.131836, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.717773, 1.757537 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.267578, -2.218684 ], [ 29.113770, -2.284551 ], [ 29.025879, -2.833317 ], [ 29.289551, -3.294082 ], [ 29.333496, -4.499762 ], [ 29.531250, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.533645 ], [ 30.212402, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.537565 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.366699, -11.802834 ], [ 29.333496, -12.361466 ], [ 29.619141, -12.189704 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.261333 ], [ 28.520508, -12.704651 ], [ 28.146973, -12.275599 ], [ 27.399902, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.564941, -11.931852 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.323730, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.829590, -11.027472 ], [ 22.412109, -11.005904 ], [ 22.148438, -11.092166 ], [ 22.214355, -9.903921 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.298470 ], [ 21.752930, -7.928675 ], [ 21.730957, -7.297088 ], [ 20.522461, -7.297088 ], [ 20.610352, -6.948239 ], [ 20.104980, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.166300 ], [ 19.160156, -7.732765 ], [ 19.028320, -7.993957 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.993957 ], [ 17.468262, -8.080985 ], [ 16.853027, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.856475 ], [ 13.029785, -5.987607 ], [ 12.744141, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.194824, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.480469, -5.244128 ], [ 12.634277, -5.003394 ], [ 13.007812, -4.784469 ], [ 13.271484, -4.893941 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.521666 ], [ 14.216309, -4.806365 ], [ 14.589844, -4.981505 ], [ 15.183105, -4.346411 ], [ 15.754395, -3.864255 ], [ 16.018066, -3.535352 ], [ 15.974121, -2.723583 ], [ 16.413574, -1.735574 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.757537 ], [ 30.717773, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.810059, -16.951724 ], [ 13.469238, -16.972741 ], [ 14.062500, -17.434511 ], [ 14.216309, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.962402, -17.790535 ], [ 21.379395, -17.936929 ], [ 23.225098, -17.518344 ], [ 24.038086, -17.308688 ], [ 24.675293, -17.350638 ], [ 25.070801, -17.581194 ], [ 25.092773, -17.664960 ], [ 24.521484, -17.895114 ], [ 24.213867, -17.895114 ], [ 23.576660, -18.291950 ], [ 23.203125, -17.874203 ], [ 21.665039, -18.229351 ], [ 20.917969, -18.250220 ], [ 20.874023, -21.820708 ], [ 19.907227, -21.861499 ], [ 19.907227, -28.459033 ], [ 19.006348, -28.979312 ], [ 18.457031, -29.056170 ], [ 17.841797, -28.863918 ], [ 17.380371, -28.786918 ], [ 17.226562, -28.362402 ], [ 16.831055, -28.091366 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.683970 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.062312 ], [ 11.733398, -17.308688 ], [ 12.216797, -17.119793 ], [ 12.810059, -16.951724 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.233237 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.602747 ], [ 31.552734, -8.754795 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.244629, -9.687398 ], [ 33.486328, -10.531020 ], [ 33.310547, -10.790141 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.447305 ], [ 33.002930, -12.790375 ], [ 32.695312, -13.710035 ], [ 33.222656, -13.966054 ], [ 30.190430, -14.796128 ], [ 30.278320, -15.517205 ], [ 29.509277, -15.644197 ], [ 28.959961, -16.045813 ], [ 28.828125, -16.383391 ], [ 28.476562, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.048340, -17.936929 ], [ 26.718750, -17.957832 ], [ 26.389160, -17.853290 ], [ 25.268555, -17.748687 ], [ 25.092773, -17.664960 ], [ 25.070801, -17.581194 ], [ 24.675293, -17.350638 ], [ 24.038086, -17.308688 ], [ 23.225098, -17.518344 ], [ 22.565918, -16.909684 ], [ 21.884766, -16.088042 ], [ 21.928711, -12.897489 ], [ 24.016113, -12.918907 ], [ 23.928223, -12.576010 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.716788 ], [ 24.016113, -11.243062 ], [ 23.906250, -10.919618 ], [ 24.257812, -10.962764 ], [ 24.323730, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.564941, -11.931852 ], [ 27.158203, -11.609193 ], [ 27.399902, -12.125264 ], [ 28.146973, -12.275599 ], [ 28.520508, -12.704651 ], [ 28.937988, -13.261333 ], [ 29.707031, -13.261333 ], [ 29.619141, -12.189704 ], [ 29.333496, -12.361466 ], [ 28.366699, -11.802834 ], [ 28.674316, -9.600750 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.233237 ] ] ] } } , { "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.443359, -22.085640 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.651855, -22.146708 ], [ 31.201172, -22.248429 ], [ 31.926270, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.839449 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.740529 ], [ 30.959473, -26.017298 ], [ 30.673828, -26.391870 ], [ 30.695801, -26.745610 ], [ 31.289062, -27.293689 ], [ 31.860352, -27.176469 ], [ 32.080078, -26.745610 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.475586, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.433105, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.998027 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.555176, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.391113, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.259277, -32.435613 ], [ 18.215332, -31.672083 ], [ 17.578125, -30.732393 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.091366 ], [ 17.226562, -28.362402 ], [ 17.380371, -28.786918 ], [ 17.841797, -28.863918 ], [ 18.457031, -29.056170 ], [ 19.006348, -28.979312 ], [ 19.907227, -28.459033 ], [ 19.907227, -24.766785 ], [ 20.170898, -24.926295 ], [ 20.764160, -25.878994 ], [ 20.676270, -26.470573 ], [ 20.895996, -26.824071 ], [ 21.599121, -26.725987 ], [ 22.104492, -26.273714 ], [ 22.587891, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.264568 ], [ 23.730469, -25.383735 ], [ 24.213867, -25.681137 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.482951 ], [ 25.949707, -24.706915 ], [ 26.499023, -24.627045 ], [ 26.784668, -24.246965 ], [ 27.114258, -23.584126 ], [ 28.015137, -22.836946 ], [ 29.443359, -22.085640 ] ], [ [ 28.542480, -28.652031 ], [ 28.081055, -28.844674 ], [ 27.531738, -29.248063 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.656816 ], [ 28.103027, -30.543339 ], [ 28.300781, -30.221102 ], [ 28.850098, -30.069094 ], [ 29.333496, -29.267233 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } ] } @@ -171,47 +169,51 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ], [ [ [ 2.526855, 51.151786 ], [ 2.658691, 50.792047 ], [ 3.120117, 50.778155 ], [ 3.581543, 50.373496 ], [ 4.284668, 49.908787 ], [ 4.812012, 49.979488 ], [ 5.668945, 49.525208 ], [ 5.910645, 49.439557 ], [ 6.196289, 49.468124 ], [ 6.657715, 49.196064 ], [ 8.107910, 49.009051 ], [ 7.602539, 48.327039 ], [ 7.470703, 47.620975 ], [ 7.185059, 47.442950 ], [ 6.745605, 47.546872 ], [ 6.767578, 47.279229 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.422713 ], [ 6.855469, 45.981695 ], [ 6.811523, 45.706179 ], [ 7.097168, 45.336702 ], [ 6.745605, 45.026950 ], [ 7.009277, 44.245199 ], [ 7.558594, 44.119142 ], [ 7.448730, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.570312, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.351562, 42.585444 ], [ 0.000000, 42.666281 ], [ -1.516113, 43.036776 ], [ -1.757812, 43.277205 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 2.526855, 51.151786 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 43.277205 ], [ -1.516113, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.351562, 42.585444 ], [ 0.703125, 42.795401 ], [ 1.823730, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.032227, 41.885921 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.909736 ], [ -0.285645, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.631635 ], [ -1.450195, 37.439974 ], [ -1.757812, 37.090240 ], [ -1.757812, 43.277205 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.197754, 53.317749 ], [ 0.483398, 52.922151 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.611132 ], [ -1.757812, 55.478853 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 22.917923 ], [ 0.000000, 21.800308 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.849394 ], [ 3.142090, 19.683970 ], [ 3.164062, 19.062118 ], [ 4.262695, 19.145168 ], [ 4.262695, 16.846605 ], [ 3.735352, 16.172473 ], [ 3.647461, 15.559544 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.527344, 15.114553 ], [ -1.076660, 14.966013 ], [ -1.757812, 14.668626 ], [ -1.757812, 22.917923 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.965820, 51.467697 ], [ 5.603027, 51.041394 ], [ 6.152344, 50.805935 ], [ 6.042480, 50.120578 ], [ 5.778809, 50.092393 ], [ 5.668945, 49.525208 ], [ 4.812012, 49.979488 ], [ 4.284668, 49.908787 ], [ 3.581543, 50.373496 ], [ 3.120117, 50.778155 ], [ 2.658691, 50.792047 ], [ 2.526855, 51.151786 ], [ 3.317871, 51.344339 ], [ 4.042969, 51.261915 ], [ 4.965820, 51.467697 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.027472 ], [ 0.021973, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.725098, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.076660, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 11.005904 ], [ -1.208496, 11.005904 ], [ -0.769043, 10.941192 ], [ -0.439453, 11.092166 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.018066, 67.204032 ], [ 15.380859, 66.513260 ], [ 15.117188, 66.196009 ], [ 13.557129, 64.783488 ], [ 13.930664, 64.444372 ], [ 13.579102, 64.043363 ], [ 12.590332, 64.062591 ], [ 11.931152, 63.124572 ], [ 11.997070, 61.793900 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.656642 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.370605, 65.874725 ], [ 13.117676, 66.513260 ], [ 13.974609, 67.204032 ], [ 16.018066, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.525391, 47.827908 ], [ 9.602051, 47.517201 ], [ 9.645996, 47.338823 ], [ 9.492188, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.437012, 46.890232 ], [ 10.371094, 46.483265 ], [ 9.931641, 46.316584 ], [ 9.184570, 46.437857 ], [ 8.964844, 46.027482 ], [ 8.503418, 45.996962 ], [ 8.327637, 46.164614 ], [ 7.756348, 45.828799 ], [ 7.272949, 45.767523 ], [ 6.855469, 45.981695 ], [ 6.503906, 46.422713 ], [ 6.020508, 46.271037 ], [ 6.042480, 46.724800 ], [ 6.767578, 47.279229 ], [ 6.745605, 47.546872 ], [ 7.185059, 47.442950 ], [ 7.470703, 47.620975 ], [ 8.327637, 47.606163 ], [ 8.525391, 47.827908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.120578 ], [ 6.240234, 49.894634 ], [ 6.196289, 49.468124 ], [ 5.910645, 49.439557 ], [ 5.668945, 49.525208 ], [ 5.778809, 50.092393 ], [ 6.042480, 50.120578 ] ] ] } } , { "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.622070, 45.951150 ], [ 18.457031, 45.752193 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.401855, 45.228481 ], [ 19.006348, 44.855869 ], [ 18.566895, 45.073521 ], [ 17.863770, 45.073521 ], [ 17.006836, 45.228481 ], [ 16.545410, 45.213004 ], [ 16.325684, 44.995883 ], [ 15.952148, 45.228481 ], [ 15.754395, 44.809122 ], [ 16.237793, 44.355278 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.659924 ], [ 17.292480, 43.436966 ], [ 17.687988, 43.020714 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.793531 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.475540 ], [ 13.710938, 45.490946 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.629405 ], [ 14.941406, 45.475540 ], [ 15.336914, 45.444717 ], [ 15.336914, 45.736860 ], [ 15.666504, 45.828799 ], [ 15.776367, 46.240652 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.164614 ], [ 20.214844, 46.118942 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.555176, 44.762337 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.697754, 44.574817 ], [ 22.478027, 44.402392 ], [ 22.653809, 44.229457 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.892064 ], [ 22.434082, 42.585444 ], [ 22.543945, 42.455888 ], [ 22.390137, 42.326062 ], [ 21.928711, 42.293564 ], [ 21.577148, 42.244785 ], [ 21.555176, 42.326062 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.643066, 42.682435 ], [ 21.445312, 42.859860 ], [ 21.269531, 42.908160 ], [ 21.137695, 43.068888 ], [ 20.961914, 43.133061 ], [ 20.808105, 43.277205 ], [ 20.632324, 43.213183 ], [ 20.500488, 42.875964 ], [ 20.258789, 42.811522 ], [ 20.346680, 42.892064 ], [ 19.951172, 43.100983 ], [ 19.643555, 43.213183 ], [ 19.489746, 43.357138 ], [ 19.226074, 43.516689 ], [ 19.445801, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.418088 ], [ 19.379883, 44.855869 ], [ 19.006348, 44.855869 ], [ 19.401855, 45.228481 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.164614 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.390137, 42.326062 ], [ 22.873535, 42.000325 ], [ 22.961426, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.609863, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.687012, 40.930115 ], [ 21.027832, 40.847060 ], [ 20.610352, 41.079351 ], [ 20.456543, 41.508577 ], [ 20.588379, 41.853196 ], [ 20.720215, 41.853196 ], [ 20.764160, 42.049293 ], [ 21.357422, 42.212245 ], [ 21.928711, 42.293564 ], [ 22.390137, 42.326062 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.653809, 44.229457 ], [ 22.939453, 43.818675 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.576172, 43.691708 ], [ 26.059570, 43.945372 ], [ 27.246094, 44.166445 ], [ 27.971191, 43.802819 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.569264 ], [ 27.993164, 42.000325 ], [ 27.136230, 42.147114 ], [ 26.125488, 41.820455 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.228249 ], [ 24.499512, 41.574361 ], [ 23.686523, 41.310824 ], [ 22.961426, 41.343825 ], [ 22.873535, 42.000325 ], [ 22.390137, 42.326062 ], [ 22.543945, 42.455888 ], [ 22.434082, 42.585444 ], [ 22.609863, 42.892064 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.229457 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 56.170023 ], [ 29.223633, 55.912273 ], [ 29.377441, 55.665193 ], [ 29.904785, 55.788929 ], [ 30.871582, 55.553495 ], [ 30.981445, 55.078367 ], [ 30.761719, 54.813348 ], [ 31.376953, 54.149567 ], [ 31.794434, 53.969012 ], [ 31.728516, 53.787672 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.343993 ], [ 32.299805, 53.133590 ], [ 31.508789, 53.159947 ], [ 31.311035, 53.067627 ], [ 31.552734, 52.736292 ], [ 31.794434, 52.106505 ], [ 30.937500, 52.038977 ], [ 30.629883, 51.822198 ], [ 30.563965, 51.316881 ], [ 30.168457, 51.412912 ], [ 29.267578, 51.371780 ], [ 29.003906, 51.604372 ], [ 28.630371, 51.426614 ], [ 28.234863, 51.577070 ], [ 27.465820, 51.590723 ], [ 26.345215, 51.835778 ], [ 25.334473, 51.903613 ], [ 24.565430, 51.890054 ], [ 24.016113, 51.618017 ], [ 23.532715, 51.577070 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.482780 ], [ 23.796387, 52.683043 ], [ 23.818359, 53.094024 ], [ 23.532715, 53.474970 ], [ 23.488770, 53.917281 ], [ 24.455566, 53.904338 ], [ 25.532227, 54.278055 ], [ 25.773926, 54.851315 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.114258, 55.776573 ], [ 28.168945, 56.170023 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.514160, 37.352693 ], [ 10.217285, 37.230328 ], [ 10.173340, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.612793, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.349121, 33.779147 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.491699, 33.137551 ], [ 11.425781, 32.361403 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.765537 ], [ 9.953613, 31.372399 ], [ 10.063477, 30.958769 ], [ 9.975586, 30.543339 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.509762 ], [ 8.437500, 32.750323 ], [ 7.624512, 33.339707 ], [ 7.536621, 34.089061 ], [ 8.151855, 34.651285 ], [ 8.371582, 35.478565 ], [ 8.217773, 36.438961 ], [ 8.415527, 36.949892 ], [ 9.514160, 37.352693 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.248163 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.569283 ], [ 36.628418, 50.219095 ], [ 37.397461, 50.387508 ], [ 38.012695, 49.908787 ], [ 38.605957, 49.922935 ], [ 40.078125, 49.596470 ], [ 40.078125, 49.310799 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.224673 ], [ 39.748535, 47.901614 ], [ 38.781738, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.837402, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.104546 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.026950 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.310547, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.761719, 46.573967 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.157715, 45.460131 ], [ 28.674316, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.498535, 45.598666 ], [ 28.652344, 45.935871 ], [ 28.937988, 46.255847 ], [ 28.872070, 46.437857 ], [ 29.069824, 46.513516 ], [ 29.179688, 46.377254 ], [ 29.772949, 46.346928 ], [ 30.036621, 46.422713 ], [ 29.838867, 46.528635 ], [ 29.904785, 46.679594 ], [ 29.553223, 46.920255 ], [ 29.421387, 47.338823 ], [ 29.047852, 47.502359 ], [ 29.135742, 47.842658 ], [ 28.674316, 48.122101 ], [ 28.256836, 48.151428 ], [ 27.531738, 48.458352 ], [ 26.850586, 48.370848 ], [ 26.630859, 48.224673 ], [ 26.191406, 48.224673 ], [ 25.949707, 47.989922 ], [ 25.202637, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.411621, 47.975214 ], [ 23.774414, 47.989922 ], [ 23.137207, 48.092757 ], [ 22.719727, 47.886881 ], [ 22.653809, 48.151428 ], [ 22.082520, 48.414619 ], [ 22.280273, 48.821333 ], [ 22.565918, 49.081062 ], [ 22.785645, 49.023461 ], [ 22.521973, 49.468124 ], [ 23.422852, 50.303376 ], [ 23.928223, 50.429518 ], [ 24.038086, 50.708634 ], [ 23.532715, 51.577070 ], [ 24.016113, 51.618017 ], [ 24.565430, 51.890054 ], [ 25.334473, 51.903613 ], [ 26.345215, 51.835778 ], [ 27.465820, 51.590723 ], [ 28.234863, 51.577070 ], [ 28.630371, 51.426614 ], [ 29.003906, 51.604372 ], [ 29.267578, 51.371780 ], [ 30.168457, 51.412912 ], [ 30.563965, 51.316881 ], [ 30.629883, 51.822198 ], [ 30.937500, 52.038977 ], [ 31.794434, 52.106505 ], [ 32.167969, 52.066000 ], [ 32.409668, 52.281602 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ] ] ] } } , { "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.005904 ], [ 0.900879, 10.984335 ], [ 0.769043, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.472168, 9.340672 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.839170 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.725098, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.005904 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.601875 ], [ 23.027344, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.521973, 14.093957 ], [ 22.192383, 13.774066 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.961736 ], [ 21.928711, 12.576010 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.521973, 11.673755 ], [ 22.873535, 11.372339 ], [ 22.873535, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.730957, 10.574222 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.080400 ], [ 18.808594, 8.971897 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.514981 ], [ 16.457520, 7.732765 ], [ 16.303711, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.292969, 7.427837 ], [ 15.446777, 7.689217 ], [ 15.117188, 8.385431 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.971897 ], [ 13.952637, 9.557417 ], [ 14.172363, 10.012130 ], [ 14.633789, 9.925566 ], [ 14.919434, 9.990491 ], [ 15.468750, 9.968851 ], [ 14.919434, 10.898042 ], [ 14.963379, 11.544616 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.589844, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.987376 ], [ 13.535156, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.615138 ], [ 15.292969, 17.916023 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.735566 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.963379, 11.544616 ], [ 14.919434, 10.898042 ], [ 15.468750, 9.968851 ], [ 14.919434, 9.990491 ], [ 14.633789, 9.925566 ], [ 14.172363, 10.012130 ], [ 13.952637, 9.557417 ], [ 14.545898, 8.971897 ], [ 14.985352, 8.798225 ], [ 15.117188, 8.385431 ], [ 15.446777, 7.689217 ], [ 14.787598, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.567871, 5.025283 ], [ 14.479980, 4.740675 ], [ 14.963379, 4.214943 ], [ 15.029297, 3.842332 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.547988 ], [ 16.018066, 2.262595 ], [ 15.952148, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.963867, 2.328460 ], [ 12.370605, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 8.767090, 5.484768 ], [ 9.228516, 6.446318 ], [ 9.536133, 6.446318 ], [ 10.129395, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.052246, 6.642783 ], [ 11.755371, 6.970049 ], [ 11.843262, 7.384258 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.298470 ], [ 12.766113, 8.711359 ], [ 12.963867, 9.405710 ], [ 13.161621, 9.644077 ], [ 13.315430, 10.163560 ], [ 13.579102, 10.790141 ], [ 14.414062, 11.566144 ], [ 14.479980, 11.910354 ], [ 14.589844, 12.082296 ], [ 14.194336, 12.490214 ], [ 14.216309, 12.790375 ], [ 14.501953, 12.854649 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.178223, 32.528289 ], [ 35.551758, 32.398516 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.936523, 31.353637 ], [ 34.980469, 31.615966 ], [ 35.222168, 31.746854 ], [ 34.980469, 31.858897 ], [ 35.178223, 32.528289 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.991211, 34.651285 ], [ 36.452637, 34.597042 ], [ 36.606445, 34.198173 ], [ 36.079102, 33.815666 ], [ 35.815430, 33.266250 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.082337 ], [ 35.134277, 33.082337 ], [ 35.485840, 33.906896 ], [ 35.991211, 34.651285 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.013672, 4.236856 ], [ 34.475098, 3.557283 ], [ 34.606934, 3.052754 ], [ 35.046387, 1.911267 ], [ 34.672852, 1.164471 ], [ 33.903809, 0.109863 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.432129, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.196727 ], [ 30.783691, 2.328460 ], [ 30.827637, 3.513421 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.695312, 3.798484 ], [ 33.398438, 3.776559 ], [ 34.013672, 4.236856 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.407715, 31.896214 ], [ 41.901855, 31.184609 ], [ 44.714355, 29.171349 ], [ 46.582031, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.702637, 28.516969 ], [ 48.427734, 28.555576 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.098254 ], [ 50.163574, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.251465, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.822754, 24.746831 ], [ 51.108398, 24.547123 ], [ 51.394043, 24.627045 ], [ 51.591797, 24.246965 ], [ 51.613770, 24.006326 ], [ 52.009277, 22.998852 ], [ 55.019531, 22.492257 ], [ 55.217285, 22.715390 ], [ 55.678711, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.604601 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.308688 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.077790 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.762468 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.814453, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.066528 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.846565 ], [ 37.221680, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.052591 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 36.079102, 29.190533 ], [ 36.496582, 29.496988 ], [ 36.738281, 29.859701 ], [ 37.507324, 29.993002 ], [ 37.661133, 30.334954 ], [ 37.990723, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.001465, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.902832, 14.966013 ], [ 38.518066, 14.498508 ], [ 39.111328, 14.732386 ], [ 39.353027, 14.519780 ], [ 40.034180, 14.519780 ], [ 40.891113, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.594238, 13.453737 ], [ 42.011719, 12.854649 ], [ 42.363281, 12.533115 ], [ 41.660156, 11.630716 ], [ 41.748047, 11.350797 ], [ 41.748047, 11.049038 ], [ 42.319336, 11.027472 ], [ 42.561035, 11.092166 ], [ 42.780762, 10.919618 ], [ 42.561035, 10.574222 ], [ 43.308105, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.955566, 7.993957 ], [ 47.790527, 7.993957 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.780762, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.857910, 3.908099 ], [ 41.176758, 3.908099 ], [ 40.781250, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.572754, 3.425692 ], [ 38.891602, 3.491489 ], [ 38.671875, 3.623071 ], [ 38.122559, 3.601142 ], [ 36.848145, 4.455951 ], [ 36.166992, 4.455951 ], [ 35.815430, 4.784469 ], [ 35.815430, 5.331644 ], [ 35.310059, 5.506640 ], [ 34.716797, 6.599131 ], [ 34.255371, 6.817353 ], [ 34.079590, 7.231699 ], [ 33.574219, 7.710992 ], [ 32.958984, 7.776309 ], [ 33.288574, 8.341953 ], [ 33.837891, 8.385431 ], [ 33.969727, 8.689639 ], [ 33.969727, 9.579084 ], [ 34.255371, 10.617418 ], [ 34.738770, 10.898042 ], [ 34.826660, 11.307708 ], [ 35.266113, 12.082296 ], [ 35.859375, 12.576010 ], [ 36.276855, 13.560562 ], [ 36.430664, 14.413400 ], [ 37.595215, 14.200488 ], [ 37.902832, 14.966013 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 42.780762, 12.447305 ], [ 42.363281, 12.533115 ], [ 42.011719, 12.854649 ], [ 41.594238, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.891113, 14.115267 ], [ 40.034180, 14.519780 ], [ 39.353027, 14.519780 ], [ 39.111328, 14.732386 ], [ 38.518066, 14.498508 ], [ 37.902832, 14.966013 ], [ 37.595215, 14.200488 ], [ 36.430664, 14.413400 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.299051 ], [ 36.848145, 16.951724 ], [ 37.177734, 17.266728 ], [ 37.902832, 17.434511 ], [ 38.408203, 17.999632 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.307129, 30.050077 ], [ 47.966309, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.427734, 28.555576 ], [ 47.702637, 28.516969 ], [ 47.460938, 28.998532 ], [ 46.582031, 29.094577 ], [ 47.307129, 30.050077 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.191406, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.540307 ], [ 76.904297, 54.482805 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.396432 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.958008, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.303376 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.781250, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 79.650879, 42.488302 ], [ 79.145508, 42.859860 ], [ 77.651367, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.629883, 42.875964 ], [ 74.223633, 43.293200 ], [ 73.652344, 43.084937 ], [ 73.498535, 42.504503 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.971680, 42.261049 ], [ 70.400391, 42.081917 ], [ 69.082031, 41.376809 ], [ 68.642578, 40.663973 ], [ 68.269043, 40.663973 ], [ 67.983398, 41.129021 ], [ 66.708984, 41.162114 ], [ 66.511230, 41.983994 ], [ 66.027832, 42.000325 ], [ 66.093750, 42.988576 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.644026 ], [ 62.006836, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.513184, 45.583290 ], [ 55.942383, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.049293 ], [ 54.074707, 42.326062 ], [ 52.954102, 42.114524 ], [ 52.514648, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.514648, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.317383, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.845164 ], [ 52.053223, 46.800059 ], [ 51.196289, 47.040182 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.385442 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.866317 ], [ 48.713379, 50.597186 ], [ 50.778809, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.055207 ], [ 59.655762, 50.541363 ], [ 59.941406, 50.833698 ], [ 61.347656, 50.792047 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.657661 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.181152, 54.965002 ], [ 69.060059, 55.379110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.108398, 12.017830 ], [ 51.130371, 11.738302 ], [ 51.042480, 11.156845 ], [ 51.042480, 10.639014 ], [ 50.844727, 10.271681 ], [ 50.559082, 9.188870 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.795535 ], [ 48.603516, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.571289, 2.043024 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.908099 ], [ 42.121582, 4.236856 ], [ 42.780762, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.790527, 7.993957 ], [ 48.493652, 8.841651 ], [ 48.933105, 9.449062 ], [ 48.955078, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.566144 ], [ 50.251465, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.017830 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.747012 ], [ 59.985352, 42.228517 ], [ 60.095215, 41.426253 ], [ 60.468750, 41.211722 ], [ 61.545410, 41.261291 ], [ 61.875000, 41.079351 ], [ 62.380371, 40.044438 ], [ 63.522949, 39.368279 ], [ 64.182129, 38.891033 ], [ 65.214844, 38.393339 ], [ 66.555176, 37.978845 ], [ 66.511230, 37.352693 ], [ 66.225586, 37.387617 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.555664, 36.315125 ], [ 63.984375, 36.013561 ], [ 63.193359, 35.853440 ], [ 62.995605, 35.406961 ], [ 62.226562, 35.263562 ], [ 61.215820, 35.639441 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.405074 ], [ 58.447266, 37.527154 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.926868 ], [ 55.524902, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.909534 ], [ 53.876953, 38.942321 ], [ 53.107910, 39.283294 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.027614 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.008789, 41.541478 ], [ 53.723145, 42.114524 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.129021 ], [ 52.514648, 41.787697 ], [ 52.954102, 42.114524 ], [ 54.074707, 42.326062 ], [ 54.755859, 42.049293 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.106934, 41.327326 ], [ 56.931152, 41.820455 ], [ 57.788086, 42.163403 ], [ 58.623047, 42.747012 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.518555, 30.429730 ], [ 82.331543, 30.107118 ], [ 83.342285, 29.458731 ], [ 83.891602, 29.324720 ], [ 84.243164, 28.844674 ], [ 85.012207, 28.632747 ], [ 85.825195, 28.207609 ], [ 86.967773, 27.974998 ], [ 88.132324, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.682617, 27.235095 ], [ 83.298340, 27.371767 ], [ 82.001953, 27.916767 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.786918 ], [ 80.485840, 29.726222 ], [ 81.123047, 30.183122 ], [ 81.518555, 30.429730 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.168457, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.889050 ], [ 77.849121, 35.496456 ], [ 76.882324, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.741612 ], [ 73.762207, 34.307144 ], [ 74.113770, 33.431441 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.399414, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.817383, 28.960089 ], [ 71.784668, 27.916767 ], [ 70.620117, 27.994401 ], [ 69.521484, 26.941660 ], [ 70.180664, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.839844, 25.204941 ], [ 71.037598, 24.347097 ], [ 68.840332, 24.347097 ], [ 68.181152, 23.684774 ], [ 67.456055, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.224820 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 61.875000, 26.234302 ], [ 63.325195, 26.745610 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.731934, 28.265682 ], [ 61.765137, 28.690588 ], [ 61.369629, 29.305561 ], [ 60.886230, 29.821583 ], [ 62.556152, 29.324720 ], [ 63.544922, 29.458731 ], [ 64.160156, 29.343875 ], [ 64.357910, 29.554345 ], [ 65.039062, 29.477861 ], [ 66.357422, 29.878755 ], [ 66.379395, 30.732393 ], [ 66.950684, 31.297328 ], [ 67.675781, 31.297328 ], [ 67.785645, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.257812, 32.491230 ], [ 69.697266, 33.100745 ], [ 70.334473, 33.358062 ], [ 69.938965, 34.016242 ], [ 70.883789, 33.979809 ], [ 71.169434, 34.343436 ], [ 71.125488, 34.723555 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.639441 ], [ 71.257324, 36.066862 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.826875 ], [ 74.575195, 37.020098 ], [ 75.168457, 37.125286 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.571777, 26.450902 ], [ 89.362793, 26.017298 ], [ 89.846191, 25.958045 ], [ 89.934082, 25.264568 ], [ 90.000000, 25.264568 ], [ 90.878906, 25.125393 ], [ 91.757812, 25.145285 ], [ 91.757812, 24.106647 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.757812, 23.180764 ], [ 91.757812, 22.289096 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.285645, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.714355, 21.861499 ], [ 89.428711, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.088379, 24.507143 ], [ 88.308105, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.220215, 25.760320 ], [ 88.571777, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 5.244128 ], [ 26.411133, 5.156599 ], [ 27.048340, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.993164, 4.412137 ], [ 28.432617, 4.280680 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.729004, 4.587376 ], [ 29.948730, 4.171115 ], [ 30.827637, 3.513421 ], [ 30.783691, 2.328460 ], [ 31.179199, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.289551, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.735574 ], [ 18.105469, 2.372369 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.193030 ], [ 18.940430, 4.696879 ], [ 19.467773, 5.025283 ], [ 20.302734, 4.696879 ], [ 20.939941, 4.324501 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.017699 ], [ 22.697754, 4.631179 ], [ 22.851562, 4.696879 ], [ 23.291016, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.136719, 4.915833 ], [ 25.290527, 5.178482 ], [ 25.664062, 5.244128 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.652943 ], [ 90.725098, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.303376 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.958008, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.396432 ], [ 76.530762, 54.175297 ], [ 76.904297, 54.482805 ], [ 74.377441, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.191406, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.181152, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.657661 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.833698 ], [ 59.655762, 50.541363 ], [ 58.359375, 51.055207 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.778809, 51.686180 ], [ 48.713379, 50.597186 ], [ 48.581543, 49.866317 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.385442 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.504883, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 45.769043, 42.098222 ], [ 45.483398, 42.504503 ], [ 44.538574, 42.714732 ], [ 43.923340, 42.553080 ], [ 43.769531, 42.730874 ], [ 42.407227, 43.213183 ], [ 40.935059, 43.373112 ], [ 40.078125, 43.548548 ], [ 39.968262, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.551270, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.133301, 47.264320 ], [ 38.232422, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.781738, 47.827908 ], [ 39.748535, 47.901614 ], [ 39.902344, 48.224673 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.310799 ], [ 40.078125, 49.596470 ], [ 38.605957, 49.922935 ], [ 38.012695, 49.908787 ], [ 37.397461, 50.387508 ], [ 36.628418, 50.219095 ], [ 35.354004, 50.569283 ], [ 35.375977, 50.778155 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.248163 ], [ 34.145508, 51.563412 ], [ 34.387207, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.241256 ], [ 32.409668, 52.281602 ], [ 32.167969, 52.066000 ], [ 31.794434, 52.106505 ], [ 31.552734, 52.736292 ], [ 31.311035, 53.067627 ], [ 31.508789, 53.159947 ], [ 32.299805, 53.133590 ], [ 32.695312, 53.343993 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.787672 ], [ 31.794434, 53.969012 ], [ 31.376953, 54.149567 ], [ 30.761719, 54.813348 ], [ 30.981445, 55.078367 ], [ 30.871582, 55.553495 ], [ 29.904785, 55.788929 ], [ 29.377441, 55.665193 ], [ 29.223633, 55.912273 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.752723 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.468589 ], [ 27.729492, 57.786233 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.299552 ], [ 27.993164, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.081055, 60.500525 ], [ 30.212402, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.865169 ], [ 30.036621, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.553223, 64.951465 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.377441, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.464355, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.023926, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.324219, 55.015426 ], [ 22.763672, 54.851315 ], [ 22.653809, 54.584797 ], [ 22.741699, 54.329338 ], [ 20.895996, 54.316523 ], [ 19.665527, 54.418930 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.586426, 69.060712 ], [ 29.025879, 69.763757 ], [ 27.729492, 70.162746 ], [ 26.191406, 69.824471 ], [ 25.686035, 69.092100 ], [ 24.741211, 68.648556 ], [ 23.664551, 68.887274 ], [ 22.368164, 68.839735 ], [ 21.247559, 69.372573 ], [ 20.654297, 69.107777 ], [ 20.017090, 69.060712 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.007571 ], [ 16.765137, 68.015798 ], [ 15.380859, 66.513260 ], [ 15.117188, 66.196009 ], [ 14.677734, 65.802776 ], [ 12.260742, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.252029 ], [ 23.027344, 70.199994 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 16.984863, 80.050460 ], [ 18.259277, 79.702907 ], [ 21.555176, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.479004, 77.827957 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.734951 ], [ 13.183594, 78.025574 ], [ 11.228027, 78.870048 ], [ 10.437012, 79.651722 ], [ 13.183594, 80.008612 ], [ 13.710938, 79.659613 ], [ 15.139160, 79.675377 ], [ 15.534668, 80.016233 ], [ 16.984863, 80.050460 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.054255 ], [ 25.927734, 79.516660 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.564527 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.380371, 80.320120 ], [ 20.456543, 80.596909 ], [ 21.906738, 80.356995 ], [ 22.917480, 80.657741 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.719238, 77.851100 ], [ 22.500000, 77.442164 ], [ 20.720215, 77.674122 ], [ 21.423340, 77.934055 ], [ 20.808105, 78.255861 ], [ 22.895508, 78.455425 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.145996, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.518555, 69.060712 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.464355, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.826660, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.454590, 68.366801 ], [ 28.586426, 69.060712 ], [ 29.399414, 69.154740 ], [ 31.113281, 69.557553 ], [ 32.145996, 69.907667 ] ] ], [ [ [ 40.473633, 65.802776 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.348325 ], [ 44.187012, 67.949900 ], [ 43.461914, 68.568414 ], [ 46.252441, 68.244968 ], [ 46.823730, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.571289, 67.007428 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.142090, 67.525373 ], [ 50.229492, 67.999341 ], [ 53.723145, 68.855592 ], [ 54.470215, 68.807986 ], [ 53.481445, 68.204212 ], [ 54.733887, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.326660, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.277521 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.847193 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.232789 ], [ 68.510742, 68.089709 ], [ 69.191895, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.449842 ], [ 67.258301, 69.930300 ], [ 66.730957, 70.707212 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.931344 ], [ 69.191895, 72.842021 ], [ 69.938965, 73.041829 ], [ 72.597656, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.850586, 71.406172 ], [ 72.465820, 71.088305 ], [ 72.795410, 70.392606 ], [ 72.575684, 69.021414 ], [ 73.674316, 68.407268 ], [ 73.234863, 67.742759 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.280530 ], [ 75.058594, 67.759398 ], [ 74.465332, 68.326262 ], [ 74.948730, 68.989925 ], [ 73.850098, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.627197 ], [ 73.103027, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.663086, 72.829052 ], [ 75.168457, 72.854981 ], [ 75.695801, 72.302431 ], [ 75.300293, 71.335983 ], [ 76.354980, 71.152294 ], [ 75.915527, 71.869909 ], [ 77.585449, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.746432 ], [ 80.617676, 72.580829 ], [ 80.507812, 73.646359 ], [ 82.243652, 73.849286 ], [ 84.660645, 73.806447 ], [ 86.835938, 73.934634 ], [ 86.022949, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.140778 ], [ 90.000000, 75.573993 ], [ 90.263672, 75.639536 ], [ 91.757812, 75.715633 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.542411 ], [ 68.181152, 76.232138 ], [ 64.643555, 75.737303 ], [ 61.589355, 75.258649 ], [ 58.469238, 74.307353 ], [ 56.997070, 73.334161 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.546387, 70.721726 ], [ 56.953125, 70.634484 ], [ 53.679199, 70.765206 ], [ 53.415527, 71.208999 ], [ 51.613770, 71.476106 ], [ 51.459961, 72.012945 ], [ 52.470703, 72.228809 ], [ 52.448730, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.078669 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.253039 ], [ 64.511719, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 50.031738, 80.918027 ], [ 51.525879, 80.700447 ], [ 51.130371, 80.546518 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.338575 ], [ 48.757324, 80.174965 ], [ 47.592773, 80.008612 ], [ 46.516113, 80.245949 ], [ 47.065430, 80.557338 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.771192 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.513982 ], [ 49.108887, 80.753556 ], [ 50.031738, 80.918027 ] ] ], [ [ [ 91.757812, 80.495859 ], [ 91.757812, 80.257110 ], [ 91.186523, 80.342262 ], [ 91.757812, 80.495859 ] ] ] ] } } ] } ] } , @@ -225,9 +227,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.339844, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.193848, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.705169 ], [ 110.808105, -66.513260 ], [ 111.071777, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.873535, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.705169 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.025879, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.673828, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.398438, -66.513260 ], [ 124.123535, -66.626840 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.758301, -66.213739 ], [ 135.043945, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.296387, -66.513260 ], [ 136.625977, -66.783249 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.822754, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.502930, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.673828, -67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.631348, 1.428075 ], [ 113.818359, 1.230374 ], [ 112.873535, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.988720 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.731445, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.980469, -8.885072 ], [ 125.068359, -9.102097 ], [ 125.090332, -9.405710 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.991699, -9.297307 ], [ 124.980469, -8.885072 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.271681 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.164471 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.196777, -2.064982 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.613839 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.175781, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.833317 ], [ 133.066406, -2.460181 ], [ 133.791504, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.267090, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.354980, -8.537565 ], [ 122.014160, -8.472372 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.083496, -6.358975 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.533203, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.269043, -3.118576 ], [ 112.060547, -3.491489 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.236816, -2.943041 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 109.731445, 1.757537 ], [ 109.841309, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.988720 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.873535, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.631348, 1.428075 ], [ 114.741211, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.725078 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.721680, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.811371 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.069336, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.696879 ], [ 123.156738, -5.353521 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.477856 ], [ 121.750488, -4.850154 ], [ 121.486816, -4.587376 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.943041 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.091797, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.847168, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 127.001953, -3.140516 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.140516 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.979980, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.405710 ], [ 125.068359, -9.102097 ], [ 124.980469, -8.885072 ], [ 125.090332, -8.667918 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.613839 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.283203, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.096860 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.730076 ], [ 147.194824, -7.384258 ], [ 148.095703, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.080400 ], [ 149.260254, -9.514079 ], [ 150.051270, -9.687398 ], [ 149.743652, -9.882275 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.595821 ], [ 150.029297, -10.660608 ], [ 149.787598, -10.401378 ], [ 147.919922, -10.141932 ], [ 147.128906, -9.492408 ], [ 146.579590, -8.950193 ], [ 146.052246, -8.080985 ], [ 144.755859, -7.623887 ], [ 143.898926, -7.928675 ], [ 143.283691, -8.254983 ], [ 143.415527, -8.993600 ], [ 142.624512, -9.318990 ], [ 142.075195, -9.167179 ], [ 141.042480, -9.123792 ], [ 140.998535, -2.613839 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.324501 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.594118 ], [ 149.853516, -5.506640 ], [ 150.007324, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.462896 ], [ 151.083984, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.665527, -5.047171 ], [ 154.753418, -5.353521 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.027832, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.665527, -5.047171 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 151.479492, -2.789425 ], [ 152.248535, -3.250209 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.973861 ], [ 153.149414, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.798484 ], [ 151.391602, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.952148, -2.504085 ] ] ] ] } } ] } ] } , @@ -237,7 +239,11 @@ , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.549805, 26.450902 ], [ 89.362793, 26.017298 ], [ 89.824219, 25.958045 ], [ 89.912109, 25.264568 ], [ 90.000000, 25.264568 ], [ 90.878906, 25.125393 ], [ 91.801758, 25.145285 ], [ 92.373047, 24.966140 ], [ 91.911621, 24.126702 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.867676, 23.624395 ], [ 92.153320, 23.624395 ], [ 92.680664, 22.044913 ], [ 92.658691, 21.330315 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.285645, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.242188, 24.427145 ], [ 88.242188, 24.766785 ], [ 88.308105, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.740529 ], [ 88.242188, 25.839449 ], [ 88.549805, 26.450902 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.003394 ], [ 118.432617, 4.959615 ], [ 118.630371, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.631348, 1.428075 ], [ 113.818359, 1.208406 ], [ 112.873535, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.653320, 3.995781 ], [ 114.873047, 4.346411 ], [ 115.356445, 4.324501 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.162109, 5.681584 ], [ 101.821289, 5.812757 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.504085 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.955187 ], [ 101.403809, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.568848, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.471955 ], [ 102.766113, 21.677848 ], [ 103.205566, 20.756114 ], [ 104.436035, 20.756114 ], [ 104.831543, 19.890723 ], [ 104.194336, 19.621892 ], [ 103.908691, 19.269665 ], [ 105.095215, 18.667063 ], [ 106.567383, 16.594081 ], [ 107.314453, 15.897942 ], [ 107.578125, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.562318 ], [ 106.040039, 13.880746 ], [ 105.227051, 14.264383 ], [ 105.556641, 14.711135 ], [ 105.600586, 15.559544 ], [ 104.787598, 16.446622 ], [ 104.721680, 17.434511 ], [ 103.952637, 18.229351 ], [ 103.205566, 18.312811 ], [ 103.007812, 17.957832 ], [ 102.414551, 17.936929 ], [ 102.106934, 18.104087 ], [ 101.052246, 17.518344 ], [ 101.030273, 18.396230 ], [ 101.293945, 19.456234 ], [ 100.612793, 19.497664 ], [ 100.546875, 20.097206 ], [ 100.129395, 20.406420 ], [ 100.327148, 20.776659 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.207459 ], [ 101.799316, 21.166484 ], [ 101.645508, 22.309426 ], [ 102.172852, 22.471955 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.979359 ], [ 180.000000, 64.970064 ], [ 178.703613, 64.529548 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.562983 ], [ 179.230957, 62.298581 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.762729 ], [ 173.693848, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.833055 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.428261 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.557129, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.389082 ], [ 133.549805, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.103365 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.110352, 45.135555 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.204642 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 131.000977, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.752880 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.190430, 52.749594 ], [ 120.717773, 52.509535 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.134664 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.880478 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.134664 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.633789, 50.275299 ], [ 103.688965, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.898438, 51.508742 ], [ 99.975586, 51.631657 ], [ 98.854980, 52.038977 ], [ 97.822266, 51.013755 ], [ 98.239746, 50.415519 ], [ 97.272949, 49.724479 ], [ 95.822754, 49.979488 ], [ 94.812012, 50.007739 ], [ 94.152832, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.241211, 50.805935 ], [ 90.725098, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.385147 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.107170 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ] ] ], [ [ [ 142.668457, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.031250, 47.783635 ], [ 141.899414, 48.850258 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.944584 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.668457, 54.367759 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.164471 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.406109 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.417477 ], [ 121.069336, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.296276 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.841309, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.873535, 1.493971 ], [ 113.818359, 1.208406 ], [ 114.631348, 1.428075 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.579213 ], [ 99.689941, 3.162456 ], [ 100.634766, 2.086941 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.549308 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.725078 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.613281, 1.823423 ], [ 97.712402, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.959615 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.120534 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } ] } , @@ -276,6 +282,8 @@ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.031982, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.472168, 59.461826 ], [ -135.472412, 59.784051 ], [ -135.000000, 59.327585 ], [ -134.945068, 59.271495 ], [ -134.263916, 58.859224 ], [ -134.121094, 58.790978 ], [ -134.121094, 58.130121 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.882354 ], [ -148.216553, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.600586, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.402588, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.360381 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.399748 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.927334 ], [ -159.982910, 58.568252 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.113281, 61.496492 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.059082, 63.059937 ], [ -162.257080, 63.538763 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.763065 ], [ -160.960693, 64.220715 ], [ -161.510010, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.774125 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.335150 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.897336 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.750861 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.790978 ], [ -134.263916, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.327585 ], [ -135.472412, 59.784051 ], [ -136.472168, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.031982, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.513260 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.587583 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.249368 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.352051, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.124572 ], [ -180.637207, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.319003 ], [ -180.878906, 63.124572 ] ] ] ] } } ] } ] } , @@ -284,6 +292,8 @@ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.762207, 66.160511 ], [ -166.387939, 66.160511 ], [ -164.772949, 66.513260 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ] ] ], [ [ [ -161.740723, 66.160511 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.114476 ], [ -164.432373, 67.613405 ], [ -165.388184, 68.040461 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.368703 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.927734, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.696320 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.528560 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.117959 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.151558 ], [ -142.075195, 69.850978 ], [ -140.987549, 69.710489 ], [ -140.987549, 66.160511 ], [ -161.740723, 66.160511 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Canada" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.710489 ], [ -139.119873, 69.469116 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.895187 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.406738, 69.626510 ], [ -134.121094, 69.603549 ], [ -134.121094, 66.160511 ], [ -140.987549, 66.160511 ], [ -140.987549, 69.710489 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.878906, 69.236684 ], [ -180.000000, 68.962335 ], [ -177.550049, 68.200133 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.277100, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 69.236684 ] ] ], [ [ [ -180.000000, 71.514462 ], [ -179.868164, 71.556217 ], [ -179.022217, 71.556217 ], [ -177.572021, 71.269067 ], [ -177.659912, 71.130988 ], [ -178.692627, 70.891482 ], [ -180.000000, 70.830248 ], [ -180.878906, 70.790525 ], [ -180.878906, 71.230221 ], [ -180.000000, 71.514462 ] ] ] ] } } ] } ] } , @@ -303,9 +313,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.218994, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.691162, 29.477861 ], [ -95.592041, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.371826, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.447998, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.029297, 30.637912 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.807129, 32.519026 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.800996 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.082732 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.527588, 14.243087 ], [ -89.714355, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.604248, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.125922 ], [ -92.230225, 14.541050 ], [ -92.197266, 14.827991 ], [ -92.087402, 15.061515 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.714111, 16.688817 ], [ -91.076660, 16.920195 ], [ -91.450195, 17.245744 ], [ -90.999756, 17.256236 ], [ -90.999756, 17.811456 ], [ -90.000000, 17.821916 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 15.082732 ], [ -89.121094, 14.360191 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -89.121094, 15.082732 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 17.968283 ], [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.121094, 17.968283 ] ] ] } } ] } ] } , @@ -346,8 +354,6 @@ { "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.752686, -53.852527 ], [ -66.445312, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.961670, -54.895565 ], [ -67.554932, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.138672, -40.672306 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.797177 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.973145, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.049293 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.500752 ], [ -65.324707, -44.504341 ], [ -65.566406, -45.042478 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.576904, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.159424, -48.698212 ], [ -67.818604, -49.873398 ], [ -68.730469, -50.268277 ], [ -69.136963, -50.736455 ], [ -68.807373, -51.774638 ], [ -68.148193, -52.348763 ], [ -68.565674, -52.301761 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.322998, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.743408 ], [ -73.322754, -50.380502 ], [ -73.410645, -49.317961 ], [ -72.641602, -48.879167 ], [ -72.322998, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.890232 ], [ -71.553955, -45.560218 ], [ -71.652832, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.323242, -44.410240 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.413029 ], [ -72.147217, -42.252918 ], [ -71.740723, -42.057450 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.795654, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.522906 ], [ -68.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.554932, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.304138 ], [ -68.148193, -55.615589 ], [ -68.642578, -55.584555 ], [ -69.224854, -55.497527 ], [ -69.949951, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.257080, -54.495568 ], [ -73.278809, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.103516, -54.078729 ], [ -70.587158, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.522906 ] ] ], [ [ [ -71.795654, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.740723, -42.057450 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.413029 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.323242, -44.410240 ], [ -71.224365, -44.785734 ], [ -71.652832, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.890232 ], [ -72.443848, -47.739323 ], [ -72.322998, -48.246626 ], [ -72.641602, -48.879167 ], [ -73.410645, -49.317961 ], [ -73.322754, -50.380502 ], [ -72.971191, -50.743408 ], [ -72.312012, -50.680797 ], [ -72.322998, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.146973 ], [ -68.565674, -52.301761 ], [ -69.455566, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.902276 ], [ -71.004639, -53.833081 ], [ -71.422119, -53.859007 ], [ -72.553711, -53.533778 ], [ -73.696289, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.256348, -51.631657 ], [ -74.970703, -51.048301 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.717154 ], [ -74.124756, -46.942762 ], [ -75.640869, -46.649436 ], [ -74.685059, -45.767523 ], [ -74.344482, -44.103365 ], [ -73.234863, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.122673 ], [ -73.696289, -43.365126 ], [ -74.333496, -43.229195 ], [ -74.014893, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.751221, -40.313043 ], [ -71.795654, -40.313043 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Antarctica" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.802204 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.797852, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.839487 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.577148, -66.513260 ], [ -66.049805, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.173806 ], [ -63.621826, -64.900250 ], [ -62.995605, -64.642704 ], [ -62.039795, -64.586185 ], [ -61.413574, -64.273223 ], [ -60.710449, -64.077003 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.704722 ], [ -58.590088, -63.391522 ], [ -57.810059, -63.273182 ] ] ] } } ] } ] } , @@ -357,7 +363,7 @@ , { "type": "Feature", "properties": { "name": "Peru" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.054932 ], [ -74.443359, -0.538322 ], [ -74.124756, -1.010690 ], [ -73.652344, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.350415 ], [ -70.806885, -2.262595 ], [ -70.048828, -2.723583 ], [ -70.686035, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -70.795898, -4.258768 ], [ -70.927734, -4.401183 ], [ -71.740723, -4.598327 ], [ -72.894287, -5.276948 ], [ -72.960205, -5.747174 ], [ -73.212891, -6.096860 ], [ -73.114014, -6.631870 ], [ -73.718262, -6.926427 ], [ -73.718262, -7.340675 ], [ -73.981934, -7.525873 ], [ -73.564453, -8.428904 ], [ -73.015137, -9.037003 ], [ -73.223877, -9.459899 ], [ -72.564697, -9.524914 ], [ -72.180176, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.477295, -9.492408 ], [ -70.543213, -11.016689 ], [ -70.092773, -11.124507 ], [ -69.521484, -10.951978 ], [ -68.664551, -12.565287 ], [ -68.873291, -12.897489 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.334717, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.665354 ], [ -68.961182, -16.499299 ], [ -69.587402, -17.581194 ], [ -69.851074, -18.093644 ], [ -70.367432, -18.354526 ], [ -71.367188, -17.780074 ], [ -71.455078, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.273587 ], [ -76.003418, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.529785, -6.544560 ], [ -81.243896, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -80.178223, -3.820408 ], [ -80.463867, -4.061536 ], [ -80.441895, -4.423090 ], [ -80.024414, -4.346411 ], [ -79.617920, -4.455951 ], [ -79.200439, -4.959615 ], [ -78.640137, -4.554522 ], [ -78.453369, -3.875216 ], [ -77.838135, -3.008870 ], [ -76.629639, -2.613839 ], [ -75.541992, -1.559866 ], [ -75.234375, -0.911827 ], [ -75.366211, -0.153808 ], [ -75.102539, -0.054932 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Argentina" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.368896, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.677002, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.776760 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.612061, -27.127591 ], [ -57.612305, -27.401032 ], [ -56.480713, -27.547242 ], [ -55.689697, -27.391278 ], [ -54.788818, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.887639 ], [ -56.282959, -28.854296 ], [ -57.623291, -30.221102 ], [ -57.875977, -31.015279 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.045508 ], [ -58.348389, -33.266250 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.905980 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.933776 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.806885, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.114502, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.198173 ], [ -69.807129, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -68.994141, -27.527758 ], [ -68.291016, -26.902477 ], [ -68.587646, -26.509905 ], [ -68.378906, -26.185018 ], [ -68.411865, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Paraguay" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.040283, -19.342245 ], [ -59.117432, -19.362976 ], [ -58.183594, -19.870060 ], [ -58.161621, -20.179724 ], [ -57.864990, -20.735566 ], [ -57.930908, -22.095820 ], [ -56.876221, -22.289096 ], [ -56.469727, -22.085640 ], [ -55.799561, -22.360236 ], [ -55.612793, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.393066, -23.956136 ], [ -55.030518, -24.006326 ], [ -54.645996, -23.845650 ], [ -54.294434, -24.026397 ], [ -54.294434, -24.577100 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.627818 ], [ -55.689697, -27.391278 ], [ -56.480713, -27.547242 ], [ -57.612305, -27.401032 ], [ -58.612061, -27.127591 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.165173 ], [ -58.809814, -24.776760 ], [ -60.029297, -24.036431 ], [ -60.842285, -23.885838 ], [ -62.677002, -22.248429 ], [ -62.292480, -21.053744 ], [ -62.259521, -20.519644 ], [ -61.787109, -19.632240 ], [ -60.040283, -19.342245 ] ] ] } } , { "type": "Feature", "properties": { "name": "Chile" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, -17.581194 ], [ -69.093018, -18.260653 ], [ -68.961182, -18.989415 ], [ -68.444824, -19.404430 ], [ -68.752441, -20.375527 ], [ -68.214111, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.324219, -24.026397 ], [ -68.411865, -24.517139 ], [ -68.378906, -26.185018 ], [ -68.587646, -26.509905 ], [ -68.291016, -26.902477 ], [ -68.994141, -27.527758 ], [ -69.653320, -28.459033 ], [ -70.015869, -29.372602 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.363018 ], [ -70.070801, -33.091542 ], [ -69.807129, -33.275435 ], [ -69.818115, -34.198173 ], [ -70.389404, -35.173808 ], [ -70.367432, -36.004673 ], [ -71.114502, -36.659606 ], [ -71.114502, -37.579413 ], [ -70.806885, -38.556757 ], [ -71.411133, -38.916682 ], [ -71.674805, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.498535, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.718994, -25.710837 ], [ -70.400391, -23.634460 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.756364 ], [ -70.367432, -18.354526 ], [ -69.851074, -18.093644 ], [ -69.587402, -17.581194 ] ] ] } } ] } @@ -367,19 +373,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "United States" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.500350 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.235107, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.622292 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.421860 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.933776 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.520020, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.711233 ], [ -76.322021, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.860596, 36.544949 ], [ -75.728760, 35.550105 ], [ -76.354980, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.722949 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.033198 ], [ -80.057373, 26.873081 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.809782 ], [ -80.375977, 25.204941 ], [ -80.672607, 25.075648 ], [ -81.166992, 25.195000 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.488781 ], [ -82.847900, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.406738, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -90.878906, 41.640078 ], [ -69.960938, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cuba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.190863 ], [ -81.397705, 23.110049 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.662842, 20.735566 ], [ -74.926758, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.289551, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.849394 ], [ -77.080078, 20.406420 ], [ -77.486572, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.475342, 21.022983 ], [ -78.717041, 21.596151 ], [ -79.277344, 21.555284 ], [ -80.211182, 21.820708 ], [ -80.518799, 22.034730 ], [ -81.815186, 22.187405 ], [ -82.166748, 22.380556 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.902588, 22.156883 ], [ -84.045410, 21.912471 ], [ -84.539795, 21.800308 ], [ -84.968262, 21.892084 ], [ -84.440918, 22.197577 ], [ -84.232178, 22.563293 ], [ -83.770752, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Bahamas" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.204941 ], [ -77.882080, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.772217, 23.704895 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.204941 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.332764, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.833875 ], [ -77.816162, 26.578702 ], [ -78.903809, 26.421390 ], [ -78.980713, 26.784847 ], [ -78.508301, 26.863281 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guatemala" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.800996 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.923340, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.527588, 14.243087 ], [ -89.714355, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.615234, 13.902076 ], [ -90.878906, 13.912740 ], [ -90.878906, 16.066929 ], [ -90.472412, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.604248, 16.467695 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belize" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.099365, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.297119, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.022217, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.483887, 18.479609 ], [ -88.297119, 18.500447 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Honduras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.887376 ], [ -85.177002, 15.908508 ], [ -84.979248, 15.993015 ], [ -84.528809, 15.855674 ], [ -84.364014, 15.834536 ], [ -84.056396, 15.644197 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.262989 ], [ -83.144531, 14.997852 ], [ -83.485107, 15.008464 ], [ -83.627930, 14.881087 ], [ -83.968506, 14.743011 ], [ -84.221191, 14.743011 ], [ -84.451904, 14.615478 ], [ -84.649658, 14.668626 ], [ -84.814453, 14.817371 ], [ -84.924316, 14.785505 ], [ -85.045166, 14.551684 ], [ -85.144043, 14.562318 ], [ -85.166016, 14.349548 ], [ -85.506592, 14.072645 ], [ -85.693359, 13.955392 ], [ -85.803223, 13.838080 ], [ -86.088867, 14.040673 ], [ -86.308594, 13.763396 ], [ -86.517334, 13.774066 ], [ -86.748047, 13.752725 ], [ -86.726074, 13.261333 ], [ -86.879883, 13.250640 ], [ -87.000732, 13.025966 ], [ -87.319336, 12.983148 ], [ -87.484131, 13.293411 ], [ -87.791748, 13.378932 ], [ -87.725830, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.966054 ], [ -88.505859, 13.838080 ], [ -88.538818, 13.976715 ], [ -88.835449, 14.136576 ], [ -89.055176, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -88.681641, 15.347762 ], [ -88.220215, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.845105 ], [ -86.901855, 15.749963 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.887376 ], [ -86.000977, 16.003576 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nicaragua" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.485107, 15.008464 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.276367, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.560562 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.847656, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.649902, 10.941192 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 10.995120 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.210734 ], [ -85.704346, 11.081385 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.136005 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.550049, 13.058075 ], [ -87.385254, 12.908198 ], [ -87.319336, 12.983148 ], [ -87.000732, 13.025966 ], [ -86.879883, 13.250640 ], [ -86.726074, 13.261333 ], [ -86.748047, 13.752725 ], [ -86.517334, 13.774066 ], [ -86.308594, 13.763396 ], [ -86.088867, 14.040673 ], [ -85.803223, 13.838080 ], [ -85.693359, 13.955392 ], [ -85.506592, 14.072645 ], [ -85.166016, 14.349548 ], [ -85.144043, 14.562318 ], [ -85.045166, 14.551684 ], [ -84.924316, 14.785505 ], [ -84.814453, 14.817371 ], [ -84.649658, 14.668626 ], [ -84.451904, 14.615478 ], [ -84.221191, 14.743011 ], [ -83.968506, 14.743011 ], [ -83.627930, 14.881087 ], [ -83.485107, 15.008464 ] ] ] } } , { "type": "Feature", "properties": { "name": "Panama" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.013672, 9.546583 ], [ -79.057617, 9.449062 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.939340 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.928675 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.504089 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.112549, 8.993600 ], [ -79.552002, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.331083 ], [ -80.375977, 8.298470 ], [ -80.474854, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.264394 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.700105 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.957764, 8.222364 ], [ -82.913818, 8.418036 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.809082 ], [ -82.716064, 8.917634 ], [ -82.924805, 9.069551 ], [ -82.924805, 9.470736 ], [ -82.540283, 9.568251 ], [ -82.188721, 9.199715 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.026153 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.852507 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Haiti" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.619873, 19.165924 ], [ -71.696777, 18.781517 ], [ -71.938477, 18.615013 ], [ -71.685791, 18.312811 ], [ -71.707764, 18.041421 ], [ -72.366943, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.916016, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.443604, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.784424, 19.103648 ], [ -72.784424, 19.476950 ], [ -73.410645, 19.632240 ], [ -73.190918, 19.911384 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Dominican Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.246826, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.198044 ], [ -69.158936, 18.417079 ], [ -69.620361, 18.375379 ], [ -69.949951, 18.427502 ], [ -70.125732, 18.239786 ], [ -70.510254, 18.177169 ], [ -70.664062, 18.427502 ], [ -70.993652, 18.281518 ], [ -71.400146, 17.591667 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -71.685791, 18.312811 ], [ -71.938477, 18.615013 ], [ -71.696777, 18.781517 ], [ -71.619873, 19.165924 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ] ] ] } } , { "type": "Feature", "properties": { "name": "Brazil" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.974365, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.710693, 2.251617 ], [ -59.644775, 1.779499 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.106689, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.856365 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.097920 ], [ -53.778076, 2.372369 ], [ -53.547363, 2.328460 ], [ -53.415527, 2.054003 ], [ -52.932129, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.149201 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.603516, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.444580, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.213867, 0.977736 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.862549, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.087581 ], [ -64.610596, 1.329226 ], [ -64.193115, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.405299 ], [ -64.270020, 2.493109 ], [ -64.401855, 3.118576 ], [ -64.368896, 3.798484 ], [ -64.808350, 4.050577 ], [ -64.621582, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.797852, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.175049, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.779785, -0.878872 ], [ -48.175049, -0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Trinidad and Tobago" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.887254 ], [ -60.897217, 10.854886 ], [ -60.930176, 10.109486 ], [ -61.765137, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guyana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.754639, 8.363693 ], [ -59.095459, 7.993957 ], [ -58.480225, 7.340675 ], [ -58.447266, 6.828261 ], [ -58.073730, 6.806444 ], [ -57.139893, 5.965754 ], [ -57.304688, 5.069058 ], [ -57.908936, 4.806365 ], [ -57.854004, 4.576425 ], [ -58.040771, 4.061536 ], [ -57.601318, 3.326986 ], [ -57.282715, 3.326986 ], [ -57.150879, 2.767478 ], [ -56.535645, 1.900286 ], [ -56.777344, 1.856365 ], [ -57.337646, 1.944207 ], [ -57.656250, 1.680667 ], [ -58.106689, 1.504954 ], [ -58.425293, 1.461023 ], [ -58.535156, 1.263325 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.779499 ], [ -59.710693, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.809570, 3.601142 ], [ -59.534912, 3.951941 ], [ -59.765625, 4.423090 ], [ -60.106201, 4.576425 ], [ -59.974365, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.402588, 5.954827 ], [ -61.138916, 6.227934 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.850078 ], [ -60.292969, 7.046379 ], [ -60.633545, 7.416942 ], [ -60.545654, 7.776309 ], [ -59.754639, 8.363693 ] ] ] } } , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.119878 ], [ -53.415527, 2.054003 ], [ -53.547363, 2.328460 ], [ -53.778076, 2.372369 ], [ -54.085693, 2.097920 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.393311, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ] } } , @@ -431,11 +437,11 @@ , { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.021355 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.672306 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.899583 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.668419 ], [ -3.416748, 36.659606 ], [ -4.361572, 36.677231 ], [ -4.987793, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.229248, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.367502 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.631077 ], [ -7.064209, 39.707187 ], [ -7.020264, 40.178873 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Senegal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.578857, 16.594081 ], [ -14.095459, 16.299051 ], [ -13.436279, 16.035255 ], [ -12.832031, 15.305380 ], [ -12.172852, 14.615478 ], [ -12.117920, 13.987376 ], [ -11.920166, 13.421681 ], [ -11.546631, 13.143678 ], [ -11.469727, 12.747516 ], [ -11.513672, 12.436577 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.458033 ], [ -12.271729, 12.350734 ], [ -12.491455, 12.329269 ], [ -13.216553, 12.576010 ], [ -15.545654, 12.629618 ], [ -15.809326, 12.511665 ], [ -16.149902, 12.543840 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.143678 ], [ -15.930176, 13.122280 ], [ -15.688477, 13.272026 ], [ -15.512695, 13.272026 ], [ -15.139160, 13.507155 ], [ -14.710693, 13.293411 ], [ -14.271240, 13.282719 ], [ -13.842773, 13.507155 ], [ -14.040527, 13.795406 ], [ -14.370117, 13.624633 ], [ -14.688721, 13.624633 ], [ -15.084229, 13.870080 ], [ -15.391846, 13.859414 ], [ -15.622559, 13.624633 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.721761 ], [ -17.182617, 14.912938 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.116943, 16.457159 ], [ -15.622559, 16.362310 ], [ -15.128174, 16.583552 ], [ -14.578857, 16.594081 ] ] ] } } +{ "type": "Feature", "properties": { "name": "W. Sahara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -8.679199, 25.878994 ], [ -11.964111, 25.928407 ], [ -11.931152, 23.372514 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.766051 ], [ -12.930908, 21.320081 ], [ -16.842041, 21.330315 ], [ -17.061768, 20.992214 ], [ -17.017822, 21.422390 ], [ -14.743652, 21.493964 ], [ -14.622803, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.502441, 24.766785 ], [ -12.030029, 26.027170 ], [ -11.711426, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.546875, 26.990619 ], [ -10.184326, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.789062, 27.117813 ], [ -8.811035, 27.654338 ], [ -8.668213, 27.654338 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Guinea-Bissau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.545654, 12.629618 ], [ -13.699951, 12.586732 ], [ -13.710938, 12.243392 ], [ -13.820801, 12.136005 ], [ -13.743896, 11.813588 ], [ -13.897705, 11.673755 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.501557 ], [ -14.677734, 11.523088 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.149902, 12.543840 ], [ -15.809326, 12.511665 ], [ -15.545654, 12.629618 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mauritania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.482178, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.496032 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.125159 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.832031, 15.305380 ], [ -13.436279, 16.035255 ], [ -14.095459, 16.299051 ], [ -14.578857, 16.594081 ], [ -15.128174, 16.583552 ], [ -15.622559, 16.362310 ], [ -16.116943, 16.457159 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.667769 ], [ -16.270752, 17.161786 ], [ -16.138916, 18.104087 ], [ -16.248779, 19.093267 ], [ -16.369629, 19.590844 ], [ -16.270752, 20.086889 ], [ -16.534424, 20.560796 ], [ -17.061768, 20.992214 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.320081 ], [ -13.117676, 22.766051 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.372514 ], [ -11.964111, 25.928407 ], [ -8.679199, 25.878994 ], [ -8.679199, 27.391278 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sierra Leone" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.832520, 9.687398 ], [ -10.623779, 9.264779 ], [ -10.656738, 8.971897 ], [ -10.491943, 8.711359 ], [ -10.502930, 8.341953 ], [ -10.228271, 8.407168 ], [ -10.689697, 7.939556 ], [ -11.140137, 7.395153 ], [ -11.195068, 7.100893 ], [ -11.436768, 6.784626 ], [ -11.700439, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.157118 ], [ -13.238525, 8.895926 ], [ -12.711182, 9.340672 ], [ -12.590332, 9.622414 ], [ -12.425537, 9.828154 ], [ -12.150879, 9.860628 ], [ -11.909180, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.491455, 12.329269 ], [ -12.271729, 12.350734 ], [ -12.205811, 12.458033 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.436577 ], [ -11.458740, 12.071553 ], [ -11.293945, 12.071553 ], [ -11.030273, 12.211180 ], [ -10.865479, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.845847 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.189704 ], [ -9.327393, 12.329269 ], [ -9.129639, 12.307802 ], [ -8.898926, 12.082296 ], [ -8.778076, 11.813588 ], [ -8.371582, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.613281, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.327637, 10.487812 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.131117 ], [ -8.305664, 9.784851 ], [ -8.074951, 9.373193 ], [ -7.833252, 8.570158 ], [ -8.195801, 8.450639 ], [ -8.294678, 8.309341 ], [ -8.217773, 8.124491 ], [ -8.272705, 7.689217 ], [ -8.437500, 7.678329 ], [ -8.723145, 7.710992 ], [ -8.920898, 7.307985 ], [ -9.206543, 7.307985 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.008545, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.341953 ], [ -10.491943, 8.711359 ], [ -10.656738, 8.971897 ], [ -10.623779, 9.264779 ], [ -10.832520, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.909180, 10.044585 ], [ -12.150879, 9.860628 ], [ -12.425537, 9.828154 ], [ -12.590332, 9.622414 ], [ -12.711182, 9.340672 ], [ -13.238525, 8.895926 ], [ -13.677979, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.206813 ], [ -14.688721, 10.649811 ], [ -14.831543, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.677734, 11.523088 ], [ -14.381104, 11.501557 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.673755 ], [ -13.743896, 11.813588 ], [ -13.820801, 12.136005 ], [ -13.710938, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } , { "type": "Feature", "properties": { "name": "Mali" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.966013 ], [ -1.999512, 14.551684 ], [ -2.186279, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.098145, 13.539201 ], [ -3.515625, 13.336175 ], [ -3.999023, 13.475106 ], [ -4.273682, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.706031 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.811768, 10.217625 ], [ -6.042480, 10.098670 ], [ -6.207275, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.668701, 10.422988 ], [ -6.844482, 10.131117 ], [ -7.624512, 10.141932 ], [ -7.899170, 10.293301 ], [ -8.031006, 10.206813 ], [ -8.327637, 10.487812 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.613281, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.371582, 11.393879 ], [ -8.778076, 11.813588 ], [ -8.898926, 12.082296 ], [ -9.129639, 12.307802 ], [ -9.327393, 12.329269 ], [ -9.569092, 12.189704 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.845847 ], [ -10.590820, 11.921103 ], [ -10.865479, 12.178965 ], [ -11.030273, 12.211180 ], [ -11.293945, 12.071553 ], [ -11.458740, 12.071553 ], [ -11.513672, 12.436577 ], [ -11.469727, 12.747516 ], [ -11.546631, 13.143678 ], [ -11.920166, 13.421681 ], [ -12.117920, 13.987376 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.125159 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.204125 ], [ -5.482178, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } , @@ -451,7 +457,7 @@ , { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.972422 ], [ 0.878906, 42.722804 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.028745 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.062638 ], [ -2.955322, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.640169 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.972422 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Ireland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.128649 ], [ -7.360840, 54.591163 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.665741 ], [ -9.975586, 51.815407 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.569580, 55.128649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.999268, 58.631217 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.686533 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.866991 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.906115 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.862497 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.780029, 50.771208 ], [ -2.482910, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.155786 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.976807, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.835958 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.844971, 54.788017 ], [ -5.075684, 55.059495 ], [ -4.713135, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.778809, 57.815504 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -2.999268, 58.631217 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.360840, 54.591163 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.564472 ], [ -5.405273, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.028745 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 0.878906, 42.722804 ], [ 0.878906, 41.021355 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.672306 ], [ 0.318604, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.376809 ], [ -6.668701, 41.877741 ], [ -7.250977, 41.918629 ], [ -7.415771, 41.787697 ], [ -8.009033, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.668213, 42.130821 ], [ -9.030762, 41.877741 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.020714 ], [ -7.976074, 43.747289 ] ] ] } } ] } @@ -485,21 +491,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.161377, 0.878872 ], [ 13.842773, 0.043945 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.560294 ], [ 14.425049, -1.340210 ], [ 14.304199, -1.999106 ], [ 13.996582, -2.471157 ], [ 13.117676, -2.427252 ], [ 12.579346, -1.955187 ], [ 12.502441, -2.394322 ], [ 11.821289, -2.515061 ], [ 11.480713, -2.767478 ], [ 11.854248, -3.425692 ], [ 11.096191, -3.984821 ], [ 10.063477, -2.975956 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.195557, 0.000000 ], [ 9.294434, 0.274657 ], [ 9.459229, 0.878872 ], [ 14.161377, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.453125, 0.878872 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.955766 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.021674 ], [ 30.421143, -1.142502 ], [ 29.827881, -1.450040 ], [ 29.586182, -1.340210 ], [ 29.586182, -0.593251 ], [ 29.816895, -0.208740 ], [ 29.827881, 0.000000 ], [ 29.882812, 0.604237 ], [ 30.003662, 0.878872 ], [ 34.453125, 0.878872 ] ] ] } } -, { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 0.878872 ], [ 43.143311, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 41.000977, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.989990, 0.878872 ], [ 43.857422, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "name": "Dem. Rep. Congo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.003662, 0.878872 ], [ 29.882812, 0.604237 ], [ 29.827881, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.593251 ], [ 29.586182, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.256592, -2.218684 ], [ 29.124756, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.244110 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.611582 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.531494, -12.704651 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.931852 ], [ 25.751953, -11.792080 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.092166 ], [ 22.214355, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.807861, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.752930, -7.917793 ], [ 21.730957, -7.297088 ], [ 20.522461, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.155400 ], [ 19.171143, -7.743651 ], [ 19.017334, -7.993957 ], [ 18.468018, -7.852499 ], [ 18.138428, -7.993957 ], [ 17.479248, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.107784 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.255068 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.216309, -4.795417 ], [ 14.589844, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.413574, -1.746556 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.065918 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.296630 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Burundi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.350415 ], [ 30.476074, -2.416276 ], [ 30.531006, -2.811371 ], [ 30.750732, -3.041783 ], [ 30.750732, -3.359889 ], [ 30.509033, -3.568248 ], [ 30.124512, -4.094411 ], [ 29.750977, -4.455951 ], [ 29.344482, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.844290 ], [ 29.630127, -2.921097 ], [ 29.937744, -2.350415 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Angola" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.381348, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.479248, -8.070107 ], [ 18.138428, -7.993957 ], [ 18.468018, -7.852499 ], [ 19.017334, -7.993957 ], [ 19.171143, -7.743651 ], [ 19.423828, -7.155400 ], [ 20.039062, -7.122696 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.522461, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.807861, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.214355, -9.893099 ], [ 22.159424, -11.092166 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.918907 ], [ 21.939697, -12.897489 ], [ 21.895752, -16.088042 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.528821 ], [ 21.379395, -17.936929 ], [ 18.962402, -17.790535 ], [ 18.270264, -17.308688 ], [ 14.216309, -17.350638 ], [ 14.062500, -17.424029 ], [ 13.469238, -16.972741 ], [ 12.821045, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.183838, -14.455958 ], [ 12.502441, -13.549881 ], [ 12.744141, -13.143678 ], [ 13.315430, -12.490214 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.570158 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.107784 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.867403 ] ] ], [ [ [ 12.623291, -4.444997 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.255068 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 12.326660, -4.609278 ], [ 12.623291, -4.444997 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Namibia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.821045, -16.941215 ], [ 13.469238, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.216309, -17.350638 ], [ 18.270264, -17.308688 ], [ 18.962402, -17.790535 ], [ 21.379395, -17.936929 ], [ 23.214111, -17.528821 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.361125 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.224854, -17.895114 ], [ 23.576660, -18.281518 ], [ 23.203125, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.917969, -18.250220 ], [ 20.885010, -21.820708 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.979312 ], [ 18.468018, -29.046566 ], [ 17.841797, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.226562, -28.362402 ], [ 16.831055, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.216064, -27.098254 ], [ 14.996338, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.414062, -23.855698 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.875732, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.051734 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.308688 ], [ 12.216797, -17.109293 ], [ 12.821045, -16.941215 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Zambia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.344238, -8.244110 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.591884 ], [ 31.563721, -8.765653 ], [ 32.189941, -8.928487 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.531020 ], [ 33.321533, -10.800933 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.436577 ], [ 32.991943, -12.790375 ], [ 32.695312, -13.720708 ], [ 33.211670, -13.976715 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.393931 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.298199 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.968283 ], [ 26.389160, -17.853290 ], [ 25.268555, -17.738223 ], [ 25.081787, -17.664960 ], [ 25.081787, -17.581194 ], [ 24.686279, -17.361125 ], [ 24.038086, -17.298199 ], [ 23.214111, -17.528821 ], [ 22.565918, -16.899172 ], [ 21.895752, -16.088042 ], [ 21.939697, -12.897489 ], [ 24.016113, -12.918907 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.243062 ], [ 23.917236, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.792080 ], [ 26.553955, -11.931852 ], [ 27.169189, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.531494, -12.704651 ], [ 28.937988, -13.250640 ], [ 29.707031, -13.261333 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.377686, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.611582 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.244110 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Zimbabwe" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.506619 ], [ 30.344238, -15.887376 ], [ 31.179199, -15.866242 ], [ 31.640625, -16.077486 ], [ 31.849365, -16.320139 ], [ 32.332764, -16.393931 ], [ 32.849121, -16.720385 ], [ 32.849121, -17.978733 ], [ 32.662354, -18.677471 ], [ 32.618408, -19.425154 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.190186, -22.258597 ], [ 30.662842, -22.156883 ], [ 30.322266, -22.278931 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.095820 ], [ 28.795166, -21.637005 ], [ 28.026123, -21.483741 ], [ 27.729492, -20.858812 ], [ 27.729492, -20.499064 ], [ 27.301025, -20.396123 ], [ 26.169434, -19.300775 ], [ 25.850830, -18.719097 ], [ 25.653076, -18.542117 ], [ 25.268555, -17.738223 ], [ 26.389160, -17.853290 ], [ 26.707764, -17.968283 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.298199 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.393931 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Tanzania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.955766 ], [ 34.079590, -1.065612 ], [ 37.705078, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.210205, -4.674980 ], [ 38.748779, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.254150, -8.015716 ], [ 39.188232, -8.483239 ], [ 39.539795, -9.112945 ], [ 39.957275, -10.098670 ], [ 40.319824, -10.314919 ], [ 39.528809, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.275387 ], [ 37.474365, -11.566144 ], [ 36.782227, -11.598432 ], [ 36.518555, -11.727546 ], [ 35.310059, -11.436955 ], [ 34.562988, -11.523088 ], [ 34.277344, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.189941, -8.928487 ], [ 31.563721, -8.765653 ], [ 31.157227, -8.591884 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.344482, -4.499762 ], [ 29.750977, -4.455951 ], [ 30.124512, -4.094411 ], [ 30.509033, -3.568248 ], [ 30.750732, -3.359889 ], [ 30.750732, -3.041783 ], [ 30.531006, -2.811371 ], [ 30.476074, -2.416276 ], [ 30.761719, -2.284551 ], [ 30.816650, -1.702630 ], [ 30.421143, -1.142502 ], [ 30.772705, -1.021674 ], [ 31.871338, -1.032659 ], [ 33.903809, -0.955766 ] ] ] } } , { "type": "Feature", "properties": { "name": "South Africa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.278931 ], [ 30.662842, -22.156883 ], [ 31.190186, -22.258597 ], [ 31.673584, -23.664651 ], [ 31.937256, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.849337 ], [ 31.333008, -25.661333 ], [ 31.047363, -25.730633 ], [ 30.948486, -26.027170 ], [ 30.684814, -26.401711 ], [ 30.684814, -26.745610 ], [ 31.289062, -27.283926 ], [ 31.871338, -27.176469 ], [ 32.069092, -26.735799 ], [ 32.838135, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.758028 ], [ 31.333008, -29.401320 ], [ 30.904541, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.778038 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.916748, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.994385, -33.916013 ], [ 22.576904, -33.870416 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.863525, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.435613 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.732393 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.831055, -28.081674 ], [ 17.226562, -28.362402 ], [ 17.391357, -28.786918 ], [ 17.841797, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.979312 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.764160, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.895996, -26.833875 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.274504 ], [ 23.741455, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.492868 ], [ 25.949707, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.246965 ], [ 27.125244, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ], [ [ 28.542480, -28.652031 ], [ 28.081055, -28.854296 ], [ 27.531738, -29.248063 ], [ 27.004395, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.114014, -30.552800 ], [ 28.289795, -30.230595 ], [ 28.850098, -30.069094 ], [ 29.025879, -29.745302 ], [ 29.322510, -29.257649 ], [ 28.981934, -28.960089 ], [ 28.542480, -28.652031 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Lesotho" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.652031 ], [ 28.981934, -28.960089 ], [ 29.322510, -29.257649 ], [ 29.025879, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.230595 ], [ 28.114014, -30.552800 ], [ 27.751465, -30.647364 ], [ 27.004395, -29.878755 ], [ 27.531738, -29.248063 ], [ 28.081055, -28.854296 ], [ 28.542480, -28.652031 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Mozambique" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.319824, -10.314919 ], [ 40.484619, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.484619, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.591667 ], [ 36.287842, -18.667063 ], [ 35.903320, -18.843913 ], [ 35.200195, -19.559790 ], [ 34.793701, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.146708 ], [ 35.562744, -22.095820 ], [ 35.540771, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.477150 ], [ 34.222412, -24.816654 ], [ 33.013916, -25.363882 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.155438 ], [ 32.915039, -26.214591 ], [ 32.838135, -26.745610 ], [ 32.069092, -26.735799 ], [ 31.992188, -26.293415 ], [ 31.838379, -25.849337 ], [ 31.750488, -25.482951 ], [ 31.937256, -24.367114 ], [ 31.673584, -23.664651 ], [ 31.190186, -22.258597 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.618408, -19.425154 ], [ 32.662354, -18.677471 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.720385 ], [ 32.332764, -16.393931 ], [ 31.849365, -16.320139 ], [ 31.640625, -16.077486 ], [ 31.179199, -15.866242 ], [ 30.344238, -15.887376 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.976715 ], [ 33.793945, -14.455958 ], [ 34.068604, -14.360191 ], [ 34.464111, -14.615478 ], [ 34.519043, -15.019075 ], [ 34.310303, -15.485445 ], [ 34.387207, -16.183024 ], [ 35.035400, -16.804541 ], [ 35.343018, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.694580, -14.615478 ], [ 35.266113, -13.891411 ], [ 34.914551, -13.571242 ], [ 34.562988, -13.581921 ], [ 34.277344, -12.286334 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.727546 ], [ 36.782227, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.275387 ], [ 38.430176, -11.286161 ], [ 39.528809, -10.898042 ], [ 40.319824, -10.314919 ] ] ] } } ] } ] } , @@ -513,35 +517,41 @@ , { "type": "Feature", "properties": { "name": "Ghana" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.092166 ], [ 0.000000, 11.016689 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.065674, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -0.878906, 5.112830 ], [ -0.878906, 10.951978 ], [ -0.769043, 10.930405 ], [ -0.439453, 11.092166 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.027832, 40.838749 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.621338, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.690281 ], [ 19.962158, 39.909736 ], [ 19.412842, 40.245992 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.917480, 41.640078 ], [ 22.950439, 41.343825 ], [ 22.763672, 41.310824 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.153842 ], [ 21.763916, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.027832, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.511475, 41.640078 ], [ 22.917480, 41.640078 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.499512, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.343825 ], [ 22.917480, 41.640078 ], [ 26.114502, 41.640078 ] ] ] } } , { "type": "Feature", "properties": { "name": "Tunisia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.514160, 37.343959 ], [ 10.217285, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.107178, 36.897194 ], [ 10.601807, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.338135, 33.779147 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.436768, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.756196 ], [ 9.953613, 31.372399 ], [ 10.063477, 30.958769 ], [ 9.975586, 30.533877 ], [ 9.481201, 30.306503 ], [ 9.063721, 32.101190 ], [ 8.437500, 32.500496 ], [ 8.437500, 32.750323 ], [ 7.613525, 33.339707 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.651285 ], [ 8.382568, 35.478565 ], [ 8.217773, 36.430122 ], [ 8.426514, 36.941111 ], [ 9.514160, 37.343959 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Libya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.787275 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.259265 ], [ 15.721436, 31.372399 ], [ 16.611328, 31.175210 ], [ 18.028564, 30.760719 ], [ 19.094238, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.061035, 30.987028 ], [ 19.819336, 31.746854 ], [ 20.137939, 32.231390 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.184911 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.927979, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.656816 ], [ 24.708252, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 19.993998 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.402765 ], [ 14.150391, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.568604, 24.096619 ], [ 10.777588, 24.557116 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.327393, 26.096255 ], [ 9.722900, 26.509905 ], [ 9.635010, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.689941, 28.139816 ], [ 9.865723, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.975586, 30.533877 ], [ 10.063477, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.756196 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Nigeria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.859414 ], [ 6.448975, 13.485790 ], [ 6.822510, 13.111580 ], [ 7.338867, 13.090179 ], [ 7.811279, 13.336175 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.843938 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.239945 ], [ 10.997314, 13.389620 ], [ 11.535645, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.326416, 13.549881 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.899604 ], [ 14.414062, 11.566144 ], [ 13.579102, 10.800933 ], [ 13.315430, 10.152746 ], [ 13.172607, 9.633246 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.711359 ], [ 12.216797, 8.298470 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.063232, 6.642783 ], [ 10.502930, 7.057282 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.446318 ], [ 9.239502, 6.446318 ], [ 8.756104, 5.473832 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.605052 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 2.746582, 7.863382 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.438224 ], [ 3.713379, 10.055403 ], [ 3.603516, 10.325728 ], [ 3.801270, 10.736175 ], [ 3.570557, 11.329253 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.742053 ], [ 5.449219, 13.859414 ] ] ] } } , { "type": "Feature", "properties": { "name": "Togo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.780029, 10.466206 ], [ 1.428223, 9.817329 ], [ 1.461182, 9.329831 ], [ 1.669922, 9.123792 ], [ 1.625977, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.065674, 5.922045 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.373535, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Eq. Guinea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.656982, 2.284551 ], [ 11.282959, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.153487 ], [ 9.656982, 2.284551 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Gabon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.755371, 2.328460 ], [ 12.359619, 2.185749 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 13.007812, 1.823423 ], [ 13.282471, 1.307260 ], [ 14.029541, 1.395126 ], [ 14.282227, 1.197423 ], [ 13.842773, 0.032959 ], [ 13.875732, 0.000000 ], [ 14.315186, -0.560294 ], [ 14.359131, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.195557, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.282959, 2.262595 ], [ 11.755371, 2.328460 ] ] ] } } , { "type": "Feature", "properties": { "name": "Central African Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.862549, 11.135287 ], [ 22.983398, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.676569 ], [ 23.400879, 9.264779 ], [ 23.466797, 8.950193 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.222364 ], [ 25.114746, 7.819847 ], [ 25.125732, 7.493196 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.048340, 5.123772 ], [ 26.400146, 5.145657 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.136719, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.101887 ], [ 23.302002, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.708740, 4.631179 ], [ 22.412109, 4.028659 ], [ 21.665039, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.685930 ], [ 19.467773, 5.025283 ], [ 18.940430, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.138672, 3.721745 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.040283, 3.853293 ], [ 14.952393, 4.203986 ], [ 14.479980, 4.729727 ], [ 14.556885, 5.025283 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.402648 ], [ 15.281982, 7.416942 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.710205, 7.504089 ], [ 17.962646, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.918457, 8.624472 ], [ 18.819580, 8.982749 ], [ 19.094238, 9.069551 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.730957, 10.563422 ], [ 22.236328, 10.973550 ], [ 22.862549, 11.135287 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Chad" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.402765 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.510986, 11.673755 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.135287 ], [ 22.236328, 10.973550 ], [ 21.730957, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.819580, 8.982749 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.885147 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 15.435791, 7.689217 ], [ 15.128174, 8.374562 ], [ 14.985352, 8.798225 ], [ 14.545898, 8.961045 ], [ 13.952637, 9.546583 ], [ 14.172363, 10.022948 ], [ 14.633789, 9.914744 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.930420, 10.887254 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.211180 ], [ 14.501953, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.963623, 13.998037 ], [ 13.546143, 14.360191 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.402765 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Cameroon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.854649 ], [ 14.897461, 12.211180 ], [ 14.963379, 11.555380 ], [ 14.930420, 10.887254 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.633789, 9.914744 ], [ 14.172363, 10.022948 ], [ 13.952637, 9.546583 ], [ 14.545898, 8.961045 ], [ 14.985352, 8.798225 ], [ 15.128174, 8.374562 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.402648 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.203986 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.966167 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.185749 ], [ 11.755371, 2.328460 ], [ 11.282959, 2.262595 ], [ 9.656982, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.953857, 3.897138 ], [ 8.745117, 4.346411 ], [ 8.492432, 4.488809 ], [ 8.503418, 4.773521 ], [ 8.756104, 5.473832 ], [ 9.239502, 6.446318 ], [ 9.525146, 6.446318 ], [ 10.118408, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.063232, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.298470 ], [ 12.755127, 8.711359 ], [ 12.952881, 9.416548 ], [ 13.172607, 9.633246 ], [ 13.315430, 10.152746 ], [ 13.579102, 10.800933 ], [ 14.414062, 11.566144 ], [ 14.468994, 11.899604 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.501953, 12.854649 ] ] ] } } , { "type": "Feature", "properties": { "name": "N. Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.573975, 35.666222 ], [ 33.903809, 35.245619 ], [ 33.980713, 35.056980 ], [ 33.870850, 35.092945 ], [ 33.673096, 35.012002 ], [ 33.530273, 35.038992 ], [ 33.475342, 34.994004 ], [ 33.453369, 35.101934 ], [ 33.387451, 35.164828 ], [ 33.189697, 35.173808 ], [ 32.926025, 35.083956 ], [ 32.739258, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.380093 ], [ 33.673096, 35.371135 ], [ 34.573975, 35.666222 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Cyprus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.387451, 35.164828 ], [ 33.453369, 35.101934 ], [ 33.475342, 34.994004 ], [ 33.530273, 35.038992 ], [ 33.673096, 35.012002 ], [ 33.870850, 35.092945 ], [ 33.980713, 35.056980 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.497559, 34.696461 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.926025, 35.083956 ], [ 33.189697, 35.173808 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lebanon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.002197, 34.642247 ], [ 36.452637, 34.587997 ], [ 36.617432, 34.198173 ], [ 36.068115, 33.824794 ], [ 35.826416, 33.275435 ], [ 35.551758, 33.266250 ], [ 35.463867, 33.082337 ], [ 35.134277, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ] ] ] } } , { "type": "Feature", "properties": { "name": "Palestine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.189209, 32.528289 ], [ 35.551758, 32.389239 ], [ 35.551758, 31.784217 ], [ 35.397949, 31.484893 ], [ 34.925537, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.233154, 31.756196 ], [ 34.980469, 31.868228 ], [ 35.189209, 32.528289 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Jordan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.199219, 32.157012 ], [ 39.012451, 32.008076 ], [ 37.001953, 31.503629 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.334954 ], [ 37.507324, 30.002517 ], [ 36.738281, 29.859701 ], [ 36.507568, 29.506549 ], [ 36.068115, 29.190533 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.496988 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.484893 ], [ 35.551758, 31.784217 ], [ 35.551758, 32.389239 ], [ 35.727539, 32.704111 ], [ 36.837158, 32.314991 ], [ 38.792725, 33.376412 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.166992, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.594971, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.561279, 41.541478 ], [ 42.626953, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.406738, 40.002372 ], [ 44.791260, 39.707187 ], [ 44.110107, 39.427707 ], [ 44.428711, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.780273, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.378888 ], [ 42.352295, 37.230328 ], [ 41.209717, 37.072710 ], [ 40.671387, 37.090240 ], [ 39.528809, 36.712467 ], [ 38.704834, 36.712467 ], [ 38.166504, 36.897194 ], [ 37.067871, 36.624345 ], [ 36.738281, 36.818080 ], [ 36.683350, 36.253133 ], [ 36.156006, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.102376 ], [ 31.706543, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.399170, 36.261992 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.828125, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.166992, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.930115 ], [ 26.323242, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.114014, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Uganda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.002686, 4.247812 ], [ 34.486084, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.900286 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.593251 ], [ 29.816895, -0.208740 ], [ 29.827881, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.091553, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.860596, 1.845384 ], [ 31.179199, 2.196727 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.502455 ], [ 31.245117, 3.776559 ], [ 31.882324, 3.557283 ], [ 32.684326, 3.787522 ], [ 33.387451, 3.787522 ], [ 34.002686, 4.247812 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.157012 ], [ 40.407715, 31.886887 ], [ 41.890869, 31.184609 ], [ 44.714355, 29.180941 ], [ 45.000000, 29.171349 ], [ 45.878906, 29.132970 ], [ 45.878906, 17.287709 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.066162, 17.403063 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.121338, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.946045, 19.487308 ], [ 40.253906, 20.169411 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.639893, 28.052591 ], [ 34.793701, 28.603814 ], [ 34.837646, 28.950476 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.190533 ], [ 36.507568, 29.506549 ], [ 36.738281, 29.859701 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.334954 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.503629 ], [ 39.012451, 32.008076 ], [ 39.199219, 32.157012 ] ] ] } } , { "type": "Feature", "properties": { "name": "Eritrea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.408203, 17.999632 ], [ 38.990479, 16.836090 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.487871 ], [ 41.737061, 13.923404 ], [ 42.593994, 12.993853 ], [ 43.088379, 12.693933 ], [ 42.780762, 12.458033 ], [ 42.352295, 12.543840 ], [ 42.011719, 12.865360 ], [ 41.605225, 13.453737 ], [ 41.154785, 13.774066 ], [ 40.902100, 14.115267 ], [ 40.034180, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.743011 ], [ 38.518066, 14.498508 ], [ 37.913818, 14.955399 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.424040 ], [ 36.320801, 14.817371 ], [ 36.760254, 16.288506 ], [ 36.859131, 16.951724 ], [ 37.166748, 17.256236 ], [ 37.902832, 17.424029 ], [ 38.408203, 17.999632 ] ] ] } } , { "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.913818, 14.955399 ], [ 38.518066, 14.498508 ], [ 39.100342, 14.743011 ], [ 39.342041, 14.530415 ], [ 40.034180, 14.519780 ], [ 40.902100, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.605225, 13.453737 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.543840 ], [ 41.660156, 11.630716 ], [ 41.737061, 11.350797 ], [ 41.759033, 11.049038 ], [ 42.319336, 11.027472 ], [ 42.561035, 11.102947 ], [ 42.780762, 10.919618 ], [ 42.561035, 10.574222 ], [ 42.934570, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.178025 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.047171 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.831370 ], [ 39.561768, 3.414725 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.166992, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.331644 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.588217 ], [ 34.255371, 6.828261 ], [ 34.079590, 7.220800 ], [ 33.574219, 7.710992 ], [ 32.958984, 7.787194 ], [ 33.299561, 8.352823 ], [ 33.826904, 8.374562 ], [ 33.980713, 8.678779 ], [ 33.969727, 9.579084 ], [ 34.255371, 10.628216 ], [ 34.738770, 10.908830 ], [ 34.837646, 11.318481 ], [ 35.266113, 12.082296 ], [ 35.870361, 12.576010 ], [ 36.276855, 13.560562 ], [ 36.430664, 14.424040 ], [ 37.595215, 14.211139 ], [ 37.913818, 14.955399 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.178025 ], [ 43.297119, 9.535749 ], [ 42.934570, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.919618 ], [ 43.143311, 11.458491 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.121537 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.707187 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.724089 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.220830 ], [ 45.362549, 40.555548 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.988192 ], [ 44.978027, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.220830 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.378888 ], [ 43.945312, 37.256566 ], [ 44.296875, 37.002553 ], [ 44.780273, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.428467, 35.978006 ], [ 45.878906, 35.773258 ], [ 45.878906, 34.903953 ], [ 45.648193, 34.741612 ], [ 45.417480, 33.961586 ], [ 45.878906, 33.330528 ], [ 45.878906, 29.132970 ], [ 45.000000, 29.171349 ], [ 44.714355, 29.180941 ], [ 41.890869, 31.184609 ], [ 40.407715, 31.886887 ], [ 39.199219, 32.157012 ], [ 38.792725, 33.376412 ], [ 41.011963, 34.415973 ], [ 41.385498, 35.630512 ], [ 41.297607, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.378888 ] ] ] } } , { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.571289, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.143311, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 41.000977, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.778451 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.047171 ], [ 45.878906, 5.976680 ] ] ] } } , @@ -553,43 +563,57 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "France" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.004647 ] ] ], [ [ [ 2.515869, 51.144894 ], [ 2.658691, 50.792047 ], [ 3.131104, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.679932, 49.525208 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.328979 ], [ 6.756592, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.536865, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.834717, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.875964 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.144894 ] ] ] ] } } , +{ "type": "Feature", "properties": { "name": "United Kingdom" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.801822 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Spain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 42.875964 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 1.834717, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.894100 ], [ 2.098389, 41.219986 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.672306 ], [ 0.318604, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.875964 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.710449, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.191574 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.579102, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.997070, 61.799093 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.114145 ], [ 11.469727, 59.428316 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.998779, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.450509 ], [ 10.535889, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 15.710449, 66.861082 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Belgium" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.976807, 51.474540 ], [ 5.614014, 51.034486 ], [ 6.163330, 50.798991 ], [ 6.042480, 50.127622 ], [ 5.789795, 50.085344 ], [ 5.679932, 49.525208 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.592529, 50.380502 ], [ 3.131104, 50.778155 ], [ 2.658691, 50.792047 ], [ 2.515869, 51.144894 ], [ 3.317871, 51.344339 ], [ 4.053955, 51.268789 ], [ 4.976807, 51.474540 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Denmark" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.095947, 54.800685 ], [ 11.041260, 55.360381 ], [ 10.909424, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.456420 ], [ 10.667725, 56.078167 ], [ 10.371094, 56.188368 ], [ 9.656982, 55.466399 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.958694 ], [ 8.118896, 55.516192 ], [ 8.096924, 56.541315 ], [ 8.261719, 56.806893 ], [ 8.547363, 57.106419 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.579834, 57.727619 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.983918 ], [ 9.942627, 54.597528 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.964111, 54.194583 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.117432, 53.755207 ], [ 14.359131, 53.245495 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.623060 ], [ 14.688721, 52.086257 ], [ 14.611816, 51.740636 ], [ 15.018311, 51.103522 ], [ 14.578857, 50.999929 ], [ 14.315186, 51.117317 ], [ 14.062500, 50.923813 ], [ 13.337402, 50.729502 ], [ 12.974854, 50.485474 ], [ 12.238770, 50.261254 ], [ 12.414551, 49.965356 ], [ 12.524414, 49.546598 ], [ 13.029785, 49.303636 ], [ 13.601074, 48.871941 ], [ 13.249512, 48.414619 ], [ 12.886963, 48.290503 ], [ 13.029785, 47.635784 ], [ 12.930908, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.139893, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.561701 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.576526 ], [ 9.602051, 47.524620 ], [ 8.525391, 47.827908 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.460984 ], [ 6.240234, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.163330, 50.798991 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.849353 ], [ 6.844482, 52.227799 ], [ 7.097168, 53.140181 ], [ 6.910400, 53.481508 ], [ 7.108154, 53.690201 ], [ 7.943115, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.580322, 54.393352 ], [ 8.525391, 54.958694 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.525391, 47.827908 ], [ 9.602051, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.447998, 46.890232 ], [ 10.371094, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.437857 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.821143 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.503906, 46.430285 ], [ 6.020508, 46.271037 ], [ 6.042480, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.539455 ], [ 7.196045, 47.450380 ], [ 7.470703, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.525391, 47.827908 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.240234, 49.901711 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.679932, 49.525208 ], [ 5.789795, 50.085344 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Czech Rep." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.315186, 51.117317 ], [ 14.578857, 50.999929 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.182861, 50.422519 ], [ 16.721191, 50.212064 ], [ 16.875000, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.655029, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.310799 ], [ 18.171387, 49.267805 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.260010, 49.037868 ], [ 14.908447, 48.965794 ], [ 14.337158, 48.552978 ], [ 13.601074, 48.871941 ], [ 13.029785, 49.303636 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.965356 ], [ 12.238770, 50.261254 ], [ 12.974854, 50.485474 ], [ 13.337402, 50.729502 ], [ 14.062500, 50.923813 ], [ 14.315186, 51.117317 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.324951, 49.567978 ], [ 19.830322, 49.217597 ], [ 20.423584, 49.432413 ], [ 20.895996, 49.325122 ], [ 21.610107, 49.468124 ], [ 22.565918, 49.081062 ], [ 22.280273, 48.821333 ], [ 22.093506, 48.421910 ], [ 21.873779, 48.319734 ], [ 20.808105, 48.625647 ], [ 20.478516, 48.560250 ], [ 20.236816, 48.327039 ], [ 19.775391, 48.202710 ], [ 19.665527, 48.261256 ], [ 19.182129, 48.107431 ], [ 18.775635, 48.078079 ], [ 18.698730, 47.879513 ], [ 17.863770, 47.754098 ], [ 17.490234, 47.864774 ], [ 16.984863, 48.122101 ], [ 16.885986, 48.465637 ], [ 17.105713, 48.814099 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.918701, 48.994636 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.267805 ], [ 18.402100, 49.310799 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.432413 ], [ 19.324951, 49.567978 ] ] ] } } , { "type": "Feature", "properties": { "name": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.498392 ], [ 16.885986, 46.377254 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.905300 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.855869 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.006836, 45.228481 ], [ 16.534424, 45.213004 ], [ 16.325684, 45.003651 ], [ 15.963135, 45.228481 ], [ 15.754395, 44.816916 ], [ 16.237793, 44.347422 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.303467, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.566895, 42.650122 ], [ 18.457031, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.205176 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.237328 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.908447, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.721924, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.600830, 45.629405 ], [ 14.941406, 45.467836 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.677490, 45.828799 ], [ 15.776367, 46.233053 ], [ 16.567383, 46.498392 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.006836, 45.228481 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.855869 ], [ 19.368896, 44.863656 ], [ 19.116211, 44.418088 ], [ 19.599609, 44.040219 ], [ 19.456787, 43.564472 ], [ 19.226074, 43.524655 ], [ 19.039307, 43.428988 ], [ 18.709717, 43.197167 ], [ 18.566895, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.303467, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.237793, 44.347422 ], [ 15.754395, 44.816916 ], [ 15.963135, 45.228481 ], [ 16.325684, 45.003651 ], [ 16.534424, 45.213004 ], [ 17.006836, 45.228481 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Albania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.742432, 42.682435 ], [ 19.808350, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.291748, 42.317939 ], [ 20.522461, 42.212245 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.027832, 40.838749 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.654297, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.713930 ], [ 19.379883, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.682435 ] ] ] } } , { "type": "Feature", "properties": { "name": "Kosovo" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.819092, 43.269206 ], [ 20.961914, 43.125043 ], [ 21.148682, 43.068888 ], [ 21.280518, 42.908160 ], [ 21.445312, 42.859860 ], [ 21.632080, 42.674359 ], [ 21.774902, 42.682435 ], [ 21.665039, 42.439674 ], [ 21.544189, 42.317939 ], [ 21.577148, 42.244785 ], [ 21.357422, 42.204107 ], [ 20.764160, 42.049293 ], [ 20.720215, 41.845013 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.212245 ], [ 20.291748, 42.317939 ], [ 20.072021, 42.585444 ], [ 20.258789, 42.811522 ], [ 20.500488, 42.884015 ], [ 20.643311, 43.213183 ], [ 20.819092, 43.269206 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.225830, 46.126556 ], [ 20.764160, 45.729191 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.472991 ], [ 22.467041, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.664795, 44.229457 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.205176 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.455888 ], [ 22.379150, 42.317939 ], [ 21.917725, 42.301690 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.317939 ], [ 21.665039, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.674359 ], [ 21.445312, 42.859860 ], [ 21.280518, 42.908160 ], [ 21.148682, 43.068888 ], [ 20.961914, 43.125043 ], [ 20.819092, 43.269206 ], [ 20.643311, 43.213183 ], [ 20.500488, 42.884015 ], [ 20.258789, 42.811522 ], [ 20.346680, 42.900113 ], [ 19.962158, 43.100983 ], [ 19.632568, 43.213183 ], [ 19.489746, 43.349150 ], [ 19.226074, 43.524655 ], [ 19.456787, 43.564472 ], [ 19.599609, 44.040219 ], [ 19.116211, 44.418088 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.855869 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.905300 ], [ 19.599609, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Macedonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.379150, 42.317939 ], [ 22.884521, 42.000325 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.763916, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.027832, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.588379, 41.853196 ], [ 20.720215, 41.845013 ], [ 20.764160, 42.049293 ], [ 21.357422, 42.204107 ], [ 21.917725, 42.301690 ], [ 22.379150, 42.317939 ] ] ] } } , { "type": "Feature", "properties": { "name": "Lithuania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.773926, 54.844990 ], [ 25.543213, 54.278055 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.322931 ], [ 22.653809, 54.578430 ], [ 22.763672, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.884277, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.322931 ], [ 23.247070, 54.220285 ], [ 23.488770, 53.910810 ], [ 23.532715, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.807373, 52.689702 ], [ 23.203125, 52.482780 ], [ 23.510742, 52.018698 ], [ 23.532715, 51.577070 ], [ 24.038086, 50.701677 ], [ 23.928223, 50.422519 ], [ 23.433838, 50.303376 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.023461 ], [ 22.565918, 49.081062 ], [ 21.610107, 49.468124 ], [ 20.895996, 49.325122 ], [ 20.423584, 49.432413 ], [ 19.830322, 49.217597 ], [ 19.324951, 49.567978 ], [ 18.907471, 49.432413 ], [ 18.391113, 49.986552 ], [ 17.655029, 50.050085 ], [ 17.556152, 50.359480 ], [ 16.875000, 50.471491 ], [ 16.721191, 50.212064 ], [ 16.182861, 50.422519 ], [ 16.237793, 50.694718 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.103522 ], [ 14.611816, 51.740636 ], [ 14.688721, 52.086257 ], [ 14.436035, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.359131, 53.245495 ], [ 14.117432, 53.755207 ], [ 14.809570, 54.046489 ], [ 16.369629, 54.514704 ], [ 17.622070, 54.851315 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Belarus" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.377441, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.547281 ], [ 30.970459, 55.078367 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.739502, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.310791, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.311035, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.597548 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.345215, 51.828988 ], [ 25.334473, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.532715, 51.577070 ], [ 23.510742, 52.018698 ], [ 23.203125, 52.482780 ], [ 23.807373, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.532715, 53.468431 ], [ 23.488770, 53.910810 ], [ 24.455566, 53.904338 ], [ 25.543213, 54.278055 ], [ 25.773926, 54.844990 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bulgaria" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.664795, 44.229457 ], [ 22.950439, 43.818675 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.576172, 43.683764 ], [ 26.070557, 43.945372 ], [ 27.246094, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 28.004150, 42.008489 ], [ 27.136230, 42.138968 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.499512, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.884521, 42.000325 ], [ 22.379150, 42.317939 ], [ 22.543945, 42.455888 ], [ 22.434082, 42.577355 ], [ 22.609863, 42.900113 ], [ 22.983398, 43.205176 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.664795, 44.229457 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Moldova" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.151428 ], [ 28.674316, 48.114767 ], [ 29.124756, 47.850031 ], [ 29.058838, 47.509780 ], [ 29.421387, 47.346267 ], [ 29.564209, 46.927759 ], [ 29.915771, 46.672056 ], [ 29.838867, 46.521076 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.346928 ], [ 29.168701, 46.377254 ], [ 29.069824, 46.513516 ], [ 28.861084, 46.437857 ], [ 28.937988, 46.255847 ], [ 28.663330, 45.935871 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.483244 ], [ 28.059082, 45.943511 ], [ 28.157959, 46.369674 ], [ 28.135986, 46.807580 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.827908 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.217353 ], [ 26.861572, 48.363549 ], [ 27.520752, 48.465637 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Ukraine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.398193, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.596470 ], [ 40.078125, 49.303636 ], [ 39.682617, 48.785152 ], [ 39.902344, 48.231991 ], [ 39.737549, 47.894248 ], [ 38.770752, 47.820532 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.017716 ], [ 36.760254, 46.694667 ], [ 35.826416, 46.641894 ], [ 34.969482, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.342773, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.514046 ], [ 33.596191, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.750488, 46.331758 ], [ 31.673584, 46.702202 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.027482 ], [ 29.608154, 45.290347 ], [ 29.157715, 45.460131 ], [ 28.685303, 45.305803 ], [ 28.234863, 45.483244 ], [ 28.487549, 45.598666 ], [ 28.663330, 45.935871 ], [ 28.937988, 46.255847 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.513516 ], [ 29.168701, 46.377254 ], [ 29.761963, 46.346928 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.521076 ], [ 29.915771, 46.672056 ], [ 29.564209, 46.927759 ], [ 29.421387, 47.346267 ], [ 29.058838, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.674316, 48.114767 ], [ 28.256836, 48.151428 ], [ 27.520752, 48.465637 ], [ 26.861572, 48.363549 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.982568 ], [ 25.213623, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.148193, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.093506, 48.421910 ], [ 22.280273, 48.821333 ], [ 22.565918, 49.081062 ], [ 22.774658, 49.023461 ], [ 22.521973, 49.475263 ], [ 23.433838, 50.303376 ], [ 23.928223, 50.422519 ], [ 24.038086, 50.701677 ], [ 23.532715, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.334473, 51.910391 ], [ 26.345215, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.597548 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.234528 ], [ 33.750000, 52.335339 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.221436, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.594971, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.561279, 41.533254 ], [ 42.626953, 41.582580 ], [ 43.582764, 41.087632 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.670654, 40.313043 ], [ 27.147217, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.828125, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.354736, 41.730330 ], [ 33.519287, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 28.004150, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.294317 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.930115 ], [ 26.323242, 40.979898 ], [ 26.608887, 41.557922 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.362549, 40.555548 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.978027, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.706660 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.548548 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.653024 ], [ 36.683350, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.820532 ], [ 39.737549, 47.894248 ], [ 39.902344, 48.231991 ], [ 39.682617, 48.785152 ], [ 40.078125, 49.303636 ], [ 40.067139, 49.596470 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.398193, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.234528 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.311035, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.310791, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.739502, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.078367 ], [ 30.871582, 55.547281 ], [ 29.893799, 55.788929 ], [ 29.377441, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.861328, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.135986, 59.299552 ], [ 27.982178, 59.472989 ], [ 29.124756, 60.026441 ], [ 28.070068, 60.500525 ], [ 30.212402, 61.778319 ], [ 31.146240, 62.354707 ], [ 31.519775, 62.865169 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.201596 ], [ 29.542236, 64.946813 ], [ 30.223389, 65.802776 ], [ 29.135742, 66.861082 ], [ 41.121826, 66.861082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.023193, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.761585 ], [ 33.189697, 66.635556 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.897167 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.411177 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.956299, 66.067090 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.763672, 54.857640 ], [ 22.653809, 54.578430 ], [ 22.730713, 54.322931 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.896240, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.184211 ], [ 31.300049, 70.451508 ], [ 30.003662, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.597412, 69.064638 ], [ 29.014893, 69.763757 ], [ 27.740479, 70.162746 ], [ 26.180420, 69.824471 ], [ 25.697021, 69.092100 ], [ 24.741211, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.357178, 68.839735 ], [ 21.247559, 69.368703 ], [ 20.643311, 69.103859 ], [ 20.028076, 69.064638 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.564399 ], [ 17.731934, 68.007571 ], [ 16.776123, 68.011685 ], [ 15.391846, 66.513260 ], [ 15.073242, 66.160511 ], [ 12.700195, 66.160511 ], [ 13.128662, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ], [ 23.027344, 70.199994 ], [ 24.554443, 71.031249 ], [ 26.378174, 70.984770 ], [ 28.168945, 71.184211 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.621338, 79.171335 ], [ 21.544189, 78.954560 ], [ 19.028320, 78.562667 ], [ 18.479004, 77.825640 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.808262 ], [ 15.919189, 76.770602 ], [ 13.765869, 77.379906 ], [ 14.677734, 77.734951 ], [ 13.172607, 78.023294 ], [ 11.228027, 78.867928 ], [ 10.931396, 79.171335 ], [ 10.766602, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.884521, 78.455425 ], [ 23.280029, 78.077887 ], [ 24.730225, 77.853412 ], [ 22.489014, 77.444552 ], [ 20.731201, 77.676467 ], [ 21.423340, 77.934055 ], [ 20.819092, 78.253624 ], [ 22.884521, 78.455425 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.452393, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.244385, 66.160511 ], [ 29.860840, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.058838, 66.942972 ], [ 29.981689, 67.696941 ], [ 28.443604, 68.362750 ], [ 28.597412, 69.064638 ], [ 29.399414, 69.154740 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.903893 ], [ 33.782959, 69.298911 ], [ 36.518555, 69.060712 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.023193, 66.266856 ], [ 39.364014, 66.160511 ], [ 37.452393, 66.160511 ] ] ], [ [ [ 41.330566, 66.160511 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.703613, 66.160511 ], [ 41.330566, 66.160511 ] ] ], [ [ [ 44.022217, 66.160511 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.568414 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.600849 ], [ 45.560303, 67.567334 ], [ 45.560303, 67.007428 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Norway" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.995850, 80.050460 ], [ 18.259277, 79.700943 ], [ 20.621338, 79.171335 ], [ 21.335449, 79.004962 ], [ 11.096191, 79.004962 ], [ 10.931396, 79.171335 ], [ 10.447998, 79.651722 ], [ 13.172607, 80.010518 ], [ 13.721924, 79.659613 ], [ 15.150146, 79.673407 ], [ 15.523682, 80.016233 ], [ 16.995850, 80.050460 ] ] ], [ [ [ 22.917480, 80.655958 ], [ 25.455322, 80.406557 ], [ 27.410889, 80.056153 ], [ 25.927734, 79.516660 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.566517 ], [ 19.896240, 79.841409 ], [ 18.468018, 79.858833 ], [ 17.369385, 80.318272 ], [ 20.456543, 80.596909 ], [ 21.906738, 80.356995 ], [ 22.917480, 80.655958 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, 80.686233 ], [ 45.878906, 80.575346 ], [ 45.000000, 80.587930 ], [ 44.846191, 80.589727 ], [ 45.000000, 80.604086 ], [ 45.878906, 80.686233 ] ] ] } } ] } ] } , @@ -623,27 +647,31 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.186922 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Turkey" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.436193 ], [ 44.121094, 40.103286 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.707187 ], [ 44.121094, 39.436193 ] ] ], [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.970185 ], [ 44.769287, 37.169072 ], [ 44.285889, 37.002553 ], [ 44.121094, 37.125286 ], [ 44.121094, 39.385264 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Saudi Arabia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 29.602118 ], [ 44.703369, 29.180941 ], [ 45.000000, 29.171349 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.545926 ], [ 48.812256, 27.683528 ], [ 49.306641, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.218506, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.240479, 25.601902 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.119385, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.624756, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 21.993989 ], [ 54.997559, 19.993998 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.109293 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.277219 ], [ 46.373291, 17.235252 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 29.602118 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Ethiopia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.955566, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.047171 ], [ 44.956055, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Somaliland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.955078, 11.404649 ], [ 48.944092, 10.984335 ], [ 48.944092, 9.449062 ], [ 48.493652, 8.830795 ], [ 47.790527, 8.004837 ], [ 46.955566, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.552622 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.404649 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.170479 ], [ 49.394531, 39.393755 ], [ 49.229736, 39.044786 ], [ 48.856201, 38.814031 ], [ 48.889160, 38.315801 ], [ 48.636475, 38.264063 ], [ 48.010254, 38.788345 ], [ 48.361816, 39.283294 ], [ 48.065186, 39.580290 ], [ 47.691650, 39.504041 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.622615 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.212441 ], [ 45.362549, 40.555548 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.186768, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.186922 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.823486, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.339844, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.945068, 39.334297 ], [ 44.791260, 39.707187 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.975342, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Kuwait" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.545926 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Iraq" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.428467, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.741612 ], [ 45.417480, 33.961586 ], [ 46.109619, 33.017876 ], [ 47.340088, 32.463426 ], [ 47.856445, 31.709476 ], [ 47.691650, 30.987028 ], [ 48.010254, 30.987028 ], [ 48.021240, 30.448674 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.307129, 30.059586 ], [ 46.571045, 29.094577 ], [ 45.000000, 29.171349 ], [ 44.703369, 29.180941 ], [ 44.121094, 29.602118 ], [ 44.121094, 37.125286 ], [ 44.285889, 37.002553 ], [ 44.769287, 37.169072 ] ] ] } } , { "type": "Feature", "properties": { "name": "Qatar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.613770, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.119385, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.020508, 26.007424 ], [ 51.284180, 26.115986 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Oman" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.403809, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.040771, 20.478482 ], [ 57.832031, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.667725, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.667725, 21.993989 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.535889, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.403809, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.303264 ], [ 56.392822, 25.888879 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.380371, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.970185 ], [ 66.522217, 37.361426 ], [ 66.225586, 37.387617 ], [ 65.753174, 37.657732 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.544678, 36.306272 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.398006 ], [ 62.237549, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.337646, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.900865 ], [ 53.887939, 38.950865 ], [ 53.107910, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.701416, 40.027614 ], [ 52.921143, 40.871988 ], [ 53.865967, 40.630630 ], [ 54.744873, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.975342, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.822266, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , { "type": "Feature", "properties": { "name": "Somalia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.119385, 12.017830 ], [ 51.141357, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.053467, 10.639014 ], [ 50.833740, 10.271681 ], [ 50.559082, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.806444 ], [ 48.592529, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.571045, 2.855263 ], [ 45.571289, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.956055, 5.003394 ], [ 45.000000, 5.047171 ], [ 47.790527, 8.004837 ], [ 48.493652, 8.830795 ], [ 48.944092, 9.449062 ], [ 48.955078, 11.404649 ], [ 49.273682, 11.426187 ], [ 49.735107, 11.576907 ], [ 50.262451, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.119385, 12.017830 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.955011 ], [ 70.466309, 40.497092 ], [ 70.609131, 40.212441 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.565430, 40.103286 ], [ 69.466553, 39.520992 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.274790 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.871826, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.413800 ], [ 73.948975, 37.422526 ], [ 73.267822, 37.492294 ], [ 72.641602, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.850586, 36.738884 ], [ 71.455078, 37.063944 ], [ 71.542969, 37.900865 ], [ 71.246338, 37.952861 ], [ 71.356201, 38.255436 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.134557 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.605528 ], [ 69.202881, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.151837 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.708740, 39.580290 ], [ 68.543701, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.722283 ], [ 70.664062, 40.955011 ] ] ] } } -, -{ "type": "Feature", "properties": { "name": "Nepal" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.458731 ], [ 83.902588, 29.315141 ], [ 84.232178, 28.835050 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.197927 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.440040 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.682617, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.410728 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Afghanistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.487995 ], [ 71.356201, 38.255436 ], [ 71.246338, 37.952861 ], [ 71.542969, 37.900865 ], [ 71.455078, 37.063944 ], [ 71.850586, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.641602, 37.046409 ], [ 73.267822, 37.492294 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.413800 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.927246, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.268311, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.619873, 35.146863 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.343436 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.016242 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.100745 ], [ 69.268799, 32.500496 ], [ 69.323730, 31.896214 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.796631, 31.578535 ], [ 67.686768, 31.297328 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.732393 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.468297 ], [ 64.357910, 29.554345 ], [ 64.149170, 29.334298 ], [ 63.555908, 29.468297 ], [ 62.556152, 29.315141 ], [ 60.875244, 29.831114 ], [ 61.787109, 30.732393 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.541090 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.523079 ], [ 60.534668, 33.678640 ], [ 60.809326, 34.397845 ], [ 61.215820, 35.648369 ], [ 62.237549, 35.272532 ], [ 62.984619, 35.398006 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.004673 ], [ 64.544678, 36.306272 ], [ 64.753418, 37.107765 ], [ 65.588379, 37.300275 ], [ 65.753174, 37.657732 ], [ 66.225586, 37.387617 ], [ 66.522217, 37.361426 ], [ 67.082520, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.137207, 37.020098 ], [ 68.862305, 37.343959 ], [ 69.202881, 37.151561 ], [ 69.521484, 37.605528 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.134557 ], [ 70.806885, 38.487995 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Sri Lanka" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.817329 ], [ 80.837402, 9.264779 ], [ 81.309814, 8.559294 ], [ 81.793213, 7.514981 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.817329 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Pakistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.904541, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.487511 ], [ 76.871338, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.454346, 32.759562 ], [ 75.256348, 32.268555 ], [ 74.410400, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.828369, 28.960089 ], [ 71.784668, 27.907058 ], [ 70.620117, 27.984700 ], [ 69.521484, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.850830, 25.214881 ], [ 71.048584, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.181152, 23.684774 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.657002 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 61.875000, 26.234302 ], [ 63.314209, 26.755421 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.371767 ], [ 62.731934, 28.256006 ], [ 61.776123, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.556152, 29.315141 ], [ 63.555908, 29.468297 ], [ 64.149170, 29.334298 ], [ 64.357910, 29.554345 ], [ 65.050049, 29.468297 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.732393 ], [ 66.939697, 31.306715 ], [ 67.686768, 31.297328 ], [ 67.796631, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.268799, 32.500496 ], [ 69.686279, 33.100745 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.016242 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.343436 ], [ 71.114502, 34.732584 ], [ 71.619873, 35.146863 ], [ 71.499023, 35.648369 ], [ 71.268311, 36.075742 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.560791, 26.441066 ], [ 89.362793, 26.007424 ], [ 89.835205, 25.958045 ], [ 89.923096, 25.264568 ], [ 90.000000, 25.254633 ], [ 90.878906, 25.125393 ], [ 90.878906, 22.786311 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.088379, 24.497146 ], [ 88.308105, 24.866503 ], [ 88.934326, 25.234758 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.441066 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.339844, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.823486, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.339844, 41.640078 ] ] ] } } ] } ] } , @@ -651,9 +679,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Georgia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.538574, 42.706660 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 46.406250, 41.861379 ], [ 46.153564, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 42.601620 ], [ 44.538574, 42.706660 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Azerbaijan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.691895, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.823486, 41.145570 ], [ 47.988281, 41.401536 ], [ 48.592529, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.736084, 40.313043 ], [ 45.362549, 40.555548 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.153564, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Kazakhstan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.872803, 55.166319 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.122070, 50.113533 ], [ 85.539551, 49.688955 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.605225, 48.545705 ], [ 85.770264, 48.451066 ], [ 85.726318, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.188477, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.266113, 42.350425 ], [ 79.650879, 42.496403 ], [ 79.145508, 42.851806 ], [ 77.662354, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.293200 ], [ 73.652344, 43.092961 ], [ 73.487549, 42.496403 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.698586 ], [ 70.960693, 42.261049 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.104736, 42.996612 ], [ 64.907227, 43.723475 ], [ 63.193359, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.975342, 41.302571 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.085693, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.439674 ], [ 52.503662, 42.787339 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.174072, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.228760, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.800059 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.702393, 47.070122 ], [ 48.065186, 47.739323 ], [ 47.318115, 47.717154 ], [ 46.472168, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.450509 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.618103 ], [ 56.777344, 51.041394 ], [ 58.370361, 51.062113 ], [ 59.644775, 50.541363 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.268789 ], [ 59.974365, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.743408, 52.716331 ], [ 61.699219, 52.975108 ], [ 60.985107, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.597528 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Tajikistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.955011 ], [ 70.466309, 40.497092 ], [ 70.554199, 40.313043 ], [ 69.125977, 40.313043 ], [ 69.334717, 40.722283 ], [ 70.664062, 40.955011 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Turkmenistan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.747012 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.261291 ], [ 61.885986, 41.079351 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.921143, 40.871988 ], [ 53.865967, 40.630630 ], [ 54.744873, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.822266, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.085693, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.975342, 41.302571 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.820455 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.747012 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.604167 ], [ 90.878906, 45.367584 ], [ 90.593262, 45.721522 ], [ 90.878906, 46.604167 ] ] ], [ [ [ 90.878906, 46.995241 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.070738 ], [ 88.011475, 48.596592 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ], [ 90.878906, 46.995241 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.758789, 49.296472 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.688955 ], [ 85.122070, 50.113533 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.530762, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.432617, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.872803, 55.166319 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.597528 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.985107, 53.664171 ], [ 61.699219, 52.975108 ], [ 60.743408, 52.716331 ], [ 60.930176, 52.442618 ], [ 59.974365, 51.957807 ], [ 61.589355, 51.268789 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.541363 ], [ 58.370361, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.618103 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.450509 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.065186, 47.739323 ], [ 48.702393, 47.070122 ], [ 48.592529, 46.558860 ], [ 49.108887, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.637087 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.592529, 41.804078 ], [ 47.988281, 41.401536 ], [ 47.823486, 41.145570 ], [ 47.373047, 41.219986 ], [ 46.691895, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.706660 ], [ 44.121094, 42.601620 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.670387 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.828369, 66.535143 ], [ 73.927002, 66.791909 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } ] } ] } , @@ -691,7 +725,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.841064, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.390625, 0.878872 ], [ 110.841064, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Timor-Leste" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.958008, -8.276727 ], [ 127.342529, -8.396300 ], [ 126.968994, -8.667918 ], [ 125.925293, -9.112945 ], [ 125.090332, -9.394871 ], [ 125.068359, -9.091249 ], [ 124.969482, -8.895926 ], [ 125.090332, -8.657057 ], [ 125.947266, -8.439772 ], [ 126.650391, -8.396300 ], [ 126.958008, -8.276727 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.969482, -8.895926 ], [ 125.068359, -9.091249 ], [ 125.090332, -9.394871 ], [ 124.442139, -10.141932 ], [ 123.585205, -10.358151 ], [ 123.464355, -10.239249 ], [ 123.552246, -9.903921 ], [ 123.980713, -9.297307 ], [ 124.969482, -8.895926 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.239249 ], [ 120.300293, -10.260871 ], [ 118.970947, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.267822, -8.363693 ], [ 118.883057, -8.287599 ], [ 119.124756, -8.711359 ], [ 117.279053, -9.047853 ], [ 116.740723, -9.037003 ], [ 117.081299, -8.461506 ], [ 117.630615, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 122.904053, -8.091862 ], [ 122.761230, -8.657057 ], [ 121.256104, -8.939340 ], [ 119.926758, -8.809082 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.244110 ], [ 121.343994, -8.537565 ], [ 122.014160, -8.461506 ], [ 122.904053, -8.091862 ] ] ], [ [ [ 106.051025, -5.900189 ], [ 107.270508, -5.954827 ], [ 108.072510, -6.348056 ], [ 108.489990, -6.424484 ], [ 108.621826, -6.784626 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.620850, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.374562 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.352823 ], [ 112.565918, -8.374562 ], [ 111.522217, -8.309341 ], [ 110.588379, -8.124491 ], [ 109.434814, -7.743651 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.765423 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.369873, -6.850078 ], [ 106.051025, -5.900189 ] ] ], [ [ [ 118.773193, 0.878872 ], [ 117.817383, 0.790990 ], [ 117.476807, 0.109863 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 116.564941, -1.493971 ], [ 116.531982, -2.482133 ], [ 116.147461, -4.017699 ], [ 116.004639, -3.655964 ], [ 114.862061, -4.105369 ], [ 114.466553, -3.502455 ], [ 113.763428, -3.436658 ], [ 113.258057, -3.118576 ], [ 112.071533, -3.480523 ], [ 111.708984, -2.997899 ], [ 111.049805, -3.052754 ], [ 110.225830, -2.932069 ], [ 110.072021, -1.592812 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.006348, 0.878872 ], [ 110.390625, 0.878872 ], [ 110.511475, 0.780005 ], [ 110.841064, 0.878872 ], [ 118.773193, 0.878872 ] ] ], [ [ [ 102.854004, 0.878872 ], [ 103.084717, 0.560294 ], [ 103.842773, 0.109863 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 104.018555, -1.065612 ], [ 104.370117, -1.087581 ], [ 104.545898, -1.790480 ], [ 104.886475, -2.339438 ], [ 105.622559, -2.427252 ], [ 106.105957, -3.063725 ], [ 105.864258, -4.313546 ], [ 105.820312, -5.856475 ], [ 104.710693, -5.878332 ], [ 103.875732, -5.036227 ], [ 102.590332, -4.225900 ], [ 102.161865, -3.612107 ], [ 101.403809, -2.800398 ], [ 100.909424, -2.054003 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.186767 ], [ 99.030762, 0.878872 ], [ 102.854004, 0.878872 ] ] ], [ [ [ 134.505615, -5.451959 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.110107, -6.140555 ], [ 134.296875, -5.790897 ], [ 134.505615, -5.451959 ] ] ], [ [ [ 124.804688, 0.878872 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.241699 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.190430, 0.241699 ], [ 120.135498, 0.000000 ], [ 120.047607, -0.527336 ], [ 120.937500, -1.417092 ], [ 121.475830, -0.955766 ], [ 123.343506, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.933797 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.685930 ], [ 123.167725, -5.342583 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.466904 ], [ 121.739502, -4.850154 ], [ 121.486816, -4.576425 ], [ 121.618652, -4.193030 ], [ 120.904541, -3.601142 ], [ 120.970459, -2.635789 ], [ 120.311279, -2.932069 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.366455, -5.386336 ], [ 119.652100, -4.466904 ], [ 119.498291, -3.502455 ], [ 119.080811, -3.491489 ], [ 118.773193, -2.800398 ], [ 119.179688, -2.152814 ], [ 119.322510, -1.351193 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.571280 ], [ 120.399170, 0.878872 ], [ 124.804688, 0.878872 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.143066, -1.153487 ], [ 134.428711, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.461426, -3.370856 ], [ 135.878906, -2.833317 ], [ 135.878906, -4.532618 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 133.670654, -3.546318 ], [ 133.374023, -4.028659 ], [ 132.989502, -4.116327 ], [ 132.758789, -3.743671 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.822344 ], [ 133.066406, -2.460181 ], [ 133.780518, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.614776 ], [ 130.946045, -1.439058 ], [ 130.517578, -0.944781 ], [ 131.868896, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 129.375000, -2.800398 ], [ 130.473633, -3.096636 ], [ 130.836182, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.370856 ], [ 128.594971, -3.436658 ], [ 127.902832, -3.392791 ], [ 128.133545, -2.844290 ], [ 129.375000, -2.800398 ] ] ], [ [ [ 128.671875, 0.878872 ], [ 128.638916, 0.263671 ], [ 128.122559, 0.362546 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.386230, -0.780005 ], [ 128.100586, -0.900842 ], [ 127.694092, -0.274657 ], [ 127.628174, 0.000000 ], [ 127.430420, 0.878872 ], [ 128.671875, 0.878872 ] ] ], [ [ [ 127.001953, -3.129546 ], [ 127.254639, -3.458591 ], [ 126.881104, -3.798484 ], [ 126.188965, -3.612107 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.129546 ] ] ] ] } } ] } ] } , @@ -699,23 +733,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "India" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.449165 ], [ 96.591797, 28.825425 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.256006 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.693256 ], [ 97.141113, 27.078692 ], [ 96.427002, 27.264396 ], [ 95.130615, 26.568877 ], [ 95.152588, 25.997550 ], [ 94.603271, 25.155229 ], [ 94.559326, 24.676970 ], [ 94.108887, 23.845650 ], [ 93.328857, 24.076559 ], [ 93.284912, 23.039298 ], [ 93.065186, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.680664, 22.034730 ], [ 92.153320, 23.624395 ], [ 91.867676, 23.624395 ], [ 91.713867, 22.978624 ], [ 91.164551, 23.503552 ], [ 91.472168, 24.066528 ], [ 91.922607, 24.126702 ], [ 92.384033, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.878906, 25.125393 ], [ 90.000000, 25.254633 ], [ 89.923096, 25.264568 ], [ 89.835205, 25.958045 ], [ 89.351807, 26.007424 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.980829 ], [ 89.736328, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 91.219482, 26.804461 ], [ 92.032471, 26.833875 ], [ 92.109375, 27.449790 ], [ 91.702881, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.642389 ], [ 94.570312, 29.276816 ], [ 95.405273, 29.027355 ], [ 96.119385, 29.449165 ] ] ] } } , +{ "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.051270, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.908447, 41.640078 ], [ 105.051270, 41.640078 ] ] ] } } +, { "type": "Feature", "properties": { "name": "Bangladesh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.121094, 26.145576 ], [ 89.351807, 26.007424 ], [ 89.835205, 25.958045 ], [ 89.923096, 25.264568 ], [ 90.000000, 25.254633 ], [ 90.878906, 25.125393 ], [ 91.801758, 25.145285 ], [ 92.384033, 24.976099 ], [ 91.922607, 24.126702 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.867676, 23.624395 ], [ 92.153320, 23.624395 ], [ 92.680664, 22.034730 ], [ 92.658691, 21.320081 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.663626 ], [ 92.087402, 21.186973 ], [ 92.032471, 21.698265 ], [ 91.834717, 22.177232 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.121094, 22.034730 ], [ 89.121094, 26.145576 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Myanmar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.333395 ], [ 98.250732, 27.741885 ], [ 98.690186, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.679199, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.668213, 24.056496 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 100.327148, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.547119, 20.179724 ], [ 98.964844, 19.746024 ], [ 98.261719, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.382812, 18.437925 ], [ 97.866211, 17.560247 ], [ 98.492432, 16.836090 ], [ 98.909912, 16.172473 ], [ 98.536377, 15.305380 ], [ 98.195801, 15.125159 ], [ 98.437500, 14.615478 ], [ 99.096680, 13.827412 ], [ 99.217529, 13.261333 ], [ 99.195557, 12.801088 ], [ 99.591064, 11.888853 ], [ 99.041748, 10.962764 ], [ 98.558350, 9.925566 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.707663 ], [ 94.812012, 15.802825 ], [ 94.196777, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.548584, 19.362976 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.663626 ], [ 92.307129, 21.473518 ], [ 92.658691, 21.320081 ], [ 92.680664, 22.034730 ], [ 93.164062, 22.278931 ], [ 93.065186, 22.705255 ], [ 93.284912, 23.039298 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.845650 ], [ 94.559326, 24.676970 ], [ 94.603271, 25.155229 ], [ 95.152588, 25.997550 ], [ 95.130615, 26.568877 ], [ 96.427002, 27.264396 ], [ 97.141113, 27.078692 ], [ 97.053223, 27.693256 ], [ 97.404785, 27.877928 ], [ 97.327881, 28.256006 ], [ 97.910156, 28.333395 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Lao PDR" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.461802 ], [ 102.755127, 21.667639 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.820557, 19.880392 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.259294 ], [ 105.095215, 18.667063 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.380371, 14.200488 ], [ 106.501465, 14.572951 ], [ 106.051025, 13.880746 ], [ 105.216064, 14.275030 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.776611, 16.436085 ], [ 104.721680, 17.424029 ], [ 103.963623, 18.239786 ], [ 103.205566, 18.302381 ], [ 102.996826, 17.957832 ], [ 102.414551, 17.926476 ], [ 102.117920, 18.104087 ], [ 101.063232, 17.507867 ], [ 101.041260, 18.406655 ], [ 101.282959, 19.456234 ], [ 100.612793, 19.508020 ], [ 100.546875, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.327148, 20.786931 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.810303, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ] ] ] } } , { "type": "Feature", "properties": { "name": "Cambodia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.501465, 14.572951 ], [ 107.380371, 14.200488 ], [ 107.622070, 13.528519 ], [ 107.490234, 12.329269 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.205078, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.146066 ], [ 102.590332, 12.178965 ], [ 102.348633, 13.389620 ], [ 102.985840, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.216064, 14.275030 ], [ 106.051025, 13.880746 ], [ 106.501465, 14.572951 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Malaysia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.696533, 5.987607 ], [ 118.355713, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.959615 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.872803, 4.302591 ], [ 115.521240, 3.162456 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.690661 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.096636 ], [ 113.719482, 3.886177 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.441022 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.162109, 5.692516 ], [ 101.821289, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.517575 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.436279, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.285293 ], [ 103.524170, 1.219390 ], [ 102.579346, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.457234 ], [ 100.261230, 6.642783 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Taiwan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.497803, 25.294371 ], [ 121.959229, 24.996016 ], [ 121.783447, 24.387127 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.963425 ], [ 120.223389, 22.816694 ], [ 120.113525, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] } } , { "type": "Feature", "properties": { "name": "Korea" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.473877, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.470335 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.123047, 36.721274 ], [ 126.859131, 36.888408 ], [ 126.177979, 37.744657 ], [ 126.243896, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.078857, 38.255436 ], [ 127.781982, 38.298559 ], [ 128.210449, 38.367502 ], [ 128.353271, 38.608286 ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Philippines" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.419922, 9.752370 ], [ 126.221924, 9.286465 ], [ 126.485596, 7.743651 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.837402, 7.286190 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.042236 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.618164, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.449624 ], [ 122.091064, 6.893707 ], [ 121.926270, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.947998, 8.309341 ], [ 123.486328, 8.689639 ], [ 123.848877, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.771729, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.343750, 18.218916 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.266846, 14.211139 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.189453, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.264383 ], [ 120.992432, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.926758, 15.400728 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.591667 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.233154, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.038255 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.310303, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.271681 ], [ 123.629150, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.876465 ], [ 123.497314, 10.941192 ], [ 123.343506, 10.260871 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.696045, 10.552622 ], [ 119.036865, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.676569 ], [ 118.992920, 10.368958 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.576907 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.433793 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.022217, -0.878872 ], [ 130.858154, -0.878872 ], [ 131.868896, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.636740 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.373533 ], [ 120.190430, 0.230712 ], [ 120.135498, 0.000000 ], [ 120.047607, -0.527336 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.560294 ], [ 120.893555, 1.307260 ], [ 121.673584, 1.010690 ], [ 122.926025, 0.867887 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.636740 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.693848, 1.131518 ], [ 128.638916, 0.252685 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.386230, -0.780005 ], [ 128.155518, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.274657 ], [ 127.628174, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.606201, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.228271 ], [ 118.048096, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.476807, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.410889, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.162456 ], [ 115.872803, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.473832 ], [ 95.943604, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.700928, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.075962 ], [ 102.502441, 1.395126 ], [ 103.084717, 0.560294 ], [ 103.842773, 0.098877 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.448242, 0.000000 ], [ 99.261475, 0.175781 ], [ 98.975830, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.185059, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.473832 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.299561, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Mongolia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.865967, 52.045734 ], [ 99.986572, 51.631657 ], [ 100.887451, 51.515580 ], [ 102.062988, 51.255040 ], [ 102.260742, 50.506440 ], [ 103.677979, 50.085344 ], [ 104.622803, 50.275299 ], [ 105.886230, 50.401515 ], [ 106.896973, 50.275299 ], [ 107.874756, 49.795450 ], [ 108.479004, 49.282140 ], [ 109.401855, 49.289306 ], [ 110.665283, 49.131408 ], [ 111.588135, 49.375220 ], [ 112.895508, 49.539469 ], [ 114.367676, 50.247205 ], [ 114.960938, 50.141706 ], [ 115.488281, 49.802541 ], [ 116.685791, 49.887557 ], [ 116.191406, 49.131408 ], [ 115.488281, 48.136767 ], [ 115.740967, 47.724545 ], [ 116.312256, 47.850031 ], [ 117.301025, 47.694974 ], [ 118.070068, 48.063397 ], [ 118.872070, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.687131 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.384833 ], [ 115.982666, 45.721522 ], [ 114.466553, 45.336702 ], [ 113.466797, 44.809122 ], [ 112.434082, 45.011419 ], [ 111.873779, 45.096791 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.739352 ], [ 111.137695, 43.405047 ], [ 110.412598, 42.867912 ], [ 109.248047, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.130821 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.832275, 42.512602 ], [ 100.843506, 42.658202 ], [ 99.514160, 42.520700 ], [ 97.459717, 42.747012 ], [ 96.350098, 42.722804 ], [ 95.767822, 43.317185 ], [ 95.306396, 44.237328 ], [ 94.691162, 44.347422 ], [ 93.482666, 44.972571 ], [ 92.131348, 45.112300 ], [ 90.944824, 45.282617 ], [ 90.593262, 45.721522 ], [ 90.977783, 46.882723 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.121094, 47.997274 ], [ 89.121094, 49.610710 ], [ 90.000000, 50.007739 ], [ 90.714111, 50.331436 ], [ 92.241211, 50.798991 ], [ 93.109131, 50.492463 ], [ 94.152832, 50.478483 ], [ 94.822998, 50.014799 ], [ 95.811768, 49.972422 ], [ 97.261963, 49.724479 ], [ 98.239746, 50.422519 ], [ 97.833252, 51.006842 ], [ 98.865967, 52.045734 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.878906, 66.861082 ], [ 135.878906, 55.203953 ], [ 135.131836, 54.730964 ], [ 135.878906, 54.667478 ], [ 135.878906, 44.300264 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 133.538818, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.285203 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.220382 ], [ 130.638428, 42.391009 ], [ 130.638428, 42.900113 ], [ 131.143799, 42.924252 ], [ 131.286621, 44.111254 ], [ 131.022949, 44.964798 ], [ 131.890869, 45.321254 ], [ 133.099365, 45.143305 ], [ 133.769531, 46.111326 ], [ 134.110107, 47.212106 ], [ 134.505615, 47.576526 ], [ 135.000000, 48.429201 ], [ 135.032959, 48.472921 ], [ 135.000000, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.506104, 47.783635 ], [ 130.989990, 47.791016 ], [ 130.583496, 48.727209 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.759978 ], [ 127.287598, 50.736455 ], [ 126.947021, 51.351201 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.455349 ], [ 122.244873, 53.429174 ], [ 121.003418, 53.252069 ], [ 120.179443, 52.749594 ], [ 120.728760, 52.516221 ], [ 120.739746, 51.964577 ], [ 120.179443, 51.638476 ], [ 119.278564, 50.583237 ], [ 119.289551, 50.141706 ], [ 117.883301, 49.510944 ], [ 116.685791, 49.887557 ], [ 115.488281, 49.802541 ], [ 114.960938, 50.141706 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.588135, 49.375220 ], [ 110.665283, 49.131408 ], [ 109.401855, 49.289306 ], [ 108.479004, 49.282140 ], [ 107.874756, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.622803, 50.275299 ], [ 103.677979, 50.085344 ], [ 102.260742, 50.506440 ], [ 102.062988, 51.255040 ], [ 100.887451, 51.515580 ], [ 99.986572, 51.631657 ], [ 98.865967, 52.045734 ], [ 97.833252, 51.006842 ], [ 98.239746, 50.422519 ], [ 97.261963, 49.724479 ], [ 95.811768, 49.972422 ], [ 94.822998, 50.014799 ], [ 94.152832, 50.478483 ], [ 93.109131, 50.492463 ], [ 92.241211, 50.798991 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.007739 ], [ 89.121094, 49.610710 ], [ 89.121094, 66.861082 ], [ 135.878906, 66.861082 ] ] ] } } ] } ] } , @@ -753,9 +791,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "Indonesia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.096636 ], [ 135.461426, -3.370856 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.932861, -2.416276 ], [ 140.998535, -2.602864 ], [ 141.031494, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.418036 ], [ 138.043213, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.238855 ], [ 137.933350, -5.397273 ], [ 135.988770, -4.554522 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 134.494629, -5.451959 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.227934 ], [ 134.121094, -6.118708 ], [ 134.285889, -5.790897 ], [ 134.494629, -5.451959 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "Solomon Is." }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.125244, -10.487812 ], [ 162.399902, -10.833306 ], [ 161.707764, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.708252, -9.243093 ], [ 160.367432, -9.405710 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.466309, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.644077 ], [ 159.708252, -9.243093 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.685791, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.795898, -8.917634 ], [ 160.587158, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.367920, -7.318882 ], [ 159.642334, -8.026595 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.427837 ], [ 158.367920, -7.318882 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.024572 ], [ 157.543945, -7.351571 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.177201 ], [ 156.489258, -6.773716 ], [ 156.544189, -6.599131 ] ] ] ] } } +{ "type": "Feature", "properties": { "name": "Papua New Guinea" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.294082 ], [ 144.591064, -3.864255 ], [ 145.272217, -4.379275 ], [ 145.832520, -4.882994 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.085936 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.719165 ], [ 147.194824, -7.395153 ], [ 148.084717, -8.048352 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.271240, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.743652, -9.871452 ], [ 150.809326, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.787598, -10.390572 ], [ 148.930664, -10.282491 ], [ 147.919922, -10.131117 ], [ 147.139893, -9.492408 ], [ 146.568604, -8.950193 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.634776 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.635498, -9.329831 ], [ 142.075195, -9.167179 ], [ 141.031494, -9.123792 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.325439, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.845545 ], [ 150.249023, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.897705, -6.031311 ], [ 148.326416, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.583184 ], [ 149.853516, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.539446 ], [ 150.809326, -5.462896 ], [ 151.094971, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 154.654541, -5.047171 ], [ 154.764404, -5.342583 ], [ 155.061035, -5.572250 ], [ 155.555420, -6.206090 ], [ 156.027832, -6.544560 ], [ 155.885010, -6.817353 ], [ 155.599365, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.145657 ], [ 154.654541, -5.047171 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.778451 ], [ 152.237549, -3.239240 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.984821 ], [ 153.138428, -4.499762 ], [ 152.830811, -4.773521 ], [ 152.644043, -4.182073 ], [ 152.413330, -3.787522 ], [ 151.391602, -3.041783 ], [ 150.666504, -2.745531 ], [ 150.941162, -2.504085 ] ] ] ] } } , -{ "type": "Feature", "properties": { "name": "New Caledonia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.036865, -20.107523 ], [ 164.465332, -20.117840 ], [ 165.025635, -20.457896 ], [ 165.465088, -20.807472 ], [ 165.783691, -21.084500 ], [ 166.607666, -21.698265 ], [ 167.124023, -22.167058 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.136532 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.156238 ], [ 164.168701, -20.447602 ], [ 164.036865, -20.107523 ] ] ] } } +{ "type": "Feature", "properties": { "name": "Fiji" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.725586, -17.633552 ], [ 178.560791, -18.156291 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.132324, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ], [ 180.087891, -16.499299 ], [ 180.000000, -16.562493 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.604736, -16.646718 ], [ 179.099121, -16.436085 ], [ 179.417725, -16.383391 ], [ 180.000000, -16.066929 ] ] ] ] } } ] } ] } , @@ -768,6 +806,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "name": "China" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.032959, 48.472921 ], [ 135.000000, 48.429201 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.219568 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.472921 ], [ 135.032959, 48.472921 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "Russia" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 64.979359 ], [ 180.000000, 64.974712 ], [ 178.714600, 64.534272 ], [ 177.418213, 64.605038 ], [ 178.319092, 64.077003 ], [ 178.912354, 63.248467 ], [ 179.373779, 62.980189 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.155762, 60.946442 ], [ 170.705566, 60.332386 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.570777 ], [ 166.300049, 59.789580 ], [ 165.838623, 60.157910 ], [ 164.882812, 59.728716 ], [ 163.542480, 59.866883 ], [ 163.223877, 59.209688 ], [ 162.015381, 58.240164 ], [ 162.059326, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.707764, 55.285372 ], [ 162.125244, 54.851315 ], [ 160.367432, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.955257 ], [ 158.236084, 51.944265 ], [ 156.796875, 51.006842 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.763916, 57.362090 ], [ 156.807861, 57.833055 ], [ 158.367920, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.343260 ], [ 163.674316, 61.137933 ], [ 164.476318, 62.547793 ], [ 163.256836, 62.466646 ], [ 162.663574, 61.642945 ], [ 160.125732, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.226074, 59.756395 ], [ 155.050049, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.270752, 58.779591 ], [ 151.336670, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.491943, 59.333189 ], [ 142.196045, 59.040555 ], [ 138.966064, 57.088515 ], [ 135.131836, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.812256, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.087426 ], [ 141.383057, 52.234528 ], [ 140.603027, 51.241286 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.218994, 46.308996 ], [ 136.867676, 45.143305 ], [ 135.516357, 43.984910 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.000000, 48.429201 ], [ 135.032959, 48.472921 ], [ 135.000000, 48.472921 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 66.026947 ], [ 180.120850, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ] ] ], [ [ [ 142.657471, 54.361358 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.646240, 50.743408 ], [ 144.656982, 48.973006 ], [ 143.173828, 49.303636 ], [ 142.558594, 47.857403 ], [ 143.536377, 46.837650 ], [ 143.503418, 46.134170 ], [ 142.745361, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.910400, 46.807580 ], [ 142.020264, 47.776252 ], [ 141.910400, 48.857487 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.951506 ], [ 141.591797, 51.930718 ], [ 141.690674, 53.298056 ], [ 142.613525, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.361358 ] ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json index c30f24ed0..9b9a455dc 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_--grid-low-zooms_-D8.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json index 590fe9af3..01579d6ff 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_--no-tiny-polygon-reduction.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json index cd9ea2725..597cd5b05 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json index 7a805a8d4..478c48ba0 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--simplification-at-maximum-zoom_2.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json index fb327e273..6a38ababd 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_-S4_--visvalingam.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json index 8d626e295..6674f4661 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "-101.250000,70.266402,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_-pD.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json index 84f4452cf..c400ea6ec 100644 --- a/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json +++ b/tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "11.250000,48.378236,4", "description": "tests/ne_110m_admin_0_countries/out/-z4_-yname_-pc.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json index cda0eb112..f5ad33f55 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json.check.mbtiles", @@ -9,21 +9,21 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-densest-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tiny_polygons\":2,\"tile_size_desired\":39240},{\"coalesced_as_needed\":212,\"tile_size_desired\":25160},{\"coalesced_as_needed\":190,\"tiny_polygons\":1,\"tile_size_desired\":21223},{\"coalesced_as_needed\":159,\"tile_size_desired\":10749},{\"coalesced_as_needed\":51,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", +"strategies": "[{\"coalesced_as_needed\":175,\"tiny_polygons\":1,\"tile_size_desired\":39268},{\"coalesced_as_needed\":213,\"tile_size_desired\":25177},{\"coalesced_as_needed\":197,\"tile_size_desired\":21227},{\"coalesced_as_needed\":159,\"tile_size_desired\":10748},{\"coalesced_as_needed\":60,\"tile_size_desired\":6588},{\"tiny_polygons\":1}]", "type": "overlay", "version": "2" }, "features": [ { "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 1024 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -148.359375, -85.622069 ], [ -143.085938, -85.051129 ], [ -142.734375, -84.574702 ], [ -146.953125, -84.541361 ], [ -150.117188, -84.302183 ], [ -150.820312, -83.905058 ], [ -153.632812, -83.676943 ], [ -152.578125, -82.448764 ], [ -152.929688, -82.021378 ], [ -154.687500, -81.773644 ], [ -155.390625, -81.413933 ], [ -156.796875, -81.093214 ], [ -154.335938, -81.147481 ], [ -152.226562, -80.983688 ], [ -150.820312, -81.361287 ], [ -147.304688, -80.647035 ], [ -146.250000, -80.356995 ], [ -146.601562, -79.935918 ], [ -149.414062, -79.367701 ], [ -155.390625, -79.038437 ], [ -158.203125, -78.061989 ], [ -158.203125, -76.920614 ], [ -157.148438, -77.312520 ], [ -153.632812, -77.078784 ], [ -152.929688, -77.466028 ], [ -151.171875, -77.389504 ], [ -147.656250, -76.598545 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.408854 ], [ -144.843750, -75.230667 ], [ -144.492188, -75.497157 ], [ -141.679688, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.351562, -74.307353 ], [ -133.593750, -74.402163 ], [ -132.187500, -74.307353 ], [ -130.781250, -74.496413 ], [ -129.726562, -74.496413 ], [ -128.320312, -74.307353 ], [ -125.507812, -74.496413 ], [ -119.531250, -74.496413 ], [ -117.421875, -74.019543 ], [ -116.367188, -74.211983 ], [ -113.906250, -73.726595 ], [ -112.148438, -74.683250 ], [ -111.093750, -74.402163 ], [ -110.039062, -74.775843 ], [ -107.578125, -75.140778 ], [ -104.765625, -74.959392 ], [ -100.546875, -75.320025 ], [ -100.195312, -74.867889 ], [ -101.250000, -74.211983 ], [ -102.656250, -74.116047 ], [ -103.710938, -72.607120 ], [ -99.140625, -72.919635 ], [ -97.734375, -73.528399 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.124945 ], [ -91.406250, -73.428424 ], [ -90.000000, -73.327858 ], [ -89.296875, -72.607120 ], [ -88.593750, -73.022592 ], [ -87.187500, -73.226700 ], [ -86.132812, -73.124945 ], [ -85.078125, -73.528399 ], [ -81.562500, -73.824820 ], [ -80.156250, -73.124945 ], [ -79.453125, -73.528399 ], [ -78.046875, -73.428424 ], [ -76.289062, -73.922469 ], [ -74.882812, -73.824820 ], [ -72.773438, -73.428424 ], [ -67.851562, -72.816074 ], [ -67.148438, -72.073911 ], [ -68.554688, -69.657086 ], [ -67.500000, -68.138852 ], [ -67.851562, -67.339861 ], [ -63.632812, -64.923542 ], [ -57.656250, -63.233627 ], [ -57.304688, -63.548552 ], [ -57.656250, -63.860036 ], [ -59.062500, -64.320872 ], [ -60.468750, -64.320872 ], [ -62.578125, -65.072130 ], [ -62.226562, -66.231457 ], [ -63.632812, -66.513260 ], [ -65.742188, -68.007571 ], [ -64.687500, -68.656555 ], [ -63.281250, -69.287257 ], [ -61.523438, -71.074056 ], [ -60.820312, -73.124945 ], [ -61.523438, -74.116047 ], [ -61.875000, -74.402163 ], [ -63.281250, -74.590108 ], [ -64.335938, -75.230667 ], [ -69.960938, -76.184995 ], [ -70.664062, -76.598545 ], [ -77.343750, -76.679785 ], [ -76.992188, -77.078784 ], [ -74.179688, -77.542096 ], [ -73.828125, -77.915669 ], [ -74.882812, -78.206563 ], [ -76.640625, -78.134493 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.171335 ], [ -75.234375, -80.238501 ], [ -73.125000, -80.415707 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.773644 ], [ -59.765625, -82.355800 ], [ -58.359375, -83.236426 ], [ -56.953125, -82.853382 ], [ -53.789062, -82.261699 ], [ -49.921875, -81.723188 ], [ -47.109375, -81.723188 ], [ -45.000000, -81.823794 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.672424 ], [ -40.781250, -81.361287 ], [ -38.320312, -81.361287 ], [ -34.453125, -80.928426 ], [ -30.234375, -80.589727 ], [ -28.476562, -80.356995 ], [ -29.531250, -79.624056 ], [ -29.531250, -79.237185 ], [ -35.507812, -79.432371 ], [ -35.859375, -78.349411 ], [ -35.156250, -78.134493 ], [ -32.343750, -77.617709 ], [ -28.828125, -76.679785 ], [ -25.312500, -76.268695 ], [ -22.500000, -76.100796 ], [ -17.578125, -75.140778 ], [ -15.820312, -74.496413 ], [ -15.468750, -74.116047 ], [ -16.523438, -73.824820 ], [ -16.171875, -73.428424 ], [ -12.304688, -72.395706 ], [ -10.195312, -71.300793 ], [ -9.140625, -71.300793 ], [ -8.437500, -71.635993 ], [ -7.382812, -71.746432 ], [ -7.031250, -70.959697 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.413177 ], [ -4.218750, -71.413177 ], [ -1.757812, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.351562, -71.635993 ], [ 0.703125, -71.300793 ], [ 6.328125, -70.495574 ], [ 7.734375, -69.900118 ], [ 8.437500, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.898438, -70.844673 ], [ 11.953125, -70.612614 ], [ 13.359375, -70.020587 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.820312, -70.020587 ], [ 16.875000, -69.900118 ], [ 21.445312, -70.020587 ], [ 22.500000, -70.728979 ], [ 23.554688, -70.495574 ], [ 27.070312, -70.495574 ], [ 31.992188, -69.657086 ], [ 33.750000, -68.528235 ], [ 34.804688, -68.656555 ], [ 36.210938, -69.287257 ], [ 37.265625, -69.162558 ], [ 38.671875, -69.778952 ], [ 39.726562, -69.534518 ], [ 40.078125, -69.162558 ], [ 41.835938, -68.656555 ], [ 46.406250, -67.609221 ], [ 47.460938, -67.742759 ], [ 48.867188, -67.067433 ], [ 50.625000, -66.930060 ], [ 51.679688, -66.231457 ], [ 54.492188, -65.802776 ], [ 56.250000, -65.946472 ], [ 58.710938, -67.339861 ], [ 59.765625, -67.339861 ], [ 61.523438, -68.007571 ], [ 62.226562, -68.007571 ], [ 63.984375, -67.339861 ], [ 68.906250, -67.875541 ], [ 69.609375, -69.287257 ], [ 69.609375, -69.657086 ], [ 67.851562, -70.259452 ], [ 67.851562, -70.728979 ], [ 68.906250, -70.728979 ], [ 67.851562, -71.856229 ], [ 68.554688, -72.181804 ], [ 69.960938, -72.289067 ], [ 71.015625, -72.073911 ], [ 73.828125, -69.900118 ], [ 77.695312, -69.411242 ], [ 79.101562, -68.269387 ], [ 81.914062, -67.339861 ], [ 86.835938, -67.204032 ], [ 87.890625, -66.231457 ], [ 88.945312, -66.930060 ], [ 89.648438, -67.204032 ], [ 94.218750, -67.067433 ], [ 95.625000, -67.339861 ], [ 98.789062, -67.067433 ], [ 99.843750, -67.204032 ], [ 103.007812, -65.512963 ], [ 106.171875, -66.930060 ], [ 110.390625, -66.652977 ], [ 111.796875, -66.089364 ], [ 113.554688, -65.946472 ], [ 115.664062, -66.652977 ], [ 116.718750, -66.652977 ], [ 119.882812, -67.204032 ], [ 120.937500, -67.204032 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 128.671875, -66.791909 ], [ 130.781250, -66.372755 ], [ 134.648438, -66.231457 ], [ 135.000000, -65.366837 ], [ 136.757812, -66.791909 ], [ 137.460938, -66.930060 ], [ 145.546875, -66.930060 ], [ 146.601562, -67.875541 ], [ 148.710938, -68.399180 ], [ 152.578125, -68.911005 ], [ 153.632812, -68.911005 ], [ 154.335938, -68.528235 ], [ 156.796875, -69.411242 ], [ 159.257812, -69.657086 ], [ 161.718750, -70.612614 ], [ 167.343750, -70.844673 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.746432 ], [ 169.453125, -73.627789 ], [ 168.046875, -73.824820 ], [ 167.343750, -74.211983 ], [ 165.937500, -74.402163 ], [ 164.179688, -75.497157 ], [ 163.476562, -76.268695 ], [ 163.476562, -77.078784 ], [ 164.882812, -78.206563 ], [ 166.640625, -78.349411 ], [ 166.992188, -78.767792 ], [ 163.828125, -79.105086 ], [ 161.718750, -79.171335 ], [ 159.960938, -80.928426 ], [ 161.015625, -81.255032 ], [ 162.421875, -82.070028 ], [ 166.640625, -83.026219 ], [ 168.750000, -83.318733 ], [ 169.453125, -83.829945 ], [ 172.265625, -84.052561 ], [ 173.320312, -84.405941 ], [ 176.132812, -84.160849 ], [ 180.000000, -84.706049 ], [ 181.054688, -84.124973 ], [ 182.812500, -84.440107 ], [ 184.218750, -84.124973 ], [ 185.625000, -84.541361 ], [ 187.031250, -84.088878 ], [ 187.031250, -85.622069 ], [ -148.359375, -85.622069 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.367188, -78.349411 ], [ -160.312500, -78.699106 ], [ -159.257812, -79.496652 ], [ -161.015625, -79.624056 ], [ -162.421875, -79.302640 ], [ -163.828125, -78.630006 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.343750, -73.327858 ], [ -119.882812, -73.627789 ], [ -118.828125, -73.528399 ], [ -120.234375, -74.116047 ], [ -121.640625, -74.019543 ], [ -122.695312, -73.627789 ], [ -122.343750, -73.327858 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.507812, -73.528399 ], [ -124.101562, -73.824820 ], [ -127.265625, -73.428424 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.601562, -71.746432 ], [ -97.734375, -72.073911 ], [ -96.679688, -71.965388 ], [ -96.328125, -72.501722 ], [ -100.898438, -72.501722 ], [ -101.953125, -72.289067 ], [ -102.304688, -71.856229 ], [ -101.601562, -71.746432 ] ] ], [ [ [ -70.312500, -68.911005 ], [ -68.554688, -70.959697 ], [ -68.906250, -72.181804 ], [ -71.015625, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.070312, -72.073911 ], [ -74.179688, -72.395706 ], [ -74.882812, -72.073911 ], [ -74.882812, -71.635993 ], [ -73.125000, -71.187754 ], [ -72.070312, -71.187754 ], [ -71.718750, -69.534518 ], [ -71.015625, -69.037142 ], [ -70.312500, -68.911005 ] ] ], [ [ [ -46.757812, -77.841848 ], [ -45.000000, -78.061989 ], [ -43.945312, -78.490552 ], [ -43.242188, -79.997168 ], [ -48.515625, -80.816891 ], [ -50.625000, -81.038617 ], [ -52.734375, -80.983688 ], [ -54.140625, -80.647035 ], [ -54.140625, -80.238501 ], [ -51.679688, -79.935918 ], [ -48.515625, -78.061989 ], [ -46.757812, -77.841848 ] ] ], [ [ [ -60.468750, -79.624056 ], [ -59.414062, -80.058050 ], [ -60.117188, -80.983688 ], [ -62.226562, -80.872827 ], [ -64.335938, -80.928426 ], [ -66.445312, -80.238501 ], [ -61.875000, -80.415707 ], [ -60.468750, -79.624056 ] ] ], [ [ [ -69.257812, -52.482780 ], [ -68.554688, -52.696361 ], [ -67.851562, -53.748711 ], [ -65.039062, -54.775346 ], [ -65.390625, -55.178868 ], [ -66.445312, -55.178868 ], [ -66.796875, -54.977614 ], [ -68.203125, -55.578345 ], [ -71.015625, -54.977614 ], [ -74.531250, -52.908902 ], [ -72.421875, -53.540307 ], [ -71.015625, -54.162434 ], [ -71.015625, -53.748711 ], [ -70.312500, -52.908902 ], [ -69.257812, -52.482780 ] ] ], [ [ [ -75.937500, 37.160317 ], [ -75.585938, 35.460670 ], [ -81.210938, 31.353637 ], [ -81.210938, 30.145127 ], [ -80.156250, 26.745610 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.562500, 25.799891 ], [ -83.671875, 29.840644 ], [ -85.078125, 29.535230 ], [ -86.484375, 30.448674 ], [ -89.648438, 30.145127 ], [ -89.296875, 29.228890 ], [ -93.867188, 29.840644 ], [ -96.679688, 28.304381 ], [ -97.382812, 27.371767 ], [ -97.031250, 25.799891 ], [ -97.734375, 22.593726 ], [ -95.976562, 18.979026 ], [ -94.570312, 17.978733 ], [ -91.406250, 18.979026 ], [ -90.703125, 19.311143 ], [ -90.351562, 20.961440 ], [ -87.187500, 21.616579 ], [ -86.835938, 20.961440 ], [ -87.890625, 18.312811 ], [ -88.242188, 18.646245 ], [ -88.242188, 16.636192 ], [ -88.945312, 15.961329 ], [ -85.078125, 15.961329 ], [ -83.320312, 15.284185 ], [ -83.671875, 11.178402 ], [ -82.265625, 9.102097 ], [ -80.859375, 8.754795 ], [ -79.453125, 9.449062 ], [ -76.992188, 8.754795 ], [ -75.585938, 9.449062 ], [ -74.882812, 11.178402 ], [ -73.476562, 11.178402 ], [ -71.718750, 12.554564 ], [ -71.015625, 12.211180 ], [ -72.070312, 11.523088 ], [ -71.718750, 9.102097 ], [ -71.015625, 9.795678 ], [ -71.367188, 10.833306 ], [ -70.312500, 11.523088 ], [ -69.960938, 12.211180 ], [ -68.203125, 10.487812 ], [ -66.093750, 10.487812 ], [ -65.039062, 10.141932 ], [ -64.335938, 10.487812 ], [ -61.875000, 10.833306 ], [ -62.578125, 10.487812 ], [ -62.226562, 9.795678 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.407168 ], [ -59.062500, 8.059230 ], [ -57.304688, 5.965754 ], [ -53.789062, 5.615986 ], [ -51.328125, 4.214943 ], [ -50.625000, 1.757537 ], [ -49.921875, 1.757537 ], [ -50.625000, 0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -47.812500, -0.703107 ], [ -45.000000, -1.406109 ], [ -44.648438, -2.811371 ], [ -43.242188, -2.460181 ], [ -40.078125, -2.811371 ], [ -37.265625, -4.915833 ], [ -35.156250, -5.615986 ], [ -34.804688, -7.362467 ], [ -35.156250, -9.102097 ], [ -38.671875, -12.897489 ], [ -39.375000, -17.978733 ], [ -40.781250, -21.943046 ], [ -41.835938, -22.917923 ], [ -44.648438, -23.241346 ], [ -47.812500, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.867188, -28.613459 ], [ -53.789062, -34.307144 ], [ -54.843750, -34.885931 ], [ -56.250000, -34.885931 ], [ -58.359375, -34.016242 ], [ -58.359375, -34.307144 ], [ -57.304688, -35.173808 ], [ -57.304688, -36.031332 ], [ -56.601562, -36.315125 ], [ -57.656250, -38.272689 ], [ -59.062500, -38.822591 ], [ -62.226562, -38.822591 ], [ -62.226562, -40.713956 ], [ -63.632812, -41.244772 ], [ -64.687500, -40.713956 ], [ -65.039062, -40.979898 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.293564 ], [ -63.632812, -42.032974 ], [ -63.281250, -42.553080 ], [ -65.039062, -43.580391 ], [ -65.390625, -45.089036 ], [ -66.445312, -45.089036 ], [ -67.148438, -45.583290 ], [ -67.500000, -46.316584 ], [ -65.742188, -47.279229 ], [ -66.093750, -48.224673 ], [ -67.148438, -48.690960 ], [ -67.851562, -49.837982 ], [ -69.257812, -50.736455 ], [ -68.203125, -52.268157 ], [ -69.609375, -52.268157 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.748711 ], [ -72.421875, -53.540307 ], [ -74.882812, -52.268157 ], [ -75.585938, -48.690960 ], [ -74.179688, -47.040182 ], [ -75.585938, -46.558860 ], [ -74.531250, -45.828799 ], [ -74.179688, -44.087585 ], [ -73.125000, -44.339565 ], [ -72.773438, -42.293564 ], [ -73.476562, -42.032974 ], [ -73.828125, -43.325178 ], [ -74.179688, -43.325178 ], [ -73.125000, -39.368279 ], [ -73.476562, -37.160317 ], [ -73.125000, -37.160317 ], [ -71.367188, -32.546813 ], [ -71.367188, -28.921631 ], [ -71.015625, -27.683528 ], [ -70.312500, -19.642588 ], [ -70.312500, -18.312811 ], [ -71.367188, -17.308688 ], [ -75.937500, -14.604847 ], [ -79.804688, -7.362467 ], [ -81.210938, -5.965754 ], [ -80.859375, -5.615986 ], [ -81.562500, -4.565474 ], [ -79.804688, -2.811371 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.054628 ], [ -80.156250, 0.703107 ], [ -78.750000, 1.406109 ], [ -78.398438, 2.460181 ], [ -76.992188, 3.864255 ], [ -78.046875, 8.407168 ], [ -79.453125, 9.102097 ], [ -80.507812, 8.059230 ], [ -80.156250, 7.710992 ], [ -80.859375, 7.362467 ], [ -81.210938, 7.710992 ], [ -83.671875, 8.407168 ], [ -85.078125, 10.141932 ], [ -85.078125, 9.449062 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -87.539062, 12.897489 ], [ -87.539062, 13.239945 ], [ -91.406250, 13.923404 ], [ -94.570312, 16.299051 ], [ -96.679688, 15.623037 ], [ -103.359375, 18.312811 ], [ -105.468750, 19.973349 ], [ -105.117188, 21.289374 ], [ -106.171875, 22.917923 ], [ -112.148438, 28.921631 ], [ -113.203125, 31.052934 ], [ -114.609375, 31.653381 ], [ -114.609375, 30.145127 ], [ -109.335938, 23.241346 ], [ -110.039062, 22.917923 ], [ -112.148438, 24.846565 ], [ -112.148438, 26.115986 ], [ -114.960938, 27.683528 ], [ -114.257812, 28.613459 ], [ -115.664062, 29.535230 ], [ -117.421875, 33.137551 ], [ -118.476562, 34.016242 ], [ -120.585938, 34.597042 ], [ -124.453125, 40.178873 ], [ -124.453125, 42.811522 ], [ -123.750000, 45.583290 ], [ -124.804688, 48.224673 ], [ -123.046875, 47.989922 ], [ -122.695312, 47.040182 ], [ -122.695312, 48.922499 ], [ -125.507812, 50.513427 ], [ -127.265625, 50.736455 ], [ -127.968750, 52.268157 ], [ -129.023438, 52.696361 ], [ -129.375000, 53.540307 ], [ -130.429688, 54.367759 ], [ -130.429688, 54.775346 ], [ -131.835938, 55.578345 ], [ -132.187500, 56.365250 ], [ -133.593750, 57.136239 ], [ -133.945312, 58.077876 ], [ -136.757812, 58.263287 ], [ -139.921875, 59.534318 ], [ -142.734375, 60.064840 ], [ -143.789062, 60.064840 ], [ -146.953125, 60.930432 ], [ -148.359375, 60.586967 ], [ -148.007812, 60.064840 ], [ -151.875000, 59.175928 ], [ -151.523438, 60.759160 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.813742 ], [ -154.335938, 58.077876 ], [ -156.445312, 57.515823 ], [ -158.554688, 55.973798 ], [ -163.125000, 54.775346 ], [ -164.882812, 54.572062 ], [ -161.718750, 55.973798 ], [ -160.664062, 55.973798 ], [ -158.554688, 56.944974 ], [ -157.851562, 57.515823 ], [ -157.148438, 58.995311 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -158.906250, 58.447733 ], [ -159.609375, 58.995311 ], [ -159.960938, 58.631217 ], [ -160.312500, 58.995311 ], [ -162.070312, 58.631217 ], [ -161.718750, 59.712097 ], [ -162.421875, 60.064840 ], [ -163.828125, 59.712097 ], [ -165.234375, 60.586967 ], [ -165.234375, 61.100789 ], [ -166.289062, 61.438767 ], [ -164.531250, 63.074866 ], [ -163.125000, 63.074866 ], [ -162.421875, 63.548552 ], [ -161.367188, 63.391522 ], [ -160.664062, 63.704722 ], [ -161.367188, 64.472794 ], [ -160.664062, 64.774125 ], [ -162.773438, 64.320872 ], [ -163.476562, 64.623877 ], [ -164.882812, 64.472794 ], [ -166.289062, 64.623877 ], [ -168.046875, 65.658275 ], [ -164.531250, 66.513260 ], [ -163.476562, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -165.234375, 68.007571 ], [ -166.640625, 68.399180 ], [ -166.289062, 68.911005 ], [ -164.531250, 68.911005 ], [ -163.125000, 69.411242 ], [ -162.773438, 69.900118 ], [ -162.070312, 70.377854 ], [ -158.906250, 70.844673 ], [ -158.203125, 70.844673 ], [ -156.445312, 71.413177 ], [ -155.039062, 71.187754 ], [ -154.335938, 70.728979 ], [ -153.984375, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.612614 ], [ -150.820312, 70.377854 ], [ -149.765625, 70.495574 ], [ -144.843750, 70.020587 ], [ -143.437500, 70.140364 ], [ -140.976562, 69.657086 ], [ -136.406250, 68.911005 ], [ -134.296875, 69.657086 ], [ -132.890625, 69.534518 ], [ -129.726562, 70.140364 ], [ -129.023438, 69.778952 ], [ -128.320312, 70.020587 ], [ -127.968750, 70.495574 ], [ -125.859375, 69.534518 ], [ -124.453125, 70.140364 ], [ -124.453125, 69.411242 ], [ -123.046875, 69.534518 ], [ -122.695312, 69.900118 ], [ -121.640625, 69.778952 ], [ -117.773438, 69.037142 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.875541 ], [ -113.554688, 67.742759 ], [ -110.039062, 68.007571 ], [ -108.984375, 67.339861 ], [ -107.929688, 67.875541 ], [ -108.984375, 68.269387 ], [ -108.281250, 68.656555 ], [ -106.171875, 68.784144 ], [ -104.414062, 68.007571 ], [ -103.359375, 68.138852 ], [ -101.601562, 67.609221 ], [ -98.437500, 67.742759 ], [ -98.437500, 68.399180 ], [ -97.734375, 68.528235 ], [ -95.976562, 68.269387 ], [ -95.976562, 67.339861 ], [ -95.625000, 68.138852 ], [ -94.570312, 68.007571 ], [ -94.218750, 69.037142 ], [ -96.328125, 70.140364 ], [ -96.328125, 71.187754 ], [ -95.273438, 71.965388 ], [ -93.867188, 71.746432 ], [ -91.406250, 70.140364 ], [ -92.460938, 69.657086 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -89.296875, 69.287257 ], [ -87.890625, 68.656555 ], [ -88.242188, 67.875541 ], [ -87.187500, 67.204032 ], [ -85.429688, 68.784144 ], [ -85.429688, 69.900118 ], [ -82.617188, 69.657086 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.656555 ], [ -81.914062, 68.138852 ], [ -81.210938, 67.609221 ], [ -81.210938, 67.067433 ], [ -83.320312, 66.372755 ], [ -84.726562, 66.231457 ], [ -85.781250, 66.513260 ], [ -87.187500, 64.774125 ], [ -88.593750, 64.168107 ], [ -90.000000, 64.014496 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.757812, 62.754726 ], [ -94.218750, 60.930432 ], [ -94.570312, 58.995311 ], [ -93.164062, 58.813742 ], [ -92.460938, 57.136239 ], [ -91.054688, 57.326521 ], [ -85.078125, 55.379110 ], [ -82.265625, 55.178868 ], [ -82.265625, 53.330873 ], [ -81.562500, 52.052490 ], [ -79.804688, 51.179343 ], [ -79.101562, 51.618017 ], [ -78.750000, 52.482780 ], [ -79.101562, 54.162434 ], [ -79.804688, 54.572062 ], [ -78.398438, 55.178868 ], [ -76.640625, 56.559482 ], [ -77.343750, 58.077876 ], [ -78.398438, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.046875, 62.267923 ], [ -77.343750, 62.593341 ], [ -74.531250, 62.103883 ], [ -73.828125, 62.431074 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.257812, 58.995311 ], [ -68.203125, 58.813742 ], [ -67.500000, 58.263287 ], [ -66.093750, 58.813742 ], [ -64.687500, 60.413852 ], [ -61.523438, 56.944974 ], [ -61.875000, 56.365250 ], [ -59.414062, 55.178868 ], [ -57.304688, 54.572062 ], [ -56.953125, 53.748711 ], [ -55.898438, 53.330873 ], [ -55.546875, 52.052490 ], [ -56.953125, 51.399206 ], [ -58.710938, 50.958427 ], [ -60.117188, 50.289339 ], [ -66.445312, 50.289339 ], [ -71.015625, 46.800059 ], [ -66.445312, 49.152970 ], [ -65.039062, 49.152970 ], [ -64.335938, 48.690960 ], [ -65.039062, 47.989922 ], [ -64.335938, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.281250, 45.828799 ], [ -61.523438, 45.828799 ], [ -60.468750, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.765625, 45.828799 ], [ -65.390625, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.339565 ], [ -64.335938, 45.336702 ], [ -67.148438, 45.089036 ], [ -66.796875, 44.840291 ], [ -69.960938, 43.580391 ], [ -70.664062, 43.068888 ], [ -70.664062, 42.293564 ], [ -69.960938, 41.508577 ], [ -73.828125, 40.979898 ], [ -72.070312, 40.979898 ], [ -73.828125, 40.713956 ], [ -74.882812, 38.822591 ], [ -75.585938, 39.368279 ], [ -74.882812, 38.272689 ], [ -75.937500, 37.160317 ] ], [ [ -75.937500, 37.160317 ], [ -75.585938, 37.996163 ], [ -76.289062, 39.095963 ], [ -76.289062, 37.996163 ], [ -75.937500, 37.160317 ] ] ], [ [ [ 32.695312, 35.173808 ], [ 33.046875, 35.460670 ], [ 34.453125, 35.746512 ], [ 33.046875, 34.597042 ], [ 32.695312, 35.173808 ] ] ], [ [ [ -58.710938, -51.179343 ], [ -57.656250, -51.618017 ], [ -58.007812, -51.835778 ], [ -59.414062, -52.268157 ], [ -59.765625, -51.835778 ], [ -60.820312, -52.268157 ], [ -61.171875, -51.835778 ], [ -60.117188, -51.179343 ], [ -59.062500, -51.399206 ], [ -58.710938, -51.179343 ] ] ], [ [ [ 68.906250, -48.690960 ], [ 70.664062, -49.152970 ], [ 70.312500, -49.610710 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.690960 ] ] ], [ [ [ 172.968750, -40.446947 ], [ 173.320312, -41.244772 ], [ 174.023438, -40.979898 ], [ 174.375000, -41.244772 ], [ 172.617188, -43.325178 ], [ 172.968750, -43.834527 ], [ 171.562500, -44.339565 ], [ 170.507812, -45.828799 ], [ 169.453125, -46.558860 ], [ 166.640625, -46.316584 ], [ 166.992188, -45.089036 ], [ 170.507812, -43.068888 ], [ 172.968750, -40.446947 ] ] ], [ [ [ 144.843750, -40.713956 ], [ 146.250000, -41.244772 ], [ 148.359375, -40.979898 ], [ 148.007812, -43.325178 ], [ 147.656250, -42.811522 ], [ 146.953125, -43.580391 ], [ 145.898438, -43.580391 ], [ 144.843750, -40.713956 ] ] ], [ [ [ 23.554688, 35.746512 ], [ 24.257812, 35.460670 ], [ 26.367188, 35.173808 ], [ 24.609375, 34.885931 ], [ 23.554688, 35.173808 ], [ 23.554688, 35.746512 ] ] ], [ [ [ -63.984375, 47.040182 ], [ -63.632812, 46.558860 ], [ -61.875000, 46.558860 ], [ -62.929688, 46.073231 ], [ -63.984375, 46.316584 ], [ -63.984375, 47.040182 ] ] ], [ [ [ -187.031250, -40.713956 ], [ -186.679688, -41.244772 ], [ -185.976562, -40.979898 ], [ -185.625000, -41.771312 ], [ -187.031250, -43.068888 ], [ -187.031250, -40.713956 ] ] ], [ [ [ 172.968750, -34.307144 ], [ 174.375000, -35.173808 ], [ 175.429688, -37.160317 ], [ 175.429688, -36.597889 ], [ 176.132812, -37.439974 ], [ 176.835938, -37.996163 ], [ 178.593750, -37.718590 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 176.132812, -41.244772 ], [ 175.078125, -41.771312 ], [ 174.726562, -41.244772 ], [ 175.078125, -40.446947 ], [ 174.726562, -39.909736 ], [ 173.671875, -39.639538 ], [ 174.726562, -38.822591 ], [ 174.726562, -37.439974 ], [ 172.617188, -34.597042 ], [ 172.968750, -34.307144 ] ] ], [ [ [ -187.031250, -34.307144 ], [ -185.625000, -35.173808 ], [ -184.570312, -37.160317 ], [ -184.570312, -36.597889 ], [ -183.867188, -37.439974 ], [ -183.164062, -37.996163 ], [ -181.406250, -37.718590 ], [ -182.109375, -39.095963 ], [ -182.812500, -39.095963 ], [ -183.867188, -41.244772 ], [ -184.921875, -41.771312 ], [ -185.273438, -41.244772 ], [ -184.921875, -40.446947 ], [ -185.273438, -39.909736 ], [ -186.328125, -39.639538 ], [ -185.273438, -38.822591 ], [ -185.273438, -37.439974 ], [ -187.031250, -35.173808 ], [ -187.031250, -34.307144 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 15.117188, 36.597889 ], [ 12.304688, 37.718590 ], [ 12.656250, 37.996163 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 123.398438, -16.636192 ], [ 123.750000, -15.961329 ], [ 124.101562, -16.299051 ], [ 125.859375, -14.264383 ], [ 126.914062, -13.923404 ], [ 128.320312, -14.944785 ], [ 129.726562, -14.944785 ], [ 129.375000, -14.264383 ], [ 130.781250, -12.554564 ], [ 132.539062, -12.211180 ], [ 131.835938, -11.178402 ], [ 132.187500, -11.178402 ], [ 135.351562, -12.211180 ], [ 136.406250, -11.867351 ], [ 137.109375, -12.211180 ], [ 136.054688, -13.239945 ], [ 135.351562, -14.944785 ], [ 140.273438, -17.644022 ], [ 141.328125, -16.299051 ], [ 141.679688, -12.554564 ], [ 142.382812, -10.833306 ], [ 143.789062, -14.604847 ], [ 144.492188, -14.264383 ], [ 145.546875, -14.944785 ], [ 146.250000, -18.979026 ], [ 148.710938, -20.303418 ], [ 149.765625, -22.268764 ], [ 150.820312, -22.268764 ], [ 150.820312, -23.563987 ], [ 153.281250, -26.115986 ], [ 153.632812, -27.994401 ], [ 152.929688, -31.052934 ], [ 150.468750, -35.746512 ], [ 150.117188, -37.439974 ], [ 148.359375, -37.718590 ], [ 146.250000, -39.095963 ], [ 144.843750, -38.548165 ], [ 145.195312, -37.996163 ], [ 143.437500, -38.822591 ], [ 140.625000, -37.996163 ], [ 139.570312, -36.031332 ], [ 138.164062, -35.746512 ], [ 138.164062, -34.307144 ], [ 137.812500, -35.173808 ], [ 136.757812, -35.173808 ], [ 137.812500, -33.724340 ], [ 137.812500, -32.842674 ], [ 136.054688, -34.885931 ], [ 135.351562, -34.597042 ], [ 134.296875, -32.546813 ], [ 131.484375, -31.353637 ], [ 126.210938, -32.249974 ], [ 124.101562, -32.842674 ], [ 123.750000, -34.016242 ], [ 119.882812, -34.016242 ], [ 118.125000, -35.173808 ], [ 116.718750, -34.885931 ], [ 114.960938, -34.307144 ], [ 115.664062, -33.137551 ], [ 115.664062, -31.653381 ], [ 113.203125, -26.115986 ], [ 113.906250, -26.431228 ], [ 113.554688, -25.482951 ], [ 114.257812, -26.431228 ], [ 113.554688, -24.527135 ], [ 114.257812, -21.616579 ], [ 114.257812, -22.593726 ], [ 116.718750, -20.632784 ], [ 120.937500, -19.642588 ], [ 123.046875, -16.299051 ], [ 123.398438, -16.636192 ] ], [ [ 123.398438, -16.636192 ], [ 123.398438, -17.308688 ], [ 123.750000, -16.972741 ], [ 123.398438, -16.636192 ] ] ], [ [ [ 12.304688, 56.170023 ], [ 10.195312, 59.534318 ], [ 8.437500, 58.263287 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.631217 ], [ 4.921875, 61.938950 ], [ 10.546875, 64.472794 ], [ 14.765625, 67.875541 ], [ 19.335938, 69.778952 ], [ 21.445312, 70.259452 ], [ 22.851562, 70.259452 ], [ 24.609375, 71.074056 ], [ 26.367188, 70.959697 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.495574 ], [ 29.882812, 70.140364 ], [ 30.937500, 69.534518 ], [ 31.992188, 69.900118 ], [ 33.750000, 69.287257 ], [ 36.562500, 69.037142 ], [ 40.429688, 67.875541 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.791909 ], [ 40.078125, 66.231457 ], [ 38.320312, 65.946472 ], [ 33.750000, 66.791909 ], [ 33.046875, 66.652977 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.472794 ], [ 36.914062, 63.860036 ], [ 37.265625, 64.320872 ], [ 36.562500, 64.774125 ], [ 37.265625, 65.072130 ], [ 39.726562, 64.472794 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.187500, 66.513260 ], [ 43.945312, 66.089364 ], [ 44.648438, 66.791909 ], [ 43.593750, 67.339861 ], [ 44.296875, 68.007571 ], [ 43.593750, 68.528235 ], [ 46.406250, 68.269387 ], [ 46.757812, 67.742759 ], [ 45.703125, 67.609221 ], [ 45.703125, 67.067433 ], [ 46.406250, 66.652977 ], [ 47.812500, 66.930060 ], [ 48.164062, 67.474922 ], [ 53.789062, 68.911005 ], [ 54.492188, 68.784144 ], [ 53.437500, 68.138852 ], [ 54.843750, 68.138852 ], [ 55.546875, 68.399180 ], [ 57.304688, 68.528235 ], [ 58.710938, 68.911005 ], [ 60.117188, 68.269387 ], [ 61.171875, 68.911005 ], [ 60.117188, 69.534518 ], [ 60.468750, 69.900118 ], [ 63.632812, 69.534518 ], [ 68.554688, 68.138852 ], [ 69.257812, 68.656555 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 67.148438, 69.900118 ], [ 66.796875, 71.074056 ], [ 68.554688, 71.965388 ], [ 69.257812, 72.816074 ], [ 69.960938, 73.022592 ], [ 72.421875, 72.816074 ], [ 72.773438, 72.181804 ], [ 71.718750, 71.413177 ], [ 72.773438, 70.377854 ], [ 72.421875, 69.037142 ], [ 73.828125, 68.399180 ], [ 71.367188, 66.372755 ], [ 72.421875, 66.231457 ], [ 73.828125, 66.791909 ], [ 74.882812, 67.742759 ], [ 74.531250, 68.269387 ], [ 74.882812, 69.037142 ], [ 73.828125, 69.037142 ], [ 73.476562, 69.657086 ], [ 74.531250, 70.612614 ], [ 73.125000, 71.413177 ], [ 74.882812, 72.073911 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.585938, 72.289067 ], [ 75.234375, 71.300793 ], [ 76.289062, 71.187754 ], [ 75.937500, 71.856229 ], [ 77.695312, 72.289067 ], [ 79.804688, 72.289067 ], [ 81.562500, 71.746432 ], [ 80.507812, 72.607120 ], [ 80.507812, 73.627789 ], [ 82.265625, 73.824820 ], [ 86.835938, 73.922469 ], [ 86.132812, 74.496413 ], [ 87.187500, 75.140778 ], [ 88.242188, 75.140778 ], [ 90.351562, 75.672197 ], [ 92.812500, 75.758940 ], [ 93.164062, 76.016094 ], [ 95.976562, 76.100796 ], [ 96.679688, 75.930885 ], [ 98.789062, 76.434604 ], [ 100.898438, 76.434604 ], [ 101.953125, 77.312520 ], [ 104.414062, 77.692870 ], [ 106.171875, 77.389504 ], [ 104.765625, 77.157163 ], [ 106.875000, 76.999935 ], [ 107.226562, 76.516819 ], [ 108.281250, 76.760541 ], [ 111.093750, 76.679785 ], [ 113.203125, 76.184995 ], [ 114.257812, 75.845169 ], [ 113.906250, 75.320025 ], [ 109.335938, 74.211983 ], [ 112.148438, 73.824820 ], [ 112.851562, 74.019543 ], [ 113.554688, 73.327858 ], [ 113.906250, 73.627789 ], [ 115.664062, 73.726595 ], [ 118.828125, 73.627789 ], [ 119.179688, 73.124945 ], [ 123.046875, 72.919635 ], [ 123.398438, 73.726595 ], [ 126.914062, 73.528399 ], [ 128.671875, 73.022592 ], [ 129.023438, 72.395706 ], [ 128.320312, 71.965388 ], [ 129.726562, 71.187754 ], [ 131.132812, 70.728979 ], [ 132.187500, 71.856229 ], [ 133.945312, 71.413177 ], [ 135.703125, 71.635993 ], [ 137.460938, 71.300793 ], [ 138.164062, 71.635993 ], [ 139.921875, 71.524909 ], [ 139.218750, 72.395706 ], [ 140.625000, 72.816074 ], [ 149.414062, 72.181804 ], [ 150.468750, 71.635993 ], [ 152.929688, 70.844673 ], [ 157.148438, 71.074056 ], [ 158.906250, 70.844673 ], [ 159.960938, 70.495574 ], [ 159.609375, 69.778952 ], [ 161.015625, 69.411242 ], [ 162.421875, 69.657086 ], [ 165.937500, 69.411242 ], [ 167.695312, 69.534518 ], [ 169.453125, 68.656555 ], [ 170.859375, 69.037142 ], [ 170.156250, 69.657086 ], [ 170.507812, 70.140364 ], [ 173.671875, 69.778952 ], [ 175.781250, 69.900118 ], [ 180.000000, 68.911005 ], [ 184.921875, 67.204032 ], [ 184.921875, 66.652977 ], [ 185.625000, 66.372755 ], [ 185.273438, 67.067433 ], [ 187.031250, 66.930060 ], [ 187.031250, 64.320872 ], [ 185.976562, 64.320872 ], [ 183.867188, 64.923542 ], [ 183.867188, 65.366837 ], [ 182.812500, 65.512963 ], [ 181.757812, 65.366837 ], [ 181.054688, 65.802776 ], [ 181.406250, 66.089364 ], [ 180.000000, 65.802776 ], [ 180.703125, 65.366837 ], [ 180.000000, 64.923542 ], [ 178.593750, 64.472794 ], [ 177.539062, 64.623877 ], [ 179.296875, 62.915233 ], [ 179.296875, 62.267923 ], [ 177.539062, 62.593341 ], [ 173.671875, 61.606396 ], [ 170.507812, 59.888937 ], [ 168.750000, 60.586967 ], [ 166.289062, 59.712097 ], [ 165.937500, 60.239811 ], [ 164.882812, 59.712097 ], [ 163.476562, 59.888937 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.891497 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.718750, 55.379110 ], [ 162.070312, 54.775346 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.120405 ], [ 158.554688, 52.908902 ], [ 158.203125, 51.835778 ], [ 156.796875, 50.958427 ], [ 155.390625, 55.379110 ], [ 155.742188, 56.752723 ], [ 156.796875, 57.891497 ], [ 158.203125, 58.077876 ], [ 163.828125, 61.100789 ], [ 164.531250, 62.593341 ], [ 163.125000, 62.431074 ], [ 162.773438, 61.606396 ], [ 159.960938, 60.586967 ], [ 159.257812, 61.773123 ], [ 156.796875, 61.438767 ], [ 154.335938, 59.712097 ], [ 155.039062, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.712097 ], [ 148.710938, 59.175928 ], [ 145.546875, 59.355596 ], [ 142.031250, 58.995311 ], [ 135.000000, 54.775346 ], [ 136.757812, 54.572062 ], [ 137.109375, 53.956086 ], [ 138.164062, 53.748711 ], [ 138.867188, 54.162434 ], [ 139.921875, 54.162434 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.625000, 51.179343 ], [ 139.921875, 48.458352 ], [ 138.164062, 46.316584 ], [ 135.000000, 43.325178 ], [ 133.593750, 42.811522 ], [ 132.187500, 43.325178 ], [ 130.078125, 42.032974 ], [ 129.726562, 40.979898 ], [ 127.617188, 39.639538 ], [ 127.265625, 39.095963 ], [ 128.320312, 38.548165 ], [ 129.375000, 36.879621 ], [ 129.023438, 35.173808 ], [ 126.562500, 34.307144 ], [ 126.210938, 36.597889 ], [ 126.914062, 36.879621 ], [ 126.210938, 37.718590 ], [ 125.156250, 37.718590 ], [ 124.804688, 37.996163 ], [ 125.156250, 39.639538 ], [ 124.101562, 39.909736 ], [ 120.937500, 38.822591 ], [ 122.343750, 40.446947 ], [ 121.640625, 40.979898 ], [ 119.179688, 39.368279 ], [ 118.125000, 39.095963 ], [ 117.421875, 38.822591 ], [ 118.828125, 37.439974 ], [ 119.531250, 37.160317 ], [ 120.937500, 37.996163 ], [ 122.343750, 37.439974 ], [ 122.695312, 36.879621 ], [ 120.937500, 36.597889 ], [ 119.179688, 34.885931 ], [ 120.234375, 34.307144 ], [ 121.992188, 31.653381 ], [ 121.992188, 31.052934 ], [ 121.289062, 30.751278 ], [ 121.992188, 29.840644 ], [ 121.640625, 28.304381 ], [ 121.289062, 27.994401 ], [ 118.828125, 24.527135 ], [ 116.015625, 22.917923 ], [ 110.742188, 21.289374 ], [ 110.390625, 20.303418 ], [ 110.039062, 20.303418 ], [ 110.039062, 21.289374 ], [ 108.632812, 21.616579 ], [ 105.820312, 19.642588 ], [ 105.820312, 18.979026 ], [ 108.984375, 15.284185 ], [ 109.335938, 13.581921 ], [ 109.335938, 11.523088 ], [ 105.117188, 8.754795 ], [ 105.117188, 9.795678 ], [ 103.359375, 10.487812 ], [ 102.656250, 12.211180 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.581921 ], [ 100.195312, 13.239945 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 100.546875, 7.362467 ], [ 103.007812, 5.615986 ], [ 104.062500, 1.406109 ], [ 103.359375, 1.054628 ], [ 101.250000, 2.811371 ], [ 100.195312, 6.315299 ], [ 98.437500, 8.407168 ], [ 98.789062, 11.523088 ], [ 97.031250, 16.972741 ], [ 95.273438, 15.623037 ], [ 94.218750, 15.961329 ], [ 94.218750, 18.312811 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 21.943046 ], [ 88.945312, 21.943046 ], [ 86.835938, 21.616579 ], [ 86.484375, 20.303418 ], [ 85.078125, 19.642588 ], [ 82.265625, 16.636192 ], [ 80.156250, 15.961329 ], [ 79.804688, 10.487812 ], [ 77.695312, 8.059230 ], [ 76.640625, 8.754795 ], [ 73.476562, 15.961329 ], [ 72.773438, 21.289374 ], [ 70.312500, 20.961440 ], [ 69.257812, 21.943046 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.917923 ], [ 67.500000, 23.885838 ], [ 66.445312, 25.482951 ], [ 61.523438, 25.165173 ], [ 57.304688, 25.799891 ], [ 56.601562, 27.059126 ], [ 54.843750, 26.431228 ], [ 53.437500, 26.745610 ], [ 51.679688, 27.994401 ], [ 50.273438, 30.145127 ], [ 48.867188, 30.448674 ], [ 47.812500, 29.840644 ], [ 48.164062, 29.228890 ], [ 48.867188, 27.683528 ], [ 50.273438, 26.745610 ], [ 50.976562, 24.846565 ], [ 51.328125, 26.115986 ], [ 51.679688, 23.885838 ], [ 54.140625, 24.206890 ], [ 56.250000, 26.431228 ], [ 56.953125, 24.206890 ], [ 58.710938, 23.563987 ], [ 59.765625, 22.268764 ], [ 58.359375, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 55.195312, 17.308688 ], [ 52.382812, 16.299051 ], [ 52.031250, 15.623037 ], [ 48.515625, 13.923404 ], [ 43.593750, 12.554564 ], [ 42.539062, 15.284185 ], [ 42.539062, 16.636192 ], [ 39.023438, 21.289374 ], [ 38.320312, 23.563987 ], [ 37.617188, 24.206890 ], [ 35.156250, 27.994401 ], [ 34.804688, 27.994401 ], [ 34.804688, 29.535230 ], [ 33.750000, 27.683528 ], [ 35.859375, 23.885838 ], [ 35.507812, 23.241346 ], [ 36.914062, 21.943046 ], [ 37.617188, 18.646245 ], [ 38.320312, 17.978733 ], [ 39.375000, 15.961329 ], [ 43.242188, 12.554564 ], [ 42.890625, 11.867351 ], [ 44.648438, 10.487812 ], [ 50.976562, 11.867351 ], [ 50.976562, 10.487812 ], [ 47.812500, 4.214943 ], [ 40.429688, -2.460181 ], [ 39.375000, -4.565474 ], [ 38.671875, -6.315299 ], [ 39.375000, -7.013668 ], [ 39.023438, -8.407168 ], [ 40.429688, -10.833306 ], [ 40.781250, -14.604847 ], [ 39.375000, -16.636192 ], [ 37.265625, -17.644022 ], [ 34.804688, -19.642588 ], [ 35.507812, -23.563987 ], [ 32.695312, -25.799891 ], [ 33.046875, -26.115986 ], [ 32.343750, -28.613459 ], [ 27.421875, -33.137551 ], [ 25.664062, -34.016242 ], [ 22.500000, -33.724340 ], [ 19.687500, -34.885931 ], [ 18.281250, -34.016242 ], [ 17.929688, -32.546813 ], [ 18.281250, -31.653381 ], [ 15.117188, -27.059126 ], [ 14.414062, -22.268764 ], [ 11.953125, -17.978733 ], [ 11.953125, -15.961329 ], [ 12.656250, -13.581921 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.833306 ], [ 11.953125, -4.915833 ], [ 8.789062, -1.054628 ], [ 9.843750, 3.162456 ], [ 9.492188, 3.864255 ], [ 8.437500, 4.915833 ], [ 5.976562, 4.214943 ], [ 4.218750, 6.315299 ], [ 1.757812, 6.315299 ], [ -2.109375, 4.565474 ], [ -4.570312, 5.266008 ], [ -8.085938, 4.214943 ], [ -13.007812, 7.710992 ], [ -14.765625, 10.833306 ], [ -16.523438, 12.211180 ], [ -16.875000, 13.581921 ], [ -17.578125, 14.604847 ], [ -16.875000, 15.623037 ], [ -16.171875, 17.308688 ], [ -16.171875, 19.973349 ], [ -17.226562, 20.961440 ], [ -15.820312, 23.563987 ], [ -13.007812, 27.683528 ], [ -11.601562, 27.994401 ], [ -9.492188, 29.840644 ], [ -9.843750, 31.052934 ], [ -9.140625, 32.546813 ], [ -7.031250, 34.016242 ], [ -5.976562, 35.746512 ], [ -2.109375, 35.173808 ], [ 1.406250, 36.597889 ], [ 8.437500, 36.879621 ], [ 9.492188, 37.439974 ], [ 10.195312, 37.160317 ], [ 10.195312, 36.597889 ], [ 11.250000, 36.879621 ], [ 10.546875, 36.315125 ], [ 10.898438, 35.746512 ], [ 10.195312, 33.724340 ], [ 15.117188, 32.249974 ], [ 15.820312, 31.353637 ], [ 18.984375, 30.145127 ], [ 20.039062, 31.052934 ], [ 20.039062, 32.249974 ], [ 21.445312, 32.842674 ], [ 28.828125, 30.751278 ], [ 30.937500, 31.653381 ], [ 31.992188, 31.052934 ], [ 32.343750, 31.353637 ], [ 33.750000, 31.052934 ], [ 34.453125, 31.653381 ], [ 35.859375, 34.597042 ], [ 36.210938, 36.597889 ], [ 34.804688, 36.879621 ], [ 34.101562, 36.315125 ], [ 32.343750, 36.031332 ], [ 31.640625, 36.597889 ], [ 30.585938, 36.597889 ], [ 29.531250, 36.031332 ], [ 27.773438, 36.597889 ], [ 26.367188, 38.272689 ], [ 26.718750, 39.095963 ], [ 26.015625, 39.368279 ], [ 27.421875, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.979898 ], [ 27.773438, 40.979898 ], [ 26.367188, 40.178873 ], [ 26.015625, 40.713956 ], [ 24.960938, 40.979898 ], [ 23.554688, 40.713956 ], [ 24.257812, 40.178873 ], [ 23.906250, 39.909736 ], [ 22.500000, 40.178873 ], [ 23.203125, 39.095963 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.203125, 37.996163 ], [ 23.554688, 37.439974 ], [ 22.851562, 37.439974 ], [ 23.203125, 36.315125 ], [ 21.796875, 36.879621 ], [ 21.093750, 38.272689 ], [ 19.335938, 40.178873 ], [ 19.335938, 41.771312 ], [ 16.171875, 43.580391 ], [ 14.765625, 45.089036 ], [ 14.414062, 45.336702 ], [ 14.062500, 44.840291 ], [ 14.062500, 45.583290 ], [ 13.007812, 45.828799 ], [ 12.304688, 45.336702 ], [ 12.656250, 44.087585 ], [ 15.117188, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.508577 ], [ 18.632812, 40.178873 ], [ 18.281250, 39.909736 ], [ 16.875000, 40.446947 ], [ 16.523438, 39.909736 ], [ 17.226562, 39.368279 ], [ 17.226562, 38.822591 ], [ 16.171875, 37.996163 ], [ 15.820312, 37.996163 ], [ 16.171875, 39.095963 ], [ 15.468750, 40.178873 ], [ 11.953125, 41.771312 ], [ 10.546875, 42.811522 ], [ 10.195312, 43.834527 ], [ 8.789062, 44.339565 ], [ 6.679688, 43.068888 ], [ 4.570312, 43.325178 ], [ 3.164062, 43.068888 ], [ 3.164062, 41.771312 ], [ 0.703125, 40.979898 ], [ -0.351562, 39.368279 ], [ 0.000000, 38.822591 ], [ -2.109375, 36.597889 ], [ -4.218750, 36.597889 ], [ -5.273438, 36.031332 ], [ -6.679688, 36.879621 ], [ -8.789062, 36.879621 ], [ -8.789062, 38.272689 ], [ -9.492188, 38.822591 ], [ -8.789062, 40.713956 ], [ -9.492188, 43.068888 ], [ -8.085938, 43.834527 ], [ -1.757812, 43.325178 ], [ -1.406250, 44.087585 ], [ -1.054688, 46.073231 ], [ -2.812500, 47.517201 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -3.164062, 48.922499 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.837982 ], [ -1.054688, 49.382373 ], [ 1.406250, 50.064192 ], [ 1.757812, 50.958427 ], [ 3.867188, 51.618017 ], [ 4.570312, 53.120405 ], [ 7.031250, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 53.956086 ], [ 8.085938, 55.578345 ], [ 8.437500, 57.136239 ], [ 10.546875, 57.704147 ], [ 10.195312, 56.944974 ], [ 10.898438, 56.365250 ], [ 9.492188, 55.379110 ], [ 9.843750, 54.572062 ], [ 10.898438, 54.367759 ], [ 10.898438, 53.956086 ], [ 12.656250, 54.367759 ], [ 14.062500, 53.748711 ], [ 17.578125, 54.775346 ], [ 19.687500, 54.367759 ], [ 20.039062, 54.775346 ], [ 21.445312, 55.178868 ], [ 21.093750, 56.752723 ], [ 21.445312, 57.326521 ], [ 22.500000, 57.704147 ], [ 23.203125, 56.944974 ], [ 24.257812, 56.944974 ], [ 24.257812, 58.447733 ], [ 23.906250, 58.263287 ], [ 23.554688, 58.631217 ], [ 23.203125, 59.175928 ], [ 26.015625, 59.534318 ], [ 28.125000, 59.534318 ], [ 29.179688, 60.064840 ], [ 28.125000, 60.586967 ], [ 22.851562, 59.888937 ], [ 21.445312, 60.759160 ], [ 21.445312, 61.773123 ], [ 21.093750, 62.593341 ], [ 21.445312, 63.233627 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.512963 ], [ 23.906250, 65.946472 ], [ 22.148438, 65.658275 ], [ 21.093750, 65.072130 ], [ 21.445312, 64.472794 ], [ 17.929688, 62.754726 ], [ 17.226562, 61.270233 ], [ 18.632812, 60.064840 ], [ 17.929688, 58.995311 ], [ 16.875000, 58.631217 ], [ 15.820312, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 12.656250, 55.578345 ], [ 11.953125, 54.775346 ], [ 10.898438, 55.776573 ], [ 12.304688, 56.170023 ] ], [ [ 36.562500, 45.336702 ], [ 36.210938, 45.089036 ], [ 33.750000, 44.339565 ], [ 33.398438, 44.590467 ], [ 33.398438, 45.089036 ], [ 32.343750, 45.336702 ], [ 33.750000, 45.828799 ], [ 33.398438, 46.073231 ], [ 31.640625, 46.316584 ], [ 31.640625, 46.800059 ], [ 30.585938, 46.558860 ], [ 29.531250, 45.089036 ], [ 28.828125, 44.840291 ], [ 27.773438, 42.553080 ], [ 28.828125, 40.979898 ], [ 29.179688, 41.244772 ], [ 31.289062, 40.979898 ], [ 33.398438, 42.032974 ], [ 35.156250, 42.032974 ], [ 38.320312, 40.979898 ], [ 40.429688, 40.979898 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.553080 ], [ 36.562500, 45.336702 ] ], [ [ 51.328125, 47.040182 ], [ 49.218750, 46.316584 ], [ 46.757812, 44.590467 ], [ 47.460938, 43.580391 ], [ 47.460938, 43.068888 ], [ 50.273438, 40.178873 ], [ 49.570312, 40.178873 ], [ 48.867188, 38.822591 ], [ 49.218750, 37.718590 ], [ 50.976562, 36.879621 ], [ 53.789062, 36.879621 ], [ 53.789062, 38.822591 ], [ 53.085938, 39.368279 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 53.085938, 40.979898 ], [ 53.789062, 40.713956 ], [ 54.843750, 40.979898 ], [ 53.789062, 42.032974 ], [ 53.085938, 41.771312 ], [ 52.734375, 41.244772 ], [ 52.382812, 42.811522 ], [ 51.328125, 43.068888 ], [ 50.273438, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.336702 ], [ 53.085938, 45.336702 ], [ 53.085938, 46.800059 ], [ 51.328125, 47.040182 ] ], [ [ 36.562500, 45.336702 ], [ 38.320312, 46.316584 ], [ 37.617188, 46.558860 ], [ 39.023438, 47.279229 ], [ 34.804688, 46.316584 ], [ 35.156250, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.336702 ] ] ], [ [ [ 68.203125, 76.920614 ], [ 68.906250, 76.516819 ], [ 68.203125, 76.268695 ], [ 61.523438, 75.230667 ], [ 58.359375, 74.307353 ], [ 55.546875, 72.395706 ], [ 55.546875, 71.524909 ], [ 57.656250, 70.728979 ], [ 53.789062, 70.728979 ], [ 53.437500, 71.187754 ], [ 51.679688, 71.524909 ], [ 51.328125, 71.965388 ], [ 52.382812, 72.181804 ], [ 52.382812, 72.816074 ], [ 54.492188, 73.627789 ], [ 53.437500, 73.726595 ], [ 55.898438, 74.590108 ], [ 55.546875, 75.050354 ], [ 61.171875, 76.268695 ], [ 64.335938, 76.434604 ], [ 66.093750, 76.840816 ], [ 68.203125, 76.920614 ] ] ], [ [ [ -79.804688, 62.431074 ], [ -79.101562, 62.103883 ], [ -79.804688, 61.606396 ], [ -80.507812, 61.938950 ], [ -79.804688, 62.431074 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.754726 ], [ -82.968750, 62.103883 ], [ -83.671875, 62.103883 ], [ -84.023438, 62.431074 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -35.156250, 83.638106 ], [ -27.070312, 83.520162 ], [ -20.742188, 82.720964 ], [ -22.851562, 82.355800 ], [ -31.992188, 82.214217 ], [ -31.289062, 82.021378 ], [ -27.773438, 82.118384 ], [ -24.960938, 81.773644 ], [ -22.851562, 82.070028 ], [ -22.148438, 81.723188 ], [ -23.203125, 81.147481 ], [ -20.742188, 81.518272 ], [ -15.820312, 81.923186 ], [ -12.656250, 81.723188 ], [ -12.304688, 81.308321 ], [ -16.171875, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.039062, 80.178713 ], [ -17.578125, 80.118564 ], [ -19.687500, 78.767792 ], [ -19.687500, 77.617709 ], [ -18.632812, 76.999935 ], [ -20.039062, 76.920614 ], [ -21.796875, 76.598545 ], [ -19.687500, 76.100796 ], [ -19.687500, 75.230667 ], [ -20.742188, 75.140778 ], [ -19.335938, 74.307353 ], [ -21.445312, 74.211983 ], [ -20.390625, 73.824820 ], [ -20.742188, 73.428424 ], [ -23.554688, 73.327858 ], [ -22.148438, 72.607120 ], [ -22.148438, 72.181804 ], [ -24.257812, 72.607120 ], [ -24.960938, 72.289067 ], [ -23.554688, 72.073911 ], [ -22.148438, 71.413177 ], [ -21.796875, 70.612614 ], [ -23.554688, 70.495574 ], [ -25.664062, 71.413177 ], [ -25.312500, 70.728979 ], [ -26.367188, 70.259452 ], [ -22.500000, 70.140364 ], [ -27.773438, 68.528235 ], [ -31.640625, 68.138852 ], [ -34.101562, 66.652977 ], [ -36.210938, 65.946472 ], [ -39.726562, 65.512963 ], [ -40.781250, 64.774125 ], [ -41.132812, 63.548552 ], [ -42.890625, 62.754726 ], [ -42.539062, 61.938950 ], [ -43.242188, 60.064840 ], [ -44.648438, 60.064840 ], [ -46.406250, 60.930432 ], [ -48.164062, 60.930432 ], [ -49.218750, 61.438767 ], [ -51.679688, 63.548552 ], [ -52.382812, 65.219894 ], [ -53.789062, 66.089364 ], [ -53.437500, 66.791909 ], [ -54.140625, 67.204032 ], [ -53.085938, 68.399180 ], [ -51.328125, 68.784144 ], [ -50.976562, 69.900118 ], [ -53.437500, 69.287257 ], [ -54.843750, 69.657086 ], [ -54.492188, 70.844673 ], [ -51.328125, 70.612614 ], [ -54.140625, 71.524909 ], [ -54.843750, 71.413177 ], [ -55.898438, 71.635993 ], [ -54.843750, 72.607120 ], [ -57.304688, 74.683250 ], [ -58.710938, 75.140778 ], [ -58.710938, 75.497157 ], [ -61.171875, 76.100796 ], [ -63.281250, 76.184995 ], [ -68.554688, 76.100796 ], [ -71.367188, 76.999935 ], [ -68.906250, 77.312520 ], [ -66.796875, 77.389504 ], [ -71.015625, 77.617709 ], [ -73.125000, 78.061989 ], [ -73.125000, 78.420193 ], [ -65.742188, 79.367701 ], [ -65.390625, 79.749932 ], [ -67.851562, 80.118564 ], [ -67.148438, 80.532071 ], [ -63.632812, 81.201420 ], [ -62.226562, 81.308321 ], [ -62.578125, 81.773644 ], [ -60.117188, 82.021378 ], [ -57.304688, 82.214217 ], [ -54.140625, 82.214217 ], [ -53.085938, 81.873641 ], [ -50.273438, 82.448764 ], [ -44.648438, 81.672424 ], [ -46.757812, 82.214217 ], [ -46.757812, 82.631333 ], [ -43.242188, 83.236426 ], [ -39.726562, 83.194896 ], [ -38.671875, 83.559717 ], [ -35.156250, 83.638106 ] ] ], [ [ [ -106.523438, 73.124945 ], [ -106.875000, 73.428424 ], [ -105.117188, 73.627789 ], [ -104.414062, 73.428424 ], [ -105.468750, 72.711903 ], [ -104.414062, 70.959697 ], [ -100.898438, 70.020587 ], [ -101.250000, 69.534518 ], [ -102.656250, 69.534518 ], [ -101.953125, 69.162558 ], [ -102.304688, 68.784144 ], [ -105.820312, 69.162558 ], [ -108.984375, 68.784144 ], [ -113.203125, 68.528235 ], [ -113.906250, 69.037142 ], [ -115.312500, 69.287257 ], [ -116.015625, 69.162558 ], [ -117.421875, 69.900118 ], [ -112.500000, 70.377854 ], [ -114.257812, 70.612614 ], [ -117.773438, 70.495574 ], [ -118.476562, 70.959697 ], [ -116.015625, 71.300793 ], [ -117.773438, 71.300793 ], [ -119.531250, 71.524909 ], [ -117.773438, 72.711903 ], [ -115.312500, 73.327858 ], [ -114.257812, 73.124945 ], [ -114.609375, 72.607120 ], [ -112.500000, 72.919635 ], [ -111.093750, 72.501722 ], [ -110.039062, 72.919635 ], [ -108.984375, 72.607120 ], [ -108.281250, 71.635993 ], [ -107.578125, 72.073911 ], [ -108.281250, 73.124945 ], [ -107.578125, 73.226700 ], [ -106.523438, 73.124945 ] ] ], [ [ [ -98.085938, 70.140364 ], [ -96.679688, 69.657086 ], [ -95.625000, 69.162558 ], [ -96.328125, 68.784144 ], [ -97.734375, 69.037142 ], [ -98.437500, 68.911005 ], [ -99.843750, 69.411242 ], [ -98.085938, 70.140364 ] ] ], [ [ [ 49.218750, -12.211180 ], [ 49.921875, -13.581921 ], [ 50.273438, -15.623037 ], [ 49.570312, -15.623037 ], [ 49.921875, -16.972741 ], [ 47.109375, -24.846565 ], [ 45.351562, -25.482951 ], [ 43.945312, -24.846565 ], [ 43.242188, -22.917923 ], [ 43.593750, -21.289374 ], [ 44.296875, -19.311143 ], [ 43.945312, -17.308688 ], [ 44.296875, -16.299051 ], [ 46.406250, -15.623037 ], [ 47.812500, -14.604847 ], [ 49.218750, -12.211180 ] ] ], [ [ [ 166.640625, -22.268764 ], [ 165.585938, -21.616579 ], [ 164.179688, -19.973349 ], [ 164.882812, -20.303418 ], [ 166.640625, -22.268764 ] ] ], [ [ [ 178.242188, -17.308688 ], [ 178.593750, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -17.308688 ], [ 178.242188, -17.308688 ] ] ], [ [ [ -181.757812, -17.308688 ], [ -181.406250, -18.312811 ], [ -182.460938, -18.312811 ], [ -182.460938, -17.308688 ], [ -181.757812, -17.308688 ] ] ], [ [ [ 180.000000, -15.961329 ], [ 180.000000, -16.636192 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -15.961329 ] ] ], [ [ [ -180.000000, -15.961329 ], [ -180.000000, -16.636192 ], [ -181.406250, -16.972741 ], [ -181.406250, -16.636192 ], [ -180.000000, -15.961329 ] ] ], [ [ [ 167.343750, -15.961329 ], [ 167.695312, -16.299051 ], [ 167.343750, -16.636192 ], [ 167.343750, -15.961329 ] ] ], [ [ [ 166.640625, -14.604847 ], [ 166.992188, -14.944785 ], [ 167.343750, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.604847 ] ] ], [ [ [ -72.773438, 83.236426 ], [ -65.742188, 83.026219 ], [ -63.632812, 82.896987 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.355800 ], [ -64.335938, 81.923186 ], [ -66.796875, 81.723188 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -69.609375, 80.589727 ], [ -71.015625, 79.812302 ], [ -73.125000, 79.624056 ], [ -73.828125, 79.432371 ], [ -76.992188, 79.302640 ], [ -75.585938, 79.171335 ], [ -76.289062, 79.038437 ], [ -75.234375, 78.490552 ], [ -78.046875, 77.915669 ], [ -78.398438, 77.542096 ], [ -79.804688, 77.235074 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.760541 ], [ -80.507812, 76.184995 ], [ -83.320312, 76.434604 ], [ -86.132812, 76.268695 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -87.890625, 77.157163 ], [ -88.242188, 77.915669 ], [ -87.539062, 77.989049 ], [ -85.078125, 77.542096 ], [ -86.484375, 78.206563 ], [ -87.890625, 78.349411 ], [ -87.187500, 78.767792 ], [ -85.429688, 78.971386 ], [ -85.078125, 79.367701 ], [ -86.484375, 79.749932 ], [ -86.835938, 80.238501 ], [ -84.023438, 80.178713 ], [ -83.320312, 80.118564 ], [ -81.914062, 80.474065 ], [ -84.023438, 80.589727 ], [ -87.539062, 80.532071 ], [ -89.296875, 80.872827 ], [ -91.406250, 81.569968 ], [ -91.757812, 81.873641 ], [ -90.000000, 82.070028 ], [ -86.835938, 82.261699 ], [ -85.429688, 82.631333 ], [ -84.375000, 82.586106 ], [ -83.320312, 82.308893 ], [ -82.265625, 82.853382 ], [ -81.210938, 83.026219 ], [ -79.453125, 83.111071 ], [ -76.289062, 83.153111 ], [ -75.585938, 83.068774 ], [ -72.773438, 83.236426 ] ] ], [ [ [ 132.539062, -0.351560 ], [ 133.945312, -0.703107 ], [ 134.296875, -2.811371 ], [ 135.351562, -3.513421 ], [ 136.406250, -2.460181 ], [ 138.164062, -1.757537 ], [ 144.492188, -3.864255 ], [ 145.898438, -5.615986 ], [ 147.656250, -5.965754 ], [ 148.007812, -6.664608 ], [ 146.953125, -6.664608 ], [ 147.304688, -7.362467 ], [ 148.710938, -9.102097 ], [ 150.820312, -10.141932 ], [ 150.117188, -10.487812 ], [ 148.007812, -10.141932 ], [ 145.898438, -8.059230 ], [ 144.843750, -7.710992 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.102097 ], [ 142.734375, -9.449062 ], [ 140.976562, -9.102097 ], [ 140.273438, -8.407168 ], [ 137.460938, -8.407168 ], [ 138.515625, -7.362467 ], [ 137.812500, -5.266008 ], [ 133.593750, -3.513421 ], [ 132.890625, -4.214943 ], [ 131.835938, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 130.429688, -1.054628 ], [ 132.539062, -0.351560 ] ] ], [ [ [ 127.265625, -8.407168 ], [ 123.750000, -10.487812 ], [ 124.101562, -9.449062 ], [ 124.804688, -8.754795 ], [ 125.859375, -8.407168 ], [ 127.265625, -8.407168 ] ] ], [ [ [ 120.585938, -10.141932 ], [ 118.828125, -9.449062 ], [ 119.882812, -9.449062 ], [ 120.585938, -10.141932 ] ] ], [ [ [ 159.609375, -9.102097 ], [ 161.015625, -9.795678 ], [ 159.960938, -9.795678 ], [ 159.609375, -9.102097 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.718750, -9.449062 ], [ 161.367188, -9.795678 ], [ 160.664062, -8.754795 ], [ 161.015625, -8.407168 ] ] ], [ [ [ -121.640625, 74.402163 ], [ -120.234375, 74.211983 ], [ -117.421875, 74.211983 ], [ -115.664062, 73.428424 ], [ -119.179688, 72.501722 ], [ -120.585938, 71.856229 ], [ -120.585938, 71.413177 ], [ -123.046875, 70.844673 ], [ -123.750000, 71.300793 ], [ -125.859375, 71.856229 ], [ -124.101562, 73.726595 ], [ -124.804688, 74.307353 ], [ -121.640625, 74.402163 ] ] ], [ [ [ 117.773438, -8.059230 ], [ 119.179688, -8.754795 ], [ 116.718750, -9.102097 ], [ 117.773438, -8.059230 ] ] ], [ [ [ 123.046875, -8.059230 ], [ 122.695312, -8.754795 ], [ 119.882812, -8.754795 ], [ 120.585938, -8.407168 ], [ 123.046875, -8.059230 ] ] ], [ [ [ 106.171875, -5.965754 ], [ 108.632812, -6.664608 ], [ 110.390625, -7.013668 ], [ 110.742188, -6.315299 ], [ 115.664062, -8.407168 ], [ 114.609375, -8.754795 ], [ 106.523438, -7.362467 ], [ 105.468750, -7.013668 ], [ 106.171875, -5.965754 ] ] ], [ [ [ -148.359375, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.302183 ], [ -186.679688, -84.405941 ], [ -183.867188, -84.160849 ], [ -180.000000, -84.706049 ], [ -178.945312, -84.124973 ], [ -177.187500, -84.440107 ], [ -175.781250, -84.124973 ], [ -174.375000, -84.541361 ], [ -172.968750, -84.052561 ], [ -169.804688, -83.867616 ], [ -166.992188, -84.574702 ], [ -164.179688, -84.834225 ], [ -162.421875, -85.051129 ], [ -162.070312, -85.141284 ], [ -158.203125, -85.373767 ], [ -155.039062, -85.111416 ], [ -150.820312, -85.287916 ], [ -148.359375, -85.622069 ] ] ], [ [ [ -85.781250, 73.824820 ], [ -86.484375, 73.124945 ], [ -85.781250, 72.501722 ], [ -84.726562, 73.327858 ], [ -82.265625, 73.726595 ], [ -80.507812, 72.711903 ], [ -80.859375, 72.073911 ], [ -78.750000, 72.395706 ], [ -77.695312, 72.711903 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.300793 ], [ -72.070312, 71.524909 ], [ -71.367188, 70.959697 ], [ -68.906250, 70.495574 ], [ -67.851562, 70.140364 ], [ -66.796875, 69.162558 ], [ -68.906250, 68.656555 ], [ -64.687500, 67.875541 ], [ -63.281250, 66.930060 ], [ -61.875000, 66.930060 ], [ -62.226562, 66.089364 ], [ -63.984375, 65.072130 ], [ -66.796875, 66.372755 ], [ -67.851562, 66.231457 ], [ -68.203125, 65.658275 ], [ -65.390625, 64.320872 ], [ -64.687500, 63.391522 ], [ -65.039062, 62.593341 ], [ -68.906250, 63.704722 ], [ -66.093750, 61.938950 ], [ -71.015625, 62.915233 ], [ -72.070312, 63.391522 ], [ -71.718750, 63.704722 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.320872 ], [ -77.695312, 64.168107 ], [ -78.398438, 64.623877 ], [ -78.046875, 65.366837 ], [ -73.828125, 65.512963 ], [ -73.828125, 66.372755 ], [ -72.773438, 67.339861 ], [ -73.476562, 68.007571 ], [ -76.992188, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.046875, 69.778952 ], [ -79.101562, 70.140364 ], [ -79.453125, 69.900118 ], [ -81.210938, 69.778952 ], [ -85.078125, 70.020587 ], [ -88.593750, 70.377854 ], [ -89.648438, 70.728979 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.351562, 72.181804 ], [ -89.296875, 73.124945 ], [ -88.242188, 73.528399 ], [ -85.781250, 73.824820 ] ] ], [ [ [ -184.218750, 69.900118 ], [ -180.000000, 68.911005 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.652977 ], [ -174.375000, 66.372755 ], [ -174.726562, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.804688, 65.946472 ], [ -170.859375, 65.512963 ], [ -172.617188, 65.366837 ], [ -172.968750, 64.320872 ], [ -174.023438, 64.320872 ], [ -176.132812, 64.923542 ], [ -176.132812, 65.366837 ], [ -177.187500, 65.512963 ], [ -178.242188, 65.366837 ], [ -178.945312, 65.802776 ], [ -178.593750, 66.089364 ], [ -180.000000, 65.802776 ], [ -179.296875, 65.366837 ], [ -180.000000, 64.923542 ], [ -181.406250, 64.472794 ], [ -182.460938, 64.623877 ], [ -180.703125, 62.915233 ], [ -180.703125, 62.267923 ], [ -182.812500, 62.593341 ], [ -187.031250, 61.270233 ], [ -187.031250, 69.900118 ], [ -184.218750, 69.900118 ] ] ], [ [ [ 154.687500, -4.915833 ], [ 156.093750, -6.664608 ], [ 155.742188, -6.664608 ], [ 154.687500, -5.965754 ], [ 154.687500, -4.915833 ] ] ], [ [ [ 152.226562, -4.214943 ], [ 151.875000, -5.615986 ], [ 150.117188, -6.315299 ], [ 148.359375, -5.615986 ], [ 149.765625, -5.615986 ], [ 150.117188, -4.915833 ], [ 150.117188, -5.615986 ], [ 150.820312, -5.615986 ], [ 151.523438, -4.915833 ], [ 151.523438, -4.214943 ], [ 152.226562, -4.214943 ] ] ], [ [ [ 95.273438, 5.615986 ], [ 97.382812, 5.266008 ], [ 100.546875, 2.108899 ], [ 101.601562, 2.108899 ], [ 103.710938, 0.000000 ], [ 103.359375, -0.703107 ], [ 106.171875, -3.162456 ], [ 105.820312, -5.965754 ], [ 104.765625, -5.965754 ], [ 102.656250, -4.214943 ], [ 98.437500, 1.757537 ], [ 95.273438, 5.615986 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 121.640625, -4.565474 ], [ 120.937500, -2.460181 ], [ 120.234375, -2.811371 ], [ 120.585938, -5.615986 ], [ 119.531250, -5.266008 ], [ 119.531250, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.882812, 0.703107 ], [ 120.937500, 1.406109 ], [ 124.101562, 1.054628 ], [ 125.156250, 1.757537 ], [ 124.453125, 0.351560 ], [ 120.234375, 0.351560 ], [ 119.882812, -0.351560 ], [ 120.937500, -1.406109 ], [ 123.398438, -0.703107 ], [ 121.640625, -1.757537 ], [ 122.695312, -4.565474 ] ] ], [ [ [ -100.195312, 73.824820 ], [ -99.140625, 73.627789 ], [ -97.382812, 73.726595 ], [ -97.031250, 73.428424 ], [ -98.085938, 73.022592 ], [ -96.679688, 72.607120 ], [ -96.679688, 71.635993 ], [ -98.437500, 71.300793 ], [ -99.492188, 71.300793 ], [ -102.656250, 72.501722 ], [ -102.304688, 72.816074 ], [ -100.546875, 72.711903 ], [ -101.601562, 73.327858 ], [ -100.195312, 73.824820 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 150.820312, -2.811371 ], [ 150.820312, -2.460181 ], [ 152.226562, -3.162456 ], [ 152.578125, -3.864255 ] ] ], [ [ [ -92.460938, 81.255032 ], [ -91.054688, 80.703997 ], [ -87.890625, 80.297927 ], [ -87.187500, 79.687184 ], [ -85.781250, 79.367701 ], [ -87.187500, 79.038437 ], [ -88.945312, 78.278201 ], [ -90.703125, 78.206563 ], [ -92.812500, 78.349411 ], [ -93.867188, 78.767792 ], [ -93.867188, 79.105086 ], [ -93.164062, 79.367701 ], [ -94.921875, 79.367701 ], [ -95.976562, 79.687184 ], [ -96.679688, 80.178713 ], [ -95.273438, 80.928426 ], [ -94.218750, 80.983688 ], [ -94.570312, 81.201420 ], [ -92.460938, 81.255032 ] ] ], [ [ [ 116.015625, -3.513421 ], [ 114.960938, -4.214943 ], [ 113.203125, -3.162456 ], [ 112.148438, -3.513421 ], [ 111.796875, -3.162456 ], [ 110.390625, -2.811371 ], [ 110.039062, -1.757537 ], [ 108.984375, -0.351560 ], [ 108.984375, 1.406109 ], [ 109.687500, 2.108899 ], [ 111.093750, 1.757537 ], [ 111.445312, 2.811371 ], [ 112.851562, 3.162456 ], [ 115.312500, 5.615986 ], [ 117.070312, 7.013668 ], [ 117.773438, 5.965754 ], [ 119.179688, 5.266008 ], [ 117.421875, 3.162456 ], [ 117.773438, 1.757537 ], [ 118.828125, 1.054628 ], [ 117.773438, 0.703107 ], [ 117.421875, -0.703107 ], [ 116.718750, -1.406109 ], [ 116.015625, -3.513421 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 21.445312, 78.971386 ], [ 18.984375, 78.560488 ], [ 18.632812, 77.841848 ], [ 17.578125, 77.617709 ], [ 17.226562, 76.840816 ], [ 15.820312, 76.760541 ], [ 13.710938, 77.389504 ], [ 14.765625, 77.767582 ], [ 13.007812, 77.989049 ], [ 11.250000, 78.836065 ], [ 10.546875, 79.624056 ], [ 13.007812, 79.997168 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.468750, 79.997168 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.429688, -3.162456 ], [ 130.781250, -3.864255 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 126.914062, -3.162456 ], [ 126.914062, -3.864255 ], [ 125.859375, -3.162456 ], [ 126.914062, -3.162456 ] ] ], [ [ [ 95.976562, 81.255032 ], [ 97.734375, 80.760615 ], [ 100.195312, 79.749932 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.038437 ], [ 93.164062, 79.432371 ], [ 92.460938, 80.118564 ], [ 91.054688, 80.356995 ], [ 93.867188, 81.038617 ], [ 95.976562, 81.255032 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 128.671875, 1.054628 ], [ 127.968750, -1.054628 ], [ 127.265625, 1.054628 ], [ 127.968750, 2.108899 ] ] ], [ [ [ -96.679688, 77.157163 ], [ -94.570312, 77.078784 ], [ -93.515625, 76.760541 ], [ -91.757812, 76.760541 ], [ -90.703125, 76.434604 ], [ -91.054688, 76.100796 ], [ -89.296875, 75.584937 ], [ -86.484375, 75.497157 ], [ -84.726562, 75.672197 ], [ -81.210938, 75.672197 ], [ -80.156250, 75.320025 ], [ -79.804688, 74.959392 ], [ -80.507812, 74.683250 ], [ -81.914062, 74.402163 ], [ -83.320312, 74.590108 ], [ -88.242188, 74.402163 ], [ -92.460938, 74.867889 ], [ -92.812500, 75.845169 ], [ -93.867188, 76.351896 ], [ -95.976562, 76.434604 ], [ -97.031250, 76.760541 ], [ -96.679688, 77.157163 ] ] ], [ [ [ -109.687500, 76.760541 ], [ -108.632812, 76.679785 ], [ -107.929688, 75.845169 ], [ -106.875000, 76.016094 ], [ -105.820312, 75.930885 ], [ -105.820312, 75.497157 ], [ -106.171875, 74.959392 ], [ -109.687500, 74.867889 ], [ -112.148438, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.683250 ], [ -111.796875, 75.140778 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.184995 ], [ -115.312500, 76.516819 ], [ -112.500000, 76.100796 ], [ -110.742188, 75.584937 ], [ -108.984375, 75.497157 ], [ -110.390625, 76.434604 ], [ -109.687500, 76.760541 ] ] ], [ [ [ -5.273438, 50.064192 ], [ -3.515625, 51.399206 ], [ -4.921875, 51.618017 ], [ -5.273438, 52.052490 ], [ -4.218750, 52.268157 ], [ -4.921875, 52.908902 ], [ -4.570312, 53.540307 ], [ -3.164062, 53.330873 ], [ -2.812500, 53.956086 ], [ -3.515625, 54.572062 ], [ -4.921875, 54.775346 ], [ -4.921875, 55.776573 ], [ -5.625000, 55.379110 ], [ -5.976562, 56.752723 ], [ -4.921875, 58.631217 ], [ -3.164062, 58.631217 ], [ -4.218750, 57.515823 ], [ -2.109375, 57.704147 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.973798 ], [ 0.351562, 52.908902 ], [ 1.757812, 52.696361 ], [ 1.054688, 51.835778 ], [ 1.406250, 51.179343 ], [ 0.703125, 50.736455 ], [ -2.812500, 50.736455 ], [ -3.515625, 50.289339 ], [ -4.570312, 50.289339 ], [ -5.273438, 50.064192 ] ] ], [ [ [ -14.414062, 66.513260 ], [ -14.765625, 65.802776 ], [ -13.710938, 65.072130 ], [ -14.765625, 64.320872 ], [ -18.632812, 63.548552 ], [ -22.851562, 64.014496 ], [ -21.796875, 64.472794 ], [ -23.906250, 64.923542 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -24.257812, 65.658275 ], [ -23.554688, 66.231457 ], [ -22.148438, 66.372755 ], [ -20.742188, 65.802776 ], [ -18.984375, 66.231457 ], [ -17.929688, 65.946472 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ] ] ], [ [ [ 125.507812, 9.795678 ], [ 126.210938, 9.449062 ], [ 126.562500, 7.013668 ], [ 126.210938, 6.315299 ], [ 125.859375, 7.362467 ], [ 125.507812, 6.664608 ], [ 125.507812, 5.615986 ], [ 124.101562, 6.315299 ], [ 124.101562, 7.362467 ], [ 123.750000, 7.710992 ], [ 121.992188, 7.013668 ], [ 122.343750, 8.059230 ], [ 125.507812, 9.102097 ], [ 125.507812, 9.795678 ] ] ], [ [ [ 80.156250, 9.795678 ], [ 81.914062, 7.362467 ], [ 81.562500, 6.315299 ], [ 80.507812, 5.965754 ], [ 79.804688, 8.059230 ], [ 80.156250, 9.795678 ] ] ], [ [ [ 22.851562, 80.647035 ], [ 25.312500, 80.415707 ], [ 27.421875, 80.058050 ], [ 26.015625, 79.496652 ], [ 22.851562, 79.367701 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.812302 ], [ 18.632812, 79.874297 ], [ 17.226562, 80.297927 ], [ 20.390625, 80.589727 ], [ 21.796875, 80.356995 ], [ 22.851562, 80.647035 ] ] ], [ [ [ 141.328125, 41.508577 ], [ 142.031250, 39.095963 ], [ 140.976562, 38.272689 ], [ 140.625000, 35.746512 ], [ 140.273438, 35.173808 ], [ 137.109375, 34.597042 ], [ 135.703125, 33.431441 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.597042 ], [ 133.945312, 34.307144 ], [ 131.132812, 34.016242 ], [ 131.835938, 33.137551 ], [ 130.781250, 31.052934 ], [ 130.078125, 31.353637 ], [ 130.429688, 32.249974 ], [ 129.375000, 33.431441 ], [ 132.539062, 35.460670 ], [ 135.703125, 35.460670 ], [ 136.757812, 37.439974 ], [ 137.460938, 36.879621 ], [ 139.570312, 38.272689 ], [ 139.921875, 39.368279 ], [ 139.921875, 40.446947 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.508577 ], [ 141.328125, 41.508577 ] ] ], [ [ [ 141.328125, 76.100796 ], [ 145.195312, 75.584937 ], [ 144.140625, 74.775843 ], [ 140.625000, 74.867889 ], [ 138.867188, 74.590108 ], [ 137.109375, 75.230667 ], [ 137.460938, 75.930885 ], [ 138.867188, 76.100796 ], [ 141.328125, 76.100796 ] ] ], [ [ [ -98.437500, 76.598545 ], [ -97.734375, 76.268695 ], [ -98.085938, 74.959392 ], [ -99.843750, 74.867889 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.672197 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -101.601562, 76.268695 ], [ -99.843750, 76.679785 ], [ -98.437500, 76.598545 ] ] ], [ [ [ 119.531250, 11.523088 ], [ 119.531250, 10.487812 ], [ 117.070312, 8.407168 ], [ 119.531250, 11.523088 ] ] ], [ [ [ -116.367188, 77.617709 ], [ -116.367188, 76.840816 ], [ -117.070312, 76.516819 ], [ -121.640625, 75.930885 ], [ -122.695312, 76.100796 ], [ -119.179688, 77.542096 ], [ -117.421875, 77.466028 ], [ -116.367188, 77.617709 ] ] ], [ [ [ 124.101562, 11.178402 ], [ 124.101562, 10.141932 ], [ 123.046875, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.046875, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 10.141932 ], [ 124.101562, 11.178402 ] ] ], [ [ [ 101.953125, 79.367701 ], [ 105.468750, 78.699106 ], [ 105.117188, 78.278201 ], [ 99.492188, 77.915669 ], [ 101.250000, 79.237185 ], [ 101.953125, 79.367701 ] ] ], [ [ [ -61.171875, 10.833306 ], [ -60.820312, 10.141932 ], [ -61.875000, 10.141932 ], [ -61.171875, 10.833306 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.859375, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 10.487812 ], [ 124.804688, 10.141932 ], [ 124.453125, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.101562, 12.554564 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 121.992188, 11.867351 ], [ 123.046875, 11.523088 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.867351 ] ] ], [ [ [ 120.234375, 13.581921 ], [ 121.640625, 12.897489 ], [ 121.289062, 12.211180 ], [ 120.234375, 13.581921 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.351562, 73.824820 ], [ -92.109375, 72.919635 ], [ -93.164062, 72.816074 ], [ -94.218750, 72.073911 ], [ -95.273438, 72.073911 ], [ -95.976562, 72.919635 ], [ -95.625000, 73.824820 ], [ -94.570312, 74.116047 ], [ -92.460938, 74.116047 ] ] ], [ [ [ 120.585938, 18.646245 ], [ 122.343750, 18.312811 ], [ 122.343750, 16.972741 ], [ 121.640625, 15.961329 ], [ 121.640625, 14.264383 ], [ 124.101562, 13.923404 ], [ 124.101562, 12.554564 ], [ 123.046875, 13.581921 ], [ 122.695312, 13.239945 ], [ 121.992188, 13.923404 ], [ 120.585938, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.944785 ], [ 119.882812, 16.299051 ], [ 120.234375, 15.961329 ], [ 120.585938, 18.646245 ] ] ], [ [ [ -55.195312, 47.279229 ], [ -56.250000, 47.517201 ], [ -59.414062, 47.517201 ], [ -58.710938, 48.224673 ], [ -59.062500, 48.458352 ], [ -56.601562, 51.179343 ], [ -55.898438, 51.618017 ], [ -55.546875, 51.618017 ], [ -56.953125, 49.837982 ], [ -56.250000, 50.064192 ], [ -55.546875, 49.837982 ], [ -55.898438, 49.610710 ], [ -53.437500, 49.152970 ], [ -53.789062, 48.458352 ], [ -53.085938, 48.690960 ], [ -52.734375, 47.517201 ], [ -53.085938, 46.558860 ], [ -54.140625, 46.800059 ], [ -54.140625, 47.754098 ], [ -55.195312, 47.279229 ] ] ], [ [ [ -85.781250, 65.802776 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.219894 ], [ -84.375000, 65.366837 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.014496 ], [ -80.156250, 63.704722 ], [ -80.859375, 63.391522 ], [ -82.617188, 63.704722 ], [ -82.968750, 64.168107 ], [ -85.429688, 63.074866 ], [ -85.781250, 63.704722 ], [ -87.187500, 63.548552 ], [ -86.484375, 64.014496 ], [ -85.781250, 65.802776 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -100.898438, 78.767792 ], [ -99.843750, 77.915669 ], [ -101.250000, 77.989049 ], [ -103.007812, 78.349411 ], [ -105.117188, 78.349411 ], [ -104.062500, 78.699106 ], [ -105.468750, 78.903929 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -70.664062, 19.973349 ], [ -68.203125, 18.646245 ], [ -68.554688, 18.312811 ], [ -70.664062, 18.312811 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.978733 ], [ -74.531250, 18.312811 ], [ -72.421875, 18.646245 ], [ -73.125000, 19.973349 ], [ -70.664062, 19.973349 ] ] ], [ [ [ -77.695312, 18.646245 ], [ -76.289062, 17.978733 ], [ -77.695312, 17.978733 ], [ -78.398438, 18.312811 ], [ -77.695312, 18.646245 ] ] ], [ [ [ -67.148438, 18.646245 ], [ -65.742188, 18.312811 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.646245 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -5.625000, 54.572062 ], [ -6.328125, 53.956086 ], [ -5.976562, 53.120405 ], [ -6.679688, 52.268157 ], [ -8.437500, 51.618017 ], [ -9.843750, 51.835778 ], [ -9.140625, 52.908902 ], [ -9.843750, 53.956086 ], [ -7.734375, 55.178868 ], [ -6.679688, 55.178868 ] ] ], [ [ [ 110.039062, 19.973349 ], [ 111.093750, 19.642588 ], [ 110.390625, 18.646245 ], [ 109.335938, 18.312811 ], [ 108.632812, 18.646245 ], [ 108.632812, 19.311143 ], [ 110.039062, 19.973349 ] ] ], [ [ [ -155.742188, 20.303418 ], [ -154.687500, 19.642588 ], [ -155.742188, 18.979026 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -82.265625, 23.241346 ], [ -78.398438, 22.593726 ], [ -74.179688, 20.303418 ], [ -77.695312, 19.973349 ], [ -76.992188, 20.303418 ], [ -78.046875, 20.632784 ], [ -78.750000, 21.616579 ], [ -82.265625, 22.268764 ], [ -81.914062, 22.593726 ], [ -85.078125, 21.943046 ], [ -82.265625, 23.241346 ] ] ], [ [ [ 142.734375, 53.748711 ], [ 143.085938, 51.835778 ], [ 144.492188, 48.922499 ], [ 143.085938, 49.382373 ], [ 142.734375, 47.754098 ], [ 143.437500, 46.800059 ], [ 143.437500, 46.073231 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.073231 ], [ 142.031250, 50.958427 ], [ 141.679688, 51.835778 ], [ 141.679688, 53.330873 ], [ 142.734375, 53.748711 ] ] ], [ [ [ 49.921875, 80.928426 ], [ 51.679688, 80.703997 ], [ 50.976562, 80.532071 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.178713 ], [ 47.460938, 79.997168 ], [ 46.406250, 80.238501 ], [ 47.109375, 80.532071 ], [ 45.000000, 80.589727 ], [ 46.757812, 80.760615 ], [ 48.164062, 80.760615 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.928426 ] ] ], [ [ [ -159.257812, 22.593726 ], [ -159.257812, 21.943046 ], [ -159.960938, 21.943046 ], [ -159.960938, 22.593726 ], [ -159.257812, 22.593726 ] ] ], [ [ [ 142.031250, 45.583290 ], [ 143.789062, 44.087585 ], [ 144.492188, 43.834527 ], [ 145.195312, 44.339565 ], [ 145.546875, 43.325178 ], [ 144.140625, 43.068888 ], [ 143.085938, 42.032974 ], [ 141.679688, 42.553080 ], [ 140.976562, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.553080 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 142.031250, 45.583290 ] ] ], [ [ [ 121.640625, 25.165173 ], [ 121.992188, 24.846565 ], [ 120.585938, 21.943046 ], [ 120.234375, 23.563987 ], [ 121.640625, 25.165173 ] ] ], [ [ [ -80.507812, 73.726595 ], [ -78.046875, 73.627789 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -79.804688, 72.816074 ], [ -80.859375, 73.327858 ], [ -80.859375, 73.726595 ], [ -80.507812, 73.726595 ] ] ], [ [ [ -78.046875, 25.165173 ], [ -77.695312, 23.885838 ], [ -78.398438, 24.527135 ], [ -78.046875, 25.165173 ] ] ], [ [ [ -98.789062, 78.903929 ], [ -96.679688, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.976562, 78.061989 ], [ -97.382812, 77.841848 ], [ -98.085938, 78.061989 ], [ -98.789062, 78.903929 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 23.203125, 78.061989 ], [ 24.609375, 77.841848 ], [ 22.500000, 77.466028 ], [ 20.742188, 77.692870 ], [ 21.445312, 77.915669 ], [ 20.742188, 78.278201 ], [ 22.851562, 78.420193 ] ] ], [ [ [ -77.695312, 26.745610 ], [ -77.695312, 27.059126 ], [ -76.992188, 26.745610 ], [ -77.343750, 25.799891 ], [ -77.695312, 26.431228 ], [ -78.750000, 26.431228 ], [ -78.398438, 26.745610 ], [ -77.695312, 26.745610 ] ] ], [ [ [ -111.093750, 78.134493 ], [ -109.687500, 77.989049 ], [ -110.039062, 77.692870 ], [ -112.148438, 77.389504 ], [ -113.554688, 77.767582 ], [ -112.851562, 78.061989 ], [ -111.093750, 78.134493 ] ] ], [ [ [ -94.921875, 75.672197 ], [ -93.515625, 74.959392 ], [ -94.218750, 74.590108 ], [ -95.625000, 74.683250 ], [ -96.679688, 74.959392 ], [ -96.328125, 75.408854 ], [ -94.921875, 75.672197 ] ] ], [ [ [ 146.250000, 75.497157 ], [ 148.359375, 75.320025 ], [ 150.820312, 75.050354 ], [ 149.414062, 74.683250 ], [ 148.007812, 74.775843 ], [ 146.250000, 75.140778 ], [ 146.250000, 75.497157 ] ] ], [ [ [ -178.945312, 71.524909 ], [ -177.539062, 71.300793 ], [ -178.593750, 70.844673 ], [ -180.000000, 70.844673 ], [ -181.054688, 70.728979 ], [ -181.406250, 71.074056 ], [ -180.000000, 71.524909 ], [ -178.945312, 71.524909 ] ] ], [ [ [ 181.054688, 71.524909 ], [ 182.460938, 71.300793 ], [ 181.406250, 70.844673 ], [ 180.000000, 70.844673 ], [ 178.945312, 70.728979 ], [ 178.593750, 71.074056 ], [ 180.000000, 71.524909 ], [ 181.054688, 71.524909 ] ] ], [ [ [ -128.320312, 50.736455 ], [ -125.859375, 50.289339 ], [ -123.398438, 48.458352 ], [ -125.507812, 48.922499 ], [ -126.914062, 49.837982 ], [ -127.968750, 50.064192 ], [ -128.320312, 50.736455 ] ] ], [ [ [ 133.945312, 34.307144 ], [ 134.648438, 33.724340 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.431441 ], [ 132.890625, 32.842674 ], [ 132.539062, 32.842674 ], [ 132.890625, 34.016242 ], [ 133.945312, 34.307144 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 139.921875, 73.327858 ], [ 140.976562, 73.726595 ], [ 142.031250, 73.824820 ] ] ], [ [ [ -75.937500, 68.269387 ], [ -75.234375, 68.007571 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.204032 ], [ -76.992188, 67.067433 ], [ -76.640625, 68.138852 ], [ -75.937500, 68.269387 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.095963 ], [ 8.789062, 38.822591 ], [ 8.085938, 40.979898 ], [ 9.140625, 41.244772 ] ] ], [ [ [ -111.445312, 78.836065 ], [ -109.687500, 78.630006 ], [ -110.742188, 78.420193 ], [ -112.500000, 78.420193 ], [ -111.445312, 78.836065 ] ] ], [ [ [ -94.570312, 77.841848 ], [ -93.867188, 77.542096 ], [ -96.328125, 77.542096 ], [ -96.328125, 77.841848 ], [ -94.570312, 77.841848 ] ] ], [ [ [ -153.281250, 57.891497 ], [ -152.226562, 57.515823 ], [ -153.984375, 56.752723 ], [ -154.687500, 57.515823 ], [ -153.281250, 57.891497 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -168.750000, 63.233627 ], [ -169.453125, 62.915233 ], [ -170.507812, 63.391522 ], [ -171.562500, 63.391522 ], [ -171.562500, 63.704722 ], [ -170.507812, 63.704722 ] ] ], [ [ [ -131.835938, 54.162434 ], [ -132.187500, 52.908902 ], [ -132.890625, 53.330873 ], [ -133.242188, 54.162434 ], [ -131.835938, 54.162434 ] ] ], [ [ [ -166.640625, 60.413852 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.888937 ], [ -166.289062, 59.712097 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.413852 ] ] ], [ [ [ -64.335938, 50.064192 ], [ -62.929688, 49.610710 ], [ -61.875000, 49.152970 ], [ -63.632812, 49.382373 ], [ -64.687500, 49.837982 ], [ -64.335938, 50.064192 ] ] ], [ [ [ 9.492188, 43.068888 ], [ 9.492188, 42.032974 ], [ 9.140625, 41.508577 ], [ 8.437500, 42.293564 ], [ 9.492188, 43.068888 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 123.046875, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.695312, -4.565474 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 153.281250, -4.565474 ], [ 152.929688, -4.915833 ], [ 152.578125, -3.864255 ] ] ], [ [ [ 142.734375, 53.748711 ], [ 142.382812, 54.162434 ], [ 142.734375, 54.367759 ], [ 142.734375, 53.748711 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -148.359375, -85.622069 ], [ -143.085938, -85.051129 ], [ -142.734375, -84.574702 ], [ -146.953125, -84.541361 ], [ -150.117188, -84.302183 ], [ -150.820312, -83.905058 ], [ -153.632812, -83.676943 ], [ -152.578125, -82.448764 ], [ -152.929688, -82.021378 ], [ -154.687500, -81.773644 ], [ -155.390625, -81.413933 ], [ -156.796875, -81.093214 ], [ -154.335938, -81.147481 ], [ -152.226562, -80.983688 ], [ -150.820312, -81.361287 ], [ -147.304688, -80.647035 ], [ -146.250000, -80.356995 ], [ -146.601562, -79.935918 ], [ -149.414062, -79.367701 ], [ -155.390625, -79.038437 ], [ -158.203125, -78.061989 ], [ -158.203125, -76.920614 ], [ -157.148438, -77.312520 ], [ -153.632812, -77.078784 ], [ -152.929688, -77.466028 ], [ -151.171875, -77.389504 ], [ -147.656250, -76.598545 ], [ -146.250000, -76.516819 ], [ -146.250000, -75.408854 ], [ -144.843750, -75.230667 ], [ -144.492188, -75.497157 ], [ -141.679688, -75.050354 ], [ -138.867188, -74.959392 ], [ -135.351562, -74.307353 ], [ -133.593750, -74.402163 ], [ -132.187500, -74.307353 ], [ -130.781250, -74.496413 ], [ -129.726562, -74.496413 ], [ -128.320312, -74.307353 ], [ -125.507812, -74.496413 ], [ -119.531250, -74.496413 ], [ -117.421875, -74.019543 ], [ -116.367188, -74.211983 ], [ -113.906250, -73.726595 ], [ -112.148438, -74.683250 ], [ -111.093750, -74.402163 ], [ -110.039062, -74.775843 ], [ -107.578125, -75.140778 ], [ -104.765625, -74.959392 ], [ -100.546875, -75.320025 ], [ -100.195312, -74.867889 ], [ -101.250000, -74.211983 ], [ -102.656250, -74.116047 ], [ -103.710938, -72.607120 ], [ -99.140625, -72.919635 ], [ -97.734375, -73.528399 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.124945 ], [ -91.406250, -73.428424 ], [ -90.000000, -73.327858 ], [ -89.296875, -72.607120 ], [ -88.593750, -73.022592 ], [ -87.187500, -73.226700 ], [ -86.132812, -73.124945 ], [ -85.078125, -73.528399 ], [ -81.562500, -73.824820 ], [ -80.156250, -73.124945 ], [ -79.453125, -73.528399 ], [ -78.046875, -73.428424 ], [ -76.289062, -73.922469 ], [ -74.882812, -73.824820 ], [ -72.773438, -73.428424 ], [ -67.851562, -72.816074 ], [ -67.148438, -72.073911 ], [ -68.554688, -69.657086 ], [ -67.500000, -68.138852 ], [ -67.851562, -67.339861 ], [ -63.632812, -64.923542 ], [ -57.656250, -63.233627 ], [ -57.304688, -63.548552 ], [ -57.656250, -63.860036 ], [ -59.062500, -64.320872 ], [ -60.468750, -64.320872 ], [ -62.578125, -65.072130 ], [ -62.226562, -66.231457 ], [ -63.632812, -66.513260 ], [ -65.742188, -68.007571 ], [ -64.687500, -68.656555 ], [ -63.281250, -69.287257 ], [ -61.523438, -71.074056 ], [ -60.820312, -73.124945 ], [ -61.523438, -74.116047 ], [ -61.875000, -74.402163 ], [ -63.281250, -74.590108 ], [ -64.335938, -75.230667 ], [ -69.960938, -76.184995 ], [ -70.664062, -76.598545 ], [ -77.343750, -76.679785 ], [ -76.992188, -77.078784 ], [ -74.179688, -77.542096 ], [ -73.828125, -77.915669 ], [ -74.882812, -78.206563 ], [ -76.640625, -78.134493 ], [ -78.046875, -78.349411 ], [ -78.046875, -79.171335 ], [ -75.234375, -80.238501 ], [ -73.125000, -80.415707 ], [ -68.203125, -81.308321 ], [ -65.742188, -81.466261 ], [ -63.281250, -81.773644 ], [ -59.765625, -82.355800 ], [ -58.359375, -83.236426 ], [ -56.953125, -82.853382 ], [ -53.789062, -82.261699 ], [ -49.921875, -81.723188 ], [ -47.109375, -81.723188 ], [ -45.000000, -81.823794 ], [ -42.890625, -82.070028 ], [ -42.187500, -81.672424 ], [ -40.781250, -81.361287 ], [ -38.320312, -81.361287 ], [ -34.453125, -80.928426 ], [ -30.234375, -80.589727 ], [ -28.476562, -80.356995 ], [ -29.531250, -79.624056 ], [ -29.531250, -79.237185 ], [ -35.507812, -79.432371 ], [ -35.859375, -78.349411 ], [ -35.156250, -78.134493 ], [ -32.343750, -77.617709 ], [ -28.828125, -76.679785 ], [ -25.312500, -76.268695 ], [ -22.500000, -76.100796 ], [ -17.578125, -75.140778 ], [ -15.820312, -74.496413 ], [ -15.468750, -74.116047 ], [ -16.523438, -73.824820 ], [ -16.171875, -73.428424 ], [ -12.304688, -72.395706 ], [ -10.195312, -71.300793 ], [ -9.140625, -71.300793 ], [ -8.437500, -71.635993 ], [ -7.382812, -71.746432 ], [ -7.031250, -70.959697 ], [ -5.625000, -71.074056 ], [ -5.625000, -71.413177 ], [ -4.218750, -71.413177 ], [ -1.757812, -71.187754 ], [ -0.703125, -71.187754 ], [ -0.351562, -71.635993 ], [ 0.703125, -71.300793 ], [ 6.328125, -70.495574 ], [ 7.734375, -69.900118 ], [ 8.437500, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.898438, -70.844673 ], [ 11.953125, -70.612614 ], [ 13.359375, -70.020587 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.377854 ], [ 15.820312, -70.020587 ], [ 16.875000, -69.900118 ], [ 21.445312, -70.020587 ], [ 22.500000, -70.728979 ], [ 23.554688, -70.495574 ], [ 27.070312, -70.495574 ], [ 31.992188, -69.657086 ], [ 33.750000, -68.528235 ], [ 34.804688, -68.656555 ], [ 36.210938, -69.287257 ], [ 37.265625, -69.162558 ], [ 38.671875, -69.778952 ], [ 39.726562, -69.534518 ], [ 40.078125, -69.162558 ], [ 41.835938, -68.656555 ], [ 46.406250, -67.609221 ], [ 47.460938, -67.742759 ], [ 48.867188, -67.067433 ], [ 50.625000, -66.930060 ], [ 51.679688, -66.231457 ], [ 54.492188, -65.802776 ], [ 56.250000, -65.946472 ], [ 58.710938, -67.339861 ], [ 59.765625, -67.339861 ], [ 61.523438, -68.007571 ], [ 62.226562, -68.007571 ], [ 63.984375, -67.339861 ], [ 68.906250, -67.875541 ], [ 69.609375, -69.287257 ], [ 69.609375, -69.657086 ], [ 67.851562, -70.259452 ], [ 67.851562, -70.728979 ], [ 68.906250, -70.728979 ], [ 67.851562, -71.856229 ], [ 68.554688, -72.181804 ], [ 69.960938, -72.289067 ], [ 71.015625, -72.073911 ], [ 73.828125, -69.900118 ], [ 77.695312, -69.411242 ], [ 79.101562, -68.269387 ], [ 81.914062, -67.339861 ], [ 86.835938, -67.204032 ], [ 87.890625, -66.231457 ], [ 88.945312, -66.930060 ], [ 89.648438, -67.204032 ], [ 94.218750, -67.067433 ], [ 95.625000, -67.339861 ], [ 98.789062, -67.067433 ], [ 99.843750, -67.204032 ], [ 103.007812, -65.512963 ], [ 106.171875, -66.930060 ], [ 110.390625, -66.652977 ], [ 111.796875, -66.089364 ], [ 113.554688, -65.946472 ], [ 115.664062, -66.652977 ], [ 116.718750, -66.652977 ], [ 119.882812, -67.204032 ], [ 120.937500, -67.204032 ], [ 122.343750, -66.513260 ], [ 123.398438, -66.513260 ], [ 128.671875, -66.791909 ], [ 130.781250, -66.372755 ], [ 134.648438, -66.231457 ], [ 135.000000, -65.366837 ], [ 136.757812, -66.791909 ], [ 137.460938, -66.930060 ], [ 145.546875, -66.930060 ], [ 146.601562, -67.875541 ], [ 148.710938, -68.399180 ], [ 152.578125, -68.911005 ], [ 153.632812, -68.911005 ], [ 154.335938, -68.528235 ], [ 156.796875, -69.411242 ], [ 159.257812, -69.657086 ], [ 161.718750, -70.612614 ], [ 167.343750, -70.844673 ], [ 170.507812, -71.413177 ], [ 171.210938, -71.746432 ], [ 169.453125, -73.627789 ], [ 168.046875, -73.824820 ], [ 167.343750, -74.211983 ], [ 165.937500, -74.402163 ], [ 164.179688, -75.497157 ], [ 163.476562, -76.268695 ], [ 163.476562, -77.078784 ], [ 164.882812, -78.206563 ], [ 166.640625, -78.349411 ], [ 166.992188, -78.767792 ], [ 163.828125, -79.105086 ], [ 161.718750, -79.171335 ], [ 159.960938, -80.928426 ], [ 161.015625, -81.255032 ], [ 162.421875, -82.070028 ], [ 166.640625, -83.026219 ], [ 168.750000, -83.318733 ], [ 169.453125, -83.829945 ], [ 172.265625, -84.052561 ], [ 173.320312, -84.405941 ], [ 176.132812, -84.160849 ], [ 180.000000, -84.706049 ], [ 181.054688, -84.124973 ], [ 182.812500, -84.440107 ], [ 184.218750, -84.124973 ], [ 185.625000, -84.541361 ], [ 187.031250, -84.088878 ], [ 187.031250, -85.622069 ], [ -148.359375, -85.622069 ] ] ], [ [ [ -163.125000, -78.206563 ], [ -161.367188, -78.349411 ], [ -160.312500, -78.699106 ], [ -159.257812, -79.496652 ], [ -161.015625, -79.624056 ], [ -162.421875, -79.302640 ], [ -163.828125, -78.630006 ], [ -163.125000, -78.206563 ] ] ], [ [ [ -122.343750, -73.327858 ], [ -119.882812, -73.627789 ], [ -118.828125, -73.528399 ], [ -120.234375, -74.116047 ], [ -121.640625, -74.019543 ], [ -122.695312, -73.627789 ], [ -122.343750, -73.327858 ] ] ], [ [ [ -126.562500, -73.226700 ], [ -125.507812, -73.528399 ], [ -124.101562, -73.824820 ], [ -127.265625, -73.428424 ], [ -126.562500, -73.226700 ] ] ], [ [ [ -101.601562, -71.746432 ], [ -97.734375, -72.073911 ], [ -96.679688, -71.965388 ], [ -96.328125, -72.501722 ], [ -100.898438, -72.501722 ], [ -101.953125, -72.289067 ], [ -102.304688, -71.856229 ], [ -101.601562, -71.746432 ] ] ], [ [ [ -70.312500, -68.911005 ], [ -68.554688, -70.959697 ], [ -68.906250, -72.181804 ], [ -71.015625, -72.501722 ], [ -72.421875, -72.501722 ], [ -72.070312, -72.073911 ], [ -74.179688, -72.395706 ], [ -74.882812, -72.073911 ], [ -74.882812, -71.635993 ], [ -73.125000, -71.187754 ], [ -72.070312, -71.187754 ], [ -71.718750, -69.534518 ], [ -71.015625, -69.037142 ], [ -70.312500, -68.911005 ] ] ], [ [ [ -46.757812, -77.841848 ], [ -45.000000, -78.061989 ], [ -43.945312, -78.490552 ], [ -43.242188, -79.997168 ], [ -48.515625, -80.816891 ], [ -50.625000, -81.038617 ], [ -52.734375, -80.983688 ], [ -54.140625, -80.647035 ], [ -54.140625, -80.238501 ], [ -51.679688, -79.935918 ], [ -48.515625, -78.061989 ], [ -46.757812, -77.841848 ] ] ], [ [ [ -60.468750, -79.624056 ], [ -59.414062, -80.058050 ], [ -60.117188, -80.983688 ], [ -62.226562, -80.872827 ], [ -64.335938, -80.928426 ], [ -66.445312, -80.238501 ], [ -61.875000, -80.415707 ], [ -60.468750, -79.624056 ] ] ], [ [ [ -69.257812, -52.482780 ], [ -68.554688, -52.696361 ], [ -67.851562, -53.748711 ], [ -65.039062, -54.775346 ], [ -65.390625, -55.178868 ], [ -66.445312, -55.178868 ], [ -66.796875, -54.977614 ], [ -68.203125, -55.578345 ], [ -71.015625, -54.977614 ], [ -74.531250, -52.908902 ], [ -72.421875, -53.540307 ], [ -71.015625, -54.162434 ], [ -71.015625, -53.748711 ], [ -70.312500, -52.908902 ], [ -69.257812, -52.482780 ] ] ], [ [ [ -75.937500, 37.160317 ], [ -75.585938, 35.460670 ], [ -81.210938, 31.353637 ], [ -81.210938, 30.145127 ], [ -80.156250, 26.745610 ], [ -80.507812, 25.165173 ], [ -81.210938, 25.165173 ], [ -81.562500, 25.799891 ], [ -83.671875, 29.840644 ], [ -85.078125, 29.535230 ], [ -86.484375, 30.448674 ], [ -89.648438, 30.145127 ], [ -89.296875, 29.228890 ], [ -93.867188, 29.840644 ], [ -96.679688, 28.304381 ], [ -97.382812, 27.371767 ], [ -97.031250, 25.799891 ], [ -97.734375, 22.593726 ], [ -95.976562, 18.979026 ], [ -94.570312, 17.978733 ], [ -91.406250, 18.979026 ], [ -90.703125, 19.311143 ], [ -90.351562, 20.961440 ], [ -87.187500, 21.616579 ], [ -86.835938, 20.961440 ], [ -87.890625, 18.312811 ], [ -88.242188, 18.646245 ], [ -88.242188, 16.636192 ], [ -88.945312, 15.961329 ], [ -85.078125, 15.961329 ], [ -83.320312, 15.284185 ], [ -83.671875, 11.178402 ], [ -82.265625, 9.102097 ], [ -80.859375, 8.754795 ], [ -79.453125, 9.449062 ], [ -76.992188, 8.754795 ], [ -75.585938, 9.449062 ], [ -74.882812, 11.178402 ], [ -73.476562, 11.178402 ], [ -71.718750, 12.554564 ], [ -71.015625, 12.211180 ], [ -72.070312, 11.523088 ], [ -71.718750, 9.102097 ], [ -71.015625, 9.795678 ], [ -71.367188, 10.833306 ], [ -70.312500, 11.523088 ], [ -69.960938, 12.211180 ], [ -68.203125, 10.487812 ], [ -66.093750, 10.487812 ], [ -65.039062, 10.141932 ], [ -64.335938, 10.487812 ], [ -61.875000, 10.833306 ], [ -62.578125, 10.487812 ], [ -62.226562, 9.795678 ], [ -60.820312, 9.449062 ], [ -60.820312, 8.407168 ], [ -59.062500, 8.059230 ], [ -57.304688, 5.965754 ], [ -53.789062, 5.615986 ], [ -51.328125, 4.214943 ], [ -50.625000, 1.757537 ], [ -49.921875, 1.757537 ], [ -50.625000, 0.351560 ], [ -48.515625, -0.351560 ], [ -48.515625, -1.406109 ], [ -47.812500, -0.703107 ], [ -45.000000, -1.406109 ], [ -44.648438, -2.811371 ], [ -43.242188, -2.460181 ], [ -40.078125, -2.811371 ], [ -37.265625, -4.915833 ], [ -35.156250, -5.615986 ], [ -34.804688, -7.362467 ], [ -35.156250, -9.102097 ], [ -38.671875, -12.897489 ], [ -39.375000, -17.978733 ], [ -40.781250, -21.943046 ], [ -41.835938, -22.917923 ], [ -44.648438, -23.241346 ], [ -47.812500, -24.846565 ], [ -48.515625, -25.799891 ], [ -48.867188, -28.613459 ], [ -53.789062, -34.307144 ], [ -54.843750, -34.885931 ], [ -56.250000, -34.885931 ], [ -58.359375, -34.016242 ], [ -58.359375, -34.307144 ], [ -57.304688, -35.173808 ], [ -57.304688, -36.031332 ], [ -56.601562, -36.315125 ], [ -57.656250, -38.272689 ], [ -59.062500, -38.822591 ], [ -62.226562, -38.822591 ], [ -62.226562, -40.713956 ], [ -63.632812, -41.244772 ], [ -64.687500, -40.713956 ], [ -65.039062, -40.979898 ], [ -65.039062, -42.032974 ], [ -64.335938, -42.293564 ], [ -63.632812, -42.032974 ], [ -63.281250, -42.553080 ], [ -65.039062, -43.580391 ], [ -65.390625, -45.089036 ], [ -66.445312, -45.089036 ], [ -67.148438, -45.583290 ], [ -67.500000, -46.316584 ], [ -65.742188, -47.279229 ], [ -66.093750, -48.224673 ], [ -67.148438, -48.690960 ], [ -67.851562, -49.837982 ], [ -69.257812, -50.736455 ], [ -68.203125, -52.268157 ], [ -69.609375, -52.268157 ], [ -71.015625, -52.908902 ], [ -71.015625, -53.748711 ], [ -72.421875, -53.540307 ], [ -74.882812, -52.268157 ], [ -75.585938, -48.690960 ], [ -74.179688, -47.040182 ], [ -75.585938, -46.558860 ], [ -74.531250, -45.828799 ], [ -74.179688, -44.087585 ], [ -73.125000, -44.339565 ], [ -72.773438, -42.293564 ], [ -73.476562, -42.032974 ], [ -73.828125, -43.325178 ], [ -74.179688, -43.325178 ], [ -73.125000, -39.368279 ], [ -73.476562, -37.160317 ], [ -73.125000, -37.160317 ], [ -71.367188, -32.546813 ], [ -71.367188, -28.921631 ], [ -71.015625, -27.683528 ], [ -70.312500, -19.642588 ], [ -70.312500, -18.312811 ], [ -71.367188, -17.308688 ], [ -75.937500, -14.604847 ], [ -79.804688, -7.362467 ], [ -81.210938, -5.965754 ], [ -80.859375, -5.615986 ], [ -81.562500, -4.565474 ], [ -79.804688, -2.811371 ], [ -80.859375, -2.108899 ], [ -80.859375, -1.054628 ], [ -80.156250, 0.703107 ], [ -78.750000, 1.406109 ], [ -78.398438, 2.460181 ], [ -76.992188, 3.864255 ], [ -78.046875, 8.407168 ], [ -79.453125, 9.102097 ], [ -80.507812, 8.059230 ], [ -80.156250, 7.710992 ], [ -80.859375, 7.362467 ], [ -81.210938, 7.710992 ], [ -83.671875, 8.407168 ], [ -85.078125, 10.141932 ], [ -85.078125, 9.449062 ], [ -85.781250, 9.795678 ], [ -85.781250, 11.178402 ], [ -87.539062, 12.897489 ], [ -87.539062, 13.239945 ], [ -91.406250, 13.923404 ], [ -94.570312, 16.299051 ], [ -96.679688, 15.623037 ], [ -103.359375, 18.312811 ], [ -105.468750, 19.973349 ], [ -105.117188, 21.289374 ], [ -106.171875, 22.917923 ], [ -112.148438, 28.921631 ], [ -113.203125, 31.052934 ], [ -114.609375, 31.653381 ], [ -114.609375, 30.145127 ], [ -109.335938, 23.241346 ], [ -110.039062, 22.917923 ], [ -112.148438, 24.846565 ], [ -112.148438, 26.115986 ], [ -114.960938, 27.683528 ], [ -114.257812, 28.613459 ], [ -115.664062, 29.535230 ], [ -117.421875, 33.137551 ], [ -118.476562, 34.016242 ], [ -120.585938, 34.597042 ], [ -123.750000, 38.822591 ], [ -124.453125, 40.178873 ], [ -124.453125, 42.811522 ], [ -123.750000, 45.583290 ], [ -124.804688, 48.224673 ], [ -123.046875, 47.989922 ], [ -122.695312, 47.040182 ], [ -122.695312, 48.922499 ], [ -125.507812, 50.513427 ], [ -127.265625, 50.736455 ], [ -127.968750, 52.268157 ], [ -129.023438, 52.696361 ], [ -130.429688, 54.775346 ], [ -131.835938, 55.578345 ], [ -132.187500, 56.365250 ], [ -133.593750, 57.136239 ], [ -133.945312, 58.077876 ], [ -136.757812, 58.263287 ], [ -139.921875, 59.534318 ], [ -142.734375, 60.064840 ], [ -143.789062, 60.064840 ], [ -146.953125, 60.930432 ], [ -148.359375, 60.586967 ], [ -148.007812, 60.064840 ], [ -151.875000, 59.175928 ], [ -151.523438, 60.759160 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.813742 ], [ -154.335938, 58.077876 ], [ -156.445312, 57.515823 ], [ -158.554688, 55.973798 ], [ -164.882812, 54.367759 ], [ -158.554688, 56.944974 ], [ -157.851562, 57.515823 ], [ -157.148438, 58.995311 ], [ -158.203125, 58.631217 ], [ -158.554688, 58.813742 ], [ -158.906250, 58.447733 ], [ -159.609375, 58.995311 ], [ -159.960938, 58.631217 ], [ -160.312500, 58.995311 ], [ -162.070312, 58.631217 ], [ -161.718750, 59.712097 ], [ -162.421875, 60.064840 ], [ -163.828125, 59.712097 ], [ -165.234375, 60.586967 ], [ -165.234375, 61.100789 ], [ -166.289062, 61.438767 ], [ -164.531250, 63.074866 ], [ -163.125000, 63.074866 ], [ -162.421875, 63.548552 ], [ -161.367188, 63.391522 ], [ -160.664062, 63.704722 ], [ -161.367188, 64.472794 ], [ -160.664062, 64.774125 ], [ -162.773438, 64.320872 ], [ -163.476562, 64.623877 ], [ -164.882812, 64.472794 ], [ -166.289062, 64.623877 ], [ -168.046875, 65.658275 ], [ -164.531250, 66.513260 ], [ -163.476562, 66.513260 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.089364 ], [ -165.234375, 68.007571 ], [ -166.640625, 68.399180 ], [ -166.289062, 68.911005 ], [ -164.531250, 68.911005 ], [ -163.125000, 69.411242 ], [ -162.773438, 69.900118 ], [ -162.070312, 70.377854 ], [ -158.906250, 70.844673 ], [ -158.203125, 70.844673 ], [ -156.445312, 71.413177 ], [ -155.039062, 71.187754 ], [ -154.335938, 70.728979 ], [ -153.984375, 70.844673 ], [ -152.226562, 70.844673 ], [ -152.226562, 70.612614 ], [ -150.820312, 70.377854 ], [ -149.765625, 70.495574 ], [ -144.843750, 70.020587 ], [ -143.437500, 70.140364 ], [ -136.406250, 68.911005 ], [ -134.296875, 69.657086 ], [ -132.890625, 69.534518 ], [ -129.726562, 70.140364 ], [ -129.023438, 69.778952 ], [ -128.320312, 70.020587 ], [ -127.968750, 70.495574 ], [ -125.859375, 69.534518 ], [ -124.453125, 70.140364 ], [ -124.453125, 69.411242 ], [ -123.046875, 69.534518 ], [ -122.695312, 69.900118 ], [ -121.640625, 69.778952 ], [ -117.773438, 69.037142 ], [ -115.312500, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.875541 ], [ -113.554688, 67.742759 ], [ -110.039062, 68.007571 ], [ -108.984375, 67.339861 ], [ -107.929688, 67.875541 ], [ -108.984375, 68.269387 ], [ -108.281250, 68.656555 ], [ -106.171875, 68.784144 ], [ -104.414062, 68.007571 ], [ -103.359375, 68.138852 ], [ -101.601562, 67.609221 ], [ -98.437500, 67.742759 ], [ -98.437500, 68.399180 ], [ -97.734375, 68.528235 ], [ -95.976562, 68.269387 ], [ -95.976562, 67.339861 ], [ -95.625000, 68.138852 ], [ -94.570312, 68.007571 ], [ -94.218750, 69.037142 ], [ -96.328125, 70.140364 ], [ -96.328125, 71.187754 ], [ -95.273438, 71.965388 ], [ -93.867188, 71.746432 ], [ -92.812500, 71.300793 ], [ -91.406250, 70.140364 ], [ -92.460938, 69.657086 ], [ -90.703125, 69.534518 ], [ -90.703125, 68.528235 ], [ -89.296875, 69.287257 ], [ -87.890625, 68.656555 ], [ -88.242188, 67.875541 ], [ -87.187500, 67.204032 ], [ -85.429688, 68.784144 ], [ -85.429688, 69.900118 ], [ -82.617188, 69.657086 ], [ -81.210938, 69.162558 ], [ -81.210938, 68.656555 ], [ -81.914062, 68.138852 ], [ -81.210938, 67.609221 ], [ -81.210938, 67.067433 ], [ -83.320312, 66.372755 ], [ -84.726562, 66.231457 ], [ -85.781250, 66.513260 ], [ -87.187500, 64.774125 ], [ -88.593750, 64.168107 ], [ -90.000000, 64.014496 ], [ -90.703125, 63.548552 ], [ -90.703125, 62.915233 ], [ -91.757812, 62.754726 ], [ -94.218750, 60.930432 ], [ -94.570312, 58.995311 ], [ -93.164062, 58.813742 ], [ -92.460938, 57.136239 ], [ -91.054688, 57.326521 ], [ -85.078125, 55.379110 ], [ -82.265625, 55.178868 ], [ -82.265625, 53.330873 ], [ -81.562500, 52.052490 ], [ -79.804688, 51.179343 ], [ -79.101562, 51.618017 ], [ -78.750000, 52.482780 ], [ -79.101562, 54.162434 ], [ -79.804688, 54.572062 ], [ -78.398438, 55.178868 ], [ -76.640625, 56.559482 ], [ -77.343750, 58.077876 ], [ -78.398438, 58.813742 ], [ -77.343750, 59.888937 ], [ -78.046875, 62.267923 ], [ -77.343750, 62.593341 ], [ -74.531250, 62.103883 ], [ -73.828125, 62.431074 ], [ -71.367188, 61.100789 ], [ -69.609375, 61.100789 ], [ -69.257812, 58.995311 ], [ -68.203125, 58.813742 ], [ -67.500000, 58.263287 ], [ -66.093750, 58.813742 ], [ -64.687500, 60.413852 ], [ -61.523438, 56.944974 ], [ -61.875000, 56.365250 ], [ -59.414062, 55.178868 ], [ -57.304688, 54.572062 ], [ -56.953125, 53.748711 ], [ -55.898438, 53.330873 ], [ -55.546875, 52.052490 ], [ -56.953125, 51.399206 ], [ -58.710938, 50.958427 ], [ -60.117188, 50.289339 ], [ -66.445312, 50.289339 ], [ -71.015625, 46.800059 ], [ -66.445312, 49.152970 ], [ -65.039062, 49.152970 ], [ -64.335938, 48.690960 ], [ -65.039062, 47.989922 ], [ -64.335938, 46.316584 ], [ -63.984375, 46.316584 ], [ -63.281250, 45.828799 ], [ -61.523438, 45.828799 ], [ -60.468750, 47.040182 ], [ -60.468750, 46.316584 ], [ -59.765625, 45.828799 ], [ -65.390625, 43.580391 ], [ -66.093750, 43.580391 ], [ -66.093750, 44.339565 ], [ -64.335938, 45.336702 ], [ -67.148438, 45.089036 ], [ -66.796875, 44.840291 ], [ -69.960938, 43.580391 ], [ -70.664062, 43.068888 ], [ -70.664062, 42.293564 ], [ -69.960938, 41.508577 ], [ -73.828125, 40.979898 ], [ -72.070312, 40.979898 ], [ -73.828125, 40.713956 ], [ -74.882812, 38.822591 ], [ -75.585938, 39.368279 ], [ -74.882812, 38.272689 ], [ -75.937500, 37.160317 ] ], [ [ -75.937500, 37.160317 ], [ -75.585938, 37.996163 ], [ -76.289062, 39.095963 ], [ -76.289062, 37.996163 ], [ -75.937500, 37.160317 ] ] ], [ [ [ 32.695312, 35.173808 ], [ 33.046875, 35.460670 ], [ 34.453125, 35.746512 ], [ 33.046875, 34.597042 ], [ 32.695312, 35.173808 ] ] ], [ [ [ -58.710938, -51.179343 ], [ -57.656250, -51.618017 ], [ -58.007812, -51.835778 ], [ -59.414062, -52.268157 ], [ -59.765625, -51.835778 ], [ -60.820312, -52.268157 ], [ -61.171875, -51.835778 ], [ -60.117188, -51.179343 ], [ -59.062500, -51.399206 ], [ -58.710938, -51.179343 ] ] ], [ [ [ 68.906250, -48.690960 ], [ 70.664062, -49.152970 ], [ 70.312500, -49.610710 ], [ 68.906250, -49.837982 ], [ 68.906250, -48.690960 ] ] ], [ [ [ 144.843750, -40.713956 ], [ 146.250000, -41.244772 ], [ 148.359375, -40.979898 ], [ 148.007812, -43.325178 ], [ 147.656250, -42.811522 ], [ 146.953125, -43.580391 ], [ 145.898438, -43.580391 ], [ 144.843750, -40.713956 ] ] ], [ [ [ 23.554688, 35.746512 ], [ 24.257812, 35.460670 ], [ 26.367188, 35.173808 ], [ 24.609375, 34.885931 ], [ 23.554688, 35.173808 ], [ 23.554688, 35.746512 ] ] ], [ [ [ -63.984375, 47.040182 ], [ -63.632812, 46.558860 ], [ -61.875000, 46.558860 ], [ -62.929688, 46.073231 ], [ -63.984375, 46.316584 ], [ -63.984375, 47.040182 ] ] ], [ [ [ 15.468750, 38.272689 ], [ 15.117188, 36.597889 ], [ 12.304688, 37.718590 ], [ 12.656250, 37.996163 ], [ 15.468750, 38.272689 ] ] ], [ [ [ 123.398438, -16.636192 ], [ 123.750000, -15.961329 ], [ 124.101562, -16.299051 ], [ 125.859375, -14.264383 ], [ 126.914062, -13.923404 ], [ 128.320312, -14.944785 ], [ 129.726562, -14.944785 ], [ 129.375000, -14.264383 ], [ 130.781250, -12.554564 ], [ 132.539062, -12.211180 ], [ 131.835938, -11.178402 ], [ 132.187500, -11.178402 ], [ 135.351562, -12.211180 ], [ 136.406250, -11.867351 ], [ 137.109375, -12.211180 ], [ 136.054688, -13.239945 ], [ 135.351562, -14.944785 ], [ 140.273438, -17.644022 ], [ 141.328125, -16.299051 ], [ 141.679688, -12.554564 ], [ 142.382812, -10.833306 ], [ 143.789062, -14.604847 ], [ 144.492188, -14.264383 ], [ 145.546875, -14.944785 ], [ 146.250000, -18.979026 ], [ 148.710938, -20.303418 ], [ 149.765625, -22.268764 ], [ 150.820312, -22.268764 ], [ 150.820312, -23.563987 ], [ 153.281250, -26.115986 ], [ 153.632812, -27.994401 ], [ 152.929688, -31.052934 ], [ 150.468750, -35.746512 ], [ 150.117188, -37.439974 ], [ 148.359375, -37.718590 ], [ 146.250000, -39.095963 ], [ 144.843750, -38.548165 ], [ 145.195312, -37.996163 ], [ 143.437500, -38.822591 ], [ 140.625000, -37.996163 ], [ 139.570312, -36.031332 ], [ 138.164062, -35.746512 ], [ 138.164062, -34.307144 ], [ 137.812500, -35.173808 ], [ 136.757812, -35.173808 ], [ 137.812500, -33.724340 ], [ 137.812500, -32.842674 ], [ 136.054688, -34.885931 ], [ 135.351562, -34.597042 ], [ 134.296875, -32.546813 ], [ 131.484375, -31.353637 ], [ 126.210938, -32.249974 ], [ 124.101562, -32.842674 ], [ 123.750000, -34.016242 ], [ 119.882812, -34.016242 ], [ 118.125000, -35.173808 ], [ 116.718750, -34.885931 ], [ 114.960938, -34.307144 ], [ 115.664062, -33.137551 ], [ 115.664062, -31.653381 ], [ 113.203125, -26.115986 ], [ 113.906250, -26.431228 ], [ 113.554688, -25.482951 ], [ 114.257812, -26.431228 ], [ 113.554688, -24.527135 ], [ 114.257812, -21.616579 ], [ 114.257812, -22.593726 ], [ 116.718750, -20.632784 ], [ 120.937500, -19.642588 ], [ 123.046875, -16.299051 ], [ 123.398438, -16.636192 ] ], [ [ 123.398438, -16.636192 ], [ 123.398438, -17.308688 ], [ 123.750000, -16.972741 ], [ 123.398438, -16.636192 ] ] ], [ [ [ 12.304688, 56.170023 ], [ 10.195312, 59.534318 ], [ 8.437500, 58.263287 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.631217 ], [ 4.921875, 61.938950 ], [ 10.546875, 64.472794 ], [ 14.765625, 67.875541 ], [ 19.335938, 69.778952 ], [ 21.445312, 70.259452 ], [ 22.851562, 70.259452 ], [ 24.609375, 71.074056 ], [ 26.367188, 70.959697 ], [ 28.125000, 71.187754 ], [ 31.289062, 70.495574 ], [ 29.882812, 70.140364 ], [ 30.937500, 69.534518 ], [ 31.992188, 69.900118 ], [ 33.750000, 69.287257 ], [ 36.562500, 69.037142 ], [ 40.429688, 67.875541 ], [ 41.132812, 67.474922 ], [ 41.132812, 66.791909 ], [ 40.078125, 66.231457 ], [ 38.320312, 65.946472 ], [ 33.750000, 66.791909 ], [ 33.046875, 66.652977 ], [ 34.804688, 65.946472 ], [ 34.804688, 64.472794 ], [ 36.914062, 63.860036 ], [ 37.265625, 64.320872 ], [ 36.562500, 64.774125 ], [ 37.265625, 65.072130 ], [ 39.726562, 64.472794 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.187500, 66.513260 ], [ 43.945312, 66.089364 ], [ 44.648438, 66.791909 ], [ 43.593750, 67.339861 ], [ 44.296875, 68.007571 ], [ 43.593750, 68.528235 ], [ 46.406250, 68.269387 ], [ 46.757812, 67.742759 ], [ 45.703125, 67.609221 ], [ 45.703125, 67.067433 ], [ 46.406250, 66.652977 ], [ 47.812500, 66.930060 ], [ 48.164062, 67.474922 ], [ 53.789062, 68.911005 ], [ 54.492188, 68.784144 ], [ 53.437500, 68.138852 ], [ 54.843750, 68.138852 ], [ 55.546875, 68.399180 ], [ 57.304688, 68.528235 ], [ 58.710938, 68.911005 ], [ 60.117188, 68.269387 ], [ 61.171875, 68.911005 ], [ 60.117188, 69.534518 ], [ 60.468750, 69.900118 ], [ 63.632812, 69.534518 ], [ 68.554688, 68.138852 ], [ 69.257812, 68.656555 ], [ 68.203125, 69.411242 ], [ 66.796875, 69.411242 ], [ 67.148438, 69.900118 ], [ 66.796875, 71.074056 ], [ 68.554688, 71.965388 ], [ 69.257812, 72.816074 ], [ 69.960938, 73.022592 ], [ 72.421875, 72.816074 ], [ 72.773438, 72.181804 ], [ 71.718750, 71.413177 ], [ 72.773438, 70.377854 ], [ 72.421875, 69.037142 ], [ 73.828125, 68.399180 ], [ 71.367188, 66.372755 ], [ 72.421875, 66.231457 ], [ 73.828125, 66.791909 ], [ 74.882812, 67.742759 ], [ 74.531250, 68.269387 ], [ 74.882812, 69.037142 ], [ 73.828125, 69.037142 ], [ 73.476562, 69.657086 ], [ 74.531250, 70.612614 ], [ 73.125000, 71.413177 ], [ 74.882812, 72.073911 ], [ 74.531250, 72.816074 ], [ 75.234375, 72.816074 ], [ 75.585938, 72.289067 ], [ 75.234375, 71.300793 ], [ 76.289062, 71.187754 ], [ 75.937500, 71.856229 ], [ 77.695312, 72.289067 ], [ 79.804688, 72.289067 ], [ 81.562500, 71.746432 ], [ 80.507812, 72.607120 ], [ 80.507812, 73.627789 ], [ 82.265625, 73.824820 ], [ 86.835938, 73.922469 ], [ 86.132812, 74.496413 ], [ 87.187500, 75.140778 ], [ 88.242188, 75.140778 ], [ 90.351562, 75.672197 ], [ 92.812500, 75.758940 ], [ 93.164062, 76.016094 ], [ 95.976562, 76.100796 ], [ 96.679688, 75.930885 ], [ 98.789062, 76.434604 ], [ 100.898438, 76.434604 ], [ 101.953125, 77.312520 ], [ 104.414062, 77.692870 ], [ 106.171875, 77.389504 ], [ 104.765625, 77.157163 ], [ 106.875000, 76.999935 ], [ 107.226562, 76.516819 ], [ 108.281250, 76.760541 ], [ 111.093750, 76.679785 ], [ 113.203125, 76.184995 ], [ 114.257812, 75.845169 ], [ 113.906250, 75.320025 ], [ 109.335938, 74.211983 ], [ 112.148438, 73.824820 ], [ 112.851562, 74.019543 ], [ 113.554688, 73.327858 ], [ 113.906250, 73.627789 ], [ 115.664062, 73.726595 ], [ 118.828125, 73.627789 ], [ 119.179688, 73.124945 ], [ 123.046875, 72.919635 ], [ 123.398438, 73.726595 ], [ 126.914062, 73.528399 ], [ 128.671875, 73.022592 ], [ 129.023438, 72.395706 ], [ 128.320312, 71.965388 ], [ 129.726562, 71.187754 ], [ 131.132812, 70.728979 ], [ 132.187500, 71.856229 ], [ 133.945312, 71.413177 ], [ 135.703125, 71.635993 ], [ 137.460938, 71.300793 ], [ 138.164062, 71.635993 ], [ 139.921875, 71.524909 ], [ 139.218750, 72.395706 ], [ 140.625000, 72.816074 ], [ 149.414062, 72.181804 ], [ 150.468750, 71.635993 ], [ 152.929688, 70.844673 ], [ 157.148438, 71.074056 ], [ 158.906250, 70.844673 ], [ 159.960938, 70.495574 ], [ 159.609375, 69.778952 ], [ 161.015625, 69.411242 ], [ 162.421875, 69.657086 ], [ 165.937500, 69.411242 ], [ 167.695312, 69.534518 ], [ 169.453125, 68.656555 ], [ 170.859375, 69.037142 ], [ 170.156250, 69.657086 ], [ 170.507812, 70.140364 ], [ 173.671875, 69.778952 ], [ 175.781250, 69.900118 ], [ 180.000000, 68.911005 ], [ 184.921875, 67.204032 ], [ 184.921875, 66.652977 ], [ 185.625000, 66.372755 ], [ 185.273438, 67.067433 ], [ 187.031250, 66.930060 ], [ 187.031250, 64.320872 ], [ 185.976562, 64.320872 ], [ 183.867188, 64.923542 ], [ 183.867188, 65.366837 ], [ 182.812500, 65.512963 ], [ 181.757812, 65.366837 ], [ 181.054688, 65.802776 ], [ 181.406250, 66.089364 ], [ 180.000000, 65.802776 ], [ 180.703125, 65.366837 ], [ 180.000000, 64.923542 ], [ 178.593750, 64.472794 ], [ 177.539062, 64.623877 ], [ 179.296875, 62.915233 ], [ 179.296875, 62.267923 ], [ 177.539062, 62.593341 ], [ 173.671875, 61.606396 ], [ 170.507812, 59.888937 ], [ 168.750000, 60.586967 ], [ 166.289062, 59.712097 ], [ 165.937500, 60.239811 ], [ 164.882812, 59.712097 ], [ 163.476562, 59.888937 ], [ 162.070312, 58.263287 ], [ 162.070312, 57.891497 ], [ 163.125000, 57.704147 ], [ 163.125000, 56.170023 ], [ 162.070312, 56.170023 ], [ 161.718750, 55.379110 ], [ 162.070312, 54.775346 ], [ 160.312500, 54.367759 ], [ 159.960938, 53.120405 ], [ 158.554688, 52.908902 ], [ 158.203125, 51.835778 ], [ 156.796875, 50.958427 ], [ 155.390625, 55.379110 ], [ 155.742188, 56.752723 ], [ 156.796875, 57.891497 ], [ 158.203125, 58.077876 ], [ 163.828125, 61.100789 ], [ 164.531250, 62.593341 ], [ 163.125000, 62.431074 ], [ 162.773438, 61.606396 ], [ 159.960938, 60.586967 ], [ 159.257812, 61.773123 ], [ 156.796875, 61.438767 ], [ 154.335938, 59.712097 ], [ 155.039062, 59.175928 ], [ 151.171875, 58.813742 ], [ 151.171875, 59.534318 ], [ 149.765625, 59.712097 ], [ 148.710938, 59.175928 ], [ 145.546875, 59.355596 ], [ 142.031250, 58.995311 ], [ 135.000000, 54.775346 ], [ 136.757812, 54.572062 ], [ 137.109375, 53.956086 ], [ 138.164062, 53.748711 ], [ 138.867188, 54.162434 ], [ 139.921875, 54.162434 ], [ 141.328125, 53.120405 ], [ 141.328125, 52.268157 ], [ 140.625000, 51.179343 ], [ 139.921875, 48.458352 ], [ 138.164062, 46.316584 ], [ 135.000000, 43.325178 ], [ 133.593750, 42.811522 ], [ 132.187500, 43.325178 ], [ 130.078125, 42.032974 ], [ 129.726562, 40.979898 ], [ 127.617188, 39.639538 ], [ 127.265625, 39.095963 ], [ 128.320312, 38.548165 ], [ 129.375000, 36.879621 ], [ 129.023438, 35.173808 ], [ 126.562500, 34.307144 ], [ 126.210938, 36.597889 ], [ 126.914062, 36.879621 ], [ 126.210938, 37.718590 ], [ 125.156250, 37.718590 ], [ 124.804688, 37.996163 ], [ 125.156250, 39.639538 ], [ 124.101562, 39.909736 ], [ 120.937500, 38.822591 ], [ 122.343750, 40.446947 ], [ 121.640625, 40.979898 ], [ 119.179688, 39.368279 ], [ 118.125000, 39.095963 ], [ 117.421875, 38.822591 ], [ 118.828125, 37.439974 ], [ 119.531250, 37.160317 ], [ 120.937500, 37.996163 ], [ 122.343750, 37.439974 ], [ 122.695312, 36.879621 ], [ 120.937500, 36.597889 ], [ 119.179688, 34.885931 ], [ 120.234375, 34.307144 ], [ 121.992188, 31.653381 ], [ 121.992188, 31.052934 ], [ 121.289062, 30.751278 ], [ 121.992188, 29.840644 ], [ 121.640625, 28.304381 ], [ 121.289062, 27.994401 ], [ 118.828125, 24.527135 ], [ 116.015625, 22.917923 ], [ 110.742188, 21.289374 ], [ 110.390625, 20.303418 ], [ 110.039062, 20.303418 ], [ 110.039062, 21.289374 ], [ 108.632812, 21.616579 ], [ 105.820312, 19.642588 ], [ 105.820312, 18.979026 ], [ 108.984375, 15.284185 ], [ 109.335938, 13.581921 ], [ 109.335938, 11.523088 ], [ 105.117188, 8.754795 ], [ 105.117188, 9.795678 ], [ 103.359375, 10.487812 ], [ 102.656250, 12.211180 ], [ 100.898438, 12.554564 ], [ 100.898438, 13.581921 ], [ 100.195312, 13.239945 ], [ 99.140625, 9.102097 ], [ 99.843750, 9.102097 ], [ 100.546875, 7.362467 ], [ 103.007812, 5.615986 ], [ 104.062500, 1.406109 ], [ 103.359375, 1.054628 ], [ 101.250000, 2.811371 ], [ 100.195312, 6.315299 ], [ 98.437500, 8.407168 ], [ 98.789062, 11.523088 ], [ 97.031250, 16.972741 ], [ 95.273438, 15.623037 ], [ 94.218750, 15.961329 ], [ 94.218750, 18.312811 ], [ 91.406250, 22.917923 ], [ 90.351562, 22.917923 ], [ 90.351562, 21.943046 ], [ 88.945312, 21.943046 ], [ 86.835938, 21.616579 ], [ 86.484375, 20.303418 ], [ 85.078125, 19.642588 ], [ 82.265625, 16.636192 ], [ 80.156250, 15.961329 ], [ 79.804688, 10.487812 ], [ 77.695312, 8.059230 ], [ 76.640625, 8.754795 ], [ 73.476562, 15.961329 ], [ 72.773438, 21.289374 ], [ 70.312500, 20.961440 ], [ 69.257812, 21.943046 ], [ 69.609375, 22.593726 ], [ 69.257812, 22.917923 ], [ 67.500000, 23.885838 ], [ 66.445312, 25.482951 ], [ 61.523438, 25.165173 ], [ 57.304688, 25.799891 ], [ 56.601562, 27.059126 ], [ 54.843750, 26.431228 ], [ 53.437500, 26.745610 ], [ 51.679688, 27.994401 ], [ 50.273438, 30.145127 ], [ 48.867188, 30.448674 ], [ 47.812500, 29.840644 ], [ 48.164062, 29.228890 ], [ 48.867188, 27.683528 ], [ 50.273438, 26.745610 ], [ 50.976562, 24.846565 ], [ 51.328125, 26.115986 ], [ 51.679688, 23.885838 ], [ 54.140625, 24.206890 ], [ 56.250000, 26.431228 ], [ 56.953125, 24.206890 ], [ 58.710938, 23.563987 ], [ 59.765625, 22.268764 ], [ 58.359375, 20.303418 ], [ 57.656250, 20.303418 ], [ 57.656250, 18.979026 ], [ 55.195312, 17.308688 ], [ 52.382812, 16.299051 ], [ 52.031250, 15.623037 ], [ 48.515625, 13.923404 ], [ 43.593750, 12.554564 ], [ 42.539062, 15.284185 ], [ 42.539062, 16.636192 ], [ 39.023438, 21.289374 ], [ 38.320312, 23.563987 ], [ 37.617188, 24.206890 ], [ 35.156250, 27.994401 ], [ 34.804688, 27.994401 ], [ 34.804688, 29.535230 ], [ 33.750000, 27.683528 ], [ 35.859375, 23.885838 ], [ 35.507812, 23.241346 ], [ 36.914062, 21.943046 ], [ 37.617188, 18.646245 ], [ 38.320312, 17.978733 ], [ 39.375000, 15.961329 ], [ 43.242188, 12.554564 ], [ 42.890625, 11.867351 ], [ 44.648438, 10.487812 ], [ 50.976562, 11.867351 ], [ 50.976562, 10.487812 ], [ 47.812500, 4.214943 ], [ 40.429688, -2.460181 ], [ 39.375000, -4.565474 ], [ 38.671875, -6.315299 ], [ 39.375000, -7.013668 ], [ 39.023438, -8.407168 ], [ 40.429688, -10.833306 ], [ 40.781250, -14.604847 ], [ 39.375000, -16.636192 ], [ 37.265625, -17.644022 ], [ 34.804688, -19.642588 ], [ 35.507812, -23.563987 ], [ 32.695312, -25.799891 ], [ 33.046875, -26.115986 ], [ 32.343750, -28.613459 ], [ 27.421875, -33.137551 ], [ 25.664062, -34.016242 ], [ 22.500000, -33.724340 ], [ 19.687500, -34.885931 ], [ 18.281250, -34.016242 ], [ 17.929688, -32.546813 ], [ 18.281250, -31.653381 ], [ 15.117188, -27.059126 ], [ 14.414062, -22.268764 ], [ 11.953125, -17.978733 ], [ 11.953125, -15.961329 ], [ 12.656250, -13.581921 ], [ 13.710938, -12.211180 ], [ 13.710938, -10.833306 ], [ 11.953125, -4.915833 ], [ 8.789062, -1.054628 ], [ 9.843750, 3.162456 ], [ 9.492188, 3.864255 ], [ 8.437500, 4.915833 ], [ 5.976562, 4.214943 ], [ 4.218750, 6.315299 ], [ 1.757812, 6.315299 ], [ -2.109375, 4.565474 ], [ -4.570312, 5.266008 ], [ -8.085938, 4.214943 ], [ -13.007812, 7.710992 ], [ -14.765625, 10.833306 ], [ -16.523438, 12.211180 ], [ -16.875000, 13.581921 ], [ -17.578125, 14.604847 ], [ -16.875000, 15.623037 ], [ -16.171875, 17.308688 ], [ -16.171875, 19.973349 ], [ -17.226562, 20.961440 ], [ -15.820312, 23.563987 ], [ -13.007812, 27.683528 ], [ -11.601562, 27.994401 ], [ -9.492188, 29.840644 ], [ -9.843750, 31.052934 ], [ -9.140625, 32.546813 ], [ -7.031250, 34.016242 ], [ -5.976562, 35.746512 ], [ -2.109375, 35.173808 ], [ 1.406250, 36.597889 ], [ 8.437500, 36.879621 ], [ 9.492188, 37.439974 ], [ 10.195312, 37.160317 ], [ 10.195312, 36.597889 ], [ 11.250000, 36.879621 ], [ 10.546875, 36.315125 ], [ 10.898438, 35.746512 ], [ 10.195312, 33.724340 ], [ 15.117188, 32.249974 ], [ 15.820312, 31.353637 ], [ 18.984375, 30.145127 ], [ 20.039062, 31.052934 ], [ 20.039062, 32.249974 ], [ 21.445312, 32.842674 ], [ 28.828125, 30.751278 ], [ 30.937500, 31.653381 ], [ 31.992188, 31.052934 ], [ 32.343750, 31.353637 ], [ 33.750000, 31.052934 ], [ 34.453125, 31.653381 ], [ 35.859375, 34.597042 ], [ 36.210938, 36.597889 ], [ 34.804688, 36.879621 ], [ 34.101562, 36.315125 ], [ 32.343750, 36.031332 ], [ 31.640625, 36.597889 ], [ 30.585938, 36.597889 ], [ 29.531250, 36.031332 ], [ 27.773438, 36.597889 ], [ 26.367188, 38.272689 ], [ 26.718750, 39.095963 ], [ 26.015625, 39.368279 ], [ 27.421875, 40.446947 ], [ 28.828125, 40.446947 ], [ 28.828125, 40.979898 ], [ 27.773438, 40.979898 ], [ 26.367188, 40.178873 ], [ 26.015625, 40.713956 ], [ 24.960938, 40.979898 ], [ 23.554688, 40.713956 ], [ 24.257812, 40.178873 ], [ 23.906250, 39.909736 ], [ 22.500000, 40.178873 ], [ 23.203125, 39.095963 ], [ 23.906250, 38.272689 ], [ 23.906250, 37.718590 ], [ 23.203125, 37.996163 ], [ 23.554688, 37.439974 ], [ 22.851562, 37.439974 ], [ 23.203125, 36.315125 ], [ 21.796875, 36.879621 ], [ 21.093750, 38.272689 ], [ 19.335938, 40.178873 ], [ 19.335938, 41.771312 ], [ 16.171875, 43.580391 ], [ 14.765625, 45.089036 ], [ 14.414062, 45.336702 ], [ 14.062500, 44.840291 ], [ 14.062500, 45.583290 ], [ 13.007812, 45.828799 ], [ 12.304688, 45.336702 ], [ 12.656250, 44.087585 ], [ 15.117188, 42.032974 ], [ 15.820312, 42.032974 ], [ 15.820312, 41.508577 ], [ 18.632812, 40.178873 ], [ 18.281250, 39.909736 ], [ 16.875000, 40.446947 ], [ 16.523438, 39.909736 ], [ 17.226562, 39.368279 ], [ 17.226562, 38.822591 ], [ 16.171875, 37.996163 ], [ 15.820312, 37.996163 ], [ 16.171875, 39.095963 ], [ 15.468750, 40.178873 ], [ 11.953125, 41.771312 ], [ 10.546875, 42.811522 ], [ 10.195312, 43.834527 ], [ 8.789062, 44.339565 ], [ 6.679688, 43.068888 ], [ 4.570312, 43.325178 ], [ 3.164062, 43.068888 ], [ 3.164062, 41.771312 ], [ 0.703125, 40.979898 ], [ -0.351562, 39.368279 ], [ 0.000000, 38.822591 ], [ -2.109375, 36.597889 ], [ -4.218750, 36.597889 ], [ -5.273438, 36.031332 ], [ -6.679688, 36.879621 ], [ -8.789062, 36.879621 ], [ -8.789062, 38.272689 ], [ -9.492188, 38.822591 ], [ -8.789062, 40.713956 ], [ -9.492188, 43.068888 ], [ -8.085938, 43.834527 ], [ -1.757812, 43.325178 ], [ -1.406250, 44.087585 ], [ -1.054688, 46.073231 ], [ -2.812500, 47.517201 ], [ -4.570312, 47.989922 ], [ -4.570312, 48.690960 ], [ -3.164062, 48.922499 ], [ -1.757812, 48.690960 ], [ -1.757812, 49.837982 ], [ -1.054688, 49.382373 ], [ 1.406250, 50.064192 ], [ 1.757812, 50.958427 ], [ 3.867188, 51.618017 ], [ 4.570312, 53.120405 ], [ 7.031250, 53.748711 ], [ 8.085938, 53.540307 ], [ 8.789062, 53.956086 ], [ 8.085938, 55.578345 ], [ 8.437500, 57.136239 ], [ 10.546875, 57.704147 ], [ 10.195312, 56.944974 ], [ 10.898438, 56.365250 ], [ 9.492188, 55.379110 ], [ 9.843750, 54.572062 ], [ 10.898438, 54.367759 ], [ 10.898438, 53.956086 ], [ 12.656250, 54.367759 ], [ 14.062500, 53.748711 ], [ 17.578125, 54.775346 ], [ 19.687500, 54.367759 ], [ 20.039062, 54.775346 ], [ 21.445312, 55.178868 ], [ 21.093750, 56.752723 ], [ 21.445312, 57.326521 ], [ 22.500000, 57.704147 ], [ 23.203125, 56.944974 ], [ 24.257812, 56.944974 ], [ 24.257812, 58.447733 ], [ 23.906250, 58.263287 ], [ 23.554688, 58.631217 ], [ 23.203125, 59.175928 ], [ 26.015625, 59.534318 ], [ 28.125000, 59.534318 ], [ 29.179688, 60.064840 ], [ 28.125000, 60.586967 ], [ 22.851562, 59.888937 ], [ 21.445312, 60.759160 ], [ 21.445312, 61.773123 ], [ 21.093750, 62.593341 ], [ 21.445312, 63.233627 ], [ 25.312500, 65.072130 ], [ 25.312500, 65.512963 ], [ 23.906250, 65.946472 ], [ 22.148438, 65.658275 ], [ 21.093750, 65.072130 ], [ 21.445312, 64.472794 ], [ 17.929688, 62.754726 ], [ 17.226562, 61.270233 ], [ 18.632812, 60.064840 ], [ 17.929688, 58.995311 ], [ 16.875000, 58.631217 ], [ 15.820312, 56.170023 ], [ 14.765625, 56.170023 ], [ 14.062500, 55.379110 ], [ 13.007812, 55.379110 ], [ 12.656250, 55.578345 ], [ 11.953125, 54.775346 ], [ 10.898438, 55.776573 ], [ 12.304688, 56.170023 ] ], [ [ 36.562500, 45.336702 ], [ 36.210938, 45.089036 ], [ 33.750000, 44.339565 ], [ 33.398438, 44.590467 ], [ 33.398438, 45.089036 ], [ 32.343750, 45.336702 ], [ 33.750000, 45.828799 ], [ 33.398438, 46.073231 ], [ 31.640625, 46.316584 ], [ 31.640625, 46.800059 ], [ 30.585938, 46.558860 ], [ 29.531250, 45.089036 ], [ 28.828125, 44.840291 ], [ 27.773438, 42.553080 ], [ 28.828125, 40.979898 ], [ 29.179688, 41.244772 ], [ 31.289062, 40.979898 ], [ 33.398438, 42.032974 ], [ 35.156250, 42.032974 ], [ 38.320312, 40.979898 ], [ 40.429688, 40.979898 ], [ 41.484375, 41.508577 ], [ 41.484375, 42.553080 ], [ 36.562500, 45.336702 ] ], [ [ 51.328125, 47.040182 ], [ 49.218750, 46.316584 ], [ 46.757812, 44.590467 ], [ 47.460938, 43.580391 ], [ 47.460938, 43.068888 ], [ 50.273438, 40.178873 ], [ 49.570312, 40.178873 ], [ 48.867188, 38.822591 ], [ 49.218750, 37.718590 ], [ 50.976562, 36.879621 ], [ 53.789062, 36.879621 ], [ 53.789062, 38.822591 ], [ 53.085938, 39.368279 ], [ 53.437500, 39.909736 ], [ 52.734375, 39.909736 ], [ 53.085938, 40.979898 ], [ 53.789062, 40.713956 ], [ 54.843750, 40.979898 ], [ 53.789062, 42.032974 ], [ 53.085938, 41.771312 ], [ 52.734375, 41.244772 ], [ 52.382812, 42.811522 ], [ 51.328125, 43.068888 ], [ 50.273438, 44.590467 ], [ 51.328125, 44.590467 ], [ 51.328125, 45.336702 ], [ 53.085938, 45.336702 ], [ 53.085938, 46.800059 ], [ 51.328125, 47.040182 ] ], [ [ 36.562500, 45.336702 ], [ 38.320312, 46.316584 ], [ 37.617188, 46.558860 ], [ 39.023438, 47.279229 ], [ 34.804688, 46.316584 ], [ 35.156250, 45.583290 ], [ 36.562500, 45.583290 ], [ 36.562500, 45.336702 ] ] ], [ [ [ 68.203125, 76.920614 ], [ 68.906250, 76.516819 ], [ 68.203125, 76.268695 ], [ 61.523438, 75.230667 ], [ 58.359375, 74.307353 ], [ 55.546875, 72.395706 ], [ 55.546875, 71.524909 ], [ 57.656250, 70.728979 ], [ 53.789062, 70.728979 ], [ 53.437500, 71.187754 ], [ 51.679688, 71.524909 ], [ 51.328125, 71.965388 ], [ 52.382812, 72.181804 ], [ 52.382812, 72.816074 ], [ 54.492188, 73.627789 ], [ 53.437500, 73.726595 ], [ 55.898438, 74.590108 ], [ 55.546875, 75.050354 ], [ 61.171875, 76.268695 ], [ 64.335938, 76.434604 ], [ 66.093750, 76.840816 ], [ 68.203125, 76.920614 ] ] ], [ [ [ -79.804688, 62.431074 ], [ -79.101562, 62.103883 ], [ -79.804688, 61.606396 ], [ -80.507812, 61.938950 ], [ -79.804688, 62.431074 ] ] ], [ [ [ -81.914062, 62.915233 ], [ -81.914062, 62.754726 ], [ -82.968750, 62.103883 ], [ -83.671875, 62.103883 ], [ -84.023438, 62.431074 ], [ -83.320312, 62.915233 ], [ -81.914062, 62.915233 ] ] ], [ [ [ -35.156250, 83.638106 ], [ -27.070312, 83.520162 ], [ -20.742188, 82.720964 ], [ -22.851562, 82.355800 ], [ -31.992188, 82.214217 ], [ -31.289062, 82.021378 ], [ -27.773438, 82.118384 ], [ -24.960938, 81.773644 ], [ -22.851562, 82.070028 ], [ -22.148438, 81.723188 ], [ -23.203125, 81.147481 ], [ -20.742188, 81.518272 ], [ -15.820312, 81.923186 ], [ -12.656250, 81.723188 ], [ -12.304688, 81.308321 ], [ -16.171875, 80.589727 ], [ -16.875000, 80.356995 ], [ -20.039062, 80.178713 ], [ -17.578125, 80.118564 ], [ -19.687500, 78.767792 ], [ -19.687500, 77.617709 ], [ -18.632812, 76.999935 ], [ -20.039062, 76.920614 ], [ -21.796875, 76.598545 ], [ -19.687500, 76.100796 ], [ -19.687500, 75.230667 ], [ -20.742188, 75.140778 ], [ -19.335938, 74.307353 ], [ -21.445312, 74.211983 ], [ -20.390625, 73.824820 ], [ -20.742188, 73.428424 ], [ -23.554688, 73.327858 ], [ -22.148438, 72.607120 ], [ -22.148438, 72.181804 ], [ -24.257812, 72.607120 ], [ -24.960938, 72.289067 ], [ -23.554688, 72.073911 ], [ -22.148438, 71.413177 ], [ -21.796875, 70.612614 ], [ -23.554688, 70.495574 ], [ -25.664062, 71.413177 ], [ -25.312500, 70.728979 ], [ -26.367188, 70.259452 ], [ -22.500000, 70.140364 ], [ -27.773438, 68.528235 ], [ -31.640625, 68.138852 ], [ -34.101562, 66.652977 ], [ -36.210938, 65.946472 ], [ -39.726562, 65.512963 ], [ -40.781250, 64.774125 ], [ -41.132812, 63.548552 ], [ -42.890625, 62.754726 ], [ -42.539062, 61.938950 ], [ -43.242188, 60.064840 ], [ -44.648438, 60.064840 ], [ -46.406250, 60.930432 ], [ -48.164062, 60.930432 ], [ -49.218750, 61.438767 ], [ -51.679688, 63.548552 ], [ -52.382812, 65.219894 ], [ -53.789062, 66.089364 ], [ -53.437500, 66.791909 ], [ -54.140625, 67.204032 ], [ -53.085938, 68.399180 ], [ -51.328125, 68.784144 ], [ -50.976562, 69.900118 ], [ -53.437500, 69.287257 ], [ -54.843750, 69.657086 ], [ -54.492188, 70.844673 ], [ -51.328125, 70.612614 ], [ -54.140625, 71.524909 ], [ -54.843750, 71.413177 ], [ -55.898438, 71.635993 ], [ -54.843750, 72.607120 ], [ -57.304688, 74.683250 ], [ -58.710938, 75.140778 ], [ -58.710938, 75.497157 ], [ -61.171875, 76.100796 ], [ -63.281250, 76.184995 ], [ -68.554688, 76.100796 ], [ -71.367188, 76.999935 ], [ -68.906250, 77.312520 ], [ -66.796875, 77.389504 ], [ -71.015625, 77.617709 ], [ -73.125000, 78.061989 ], [ -73.125000, 78.420193 ], [ -65.742188, 79.367701 ], [ -65.390625, 79.749932 ], [ -67.851562, 80.118564 ], [ -67.148438, 80.532071 ], [ -63.632812, 81.201420 ], [ -62.226562, 81.308321 ], [ -62.578125, 81.773644 ], [ -60.117188, 82.021378 ], [ -57.304688, 82.214217 ], [ -54.140625, 82.214217 ], [ -53.085938, 81.873641 ], [ -50.273438, 82.448764 ], [ -44.648438, 81.672424 ], [ -46.757812, 82.214217 ], [ -46.757812, 82.631333 ], [ -43.242188, 83.236426 ], [ -39.726562, 83.194896 ], [ -38.671875, 83.559717 ], [ -35.156250, 83.638106 ] ] ], [ [ [ -106.523438, 73.124945 ], [ -106.875000, 73.428424 ], [ -105.117188, 73.627789 ], [ -104.414062, 73.428424 ], [ -105.468750, 72.711903 ], [ -104.414062, 70.959697 ], [ -100.898438, 70.020587 ], [ -101.250000, 69.534518 ], [ -102.656250, 69.534518 ], [ -101.953125, 69.162558 ], [ -102.304688, 68.784144 ], [ -105.820312, 69.162558 ], [ -108.984375, 68.784144 ], [ -113.203125, 68.528235 ], [ -113.906250, 69.037142 ], [ -115.312500, 69.287257 ], [ -116.015625, 69.162558 ], [ -117.421875, 69.900118 ], [ -112.500000, 70.377854 ], [ -114.257812, 70.612614 ], [ -117.773438, 70.495574 ], [ -118.476562, 70.959697 ], [ -116.015625, 71.300793 ], [ -117.773438, 71.300793 ], [ -119.531250, 71.524909 ], [ -117.773438, 72.711903 ], [ -115.312500, 73.327858 ], [ -114.257812, 73.124945 ], [ -114.609375, 72.607120 ], [ -112.500000, 72.919635 ], [ -111.093750, 72.501722 ], [ -110.039062, 72.919635 ], [ -108.984375, 72.607120 ], [ -108.281250, 71.635993 ], [ -107.578125, 72.073911 ], [ -108.281250, 73.124945 ], [ -107.578125, 73.226700 ], [ -106.523438, 73.124945 ] ] ], [ [ [ -98.085938, 70.140364 ], [ -96.679688, 69.657086 ], [ -95.625000, 69.162558 ], [ -96.328125, 68.784144 ], [ -97.734375, 69.037142 ], [ -98.437500, 68.911005 ], [ -99.843750, 69.411242 ], [ -98.085938, 70.140364 ] ] ], [ [ [ 49.218750, -12.211180 ], [ 49.921875, -13.581921 ], [ 50.273438, -15.623037 ], [ 49.570312, -15.623037 ], [ 49.921875, -16.972741 ], [ 47.109375, -24.846565 ], [ 45.351562, -25.482951 ], [ 43.945312, -24.846565 ], [ 43.242188, -22.917923 ], [ 43.593750, -21.289374 ], [ 44.296875, -19.311143 ], [ 43.945312, -17.308688 ], [ 44.296875, -16.299051 ], [ 46.406250, -15.623037 ], [ 47.812500, -14.604847 ], [ 49.218750, -12.211180 ] ] ], [ [ [ 167.343750, -15.961329 ], [ 167.695312, -16.299051 ], [ 167.343750, -16.636192 ], [ 167.343750, -15.961329 ] ] ], [ [ [ 166.640625, -14.604847 ], [ 166.992188, -14.944785 ], [ 167.343750, -15.623037 ], [ 166.640625, -15.623037 ], [ 166.640625, -14.604847 ] ] ], [ [ [ -72.773438, 83.236426 ], [ -65.742188, 83.026219 ], [ -63.632812, 82.896987 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.355800 ], [ -64.335938, 81.923186 ], [ -66.796875, 81.723188 ], [ -67.500000, 81.518272 ], [ -65.390625, 81.518272 ], [ -69.609375, 80.589727 ], [ -71.015625, 79.812302 ], [ -73.125000, 79.624056 ], [ -73.828125, 79.432371 ], [ -76.992188, 79.302640 ], [ -75.585938, 79.171335 ], [ -76.289062, 79.038437 ], [ -75.234375, 78.490552 ], [ -78.046875, 77.915669 ], [ -78.398438, 77.542096 ], [ -79.804688, 77.235074 ], [ -79.453125, 76.999935 ], [ -78.046875, 76.999935 ], [ -78.046875, 76.760541 ], [ -80.507812, 76.184995 ], [ -83.320312, 76.434604 ], [ -86.132812, 76.268695 ], [ -89.648438, 76.434604 ], [ -89.648438, 76.920614 ], [ -87.890625, 77.157163 ], [ -88.242188, 77.915669 ], [ -87.539062, 77.989049 ], [ -85.078125, 77.542096 ], [ -86.484375, 78.206563 ], [ -87.890625, 78.349411 ], [ -87.187500, 78.767792 ], [ -85.429688, 78.971386 ], [ -85.078125, 79.367701 ], [ -86.484375, 79.749932 ], [ -86.835938, 80.238501 ], [ -84.023438, 80.178713 ], [ -83.320312, 80.118564 ], [ -81.914062, 80.474065 ], [ -84.023438, 80.589727 ], [ -87.539062, 80.532071 ], [ -89.296875, 80.872827 ], [ -91.406250, 81.569968 ], [ -91.757812, 81.873641 ], [ -90.000000, 82.070028 ], [ -86.835938, 82.261699 ], [ -85.429688, 82.631333 ], [ -84.375000, 82.586106 ], [ -83.320312, 82.308893 ], [ -82.265625, 82.853382 ], [ -81.210938, 83.026219 ], [ -79.453125, 83.111071 ], [ -76.289062, 83.153111 ], [ -75.585938, 83.068774 ], [ -72.773438, 83.236426 ] ] ], [ [ [ 132.539062, -0.351560 ], [ 133.945312, -0.703107 ], [ 134.296875, -2.811371 ], [ 135.351562, -3.513421 ], [ 136.406250, -2.460181 ], [ 138.164062, -1.757537 ], [ 144.492188, -3.864255 ], [ 145.898438, -5.615986 ], [ 147.656250, -5.965754 ], [ 148.007812, -6.664608 ], [ 146.953125, -6.664608 ], [ 147.304688, -7.362467 ], [ 148.710938, -9.102097 ], [ 150.820312, -10.141932 ], [ 150.117188, -10.487812 ], [ 148.007812, -10.141932 ], [ 145.898438, -8.059230 ], [ 144.843750, -7.710992 ], [ 143.437500, -8.407168 ], [ 143.437500, -9.102097 ], [ 142.734375, -9.449062 ], [ 140.976562, -9.102097 ], [ 140.273438, -8.407168 ], [ 137.460938, -8.407168 ], [ 138.515625, -7.362467 ], [ 137.812500, -5.266008 ], [ 133.593750, -3.513421 ], [ 132.890625, -4.214943 ], [ 131.835938, -2.811371 ], [ 133.593750, -2.108899 ], [ 132.187500, -2.108899 ], [ 130.429688, -1.054628 ], [ 132.539062, -0.351560 ] ] ], [ [ [ 127.265625, -8.407168 ], [ 123.750000, -10.487812 ], [ 124.101562, -9.449062 ], [ 124.804688, -8.754795 ], [ 125.859375, -8.407168 ], [ 127.265625, -8.407168 ] ] ], [ [ [ 120.585938, -10.141932 ], [ 118.828125, -9.449062 ], [ 119.882812, -9.449062 ], [ 120.585938, -10.141932 ] ] ], [ [ [ 159.609375, -9.102097 ], [ 161.015625, -9.795678 ], [ 159.960938, -9.795678 ], [ 159.609375, -9.102097 ] ] ], [ [ [ 161.015625, -8.407168 ], [ 161.718750, -9.449062 ], [ 161.367188, -9.795678 ], [ 160.664062, -8.754795 ], [ 161.015625, -8.407168 ] ] ], [ [ [ -121.640625, 74.402163 ], [ -120.234375, 74.211983 ], [ -117.421875, 74.211983 ], [ -115.664062, 73.428424 ], [ -119.179688, 72.501722 ], [ -120.585938, 71.856229 ], [ -120.585938, 71.413177 ], [ -123.046875, 70.844673 ], [ -123.750000, 71.300793 ], [ -125.859375, 71.856229 ], [ -124.101562, 73.726595 ], [ -124.804688, 74.307353 ], [ -121.640625, 74.402163 ] ] ], [ [ [ 117.773438, -8.059230 ], [ 119.179688, -8.754795 ], [ 116.718750, -9.102097 ], [ 117.773438, -8.059230 ] ] ], [ [ [ 123.046875, -8.059230 ], [ 122.695312, -8.754795 ], [ 119.882812, -8.754795 ], [ 120.585938, -8.407168 ], [ 123.046875, -8.059230 ] ] ], [ [ [ 106.171875, -5.965754 ], [ 108.632812, -6.664608 ], [ 110.390625, -7.013668 ], [ 110.742188, -6.315299 ], [ 115.664062, -8.407168 ], [ 114.609375, -8.754795 ], [ 106.523438, -7.362467 ], [ 105.468750, -7.013668 ], [ 106.171875, -5.965754 ] ] ], [ [ [ -148.359375, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.302183 ], [ -186.679688, -84.405941 ], [ -183.867188, -84.160849 ], [ -180.000000, -84.706049 ], [ -178.945312, -84.124973 ], [ -177.187500, -84.440107 ], [ -175.781250, -84.124973 ], [ -174.375000, -84.541361 ], [ -172.968750, -84.052561 ], [ -169.804688, -83.867616 ], [ -166.992188, -84.574702 ], [ -164.179688, -84.834225 ], [ -162.421875, -85.051129 ], [ -162.070312, -85.141284 ], [ -158.203125, -85.373767 ], [ -155.039062, -85.111416 ], [ -150.820312, -85.287916 ], [ -148.359375, -85.622069 ] ] ], [ [ [ -85.781250, 73.824820 ], [ -86.484375, 73.124945 ], [ -85.781250, 72.501722 ], [ -84.726562, 73.327858 ], [ -82.265625, 73.726595 ], [ -80.507812, 72.711903 ], [ -80.859375, 72.073911 ], [ -78.750000, 72.395706 ], [ -77.695312, 72.711903 ], [ -74.179688, 71.746432 ], [ -74.179688, 71.300793 ], [ -72.070312, 71.524909 ], [ -71.367188, 70.959697 ], [ -68.906250, 70.495574 ], [ -67.851562, 70.140364 ], [ -66.796875, 69.162558 ], [ -68.906250, 68.656555 ], [ -64.687500, 67.875541 ], [ -63.281250, 66.930060 ], [ -61.875000, 66.930060 ], [ -62.226562, 66.089364 ], [ -63.984375, 65.072130 ], [ -66.796875, 66.372755 ], [ -67.851562, 66.231457 ], [ -68.203125, 65.658275 ], [ -65.390625, 64.320872 ], [ -64.687500, 63.391522 ], [ -65.039062, 62.593341 ], [ -68.906250, 63.704722 ], [ -66.093750, 61.938950 ], [ -71.015625, 62.915233 ], [ -72.070312, 63.391522 ], [ -71.718750, 63.704722 ], [ -74.882812, 64.623877 ], [ -74.882812, 64.320872 ], [ -77.695312, 64.168107 ], [ -78.398438, 64.623877 ], [ -78.046875, 65.366837 ], [ -73.828125, 65.512963 ], [ -73.828125, 66.372755 ], [ -72.773438, 67.339861 ], [ -73.476562, 68.007571 ], [ -76.992188, 68.911005 ], [ -76.289062, 69.162558 ], [ -77.343750, 69.778952 ], [ -78.046875, 69.778952 ], [ -79.101562, 70.140364 ], [ -79.453125, 69.900118 ], [ -81.210938, 69.778952 ], [ -85.078125, 70.020587 ], [ -88.593750, 70.377854 ], [ -89.648438, 70.728979 ], [ -88.593750, 71.187754 ], [ -90.000000, 71.187754 ], [ -90.351562, 72.181804 ], [ -89.296875, 73.124945 ], [ -88.242188, 73.528399 ], [ -85.781250, 73.824820 ] ] ], [ [ [ -184.218750, 69.900118 ], [ -180.000000, 68.911005 ], [ -175.078125, 67.204032 ], [ -175.078125, 66.652977 ], [ -174.375000, 66.372755 ], [ -174.726562, 67.067433 ], [ -171.914062, 66.930060 ], [ -169.804688, 65.946472 ], [ -170.859375, 65.512963 ], [ -172.617188, 65.366837 ], [ -172.968750, 64.320872 ], [ -174.023438, 64.320872 ], [ -176.132812, 64.923542 ], [ -176.132812, 65.366837 ], [ -177.187500, 65.512963 ], [ -178.242188, 65.366837 ], [ -178.945312, 65.802776 ], [ -178.593750, 66.089364 ], [ -180.000000, 65.802776 ], [ -179.296875, 65.366837 ], [ -180.000000, 64.923542 ], [ -181.406250, 64.472794 ], [ -182.460938, 64.623877 ], [ -180.703125, 62.915233 ], [ -180.703125, 62.267923 ], [ -182.812500, 62.593341 ], [ -187.031250, 61.270233 ], [ -187.031250, 69.900118 ], [ -184.218750, 69.900118 ] ] ], [ [ [ 154.687500, -4.915833 ], [ 156.093750, -6.664608 ], [ 155.742188, -6.664608 ], [ 154.687500, -5.965754 ], [ 154.687500, -4.915833 ] ] ], [ [ [ 152.226562, -4.214943 ], [ 151.875000, -5.615986 ], [ 150.117188, -6.315299 ], [ 148.359375, -5.615986 ], [ 149.765625, -5.615986 ], [ 150.117188, -4.915833 ], [ 150.117188, -5.615986 ], [ 150.820312, -5.615986 ], [ 151.523438, -4.915833 ], [ 151.523438, -4.214943 ], [ 152.226562, -4.214943 ] ] ], [ [ [ 95.273438, 5.615986 ], [ 97.382812, 5.266008 ], [ 100.546875, 2.108899 ], [ 101.601562, 2.108899 ], [ 103.710938, 0.000000 ], [ 103.359375, -0.703107 ], [ 106.171875, -3.162456 ], [ 105.820312, -5.965754 ], [ 104.765625, -5.965754 ], [ 102.656250, -4.214943 ], [ 98.437500, 1.757537 ], [ 95.273438, 5.615986 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 121.640625, -4.565474 ], [ 120.937500, -2.460181 ], [ 120.234375, -2.811371 ], [ 120.585938, -5.615986 ], [ 119.531250, -5.266008 ], [ 119.531250, -3.513421 ], [ 118.828125, -2.811371 ], [ 119.882812, 0.703107 ], [ 120.937500, 1.406109 ], [ 124.101562, 1.054628 ], [ 125.156250, 1.757537 ], [ 124.453125, 0.351560 ], [ 120.234375, 0.351560 ], [ 119.882812, -0.351560 ], [ 120.937500, -1.406109 ], [ 123.398438, -0.703107 ], [ 121.640625, -1.757537 ], [ 122.695312, -4.565474 ] ] ], [ [ [ -100.195312, 73.824820 ], [ -99.140625, 73.627789 ], [ -97.382812, 73.726595 ], [ -97.031250, 73.428424 ], [ -98.085938, 73.022592 ], [ -96.679688, 72.607120 ], [ -96.679688, 71.635993 ], [ -98.437500, 71.300793 ], [ -99.492188, 71.300793 ], [ -102.656250, 72.501722 ], [ -102.304688, 72.816074 ], [ -100.546875, 72.711903 ], [ -101.601562, 73.327858 ], [ -100.195312, 73.824820 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 150.820312, -2.811371 ], [ 150.820312, -2.460181 ], [ 152.226562, -3.162456 ], [ 152.578125, -3.864255 ] ] ], [ [ [ -92.460938, 81.255032 ], [ -91.054688, 80.703997 ], [ -87.890625, 80.297927 ], [ -87.187500, 79.687184 ], [ -85.781250, 79.367701 ], [ -87.187500, 79.038437 ], [ -88.945312, 78.278201 ], [ -90.703125, 78.206563 ], [ -92.812500, 78.349411 ], [ -93.867188, 78.767792 ], [ -93.867188, 79.105086 ], [ -93.164062, 79.367701 ], [ -94.921875, 79.367701 ], [ -95.976562, 79.687184 ], [ -96.679688, 80.178713 ], [ -95.273438, 80.928426 ], [ -94.218750, 80.983688 ], [ -94.570312, 81.201420 ], [ -92.460938, 81.255032 ] ] ], [ [ [ 116.015625, -3.513421 ], [ 114.960938, -4.214943 ], [ 113.203125, -3.162456 ], [ 112.148438, -3.513421 ], [ 111.796875, -3.162456 ], [ 110.390625, -2.811371 ], [ 110.039062, -1.757537 ], [ 108.984375, -0.351560 ], [ 108.984375, 1.406109 ], [ 109.687500, 2.108899 ], [ 111.093750, 1.757537 ], [ 111.445312, 2.811371 ], [ 112.851562, 3.162456 ], [ 115.312500, 5.615986 ], [ 117.070312, 7.013668 ], [ 117.773438, 5.965754 ], [ 119.179688, 5.266008 ], [ 117.421875, 3.162456 ], [ 117.773438, 1.757537 ], [ 118.828125, 1.054628 ], [ 117.773438, 0.703107 ], [ 117.421875, -0.703107 ], [ 116.718750, -1.406109 ], [ 116.015625, -3.513421 ] ] ], [ [ [ 16.875000, 80.058050 ], [ 21.445312, 78.971386 ], [ 18.984375, 78.560488 ], [ 18.632812, 77.841848 ], [ 17.578125, 77.617709 ], [ 17.226562, 76.840816 ], [ 15.820312, 76.760541 ], [ 13.710938, 77.389504 ], [ 14.765625, 77.767582 ], [ 13.007812, 77.989049 ], [ 11.250000, 78.836065 ], [ 10.546875, 79.624056 ], [ 13.007812, 79.997168 ], [ 13.710938, 79.687184 ], [ 15.117188, 79.687184 ], [ 15.468750, 79.997168 ], [ 16.875000, 80.058050 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.429688, -3.162456 ], [ 130.781250, -3.864255 ], [ 127.968750, -3.513421 ], [ 127.968750, -2.811371 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 126.914062, -3.162456 ], [ 126.914062, -3.864255 ], [ 125.859375, -3.162456 ], [ 126.914062, -3.162456 ] ] ], [ [ [ 95.976562, 81.255032 ], [ 97.734375, 80.760615 ], [ 100.195312, 79.749932 ], [ 99.843750, 78.903929 ], [ 97.734375, 78.767792 ], [ 94.921875, 79.038437 ], [ 93.164062, 79.432371 ], [ 92.460938, 80.118564 ], [ 91.054688, 80.356995 ], [ 93.867188, 81.038617 ], [ 95.976562, 81.255032 ] ] ], [ [ [ 127.968750, 2.108899 ], [ 128.671875, 1.054628 ], [ 127.968750, -1.054628 ], [ 127.265625, 1.054628 ], [ 127.968750, 2.108899 ] ] ], [ [ [ -96.679688, 77.157163 ], [ -94.570312, 77.078784 ], [ -93.515625, 76.760541 ], [ -91.757812, 76.760541 ], [ -90.703125, 76.434604 ], [ -91.054688, 76.100796 ], [ -89.296875, 75.584937 ], [ -86.484375, 75.497157 ], [ -84.726562, 75.672197 ], [ -81.210938, 75.672197 ], [ -80.156250, 75.320025 ], [ -79.804688, 74.959392 ], [ -80.507812, 74.683250 ], [ -81.914062, 74.402163 ], [ -83.320312, 74.590108 ], [ -88.242188, 74.402163 ], [ -92.460938, 74.867889 ], [ -92.812500, 75.845169 ], [ -93.867188, 76.351896 ], [ -95.976562, 76.434604 ], [ -97.031250, 76.760541 ], [ -96.679688, 77.157163 ] ] ], [ [ [ -109.687500, 76.760541 ], [ -108.632812, 76.679785 ], [ -107.929688, 75.845169 ], [ -106.875000, 76.016094 ], [ -105.820312, 75.930885 ], [ -105.820312, 75.497157 ], [ -106.171875, 74.959392 ], [ -109.687500, 74.867889 ], [ -112.148438, 74.402163 ], [ -113.906250, 74.402163 ], [ -113.906250, 74.683250 ], [ -111.796875, 75.140778 ], [ -116.367188, 75.050354 ], [ -117.773438, 75.230667 ], [ -116.367188, 76.184995 ], [ -115.312500, 76.516819 ], [ -112.500000, 76.100796 ], [ -110.742188, 75.584937 ], [ -108.984375, 75.497157 ], [ -110.390625, 76.434604 ], [ -109.687500, 76.760541 ] ] ], [ [ [ -5.273438, 50.064192 ], [ -3.515625, 51.399206 ], [ -4.921875, 51.618017 ], [ -5.273438, 52.052490 ], [ -4.218750, 52.268157 ], [ -4.921875, 52.908902 ], [ -4.570312, 53.540307 ], [ -3.164062, 53.330873 ], [ -2.812500, 53.956086 ], [ -3.515625, 54.572062 ], [ -4.921875, 54.775346 ], [ -4.921875, 55.776573 ], [ -5.625000, 55.379110 ], [ -5.976562, 56.752723 ], [ -4.921875, 58.631217 ], [ -3.164062, 58.631217 ], [ -4.218750, 57.515823 ], [ -2.109375, 57.704147 ], [ -3.164062, 55.973798 ], [ -2.109375, 55.973798 ], [ 0.351562, 52.908902 ], [ 1.757812, 52.696361 ], [ 1.054688, 51.835778 ], [ 1.406250, 51.179343 ], [ 0.703125, 50.736455 ], [ -2.812500, 50.736455 ], [ -3.515625, 50.289339 ], [ -4.570312, 50.289339 ], [ -5.273438, 50.064192 ] ] ], [ [ [ -14.414062, 66.513260 ], [ -14.765625, 65.802776 ], [ -13.710938, 65.072130 ], [ -14.765625, 64.320872 ], [ -18.632812, 63.548552 ], [ -22.851562, 64.014496 ], [ -21.796875, 64.472794 ], [ -23.906250, 64.923542 ], [ -22.148438, 65.072130 ], [ -22.148438, 65.366837 ], [ -24.257812, 65.658275 ], [ -23.554688, 66.231457 ], [ -22.148438, 66.372755 ], [ -20.742188, 65.802776 ], [ -18.984375, 66.231457 ], [ -17.929688, 65.946472 ], [ -16.171875, 66.513260 ], [ -14.414062, 66.513260 ] ] ], [ [ [ 125.507812, 9.795678 ], [ 126.210938, 9.449062 ], [ 126.562500, 7.013668 ], [ 126.210938, 6.315299 ], [ 125.859375, 7.362467 ], [ 125.507812, 6.664608 ], [ 125.507812, 5.615986 ], [ 124.101562, 6.315299 ], [ 124.101562, 7.362467 ], [ 123.750000, 7.710992 ], [ 121.992188, 7.013668 ], [ 122.343750, 8.059230 ], [ 125.507812, 9.102097 ], [ 125.507812, 9.795678 ] ] ], [ [ [ 80.156250, 9.795678 ], [ 81.914062, 7.362467 ], [ 81.562500, 6.315299 ], [ 80.507812, 5.965754 ], [ 79.804688, 8.059230 ], [ 80.156250, 9.795678 ] ] ], [ [ [ 22.851562, 80.647035 ], [ 25.312500, 80.415707 ], [ 27.421875, 80.058050 ], [ 26.015625, 79.496652 ], [ 22.851562, 79.367701 ], [ 20.039062, 79.560546 ], [ 20.039062, 79.812302 ], [ 18.632812, 79.874297 ], [ 17.226562, 80.297927 ], [ 20.390625, 80.589727 ], [ 21.796875, 80.356995 ], [ 22.851562, 80.647035 ] ] ], [ [ [ 141.328125, 41.508577 ], [ 142.031250, 39.095963 ], [ 140.976562, 38.272689 ], [ 140.625000, 35.746512 ], [ 140.273438, 35.173808 ], [ 137.109375, 34.597042 ], [ 135.703125, 33.431441 ], [ 135.000000, 33.724340 ], [ 135.000000, 34.597042 ], [ 133.945312, 34.307144 ], [ 131.132812, 34.016242 ], [ 131.835938, 33.137551 ], [ 130.781250, 31.052934 ], [ 130.078125, 31.353637 ], [ 130.429688, 32.249974 ], [ 129.375000, 33.431441 ], [ 132.539062, 35.460670 ], [ 135.703125, 35.460670 ], [ 136.757812, 37.439974 ], [ 137.460938, 36.879621 ], [ 139.570312, 38.272689 ], [ 139.921875, 39.368279 ], [ 139.921875, 40.446947 ], [ 140.273438, 41.244772 ], [ 140.976562, 41.508577 ], [ 141.328125, 41.508577 ] ] ], [ [ [ 141.328125, 76.100796 ], [ 145.195312, 75.584937 ], [ 144.140625, 74.775843 ], [ 140.625000, 74.867889 ], [ 138.867188, 74.590108 ], [ 137.109375, 75.230667 ], [ 137.460938, 75.930885 ], [ 138.867188, 76.100796 ], [ 141.328125, 76.100796 ] ] ], [ [ [ -98.437500, 76.598545 ], [ -97.734375, 76.268695 ], [ -98.085938, 74.959392 ], [ -99.843750, 74.867889 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.672197 ], [ -102.656250, 75.584937 ], [ -102.656250, 76.351896 ], [ -101.601562, 76.268695 ], [ -99.843750, 76.679785 ], [ -98.437500, 76.598545 ] ] ], [ [ [ 119.531250, 11.523088 ], [ 119.531250, 10.487812 ], [ 117.070312, 8.407168 ], [ 119.531250, 11.523088 ] ] ], [ [ [ -116.367188, 77.617709 ], [ -116.367188, 76.840816 ], [ -117.070312, 76.516819 ], [ -121.640625, 75.930885 ], [ -122.695312, 76.100796 ], [ -119.179688, 77.542096 ], [ -117.421875, 77.466028 ], [ -116.367188, 77.617709 ] ] ], [ [ [ 124.101562, 11.178402 ], [ 124.101562, 10.141932 ], [ 123.046875, 9.102097 ], [ 122.343750, 9.795678 ], [ 123.046875, 10.833306 ], [ 123.398438, 10.833306 ], [ 123.398438, 10.141932 ], [ 124.101562, 11.178402 ] ] ], [ [ [ 101.953125, 79.367701 ], [ 105.468750, 78.699106 ], [ 105.117188, 78.278201 ], [ 99.492188, 77.915669 ], [ 101.250000, 79.237185 ], [ 101.953125, 79.367701 ] ] ], [ [ [ -61.171875, 10.833306 ], [ -60.820312, 10.141932 ], [ -61.875000, 10.141932 ], [ -61.171875, 10.833306 ] ] ], [ [ [ 125.156250, 12.554564 ], [ 125.859375, 11.178402 ], [ 125.156250, 11.178402 ], [ 125.156250, 10.487812 ], [ 124.804688, 10.141932 ], [ 124.453125, 11.523088 ], [ 124.804688, 11.867351 ], [ 124.101562, 12.554564 ], [ 125.156250, 12.554564 ] ] ], [ [ [ 121.992188, 11.867351 ], [ 123.046875, 11.523088 ], [ 121.992188, 10.487812 ], [ 121.992188, 11.867351 ] ] ], [ [ [ 120.234375, 13.581921 ], [ 121.640625, 12.897489 ], [ 121.289062, 12.211180 ], [ 120.234375, 13.581921 ] ] ], [ [ [ -92.460938, 74.116047 ], [ -90.351562, 73.824820 ], [ -92.109375, 72.919635 ], [ -93.164062, 72.816074 ], [ -94.218750, 72.073911 ], [ -95.273438, 72.073911 ], [ -95.976562, 72.919635 ], [ -95.625000, 73.824820 ], [ -94.570312, 74.116047 ], [ -92.460938, 74.116047 ] ] ], [ [ [ 120.585938, 18.646245 ], [ 122.343750, 18.312811 ], [ 122.343750, 16.972741 ], [ 121.640625, 15.961329 ], [ 121.640625, 14.264383 ], [ 124.101562, 13.923404 ], [ 124.101562, 12.554564 ], [ 123.046875, 13.581921 ], [ 122.695312, 13.239945 ], [ 121.992188, 13.923404 ], [ 120.585938, 13.923404 ], [ 120.937500, 14.604847 ], [ 120.234375, 14.944785 ], [ 119.882812, 16.299051 ], [ 120.234375, 15.961329 ], [ 120.585938, 18.646245 ] ] ], [ [ [ -55.195312, 47.279229 ], [ -56.250000, 47.517201 ], [ -59.414062, 47.517201 ], [ -58.710938, 48.224673 ], [ -59.062500, 48.458352 ], [ -56.601562, 51.179343 ], [ -55.898438, 51.618017 ], [ -55.546875, 51.618017 ], [ -56.953125, 49.837982 ], [ -56.250000, 50.064192 ], [ -55.546875, 49.837982 ], [ -55.898438, 49.610710 ], [ -53.437500, 49.152970 ], [ -53.789062, 48.458352 ], [ -53.085938, 48.690960 ], [ -52.734375, 47.517201 ], [ -53.085938, 46.558860 ], [ -54.140625, 46.800059 ], [ -54.140625, 47.754098 ], [ -55.195312, 47.279229 ] ] ], [ [ [ -85.781250, 65.802776 ], [ -85.078125, 65.658275 ], [ -85.078125, 65.219894 ], [ -84.375000, 65.366837 ], [ -81.562500, 64.472794 ], [ -81.562500, 64.014496 ], [ -80.859375, 64.014496 ], [ -80.156250, 63.704722 ], [ -80.859375, 63.391522 ], [ -82.617188, 63.704722 ], [ -82.968750, 64.168107 ], [ -85.429688, 63.074866 ], [ -85.781250, 63.704722 ], [ -87.187500, 63.548552 ], [ -86.484375, 64.014496 ], [ -85.781250, 65.802776 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -100.898438, 78.767792 ], [ -99.843750, 77.915669 ], [ -101.250000, 77.989049 ], [ -103.007812, 78.349411 ], [ -105.117188, 78.349411 ], [ -104.062500, 78.699106 ], [ -105.468750, 78.903929 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -70.664062, 19.973349 ], [ -68.203125, 18.646245 ], [ -68.554688, 18.312811 ], [ -70.664062, 18.312811 ], [ -71.367188, 17.644022 ], [ -71.718750, 17.978733 ], [ -74.531250, 18.312811 ], [ -72.421875, 18.646245 ], [ -73.125000, 19.973349 ], [ -70.664062, 19.973349 ] ] ], [ [ [ -77.695312, 18.646245 ], [ -76.289062, 17.978733 ], [ -77.695312, 17.978733 ], [ -78.398438, 18.312811 ], [ -77.695312, 18.646245 ] ] ], [ [ [ -67.148438, 18.646245 ], [ -65.742188, 18.312811 ], [ -67.148438, 17.978733 ], [ -67.148438, 18.646245 ] ] ], [ [ [ -6.679688, 55.178868 ], [ -5.625000, 54.572062 ], [ -5.976562, 53.120405 ], [ -6.679688, 52.268157 ], [ -8.437500, 51.618017 ], [ -9.843750, 51.835778 ], [ -9.140625, 52.908902 ], [ -9.843750, 53.956086 ], [ -7.734375, 55.178868 ], [ -6.679688, 55.178868 ] ] ], [ [ [ 110.039062, 19.973349 ], [ 111.093750, 19.642588 ], [ 110.390625, 18.646245 ], [ 109.335938, 18.312811 ], [ 108.632812, 18.646245 ], [ 108.632812, 19.311143 ], [ 110.039062, 19.973349 ] ] ], [ [ [ -155.742188, 20.303418 ], [ -154.687500, 19.642588 ], [ -155.742188, 18.979026 ], [ -155.742188, 20.303418 ] ] ], [ [ [ -82.265625, 23.241346 ], [ -78.398438, 22.593726 ], [ -74.179688, 20.303418 ], [ -77.695312, 19.973349 ], [ -76.992188, 20.303418 ], [ -78.046875, 20.632784 ], [ -78.750000, 21.616579 ], [ -82.265625, 22.268764 ], [ -81.914062, 22.593726 ], [ -85.078125, 21.943046 ], [ -82.265625, 23.241346 ] ] ], [ [ [ 142.734375, 53.748711 ], [ 143.085938, 51.835778 ], [ 144.492188, 48.922499 ], [ 143.085938, 49.382373 ], [ 142.734375, 47.754098 ], [ 143.437500, 46.800059 ], [ 143.437500, 46.073231 ], [ 142.734375, 46.800059 ], [ 142.031250, 46.073231 ], [ 142.031250, 50.958427 ], [ 141.679688, 51.835778 ], [ 141.679688, 53.330873 ], [ 142.734375, 53.748711 ] ] ], [ [ [ -156.093750, 20.961440 ], [ -156.093750, 20.632784 ], [ -156.445312, 20.632784 ], [ -156.445312, 20.961440 ], [ -156.093750, 20.961440 ] ] ], [ [ [ 49.921875, 80.928426 ], [ 51.679688, 80.703997 ], [ 50.976562, 80.532071 ], [ 48.867188, 80.356995 ], [ 48.867188, 80.178713 ], [ 47.460938, 79.997168 ], [ 46.406250, 80.238501 ], [ 47.109375, 80.532071 ], [ 45.000000, 80.589727 ], [ 46.757812, 80.760615 ], [ 48.164062, 80.760615 ], [ 48.515625, 80.532071 ], [ 49.921875, 80.928426 ] ] ], [ [ [ 142.031250, 45.583290 ], [ 143.789062, 44.087585 ], [ 144.492188, 43.834527 ], [ 145.195312, 44.339565 ], [ 145.546875, 43.325178 ], [ 144.140625, 43.068888 ], [ 143.085938, 42.032974 ], [ 141.679688, 42.553080 ], [ 140.976562, 41.508577 ], [ 139.921875, 41.508577 ], [ 139.921875, 42.553080 ], [ 140.273438, 43.325178 ], [ 141.328125, 43.325178 ], [ 142.031250, 45.583290 ] ] ], [ [ [ -80.507812, 73.726595 ], [ -78.046875, 73.627789 ], [ -76.289062, 73.124945 ], [ -76.289062, 72.816074 ], [ -79.804688, 72.816074 ], [ -80.859375, 73.327858 ], [ -80.859375, 73.726595 ], [ -80.507812, 73.726595 ] ] ], [ [ [ -98.789062, 78.903929 ], [ -96.679688, 78.767792 ], [ -95.625000, 78.420193 ], [ -95.976562, 78.061989 ], [ -97.382812, 77.841848 ], [ -98.085938, 78.061989 ], [ -98.789062, 78.903929 ] ] ], [ [ [ 121.640625, 25.165173 ], [ 121.992188, 24.846565 ], [ 120.585938, 21.943046 ], [ 120.234375, 23.563987 ], [ 121.640625, 25.165173 ] ] ], [ [ [ 22.851562, 78.420193 ], [ 23.203125, 78.061989 ], [ 24.609375, 77.841848 ], [ 22.500000, 77.466028 ], [ 20.742188, 77.692870 ], [ 21.445312, 77.915669 ], [ 20.742188, 78.278201 ], [ 22.851562, 78.420193 ] ] ], [ [ [ -111.093750, 78.134493 ], [ -109.687500, 77.989049 ], [ -110.039062, 77.692870 ], [ -112.148438, 77.389504 ], [ -113.554688, 77.767582 ], [ -112.851562, 78.061989 ], [ -111.093750, 78.134493 ] ] ], [ [ [ -78.046875, 25.165173 ], [ -77.695312, 23.885838 ], [ -78.398438, 24.527135 ], [ -78.046875, 25.165173 ] ] ], [ [ [ -94.921875, 75.672197 ], [ -93.515625, 74.959392 ], [ -94.218750, 74.590108 ], [ -95.625000, 74.683250 ], [ -96.679688, 74.959392 ], [ -96.328125, 75.408854 ], [ -94.921875, 75.672197 ] ] ], [ [ [ 146.250000, 75.497157 ], [ 148.359375, 75.320025 ], [ 150.820312, 75.050354 ], [ 149.414062, 74.683250 ], [ 148.007812, 74.775843 ], [ 146.250000, 75.140778 ], [ 146.250000, 75.497157 ] ] ], [ [ [ -77.695312, 26.745610 ], [ -77.695312, 27.059126 ], [ -76.992188, 26.745610 ], [ -77.343750, 25.799891 ], [ -77.695312, 26.431228 ], [ -78.750000, 26.431228 ], [ -78.398438, 26.745610 ], [ -77.695312, 26.745610 ] ] ], [ [ [ -178.945312, 71.524909 ], [ -177.539062, 71.300793 ], [ -178.593750, 70.844673 ], [ -180.000000, 70.844673 ], [ -181.054688, 70.728979 ], [ -181.406250, 71.074056 ], [ -180.000000, 71.524909 ], [ -178.945312, 71.524909 ] ] ], [ [ [ 181.054688, 71.524909 ], [ 182.460938, 71.300793 ], [ 181.406250, 70.844673 ], [ 180.000000, 70.844673 ], [ 178.945312, 70.728979 ], [ 178.593750, 71.074056 ], [ 180.000000, 71.524909 ], [ 181.054688, 71.524909 ] ] ], [ [ [ -128.320312, 50.736455 ], [ -125.859375, 50.289339 ], [ -123.398438, 48.458352 ], [ -125.507812, 48.922499 ], [ -126.914062, 49.837982 ], [ -127.968750, 50.064192 ], [ -128.320312, 50.736455 ] ] ], [ [ [ 142.031250, 73.824820 ], [ 143.437500, 73.428424 ], [ 143.437500, 73.226700 ], [ 139.921875, 73.327858 ], [ 140.976562, 73.726595 ], [ 142.031250, 73.824820 ] ] ], [ [ [ -75.937500, 68.269387 ], [ -75.234375, 68.007571 ], [ -75.234375, 67.474922 ], [ -75.937500, 67.204032 ], [ -76.992188, 67.067433 ], [ -76.640625, 68.138852 ], [ -75.937500, 68.269387 ] ] ], [ [ [ 9.140625, 41.244772 ], [ 9.843750, 40.446947 ], [ 9.843750, 39.095963 ], [ 8.789062, 38.822591 ], [ 8.085938, 40.979898 ], [ 9.140625, 41.244772 ] ] ], [ [ [ 133.945312, 34.307144 ], [ 134.648438, 33.724340 ], [ 134.296875, 33.137551 ], [ 133.945312, 33.431441 ], [ 132.890625, 32.842674 ], [ 132.539062, 32.842674 ], [ 132.890625, 34.016242 ], [ 133.945312, 34.307144 ] ] ], [ [ [ -111.445312, 78.836065 ], [ -109.687500, 78.630006 ], [ -110.742188, 78.420193 ], [ -112.500000, 78.420193 ], [ -111.445312, 78.836065 ] ] ], [ [ [ -94.570312, 77.841848 ], [ -93.867188, 77.542096 ], [ -96.328125, 77.542096 ], [ -96.328125, 77.841848 ], [ -94.570312, 77.841848 ] ] ], [ [ [ -153.281250, 57.891497 ], [ -152.226562, 57.515823 ], [ -153.984375, 56.752723 ], [ -154.687500, 57.515823 ], [ -153.281250, 57.891497 ] ] ], [ [ [ -170.507812, 63.704722 ], [ -168.750000, 63.233627 ], [ -169.453125, 62.915233 ], [ -170.507812, 63.391522 ], [ -171.562500, 63.391522 ], [ -171.562500, 63.704722 ], [ -170.507812, 63.704722 ] ] ], [ [ [ -131.835938, 54.162434 ], [ -132.187500, 52.908902 ], [ -132.890625, 53.330873 ], [ -133.242188, 54.162434 ], [ -131.835938, 54.162434 ] ] ], [ [ [ -166.640625, 60.413852 ], [ -165.585938, 60.239811 ], [ -165.585938, 59.888937 ], [ -166.289062, 59.712097 ], [ -167.343750, 60.239811 ], [ -166.640625, 60.413852 ] ] ], [ [ [ -64.335938, 50.064192 ], [ -62.929688, 49.610710 ], [ -61.875000, 49.152970 ], [ -63.632812, 49.382373 ], [ -64.687500, 49.837982 ], [ -64.335938, 50.064192 ] ] ], [ [ [ 9.492188, 43.068888 ], [ 9.492188, 42.032974 ], [ 9.140625, 41.508577 ], [ 8.437500, 42.293564 ], [ 9.492188, 43.068888 ] ] ], [ [ [ 122.695312, -4.565474 ], [ 123.046875, -5.266008 ], [ 122.343750, -5.266008 ], [ 122.695312, -4.565474 ] ] ], [ [ [ 152.578125, -3.864255 ], [ 153.281250, -4.565474 ], [ 152.929688, -4.915833 ], [ 152.578125, -3.864255 ] ] ], [ [ [ 142.734375, 53.748711 ], [ 142.382812, 54.162434 ], [ 142.734375, 54.367759 ], [ 142.734375, 53.748711 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.968750, -40.446947 ], [ 173.320312, -41.244772 ], [ 174.023438, -40.979898 ], [ 174.375000, -41.244772 ], [ 172.617188, -43.325178 ], [ 172.968750, -43.834527 ], [ 171.562500, -44.339565 ], [ 170.507812, -45.828799 ], [ 169.453125, -46.558860 ], [ 166.640625, -46.316584 ], [ 166.992188, -45.089036 ], [ 170.507812, -43.068888 ], [ 172.968750, -40.446947 ] ] ], [ [ [ -187.031250, -40.713956 ], [ -186.679688, -41.244772 ], [ -185.976562, -40.979898 ], [ -185.625000, -41.771312 ], [ -187.031250, -43.068888 ], [ -187.031250, -40.713956 ] ] ], [ [ [ 172.968750, -34.307144 ], [ 174.375000, -35.173808 ], [ 175.429688, -37.160317 ], [ 175.429688, -36.597889 ], [ 176.132812, -37.439974 ], [ 176.835938, -37.996163 ], [ 178.593750, -37.718590 ], [ 177.890625, -39.095963 ], [ 177.187500, -39.095963 ], [ 176.132812, -41.244772 ], [ 175.078125, -41.771312 ], [ 174.726562, -41.244772 ], [ 175.078125, -40.446947 ], [ 174.726562, -39.909736 ], [ 173.671875, -39.639538 ], [ 174.726562, -38.822591 ], [ 174.726562, -37.439974 ], [ 172.617188, -34.597042 ], [ 172.968750, -34.307144 ] ] ], [ [ [ -187.031250, -34.307144 ], [ -185.625000, -35.173808 ], [ -184.570312, -37.160317 ], [ -184.570312, -36.597889 ], [ -183.867188, -37.439974 ], [ -183.164062, -37.996163 ], [ -181.406250, -37.718590 ], [ -182.109375, -39.095963 ], [ -182.812500, -39.095963 ], [ -183.867188, -41.244772 ], [ -184.921875, -41.771312 ], [ -185.273438, -41.244772 ], [ -184.921875, -40.446947 ], [ -185.273438, -39.909736 ], [ -186.328125, -39.639538 ], [ -185.273438, -38.822591 ], [ -185.273438, -37.439974 ], [ -187.031250, -35.173808 ], [ -187.031250, -34.307144 ] ] ], [ [ [ 164.179688, -19.973349 ], [ 164.882812, -20.303418 ], [ 166.992188, -22.268764 ], [ 166.640625, -22.268764 ], [ 165.585938, -21.616579 ], [ 164.179688, -19.973349 ] ] ], [ [ [ 178.242188, -17.308688 ], [ 178.593750, -18.312811 ], [ 177.539062, -18.312811 ], [ 177.539062, -17.308688 ], [ 178.242188, -17.308688 ] ] ], [ [ [ -181.757812, -17.308688 ], [ -181.406250, -18.312811 ], [ -182.460938, -18.312811 ], [ -182.460938, -17.308688 ], [ -181.757812, -17.308688 ] ] ], [ [ [ 180.000000, -15.961329 ], [ 180.000000, -16.636192 ], [ 178.593750, -16.972741 ], [ 178.593750, -16.636192 ], [ 180.000000, -15.961329 ] ] ], [ [ [ -180.000000, -15.961329 ], [ -180.000000, -16.636192 ], [ -181.406250, -16.972741 ], [ -181.406250, -16.636192 ], [ -180.000000, -15.961329 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ] ] ], [ [ [ -57.788086, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.377941 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.904297, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.045740 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.663086, -79.631968 ], [ -29.663086, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.247817 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.424805, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.408992 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.272595 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.842773, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.720703, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.853516, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.416992, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.391602, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.788086, -63.273182 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.384855 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -125.551758, -73.478485 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.528130 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -46.669922, -77.832589 ], [ -45.131836, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.520657 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -51.020508, 3.513421 ], [ -50.493164, 1.889306 ], [ -49.965820, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.219726 ], [ -50.449219, 0.000000 ], [ -50.405273, -0.087891 ], [ -48.603516, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.152814 ], [ -44.560547, -2.679687 ], [ -43.417969, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.496094, -3.688855 ], [ -37.221680, -4.828260 ], [ -36.430664, -5.090944 ], [ -35.595703, -5.134715 ], [ -35.244141, -5.484768 ], [ -34.716797, -7.362467 ], [ -35.112305, -9.015302 ], [ -35.639648, -9.665738 ], [ -37.045898, -11.049038 ], [ -37.661133, -12.168226 ], [ -38.408203, -13.025966 ], [ -38.671875, -13.068777 ], [ -38.935547, -13.795406 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.271086 ], [ -39.770508, -19.601194 ], [ -40.781250, -20.920397 ], [ -40.957031, -21.943046 ], [ -41.748047, -22.390714 ], [ -41.967773, -22.958393 ], [ -43.066406, -22.958393 ], [ -44.648438, -23.362429 ], [ -45.351562, -23.805450 ], [ -46.450195, -24.086589 ], [ -47.636719, -24.886436 ], [ -48.515625, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.647461, -28.188244 ], [ -48.867188, -28.690588 ], [ -49.570312, -29.228890 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.250977, -32.249974 ], [ -52.690430, -33.211116 ], [ -53.393555, -33.760882 ], [ -53.789062, -34.415973 ], [ -54.931641, -34.957995 ], [ -55.678711, -34.741612 ], [ -56.206055, -34.849875 ], [ -57.128906, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.491211, -34.415973 ], [ -57.216797, -35.281501 ], [ -57.348633, -35.995785 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.914764 ], [ -57.744141, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.215820, -38.925229 ], [ -62.314453, -38.822591 ], [ -62.138672, -39.436193 ], [ -62.314453, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.046217 ], [ -63.764648, -41.178654 ], [ -64.731445, -40.813809 ], [ -65.126953, -41.079351 ], [ -64.995117, -42.065607 ], [ -64.291992, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.457031, -42.553080 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.489258, -45.026950 ], [ -67.280273, -45.552525 ], [ -67.587891, -46.316584 ], [ -66.577148, -47.040182 ], [ -65.654297, -47.249407 ], [ -65.961914, -48.136767 ], [ -67.148438, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.125977, -50.736455 ], [ -68.818359, -51.781436 ], [ -68.159180, -52.348763 ], [ -68.554688, -52.295042 ], [ -69.477539, -52.295042 ], [ -69.960938, -52.536273 ], [ -70.839844, -52.908902 ], [ -71.015625, -53.826597 ], [ -71.411133, -53.852527 ], [ -72.553711, -53.540307 ], [ -73.696289, -52.829321 ], [ -74.926758, -52.268157 ], [ -75.278320, -51.618017 ], [ -74.970703, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.585938, -48.661943 ], [ -75.190430, -47.724545 ], [ -74.135742, -46.950262 ], [ -75.629883, -46.649436 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.119142 ], [ -73.256836, -44.465151 ], [ -72.729492, -42.391009 ], [ -73.388672, -42.130821 ], [ -73.696289, -43.357138 ], [ -74.311523, -43.229195 ], [ -73.696289, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.496456 ], [ -71.850586, -33.906896 ], [ -71.455078, -32.435613 ], [ -71.674805, -30.939924 ], [ -71.367188, -30.107118 ], [ -71.499023, -28.844674 ], [ -70.883789, -27.644606 ], [ -70.708008, -25.720735 ], [ -70.092773, -21.412162 ], [ -70.180664, -19.766704 ], [ -70.356445, -18.354526 ], [ -71.367188, -17.769612 ], [ -71.455078, -17.350638 ], [ -73.432617, -16.341226 ], [ -75.234375, -15.284185 ], [ -76.025391, -14.647368 ], [ -76.420898, -13.838080 ], [ -76.245117, -13.539201 ], [ -77.124023, -12.211180 ], [ -78.090820, -10.358151 ], [ -79.013672, -8.407168 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.140555 ], [ -80.903320, -5.703448 ], [ -81.430664, -4.740675 ], [ -81.079102, -4.039618 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.679687 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.068359, 0.790990 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ], [ -78.969727, 1.713612 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.915039, 2.679687 ], [ -77.387695, 3.513421 ], [ -54.052734, 3.513421 ], [ -54.272461, 2.723583 ], [ -54.536133, 2.328460 ], [ -54.096680, 2.108899 ], [ -53.789062, 2.372369 ], [ -53.569336, 2.328460 ], [ -53.437500, 2.064982 ], [ -52.954102, 2.108899 ], [ -52.558594, 2.504085 ], [ -52.075195, 3.513421 ], [ -51.020508, 3.513421 ] ] ], [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.643063 ], [ -68.247070, -53.094024 ], [ -67.763672, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.478516, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.972656, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.603178 ], [ -69.213867, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.246094, -54.495568 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.828125, -53.041213 ], [ -72.421875, -53.722717 ], [ -71.103516, -54.085173 ], [ -70.576172, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -58.535156, -51.096623 ], [ -57.744141, -51.563412 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.862924 ], [ -60.688477, -52.295042 ], [ -61.215820, -51.862924 ], [ -59.985352, -51.261915 ], [ -59.150391, -51.508742 ], [ -58.535156, -51.096623 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.075195, 3.513421 ], [ -52.558594, 2.504085 ], [ -52.954102, 2.108899 ], [ -53.437500, 2.064982 ], [ -53.569336, 2.328460 ], [ -53.789062, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.052734, 3.513421 ], [ -52.075195, 3.513421 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.936523, -83.886366 ], [ -167.036133, -84.570546 ], [ -164.179688, -84.826305 ], [ -162.553711, -85.051129 ], [ -161.938477, -85.137560 ], [ -158.554688, -85.345325 ], [ -183.515625, -85.345325 ], [ -183.515625, -84.227529 ], [ -181.713867, -84.474065 ], [ -180.000000, -84.714152 ], [ -179.956055, -84.722243 ], [ -179.077148, -84.138452 ], [ -177.275391, -84.452865 ], [ -176.088867, -84.097922 ], [ -175.825195, -84.115970 ], [ -174.375000, -84.532994 ], [ -173.100586, -84.115970 ], [ -172.880859, -84.061661 ], [ -169.936523, -83.886366 ] ] ], [ [ [ -155.170898, -85.100168 ], [ -150.952148, -85.295131 ], [ -150.556641, -85.345325 ], [ -157.763672, -85.345325 ], [ -155.170898, -85.100168 ] ] ], [ [ [ -57.788086, -63.273182 ], [ -57.216797, -63.528971 ], [ -57.612305, -63.860036 ], [ -58.623047, -64.148952 ], [ -59.062500, -64.377941 ], [ -59.809570, -64.206377 ], [ -60.600586, -64.301822 ], [ -62.006836, -64.792848 ], [ -62.490234, -65.090646 ], [ -62.666016, -65.476508 ], [ -62.578125, -65.856756 ], [ -62.138672, -66.196009 ], [ -62.797852, -66.425537 ], [ -63.764648, -66.495740 ], [ -64.863281, -67.152898 ], [ -65.522461, -67.575717 ], [ -65.654297, -67.958148 ], [ -65.302734, -68.366801 ], [ -64.775391, -68.672544 ], [ -63.940430, -68.911005 ], [ -63.193359, -69.224997 ], [ -62.797852, -69.626510 ], [ -62.270508, -70.377854 ], [ -61.787109, -70.714471 ], [ -61.523438, -71.088305 ], [ -61.391602, -72.006158 ], [ -61.083984, -72.382410 ], [ -60.996094, -72.777081 ], [ -60.688477, -73.163173 ], [ -60.820312, -73.689611 ], [ -61.391602, -74.104015 ], [ -61.962891, -74.437572 ], [ -63.281250, -74.578426 ], [ -63.764648, -74.925142 ], [ -64.335938, -75.264239 ], [ -65.874023, -75.639536 ], [ -67.192383, -75.791336 ], [ -69.785156, -76.226907 ], [ -70.620117, -76.639226 ], [ -72.202148, -76.669656 ], [ -73.959961, -76.639226 ], [ -75.541992, -76.710125 ], [ -77.255859, -76.710125 ], [ -76.904297, -77.108231 ], [ -75.410156, -77.283532 ], [ -74.267578, -77.551572 ], [ -73.652344, -77.906466 ], [ -74.750977, -78.224513 ], [ -76.508789, -78.125454 ], [ -77.915039, -78.376004 ], [ -78.002930, -79.179588 ], [ -76.860352, -79.512662 ], [ -76.640625, -79.889737 ], [ -75.366211, -80.260828 ], [ -73.256836, -80.415707 ], [ -71.455078, -80.689789 ], [ -70.004883, -81.004326 ], [ -68.203125, -81.314959 ], [ -65.698242, -81.472780 ], [ -63.237305, -81.748454 ], [ -61.567383, -82.045740 ], [ -59.677734, -82.373317 ], [ -58.710938, -82.847913 ], [ -58.227539, -83.220882 ], [ -56.997070, -82.864308 ], [ -53.613281, -82.255779 ], [ -51.547852, -82.003058 ], [ -49.746094, -81.729511 ], [ -47.285156, -81.710526 ], [ -44.824219, -81.848756 ], [ -42.802734, -82.082145 ], [ -42.143555, -81.653308 ], [ -40.781250, -81.354684 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.907616 ], [ -32.299805, -80.767668 ], [ -30.102539, -80.589727 ], [ -28.564453, -80.334887 ], [ -29.267578, -79.981891 ], [ -29.663086, -79.631968 ], [ -29.663086, -79.261777 ], [ -31.640625, -79.302640 ], [ -33.662109, -79.456522 ], [ -35.639648, -79.456522 ], [ -35.903320, -79.080140 ], [ -35.771484, -78.340533 ], [ -35.332031, -78.125454 ], [ -33.881836, -77.888038 ], [ -32.211914, -77.655346 ], [ -29.794922, -77.068954 ], [ -28.872070, -76.669656 ], [ -27.509766, -76.496311 ], [ -25.488281, -76.279122 ], [ -23.906250, -76.247817 ], [ -22.456055, -76.100796 ], [ -21.225586, -75.909504 ], [ -19.995117, -75.672197 ], [ -17.534180, -75.129504 ], [ -16.655273, -74.787379 ], [ -15.688477, -74.496413 ], [ -15.424805, -74.104015 ], [ -16.479492, -73.873717 ], [ -16.127930, -73.465984 ], [ -15.424805, -73.150440 ], [ -13.315430, -72.711903 ], [ -12.304688, -72.408992 ], [ -11.513672, -72.006158 ], [ -11.030273, -71.538830 ], [ -10.283203, -71.272595 ], [ -9.096680, -71.328950 ], [ -8.613281, -71.663663 ], [ -7.426758, -71.691293 ], [ -7.382812, -71.328950 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.031249 ], [ -5.537109, -71.399165 ], [ -4.350586, -71.455153 ], [ -3.032227, -71.286699 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 3.515625, -70.931004 ], [ 3.515625, -85.345325 ], [ -146.162109, -85.345325 ], [ -143.217773, -85.051129 ], [ -143.085938, -85.039743 ], [ -142.910156, -84.570546 ], [ -146.821289, -84.532994 ], [ -150.073242, -84.297818 ], [ -150.908203, -83.905058 ], [ -153.588867, -83.686615 ], [ -153.413086, -83.236426 ], [ -152.666016, -82.454537 ], [ -152.841797, -82.045740 ], [ -154.511719, -81.767353 ], [ -155.302734, -81.413933 ], [ -156.840820, -81.100015 ], [ -154.423828, -81.160996 ], [ -152.094727, -81.004326 ], [ -150.644531, -81.334844 ], [ -148.842773, -81.045460 ], [ -147.216797, -80.668436 ], [ -146.425781, -80.334887 ], [ -146.777344, -79.928236 ], [ -149.545898, -79.359590 ], [ -151.567383, -79.302640 ], [ -153.369141, -79.163075 ], [ -155.346680, -79.063478 ], [ -155.961914, -78.690491 ], [ -157.280273, -78.376004 ], [ -158.071289, -78.025574 ], [ -158.378906, -76.890745 ], [ -157.895508, -76.990046 ], [ -156.972656, -77.302864 ], [ -155.346680, -77.205912 ], [ -153.720703, -77.068954 ], [ -152.929688, -77.494607 ], [ -151.347656, -77.399095 ], [ -149.985352, -77.186434 ], [ -148.754883, -76.910665 ], [ -147.612305, -76.578159 ], [ -146.118164, -76.475773 ], [ -146.162109, -76.100796 ], [ -146.513672, -75.737303 ], [ -146.206055, -75.375605 ], [ -144.887695, -75.208245 ], [ -144.316406, -75.541113 ], [ -142.778320, -75.342282 ], [ -141.635742, -75.084326 ], [ -140.229492, -75.061686 ], [ -138.867188, -74.970791 ], [ -135.219727, -74.307353 ], [ -134.428711, -74.366675 ], [ -133.725586, -74.437572 ], [ -132.275391, -74.307353 ], [ -130.913086, -74.484662 ], [ -129.550781, -74.461134 ], [ -128.232422, -74.319235 ], [ -125.419922, -74.519889 ], [ -124.013672, -74.484662 ], [ -121.069336, -74.519889 ], [ -119.707031, -74.484662 ], [ -118.696289, -74.188052 ], [ -117.465820, -74.031637 ], [ -116.235352, -74.247813 ], [ -115.004883, -74.067866 ], [ -113.950195, -73.714276 ], [ -113.291016, -74.031637 ], [ -112.939453, -74.378513 ], [ -112.280273, -74.718037 ], [ -111.269531, -74.425777 ], [ -110.083008, -74.787379 ], [ -108.720703, -74.913708 ], [ -107.578125, -75.185789 ], [ -106.127930, -75.129504 ], [ -104.853516, -74.947983 ], [ -103.359375, -74.993566 ], [ -101.997070, -75.129504 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -100.766602, -74.543330 ], [ -101.250000, -74.188052 ], [ -102.524414, -74.104015 ], [ -103.095703, -73.738905 ], [ -103.666992, -72.620252 ], [ -102.919922, -72.751039 ], [ -101.601562, -72.816074 ], [ -100.327148, -72.751039 ], [ -99.140625, -72.906723 ], [ -98.129883, -73.201317 ], [ -97.690430, -73.553302 ], [ -96.328125, -73.615397 ], [ -95.053711, -73.478485 ], [ -93.691406, -73.289993 ], [ -92.416992, -73.163173 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -73.009755 ], [ -87.275391, -73.188612 ], [ -86.000977, -73.086633 ], [ -85.209961, -73.478485 ], [ -83.891602, -73.515935 ], [ -82.661133, -73.640171 ], [ -81.474609, -73.849286 ], [ -80.683594, -73.478485 ], [ -80.288086, -73.124945 ], [ -79.277344, -73.515935 ], [ -77.915039, -73.415885 ], [ -76.904297, -73.640171 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -73.872070, -73.652545 ], [ -72.817383, -73.403338 ], [ -71.630859, -73.264704 ], [ -70.224609, -73.150440 ], [ -68.950195, -73.009755 ], [ -67.939453, -72.790088 ], [ -67.368164, -72.475276 ], [ -67.148438, -72.046840 ], [ -67.236328, -71.635993 ], [ -68.466797, -70.110485 ], [ -68.554688, -69.718107 ], [ -68.466797, -69.318320 ], [ -67.983398, -68.958391 ], [ -67.587891, -68.544315 ], [ -67.412109, -68.155209 ], [ -67.719727, -67.322924 ], [ -67.236328, -66.878345 ], [ -66.049805, -66.213739 ], [ -65.390625, -65.892680 ], [ -64.555664, -65.603878 ], [ -64.160156, -65.164579 ], [ -63.632812, -64.904910 ], [ -63.017578, -64.642704 ], [ -62.050781, -64.586185 ], [ -61.391602, -64.263684 ], [ -60.688477, -64.072200 ], [ -59.897461, -63.956673 ], [ -59.150391, -63.704722 ], [ -58.579102, -63.391522 ], [ -57.788086, -63.273182 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.235352, -78.384855 ], [ -160.224609, -78.690491 ], [ -159.477539, -79.046790 ], [ -159.213867, -79.496652 ], [ -161.147461, -79.631968 ], [ -162.421875, -79.278140 ], [ -163.037109, -78.929273 ], [ -163.081055, -78.870048 ], [ -163.696289, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -122.387695, -73.327858 ], [ -121.201172, -73.503461 ], [ -119.926758, -73.652545 ], [ -118.740234, -73.478485 ], [ -119.311523, -73.837058 ], [ -120.234375, -74.091974 ], [ -121.640625, -74.007440 ], [ -122.607422, -73.652545 ], [ -122.387695, -73.327858 ] ] ], [ [ [ -126.562500, -73.252045 ], [ -125.551758, -73.478485 ], [ -124.013672, -73.873717 ], [ -125.903320, -73.738905 ], [ -127.265625, -73.465984 ], [ -126.562500, -73.252045 ] ] ], [ [ [ -101.689453, -71.718882 ], [ -100.415039, -71.856229 ], [ -98.964844, -71.938158 ], [ -97.866211, -72.073911 ], [ -96.767578, -71.951778 ], [ -96.196289, -72.528130 ], [ -96.987305, -72.448792 ], [ -98.217773, -72.488504 ], [ -99.448242, -72.448792 ], [ -100.766602, -72.501722 ], [ -101.821289, -72.302431 ], [ -102.348633, -71.897238 ], [ -101.689453, -71.718882 ] ] ], [ [ [ -46.669922, -77.832589 ], [ -45.131836, -78.043795 ], [ -43.901367, -78.481780 ], [ -43.505859, -79.088462 ], [ -43.374023, -79.520657 ], [ -43.330078, -80.027655 ], [ -44.868164, -80.342262 ], [ -46.494141, -80.596909 ], [ -48.383789, -80.830907 ], [ -50.493164, -81.024916 ], [ -52.866211, -80.969904 ], [ -54.184570, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -50.976562, -79.616138 ], [ -49.921875, -78.810511 ], [ -48.647461, -78.043795 ], [ -48.164062, -78.043795 ], [ -46.669922, -77.832589 ] ] ], [ [ [ -70.268555, -68.879358 ], [ -69.741211, -69.256149 ], [ -69.477539, -69.626510 ], [ -68.730469, -70.510241 ], [ -68.466797, -70.959697 ], [ -68.334961, -71.413177 ], [ -68.510742, -71.801410 ], [ -68.774414, -72.168351 ], [ -69.960938, -72.302431 ], [ -71.059570, -72.501722 ], [ -72.377930, -72.488504 ], [ -71.894531, -72.087432 ], [ -74.179688, -72.369105 ], [ -74.970703, -72.073911 ], [ -75.014648, -71.663663 ], [ -73.916016, -71.272595 ], [ -73.212891, -71.145195 ], [ -72.070312, -71.187754 ], [ -71.762695, -70.685421 ], [ -71.718750, -70.303933 ], [ -71.718750, -69.503765 ], [ -71.191406, -69.037142 ], [ -70.268555, -68.879358 ] ] ], [ [ [ -60.600586, -79.631968 ], [ -59.589844, -80.042864 ], [ -60.161133, -80.997452 ], [ -62.270508, -80.865854 ], [ -64.467773, -80.921494 ], [ -65.742188, -80.589727 ], [ -65.742188, -80.546518 ], [ -66.269531, -80.253391 ], [ -64.028320, -80.297927 ], [ -61.875000, -80.393732 ], [ -61.127930, -79.981891 ], [ -60.600586, -79.631968 ] ] ], [ [ [ -51.020508, 3.513421 ], [ -50.493164, 1.889306 ], [ -49.965820, 1.757537 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.219726 ], [ -50.449219, 0.000000 ], [ -50.405273, -0.087891 ], [ -48.603516, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.152814 ], [ -44.560547, -2.679687 ], [ -43.417969, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.496094, -3.688855 ], [ -37.221680, -4.828260 ], [ -36.430664, -5.090944 ], [ -35.595703, -5.134715 ], [ -35.244141, -5.484768 ], [ -34.716797, -7.362467 ], [ -35.112305, -9.015302 ], [ -35.639648, -9.665738 ], [ -37.045898, -11.049038 ], [ -37.661133, -12.168226 ], [ -38.408203, -13.025966 ], [ -38.671875, -13.068777 ], [ -38.935547, -13.795406 ], [ -38.891602, -15.665354 ], [ -39.287109, -17.853290 ], [ -39.594727, -18.271086 ], [ -39.770508, -19.601194 ], [ -40.781250, -20.920397 ], [ -40.957031, -21.943046 ], [ -41.748047, -22.390714 ], [ -41.967773, -22.958393 ], [ -43.066406, -22.958393 ], [ -44.648438, -23.362429 ], [ -45.351562, -23.805450 ], [ -46.450195, -24.086589 ], [ -47.636719, -24.886436 ], [ -48.515625, -25.878994 ], [ -48.647461, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.647461, -28.188244 ], [ -48.867188, -28.690588 ], [ -49.570312, -29.228890 ], [ -50.712891, -30.977609 ], [ -51.591797, -31.765537 ], [ -52.250977, -32.249974 ], [ -52.690430, -33.211116 ], [ -53.393555, -33.760882 ], [ -53.789062, -34.415973 ], [ -54.931641, -34.957995 ], [ -55.678711, -34.741612 ], [ -56.206055, -34.849875 ], [ -57.128906, -34.415973 ], [ -57.832031, -34.452218 ], [ -58.447266, -33.906896 ], [ -58.491211, -34.415973 ], [ -57.216797, -35.281501 ], [ -57.348633, -35.995785 ], [ -56.733398, -36.421282 ], [ -56.777344, -36.914764 ], [ -57.744141, -38.169114 ], [ -59.238281, -38.719805 ], [ -61.215820, -38.925229 ], [ -62.314453, -38.822591 ], [ -62.138672, -39.436193 ], [ -62.314453, -40.178873 ], [ -62.138672, -40.680638 ], [ -62.753906, -41.046217 ], [ -63.764648, -41.178654 ], [ -64.731445, -40.813809 ], [ -65.126953, -41.079351 ], [ -64.995117, -42.065607 ], [ -64.291992, -42.358544 ], [ -63.764648, -42.032974 ], [ -63.457031, -42.553080 ], [ -64.379883, -42.875964 ], [ -65.170898, -43.484812 ], [ -65.346680, -44.496505 ], [ -65.566406, -45.026950 ], [ -66.489258, -45.026950 ], [ -67.280273, -45.552525 ], [ -67.587891, -46.316584 ], [ -66.577148, -47.040182 ], [ -65.654297, -47.249407 ], [ -65.961914, -48.136767 ], [ -67.148438, -48.690960 ], [ -67.807617, -49.866317 ], [ -68.730469, -50.261254 ], [ -69.125977, -50.736455 ], [ -68.818359, -51.781436 ], [ -68.159180, -52.348763 ], [ -68.554688, -52.295042 ], [ -69.477539, -52.295042 ], [ -69.960938, -52.536273 ], [ -70.839844, -52.908902 ], [ -71.015625, -53.826597 ], [ -71.411133, -53.852527 ], [ -72.553711, -53.540307 ], [ -73.696289, -52.829321 ], [ -74.926758, -52.268157 ], [ -75.278320, -51.618017 ], [ -74.970703, -51.041394 ], [ -75.498047, -50.373496 ], [ -75.585938, -48.661943 ], [ -75.190430, -47.724545 ], [ -74.135742, -46.950262 ], [ -75.629883, -46.649436 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.119142 ], [ -73.256836, -44.465151 ], [ -72.729492, -42.391009 ], [ -73.388672, -42.130821 ], [ -73.696289, -43.357138 ], [ -74.311523, -43.229195 ], [ -73.696289, -39.943436 ], [ -73.212891, -39.266284 ], [ -73.520508, -38.272689 ], [ -73.608398, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.496456 ], [ -71.850586, -33.906896 ], [ -71.455078, -32.435613 ], [ -71.674805, -30.939924 ], [ -71.367188, -30.107118 ], [ -71.499023, -28.844674 ], [ -70.883789, -27.644606 ], [ -70.708008, -25.720735 ], [ -70.092773, -21.412162 ], [ -70.180664, -19.766704 ], [ -70.356445, -18.354526 ], [ -71.367188, -17.769612 ], [ -71.455078, -17.350638 ], [ -73.432617, -16.341226 ], [ -75.234375, -15.284185 ], [ -76.025391, -14.647368 ], [ -76.420898, -13.838080 ], [ -76.245117, -13.539201 ], [ -77.124023, -12.211180 ], [ -78.090820, -10.358151 ], [ -79.013672, -8.407168 ], [ -79.453125, -7.928675 ], [ -79.760742, -7.188101 ], [ -80.551758, -6.533645 ], [ -81.254883, -6.140555 ], [ -80.903320, -5.703448 ], [ -81.430664, -4.740675 ], [ -81.079102, -4.039618 ], [ -80.288086, -3.425692 ], [ -79.760742, -2.679687 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.068359, 0.790990 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ], [ -78.969727, 1.713612 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.915039, 2.679687 ], [ -77.387695, 3.513421 ], [ -51.020508, 3.513421 ] ] ], [ [ [ -69.345703, -52.509535 ], [ -68.642578, -52.643063 ], [ -68.247070, -53.094024 ], [ -67.763672, -53.852527 ], [ -66.445312, -54.444492 ], [ -65.039062, -54.699234 ], [ -65.478516, -55.203953 ], [ -66.445312, -55.254077 ], [ -66.972656, -54.901882 ], [ -67.280273, -55.304138 ], [ -68.159180, -55.603178 ], [ -69.213867, -55.503750 ], [ -69.960938, -55.203953 ], [ -71.015625, -55.053203 ], [ -72.246094, -54.495568 ], [ -73.300781, -53.956086 ], [ -74.663086, -52.829321 ], [ -73.828125, -53.041213 ], [ -72.421875, -53.722717 ], [ -71.103516, -54.085173 ], [ -70.576172, -53.618579 ], [ -70.268555, -52.935397 ], [ -69.345703, -52.509535 ] ] ], [ [ [ -58.535156, -51.096623 ], [ -57.744141, -51.563412 ], [ -58.051758, -51.890054 ], [ -59.414062, -52.187405 ], [ -59.853516, -51.862924 ], [ -60.688477, -52.295042 ], [ -61.215820, -51.862924 ], [ -59.985352, -51.261915 ], [ -59.150391, -51.508742 ], [ -58.535156, -51.096623 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.977539, -37.579413 ], [ -181.494141, -37.683820 ], [ -181.713867, -38.582526 ], [ -182.021484, -39.164141 ], [ -182.812500, -39.130060 ], [ -183.076172, -39.436193 ], [ -182.988281, -39.876019 ], [ -183.515625, -40.647304 ], [ -183.515625, -37.753344 ], [ -183.251953, -37.892196 ], [ -182.548828, -37.961523 ], [ -181.977539, -37.579413 ] ] ], [ [ [ -181.625977, -17.350638 ], [ -181.274414, -17.644022 ], [ -181.450195, -18.145852 ], [ -182.065430, -18.271086 ], [ -182.636719, -18.145852 ], [ -182.724609, -17.727759 ], [ -182.329102, -17.392579 ], [ -181.889648, -17.518344 ], [ -181.625977, -17.350638 ] ] ], [ [ [ -179.780273, -16.003576 ], [ -179.912109, -16.509833 ], [ -180.000000, -16.551962 ], [ -181.274414, -17.014768 ], [ -181.406250, -16.636192 ], [ -180.922852, -16.425548 ], [ -180.571289, -16.383391 ], [ -180.000000, -16.088042 ], [ -179.780273, -16.003576 ] ] ] ] } } ] } @@ -31,27 +31,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.185547, 71.924528 ], [ -93.867188, 71.760191 ], [ -92.856445, 71.314877 ], [ -91.538086, 70.185103 ], [ -92.416992, 69.702868 ], [ -90.527344, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.608521 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.561523, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -81.210938, 68.672544 ], [ -81.958008, 68.138852 ], [ -81.254883, 67.592475 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.407955 ], [ -84.726562, 66.249163 ], [ -85.781250, 66.565747 ], [ -86.044922, 66.053716 ], [ -87.011719, 65.219894 ], [ -87.319336, 64.774125 ], [ -88.461914, 64.091408 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.747070, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.218750, 60.887700 ], [ -94.614258, 60.108670 ], [ -94.702148, 58.950008 ], [ -93.208008, 58.790978 ], [ -92.768555, 57.844751 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -89.033203, 56.848972 ], [ -88.022461, 56.462490 ], [ -87.319336, 55.998381 ], [ -86.088867, 55.727110 ], [ -84.990234, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.386719, 52.160455 ], [ -79.892578, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.101562, 54.136696 ], [ -79.848633, 54.673831 ], [ -78.222656, 55.128649 ], [ -77.080078, 55.825973 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.844815 ], [ -77.783203, 60.759160 ], [ -78.090820, 62.308794 ], [ -77.387695, 62.552857 ], [ -75.673828, 62.267923 ], [ -74.663086, 62.186014 ], [ -73.828125, 62.451406 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.301758, 58.950008 ], [ -68.378906, 58.790978 ], [ -67.631836, 58.217025 ], [ -66.181641, 58.768200 ], [ -65.258789, 59.866883 ], [ -64.599609, 60.326948 ], [ -63.808594, 59.445075 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.203953 ], [ -57.963867, 54.952386 ], [ -57.348633, 54.622978 ], [ -56.953125, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.278353 ], [ -55.678711, 52.133488 ], [ -57.128906, 51.426614 ], [ -58.754883, 51.069017 ], [ -60.029297, 50.233152 ], [ -61.743164, 50.092393 ], [ -63.852539, 50.289339 ], [ -65.346680, 50.289339 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.496675 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.754098 ], [ -71.103516, 46.830134 ], [ -70.268555, 46.980252 ], [ -68.642578, 48.312428 ], [ -66.533203, 49.124219 ], [ -65.039062, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.775391, 46.980252 ], [ -64.467773, 46.225453 ], [ -63.193359, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.237305, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.346680, 43.548548 ], [ -66.137695, 43.612217 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.305803 ], [ -66.005859, 45.243953 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.675818 ], [ -70.664062, 43.100983 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -73.959961, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.065392 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.879621 ], [ -75.717773, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.906896 ], [ -78.574219, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.507812, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.916852 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.428711, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.131836, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.764377 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.382812, 26.706360 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.005973 ], [ -97.690430, 24.287027 ], [ -97.778320, 22.917923 ], [ -97.866211, 22.431340 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.207031, 20.632784 ], [ -96.503906, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.888672, 18.812718 ], [ -94.833984, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.768555, 18.521283 ], [ -91.406250, 18.854310 ], [ -90.791016, 19.269665 ], [ -90.527344, 19.849394 ], [ -90.439453, 20.715015 ], [ -90.263672, 21.002471 ], [ -89.604492, 21.248422 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.453069 ], [ -87.055664, 21.534847 ], [ -86.791992, 21.330315 ], [ -86.835938, 20.838278 ], [ -87.363281, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.286133, 18.479609 ], [ -88.286133, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.110352, 18.062312 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.476432 ], [ -88.286133, 17.140790 ], [ -88.242188, 17.014768 ], [ -88.374023, 16.509833 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.214675 ], [ -88.945312, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.505859, 15.834536 ], [ -88.110352, 15.707663 ], [ -87.890625, 15.876809 ], [ -87.626953, 15.876809 ], [ -87.539062, 15.792254 ], [ -87.363281, 15.834536 ], [ -86.879883, 15.749963 ], [ -86.440430, 15.792254 ], [ -86.132812, 15.876809 ], [ -86.000977, 16.003576 ], [ -85.429688, 15.876809 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.834536 ], [ -83.759766, 15.411319 ], [ -83.408203, 15.284185 ], [ -83.144531, 14.987240 ], [ -83.276367, 14.689881 ], [ -83.188477, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.540039, 13.581921 ], [ -83.540039, 13.111580 ], [ -83.452148, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.715820, 11.910354 ], [ -83.627930, 11.609193 ], [ -83.847656, 11.350797 ], [ -83.803711, 11.092166 ], [ -83.671875, 10.919618 ], [ -83.408203, 10.401378 ], [ -82.177734, 9.188870 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.928487 ], [ -81.694336, 9.015302 ], [ -81.430664, 8.798225 ], [ -80.947266, 8.841651 ], [ -80.507812, 9.102097 ], [ -79.892578, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.013672, 9.535749 ], [ -79.057617, 9.449062 ], [ -78.486328, 9.405710 ], [ -78.046875, 9.232249 ], [ -77.343750, 8.667918 ], [ -76.816406, 8.624472 ], [ -76.069336, 9.318990 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.752370 ], [ -75.498047, 10.617418 ], [ -74.926758, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.179688, 11.307708 ], [ -73.432617, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.425848 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.523088 ], [ -71.938477, 11.436955 ], [ -71.630859, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.882275 ], [ -71.674805, 9.058702 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.838979 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.962764 ], [ -70.136719, 11.393879 ], [ -70.312500, 11.824341 ], [ -69.960938, 12.168226 ], [ -69.565430, 11.436955 ], [ -68.862305, 11.436955 ], [ -68.247070, 10.876465 ], [ -68.203125, 10.574222 ], [ -67.280273, 10.531020 ], [ -66.225586, 10.660608 ], [ -65.654297, 10.185187 ], [ -64.907227, 10.055403 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.875000, 10.703792 ], [ -62.709961, 10.401378 ], [ -62.402344, 9.925566 ], [ -61.567383, 9.882275 ], [ -60.820312, 9.362353 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.581021 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.447266, 6.839170 ], [ -58.095703, 6.795535 ], [ -57.128906, 5.965754 ], [ -55.942383, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.019531, 6.009459 ], [ -53.964844, 5.747174 ], [ -54.492188, 4.915833 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.601142 ], [ -54.184570, 3.206333 ], [ -54.272461, 2.723583 ], [ -54.536133, 2.328460 ], [ -55.107422, 2.504085 ], [ -55.546875, 2.416276 ], [ -55.986328, 2.504085 ], [ -56.074219, 2.240640 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.801461 ], [ -57.348633, 1.933227 ], [ -57.656250, 1.669686 ], [ -58.095703, 1.493971 ], [ -58.447266, 1.450040 ], [ -58.535156, 1.274309 ], [ -59.018555, 1.318243 ], [ -59.633789, 1.801461 ], [ -59.721680, 2.240640 ], [ -59.985352, 2.767478 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.434044 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.222247 ], [ -60.732422, 5.178482 ], [ -60.600586, 4.915833 ], [ -60.952148, 4.521666 ], [ -62.094727, 4.171115 ], [ -62.797852, 3.995781 ], [ -63.105469, 3.776559 ], [ -63.896484, 4.039618 ], [ -64.643555, 4.127285 ], [ -64.819336, 4.039618 ], [ -64.379883, 3.776559 ], [ -64.423828, 3.118576 ], [ -64.248047, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.933227 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.566406, 0.790990 ], [ -66.313477, 0.703107 ], [ -66.884766, 1.230374 ], [ -67.060547, 1.142502 ], [ -67.280273, 1.713612 ], [ -67.543945, 2.021065 ], [ -67.851562, 1.669686 ], [ -69.829102, 1.713612 ], [ -69.785156, 1.098565 ], [ -69.213867, 0.966751 ], [ -69.257812, 0.615223 ], [ -69.433594, 0.703107 ], [ -70.004883, 0.527336 ], [ -70.004883, -0.175781 ], [ -69.565430, -0.571280 ], [ -69.433594, -1.142502 ], [ -69.785156, -3.513421 ], [ -80.419922, -3.513421 ], [ -79.760742, -2.679687 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.068359, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ], [ -78.969727, 1.669686 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.915039, 2.679687 ], [ -77.124023, 3.864255 ], [ -77.475586, 4.083453 ], [ -77.299805, 4.653080 ], [ -77.519531, 5.572250 ], [ -77.299805, 5.834616 ], [ -77.475586, 6.708254 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.493196 ], [ -78.442383, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.618164, 8.711359 ], [ -79.101562, 9.015302 ], [ -79.541016, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.320212 ], [ -80.375977, 8.276727 ], [ -80.463867, 8.102739 ], [ -79.980469, 7.536764 ], [ -80.288086, 7.406048 ], [ -80.419922, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.798079 ], [ -81.166992, 7.667441 ], [ -81.518555, 7.710992 ], [ -81.738281, 8.102739 ], [ -82.397461, 8.276727 ], [ -82.836914, 8.276727 ], [ -82.836914, 8.059230 ], [ -82.968750, 8.233237 ], [ -83.496094, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.583984, 8.841651 ], [ -83.627930, 9.058702 ], [ -83.891602, 9.275622 ], [ -84.638672, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.902344, 9.795678 ], [ -85.122070, 9.535749 ], [ -85.341797, 9.838979 ], [ -85.649414, 9.925566 ], [ -85.781250, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.957031, 10.876465 ], [ -85.693359, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.125264 ], [ -87.670898, 12.897489 ], [ -87.539062, 13.068777 ], [ -87.407227, 12.897489 ], [ -87.319336, 12.983148 ], [ -87.495117, 13.282719 ], [ -87.802734, 13.368243 ], [ -87.890625, 13.154376 ], [ -88.461914, 13.154376 ], [ -89.252930, 13.453737 ], [ -89.824219, 13.539201 ], [ -90.087891, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.230469, 13.923404 ], [ -91.669922, 14.136576 ], [ -92.241211, 14.519780 ], [ -93.339844, 15.623037 ], [ -93.867188, 15.919074 ], [ -94.702148, 16.214675 ], [ -95.229492, 16.130262 ], [ -96.064453, 15.749963 ], [ -96.547852, 15.665354 ], [ -97.998047, 16.088042 ], [ -98.964844, 16.551962 ], [ -99.711914, 16.720385 ], [ -100.810547, 17.182779 ], [ -101.645508, 17.644022 ], [ -101.909180, 17.895114 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.271086 ], [ -103.930664, 18.729502 ], [ -104.985352, 19.311143 ], [ -105.512695, 19.932041 ], [ -105.732422, 20.427013 ], [ -105.380859, 20.550509 ], [ -105.512695, 20.797201 ], [ -105.249023, 21.084500 ], [ -105.249023, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.040039, 22.755921 ], [ -106.918945, 23.765237 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.165173 ], [ -109.248047, 25.562265 ], [ -109.423828, 25.839449 ], [ -109.291992, 26.431228 ], [ -109.819336, 26.667096 ], [ -110.390625, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.031055 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.916992, 31.391158 ], [ -114.785156, 30.902225 ], [ -114.653320, 30.145127 ], [ -113.422852, 28.806174 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.939453, 28.420391 ], [ -112.763672, 27.761330 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.269531, 25.720735 ], [ -110.698242, 24.806681 ], [ -110.654297, 24.287027 ], [ -110.170898, 24.246965 ], [ -109.423828, 23.362429 ], [ -109.423828, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.726875 ], [ -112.148438, 25.482951 ], [ -112.280273, 25.997550 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.627818 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.960938, 27.800210 ], [ -114.565430, 27.722436 ], [ -114.213867, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.916992, 29.267233 ], [ -115.532227, 29.573457 ], [ -116.718750, 31.615966 ], [ -117.290039, 33.027088 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.137879 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.057617, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.166085 ], [ -122.827148, 49.009051 ], [ -122.958984, 49.009051 ], [ -124.892578, 49.979488 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.819818 ], [ -128.012695, 51.727028 ], [ -127.836914, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.533203, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.553495 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.366211, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.107170 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.772461, 68.350594 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.436799 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.718107 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.494141, 68.895187 ], [ -135.615234, 69.318320 ], [ -134.428711, 69.626510 ], [ -132.934570, 69.503765 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.364258, 70.005567 ], [ -128.144531, 70.480896 ], [ -127.441406, 70.377854 ], [ -125.771484, 69.472969 ], [ -124.409180, 70.155288 ], [ -124.277344, 69.395783 ], [ -123.046875, 69.565226 ], [ -122.695312, 69.854762 ], [ -121.464844, 69.794136 ], [ -119.926758, 69.380313 ], [ -117.597656, 69.005675 ], [ -116.235352, 68.847665 ], [ -115.224609, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.786133, 67.809245 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.797852, 67.892086 ], [ -108.808594, 68.318146 ], [ -108.149414, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.127930, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.326172, 68.024022 ], [ -103.227539, 68.089709 ], [ -101.469727, 67.642676 ], [ -99.887695, 67.809245 ], [ -98.437500, 67.776025 ], [ -98.569336, 68.399180 ], [ -97.646484, 68.576441 ], [ -96.108398, 68.236823 ], [ -96.108398, 67.289015 ], [ -95.493164, 68.089709 ], [ -94.702148, 68.056889 ], [ -94.218750, 69.068563 ], [ -95.317383, 69.687618 ], [ -96.459961, 70.095529 ], [ -96.372070, 71.187754 ], [ -95.185547, 71.924528 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.490234, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.377254 ], [ -64.379883, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.497070, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.627286 ], [ -80.112305, 61.710706 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.232422, 62.915233 ], [ -81.870117, 62.895218 ], [ -81.914062, 62.714462 ], [ -83.056641, 62.165502 ], [ -83.759766, 62.186014 ], [ -83.979492, 62.451406 ], [ -83.232422, 62.915233 ] ] ], [ [ [ -98.217773, 70.140364 ], [ -96.547852, 69.672358 ], [ -95.625000, 69.099940 ], [ -96.284180, 68.752315 ], [ -97.602539, 69.052858 ], [ -98.437500, 68.942607 ], [ -99.799805, 69.395783 ], [ -98.920898, 69.702868 ], [ -98.217773, 70.140364 ] ] ], [ [ [ -115.180664, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.653320, 72.646486 ], [ -112.456055, 72.958315 ], [ -111.049805, 72.448792 ], [ -109.907227, 72.958315 ], [ -108.984375, 72.633374 ], [ -108.193359, 71.649833 ], [ -107.666016, 72.060381 ], [ -108.413086, 73.086633 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.073844 ], [ -105.380859, 72.672681 ], [ -104.765625, 71.691293 ], [ -104.458008, 70.988349 ], [ -102.788086, 70.495574 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.580563 ], [ -102.744141, 69.503765 ], [ -102.084961, 69.115611 ], [ -102.436523, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.178184 ], [ -107.138672, 69.115611 ], [ -108.984375, 68.784144 ], [ -113.291016, 68.528235 ], [ -113.862305, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.065585 ], [ -115.136719, 70.229744 ], [ -113.730469, 70.185103 ], [ -112.412109, 70.363091 ], [ -114.345703, 70.598021 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.539543 ], [ -118.432617, 70.902268 ], [ -116.103516, 71.314877 ], [ -117.641602, 71.300793 ], [ -119.399414, 71.552741 ], [ -118.564453, 72.302431 ], [ -117.861328, 72.711903 ], [ -115.180664, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.102539, 74.235878 ], [ -117.553711, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.488281, 73.478485 ], [ -116.762695, 73.226700 ], [ -119.223633, 72.514931 ], [ -120.454102, 71.815130 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.804688, 73.022592 ], [ -123.925781, 73.677264 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.140625, 73.627789 ], [ -97.382812, 73.763497 ], [ -97.119141, 73.465984 ], [ -98.041992, 72.984054 ], [ -96.547852, 72.554498 ], [ -96.723633, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.732662 ], [ -102.480469, 72.514931 ], [ -102.480469, 72.829052 ], [ -100.415039, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -80.332031, 73.763497 ], [ -78.046875, 73.652545 ], [ -76.333008, 73.099413 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.738003 ], [ -79.760742, 72.803086 ], [ -80.859375, 73.327858 ], [ -80.815430, 73.689611 ], [ -80.332031, 73.763497 ] ] ], [ [ [ -35.068359, 83.642973 ], [ -27.114258, 83.520162 ], [ -20.830078, 82.726530 ], [ -22.675781, 82.344100 ], [ -26.499023, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.829102, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.610352, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.788086, 81.716859 ], [ -12.216797, 81.288376 ], [ -16.303711, 80.582539 ], [ -16.831055, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.709961, 80.126102 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.990046 ], [ -20.039062, 76.940488 ], [ -21.665039, 76.629067 ], [ -19.819336, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.152043 ], [ -19.379883, 74.295463 ], [ -21.577148, 74.223935 ], [ -20.434570, 73.812574 ], [ -20.742188, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.280273, 72.181804 ], [ -24.257812, 72.593979 ], [ -24.785156, 72.329130 ], [ -23.422852, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.752930, 70.656330 ], [ -23.554688, 70.466207 ], [ -25.532227, 71.427179 ], [ -25.180664, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.125430 ], [ -25.048828, 69.256149 ], [ -27.729492, 68.463800 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.928554 ], [ -39.814453, 65.458261 ], [ -40.649414, 64.830254 ], [ -40.693359, 64.129784 ], [ -41.176758, 63.489767 ], [ -42.802734, 62.674143 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.086763 ], [ -44.780273, 60.042904 ], [ -46.274414, 60.844911 ], [ -48.251953, 60.866312 ], [ -49.218750, 61.396719 ], [ -49.877930, 62.390369 ], [ -51.635742, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.657227, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.187000 ], [ -52.998047, 68.350594 ], [ -51.459961, 68.736383 ], [ -51.064453, 69.146920 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.815812 ], [ -53.437500, 70.830248 ], [ -51.372070, 70.568803 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.399165 ], [ -55.854492, 71.649833 ], [ -54.711914, 72.580829 ], [ -55.327148, 72.958315 ], [ -57.304688, 74.706450 ], [ -58.579102, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.369141, 76.174498 ], [ -66.049805, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.429011 ], [ -69.389648, 78.912384 ], [ -65.698242, 79.391998 ], [ -65.302734, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.676758, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.767353 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.041992, 81.886056 ], [ -50.405273, 82.437205 ], [ -47.988281, 82.063963 ], [ -46.582031, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.202302 ], [ -46.757812, 82.625695 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.068359, 83.642973 ] ] ], [ [ [ -72.817383, 83.231249 ], [ -65.830078, 83.026219 ], [ -63.676758, 82.902419 ], [ -61.831055, 82.625695 ], [ -61.875000, 82.361644 ], [ -64.335938, 81.929358 ], [ -66.752930, 81.723188 ], [ -67.675781, 81.498805 ], [ -65.478516, 81.505299 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.256836, 79.631968 ], [ -73.872070, 79.432371 ], [ -76.904297, 79.318942 ], [ -75.541992, 79.196075 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -76.333008, 78.179588 ], [ -77.871094, 77.897255 ], [ -78.354492, 77.504119 ], [ -79.760742, 77.205912 ], [ -79.628906, 76.980149 ], [ -77.915039, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.551758, 76.174498 ], [ -83.188477, 76.455203 ], [ -86.088867, 76.299953 ], [ -87.583008, 76.424292 ], [ -89.472656, 76.475773 ], [ -89.604492, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.626953, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.179588 ], [ -87.978516, 78.367146 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.078125, 79.343349 ], [ -86.484375, 79.734281 ], [ -86.923828, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.103470 ], [ -81.826172, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.583008, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.362305, 81.550619 ], [ -91.582031, 81.892256 ], [ -90.087891, 82.082145 ], [ -88.945312, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.517578, 82.653843 ], [ -84.243164, 82.597439 ], [ -83.188477, 82.320646 ], [ -82.397461, 82.858847 ], [ -81.079102, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.245117, 83.174035 ], [ -75.717773, 83.063469 ], [ -72.817383, 83.231249 ] ] ], [ [ [ -5.185547, 35.746512 ], [ -4.570312, 35.317366 ], [ -3.647461, 35.389050 ], [ -2.592773, 35.173808 ], [ -2.153320, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.713867, 33.906896 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.249974 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.653381 ], [ -3.691406, 30.902225 ], [ -4.877930, 30.486551 ], [ -5.229492, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.075195, 29.573457 ], [ -8.657227, 28.844674 ], [ -8.657227, 27.644606 ], [ -8.701172, 27.410786 ], [ 0.000000, 21.779905 ], [ 1.845703, 20.591652 ], [ 2.065430, 20.138470 ], [ 3.164062, 19.683970 ], [ 3.164062, 19.062118 ], [ 3.515625, 19.103648 ], [ 3.515625, 15.538376 ], [ 2.768555, 15.411319 ], [ 1.406250, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.395508, 14.944785 ], [ 0.307617, 14.434680 ], [ 0.439453, 14.008696 ], [ 1.010742, 13.325485 ], [ 1.010742, 12.854649 ], [ 2.197266, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.450195, 11.566144 ], [ 1.230469, 11.092166 ], [ 0.922852, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.483398, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -3.295898, 5.003394 ], [ -3.999023, 5.178482 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.514648, 4.346411 ], [ -7.954102, 4.346411 ], [ -9.008789, 4.828260 ], [ -9.931641, 5.572250 ], [ -10.766602, 6.140555 ], [ -11.425781, 6.795535 ], [ -11.689453, 6.839170 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.798079 ], [ -13.139648, 8.146243 ], [ -13.227539, 8.885072 ], [ -13.666992, 9.492408 ], [ -14.062500, 9.882275 ], [ -14.589844, 10.228437 ], [ -14.677734, 10.660608 ], [ -14.853516, 10.876465 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.824341 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.831055, 13.154376 ], [ -16.699219, 13.581921 ], [ -17.138672, 14.392118 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.902322 ], [ -16.699219, 15.623037 ], [ -16.479492, 16.130262 ], [ -16.567383, 16.678293 ], [ -16.259766, 17.182779 ], [ -16.127930, 18.104087 ], [ -16.391602, 19.601194 ], [ -16.259766, 20.097206 ], [ -16.523438, 20.550509 ], [ -17.050781, 21.002471 ], [ -16.962891, 21.902278 ], [ -16.567383, 22.146708 ], [ -16.259766, 22.674847 ], [ -16.303711, 22.998852 ], [ -15.996094, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.073242, 24.527135 ], [ -14.809570, 25.085599 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.234302 ], [ -13.754883, 26.627818 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.916852 ], [ -9.799805, 31.165810 ], [ -9.448242, 32.026706 ], [ -9.316406, 32.546813 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.687782 ], [ -6.899414, 34.125448 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.746512 ], [ -5.185547, 35.746512 ] ] ], [ [ [ -85.825195, 73.800318 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.528130 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.727539, 72.060381 ], [ -78.750000, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.585938, 72.248917 ], [ -74.223633, 71.760191 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.916641 ], [ -68.774414, 70.524897 ], [ -67.895508, 70.125430 ], [ -66.972656, 69.178184 ], [ -68.818359, 68.720441 ], [ -66.445312, 68.073305 ], [ -64.863281, 67.842416 ], [ -63.413086, 66.930060 ], [ -61.831055, 66.861082 ], [ -62.182617, 66.160511 ], [ -63.896484, 64.997939 ], [ -65.126953, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.642704 ], [ -65.302734, 64.377941 ], [ -64.687500, 63.391522 ], [ -64.995117, 62.674143 ], [ -66.269531, 62.935235 ], [ -68.774414, 63.743631 ], [ -66.313477, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.862305, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.695312, 64.225493 ], [ -78.574219, 64.567319 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.802776 ], [ -73.959961, 66.302205 ], [ -72.641602, 67.289015 ], [ -72.905273, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.560384 ], [ -76.860352, 68.895187 ], [ -76.245117, 69.146920 ], [ -77.299805, 69.763757 ], [ -78.178711, 69.824471 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.748551 ], [ -84.946289, 69.960439 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.757966 ], [ -88.461914, 71.216075 ], [ -89.868164, 71.216075 ], [ -90.219727, 72.235514 ], [ -89.428711, 73.124945 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.800318 ] ] ], [ [ [ -92.416992, 81.255032 ], [ -91.142578, 80.725269 ], [ -89.428711, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.663556 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.791016, 78.215541 ], [ -92.856445, 78.340533 ], [ -93.955078, 78.750659 ], [ -93.955078, 79.113389 ], [ -93.164062, 79.375806 ], [ -94.965820, 79.375806 ], [ -96.064453, 79.702907 ], [ -96.723633, 80.156200 ], [ -96.020508, 80.604086 ], [ -95.317383, 80.907616 ], [ -94.306641, 80.976799 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.255032 ] ] ], [ [ [ -96.723633, 77.157163 ], [ -94.702148, 77.098423 ], [ -93.559570, 76.780655 ], [ -91.582031, 76.780655 ], [ -90.747070, 76.444907 ], [ -90.966797, 76.069092 ], [ -89.824219, 75.845169 ], [ -89.165039, 75.606801 ], [ -87.846680, 75.563041 ], [ -86.396484, 75.486148 ], [ -84.770508, 75.693931 ], [ -82.749023, 75.780545 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.331158 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.437572 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.413974 ], [ -88.154297, 74.390342 ], [ -89.780273, 74.519889 ], [ -92.416992, 74.833436 ], [ -92.768555, 75.386696 ], [ -92.900391, 75.877372 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.119141, 76.750473 ], [ -96.723633, 77.157163 ] ] ], [ [ [ -109.599609, 76.790701 ], [ -108.544922, 76.679785 ], [ -108.193359, 76.205967 ], [ -107.797852, 75.845169 ], [ -106.918945, 76.016094 ], [ -105.864258, 75.973553 ], [ -105.688477, 75.475131 ], [ -106.303711, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.413974 ], [ -113.730469, 74.390342 ], [ -113.862305, 74.718037 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.039013 ], [ -117.729492, 75.219460 ], [ -116.323242, 76.195485 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.790701 ] ] ], [ [ [ -2.988281, 58.631217 ], [ -4.086914, 57.562995 ], [ -3.032227, 57.680660 ], [ -1.977539, 57.680660 ], [ -2.197266, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.485474 ], [ -2.944336, 50.708634 ], [ -3.603516, 50.233152 ], [ -4.526367, 50.345460 ], [ -5.229492, 49.951220 ], [ -5.756836, 50.148746 ], [ -4.306641, 51.206883 ], [ -3.427734, 51.426614 ], [ -4.965820, 51.590723 ], [ -5.273438, 51.998410 ], [ -4.218750, 52.295042 ], [ -4.790039, 52.829321 ], [ -4.570312, 53.488046 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.647461, 54.622978 ], [ -4.833984, 54.800685 ], [ -5.097656, 55.053203 ], [ -4.702148, 55.503750 ], [ -5.053711, 55.776573 ], [ -5.581055, 55.304138 ], [ -5.625000, 56.267761 ], [ -6.152344, 56.776808 ], [ -5.800781, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.539595 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -61.083984, 10.876465 ], [ -60.908203, 10.833306 ], [ -60.952148, 10.098670 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.699219, 10.746969 ], [ -61.083984, 10.876465 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -14.501953, 66.460663 ], [ -14.721680, 65.802776 ], [ -13.623047, 65.127638 ], [ -14.897461, 64.358931 ], [ -18.676758, 63.489767 ], [ -22.763672, 63.956673 ], [ -21.796875, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.603878 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.284537 ], [ -17.797852, 66.000150 ], [ -16.171875, 66.530768 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.323242, 76.880775 ], [ -117.114258, 76.527061 ], [ -118.037109, 76.475773 ], [ -119.882812, 76.047916 ], [ -121.508789, 75.898801 ], [ -122.871094, 76.111348 ], [ -121.157227, 76.860810 ], [ -119.091797, 77.513624 ], [ -117.553711, 77.494607 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -73.168945, 19.932041 ], [ -71.718750, 19.725342 ], [ -71.586914, 19.890723 ], [ -70.795898, 19.890723 ], [ -70.224609, 19.601194 ], [ -69.960938, 19.642588 ], [ -69.785156, 19.311143 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.334961, 18.604601 ], [ -68.686523, 18.187607 ], [ -69.169922, 18.437925 ], [ -69.609375, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.229351 ], [ -70.532227, 18.187607 ], [ -70.664062, 18.437925 ], [ -71.015625, 18.271086 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.432617, 18.229351 ], [ -73.916016, 18.020528 ], [ -74.443359, 18.354526 ], [ -74.355469, 18.646245 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.687879 ], [ -72.773438, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.432617, 19.642588 ], [ -73.168945, 19.932041 ] ] ], [ [ [ -77.783203, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.376953, 18.145852 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.853290 ], [ -77.211914, 17.685895 ], [ -77.783203, 17.853290 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.437925 ], [ -77.783203, 18.521283 ] ] ], [ [ [ -66.269531, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.830078, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.354526 ], [ -67.104492, 18.521283 ], [ -66.269531, 18.521283 ] ] ], [ [ [ -98.481445, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.690430, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.799805, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.854492, 75.639536 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.331142 ], [ -101.469727, 76.299953 ], [ -99.975586, 76.649377 ], [ -98.569336, 76.588356 ], [ -98.481445, 76.720223 ] ] ], [ [ [ -94.482422, 74.140084 ], [ -92.416992, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.262695, 72.019729 ], [ -95.405273, 72.060381 ], [ -96.020508, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.493164, 73.861506 ], [ -94.482422, 74.140084 ] ] ], [ [ [ -55.854492, 51.618017 ], [ -55.415039, 51.590723 ], [ -56.777344, 49.809632 ], [ -56.162109, 50.148746 ], [ -55.458984, 49.922935 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.325122 ], [ -54.492188, 49.553726 ], [ -53.481445, 49.239121 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.166085 ], [ -52.646484, 47.546872 ], [ -53.085938, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.635784 ], [ -54.228516, 47.754098 ], [ -55.415039, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -57.304688, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.403320, 49.124219 ], [ -57.348633, 50.708634 ], [ -56.733398, 51.289406 ], [ -55.854492, 51.618017 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.163075 ], [ -100.810547, 78.801980 ], [ -100.063477, 78.322757 ], [ -99.667969, 77.906466 ], [ -101.293945, 78.016453 ], [ -102.963867, 78.340533 ], [ -105.161133, 78.376004 ], [ -104.194336, 78.673242 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -85.869141, 65.730626 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.529297, 63.646259 ], [ -83.100586, 64.110602 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.830254 ], [ -85.869141, 65.730626 ] ] ], [ [ [ -6.723633, 55.178868 ], [ -5.668945, 54.546580 ], [ -6.196289, 53.878440 ], [ -6.020508, 53.146770 ], [ -6.767578, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.808615 ], [ -9.184570, 52.855864 ], [ -9.667969, 53.878440 ], [ -7.558594, 55.128649 ], [ -6.723633, 55.178868 ] ] ], [ [ [ -155.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.062118 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -82.265625, 23.200961 ], [ -80.595703, 23.120154 ], [ -79.672852, 22.755921 ], [ -79.277344, 22.390714 ], [ -78.354492, 22.512557 ], [ -76.508789, 21.207459 ], [ -76.201172, 21.207459 ], [ -75.585938, 21.002471 ], [ -75.673828, 20.715015 ], [ -74.926758, 20.673905 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.629883, 19.890723 ], [ -76.333008, 19.932041 ], [ -77.739258, 19.849394 ], [ -77.080078, 20.427013 ], [ -77.475586, 20.673905 ], [ -78.134766, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.706055, 21.616579 ], [ -79.277344, 21.575719 ], [ -80.200195, 21.820708 ], [ -80.507812, 22.024546 ], [ -81.826172, 22.187405 ], [ -82.177734, 22.390714 ], [ -81.782227, 22.634293 ], [ -82.792969, 22.674847 ], [ -83.496094, 22.187405 ], [ -83.891602, 22.146708 ], [ -84.067383, 21.902278 ], [ -84.550781, 21.779905 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.187405 ], [ -84.243164, 22.553147 ], [ -83.759766, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.265625, 23.200961 ] ] ], [ [ [ -8.261719, 42.293564 ], [ -7.998047, 41.804078 ], [ -7.426758, 41.804078 ], [ -7.250977, 41.902277 ], [ -6.679688, 41.869561 ], [ -6.372070, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.346544 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.065392 ], [ -7.163086, 37.788081 ], [ -7.514648, 37.439974 ], [ -7.470703, 37.090240 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.876953, 36.879621 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.272461, 38.341656 ], [ -9.536133, 38.719805 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.740986 ], [ -8.789062, 40.747257 ], [ -8.789062, 41.178654 ], [ -9.008789, 41.541478 ], [ -9.052734, 41.869561 ], [ -8.657227, 42.130821 ], [ -8.261719, 42.293564 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.591652 ], [ -156.708984, 20.879343 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -98.613281, 78.870048 ], [ -97.338867, 78.827554 ], [ -96.767578, 78.767792 ], [ -95.537109, 78.420193 ], [ -95.844727, 78.052896 ], [ -97.294922, 77.851100 ], [ -98.129883, 78.080156 ], [ -98.569336, 78.455425 ], [ -98.613281, 78.870048 ] ] ], [ [ [ -94.833984, 75.650431 ], [ -93.955078, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.174805, 74.590108 ], [ -95.625000, 74.671638 ], [ -96.811523, 74.925142 ], [ -96.284180, 75.375605 ], [ -94.833984, 75.650431 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.861499 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.998190 ], [ -110.170898, 77.692870 ], [ -112.060547, 77.408678 ], [ -113.554688, 77.730282 ], [ -112.719727, 78.052896 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -78.178711, 25.204941 ], [ -77.871094, 25.165173 ], [ -77.519531, 24.327077 ], [ -77.519531, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -126.694336, 50.401515 ], [ -125.771484, 50.289339 ], [ -124.936523, 49.468124 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.639648, 48.835797 ], [ -125.947266, 49.181703 ], [ -126.870117, 49.525208 ], [ -127.045898, 49.809632 ], [ -128.056641, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -77.783203, 27.019984 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.343750, 25.997550 ], [ -77.343750, 26.509905 ], [ -77.783203, 26.941660 ], [ -77.783203, 27.019984 ] ] ], [ [ [ -78.530273, 26.863281 ], [ -77.827148, 26.824071 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.969727, 26.784847 ], [ -78.530273, 26.863281 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.102539, 68.007571 ], [ -75.102539, 67.575717 ], [ -75.234375, 67.441229 ], [ -75.849609, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -111.489258, 78.853070 ], [ -110.961914, 78.801980 ], [ -109.643555, 78.603986 ], [ -110.874023, 78.402537 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.489258, 78.853070 ] ] ], [ [ [ -105.249023, 73.640171 ], [ -104.501953, 73.415885 ], [ -105.380859, 72.764065 ], [ -106.918945, 73.453473 ], [ -106.611328, 73.602996 ], [ -105.249023, 73.640171 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -96.416016, 77.832589 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.823242, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.152344, 77.551572 ], [ -96.416016, 77.832589 ] ] ], [ [ [ -133.198242, 54.162434 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.110943 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.187405 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.066406, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.162434 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.475586, 60.217991 ], [ -166.464844, 60.392148 ] ] ], [ [ [ -64.160156, 49.951220 ], [ -62.841797, 49.696062 ], [ -61.831055, 49.296472 ], [ -61.787109, 49.095452 ], [ -62.270508, 49.095452 ], [ -63.588867, 49.410973 ], [ -64.511719, 49.866317 ], [ -64.160156, 49.951220 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.185547, 71.924528 ], [ -93.867188, 71.760191 ], [ -92.856445, 71.314877 ], [ -91.538086, 70.185103 ], [ -92.416992, 69.702868 ], [ -90.527344, 69.503765 ], [ -90.571289, 68.479926 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.608521 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -86.308594, 67.925140 ], [ -85.561523, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.111328, 69.809309 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -81.210938, 68.672544 ], [ -81.958008, 68.138852 ], [ -81.254883, 67.592475 ], [ -81.386719, 67.118748 ], [ -83.364258, 66.407955 ], [ -84.726562, 66.249163 ], [ -85.781250, 66.565747 ], [ -86.044922, 66.053716 ], [ -87.011719, 65.219894 ], [ -87.319336, 64.774125 ], [ -88.461914, 64.091408 ], [ -89.912109, 64.033744 ], [ -90.703125, 63.607217 ], [ -90.747070, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.218750, 60.887700 ], [ -94.614258, 60.108670 ], [ -94.702148, 58.950008 ], [ -93.208008, 58.790978 ], [ -92.768555, 57.844751 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -89.033203, 56.848972 ], [ -88.022461, 56.462490 ], [ -87.319336, 55.998381 ], [ -86.088867, 55.727110 ], [ -84.990234, 55.304138 ], [ -83.364258, 55.254077 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.290882 ], [ -82.133789, 53.278353 ], [ -81.386719, 52.160455 ], [ -79.892578, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.618164, 52.562995 ], [ -79.101562, 54.136696 ], [ -79.848633, 54.673831 ], [ -78.222656, 55.128649 ], [ -77.080078, 55.825973 ], [ -76.552734, 56.535258 ], [ -76.640625, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.530273, 58.813742 ], [ -77.343750, 59.844815 ], [ -77.783203, 60.759160 ], [ -78.090820, 62.308794 ], [ -77.387695, 62.552857 ], [ -75.673828, 62.267923 ], [ -74.663086, 62.186014 ], [ -73.828125, 62.451406 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.301758, 58.950008 ], [ -68.378906, 58.790978 ], [ -67.631836, 58.217025 ], [ -66.181641, 58.768200 ], [ -65.258789, 59.866883 ], [ -64.599609, 60.326948 ], [ -63.808594, 59.445075 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.589844, 55.203953 ], [ -57.963867, 54.952386 ], [ -57.348633, 54.622978 ], [ -56.953125, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.766602, 53.278353 ], [ -55.678711, 52.133488 ], [ -57.128906, 51.426614 ], [ -58.754883, 51.069017 ], [ -60.029297, 50.233152 ], [ -61.743164, 50.092393 ], [ -63.852539, 50.289339 ], [ -65.346680, 50.289339 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.496675 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.754098 ], [ -71.103516, 46.830134 ], [ -70.268555, 46.980252 ], [ -68.642578, 48.312428 ], [ -66.533203, 49.124219 ], [ -65.039062, 49.239121 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.078079 ], [ -64.775391, 46.980252 ], [ -64.467773, 46.225453 ], [ -63.193359, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.468750, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.274886 ], [ -63.237305, 44.684277 ], [ -64.248047, 44.276671 ], [ -65.346680, 43.548548 ], [ -66.137695, 43.612217 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.305803 ], [ -66.005859, 45.243953 ], [ -67.148438, 45.151053 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.339565 ], [ -70.136719, 43.675818 ], [ -70.664062, 43.100983 ], [ -70.795898, 42.875964 ], [ -70.839844, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.092773, 41.771312 ], [ -70.180664, 42.130821 ], [ -69.873047, 41.934977 ], [ -69.960938, 41.640078 ], [ -70.620117, 41.475660 ], [ -71.103516, 41.508577 ], [ -71.850586, 41.310824 ], [ -72.861328, 41.211722 ], [ -73.696289, 40.913513 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.913513 ], [ -73.344727, 40.613952 ], [ -73.959961, 40.613952 ], [ -73.959961, 40.747257 ], [ -74.267578, 40.480381 ], [ -73.959961, 40.413496 ], [ -74.179688, 39.707187 ], [ -74.882812, 38.925229 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.232253 ], [ -75.541992, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.058594, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.025391, 37.265310 ], [ -75.717773, 37.926868 ], [ -76.245117, 38.307181 ], [ -76.333008, 39.164141 ], [ -76.552734, 38.719805 ], [ -76.333008, 38.065392 ], [ -76.992188, 38.238180 ], [ -76.289062, 37.926868 ], [ -76.245117, 36.949892 ], [ -75.981445, 36.879621 ], [ -75.717773, 35.532226 ], [ -76.376953, 34.813803 ], [ -77.387695, 34.524661 ], [ -78.046875, 33.906896 ], [ -78.574219, 33.870416 ], [ -79.057617, 33.504759 ], [ -79.189453, 33.174342 ], [ -80.288086, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.428663 ], [ -81.474609, 30.713504 ], [ -81.298828, 30.031055 ], [ -80.991211, 29.190533 ], [ -80.551758, 28.459033 ], [ -80.507812, 28.033198 ], [ -80.068359, 26.863281 ], [ -80.112305, 25.799891 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.342773, 25.641526 ], [ -81.694336, 25.878994 ], [ -82.705078, 27.488781 ], [ -82.836914, 27.877928 ], [ -82.661133, 28.536275 ], [ -82.924805, 29.113775 ], [ -83.715820, 29.916852 ], [ -84.111328, 30.107118 ], [ -85.122070, 29.649869 ], [ -85.297852, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.410782 ], [ -87.539062, 30.259067 ], [ -88.417969, 30.372875 ], [ -89.165039, 30.297018 ], [ -89.604492, 30.145127 ], [ -89.428711, 29.878755 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.305561 ], [ -89.428711, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.131836, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.688053 ], [ -92.504883, 29.535230 ], [ -93.208008, 29.764377 ], [ -93.867188, 29.726222 ], [ -94.702148, 29.496988 ], [ -95.581055, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.119141, 27.839076 ], [ -97.382812, 27.371767 ], [ -97.338867, 26.194877 ], [ -97.119141, 25.878994 ], [ -97.514648, 25.005973 ], [ -97.690430, 24.287027 ], [ -97.778320, 22.917923 ], [ -97.866211, 22.431340 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.207031, 20.632784 ], [ -96.503906, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.888672, 18.812718 ], [ -94.833984, 18.562947 ], [ -94.438477, 18.145852 ], [ -93.559570, 18.437925 ], [ -92.768555, 18.521283 ], [ -91.406250, 18.854310 ], [ -90.791016, 19.269665 ], [ -90.527344, 19.849394 ], [ -90.439453, 20.715015 ], [ -90.263672, 21.002471 ], [ -89.604492, 21.248422 ], [ -88.549805, 21.493964 ], [ -87.670898, 21.453069 ], [ -87.055664, 21.534847 ], [ -86.791992, 21.330315 ], [ -86.835938, 20.838278 ], [ -87.363281, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.451172, 19.476950 ], [ -87.846680, 18.271086 ], [ -88.110352, 18.521283 ], [ -88.286133, 18.479609 ], [ -88.286133, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.110352, 18.062312 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.476432 ], [ -88.286133, 17.140790 ], [ -88.242188, 17.014768 ], [ -88.374023, 16.509833 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.214675 ], [ -88.945312, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.505859, 15.834536 ], [ -88.110352, 15.707663 ], [ -87.890625, 15.876809 ], [ -87.626953, 15.876809 ], [ -87.539062, 15.792254 ], [ -87.363281, 15.834536 ], [ -86.879883, 15.749963 ], [ -86.440430, 15.792254 ], [ -86.132812, 15.876809 ], [ -86.000977, 16.003576 ], [ -85.429688, 15.876809 ], [ -84.990234, 16.003576 ], [ -84.375000, 15.834536 ], [ -83.759766, 15.411319 ], [ -83.408203, 15.284185 ], [ -83.144531, 14.987240 ], [ -83.276367, 14.689881 ], [ -83.188477, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.540039, 13.581921 ], [ -83.540039, 13.111580 ], [ -83.452148, 12.425848 ], [ -83.627930, 12.340002 ], [ -83.715820, 11.910354 ], [ -83.627930, 11.609193 ], [ -83.847656, 11.350797 ], [ -83.803711, 11.092166 ], [ -83.671875, 10.919618 ], [ -83.408203, 10.401378 ], [ -82.177734, 9.188870 ], [ -82.221680, 9.015302 ], [ -81.826172, 8.928487 ], [ -81.694336, 9.015302 ], [ -81.430664, 8.798225 ], [ -80.947266, 8.841651 ], [ -80.507812, 9.102097 ], [ -79.892578, 9.318990 ], [ -79.584961, 9.622414 ], [ -79.013672, 9.535749 ], [ -79.057617, 9.449062 ], [ -78.486328, 9.405710 ], [ -78.046875, 9.232249 ], [ -77.343750, 8.667918 ], [ -76.816406, 8.624472 ], [ -76.069336, 9.318990 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.752370 ], [ -75.498047, 10.617418 ], [ -74.926758, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.179688, 11.307708 ], [ -73.432617, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.425848 ], [ -71.411133, 12.382928 ], [ -71.147461, 12.125264 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.523088 ], [ -71.938477, 11.436955 ], [ -71.630859, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.882275 ], [ -71.674805, 9.058702 ], [ -71.279297, 9.145486 ], [ -71.059570, 9.838979 ], [ -71.367188, 10.228437 ], [ -71.411133, 10.962764 ], [ -70.136719, 11.393879 ], [ -70.312500, 11.824341 ], [ -69.960938, 12.168226 ], [ -69.565430, 11.436955 ], [ -68.862305, 11.436955 ], [ -68.247070, 10.876465 ], [ -68.203125, 10.574222 ], [ -67.280273, 10.531020 ], [ -66.225586, 10.660608 ], [ -65.654297, 10.185187 ], [ -64.907227, 10.055403 ], [ -64.335938, 10.401378 ], [ -64.335938, 10.660608 ], [ -61.875000, 10.703792 ], [ -62.709961, 10.401378 ], [ -62.402344, 9.925566 ], [ -61.567383, 9.882275 ], [ -60.820312, 9.362353 ], [ -60.688477, 8.581021 ], [ -60.161133, 8.581021 ], [ -59.106445, 8.015716 ], [ -58.491211, 7.362467 ], [ -58.447266, 6.839170 ], [ -58.095703, 6.795535 ], [ -57.128906, 5.965754 ], [ -55.942383, 5.790897 ], [ -55.854492, 5.965754 ], [ -55.019531, 6.009459 ], [ -53.964844, 5.747174 ], [ -52.866211, 5.397273 ], [ -51.811523, 4.565474 ], [ -51.635742, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.064453, 3.645000 ], [ -50.493164, 1.889306 ], [ -49.965820, 1.713612 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.219726 ], [ -50.449219, 0.000000 ], [ -50.405273, -0.087891 ], [ -48.603516, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.152814 ], [ -44.560547, -2.679687 ], [ -43.417969, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -80.419922, -3.513421 ], [ -79.760742, -2.679687 ], [ -79.980469, -2.240640 ], [ -80.375977, -2.679687 ], [ -80.947266, -2.240640 ], [ -80.771484, -1.977147 ], [ -80.947266, -1.054628 ], [ -80.595703, -0.922812 ], [ -80.419922, -0.263671 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.068359, 0.747049 ], [ -79.541016, 0.966751 ], [ -78.837891, 1.362176 ], [ -78.969727, 1.669686 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.284551 ], [ -78.442383, 2.635789 ], [ -77.915039, 2.679687 ], [ -77.124023, 3.864255 ], [ -77.475586, 4.083453 ], [ -77.299805, 4.653080 ], [ -77.519531, 5.572250 ], [ -77.299805, 5.834616 ], [ -77.475586, 6.708254 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.493196 ], [ -78.442383, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.407168 ], [ -78.618164, 8.711359 ], [ -79.101562, 9.015302 ], [ -79.541016, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.320212 ], [ -80.375977, 8.276727 ], [ -80.463867, 8.102739 ], [ -79.980469, 7.536764 ], [ -80.288086, 7.406048 ], [ -80.419922, 7.275292 ], [ -80.903320, 7.231699 ], [ -81.079102, 7.798079 ], [ -81.166992, 7.667441 ], [ -81.518555, 7.710992 ], [ -81.738281, 8.102739 ], [ -82.397461, 8.276727 ], [ -82.836914, 8.276727 ], [ -82.836914, 8.059230 ], [ -82.968750, 8.233237 ], [ -83.496094, 8.450639 ], [ -83.715820, 8.667918 ], [ -83.583984, 8.841651 ], [ -83.627930, 9.058702 ], [ -83.891602, 9.275622 ], [ -84.638672, 9.622414 ], [ -84.726562, 9.925566 ], [ -84.990234, 10.098670 ], [ -84.902344, 9.795678 ], [ -85.122070, 9.535749 ], [ -85.341797, 9.838979 ], [ -85.649414, 9.925566 ], [ -85.781250, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.957031, 10.876465 ], [ -85.693359, 11.092166 ], [ -86.528320, 11.824341 ], [ -86.748047, 12.125264 ], [ -87.670898, 12.897489 ], [ -87.539062, 13.068777 ], [ -87.407227, 12.897489 ], [ -87.319336, 12.983148 ], [ -87.495117, 13.282719 ], [ -87.802734, 13.368243 ], [ -87.890625, 13.154376 ], [ -88.461914, 13.154376 ], [ -89.252930, 13.453737 ], [ -89.824219, 13.539201 ], [ -90.087891, 13.752725 ], [ -90.615234, 13.923404 ], [ -91.230469, 13.923404 ], [ -91.669922, 14.136576 ], [ -92.241211, 14.519780 ], [ -93.339844, 15.623037 ], [ -93.867188, 15.919074 ], [ -94.702148, 16.214675 ], [ -95.229492, 16.130262 ], [ -96.064453, 15.749963 ], [ -96.547852, 15.665354 ], [ -97.998047, 16.088042 ], [ -98.964844, 16.551962 ], [ -99.711914, 16.720385 ], [ -100.810547, 17.182779 ], [ -101.645508, 17.644022 ], [ -101.909180, 17.895114 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.271086 ], [ -103.930664, 18.729502 ], [ -104.985352, 19.311143 ], [ -105.512695, 19.932041 ], [ -105.732422, 20.427013 ], [ -105.380859, 20.550509 ], [ -105.512695, 20.797201 ], [ -105.249023, 21.084500 ], [ -105.249023, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.040039, 22.755921 ], [ -106.918945, 23.765237 ], [ -107.929688, 24.567108 ], [ -108.413086, 25.165173 ], [ -109.248047, 25.562265 ], [ -109.423828, 25.839449 ], [ -109.291992, 26.431228 ], [ -109.819336, 26.667096 ], [ -110.390625, 27.176469 ], [ -110.654297, 27.877928 ], [ -111.181641, 27.955591 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.031055 ], [ -113.159180, 30.789037 ], [ -113.159180, 31.165810 ], [ -113.862305, 31.578535 ], [ -114.213867, 31.541090 ], [ -114.785156, 31.802893 ], [ -114.916992, 31.391158 ], [ -114.785156, 30.902225 ], [ -114.653320, 30.145127 ], [ -113.422852, 28.806174 ], [ -113.291016, 28.767659 ], [ -113.159180, 28.420391 ], [ -112.939453, 28.420391 ], [ -112.763672, 27.761330 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.269531, 25.720735 ], [ -110.698242, 24.806681 ], [ -110.654297, 24.287027 ], [ -110.170898, 24.246965 ], [ -109.423828, 23.362429 ], [ -109.423828, 23.200961 ], [ -109.863281, 22.836946 ], [ -110.039062, 22.836946 ], [ -110.302734, 23.443089 ], [ -110.961914, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.192383, 24.726875 ], [ -112.148438, 25.482951 ], [ -112.280273, 25.997550 ], [ -113.466797, 26.784847 ], [ -113.598633, 26.627818 ], [ -113.862305, 26.902477 ], [ -114.477539, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.960938, 27.800210 ], [ -114.565430, 27.722436 ], [ -114.213867, 28.110749 ], [ -114.169922, 28.574874 ], [ -114.916992, 29.267233 ], [ -115.532227, 29.573457 ], [ -116.718750, 31.615966 ], [ -117.290039, 33.027088 ], [ -117.949219, 33.614619 ], [ -118.388672, 33.724340 ], [ -118.520508, 34.016242 ], [ -119.091797, 34.089061 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.597042 ], [ -120.761719, 35.137879 ], [ -121.728516, 36.173357 ], [ -122.563477, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.099983 ], [ -123.706055, 38.959409 ], [ -123.881836, 39.774769 ], [ -124.409180, 40.313043 ], [ -124.189453, 41.145570 ], [ -124.233398, 42.000325 ], [ -124.541016, 42.779275 ], [ -124.145508, 43.707594 ], [ -123.881836, 45.521744 ], [ -124.057617, 46.860191 ], [ -124.409180, 47.724545 ], [ -124.672852, 48.195387 ], [ -124.584961, 48.370848 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.343750, 47.368594 ], [ -122.519531, 48.166085 ], [ -122.827148, 49.009051 ], [ -122.958984, 49.009051 ], [ -124.892578, 49.979488 ], [ -125.639648, 50.429518 ], [ -127.441406, 50.819818 ], [ -128.012695, 51.727028 ], [ -127.836914, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.517578, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.503750 ], [ -132.231445, 56.365250 ], [ -133.549805, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.193871 ], [ -136.625977, 58.217025 ], [ -137.812500, 58.493694 ], [ -139.877930, 59.534318 ], [ -142.558594, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.942383, 60.457218 ], [ -147.128906, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.712097 ], [ -150.600586, 59.377988 ], [ -151.699219, 59.153403 ], [ -151.875000, 59.734253 ], [ -151.391602, 60.716198 ], [ -150.336914, 61.037012 ], [ -150.600586, 61.291349 ], [ -151.875000, 60.716198 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.533203, 56.968936 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.553495 ], [ -160.268555, 55.652798 ], [ -162.246094, 55.028022 ], [ -163.081055, 54.699234 ], [ -164.794922, 54.393352 ], [ -164.926758, 54.572062 ], [ -163.828125, 55.028022 ], [ -162.861328, 55.354135 ], [ -161.806641, 55.899956 ], [ -160.576172, 55.998381 ], [ -160.048828, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.207710 ], [ -157.719727, 57.562995 ], [ -157.543945, 58.332567 ], [ -157.060547, 58.927334 ], [ -158.203125, 58.608334 ], [ -158.510742, 58.790978 ], [ -159.038086, 58.424730 ], [ -159.697266, 58.927334 ], [ -159.960938, 58.562523 ], [ -160.356445, 59.063154 ], [ -161.367188, 58.676938 ], [ -161.982422, 58.676938 ], [ -162.070312, 59.265881 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.998986 ], [ -163.828125, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.366211, 60.500525 ], [ -165.366211, 61.079544 ], [ -166.113281, 61.501734 ], [ -165.717773, 62.083315 ], [ -164.926758, 62.633770 ], [ -164.575195, 63.154355 ], [ -163.740234, 63.213830 ], [ -163.081055, 63.054959 ], [ -162.246094, 63.548552 ], [ -161.542969, 63.450509 ], [ -160.751953, 63.763065 ], [ -160.971680, 64.225493 ], [ -161.499023, 64.396938 ], [ -160.795898, 64.792848 ], [ -161.411133, 64.774125 ], [ -162.465820, 64.567319 ], [ -162.773438, 64.339908 ], [ -163.564453, 64.567319 ], [ -164.970703, 64.453849 ], [ -166.420898, 64.680318 ], [ -166.860352, 65.090646 ], [ -168.090820, 65.676381 ], [ -166.684570, 66.089364 ], [ -164.487305, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.784180, 66.071546 ], [ -161.674805, 66.107170 ], [ -162.509766, 66.739902 ], [ -163.740234, 67.118748 ], [ -164.443359, 67.609221 ], [ -165.410156, 68.040461 ], [ -166.772461, 68.350594 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -163.168945, 69.364831 ], [ -162.949219, 69.854762 ], [ -161.894531, 70.333533 ], [ -160.927734, 70.451508 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.830248 ], [ -156.577148, 71.357067 ], [ -155.083008, 71.145195 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.887885 ], [ -152.226562, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.436799 ], [ -149.721680, 70.524897 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.125430 ], [ -144.931641, 69.990535 ], [ -143.569336, 70.155288 ], [ -142.075195, 69.854762 ], [ -139.130859, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.494141, 68.895187 ], [ -135.615234, 69.318320 ], [ -134.428711, 69.626510 ], [ -132.934570, 69.503765 ], [ -131.440430, 69.945375 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.364258, 70.005567 ], [ -128.144531, 70.480896 ], [ -127.441406, 70.377854 ], [ -125.771484, 69.472969 ], [ -124.409180, 70.155288 ], [ -124.277344, 69.395783 ], [ -123.046875, 69.565226 ], [ -122.695312, 69.854762 ], [ -121.464844, 69.794136 ], [ -119.926758, 69.380313 ], [ -117.597656, 69.005675 ], [ -116.235352, 68.847665 ], [ -115.224609, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.510742, 67.692771 ], [ -110.786133, 67.809245 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.797852, 67.892086 ], [ -108.808594, 68.318146 ], [ -108.149414, 68.656555 ], [ -106.962891, 68.704486 ], [ -106.127930, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.326172, 68.024022 ], [ -103.227539, 68.089709 ], [ -101.469727, 67.642676 ], [ -99.887695, 67.809245 ], [ -98.437500, 67.776025 ], [ -98.569336, 68.399180 ], [ -97.646484, 68.576441 ], [ -96.108398, 68.236823 ], [ -96.108398, 67.289015 ], [ -95.493164, 68.089709 ], [ -94.702148, 68.056889 ], [ -94.218750, 69.068563 ], [ -95.317383, 69.687618 ], [ -96.459961, 70.095529 ], [ -96.372070, 71.187754 ], [ -95.185547, 71.924528 ] ] ], [ [ [ -64.028320, 47.040182 ], [ -63.676758, 46.558860 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.490234, 46.042736 ], [ -62.885742, 45.981695 ], [ -64.160156, 46.377254 ], [ -64.379883, 46.739861 ], [ -64.028320, 47.040182 ] ] ], [ [ [ 3.515625, 36.809285 ], [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -3.295898, 5.003394 ], [ -3.999023, 5.178482 ], [ -4.658203, 5.178482 ], [ -5.844727, 5.003394 ], [ -7.514648, 4.346411 ], [ -7.954102, 4.346411 ], [ -9.008789, 4.828260 ], [ -9.931641, 5.572250 ], [ -10.766602, 6.140555 ], [ -11.425781, 6.795535 ], [ -11.689453, 6.839170 ], [ -12.436523, 7.275292 ], [ -12.963867, 7.798079 ], [ -13.139648, 8.146243 ], [ -13.227539, 8.885072 ], [ -13.666992, 9.492408 ], [ -14.062500, 9.882275 ], [ -14.589844, 10.228437 ], [ -14.677734, 10.660608 ], [ -14.853516, 10.876465 ], [ -15.644531, 11.436955 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.824341 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.831055, 13.154376 ], [ -16.699219, 13.581921 ], [ -17.138672, 14.392118 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.902322 ], [ -16.699219, 15.623037 ], [ -16.479492, 16.130262 ], [ -16.567383, 16.678293 ], [ -16.259766, 17.182779 ], [ -16.127930, 18.104087 ], [ -16.391602, 19.601194 ], [ -16.259766, 20.097206 ], [ -16.523438, 20.550509 ], [ -17.050781, 21.002471 ], [ -17.006836, 21.412162 ], [ -16.962891, 21.902278 ], [ -16.567383, 22.146708 ], [ -16.259766, 22.674847 ], [ -16.303711, 22.998852 ], [ -15.996094, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.073242, 24.527135 ], [ -14.809570, 25.085599 ], [ -14.809570, 25.641526 ], [ -14.458008, 26.234302 ], [ -13.754883, 26.627818 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.844674 ], [ -10.415039, 29.113775 ], [ -9.580078, 29.916852 ], [ -9.799805, 31.165810 ], [ -9.448242, 32.026706 ], [ -9.316406, 32.546813 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.687782 ], [ -6.899414, 34.125448 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.746512 ], [ -5.185547, 35.746512 ], [ -4.570312, 35.317366 ], [ -3.647461, 35.389050 ], [ -2.592773, 35.173808 ], [ -2.153320, 35.173808 ], [ -1.186523, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.515625, 36.809285 ] ] ], [ [ [ -79.936523, 62.390369 ], [ -79.497070, 62.369996 ], [ -79.277344, 62.165502 ], [ -79.672852, 61.627286 ], [ -80.112305, 61.710706 ], [ -80.375977, 62.021528 ], [ -79.936523, 62.390369 ] ] ], [ [ [ -83.232422, 62.915233 ], [ -81.870117, 62.895218 ], [ -81.914062, 62.714462 ], [ -83.056641, 62.165502 ], [ -83.759766, 62.186014 ], [ -83.979492, 62.451406 ], [ -83.232422, 62.915233 ] ] ], [ [ [ -98.217773, 70.140364 ], [ -96.547852, 69.672358 ], [ -95.625000, 69.099940 ], [ -96.284180, 68.752315 ], [ -97.602539, 69.052858 ], [ -98.437500, 68.942607 ], [ -99.799805, 69.395783 ], [ -98.920898, 69.702868 ], [ -98.217773, 70.140364 ] ] ], [ [ [ -115.180664, 73.315246 ], [ -114.169922, 73.124945 ], [ -114.653320, 72.646486 ], [ -112.456055, 72.958315 ], [ -111.049805, 72.448792 ], [ -109.907227, 72.958315 ], [ -108.984375, 72.633374 ], [ -108.193359, 71.649833 ], [ -107.666016, 72.060381 ], [ -108.413086, 73.086633 ], [ -107.534180, 73.239377 ], [ -106.523438, 73.073844 ], [ -105.380859, 72.672681 ], [ -104.765625, 71.691293 ], [ -104.458008, 70.988349 ], [ -102.788086, 70.495574 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.580563 ], [ -102.744141, 69.503765 ], [ -102.084961, 69.115611 ], [ -102.436523, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.178184 ], [ -107.138672, 69.115611 ], [ -108.984375, 68.784144 ], [ -113.291016, 68.528235 ], [ -113.862305, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.065585 ], [ -115.136719, 70.229744 ], [ -113.730469, 70.185103 ], [ -112.412109, 70.363091 ], [ -114.345703, 70.598021 ], [ -116.499023, 70.524897 ], [ -117.905273, 70.539543 ], [ -118.432617, 70.902268 ], [ -116.103516, 71.314877 ], [ -117.641602, 71.300793 ], [ -119.399414, 71.552741 ], [ -118.564453, 72.302431 ], [ -117.861328, 72.711903 ], [ -115.180664, 73.315246 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -120.102539, 74.235878 ], [ -117.553711, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.488281, 73.478485 ], [ -116.762695, 73.226700 ], [ -119.223633, 72.514931 ], [ -120.454102, 71.815130 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.343013 ], [ -125.947266, 71.869909 ], [ -124.804688, 73.022592 ], [ -123.925781, 73.677264 ], [ -124.936523, 74.295463 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -61.083984, 10.876465 ], [ -60.908203, 10.833306 ], [ -60.952148, 10.098670 ], [ -61.787109, 10.012130 ], [ -61.962891, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.699219, 10.746969 ], [ -61.083984, 10.876465 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.140625, 73.627789 ], [ -97.382812, 73.763497 ], [ -97.119141, 73.465984 ], [ -98.041992, 72.984054 ], [ -96.547852, 72.554498 ], [ -96.723633, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.732662 ], [ -102.480469, 72.514931 ], [ -102.480469, 72.829052 ], [ -100.415039, 72.711903 ], [ -101.557617, 73.365639 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -80.332031, 73.763497 ], [ -78.046875, 73.652545 ], [ -76.333008, 73.099413 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.880871 ], [ -79.497070, 72.738003 ], [ -79.760742, 72.803086 ], [ -80.859375, 73.327858 ], [ -80.815430, 73.689611 ], [ -80.332031, 73.763497 ] ] ], [ [ [ -73.168945, 19.932041 ], [ -71.718750, 19.725342 ], [ -71.586914, 19.890723 ], [ -70.795898, 19.890723 ], [ -70.224609, 19.601194 ], [ -69.960938, 19.642588 ], [ -69.785156, 19.311143 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.334961, 18.604601 ], [ -68.686523, 18.187607 ], [ -69.169922, 18.437925 ], [ -69.609375, 18.396230 ], [ -69.960938, 18.437925 ], [ -70.136719, 18.229351 ], [ -70.532227, 18.187607 ], [ -70.664062, 18.437925 ], [ -71.015625, 18.271086 ], [ -71.411133, 17.602139 ], [ -71.674805, 17.769612 ], [ -71.718750, 18.062312 ], [ -72.377930, 18.229351 ], [ -72.861328, 18.145852 ], [ -73.432617, 18.229351 ], [ -73.916016, 18.020528 ], [ -74.443359, 18.354526 ], [ -74.355469, 18.646245 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.687879 ], [ -72.773438, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.432617, 19.642588 ], [ -73.168945, 19.932041 ] ] ], [ [ [ -77.783203, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.376953, 18.145852 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.853290 ], [ -77.211914, 17.685895 ], [ -77.783203, 17.853290 ], [ -78.354492, 18.229351 ], [ -78.222656, 18.437925 ], [ -77.783203, 18.521283 ] ] ], [ [ [ -66.269531, 18.521283 ], [ -65.786133, 18.437925 ], [ -65.610352, 18.229351 ], [ -65.830078, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.354526 ], [ -67.104492, 18.521283 ], [ -66.269531, 18.521283 ] ] ], [ [ [ -35.068359, 83.642973 ], [ -27.114258, 83.520162 ], [ -20.830078, 82.726530 ], [ -22.675781, 82.344100 ], [ -26.499023, 82.297121 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.829102, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.154241 ], [ -20.610352, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.788086, 81.716859 ], [ -12.216797, 81.288376 ], [ -16.303711, 80.582539 ], [ -16.831055, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.709961, 80.126102 ], [ -18.896484, 79.400085 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.990046 ], [ -20.039062, 76.940488 ], [ -21.665039, 76.629067 ], [ -19.819336, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.152043 ], [ -19.379883, 74.295463 ], [ -21.577148, 74.223935 ], [ -20.434570, 73.812574 ], [ -20.742188, 73.465984 ], [ -22.192383, 73.315246 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.280273, 72.181804 ], [ -24.257812, 72.593979 ], [ -24.785156, 72.329130 ], [ -23.422852, 72.073911 ], [ -22.148438, 71.469124 ], [ -21.752930, 70.656330 ], [ -23.554688, 70.466207 ], [ -25.532227, 71.427179 ], [ -25.180664, 70.757966 ], [ -26.367188, 70.229744 ], [ -23.730469, 70.185103 ], [ -22.368164, 70.125430 ], [ -25.048828, 69.256149 ], [ -27.729492, 68.463800 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.827148, 67.742759 ], [ -34.189453, 66.687784 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.928554 ], [ -39.814453, 65.458261 ], [ -40.649414, 64.830254 ], [ -40.693359, 64.129784 ], [ -41.176758, 63.489767 ], [ -42.802734, 62.674143 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.086763 ], [ -44.780273, 60.042904 ], [ -46.274414, 60.844911 ], [ -48.251953, 60.866312 ], [ -49.218750, 61.396719 ], [ -49.877930, 62.390369 ], [ -51.635742, 63.626745 ], [ -52.119141, 64.282760 ], [ -52.294922, 65.183030 ], [ -53.657227, 66.107170 ], [ -53.305664, 66.843807 ], [ -53.964844, 67.187000 ], [ -52.998047, 68.350594 ], [ -51.459961, 68.736383 ], [ -51.064453, 69.146920 ], [ -50.888672, 69.930300 ], [ -52.558594, 69.426691 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.815812 ], [ -53.437500, 70.830248 ], [ -51.372070, 70.568803 ], [ -54.008789, 71.552741 ], [ -55.019531, 71.399165 ], [ -55.854492, 71.649833 ], [ -54.711914, 72.580829 ], [ -55.327148, 72.958315 ], [ -57.304688, 74.706450 ], [ -58.579102, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.369141, 76.174498 ], [ -66.049805, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.382969 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.379906 ], [ -71.059570, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.429011 ], [ -69.389648, 78.912384 ], [ -65.698242, 79.391998 ], [ -65.302734, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.676758, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.767353 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.041992, 81.886056 ], [ -50.405273, 82.437205 ], [ -47.988281, 82.063963 ], [ -46.582031, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.202302 ], [ -46.757812, 82.625695 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.068359, 83.642973 ] ] ], [ [ [ -72.817383, 83.231249 ], [ -65.830078, 83.026219 ], [ -63.676758, 82.902419 ], [ -61.831055, 82.625695 ], [ -61.875000, 82.361644 ], [ -64.335938, 81.929358 ], [ -66.752930, 81.723188 ], [ -67.675781, 81.498805 ], [ -65.478516, 81.505299 ], [ -67.851562, 80.900669 ], [ -69.477539, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.256836, 79.631968 ], [ -73.872070, 79.432371 ], [ -76.904297, 79.318942 ], [ -75.541992, 79.196075 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -76.333008, 78.179588 ], [ -77.871094, 77.897255 ], [ -78.354492, 77.504119 ], [ -79.760742, 77.205912 ], [ -79.628906, 76.980149 ], [ -77.915039, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.551758, 76.174498 ], [ -83.188477, 76.455203 ], [ -86.088867, 76.299953 ], [ -87.583008, 76.424292 ], [ -89.472656, 76.475773 ], [ -89.604492, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.626953, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.352539, 78.179588 ], [ -87.978516, 78.367146 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.078125, 79.343349 ], [ -86.484375, 79.734281 ], [ -86.923828, 80.253391 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.103470 ], [ -81.826172, 80.466790 ], [ -84.111328, 80.582539 ], [ -87.583008, 80.517603 ], [ -89.384766, 80.858875 ], [ -90.219727, 81.261711 ], [ -91.362305, 81.550619 ], [ -91.582031, 81.892256 ], [ -90.087891, 82.082145 ], [ -88.945312, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.517578, 82.653843 ], [ -84.243164, 82.597439 ], [ -83.188477, 82.320646 ], [ -82.397461, 82.858847 ], [ -81.079102, 83.020881 ], [ -79.321289, 83.132123 ], [ -76.245117, 83.174035 ], [ -75.717773, 83.063469 ], [ -72.817383, 83.231249 ] ] ], [ [ [ -85.825195, 73.800318 ], [ -86.572266, 73.163173 ], [ -85.781250, 72.528130 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.727539, 72.060381 ], [ -78.750000, 72.355789 ], [ -77.827148, 72.751039 ], [ -75.585938, 72.248917 ], [ -74.223633, 71.760191 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.916641 ], [ -68.774414, 70.524897 ], [ -67.895508, 70.125430 ], [ -66.972656, 69.178184 ], [ -68.818359, 68.720441 ], [ -66.445312, 68.073305 ], [ -64.863281, 67.842416 ], [ -63.413086, 66.930060 ], [ -61.831055, 66.861082 ], [ -62.182617, 66.160511 ], [ -63.896484, 64.997939 ], [ -65.126953, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.027344, 66.266856 ], [ -68.159180, 65.694476 ], [ -67.104492, 65.109148 ], [ -65.742188, 64.642704 ], [ -65.302734, 64.377941 ], [ -64.687500, 63.391522 ], [ -64.995117, 62.674143 ], [ -66.269531, 62.935235 ], [ -68.774414, 63.743631 ], [ -66.313477, 62.288365 ], [ -66.181641, 61.938950 ], [ -68.862305, 62.329208 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.685248 ], [ -74.838867, 64.680318 ], [ -74.838867, 64.396938 ], [ -77.695312, 64.225493 ], [ -78.574219, 64.567319 ], [ -77.915039, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.311523, 65.802776 ], [ -73.959961, 66.302205 ], [ -72.641602, 67.289015 ], [ -72.905273, 67.726108 ], [ -73.300781, 68.073305 ], [ -74.838867, 68.560384 ], [ -76.860352, 68.895187 ], [ -76.245117, 69.146920 ], [ -77.299805, 69.763757 ], [ -78.178711, 69.824471 ], [ -78.969727, 70.170201 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.748551 ], [ -84.946289, 69.960439 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.757966 ], [ -88.461914, 71.216075 ], [ -89.868164, 71.216075 ], [ -90.219727, 72.235514 ], [ -89.428711, 73.124945 ], [ -88.417969, 73.540855 ], [ -85.825195, 73.800318 ] ] ], [ [ [ 3.515625, 51.454007 ], [ 3.515625, 43.165123 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.455888 ], [ 3.032227, 41.902277 ], [ 2.109375, 41.211722 ], [ 0.791016, 41.013066 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.131836, 38.754083 ], [ 0.000000, 38.651198 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.350586, 36.668419 ], [ -5.009766, 36.315125 ], [ -5.361328, 35.960223 ], [ -5.844727, 36.031332 ], [ -6.240234, 36.350527 ], [ -6.503906, 36.949892 ], [ -7.470703, 37.090240 ], [ -7.866211, 36.844461 ], [ -8.393555, 36.985003 ], [ -8.876953, 36.879621 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.272461, 38.341656 ], [ -9.536133, 38.719805 ], [ -9.448242, 39.402244 ], [ -9.052734, 39.740986 ], [ -8.789062, 40.747257 ], [ -8.789062, 41.178654 ], [ -9.008789, 41.541478 ], [ -9.052734, 41.869561 ], [ -8.964844, 42.585444 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.739352 ], [ -6.767578, 43.580391 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.389082 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.570312, 48.690960 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -0.966797, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 3.295898, 51.344339 ], [ 3.515625, 51.454007 ] ] ], [ [ [ -92.416992, 81.255032 ], [ -91.142578, 80.725269 ], [ -89.428711, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.663556 ], [ -85.825195, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.791016, 78.215541 ], [ -92.856445, 78.340533 ], [ -93.955078, 78.750659 ], [ -93.955078, 79.113389 ], [ -93.164062, 79.375806 ], [ -94.965820, 79.375806 ], [ -96.064453, 79.702907 ], [ -96.723633, 80.156200 ], [ -96.020508, 80.604086 ], [ -95.317383, 80.907616 ], [ -94.306641, 80.976799 ], [ -94.746094, 81.208139 ], [ -92.416992, 81.255032 ] ] ], [ [ [ -96.723633, 77.157163 ], [ -94.702148, 77.098423 ], [ -93.559570, 76.780655 ], [ -91.582031, 76.780655 ], [ -90.747070, 76.444907 ], [ -90.966797, 76.069092 ], [ -89.824219, 75.845169 ], [ -89.165039, 75.606801 ], [ -87.846680, 75.563041 ], [ -86.396484, 75.486148 ], [ -84.770508, 75.693931 ], [ -82.749023, 75.780545 ], [ -81.123047, 75.715633 ], [ -80.068359, 75.331158 ], [ -79.848633, 74.925142 ], [ -80.463867, 74.660016 ], [ -81.958008, 74.437572 ], [ -83.232422, 74.566736 ], [ -86.088867, 74.413974 ], [ -88.154297, 74.390342 ], [ -89.780273, 74.519889 ], [ -92.416992, 74.833436 ], [ -92.768555, 75.386696 ], [ -92.900391, 75.877372 ], [ -93.911133, 76.320754 ], [ -95.976562, 76.444907 ], [ -97.119141, 76.750473 ], [ -96.723633, 77.157163 ] ] ], [ [ [ -155.874023, 20.262197 ], [ -155.214844, 19.973349 ], [ -154.819336, 19.518375 ], [ -155.522461, 19.062118 ], [ -155.698242, 18.895893 ], [ -155.917969, 19.062118 ], [ -155.917969, 19.352611 ], [ -156.093750, 19.683970 ], [ -155.830078, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.874023, 20.262197 ] ] ], [ [ [ -82.265625, 23.200961 ], [ -80.595703, 23.120154 ], [ -79.672852, 22.755921 ], [ -79.277344, 22.390714 ], [ -78.354492, 22.512557 ], [ -76.508789, 21.207459 ], [ -76.201172, 21.207459 ], [ -75.585938, 21.002471 ], [ -75.673828, 20.715015 ], [ -74.926758, 20.673905 ], [ -74.179688, 20.303418 ], [ -74.311523, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.629883, 19.890723 ], [ -76.333008, 19.932041 ], [ -77.739258, 19.849394 ], [ -77.080078, 20.427013 ], [ -77.475586, 20.673905 ], [ -78.134766, 20.756114 ], [ -78.486328, 21.043491 ], [ -78.706055, 21.616579 ], [ -79.277344, 21.575719 ], [ -80.200195, 21.820708 ], [ -80.507812, 22.024546 ], [ -81.826172, 22.187405 ], [ -82.177734, 22.390714 ], [ -81.782227, 22.634293 ], [ -82.792969, 22.674847 ], [ -83.496094, 22.187405 ], [ -83.891602, 22.146708 ], [ -84.067383, 21.902278 ], [ -84.550781, 21.779905 ], [ -84.990234, 21.902278 ], [ -84.462891, 22.187405 ], [ -84.243164, 22.553147 ], [ -83.759766, 22.796439 ], [ -83.276367, 22.998852 ], [ -82.529297, 23.079732 ], [ -82.265625, 23.200961 ] ] ], [ [ [ -109.599609, 76.790701 ], [ -108.544922, 76.679785 ], [ -108.193359, 76.205967 ], [ -107.797852, 75.845169 ], [ -106.918945, 76.016094 ], [ -105.864258, 75.973553 ], [ -105.688477, 75.475131 ], [ -106.303711, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.413974 ], [ -113.730469, 74.390342 ], [ -113.862305, 74.718037 ], [ -111.796875, 75.163300 ], [ -116.323242, 75.039013 ], [ -117.729492, 75.219460 ], [ -116.323242, 76.195485 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.552081 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.790701 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.269531, 20.920397 ], [ -156.005859, 20.756114 ], [ -156.093750, 20.632784 ], [ -156.401367, 20.591652 ], [ -156.708984, 20.879343 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.236328, 21.207459 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.084500 ], [ -157.324219, 21.084500 ], [ -157.236328, 21.207459 ] ] ], [ [ [ -158.027344, 21.698265 ], [ -157.631836, 21.330315 ], [ -157.719727, 21.248422 ], [ -158.115234, 21.330315 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.698265 ] ] ], [ [ [ -2.988281, 58.631217 ], [ -4.086914, 57.562995 ], [ -3.032227, 57.680660 ], [ -1.977539, 57.680660 ], [ -2.197266, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.485474 ], [ -2.944336, 50.708634 ], [ -3.603516, 50.233152 ], [ -4.526367, 50.345460 ], [ -5.229492, 49.951220 ], [ -5.756836, 50.148746 ], [ -4.306641, 51.206883 ], [ -3.427734, 51.426614 ], [ -4.965820, 51.590723 ], [ -5.273438, 51.998410 ], [ -4.218750, 52.295042 ], [ -4.790039, 52.829321 ], [ -4.570312, 53.488046 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.647461, 54.622978 ], [ -4.833984, 54.800685 ], [ -5.097656, 55.053203 ], [ -4.702148, 55.503750 ], [ -5.053711, 55.776573 ], [ -5.581055, 55.304138 ], [ -5.625000, 56.267761 ], [ -6.152344, 56.776808 ], [ -5.800781, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.539595 ], [ -2.988281, 58.631217 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -14.501953, 66.460663 ], [ -14.721680, 65.802776 ], [ -13.623047, 65.127638 ], [ -14.897461, 64.358931 ], [ -18.676758, 63.489767 ], [ -22.763672, 63.956673 ], [ -21.796875, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.090646 ], [ -22.236328, 65.385147 ], [ -24.345703, 65.603878 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.284537 ], [ -17.797852, 66.000150 ], [ -16.171875, 66.530768 ] ] ], [ [ [ -159.345703, 22.228090 ], [ -159.345703, 21.983801 ], [ -159.477539, 21.861499 ], [ -159.785156, 22.065278 ], [ -159.609375, 22.228090 ], [ -159.345703, 22.228090 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.323242, 76.880775 ], [ -117.114258, 76.527061 ], [ -118.037109, 76.475773 ], [ -119.882812, 76.047916 ], [ -121.508789, 75.898801 ], [ -122.871094, 76.111348 ], [ -121.157227, 76.860810 ], [ -119.091797, 77.513624 ], [ -117.553711, 77.494607 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -78.178711, 25.204941 ], [ -77.871094, 25.165173 ], [ -77.519531, 24.327077 ], [ -77.519531, 23.765237 ], [ -77.783203, 23.725012 ], [ -78.046875, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -98.481445, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.690430, 75.748125 ], [ -98.173828, 75.004940 ], [ -99.799805, 74.902266 ], [ -100.898438, 75.061686 ], [ -100.854492, 75.639536 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.331142 ], [ -101.469727, 76.299953 ], [ -99.975586, 76.649377 ], [ -98.569336, 76.588356 ], [ -98.481445, 76.720223 ] ] ], [ [ [ -77.783203, 27.019984 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.343750, 25.997550 ], [ -77.343750, 26.509905 ], [ -77.783203, 26.941660 ], [ -77.783203, 27.019984 ] ] ], [ [ [ -78.530273, 26.863281 ], [ -77.827148, 26.824071 ], [ -77.827148, 26.588527 ], [ -78.925781, 26.431228 ], [ -78.969727, 26.784847 ], [ -78.530273, 26.863281 ] ] ], [ [ [ -94.482422, 74.140084 ], [ -92.416992, 74.104015 ], [ -90.527344, 73.861506 ], [ -92.021484, 72.971189 ], [ -93.208008, 72.777081 ], [ -94.262695, 72.019729 ], [ -95.405273, 72.060381 ], [ -96.020508, 72.945431 ], [ -96.020508, 73.440953 ], [ -95.493164, 73.861506 ], [ -94.482422, 74.140084 ] ] ], [ [ [ -55.854492, 51.618017 ], [ -55.415039, 51.590723 ], [ -56.777344, 49.809632 ], [ -56.162109, 50.148746 ], [ -55.458984, 49.922935 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.325122 ], [ -54.492188, 49.553726 ], [ -53.481445, 49.239121 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.166085 ], [ -52.646484, 47.546872 ], [ -53.085938, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.635784 ], [ -54.228516, 47.754098 ], [ -55.415039, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -57.304688, 47.576526 ], [ -59.282227, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.403320, 49.124219 ], [ -57.348633, 50.708634 ], [ -56.733398, 51.289406 ], [ -55.854492, 51.618017 ] ] ], [ [ [ -105.512695, 79.302640 ], [ -103.535156, 79.163075 ], [ -100.810547, 78.801980 ], [ -100.063477, 78.322757 ], [ -99.667969, 77.906466 ], [ -101.293945, 78.016453 ], [ -102.963867, 78.340533 ], [ -105.161133, 78.376004 ], [ -104.194336, 78.673242 ], [ -105.424805, 78.920832 ], [ -105.512695, 79.302640 ] ] ], [ [ [ -85.869141, 65.730626 ], [ -85.166016, 65.658275 ], [ -84.990234, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.774125 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.529297, 63.646259 ], [ -83.100586, 64.110602 ], [ -84.111328, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.646259 ], [ -87.231445, 63.548552 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.830254 ], [ -85.869141, 65.730626 ] ] ], [ [ [ -6.723633, 55.178868 ], [ -5.668945, 54.546580 ], [ -6.196289, 53.878440 ], [ -6.020508, 53.146770 ], [ -6.767578, 52.268157 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.808615 ], [ -9.184570, 52.855864 ], [ -9.667969, 53.878440 ], [ -7.558594, 55.128649 ], [ -6.723633, 55.178868 ] ] ], [ [ [ -98.613281, 78.870048 ], [ -97.338867, 78.827554 ], [ -96.767578, 78.767792 ], [ -95.537109, 78.420193 ], [ -95.844727, 78.052896 ], [ -97.294922, 77.851100 ], [ -98.129883, 78.080156 ], [ -98.569336, 78.455425 ], [ -98.613281, 78.870048 ] ] ], [ [ [ -94.833984, 75.650431 ], [ -93.955078, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.174805, 74.590108 ], [ -95.625000, 74.671638 ], [ -96.811523, 74.925142 ], [ -96.284180, 75.375605 ], [ -94.833984, 75.650431 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.998190 ], [ -110.170898, 77.692870 ], [ -112.060547, 77.408678 ], [ -113.554688, 77.730282 ], [ -112.719727, 78.052896 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -126.694336, 50.401515 ], [ -125.771484, 50.289339 ], [ -124.936523, 49.468124 ], [ -123.925781, 49.066668 ], [ -123.530273, 48.516604 ], [ -124.013672, 48.370848 ], [ -125.639648, 48.835797 ], [ -125.947266, 49.181703 ], [ -126.870117, 49.525208 ], [ -127.045898, 49.809632 ], [ -128.056641, 50.007739 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.102539, 68.007571 ], [ -75.102539, 67.575717 ], [ -75.234375, 67.441229 ], [ -75.849609, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.255859, 67.592475 ], [ -76.816406, 68.155209 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -111.489258, 78.853070 ], [ -110.961914, 78.801980 ], [ -109.643555, 78.603986 ], [ -110.874023, 78.402537 ], [ -112.543945, 78.411369 ], [ -112.543945, 78.551769 ], [ -111.489258, 78.853070 ] ] ], [ [ [ -105.249023, 73.640171 ], [ -104.501953, 73.415885 ], [ -105.380859, 72.764065 ], [ -106.918945, 73.453473 ], [ -106.611328, 73.602996 ], [ -105.249023, 73.640171 ] ] ], [ [ [ -153.237305, 57.961503 ], [ -152.578125, 57.891497 ], [ -152.138672, 57.586559 ], [ -153.017578, 57.112385 ], [ -153.984375, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.687500, 57.468589 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.961503 ] ] ], [ [ [ -96.416016, 77.832589 ], [ -94.438477, 77.823323 ], [ -93.735352, 77.636542 ], [ -93.823242, 77.523122 ], [ -94.306641, 77.494607 ], [ -96.152344, 77.551572 ], [ -96.416016, 77.832589 ] ] ], [ [ [ -133.198242, 54.162434 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.110943 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.187405 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.066406, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.198242, 54.162434 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.507812, 63.685248 ], [ -169.672852, 63.430860 ], [ -168.706055, 63.292939 ], [ -168.750000, 63.194018 ], [ -169.541016, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.683594, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.411198 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.392148 ], [ -165.673828, 60.283408 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.860352, 59.933000 ], [ -167.475586, 60.217991 ], [ -166.464844, 60.392148 ] ] ], [ [ [ -64.160156, 49.951220 ], [ -62.841797, 49.696062 ], [ -61.831055, 49.296472 ], [ -61.787109, 49.095452 ], [ -62.270508, 49.095452 ], [ -63.588867, 49.410973 ], [ -64.511719, 49.866317 ], [ -64.160156, 49.951220 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.866211, 5.397273 ], [ -51.811523, 4.565474 ], [ -51.635742, 4.171115 ], [ -51.328125, 4.214943 ], [ -51.064453, 3.645000 ], [ -50.493164, 1.889306 ], [ -49.965820, 1.713612 ], [ -49.965820, 1.054628 ], [ -50.712891, 0.219726 ], [ -50.449219, 0.000000 ], [ -50.405273, -0.087891 ], [ -48.603516, -0.219726 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.571280 ], [ -46.582031, -0.922812 ], [ -44.912109, -1.537901 ], [ -44.428711, -2.152814 ], [ -44.560547, -2.679687 ], [ -43.417969, -2.372369 ], [ -41.484375, -2.899153 ], [ -39.990234, -2.855263 ], [ -38.847656, -3.513421 ], [ -69.785156, -3.513421 ], [ -69.433594, -1.142502 ], [ -69.565430, -0.571280 ], [ -70.004883, -0.175781 ], [ -70.004883, 0.527336 ], [ -69.433594, 0.703107 ], [ -69.257812, 0.615223 ], [ -69.213867, 0.966751 ], [ -69.785156, 1.098565 ], [ -69.829102, 1.713612 ], [ -67.851562, 1.669686 ], [ -67.543945, 2.021065 ], [ -67.280273, 1.713612 ], [ -67.060547, 1.142502 ], [ -66.884766, 1.230374 ], [ -66.313477, 0.703107 ], [ -65.566406, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.933227 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.248047, 2.504085 ], [ -64.423828, 3.118576 ], [ -64.379883, 3.776559 ], [ -64.819336, 4.039618 ], [ -64.643555, 4.127285 ], [ -63.896484, 4.039618 ], [ -63.105469, 3.776559 ], [ -62.797852, 3.995781 ], [ -62.094727, 4.171115 ], [ -60.952148, 4.521666 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.178482 ], [ -60.205078, 5.222247 ], [ -59.985352, 5.003394 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.434044 ], [ -59.545898, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.985352, 2.767478 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.801461 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.447266, 1.450040 ], [ -58.095703, 1.493971 ], [ -57.656250, 1.669686 ], [ -57.348633, 1.933227 ], [ -55.986328, 1.801461 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.240640 ], [ -55.986328, 2.504085 ], [ -55.546875, 2.416276 ], [ -55.107422, 2.504085 ], [ -54.536133, 2.328460 ], [ -54.272461, 2.723583 ], [ -54.184570, 3.206333 ], [ -54.008789, 3.601142 ], [ -54.404297, 4.214943 ], [ -54.492188, 4.915833 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 3.515625, 15.538376 ], [ 3.515625, 6.271618 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.571289, 6.926427 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.483398, 8.667918 ], [ 0.351562, 9.449062 ], [ 0.351562, 10.185187 ], [ 0.000000, 10.660608 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.043945, 11.005904 ], [ 0.922852, 11.005904 ], [ 1.230469, 11.092166 ], [ 1.450195, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.197266, 12.640338 ], [ 1.010742, 12.854649 ], [ 1.010742, 13.325485 ], [ 0.439453, 14.008696 ], [ 0.307617, 14.434680 ], [ 0.395508, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.406250, 15.326572 ], [ 2.768555, 15.411319 ], [ 3.515625, 15.538376 ] ] ], [ [ [ 3.515625, 36.809285 ], [ 3.515625, 19.103648 ], [ 3.164062, 19.062118 ], [ 3.164062, 19.683970 ], [ 2.065430, 20.138470 ], [ 1.845703, 20.591652 ], [ 0.000000, 21.779905 ], [ -8.701172, 27.410786 ], [ -8.657227, 28.844674 ], [ -7.075195, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.229492, 29.993002 ], [ -4.877930, 30.486551 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.249974 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.713867, 33.906896 ], [ -1.801758, 34.524661 ], [ -2.153320, 35.173808 ], [ -1.186523, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.515625, 36.809285 ] ] ], [ [ [ 3.515625, 51.454007 ], [ 3.515625, 43.165123 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.455888 ], [ 3.032227, 41.902277 ], [ 2.109375, 41.211722 ], [ 0.791016, 41.013066 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.131836, 38.754083 ], [ 0.000000, 38.651198 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.350586, 36.668419 ], [ -5.009766, 36.315125 ], [ -5.361328, 35.960223 ], [ -5.844727, 36.031332 ], [ -6.240234, 36.350527 ], [ -6.503906, 36.949892 ], [ -7.470703, 37.090240 ], [ -7.514648, 37.439974 ], [ -7.163086, 37.788081 ], [ -7.031250, 38.065392 ], [ -7.382812, 38.376115 ], [ -7.075195, 39.027719 ], [ -7.514648, 39.639538 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.346544 ], [ -6.855469, 41.112469 ], [ -6.372070, 41.376809 ], [ -6.679688, 41.869561 ], [ -7.250977, 41.902277 ], [ -7.426758, 41.804078 ], [ -7.998047, 41.804078 ], [ -8.261719, 42.293564 ], [ -8.657227, 42.130821 ], [ -9.052734, 41.869561 ], [ -8.964844, 42.585444 ], [ -9.404297, 43.036776 ], [ -7.998047, 43.739352 ], [ -6.767578, 43.580391 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.389082 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.362305, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.570312, 48.690960 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -0.966797, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 3.295898, 51.344339 ], [ 3.515625, 51.454007 ] ] ], [ [ [ -183.515625, 69.748551 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.958391 ], [ -177.539062, 68.204212 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.583217 ], [ -174.331055, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.870117, 66.912834 ], [ -169.892578, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.573242, 64.453849 ], [ -172.968750, 64.244595 ], [ -173.891602, 64.282760 ], [ -174.638672, 64.623877 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.348514 ], [ -177.231445, 65.512963 ], [ -178.374023, 65.385147 ], [ -178.901367, 65.748683 ], [ -178.681641, 66.107170 ], [ -179.868164, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.274414, 64.529548 ], [ -182.592773, 64.605038 ], [ -181.669922, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.615234, 62.975198 ], [ -180.527344, 62.573106 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -183.515625, 62.288365 ], [ -183.515625, 69.748551 ] ] ], [ [ [ -179.033203, 71.552741 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.887885 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.786910 ], [ -181.274414, 71.102543 ], [ -179.868164, 71.552741 ], [ -179.033203, 71.552741 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 68.958391 ], [ -177.539062, 68.204212 ], [ -174.946289, 67.204032 ], [ -175.034180, 66.583217 ], [ -174.331055, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.870117, 66.912834 ], [ -169.892578, 65.982270 ], [ -170.903320, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.573242, 64.453849 ], [ -172.968750, 64.244595 ], [ -173.891602, 64.282760 ], [ -174.638672, 64.623877 ], [ -176.000977, 64.923542 ], [ -176.220703, 65.348514 ], [ -177.231445, 65.512963 ], [ -178.374023, 65.385147 ], [ -178.901367, 65.748683 ], [ -178.681641, 66.107170 ], [ -179.868164, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.274414, 64.529548 ], [ -182.592773, 64.605038 ], [ -181.669922, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.615234, 62.975198 ], [ -180.527344, 62.573106 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -183.515625, 62.288365 ], [ -183.515625, 69.748551 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.958391 ] ] ], [ [ [ -180.000000, 71.510978 ], [ -179.868164, 71.552741 ], [ -179.033203, 71.552741 ], [ -177.583008, 71.272595 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.887885 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.786910 ], [ -181.274414, 71.102543 ], [ -180.000000, 71.510978 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.826520 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.247817 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.214875 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.671875, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.601562, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.258789, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.893555, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.145508, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.726562, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.780273, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ], [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.814453, -3.688855 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.696879 ], [ 37.749023, -3.688855 ], [ 37.705078, -3.118576 ], [ 33.925781, -0.966751 ], [ 30.761719, -1.010690 ], [ 29.838867, -1.450040 ], [ 29.575195, -1.362176 ], [ 29.311523, -1.625758 ], [ 29.267578, -2.196727 ], [ 29.135742, -2.284551 ], [ 29.047852, -2.855263 ], [ 29.267578, -3.294082 ], [ 29.355469, -4.521666 ], [ 29.531250, -5.441022 ], [ 29.399414, -5.922045 ], [ 29.619141, -6.533645 ], [ 30.190430, -7.100893 ], [ 30.761719, -8.320212 ], [ 30.366211, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.537565 ], [ 28.432617, -9.145486 ], [ 28.696289, -9.622414 ], [ 28.388672, -11.781325 ], [ 29.355469, -12.382928 ], [ 29.619141, -12.168226 ], [ 29.707031, -13.239945 ], [ 28.916016, -13.239945 ], [ 28.168945, -12.254128 ], [ 27.377930, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.542969, -11.910354 ], [ 25.751953, -11.781325 ], [ 25.400391, -11.350797 ], [ 24.785156, -11.221510 ], [ 24.301758, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.851562, -11.005904 ], [ 22.412109, -11.005904 ], [ 22.148438, -11.092166 ], [ 22.192383, -9.882275 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.928487 ], [ 21.928711, -8.320212 ], [ 21.752930, -7.928675 ], [ 21.708984, -7.275292 ], [ 20.522461, -7.318882 ], [ 20.610352, -6.926427 ], [ 20.083008, -6.926427 ], [ 20.039062, -7.100893 ], [ 19.423828, -7.144499 ], [ 19.028320, -7.972198 ], [ 18.457031, -7.841615 ], [ 18.149414, -7.972198 ], [ 17.490234, -8.059230 ], [ 16.875000, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.347656, -5.878332 ], [ 13.359375, -5.878332 ], [ 12.304688, -6.096860 ], [ 12.172852, -5.790897 ], [ 12.436523, -5.703448 ], [ 12.480469, -5.266008 ], [ 12.612305, -5.003394 ], [ 13.007812, -4.784469 ], [ 13.271484, -4.872048 ], [ 13.623047, -4.521666 ], [ 14.150391, -4.521666 ], [ 14.194336, -4.784469 ], [ 14.589844, -4.959615 ], [ 15.161133, -4.346411 ], [ 15.776367, -3.864255 ], [ 15.996094, -3.557283 ], [ 15.996094, -2.723583 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.709961, 0.000000 ], [ 17.841797, 0.307616 ], [ 17.753906, 0.878872 ], [ 17.885742, 1.757537 ], [ 18.105469, 2.372369 ], [ 18.413086, 2.899153 ], [ 18.457031, 3.513421 ], [ 47.153320, 3.513421 ] ] ], [ [ [ 16.875000, 3.513421 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 11.293945, 1.054628 ], [ 9.843750, 1.054628 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 16.875000, 3.513421 ] ] ], [ [ [ 115.620117, 3.513421 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.181641, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 115.620117, 3.513421 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.087891, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.186523, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.947274 ], [ 138.603516, -66.895596 ], [ 139.921875, -66.878345 ], [ 140.800781, -66.826520 ], [ 143.041992, -66.791909 ], [ 144.360352, -66.843807 ], [ 145.502930, -66.912834 ], [ 146.206055, -67.221053 ], [ 145.986328, -67.609221 ], [ 146.645508, -67.892086 ], [ 148.842773, -68.382996 ], [ 151.479492, -68.720441 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.895187 ], [ 154.291992, -68.560384 ], [ 155.170898, -68.831802 ], [ 155.917969, -69.146920 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 159.653320, -69.990535 ], [ 160.795898, -70.229744 ], [ 161.586914, -70.583418 ], [ 162.685547, -70.743478 ], [ 163.828125, -70.714471 ], [ 164.926758, -70.772443 ], [ 166.113281, -70.757966 ], [ 167.299805, -70.830248 ], [ 168.442383, -70.974028 ], [ 169.453125, -71.201920 ], [ 170.507812, -71.399165 ], [ 171.210938, -71.691293 ], [ 171.079102, -72.087432 ], [ 170.551758, -72.435535 ], [ 169.277344, -73.652545 ], [ 167.958984, -73.812574 ], [ 167.387695, -74.164085 ], [ 166.113281, -74.378513 ], [ 165.629883, -74.775843 ], [ 164.970703, -75.140778 ], [ 164.223633, -75.464105 ], [ 163.828125, -75.866646 ], [ 163.564453, -76.247817 ], [ 163.476562, -76.689906 ], [ 163.476562, -77.068954 ], [ 164.047852, -77.456488 ], [ 164.267578, -77.832589 ], [ 164.750977, -78.179588 ], [ 166.596680, -78.322757 ], [ 166.992188, -78.750659 ], [ 165.190430, -78.903929 ], [ 163.652344, -79.121686 ], [ 161.762695, -79.163075 ], [ 160.927734, -79.734281 ], [ 160.751953, -80.201176 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 161.630859, -81.691497 ], [ 162.509766, -82.063963 ], [ 163.696289, -82.396611 ], [ 166.596680, -83.020881 ], [ 168.881836, -83.334054 ], [ 169.409180, -83.825220 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 176.000977, -84.160849 ], [ 178.286133, -84.474065 ], [ 180.000000, -84.714152 ], [ 180.043945, -84.722243 ], [ 180.922852, -84.138452 ], [ 182.724609, -84.452865 ], [ 183.515625, -84.223108 ], [ 183.515625, -85.345325 ], [ -3.515625, -85.345325 ], [ -3.515625, -71.343013 ], [ -1.801758, -71.173578 ], [ -0.659180, -71.230221 ], [ -0.219727, -71.635993 ], [ 0.000000, -71.566641 ], [ 0.878906, -71.300793 ], [ 1.889648, -71.130988 ], [ 4.130859, -70.859087 ], [ 5.141602, -70.612614 ], [ 6.284180, -70.466207 ], [ 7.119141, -70.244604 ], [ 7.734375, -69.900118 ], [ 8.481445, -70.155288 ], [ 9.536133, -70.005567 ], [ 10.810547, -70.830248 ], [ 11.953125, -70.641769 ], [ 12.392578, -70.244604 ], [ 13.403320, -69.975493 ], [ 14.721680, -70.035597 ], [ 15.117188, -70.407348 ], [ 15.952148, -70.035597 ], [ 17.006836, -69.915214 ], [ 18.193359, -69.869892 ], [ 19.248047, -69.900118 ], [ 20.390625, -70.005567 ], [ 21.445312, -70.065585 ], [ 21.928711, -70.407348 ], [ 22.587891, -70.699951 ], [ 23.686523, -70.524897 ], [ 24.829102, -70.480896 ], [ 27.114258, -70.466207 ], [ 29.135742, -70.214875 ], [ 30.014648, -69.930300 ], [ 30.981445, -69.763757 ], [ 31.992188, -69.657086 ], [ 32.739258, -69.380313 ], [ 33.310547, -68.831802 ], [ 33.881836, -68.496040 ], [ 34.892578, -68.656555 ], [ 35.288086, -69.005675 ], [ 36.166992, -69.240579 ], [ 37.221680, -69.162558 ], [ 37.924805, -69.519147 ], [ 38.671875, -69.778952 ], [ 39.682617, -69.534518 ], [ 40.034180, -69.115611 ], [ 40.913086, -68.926811 ], [ 41.967773, -68.608521 ], [ 44.121094, -68.269387 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.726108 ], [ 48.999023, -67.084550 ], [ 49.921875, -67.118748 ], [ 50.756836, -66.878345 ], [ 50.932617, -66.530768 ], [ 51.811523, -66.249163 ], [ 52.602539, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ], [ 56.337891, -65.982270 ], [ 57.172852, -66.249163 ], [ 57.260742, -66.687784 ], [ 58.139648, -67.016009 ], [ 58.754883, -67.289015 ], [ 59.941406, -67.407487 ], [ 60.600586, -67.676085 ], [ 61.435547, -67.958148 ], [ 62.402344, -68.007571 ], [ 63.193359, -67.809245 ], [ 64.072266, -67.407487 ], [ 64.995117, -67.625954 ], [ 66.928711, -67.858985 ], [ 67.895508, -67.941650 ], [ 68.906250, -67.941650 ], [ 69.697266, -68.974164 ], [ 69.653320, -69.224997 ], [ 69.565430, -69.672358 ], [ 68.598633, -69.930300 ], [ 67.807617, -70.303933 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 68.950195, -71.074056 ], [ 68.422852, -71.441171 ], [ 67.939453, -71.856229 ], [ 68.730469, -72.168351 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.087432 ], [ 71.586914, -71.691293 ], [ 71.894531, -71.328950 ], [ 72.465820, -71.016960 ], [ 73.081055, -70.714471 ], [ 73.344727, -70.363091 ], [ 73.872070, -69.869892 ], [ 74.487305, -69.778952 ], [ 75.629883, -69.733334 ], [ 76.640625, -69.626510 ], [ 77.651367, -69.457554 ], [ 78.134766, -69.068563 ], [ 78.442383, -68.704486 ], [ 79.101562, -68.334376 ], [ 80.947266, -67.875541 ], [ 81.474609, -67.542167 ], [ 82.045898, -67.373698 ], [ 82.792969, -67.204032 ], [ 83.759766, -67.305976 ], [ 85.649414, -67.084550 ], [ 86.748047, -67.152898 ], [ 87.495117, -66.878345 ], [ 87.978516, -66.213739 ], [ 88.374023, -66.478208 ], [ 88.813477, -66.947274 ], [ 89.692383, -67.152898 ], [ 90.615234, -67.221053 ], [ 91.582031, -67.118748 ], [ 92.592773, -67.187000 ], [ 93.559570, -67.204032 ], [ 94.174805, -67.118748 ], [ 95.009766, -67.169955 ], [ 95.800781, -67.390599 ], [ 96.679688, -67.255058 ], [ 97.778320, -67.255058 ], [ 98.701172, -67.118748 ], [ 99.711914, -67.255058 ], [ 100.371094, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.601562, -66.302205 ], [ 102.832031, -65.567550 ], [ 103.491211, -65.694476 ], [ 104.238281, -65.982270 ], [ 106.171875, -66.930060 ], [ 108.061523, -66.947274 ], [ 110.258789, -66.705169 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.124962 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.916992, -66.390361 ], [ 115.620117, -66.705169 ], [ 116.718750, -66.652977 ], [ 117.377930, -66.912834 ], [ 118.564453, -67.169955 ], [ 119.838867, -67.272043 ], [ 120.893555, -67.187000 ], [ 122.299805, -66.565747 ], [ 123.222656, -66.478208 ], [ 124.145508, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.123047, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.726562, -66.583217 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 134.780273, -66.213739 ], [ 135.043945, -65.712557 ], [ 135.087891, -65.311829 ] ] ], [ [ [ 68.950195, -48.632909 ], [ 69.565430, -48.951366 ], [ 70.532227, -49.066668 ], [ 70.576172, -49.267805 ], [ 70.268555, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.950195, -48.632909 ] ] ], [ [ [ 144.755859, -40.713956 ], [ 145.415039, -40.780541 ], [ 146.381836, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.271484, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.423457 ], [ 147.919922, -43.197167 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.644026 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.178654 ], [ 144.755859, -40.713956 ] ] ], [ [ [ 47.153320, 3.513421 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.814453, -3.688855 ], [ 39.594727, -4.346411 ], [ 39.199219, -4.696879 ], [ 38.759766, -5.922045 ], [ 38.803711, -6.489983 ], [ 39.462891, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.199219, -8.494105 ], [ 39.550781, -9.102097 ], [ 39.946289, -10.098670 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.781325 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.221789 ], [ 40.781250, -14.689881 ], [ 40.078125, -16.088042 ], [ 39.462891, -16.720385 ], [ 37.397461, -17.602139 ], [ 36.298828, -18.646245 ], [ 35.903320, -18.854310 ], [ 35.200195, -19.559790 ], [ 34.804688, -19.766704 ], [ 34.716797, -20.509355 ], [ 35.156250, -21.248422 ], [ 35.375977, -21.861499 ], [ 35.375977, -22.146708 ], [ 35.551758, -22.105999 ], [ 35.551758, -23.079732 ], [ 35.375977, -23.523700 ], [ 35.595703, -23.725012 ], [ 35.463867, -24.126702 ], [ 35.024414, -24.487149 ], [ 33.002930, -25.363882 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.234302 ], [ 32.827148, -26.745610 ], [ 32.563477, -27.488781 ], [ 32.475586, -28.304381 ], [ 32.211914, -28.767659 ], [ 31.333008, -29.420460 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.410782 ], [ 30.058594, -31.128199 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.927734, -33.651208 ], [ 25.795898, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.697266, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.906896 ], [ 22.587891, -33.870416 ], [ 21.533203, -34.270836 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.813803 ], [ 19.599609, -34.813803 ], [ 19.204102, -34.452218 ], [ 18.852539, -34.452218 ], [ 18.413086, -34.016242 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.870416 ], [ 18.237305, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.237305, -32.435613 ], [ 18.237305, -31.653381 ], [ 17.578125, -30.713504 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.839076 ], [ 15.205078, -27.098254 ], [ 14.414062, -23.845650 ], [ 14.370117, -22.674847 ], [ 14.238281, -22.105999 ], [ 13.886719, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.612305, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.744141, -13.154376 ], [ 13.623047, -12.039321 ], [ 13.754883, -11.307708 ], [ 13.666992, -10.746969 ], [ 13.403320, -10.358151 ], [ 12.875977, -9.188870 ], [ 12.919922, -8.971897 ], [ 13.227539, -8.581021 ], [ 12.744141, -6.926427 ], [ 12.216797, -6.315299 ], [ 12.304688, -6.096860 ], [ 11.909180, -5.047171 ], [ 11.074219, -3.995781 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.536133, 3.513421 ], [ 47.153320, 3.513421 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.178402 ], [ 142.866211, -11.781325 ], [ 143.129883, -11.910354 ], [ 143.173828, -12.340002 ], [ 143.525391, -12.854649 ], [ 143.613281, -13.410994 ], [ 143.569336, -13.752725 ], [ 143.920898, -14.562318 ], [ 144.580078, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.411319 ], [ 145.502930, -16.299051 ], [ 145.634766, -16.804541 ], [ 145.898438, -16.888660 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.979026 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.732422, -22.390714 ], [ 150.908203, -23.483401 ], [ 152.094727, -24.447150 ], [ 152.841797, -25.284438 ], [ 153.149414, -26.076521 ], [ 153.149414, -26.627818 ], [ 153.105469, -27.254630 ], [ 153.588867, -28.110749 ], [ 153.500977, -28.998532 ], [ 153.061523, -30.334954 ], [ 153.105469, -30.939924 ], [ 152.885742, -31.653381 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.347656, -33.833920 ], [ 150.996094, -34.307144 ], [ 150.732422, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.125286 ], [ 149.985352, -37.439974 ], [ 149.414062, -37.788081 ], [ 148.315430, -37.822802 ], [ 147.392578, -38.203655 ], [ 146.337891, -39.027719 ], [ 145.502930, -38.582526 ], [ 144.887695, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.492188, -38.099983 ], [ 143.613281, -38.822591 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.030786 ], [ 140.009766, -37.405074 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.746512 ], [ 138.120117, -35.603719 ], [ 138.471680, -35.137879 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.065973 ], [ 136.845703, -35.245619 ], [ 137.373047, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.651208 ], [ 137.812500, -32.916485 ], [ 136.977539, -33.760882 ], [ 136.362305, -34.089061 ], [ 136.010742, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.296875, -32.620870 ], [ 132.978516, -32.026706 ], [ 132.275391, -31.989442 ], [ 131.308594, -31.503629 ], [ 129.550781, -31.578535 ], [ 127.089844, -32.287133 ], [ 126.166992, -32.212801 ], [ 125.068359, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.662109, -33.906896 ], [ 122.827148, -33.906896 ], [ 122.167969, -34.016242 ], [ 121.289062, -33.833920 ], [ 119.882812, -33.979809 ], [ 119.311523, -34.524661 ], [ 119.003906, -34.452218 ], [ 118.037109, -35.065973 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.048828, -34.198173 ], [ 115.048828, -33.614619 ], [ 115.532227, -33.504759 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.916485 ], [ 115.795898, -32.212801 ], [ 115.708008, -31.615966 ], [ 115.180664, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.536275 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.422852, -25.641526 ], [ 113.950195, -25.918526 ], [ 114.213867, -26.313113 ], [ 114.213867, -25.799891 ], [ 113.730469, -25.005973 ], [ 113.642578, -24.686952 ], [ 113.378906, -24.367114 ], [ 113.510742, -23.805450 ], [ 113.686523, -23.563987 ], [ 113.862305, -23.079732 ], [ 113.730469, -22.471955 ], [ 114.169922, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.084500 ], [ 116.718750, -20.715015 ], [ 117.158203, -20.632784 ], [ 117.421875, -20.756114 ], [ 118.212891, -20.385825 ], [ 118.828125, -20.262197 ], [ 119.003906, -20.055931 ], [ 119.267578, -19.973349 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.420898, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.255859, -18.187607 ], [ 122.299805, -17.266728 ], [ 123.002930, -16.425548 ], [ 123.442383, -17.266728 ], [ 123.881836, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.837891, -16.130262 ], [ 124.277344, -16.341226 ], [ 124.365234, -15.580711 ], [ 124.936523, -15.072124 ], [ 125.156250, -14.689881 ], [ 125.683594, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.838080 ], [ 127.792969, -14.264383 ], [ 128.364258, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.638672, -14.987240 ], [ 129.418945, -14.434680 ], [ 129.902344, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.166016, -13.111580 ], [ 130.605469, -12.554564 ], [ 131.220703, -12.168226 ], [ 131.748047, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.539062, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.393879 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.692383, -11.953349 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.274414, -12.039321 ], [ 136.494141, -11.867351 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.897489 ], [ 136.318359, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.098633, -13.710035 ], [ 135.439453, -14.732386 ], [ 135.483398, -14.987240 ], [ 136.318359, -15.538376 ], [ 137.065430, -15.876809 ], [ 138.295898, -16.804541 ], [ 138.603516, -16.804541 ], [ 139.130859, -17.056785 ], [ 139.262695, -17.392579 ], [ 140.229492, -17.727759 ], [ 140.888672, -17.350638 ], [ 141.284180, -16.383391 ], [ 141.416016, -15.834536 ], [ 141.723633, -15.029686 ], [ 141.547852, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.503906, -13.710035 ], [ 141.635742, -12.940322 ], [ 141.855469, -12.726084 ], [ 141.679688, -12.425848 ], [ 142.119141, -11.350797 ], [ 142.163086, -11.049038 ], [ 142.514648, -10.660608 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.876953, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.320212 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.636719, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.691406, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 49.174805, -12.039321 ], [ 49.790039, -12.897489 ], [ 50.053711, -13.539201 ], [ 50.229492, -14.774883 ], [ 50.493164, -15.241790 ], [ 50.361328, -15.707663 ], [ 50.185547, -16.003576 ], [ 49.877930, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.877930, -16.467695 ], [ 49.790039, -16.888660 ], [ 49.482422, -17.098792 ], [ 49.438477, -17.936929 ], [ 47.944336, -22.390714 ], [ 47.548828, -23.765237 ], [ 47.109375, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.601902 ], [ 44.033203, -25.005973 ], [ 43.769531, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.796439 ], [ 43.242188, -22.065278 ], [ 43.417969, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.055931 ], [ 44.472656, -19.435514 ], [ 44.252930, -18.979026 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.792254 ], [ 46.889648, -15.199386 ], [ 47.724609, -14.604847 ], [ 47.988281, -14.093957 ], [ 47.856445, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.867188, -13.111580 ], [ 48.867188, -12.468760 ], [ 49.174805, -12.039321 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 113.378906, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.644531, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.098565 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.651367, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.058594, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.303711, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 103.403320, 3.513421 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 101.074219, 3.513421 ], [ 103.403320, 3.513421 ] ] ], [ [ [ 152.138672, -4.171115 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.962891, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.528511 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.171115 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.922812 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.469557 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.762695, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.167969, -16.172473 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 166.640625, -14.647368 ], [ 167.124023, -14.944785 ], [ 167.255859, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.816406, -15.665354 ], [ 166.640625, -15.411319 ], [ 166.640625, -14.647368 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 161.323242, -10.185187 ], [ 162.114258, -10.487812 ], [ 162.421875, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.323242, -10.185187 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.708008, -9.622414 ], [ 160.839844, -9.882275 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.795678 ], [ 159.653320, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.622414 ], [ 161.542969, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 158.378906, -7.318882 ], [ 159.653320, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.598633, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.378906, -7.318882 ] ] ], [ [ [ 156.533203, -6.620957 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.362467 ], [ 157.324219, -7.406048 ], [ 156.884766, -7.188101 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.620957 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.950195, -48.632909 ], [ 69.565430, -48.951366 ], [ 70.532227, -49.066668 ], [ 70.576172, -49.267805 ], [ 70.268555, -49.724479 ], [ 68.730469, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.950195, -48.632909 ] ] ], [ [ [ 172.792969, -40.480381 ], [ 173.232422, -41.343825 ], [ 173.979492, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.389082 ], [ 173.100586, -43.866218 ], [ 172.309570, -43.866218 ], [ 171.474609, -44.245199 ], [ 171.166992, -44.902578 ], [ 170.639648, -45.920587 ], [ 169.321289, -46.649436 ], [ 168.398438, -46.619261 ], [ 167.783203, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.120053 ], [ 168.310547, -44.119142 ], [ 168.969727, -43.929550 ], [ 170.507812, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 144.755859, -40.713956 ], [ 145.415039, -40.780541 ], [ 146.381836, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.271484, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.423457 ], [ 147.919922, -43.197167 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.644026 ], [ 146.645508, -43.580391 ], [ 146.030273, -43.548548 ], [ 145.415039, -42.682435 ], [ 145.283203, -42.032974 ], [ 144.711914, -41.178654 ], [ 144.755859, -40.713956 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.778320, -11.178402 ], [ 142.866211, -11.781325 ], [ 143.129883, -11.910354 ], [ 143.173828, -12.340002 ], [ 143.525391, -12.854649 ], [ 143.613281, -13.410994 ], [ 143.569336, -13.752725 ], [ 143.920898, -14.562318 ], [ 144.580078, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.411319 ], [ 145.502930, -16.299051 ], [ 145.634766, -16.804541 ], [ 145.898438, -16.888660 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.979026 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.248422 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.105999 ], [ 150.468750, -22.553147 ], [ 150.732422, -22.390714 ], [ 150.908203, -23.483401 ], [ 152.094727, -24.447150 ], [ 152.841797, -25.284438 ], [ 153.149414, -26.076521 ], [ 153.149414, -26.627818 ], [ 153.105469, -27.254630 ], [ 153.588867, -28.110749 ], [ 153.500977, -28.998532 ], [ 153.061523, -30.334954 ], [ 153.105469, -30.939924 ], [ 152.885742, -31.653381 ], [ 152.446289, -32.546813 ], [ 151.699219, -33.027088 ], [ 151.347656, -33.833920 ], [ 150.996094, -34.307144 ], [ 150.732422, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.125286 ], [ 149.985352, -37.439974 ], [ 149.414062, -37.788081 ], [ 148.315430, -37.822802 ], [ 147.392578, -38.203655 ], [ 146.337891, -39.027719 ], [ 145.502930, -38.582526 ], [ 144.887695, -38.410558 ], [ 145.019531, -37.892196 ], [ 144.492188, -38.099983 ], [ 143.613281, -38.822591 ], [ 142.163086, -38.376115 ], [ 141.591797, -38.307181 ], [ 140.625000, -38.030786 ], [ 140.009766, -37.405074 ], [ 139.790039, -36.633162 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.746512 ], [ 138.120117, -35.603719 ], [ 138.471680, -35.137879 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.065973 ], [ 136.845703, -35.245619 ], [ 137.373047, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.651208 ], [ 137.812500, -32.916485 ], [ 136.977539, -33.760882 ], [ 136.362305, -34.089061 ], [ 136.010742, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.219727, -33.943360 ], [ 134.604492, -33.211116 ], [ 134.077148, -32.842674 ], [ 134.296875, -32.620870 ], [ 132.978516, -32.026706 ], [ 132.275391, -31.989442 ], [ 131.308594, -31.503629 ], [ 129.550781, -31.578535 ], [ 127.089844, -32.287133 ], [ 126.166992, -32.212801 ], [ 125.068359, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.013672, -33.468108 ], [ 123.662109, -33.906896 ], [ 122.827148, -33.906896 ], [ 122.167969, -34.016242 ], [ 121.289062, -33.833920 ], [ 119.882812, -33.979809 ], [ 119.311523, -34.524661 ], [ 119.003906, -34.452218 ], [ 118.037109, -35.065973 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.048828, -34.198173 ], [ 115.048828, -33.614619 ], [ 115.532227, -33.504759 ], [ 115.708008, -33.247876 ], [ 115.664062, -32.916485 ], [ 115.795898, -32.212801 ], [ 115.708008, -31.615966 ], [ 115.180664, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.536275 ], [ 114.169922, -28.110749 ], [ 114.038086, -27.332735 ], [ 113.466797, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.422852, -25.641526 ], [ 113.950195, -25.918526 ], [ 114.213867, -26.313113 ], [ 114.213867, -25.799891 ], [ 113.730469, -25.005973 ], [ 113.642578, -24.686952 ], [ 113.378906, -24.367114 ], [ 113.510742, -23.805450 ], [ 113.686523, -23.563987 ], [ 113.862305, -23.079732 ], [ 113.730469, -22.471955 ], [ 114.169922, -21.739091 ], [ 114.213867, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.444336, -21.493964 ], [ 115.927734, -21.084500 ], [ 116.718750, -20.715015 ], [ 117.158203, -20.632784 ], [ 117.421875, -20.756114 ], [ 118.212891, -20.385825 ], [ 118.828125, -20.262197 ], [ 119.003906, -20.055931 ], [ 119.267578, -19.973349 ], [ 119.794922, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.420898, -19.228177 ], [ 121.640625, -18.687879 ], [ 122.255859, -18.187607 ], [ 122.299805, -17.266728 ], [ 123.002930, -16.425548 ], [ 123.442383, -17.266728 ], [ 123.881836, -17.056785 ], [ 123.486328, -16.594081 ], [ 123.837891, -16.130262 ], [ 124.277344, -16.341226 ], [ 124.365234, -15.580711 ], [ 124.936523, -15.072124 ], [ 125.156250, -14.689881 ], [ 125.683594, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.123047, -14.093957 ], [ 127.045898, -13.838080 ], [ 127.792969, -14.264383 ], [ 128.364258, -14.859850 ], [ 128.979492, -14.859850 ], [ 129.638672, -14.987240 ], [ 129.418945, -14.434680 ], [ 129.902344, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.166016, -13.111580 ], [ 130.605469, -12.554564 ], [ 131.220703, -12.168226 ], [ 131.748047, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.539062, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.393879 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.692383, -11.953349 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.274414, -12.039321 ], [ 136.494141, -11.867351 ], [ 136.933594, -12.340002 ], [ 136.669922, -12.897489 ], [ 136.318359, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.098633, -13.710035 ], [ 135.439453, -14.732386 ], [ 135.483398, -14.987240 ], [ 136.318359, -15.538376 ], [ 137.065430, -15.876809 ], [ 138.295898, -16.804541 ], [ 138.603516, -16.804541 ], [ 139.130859, -17.056785 ], [ 139.262695, -17.392579 ], [ 140.229492, -17.727759 ], [ 140.888672, -17.350638 ], [ 141.284180, -16.383391 ], [ 141.416016, -15.834536 ], [ 141.723633, -15.029686 ], [ 141.547852, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.503906, -13.710035 ], [ 141.635742, -12.940322 ], [ 141.855469, -12.726084 ], [ 141.679688, -12.425848 ], [ 142.119141, -11.350797 ], [ 142.163086, -11.049038 ], [ 142.514648, -10.660608 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.540039, -34.994004 ], [ 174.331055, -35.281501 ], [ 174.594727, -36.173357 ], [ 175.341797, -37.195331 ], [ 175.341797, -36.527295 ], [ 175.825195, -36.809285 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.892196 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.055664, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.253906, -41.705729 ], [ 175.078125, -41.442726 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.902344, -39.909736 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.164141 ], [ 174.594727, -38.788345 ], [ 174.726562, -38.030786 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.137875 ], [ 173.056641, -35.245619 ], [ 172.617188, -34.524661 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 33.925781, -0.966751 ], [ 37.705078, -3.118576 ], [ 37.749023, -3.688855 ], [ 39.199219, -4.696879 ], [ 38.759766, -5.922045 ], [ 38.803711, -6.489983 ], [ 39.462891, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.199219, -8.494105 ], [ 39.550781, -9.102097 ], [ 39.946289, -10.098670 ], [ 40.297852, -10.314919 ], [ 40.473633, -10.746969 ], [ 40.429688, -11.781325 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.221789 ], [ 40.781250, -14.689881 ], [ 40.078125, -16.088042 ], [ 39.462891, -16.720385 ], [ 37.397461, -17.602139 ], [ 36.298828, -18.646245 ], [ 35.903320, -18.854310 ], [ 35.200195, -19.559790 ], [ 34.804688, -19.766704 ], [ 34.716797, -20.509355 ], [ 35.156250, -21.248422 ], [ 35.375977, -21.861499 ], [ 35.375977, -22.146708 ], [ 35.551758, -22.105999 ], [ 35.551758, -23.079732 ], [ 35.375977, -23.523700 ], [ 35.595703, -23.725012 ], [ 35.463867, -24.126702 ], [ 35.024414, -24.487149 ], [ 33.002930, -25.363882 ], [ 32.563477, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.234302 ], [ 32.827148, -26.745610 ], [ 32.563477, -27.488781 ], [ 32.475586, -28.304381 ], [ 32.211914, -28.767659 ], [ 31.333008, -29.420460 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.410782 ], [ 30.058594, -31.128199 ], [ 28.916016, -32.175612 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.211116 ], [ 26.411133, -33.614619 ], [ 25.927734, -33.651208 ], [ 25.795898, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.697266, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.906896 ], [ 22.587891, -33.870416 ], [ 21.533203, -34.270836 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.813803 ], [ 19.599609, -34.813803 ], [ 19.204102, -34.452218 ], [ 18.852539, -34.452218 ], [ 18.413086, -34.016242 ], [ 18.369141, -34.125448 ], [ 18.237305, -33.870416 ], [ 18.237305, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.237305, -32.435613 ], [ 18.237305, -31.653381 ], [ 17.578125, -30.713504 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.839076 ], [ 15.205078, -27.098254 ], [ 14.414062, -23.845650 ], [ 14.370117, -22.674847 ], [ 14.238281, -22.105999 ], [ 13.886719, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.612305, -19.062118 ], [ 11.777344, -18.062312 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.859850 ], [ 12.172852, -14.434680 ], [ 12.480469, -13.539201 ], [ 12.744141, -13.154376 ], [ 13.623047, -12.039321 ], [ 13.754883, -11.307708 ], [ 13.666992, -10.746969 ], [ 13.403320, -10.358151 ], [ 12.875977, -9.188870 ], [ 12.919922, -8.971897 ], [ 13.227539, -8.581021 ], [ 12.744141, -6.926427 ], [ 12.216797, -6.315299 ], [ 12.304688, -6.096860 ], [ 13.359375, -5.878332 ], [ 16.347656, -5.878332 ], [ 16.567383, -6.620957 ], [ 16.875000, -7.231699 ], [ 17.490234, -8.059230 ], [ 18.149414, -7.972198 ], [ 18.457031, -7.841615 ], [ 19.028320, -7.972198 ], [ 19.423828, -7.144499 ], [ 20.039062, -7.100893 ], [ 20.083008, -6.926427 ], [ 20.610352, -6.926427 ], [ 20.522461, -7.318882 ], [ 21.708984, -7.275292 ], [ 21.752930, -7.928675 ], [ 21.928711, -8.320212 ], [ 21.796875, -8.928487 ], [ 21.884766, -9.535749 ], [ 22.192383, -9.882275 ], [ 22.148438, -11.092166 ], [ 22.412109, -11.005904 ], [ 22.851562, -11.005904 ], [ 23.466797, -10.876465 ], [ 24.257812, -10.962764 ], [ 24.301758, -11.264612 ], [ 24.785156, -11.221510 ], [ 25.400391, -11.350797 ], [ 25.751953, -11.781325 ], [ 26.542969, -11.910354 ], [ 27.158203, -11.609193 ], [ 27.377930, -12.125264 ], [ 28.168945, -12.254128 ], [ 28.916016, -13.239945 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.168226 ], [ 29.355469, -12.382928 ], [ 28.388672, -11.781325 ], [ 28.696289, -9.622414 ], [ 28.432617, -9.145486 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.366211, -8.233237 ], [ 30.761719, -8.320212 ], [ 30.190430, -7.100893 ], [ 29.619141, -6.533645 ], [ 29.399414, -5.922045 ], [ 29.531250, -5.441022 ], [ 29.355469, -4.521666 ], [ 29.267578, -3.294082 ], [ 29.047852, -2.855263 ], [ 29.135742, -2.284551 ], [ 29.267578, -2.196727 ], [ 29.311523, -1.625758 ], [ 29.575195, -1.362176 ], [ 29.838867, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 33.925781, -0.966751 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.810547, -4.872048 ], [ 145.986328, -5.484768 ], [ 147.656250, -6.096860 ], [ 147.875977, -6.620957 ], [ 146.953125, -6.708254 ], [ 147.172852, -7.406048 ], [ 148.095703, -8.059230 ], [ 148.754883, -9.102097 ], [ 149.326172, -9.058702 ], [ 149.282227, -9.535749 ], [ 150.029297, -9.665738 ], [ 149.721680, -9.882275 ], [ 150.820312, -10.314919 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.765625, -10.401378 ], [ 147.919922, -10.141932 ], [ 146.557617, -8.928487 ], [ 146.030273, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.876953, -7.928675 ], [ 143.305664, -8.233237 ], [ 143.393555, -8.971897 ], [ 142.646484, -9.318990 ], [ 142.075195, -9.145486 ], [ 141.020508, -9.102097 ], [ 140.141602, -8.320212 ], [ 139.130859, -8.102739 ], [ 138.867188, -8.363693 ], [ 137.636719, -8.407168 ], [ 138.032227, -7.580328 ], [ 138.691406, -7.318882 ], [ 138.427734, -6.227934 ], [ 137.944336, -5.397273 ], [ 136.010742, -4.565474 ], [ 135.175781, -4.477856 ], [ 133.681641, -3.557283 ], [ 133.374023, -4.039618 ], [ 132.978516, -4.127285 ], [ 132.758789, -3.732708 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 49.174805, -12.039321 ], [ 49.790039, -12.897489 ], [ 50.053711, -13.539201 ], [ 50.229492, -14.774883 ], [ 50.493164, -15.241790 ], [ 50.361328, -15.707663 ], [ 50.185547, -16.003576 ], [ 49.877930, -15.411319 ], [ 49.658203, -15.707663 ], [ 49.877930, -16.467695 ], [ 49.790039, -16.888660 ], [ 49.482422, -17.098792 ], [ 49.438477, -17.936929 ], [ 47.944336, -22.390714 ], [ 47.548828, -23.765237 ], [ 47.109375, -24.926295 ], [ 46.274414, -25.165173 ], [ 45.395508, -25.601902 ], [ 44.033203, -25.005973 ], [ 43.769531, -24.447150 ], [ 43.681641, -23.563987 ], [ 43.330078, -22.796439 ], [ 43.242188, -22.065278 ], [ 43.417969, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.055931 ], [ 44.472656, -19.435514 ], [ 44.252930, -18.979026 ], [ 44.033203, -18.312811 ], [ 43.945312, -17.392579 ], [ 44.296875, -16.846605 ], [ 44.428711, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.792254 ], [ 46.889648, -15.199386 ], [ 47.724609, -14.604847 ], [ 47.988281, -14.093957 ], [ 47.856445, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.867188, -13.111580 ], [ 48.867188, -12.468760 ], [ 49.174805, -12.039321 ] ] ], [ [ [ 18.457031, 3.513421 ], [ 18.413086, 2.899153 ], [ 18.105469, 2.372369 ], [ 17.885742, 1.757537 ], [ 17.753906, 0.878872 ], [ 17.841797, 0.307616 ], [ 17.709961, 0.000000 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.391602, -1.757537 ], [ 15.996094, -2.723583 ], [ 15.996094, -3.557283 ], [ 15.776367, -3.864255 ], [ 15.161133, -4.346411 ], [ 14.589844, -4.959615 ], [ 14.194336, -4.784469 ], [ 14.150391, -4.521666 ], [ 13.623047, -4.521666 ], [ 13.271484, -4.872048 ], [ 13.007812, -4.784469 ], [ 12.612305, -5.003394 ], [ 12.480469, -5.266008 ], [ 12.436523, -5.703448 ], [ 12.172852, -5.790897 ], [ 11.909180, -5.047171 ], [ 11.074219, -3.995781 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.952148, 1.713612 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 16.875000, 3.513421 ], [ 18.457031, 3.513421 ] ] ], [ [ [ 117.509766, 3.513421 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.147461, -3.995781 ], [ 116.015625, -3.645000 ], [ 114.873047, -4.127285 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.620117, 3.513421 ], [ 117.509766, 3.513421 ] ] ], [ [ [ 99.228516, 3.513421 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.644531, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.834616 ], [ 104.721680, -5.878332 ], [ 103.886719, -5.047171 ], [ 102.568359, -4.214943 ], [ 102.172852, -3.601142 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.845384 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.899414, 3.513421 ], [ 99.228516, 3.513421 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.098565 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.255859, -3.513421 ], [ 123.178711, -4.696879 ], [ 123.178711, -5.353521 ], [ 122.651367, -5.615986 ], [ 122.255859, -5.266008 ], [ 122.739258, -4.477856 ], [ 121.728516, -4.872048 ], [ 121.508789, -4.565474 ], [ 121.640625, -4.171115 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.410156, -5.528511 ], [ 119.794922, -5.659719 ], [ 119.355469, -5.397273 ], [ 119.663086, -4.477856 ], [ 119.487305, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.058594, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 106.040039, -5.878332 ], [ 107.270508, -5.965754 ], [ 108.061523, -6.358975 ], [ 108.500977, -6.402648 ], [ 108.632812, -6.795535 ], [ 110.522461, -6.882800 ], [ 110.742188, -6.446318 ], [ 112.631836, -6.926427 ], [ 112.983398, -7.580328 ], [ 114.477539, -7.798079 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.363693 ], [ 112.543945, -8.363693 ], [ 111.533203, -8.320212 ], [ 110.566406, -8.102739 ], [ 109.423828, -7.754537 ], [ 108.676758, -7.623887 ], [ 108.281250, -7.754537 ], [ 106.435547, -7.362467 ], [ 106.303711, -6.926427 ], [ 105.380859, -6.839170 ], [ 106.040039, -5.878332 ] ] ], [ [ [ 152.138672, -4.171115 ], [ 152.358398, -4.302591 ], [ 152.314453, -4.872048 ], [ 151.962891, -5.484768 ], [ 151.479492, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.282227, -5.572250 ], [ 149.853516, -5.528511 ], [ 149.985352, -5.047171 ], [ 150.161133, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.820312, -5.441022 ], [ 151.083984, -5.134715 ], [ 151.655273, -4.740675 ], [ 151.523438, -4.171115 ], [ 152.138672, -4.171115 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.353516, -8.407168 ], [ 126.958008, -8.667918 ], [ 125.068359, -9.405710 ], [ 124.453125, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.442383, -10.228437 ], [ 123.530273, -9.882275 ], [ 123.969727, -9.275622 ], [ 124.980469, -8.885072 ], [ 125.068359, -8.667918 ], [ 125.947266, -8.450639 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 164.047852, -20.097206 ], [ 164.443359, -20.138470 ], [ 165.014648, -20.468189 ], [ 167.124023, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.698265 ], [ 164.838867, -21.166484 ], [ 164.179688, -20.427013 ], [ 164.047852, -20.097206 ] ] ], [ [ [ 127.924805, 2.196727 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.922812 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.196727 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.825195, -3.864255 ], [ 129.990234, -3.469557 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.739258, -8.667918 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.798225 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 121.992188, -8.450639 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.058702 ], [ 116.762695, -9.015302 ], [ 117.070312, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 153.017578, -3.995781 ], [ 153.149414, -4.521666 ], [ 152.841797, -4.784469 ], [ 152.622070, -4.171115 ], [ 152.402344, -3.776559 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ] ] ], [ [ [ 167.211914, -15.876809 ], [ 167.827148, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.167969, -16.172473 ], [ 167.211914, -15.876809 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.775391, -5.353521 ], [ 155.083008, -5.572250 ], [ 155.566406, -6.184246 ], [ 156.005859, -6.533645 ], [ 155.874023, -6.839170 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.922045 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 166.640625, -14.647368 ], [ 167.124023, -14.944785 ], [ 167.255859, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.816406, -15.665354 ], [ 166.640625, -15.411319 ], [ 166.640625, -14.647368 ] ] ], [ [ [ 119.882812, -9.362353 ], [ 120.410156, -9.665738 ], [ 120.761719, -9.968851 ], [ 120.717773, -10.228437 ], [ 120.278320, -10.271681 ], [ 118.959961, -9.579084 ], [ 119.882812, -9.362353 ] ] ], [ [ [ 161.323242, -10.185187 ], [ 162.114258, -10.487812 ], [ 162.421875, -10.833306 ], [ 161.718750, -10.833306 ], [ 161.323242, -10.185187 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 126.870117, -3.776559 ], [ 126.166992, -3.601142 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 134.516602, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.227934 ], [ 134.208984, -6.882800 ], [ 134.121094, -6.140555 ], [ 134.516602, -5.441022 ] ] ], [ [ [ 158.378906, -7.318882 ], [ 159.653320, -8.015716 ], [ 159.873047, -8.320212 ], [ 159.916992, -8.537565 ], [ 158.598633, -7.754537 ], [ 158.203125, -7.406048 ], [ 158.378906, -7.318882 ] ] ], [ [ [ 159.697266, -9.232249 ], [ 160.356445, -9.405710 ], [ 160.708008, -9.622414 ], [ 160.839844, -9.882275 ], [ 160.444336, -9.882275 ], [ 159.829102, -9.795678 ], [ 159.653320, -9.622414 ], [ 159.697266, -9.232249 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.102097 ], [ 161.674805, -9.622414 ], [ 161.542969, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 156.533203, -6.620957 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.362467 ], [ 157.324219, -7.406048 ], [ 156.884766, -7.188101 ], [ 156.489258, -6.751896 ], [ 156.533203, -6.620957 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.480381 ], [ 173.232422, -41.343825 ], [ 173.979492, -40.913513 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.389082 ], [ 173.100586, -43.866218 ], [ 172.309570, -43.866218 ], [ 171.474609, -44.245199 ], [ 171.166992, -44.902578 ], [ 170.639648, -45.920587 ], [ 169.321289, -46.649436 ], [ 168.398438, -46.619261 ], [ 167.783203, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.036133, -45.120053 ], [ 168.310547, -44.119142 ], [ 168.969727, -43.929550 ], [ 170.507812, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.946714 ], [ 172.792969, -40.480381 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.540039, -34.994004 ], [ 174.331055, -35.281501 ], [ 174.594727, -36.173357 ], [ 175.341797, -37.195331 ], [ 175.341797, -36.527295 ], [ 175.825195, -36.809285 ], [ 175.957031, -37.544577 ], [ 176.748047, -37.892196 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.505859, -37.683820 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.187500, -39.130060 ], [ 176.923828, -39.436193 ], [ 177.055664, -39.876019 ], [ 176.000977, -41.277806 ], [ 175.253906, -41.705729 ], [ 175.078125, -41.442726 ], [ 174.638672, -41.277806 ], [ 175.209961, -40.446947 ], [ 174.902344, -39.909736 ], [ 173.803711, -39.504041 ], [ 173.847656, -39.164141 ], [ 174.594727, -38.788345 ], [ 174.726562, -38.030786 ], [ 174.682617, -37.370157 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.137875 ], [ 173.056641, -35.245619 ], [ 172.617188, -34.524661 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 164.047852, -20.097206 ], [ 164.443359, -20.138470 ], [ 165.014648, -20.468189 ], [ 167.124023, -22.146708 ], [ 166.728516, -22.390714 ], [ 165.454102, -21.698265 ], [ 164.838867, -21.166484 ], [ 164.179688, -20.427013 ], [ 164.047852, -20.097206 ] ] ], [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.644022 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.271086 ], [ 177.363281, -18.145852 ], [ 177.275391, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.110352, -17.518344 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.219727, -16.003576 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.077148, -16.425548 ], [ 179.428711, -16.383391 ], [ 180.000000, -16.088042 ], [ 180.219727, -16.003576 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.515625, 24.086589 ], [ 0.000000, 21.779905 ], [ 1.845703, 20.591652 ], [ 2.065430, 20.138470 ], [ 3.164062, 19.683970 ], [ 3.164062, 19.062118 ], [ 4.262695, 19.145168 ], [ 4.262695, 16.846605 ], [ 3.735352, 16.172473 ], [ 3.647461, 15.580711 ], [ 2.768555, 15.411319 ], [ 1.406250, 15.326572 ], [ 1.010742, 14.987240 ], [ 0.395508, 14.944785 ], [ 0.307617, 14.434680 ], [ 0.439453, 14.008696 ], [ 1.010742, 13.325485 ], [ 1.010742, 12.854649 ], [ 2.197266, 12.640338 ], [ 2.153320, 11.953349 ], [ 1.933594, 11.652236 ], [ 1.450195, 11.566144 ], [ 1.230469, 11.092166 ], [ 0.922852, 11.005904 ], [ 0.043945, 11.005904 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.660608 ], [ 0.351562, 10.185187 ], [ 0.351562, 9.449062 ], [ 0.483398, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.926427 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 24.086589 ] ] ], [ [ [ -3.515625, 35.389050 ], [ -2.592773, 35.173808 ], [ -2.153320, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.713867, 33.906896 ], [ -1.406250, 32.879587 ], [ -1.142578, 32.657876 ], [ -1.318359, 32.249974 ], [ -2.636719, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.515625, 31.653381 ], [ -3.515625, 35.389050 ] ] ], [ [ [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.485474 ], [ -2.944336, 50.708634 ], [ -3.515625, 50.289339 ], [ -3.515625, 51.399206 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.426614 ], [ -3.515625, 53.435719 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ] ] ], [ [ [ -2.988281, 58.631217 ], [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -2.988281, 58.631217 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.082031, 55.379110 ], [ 70.883789, 55.178868 ], [ 71.191406, 54.136696 ], [ 72.246094, 54.367759 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.399414, 53.540307 ], [ 76.904297, 54.495568 ], [ 76.508789, 54.188155 ], [ 77.783203, 53.409532 ], [ 80.024414, 50.875311 ], [ 80.551758, 51.399206 ], [ 81.958008, 50.819818 ], [ 83.364258, 51.069017 ], [ 83.935547, 50.875311 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.561523, 49.696062 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 86.616211, 48.545705 ], [ 85.781250, 48.458352 ], [ 85.737305, 47.457809 ], [ 85.166016, 47.010226 ], [ 83.188477, 47.338823 ], [ 82.441406, 45.552525 ], [ 81.958008, 45.305803 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.165123 ], [ 80.200195, 42.908160 ], [ 80.244141, 42.358544 ], [ 80.112305, 42.130821 ], [ 78.530273, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.079351 ], [ 76.508789, 40.413496 ], [ 75.454102, 40.547200 ], [ 74.794922, 40.380028 ], [ 73.828125, 39.909736 ], [ 73.959961, 39.673370 ], [ 73.696289, 39.436193 ], [ 73.916016, 38.513788 ], [ 74.267578, 38.616870 ], [ 74.882812, 38.376115 ], [ 74.838867, 37.996163 ], [ 74.970703, 37.405074 ], [ 75.146484, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.889050 ], [ 77.827148, 35.496456 ], [ 78.925781, 34.307144 ], [ 78.793945, 33.504759 ], [ 79.189453, 32.990236 ], [ 79.189453, 32.472695 ], [ 78.442383, 32.620870 ], [ 78.750000, 31.503629 ], [ 79.716797, 30.864510 ], [ 81.123047, 30.183122 ], [ 81.518555, 30.410782 ], [ 82.309570, 30.107118 ], [ 83.320312, 29.458731 ], [ 83.891602, 29.305561 ], [ 84.243164, 28.844674 ], [ 85.034180, 28.652031 ], [ 85.825195, 28.188244 ], [ 86.967773, 27.955591 ], [ 88.110352, 27.877928 ], [ 88.725586, 28.071980 ], [ 88.857422, 27.098254 ], [ 89.736328, 26.706360 ], [ 90.395508, 26.863281 ], [ 91.230469, 26.824071 ], [ 92.021484, 26.824071 ], [ 92.109375, 27.449790 ], [ 91.713867, 27.761330 ], [ 92.504883, 27.877928 ], [ 93.427734, 28.652031 ], [ 94.570312, 29.267233 ], [ 95.405273, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.591797, 28.844674 ], [ 96.240234, 28.420391 ], [ 97.338867, 28.265682 ], [ 97.382812, 27.877928 ], [ 97.075195, 27.683528 ], [ 97.119141, 27.098254 ], [ 96.416016, 27.254630 ], [ 95.141602, 26.588527 ], [ 95.141602, 25.997550 ], [ 94.614258, 25.165173 ], [ 94.570312, 24.686952 ], [ 94.086914, 23.845650 ], [ 93.339844, 24.086589 ], [ 93.295898, 23.039298 ], [ 93.076172, 22.715390 ], [ 93.164062, 22.268764 ], [ 92.680664, 22.024546 ], [ 92.153320, 23.644524 ], [ 91.889648, 23.604262 ], [ 91.713867, 22.998852 ], [ 91.142578, 23.483401 ], [ 91.450195, 24.086589 ], [ 91.933594, 24.126702 ], [ 92.373047, 24.966140 ], [ 91.801758, 25.165173 ], [ 90.878906, 25.125393 ], [ 89.912109, 25.284438 ], [ 89.824219, 25.958045 ], [ 89.340820, 25.997550 ], [ 88.549805, 26.431228 ], [ 88.198242, 25.760320 ], [ 88.945312, 25.244696 ], [ 88.286133, 24.846565 ], [ 88.066406, 24.487149 ], [ 88.681641, 24.246965 ], [ 88.549805, 23.644524 ], [ 88.857422, 22.877440 ], [ 89.033203, 22.065278 ], [ 88.901367, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.055664, 20.756114 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.014768 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.876809 ], [ 80.024414, 15.114553 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.025966 ], [ 79.848633, 12.039321 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.596680, 8.885072 ], [ 75.761719, 11.307708 ], [ 75.410156, 11.781325 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.186678 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.371244 ], [ 71.191406, 20.756114 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.653320, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.159180, 23.684774 ], [ 67.456055, 23.926013 ], [ 67.148438, 24.647017 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.204941 ], [ 61.479492, 25.085599 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.720735 ], [ 56.953125, 26.980829 ], [ 56.513672, 27.137368 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.470573 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.566721 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.806174 ], [ 50.097656, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.955078, 30.297018 ], [ 48.559570, 29.916852 ], [ 47.988281, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.305561 ], [ 48.823242, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.098254 ], [ 50.141602, 26.706360 ], [ 50.229492, 26.273714 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.800781, 24.766785 ], [ 50.756836, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.204941 ], [ 51.372070, 24.607069 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.811523, 24.006326 ], [ 52.558594, 24.166802 ], [ 54.008789, 24.126702 ], [ 55.458984, 25.443275 ], [ 56.381836, 26.391870 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.878994 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 56.865234, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.765237 ], [ 58.710938, 23.563987 ], [ 59.458008, 22.674847 ], [ 59.809570, 22.512557 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.412162 ], [ 58.842773, 21.125498 ], [ 58.491211, 20.427013 ], [ 58.051758, 20.468189 ], [ 57.832031, 20.262197 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.216797, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.104087 ], [ 56.293945, 17.895114 ], [ 55.678711, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.930705 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.129883, 16.636192 ], [ 52.382812, 16.383391 ], [ 52.207031, 15.919074 ], [ 52.163086, 15.580711 ], [ 51.152344, 15.156974 ], [ 49.570312, 14.689881 ], [ 48.691406, 14.008696 ], [ 48.251953, 13.966054 ], [ 47.944336, 14.008696 ], [ 47.373047, 13.581921 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.282719 ], [ 45.395508, 13.025966 ], [ 45.131836, 12.940322 ], [ 45.000000, 12.683215 ], [ 44.516602, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.505859, 12.640338 ], [ 43.242188, 13.239945 ], [ 43.242188, 13.752725 ], [ 43.110352, 14.051331 ], [ 42.890625, 14.817371 ], [ 42.626953, 15.199386 ], [ 42.802734, 15.241790 ], [ 42.714844, 15.707663 ], [ 42.846680, 15.919074 ], [ 42.670898, 16.762468 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.811456 ], [ 41.220703, 18.687879 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.814453, 20.344627 ], [ 39.155273, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.593726 ], [ 38.496094, 23.684774 ], [ 38.012695, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.177734, 24.846565 ], [ 37.221680, 25.085599 ], [ 36.914062, 25.601902 ], [ 36.650391, 25.839449 ], [ 36.254883, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.343875 ], [ 34.936523, 29.496988 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.343065 ], [ 34.145508, 27.839076 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.431641, 29.840644 ], [ 32.343750, 29.764377 ], [ 32.739258, 28.690588 ], [ 33.354492, 27.683528 ], [ 34.101562, 26.155438 ], [ 34.804688, 25.045792 ], [ 35.683594, 23.926013 ], [ 35.507812, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.694336, 22.187405 ], [ 36.870117, 21.983801 ], [ 37.177734, 21.002471 ], [ 36.958008, 20.838278 ], [ 37.133789, 19.808054 ], [ 37.485352, 18.604601 ], [ 38.408203, 17.978733 ], [ 38.979492, 16.846605 ], [ 39.287109, 15.919074 ], [ 39.814453, 15.453680 ], [ 41.176758, 14.477234 ], [ 42.583008, 12.983148 ], [ 43.066406, 12.683215 ], [ 43.330078, 12.382928 ], [ 43.286133, 11.953349 ], [ 42.714844, 11.738302 ], [ 43.461914, 11.264612 ], [ 43.681641, 10.876465 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.571289, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.548828, 11.135287 ], [ 48.032227, 11.178402 ], [ 48.383789, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.946289, -3.513421 ], [ 37.749023, -3.513421 ], [ 37.705078, -3.118576 ], [ 33.925781, -0.966751 ], [ 30.761719, -1.010690 ], [ 29.838867, -1.450040 ], [ 29.575195, -1.362176 ], [ 29.575195, -0.571280 ], [ 29.838867, -0.219726 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.615223 ], [ 30.102539, 1.054628 ], [ 30.454102, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.157227, 2.196727 ], [ 30.761719, 2.328460 ], [ 30.849609, 3.513421 ], [ 29.970703, 4.171115 ], [ 29.707031, 4.609278 ], [ 29.179688, 4.390229 ], [ 28.696289, 4.434044 ], [ 28.432617, 4.302591 ], [ 27.993164, 4.390229 ], [ 27.377930, 5.222247 ], [ 27.026367, 5.134715 ], [ 25.664062, 5.266008 ], [ 25.268555, 5.178482 ], [ 25.136719, 4.915833 ], [ 24.785156, 4.915833 ], [ 24.433594, 5.090944 ], [ 23.291016, 4.609278 ], [ 22.851562, 4.696879 ], [ 22.719727, 4.653080 ], [ 22.412109, 4.039618 ], [ 21.665039, 4.214943 ], [ 20.917969, 4.302591 ], [ 20.302734, 4.696879 ], [ 19.467773, 5.047171 ], [ 18.940430, 4.696879 ], [ 18.544922, 4.214943 ], [ 18.457031, 3.513421 ], [ 17.797852, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.523438, 3.206333 ], [ 15.996094, 2.284551 ], [ 15.952148, 1.713612 ], [ 14.326172, 2.240640 ], [ 13.095703, 2.284551 ], [ 12.963867, 2.328460 ], [ 12.348633, 2.196727 ], [ 11.733398, 2.328460 ], [ 11.293945, 2.240640 ], [ 11.293945, 1.054628 ], [ 9.843750, 1.054628 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 7.470703, 4.390229 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.872048 ], [ 5.053711, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.527344, 5.353521 ], [ -1.054688, 5.003394 ], [ -1.977539, 4.696879 ], [ -2.856445, 5.003394 ], [ -3.515625, 5.047171 ], [ -3.515625, 35.389050 ], [ -2.592773, 35.173808 ], [ -2.153320, 35.173808 ], [ -1.230469, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.164062, 36.774092 ], [ 4.833984, 36.879621 ], [ 5.317383, 36.703660 ], [ 6.284180, 37.125286 ], [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.335224 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 11.030273, 37.090240 ], [ 11.118164, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.942383, 35.710838 ], [ 10.810547, 34.849875 ], [ 10.151367, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.095703, 32.879587 ], [ 13.930664, 32.694866 ], [ 15.249023, 32.249974 ], [ 15.732422, 31.391158 ], [ 16.611328, 31.165810 ], [ 18.017578, 30.751278 ], [ 19.072266, 30.259067 ], [ 19.555664, 30.524413 ], [ 20.039062, 30.977609 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.874023, 32.694866 ], [ 21.533203, 32.842674 ], [ 22.895508, 32.620870 ], [ 23.247070, 32.175612 ], [ 23.598633, 32.175612 ], [ 23.950195, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.180664, 31.578535 ], [ 26.499023, 31.578535 ], [ 28.916016, 30.864510 ], [ 29.663086, 31.203405 ], [ 30.102539, 31.466154 ], [ 30.981445, 31.541090 ], [ 31.684570, 31.428663 ], [ 31.948242, 30.939924 ], [ 32.211914, 31.240985 ], [ 33.002930, 31.015279 ], [ 33.793945, 30.977609 ], [ 34.277344, 31.203405 ], [ 34.541016, 31.541090 ], [ 34.497070, 31.615966 ], [ 34.760742, 32.063956 ], [ 34.936523, 32.842674 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.633208 ], [ 35.903320, 35.424868 ], [ 36.166992, 35.817813 ], [ 35.771484, 36.279707 ], [ 36.166992, 36.633162 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.809285 ], [ 34.013672, 36.208823 ], [ 32.519531, 36.102376 ], [ 31.684570, 36.633162 ], [ 30.629883, 36.668419 ], [ 30.410156, 36.244273 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.668419 ], [ 27.070312, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.993572 ], [ 26.191406, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.446947 ], [ 29.223633, 41.211722 ], [ 31.157227, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.530273, 42.032974 ], [ 35.156250, 42.032974 ], [ 36.914062, 41.343825 ], [ 38.364258, 40.946714 ], [ 39.506836, 41.112469 ], [ 40.385742, 41.013066 ], [ 41.572266, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.946289, 43.421009 ], [ 40.078125, 43.548548 ], [ 40.913086, 43.389082 ], [ 42.407227, 43.229195 ], [ 43.769531, 42.747012 ], [ 43.945312, 42.553080 ], [ 44.560547, 42.714732 ], [ 45.483398, 42.488302 ], [ 45.791016, 42.098222 ], [ 46.406250, 41.869561 ], [ 46.669922, 41.836828 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.603516, 41.804078 ], [ 49.130859, 41.277806 ], [ 49.614258, 40.580585 ], [ 50.097656, 40.513799 ], [ 50.405273, 40.245992 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.307181 ], [ 49.218750, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.833008, 36.949892 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.892196 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.876953, 40.613952 ], [ 54.755859, 40.946714 ], [ 54.008789, 41.541478 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.145570 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.514648, 42.779275 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.317383, 44.621754 ], [ 51.284180, 44.527843 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.398450 ], [ 53.041992, 45.243953 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.040182 ], [ 50.053711, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.076172, 47.754098 ], [ 47.329102, 47.724545 ], [ 46.450195, 48.400032 ], [ 47.065430, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.559570, 49.866317 ], [ 48.691406, 50.597186 ], [ 50.756836, 51.699800 ], [ 52.338867, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.611328, 51.261915 ], [ 59.985352, 51.971346 ], [ 60.908203, 52.456009 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.988337 ], [ 60.996094, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.342149 ], [ 65.654297, 54.597528 ], [ 68.159180, 54.977614 ], [ 69.082031, 55.379110 ] ], [ [ 23.818359, 8.667918 ], [ 24.565430, 8.233237 ], [ 23.906250, 8.624472 ], [ 23.818359, 8.667918 ] ] ], [ [ [ 34.584961, 35.675147 ], [ 33.881836, 35.245619 ], [ 34.013672, 34.994004 ], [ 33.002930, 34.560859 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.783203, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.584961, 35.675147 ] ] ], [ [ [ 23.686523, 35.710838 ], [ 24.257812, 35.353216 ], [ 25.004883, 35.424868 ], [ 25.751953, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.281501 ], [ 26.147461, 34.994004 ], [ 24.741211, 34.921971 ], [ 24.741211, 35.065973 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 25.883789, 59.601095 ], [ 26.938477, 59.445075 ], [ 27.993164, 59.467408 ], [ 28.125000, 59.310768 ], [ 27.421875, 58.722599 ], [ 27.729492, 57.797944 ], [ 27.290039, 57.468589 ], [ 27.773438, 57.255281 ], [ 27.861328, 56.752723 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.924586 ], [ 29.355469, 55.677584 ], [ 29.882812, 55.776573 ], [ 30.893555, 55.553495 ], [ 30.981445, 55.078367 ], [ 30.761719, 54.800685 ], [ 31.376953, 54.162434 ], [ 31.772461, 53.981935 ], [ 31.728516, 53.800651 ], [ 32.387695, 53.618579 ], [ 32.695312, 53.357109 ], [ 32.299805, 53.120405 ], [ 31.508789, 53.173119 ], [ 31.289062, 53.067627 ], [ 31.552734, 52.749594 ], [ 31.772461, 52.106505 ], [ 32.167969, 52.052490 ], [ 32.431641, 52.295042 ], [ 32.695312, 52.241256 ], [ 33.750000, 52.321911 ], [ 34.409180, 51.781436 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.261915 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.764259 ], [ 35.375977, 50.569283 ], [ 36.606445, 50.233152 ], [ 37.397461, 50.373496 ], [ 38.012695, 49.922935 ], [ 38.583984, 49.922935 ], [ 40.078125, 49.610710 ], [ 40.078125, 49.296472 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.224673 ], [ 39.726562, 47.901614 ], [ 38.759766, 47.813155 ], [ 38.276367, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.010226 ], [ 36.782227, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.980469, 46.286224 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.518555, 45.460131 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.559163 ], [ 33.530273, 45.026950 ], [ 32.475586, 45.336702 ], [ 32.651367, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.346928 ], [ 31.684570, 46.709736 ], [ 30.761719, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.619141, 45.305803 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.809122 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.585444 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.607228 ], [ 29.003906, 41.310824 ], [ 28.828125, 41.046217 ], [ 27.641602, 41.013066 ], [ 26.367188, 40.145289 ], [ 26.059570, 40.613952 ], [ 26.059570, 40.813809 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.730469, 40.680638 ], [ 24.389648, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.334961, 39.943436 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.245992 ], [ 22.851562, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.983398, 38.959409 ], [ 23.510742, 38.513788 ], [ 24.038086, 38.203655 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.422852, 37.405074 ], [ 22.763672, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.421282 ], [ 21.665039, 36.844461 ], [ 21.313477, 37.649034 ], [ 21.137695, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.170898, 39.639538 ], [ 19.995117, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.423828, 41.409776 ], [ 19.555664, 41.705729 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 17.490234, 42.843751 ], [ 16.918945, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.941406, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.974609, 44.809122 ], [ 13.666992, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.612305, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.128906, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.455888 ], [ 3.032227, 41.902277 ], [ 2.109375, 41.211722 ], [ 0.791016, 41.013066 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.131836, 38.754083 ], [ 0.000000, 38.651198 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.439974 ], [ -2.153320, 36.668419 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.406250, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 3.295898, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.954102, 53.748711 ], [ 8.129883, 53.514185 ], [ 8.789062, 54.007769 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.952386 ], [ 8.129883, 55.528631 ], [ 8.085938, 56.535258 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.160078 ], [ 9.755859, 57.444949 ], [ 10.590820, 57.727619 ], [ 10.546875, 57.207710 ], [ 10.239258, 56.897004 ], [ 10.371094, 56.607885 ], [ 10.898438, 56.462490 ], [ 10.678711, 56.072035 ], [ 10.371094, 56.194481 ], [ 9.667969, 55.478853 ], [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.188155 ], [ 12.524414, 54.470038 ], [ 13.666992, 54.085173 ], [ 14.106445, 53.748711 ], [ 14.809570, 54.059388 ], [ 17.622070, 54.851315 ], [ 18.632812, 54.673831 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.418930 ], [ 20.874023, 54.316523 ], [ 22.719727, 54.316523 ], [ 22.631836, 54.572062 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.002826 ], [ 21.269531, 55.178868 ], [ 21.049805, 56.022948 ], [ 21.093750, 56.776808 ], [ 21.577148, 57.421294 ], [ 22.543945, 57.751076 ], [ 23.334961, 57.016814 ], [ 24.125977, 57.016814 ], [ 24.301758, 57.797944 ], [ 24.433594, 58.378679 ], [ 24.082031, 58.263287 ], [ 23.422852, 58.608334 ], [ 23.334961, 59.175928 ], [ 24.609375, 59.467408 ], [ 25.883789, 59.601095 ] ] ], [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.392578, 56.121060 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.354135 ], [ 10.898438, 55.776573 ], [ 12.392578, 56.121060 ] ] ], [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.565226 ], [ 29.399414, 69.162558 ], [ 28.608398, 69.068563 ], [ 28.432617, 68.366801 ], [ 29.970703, 67.692771 ], [ 29.047852, 66.947274 ], [ 30.234375, 65.802776 ], [ 29.531250, 64.942160 ], [ 30.454102, 64.206377 ], [ 30.058594, 63.548552 ], [ 31.508789, 62.875188 ], [ 31.157227, 62.349609 ], [ 28.081055, 60.500525 ], [ 26.235352, 60.413852 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.456055, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.312500, 65.531171 ], [ 23.906250, 66.000150 ], [ 22.192383, 65.730626 ], [ 21.225586, 65.016506 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.333540 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.086763 ], [ 17.885742, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.864258, 56.096556 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.963867, 55.354135 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 10.371094, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.932617, 62.613562 ], [ 8.569336, 63.450509 ], [ 10.546875, 64.491725 ], [ 12.348633, 65.874725 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.204102, 69.824471 ], [ 21.401367, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.565430, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 17.006836, 80.050460 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.739618 ], [ 13.183594, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.161133, 79.671438 ], [ 15.512695, 80.012423 ], [ 17.006836, 80.050460 ] ] ], [ [ [ 22.939453, 80.654174 ], [ 25.444336, 80.408388 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.520657 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.478516, 80.596909 ], [ 21.928711, 80.356995 ], [ 22.939453, 80.654174 ] ] ], [ [ [ -1.977539, 57.680660 ], [ -2.241211, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.065430, 55.899956 ], [ -1.098633, 54.622978 ], [ -0.439453, 54.470038 ], [ 0.000000, 53.670680 ], [ 0.483398, 52.935397 ], [ 1.669922, 52.749594 ], [ 1.582031, 52.106505 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.571289, 50.764259 ], [ -0.791016, 50.764259 ], [ -2.504883, 50.485474 ], [ -2.944336, 50.708634 ], [ -3.515625, 50.289339 ], [ -3.515625, 51.399206 ], [ -3.427734, 51.426614 ], [ -3.515625, 51.426614 ], [ -3.515625, 53.435719 ], [ -3.076172, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.515625, 54.521081 ], [ -3.515625, 57.633640 ], [ -3.076172, 57.680660 ], [ -1.977539, 57.680660 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.741211, 77.851100 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.401367, 77.934055 ], [ 20.830078, 78.251387 ], [ 22.895508, 78.455425 ] ] ], [ [ [ 80.156250, 9.838979 ], [ 80.859375, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.650391, 6.489983 ], [ 81.210938, 6.184246 ], [ 80.332031, 5.965754 ], [ 79.892578, 6.751896 ], [ 79.716797, 8.189742 ], [ 80.156250, 9.838979 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ], [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ -2.988281, 58.631217 ], [ -3.515625, 58.124320 ], [ -3.515625, 58.608334 ], [ -2.988281, 58.631217 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.370117, 77.702234 ], [ 106.083984, 77.370301 ], [ 104.721680, 77.127825 ], [ 106.962891, 76.970245 ], [ 107.226562, 76.475773 ], [ 108.149414, 76.720223 ], [ 111.093750, 76.710125 ], [ 113.334961, 76.226907 ], [ 114.125977, 75.845169 ], [ 113.906250, 75.331158 ], [ 112.763672, 75.027664 ], [ 110.170898, 74.472903 ], [ 109.379883, 74.176073 ], [ 110.654297, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.027344, 73.971078 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.590586 ], [ 115.576172, 73.751205 ], [ 118.784180, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.222656, 72.971189 ], [ 123.266602, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.035419 ], [ 129.067383, 72.395706 ], [ 128.452148, 71.978988 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.842539 ], [ 133.857422, 71.385142 ], [ 135.571289, 71.649833 ], [ 137.504883, 71.343013 ], [ 138.251953, 71.622143 ], [ 139.877930, 71.483086 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.501953, 72.195246 ], [ 150.336914, 71.608283 ], [ 152.973633, 70.844673 ], [ 157.016602, 71.031249 ], [ 158.994141, 70.859087 ], [ 159.829102, 70.451508 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.290039, 69.641804 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.580563 ], [ 169.584961, 68.688521 ], [ 170.815430, 69.005675 ], [ 170.024414, 69.657086 ], [ 170.463867, 70.095529 ], [ 173.627930, 69.824471 ], [ 175.737305, 69.869892 ], [ 178.593750, 69.395783 ], [ 180.000000, 68.958391 ], [ 182.460938, 68.204212 ], [ 183.515625, 67.809245 ], [ 183.515625, 65.403445 ], [ 182.768555, 65.512963 ], [ 181.625977, 65.385147 ], [ 181.098633, 65.748683 ], [ 181.318359, 66.107170 ], [ 180.131836, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.725586, 64.529548 ], [ 177.407227, 64.605038 ], [ 178.330078, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.384766, 62.975198 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.326948 ], [ 170.332031, 59.888937 ], [ 168.881836, 60.565379 ], [ 166.289062, 59.778522 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.734253 ], [ 163.520508, 59.866883 ], [ 163.212891, 59.220934 ], [ 162.026367, 58.240164 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.081055, 56.170023 ], [ 162.114258, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.356445, 54.342149 ], [ 160.004883, 53.199452 ], [ 158.510742, 52.961875 ], [ 158.247070, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.401367, 51.699800 ], [ 156.005859, 53.146770 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.821355 ], [ 158.378906, 58.054632 ], [ 160.136719, 59.310768 ], [ 161.894531, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.487305, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.756395 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.881942 ], [ 151.259766, 58.790978 ], [ 151.347656, 59.512029 ], [ 149.765625, 59.645540 ], [ 148.535156, 59.153403 ], [ 145.502930, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.823242, 54.265224 ], [ 139.921875, 54.188155 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.234407 ], [ 140.493164, 50.035974 ], [ 140.053711, 48.458352 ], [ 138.559570, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.389082 ], [ 133.549805, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.934977 ], [ 129.682617, 41.607228 ], [ 129.726562, 40.880295 ], [ 129.199219, 40.647304 ], [ 128.627930, 40.178873 ], [ 127.968750, 40.010787 ], [ 127.529297, 39.740986 ], [ 127.485352, 39.334297 ], [ 127.397461, 39.198205 ], [ 127.792969, 39.061849 ], [ 128.364258, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.462891, 36.774092 ], [ 129.462891, 35.639441 ], [ 129.111328, 35.065973 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.488448 ], [ 126.474609, 34.379713 ], [ 126.386719, 34.921971 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.738884 ], [ 126.870117, 36.879621 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.926868 ], [ 125.551758, 37.753344 ], [ 125.288086, 37.683820 ], [ 125.244141, 37.857507 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.244141, 38.651198 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.332031, 39.537940 ], [ 124.760742, 39.673370 ], [ 124.277344, 39.943436 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.069336, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.740986 ], [ 122.167969, 40.413496 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.580585 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.198205 ], [ 117.553711, 38.719805 ], [ 118.081055, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.805664, 37.857507 ], [ 121.728516, 37.474858 ], [ 122.343750, 37.439974 ], [ 122.519531, 36.914764 ], [ 121.113281, 36.633162 ], [ 120.629883, 36.102376 ], [ 119.663086, 35.603719 ], [ 119.135742, 34.921971 ], [ 120.234375, 34.343436 ], [ 120.629883, 33.358062 ], [ 121.245117, 32.472695 ], [ 121.904297, 31.690782 ], [ 121.904297, 30.939924 ], [ 121.245117, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.948242, 28.998532 ], [ 121.684570, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.720735 ], [ 118.652344, 24.527135 ], [ 115.883789, 22.796439 ], [ 114.785156, 22.674847 ], [ 114.169922, 22.228090 ], [ 113.818359, 22.553147 ], [ 113.247070, 22.065278 ], [ 111.840820, 21.534847 ], [ 110.786133, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.907227, 20.262197 ], [ 109.643555, 21.002471 ], [ 109.863281, 21.412162 ], [ 108.544922, 21.698265 ], [ 108.061523, 21.534847 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.678293 ], [ 108.281250, 16.088042 ], [ 108.896484, 15.284185 ], [ 109.335938, 13.410994 ], [ 109.204102, 11.652236 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.391602, 9.535749 ], [ 105.161133, 8.581021 ], [ 104.809570, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.617418 ], [ 103.095703, 11.135287 ], [ 102.568359, 12.168226 ], [ 101.689453, 12.640338 ], [ 100.854492, 12.640338 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.140625, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.887695, 9.188870 ], [ 100.283203, 8.276727 ], [ 100.458984, 7.449624 ], [ 101.030273, 6.839170 ], [ 101.645508, 6.751896 ], [ 102.128906, 6.227934 ], [ 102.392578, 6.140555 ], [ 102.963867, 5.528511 ], [ 103.403320, 4.872048 ], [ 103.447266, 4.171115 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.309766 ], [ 100.327148, 6.053161 ], [ 100.107422, 6.446318 ], [ 99.711914, 6.839170 ], [ 99.536133, 7.362467 ], [ 98.525391, 8.363693 ], [ 98.349609, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.261719, 8.971897 ], [ 98.569336, 9.925566 ], [ 98.437500, 10.660608 ], [ 98.745117, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.525391, 13.111580 ], [ 98.085938, 13.624633 ], [ 97.778320, 14.817371 ], [ 97.602539, 16.088042 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.790039, 15.792254 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.266728 ], [ 94.306641, 18.229351 ], [ 93.559570, 19.352611 ], [ 93.647461, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.406250, 22.755921 ], [ 90.483398, 22.796439 ], [ 90.571289, 22.390714 ], [ 90.263672, 21.820708 ], [ 89.868164, 22.024546 ], [ 89.692383, 21.861499 ], [ 89.033203, 22.065278 ], [ 88.901367, 21.698265 ], [ 88.198242, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.055664, 20.756114 ], [ 86.484375, 20.138470 ], [ 85.078125, 19.476950 ], [ 83.935547, 18.312811 ], [ 83.188477, 17.685895 ], [ 82.177734, 17.014768 ], [ 82.177734, 16.551962 ], [ 80.771484, 15.961329 ], [ 80.332031, 15.876809 ], [ 80.024414, 15.114553 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.025966 ], [ 79.848633, 12.039321 ], [ 79.848633, 10.358151 ], [ 79.321289, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.232249 ], [ 78.266602, 8.928487 ], [ 77.958984, 8.233237 ], [ 77.519531, 7.972198 ], [ 76.596680, 8.885072 ], [ 75.761719, 11.307708 ], [ 75.410156, 11.781325 ], [ 74.882812, 12.726084 ], [ 74.443359, 14.604847 ], [ 73.520508, 16.003576 ], [ 72.817383, 19.186678 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.371244 ], [ 71.191406, 20.756114 ], [ 70.488281, 20.879343 ], [ 69.169922, 22.105999 ], [ 69.653320, 22.431340 ], [ 69.345703, 22.836946 ], [ 68.159180, 23.684774 ], [ 67.456055, 23.926013 ], [ 67.148438, 24.647017 ], [ 66.357422, 25.443275 ], [ 64.511719, 25.244696 ], [ 62.885742, 25.204941 ], [ 61.479492, 25.085599 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.720735 ], [ 56.953125, 26.980829 ], [ 56.513672, 27.137368 ], [ 55.722656, 26.980829 ], [ 54.711914, 26.470573 ], [ 53.481445, 26.824071 ], [ 52.470703, 27.566721 ], [ 51.503906, 27.877928 ], [ 50.844727, 28.806174 ], [ 50.097656, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.955078, 30.297018 ], [ 48.559570, 29.916852 ], [ 47.988281, 29.993002 ], [ 48.164062, 29.535230 ], [ 48.076172, 29.305561 ], [ 48.823242, 27.683528 ], [ 49.306641, 27.449790 ], [ 49.482422, 27.098254 ], [ 50.141602, 26.706360 ], [ 50.229492, 26.273714 ], [ 50.097656, 25.958045 ], [ 50.229492, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.800781, 24.766785 ], [ 50.756836, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.591797, 25.204941 ], [ 51.372070, 24.607069 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.811523, 24.006326 ], [ 52.558594, 24.166802 ], [ 54.008789, 24.126702 ], [ 55.458984, 25.443275 ], [ 56.381836, 26.391870 ], [ 56.469727, 26.313113 ], [ 56.381836, 25.878994 ], [ 56.250000, 25.720735 ], [ 56.381836, 24.926295 ], [ 56.865234, 24.246965 ], [ 57.392578, 23.885838 ], [ 58.139648, 23.765237 ], [ 58.710938, 23.563987 ], [ 59.458008, 22.674847 ], [ 59.809570, 22.512557 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.412162 ], [ 58.842773, 21.125498 ], [ 58.491211, 20.427013 ], [ 58.051758, 20.468189 ], [ 57.832031, 20.262197 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.216797, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.104087 ], [ 56.293945, 17.895114 ], [ 55.678711, 17.895114 ], [ 55.283203, 17.644022 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.930705 ], [ 54.228516, 17.056785 ], [ 53.569336, 16.720385 ], [ 53.129883, 16.636192 ], [ 52.382812, 16.383391 ], [ 52.207031, 15.919074 ], [ 52.163086, 15.580711 ], [ 51.152344, 15.156974 ], [ 49.570312, 14.689881 ], [ 48.691406, 14.008696 ], [ 48.251953, 13.966054 ], [ 47.944336, 14.008696 ], [ 47.373047, 13.581921 ], [ 46.713867, 13.410994 ], [ 45.615234, 13.282719 ], [ 45.395508, 13.025966 ], [ 45.131836, 12.940322 ], [ 45.000000, 12.683215 ], [ 44.516602, 12.726084 ], [ 44.165039, 12.597455 ], [ 43.505859, 12.640338 ], [ 43.242188, 13.239945 ], [ 43.242188, 13.752725 ], [ 43.110352, 14.051331 ], [ 42.890625, 14.817371 ], [ 42.626953, 15.199386 ], [ 42.802734, 15.241790 ], [ 42.714844, 15.707663 ], [ 42.846680, 15.919074 ], [ 42.670898, 16.762468 ], [ 42.363281, 17.056785 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.811456 ], [ 41.220703, 18.687879 ], [ 40.957031, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.814453, 20.344627 ], [ 39.155273, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.593726 ], [ 38.496094, 23.684774 ], [ 38.012695, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.177734, 24.846565 ], [ 37.221680, 25.085599 ], [ 36.914062, 25.601902 ], [ 36.650391, 25.839449 ], [ 36.254883, 26.588527 ], [ 35.112305, 28.071980 ], [ 34.628906, 28.071980 ], [ 34.936523, 29.343875 ], [ 34.936523, 29.496988 ], [ 34.628906, 29.113775 ], [ 34.409180, 28.343065 ], [ 34.145508, 27.839076 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.431641, 29.840644 ], [ 32.343750, 29.764377 ], [ 32.739258, 28.690588 ], [ 33.354492, 27.683528 ], [ 34.101562, 26.155438 ], [ 34.804688, 25.045792 ], [ 35.683594, 23.926013 ], [ 35.507812, 23.765237 ], [ 35.507812, 23.120154 ], [ 36.694336, 22.187405 ], [ 36.870117, 21.983801 ], [ 37.177734, 21.002471 ], [ 36.958008, 20.838278 ], [ 37.133789, 19.808054 ], [ 37.485352, 18.604601 ], [ 38.408203, 17.978733 ], [ 38.979492, 16.846605 ], [ 39.287109, 15.919074 ], [ 39.814453, 15.453680 ], [ 41.176758, 14.477234 ], [ 42.583008, 12.983148 ], [ 43.066406, 12.683215 ], [ 43.330078, 12.382928 ], [ 43.286133, 11.953349 ], [ 42.714844, 11.738302 ], [ 43.461914, 11.264612 ], [ 43.681641, 10.876465 ], [ 44.121094, 10.444598 ], [ 44.604492, 10.444598 ], [ 45.571289, 10.703792 ], [ 46.625977, 10.833306 ], [ 47.548828, 11.135287 ], [ 48.032227, 11.178402 ], [ 48.383789, 11.393879 ], [ 49.262695, 11.436955 ], [ 50.273438, 11.695273 ], [ 50.712891, 12.039321 ], [ 51.108398, 12.039321 ], [ 51.064453, 10.660608 ], [ 50.844727, 10.271681 ], [ 50.537109, 9.188870 ], [ 49.438477, 6.795535 ], [ 48.603516, 5.353521 ], [ 47.724609, 4.214943 ], [ 46.582031, 2.855263 ], [ 45.571289, 2.064982 ], [ 44.077148, 1.054628 ], [ 43.154297, 0.307616 ], [ 42.890625, 0.000000 ], [ 42.055664, -0.922812 ], [ 41.791992, -1.450040 ], [ 41.572266, -1.669686 ], [ 40.869141, -2.064982 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.591889 ], [ 40.122070, -3.294082 ], [ 39.946289, -3.513421 ], [ 10.634766, -3.513421 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.142502 ], [ 9.667969, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.964844, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.477856 ], [ 8.481445, 4.784469 ], [ 7.470703, 4.390229 ], [ 7.075195, 4.477856 ], [ 6.679688, 4.258768 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.872048 ], [ 5.053711, 5.615986 ], [ 4.306641, 6.271618 ], [ 2.680664, 6.271618 ], [ 1.845703, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.571289, 6.926427 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.483398, 8.667918 ], [ 0.351562, 9.449062 ], [ 0.351562, 10.185187 ], [ 0.000000, 10.660608 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.043945, 11.005904 ], [ 0.922852, 11.005904 ], [ 1.230469, 11.092166 ], [ 1.450195, 11.566144 ], [ 1.933594, 11.652236 ], [ 2.153320, 11.953349 ], [ 2.197266, 12.640338 ], [ 1.010742, 12.854649 ], [ 1.010742, 13.325485 ], [ 0.439453, 14.008696 ], [ 0.307617, 14.434680 ], [ 0.395508, 14.944785 ], [ 1.010742, 14.987240 ], [ 1.406250, 15.326572 ], [ 2.768555, 15.411319 ], [ 3.647461, 15.580711 ], [ 3.735352, 16.172473 ], [ 4.262695, 16.846605 ], [ 4.262695, 19.145168 ], [ 3.164062, 19.062118 ], [ 3.164062, 19.683970 ], [ 2.065430, 20.138470 ], [ 1.845703, 20.591652 ], [ 0.000000, 21.779905 ], [ -3.515625, 24.086589 ], [ -3.515625, 31.653381 ], [ -3.076172, 31.728167 ], [ -2.636719, 32.101190 ], [ -1.318359, 32.249974 ], [ -1.142578, 32.657876 ], [ -1.406250, 32.879587 ], [ -1.713867, 33.906896 ], [ -1.801758, 34.524661 ], [ -2.153320, 35.173808 ], [ -1.230469, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.960223 ], [ 0.483398, 36.315125 ], [ 1.450195, 36.597889 ], [ 3.164062, 36.774092 ], [ 4.833984, 36.879621 ], [ 5.317383, 36.703660 ], [ 6.284180, 37.125286 ], [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.335224 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 11.030273, 37.090240 ], [ 11.118164, 36.914764 ], [ 10.590820, 36.421282 ], [ 10.590820, 35.960223 ], [ 10.942383, 35.710838 ], [ 10.810547, 34.849875 ], [ 10.151367, 34.343436 ], [ 10.327148, 33.797409 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.469727, 33.137551 ], [ 12.656250, 32.805745 ], [ 13.095703, 32.879587 ], [ 13.930664, 32.694866 ], [ 15.249023, 32.249974 ], [ 15.732422, 31.391158 ], [ 16.611328, 31.165810 ], [ 18.017578, 30.751278 ], [ 19.072266, 30.259067 ], [ 19.555664, 30.524413 ], [ 20.039062, 30.977609 ], [ 19.819336, 31.765537 ], [ 20.126953, 32.249974 ], [ 20.874023, 32.694866 ], [ 21.533203, 32.842674 ], [ 22.895508, 32.620870 ], [ 23.247070, 32.175612 ], [ 23.598633, 32.175612 ], [ 23.950195, 32.026706 ], [ 24.916992, 31.914868 ], [ 25.180664, 31.578535 ], [ 26.499023, 31.578535 ], [ 28.916016, 30.864510 ], [ 29.663086, 31.203405 ], [ 30.102539, 31.466154 ], [ 30.981445, 31.541090 ], [ 31.684570, 31.428663 ], [ 31.948242, 30.939924 ], [ 32.211914, 31.240985 ], [ 33.002930, 31.015279 ], [ 33.793945, 30.977609 ], [ 34.277344, 31.203405 ], [ 34.541016, 31.541090 ], [ 34.497070, 31.615966 ], [ 34.760742, 32.063956 ], [ 34.936523, 32.842674 ], [ 35.463867, 33.906896 ], [ 35.991211, 34.633208 ], [ 35.903320, 35.424868 ], [ 36.166992, 35.817813 ], [ 35.771484, 36.279707 ], [ 36.166992, 36.633162 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.809285 ], [ 34.013672, 36.208823 ], [ 32.519531, 36.102376 ], [ 31.684570, 36.633162 ], [ 30.629883, 36.668419 ], [ 30.410156, 36.244273 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.668419 ], [ 27.070312, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.993572 ], [ 26.191406, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.446947 ], [ 29.223633, 41.211722 ], [ 31.157227, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.530273, 42.032974 ], [ 35.156250, 42.032974 ], [ 36.914062, 41.343825 ], [ 38.364258, 40.946714 ], [ 39.506836, 41.112469 ], [ 40.385742, 41.013066 ], [ 41.572266, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.440430, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.341797, 43.133061 ], [ 39.946289, 43.421009 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.694336, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.225453 ], [ 37.661133, 46.649436 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.249407 ], [ 38.232422, 47.100045 ], [ 37.441406, 47.010226 ], [ 36.782227, 46.709736 ], [ 35.815430, 46.649436 ], [ 34.980469, 46.286224 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.398450 ], [ 36.518555, 45.460131 ], [ 36.342773, 45.120053 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.370987 ], [ 33.310547, 44.559163 ], [ 33.530273, 45.026950 ], [ 32.475586, 45.336702 ], [ 32.651367, 45.521744 ], [ 33.574219, 45.859412 ], [ 33.310547, 46.073231 ], [ 31.728516, 46.346928 ], [ 31.684570, 46.709736 ], [ 30.761719, 46.589069 ], [ 30.366211, 46.042736 ], [ 29.619141, 45.305803 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.809122 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.585444 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.607228 ], [ 29.003906, 41.310824 ], [ 28.828125, 41.046217 ], [ 27.641602, 41.013066 ], [ 26.367188, 40.145289 ], [ 26.059570, 40.613952 ], [ 26.059570, 40.813809 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.730469, 40.680638 ], [ 24.389648, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.334961, 39.943436 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.245992 ], [ 22.851562, 39.673370 ], [ 23.334961, 39.198205 ], [ 22.983398, 38.959409 ], [ 23.510742, 38.513788 ], [ 24.038086, 38.203655 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.422852, 37.405074 ], [ 22.763672, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.421282 ], [ 21.665039, 36.844461 ], [ 21.313477, 37.649034 ], [ 21.137695, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.170898, 39.639538 ], [ 19.995117, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.423828, 41.409776 ], [ 19.555664, 41.705729 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 17.490234, 42.843751 ], [ 16.918945, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.161133, 44.245199 ], [ 15.380859, 44.308127 ], [ 14.941406, 44.746733 ], [ 14.897461, 45.089036 ], [ 14.238281, 45.243953 ], [ 13.974609, 44.809122 ], [ 13.666992, 45.151053 ], [ 13.666992, 45.490946 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.348633, 45.367584 ], [ 12.392578, 44.871443 ], [ 12.260742, 44.590467 ], [ 12.612305, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.018555, 42.747012 ], [ 15.161133, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.908203, 41.541478 ], [ 17.534180, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.500977, 40.178873 ], [ 18.281250, 39.808536 ], [ 17.753906, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.808536 ], [ 17.182617, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.655273, 38.856820 ], [ 16.083984, 37.996163 ], [ 15.688477, 37.892196 ], [ 15.688477, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.127930, 38.959409 ], [ 15.424805, 40.044438 ], [ 14.985352, 40.178873 ], [ 14.721680, 40.613952 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.875977, 41.244772 ], [ 12.128906, 41.705729 ], [ 11.206055, 42.358544 ], [ 10.502930, 42.940339 ], [ 10.195312, 43.929550 ], [ 9.711914, 44.024422 ], [ 8.876953, 44.370987 ], [ 8.437500, 44.245199 ], [ 7.866211, 43.771094 ], [ 7.426758, 43.707594 ], [ 6.547852, 43.133061 ], [ 4.570312, 43.389082 ], [ 3.120117, 43.068888 ], [ 2.988281, 42.455888 ], [ 3.032227, 41.902277 ], [ 2.109375, 41.211722 ], [ 0.791016, 41.013066 ], [ 0.703125, 40.680638 ], [ 0.087891, 40.111689 ], [ -0.263672, 39.300299 ], [ 0.000000, 38.891033 ], [ 0.131836, 38.754083 ], [ 0.000000, 38.651198 ], [ -0.483398, 38.307181 ], [ -0.703125, 37.649034 ], [ -1.450195, 37.439974 ], [ -2.153320, 36.668419 ], [ -3.515625, 36.668419 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.406250, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.241211, 47.070122 ], [ -2.944336, 47.576526 ], [ -3.515625, 47.724545 ], [ -3.515625, 48.864715 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.632909 ], [ -1.933594, 49.781264 ], [ -1.010742, 49.353756 ], [ 0.000000, 49.667628 ], [ 1.318359, 50.120578 ], [ 1.625977, 50.958427 ], [ 3.295898, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.064453, 53.514185 ], [ 6.899414, 53.488046 ], [ 7.119141, 53.696706 ], [ 7.954102, 53.748711 ], [ 8.129883, 53.514185 ], [ 8.789062, 54.007769 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.952386 ], [ 8.129883, 55.528631 ], [ 8.085938, 56.535258 ], [ 8.525391, 57.112385 ], [ 9.404297, 57.160078 ], [ 9.755859, 57.444949 ], [ 10.590820, 57.727619 ], [ 10.546875, 57.207710 ], [ 10.239258, 56.897004 ], [ 10.371094, 56.607885 ], [ 10.898438, 56.462490 ], [ 10.678711, 56.072035 ], [ 10.371094, 56.194481 ], [ 9.667969, 55.478853 ], [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.188155 ], [ 12.524414, 54.470038 ], [ 13.666992, 54.085173 ], [ 14.106445, 53.748711 ], [ 14.809570, 54.059388 ], [ 17.622070, 54.851315 ], [ 18.632812, 54.673831 ], [ 18.676758, 54.444492 ], [ 19.643555, 54.418930 ], [ 19.907227, 54.876607 ], [ 21.269531, 55.178868 ], [ 21.049805, 56.022948 ], [ 21.093750, 56.776808 ], [ 21.577148, 57.421294 ], [ 22.543945, 57.751076 ], [ 23.334961, 57.016814 ], [ 24.125977, 57.016814 ], [ 24.433594, 58.378679 ], [ 24.082031, 58.263287 ], [ 23.422852, 58.608334 ], [ 23.334961, 59.175928 ], [ 24.609375, 59.467408 ], [ 25.883789, 59.601095 ], [ 26.938477, 59.445075 ], [ 27.993164, 59.467408 ], [ 29.135742, 60.020952 ], [ 28.081055, 60.500525 ], [ 26.235352, 60.413852 ], [ 24.477539, 60.064840 ], [ 22.851562, 59.844815 ], [ 22.280273, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.533203, 61.710706 ], [ 21.049805, 62.613562 ], [ 21.533203, 63.194018 ], [ 22.456055, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.312500, 65.531171 ], [ 23.906250, 66.000150 ], [ 22.192383, 65.730626 ], [ 21.225586, 65.016506 ], [ 21.357422, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.333540 ], [ 17.841797, 60.630102 ], [ 18.808594, 60.086763 ], [ 17.885742, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.435547, 57.040730 ], [ 15.864258, 56.096556 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.963867, 55.354135 ], [ 12.612305, 56.316537 ], [ 11.777344, 57.444949 ], [ 11.030273, 58.859224 ], [ 10.371094, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 5.009766, 61.980267 ], [ 5.932617, 62.613562 ], [ 8.569336, 63.450509 ], [ 10.546875, 64.491725 ], [ 12.348633, 65.874725 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.204102, 69.824471 ], [ 21.401367, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.565430, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.565226 ], [ 32.124023, 69.900118 ], [ 33.793945, 69.302794 ], [ 36.518555, 69.068563 ], [ 40.297852, 67.925140 ], [ 41.044922, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.034180, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.892680 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.840668 ], [ 37.133789, 64.339908 ], [ 36.562500, 64.755390 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.529548 ], [ 40.429688, 64.755390 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.208984, 67.958148 ], [ 43.461914, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.571289, 67.558948 ], [ 45.571289, 67.016009 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.878345 ], [ 48.120117, 67.525373 ], [ 50.229492, 67.991108 ], [ 53.701172, 68.863517 ], [ 54.492188, 68.800041 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.089709 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.285651 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.907227, 69.240579 ], [ 68.510742, 68.089709 ], [ 69.169922, 68.608521 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.349339 ], [ 66.928711, 69.457554 ], [ 67.280273, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.708984, 71.031249 ], [ 68.554688, 71.938158 ], [ 69.213867, 72.842021 ], [ 69.960938, 73.035419 ], [ 72.597656, 72.777081 ], [ 72.817383, 72.222101 ], [ 71.850586, 71.413177 ], [ 72.465820, 71.088305 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.256836, 67.742759 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.058594, 67.759398 ], [ 74.487305, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.627197 ], [ 73.081055, 71.441171 ], [ 74.882812, 72.114445 ], [ 74.663086, 72.829052 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.893555, 71.869909 ], [ 77.563477, 72.262310 ], [ 79.672852, 72.315785 ], [ 81.518555, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 82.265625, 73.849286 ], [ 84.638672, 73.800318 ], [ 86.835938, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.639536 ], [ 92.900391, 75.769747 ], [ 93.251953, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.679688, 75.920199 ], [ 98.920898, 76.444907 ], [ 100.766602, 76.434604 ], [ 101.030273, 76.860810 ], [ 101.997070, 77.283532 ], [ 104.370117, 77.702234 ] ], [ [ 23.818359, 8.667918 ], [ 24.565430, 8.233237 ], [ 23.906250, 8.624472 ], [ 23.818359, 8.667918 ] ], [ [ 51.196289, 47.040182 ], [ 50.053711, 46.619261 ], [ 49.086914, 46.407564 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.592773, 43.644026 ], [ 47.504883, 42.972502 ], [ 49.130859, 41.277806 ], [ 49.614258, 40.580585 ], [ 50.097656, 40.513799 ], [ 50.405273, 40.245992 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.061849 ], [ 48.867188, 38.822591 ], [ 48.867188, 38.307181 ], [ 49.218750, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.250977, 36.703660 ], [ 53.833008, 36.949892 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.892196 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.044438 ], [ 52.910156, 40.880295 ], [ 53.876953, 40.613952 ], [ 54.755859, 40.946714 ], [ 54.008789, 41.541478 ], [ 53.701172, 42.130821 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.145570 ], [ 52.426758, 42.032974 ], [ 52.690430, 42.455888 ], [ 52.514648, 42.779275 ], [ 51.328125, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.361328, 44.276671 ], [ 50.317383, 44.621754 ], [ 51.284180, 44.527843 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.398450 ], [ 53.041992, 45.243953 ], [ 53.217773, 46.225453 ], [ 53.041992, 46.860191 ], [ 52.031250, 46.800059 ], [ 51.196289, 47.040182 ] ] ], [ [ [ 117.114258, 6.926427 ], [ 117.641602, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.397273 ], [ 119.091797, 5.003394 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.905273, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.883789, 4.302591 ], [ 115.532227, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.609375, 1.450040 ], [ 113.818359, 1.230374 ], [ 112.851562, 1.493971 ], [ 112.368164, 1.406109 ], [ 111.796875, 0.922812 ], [ 111.181641, 0.966751 ], [ 110.522461, 0.790990 ], [ 109.819336, 1.318243 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.915833 ], [ 115.444336, 5.441022 ], [ 116.235352, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.926427 ] ] ], [ [ [ 34.584961, 35.675147 ], [ 33.881836, 35.245619 ], [ 34.013672, 34.994004 ], [ 33.002930, 34.560859 ], [ 32.475586, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.783203, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.389050 ], [ 34.584961, 35.675147 ] ] ], [ [ [ 23.686523, 35.710838 ], [ 24.257812, 35.353216 ], [ 25.004883, 35.424868 ], [ 25.751953, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.279297, 35.281501 ], [ 26.147461, 34.994004 ], [ 24.741211, 34.921971 ], [ 24.741211, 35.065973 ], [ 23.510742, 35.281501 ], [ 23.686523, 35.710838 ] ] ], [ [ [ 12.392578, 56.121060 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.030273, 55.354135 ], [ 10.898438, 55.776573 ], [ 12.392578, 56.121060 ] ] ], [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.292969, 37.125286 ], [ 15.117188, 36.633162 ], [ 14.326172, 36.985003 ], [ 13.842773, 37.090240 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.134557 ], [ 13.754883, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.547523 ], [ 68.203125, 76.237366 ], [ 64.643555, 75.737303 ], [ 61.567383, 75.264239 ], [ 58.491211, 74.307353 ], [ 56.997070, 73.327858 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.524414, 70.714471 ], [ 56.953125, 70.627197 ], [ 53.657227, 70.757966 ], [ 53.393555, 71.201920 ], [ 51.591797, 71.469124 ], [ 51.459961, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.448242, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.084326 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.225586, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 17.006836, 80.050460 ], [ 18.237305, 79.702907 ], [ 21.533203, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.457031, 77.823323 ], [ 17.578125, 77.636542 ], [ 17.138672, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.739618 ], [ 13.183594, 78.025574 ], [ 11.206055, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.663556 ], [ 15.161133, 79.671438 ], [ 15.512695, 80.012423 ], [ 17.006836, 80.050460 ] ] ], [ [ [ 125.419922, 9.752370 ], [ 126.210938, 9.275622 ], [ 126.518555, 7.188101 ], [ 126.210938, 6.271618 ], [ 125.815430, 7.275292 ], [ 125.375977, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.375977, 5.572250 ], [ 124.233398, 6.140555 ], [ 123.925781, 6.882800 ], [ 124.233398, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.310547, 7.406048 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.882800 ], [ 121.904297, 7.188101 ], [ 122.299805, 8.015716 ], [ 122.958984, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.233237 ], [ 124.584961, 8.494105 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.971897 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 95.932617, 81.248348 ], [ 97.866211, 80.746492 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.878528 ], [ 97.778320, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.424308 ], [ 92.548828, 80.141163 ], [ 91.186523, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.932617, 81.248348 ] ] ], [ [ [ 80.156250, 9.838979 ], [ 80.859375, 9.275622 ], [ 81.298828, 8.581021 ], [ 81.782227, 7.536764 ], [ 81.650391, 6.489983 ], [ 81.210938, 6.184246 ], [ 80.332031, 5.965754 ], [ 79.892578, 6.751896 ], [ 79.716797, 8.189742 ], [ 80.156250, 9.838979 ] ] ], [ [ [ 22.939453, 80.654174 ], [ 25.444336, 80.408388 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.520657 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.358398, 80.320120 ], [ 20.478516, 80.596909 ], [ 21.928711, 80.356995 ], [ 22.939453, 80.654174 ] ] ], [ [ [ 141.372070, 41.376809 ], [ 141.899414, 39.977120 ], [ 141.899414, 39.164141 ], [ 140.976562, 38.169114 ], [ 140.976562, 37.125286 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.273438, 35.137879 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.833920 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 131.000977, 33.870416 ], [ 132.011719, 33.137551 ], [ 131.352539, 31.466154 ], [ 130.693359, 31.015279 ], [ 130.209961, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.418945, 33.284620 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.300275 ], [ 137.373047, 36.809285 ], [ 139.438477, 38.203655 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.547200 ], [ 140.317383, 41.178654 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 138.823242, 76.132430 ], [ 141.459961, 76.090236 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.977539, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.132430 ] ] ], [ [ [ 102.084961, 79.343349 ], [ 102.832031, 79.278140 ], [ 105.380859, 78.716316 ], [ 105.073242, 78.304955 ], [ 99.448242, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.343349 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.749594 ], [ 143.217773, 51.754240 ], [ 143.657227, 50.736455 ], [ 144.667969, 48.980217 ], [ 143.173828, 49.296472 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.830134 ], [ 143.525391, 46.134170 ], [ 142.734375, 46.739861 ], [ 142.075195, 45.951150 ], [ 141.899414, 46.800059 ], [ 142.031250, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.610710 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.748711 ], [ 142.207031, 54.213861 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 119.531250, 11.350797 ], [ 119.707031, 10.574222 ], [ 119.047852, 10.012130 ], [ 118.520508, 9.318990 ], [ 117.158203, 8.363693 ], [ 117.685547, 9.058702 ], [ 118.388672, 9.665738 ], [ 119.003906, 10.358151 ], [ 119.531250, 11.350797 ] ] ], [ [ [ 50.053711, 80.921494 ], [ 51.503906, 80.696895 ], [ 51.152344, 80.546518 ], [ 48.911133, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.592773, 80.012423 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.868164, 80.589727 ], [ 46.801758, 80.774716 ], [ 48.339844, 80.781758 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.753556 ], [ 50.053711, 80.921494 ] ] ], [ [ [ 124.057617, 11.221510 ], [ 123.969727, 10.271681 ], [ 123.618164, 9.968851 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.827148, 10.271681 ], [ 122.958984, 10.876465 ], [ 123.486328, 10.919618 ], [ 123.354492, 10.271681 ], [ 124.057617, 11.221510 ] ] ], [ [ [ 125.244141, 12.554564 ], [ 125.507812, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.024414, 11.307708 ], [ 125.024414, 10.962764 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.876465 ], [ 124.321289, 11.480025 ], [ 124.892578, 11.393879 ], [ 124.892578, 11.781325 ], [ 124.277344, 12.554564 ], [ 125.244141, 12.554564 ] ] ], [ [ [ 121.904297, 11.910354 ], [ 122.475586, 11.566144 ], [ 123.134766, 11.566144 ], [ 123.090820, 11.178402 ], [ 122.651367, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.393879 ], [ 121.904297, 11.910354 ] ] ], [ [ [ 141.987305, 45.552525 ], [ 143.129883, 44.496505 ], [ 143.920898, 44.182204 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.370987 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.972502 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.574361 ], [ 139.965820, 41.574361 ], [ 139.833984, 42.553080 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.987305, 45.552525 ] ] ], [ [ [ 120.322266, 13.453737 ], [ 121.201172, 13.410994 ], [ 121.508789, 13.068777 ], [ 121.245117, 12.211180 ], [ 120.849609, 12.683215 ], [ 120.322266, 13.453737 ] ] ], [ [ [ 121.333008, 18.521283 ], [ 121.948242, 18.229351 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.684570, 15.919074 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.306969 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.969727, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.189453, 12.983148 ], [ 124.057617, 12.554564 ], [ 123.310547, 13.025966 ], [ 122.915039, 13.539201 ], [ 122.651367, 13.197165 ], [ 122.036133, 13.795406 ], [ 121.113281, 13.624633 ], [ 120.629883, 13.838080 ], [ 120.673828, 14.264383 ], [ 120.981445, 14.519780 ], [ 120.673828, 14.774883 ], [ 120.585938, 14.392118 ], [ 120.058594, 14.987240 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.410156, 17.602139 ], [ 120.717773, 18.521283 ], [ 121.333008, 18.521283 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.741211, 77.851100 ], [ 22.500000, 77.446940 ], [ 20.742188, 77.674122 ], [ 21.401367, 77.934055 ], [ 20.830078, 78.251387 ], [ 22.895508, 78.455425 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.227539, 75.342282 ], [ 150.732422, 75.084326 ], [ 149.589844, 74.683250 ], [ 147.963867, 74.775843 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 180.966797, 71.552741 ], [ 182.416992, 71.272595 ], [ 182.329102, 71.130988 ], [ 181.318359, 70.887885 ], [ 180.000000, 70.830248 ], [ 178.901367, 70.786910 ], [ 178.725586, 71.102543 ], [ 180.131836, 71.552741 ], [ 180.966797, 71.552741 ] ] ], [ [ [ 142.075195, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.613281, 73.214013 ], [ 142.075195, 73.201317 ], [ 140.053711, 73.315246 ], [ 139.877930, 73.365639 ], [ 140.800781, 73.763497 ], [ 142.075195, 73.861506 ] ] ], [ [ [ 9.228516, 41.211722 ], [ 9.799805, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.173828, 40.946714 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.211722 ] ] ], [ [ [ 121.508789, 25.284438 ], [ 121.948242, 25.005973 ], [ 121.157227, 22.796439 ], [ 120.761719, 21.983801 ], [ 120.234375, 22.796439 ], [ 120.102539, 23.563987 ], [ 120.717773, 24.527135 ], [ 121.508789, 25.284438 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.055931 ], [ 111.005859, 19.683970 ], [ 110.566406, 19.269665 ], [ 110.346680, 18.687879 ], [ 109.467773, 18.187607 ], [ 108.676758, 18.521283 ], [ 108.632812, 19.352611 ], [ 109.116211, 19.808054 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.648438, 34.161818 ], [ 134.780273, 33.797409 ], [ 134.208984, 33.211116 ], [ 133.813477, 33.504759 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.505859, 33.943360 ], [ 133.901367, 34.379713 ] ] ], [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.261049 ], [ 8.745117, 42.617791 ], [ 9.404297, 43.004647 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.469557 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 143.481445, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.905273, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 109.819336, 1.318243 ], [ 110.522461, 0.790990 ], [ 111.181641, 0.966751 ], [ 111.796875, 0.922812 ], [ 112.368164, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.450040 ], [ 115.136719, 2.811371 ], [ 115.532227, 3.162456 ], [ 115.883789, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.644531, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.801461 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.098565 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.058594, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.922812 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.664062, 5.266008 ], [ 27.026367, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.993164, 4.390229 ], [ 28.432617, 4.302591 ], [ 28.696289, 4.434044 ], [ 29.179688, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.970703, 4.171115 ], [ 30.849609, 3.513421 ], [ 30.761719, 2.328460 ], [ 31.157227, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.454102, 1.581830 ], [ 30.102539, 1.054628 ], [ 29.882812, 0.615223 ], [ 29.838867, 0.000000 ], [ 29.838867, -0.219726 ], [ 29.575195, -0.571280 ], [ 29.575195, -1.362176 ], [ 29.838867, -1.450040 ], [ 30.761719, -1.010690 ], [ 33.925781, -0.966751 ], [ 37.705078, -3.118576 ], [ 37.749023, -3.513421 ], [ 10.634766, -3.513421 ], [ 10.063477, -2.986927 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.098565 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.439449 ], [ 9.184570, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.843750, 1.054628 ], [ 11.293945, 1.054628 ], [ 11.293945, 2.240640 ], [ 11.733398, 2.328460 ], [ 12.348633, 2.196727 ], [ 12.963867, 2.328460 ], [ 13.095703, 2.284551 ], [ 14.326172, 2.240640 ], [ 15.952148, 1.713612 ], [ 15.996094, 2.284551 ], [ 16.523438, 3.206333 ], [ 17.138672, 3.732708 ], [ 17.797852, 3.557283 ], [ 18.457031, 3.513421 ], [ 18.544922, 4.214943 ], [ 18.940430, 4.696879 ], [ 19.467773, 5.047171 ], [ 20.302734, 4.696879 ], [ 20.917969, 4.302591 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.039618 ], [ 22.719727, 4.653080 ], [ 22.851562, 4.696879 ], [ 23.291016, 4.609278 ], [ 24.433594, 5.090944 ], [ 24.785156, 4.915833 ], [ 25.136719, 4.915833 ], [ 25.268555, 5.178482 ], [ 25.664062, 5.266008 ] ] ], [ [ [ 117.114258, 6.926427 ], [ 117.641602, 6.402648 ], [ 117.685547, 5.965754 ], [ 119.179688, 5.397273 ], [ 119.091797, 5.003394 ], [ 118.432617, 4.959615 ], [ 118.608398, 4.477856 ], [ 117.905273, 4.127285 ], [ 117.333984, 3.250209 ], [ 118.037109, 2.284551 ], [ 117.861328, 1.845384 ], [ 119.003906, 0.922812 ], [ 117.817383, 0.790990 ], [ 117.465820, 0.000000 ], [ 117.509766, -0.790990 ], [ 116.542969, -1.493971 ], [ 116.542969, -2.504085 ], [ 116.279297, -3.513421 ], [ 114.477539, -3.513421 ], [ 113.774414, -3.425692 ], [ 113.247070, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.030812 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.581830 ], [ 109.555664, -1.318243 ], [ 109.072266, -0.439449 ], [ 109.028320, 0.000000 ], [ 108.940430, 0.395505 ], [ 109.072266, 1.362176 ], [ 109.643555, 2.021065 ], [ 110.390625, 1.669686 ], [ 111.181641, 1.845384 ], [ 111.357422, 2.679687 ], [ 111.796875, 2.899153 ], [ 112.983398, 3.118576 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.915833 ], [ 115.444336, 5.441022 ], [ 116.235352, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.114258, 6.926427 ] ] ], [ [ [ 127.001953, -3.118576 ], [ 127.265625, -3.469557 ], [ 127.177734, -3.513421 ], [ 126.123047, -3.513421 ], [ 125.991211, -3.162456 ], [ 127.001953, -3.118576 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.074695 ], [ 130.649414, -3.513421 ], [ 130.122070, -3.513421 ], [ 129.990234, -3.469557 ], [ 129.155273, -3.381824 ], [ 128.583984, -3.425692 ], [ 127.880859, -3.381824 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 132.363281, -0.351560 ], [ 133.989258, -0.790990 ], [ 134.165039, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.439453, -3.381824 ], [ 136.274414, -2.328460 ], [ 137.460938, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.921875, -2.416276 ], [ 141.020508, -2.591889 ], [ 143.481445, -3.513421 ], [ 132.758789, -3.513421 ], [ 132.758789, -3.294082 ], [ 132.011719, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.769531, -2.460181 ], [ 133.681641, -2.196727 ], [ 132.231445, -2.196727 ], [ 131.835938, -1.625758 ], [ 130.957031, -1.450040 ], [ 130.517578, -0.922812 ], [ 131.879883, -0.703107 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 104.370117, 77.702234 ], [ 106.083984, 77.370301 ], [ 104.721680, 77.127825 ], [ 106.962891, 76.970245 ], [ 107.226562, 76.475773 ], [ 108.149414, 76.720223 ], [ 111.093750, 76.710125 ], [ 113.334961, 76.226907 ], [ 114.125977, 75.845169 ], [ 113.906250, 75.331158 ], [ 112.763672, 75.027664 ], [ 110.170898, 74.472903 ], [ 109.379883, 74.176073 ], [ 110.654297, 74.043723 ], [ 112.104492, 73.788054 ], [ 113.027344, 73.971078 ], [ 113.510742, 73.340461 ], [ 113.950195, 73.590586 ], [ 115.576172, 73.751205 ], [ 118.784180, 73.590586 ], [ 119.003906, 73.124945 ], [ 123.222656, 72.971189 ], [ 123.266602, 73.738905 ], [ 125.375977, 73.565739 ], [ 126.958008, 73.565739 ], [ 128.583984, 73.035419 ], [ 129.067383, 72.395706 ], [ 128.452148, 71.978988 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.842539 ], [ 133.857422, 71.385142 ], [ 135.571289, 71.649833 ], [ 137.504883, 71.343013 ], [ 138.251953, 71.622143 ], [ 139.877930, 71.483086 ], [ 139.130859, 72.422268 ], [ 140.449219, 72.854981 ], [ 149.501953, 72.195246 ], [ 150.336914, 71.608283 ], [ 152.973633, 70.844673 ], [ 157.016602, 71.031249 ], [ 158.994141, 70.859087 ], [ 159.829102, 70.451508 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.290039, 69.641804 ], [ 164.047852, 69.672358 ], [ 165.937500, 69.472969 ], [ 167.827148, 69.580563 ], [ 169.584961, 68.688521 ], [ 170.815430, 69.005675 ], [ 170.024414, 69.657086 ], [ 170.463867, 70.095529 ], [ 173.627930, 69.824471 ], [ 175.737305, 69.869892 ], [ 178.593750, 69.395783 ], [ 180.000000, 68.958391 ], [ 182.460938, 68.204212 ], [ 183.515625, 67.809245 ], [ 183.515625, 65.403445 ], [ 182.768555, 65.512963 ], [ 181.625977, 65.385147 ], [ 181.098633, 65.748683 ], [ 181.318359, 66.107170 ], [ 180.131836, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.725586, 64.529548 ], [ 177.407227, 64.605038 ], [ 178.330078, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.384766, 62.975198 ], [ 179.472656, 62.573106 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 174.550781, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.133789, 60.951777 ], [ 170.683594, 60.326948 ], [ 170.332031, 59.888937 ], [ 168.881836, 60.565379 ], [ 166.289062, 59.778522 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.734253 ], [ 163.520508, 59.866883 ], [ 163.212891, 59.220934 ], [ 162.026367, 58.240164 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.081055, 56.170023 ], [ 162.114258, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.356445, 54.342149 ], [ 160.004883, 53.199452 ], [ 158.510742, 52.961875 ], [ 158.247070, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.401367, 51.699800 ], [ 156.005859, 53.146770 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.776808 ], [ 156.752930, 57.373938 ], [ 156.796875, 57.821355 ], [ 158.378906, 58.054632 ], [ 160.136719, 59.310768 ], [ 161.894531, 60.348696 ], [ 163.652344, 61.143235 ], [ 164.487305, 62.552857 ], [ 163.256836, 62.471724 ], [ 162.641602, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.204102, 59.756395 ], [ 155.039062, 59.153403 ], [ 152.797852, 58.881942 ], [ 151.259766, 58.790978 ], [ 151.347656, 59.512029 ], [ 149.765625, 59.645540 ], [ 148.535156, 59.153403 ], [ 145.502930, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.823242, 54.265224 ], [ 139.921875, 54.188155 ], [ 141.328125, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.581055, 51.234407 ], [ 140.493164, 50.035974 ], [ 140.053711, 48.458352 ], [ 138.559570, 47.010226 ], [ 138.208008, 46.316584 ], [ 134.868164, 43.389082 ], [ 133.549805, 42.811522 ], [ 132.890625, 42.811522 ], [ 132.275391, 43.293200 ], [ 130.957031, 42.553080 ], [ 130.781250, 42.228517 ], [ 130.385742, 42.293564 ], [ 129.946289, 41.934977 ], [ 129.682617, 41.607228 ], [ 129.726562, 40.880295 ], [ 129.199219, 40.647304 ], [ 128.627930, 40.178873 ], [ 127.968750, 40.010787 ], [ 127.529297, 39.740986 ], [ 127.485352, 39.334297 ], [ 127.397461, 39.198205 ], [ 127.792969, 39.061849 ], [ 128.364258, 38.616870 ], [ 129.199219, 37.439974 ], [ 129.462891, 36.774092 ], [ 129.462891, 35.639441 ], [ 129.111328, 35.065973 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.488448 ], [ 126.474609, 34.379713 ], [ 126.386719, 34.921971 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.738884 ], [ 126.870117, 36.879621 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.926868 ], [ 125.551758, 37.753344 ], [ 125.288086, 37.683820 ], [ 125.244141, 37.857507 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.244141, 38.651198 ], [ 125.112305, 38.856820 ], [ 125.375977, 39.402244 ], [ 125.332031, 39.537940 ], [ 124.760742, 39.673370 ], [ 124.277344, 39.943436 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.069336, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.740986 ], [ 122.167969, 40.413496 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.580585 ], [ 119.619141, 39.909736 ], [ 119.003906, 39.266284 ], [ 118.037109, 39.198205 ], [ 117.553711, 38.719805 ], [ 118.081055, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.805664, 37.857507 ], [ 121.728516, 37.474858 ], [ 122.343750, 37.439974 ], [ 122.519531, 36.914764 ], [ 121.113281, 36.633162 ], [ 120.629883, 36.102376 ], [ 119.663086, 35.603719 ], [ 119.135742, 34.921971 ], [ 120.234375, 34.343436 ], [ 120.629883, 33.358062 ], [ 121.245117, 32.472695 ], [ 121.904297, 31.690782 ], [ 121.904297, 30.939924 ], [ 121.245117, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.080078, 29.840644 ], [ 121.948242, 28.998532 ], [ 121.684570, 28.226970 ], [ 121.113281, 28.149503 ], [ 119.575195, 25.720735 ], [ 118.652344, 24.527135 ], [ 115.883789, 22.796439 ], [ 114.785156, 22.674847 ], [ 114.169922, 22.228090 ], [ 113.818359, 22.553147 ], [ 113.247070, 22.065278 ], [ 111.840820, 21.534847 ], [ 110.786133, 21.412162 ], [ 110.434570, 20.344627 ], [ 109.907227, 20.262197 ], [ 109.643555, 21.002471 ], [ 109.863281, 21.412162 ], [ 108.544922, 21.698265 ], [ 108.061523, 21.534847 ], [ 106.699219, 20.715015 ], [ 105.864258, 19.766704 ], [ 105.644531, 19.062118 ], [ 107.358398, 16.678293 ], [ 108.281250, 16.088042 ], [ 108.896484, 15.284185 ], [ 109.335938, 13.410994 ], [ 109.204102, 11.652236 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.391602, 9.535749 ], [ 105.161133, 8.581021 ], [ 104.809570, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.617418 ], [ 103.095703, 11.135287 ], [ 102.568359, 12.168226 ], [ 101.689453, 12.640338 ], [ 100.854492, 12.640338 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.140625, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.887695, 9.188870 ], [ 100.283203, 8.276727 ], [ 100.458984, 7.449624 ], [ 101.030273, 6.839170 ], [ 101.645508, 6.751896 ], [ 102.128906, 6.227934 ], [ 102.392578, 6.140555 ], [ 102.963867, 5.528511 ], [ 103.403320, 4.872048 ], [ 103.447266, 4.171115 ], [ 103.315430, 3.732708 ], [ 103.491211, 2.811371 ], [ 103.842773, 2.504085 ], [ 104.238281, 1.625758 ], [ 104.238281, 1.274309 ], [ 103.535156, 1.230374 ], [ 102.568359, 1.977147 ], [ 101.381836, 2.767478 ], [ 101.293945, 3.250209 ], [ 100.678711, 3.951941 ], [ 100.546875, 4.784469 ], [ 100.195312, 5.309766 ], [ 100.327148, 6.053161 ], [ 100.107422, 6.446318 ], [ 99.711914, 6.839170 ], [ 99.536133, 7.362467 ], [ 98.525391, 8.363693 ], [ 98.349609, 7.798079 ], [ 98.129883, 8.363693 ], [ 98.261719, 8.971897 ], [ 98.569336, 9.925566 ], [ 98.437500, 10.660608 ], [ 98.745117, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.525391, 13.111580 ], [ 98.085938, 13.624633 ], [ 97.778320, 14.817371 ], [ 97.602539, 16.088042 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.790039, 15.792254 ], [ 94.174805, 16.045813 ], [ 94.526367, 17.266728 ], [ 94.306641, 18.229351 ], [ 93.559570, 19.352611 ], [ 93.647461, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.065430, 21.207459 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.406250, 22.755921 ], [ 90.483398, 22.796439 ], [ 90.571289, 22.390714 ], [ 90.263672, 21.820708 ], [ 89.868164, 22.024546 ], [ 89.692383, 21.861499 ], [ 89.033203, 22.065278 ], [ 88.857422, 22.877440 ], [ 88.549805, 23.644524 ], [ 88.681641, 24.246965 ], [ 88.066406, 24.487149 ], [ 88.286133, 24.846565 ], [ 88.945312, 25.244696 ], [ 88.198242, 25.760320 ], [ 88.549805, 26.431228 ], [ 89.340820, 25.997550 ], [ 89.824219, 25.958045 ], [ 89.912109, 25.284438 ], [ 90.878906, 25.125393 ], [ 91.801758, 25.165173 ], [ 92.373047, 24.966140 ], [ 91.933594, 24.126702 ], [ 91.450195, 24.086589 ], [ 91.142578, 23.483401 ], [ 91.713867, 22.998852 ], [ 91.889648, 23.604262 ], [ 92.153320, 23.644524 ], [ 92.680664, 22.024546 ], [ 93.164062, 22.268764 ], [ 93.076172, 22.715390 ], [ 93.295898, 23.039298 ], [ 93.339844, 24.086589 ], [ 94.086914, 23.845650 ], [ 94.570312, 24.686952 ], [ 94.614258, 25.165173 ], [ 95.141602, 25.997550 ], [ 95.141602, 26.588527 ], [ 96.416016, 27.254630 ], [ 97.119141, 27.098254 ], [ 97.075195, 27.683528 ], [ 97.382812, 27.877928 ], [ 97.338867, 28.265682 ], [ 96.240234, 28.420391 ], [ 96.591797, 28.844674 ], [ 96.108398, 29.458731 ], [ 95.405273, 29.036961 ], [ 94.570312, 29.267233 ], [ 93.427734, 28.652031 ], [ 92.504883, 27.877928 ], [ 91.713867, 27.761330 ], [ 92.109375, 27.449790 ], [ 92.021484, 26.824071 ], [ 91.230469, 26.824071 ], [ 90.395508, 26.863281 ], [ 89.736328, 26.706360 ], [ 88.857422, 27.098254 ], [ 88.725586, 28.071980 ], [ 88.110352, 27.877928 ], [ 86.967773, 27.955591 ], [ 85.825195, 28.188244 ], [ 85.034180, 28.652031 ], [ 84.243164, 28.844674 ], [ 83.891602, 29.305561 ], [ 83.320312, 29.458731 ], [ 82.309570, 30.107118 ], [ 81.518555, 30.410782 ], [ 81.123047, 30.183122 ], [ 79.716797, 30.864510 ], [ 78.750000, 31.503629 ], [ 78.442383, 32.620870 ], [ 79.189453, 32.472695 ], [ 79.189453, 32.990236 ], [ 78.793945, 33.504759 ], [ 78.925781, 34.307144 ], [ 77.827148, 35.496456 ], [ 76.201172, 35.889050 ], [ 75.893555, 36.668419 ], [ 75.146484, 37.125286 ], [ 74.970703, 37.405074 ], [ 74.838867, 37.996163 ], [ 74.882812, 38.376115 ], [ 74.267578, 38.616870 ], [ 73.916016, 38.513788 ], [ 73.696289, 39.436193 ], [ 73.959961, 39.673370 ], [ 73.828125, 39.909736 ], [ 74.794922, 40.380028 ], [ 75.454102, 40.547200 ], [ 76.508789, 40.413496 ], [ 76.904297, 41.079351 ], [ 78.178711, 41.178654 ], [ 78.530273, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.244141, 42.358544 ], [ 80.200195, 42.908160 ], [ 80.859375, 43.165123 ], [ 79.980469, 44.902578 ], [ 81.958008, 45.305803 ], [ 82.441406, 45.552525 ], [ 83.188477, 47.338823 ], [ 85.166016, 47.010226 ], [ 85.737305, 47.457809 ], [ 85.781250, 48.458352 ], [ 86.616211, 48.545705 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.837982 ], [ 85.561523, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.875311 ], [ 83.364258, 51.069017 ], [ 81.958008, 50.819818 ], [ 80.551758, 51.399206 ], [ 80.024414, 50.875311 ], [ 77.783203, 53.409532 ], [ 76.508789, 54.188155 ], [ 76.904297, 54.495568 ], [ 74.399414, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.246094, 54.367759 ], [ 71.191406, 54.136696 ], [ 70.883789, 55.178868 ], [ 69.082031, 55.379110 ], [ 68.159180, 54.977614 ], [ 65.654297, 54.597528 ], [ 65.170898, 54.342149 ], [ 61.435547, 54.007769 ], [ 60.996094, 53.670680 ], [ 61.699219, 52.988337 ], [ 60.732422, 52.722986 ], [ 60.908203, 52.456009 ], [ 59.985352, 51.971346 ], [ 61.611328, 51.261915 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 52.338867, 51.727028 ], [ 50.756836, 51.699800 ], [ 48.691406, 50.597186 ], [ 48.559570, 49.866317 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.065430, 49.152970 ], [ 46.450195, 48.400032 ], [ 47.329102, 47.724545 ], [ 48.076172, 47.754098 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.086914, 46.407564 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.669922, 44.621754 ], [ 47.592773, 43.644026 ], [ 47.504883, 42.972502 ], [ 48.603516, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.669922, 41.836828 ], [ 46.406250, 41.869561 ], [ 45.791016, 42.098222 ], [ 45.483398, 42.488302 ], [ 44.560547, 42.714732 ], [ 43.945312, 42.553080 ], [ 43.769531, 42.747012 ], [ 42.407227, 43.229195 ], [ 40.913086, 43.389082 ], [ 40.078125, 43.548548 ], [ 39.946289, 43.421009 ], [ 38.671875, 44.276671 ], [ 37.529297, 44.653024 ], [ 36.694336, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.225453 ], [ 37.661133, 46.649436 ], [ 39.155273, 47.040182 ], [ 39.111328, 47.249407 ], [ 38.232422, 47.100045 ], [ 38.276367, 47.546872 ], [ 38.759766, 47.813155 ], [ 39.726562, 47.901614 ], [ 39.902344, 48.224673 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.296472 ], [ 40.078125, 49.610710 ], [ 38.583984, 49.922935 ], [ 38.012695, 49.922935 ], [ 37.397461, 50.373496 ], [ 36.606445, 50.233152 ], [ 35.375977, 50.569283 ], [ 35.375977, 50.764259 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.261915 ], [ 34.145508, 51.563412 ], [ 34.409180, 51.781436 ], [ 33.750000, 52.321911 ], [ 32.695312, 52.241256 ], [ 32.431641, 52.295042 ], [ 32.167969, 52.052490 ], [ 31.772461, 52.106505 ], [ 31.552734, 52.749594 ], [ 31.289062, 53.067627 ], [ 31.508789, 53.173119 ], [ 32.299805, 53.120405 ], [ 32.695312, 53.357109 ], [ 32.387695, 53.618579 ], [ 31.728516, 53.800651 ], [ 31.772461, 53.981935 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.800685 ], [ 30.981445, 55.078367 ], [ 30.893555, 55.553495 ], [ 29.882812, 55.776573 ], [ 29.355469, 55.677584 ], [ 29.223633, 55.924586 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.752723 ], [ 27.773438, 57.255281 ], [ 27.290039, 57.468589 ], [ 27.729492, 57.797944 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.310768 ], [ 27.993164, 59.467408 ], [ 29.135742, 60.020952 ], [ 28.081055, 60.500525 ], [ 31.157227, 62.349609 ], [ 31.508789, 62.875188 ], [ 30.058594, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.531250, 64.942160 ], [ 30.234375, 65.802776 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.692771 ], [ 28.432617, 68.366801 ], [ 28.608398, 69.068563 ], [ 29.399414, 69.162558 ], [ 31.113281, 69.565226 ], [ 32.124023, 69.900118 ], [ 33.793945, 69.302794 ], [ 36.518555, 69.068563 ], [ 40.297852, 67.925140 ], [ 41.044922, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.034180, 66.266856 ], [ 38.364258, 66.000150 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 34.804688, 65.892680 ], [ 34.936523, 64.415921 ], [ 36.210938, 64.110602 ], [ 37.001953, 63.840668 ], [ 37.133789, 64.339908 ], [ 36.562500, 64.755390 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.529548 ], [ 40.429688, 64.755390 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.425537 ], [ 43.945312, 66.071546 ], [ 44.516602, 66.757250 ], [ 43.681641, 67.356785 ], [ 44.208984, 67.958148 ], [ 43.461914, 68.576441 ], [ 46.230469, 68.253111 ], [ 46.801758, 67.692771 ], [ 45.571289, 67.558948 ], [ 45.571289, 67.016009 ], [ 46.362305, 66.670387 ], [ 47.900391, 66.878345 ], [ 48.120117, 67.525373 ], [ 50.229492, 67.991108 ], [ 53.701172, 68.863517 ], [ 54.492188, 68.800041 ], [ 53.481445, 68.204212 ], [ 54.711914, 68.089709 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.285651 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.854762 ], [ 63.500977, 69.549877 ], [ 64.907227, 69.240579 ], [ 68.510742, 68.089709 ], [ 69.169922, 68.608521 ], [ 68.159180, 69.146920 ], [ 68.115234, 69.349339 ], [ 66.928711, 69.457554 ], [ 67.280273, 69.930300 ], [ 66.708984, 70.714471 ], [ 66.708984, 71.031249 ], [ 68.554688, 71.938158 ], [ 69.213867, 72.842021 ], [ 69.960938, 73.035419 ], [ 72.597656, 72.777081 ], [ 72.817383, 72.222101 ], [ 71.850586, 71.413177 ], [ 72.465820, 71.088305 ], [ 72.773438, 70.392606 ], [ 72.553711, 69.021414 ], [ 73.652344, 68.415352 ], [ 73.256836, 67.742759 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.178266 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.289015 ], [ 75.058594, 67.759398 ], [ 74.487305, 68.334376 ], [ 74.926758, 68.989925 ], [ 73.828125, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.627197 ], [ 73.081055, 71.441171 ], [ 74.882812, 72.114445 ], [ 74.663086, 72.829052 ], [ 75.146484, 72.854981 ], [ 75.673828, 72.302431 ], [ 75.278320, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.893555, 71.869909 ], [ 77.563477, 72.262310 ], [ 79.672852, 72.315785 ], [ 81.518555, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 82.265625, 73.849286 ], [ 84.638672, 73.800318 ], [ 86.835938, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.639536 ], [ 92.900391, 75.769747 ], [ 93.251953, 76.047916 ], [ 95.844727, 76.142958 ], [ 96.679688, 75.920199 ], [ 98.920898, 76.444907 ], [ 100.766602, 76.434604 ], [ 101.030273, 76.860810 ], [ 101.997070, 77.283532 ], [ 104.370117, 77.702234 ] ] ], [ [ [ 95.273438, 5.484768 ], [ 97.470703, 5.266008 ], [ 98.349609, 4.258768 ], [ 99.711914, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.645508, 2.064982 ], [ 102.480469, 1.406109 ], [ 103.095703, 0.571280 ], [ 103.842773, 0.087891 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.098565 ], [ 104.545898, -1.801461 ], [ 104.897461, -2.328460 ], [ 105.644531, -2.416276 ], [ 106.127930, -3.074695 ], [ 105.996094, -3.513421 ], [ 102.041016, -3.513421 ], [ 101.381836, -2.811371 ], [ 100.898438, -2.064982 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.613281, 1.801461 ], [ 97.690430, 2.460181 ], [ 97.163086, 3.294082 ], [ 96.416016, 3.864255 ], [ 95.361328, 4.959615 ], [ 95.273438, 5.484768 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 152.226562, -3.250209 ], [ 152.490234, -3.513421 ], [ 152.006836, -3.513421 ], [ 151.391602, -3.030812 ], [ 150.644531, -2.723583 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 125.068359, 1.625758 ], [ 125.244141, 1.406109 ], [ 124.453125, 0.439449 ], [ 123.706055, 0.219726 ], [ 122.739258, 0.439449 ], [ 121.069336, 0.395505 ], [ 120.190430, 0.219726 ], [ 120.146484, 0.000000 ], [ 120.058594, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.464844, -0.966751 ], [ 123.354492, -0.615223 ], [ 123.266602, -1.098565 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.537901 ], [ 121.508789, -1.889306 ], [ 122.475586, -3.206333 ], [ 122.299805, -3.513421 ], [ 120.893555, -3.513421 ], [ 120.981445, -2.635789 ], [ 120.322266, -2.943041 ], [ 120.366211, -3.513421 ], [ 119.091797, -3.469557 ], [ 118.784180, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.311523, -1.362176 ], [ 119.794922, 0.000000 ], [ 120.058594, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.684570, 1.010690 ], [ 122.915039, 0.878872 ], [ 124.057617, 0.922812 ], [ 125.068359, 1.625758 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.547523 ], [ 68.203125, 76.237366 ], [ 64.643555, 75.737303 ], [ 61.567383, 75.264239 ], [ 58.491211, 74.307353 ], [ 56.997070, 73.327858 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.524414, 70.714471 ], [ 56.953125, 70.627197 ], [ 53.657227, 70.757966 ], [ 53.393555, 71.201920 ], [ 51.591797, 71.469124 ], [ 51.459961, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.426758, 72.777081 ], [ 54.448242, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.084326 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.225586, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 95.932617, 81.248348 ], [ 97.866211, 80.746492 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.878528 ], [ 97.778320, 78.759229 ], [ 94.965820, 79.046790 ], [ 93.295898, 79.424308 ], [ 92.548828, 80.141163 ], [ 91.186523, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.932617, 81.248348 ] ] ], [ [ [ 141.372070, 41.376809 ], [ 141.899414, 39.977120 ], [ 141.899414, 39.164141 ], [ 140.976562, 38.169114 ], [ 140.976562, 37.125286 ], [ 140.581055, 36.350527 ], [ 140.756836, 35.853440 ], [ 140.273438, 35.137879 ], [ 138.955078, 34.669359 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.833920 ], [ 135.087891, 34.597042 ], [ 133.330078, 34.379713 ], [ 132.143555, 33.906896 ], [ 131.000977, 33.870416 ], [ 132.011719, 33.137551 ], [ 131.352539, 31.466154 ], [ 130.693359, 31.015279 ], [ 130.209961, 31.428663 ], [ 130.429688, 32.324276 ], [ 129.814453, 32.620870 ], [ 129.418945, 33.284620 ], [ 130.341797, 33.614619 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.746512 ], [ 135.659180, 35.532226 ], [ 136.713867, 37.300275 ], [ 137.373047, 36.809285 ], [ 139.438477, 38.203655 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.547200 ], [ 140.317383, 41.178654 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 138.823242, 76.132430 ], [ 141.459961, 76.090236 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.977539, 75.264239 ], [ 137.504883, 75.952235 ], [ 138.823242, 76.132430 ] ] ], [ [ [ 127.924805, 2.152814 ], [ 128.012695, 1.625758 ], [ 128.583984, 1.537901 ], [ 128.671875, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.100586, 0.351560 ], [ 128.012695, 0.000000 ], [ 127.968750, -0.263671 ], [ 128.364258, -0.790990 ], [ 128.100586, -0.922812 ], [ 127.705078, -0.263671 ], [ 127.617188, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.617188, 1.801461 ], [ 127.924805, 2.152814 ] ] ], [ [ [ 102.084961, 79.343349 ], [ 102.832031, 79.278140 ], [ 105.380859, 78.716316 ], [ 105.073242, 78.304955 ], [ 99.448242, 77.924866 ], [ 101.250000, 79.237185 ], [ 102.084961, 79.343349 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.749594 ], [ 143.217773, 51.754240 ], [ 143.657227, 50.736455 ], [ 144.667969, 48.980217 ], [ 143.173828, 49.296472 ], [ 142.558594, 47.872144 ], [ 143.525391, 46.830134 ], [ 143.525391, 46.134170 ], [ 142.734375, 46.739861 ], [ 142.075195, 45.951150 ], [ 141.899414, 46.800059 ], [ 142.031250, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.119141, 49.610710 ], [ 142.163086, 50.958427 ], [ 141.591797, 51.944265 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.748711 ], [ 142.207031, 54.213861 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 50.053711, 80.921494 ], [ 51.503906, 80.696895 ], [ 51.152344, 80.546518 ], [ 48.911133, 80.342262 ], [ 48.735352, 80.178713 ], [ 47.592773, 80.012423 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.868164, 80.589727 ], [ 46.801758, 80.774716 ], [ 48.339844, 80.781758 ], [ 48.515625, 80.517603 ], [ 49.086914, 80.753556 ], [ 50.053711, 80.921494 ] ] ], [ [ [ 125.419922, 9.752370 ], [ 126.210938, 9.275622 ], [ 126.518555, 7.188101 ], [ 126.210938, 6.271618 ], [ 125.815430, 7.275292 ], [ 125.375977, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.375977, 5.572250 ], [ 124.233398, 6.140555 ], [ 123.925781, 6.882800 ], [ 124.233398, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.310547, 7.406048 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.882800 ], [ 121.904297, 7.188101 ], [ 122.299805, 8.015716 ], [ 122.958984, 8.320212 ], [ 123.486328, 8.711359 ], [ 123.837891, 8.233237 ], [ 124.584961, 8.494105 ], [ 124.760742, 8.971897 ], [ 125.463867, 8.971897 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 141.987305, 45.552525 ], [ 143.129883, 44.496505 ], [ 143.920898, 44.182204 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.370987 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.972502 ], [ 143.173828, 42.000325 ], [ 141.591797, 42.682435 ], [ 141.064453, 41.574361 ], [ 139.965820, 41.574361 ], [ 139.833984, 42.553080 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.987305, 45.552525 ] ] ], [ [ [ 121.333008, 18.521283 ], [ 121.948242, 18.229351 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.684570, 15.919074 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.306969 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.349548 ], [ 123.969727, 13.795406 ], [ 123.837891, 13.239945 ], [ 124.189453, 12.983148 ], [ 124.057617, 12.554564 ], [ 123.310547, 13.025966 ], [ 122.915039, 13.539201 ], [ 122.651367, 13.197165 ], [ 122.036133, 13.795406 ], [ 121.113281, 13.624633 ], [ 120.629883, 13.838080 ], [ 120.673828, 14.264383 ], [ 120.981445, 14.519780 ], [ 120.673828, 14.774883 ], [ 120.585938, 14.392118 ], [ 120.058594, 14.987240 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.383391 ], [ 120.278320, 16.045813 ], [ 120.410156, 17.602139 ], [ 120.717773, 18.521283 ], [ 121.333008, 18.521283 ] ] ], [ [ [ 146.337891, 75.497157 ], [ 148.227539, 75.342282 ], [ 150.732422, 75.084326 ], [ 149.589844, 74.683250 ], [ 147.963867, 74.775843 ], [ 146.118164, 75.174549 ], [ 146.337891, 75.497157 ] ] ], [ [ [ 180.966797, 71.552741 ], [ 182.416992, 71.272595 ], [ 182.329102, 71.130988 ], [ 181.318359, 70.887885 ], [ 180.000000, 70.830248 ], [ 178.901367, 70.786910 ], [ 178.725586, 71.102543 ], [ 180.131836, 71.552741 ], [ 180.966797, 71.552741 ] ] ], [ [ [ 119.531250, 11.350797 ], [ 119.707031, 10.574222 ], [ 119.047852, 10.012130 ], [ 118.520508, 9.318990 ], [ 117.158203, 8.363693 ], [ 117.685547, 9.058702 ], [ 118.388672, 9.665738 ], [ 119.003906, 10.358151 ], [ 119.531250, 11.350797 ] ] ], [ [ [ 142.075195, 73.861506 ], [ 143.481445, 73.478485 ], [ 143.613281, 73.214013 ], [ 142.075195, 73.201317 ], [ 140.053711, 73.315246 ], [ 139.877930, 73.365639 ], [ 140.800781, 73.763497 ], [ 142.075195, 73.861506 ] ] ], [ [ [ 124.057617, 11.221510 ], [ 123.969727, 10.271681 ], [ 123.618164, 9.968851 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.827148, 10.271681 ], [ 122.958984, 10.876465 ], [ 123.486328, 10.919618 ], [ 123.354492, 10.271681 ], [ 124.057617, 11.221510 ] ] ], [ [ [ 125.244141, 12.554564 ], [ 125.507812, 12.168226 ], [ 125.771484, 11.049038 ], [ 125.024414, 11.307708 ], [ 125.024414, 10.962764 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.876465 ], [ 124.321289, 11.480025 ], [ 124.892578, 11.393879 ], [ 124.892578, 11.781325 ], [ 124.277344, 12.554564 ], [ 125.244141, 12.554564 ] ] ], [ [ [ 121.904297, 11.910354 ], [ 122.475586, 11.566144 ], [ 123.134766, 11.566144 ], [ 123.090820, 11.178402 ], [ 122.651367, 10.746969 ], [ 121.992188, 10.444598 ], [ 121.948242, 10.919618 ], [ 122.036133, 11.393879 ], [ 121.904297, 11.910354 ] ] ], [ [ [ 21.269531, 55.178868 ], [ 22.324219, 55.002826 ], [ 22.763672, 54.851315 ], [ 22.631836, 54.572062 ], [ 22.719727, 54.316523 ], [ 20.874023, 54.316523 ], [ 19.643555, 54.418930 ], [ 19.907227, 54.876607 ], [ 21.269531, 55.178868 ] ] ], [ [ [ 120.322266, 13.453737 ], [ 121.201172, 13.410994 ], [ 121.508789, 13.068777 ], [ 121.245117, 12.211180 ], [ 120.849609, 12.683215 ], [ 120.322266, 13.453737 ] ] ], [ [ [ 121.508789, 25.284438 ], [ 121.948242, 25.005973 ], [ 121.157227, 22.796439 ], [ 120.761719, 21.983801 ], [ 120.234375, 22.796439 ], [ 120.102539, 23.563987 ], [ 120.717773, 24.527135 ], [ 121.508789, 25.284438 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.055931 ], [ 111.005859, 19.683970 ], [ 110.566406, 19.269665 ], [ 110.346680, 18.687879 ], [ 109.467773, 18.187607 ], [ 108.676758, 18.521283 ], [ 108.632812, 19.352611 ], [ 109.116211, 19.808054 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 133.901367, 34.379713 ], [ 134.648438, 34.161818 ], [ 134.780273, 33.797409 ], [ 134.208984, 33.211116 ], [ 133.813477, 33.504759 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.505859, 33.943360 ], [ 133.901367, 34.379713 ] ] ] ] } } ] } ] } , @@ -69,11 +67,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -155.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.497664 ], [ -154.819336, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.676270, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.895996, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.247559, 20.920397 ], [ -155.983887, 20.756114 ], [ -156.071777, 20.632784 ], [ -156.423340, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.697754, 21.268900 ], [ -158.115234, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.741211, 22.146708 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.676454 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.353916 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.819645 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.859224 ], [ -97.536621, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.008789, 26.372185 ], [ -99.294434, 26.843677 ], [ -99.514160, 27.547242 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.964355, 29.382175 ], [ -101.667480, 29.783449 ], [ -102.480469, 29.764377 ], [ -103.117676, 28.960089 ], [ -103.930664, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.126124 ], [ -105.029297, 30.637912 ], [ -105.622559, 31.090574 ], [ -106.149902, 31.391158 ], [ -106.501465, 31.746854 ], [ -108.237305, 31.746854 ], [ -108.237305, 31.334871 ], [ -111.027832, 31.334871 ], [ -114.807129, 32.528289 ], [ -114.719238, 32.713355 ], [ -117.136230, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.069824, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.942321 ], [ -123.859863, 39.757880 ], [ -124.387207, 40.313043 ], [ -124.167480, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.385442 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.849121, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.968262, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.491304 ], [ -132.253418, 56.365250 ], [ -133.527832, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.217025 ], [ -137.790527, 58.493694 ], [ -139.855957, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.344395 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.341642 ], [ -161.806641, 55.899956 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.574779 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.203125, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.665513 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.806152, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.762207, 63.223730 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.542969, 63.450509 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.773926, 64.783488 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.948730, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.207075 ], [ -166.464844, 60.381290 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.143066, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.362793, 14.413400 ], [ -89.582520, 14.370834 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.115267 ], [ -92.219238, 14.541050 ], [ -92.197266, 14.838612 ], [ -92.087402, 15.072124 ], [ -92.219238, 15.241790 ], [ -91.735840, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.285156, 57.088515 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.242188, 56.547372 ], [ -88.242188, 48.253941 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.443778 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.676454 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.382373 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 48.994636 ], [ -124.914551, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.441406, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.749594 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.800685 ], [ -129.968262, 55.279115 ], [ -130.012207, 55.912273 ], [ -131.704102, 56.547372 ], [ -133.352051, 58.413223 ], [ -134.274902, 58.859224 ], [ -134.934082, 59.265881 ], [ -135.483398, 59.789580 ], [ -136.472168, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.272515 ], [ -140.998535, 60.305185 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.289339 ], [ -124.914551, 49.468124 ], [ -123.925781, 49.066668 ], [ -123.508301, 48.502048 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.809632 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -133.176270, 54.175297 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.173932 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.044434, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.175297 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -88.242188, 15.707663 ], [ -88.242188, 13.154376 ], [ -88.483887, 13.154376 ], [ -88.835449, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.802246, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.087891, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.923404 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.370834 ], [ -89.362793, 14.413400 ], [ -89.143066, 14.668626 ], [ -89.230957, 14.881087 ], [ -89.143066, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.242188, 15.707663 ] ] ], [ [ [ -114.719238, 32.713355 ], [ -114.807129, 32.528289 ], [ -111.027832, 31.334871 ], [ -108.237305, 31.334871 ], [ -108.237305, 31.746854 ], [ -106.501465, 31.746854 ], [ -106.149902, 31.391158 ], [ -105.622559, 31.090574 ], [ -105.029297, 30.637912 ], [ -104.699707, 30.126124 ], [ -104.458008, 29.573457 ], [ -103.930664, 29.267233 ], [ -103.117676, 28.960089 ], [ -102.480469, 29.764377 ], [ -101.667480, 29.783449 ], [ -100.964355, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.547242 ], [ -99.294434, 26.843677 ], [ -99.008789, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.536621, 25.839449 ], [ -97.141113, 25.859224 ], [ -97.536621, 24.986058 ], [ -97.712402, 24.266997 ], [ -97.778320, 22.938160 ], [ -97.866211, 22.451649 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.888672, 18.833515 ], [ -94.833984, 18.562947 ], [ -94.416504, 18.145852 ], [ -93.537598, 18.417079 ], [ -92.790527, 18.521283 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.439453, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.473518 ], [ -88.242188, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.644022 ], [ -88.242188, 17.560247 ], [ -88.242188, 17.329664 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.014768 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.735840, 16.066929 ], [ -92.219238, 15.241790 ], [ -92.087402, 15.072124 ], [ -92.197266, 14.838612 ], [ -92.219238, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.867188, 15.940202 ], [ -94.680176, 16.193575 ], [ -95.251465, 16.130262 ], [ -96.042480, 15.749963 ], [ -96.547852, 15.644197 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.942871, 16.573023 ], [ -99.689941, 16.699340 ], [ -100.832520, 17.161786 ], [ -101.667480, 17.644022 ], [ -101.909180, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.291950 ], [ -103.908691, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.952696 ], [ -105.732422, 20.427013 ], [ -105.402832, 20.529933 ], [ -105.490723, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.018066, 22.776182 ], [ -106.918945, 23.765237 ], [ -107.907715, 24.547123 ], [ -108.391113, 25.165173 ], [ -109.248047, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.450902 ], [ -109.797363, 26.667096 ], [ -110.390625, 27.156920 ], [ -110.632324, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.459033 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.012031 ], [ -113.159180, 30.789037 ], [ -113.137207, 31.165810 ], [ -113.862305, 31.559815 ], [ -114.213867, 31.522361 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.763184, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.323730, 29.745302 ], [ -113.576660, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.748397 ], [ -113.137207, 28.401065 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.698242, 24.826625 ], [ -110.654297, 24.307053 ], [ -110.170898, 24.266997 ], [ -109.401855, 23.362429 ], [ -109.423828, 23.180764 ], [ -109.863281, 22.816694 ], [ -110.039062, 22.816694 ], [ -110.302734, 23.422928 ], [ -110.939941, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.170410, 24.746831 ], [ -112.148438, 25.463115 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.647459 ], [ -113.840332, 26.902477 ], [ -114.455566, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.191895, 28.110749 ], [ -114.169922, 28.555576 ], [ -114.938965, 29.286399 ], [ -115.510254, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.136230, 32.528289 ], [ -114.719238, 32.713355 ] ] ], [ [ [ -88.242188, 67.204032 ], [ -88.242188, 64.244595 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.636230, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.208008, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.285156, 57.088515 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.242188, 56.547372 ], [ -88.242188, 48.253941 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -92.614746, 48.443778 ], [ -93.625488, 48.603858 ], [ -94.328613, 48.676454 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.382373 ], [ -95.163574, 49.382373 ], [ -95.163574, 48.994636 ], [ -122.980957, 48.994636 ], [ -124.914551, 49.979488 ], [ -125.617676, 50.415519 ], [ -127.441406, 50.833698 ], [ -127.990723, 51.713416 ], [ -127.858887, 52.335339 ], [ -129.133301, 52.749594 ], [ -129.309082, 53.566414 ], [ -130.517578, 54.290882 ], [ -130.539551, 54.800685 ], [ -129.968262, 55.279115 ], [ -130.012207, 55.912273 ], [ -131.704102, 56.547372 ], [ -133.352051, 58.413223 ], [ -134.274902, 58.859224 ], [ -134.934082, 59.265881 ], [ -135.483398, 59.789580 ], [ -136.472168, 59.467408 ], [ -137.460938, 58.904646 ], [ -138.339844, 59.556592 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.272515 ], [ -140.998535, 60.305185 ], [ -140.998535, 67.204032 ], [ -88.242188, 67.204032 ] ] ], [ [ [ -128.364258, 50.764259 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.289339 ], [ -124.914551, 49.468124 ], [ -123.925781, 49.066668 ], [ -123.508301, 48.502048 ], [ -124.013672, 48.370848 ], [ -125.661621, 48.821333 ], [ -125.947266, 49.181703 ], [ -126.848145, 49.525208 ], [ -127.023926, 49.809632 ], [ -128.056641, 49.993615 ], [ -128.452148, 50.541363 ], [ -128.364258, 50.764259 ] ] ], [ [ [ -133.176270, 54.175297 ], [ -132.714844, 54.033586 ], [ -131.748047, 54.123822 ], [ -132.055664, 52.988337 ], [ -131.176758, 52.173932 ], [ -131.572266, 52.187405 ], [ -132.187500, 52.643063 ], [ -132.539062, 53.094024 ], [ -133.044434, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.175297 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.812012, 49.382373 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.676454 ], [ -93.625488, 48.603858 ], [ -92.614746, 48.443778 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ], [ -88.242188, 48.253941 ], [ -88.242188, 30.353916 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -92.504883, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.707139 ], [ -94.680176, 29.477861 ], [ -95.603027, 28.729130 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.819645 ], [ -97.360840, 27.371767 ], [ -97.382812, 26.686730 ], [ -97.338867, 26.214591 ], [ -97.141113, 25.859224 ], [ -97.536621, 24.986058 ], [ -97.712402, 24.266997 ], [ -97.778320, 22.938160 ], [ -97.866211, 22.451649 ], [ -97.690430, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.284180, 19.311143 ], [ -95.888672, 18.833515 ], [ -94.833984, 18.562947 ], [ -94.416504, 18.145852 ], [ -93.537598, 18.417079 ], [ -92.790527, 18.521283 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.439453, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -88.242188, 21.473518 ], [ -88.242188, 18.500447 ], [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.242188, 18.354526 ], [ -88.242188, 17.769612 ], [ -88.286133, 17.644022 ], [ -88.242188, 17.560247 ], [ -88.242188, 17.329664 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.014768 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.242188, 15.728814 ], [ -88.242188, 13.154376 ], [ -88.483887, 13.154376 ], [ -88.835449, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.802246, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.115267 ], [ -92.219238, 14.541050 ], [ -93.361816, 15.623037 ], [ -93.867188, 15.940202 ], [ -94.680176, 16.193575 ], [ -95.251465, 16.130262 ], [ -96.042480, 15.749963 ], [ -96.547852, 15.644197 ], [ -97.272949, 15.919074 ], [ -98.020020, 16.109153 ], [ -98.942871, 16.573023 ], [ -99.689941, 16.699340 ], [ -100.832520, 17.161786 ], [ -101.667480, 17.644022 ], [ -101.909180, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.491211, 18.291950 ], [ -103.908691, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.952696 ], [ -105.732422, 20.427013 ], [ -105.402832, 20.529933 ], [ -105.490723, 20.817741 ], [ -105.270996, 21.084500 ], [ -105.270996, 21.412162 ], [ -105.600586, 21.861499 ], [ -105.688477, 22.268764 ], [ -106.018066, 22.776182 ], [ -106.918945, 23.765237 ], [ -107.907715, 24.547123 ], [ -108.391113, 25.165173 ], [ -109.248047, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.450902 ], [ -109.797363, 26.667096 ], [ -110.390625, 27.156920 ], [ -110.632324, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.459033 ], [ -112.236328, 28.960089 ], [ -112.280273, 29.267233 ], [ -112.807617, 30.012031 ], [ -113.159180, 30.789037 ], [ -113.137207, 31.165810 ], [ -113.862305, 31.559815 ], [ -114.213867, 31.522361 ], [ -114.785156, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.763184, 30.921076 ], [ -114.675293, 30.164126 ], [ -114.323730, 29.745302 ], [ -113.576660, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.748397 ], [ -113.137207, 28.401065 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.236328, 27.176469 ], [ -111.621094, 26.667096 ], [ -111.291504, 25.740529 ], [ -110.698242, 24.826625 ], [ -110.654297, 24.307053 ], [ -110.170898, 24.266997 ], [ -109.401855, 23.362429 ], [ -109.423828, 23.180764 ], [ -109.863281, 22.816694 ], [ -110.039062, 22.816694 ], [ -110.302734, 23.422928 ], [ -110.939941, 24.006326 ], [ -111.665039, 24.487149 ], [ -112.170410, 24.746831 ], [ -112.148438, 25.463115 ], [ -112.302246, 26.017298 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.647459 ], [ -113.840332, 26.902477 ], [ -114.455566, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.191895, 28.110749 ], [ -114.169922, 28.555576 ], [ -114.938965, 29.286399 ], [ -115.510254, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.136230, 32.528289 ], [ -117.290039, 33.045508 ], [ -117.949219, 33.614619 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.034453 ], [ -119.069824, 34.070862 ], [ -119.443359, 34.343436 ], [ -120.366211, 34.452218 ], [ -120.629883, 34.615127 ], [ -120.739746, 35.155846 ], [ -121.706543, 36.155618 ], [ -122.541504, 37.544577 ], [ -122.519531, 37.788081 ], [ -122.958984, 38.117272 ], [ -123.728027, 38.942321 ], [ -123.859863, 39.757880 ], [ -124.387207, 40.313043 ], [ -124.167480, 41.145570 ], [ -124.211426, 42.000325 ], [ -124.541016, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.903809, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.387207, 47.724545 ], [ -124.694824, 48.180739 ], [ -124.562988, 48.385442 ], [ -123.112793, 48.034019 ], [ -122.585449, 47.100045 ], [ -122.343750, 47.353711 ], [ -122.497559, 48.180739 ], [ -122.849121, 48.994636 ], [ -95.163574, 48.994636 ], [ -95.163574, 49.382373 ], [ -94.812012, 49.382373 ] ] ], [ [ [ -140.998535, 67.204032 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.272515 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.556592 ], [ -137.460938, 58.904646 ], [ -136.472168, 59.467408 ], [ -135.483398, 59.789580 ], [ -134.934082, 59.265881 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.413223 ], [ -131.704102, 56.547372 ], [ -130.012207, 55.912273 ], [ -129.968262, 55.279115 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.491304 ], [ -132.253418, 56.365250 ], [ -133.527832, 57.183902 ], [ -134.077148, 58.124320 ], [ -135.043945, 58.182289 ], [ -136.625977, 58.217025 ], [ -137.790527, 58.493694 ], [ -139.855957, 59.534318 ], [ -142.580566, 60.086763 ], [ -143.964844, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.106934, 60.887700 ], [ -148.227539, 60.673179 ], [ -148.007812, 59.977005 ], [ -148.579102, 59.910976 ], [ -149.721680, 59.701014 ], [ -150.600586, 59.366794 ], [ -151.721191, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.336914, 61.037012 ], [ -150.622559, 61.280793 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.064840 ], [ -154.028320, 59.344395 ], [ -153.281250, 58.859224 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.313477, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.422852, 55.998381 ], [ -159.609375, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.213379, 55.366625 ], [ -162.246094, 55.028022 ], [ -163.059082, 54.686534 ], [ -164.794922, 54.406143 ], [ -164.948730, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.861328, 55.341642 ], [ -161.806641, 55.899956 ], [ -160.554199, 56.010666 ], [ -160.070801, 56.413901 ], [ -158.686523, 57.016814 ], [ -158.466797, 57.219608 ], [ -157.719727, 57.574779 ], [ -157.543945, 58.332567 ], [ -157.038574, 58.915992 ], [ -158.203125, 58.619777 ], [ -158.510742, 58.790978 ], [ -159.060059, 58.424730 ], [ -159.719238, 58.927334 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.074448 ], [ -161.345215, 58.665513 ], [ -161.960449, 58.665513 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.509766, 59.987998 ], [ -163.806152, 59.800634 ], [ -164.663086, 60.261617 ], [ -165.344238, 60.511343 ], [ -165.344238, 61.068917 ], [ -166.113281, 61.501734 ], [ -165.739746, 62.073026 ], [ -164.926758, 62.633770 ], [ -164.553223, 63.144431 ], [ -163.762207, 63.223730 ], [ -163.059082, 63.054959 ], [ -162.268066, 63.538763 ], [ -161.542969, 63.450509 ], [ -160.773926, 63.763065 ], [ -160.949707, 64.225493 ], [ -161.520996, 64.406431 ], [ -160.773926, 64.783488 ], [ -161.389160, 64.774125 ], [ -162.443848, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.948730, 64.444372 ], [ -166.420898, 64.689713 ], [ -166.838379, 65.090646 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.739902 ], [ -163.718262, 67.118748 ], [ -163.850098, 67.204032 ], [ -140.998535, 67.204032 ] ] ], [ [ [ -155.852051, 20.262197 ], [ -155.214844, 19.993998 ], [ -155.061035, 19.849394 ], [ -154.797363, 19.497664 ], [ -154.819336, 19.456234 ], [ -155.544434, 19.082884 ], [ -155.676270, 18.916680 ], [ -155.939941, 19.062118 ], [ -155.895996, 19.331878 ], [ -156.071777, 19.704658 ], [ -156.027832, 19.808054 ], [ -155.852051, 19.973349 ], [ -155.917969, 20.179724 ], [ -155.852051, 20.262197 ] ] ], [ [ [ -156.621094, 21.002471 ], [ -156.247559, 20.920397 ], [ -155.983887, 20.756114 ], [ -156.071777, 20.632784 ], [ -156.423340, 20.571082 ], [ -156.577148, 20.776659 ], [ -156.708984, 20.858812 ], [ -156.708984, 20.920397 ], [ -156.621094, 21.002471 ] ] ], [ [ [ -157.258301, 21.227942 ], [ -156.752930, 21.166484 ], [ -156.796875, 21.063997 ], [ -157.324219, 21.105000 ], [ -157.258301, 21.227942 ] ] ], [ [ [ -158.027344, 21.718680 ], [ -157.653809, 21.330315 ], [ -157.697754, 21.268900 ], [ -158.115234, 21.309846 ], [ -158.291016, 21.575719 ], [ -158.027344, 21.718680 ] ] ], [ [ [ -159.587402, 22.228090 ], [ -159.367676, 22.207749 ], [ -159.345703, 21.983801 ], [ -159.455566, 21.881890 ], [ -159.807129, 22.065278 ], [ -159.741211, 22.146708 ], [ -159.587402, 22.228090 ] ] ], [ [ [ -153.237305, 57.973157 ], [ -152.556152, 57.903174 ], [ -152.138672, 57.586559 ], [ -152.995605, 57.112385 ], [ -154.006348, 56.728622 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.456771 ], [ -153.764648, 57.821355 ], [ -153.237305, 57.973157 ] ] ], [ [ [ -171.738281, 63.782486 ], [ -171.123047, 63.587675 ], [ -170.485840, 63.694987 ], [ -169.672852, 63.430860 ], [ -168.684082, 63.292939 ], [ -168.771973, 63.184108 ], [ -169.519043, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.661621, 63.371832 ], [ -171.562500, 63.312683 ], [ -171.782227, 63.401361 ], [ -171.738281, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.585938, 59.910976 ], [ -166.201172, 59.756395 ], [ -166.838379, 59.944007 ], [ -167.453613, 60.207075 ], [ -166.464844, 60.381290 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 67.204032 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.058870 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.881348, 65.540270 ], [ -172.529297, 65.440002 ], [ -172.551270, 64.463323 ], [ -172.946777, 64.254141 ], [ -173.891602, 64.282760 ], [ -174.660645, 64.633292 ], [ -175.979004, 64.923542 ], [ -176.198730, 65.357677 ], [ -177.231445, 65.522068 ], [ -178.352051, 65.394298 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.107170 ], [ -179.890137, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -181.296387, 64.538996 ], [ -181.757812, 64.557881 ], [ -181.757812, 67.204032 ], [ -180.000000, 67.204032 ] ] ], [ [ [ -181.757812, 64.120195 ], [ -181.691895, 64.072200 ], [ -181.098633, 63.253412 ], [ -180.637207, 62.985180 ], [ -180.505371, 62.573106 ], [ -180.769043, 62.298581 ], [ -181.757812, 62.420903 ], [ -181.757812, 64.120195 ] ] ] ] } } ] } @@ -81,10 +77,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.692688 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.117959 ], [ -144.909668, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.710489 ], [ -140.998535, 66.513260 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.731223 ], [ -163.718262, 67.118748 ], [ -164.421387, 67.617589 ], [ -165.388184, 68.040461 ], [ -166.772461, 68.358699 ], [ -166.201172, 68.879358 ], [ -164.421387, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.854762 ], [ -161.916504, 70.333533 ], [ -160.927734, 70.444155 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.207520, 71.917709 ], [ -93.889160, 71.760191 ], [ -92.878418, 71.314877 ], [ -91.516113, 70.192550 ], [ -92.395020, 69.702868 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.471864 ], [ -90.000000, 68.800041 ], [ -89.208984, 69.256149 ], [ -88.242188, 68.736383 ], [ -88.242188, 68.065098 ], [ -88.308105, 67.875541 ], [ -88.242188, 67.825836 ], [ -88.242188, 65.802776 ], [ -140.998535, 65.802776 ], [ -140.998535, 66.513260 ], [ -140.976562, 69.710489 ], [ -139.108887, 69.472969 ], [ -137.548828, 68.989925 ], [ -136.494141, 68.895187 ], [ -135.615234, 69.318320 ], [ -134.406738, 69.626510 ], [ -132.934570, 69.503765 ], [ -131.440430, 69.945375 ], [ -129.792480, 70.192550 ], [ -129.111328, 69.778952 ], [ -128.364258, 70.013078 ], [ -128.144531, 70.480896 ], [ -127.441406, 70.377854 ], [ -125.749512, 69.480672 ], [ -124.431152, 70.155288 ], [ -124.277344, 69.395783 ], [ -123.068848, 69.565226 ], [ -122.673340, 69.854762 ], [ -121.464844, 69.794136 ], [ -119.948730, 69.380313 ], [ -117.597656, 69.013546 ], [ -116.235352, 68.839735 ], [ -115.246582, 68.903097 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.900354 ], [ -113.488770, 67.684429 ], [ -110.786133, 67.809245 ], [ -109.951172, 67.982873 ], [ -108.874512, 67.382150 ], [ -107.797852, 67.883815 ], [ -108.808594, 68.310027 ], [ -108.171387, 68.656555 ], [ -106.940918, 68.696505 ], [ -106.149902, 68.800041 ], [ -105.336914, 68.560384 ], [ -104.326172, 68.015798 ], [ -103.227539, 68.097907 ], [ -101.447754, 67.642676 ], [ -99.909668, 67.809245 ], [ -98.437500, 67.784335 ], [ -98.547363, 68.407268 ], [ -97.668457, 68.576441 ], [ -96.108398, 68.236823 ], [ -96.130371, 67.289015 ], [ -95.493164, 68.089709 ], [ -94.680176, 68.065098 ], [ -94.240723, 69.068563 ], [ -95.295410, 69.687618 ], [ -96.459961, 70.088047 ], [ -96.394043, 71.194838 ], [ -95.207520, 71.917709 ] ] ], [ [ [ -88.242188, 73.553302 ], [ -88.242188, 70.370474 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.757966 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.197754, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.428711, 73.131322 ], [ -88.395996, 73.534628 ], [ -88.242188, 73.553302 ] ] ], [ [ [ -98.217773, 70.140364 ], [ -97.163086, 69.862328 ], [ -96.547852, 69.679990 ], [ -95.646973, 69.107777 ], [ -96.262207, 68.760276 ], [ -97.624512, 69.060712 ], [ -98.437500, 68.950500 ], [ -99.799805, 69.395783 ], [ -98.920898, 69.710489 ], [ -98.217773, 70.140364 ] ] ], [ [ [ -115.180664, 73.315246 ], [ -114.169922, 73.118566 ], [ -114.675293, 72.653038 ], [ -112.434082, 72.951874 ], [ -111.049805, 72.448792 ], [ -109.929199, 72.958315 ], [ -109.006348, 72.633374 ], [ -108.193359, 71.649833 ], [ -107.687988, 72.067147 ], [ -108.391113, 73.086633 ], [ -107.512207, 73.233040 ], [ -106.523438, 73.073844 ], [ -105.402832, 72.672681 ], [ -104.765625, 71.698194 ], [ -104.458008, 70.995506 ], [ -102.788086, 70.495574 ], [ -100.986328, 70.020587 ], [ -101.096191, 69.580563 ], [ -102.722168, 69.503765 ], [ -102.084961, 69.115611 ], [ -102.436523, 68.752315 ], [ -104.238281, 68.911005 ], [ -105.952148, 69.178184 ], [ -107.116699, 69.115611 ], [ -109.006348, 68.776191 ], [ -113.312988, 68.536276 ], [ -113.862305, 69.005675 ], [ -115.224609, 69.279484 ], [ -116.103516, 69.170373 ], [ -117.333984, 69.960439 ], [ -116.674805, 70.065585 ], [ -115.136719, 70.237175 ], [ -113.730469, 70.192550 ], [ -112.412109, 70.363091 ], [ -114.345703, 70.598021 ], [ -116.477051, 70.517570 ], [ -117.905273, 70.539543 ], [ -118.432617, 70.909456 ], [ -116.103516, 71.307836 ], [ -117.663574, 71.293747 ], [ -119.399414, 71.559692 ], [ -118.564453, 72.309109 ], [ -117.861328, 72.705372 ], [ -115.180664, 73.315246 ] ] ], [ [ [ -92.416992, 81.258372 ], [ -91.120605, 80.721727 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.510360 ], [ -88.242188, 80.371707 ], [ -88.242188, 78.617003 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.246913 ], [ -90.812988, 78.215541 ], [ -92.878418, 78.344973 ], [ -93.955078, 78.750659 ], [ -93.933105, 79.113389 ], [ -93.142090, 79.379856 ], [ -94.965820, 79.371754 ], [ -96.064453, 79.702907 ], [ -96.701660, 80.156200 ], [ -96.020508, 80.600499 ], [ -95.317383, 80.907616 ], [ -94.306641, 80.976799 ], [ -94.724121, 81.204780 ], [ -92.416992, 81.258372 ] ] ], [ [ [ -121.530762, 74.449358 ], [ -120.102539, 74.241846 ], [ -117.553711, 74.188052 ], [ -116.586914, 73.898111 ], [ -115.510254, 73.472235 ], [ -116.762695, 73.220358 ], [ -119.223633, 72.521532 ], [ -120.454102, 71.821986 ], [ -120.454102, 71.385142 ], [ -123.090820, 70.902268 ], [ -123.618164, 71.343013 ], [ -125.925293, 71.869909 ], [ -125.507812, 72.289067 ], [ -124.804688, 73.022592 ], [ -123.947754, 73.677264 ], [ -124.914551, 74.289514 ], [ -121.530762, 74.449358 ] ] ], [ [ [ -100.349121, 73.843173 ], [ -99.162598, 73.633981 ], [ -97.382812, 73.757352 ], [ -97.119141, 73.472235 ], [ -98.041992, 72.990483 ], [ -96.547852, 72.561085 ], [ -96.723633, 71.656749 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -100.019531, 71.739548 ], [ -102.502441, 72.508328 ], [ -102.480469, 72.829052 ], [ -100.437012, 72.705372 ], [ -101.535645, 73.359348 ], [ -100.349121, 73.843173 ] ] ], [ [ [ -109.577637, 76.795721 ], [ -108.544922, 76.679785 ], [ -108.215332, 76.200727 ], [ -107.819824, 75.845169 ], [ -106.918945, 76.010783 ], [ -105.886230, 75.968226 ], [ -105.710449, 75.480640 ], [ -106.303711, 75.004940 ], [ -109.709473, 74.850672 ], [ -112.214355, 74.413974 ], [ -113.752441, 74.396253 ], [ -113.862305, 74.718037 ], [ -111.796875, 75.163300 ], [ -116.301270, 75.044684 ], [ -117.707520, 75.219460 ], [ -116.345215, 76.200727 ], [ -115.400391, 76.480910 ], [ -112.587891, 76.142958 ], [ -110.808105, 75.546598 ], [ -109.072266, 75.475131 ], [ -110.500488, 76.429449 ], [ -109.577637, 76.795721 ] ] ], [ [ [ -94.504395, 74.134078 ], [ -92.416992, 74.097996 ], [ -90.505371, 73.855397 ], [ -91.999512, 72.964753 ], [ -93.186035, 72.770574 ], [ -94.262695, 72.026510 ], [ -95.405273, 72.060381 ], [ -96.042480, 72.938986 ], [ -96.020508, 73.434689 ], [ -95.493164, 73.861506 ], [ -94.504395, 74.134078 ] ] ], [ [ [ -105.249023, 73.640171 ], [ -104.501953, 73.422156 ], [ -105.380859, 72.757553 ], [ -106.940918, 73.459729 ], [ -106.589355, 73.596792 ], [ -105.249023, 73.640171 ] ] ], [ [ [ -96.745605, 77.162046 ], [ -94.680176, 77.098423 ], [ -93.581543, 76.775629 ], [ -91.604004, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.966797, 76.074381 ], [ -90.000000, 75.882732 ], [ -89.824219, 75.845169 ], [ -89.187012, 75.612262 ], [ -88.242188, 75.579466 ], [ -88.242188, 74.402163 ], [ -89.758301, 74.514023 ], [ -90.000000, 74.543330 ], [ -92.416992, 74.839183 ], [ -92.768555, 75.386696 ], [ -92.878418, 75.882732 ], [ -93.889160, 76.320754 ], [ -95.954590, 76.439756 ], [ -97.119141, 76.750473 ], [ -96.745605, 77.162046 ] ] ], [ [ [ -116.191406, 77.645947 ], [ -116.345215, 76.875786 ], [ -117.114258, 76.532180 ], [ -118.037109, 76.480910 ], [ -119.904785, 76.053213 ], [ -121.508789, 75.898801 ], [ -122.849121, 76.116622 ], [ -121.157227, 76.865804 ], [ -119.091797, 77.513624 ], [ -117.575684, 77.499364 ], [ -116.191406, 77.645947 ] ] ], [ [ [ -94.855957, 75.644984 ], [ -93.977051, 75.297735 ], [ -93.603516, 74.982183 ], [ -94.152832, 74.590108 ], [ -95.603027, 74.665828 ], [ -96.811523, 74.925142 ], [ -96.284180, 75.375605 ], [ -94.855957, 75.644984 ] ] ], [ [ [ -98.503418, 76.720223 ], [ -97.734375, 76.258260 ], [ -97.712402, 75.742715 ], [ -98.151855, 74.999254 ], [ -99.799805, 74.896542 ], [ -100.876465, 75.056021 ], [ -100.854492, 75.639536 ], [ -102.502441, 75.563041 ], [ -102.568359, 76.336334 ], [ -101.491699, 76.305156 ], [ -99.975586, 76.644302 ], [ -98.569336, 76.588356 ], [ -98.503418, 76.720223 ] ] ], [ [ [ -88.242188, 80.639890 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.258372 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.087891, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.923340, 82.118384 ], [ -88.242188, 82.175425 ], [ -88.242188, 80.639890 ] ] ], [ [ [ -105.490723, 79.302640 ], [ -103.535156, 79.163075 ], [ -100.832520, 78.801980 ], [ -100.063477, 78.322757 ], [ -99.667969, 77.906466 ], [ -101.293945, 78.016453 ], [ -102.941895, 78.344973 ], [ -105.183105, 78.380430 ], [ -104.216309, 78.677557 ], [ -105.424805, 78.916608 ], [ -105.490723, 79.302640 ] ] ], [ [ [ -98.635254, 78.870048 ], [ -97.338867, 78.831810 ], [ -96.745605, 78.763511 ], [ -95.559082, 78.420193 ], [ -95.822754, 78.057443 ], [ -97.316895, 77.851100 ], [ -98.129883, 78.084693 ], [ -98.547363, 78.459822 ], [ -98.635254, 78.870048 ] ] ], [ [ [ -88.242188, 77.122930 ], [ -88.242188, 76.439756 ], [ -89.494629, 76.470633 ], [ -89.604492, 76.950415 ], [ -88.242188, 77.122930 ] ] ], [ [ [ -111.269531, 78.152551 ], [ -109.863281, 77.998190 ], [ -110.192871, 77.697553 ], [ -112.060547, 77.408678 ], [ -113.532715, 77.730282 ], [ -112.719727, 78.052896 ], [ -111.269531, 78.152551 ] ] ], [ [ [ -96.437988, 77.832589 ], [ -94.416504, 77.818688 ], [ -93.713379, 77.631836 ], [ -93.845215, 77.518374 ], [ -94.284668, 77.489849 ], [ -96.174316, 77.556308 ], [ -96.437988, 77.832589 ] ] ], [ [ [ -111.489258, 78.848821 ], [ -110.961914, 78.806246 ], [ -109.665527, 78.599643 ], [ -110.874023, 78.406954 ], [ -112.543945, 78.406954 ], [ -112.521973, 78.551769 ], [ -111.489258, 78.848821 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.061035, 71.145195 ], [ -154.335938, 70.692688 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.732422, 70.429440 ], [ -149.721680, 70.532222 ], [ -147.612305, 70.214875 ], [ -145.678711, 70.117959 ], [ -144.909668, 69.990535 ], [ -143.591309, 70.155288 ], [ -142.075195, 69.854762 ], [ -140.976562, 69.710489 ], [ -140.998535, 66.513260 ], [ -140.998535, 65.802776 ], [ -167.673340, 65.802776 ], [ -166.706543, 66.089364 ], [ -164.772949, 66.513260 ], [ -164.465332, 66.574483 ], [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.080457 ], [ -161.674805, 66.116068 ], [ -162.202148, 66.513260 ], [ -162.487793, 66.731223 ], [ -163.718262, 67.118748 ], [ -164.421387, 67.617589 ], [ -165.388184, 68.040461 ], [ -166.772461, 68.358699 ], [ -166.201172, 68.879358 ], [ -164.421387, 68.918910 ], [ -163.168945, 69.372573 ], [ -162.927246, 69.854762 ], [ -161.916504, 70.333533 ], [ -160.927734, 70.444155 ], [ -159.038086, 70.887885 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -181.757812, 69.457554 ], [ -181.406250, 69.395783 ], [ -180.000000, 68.966279 ], [ -177.539062, 68.196052 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.814453, 66.513260 ], [ -174.331055, 66.337505 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.058870 ], [ -171.848145, 66.912834 ], [ -171.013184, 66.513260 ], [ -169.892578, 65.973325 ], [ -170.310059, 65.802776 ], [ -178.857422, 65.802776 ], [ -178.681641, 66.107170 ], [ -179.890137, 65.874725 ], [ -179.824219, 65.802776 ], [ -180.000000, 65.802776 ], [ -181.757812, 65.802776 ], [ -181.757812, 69.457554 ] ] ], [ [ [ -180.000000, 71.517945 ], [ -179.868164, 71.559692 ], [ -179.033203, 71.552741 ], [ -177.583008, 71.265539 ], [ -177.670898, 71.130988 ], [ -178.681641, 70.895078 ], [ -180.000000, 70.830248 ], [ -181.098633, 70.779678 ], [ -181.274414, 71.095425 ], [ -180.000000, 71.517945 ] ] ] ] } } ] } ] } @@ -107,28 +103,28 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.947754, 42.859860 ], [ -78.925781, 42.956423 ], [ -79.013672, 43.261206 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.675818 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.771312 ], [ -70.180664, 42.147114 ], [ -69.873047, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.310824 ], [ -72.883301, 41.211722 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.245605, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.366211, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.247821 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.530762, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.959473, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.852170 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.859224 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.275879, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ] ] ], [ [ [ -79.936523, 62.380185 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.627286 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.011218 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.380185 ] ] ], [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.056641, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.228516, 47.754098 ], [ -55.393066, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.661124 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.761230, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.175760 ], [ -73.828125, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.490234, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.963867, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.744629, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.224773 ], [ -64.160156, 48.734455 ], [ -65.104980, 48.063397 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -67.785645, 45.706179 ], [ -67.785645, 47.070122 ], [ -68.225098, 47.353711 ], [ -68.906250, 47.189712 ], [ -69.235840, 47.442950 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.499023, 45.011419 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.628123 ], [ -78.728027, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.261206 ], [ -78.925781, 42.956423 ], [ -78.947754, 42.859860 ], [ -80.244141, 42.358544 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.423457 ], [ -82.419434, 42.972502 ], [ -82.133789, 43.564472 ], [ -82.551270, 45.352145 ], [ -83.583984, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.605957, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.133301, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.543750 ], [ -84.770508, 46.634351 ], [ -84.880371, 46.905246 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.160078 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.413086, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.005371, 66.258011 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.720215, 64.652112 ], [ -65.324707, 64.377941 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.905227 ], [ -72.224121, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.646259 ], [ -83.100586, 64.101007 ], [ -84.089355, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.143066, 17.811456 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.143066, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.362793, 14.413400 ], [ -89.582520, 14.370834 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.757812, 14.179186 ], [ -91.757812, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.593262, 16.467695 ], [ -90.703125, 16.678293 ], [ -91.076660, 16.909684 ], [ -91.450195, 17.245744 ], [ -91.010742, 17.245744 ], [ -91.010742, 17.811456 ], [ -89.143066, 17.811456 ] ] ], [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -38.364258, 65.694476 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.671387, 64.139369 ], [ -41.176758, 63.479957 ], [ -42.824707, 62.684228 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.031930 ], [ -46.252441, 60.855613 ], [ -48.251953, 60.855613 ], [ -49.240723, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.273223 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -87.055664, 21.534847 ], [ -86.813965, 21.330315 ], [ -86.835938, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.429199, 19.476950 ], [ -87.846680, 18.250220 ], [ -88.088379, 18.521283 ], [ -88.483887, 18.479609 ], [ -88.857422, 17.874203 ], [ -89.033203, 17.999632 ], [ -89.143066, 17.957832 ], [ -89.143066, 17.014768 ], [ -89.230957, 15.876809 ], [ -88.923340, 15.876809 ], [ -88.593750, 15.707663 ], [ -88.527832, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.143066, 15.072124 ], [ -89.230957, 14.881087 ], [ -89.143066, 14.668626 ], [ -89.362793, 14.413400 ], [ -89.582520, 14.370834 ], [ -89.538574, 14.243087 ], [ -90.000000, 13.923404 ], [ -90.065918, 13.880746 ], [ -90.087891, 13.731381 ], [ -90.615234, 13.902076 ], [ -91.230469, 13.923404 ], [ -91.757812, 14.179186 ], [ -91.757812, 18.771115 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.648926, 21.453069 ], [ -87.055664, 21.534847 ] ] ], [ [ [ -88.374023, 48.297812 ], [ -84.880371, 46.905246 ], [ -84.770508, 46.634351 ], [ -84.550781, 46.543750 ], [ -84.594727, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.133301, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.605957, 46.118942 ], [ -83.474121, 45.996962 ], [ -83.583984, 45.813486 ], [ -82.551270, 45.352145 ], [ -82.133789, 43.564472 ], [ -82.419434, 42.972502 ], [ -82.902832, 42.423457 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.967659 ], [ -83.034668, 41.836828 ], [ -82.683105, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.212245 ], [ -80.244141, 42.358544 ], [ -78.947754, 42.859860 ], [ -78.925781, 42.956423 ], [ -79.013672, 43.261206 ], [ -79.167480, 43.468868 ], [ -78.728027, 43.628123 ], [ -76.816406, 43.628123 ], [ -76.508789, 44.024422 ], [ -75.322266, 44.809122 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.011419 ], [ -71.411133, 45.259422 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.312500, 45.920587 ], [ -70.004883, 46.694667 ], [ -69.235840, 47.442950 ], [ -68.906250, 47.189712 ], [ -68.225098, 47.353711 ], [ -67.785645, 47.070122 ], [ -67.785645, 45.706179 ], [ -67.126465, 45.135555 ], [ -66.972656, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.675818 ], [ -70.817871, 42.859860 ], [ -70.817871, 42.326062 ], [ -70.488281, 41.804078 ], [ -70.070801, 41.771312 ], [ -70.180664, 42.147114 ], [ -69.873047, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.125488, 41.492121 ], [ -71.850586, 41.310824 ], [ -72.883301, 41.211722 ], [ -73.718262, 40.930115 ], [ -72.246094, 41.112469 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.959961, 40.747257 ], [ -74.245605, 40.480381 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.970703, 39.198205 ], [ -75.190430, 39.249271 ], [ -75.520020, 39.504041 ], [ -75.322266, 38.959409 ], [ -75.080566, 38.788345 ], [ -75.058594, 38.410558 ], [ -75.366211, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.247821 ], [ -75.717773, 37.944198 ], [ -76.223145, 38.324420 ], [ -76.354980, 39.147103 ], [ -76.530762, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.311035, 37.909534 ], [ -76.267090, 36.967449 ], [ -75.959473, 36.897194 ], [ -75.871582, 36.544949 ], [ -75.717773, 35.550105 ], [ -76.354980, 34.813803 ], [ -77.387695, 34.506557 ], [ -78.046875, 33.925130 ], [ -78.552246, 33.852170 ], [ -79.057617, 33.486435 ], [ -79.211426, 33.155948 ], [ -80.310059, 32.509762 ], [ -80.859375, 32.026706 ], [ -81.342773, 31.447410 ], [ -81.496582, 30.732393 ], [ -81.320801, 30.031055 ], [ -80.969238, 29.171349 ], [ -80.529785, 28.478349 ], [ -80.529785, 28.033198 ], [ -80.046387, 26.882880 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.085599 ], [ -81.166992, 25.204941 ], [ -81.320801, 25.641526 ], [ -81.716309, 25.859224 ], [ -82.705078, 27.488781 ], [ -82.858887, 27.877928 ], [ -82.639160, 28.555576 ], [ -82.924805, 29.094577 ], [ -83.715820, 29.935895 ], [ -84.089355, 30.088108 ], [ -85.100098, 29.630771 ], [ -85.275879, 29.688053 ], [ -85.781250, 30.145127 ], [ -86.396484, 30.391830 ], [ -87.539062, 30.278044 ], [ -88.417969, 30.391830 ], [ -89.187012, 30.315988 ], [ -89.582520, 30.164126 ], [ -89.406738, 29.897806 ], [ -89.428711, 29.496988 ], [ -89.208984, 29.286399 ], [ -89.406738, 29.152161 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.190533 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.152161 ], [ -91.625977, 29.668963 ], [ -91.757812, 29.649869 ], [ -91.757812, 48.180739 ], [ -91.647949, 48.136767 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.604492, 48.004625 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.297812 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.990234, 16.003576 ], [ -84.375000, 15.834536 ], [ -84.067383, 15.644197 ], [ -83.781738, 15.432501 ], [ -83.408203, 15.262989 ], [ -83.144531, 14.987240 ], [ -83.232422, 14.902322 ], [ -83.276367, 14.668626 ], [ -83.188477, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.560562 ], [ -83.540039, 13.132979 ], [ -83.496094, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.847656, 11.372339 ], [ -83.803711, 11.092166 ], [ -83.649902, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.177734, 9.210560 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.430664, 8.776511 ], [ -80.947266, 8.863362 ], [ -80.529785, 9.102097 ], [ -79.914551, 9.318990 ], [ -79.562988, 9.600750 ], [ -79.013672, 9.557417 ], [ -79.057617, 9.449062 ], [ -78.508301, 9.427387 ], [ -78.046875, 9.253936 ], [ -77.717285, 8.950193 ], [ -77.343750, 8.667918 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.425848 ], [ -71.389160, 12.382928 ], [ -71.125488, 12.103781 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.938477, 11.415418 ], [ -71.608887, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.080400 ], [ -71.257324, 9.145486 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.389160, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.168226 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.225098, 10.876465 ], [ -68.203125, 10.552622 ], [ -67.302246, 10.552622 ], [ -66.225586, 10.639014 ], [ -65.654297, 10.206813 ], [ -64.885254, 10.077037 ], [ -64.335938, 10.379765 ], [ -64.313965, 10.639014 ], [ -63.083496, 10.703792 ], [ -61.875000, 10.703792 ], [ -62.731934, 10.422988 ], [ -62.380371, 9.947209 ], [ -61.589355, 9.882275 ], [ -60.820312, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.139160, 8.602747 ], [ -59.765625, 8.363693 ], [ -60.556641, 7.776309 ], [ -60.644531, 7.406048 ], [ -60.292969, 7.035476 ], [ -60.534668, 6.860985 ], [ -61.149902, 6.686431 ], [ -61.127930, 6.227934 ], [ -61.413574, 5.965754 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.797852, 3.995781 ], [ -63.083496, 3.776559 ], [ -63.896484, 4.017699 ], [ -64.621582, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.357910, 3.798484 ], [ -64.401855, 3.118576 ], [ -64.270020, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.911267 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.313477, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.258301, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.565430, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.477539, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.262595 ], [ -78.420410, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.124023, 3.842332 ], [ -77.497559, 4.083453 ], [ -77.299805, 4.674980 ], [ -77.541504, 5.572250 ], [ -77.321777, 5.834616 ], [ -77.475586, 6.686431 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.420410, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.341953 ], [ -80.375977, 8.298470 ], [ -80.485840, 8.080985 ], [ -80.002441, 7.536764 ], [ -80.266113, 7.427837 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.209900 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.397461, 8.298470 ], [ -82.814941, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -83.496094, 8.450639 ], [ -83.715820, 8.646196 ], [ -83.583984, 8.819939 ], [ -83.627930, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.638672, 9.622414 ], [ -84.704590, 9.903921 ], [ -84.968262, 10.077037 ], [ -84.902344, 9.795678 ], [ -85.100098, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.649414, 9.925566 ], [ -85.803223, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.935059, 10.898042 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.447305 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.385254, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.495117, 13.304103 ], [ -87.780762, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.154376 ], [ -88.835449, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.802246, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.087891, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.923404 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.370834 ], [ -89.362793, 14.413400 ], [ -89.143066, 14.668626 ], [ -89.230957, 14.881087 ], [ -89.143066, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.220215, 15.728814 ], [ -88.110352, 15.686510 ], [ -87.890625, 15.855674 ], [ -87.604980, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.855674 ], [ -86.901855, 15.749963 ], [ -86.440430, 15.771109 ], [ -86.110840, 15.897942 ], [ -86.000977, 16.003576 ], [ -85.451660, 15.876809 ], [ -85.187988, 15.897942 ], [ -84.990234, 16.003576 ] ] ], [ [ [ -64.006348, 47.040182 ], [ -63.654785, 46.543750 ], [ -62.929688, 46.407564 ], [ -62.006836, 46.437857 ], [ -62.512207, 46.027482 ], [ -62.863770, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.401855, 46.724800 ], [ -64.006348, 47.040182 ] ] ], [ [ [ -77.409668, 62.552857 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.175760 ], [ -73.828125, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.132629 ], [ -69.587402, 61.058285 ], [ -69.609375, 60.217991 ], [ -69.279785, 58.961340 ], [ -68.378906, 58.802362 ], [ -67.653809, 58.217025 ], [ -66.203613, 58.768200 ], [ -65.236816, 59.866883 ], [ -64.577637, 60.337823 ], [ -63.808594, 59.445075 ], [ -62.490234, 58.170702 ], [ -61.391602, 56.968936 ], [ -61.787109, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.963867, 54.939766 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.774689 ], [ -56.162109, 53.644638 ], [ -55.744629, 53.265213 ], [ -55.678711, 52.146973 ], [ -57.128906, 51.412912 ], [ -58.776855, 51.069017 ], [ -60.029297, 50.247205 ], [ -61.721191, 50.078295 ], [ -63.852539, 50.289339 ], [ -65.368652, 50.303376 ], [ -66.401367, 50.233152 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.960938, 47.739323 ], [ -71.103516, 46.815099 ], [ -70.246582, 46.980252 ], [ -68.642578, 48.297812 ], [ -66.555176, 49.138597 ], [ -65.061035, 49.224773 ], [ -64.160156, 48.734455 ], [ -65.104980, 48.063397 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.890008 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.286224 ], [ -59.809570, 45.920587 ], [ -61.040039, 45.259422 ], [ -63.259277, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.368652, 43.548548 ], [ -66.115723, 43.612217 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.126465, 45.135555 ], [ -67.785645, 45.706179 ], [ -67.785645, 47.070122 ], [ -68.225098, 47.353711 ], [ -68.906250, 47.189712 ], [ -69.235840, 47.442950 ], [ -70.004883, 46.694667 ], [ -70.312500, 45.920587 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.411133, 45.259422 ], [ -71.499023, 45.011419 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.809122 ], [ -76.508789, 44.024422 ], [ -76.816406, 43.628123 ], [ -78.728027, 43.628123 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.261206 ], [ -78.925781, 42.956423 ], [ -78.947754, 42.859860 ], [ -80.244141, 42.358544 ], [ -81.276855, 42.212245 ], [ -82.441406, 41.672912 ], [ -82.683105, 41.672912 ], [ -83.034668, 41.836828 ], [ -83.144531, 41.967659 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.423457 ], [ -82.419434, 42.972502 ], [ -82.133789, 43.564472 ], [ -82.551270, 45.352145 ], [ -83.583984, 45.813486 ], [ -83.474121, 45.996962 ], [ -83.605957, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.133301, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.594727, 46.437857 ], [ -84.550781, 46.543750 ], [ -84.770508, 46.634351 ], [ -84.880371, 46.905246 ], [ -88.374023, 48.297812 ], [ -89.274902, 48.019324 ], [ -89.604492, 48.004625 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -91.647949, 48.136767 ], [ -91.757812, 48.180739 ], [ -91.757812, 57.160078 ], [ -90.900879, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.044434, 56.474628 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.727110 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.265625, 55.153766 ], [ -82.441406, 54.278055 ], [ -82.133789, 53.278353 ], [ -81.408691, 52.160455 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.136696 ], [ -79.826660, 54.661124 ], [ -78.222656, 55.141210 ], [ -77.102051, 55.838314 ], [ -76.530762, 56.535258 ], [ -76.618652, 57.207710 ], [ -77.299805, 58.054632 ], [ -78.508301, 58.802362 ], [ -77.343750, 59.855851 ], [ -77.761230, 60.759160 ], [ -78.112793, 62.319003 ], [ -77.409668, 62.552857 ] ] ], [ [ [ -63.852539, 67.204032 ], [ -63.413086, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.421730 ], [ -66.708984, 66.390361 ], [ -68.005371, 66.258011 ], [ -68.137207, 65.685430 ], [ -67.082520, 65.109148 ], [ -65.720215, 64.652112 ], [ -65.324707, 64.377941 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.774414, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.335449, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.884277, 62.329208 ], [ -71.015625, 62.905227 ], [ -72.224121, 63.401361 ], [ -71.894531, 63.675506 ], [ -74.838867, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.717285, 64.225493 ], [ -78.552246, 64.576754 ], [ -77.893066, 65.311829 ], [ -76.025391, 65.330178 ], [ -73.959961, 65.458261 ], [ -74.289551, 65.811781 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.751465, 67.204032 ], [ -63.852539, 67.204032 ] ] ], [ [ [ -81.364746, 67.204032 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.101007 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.955223 ], [ -91.757812, 62.855146 ], [ -91.757812, 67.204032 ], [ -81.364746, 67.204032 ] ] ], [ [ [ -55.876465, 51.631657 ], [ -55.415039, 51.590723 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.480957, 49.937080 ], [ -55.810547, 49.582226 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.481445, 49.253465 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.954102, 48.151428 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.649436 ], [ -53.525391, 46.619261 ], [ -54.184570, 46.800059 ], [ -53.964844, 47.620975 ], [ -54.228516, 47.754098 ], [ -55.393066, 46.890232 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.383474 ], [ -56.250000, 47.635784 ], [ -57.326660, 47.576526 ], [ -59.260254, 47.606163 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.238281, 48.516604 ], [ -58.381348, 49.124219 ], [ -57.348633, 50.722547 ], [ -56.733398, 51.289406 ], [ -55.876465, 51.631657 ] ] ], [ [ [ -85.891113, 65.739656 ], [ -85.166016, 65.658275 ], [ -84.968262, 65.219894 ], [ -84.462891, 65.366837 ], [ -83.891602, 65.109148 ], [ -82.792969, 64.764759 ], [ -81.650391, 64.453849 ], [ -81.562500, 63.975961 ], [ -80.815430, 64.052978 ], [ -80.112305, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.646259 ], [ -83.100586, 64.101007 ], [ -84.089355, 63.568120 ], [ -85.517578, 63.054959 ], [ -85.869141, 63.636504 ], [ -87.231445, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.891113, 65.739656 ] ] ], [ [ [ -87.055664, 21.534847 ], [ -86.813965, 21.330315 ], [ -86.835938, 20.858812 ], [ -87.385254, 20.262197 ], [ -87.626953, 19.642588 ], [ -87.429199, 19.476950 ], [ -87.846680, 18.250220 ], [ -88.088379, 18.521283 ], [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.811456 ], [ -91.010742, 17.811456 ], [ -91.010742, 17.245744 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.909684 ], [ -90.703125, 16.678293 ], [ -90.593262, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.757812, 16.045813 ], [ -91.757812, 18.771115 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.290406 ], [ -90.527344, 19.870060 ], [ -90.461426, 20.715015 ], [ -90.285645, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.268900 ], [ -88.549805, 21.493964 ], [ -87.648926, 21.453069 ], [ -87.055664, 21.534847 ] ] ], [ [ [ -82.265625, 23.180764 ], [ -81.408691, 23.120154 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.755921 ], [ -79.277344, 22.390714 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.585938, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.926758, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.289551, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.629883, 19.870060 ], [ -76.333008, 19.952696 ], [ -77.761230, 19.849394 ], [ -77.080078, 20.406420 ], [ -77.497559, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.022983 ], [ -78.728027, 21.596151 ], [ -79.277344, 21.555284 ], [ -80.222168, 21.820708 ], [ -80.507812, 22.044913 ], [ -81.826172, 22.187405 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.634293 ], [ -82.770996, 22.695120 ], [ -83.496094, 22.167058 ], [ -83.913574, 22.146708 ], [ -84.045410, 21.902278 ], [ -84.550781, 21.800308 ], [ -84.968262, 21.902278 ], [ -84.440918, 22.207749 ], [ -84.221191, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.180764 ] ] ], [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.718750, 19.704658 ], [ -71.586914, 19.890723 ], [ -70.795898, 19.870060 ], [ -70.202637, 19.621892 ], [ -69.938965, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.417079 ], [ -69.631348, 18.375379 ], [ -69.960938, 18.417079 ], [ -70.136719, 18.250220 ], [ -70.510254, 18.187607 ], [ -70.664062, 18.417079 ], [ -70.993652, 18.291950 ], [ -71.389160, 17.602139 ], [ -71.652832, 17.748687 ], [ -71.696777, 18.041421 ], [ -72.377930, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.208480 ], [ -73.916016, 18.020528 ], [ -74.465332, 18.333669 ], [ -74.377441, 18.667063 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.870117, 62.905227 ], [ -81.892090, 62.714462 ], [ -83.056641, 62.155241 ], [ -83.781738, 62.186014 ], [ -84.001465, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -64.182129, 49.951220 ], [ -62.863770, 49.710273 ], [ -61.831055, 49.282140 ], [ -61.809082, 49.109838 ], [ -62.292480, 49.081062 ], [ -63.588867, 49.396675 ], [ -64.511719, 49.866317 ], [ -64.182129, 49.951220 ] ] ], [ [ [ -79.936523, 62.380185 ], [ -79.519043, 62.359805 ], [ -79.255371, 62.155241 ], [ -79.650879, 61.627286 ], [ -80.090332, 61.721118 ], [ -80.354004, 62.011218 ], [ -80.310059, 62.083315 ], [ -79.936523, 62.380185 ] ] ], [ [ [ -77.805176, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.354980, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.761230, 17.853290 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.521283 ] ] ], [ [ [ -66.291504, 18.521283 ], [ -65.764160, 18.417079 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ], [ [ [ -78.178711, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.704895 ], [ -78.024902, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.903809, 26.411551 ], [ -78.969727, 26.784847 ], [ -78.508301, 26.863281 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.365723, 25.997550 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -75.739746, 67.204032 ], [ -75.871582, 67.152898 ], [ -76.992188, 67.101656 ], [ -77.036133, 67.204032 ], [ -75.739746, 67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -33.530273, 67.204032 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -38.364258, 65.694476 ], [ -39.814453, 65.458261 ], [ -40.671387, 64.839597 ], [ -40.671387, 64.139369 ], [ -41.176758, 63.479957 ], [ -42.824707, 62.684228 ], [ -42.407227, 61.897578 ], [ -43.374023, 60.097718 ], [ -44.780273, 60.031930 ], [ -46.252441, 60.855613 ], [ -48.251953, 60.855613 ], [ -49.240723, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.273223 ], [ -52.272949, 65.173806 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -53.964844, 67.204032 ], [ -33.530273, 67.204032 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -59.765625, 8.363693 ], [ -59.106445, 7.993957 ], [ -58.491211, 7.340675 ], [ -58.447266, 6.839170 ], [ -58.073730, 6.817353 ], [ -57.150879, 5.965754 ], [ -55.942383, 5.769036 ], [ -55.832520, 5.943900 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.747174 ], [ -54.470215, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.723583 ], [ -54.514160, 2.306506 ], [ -55.085449, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.964355, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.823423 ], [ -56.535645, 1.889306 ], [ -56.777344, 1.867345 ], [ -57.326660, 1.955187 ], [ -57.656250, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.425293, 1.472006 ], [ -58.535156, 1.274309 ], [ -59.018555, 1.318243 ], [ -59.633789, 1.779499 ], [ -59.721680, 2.240640 ], [ -59.963379, 2.745531 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.412137 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.413574, 5.965754 ], [ -61.127930, 6.227934 ], [ -61.149902, 6.686431 ], [ -60.534668, 6.860985 ], [ -60.292969, 7.035476 ], [ -60.644531, 7.406048 ], [ -60.556641, 7.776309 ], [ -59.765625, 8.363693 ] ] ], [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.317749 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.944336, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.488046 ], [ -3.098145, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.788929 ], [ -5.581055, 55.304138 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.864258, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.743652, 65.811781 ], [ -13.601074, 65.127638 ], [ -14.919434, 64.358931 ], [ -17.797852, 63.675506 ], [ -18.654785, 63.499573 ], [ -22.763672, 63.956673 ], [ -21.774902, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.081389 ], [ -22.236328, 65.375994 ], [ -24.323730, 65.612952 ], [ -23.642578, 66.258011 ], [ -22.126465, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ], [ [ [ -6.723633, 55.166319 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.042480, 53.146770 ], [ -6.789551, 52.254709 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.869130 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.580566, 55.128649 ], [ -6.723633, 55.166319 ] ] ], [ [ [ -8.261719, 42.277309 ], [ -8.020020, 41.787697 ], [ -7.426758, 41.787697 ], [ -7.250977, 41.918629 ], [ -6.657715, 41.885921 ], [ -6.394043, 41.376809 ], [ -6.855469, 41.112469 ], [ -6.855469, 40.329796 ], [ -7.031250, 40.178873 ], [ -7.075195, 39.707187 ], [ -7.492676, 39.622615 ], [ -7.097168, 39.027719 ], [ -7.382812, 38.376115 ], [ -7.031250, 38.082690 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.422526 ], [ -7.448730, 37.090240 ], [ -7.844238, 36.844461 ], [ -8.371582, 36.985003 ], [ -8.898926, 36.862043 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.736946 ], [ -9.448242, 39.385264 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.789062, 41.178654 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.885921 ], [ -8.679199, 42.130821 ], [ -8.261719, 42.277309 ] ] ], [ [ [ -61.105957, 10.898042 ], [ -60.886230, 10.854886 ], [ -60.930176, 10.098670 ], [ -61.765137, 9.990491 ], [ -61.940918, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.768556 ], [ -61.105957, 10.898042 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -84.990234, 16.003576 ], [ -84.375000, 15.834536 ], [ -84.067383, 15.644197 ], [ -83.781738, 15.432501 ], [ -83.408203, 15.262989 ], [ -83.144531, 14.987240 ], [ -83.232422, 14.902322 ], [ -83.276367, 14.668626 ], [ -83.188477, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.560562 ], [ -83.540039, 13.132979 ], [ -83.496094, 12.876070 ], [ -83.474121, 12.425848 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.847656, 11.372339 ], [ -83.803711, 11.092166 ], [ -83.649902, 10.941192 ], [ -83.408203, 10.401378 ], [ -82.177734, 9.210560 ], [ -82.199707, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.037003 ], [ -81.430664, 8.776511 ], [ -80.947266, 8.863362 ], [ -80.529785, 9.102097 ], [ -79.914551, 9.318990 ], [ -79.562988, 9.600750 ], [ -79.013672, 9.557417 ], [ -79.057617, 9.449062 ], [ -78.508301, 9.427387 ], [ -78.046875, 9.253936 ], [ -77.717285, 8.950193 ], [ -77.343750, 8.667918 ], [ -76.838379, 8.646196 ], [ -76.091309, 9.340672 ], [ -75.673828, 9.449062 ], [ -75.673828, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.092166 ], [ -74.267578, 11.092166 ], [ -74.201660, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.246094, 11.953349 ], [ -71.762695, 12.425848 ], [ -71.389160, 12.382928 ], [ -71.125488, 12.103781 ], [ -71.323242, 11.781325 ], [ -71.367188, 11.544616 ], [ -71.938477, 11.415418 ], [ -71.608887, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.080400 ], [ -71.257324, 9.145486 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.389160, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.168226 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.225098, 10.876465 ], [ -68.203125, 10.552622 ], [ -67.302246, 10.552622 ], [ -66.225586, 10.639014 ], [ -65.654297, 10.206813 ], [ -64.885254, 10.077037 ], [ -64.335938, 10.379765 ], [ -64.313965, 10.639014 ], [ -63.083496, 10.703792 ], [ -61.875000, 10.703792 ], [ -62.731934, 10.422988 ], [ -62.380371, 9.947209 ], [ -61.589355, 9.882275 ], [ -60.820312, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.139160, 8.602747 ], [ -59.106445, 7.993957 ], [ -58.491211, 7.340675 ], [ -58.447266, 6.839170 ], [ -58.073730, 6.817353 ], [ -57.150879, 5.965754 ], [ -55.942383, 5.769036 ], [ -55.832520, 5.943900 ], [ -55.041504, 6.031311 ], [ -53.964844, 5.747174 ], [ -54.470215, 4.893941 ], [ -54.404297, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.723583 ], [ -54.514160, 2.306506 ], [ -55.085449, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.964355, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.898438, 2.021065 ], [ -55.986328, 1.823423 ], [ -56.535645, 1.889306 ], [ -56.777344, 1.867345 ], [ -57.326660, 1.955187 ], [ -57.656250, 1.691649 ], [ -58.117676, 1.515936 ], [ -58.425293, 1.472006 ], [ -58.535156, 1.274309 ], [ -59.018555, 1.318243 ], [ -59.633789, 1.779499 ], [ -59.721680, 2.240640 ], [ -59.963379, 2.745531 ], [ -59.809570, 3.601142 ], [ -59.545898, 3.951941 ], [ -59.765625, 4.412137 ], [ -60.117188, 4.565474 ], [ -59.985352, 5.003394 ], [ -60.205078, 5.244128 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.974121, 4.543570 ], [ -62.094727, 4.171115 ], [ -62.797852, 3.995781 ], [ -63.083496, 3.776559 ], [ -63.896484, 4.017699 ], [ -64.621582, 4.149201 ], [ -64.819336, 4.061536 ], [ -64.357910, 3.798484 ], [ -64.401855, 3.118576 ], [ -64.270020, 2.504085 ], [ -63.413086, 2.416276 ], [ -63.369141, 2.196727 ], [ -64.072266, 1.911267 ], [ -64.204102, 1.493971 ], [ -65.346680, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.313477, 0.725078 ], [ -66.884766, 1.252342 ], [ -67.060547, 1.120534 ], [ -67.258301, 1.713612 ], [ -67.543945, 2.043024 ], [ -67.873535, 1.691649 ], [ -69.807129, 1.713612 ], [ -69.807129, 1.098565 ], [ -69.213867, 0.988720 ], [ -69.257812, 0.593251 ], [ -69.455566, 0.703107 ], [ -70.004883, 0.549308 ], [ -70.026855, 0.000000 ], [ -70.026855, -0.175781 ], [ -69.565430, -0.549308 ], [ -69.411621, -1.120534 ], [ -69.477539, -1.757537 ], [ -73.388672, -1.757537 ], [ -73.652344, -1.252342 ], [ -74.113770, -1.010690 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.065918 ], [ -75.366211, -0.153808 ], [ -75.651855, 0.000000 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.431641, 0.395505 ], [ -77.673340, 0.834931 ], [ -77.849121, 0.812961 ], [ -78.859863, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.757537 ], [ -78.662109, 2.262595 ], [ -78.420410, 2.635789 ], [ -77.937012, 2.701635 ], [ -77.124023, 3.842332 ], [ -77.497559, 4.083453 ], [ -77.299805, 4.674980 ], [ -77.541504, 5.572250 ], [ -77.321777, 5.834616 ], [ -77.475586, 6.686431 ], [ -77.871094, 7.231699 ], [ -78.222656, 7.514981 ], [ -78.420410, 8.059230 ], [ -78.178711, 8.320212 ], [ -78.442383, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.562988, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.156250, 8.341953 ], [ -80.375977, 8.298470 ], [ -80.485840, 8.080985 ], [ -80.002441, 7.536764 ], [ -80.266113, 7.427837 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.209900 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.710992 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.167993 ], [ -82.397461, 8.298470 ], [ -82.814941, 8.298470 ], [ -82.858887, 8.080985 ], [ -82.968750, 8.233237 ], [ -83.496094, 8.450639 ], [ -83.715820, 8.646196 ], [ -83.583984, 8.819939 ], [ -83.627930, 9.058702 ], [ -83.913574, 9.297307 ], [ -84.638672, 9.622414 ], [ -84.704590, 9.903921 ], [ -84.968262, 10.077037 ], [ -84.902344, 9.795678 ], [ -85.100098, 9.557417 ], [ -85.341797, 9.838979 ], [ -85.649414, 9.925566 ], [ -85.803223, 10.141932 ], [ -85.781250, 10.444598 ], [ -85.649414, 10.746969 ], [ -85.935059, 10.898042 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.447305 ], [ -87.670898, 12.918907 ], [ -87.561035, 13.068777 ], [ -87.385254, 12.918907 ], [ -87.319336, 12.983148 ], [ -87.495117, 13.304103 ], [ -87.780762, 13.389620 ], [ -87.912598, 13.154376 ], [ -88.483887, 13.154376 ], [ -88.835449, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.802246, 13.517838 ], [ -90.000000, 13.667338 ], [ -90.087891, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.923404 ], [ -89.538574, 14.243087 ], [ -89.582520, 14.370834 ], [ -89.362793, 14.413400 ], [ -89.143066, 14.668626 ], [ -89.230957, 14.881087 ], [ -89.143066, 15.072124 ], [ -88.681641, 15.347762 ], [ -88.220215, 15.728814 ], [ -88.110352, 15.686510 ], [ -87.890625, 15.855674 ], [ -87.604980, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.855674 ], [ -86.901855, 15.749963 ], [ -86.440430, 15.771109 ], [ -86.110840, 15.897942 ], [ -86.000977, 16.003576 ], [ -85.451660, 15.876809 ], [ -85.187988, 15.897942 ], [ -84.990234, 16.003576 ] ] ], [ [ [ -82.265625, 23.180764 ], [ -81.408691, 23.120154 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.755921 ], [ -79.277344, 22.390714 ], [ -78.354492, 22.512557 ], [ -76.530762, 21.207459 ], [ -76.201172, 21.227942 ], [ -75.585938, 21.022983 ], [ -75.673828, 20.735566 ], [ -74.926758, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.289551, 20.055931 ], [ -74.970703, 19.932041 ], [ -75.629883, 19.870060 ], [ -76.333008, 19.952696 ], [ -77.761230, 19.849394 ], [ -77.080078, 20.406420 ], [ -77.497559, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.022983 ], [ -78.728027, 21.596151 ], [ -79.277344, 21.555284 ], [ -80.222168, 21.820708 ], [ -80.507812, 22.044913 ], [ -81.826172, 22.187405 ], [ -82.177734, 22.390714 ], [ -81.804199, 22.634293 ], [ -82.770996, 22.695120 ], [ -83.496094, 22.167058 ], [ -83.913574, 22.146708 ], [ -84.045410, 21.902278 ], [ -84.550781, 21.800308 ], [ -84.968262, 21.902278 ], [ -84.440918, 22.207749 ], [ -84.221191, 22.573438 ], [ -83.781738, 22.796439 ], [ -83.276367, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.180764 ] ] ], [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.718750, 19.704658 ], [ -71.586914, 19.890723 ], [ -70.795898, 19.870060 ], [ -70.202637, 19.621892 ], [ -69.938965, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.213867, 19.311143 ], [ -69.257812, 19.020577 ], [ -68.818359, 18.979026 ], [ -68.312988, 18.604601 ], [ -68.686523, 18.208480 ], [ -69.169922, 18.417079 ], [ -69.631348, 18.375379 ], [ -69.960938, 18.417079 ], [ -70.136719, 18.250220 ], [ -70.510254, 18.187607 ], [ -70.664062, 18.417079 ], [ -70.993652, 18.291950 ], [ -71.389160, 17.602139 ], [ -71.652832, 17.748687 ], [ -71.696777, 18.041421 ], [ -72.377930, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.208480 ], [ -73.916016, 18.020528 ], [ -74.465332, 18.333669 ], [ -74.377441, 18.667063 ], [ -72.685547, 18.437925 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.773438, 19.476950 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ], [ [ [ -88.308105, 18.500447 ], [ -88.286133, 18.354526 ], [ -88.110352, 18.354526 ], [ -88.132324, 18.083201 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.497389 ], [ -88.308105, 17.140790 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.256867 ], [ -88.725586, 16.235772 ], [ -88.923340, 15.876809 ], [ -89.230957, 15.876809 ], [ -89.143066, 17.014768 ], [ -89.143066, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.857422, 17.874203 ], [ -88.483887, 18.479609 ], [ -88.308105, 18.500447 ] ] ], [ [ [ -77.805176, 18.521283 ], [ -76.904297, 18.396230 ], [ -76.354980, 18.166730 ], [ -76.201172, 17.895114 ], [ -76.904297, 17.874203 ], [ -77.211914, 17.706828 ], [ -77.761230, 17.853290 ], [ -78.332520, 18.229351 ], [ -78.222656, 18.458768 ], [ -77.805176, 18.521283 ] ] ], [ [ [ -66.291504, 18.521283 ], [ -65.764160, 18.417079 ], [ -65.588379, 18.229351 ], [ -65.852051, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.192383, 17.936929 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ], [ -66.291504, 18.521283 ] ] ], [ [ [ -78.178711, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.347097 ], [ -77.541504, 23.765237 ], [ -77.783203, 23.704895 ], [ -78.024902, 24.287027 ], [ -78.398438, 24.567108 ], [ -78.178711, 25.204941 ] ] ], [ [ [ -61.105957, 10.898042 ], [ -60.886230, 10.854886 ], [ -60.930176, 10.098670 ], [ -61.765137, 9.990491 ], [ -61.940918, 10.098670 ], [ -61.655273, 10.358151 ], [ -61.677246, 10.768556 ], [ -61.105957, 10.898042 ] ] ], [ [ [ -78.508301, 26.863281 ], [ -77.849121, 26.843677 ], [ -77.827148, 26.588527 ], [ -78.903809, 26.411551 ], [ -78.969727, 26.784847 ], [ -78.508301, 26.863281 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -76.992188, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.365723, 25.997550 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.932617, 35.764343 ], [ -5.185547, 35.746512 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.592773, 35.173808 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.296387, 32.268555 ], [ -2.614746, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.902225 ], [ -4.855957, 30.505484 ], [ -5.251465, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.679199, 28.844674 ], [ -8.657227, 27.664069 ], [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.347762 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.373535, 14.923554 ], [ 0.307617, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 1.757812, 12.704651 ], [ 1.757812, 11.609193 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.718778 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.981505 ], [ -3.999023, 5.178482 ], [ -4.658203, 5.156599 ], [ -5.822754, 4.981505 ], [ -7.514648, 4.346411 ], [ -7.976074, 4.346411 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.447754, 6.773716 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.253496 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.062500, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.567871, 10.206813 ], [ -14.699707, 10.660608 ], [ -14.831543, 10.876465 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.831055, 13.154376 ], [ -16.721191, 13.603278 ], [ -17.116699, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -16.962891, 21.881890 ], [ -16.589355, 22.167058 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.974121, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.608174 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.825425 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.426270, 32.045333 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.687782 ], [ -6.921387, 34.107256 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.764343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.010254, 58.631217 ], [ -4.064941, 57.551208 ], [ -3.054199, 57.692406 ], [ -1.955566, 57.680660 ], [ -2.219238, 56.872996 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.317749 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -2.482910, 50.499452 ], [ -2.944336, 50.694718 ], [ -3.625488, 50.233152 ], [ -4.548340, 50.345460 ], [ -5.251465, 49.965356 ], [ -5.778809, 50.162824 ], [ -4.306641, 51.206883 ], [ -3.405762, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.273438, 51.984880 ], [ -4.218750, 52.295042 ], [ -4.768066, 52.842595 ], [ -4.570312, 53.488046 ], [ -3.098145, 53.409532 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.610255 ], [ -4.833984, 54.788017 ], [ -5.075684, 55.065787 ], [ -4.724121, 55.503750 ], [ -5.053711, 55.788929 ], [ -5.581055, 55.304138 ], [ -5.646973, 56.279961 ], [ -6.152344, 56.788845 ], [ -5.778809, 57.821355 ], [ -5.009766, 58.631217 ], [ -4.218750, 58.551061 ], [ -3.010254, 58.631217 ] ] ], [ [ [ -16.171875, 66.530768 ], [ -15.864258, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.743652, 65.811781 ], [ -13.601074, 65.127638 ], [ -14.919434, 64.358931 ], [ -17.797852, 63.675506 ], [ -18.654785, 63.499573 ], [ -22.763672, 63.956673 ], [ -21.774902, 64.396938 ], [ -23.950195, 64.886265 ], [ -22.192383, 65.081389 ], [ -22.236328, 65.375994 ], [ -24.323730, 65.612952 ], [ -23.642578, 66.258011 ], [ -22.126465, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.530768 ] ] ], [ [ [ -6.723633, 55.166319 ], [ -5.668945, 54.559323 ], [ -6.196289, 53.865486 ], [ -6.042480, 53.146770 ], [ -6.789551, 52.254709 ], [ -8.569336, 51.672555 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.869130 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.580566, 55.128649 ], [ -6.723633, 55.166319 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.102539, -0.065918 ], [ -74.443359, -0.527336 ], [ -74.113770, -1.010690 ], [ -73.652344, -1.252342 ], [ -73.388672, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ], [ [ [ -60.205078, 5.244128 ], [ -59.985352, 5.003394 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.412137 ], [ -59.545898, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.963379, 2.745531 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.779499 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.326660, 1.955187 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.889306 ], [ -55.986328, 1.823423 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.964355, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.085449, 2.526037 ], [ -54.514160, 2.306506 ], [ -54.096680, 2.108899 ], [ -53.767090, 2.372369 ], [ -53.547363, 2.328460 ], [ -53.415527, 2.043024 ], [ -52.932129, 2.130856 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.250209 ], [ -51.657715, 4.149201 ], [ -51.306152, 4.193030 ], [ -51.064453, 3.645000 ], [ -50.515137, 1.889306 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.593251 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.411621, -1.120534 ], [ -69.565430, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.543945, 2.043024 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.313477, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.401855, 3.118576 ], [ -64.357910, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.621582, 4.149201 ], [ -63.896484, 4.017699 ], [ -63.083496, 3.776559 ], [ -62.797852, 3.995781 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.205078, 5.244128 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.811523, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.130856 ], [ -53.415527, 2.043024 ], [ -53.547363, 2.328460 ], [ -53.767090, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ -5.932617, 35.764343 ], [ -5.185547, 35.746512 ], [ -4.592285, 35.335293 ], [ -3.647461, 35.406961 ], [ -2.592773, 35.173808 ], [ -2.175293, 35.173808 ], [ -1.801758, 34.524661 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.296387, 32.268555 ], [ -2.614746, 32.101190 ], [ -3.076172, 31.728167 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.902225 ], [ -4.855957, 30.505484 ], [ -5.251465, 29.993002 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.679199, 28.844674 ], [ -8.679199, 27.391278 ], [ -4.921875, 24.966140 ], [ 0.000000, 21.800308 ], [ 1.757812, 20.653346 ], [ 1.757812, 15.347762 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.373535, 14.923554 ], [ 0.307617, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 1.757812, 12.704651 ], [ 1.757812, 11.609193 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.955566, 4.718778 ], [ -2.856445, 5.003394 ], [ -3.317871, 4.981505 ], [ -3.999023, 5.178482 ], [ -4.658203, 5.156599 ], [ -5.822754, 4.981505 ], [ -7.514648, 4.346411 ], [ -7.976074, 4.346411 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.447754, 6.773716 ], [ -11.711426, 6.860985 ], [ -12.436523, 7.253496 ], [ -12.941895, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.062500, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.567871, 10.206813 ], [ -14.699707, 10.660608 ], [ -14.831543, 10.876465 ], [ -15.139160, 11.049038 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.303711, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.831055, 13.154376 ], [ -16.721191, 13.603278 ], [ -17.116699, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.923554 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.678293 ], [ -16.259766, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.103648 ], [ -16.369629, 19.601194 ], [ -16.281738, 20.097206 ], [ -16.545410, 20.571082 ], [ -17.072754, 21.002471 ], [ -17.028809, 21.412162 ], [ -16.962891, 21.881890 ], [ -16.589355, 22.167058 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.974121, 23.725012 ], [ -15.424805, 24.367114 ], [ -15.095215, 24.527135 ], [ -14.831543, 25.105497 ], [ -14.809570, 25.641526 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.608174 ], [ -13.139648, 27.644606 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.825425 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.821777, 31.184609 ], [ -9.426270, 32.045333 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.247876 ], [ -7.646484, 33.687782 ], [ -6.921387, 34.107256 ], [ -6.240234, 35.137879 ], [ -5.932617, 35.764343 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 41.178654 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.668419 ], [ -4.987793, 36.315125 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.448730, 37.090240 ], [ -7.844238, 36.844461 ], [ -8.371582, 36.985003 ], [ -8.898926, 36.862043 ], [ -8.745117, 37.649034 ], [ -8.833008, 38.272689 ], [ -9.294434, 38.358888 ], [ -9.536133, 38.736946 ], [ -9.448242, 39.385264 ], [ -9.052734, 39.757880 ], [ -8.986816, 40.162083 ], [ -8.767090, 40.763901 ], [ -8.789062, 41.178654 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.755225 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.676454 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -53.964844, 5.747174 ], [ -52.888184, 5.419148 ], [ -51.811523, 4.565474 ], [ -51.657715, 4.149201 ], [ -52.250977, 3.250209 ], [ -52.558594, 2.504085 ], [ -52.932129, 2.130856 ], [ -53.415527, 2.043024 ], [ -53.547363, 2.328460 ], [ -53.767090, 2.372369 ], [ -54.096680, 2.108899 ], [ -54.514160, 2.306506 ], [ -54.272461, 2.745531 ], [ -54.184570, 3.184394 ], [ -54.008789, 3.623071 ], [ -54.404297, 4.214943 ], [ -54.470215, 4.893941 ], [ -53.964844, 5.747174 ] ] ], [ [ [ 1.757812, 50.972265 ], [ 1.757812, 41.178654 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.428223, 37.439974 ], [ -2.153320, 36.668419 ], [ -4.372559, 36.668419 ], [ -4.987793, 36.315125 ], [ -5.383301, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.525879, 36.949892 ], [ -7.448730, 37.090240 ], [ -7.536621, 37.422526 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.082690 ], [ -7.382812, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.622615 ], [ -7.075195, 39.707187 ], [ -7.031250, 40.178873 ], [ -6.855469, 40.329796 ], [ -6.855469, 41.112469 ], [ -6.394043, 41.376809 ], [ -6.657715, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.426758, 41.787697 ], [ -8.020020, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.679199, 42.130821 ], [ -9.030762, 41.885921 ], [ -8.986816, 42.585444 ], [ -9.382324, 43.020714 ], [ -7.976074, 43.755225 ], [ -6.745605, 43.564472 ], [ -5.405273, 43.580391 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.889648, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -2.219238, 47.070122 ], [ -2.966309, 47.576526 ], [ -4.482422, 47.960502 ], [ -4.592285, 48.676454 ], [ -3.295898, 48.893615 ], [ -1.625977, 48.647428 ], [ -1.933594, 49.781264 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 1.757812, 50.972265 ] ] ], [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.757812, 11.609193 ] ] ], [ [ [ 1.757812, 15.347762 ], [ 1.757812, 12.704651 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.307617, 14.434680 ], [ 0.373535, 14.923554 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.347762 ] ] ], [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.296387, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.859863, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.673340, 0.834931 ], [ -77.431641, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.651855, 0.000000 ], [ -75.366211, -0.153808 ], [ -75.102539, -0.065918 ], [ -74.443359, -0.527336 ], [ -74.113770, -1.010690 ], [ -73.652344, -1.252342 ], [ -73.388672, -1.757537 ], [ -80.815430, -1.757537 ], [ -80.925293, -1.054628 ], [ -80.573730, -0.900842 ], [ -80.397949, -0.285643 ], [ -80.244141, 0.000000 ], [ -80.024414, 0.351560 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.988720 ], [ -78.859863, 1.384143 ] ] ], [ [ [ -60.205078, 5.244128 ], [ -59.985352, 5.003394 ], [ -60.117188, 4.565474 ], [ -59.765625, 4.412137 ], [ -59.545898, 3.951941 ], [ -59.809570, 3.601142 ], [ -59.963379, 2.745531 ], [ -59.721680, 2.240640 ], [ -59.633789, 1.779499 ], [ -59.018555, 1.318243 ], [ -58.535156, 1.274309 ], [ -58.425293, 1.472006 ], [ -58.117676, 1.515936 ], [ -57.656250, 1.691649 ], [ -57.326660, 1.955187 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.889306 ], [ -55.986328, 1.823423 ], [ -55.898438, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.964355, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.085449, 2.526037 ], [ -54.514160, 2.306506 ], [ -54.096680, 2.108899 ], [ -53.767090, 2.372369 ], [ -53.547363, 2.328460 ], [ -53.415527, 2.043024 ], [ -52.932129, 2.130856 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.250209 ], [ -51.657715, 4.149201 ], [ -51.306152, 4.193030 ], [ -51.064453, 3.645000 ], [ -50.515137, 1.889306 ], [ -49.965820, 1.735574 ], [ -49.943848, 1.054628 ], [ -50.690918, 0.219726 ], [ -50.383301, -0.087891 ], [ -48.625488, -0.241699 ], [ -48.581543, -1.230374 ], [ -47.834473, -0.593251 ], [ -46.560059, -0.944781 ], [ -44.912109, -1.559866 ], [ -44.736328, -1.757537 ], [ -69.477539, -1.757537 ], [ -69.411621, -1.120534 ], [ -69.565430, -0.549308 ], [ -70.026855, -0.175781 ], [ -70.026855, 0.000000 ], [ -70.004883, 0.549308 ], [ -69.455566, 0.703107 ], [ -69.257812, 0.593251 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.098565 ], [ -69.807129, 1.713612 ], [ -67.873535, 1.691649 ], [ -67.543945, 2.043024 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.120534 ], [ -66.884766, 1.252342 ], [ -66.313477, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.346680, 1.098565 ], [ -64.204102, 1.493971 ], [ -64.072266, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.413086, 2.416276 ], [ -64.270020, 2.504085 ], [ -64.401855, 3.118576 ], [ -64.357910, 3.798484 ], [ -64.819336, 4.061536 ], [ -64.621582, 4.149201 ], [ -63.896484, 4.017699 ], [ -63.083496, 3.776559 ], [ -62.797852, 3.995781 ], [ -62.094727, 4.171115 ], [ -60.974121, 4.543570 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.205078, 5.244128 ] ] ], [ [ [ 1.757812, 11.609193 ], [ 1.757812, 6.118708 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.757812, 11.609193 ] ] ], [ [ [ 1.757812, 15.347762 ], [ 1.757812, 12.704651 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.307617, 14.434680 ], [ 0.373535, 14.923554 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 1.757812, 15.347762 ] ] ], [ [ [ 1.757812, 36.633162 ], [ 1.757812, 20.653346 ], [ 0.000000, 21.800308 ], [ -4.921875, 24.966140 ], [ -8.679199, 27.391278 ], [ -8.679199, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.251465, 29.993002 ], [ -4.855957, 30.505484 ], [ -3.691406, 30.902225 ], [ -3.647461, 31.634676 ], [ -3.076172, 31.728167 ], [ -2.614746, 32.101190 ], [ -1.296387, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.801758, 34.524661 ], [ -2.175293, 35.173808 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 1.757812, 36.633162 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.150861 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.554688, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.532227, 71.427179 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.222311 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.125430 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.279484 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.646359 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.513982 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.270996, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.437205 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -91.757812, 70.058092 ], [ -91.757812, 70.392606 ], [ -91.516113, 70.192550 ], [ -91.757812, 70.058092 ] ] ], [ [ [ -80.354004, 73.757352 ], [ -78.068848, 73.652545 ], [ -76.333008, 73.099413 ], [ -76.245117, 72.829052 ], [ -78.398438, 72.874402 ], [ -79.475098, 72.744522 ], [ -79.782715, 72.803086 ], [ -80.881348, 73.334161 ], [ -80.837402, 73.695780 ], [ -80.354004, 73.757352 ] ] ], [ [ [ -85.825195, 73.806447 ], [ -86.550293, 73.156808 ], [ -85.781250, 72.534726 ], [ -84.858398, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.718432 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.349128 ], [ -77.827148, 72.751039 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.559692 ], [ -71.191406, 70.916641 ], [ -68.774414, 70.524897 ], [ -67.917480, 70.117959 ], [ -66.972656, 69.185993 ], [ -68.796387, 68.720441 ], [ -66.445312, 68.065098 ], [ -64.863281, 67.850702 ], [ -63.413086, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -62.709961, 65.802776 ], [ -65.764160, 65.802776 ], [ -66.708984, 66.390361 ], [ -68.005371, 66.258011 ], [ -68.115234, 65.802776 ], [ -74.289551, 65.802776 ], [ -73.937988, 66.311035 ], [ -73.674316, 66.513260 ], [ -72.641602, 67.280530 ], [ -72.927246, 67.726108 ], [ -73.300781, 68.065098 ], [ -74.838867, 68.552351 ], [ -76.860352, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.277832, 69.771356 ], [ -78.156738, 69.824471 ], [ -78.947754, 70.162746 ], [ -79.497070, 69.869892 ], [ -81.298828, 69.740944 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.407348 ], [ -89.516602, 70.757966 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.197754, 72.235514 ], [ -90.000000, 72.481891 ], [ -89.428711, 73.131322 ], [ -88.395996, 73.534628 ], [ -85.825195, 73.806447 ] ] ], [ [ [ -72.839355, 83.233838 ], [ -65.830078, 83.028886 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.926273 ], [ -66.752930, 81.726350 ], [ -67.653809, 81.502052 ], [ -65.478516, 81.505299 ], [ -67.829590, 80.900669 ], [ -69.477539, 80.614842 ], [ -71.169434, 79.800637 ], [ -73.234863, 79.631968 ], [ -73.872070, 79.428340 ], [ -76.904297, 79.323013 ], [ -75.520020, 79.196075 ], [ -76.223145, 79.017527 ], [ -75.388184, 78.525573 ], [ -76.333008, 78.184088 ], [ -77.893066, 77.901861 ], [ -78.354492, 77.508873 ], [ -79.760742, 77.210776 ], [ -79.628906, 76.985098 ], [ -77.915039, 77.019692 ], [ -77.893066, 76.775629 ], [ -80.551758, 76.179748 ], [ -83.166504, 76.455203 ], [ -86.110840, 76.299953 ], [ -87.604980, 76.419134 ], [ -89.494629, 76.470633 ], [ -89.604492, 76.950415 ], [ -87.758789, 77.176684 ], [ -88.264160, 77.901861 ], [ -87.648926, 77.970745 ], [ -84.968262, 77.537355 ], [ -86.330566, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.143555, 78.759229 ], [ -85.385742, 78.996578 ], [ -85.100098, 79.343349 ], [ -86.506348, 79.734281 ], [ -86.923828, 80.249670 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.463150 ], [ -84.089355, 80.578943 ], [ -87.604980, 80.517603 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.258372 ], [ -91.362305, 81.553847 ], [ -91.582031, 81.895354 ], [ -90.109863, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.923340, 82.118384 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.651033 ], [ -84.265137, 82.600269 ], [ -83.188477, 82.320646 ], [ -82.419434, 82.858847 ], [ -81.101074, 83.020881 ], [ -79.299316, 83.129495 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.839355, 83.233838 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.102539, 68.007571 ], [ -75.102539, 67.584098 ], [ -75.212402, 67.441229 ], [ -75.871582, 67.144365 ], [ -76.992188, 67.101656 ], [ -77.233887, 67.584098 ], [ -76.816406, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -91.757812, 69.626510 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.471864 ], [ -90.000000, 68.800041 ], [ -89.208984, 69.256149 ], [ -88.022461, 68.616534 ], [ -88.308105, 67.875541 ], [ -87.341309, 67.195518 ], [ -86.308594, 67.916881 ], [ -85.583496, 68.784144 ], [ -85.517578, 69.885010 ], [ -84.089355, 69.801724 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.210938, 68.664551 ], [ -81.958008, 68.130668 ], [ -81.254883, 67.592475 ], [ -81.386719, 67.110204 ], [ -83.056641, 66.513260 ], [ -83.342285, 66.407955 ], [ -84.726562, 66.258011 ], [ -85.605469, 66.513260 ], [ -85.759277, 66.557007 ], [ -85.803223, 66.513260 ], [ -86.066895, 66.053716 ], [ -86.352539, 65.802776 ], [ -91.757812, 65.802776 ], [ -91.757812, 69.626510 ] ] ], [ [ [ -91.604004, 76.780655 ], [ -90.747070, 76.450056 ], [ -90.966797, 76.074381 ], [ -90.000000, 75.882732 ], [ -89.824219, 75.845169 ], [ -89.187012, 75.612262 ], [ -87.846680, 75.568518 ], [ -86.374512, 75.480640 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.785942 ], [ -81.123047, 75.715633 ], [ -80.046387, 75.336721 ], [ -79.826660, 74.925142 ], [ -80.463867, 74.654203 ], [ -81.958008, 74.443466 ], [ -83.232422, 74.560888 ], [ -86.088867, 74.408070 ], [ -88.154297, 74.390342 ], [ -89.758301, 74.514023 ], [ -90.000000, 74.543330 ], [ -91.757812, 74.758524 ], [ -91.757812, 76.780655 ], [ -91.604004, 76.780655 ] ] ], [ [ [ -91.757812, 74.013493 ], [ -90.505371, 73.855397 ], [ -91.757812, 73.118566 ], [ -91.757812, 74.013493 ] ] ], [ [ [ -91.757812, 80.990573 ], [ -91.142578, 80.721727 ], [ -90.000000, 80.578943 ], [ -89.450684, 80.510360 ], [ -87.802734, 80.320120 ], [ -87.011719, 79.659613 ], [ -85.803223, 79.335219 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.246913 ], [ -90.812988, 78.215541 ], [ -91.757812, 78.273737 ], [ -91.757812, 80.990573 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.090332, 83.645406 ], [ -27.092285, 83.520162 ], [ -20.852051, 82.726530 ], [ -22.697754, 82.341172 ], [ -26.520996, 82.297121 ], [ -31.904297, 82.199320 ], [ -31.398926, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.851074, 81.786210 ], [ -22.895508, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.159180, 81.150861 ], [ -20.632324, 81.524751 ], [ -15.776367, 81.910828 ], [ -12.766113, 81.720024 ], [ -12.216797, 81.291703 ], [ -16.281738, 80.578943 ], [ -16.853027, 80.349631 ], [ -20.039062, 80.178713 ], [ -17.731934, 80.129870 ], [ -18.896484, 79.400085 ], [ -19.709473, 78.750659 ], [ -19.665527, 77.636542 ], [ -18.479004, 76.985098 ], [ -20.039062, 76.945452 ], [ -21.687012, 76.629067 ], [ -19.841309, 76.095517 ], [ -19.599609, 75.247462 ], [ -20.676270, 75.157673 ], [ -19.379883, 74.295463 ], [ -21.599121, 74.223935 ], [ -20.434570, 73.818698 ], [ -20.764160, 73.465984 ], [ -22.170410, 73.308936 ], [ -23.554688, 73.308936 ], [ -22.302246, 72.626814 ], [ -22.302246, 72.181804 ], [ -24.279785, 72.600551 ], [ -24.785156, 72.329130 ], [ -23.444824, 72.080673 ], [ -22.126465, 71.469124 ], [ -21.752930, 70.663607 ], [ -23.532715, 70.473553 ], [ -25.532227, 71.427179 ], [ -25.202637, 70.750723 ], [ -26.367188, 70.222311 ], [ -23.730469, 70.185103 ], [ -22.346191, 70.125430 ], [ -25.026855, 69.256149 ], [ -27.751465, 68.471864 ], [ -30.673828, 68.122482 ], [ -31.772461, 68.122482 ], [ -32.805176, 67.734435 ], [ -34.211426, 66.679087 ], [ -34.716797, 66.513260 ], [ -36.342773, 65.982270 ], [ -37.045898, 65.937514 ], [ -37.770996, 65.802776 ], [ -53.217773, 65.802776 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.481934, 68.728413 ], [ -51.086426, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.279484 ], [ -54.689941, 69.611206 ], [ -54.755859, 70.289117 ], [ -54.360352, 70.823031 ], [ -53.437500, 70.837461 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.201920 ], [ -54.008789, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.656749 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.646359 ], [ -57.326660, 74.712244 ], [ -58.601074, 75.095633 ], [ -58.579102, 75.519151 ], [ -61.259766, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.071777, 76.132430 ], [ -68.510742, 76.058508 ], [ -69.653320, 76.377795 ], [ -71.411133, 77.009817 ], [ -68.774414, 77.322168 ], [ -66.752930, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.168945, 78.433418 ], [ -69.367676, 78.912384 ], [ -65.720215, 79.396042 ], [ -65.324707, 79.757749 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.513982 ], [ -63.698730, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.644043, 81.770499 ], [ -60.270996, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.199320 ], [ -53.041992, 81.889156 ], [ -50.383301, 82.437205 ], [ -48.010254, 82.063963 ], [ -46.604004, 81.984696 ], [ -44.516602, 81.659685 ], [ -46.889648, 82.199320 ], [ -46.757812, 82.628514 ], [ -43.395996, 83.226067 ], [ -39.902344, 83.179256 ], [ -38.627930, 83.549851 ], [ -35.090332, 83.645406 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.126465, 66.407955 ], [ -20.742188, 65.802776 ], [ -24.125977, 65.802776 ], [ -23.642578, 66.258011 ], [ -22.126465, 66.407955 ] ] ], [ [ [ -20.390625, 65.802776 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.215820, 66.513260 ], [ -16.171875, 66.522016 ], [ -15.864258, 66.513260 ], [ -14.501953, 66.451887 ], [ -14.721680, 65.802776 ], [ -20.390625, 65.802776 ] ] ] ] } } ] } ] } @@ -141,41 +137,33 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.979004, 1.757537 ], [ 41.000977, 0.000000 ], [ 41.000977, -0.856902 ], [ 41.594238, -1.691649 ], [ 40.891113, -2.086941 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.569939 ], [ 40.122070, -3.272146 ], [ 39.792480, -3.688855 ], [ 39.616699, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.688855 ], [ 37.705078, -3.096636 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.245605, -2.218684 ], [ 29.113770, -2.284551 ], [ 29.025879, -2.833317 ], [ 29.267578, -3.294082 ], [ 29.333496, -4.499762 ], [ 29.531250, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.511815 ], [ 30.190430, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.233237 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.537565 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.600750 ], [ 28.366699, -11.802834 ], [ 29.333496, -12.361466 ], [ 29.619141, -12.189704 ], [ 29.707031, -13.261333 ], [ 28.937988, -13.239945 ], [ 28.146973, -12.275599 ], [ 27.399902, -12.125264 ], [ 27.158203, -11.609193 ], [ 26.564941, -11.931852 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.323730, -11.264612 ], [ 24.257812, -10.962764 ], [ 23.466797, -10.876465 ], [ 22.829590, -11.027472 ], [ 22.412109, -10.984335 ], [ 22.148438, -11.092166 ], [ 22.214355, -9.903921 ], [ 21.884766, -9.535749 ], [ 21.796875, -8.906780 ], [ 21.950684, -8.298470 ], [ 21.752930, -7.928675 ], [ 21.730957, -7.297088 ], [ 20.522461, -7.297088 ], [ 20.610352, -6.948239 ], [ 20.083008, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.166300 ], [ 19.160156, -7.732765 ], [ 19.028320, -7.993957 ], [ 18.457031, -7.841615 ], [ 18.127441, -7.993957 ], [ 17.468262, -8.059230 ], [ 16.853027, -7.231699 ], [ 16.567383, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.856475 ], [ 13.029785, -5.987607 ], [ 12.744141, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.172852, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.458496, -5.244128 ], [ 12.634277, -5.003394 ], [ 13.007812, -4.784469 ], [ 13.249512, -4.893941 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.521666 ], [ 14.216309, -4.784469 ], [ 14.589844, -4.981505 ], [ 15.183105, -4.346411 ], [ 15.754395, -3.864255 ], [ 16.018066, -3.535352 ], [ 15.974121, -2.723583 ], [ 16.413574, -1.735574 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.757537 ], [ 40.979004, 1.757537 ] ] ], [ [ [ 11.271973, 1.757537 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.492188, 1.757537 ], [ 11.271973, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 54.536133, -65.820782 ], [ 55.415039, -65.874725 ], [ 56.359863, -65.973325 ], [ 57.150879, -66.249163 ], [ 57.216797, -66.513260 ], [ 57.260742, -66.679087 ], [ 58.139648, -67.016009 ], [ 58.557129, -67.204032 ], [ 48.735352, -67.204032 ], [ 48.999023, -67.093105 ], [ 49.921875, -67.110204 ], [ 50.756836, -66.878345 ], [ 50.954590, -66.522016 ], [ 50.976562, -66.513260 ], [ 51.789551, -66.249163 ], [ 52.624512, -66.053716 ], [ 53.613281, -65.892680 ], [ 54.536133, -65.820782 ] ] ], [ [ [ 87.978516, -66.213739 ], [ 88.395996, -66.513260 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 84.726562, -67.204032 ], [ 85.649414, -67.093105 ], [ 86.748047, -67.152898 ], [ 87.473145, -66.878345 ], [ 87.758789, -66.513260 ], [ 87.978516, -66.213739 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 91.757812, -67.127290 ], [ 91.757812, -67.204032 ], [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 40.891113, -2.086941 ], [ 40.649414, -2.504085 ], [ 40.253906, -2.569939 ], [ 40.122070, -3.272146 ], [ 39.792480, -3.688855 ], [ 39.616699, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.688855 ], [ 37.705078, -3.096636 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.717773, 1.757537 ], [ 45.131836, 1.757537 ] ] ], [ [ [ 11.271973, 1.757537 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.492188, 1.757537 ], [ 11.271973, 1.757537 ] ] ], [ [ [ 15.952148, 1.757537 ], [ 15.952148, 1.735574 ], [ 15.842285, 1.757537 ], [ 15.952148, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.131836, 1.757537 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 1.757537 ], [ 45.131836, 1.757537 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.903809, -0.944781 ], [ 37.705078, -3.096636 ], [ 37.770996, -3.688855 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.803711, -6.468151 ], [ 39.440918, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.177246, -8.494105 ], [ 39.528809, -9.123792 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.429688, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.100098, -16.109153 ], [ 39.462891, -16.720385 ], [ 37.419434, -17.581194 ], [ 36.276855, -18.667063 ], [ 35.903320, -18.833515 ], [ 35.200195, -19.559790 ], [ 34.782715, -19.787380 ], [ 34.694824, -20.488773 ], [ 35.178223, -21.248422 ], [ 35.375977, -21.841105 ], [ 35.397949, -22.146708 ], [ 35.573730, -22.085640 ], [ 35.529785, -23.079732 ], [ 35.375977, -23.543845 ], [ 35.617676, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.487149 ], [ 33.024902, -25.363882 ], [ 32.585449, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.453613, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.916016, -32.175612 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.533203, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.369141, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.259277, -32.435613 ], [ 18.215332, -31.672083 ], [ 17.578125, -30.732393 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.683970 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.062312 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.455958 ], [ 12.502441, -13.539201 ], [ 12.744141, -13.132979 ], [ 13.315430, -12.490214 ], [ 13.645020, -12.039321 ], [ 13.732910, -11.307708 ], [ 13.688965, -10.725381 ], [ 13.381348, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.238770, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.744141, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.856475 ], [ 16.325684, -5.878332 ], [ 16.567383, -6.620957 ], [ 16.853027, -7.231699 ], [ 17.468262, -8.059230 ], [ 18.127441, -7.993957 ], [ 18.457031, -7.841615 ], [ 19.028320, -7.993957 ], [ 19.160156, -7.732765 ], [ 19.423828, -7.166300 ], [ 20.039062, -7.122696 ], [ 20.083008, -6.948239 ], [ 20.610352, -6.948239 ], [ 20.522461, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.928675 ], [ 21.950684, -8.298470 ], [ 21.796875, -8.906780 ], [ 21.884766, -9.535749 ], [ 22.214355, -9.903921 ], [ 22.148438, -11.092166 ], [ 22.412109, -10.984335 ], [ 22.829590, -11.027472 ], [ 23.466797, -10.876465 ], [ 24.257812, -10.962764 ], [ 24.323730, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.564941, -11.931852 ], [ 27.158203, -11.609193 ], [ 27.399902, -12.125264 ], [ 28.146973, -12.275599 ], [ 28.937988, -13.239945 ], [ 29.707031, -13.261333 ], [ 29.619141, -12.189704 ], [ 29.333496, -12.361466 ], [ 28.366699, -11.802834 ], [ 28.674316, -9.600750 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.537565 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.233237 ], [ 30.739746, -8.341953 ], [ 30.190430, -7.079088 ], [ 29.619141, -6.511815 ], [ 29.421387, -5.943900 ], [ 29.531250, -5.419148 ], [ 29.333496, -4.499762 ], [ 29.267578, -3.294082 ], [ 29.025879, -2.833317 ], [ 29.113770, -2.284551 ], [ 29.245605, -2.218684 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.032659 ], [ 33.903809, -0.944781 ] ] ], [ [ [ 17.907715, 1.757537 ], [ 17.775879, 0.856902 ], [ 17.819824, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.644043, -0.417477 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.413574, -1.735574 ], [ 15.974121, -2.723583 ], [ 16.018066, -3.535352 ], [ 15.754395, -3.864255 ], [ 15.183105, -4.346411 ], [ 14.589844, -4.981505 ], [ 14.216309, -4.784469 ], [ 14.150391, -4.521666 ], [ 13.601074, -4.499762 ], [ 13.249512, -4.893941 ], [ 13.007812, -4.784469 ], [ 12.634277, -5.003394 ], [ 12.458496, -5.244128 ], [ 12.436523, -5.681584 ], [ 12.172852, -5.790897 ], [ 11.909180, -5.047171 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 1.757537 ], [ 15.842285, 1.757537 ], [ 15.952148, 1.735574 ], [ 15.952148, 1.757537 ], [ 17.907715, 1.757537 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.928223, -48.632909 ], [ 69.587402, -48.936935 ], [ 70.532227, -49.066668 ], [ 70.554199, -49.253465 ], [ 70.290527, -49.710273 ], [ 68.752441, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.928223, -48.632909 ] ] ], [ [ [ 49.196777, -12.039321 ], [ 49.548340, -12.468760 ], [ 49.812012, -12.897489 ], [ 50.053711, -13.560562 ], [ 50.229492, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.383301, -15.707663 ], [ 50.207520, -16.003576 ], [ 49.855957, -15.411319 ], [ 49.680176, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.504395, -17.098792 ], [ 49.438477, -17.957832 ], [ 48.559570, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.548828, -23.785345 ], [ 47.087402, -24.946219 ], [ 46.274414, -25.185059 ], [ 45.417480, -25.601902 ], [ 44.033203, -24.986058 ], [ 43.769531, -24.467151 ], [ 43.703613, -23.584126 ], [ 43.352051, -22.776182 ], [ 43.264160, -22.065278 ], [ 43.439941, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.076570 ], [ 44.472656, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.055176, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.318848, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.505371, -15.982454 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.771109 ], [ 46.889648, -15.220589 ], [ 47.702637, -14.604847 ], [ 48.010254, -14.093957 ], [ 47.878418, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.845215, -13.090179 ], [ 48.867188, -12.490214 ], [ 49.196777, -12.039321 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 68.928223, -48.632909 ], [ 69.587402, -48.936935 ], [ 70.532227, -49.066668 ], [ 70.554199, -49.253465 ], [ 70.290527, -49.710273 ], [ 68.752441, -49.781264 ], [ 68.730469, -49.239121 ], [ 68.928223, -48.632909 ] ] ], [ [ [ 30.717773, 1.757537 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.032659 ], [ 33.903809, -0.944781 ], [ 37.705078, -3.096636 ], [ 37.770996, -3.688855 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.900189 ], [ 38.803711, -6.468151 ], [ 39.440918, -6.839170 ], [ 39.462891, -7.100893 ], [ 39.199219, -7.710992 ], [ 39.243164, -8.015716 ], [ 39.177246, -8.494105 ], [ 39.528809, -9.123792 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 40.473633, -10.768556 ], [ 40.429688, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.100098, -16.109153 ], [ 39.462891, -16.720385 ], [ 37.419434, -17.581194 ], [ 36.276855, -18.667063 ], [ 35.903320, -18.833515 ], [ 35.200195, -19.559790 ], [ 34.782715, -19.787380 ], [ 34.694824, -20.488773 ], [ 35.178223, -21.248422 ], [ 35.375977, -21.841105 ], [ 35.397949, -22.146708 ], [ 35.573730, -22.085640 ], [ 35.529785, -23.079732 ], [ 35.375977, -23.543845 ], [ 35.617676, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.487149 ], [ 33.024902, -25.363882 ], [ 32.585449, -25.720735 ], [ 32.651367, -26.155438 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.453613, -28.304381 ], [ 32.211914, -28.748397 ], [ 31.333008, -29.401320 ], [ 30.893555, -29.916852 ], [ 30.629883, -30.429730 ], [ 30.058594, -31.147006 ], [ 28.916016, -32.175612 ], [ 28.212891, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.411133, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.773926, -33.943360 ], [ 25.180664, -33.797409 ], [ 24.675293, -33.979809 ], [ 23.598633, -33.797409 ], [ 22.983398, -33.925130 ], [ 22.565918, -33.870416 ], [ 21.533203, -34.252676 ], [ 20.698242, -34.415973 ], [ 20.083008, -34.795762 ], [ 19.621582, -34.813803 ], [ 19.204102, -34.470335 ], [ 18.852539, -34.452218 ], [ 18.435059, -33.998027 ], [ 18.369141, -34.143635 ], [ 18.237305, -33.870416 ], [ 18.259277, -33.284620 ], [ 17.929688, -32.620870 ], [ 18.259277, -32.435613 ], [ 18.215332, -31.672083 ], [ 17.578125, -30.732393 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.205078, -27.098254 ], [ 14.985352, -26.115986 ], [ 14.743652, -25.403585 ], [ 14.414062, -23.845650 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.105999 ], [ 13.864746, -21.698265 ], [ 13.359375, -20.879343 ], [ 12.832031, -19.683970 ], [ 12.612305, -19.041349 ], [ 11.799316, -18.062312 ], [ 11.733398, -17.308688 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.455958 ], [ 12.502441, -13.539201 ], [ 12.744141, -13.132979 ], [ 13.315430, -12.490214 ], [ 13.645020, -12.039321 ], [ 13.732910, -11.307708 ], [ 13.688965, -10.725381 ], [ 13.381348, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.919922, -8.950193 ], [ 13.227539, -8.559294 ], [ 12.722168, -6.926427 ], [ 12.238770, -6.293459 ], [ 12.326660, -6.096860 ], [ 11.909180, -5.047171 ], [ 11.096191, -3.973861 ], [ 10.063477, -2.964984 ], [ 9.404297, -2.152814 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 1.757537 ], [ 15.842285, 1.757537 ], [ 15.952148, 1.735574 ], [ 15.952148, 1.757537 ], [ 30.717773, 1.757537 ] ] ], [ [ [ 49.196777, -12.039321 ], [ 49.548340, -12.468760 ], [ 49.812012, -12.897489 ], [ 50.053711, -13.560562 ], [ 50.229492, -14.753635 ], [ 50.471191, -15.220589 ], [ 50.383301, -15.707663 ], [ 50.207520, -16.003576 ], [ 49.855957, -15.411319 ], [ 49.680176, -15.707663 ], [ 49.855957, -16.446622 ], [ 49.768066, -16.867634 ], [ 49.504395, -17.098792 ], [ 49.438477, -17.957832 ], [ 48.559570, -20.488773 ], [ 47.922363, -22.390714 ], [ 47.548828, -23.785345 ], [ 47.087402, -24.946219 ], [ 46.274414, -25.185059 ], [ 45.417480, -25.601902 ], [ 44.033203, -24.986058 ], [ 43.769531, -24.467151 ], [ 43.703613, -23.584126 ], [ 43.352051, -22.776182 ], [ 43.264160, -22.065278 ], [ 43.439941, -21.330315 ], [ 43.901367, -21.166484 ], [ 43.901367, -20.838278 ], [ 44.384766, -20.076570 ], [ 44.472656, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.055176, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.318848, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.956055, -16.172473 ], [ 45.505371, -15.982454 ], [ 45.878906, -15.792254 ], [ 46.318359, -15.771109 ], [ 46.889648, -15.220589 ], [ 47.702637, -14.604847 ], [ 48.010254, -14.093957 ], [ 47.878418, -13.667338 ], [ 48.295898, -13.795406 ], [ 48.845215, -13.090179 ], [ 48.867188, -12.490214 ], [ 49.196777, -12.039321 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.757812, 22.938160 ], [ 0.000000, 21.800308 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.849394 ], [ 3.142090, 19.683970 ], [ 3.164062, 19.062118 ], [ 4.262695, 19.145168 ], [ 4.262695, 16.846605 ], [ 3.735352, 16.172473 ], [ 3.647461, 15.559544 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.010742, 14.966013 ], [ 0.373535, 14.923554 ], [ 0.307617, 14.434680 ], [ 0.439453, 13.987376 ], [ 0.988770, 13.325485 ], [ 1.032715, 12.854649 ], [ 2.175293, 12.618897 ], [ 2.153320, 11.931852 ], [ 1.933594, 11.630716 ], [ 1.450195, 11.544616 ], [ 1.252441, 11.113727 ], [ 0.900879, 11.005904 ], [ 0.021973, 11.027472 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.639014 ], [ 0.373535, 10.185187 ], [ 0.373535, 9.470736 ], [ 0.461426, 8.667918 ], [ 0.703125, 8.320212 ], [ 0.483398, 7.406048 ], [ 0.571289, 6.904614 ], [ 0.834961, 6.271618 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 22.938160 ] ] ], [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.317749 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ], [ [ [ -1.757812, 34.161818 ], [ -1.735840, 33.925130 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.657876 ], [ -1.318359, 32.268555 ], [ -1.757812, 32.212801 ], [ -1.757812, 34.161818 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 67.204032 ], [ 23.554688, 66.513260 ], [ 23.576660, 66.399160 ], [ 23.906250, 66.009086 ], [ 22.192383, 65.721594 ], [ 21.225586, 65.025785 ], [ 21.379395, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.744665 ], [ 17.116699, 61.344078 ], [ 17.841797, 60.640876 ], [ 18.786621, 60.075803 ], [ 17.863770, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.457520, 57.040730 ], [ 15.886230, 56.108810 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.366625 ], [ 12.634277, 56.304349 ], [ 11.799316, 57.444949 ], [ 11.030273, 58.859224 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.804284 ], [ 11.931152, 63.124572 ], [ 12.590332, 64.062591 ], [ 13.579102, 64.052978 ], [ 13.930664, 64.444372 ], [ 13.557129, 64.783488 ], [ 15.117188, 66.196009 ], [ 15.402832, 66.513260 ], [ 16.018066, 67.204032 ], [ 23.554688, 67.204032 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.757812, 55.478853 ], [ -1.120605, 54.622978 ], [ -0.439453, 54.457267 ], [ 0.000000, 53.670680 ], [ 0.175781, 53.317749 ], [ 0.461426, 52.935397 ], [ 1.691895, 52.736292 ], [ 1.560059, 52.093008 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.764259 ], [ -0.791016, 50.778155 ], [ -1.757812, 50.625073 ], [ -1.757812, 55.478853 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 67.204032 ], [ 91.757812, 50.652943 ], [ 90.725098, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.958008, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.409532 ], [ 76.530762, 54.175297 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.191406, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.181152, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.778809, 51.686180 ], [ 48.713379, 50.611132 ], [ 48.581543, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.400032 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 46.142578, 41.722131 ], [ 46.647949, 41.178654 ], [ 46.494141, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.244772 ], [ 43.593750, 41.095912 ], [ 43.747559, 40.747257 ], [ 43.659668, 40.245992 ], [ 44.406738, 40.010787 ], [ 44.802246, 39.707187 ], [ 44.121094, 39.419221 ], [ 44.428711, 38.272689 ], [ 44.230957, 37.978845 ], [ 44.780273, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.142578, 35.083956 ], [ 45.659180, 34.741612 ], [ 45.417480, 33.961586 ], [ 46.120605, 33.008663 ], [ 47.329102, 32.472695 ], [ 47.856445, 31.709476 ], [ 47.680664, 30.977609 ], [ 48.010254, 30.977609 ], [ 48.010254, 30.448674 ], [ 48.559570, 29.916852 ], [ 47.307129, 30.050077 ], [ 46.560059, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.702637, 28.516969 ], [ 48.427734, 28.555576 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.469287 ], [ 49.482422, 27.117813 ], [ 50.163574, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.251465, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.800781, 24.746831 ], [ 51.108398, 24.547123 ], [ 51.394043, 24.627045 ], [ 51.591797, 24.246965 ], [ 51.613770, 24.006326 ], [ 52.009277, 22.998852 ], [ 54.997559, 22.492257 ], [ 55.217285, 22.715390 ], [ 55.678711, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.625425 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.308688 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.077790 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.866503 ], [ 37.221680, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.052591 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 34.914551, 29.496988 ], [ 34.650879, 29.094577 ], [ 34.431152, 28.343065 ], [ 34.145508, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.431641, 29.840644 ], [ 32.321777, 29.764377 ], [ 32.739258, 28.709861 ], [ 33.354492, 27.702984 ], [ 34.101562, 26.135714 ], [ 34.475098, 25.601902 ], [ 34.804688, 25.025884 ], [ 35.683594, 23.926013 ], [ 35.485840, 23.745126 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 22.004175 ], [ 25.004883, 22.004175 ], [ 25.004883, 19.993998 ], [ 23.862305, 19.993998 ], [ 23.884277, 15.601875 ], [ 23.027344, 15.686510 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.521973, 14.093957 ], [ 22.192383, 13.795406 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.961736 ], [ 21.928711, 12.597455 ], [ 22.280273, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.500000, 11.673755 ], [ 22.873535, 11.393879 ], [ 22.873535, 11.135287 ], [ 22.236328, 10.962764 ], [ 21.730957, 10.574222 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.080400 ], [ 18.808594, 8.971897 ], [ 18.918457, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.973633, 7.885147 ], [ 16.699219, 7.514981 ], [ 16.457520, 7.732765 ], [ 16.281738, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.270996, 7.427837 ], [ 14.787598, 6.402648 ], [ 14.545898, 6.227934 ], [ 14.458008, 5.441022 ], [ 14.567871, 5.025283 ], [ 14.479980, 4.740675 ], [ 14.941406, 4.214943 ], [ 15.029297, 3.842332 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.547988 ], [ 16.018066, 2.262595 ], [ 15.952148, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.941895, 2.328460 ], [ 12.370605, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 7.470703, 4.412137 ], [ 7.075195, 4.455951 ], [ 6.701660, 4.236856 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.702637, 6.249776 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.834961, 6.271618 ], [ 0.571289, 6.904614 ], [ 0.483398, 7.406048 ], [ 0.703125, 8.320212 ], [ 0.461426, 8.667918 ], [ 0.373535, 9.470736 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.639014 ], [ -0.043945, 10.703792 ], [ 0.021973, 11.027472 ], [ 0.900879, 11.005904 ], [ 1.252441, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.630716 ], [ 2.153320, 11.931852 ], [ 2.175293, 12.618897 ], [ 1.032715, 12.854649 ], [ 0.988770, 13.325485 ], [ 0.439453, 13.987376 ], [ 0.307617, 14.434680 ], [ 0.373535, 14.923554 ], [ 1.010742, 14.966013 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.647461, 15.559544 ], [ 3.735352, 16.172473 ], [ 4.262695, 16.846605 ], [ 4.262695, 19.145168 ], [ 3.164062, 19.062118 ], [ 3.142090, 19.683970 ], [ 2.680664, 19.849394 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.800308 ], [ -1.757812, 22.938160 ], [ -1.757812, 32.212801 ], [ -1.318359, 32.268555 ], [ -1.120605, 32.657876 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.925130 ], [ -1.757812, 35.406961 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 3.164062, 36.774092 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.721274 ], [ 6.262207, 37.107765 ], [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.415527, 36.949892 ], [ 9.514160, 37.352693 ], [ 10.217285, 37.230328 ], [ 10.173340, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.590820, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.349121, 33.779147 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.491699, 33.137551 ], [ 12.656250, 32.787275 ], [ 13.073730, 32.879587 ], [ 13.930664, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.094238, 30.259067 ], [ 19.577637, 30.524413 ], [ 20.061035, 30.977609 ], [ 19.819336, 31.746854 ], [ 20.126953, 32.231390 ], [ 20.852051, 32.713355 ], [ 21.555176, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.247070, 32.194209 ], [ 23.620605, 32.194209 ], [ 23.928223, 32.008076 ], [ 24.916992, 31.896214 ], [ 25.158691, 31.559815 ], [ 26.499023, 31.578535 ], [ 28.916016, 30.864510 ], [ 29.685059, 31.184609 ], [ 30.102539, 31.466154 ], [ 30.981445, 31.559815 ], [ 31.684570, 31.428663 ], [ 31.970215, 30.939924 ], [ 32.189941, 31.259770 ], [ 33.002930, 31.015279 ], [ 33.771973, 30.958769 ], [ 34.277344, 31.222197 ], [ 34.562988, 31.541090 ], [ 34.497070, 31.597253 ], [ 34.760742, 32.063956 ], [ 34.958496, 32.824211 ], [ 35.134277, 33.082337 ], [ 35.485840, 33.906896 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.406961 ], [ 36.145020, 35.817813 ], [ 35.793457, 36.279707 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.035645, 36.226550 ], [ 32.519531, 36.102376 ], [ 31.706543, 36.650793 ], [ 30.629883, 36.668419 ], [ 30.388184, 36.261992 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.650793 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.976492 ], [ 26.169434, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.463666 ], [ 29.245605, 41.211722 ], [ 31.157227, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.016652 ], [ 35.178223, 42.032974 ], [ 36.914062, 41.327326 ], [ 38.342285, 40.946714 ], [ 39.506836, 41.095912 ], [ 40.385742, 41.013066 ], [ 41.550293, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.462402, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.551270, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.133301, 47.264320 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.104546 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.026950 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.310547, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.824708 ], [ 28.850098, 44.918139 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.569264 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.623655 ], [ 28.981934, 41.294317 ], [ 28.806152, 41.046217 ], [ 27.619629, 40.996484 ], [ 26.367188, 40.145289 ], [ 26.037598, 40.613952 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.181175 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 19.973145, 39.690281 ], [ 19.951172, 39.909736 ], [ 19.401855, 40.245992 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.951320 ], [ 18.874512, 42.277309 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.793531 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.475540 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.392578, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.590332, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.040527, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.479004, 40.162083 ], [ 18.303223, 39.808536 ], [ 17.731934, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.457520, 39.791655 ], [ 17.182617, 39.419221 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.978845 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.424805, 40.044438 ], [ 15.007324, 40.178873 ], [ 14.699707, 40.597271 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.195190 ], [ 12.897949, 41.244772 ], [ 12.106934, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.924252 ], [ 10.195312, 43.913723 ], [ 9.711914, 44.040219 ], [ 8.898926, 44.370987 ], [ 8.437500, 44.229457 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 3.032227, 41.885921 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.450195, 37.439974 ], [ -1.757812, 37.090240 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 3.317871, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.086426, 53.514185 ], [ 6.899414, 53.474970 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.811035, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.261230, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.201010 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.128418, 53.761702 ], [ 14.809570, 54.046489 ], [ 16.369629, 54.508327 ], [ 17.622070, 54.851315 ], [ 18.632812, 54.686534 ], [ 18.698730, 54.431713 ], [ 19.665527, 54.418930 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ], [ 21.049805, 56.035226 ], [ 21.093750, 56.788845 ], [ 21.577148, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.312988, 57.004850 ], [ 24.125977, 57.028774 ], [ 24.433594, 58.378679 ], [ 24.060059, 58.251727 ], [ 23.422852, 58.608334 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.960449, 59.445075 ], [ 27.993164, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.081055, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.053874 ], [ 22.873535, 59.844815 ], [ 22.302246, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.555176, 61.700291 ], [ 21.049805, 62.603453 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.531171 ], [ 23.906250, 66.009086 ], [ 23.576660, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.554688, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.023926, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 34.584961, 35.675147 ], [ 33.903809, 35.245619 ], [ 34.013672, 34.976002 ], [ 32.980957, 34.578952 ], [ 32.497559, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.805176, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.371135 ], [ 34.584961, 35.675147 ] ] ], [ [ [ 23.708496, 35.710838 ], [ 24.257812, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.301270, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ], [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.125286 ], [ 15.095215, 36.615528 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.117272 ], [ 13.732910, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 16.018066, 67.204032 ], [ 15.402832, 66.513260 ], [ 15.117188, 66.196009 ], [ 13.557129, 64.783488 ], [ 13.930664, 64.444372 ], [ 13.579102, 64.052978 ], [ 12.590332, 64.062591 ], [ 11.931152, 63.124572 ], [ 11.997070, 61.804284 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.370605, 65.874725 ], [ 13.117676, 66.513260 ], [ 13.996582, 67.204032 ], [ 16.018066, 67.204032 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.821777, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.232253 ], [ 8.811035, 38.908133 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.151855, 40.946714 ], [ 8.701172, 40.896906 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.767090, 41.590797 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.078125, 43.548548 ], [ 40.913086, 43.389082 ], [ 42.385254, 43.213183 ], [ 43.747559, 42.747012 ], [ 43.923340, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.461426, 42.504503 ], [ 45.769043, 42.098222 ], [ 46.406250, 41.853196 ], [ 46.142578, 41.722131 ], [ 46.647949, 41.178654 ], [ 46.494141, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.244772 ], [ 45.175781, 40.979898 ], [ 45.571289, 40.813809 ], [ 45.351562, 40.563895 ], [ 45.900879, 40.212441 ], [ 45.615234, 39.892880 ], [ 46.032715, 39.622615 ], [ 46.494141, 39.470125 ], [ 46.516113, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.747070, 39.317300 ], [ 45.747070, 39.470125 ], [ 45.307617, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.802246, 39.707187 ], [ 44.121094, 39.419221 ], [ 44.428711, 38.272689 ], [ 44.230957, 37.978845 ], [ 44.780273, 37.177826 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.142578, 35.083956 ], [ 45.659180, 34.741612 ], [ 45.417480, 33.961586 ], [ 46.120605, 33.008663 ], [ 47.329102, 32.472695 ], [ 47.856445, 31.709476 ], [ 47.680664, 30.977609 ], [ 48.010254, 30.977609 ], [ 48.010254, 30.448674 ], [ 48.559570, 29.916852 ], [ 47.307129, 30.050077 ], [ 46.560059, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.702637, 28.516969 ], [ 48.427734, 28.555576 ], [ 48.801270, 27.683528 ], [ 49.306641, 27.469287 ], [ 49.482422, 27.117813 ], [ 50.163574, 26.686730 ], [ 50.207520, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.251465, 25.601902 ], [ 50.537109, 25.324167 ], [ 50.668945, 25.005973 ], [ 50.800781, 24.746831 ], [ 51.108398, 24.547123 ], [ 51.394043, 24.627045 ], [ 51.591797, 24.246965 ], [ 51.613770, 24.006326 ], [ 52.009277, 22.998852 ], [ 54.997559, 22.492257 ], [ 55.217285, 22.715390 ], [ 55.678711, 22.004175 ], [ 54.997559, 19.993998 ], [ 52.009277, 18.999803 ], [ 49.108887, 18.625425 ], [ 48.186035, 18.166730 ], [ 47.460938, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.757812, 17.287709 ], [ 46.362305, 17.224758 ], [ 45.395508, 17.329664 ], [ 45.219727, 17.434511 ], [ 44.055176, 17.413546 ], [ 43.791504, 17.308688 ], [ 43.374023, 17.581194 ], [ 43.110352, 17.077790 ], [ 43.220215, 16.657244 ], [ 42.780762, 16.341226 ], [ 42.648926, 16.783506 ], [ 42.341309, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.748047, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.935059, 19.476950 ], [ 40.253906, 20.179724 ], [ 39.792480, 20.344627 ], [ 39.133301, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.034668, 24.086589 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.866503 ], [ 37.221680, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.650391, 25.819672 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.052591 ], [ 34.628906, 28.052591 ], [ 34.782715, 28.613459 ], [ 34.826660, 28.960089 ], [ 34.958496, 29.363027 ], [ 34.914551, 29.496988 ], [ 34.650879, 29.094577 ], [ 34.431152, 28.343065 ], [ 34.145508, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.431641, 29.840644 ], [ 32.321777, 29.764377 ], [ 32.739258, 28.709861 ], [ 33.354492, 27.702984 ], [ 34.101562, 26.135714 ], [ 34.475098, 25.601902 ], [ 34.804688, 25.025884 ], [ 35.683594, 23.926013 ], [ 35.485840, 23.745126 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 22.004175 ], [ 37.199707, 21.022983 ], [ 36.979980, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.604601 ], [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 43.330078, 12.382928 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.154297, 11.458491 ], [ 42.561035, 10.574222 ], [ 42.934570, 10.012130 ], [ 43.308105, 9.535749 ], [ 43.681641, 9.188870 ], [ 46.955566, 7.993957 ], [ 47.790527, 7.993957 ], [ 44.956055, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.780762, 4.258768 ], [ 42.121582, 4.236856 ], [ 41.857910, 3.908099 ], [ 40.979004, 2.789425 ], [ 41.000977, 0.000000 ], [ 41.000977, -0.856902 ], [ 41.594238, -1.691649 ], [ 41.462402, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.597168, -0.593251 ], [ 29.816895, -0.197754 ], [ 29.838867, 0.000000 ], [ 29.882812, 0.593251 ], [ 30.080566, 1.054628 ], [ 30.476074, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.196727 ], [ 30.783691, 2.328460 ], [ 30.827637, 3.513421 ], [ 29.948730, 4.171115 ], [ 29.707031, 4.609278 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.280680 ], [ 27.971191, 4.412137 ], [ 27.377930, 5.222247 ], [ 27.048340, 5.134715 ], [ 26.411133, 5.156599 ], [ 25.642090, 5.244128 ], [ 25.290527, 5.178482 ], [ 25.136719, 4.915833 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.112830 ], [ 23.291016, 4.609278 ], [ 22.851562, 4.718778 ], [ 22.697754, 4.631179 ], [ 22.412109, 4.017699 ], [ 21.665039, 4.214943 ], [ 20.939941, 4.324501 ], [ 20.302734, 4.696879 ], [ 19.467773, 5.025283 ], [ 18.940430, 4.718778 ], [ 18.544922, 4.193030 ], [ 18.457031, 3.513421 ], [ 17.819824, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.545410, 3.206333 ], [ 16.018066, 2.262595 ], [ 15.952148, 1.735574 ], [ 14.348145, 2.218684 ], [ 13.073730, 2.262595 ], [ 12.941895, 2.328460 ], [ 12.370605, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.271973, 2.262595 ], [ 11.293945, 1.054628 ], [ 9.821777, 1.076597 ], [ 9.492188, 1.010690 ], [ 9.316406, 1.164471 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.942871, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.481445, 4.499762 ], [ 8.503418, 4.762573 ], [ 7.470703, 4.412137 ], [ 7.075195, 4.455951 ], [ 6.701660, 4.236856 ], [ 5.888672, 4.258768 ], [ 5.361328, 4.893941 ], [ 5.031738, 5.615986 ], [ 4.328613, 6.271618 ], [ 2.702637, 6.249776 ], [ 1.867676, 6.140555 ], [ 1.054688, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.331644 ], [ -1.054688, 5.003394 ], [ -1.757812, 4.784469 ], [ -1.757812, 35.406961 ], [ -1.208496, 35.710838 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.978006 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.597889 ], [ 3.164062, 36.774092 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.721274 ], [ 6.262207, 37.107765 ], [ 7.338867, 37.125286 ], [ 7.734375, 36.879621 ], [ 8.415527, 36.949892 ], [ 9.514160, 37.352693 ], [ 10.217285, 37.230328 ], [ 10.173340, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.590820, 36.403600 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.692995 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.349121, 33.779147 ], [ 10.854492, 33.760882 ], [ 11.118164, 33.284620 ], [ 11.491699, 33.137551 ], [ 12.656250, 32.787275 ], [ 13.073730, 32.879587 ], [ 13.930664, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.770159 ], [ 19.094238, 30.259067 ], [ 19.577637, 30.524413 ], [ 20.061035, 30.977609 ], [ 19.819336, 31.746854 ], [ 20.126953, 32.231390 ], [ 20.852051, 32.713355 ], [ 21.555176, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.247070, 32.194209 ], [ 23.620605, 32.194209 ], [ 23.928223, 32.008076 ], [ 24.916992, 31.896214 ], [ 25.158691, 31.559815 ], [ 26.499023, 31.578535 ], [ 28.916016, 30.864510 ], [ 29.685059, 31.184609 ], [ 30.102539, 31.466154 ], [ 30.981445, 31.559815 ], [ 31.684570, 31.428663 ], [ 31.970215, 30.939924 ], [ 32.189941, 31.259770 ], [ 33.002930, 31.015279 ], [ 33.771973, 30.958769 ], [ 34.277344, 31.222197 ], [ 34.562988, 31.541090 ], [ 34.497070, 31.597253 ], [ 34.760742, 32.063956 ], [ 34.958496, 32.824211 ], [ 35.134277, 33.082337 ], [ 35.485840, 33.906896 ], [ 35.991211, 34.651285 ], [ 35.903320, 35.406961 ], [ 36.145020, 35.817813 ], [ 35.793457, 36.279707 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.035645, 36.226550 ], [ 32.519531, 36.102376 ], [ 31.706543, 36.650793 ], [ 30.629883, 36.668419 ], [ 30.388184, 36.261992 ], [ 29.707031, 36.137875 ], [ 28.740234, 36.668419 ], [ 27.641602, 36.650793 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.976492 ], [ 26.169434, 39.470125 ], [ 27.290039, 40.413496 ], [ 28.828125, 40.463666 ], [ 29.245605, 41.211722 ], [ 31.157227, 41.079351 ], [ 32.343750, 41.738528 ], [ 33.508301, 42.016652 ], [ 35.178223, 42.032974 ], [ 36.914062, 41.327326 ], [ 38.342285, 40.946714 ], [ 39.506836, 41.095912 ], [ 40.385742, 41.013066 ], [ 41.550293, 41.541478 ], [ 41.704102, 41.967659 ], [ 41.462402, 42.650122 ], [ 40.869141, 43.004647 ], [ 40.319824, 43.133061 ], [ 39.946289, 43.436966 ], [ 40.078125, 43.548548 ] ], [ [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ] ] ], [ [ [ 34.584961, 35.675147 ], [ 33.903809, 35.245619 ], [ 34.013672, 34.976002 ], [ 32.980957, 34.578952 ], [ 32.497559, 34.705493 ], [ 32.255859, 35.101934 ], [ 32.739258, 35.137879 ], [ 32.805176, 35.137879 ], [ 32.958984, 35.389050 ], [ 33.662109, 35.371135 ], [ 34.584961, 35.675147 ] ] ], [ [ [ 23.708496, 35.710838 ], [ 24.257812, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.751953, 35.173808 ], [ 26.301270, 35.299435 ], [ 26.169434, 35.012002 ], [ 24.719238, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.510742, 35.281501 ], [ 23.708496, 35.710838 ] ] ], [ [ [ 25.861816, 59.612212 ], [ 26.960449, 59.445075 ], [ 27.993164, 59.478569 ], [ 28.125000, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.707520, 57.786233 ], [ 27.290039, 57.468589 ], [ 27.773438, 57.243394 ], [ 27.861328, 56.752723 ], [ 28.168945, 56.170023 ], [ 29.223633, 55.912273 ], [ 29.377441, 55.665193 ], [ 29.904785, 55.788929 ], [ 30.871582, 55.553495 ], [ 30.981445, 55.078367 ], [ 30.761719, 54.813348 ], [ 31.376953, 54.162434 ], [ 31.794434, 53.969012 ], [ 31.728516, 53.787672 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.357109 ], [ 32.299805, 53.133590 ], [ 31.508789, 53.173119 ], [ 31.311035, 53.067627 ], [ 31.530762, 52.736292 ], [ 31.794434, 52.106505 ], [ 32.167969, 52.066000 ], [ 32.409668, 52.281602 ], [ 32.717285, 52.241256 ], [ 33.750000, 52.335339 ], [ 34.387207, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.233398, 51.261915 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.778155 ], [ 35.354004, 50.583237 ], [ 36.628418, 50.219095 ], [ 37.397461, 50.387508 ], [ 38.012695, 49.908787 ], [ 38.605957, 49.922935 ], [ 40.078125, 49.596470 ], [ 40.078125, 49.310799 ], [ 39.682617, 48.777913 ], [ 39.902344, 48.224673 ], [ 39.748535, 47.901614 ], [ 38.781738, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.232422, 47.100045 ], [ 37.419434, 47.025206 ], [ 36.760254, 46.694667 ], [ 35.815430, 46.649436 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.644768 ], [ 35.507812, 45.413876 ], [ 36.540527, 45.475540 ], [ 36.342773, 45.104546 ], [ 35.244141, 44.933696 ], [ 33.881836, 44.355278 ], [ 33.332520, 44.559163 ], [ 33.552246, 45.026950 ], [ 32.453613, 45.321254 ], [ 32.629395, 45.521744 ], [ 33.596191, 45.844108 ], [ 33.310547, 46.073231 ], [ 31.750488, 46.331758 ], [ 31.684570, 46.709736 ], [ 30.739746, 46.589069 ], [ 30.388184, 46.027482 ], [ 29.597168, 45.290347 ], [ 29.619141, 45.026950 ], [ 29.135742, 44.824708 ], [ 28.850098, 44.918139 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.685547, 42.569264 ], [ 27.993164, 42.000325 ], [ 28.125000, 41.623655 ], [ 28.981934, 41.294317 ], [ 28.806152, 41.046217 ], [ 27.619629, 40.996484 ], [ 26.367188, 40.145289 ], [ 26.037598, 40.613952 ], [ 26.059570, 40.830437 ], [ 25.444336, 40.847060 ], [ 24.916992, 40.946714 ], [ 23.708496, 40.680638 ], [ 24.411621, 40.128491 ], [ 23.906250, 39.960280 ], [ 23.334961, 39.960280 ], [ 22.807617, 40.480381 ], [ 22.631836, 40.262761 ], [ 22.851562, 39.656456 ], [ 23.356934, 39.181175 ], [ 22.983398, 38.976492 ], [ 23.532715, 38.513788 ], [ 24.016113, 38.220920 ], [ 24.038086, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.400879, 37.405074 ], [ 22.785645, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.500000, 36.403600 ], [ 21.665039, 36.844461 ], [ 21.291504, 37.649034 ], [ 21.115723, 38.307181 ], [ 20.214844, 39.334297 ], [ 20.148926, 39.622615 ], [ 19.973145, 39.690281 ], [ 19.951172, 39.909736 ], [ 19.401855, 40.245992 ], [ 19.313965, 40.730608 ], [ 19.401855, 41.409776 ], [ 19.533691, 41.722131 ], [ 19.379883, 41.869561 ], [ 19.160156, 41.951320 ], [ 18.874512, 42.277309 ], [ 18.457031, 42.472097 ], [ 17.512207, 42.843751 ], [ 16.940918, 43.213183 ], [ 16.018066, 43.500752 ], [ 15.183105, 44.245199 ], [ 15.380859, 44.323848 ], [ 14.919434, 44.731126 ], [ 14.897461, 45.073521 ], [ 14.260254, 45.228481 ], [ 13.952637, 44.793531 ], [ 13.666992, 45.135555 ], [ 13.688965, 45.475540 ], [ 13.930664, 45.583290 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.392578, 44.887012 ], [ 12.260742, 44.606113 ], [ 12.590332, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.040527, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.967659 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.512207, 40.880295 ], [ 18.369141, 40.346544 ], [ 18.479004, 40.162083 ], [ 18.303223, 39.808536 ], [ 17.731934, 40.279526 ], [ 16.875000, 40.446947 ], [ 16.457520, 39.791655 ], [ 17.182617, 39.419221 ], [ 17.050781, 38.908133 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.978845 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.220920 ], [ 15.886230, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.424805, 40.044438 ], [ 15.007324, 40.178873 ], [ 14.699707, 40.597271 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.195190 ], [ 12.897949, 41.244772 ], [ 12.106934, 41.705729 ], [ 11.184082, 42.358544 ], [ 10.502930, 42.924252 ], [ 10.195312, 43.913723 ], [ 9.711914, 44.040219 ], [ 8.898926, 44.370987 ], [ 8.437500, 44.229457 ], [ 7.844238, 43.771094 ], [ 7.426758, 43.691708 ], [ 6.525879, 43.133061 ], [ 4.548340, 43.405047 ], [ 3.098145, 43.068888 ], [ 2.988281, 42.472097 ], [ 3.032227, 41.885921 ], [ 2.087402, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.128491 ], [ 0.000000, 39.892880 ], [ -0.285645, 39.317300 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.649034 ], [ -1.450195, 37.439974 ], [ -1.757812, 37.090240 ], [ -1.757812, 43.596306 ], [ -1.384277, 44.024422 ], [ -1.186523, 46.012224 ], [ -1.757812, 46.589069 ], [ -1.757812, 48.661943 ], [ -1.625977, 48.647428 ], [ -1.757812, 49.152970 ], [ -1.757812, 49.696062 ], [ -0.988770, 49.339441 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.120578 ], [ 1.647949, 50.944584 ], [ 3.317871, 51.344339 ], [ 3.823242, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.086426, 53.514185 ], [ 6.899414, 53.474970 ], [ 7.097168, 53.696706 ], [ 7.932129, 53.748711 ], [ 8.129883, 53.527248 ], [ 8.811035, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 8.129883, 55.516192 ], [ 8.085938, 56.535258 ], [ 8.261719, 56.812908 ], [ 8.547363, 57.112385 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.590820, 57.727619 ], [ 10.546875, 57.219608 ], [ 10.261230, 56.885002 ], [ 10.371094, 56.607885 ], [ 10.920410, 56.462490 ], [ 10.678711, 56.084298 ], [ 10.371094, 56.194481 ], [ 9.645996, 55.466399 ], [ 9.931641, 54.977614 ], [ 9.931641, 54.597528 ], [ 10.942383, 54.367759 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.201010 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.128418, 53.761702 ], [ 14.809570, 54.046489 ], [ 16.369629, 54.508327 ], [ 17.622070, 54.851315 ], [ 18.632812, 54.686534 ], [ 18.698730, 54.431713 ], [ 19.665527, 54.418930 ], [ 20.895996, 54.316523 ], [ 22.741699, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.851315 ], [ 22.324219, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.049805, 56.035226 ], [ 21.093750, 56.788845 ], [ 21.577148, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.312988, 57.004850 ], [ 24.125977, 57.028774 ], [ 24.323730, 57.797944 ], [ 24.433594, 58.378679 ], [ 24.060059, 58.251727 ], [ 23.422852, 58.608334 ], [ 23.334961, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ], [ [ [ 15.512695, 38.238180 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.125286 ], [ 15.095215, 36.615528 ], [ 14.326172, 37.002553 ], [ 13.820801, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.117272 ], [ 13.732910, 38.030786 ], [ 15.512695, 38.238180 ] ] ], [ [ [ 12.370605, 56.108810 ], [ 12.700195, 55.603178 ], [ 12.084961, 54.800685 ], [ 11.052246, 55.366625 ], [ 10.898438, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 29.377441, 67.204032 ], [ 29.047852, 66.947274 ], [ 29.509277, 66.513260 ], [ 30.212402, 65.802776 ], [ 29.553223, 64.951465 ], [ 30.454102, 64.206377 ], [ 30.036621, 63.548552 ], [ 31.508789, 62.865169 ], [ 31.135254, 62.359805 ], [ 30.212402, 61.783513 ], [ 28.081055, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.053874 ], [ 22.873535, 59.844815 ], [ 22.302246, 60.392148 ], [ 21.313477, 60.716198 ], [ 21.555176, 61.700291 ], [ 21.049805, 62.603453 ], [ 21.533203, 63.194018 ], [ 22.434082, 63.821288 ], [ 24.741211, 64.904910 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.531171 ], [ 23.906250, 66.009086 ], [ 22.192383, 65.721594 ], [ 21.225586, 65.025785 ], [ 21.379395, 64.415921 ], [ 19.775391, 63.607217 ], [ 17.841797, 62.744665 ], [ 17.116699, 61.344078 ], [ 17.841797, 60.640876 ], [ 18.786621, 60.075803 ], [ 17.863770, 58.950008 ], [ 16.831055, 58.722599 ], [ 16.457520, 57.040730 ], [ 15.886230, 56.108810 ], [ 14.677734, 56.194481 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.366625 ], [ 12.634277, 56.304349 ], [ 11.799316, 57.444949 ], [ 11.030273, 58.859224 ], [ 10.349121, 59.467408 ], [ 8.393555, 58.309489 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.317383, 59.667741 ], [ 4.987793, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.547363, 63.450509 ], [ 10.524902, 64.482261 ], [ 12.370605, 65.874725 ], [ 13.117676, 66.513260 ], [ 13.996582, 67.204032 ], [ 29.377441, 67.204032 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.821777, 40.497092 ], [ 9.667969, 39.181175 ], [ 9.206543, 39.232253 ], [ 8.811035, 38.908133 ], [ 8.437500, 39.164141 ], [ 8.393555, 40.380028 ], [ 8.151855, 40.946714 ], [ 8.701172, 40.896906 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 9.382324, 43.004647 ], [ 9.558105, 42.147114 ], [ 9.228516, 41.376809 ], [ 8.767090, 41.590797 ], [ 8.547363, 42.261049 ], [ 8.745117, 42.633959 ], [ 9.382324, 43.004647 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.191406, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.540307 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.958008, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 80.112305, 42.130821 ], [ 78.552246, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.062786 ], [ 76.530762, 40.430224 ], [ 75.476074, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.436193 ], [ 71.784668, 39.283294 ], [ 70.554199, 39.605688 ], [ 69.455566, 39.520992 ], [ 69.565430, 40.094882 ], [ 70.642090, 39.926588 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.212441 ], [ 70.466309, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.323730, 40.730608 ], [ 69.016113, 40.078071 ], [ 68.532715, 39.537940 ], [ 67.697754, 39.571822 ], [ 67.434082, 39.147103 ], [ 68.181152, 38.908133 ], [ 68.400879, 38.151837 ], [ 67.829590, 37.142803 ], [ 67.082520, 37.352693 ], [ 66.511230, 37.370157 ], [ 66.225586, 37.387617 ], [ 65.742188, 37.666429 ], [ 65.588379, 37.300275 ], [ 64.753418, 37.107765 ], [ 64.555664, 36.315125 ], [ 63.984375, 36.013561 ], [ 63.193359, 35.853440 ], [ 62.995605, 35.406961 ], [ 62.226562, 35.263562 ], [ 61.215820, 35.657296 ], [ 60.798340, 34.397845 ], [ 60.534668, 33.669497 ], [ 60.974121, 33.523079 ], [ 60.534668, 32.971804 ], [ 60.864258, 32.175612 ], [ 60.952148, 31.541090 ], [ 61.699219, 31.372399 ], [ 61.787109, 30.732393 ], [ 60.886230, 29.821583 ], [ 62.556152, 29.324720 ], [ 63.544922, 29.458731 ], [ 64.160156, 29.343875 ], [ 64.357910, 29.554345 ], [ 65.039062, 29.477861 ], [ 66.357422, 29.878755 ], [ 66.379395, 30.732393 ], [ 66.950684, 31.297328 ], [ 67.675781, 31.297328 ], [ 67.785645, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.257812, 32.509762 ], [ 69.697266, 33.100745 ], [ 70.334473, 33.358062 ], [ 69.938965, 34.016242 ], [ 70.883789, 33.979809 ], [ 71.147461, 34.343436 ], [ 71.125488, 34.723555 ], [ 71.608887, 35.155846 ], [ 71.499023, 35.657296 ], [ 71.257324, 36.066862 ], [ 71.850586, 36.509636 ], [ 72.927246, 36.721274 ], [ 74.069824, 36.826875 ], [ 74.575195, 37.020098 ], [ 75.168457, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.889050 ], [ 77.849121, 35.496456 ], [ 76.882324, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.741612 ], [ 73.762207, 34.325292 ], [ 74.113770, 33.431441 ], [ 74.443359, 32.768800 ], [ 75.256348, 32.268555 ], [ 74.399414, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.817383, 28.960089 ], [ 71.784668, 27.916767 ], [ 70.620117, 27.994401 ], [ 69.521484, 26.941660 ], [ 70.180664, 26.490240 ], [ 70.290527, 25.720735 ], [ 70.839844, 25.204941 ], [ 71.037598, 24.347097 ], [ 68.840332, 24.367114 ], [ 68.181152, 23.684774 ], [ 67.434082, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.244696 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.470573 ], [ 53.503418, 26.804461 ], [ 52.492676, 27.586198 ], [ 51.525879, 27.858504 ], [ 50.844727, 28.806174 ], [ 50.119629, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.315988 ], [ 48.559570, 29.916852 ], [ 48.010254, 30.448674 ], [ 48.010254, 30.977609 ], [ 47.680664, 30.977609 ], [ 47.856445, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.120605, 33.008663 ], [ 45.417480, 33.961586 ], [ 45.659180, 34.741612 ], [ 46.142578, 35.083956 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 44.780273, 37.177826 ], [ 44.230957, 37.978845 ], [ 44.428711, 38.272689 ], [ 44.121094, 39.419221 ], [ 44.802246, 39.707187 ], [ 44.406738, 40.010787 ], [ 43.659668, 40.245992 ], [ 43.747559, 40.747257 ], [ 43.593750, 41.095912 ], [ 44.978027, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.494141, 41.062786 ], [ 46.647949, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.853196 ], [ 46.691895, 41.820455 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.614258, 40.563895 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.044786 ], [ 48.867188, 38.822591 ], [ 48.889160, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.272949, 36.703660 ], [ 53.833008, 36.967449 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.107910, 39.283294 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.027614 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.008789, 41.557922 ], [ 53.723145, 42.114524 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.129021 ], [ 52.514648, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.317383, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.845164 ], [ 52.053223, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.713379, 50.611132 ], [ 50.778809, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.181152, 54.965002 ], [ 69.060059, 55.379110 ] ] ], [ [ [ 36.870117, 22.004175 ], [ 37.199707, 21.022983 ], [ 36.979980, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.604601 ], [ 38.408203, 17.999632 ], [ 39.001465, 16.846605 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.498508 ], [ 42.583008, 13.004558 ], [ 43.088379, 12.704651 ], [ 43.330078, 12.382928 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.626465, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.017830 ], [ 51.130371, 11.738302 ], [ 51.042480, 11.156845 ], [ 51.042480, 10.639014 ], [ 50.844727, 10.271681 ], [ 50.559082, 9.188870 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.795535 ], [ 48.603516, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.571289, 2.043024 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.462402, -1.757537 ], [ 35.310059, -1.757537 ], [ 33.903809, -0.944781 ], [ 31.860352, -1.032659 ], [ 30.761719, -1.010690 ], [ 30.410156, -1.142502 ], [ 29.816895, -1.450040 ], [ 29.575195, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.289551, -1.757537 ], [ 16.391602, -1.757537 ], [ 16.875000, -1.230374 ], [ 17.534180, -0.747049 ], [ 17.644043, -0.417477 ], [ 17.687988, 0.000000 ], [ 17.819824, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.907715, 1.735574 ], [ 18.105469, 2.372369 ], [ 18.391113, 2.899153 ], [ 18.457031, 3.513421 ], [ 17.819824, 3.557283 ], [ 17.138672, 3.732708 ], [ 16.545410, 3.206333 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.547988 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.029297, 3.842332 ], [ 14.941406, 4.214943 ], [ 14.479980, 4.740675 ], [ 14.567871, 5.025283 ], [ 14.458008, 5.441022 ], [ 14.545898, 6.227934 ], [ 14.787598, 6.402648 ], [ 15.270996, 7.427837 ], [ 16.105957, 7.493196 ], [ 16.281738, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.699219, 7.514981 ], [ 17.973633, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.918457, 8.624472 ], [ 18.808594, 8.971897 ], [ 19.094238, 9.080400 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.730957, 10.574222 ], [ 22.236328, 10.962764 ], [ 22.873535, 11.135287 ], [ 22.873535, 11.393879 ], [ 22.500000, 11.673755 ], [ 22.500000, 12.254128 ], [ 22.280273, 12.640338 ], [ 21.928711, 12.597455 ], [ 22.038574, 12.961736 ], [ 22.302246, 13.368243 ], [ 22.192383, 13.795406 ], [ 22.521973, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.686510 ], [ 23.884277, 15.601875 ], [ 23.862305, 19.993998 ], [ 25.004883, 19.993998 ], [ 25.004883, 22.004175 ], [ 36.870117, 22.004175 ] ], [ [ 23.796387, 8.667918 ], [ 24.565430, 8.233237 ], [ 23.884277, 8.624472 ], [ 23.796387, 8.667918 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.271973, 25.720735 ], [ 56.403809, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.414551, 23.885838 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.105000 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.488773 ], [ 57.832031, 20.241583 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.083201 ], [ 56.293945, 17.874203 ], [ 55.656738, 17.874203 ], [ 55.261230, 17.623082 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.951724 ], [ 54.250488, 17.035777 ], [ 53.569336, 16.699340 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.691406, 14.008696 ], [ 48.229980, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.581921 ], [ 46.713867, 13.389620 ], [ 45.878906, 13.346865 ], [ 45.637207, 13.282719 ], [ 45.417480, 13.025966 ], [ 45.153809, 12.961736 ], [ 45.000000, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.187012, 12.576010 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.242188, 13.774066 ], [ 43.088379, 14.051331 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.707663 ], [ 42.824707, 15.919074 ], [ 42.780762, 16.341226 ], [ 43.220215, 16.657244 ], [ 43.110352, 17.077790 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.308688 ], [ 44.055176, 17.413546 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.224758 ], [ 46.757812, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.108887, 18.625425 ], [ 52.009277, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.678711, 22.004175 ], [ 55.217285, 22.715390 ], [ 54.997559, 22.492257 ], [ 52.009277, 22.998852 ], [ 51.613770, 24.006326 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.789551, 24.026397 ], [ 52.580566, 24.166802 ], [ 54.008789, 24.126702 ], [ 54.689941, 24.786735 ], [ 55.437012, 25.443275 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ], [ [ [ 47.307129, 30.050077 ], [ 47.966309, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.427734, 28.555576 ], [ 47.702637, 28.516969 ], [ 47.460938, 28.998532 ], [ 46.560059, 29.094577 ], [ 47.307129, 30.050077 ] ] ], [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.613770, 25.204941 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.547123 ], [ 50.800781, 24.746831 ], [ 50.734863, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.108398, 12.017830 ], [ 51.130371, 11.738302 ], [ 51.042480, 11.156845 ], [ 51.042480, 10.639014 ], [ 50.844727, 10.271681 ], [ 50.559082, 9.188870 ], [ 50.075684, 8.080985 ], [ 49.460449, 6.795535 ], [ 48.603516, 5.331644 ], [ 47.746582, 4.214943 ], [ 46.560059, 2.855263 ], [ 45.571289, 2.043024 ], [ 44.077148, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.033691, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.594238, -1.691649 ], [ 41.000977, -0.856902 ], [ 41.000977, 0.000000 ], [ 40.979004, 2.789425 ], [ 41.857910, 3.908099 ], [ 42.121582, 4.236856 ], [ 42.780762, 4.258768 ], [ 43.659668, 4.959615 ], [ 44.956055, 5.003394 ], [ 47.790527, 7.993957 ], [ 46.955566, 7.993957 ], [ 43.681641, 9.188870 ], [ 43.308105, 9.535749 ], [ 42.561035, 10.574222 ], [ 43.154297, 11.458491 ], [ 43.461914, 11.286161 ], [ 43.659668, 10.854886 ], [ 44.121094, 10.444598 ], [ 44.626465, 10.444598 ], [ 45.549316, 10.703792 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.135287 ], [ 48.032227, 11.199957 ], [ 48.383789, 11.372339 ], [ 48.955078, 11.415418 ], [ 49.262695, 11.436955 ], [ 49.724121, 11.587669 ], [ 50.251465, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.017830 ] ] ], [ [ [ 80.156250, 9.817329 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.559294 ], [ 81.782227, 7.514981 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.751896 ], [ 79.694824, 8.189742 ], [ 80.156250, 9.817329 ] ] ], [ [ [ 69.060059, 55.379110 ], [ 70.861816, 55.166319 ], [ 71.191406, 54.136696 ], [ 72.224121, 54.380557 ], [ 73.520508, 54.033586 ], [ 73.432617, 53.488046 ], [ 74.377441, 53.540307 ], [ 76.882324, 54.495568 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.409532 ], [ 80.046387, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.958008, 50.805935 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.317408 ], [ 85.122070, 50.120578 ], [ 85.539551, 49.696062 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.210420 ], [ 86.594238, 48.545705 ], [ 85.759277, 48.458352 ], [ 85.715332, 47.457809 ], [ 85.166016, 46.995241 ], [ 83.188477, 47.323931 ], [ 82.463379, 45.537137 ], [ 81.958008, 45.321254 ], [ 79.958496, 44.918139 ], [ 80.859375, 43.181147 ], [ 80.178223, 42.924252 ], [ 80.266113, 42.342305 ], [ 80.112305, 42.130821 ], [ 78.552246, 41.574361 ], [ 78.178711, 41.178654 ], [ 76.904297, 41.062786 ], [ 76.530762, 40.430224 ], [ 75.476074, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.436193 ], [ 73.937988, 38.496594 ], [ 74.267578, 38.599700 ], [ 74.860840, 38.376115 ], [ 74.838867, 37.996163 ], [ 74.970703, 37.422526 ], [ 75.168457, 37.125286 ], [ 75.893555, 36.668419 ], [ 76.201172, 35.889050 ], [ 77.849121, 35.496456 ], [ 78.903809, 34.325292 ], [ 78.815918, 33.504759 ], [ 79.211426, 32.990236 ], [ 79.167480, 32.491230 ], [ 78.464355, 32.620870 ], [ 78.750000, 31.522361 ], [ 79.716797, 30.883369 ], [ 81.123047, 30.183122 ], [ 81.518555, 30.429730 ], [ 82.331543, 30.107118 ], [ 83.342285, 29.458731 ], [ 83.891602, 29.324720 ], [ 84.243164, 28.844674 ], [ 85.012207, 28.632747 ], [ 85.825195, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.132324, 27.877928 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.098254 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.882880 ], [ 91.208496, 26.804461 ], [ 91.757812, 26.824071 ], [ 91.757812, 25.145285 ], [ 90.878906, 25.125393 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.264568 ], [ 89.824219, 25.958045 ], [ 89.362793, 26.017298 ], [ 88.571777, 26.450902 ], [ 88.220215, 25.760320 ], [ 88.923340, 25.244696 ], [ 88.308105, 24.866503 ], [ 88.088379, 24.507143 ], [ 88.703613, 24.226929 ], [ 88.527832, 23.624395 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.044913 ], [ 88.879395, 21.698265 ], [ 88.220215, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.033691, 20.735566 ], [ 86.506348, 20.159098 ], [ 85.056152, 19.476950 ], [ 83.935547, 18.291950 ], [ 83.188477, 17.664960 ], [ 82.199707, 17.014768 ], [ 82.199707, 16.551962 ], [ 81.694336, 16.299051 ], [ 80.793457, 15.940202 ], [ 80.332031, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.870605, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.343262, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.210560 ], [ 78.288574, 8.928487 ], [ 77.937012, 8.254983 ], [ 77.541504, 7.972198 ], [ 76.596680, 8.906780 ], [ 76.135254, 10.293301 ], [ 75.739746, 11.307708 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.626109 ], [ 73.542480, 15.982454 ], [ 72.817383, 19.207429 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.350781 ], [ 71.169434, 20.756114 ], [ 70.466309, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.653320, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.684774 ], [ 67.434082, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.244696 ], [ 62.907715, 25.224820 ], [ 61.501465, 25.085599 ], [ 59.611816, 25.383735 ], [ 58.535156, 25.601902 ], [ 57.392578, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.470573 ], [ 53.503418, 26.804461 ], [ 52.492676, 27.586198 ], [ 51.525879, 27.858504 ], [ 50.844727, 28.806174 ], [ 50.119629, 30.145127 ], [ 49.570312, 29.993002 ], [ 48.933105, 30.315988 ], [ 48.559570, 29.916852 ], [ 48.010254, 30.448674 ], [ 48.010254, 30.977609 ], [ 47.680664, 30.977609 ], [ 47.856445, 31.709476 ], [ 47.329102, 32.472695 ], [ 46.120605, 33.008663 ], [ 45.417480, 33.961586 ], [ 45.659180, 34.741612 ], [ 46.142578, 35.083956 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 44.780273, 37.177826 ], [ 44.230957, 37.978845 ], [ 44.428711, 38.272689 ], [ 44.121094, 39.419221 ], [ 44.802246, 39.707187 ], [ 45.000000, 39.740986 ], [ 45.307617, 39.470125 ], [ 45.747070, 39.470125 ], [ 45.747070, 39.317300 ], [ 46.142578, 38.736946 ], [ 46.516113, 38.771216 ], [ 46.494141, 39.470125 ], [ 46.032715, 39.622615 ], [ 45.615234, 39.892880 ], [ 45.900879, 40.212441 ], [ 45.351562, 40.563895 ], [ 45.571289, 40.813809 ], [ 45.175781, 40.979898 ], [ 44.978027, 41.244772 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.494141, 41.062786 ], [ 46.647949, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.853196 ], [ 46.691895, 41.820455 ], [ 47.373047, 41.211722 ], [ 47.812500, 41.145570 ], [ 47.988281, 41.409776 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.614258, 40.563895 ], [ 50.075684, 40.530502 ], [ 50.383301, 40.262761 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.218750, 39.044786 ], [ 48.867188, 38.822591 ], [ 48.889160, 38.324420 ], [ 49.196777, 37.579413 ], [ 50.141602, 37.370157 ], [ 50.844727, 36.879621 ], [ 52.272949, 36.703660 ], [ 53.833008, 36.967449 ], [ 53.920898, 37.195331 ], [ 53.745117, 37.909534 ], [ 53.876953, 38.959409 ], [ 53.107910, 39.283294 ], [ 53.349609, 39.977120 ], [ 52.690430, 40.027614 ], [ 52.910156, 40.880295 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.008789, 41.557922 ], [ 53.723145, 42.114524 ], [ 52.910156, 41.869561 ], [ 52.822266, 41.129021 ], [ 52.514648, 41.787697 ], [ 52.448730, 42.032974 ], [ 52.690430, 42.439674 ], [ 52.492676, 42.795401 ], [ 51.350098, 43.133061 ], [ 50.888672, 44.024422 ], [ 50.339355, 44.276671 ], [ 50.317383, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.328125, 45.243953 ], [ 52.163086, 45.413876 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.240652 ], [ 53.041992, 46.845164 ], [ 52.053223, 46.800059 ], [ 51.196289, 47.055154 ], [ 50.031738, 46.604167 ], [ 49.108887, 46.392411 ], [ 48.603516, 46.558860 ], [ 48.691406, 47.070122 ], [ 48.054199, 47.739323 ], [ 47.307129, 47.709762 ], [ 46.472168, 48.400032 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.457504 ], [ 48.581543, 49.880478 ], [ 48.713379, 50.611132 ], [ 50.778809, 51.686180 ], [ 52.338867, 51.713416 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.069017 ], [ 59.633789, 50.541363 ], [ 59.941406, 50.847573 ], [ 61.347656, 50.792047 ], [ 61.589355, 51.275662 ], [ 59.963379, 51.957807 ], [ 60.930176, 52.442618 ], [ 60.732422, 52.722986 ], [ 61.699219, 52.975108 ], [ 60.974121, 53.670680 ], [ 61.435547, 54.007769 ], [ 65.170898, 54.354956 ], [ 65.676270, 54.597528 ], [ 68.181152, 54.965002 ], [ 69.060059, 55.379110 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.313113 ], [ 56.381836, 25.898762 ], [ 56.271973, 25.720735 ], [ 56.403809, 24.926295 ], [ 56.843262, 24.246965 ], [ 57.414551, 23.885838 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.458008, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.105000 ], [ 58.491211, 20.427013 ], [ 58.029785, 20.488773 ], [ 57.832031, 20.241583 ], [ 57.656250, 19.725342 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.937464 ], [ 57.238770, 18.937464 ], [ 56.601562, 18.562947 ], [ 56.513672, 18.083201 ], [ 56.293945, 17.874203 ], [ 55.656738, 17.874203 ], [ 55.261230, 17.623082 ], [ 55.283203, 17.224758 ], [ 54.799805, 16.951724 ], [ 54.250488, 17.035777 ], [ 53.569336, 16.699340 ], [ 53.107910, 16.657244 ], [ 52.382812, 16.383391 ], [ 52.185059, 15.940202 ], [ 52.163086, 15.601875 ], [ 51.174316, 15.178181 ], [ 49.570312, 14.711135 ], [ 48.691406, 14.008696 ], [ 48.229980, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.581921 ], [ 46.713867, 13.389620 ], [ 45.878906, 13.346865 ], [ 45.637207, 13.282719 ], [ 45.417480, 13.025966 ], [ 45.153809, 12.961736 ], [ 45.000000, 12.704651 ], [ 44.494629, 12.726084 ], [ 44.187012, 12.576010 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.242188, 13.774066 ], [ 43.088379, 14.051331 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.220589 ], [ 42.802734, 15.262989 ], [ 42.692871, 15.707663 ], [ 42.824707, 15.919074 ], [ 42.780762, 16.341226 ], [ 43.220215, 16.657244 ], [ 43.110352, 17.077790 ], [ 43.374023, 17.581194 ], [ 43.791504, 17.308688 ], [ 44.055176, 17.413546 ], [ 45.219727, 17.434511 ], [ 45.395508, 17.329664 ], [ 46.362305, 17.224758 ], [ 46.757812, 17.287709 ], [ 46.999512, 16.951724 ], [ 47.460938, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.108887, 18.625425 ], [ 52.009277, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.678711, 22.004175 ], [ 55.217285, 22.715390 ], [ 54.997559, 22.492257 ], [ 52.009277, 22.998852 ], [ 51.613770, 24.006326 ], [ 51.591797, 24.246965 ], [ 51.767578, 24.287027 ], [ 51.789551, 24.026397 ], [ 52.580566, 24.166802 ], [ 54.008789, 24.126702 ], [ 54.689941, 24.786735 ], [ 55.437012, 25.443275 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ], [ [ [ 47.307129, 30.050077 ], [ 47.966309, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.427734, 28.555576 ], [ 47.702637, 28.516969 ], [ 47.460938, 28.998532 ], [ 46.560059, 29.094577 ], [ 47.307129, 30.050077 ] ] ], [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.613770, 25.204941 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.547123 ], [ 50.800781, 24.746831 ], [ 50.734863, 25.482951 ], [ 51.020508, 25.997550 ], [ 51.284180, 26.115986 ] ] ], [ [ [ 91.757812, 24.106647 ], [ 91.757812, 23.180764 ], [ 91.713867, 22.978624 ], [ 91.164551, 23.503552 ], [ 91.472168, 24.066528 ], [ 91.757812, 24.106647 ] ] ], [ [ [ 91.757812, 27.780772 ], [ 91.757812, 27.722436 ], [ 91.691895, 27.761330 ], [ 91.757812, 27.780772 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.156250, 9.817329 ], [ 80.837402, 9.275622 ], [ 81.298828, 8.559294 ], [ 81.782227, 7.514981 ], [ 81.628418, 6.489983 ], [ 81.210938, 6.206090 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.751896 ], [ 79.694824, 8.189742 ], [ 80.156250, 9.817329 ] ] ], [ [ [ 81.518555, 30.429730 ], [ 82.331543, 30.107118 ], [ 83.342285, 29.458731 ], [ 83.891602, 29.324720 ], [ 84.243164, 28.844674 ], [ 85.012207, 28.632747 ], [ 85.825195, 28.207609 ], [ 86.945801, 27.974998 ], [ 88.132324, 27.877928 ], [ 88.044434, 27.449790 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.682617, 27.235095 ], [ 83.298340, 27.371767 ], [ 82.001953, 27.916767 ], [ 81.057129, 28.420391 ], [ 80.090332, 28.786918 ], [ 80.485840, 29.726222 ], [ 81.123047, 30.183122 ], [ 81.518555, 30.429730 ] ] ], [ [ [ 90.021973, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.757812, 27.722436 ], [ 91.757812, 26.824071 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.304381 ] ] ], [ [ [ 70.664062, 40.963308 ], [ 70.466309, 40.497092 ], [ 70.598145, 40.212441 ], [ 71.015625, 40.245992 ], [ 70.642090, 39.926588 ], [ 69.565430, 40.094882 ], [ 69.455566, 39.520992 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.283294 ], [ 73.674316, 39.436193 ], [ 73.937988, 38.496594 ], [ 74.267578, 38.599700 ], [ 74.860840, 38.376115 ], [ 74.838867, 37.996163 ], [ 74.970703, 37.422526 ], [ 75.168457, 37.125286 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.826875 ], [ 72.927246, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.257324, 36.066862 ], [ 71.499023, 35.657296 ], [ 71.608887, 35.155846 ], [ 71.125488, 34.723555 ], [ 71.147461, 34.343436 ], [ 70.883789, 33.979809 ], [ 69.938965, 34.016242 ], [ 70.334473, 33.358062 ], [ 69.697266, 33.100745 ], [ 69.257812, 32.509762 ], [ 69.323730, 31.896214 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.785645, 31.578535 ], [ 67.675781, 31.297328 ], [ 66.950684, 31.297328 ], [ 66.379395, 30.732393 ], [ 66.357422, 29.878755 ], [ 65.039062, 29.477861 ], [ 64.357910, 29.554345 ], [ 64.160156, 29.343875 ], [ 63.544922, 29.458731 ], [ 62.556152, 29.324720 ], [ 60.886230, 29.821583 ], [ 61.787109, 30.732393 ], [ 61.699219, 31.372399 ], [ 60.952148, 31.541090 ], [ 60.864258, 32.175612 ], [ 60.534668, 32.971804 ], [ 60.974121, 33.523079 ], [ 60.534668, 33.669497 ], [ 60.798340, 34.397845 ], [ 61.215820, 35.657296 ], [ 62.226562, 35.263562 ], [ 62.995605, 35.406961 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.013561 ], [ 64.555664, 36.315125 ], [ 64.753418, 37.107765 ], [ 65.588379, 37.300275 ], [ 65.742188, 37.666429 ], [ 66.225586, 37.387617 ], [ 66.511230, 37.370157 ], [ 67.082520, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.400879, 38.151837 ], [ 68.181152, 38.908133 ], [ 67.434082, 39.147103 ], [ 67.697754, 39.571822 ], [ 68.532715, 39.537940 ], [ 69.016113, 40.078071 ], [ 69.323730, 40.730608 ], [ 70.664062, 40.963308 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.571777, 26.450902 ], [ 89.362793, 26.017298 ], [ 89.824219, 25.958045 ], [ 89.912109, 25.264568 ], [ 90.000000, 25.264568 ], [ 90.878906, 25.125393 ], [ 91.757812, 25.145285 ], [ 91.757812, 24.106647 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.757812, 23.180764 ], [ 91.757812, 22.289096 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.714355, 21.861499 ], [ 89.428711, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.088379, 24.507143 ], [ 88.308105, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.220215, 25.760320 ], [ 88.571777, 26.450902 ] ] ], [ [ [ 91.757812, 67.204032 ], [ 91.757812, 45.166547 ], [ 90.944824, 45.290347 ], [ 90.593262, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 88.857422, 48.063397 ], [ 88.022461, 48.603858 ], [ 87.758789, 49.296472 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.696062 ], [ 85.122070, 50.120578 ], [ 84.418945, 50.317408 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.958008, 50.805935 ], [ 80.573730, 51.385495 ], [ 80.046387, 50.861444 ], [ 77.805176, 53.409532 ], [ 76.530762, 54.175297 ], [ 76.882324, 54.495568 ], [ 74.377441, 53.540307 ], [ 73.432617, 53.488046 ], [ 73.520508, 54.033586 ], [ 72.224121, 54.380557 ], [ 71.191406, 54.136696 ], [ 70.861816, 55.166319 ], [ 69.060059, 55.379110 ], [ 68.181152, 54.965002 ], [ 65.676270, 54.597528 ], [ 65.170898, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.670680 ], [ 61.699219, 52.975108 ], [ 60.732422, 52.722986 ], [ 60.930176, 52.442618 ], [ 59.963379, 51.957807 ], [ 61.589355, 51.275662 ], [ 61.347656, 50.792047 ], [ 59.941406, 50.847573 ], [ 59.633789, 50.541363 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.625073 ], [ 54.536133, 51.027576 ], [ 52.338867, 51.713416 ], [ 50.778809, 51.686180 ], [ 48.713379, 50.611132 ], [ 48.581543, 49.880478 ], [ 47.548828, 50.457504 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.400032 ], [ 47.307129, 47.709762 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.070122 ], [ 48.603516, 46.558860 ], [ 49.108887, 46.392411 ], [ 48.647461, 45.798170 ], [ 47.680664, 45.644768 ], [ 46.691895, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.482910, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.145570 ], [ 47.373047, 41.211722 ], [ 46.691895, 41.820455 ], [ 46.406250, 41.853196 ], [ 45.769043, 42.098222 ], [ 45.461426, 42.504503 ], [ 44.538574, 42.714732 ], [ 43.923340, 42.553080 ], [ 43.747559, 42.747012 ], [ 42.385254, 43.213183 ], [ 40.913086, 43.389082 ], [ 40.078125, 43.548548 ], [ 39.946289, 43.436966 ], [ 38.671875, 44.276671 ], [ 37.551270, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.397461, 45.398450 ], [ 38.232422, 46.240652 ], [ 37.683105, 46.634351 ], [ 39.155273, 47.040182 ], [ 39.133301, 47.264320 ], [ 38.232422, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.781738, 47.827908 ], [ 39.748535, 47.901614 ], [ 39.902344, 48.224673 ], [ 39.682617, 48.777913 ], [ 40.078125, 49.310799 ], [ 40.078125, 49.596470 ], [ 38.605957, 49.922935 ], [ 38.012695, 49.908787 ], [ 37.397461, 50.387508 ], [ 36.628418, 50.219095 ], [ 35.354004, 50.583237 ], [ 35.375977, 50.778155 ], [ 35.024414, 51.206883 ], [ 34.233398, 51.261915 ], [ 34.145508, 51.563412 ], [ 34.387207, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.241256 ], [ 32.409668, 52.281602 ], [ 32.167969, 52.066000 ], [ 31.794434, 52.106505 ], [ 31.530762, 52.736292 ], [ 31.311035, 53.067627 ], [ 31.508789, 53.173119 ], [ 32.299805, 53.133590 ], [ 32.695312, 53.357109 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.787672 ], [ 31.794434, 53.969012 ], [ 31.376953, 54.162434 ], [ 30.761719, 54.813348 ], [ 30.981445, 55.078367 ], [ 30.871582, 55.553495 ], [ 29.904785, 55.788929 ], [ 29.377441, 55.665193 ], [ 29.223633, 55.912273 ], [ 28.168945, 56.170023 ], [ 27.861328, 56.752723 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.468589 ], [ 27.707520, 57.786233 ], [ 27.421875, 58.722599 ], [ 28.125000, 59.299552 ], [ 27.993164, 59.478569 ], [ 29.113770, 60.031930 ], [ 28.081055, 60.500525 ], [ 30.212402, 61.783513 ], [ 31.135254, 62.359805 ], [ 31.508789, 62.865169 ], [ 30.036621, 63.548552 ], [ 30.454102, 64.206377 ], [ 29.553223, 64.951465 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.377441, 67.204032 ], [ 41.088867, 67.204032 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.870605, 65.440002 ], [ 34.936523, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.023926, 63.850354 ], [ 37.133789, 64.330391 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.146115 ], [ 39.594727, 64.520097 ], [ 40.429688, 64.764759 ], [ 39.770508, 65.494741 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.901367, 67.204032 ], [ 45.549316, 67.204032 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.010254, 67.204032 ], [ 72.487793, 67.204032 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.135742, 67.204032 ], [ 91.757812, 67.204032 ] ] ], [ [ [ 90.021973, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.757812, 27.722436 ], [ 91.757812, 26.824071 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.304381 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.324219, 55.015426 ], [ 22.763672, 54.851315 ], [ 22.653809, 54.584797 ], [ 22.741699, 54.329338 ], [ 20.895996, 54.316523 ], [ 19.665527, 54.418930 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.757812, 50.652943 ], [ 91.757812, 27.722436 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.835449, 27.098254 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.882880 ], [ 91.208496, 26.804461 ], [ 91.757812, 26.824071 ], [ 91.757812, 22.289096 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.714355, 21.861499 ], [ 89.428711, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 21.698265 ], [ 88.220215, 21.698265 ], [ 86.967773, 21.493964 ], [ 87.033691, 20.735566 ], [ 86.506348, 20.159098 ], [ 85.056152, 19.476950 ], [ 83.935547, 18.291950 ], [ 83.188477, 17.664960 ], [ 82.199707, 17.014768 ], [ 82.199707, 16.551962 ], [ 81.694336, 16.299051 ], [ 80.793457, 15.940202 ], [ 80.332031, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.244141, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.870605, 12.060809 ], [ 79.848633, 10.358151 ], [ 79.343262, 10.314919 ], [ 78.881836, 9.535749 ], [ 79.189453, 9.210560 ], [ 78.288574, 8.928487 ], [ 77.937012, 8.254983 ], [ 77.541504, 7.972198 ], [ 76.596680, 8.906780 ], [ 76.135254, 10.293301 ], [ 75.739746, 11.307708 ], [ 75.388184, 11.781325 ], [ 74.860840, 12.747516 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.626109 ], [ 73.542480, 15.982454 ], [ 72.817383, 19.207429 ], [ 72.817383, 20.427013 ], [ 72.641602, 21.350781 ], [ 71.169434, 20.756114 ], [ 70.466309, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.653320, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.684774 ], [ 68.840332, 24.367114 ], [ 71.037598, 24.347097 ], [ 70.839844, 25.204941 ], [ 70.290527, 25.720735 ], [ 70.180664, 26.490240 ], [ 69.521484, 26.941660 ], [ 70.620117, 27.994401 ], [ 71.784668, 27.916767 ], [ 72.817383, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.399414, 31.690782 ], [ 75.256348, 32.268555 ], [ 74.443359, 32.768800 ], [ 74.113770, 33.431441 ], [ 73.762207, 34.325292 ], [ 74.245605, 34.741612 ], [ 75.761719, 34.506557 ], [ 76.882324, 34.651285 ], [ 77.849121, 35.496456 ], [ 76.201172, 35.889050 ], [ 75.893555, 36.668419 ], [ 75.168457, 37.125286 ], [ 74.970703, 37.422526 ], [ 74.838867, 37.996163 ], [ 74.860840, 38.376115 ], [ 74.267578, 38.599700 ], [ 73.937988, 38.496594 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.476074, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.904297, 41.062786 ], [ 78.178711, 41.178654 ], [ 78.552246, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.266113, 42.342305 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.958008, 45.321254 ], [ 82.463379, 45.537137 ], [ 83.188477, 47.323931 ], [ 85.166016, 46.995241 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.210420 ], [ 87.758789, 49.296472 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.725098, 50.331436 ], [ 91.757812, 50.652943 ] ], [ [ 81.518555, 30.429730 ], [ 81.123047, 30.183122 ], [ 80.485840, 29.726222 ], [ 80.090332, 28.786918 ], [ 81.057129, 28.420391 ], [ 82.001953, 27.916767 ], [ 83.298340, 27.371767 ], [ 84.682617, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.627818 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.411551 ], [ 88.176270, 26.804461 ], [ 88.044434, 27.449790 ], [ 88.132324, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.632747 ], [ 84.243164, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.342285, 29.458731 ], [ 82.331543, 30.107118 ], [ 81.518555, 30.429730 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.758789, 49.296472 ], [ 88.022461, 48.603858 ], [ 88.857422, 48.063397 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.593262, 45.721522 ], [ 90.944824, 45.290347 ], [ 91.757812, 45.166547 ], [ 91.757812, 27.780772 ], [ 91.691895, 27.761330 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.725586, 28.091366 ], [ 88.132324, 27.877928 ], [ 86.945801, 27.974998 ], [ 85.825195, 28.207609 ], [ 85.012207, 28.632747 ], [ 84.243164, 28.844674 ], [ 83.891602, 29.324720 ], [ 83.342285, 29.458731 ], [ 82.331543, 30.107118 ], [ 81.518555, 30.429730 ], [ 81.123047, 30.183122 ], [ 79.716797, 30.883369 ], [ 78.750000, 31.522361 ], [ 78.464355, 32.620870 ], [ 79.167480, 32.491230 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.903809, 34.325292 ], [ 77.849121, 35.496456 ], [ 76.201172, 35.889050 ], [ 75.893555, 36.668419 ], [ 75.168457, 37.125286 ], [ 74.970703, 37.422526 ], [ 74.838867, 37.996163 ], [ 74.860840, 38.376115 ], [ 74.267578, 38.599700 ], [ 73.937988, 38.496594 ], [ 73.674316, 39.436193 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.476074, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.904297, 41.062786 ], [ 78.178711, 41.178654 ], [ 78.552246, 41.574361 ], [ 80.112305, 42.130821 ], [ 80.266113, 42.342305 ], [ 80.178223, 42.924252 ], [ 80.859375, 43.181147 ], [ 79.958496, 44.918139 ], [ 81.958008, 45.321254 ], [ 82.463379, 45.537137 ], [ 83.188477, 47.323931 ], [ 85.166016, 46.995241 ], [ 85.715332, 47.457809 ], [ 85.759277, 48.458352 ], [ 86.594238, 48.545705 ], [ 87.363281, 49.210420 ], [ 87.758789, 49.296472 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.138672, 3.732708 ], [ 17.819824, 3.557283 ], [ 18.457031, 3.513421 ], [ 18.391113, 2.899153 ], [ 18.105469, 2.372369 ], [ 17.907715, 1.735574 ], [ 17.775879, 0.856902 ], [ 17.819824, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.644043, -0.417477 ], [ 17.534180, -0.747049 ], [ 16.875000, -1.230374 ], [ 16.391602, -1.757537 ], [ 9.184570, -1.757537 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.370605, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.262595 ], [ 14.348145, 2.218684 ], [ 15.952148, 1.735574 ], [ 16.018066, 2.262595 ], [ 16.545410, 3.206333 ], [ 17.138672, 3.732708 ] ] ], [ [ [ 33.903809, -0.944781 ], [ 35.310059, -1.757537 ], [ 29.289551, -1.757537 ], [ 29.289551, -1.625758 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.032659 ], [ 33.903809, -0.944781 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.642090, 5.244128 ], [ 26.411133, 5.156599 ], [ 27.048340, 5.134715 ], [ 27.377930, 5.222247 ], [ 27.971191, 4.412137 ], [ 28.432617, 4.280680 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.707031, 4.609278 ], [ 29.948730, 4.171115 ], [ 30.827637, 3.513421 ], [ 30.783691, 2.328460 ], [ 31.179199, 2.196727 ], [ 30.849609, 1.845384 ], [ 30.476074, 1.581830 ], [ 30.080566, 1.054628 ], [ 29.882812, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.197754 ], [ 29.597168, -0.593251 ], [ 29.575195, -1.340210 ], [ 29.816895, -1.450040 ], [ 30.410156, -1.142502 ], [ 30.761719, -1.010690 ], [ 31.860352, -1.032659 ], [ 33.903809, -0.944781 ], [ 35.310059, -1.757537 ], [ 9.184570, -1.757537 ], [ 8.789062, -1.120534 ], [ 8.833008, -0.790990 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.492188, 1.010690 ], [ 9.821777, 1.076597 ], [ 11.293945, 1.054628 ], [ 11.271973, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.370605, 2.196727 ], [ 12.941895, 2.328460 ], [ 13.073730, 2.262595 ], [ 14.348145, 2.218684 ], [ 15.952148, 1.735574 ], [ 16.018066, 2.262595 ], [ 16.545410, 3.206333 ], [ 17.138672, 3.732708 ], [ 17.819824, 3.557283 ], [ 18.457031, 3.513421 ], [ 18.544922, 4.193030 ], [ 18.940430, 4.718778 ], [ 19.467773, 5.025283 ], [ 20.302734, 4.696879 ], [ 20.939941, 4.324501 ], [ 21.665039, 4.214943 ], [ 22.412109, 4.017699 ], [ 22.697754, 4.631179 ], [ 22.851562, 4.718778 ], [ 23.291016, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.136719, 4.915833 ], [ 25.290527, 5.178482 ], [ 25.642090, 5.244128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.107777 ], [ 21.972656, 68.616534 ], [ 23.532715, 67.933397 ], [ 23.554688, 66.513260 ], [ 23.576660, 66.399160 ], [ 23.906250, 66.009086 ], [ 22.653809, 65.802776 ], [ 14.677734, 65.802776 ], [ 15.117188, 66.196009 ], [ 15.402832, 66.513260 ], [ 16.105957, 67.305976 ], [ 16.765137, 68.015798 ], [ 17.731934, 68.007571 ], [ 17.995605, 68.568414 ], [ 19.885254, 68.407268 ], [ 20.017090, 69.068563 ], [ 20.654297, 69.107777 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.586426, 69.060712 ], [ 28.454590, 68.366801 ], [ 29.970703, 67.701110 ], [ 29.047852, 66.947274 ], [ 29.509277, 66.513260 ], [ 30.212402, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.906250, 66.009086 ], [ 22.653809, 65.802776 ], [ 12.260742, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.252029 ], [ 23.027344, 70.199994 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 16.984863, 80.050460 ], [ 18.259277, 79.702907 ], [ 21.555176, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.479004, 77.827957 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.734951 ], [ 13.161621, 78.025574 ], [ 11.228027, 78.870048 ], [ 10.437012, 79.651722 ], [ 13.161621, 80.008612 ], [ 13.710938, 79.659613 ], [ 15.139160, 79.675377 ], [ 15.534668, 80.016233 ], [ 16.984863, 80.050460 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.927734, 79.516660 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.380371, 80.320120 ], [ 20.456543, 80.596909 ], [ 21.906738, 80.356995 ], [ 22.917480, 80.657741 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.500000, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.423340, 77.934055 ], [ 20.808105, 78.255861 ], [ 22.895508, 78.455425 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 91.757812, 75.715633 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.348325 ], [ 44.187012, 67.949900 ], [ 43.461914, 68.568414 ], [ 46.252441, 68.253111 ], [ 46.823730, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.142090, 67.525373 ], [ 50.229492, 67.999341 ], [ 53.723145, 68.855592 ], [ 54.470215, 68.807986 ], [ 53.481445, 68.204212 ], [ 54.733887, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.326660, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.277521 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.847193 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.232789 ], [ 68.510742, 68.089709 ], [ 69.191895, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.730957, 70.707212 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.931344 ], [ 69.191895, 72.842021 ], [ 69.938965, 73.041829 ], [ 72.597656, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.850586, 71.406172 ], [ 72.465820, 71.088305 ], [ 72.795410, 70.392606 ], [ 72.575684, 69.021414 ], [ 73.674316, 68.407268 ], [ 73.234863, 67.742759 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.280530 ], [ 75.058594, 67.759398 ], [ 74.465332, 68.326262 ], [ 74.926758, 68.989925 ], [ 73.850098, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.634484 ], [ 73.103027, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.663086, 72.829052 ], [ 75.168457, 72.854981 ], [ 75.695801, 72.302431 ], [ 75.300293, 71.335983 ], [ 76.354980, 71.152294 ], [ 75.893555, 71.876745 ], [ 77.585449, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.746432 ], [ 80.617676, 72.580829 ], [ 80.507812, 73.646359 ], [ 82.243652, 73.849286 ], [ 84.660645, 73.806447 ], [ 86.813965, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.140778 ], [ 90.000000, 75.573993 ], [ 90.263672, 75.639536 ], [ 91.757812, 75.715633 ] ] ], [ [ [ 28.168945, 71.187754 ], [ 31.289062, 70.451508 ], [ 30.014648, 70.185103 ], [ 31.113281, 69.557553 ], [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.518555, 69.060712 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.826660, 65.802776 ], [ 24.499512, 65.802776 ], [ 23.906250, 66.009086 ], [ 23.576660, 66.399160 ], [ 23.554688, 66.513260 ], [ 23.532715, 67.933397 ], [ 21.972656, 68.616534 ], [ 20.654297, 69.107777 ], [ 20.017090, 69.068563 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.007571 ], [ 16.765137, 68.015798 ], [ 15.402832, 66.513260 ], [ 15.117188, 66.196009 ], [ 14.677734, 65.802776 ], [ 12.260742, 65.802776 ], [ 13.117676, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.560384 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.252029 ], [ 23.027344, 70.199994 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.988349 ], [ 28.168945, 71.187754 ] ] ], [ [ [ 16.984863, 80.050460 ], [ 18.259277, 79.702907 ], [ 21.555176, 78.954560 ], [ 19.028320, 78.560488 ], [ 18.479004, 77.827957 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.810769 ], [ 15.908203, 76.770602 ], [ 13.754883, 77.379906 ], [ 14.677734, 77.734951 ], [ 13.161621, 78.025574 ], [ 11.228027, 78.870048 ], [ 10.437012, 79.651722 ], [ 13.161621, 80.008612 ], [ 13.710938, 79.659613 ], [ 15.139160, 79.675377 ], [ 15.534668, 80.016233 ], [ 16.984863, 80.050460 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.542411 ], [ 68.181152, 76.232138 ], [ 64.643555, 75.737303 ], [ 61.589355, 75.258649 ], [ 58.469238, 74.307353 ], [ 56.997070, 73.334161 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.546387, 70.721726 ], [ 56.953125, 70.634484 ], [ 53.679199, 70.765206 ], [ 53.415527, 71.208999 ], [ 51.613770, 71.476106 ], [ 51.459961, 72.012945 ], [ 52.470703, 72.228809 ], [ 52.448730, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.078669 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 22.917480, 80.657741 ], [ 25.444336, 80.408388 ], [ 27.399902, 80.058050 ], [ 25.927734, 79.516660 ], [ 23.027344, 79.400085 ], [ 20.083008, 79.568506 ], [ 19.907227, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.380371, 80.320120 ], [ 20.456543, 80.596909 ], [ 21.906738, 80.356995 ], [ 22.917480, 80.657741 ] ] ], [ [ [ 50.031738, 80.918027 ], [ 51.525879, 80.700447 ], [ 51.130371, 80.546518 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.338575 ], [ 48.757324, 80.174965 ], [ 47.592773, 80.008612 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.771192 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.513982 ], [ 49.108887, 80.753556 ], [ 50.031738, 80.918027 ] ] ], [ [ [ 22.895508, 78.455425 ], [ 23.291016, 78.080156 ], [ 24.719238, 77.855723 ], [ 22.500000, 77.446940 ], [ 20.720215, 77.678812 ], [ 21.423340, 77.934055 ], [ 20.808105, 78.255861 ], [ 22.895508, 78.455425 ] ] ], [ [ [ 91.757812, 80.495859 ], [ 91.757812, 80.257110 ], [ 91.186523, 80.342262 ], [ 91.757812, 80.495859 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.124023, 69.907667 ], [ 33.771973, 69.302794 ], [ 36.518555, 69.060712 ], [ 40.297852, 67.933397 ], [ 41.066895, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.925781, 66.757250 ], [ 33.178711, 66.635556 ], [ 33.442383, 66.513260 ], [ 34.826660, 65.901653 ], [ 34.826660, 65.802776 ], [ 30.212402, 65.802776 ], [ 29.509277, 66.513260 ], [ 29.047852, 66.947274 ], [ 29.970703, 67.701110 ], [ 28.454590, 68.366801 ], [ 28.586426, 69.060712 ], [ 29.399414, 69.154740 ], [ 31.113281, 69.557553 ], [ 32.124023, 69.907667 ] ] ], [ [ [ 40.473633, 65.802776 ], [ 42.099609, 66.478208 ], [ 43.022461, 66.416748 ], [ 43.945312, 66.071546 ], [ 44.318848, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.348325 ], [ 44.187012, 67.949900 ], [ 43.461914, 68.568414 ], [ 46.252441, 68.253111 ], [ 46.823730, 67.692771 ], [ 45.549316, 67.567334 ], [ 45.571289, 67.007428 ], [ 46.340332, 66.670387 ], [ 47.900391, 66.886972 ], [ 48.142090, 67.525373 ], [ 50.229492, 67.999341 ], [ 53.723145, 68.855592 ], [ 54.470215, 68.807986 ], [ 53.481445, 68.204212 ], [ 54.733887, 68.097907 ], [ 55.437012, 68.439589 ], [ 57.326660, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.277521 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.519147 ], [ 60.556641, 69.847193 ], [ 63.500977, 69.549877 ], [ 64.885254, 69.232789 ], [ 68.510742, 68.089709 ], [ 69.191895, 68.616534 ], [ 68.159180, 69.146920 ], [ 68.137207, 69.357086 ], [ 66.928711, 69.457554 ], [ 67.258301, 69.930300 ], [ 66.730957, 70.707212 ], [ 66.687012, 71.031249 ], [ 68.532715, 71.931344 ], [ 69.191895, 72.842021 ], [ 69.938965, 73.041829 ], [ 72.597656, 72.777081 ], [ 72.795410, 72.222101 ], [ 71.850586, 71.406172 ], [ 72.465820, 71.088305 ], [ 72.795410, 70.392606 ], [ 72.575684, 69.021414 ], [ 73.674316, 68.407268 ], [ 73.234863, 67.742759 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.169390 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.530768 ], [ 73.916016, 66.791909 ], [ 74.179688, 67.280530 ], [ 75.058594, 67.759398 ], [ 74.465332, 68.326262 ], [ 74.926758, 68.989925 ], [ 73.850098, 69.068563 ], [ 73.608398, 69.626510 ], [ 74.399414, 70.634484 ], [ 73.103027, 71.448163 ], [ 74.882812, 72.121192 ], [ 74.663086, 72.829052 ], [ 75.168457, 72.854981 ], [ 75.695801, 72.302431 ], [ 75.300293, 71.335983 ], [ 76.354980, 71.152294 ], [ 75.893555, 71.876745 ], [ 77.585449, 72.269003 ], [ 79.650879, 72.322459 ], [ 81.496582, 71.746432 ], [ 80.617676, 72.580829 ], [ 80.507812, 73.646359 ], [ 82.243652, 73.849286 ], [ 84.660645, 73.806447 ], [ 86.813965, 73.934634 ], [ 86.000977, 74.461134 ], [ 87.165527, 75.118222 ], [ 88.308105, 75.140778 ], [ 90.000000, 75.573993 ], [ 90.263672, 75.639536 ], [ 91.757812, 75.715633 ], [ 91.757812, 65.802776 ], [ 40.473633, 65.802776 ] ] ], [ [ [ 68.159180, 76.940488 ], [ 68.862305, 76.542411 ], [ 68.181152, 76.232138 ], [ 64.643555, 75.737303 ], [ 61.589355, 75.258649 ], [ 58.469238, 74.307353 ], [ 56.997070, 73.334161 ], [ 55.415039, 72.369105 ], [ 55.634766, 71.538830 ], [ 57.546387, 70.721726 ], [ 56.953125, 70.634484 ], [ 53.679199, 70.765206 ], [ 53.415527, 71.208999 ], [ 51.613770, 71.476106 ], [ 51.459961, 72.012945 ], [ 52.470703, 72.228809 ], [ 52.448730, 72.777081 ], [ 54.426270, 73.627789 ], [ 53.503418, 73.751205 ], [ 55.898438, 74.625101 ], [ 55.634766, 75.078669 ], [ 57.875977, 75.606801 ], [ 61.171875, 76.253039 ], [ 64.489746, 76.439756 ], [ 66.203613, 76.810769 ], [ 68.159180, 76.940488 ] ] ], [ [ [ 50.031738, 80.918027 ], [ 51.525879, 80.700447 ], [ 51.130371, 80.546518 ], [ 49.790039, 80.415707 ], [ 48.889160, 80.338575 ], [ 48.757324, 80.174965 ], [ 47.592773, 80.008612 ], [ 46.494141, 80.245949 ], [ 47.065430, 80.560943 ], [ 44.846191, 80.589727 ], [ 46.801758, 80.771192 ], [ 48.317871, 80.785277 ], [ 48.515625, 80.513982 ], [ 49.108887, 80.753556 ], [ 50.031738, 80.918027 ] ] ], [ [ [ 91.757812, 80.495859 ], [ 91.757812, 80.257110 ], [ 91.186523, 80.342262 ], [ 91.757812, 80.495859 ] ] ] ] } } ] } ] } , @@ -187,23 +175,21 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ] ] ], [ [ [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ] ] ], [ [ [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ] ] ], [ [ [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.193848, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ] ] ], [ [ [ 120.695801, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 133.857422, -66.284537 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.695801, -67.204032 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, -66.399160 ], [ 88.352051, -66.486976 ], [ 88.835449, -66.955877 ], [ 89.670410, -67.152898 ], [ 90.329590, -67.204032 ], [ 88.242188, -67.204032 ], [ 88.242188, -66.399160 ] ] ], [ [ [ 91.582031, -67.110204 ], [ 92.614746, -67.187000 ], [ 93.295898, -67.204032 ], [ 90.834961, -67.204032 ], [ 91.582031, -67.110204 ] ] ], [ [ [ 94.174805, -67.110204 ], [ 95.009766, -67.169955 ], [ 95.141602, -67.204032 ], [ 93.581543, -67.204032 ], [ 94.174805, -67.110204 ] ] ], [ [ [ 98.679199, -67.110204 ], [ 99.382324, -67.204032 ], [ 98.063965, -67.204032 ], [ 98.679199, -67.110204 ] ] ], [ [ [ 102.832031, -65.567550 ], [ 103.469238, -65.703518 ], [ 104.238281, -65.973325 ], [ 105.292969, -66.513260 ], [ 106.193848, -66.938669 ], [ 107.160645, -66.955877 ], [ 108.083496, -66.955877 ], [ 109.160156, -66.835165 ], [ 110.236816, -66.696478 ], [ 110.786133, -66.513260 ], [ 111.049805, -66.425537 ], [ 111.752930, -66.133854 ], [ 112.851562, -66.089364 ], [ 113.598633, -65.874725 ], [ 114.389648, -66.071546 ], [ 114.895020, -66.390361 ], [ 115.180664, -66.513260 ], [ 115.598145, -66.696478 ], [ 116.696777, -66.661684 ], [ 117.377930, -66.912834 ], [ 118.586426, -67.169955 ], [ 119.003906, -67.204032 ], [ 99.799805, -67.204032 ], [ 100.393066, -66.912834 ], [ 100.898438, -66.583217 ], [ 101.579590, -66.311035 ], [ 102.832031, -65.567550 ] ] ], [ [ [ 135.065918, -65.311829 ], [ 135.703125, -65.585720 ], [ 135.878906, -66.035873 ], [ 136.208496, -66.443107 ], [ 136.625977, -66.774586 ], [ 137.460938, -66.955877 ], [ 138.603516, -66.895596 ], [ 139.899902, -66.878345 ], [ 140.800781, -66.817872 ], [ 142.119141, -66.817872 ], [ 143.063965, -66.800567 ], [ 144.382324, -66.835165 ], [ 145.480957, -66.912834 ], [ 146.140137, -67.204032 ], [ 120.695801, -67.204032 ], [ 120.871582, -67.187000 ], [ 121.662598, -66.878345 ], [ 122.321777, -66.565747 ], [ 122.893066, -66.513260 ], [ 123.222656, -66.486976 ], [ 123.420410, -66.513260 ], [ 124.123535, -66.618122 ], [ 125.156250, -66.722541 ], [ 126.101074, -66.565747 ], [ 127.001953, -66.565747 ], [ 128.803711, -66.757250 ], [ 129.704590, -66.583217 ], [ 130.187988, -66.513260 ], [ 130.781250, -66.425537 ], [ 131.791992, -66.390361 ], [ 132.934570, -66.390361 ], [ 133.857422, -66.284537 ], [ 134.758301, -66.213739 ], [ 135.021973, -65.721594 ], [ 135.065918, -65.311829 ] ] ], [ [ [ 114.741211, 1.757537 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.988720 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.731445, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.741211, 1.757537 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.988720 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.731445, 1.757537 ], [ 110.192871, 1.757537 ], [ 110.390625, 1.669686 ], [ 110.786133, 1.757537 ], [ 114.741211, 1.757537 ] ] ], [ [ [ 104.194336, 1.757537 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.832031, 1.757537 ], [ 104.194336, 1.757537 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.755859, -40.697299 ], [ 145.393066, -40.797177 ], [ 146.359863, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.293457, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.407235 ], [ 147.919922, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.628123 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.698586 ], [ 145.305176, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.755859, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.910354 ], [ 143.151855, -12.318536 ], [ 143.525391, -12.833226 ], [ 143.591309, -13.410994 ], [ 143.569336, -13.774066 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.432501 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.898438, -16.909684 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.268900 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.126355 ], [ 150.490723, -22.553147 ], [ 150.732422, -22.411029 ], [ 150.908203, -23.463246 ], [ 152.072754, -24.467151 ], [ 152.863770, -25.264568 ], [ 153.127441, -26.076521 ], [ 153.171387, -26.647459 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.110749 ], [ 153.522949, -28.998532 ], [ 153.061523, -30.353916 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.721191, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.018066, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.107765 ], [ 150.007324, -37.422526 ], [ 149.436035, -37.770715 ], [ 148.315430, -37.805444 ], [ 147.392578, -38.220920 ], [ 146.931152, -38.599700 ], [ 146.315918, -39.044786 ], [ 145.480957, -38.599700 ], [ 144.887695, -38.410558 ], [ 145.041504, -37.892196 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.805470 ], [ 142.185059, -38.376115 ], [ 141.613770, -38.307181 ], [ 140.646973, -38.013476 ], [ 139.987793, -37.405074 ], [ 139.812012, -36.650793 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.728677 ], [ 138.120117, -35.621582 ], [ 138.449707, -35.119909 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.083956 ], [ 136.823730, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.632916 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.760882 ], [ 136.384277, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.241699, -33.943360 ], [ 134.604492, -33.229498 ], [ 134.077148, -32.842674 ], [ 134.274902, -32.620870 ], [ 133.000488, -32.008076 ], [ 132.297363, -31.989442 ], [ 131.330566, -31.503629 ], [ 129.528809, -31.597253 ], [ 127.111816, -32.287133 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.035645, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.189941, -33.998027 ], [ 121.311035, -33.815666 ], [ 120.585938, -33.925130 ], [ 119.904785, -33.979809 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.470335 ], [ 118.498535, -34.741612 ], [ 118.037109, -35.065973 ], [ 117.290039, -35.029996 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.632916 ], [ 115.554199, -33.486435 ], [ 115.708008, -33.266250 ], [ 115.686035, -32.898038 ], [ 115.795898, -32.212801 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.516969 ], [ 114.169922, -28.110749 ], [ 114.060059, -27.332735 ], [ 113.488770, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.928223, -25.918526 ], [ 114.235840, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.730469, -25.005973 ], [ 113.620605, -24.686952 ], [ 113.400879, -24.387127 ], [ 113.510742, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.235840, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.466309, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.718750, -20.694462 ], [ 117.158203, -20.632784 ], [ 117.443848, -20.756114 ], [ 118.234863, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.816895, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.398926, -19.248922 ], [ 121.662598, -18.708692 ], [ 122.233887, -18.208480 ], [ 122.321777, -17.266728 ], [ 123.024902, -16.404470 ], [ 123.442383, -17.266728 ], [ 123.859863, -17.077790 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.387207, -15.559544 ], [ 124.936523, -15.072124 ], [ 125.178223, -14.689881 ], [ 125.661621, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.814941, -14.285677 ], [ 128.364258, -14.881087 ], [ 128.979492, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.418945, -14.413400 ], [ 129.880371, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.187988, -13.111580 ], [ 130.627441, -12.533115 ], [ 131.220703, -12.189704 ], [ 131.726074, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.561035, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.060809 ], [ 136.494141, -11.867351 ], [ 136.955566, -12.361466 ], [ 136.691895, -12.897489 ], [ 136.296387, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.731381 ], [ 135.791016, -14.221789 ], [ 135.439453, -14.711135 ], [ 135.505371, -15.008464 ], [ 136.296387, -15.559544 ], [ 137.065430, -15.876809 ], [ 137.592773, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.056785 ], [ 139.262695, -17.371610 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.371610 ], [ 141.064453, -16.825574 ], [ 141.284180, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.525879, -13.710035 ], [ 141.657715, -12.940322 ], [ 141.833496, -12.747516 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.888853 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.660608 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.196777, -2.043024 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.283203, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.075011 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.730076 ], [ 147.194824, -7.384258 ], [ 148.095703, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.080400 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.687398 ], [ 149.743652, -9.882275 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.787598, -10.401378 ], [ 147.919922, -10.141932 ], [ 147.128906, -9.492408 ], [ 146.579590, -8.950193 ], [ 146.052246, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.898926, -7.906912 ], [ 143.283691, -8.254983 ], [ 143.415527, -8.993600 ], [ 142.624512, -9.318990 ], [ 142.075195, -9.167179 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.175781, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.791504, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.269043, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 109.731445, 1.757537 ], [ 109.841309, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.988720 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 114.741211, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.052754 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.721680, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.811371 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.455951 ], [ 121.750488, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.943041 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.069824, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.083496, -6.337137 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.533203, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.324501 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.594118 ], [ 149.853516, -5.506640 ], [ 150.007324, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.798340, -5.462896 ], [ 151.083984, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.979980, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.384032 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.991699, -9.297307 ], [ 124.980469, -8.885072 ], [ 125.090332, -8.667918 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 167.211914, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.189941, -16.151369 ], [ 167.211914, -15.897942 ] ] ], [ [ [ 166.640625, -14.626109 ], [ 167.102051, -14.944785 ], [ 167.277832, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.794434, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.640625, -14.626109 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.847168, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.487812 ], [ 162.399902, -10.833306 ], [ 161.696777, -10.811724 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 122.014160, -8.472372 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 159.697266, -9.253936 ], [ 160.356445, -9.405710 ], [ 160.686035, -9.600750 ], [ 160.861816, -9.882275 ], [ 160.466309, -9.903921 ], [ 159.851074, -9.795678 ], [ 159.631348, -9.644077 ], [ 159.697266, -9.253936 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.674805, -9.600750 ], [ 161.520996, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 151.479492, -2.789425 ], [ 152.248535, -3.250209 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.973861 ], [ 153.149414, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.798484 ], [ 151.391602, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.027832, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 127.001953, -3.140516 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.140516 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.124491 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.206090 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ], [ [ [ 156.555176, -6.599131 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.340675 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.188101 ], [ 156.489258, -6.773716 ], [ 156.555176, -6.599131 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.755859, -40.697299 ], [ 145.393066, -40.797177 ], [ 146.359863, -41.145570 ], [ 147.700195, -40.813809 ], [ 148.293457, -40.880295 ], [ 148.359375, -42.065607 ], [ 148.007812, -42.407235 ], [ 147.919922, -43.213183 ], [ 147.568359, -42.940339 ], [ 146.865234, -43.628123 ], [ 146.667480, -43.580391 ], [ 146.052246, -43.548548 ], [ 145.437012, -42.698586 ], [ 145.305176, -42.032974 ], [ 144.711914, -41.162114 ], [ 144.755859, -40.697299 ] ] ], [ [ [ 142.514648, -10.660608 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.107910, -11.910354 ], [ 143.151855, -12.318536 ], [ 143.525391, -12.833226 ], [ 143.591309, -13.410994 ], [ 143.569336, -13.774066 ], [ 143.920898, -14.541050 ], [ 144.558105, -14.179186 ], [ 144.887695, -14.604847 ], [ 145.371094, -14.987240 ], [ 145.283203, -15.432501 ], [ 145.480957, -16.277960 ], [ 145.634766, -16.783506 ], [ 145.898438, -16.909684 ], [ 146.162109, -17.769612 ], [ 146.074219, -18.271086 ], [ 146.381836, -18.958246 ], [ 147.480469, -19.476950 ], [ 148.842773, -20.385825 ], [ 148.710938, -20.632784 ], [ 149.282227, -21.268900 ], [ 149.677734, -22.350076 ], [ 150.073242, -22.126355 ], [ 150.490723, -22.553147 ], [ 150.732422, -22.411029 ], [ 150.908203, -23.463246 ], [ 152.072754, -24.467151 ], [ 152.863770, -25.264568 ], [ 153.127441, -26.076521 ], [ 153.171387, -26.647459 ], [ 153.083496, -27.254630 ], [ 153.566895, -28.110749 ], [ 153.522949, -28.998532 ], [ 153.061523, -30.353916 ], [ 153.083496, -30.921076 ], [ 152.885742, -31.634676 ], [ 152.446289, -32.546813 ], [ 151.721191, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.018066, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.336914, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.941406, -37.107765 ], [ 150.007324, -37.422526 ], [ 149.436035, -37.770715 ], [ 148.315430, -37.805444 ], [ 147.392578, -38.220920 ], [ 146.931152, -38.599700 ], [ 146.315918, -39.044786 ], [ 145.480957, -38.599700 ], [ 144.887695, -38.410558 ], [ 145.041504, -37.892196 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.805470 ], [ 142.185059, -38.376115 ], [ 141.613770, -38.307181 ], [ 140.646973, -38.013476 ], [ 139.987793, -37.405074 ], [ 139.812012, -36.650793 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.728677 ], [ 138.120117, -35.621582 ], [ 138.449707, -35.119909 ], [ 138.208008, -34.379713 ], [ 137.724609, -35.083956 ], [ 136.823730, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.125448 ], [ 137.900391, -33.632916 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.760882 ], [ 136.384277, -34.089061 ], [ 135.988770, -34.885931 ], [ 135.219727, -34.488448 ], [ 135.241699, -33.943360 ], [ 134.604492, -33.229498 ], [ 134.077148, -32.842674 ], [ 134.274902, -32.620870 ], [ 133.000488, -32.008076 ], [ 132.297363, -31.989442 ], [ 131.330566, -31.503629 ], [ 129.528809, -31.597253 ], [ 127.111816, -32.287133 ], [ 126.145020, -32.212801 ], [ 125.090332, -32.731841 ], [ 124.233398, -32.953368 ], [ 124.035645, -33.486435 ], [ 123.662109, -33.888658 ], [ 122.805176, -33.906896 ], [ 122.189941, -33.998027 ], [ 121.311035, -33.815666 ], [ 120.585938, -33.925130 ], [ 119.904785, -33.979809 ], [ 119.289551, -34.506557 ], [ 119.003906, -34.470335 ], [ 118.498535, -34.741612 ], [ 118.037109, -35.065973 ], [ 117.290039, -35.029996 ], [ 116.630859, -35.029996 ], [ 115.576172, -34.379713 ], [ 115.026855, -34.198173 ], [ 115.048828, -33.632916 ], [ 115.554199, -33.486435 ], [ 115.708008, -33.266250 ], [ 115.686035, -32.898038 ], [ 115.795898, -32.212801 ], [ 115.686035, -31.615966 ], [ 115.158691, -30.600094 ], [ 115.004883, -30.031055 ], [ 115.048828, -29.458731 ], [ 114.653320, -28.806174 ], [ 114.609375, -28.516969 ], [ 114.169922, -28.110749 ], [ 114.060059, -27.332735 ], [ 113.488770, -26.549223 ], [ 113.334961, -26.115986 ], [ 113.774414, -26.549223 ], [ 113.444824, -25.621716 ], [ 113.928223, -25.918526 ], [ 114.235840, -26.293415 ], [ 114.213867, -25.780107 ], [ 113.730469, -25.005973 ], [ 113.620605, -24.686952 ], [ 113.400879, -24.387127 ], [ 113.510742, -23.805450 ], [ 113.708496, -23.563987 ], [ 113.840332, -23.059516 ], [ 113.730469, -22.471955 ], [ 114.147949, -21.759500 ], [ 114.235840, -22.512557 ], [ 114.653320, -21.820708 ], [ 115.466309, -21.493964 ], [ 115.949707, -21.063997 ], [ 116.718750, -20.694462 ], [ 117.158203, -20.632784 ], [ 117.443848, -20.756114 ], [ 118.234863, -20.365228 ], [ 118.828125, -20.262197 ], [ 118.981934, -20.035290 ], [ 119.245605, -19.952696 ], [ 119.816895, -19.973349 ], [ 120.849609, -19.683970 ], [ 121.398926, -19.248922 ], [ 121.662598, -18.708692 ], [ 122.233887, -18.208480 ], [ 122.321777, -17.266728 ], [ 123.024902, -16.404470 ], [ 123.442383, -17.266728 ], [ 123.859863, -17.077790 ], [ 123.508301, -16.594081 ], [ 123.815918, -16.109153 ], [ 124.255371, -16.320139 ], [ 124.387207, -15.559544 ], [ 124.936523, -15.072124 ], [ 125.178223, -14.689881 ], [ 125.661621, -14.519780 ], [ 125.683594, -14.221789 ], [ 126.123047, -14.349548 ], [ 126.145020, -14.093957 ], [ 127.067871, -13.816744 ], [ 127.814941, -14.285677 ], [ 128.364258, -14.881087 ], [ 128.979492, -14.881087 ], [ 129.616699, -14.966013 ], [ 129.418945, -14.413400 ], [ 129.880371, -13.624633 ], [ 130.341797, -13.368243 ], [ 130.187988, -13.111580 ], [ 130.627441, -12.533115 ], [ 131.220703, -12.189704 ], [ 131.726074, -12.297068 ], [ 132.583008, -12.125264 ], [ 132.561035, -11.609193 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.135287 ], [ 133.022461, -11.372339 ], [ 133.549805, -11.781325 ], [ 134.384766, -12.039321 ], [ 134.670410, -11.931852 ], [ 135.307617, -12.254128 ], [ 135.878906, -11.953349 ], [ 136.252441, -12.060809 ], [ 136.494141, -11.867351 ], [ 136.955566, -12.361466 ], [ 136.691895, -12.897489 ], [ 136.296387, -13.282719 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.731381 ], [ 135.791016, -14.221789 ], [ 135.439453, -14.711135 ], [ 135.505371, -15.008464 ], [ 136.296387, -15.559544 ], [ 137.065430, -15.876809 ], [ 137.592773, -16.214675 ], [ 138.295898, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.056785 ], [ 139.262695, -17.371610 ], [ 140.207520, -17.706828 ], [ 140.866699, -17.371610 ], [ 141.064453, -16.825574 ], [ 141.284180, -16.383391 ], [ 141.394043, -15.834536 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.264383 ], [ 141.525879, -13.710035 ], [ 141.657715, -12.940322 ], [ 141.833496, -12.747516 ], [ 141.679688, -12.404389 ], [ 141.921387, -11.888853 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.660608 ] ] ], [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.428711, -2.767478 ], [ 135.461426, -3.359889 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 139.196777, -2.043024 ], [ 139.921875, -2.416276 ], [ 140.998535, -2.591889 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.283203, -4.368320 ], [ 145.832520, -4.872048 ], [ 145.986328, -5.462896 ], [ 147.656250, -6.075011 ], [ 147.897949, -6.620957 ], [ 146.975098, -6.730076 ], [ 147.194824, -7.384258 ], [ 148.095703, -8.037473 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.080400 ], [ 149.260254, -9.514079 ], [ 150.029297, -9.687398 ], [ 149.743652, -9.882275 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.574222 ], [ 150.029297, -10.660608 ], [ 149.787598, -10.401378 ], [ 147.919922, -10.141932 ], [ 147.128906, -9.492408 ], [ 146.579590, -8.950193 ], [ 146.052246, -8.059230 ], [ 144.755859, -7.623887 ], [ 143.898926, -7.906912 ], [ 143.283691, -8.254983 ], [ 143.415527, -8.993600 ], [ 142.624512, -9.318990 ], [ 142.075195, -9.167179 ], [ 141.042480, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.889160, -8.385431 ], [ 137.614746, -8.407168 ], [ 138.032227, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.227934 ], [ 137.922363, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.175781, -4.455951 ], [ 133.659668, -3.535352 ], [ 133.374023, -4.017699 ], [ 132.978516, -4.105369 ], [ 132.758789, -3.754634 ], [ 132.758789, -3.316018 ], [ 131.989746, -2.811371 ], [ 133.066406, -2.460181 ], [ 133.791504, -2.482133 ], [ 133.703613, -2.218684 ], [ 132.231445, -2.218684 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 117.971191, 1.757537 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -2.482133 ], [ 116.147461, -4.017699 ], [ 115.993652, -3.666928 ], [ 114.873047, -4.105369 ], [ 114.477539, -3.491489 ], [ 113.752441, -3.447625 ], [ 113.269043, -3.118576 ], [ 112.060547, -3.469557 ], [ 111.708984, -2.986927 ], [ 111.049805, -3.052754 ], [ 110.214844, -2.943041 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.445801, 1.757537 ], [ 109.731445, 1.757537 ], [ 109.841309, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.988720 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 114.741211, 1.757537 ], [ 117.971191, 1.757537 ] ] ], [ [ [ 102.062988, 1.757537 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.571280 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.545898, -1.779499 ], [ 104.897461, -2.350415 ], [ 105.622559, -2.438229 ], [ 106.105957, -3.052754 ], [ 105.864258, -4.302591 ], [ 105.820312, -5.856475 ], [ 104.721680, -5.878332 ], [ 103.864746, -5.047171 ], [ 102.590332, -4.214943 ], [ 102.150879, -3.623071 ], [ 101.403809, -2.811371 ], [ 100.898438, -2.043024 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.054628 ], [ 98.635254, 1.757537 ], [ 102.062988, 1.757537 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.439449 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.508789, -1.911267 ], [ 122.453613, -3.184394 ], [ 122.277832, -3.535352 ], [ 123.178711, -4.674980 ], [ 123.156738, -5.331644 ], [ 122.629395, -5.637853 ], [ 122.233887, -5.287887 ], [ 122.717285, -4.455951 ], [ 121.750488, -4.850154 ], [ 121.486816, -4.565474 ], [ 121.618652, -4.193030 ], [ 120.893555, -3.601142 ], [ 120.981445, -2.635789 ], [ 120.300293, -2.943041 ], [ 120.388184, -4.105369 ], [ 120.432129, -5.528511 ], [ 119.794922, -5.681584 ], [ 119.377441, -5.375398 ], [ 119.663086, -4.455951 ], [ 119.509277, -3.491489 ], [ 119.069824, -3.491489 ], [ 118.762207, -2.811371 ], [ 119.179688, -2.152814 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 106.062012, -5.900189 ], [ 107.270508, -5.965754 ], [ 108.083496, -6.337137 ], [ 108.479004, -6.424484 ], [ 108.632812, -6.773716 ], [ 110.544434, -6.882800 ], [ 110.764160, -6.468151 ], [ 112.609863, -6.948239 ], [ 112.983398, -7.602108 ], [ 114.477539, -7.776309 ], [ 115.708008, -8.363693 ], [ 114.565430, -8.754795 ], [ 113.466797, -8.341953 ], [ 112.565918, -8.385431 ], [ 111.533203, -8.298470 ], [ 110.588379, -8.124491 ], [ 109.423828, -7.732765 ], [ 108.698730, -7.645665 ], [ 108.281250, -7.776309 ], [ 106.457520, -7.362467 ], [ 106.281738, -6.926427 ], [ 105.358887, -6.860985 ], [ 106.062012, -5.900189 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.324501 ], [ 152.314453, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.572250 ], [ 151.303711, -5.834616 ], [ 150.249023, -6.315299 ], [ 149.721680, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.594118 ], [ 149.853516, -5.506640 ], [ 150.007324, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.249023, -5.528511 ], [ 150.798340, -5.462896 ], [ 151.083984, -5.112830 ], [ 151.655273, -4.762573 ], [ 151.545410, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 126.958008, -8.276727 ], [ 127.331543, -8.407168 ], [ 126.979980, -8.667918 ], [ 125.925293, -9.102097 ], [ 125.090332, -9.384032 ], [ 124.431152, -10.141932 ], [ 123.574219, -10.358151 ], [ 123.464355, -10.250060 ], [ 123.552246, -9.903921 ], [ 123.991699, -9.297307 ], [ 124.980469, -8.885072 ], [ 125.090332, -8.667918 ], [ 125.947266, -8.428904 ], [ 126.650391, -8.407168 ], [ 126.958008, -8.276727 ] ] ], [ [ [ 127.990723, 1.757537 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.142502 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.757537 ], [ 127.990723, 1.757537 ] ] ], [ [ [ 129.375000, -2.811371 ], [ 130.473633, -3.096636 ], [ 130.847168, -3.864255 ], [ 129.990234, -3.447625 ], [ 129.155273, -3.359889 ], [ 128.583984, -3.425692 ], [ 127.902832, -3.403758 ], [ 128.144531, -2.855263 ], [ 129.375000, -2.811371 ] ] ], [ [ [ 122.915039, -8.102739 ], [ 122.761230, -8.646196 ], [ 121.245117, -8.928487 ], [ 119.926758, -8.819939 ], [ 119.926758, -8.450639 ], [ 120.717773, -8.233237 ], [ 121.333008, -8.537565 ], [ 122.014160, -8.472372 ], [ 122.915039, -8.102739 ] ] ], [ [ [ 119.904785, -9.362353 ], [ 120.432129, -9.665738 ], [ 120.783691, -9.968851 ], [ 120.717773, -10.250060 ], [ 120.300293, -10.250060 ], [ 118.959961, -9.557417 ], [ 119.904785, -9.362353 ] ] ], [ [ [ 117.905273, -8.102739 ], [ 118.256836, -8.363693 ], [ 118.872070, -8.276727 ], [ 119.135742, -8.711359 ], [ 117.290039, -9.037003 ], [ 116.740723, -9.037003 ], [ 117.092285, -8.450639 ], [ 117.641602, -8.450639 ], [ 117.905273, -8.102739 ] ] ], [ [ [ 150.952148, -2.504085 ], [ 151.479492, -2.789425 ], [ 152.248535, -3.250209 ], [ 152.644043, -3.666928 ], [ 153.017578, -3.973861 ], [ 153.149414, -4.499762 ], [ 152.819824, -4.762573 ], [ 152.644043, -4.171115 ], [ 152.402344, -3.798484 ], [ 151.391602, -3.030812 ], [ 150.666504, -2.745531 ], [ 150.952148, -2.504085 ] ] ], [ [ [ 154.643555, -5.047171 ], [ 154.753418, -5.331644 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.027832, -6.533645 ], [ 155.874023, -6.817353 ], [ 155.610352, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.134715 ], [ 154.643555, -5.047171 ] ] ], [ [ [ 127.001953, -3.140516 ], [ 127.243652, -3.469557 ], [ 126.870117, -3.798484 ], [ 126.188965, -3.601142 ], [ 125.991211, -3.184394 ], [ 127.001953, -3.140516 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.736328, -5.747174 ], [ 134.736328, -6.206090 ], [ 134.208984, -6.904614 ], [ 134.121094, -6.140555 ], [ 134.494629, -5.441022 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.497092 ], [ 173.254395, -41.327326 ], [ 173.957520, -40.930115 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.902578 ], [ 170.617676, -45.905300 ], [ 169.343262, -46.649436 ], [ 168.420410, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.058105, -45.104546 ], [ 168.310547, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.672852, -43.548548 ], [ 170.529785, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.963308 ], [ 172.792969, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.562012, -35.012002 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.561997 ], [ 176.770020, -37.874853 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.527832, -37.701207 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.022949, -41.294317 ], [ 175.231934, -41.689322 ], [ 175.078125, -41.426253 ], [ 174.660645, -41.277806 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.504041 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.805470 ], [ 174.748535, -38.030786 ], [ 174.704590, -37.387617 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.245619 ], [ 172.639160, -34.524661 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 164.025879, -20.097206 ], [ 164.465332, -20.117840 ], [ 165.014648, -20.468189 ], [ 166.596680, -21.698265 ], [ 167.124023, -22.167058 ], [ 166.750488, -22.411029 ], [ 166.201172, -22.126355 ], [ 165.476074, -21.677848 ], [ 164.838867, -21.145992 ], [ 164.179688, -20.447602 ], [ 164.025879, -20.097206 ] ] ], [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.297363, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.132324, -17.497389 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.197754, -16.024696 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.425548 ], [ 179.406738, -16.383391 ], [ 180.000000, -16.066929 ], [ 180.197754, -16.024696 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.631348, -8.015716 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.125977, -8.124491 ], [ 158.576660, -7.754537 ], [ 158.203125, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 167.211914, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.189941, -16.151369 ], [ 167.211914, -15.897942 ] ] ], [ [ [ 166.640625, -14.626109 ], [ 167.102051, -14.944785 ], [ 167.277832, -15.749963 ], [ 166.992188, -15.623037 ], [ 166.794434, -15.665354 ], [ 166.640625, -15.390136 ], [ 166.640625, -14.626109 ] ] ], [ [ [ 159.697266, -9.253936 ], [ 160.356445, -9.405710 ], [ 160.686035, -9.600750 ], [ 160.861816, -9.882275 ], [ 160.466309, -9.903921 ], [ 159.851074, -9.795678 ], [ 159.631348, -9.644077 ], [ 159.697266, -9.253936 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.114258, -10.487812 ], [ 162.399902, -10.833306 ], [ 161.696777, -10.811724 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 160.927734, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.674805, -9.600750 ], [ 161.520996, -9.795678 ], [ 160.795898, -8.928487 ], [ 160.576172, -8.320212 ], [ 160.927734, -8.320212 ] ] ], [ [ [ 156.555176, -6.599131 ], [ 157.148438, -7.013668 ], [ 157.543945, -7.340675 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.188101 ], [ 156.489258, -6.773716 ], [ 156.555176, -6.599131 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.792969, -40.497092 ], [ 173.254395, -41.327326 ], [ 173.957520, -40.930115 ], [ 174.243164, -41.343825 ], [ 174.243164, -41.771312 ], [ 173.232422, -42.972502 ], [ 172.705078, -43.373112 ], [ 173.078613, -43.850374 ], [ 172.309570, -43.866218 ], [ 171.452637, -44.245199 ], [ 171.188965, -44.902578 ], [ 170.617676, -45.905300 ], [ 169.343262, -46.649436 ], [ 168.420410, -46.619261 ], [ 167.761230, -46.286224 ], [ 166.684570, -46.225453 ], [ 166.508789, -45.859412 ], [ 167.058105, -45.104546 ], [ 168.310547, -44.119142 ], [ 168.947754, -43.929550 ], [ 169.672852, -43.548548 ], [ 170.529785, -43.036776 ], [ 171.123047, -42.520700 ], [ 171.562500, -41.771312 ], [ 171.958008, -41.508577 ], [ 172.089844, -40.963308 ], [ 172.792969, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.562012, -35.012002 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.803223, -36.791691 ], [ 175.957031, -37.561997 ], [ 176.770020, -37.874853 ], [ 177.451172, -37.961523 ], [ 178.022461, -37.579413 ], [ 178.527832, -37.701207 ], [ 178.286133, -38.582526 ], [ 177.978516, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.876019 ], [ 176.022949, -41.294317 ], [ 175.231934, -41.689322 ], [ 175.078125, -41.426253 ], [ 174.660645, -41.277806 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.504041 ], [ 173.847656, -39.147103 ], [ 174.572754, -38.805470 ], [ 174.748535, -38.030786 ], [ 174.704590, -37.387617 ], [ 174.287109, -36.703660 ], [ 174.331055, -36.527295 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.245619 ], [ 172.639160, -34.524661 ], [ 173.012695, -34.452218 ] ] ], [ [ [ 164.025879, -20.097206 ], [ 164.465332, -20.117840 ], [ 165.014648, -20.468189 ], [ 166.596680, -21.698265 ], [ 167.124023, -22.167058 ], [ 166.750488, -22.411029 ], [ 166.201172, -22.126355 ], [ 165.476074, -21.677848 ], [ 164.838867, -21.145992 ], [ 164.179688, -20.447602 ], [ 164.025879, -20.097206 ] ] ], [ [ [ 178.374023, -17.350638 ], [ 178.725586, -17.623082 ], [ 178.549805, -18.145852 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.297363, -17.727759 ], [ 177.670898, -17.392579 ], [ 178.132324, -17.497389 ], [ 178.374023, -17.350638 ] ] ], [ [ [ 180.197754, -16.024696 ], [ 180.087891, -16.509833 ], [ 180.000000, -16.551962 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.425548 ], [ 179.406738, -16.383391 ], [ 180.000000, -16.066929 ], [ 180.197754, -16.024696 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 67.204032 ], [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.107170 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.298581 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.833055 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.557129, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.103365 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.135555 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.204642 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 130.979004, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.752880 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.168457, 52.749594 ], [ 120.717773, 52.509535 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.148746 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.894634 ], [ 115.488281, 49.809632 ], [ 114.960938, 50.134664 ], [ 114.367676, 50.247205 ], [ 112.895508, 49.539469 ], [ 111.577148, 49.382373 ], [ 110.654297, 49.124219 ], [ 109.401855, 49.296472 ], [ 108.479004, 49.282140 ], [ 107.863770, 49.795450 ], [ 106.896973, 50.275299 ], [ 105.886230, 50.401515 ], [ 104.633789, 50.275299 ], [ 103.666992, 50.092393 ], [ 102.260742, 50.513427 ], [ 102.062988, 51.261915 ], [ 100.898438, 51.522416 ], [ 99.975586, 51.631657 ], [ 98.854980, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.239746, 50.415519 ], [ 97.250977, 49.724479 ], [ 95.822754, 49.979488 ], [ 94.812012, 50.007739 ], [ 94.152832, 50.485474 ], [ 93.098145, 50.499452 ], [ 92.241211, 50.805935 ], [ 90.725098, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.813477, 49.468124 ], [ 88.242188, 49.382373 ], [ 88.242188, 67.204032 ], [ 180.000000, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.944584 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.242188, 25.839449 ], [ 88.242188, 27.916767 ], [ 88.725586, 28.091366 ], [ 88.835449, 27.098254 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.882880 ], [ 91.208496, 26.804461 ], [ 92.043457, 26.843677 ], [ 92.109375, 27.449790 ], [ 91.691895, 27.761330 ], [ 92.504883, 27.897349 ], [ 93.405762, 28.632747 ], [ 94.570312, 29.267233 ], [ 95.405273, 29.036961 ], [ 96.108398, 29.458731 ], [ 96.591797, 28.825425 ], [ 96.240234, 28.401065 ], [ 97.338867, 28.265682 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.702984 ], [ 97.141113, 27.078692 ], [ 96.416016, 27.254630 ], [ 95.119629, 26.568877 ], [ 95.163574, 25.997550 ], [ 94.614258, 25.165173 ], [ 94.548340, 24.666986 ], [ 94.108887, 23.845650 ], [ 93.317871, 24.086589 ], [ 93.295898, 23.039298 ], [ 93.054199, 22.695120 ], [ 93.164062, 22.268764 ], [ 92.680664, 22.044913 ], [ 92.153320, 23.624395 ], [ 91.867676, 23.624395 ], [ 91.713867, 22.978624 ], [ 91.164551, 23.503552 ], [ 91.472168, 24.066528 ], [ 91.911621, 24.126702 ], [ 92.373047, 24.966140 ], [ 91.801758, 25.145285 ], [ 90.878906, 25.125393 ], [ 90.000000, 25.264568 ], [ 89.912109, 25.264568 ], [ 89.824219, 25.958045 ], [ 89.362793, 26.017298 ], [ 88.571777, 26.450902 ], [ 88.242188, 25.839449 ] ] ], [ [ [ 88.242188, 24.427145 ], [ 88.703613, 24.226929 ], [ 88.527832, 23.624395 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.044913 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.698265 ], [ 88.242188, 24.427145 ] ] ], [ [ [ 88.242188, 25.740529 ], [ 88.923340, 25.244696 ], [ 88.308105, 24.866503 ], [ 88.242188, 24.766785 ], [ 88.242188, 25.740529 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.000000, 28.285033 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.691895, 27.761330 ], [ 92.109375, 27.449790 ], [ 92.043457, 26.843677 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.571777, 26.450902 ], [ 89.362793, 26.017298 ], [ 89.824219, 25.958045 ], [ 89.912109, 25.264568 ], [ 90.000000, 25.264568 ], [ 90.878906, 25.125393 ], [ 91.801758, 25.145285 ], [ 92.373047, 24.966140 ], [ 91.911621, 24.126702 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.713867, 22.978624 ], [ 91.867676, 23.624395 ], [ 92.153320, 23.624395 ], [ 92.680664, 22.044913 ], [ 92.658691, 21.330315 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.624395 ], [ 88.703613, 24.226929 ], [ 88.242188, 24.427145 ], [ 88.242188, 24.766785 ], [ 88.308105, 24.866503 ], [ 88.923340, 25.244696 ], [ 88.242188, 25.740529 ], [ 88.242188, 25.839449 ], [ 88.571777, 26.450902 ] ] ], [ [ [ 181.757812, 67.204032 ], [ 181.757812, 65.403445 ], [ 181.647949, 65.394298 ], [ 181.098633, 65.739656 ], [ 181.318359, 66.107170 ], [ 180.109863, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.538996 ], [ 177.407227, 64.605038 ], [ 178.308105, 64.072200 ], [ 178.901367, 63.253412 ], [ 179.362793, 62.985180 ], [ 179.494629, 62.573106 ], [ 179.230957, 62.298581 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.773123 ], [ 173.671875, 61.648162 ], [ 172.155762, 60.951777 ], [ 170.705566, 60.337823 ], [ 170.332031, 59.877912 ], [ 168.903809, 60.576175 ], [ 166.289062, 59.789580 ], [ 165.849609, 60.163376 ], [ 164.882812, 59.734253 ], [ 163.542480, 59.866883 ], [ 163.212891, 59.209688 ], [ 162.026367, 58.240164 ], [ 162.048340, 57.833055 ], [ 163.190918, 57.610107 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.696777, 55.279115 ], [ 162.114258, 54.851315 ], [ 160.378418, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.961875 ], [ 158.225098, 51.944265 ], [ 156.796875, 51.013755 ], [ 156.423340, 51.699800 ], [ 155.983887, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.752930, 57.362090 ], [ 156.818848, 57.833055 ], [ 158.356934, 58.054632 ], [ 160.158691, 59.310768 ], [ 161.872559, 60.337823 ], [ 163.674316, 61.143235 ], [ 164.465332, 62.552857 ], [ 163.256836, 62.461567 ], [ 162.663574, 61.637726 ], [ 160.114746, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.730957, 61.438767 ], [ 154.226074, 59.756395 ], [ 155.039062, 59.142135 ], [ 152.819824, 58.881942 ], [ 151.259766, 58.779591 ], [ 151.347656, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.557129, 59.164668 ], [ 145.480957, 59.333189 ], [ 142.207031, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.724620 ], [ 136.713867, 54.597528 ], [ 137.197266, 53.981935 ], [ 138.164062, 53.748711 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.094024 ], [ 141.372070, 52.241256 ], [ 140.603027, 51.234407 ], [ 140.515137, 50.050085 ], [ 140.053711, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.229980, 46.301406 ], [ 134.868164, 43.405047 ], [ 133.527832, 42.811522 ], [ 132.912598, 42.795401 ], [ 132.275391, 43.277205 ], [ 130.935059, 42.553080 ], [ 130.781250, 42.212245 ], [ 130.649414, 42.391009 ], [ 130.627441, 42.908160 ], [ 131.154785, 42.924252 ], [ 131.286621, 44.103365 ], [ 131.022949, 44.964798 ], [ 131.879883, 45.321254 ], [ 133.088379, 45.135555 ], [ 133.769531, 46.118942 ], [ 134.121094, 47.204642 ], [ 134.494629, 47.576526 ], [ 135.021973, 48.472921 ], [ 133.374023, 48.180739 ], [ 132.517090, 47.783635 ], [ 130.979004, 47.783635 ], [ 130.583496, 48.734455 ], [ 129.396973, 49.439557 ], [ 127.661133, 49.752880 ], [ 127.287598, 50.736455 ], [ 126.936035, 51.358062 ], [ 126.562500, 51.781436 ], [ 125.947266, 52.789476 ], [ 125.068359, 53.159947 ], [ 123.574219, 53.461890 ], [ 122.255859, 53.435719 ], [ 121.003418, 53.252069 ], [ 120.168457, 52.749594 ], [ 120.717773, 52.509535 ], [ 120.739746, 51.957807 ], [ 120.190430, 51.645294 ], [ 119.289551, 50.583237 ], [ 119.289551, 50.148746 ], [ 117.883301, 49.510944 ], [ 116.674805, 49.894634 ], [ 116.191406, 49.138597 ], [ 115.488281, 48.136767 ], [ 115.751953, 47.724545 ], [ 116.301270, 47.857403 ], [ 117.290039, 47.694974 ], [ 118.059082, 48.063397 ], [ 118.872070, 47.739323 ], [ 119.772949, 47.040182 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.800059 ], [ 117.421875, 46.664517 ], [ 116.718750, 46.392411 ], [ 115.993652, 45.721522 ], [ 114.455566, 45.336702 ], [ 113.466797, 44.809122 ], [ 111.884766, 45.104546 ], [ 111.357422, 44.449468 ], [ 111.665039, 44.071800 ], [ 111.840820, 43.739352 ], [ 111.137695, 43.405047 ], [ 110.412598, 42.875964 ], [ 109.248047, 42.520700 ], [ 107.753906, 42.488302 ], [ 106.127930, 42.130821 ], [ 104.963379, 41.590797 ], [ 104.523926, 41.902277 ], [ 103.315430, 41.902277 ], [ 101.843262, 42.520700 ], [ 100.854492, 42.666281 ], [ 99.514160, 42.520700 ], [ 97.448730, 42.747012 ], [ 96.350098, 42.730874 ], [ 95.756836, 43.325178 ], [ 95.317383, 44.245199 ], [ 94.680176, 44.355278 ], [ 93.471680, 44.980342 ], [ 92.131348, 45.120053 ], [ 90.944824, 45.290347 ], [ 90.593262, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 88.857422, 48.063397 ], [ 88.242188, 48.458352 ], [ 88.242188, 67.204032 ], [ 181.757812, 67.204032 ] ] ], [ [ [ 142.646484, 54.367759 ], [ 143.261719, 52.736292 ], [ 143.239746, 51.754240 ], [ 143.657227, 50.750359 ], [ 144.645996, 48.980217 ], [ 143.173828, 49.310799 ], [ 142.558594, 47.857403 ], [ 143.525391, 46.830134 ], [ 143.503418, 46.134170 ], [ 142.756348, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.899414, 46.800059 ], [ 142.009277, 47.783635 ], [ 141.899414, 48.864715 ], [ 142.141113, 49.610710 ], [ 142.185059, 50.944584 ], [ 141.591797, 51.930718 ], [ 141.679688, 53.304621 ], [ 142.602539, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.646484, 54.367759 ] ] ], [ [ [ 90.021973, 28.304381 ], [ 90.725098, 28.071980 ], [ 91.252441, 28.033198 ], [ 91.691895, 27.761330 ], [ 92.109375, 27.449790 ], [ 92.043457, 26.843677 ], [ 91.208496, 26.804461 ], [ 90.373535, 26.882880 ], [ 90.000000, 26.784847 ], [ 89.736328, 26.725987 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.033198 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.304381 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.025283 ], [ 118.432617, 4.959615 ], [ 118.630371, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.510254, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.789476 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.358062 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.752880 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.734455 ], [ 130.979004, 47.783635 ], [ 132.517090, 47.783635 ], [ 133.374023, 48.180739 ], [ 135.021973, 48.472921 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.204642 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.135555 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.103365 ], [ 131.154785, 42.924252 ], [ 130.627441, 42.908160 ], [ 130.649414, 42.391009 ], [ 130.781250, 42.212245 ], [ 130.407715, 42.277309 ], [ 129.968262, 41.934977 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.880295 ], [ 129.199219, 40.663973 ], [ 129.001465, 40.480381 ], [ 128.627930, 40.195659 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.317300 ], [ 127.397461, 39.215231 ], [ 127.792969, 39.044786 ], [ 128.342285, 38.616870 ], [ 129.221191, 37.439974 ], [ 129.462891, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.470335 ], [ 126.496582, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.721274 ], [ 126.870117, 36.897194 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.266113, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.839708 ], [ 125.397949, 39.385264 ], [ 125.332031, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.277344, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.047363, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.740986 ], [ 122.167969, 40.413496 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.037109, 39.198205 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.874853 ], [ 121.706543, 37.474858 ], [ 122.365723, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.113281, 36.650793 ], [ 120.629883, 36.102376 ], [ 119.663086, 35.603719 ], [ 119.157715, 34.903953 ], [ 120.234375, 34.361576 ], [ 120.629883, 33.376412 ], [ 121.223145, 32.454156 ], [ 121.904297, 31.690782 ], [ 121.882324, 30.939924 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.102051, 29.840644 ], [ 121.948242, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.135254, 28.130128 ], [ 120.388184, 27.059126 ], [ 119.597168, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.290039, 23.624395 ], [ 115.883789, 22.776182 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.818359, 22.553147 ], [ 113.247070, 22.044913 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.391705 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.061523, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.281250, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.335938, 13.432367 ], [ 109.204102, 11.673755 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.413574, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.787598, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.504085 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.955187 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.568848, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 98.459473, 10.682201 ], [ 98.767090, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.503418, 13.111580 ], [ 98.107910, 13.645987 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.812012, 15.792254 ], [ 94.196777, 16.045813 ], [ 94.526367, 17.266728 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.373341 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.845703, 22.187405 ], [ 91.428223, 22.755921 ], [ 90.505371, 22.796439 ], [ 90.593262, 22.390714 ], [ 90.263672, 21.841105 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.044913 ], [ 89.692383, 21.861499 ], [ 89.406738, 21.963425 ], [ 89.033203, 22.044913 ], [ 88.879395, 21.698265 ], [ 88.242188, 21.698265 ], [ 88.242188, 49.382373 ], [ 88.813477, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.725098, 50.331436 ], [ 92.241211, 50.805935 ], [ 93.098145, 50.499452 ], [ 94.152832, 50.485474 ], [ 94.812012, 50.007739 ], [ 95.822754, 49.979488 ], [ 97.250977, 49.724479 ], [ 98.239746, 50.415519 ], [ 97.822266, 51.013755 ], [ 98.854980, 52.052490 ], [ 99.975586, 51.631657 ], [ 100.898438, 51.522416 ], [ 102.062988, 51.261915 ], [ 102.260742, 50.513427 ], [ 103.666992, 50.092393 ], [ 104.633789, 50.275299 ], [ 105.886230, 50.401515 ], [ 106.896973, 50.275299 ], [ 107.863770, 49.795450 ], [ 108.479004, 49.282140 ], [ 109.401855, 49.296472 ], [ 110.654297, 49.124219 ], [ 111.577148, 49.382373 ], [ 112.895508, 49.539469 ], [ 114.367676, 50.247205 ], [ 114.960938, 50.134664 ], [ 115.488281, 49.809632 ], [ 116.674805, 49.894634 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.148746 ], [ 119.289551, 50.583237 ], [ 120.190430, 51.645294 ], [ 120.739746, 51.957807 ], [ 120.717773, 52.509535 ], [ 120.168457, 52.749594 ], [ 121.003418, 53.252069 ], [ 122.255859, 53.435719 ], [ 123.574219, 53.461890 ] ], [ [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.835449, 27.098254 ], [ 89.736328, 26.725987 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.882880 ], [ 91.208496, 26.804461 ], [ 92.043457, 26.843677 ], [ 92.109375, 27.449790 ], [ 91.691895, 27.761330 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ] ] ], [ [ [ 141.372070, 41.376809 ], [ 141.921387, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.169114 ], [ 140.976562, 37.142803 ], [ 140.603027, 36.350527 ], [ 140.778809, 35.835628 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.852170 ], [ 135.087891, 34.597042 ], [ 133.352051, 34.379713 ], [ 132.165527, 33.906896 ], [ 130.979004, 33.888658 ], [ 132.011719, 33.155948 ], [ 131.330566, 31.447410 ], [ 130.693359, 31.034108 ], [ 130.209961, 31.409912 ], [ 130.451660, 32.324276 ], [ 129.814453, 32.602362 ], [ 129.418945, 33.302986 ], [ 130.363770, 33.596319 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.728677 ], [ 135.681152, 35.532226 ], [ 136.735840, 37.300275 ], [ 137.395020, 36.826875 ], [ 139.438477, 38.220920 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.563895 ], [ 140.317383, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.151855, 44.512176 ], [ 143.920898, 44.166445 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.988576 ], [ 143.195801, 42.000325 ], [ 141.613770, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.965820, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.965332, 45.552525 ] ] ], [ [ [ 121.333008, 18.500447 ], [ 121.948242, 18.208480 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.940202 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.328260 ], [ 123.947754, 13.774066 ], [ 123.859863, 13.239945 ], [ 124.189453, 13.004558 ], [ 124.079590, 12.533115 ], [ 123.288574, 13.025966 ], [ 122.937012, 13.560562 ], [ 122.673340, 13.175771 ], [ 122.036133, 13.774066 ], [ 121.135254, 13.645987 ], [ 120.629883, 13.859414 ], [ 120.673828, 14.264383 ], [ 121.003418, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.080566, 14.966013 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.278320, 16.024696 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.333008, 18.500447 ] ] ], [ [ [ 125.419922, 9.752370 ], [ 126.232910, 9.275622 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.188965, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.375977, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.572250 ], [ 124.211426, 6.162401 ], [ 123.947754, 6.882800 ], [ 124.255371, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.904614 ], [ 121.926270, 7.188101 ], [ 122.321777, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.950193 ], [ 125.463867, 8.993600 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 121.486816, 25.284438 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.387127 ], [ 121.179199, 22.796439 ], [ 120.739746, 21.963425 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.695801, 24.547123 ], [ 121.486816, 25.284438 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.248922 ], [ 110.346680, 18.667063 ], [ 109.467773, 18.187607 ], [ 108.654785, 18.500447 ], [ 108.632812, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.648438, 34.143635 ], [ 134.758301, 33.797409 ], [ 134.208984, 33.192731 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.483887, 33.943360 ], [ 133.901367, 34.361576 ] ] ], [ [ [ 124.277344, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.168226 ], [ 125.793457, 11.049038 ], [ 125.002441, 11.307708 ], [ 125.024414, 10.984335 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.892578, 11.415418 ], [ 124.870605, 11.802834 ], [ 124.277344, 12.554564 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.058702 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.079590, 11.221510 ], [ 123.991699, 10.271681 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.849121, 10.250060 ], [ 122.958984, 10.876465 ], [ 123.508301, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.221510 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.112793, 11.156845 ], [ 122.629395, 10.746969 ], [ 122.014160, 10.444598 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 119.179688, 5.397273 ], [ 119.113770, 5.025283 ], [ 118.432617, 4.959615 ], [ 118.630371, 4.477856 ], [ 117.883301, 4.127285 ], [ 117.026367, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.510254, 3.162456 ], [ 115.136719, 2.811371 ], [ 114.631348, 1.428075 ], [ 113.796387, 1.208406 ], [ 112.851562, 1.493971 ], [ 112.390137, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.966751 ], [ 110.522461, 0.769020 ], [ 109.841309, 1.340210 ], [ 109.665527, 1.999106 ], [ 110.390625, 1.669686 ], [ 111.159668, 1.845384 ], [ 111.379395, 2.701635 ], [ 111.796875, 2.877208 ], [ 113.005371, 3.096636 ], [ 113.708496, 3.886177 ], [ 114.213867, 4.521666 ], [ 114.609375, 4.893941 ], [ 115.444336, 5.441022 ], [ 116.213379, 6.140555 ], [ 116.718750, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 123.574219, 53.461890 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.789476 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.358062 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.752880 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.734455 ], [ 130.979004, 47.783635 ], [ 132.517090, 47.783635 ], [ 133.374023, 48.180739 ], [ 135.021973, 48.472921 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.204642 ], [ 133.769531, 46.118942 ], [ 133.088379, 45.135555 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.103365 ], [ 131.154785, 42.924252 ], [ 130.627441, 42.908160 ], [ 130.649414, 42.391009 ], [ 130.781250, 42.212245 ], [ 130.407715, 42.277309 ], [ 129.968262, 41.934977 ], [ 129.660645, 41.607228 ], [ 129.704590, 40.880295 ], [ 129.199219, 40.663973 ], [ 129.001465, 40.480381 ], [ 128.627930, 40.195659 ], [ 127.968750, 40.027614 ], [ 127.529297, 39.757880 ], [ 127.507324, 39.317300 ], [ 127.397461, 39.215231 ], [ 127.792969, 39.044786 ], [ 128.342285, 38.616870 ], [ 129.221191, 37.439974 ], [ 129.462891, 36.791691 ], [ 129.462891, 35.639441 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.397461, 34.470335 ], [ 126.496582, 34.397845 ], [ 126.364746, 34.939985 ], [ 126.562500, 35.675147 ], [ 126.123047, 36.721274 ], [ 126.870117, 36.897194 ], [ 126.166992, 37.753344 ], [ 125.683594, 37.944198 ], [ 125.573730, 37.753344 ], [ 125.266113, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.099983 ], [ 124.980469, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.839708 ], [ 125.397949, 39.385264 ], [ 125.332031, 39.554883 ], [ 124.738770, 39.656456 ], [ 124.277344, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.124023, 39.164141 ], [ 121.047363, 38.891033 ], [ 121.596680, 39.368279 ], [ 121.376953, 39.740986 ], [ 122.167969, 40.413496 ], [ 121.640625, 40.946714 ], [ 120.761719, 40.597271 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.037109, 39.198205 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.065392 ], [ 118.872070, 37.892196 ], [ 118.916016, 37.439974 ], [ 119.707031, 37.160317 ], [ 120.827637, 37.874853 ], [ 121.706543, 37.474858 ], [ 122.365723, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.113281, 36.650793 ], [ 120.629883, 36.102376 ], [ 119.663086, 35.603719 ], [ 119.157715, 34.903953 ], [ 120.234375, 34.361576 ], [ 120.629883, 33.376412 ], [ 121.223145, 32.454156 ], [ 121.904297, 31.690782 ], [ 121.882324, 30.939924 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.102051, 29.840644 ], [ 121.948242, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.135254, 28.130128 ], [ 120.388184, 27.059126 ], [ 119.597168, 25.740529 ], [ 118.652344, 24.547123 ], [ 117.290039, 23.624395 ], [ 115.883789, 22.776182 ], [ 114.763184, 22.674847 ], [ 114.147949, 22.228090 ], [ 113.818359, 22.553147 ], [ 113.247070, 22.044913 ], [ 111.840820, 21.555284 ], [ 110.786133, 21.391705 ], [ 110.434570, 20.344627 ], [ 109.885254, 20.282809 ], [ 109.621582, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.061523, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.062118 ], [ 107.358398, 16.699340 ], [ 108.281250, 16.088042 ], [ 108.874512, 15.284185 ], [ 109.335938, 13.432367 ], [ 109.204102, 11.673755 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.413574, 9.535749 ], [ 105.161133, 8.602747 ], [ 104.787598, 9.232249 ], [ 105.073242, 9.925566 ], [ 104.326172, 10.487812 ], [ 103.491211, 10.639014 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.618897 ], [ 100.986328, 13.410994 ], [ 100.107422, 13.410994 ], [ 100.019531, 12.297068 ], [ 99.162598, 9.968851 ], [ 99.228516, 9.232249 ], [ 99.865723, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.008301, 6.860985 ], [ 101.623535, 6.730076 ], [ 102.150879, 6.227934 ], [ 102.370605, 6.118708 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.447266, 4.171115 ], [ 103.337402, 3.732708 ], [ 103.425293, 3.381824 ], [ 103.513184, 2.789425 ], [ 103.864746, 2.504085 ], [ 104.260254, 1.625758 ], [ 104.238281, 1.296276 ], [ 103.513184, 1.230374 ], [ 102.568359, 1.955187 ], [ 101.381836, 2.767478 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.930020 ], [ 100.568848, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.031311 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.839170 ], [ 99.514160, 7.340675 ], [ 98.503418, 8.385431 ], [ 98.349609, 7.798079 ], [ 98.151855, 8.341953 ], [ 98.261719, 8.971897 ], [ 98.547363, 9.925566 ], [ 98.459473, 10.682201 ], [ 98.767090, 11.436955 ], [ 98.437500, 12.039321 ], [ 98.503418, 13.111580 ], [ 98.107910, 13.645987 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.109153 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.361328, 15.707663 ], [ 94.812012, 15.792254 ], [ 94.196777, 16.045813 ], [ 94.526367, 17.266728 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.373341 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.658691, 21.330315 ], [ 92.680664, 22.044913 ], [ 93.164062, 22.268764 ], [ 93.054199, 22.695120 ], [ 93.295898, 23.039298 ], [ 93.317871, 24.086589 ], [ 94.108887, 23.845650 ], [ 94.548340, 24.666986 ], [ 94.614258, 25.165173 ], [ 95.163574, 25.997550 ], [ 95.119629, 26.568877 ], [ 96.416016, 27.254630 ], [ 97.141113, 27.078692 ], [ 97.053223, 27.702984 ], [ 97.404785, 27.877928 ], [ 97.338867, 28.265682 ], [ 96.240234, 28.401065 ], [ 96.591797, 28.825425 ], [ 96.108398, 29.458731 ], [ 95.405273, 29.036961 ], [ 94.570312, 29.267233 ], [ 93.405762, 28.632747 ], [ 92.504883, 27.897349 ], [ 91.691895, 27.761330 ], [ 91.252441, 28.033198 ], [ 90.725098, 28.071980 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.033198 ], [ 88.813477, 27.293689 ], [ 88.725586, 28.091366 ], [ 88.242188, 27.916767 ], [ 88.242188, 48.458352 ], [ 88.857422, 48.063397 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.593262, 45.721522 ], [ 90.944824, 45.290347 ], [ 92.131348, 45.120053 ], [ 93.471680, 44.980342 ], [ 94.680176, 44.355278 ], [ 95.317383, 44.245199 ], [ 95.756836, 43.325178 ], [ 96.350098, 42.730874 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.854492, 42.666281 ], [ 101.843262, 42.520700 ], [ 103.315430, 41.902277 ], [ 104.523926, 41.902277 ], [ 104.963379, 41.590797 ], [ 106.127930, 42.130821 ], [ 107.753906, 42.488302 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.875964 ], [ 111.137695, 43.405047 ], [ 111.840820, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.357422, 44.449468 ], [ 111.884766, 45.104546 ], [ 113.466797, 44.809122 ], [ 114.455566, 45.336702 ], [ 115.993652, 45.721522 ], [ 116.718750, 46.392411 ], [ 117.421875, 46.664517 ], [ 118.872070, 46.800059 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.040182 ], [ 118.872070, 47.739323 ], [ 118.059082, 48.063397 ], [ 117.290039, 47.694974 ], [ 116.301270, 47.857403 ], [ 115.751953, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.138597 ], [ 116.674805, 49.894634 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.148746 ], [ 119.289551, 50.583237 ], [ 120.190430, 51.645294 ], [ 120.739746, 51.957807 ], [ 120.717773, 52.509535 ], [ 120.168457, 52.749594 ], [ 121.003418, 53.252069 ], [ 122.255859, 53.435719 ], [ 123.574219, 53.461890 ] ] ], [ [ [ 141.372070, 41.376809 ], [ 141.921387, 39.993956 ], [ 141.877441, 39.181175 ], [ 140.954590, 38.169114 ], [ 140.976562, 37.142803 ], [ 140.603027, 36.350527 ], [ 140.778809, 35.835628 ], [ 140.251465, 35.137879 ], [ 138.977051, 34.669359 ], [ 137.219238, 34.597042 ], [ 135.791016, 33.468108 ], [ 135.131836, 33.852170 ], [ 135.087891, 34.597042 ], [ 133.352051, 34.379713 ], [ 132.165527, 33.906896 ], [ 130.979004, 33.888658 ], [ 132.011719, 33.155948 ], [ 131.330566, 31.447410 ], [ 130.693359, 31.034108 ], [ 130.209961, 31.409912 ], [ 130.451660, 32.324276 ], [ 129.814453, 32.602362 ], [ 129.418945, 33.302986 ], [ 130.363770, 33.596319 ], [ 130.869141, 34.234512 ], [ 131.879883, 34.741612 ], [ 132.626953, 35.424868 ], [ 134.604492, 35.728677 ], [ 135.681152, 35.532226 ], [ 136.735840, 37.300275 ], [ 137.395020, 36.826875 ], [ 139.438477, 38.220920 ], [ 140.053711, 39.436193 ], [ 139.877930, 40.563895 ], [ 140.317383, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.151855, 44.512176 ], [ 143.920898, 44.166445 ], [ 144.624023, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.052734, 42.988576 ], [ 143.195801, 42.000325 ], [ 141.613770, 42.682435 ], [ 141.064453, 41.590797 ], [ 139.965820, 41.574361 ], [ 139.812012, 42.569264 ], [ 140.317383, 43.325178 ], [ 141.372070, 43.389082 ], [ 141.679688, 44.777936 ], [ 141.965332, 45.552525 ] ] ], [ [ [ 121.333008, 18.500447 ], [ 121.948242, 18.208480 ], [ 122.255859, 18.479609 ], [ 122.343750, 18.229351 ], [ 122.167969, 17.811456 ], [ 122.519531, 17.098792 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.940202 ], [ 121.508789, 15.114553 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.695312, 14.328260 ], [ 123.947754, 13.774066 ], [ 123.859863, 13.239945 ], [ 124.189453, 13.004558 ], [ 124.079590, 12.533115 ], [ 123.288574, 13.025966 ], [ 122.937012, 13.560562 ], [ 122.673340, 13.175771 ], [ 122.036133, 13.774066 ], [ 121.135254, 13.645987 ], [ 120.629883, 13.859414 ], [ 120.673828, 14.264383 ], [ 121.003418, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.080566, 14.966013 ], [ 119.926758, 15.411319 ], [ 119.882812, 16.362310 ], [ 120.278320, 16.024696 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.333008, 18.500447 ] ] ], [ [ [ 125.419922, 9.752370 ], [ 126.232910, 9.275622 ], [ 126.474609, 7.754537 ], [ 126.540527, 7.188101 ], [ 126.188965, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.375977, 6.795535 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.572250 ], [ 124.211426, 6.162401 ], [ 123.947754, 6.882800 ], [ 124.255371, 7.362467 ], [ 123.618164, 7.841615 ], [ 123.288574, 7.427837 ], [ 122.827148, 7.449624 ], [ 122.080078, 6.904614 ], [ 121.926270, 7.188101 ], [ 122.321777, 8.037473 ], [ 122.937012, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.233237 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.950193 ], [ 125.463867, 8.993600 ], [ 125.419922, 9.752370 ] ] ], [ [ [ 121.486816, 25.284438 ], [ 121.948242, 25.005973 ], [ 121.772461, 24.387127 ], [ 121.179199, 22.796439 ], [ 120.739746, 21.963425 ], [ 120.212402, 22.816694 ], [ 120.102539, 23.563987 ], [ 120.695801, 24.547123 ], [ 121.486816, 25.284438 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.005859, 19.704658 ], [ 110.566406, 19.248922 ], [ 110.346680, 18.667063 ], [ 109.467773, 18.187607 ], [ 108.654785, 18.500447 ], [ 108.632812, 19.373341 ], [ 109.116211, 19.828725 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.648438, 34.143635 ], [ 134.758301, 33.797409 ], [ 134.208984, 33.192731 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.022461, 32.694866 ], [ 132.363281, 32.990236 ], [ 132.363281, 33.468108 ], [ 132.934570, 34.052659 ], [ 133.483887, 33.943360 ], [ 133.901367, 34.361576 ] ] ], [ [ [ 124.277344, 12.554564 ], [ 125.222168, 12.533115 ], [ 125.507812, 12.168226 ], [ 125.793457, 11.049038 ], [ 125.002441, 11.307708 ], [ 125.024414, 10.984335 ], [ 125.288086, 10.358151 ], [ 124.804688, 10.141932 ], [ 124.760742, 10.833306 ], [ 124.453125, 10.898042 ], [ 124.299316, 11.501557 ], [ 124.892578, 11.415418 ], [ 124.870605, 11.802834 ], [ 124.277344, 12.554564 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.685059, 10.552622 ], [ 119.025879, 10.012130 ], [ 118.498535, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.058702 ], [ 118.388672, 9.687398 ], [ 118.981934, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 124.079590, 11.221510 ], [ 123.991699, 10.271681 ], [ 123.618164, 9.947209 ], [ 123.310547, 9.318990 ], [ 123.002930, 9.015302 ], [ 122.387695, 9.709057 ], [ 122.849121, 10.250060 ], [ 122.958984, 10.876465 ], [ 123.508301, 10.941192 ], [ 123.332520, 10.271681 ], [ 124.079590, 11.221510 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.475586, 11.587669 ], [ 123.112793, 11.587669 ], [ 123.112793, 11.156845 ], [ 122.629395, 10.746969 ], [ 122.014160, 10.444598 ], [ 121.970215, 10.898042 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.475106 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.211180 ], [ 120.827637, 12.704651 ], [ 120.322266, 13.475106 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.790990 ], [ 134.143066, -1.142502 ], [ 134.252930, -1.757537 ], [ 131.923828, -1.757537 ], [ 131.835938, -1.625758 ], [ 130.935059, -1.428075 ], [ 130.517578, -0.944781 ], [ 131.879883, -0.703107 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.647722 ], [ 125.244141, 1.428075 ], [ 124.431152, 0.417477 ], [ 123.684082, 0.241699 ], [ 122.717285, 0.439449 ], [ 121.047363, 0.373533 ], [ 120.190430, 0.241699 ], [ 120.146484, 0.000000 ], [ 120.036621, -0.527336 ], [ 120.937500, -1.406109 ], [ 121.486816, -0.966751 ], [ 123.332520, -0.615223 ], [ 123.266602, -1.076597 ], [ 122.827148, -0.922812 ], [ 122.387695, -1.515936 ], [ 121.838379, -1.757537 ], [ 119.245605, -1.757537 ], [ 119.333496, -1.362176 ], [ 119.772949, 0.000000 ], [ 120.036621, 0.571280 ], [ 120.893555, 1.318243 ], [ 121.662598, 1.010690 ], [ 122.937012, 0.878872 ], [ 124.079590, 0.922812 ], [ 125.068359, 1.647722 ] ] ], [ [ [ 117.026367, 4.302591 ], [ 117.883301, 4.127285 ], [ 117.312012, 3.228271 ], [ 118.059082, 2.284551 ], [ 117.883301, 1.823423 ], [ 119.003906, 0.900842 ], [ 117.817383, 0.790990 ], [ 117.487793, 0.109863 ], [ 117.487793, 0.000000 ], [ 117.531738, -0.812961 ], [ 116.564941, -1.493971 ], [ 116.542969, -1.757537 ], [ 110.083008, -1.757537 ], [ 110.083008, -1.603794 ], [ 109.577637, -1.318243 ], [ 109.094238, -0.461421 ], [ 109.028320, 0.000000 ], [ 108.962402, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 1.999106 ], [ 109.841309, 1.340210 ], [ 110.522461, 0.769020 ], [ 111.159668, 0.966751 ], [ 111.796875, 0.900842 ], [ 112.390137, 1.406109 ], [ 112.851562, 1.493971 ], [ 113.796387, 1.208406 ], [ 114.631348, 1.428075 ], [ 115.136719, 2.811371 ], [ 115.510254, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.026367, 4.302591 ] ] ], [ [ [ 95.295410, 5.484768 ], [ 95.932617, 5.441022 ], [ 97.492676, 5.244128 ], [ 98.371582, 4.258768 ], [ 99.140625, 3.579213 ], [ 99.689941, 3.162456 ], [ 100.634766, 2.108899 ], [ 101.667480, 2.086941 ], [ 102.502441, 1.406109 ], [ 103.073730, 0.549308 ], [ 103.842773, 0.109863 ], [ 103.776855, 0.000000 ], [ 103.447266, -0.703107 ], [ 104.018555, -1.054628 ], [ 104.370117, -1.076597 ], [ 104.523926, -1.757537 ], [ 100.744629, -1.757537 ], [ 100.151367, -0.659165 ], [ 99.448242, 0.000000 ], [ 99.272461, 0.175781 ], [ 98.964844, 1.032659 ], [ 98.613281, 1.823423 ], [ 97.690430, 2.460181 ], [ 97.185059, 3.316018 ], [ 96.416016, 3.864255 ], [ 95.383301, 4.959615 ], [ 95.295410, 5.484768 ] ] ], [ [ [ 137.329102, -1.757537 ], [ 137.438965, -1.713612 ], [ 138.339844, -1.713612 ], [ 138.471680, -1.757537 ], [ 137.329102, -1.757537 ] ] ], [ [ [ 127.924805, 2.174771 ], [ 128.012695, 1.625758 ], [ 128.605957, 1.537901 ], [ 128.693848, 1.120534 ], [ 128.627930, 0.263671 ], [ 128.122559, 0.351560 ], [ 127.968750, -0.263671 ], [ 128.386230, -0.790990 ], [ 128.100586, -0.900842 ], [ 127.705078, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.595215, 1.801461 ], [ 127.924805, 2.174771 ] ] ] ] } } ] } @@ -241,20 +227,20 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.472412, 59.789580 ], [ -135.000000, 59.321981 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -134.121094, 58.785285 ], [ -134.121094, 58.124320 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.366625 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.406143 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.257080, 63.543658 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.778807 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.761963, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.903174 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.462681 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.756395 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.121094, 66.861082 ], [ -134.121094, 58.785285 ], [ -134.274902, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.321981 ], [ -135.472412, 59.789580 ], [ -136.483154, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.042969, 59.998986 ], [ -140.009766, 60.277962 ], [ -140.998535, 60.305185 ], [ -140.987549, 66.513260 ], [ -140.987549, 66.861082 ], [ -134.121094, 66.861082 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.987549, 66.861082 ], [ -140.987549, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.277962 ], [ -139.042969, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.483154, 59.461826 ], [ -135.472412, 59.789580 ], [ -135.000000, 59.321981 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -134.121094, 58.785285 ], [ -134.121094, 58.124320 ], [ -135.000000, 58.188080 ], [ -136.625977, 58.211238 ], [ -137.801514, 58.499435 ], [ -139.866943, 59.534318 ], [ -142.569580, 60.081284 ], [ -143.953857, 59.998986 ], [ -145.920410, 60.457218 ], [ -147.117920, 60.882354 ], [ -148.227539, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.910976 ], [ -149.721680, 59.706556 ], [ -150.611572, 59.366794 ], [ -151.710205, 59.153403 ], [ -151.853027, 59.745326 ], [ -151.413574, 60.726944 ], [ -150.347900, 61.031692 ], [ -150.622559, 61.286071 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.059358 ], [ -154.017334, 59.349996 ], [ -153.281250, 58.864905 ], [ -154.226074, 58.147519 ], [ -155.302734, 57.727619 ], [ -156.302490, 57.421294 ], [ -156.555176, 56.980911 ], [ -158.115234, 56.462490 ], [ -158.433838, 55.992237 ], [ -159.598389, 55.565922 ], [ -160.290527, 55.640399 ], [ -161.224365, 55.366625 ], [ -162.235107, 55.021725 ], [ -163.070068, 54.686534 ], [ -164.783936, 54.406143 ], [ -164.937744, 54.572062 ], [ -163.850098, 55.040614 ], [ -162.872314, 55.347889 ], [ -161.806641, 55.893796 ], [ -160.565186, 56.004524 ], [ -160.070801, 56.419978 ], [ -158.686523, 57.016814 ], [ -158.455811, 57.213660 ], [ -157.719727, 57.568888 ], [ -157.543945, 58.326799 ], [ -157.038574, 58.915992 ], [ -158.192139, 58.614056 ], [ -158.510742, 58.785285 ], [ -159.060059, 58.424730 ], [ -159.708252, 58.933004 ], [ -159.982910, 58.573981 ], [ -160.356445, 59.068802 ], [ -161.356201, 58.671226 ], [ -161.971436, 58.671226 ], [ -162.048340, 59.265881 ], [ -161.872559, 59.634435 ], [ -162.520752, 59.987998 ], [ -163.817139, 59.795108 ], [ -164.663086, 60.267066 ], [ -165.344238, 60.505935 ], [ -165.344238, 61.074231 ], [ -166.124268, 61.501734 ], [ -165.728760, 62.073026 ], [ -164.915771, 62.633770 ], [ -164.564209, 63.144431 ], [ -163.751221, 63.218780 ], [ -163.070068, 63.059937 ], [ -162.257080, 63.543658 ], [ -161.531982, 63.455419 ], [ -160.773926, 63.767922 ], [ -160.960693, 64.220715 ], [ -161.520996, 64.401685 ], [ -160.773926, 64.788168 ], [ -161.389160, 64.778807 ], [ -162.454834, 64.557881 ], [ -162.751465, 64.339908 ], [ -163.542480, 64.557881 ], [ -164.959717, 64.444372 ], [ -166.420898, 64.685016 ], [ -166.838379, 65.086018 ], [ -168.112793, 65.667330 ], [ -166.706543, 66.089364 ], [ -164.761963, 66.513260 ], [ -164.476318, 66.578851 ], [ -163.652344, 66.578851 ], [ -163.674316, 66.513260 ], [ -163.784180, 66.076002 ], [ -161.674805, 66.116068 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -162.894287, 66.861082 ], [ -140.987549, 66.861082 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.567139, 57.903174 ], [ -152.138672, 57.592447 ], [ -153.006592, 57.112385 ], [ -154.006348, 56.734649 ], [ -154.511719, 56.992883 ], [ -154.665527, 57.462681 ], [ -153.764648, 57.815504 ], [ -153.226318, 57.967331 ] ] ], [ [ [ -171.727295, 63.782486 ], [ -171.112061, 63.592562 ], [ -170.485840, 63.694987 ], [ -169.683838, 63.430860 ], [ -168.684082, 63.297876 ], [ -168.771973, 63.189064 ], [ -169.530029, 62.975198 ], [ -170.288086, 63.194018 ], [ -170.672607, 63.376756 ], [ -171.551514, 63.317617 ], [ -171.793213, 63.406280 ], [ -171.727295, 63.782486 ] ] ], [ [ [ -166.464844, 60.381290 ], [ -165.673828, 60.294299 ], [ -165.574951, 59.910976 ], [ -166.190186, 59.756395 ], [ -166.849365, 59.938504 ], [ -167.453613, 60.212533 ], [ -166.464844, 60.381290 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.000000, 66.861082 ], [ -174.979248, 66.861082 ], [ -175.012207, 66.583217 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.506836, 66.861082 ], [ -171.749268, 66.861082 ], [ -171.013184, 66.513260 ], [ -169.903564, 65.977798 ], [ -170.892334, 65.540270 ], [ -172.529297, 65.435435 ], [ -172.551270, 64.458587 ], [ -172.957764, 64.254141 ], [ -173.891602, 64.282760 ], [ -174.649658, 64.628585 ], [ -175.979004, 64.923542 ], [ -176.209717, 65.357677 ], [ -177.220459, 65.517516 ], [ -178.363037, 65.389723 ], [ -178.901367, 65.739656 ], [ -178.681641, 66.111619 ], [ -179.879150, 65.874725 ], [ -179.428711, 65.403445 ], [ -180.000000, 64.979359 ], [ -180.878906, 64.675619 ], [ -180.878906, 66.861082 ], [ -180.000000, 66.861082 ] ] ], [ [ [ -180.878906, 63.129538 ], [ -180.626221, 62.980189 ], [ -180.516357, 62.568045 ], [ -180.769043, 62.303688 ], [ -180.878906, 62.313899 ], [ -180.878906, 63.129538 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.762207, 66.160511 ], [ -166.376953, 66.160511 ], [ -164.761963, 66.513260 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ] ] ], [ [ [ -161.729736, 66.160511 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.114476 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.040461 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.368703 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ], [ -155.061035, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.528560 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.117959 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.151558 ], [ -142.075195, 69.850978 ], [ -140.987549, 69.710489 ], [ -140.987549, 66.160511 ], [ -161.729736, 66.160511 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.987549, 69.710489 ], [ -139.119873, 69.469116 ], [ -137.548828, 68.989925 ], [ -136.505127, 68.899142 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.417725, 69.626510 ], [ -134.121094, 69.603549 ], [ -134.121094, 66.160511 ], [ -140.987549, 66.160511 ], [ -140.987549, 69.710489 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -163.652344, 66.574483 ], [ -163.674316, 66.513260 ], [ -163.762207, 66.160511 ], [ -166.376953, 66.160511 ], [ -164.761963, 66.513260 ], [ -164.476318, 66.574483 ], [ -163.652344, 66.574483 ] ] ], [ [ [ -161.729736, 66.160511 ], [ -162.191162, 66.513260 ], [ -162.487793, 66.735563 ], [ -163.718262, 67.114476 ], [ -164.432373, 67.617589 ], [ -165.388184, 68.040461 ], [ -166.761475, 68.358699 ], [ -166.201172, 68.883316 ], [ -164.432373, 68.914958 ], [ -163.168945, 69.368703 ], [ -162.927246, 69.858546 ], [ -161.905518, 70.333533 ], [ -160.938721, 70.447832 ], [ -159.038086, 70.891482 ], [ -158.115234, 70.823031 ], [ -156.577148, 71.357067 ], [ -155.061035, 71.148745 ], [ -154.346924, 70.696320 ], [ -153.896484, 70.887885 ], [ -152.204590, 70.830248 ], [ -152.270508, 70.598021 ], [ -150.743408, 70.429440 ], [ -149.721680, 70.528560 ], [ -147.612305, 70.214875 ], [ -145.689697, 70.117959 ], [ -144.920654, 69.990535 ], [ -143.591309, 70.151558 ], [ -142.075195, 69.850978 ], [ -140.987549, 69.710489 ], [ -140.987549, 66.160511 ], [ -161.729736, 66.160511 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.878906, 69.236684 ], [ -180.000000, 68.962335 ], [ -177.550049, 68.200133 ], [ -174.924316, 67.204032 ], [ -175.012207, 66.583217 ], [ -174.825439, 66.513260 ], [ -174.342041, 66.333095 ], [ -174.396973, 66.513260 ], [ -174.572754, 67.063152 ], [ -171.859131, 66.912834 ], [ -171.013184, 66.513260 ], [ -170.277100, 66.160511 ], [ -180.000000, 66.160511 ], [ -180.878906, 66.160511 ], [ -180.878906, 69.236684 ] ] ], [ [ [ -180.000000, 71.514462 ], [ -179.868164, 71.556217 ], [ -179.022217, 71.556217 ], [ -177.572021, 71.269067 ], [ -177.659912, 71.130988 ], [ -178.692627, 70.891482 ], [ -180.000000, 70.830248 ], [ -180.878906, 70.790525 ], [ -180.878906, 71.230221 ], [ -180.000000, 71.514462 ] ] ] ] } } ] } ] } @@ -275,17 +261,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.121094, 41.640078 ], [ -89.121094, 30.325471 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.417725, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -91.625977, 29.678508 ], [ -92.493896, 29.554345 ], [ -93.229980, 29.783449 ], [ -93.845215, 29.716681 ], [ -94.691162, 29.477861 ], [ -95.603027, 28.738764 ], [ -96.591797, 28.304381 ], [ -97.141113, 27.829361 ], [ -97.371826, 27.381523 ], [ -97.382812, 26.686730 ], [ -97.327881, 26.204734 ], [ -97.141113, 25.869109 ], [ -97.525635, 25.839449 ], [ -98.239746, 26.056783 ], [ -99.019775, 26.372185 ], [ -99.294434, 26.833875 ], [ -99.514160, 27.537500 ], [ -100.107422, 28.110749 ], [ -100.458984, 28.690588 ], [ -100.953369, 29.382175 ], [ -101.656494, 29.773914 ], [ -102.480469, 29.754840 ], [ -103.106689, 28.969701 ], [ -103.941650, 29.267233 ], [ -104.458008, 29.573457 ], [ -104.699707, 30.116622 ], [ -105.040283, 30.647364 ], [ -105.633545, 31.081165 ], [ -106.138916, 31.400535 ], [ -106.501465, 31.756196 ], [ -108.237305, 31.756196 ], [ -108.237305, 31.344254 ], [ -111.016846, 31.334871 ], [ -113.302002, 32.036020 ], [ -114.818115, 32.528289 ], [ -114.719238, 32.722599 ], [ -115.993652, 32.611616 ], [ -117.125244, 32.537552 ], [ -117.290039, 33.045508 ], [ -117.938232, 33.623768 ], [ -118.410645, 33.742613 ], [ -118.520508, 34.025348 ], [ -119.080811, 34.079962 ], [ -119.432373, 34.343436 ], [ -120.366211, 34.443159 ], [ -120.618896, 34.606085 ], [ -120.739746, 35.155846 ], [ -121.717529, 36.164488 ], [ -122.541504, 37.553288 ], [ -122.508545, 37.779399 ], [ -122.947998, 38.108628 ], [ -123.728027, 38.950865 ], [ -123.859863, 39.766325 ], [ -124.398193, 40.313043 ], [ -124.178467, 41.145570 ], [ -124.200439, 41.640078 ], [ -89.121094, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.811456 ], [ -89.154053, 17.014768 ], [ -89.230957, 15.887376 ], [ -89.121094, 15.887376 ], [ -89.121094, 15.082732 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.527588, 14.243087 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.604248, 13.912740 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.125922 ], [ -92.230225, 14.541050 ], [ -92.197266, 14.827991 ], [ -92.087402, 15.061515 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.604248, 16.467695 ], [ -90.714111, 16.688817 ], [ -91.076660, 16.920195 ], [ -91.450195, 17.245744 ], [ -90.999756, 17.256236 ], [ -90.999756, 17.811456 ], [ -90.000000, 17.821916 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 15.082732 ], [ -89.121094, 13.389620 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.656663 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.527588, 14.243087 ], [ -89.582520, 14.360191 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -89.121094, 15.082732 ] ] ], [ [ [ -114.719238, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.302002, 32.036020 ], [ -111.016846, 31.334871 ], [ -108.237305, 31.344254 ], [ -108.237305, 31.756196 ], [ -106.501465, 31.756196 ], [ -106.138916, 31.400535 ], [ -105.633545, 31.081165 ], [ -105.040283, 30.647364 ], [ -104.699707, 30.116622 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.267233 ], [ -103.106689, 28.969701 ], [ -102.480469, 29.754840 ], [ -101.656494, 29.773914 ], [ -100.953369, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.537500 ], [ -99.294434, 26.833875 ], [ -99.019775, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.525635, 25.839449 ], [ -97.141113, 25.869109 ], [ -97.525635, 24.986058 ], [ -97.701416, 24.266997 ], [ -97.778320, 22.928042 ], [ -97.866211, 22.441495 ], [ -97.701416, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.295166, 19.321511 ], [ -95.899658, 18.823117 ], [ -94.833984, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.427502 ], [ -92.779541, 18.521283 ], [ -92.032471, 18.698285 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.280036 ], [ -90.527344, 19.870060 ], [ -90.450439, 20.704739 ], [ -90.274658, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.258661 ], [ -89.121094, 21.371244 ], [ -89.121094, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.014768 ], [ -89.143066, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.999756, 17.811456 ], [ -90.999756, 17.256236 ], [ -91.450195, 17.245744 ], [ -91.076660, 16.920195 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.061515 ], [ -92.197266, 14.827991 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.612456 ], [ -93.878174, 15.940202 ], [ -94.691162, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.009033, 16.109153 ], [ -98.942871, 16.562493 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.644022 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.942369 ], [ -105.732422, 20.437308 ], [ -105.391846, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.260010, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.688477, 22.268764 ], [ -106.029053, 22.776182 ], [ -106.907959, 23.765237 ], [ -107.918701, 24.547123 ], [ -108.402100, 25.175117 ], [ -109.259033, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.441066 ], [ -109.797363, 26.676913 ], [ -110.390625, 27.156920 ], [ -110.643311, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.468691 ], [ -112.225342, 28.950476 ], [ -112.269287, 29.267233 ], [ -112.807617, 30.021544 ], [ -113.159180, 30.789037 ], [ -113.148193, 31.165810 ], [ -113.873291, 31.569175 ], [ -114.202881, 31.522361 ], [ -114.774170, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.774170, 30.911651 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.745302 ], [ -113.587646, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.758028 ], [ -113.137207, 28.410728 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.166695 ], [ -111.610107, 26.657278 ], [ -111.280518, 25.730633 ], [ -110.983887, 25.294371 ], [ -110.709229, 24.826625 ], [ -110.654297, 24.297040 ], [ -110.170898, 24.266997 ], [ -109.775391, 23.805450 ], [ -109.412842, 23.362429 ], [ -109.434814, 23.180764 ], [ -109.852295, 22.816694 ], [ -110.028076, 22.826820 ], [ -110.291748, 23.433009 ], [ -110.950928, 23.996290 ], [ -111.665039, 24.487149 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.473033 ], [ -112.302246, 26.007424 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.637639 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.202881, 28.110749 ], [ -114.158936, 28.565225 ], [ -114.927979, 29.276816 ], [ -115.521240, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.125244, 32.537552 ], [ -115.993652, 32.611616 ], [ -114.719238, 32.722599 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.719238, 32.722599 ], [ -114.818115, 32.528289 ], [ -113.302002, 32.036020 ], [ -111.016846, 31.334871 ], [ -108.237305, 31.344254 ], [ -108.237305, 31.756196 ], [ -106.501465, 31.756196 ], [ -106.138916, 31.400535 ], [ -105.633545, 31.081165 ], [ -105.040283, 30.647364 ], [ -104.699707, 30.116622 ], [ -104.458008, 29.573457 ], [ -103.941650, 29.267233 ], [ -103.106689, 28.969701 ], [ -102.480469, 29.754840 ], [ -101.656494, 29.773914 ], [ -100.953369, 29.382175 ], [ -100.458984, 28.690588 ], [ -100.107422, 28.110749 ], [ -99.514160, 27.537500 ], [ -99.294434, 26.833875 ], [ -99.019775, 26.372185 ], [ -98.239746, 26.056783 ], [ -97.525635, 25.839449 ], [ -97.141113, 25.869109 ], [ -97.525635, 24.986058 ], [ -97.701416, 24.266997 ], [ -97.778320, 22.928042 ], [ -97.866211, 22.441495 ], [ -97.701416, 21.902278 ], [ -97.382812, 21.412162 ], [ -97.185059, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.295166, 19.321511 ], [ -95.899658, 18.823117 ], [ -94.833984, 18.562947 ], [ -94.427490, 18.145852 ], [ -93.548584, 18.427502 ], [ -92.779541, 18.521283 ], [ -92.032471, 18.698285 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.280036 ], [ -90.527344, 19.870060 ], [ -90.450439, 20.704739 ], [ -90.274658, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.258661 ], [ -89.121094, 21.371244 ], [ -89.121094, 13.389620 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.656663 ], [ -90.098877, 13.731381 ], [ -90.604248, 13.912740 ], [ -91.230469, 13.923404 ], [ -91.691895, 14.125922 ], [ -92.230225, 14.541050 ], [ -93.361816, 15.612456 ], [ -93.878174, 15.940202 ], [ -94.691162, 16.204125 ], [ -95.251465, 16.130262 ], [ -96.053467, 15.749963 ], [ -96.558838, 15.654776 ], [ -97.261963, 15.919074 ], [ -98.009033, 16.109153 ], [ -98.942871, 16.562493 ], [ -99.700928, 16.709863 ], [ -100.832520, 17.172283 ], [ -101.667480, 17.644022 ], [ -101.920166, 17.916023 ], [ -102.480469, 17.978733 ], [ -103.502197, 18.291950 ], [ -103.919678, 18.750310 ], [ -104.985352, 19.311143 ], [ -105.490723, 19.942369 ], [ -105.732422, 20.437308 ], [ -105.391846, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.260010, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.688477, 22.268764 ], [ -106.029053, 22.776182 ], [ -106.907959, 23.765237 ], [ -107.918701, 24.547123 ], [ -108.402100, 25.175117 ], [ -109.259033, 25.582085 ], [ -109.445801, 25.819672 ], [ -109.291992, 26.441066 ], [ -109.797363, 26.676913 ], [ -110.390625, 27.156920 ], [ -110.643311, 27.858504 ], [ -111.181641, 27.936181 ], [ -111.752930, 28.468691 ], [ -112.225342, 28.950476 ], [ -112.269287, 29.267233 ], [ -112.807617, 30.021544 ], [ -113.159180, 30.789037 ], [ -113.148193, 31.165810 ], [ -113.873291, 31.569175 ], [ -114.202881, 31.522361 ], [ -114.774170, 31.802893 ], [ -114.938965, 31.391158 ], [ -114.774170, 30.911651 ], [ -114.675293, 30.164126 ], [ -114.334717, 29.745302 ], [ -113.587646, 29.056170 ], [ -113.422852, 28.825425 ], [ -113.269043, 28.758028 ], [ -113.137207, 28.410728 ], [ -112.961426, 28.420391 ], [ -112.763672, 27.780772 ], [ -112.456055, 27.527758 ], [ -112.247314, 27.166695 ], [ -111.610107, 26.657278 ], [ -111.280518, 25.730633 ], [ -110.983887, 25.294371 ], [ -110.709229, 24.826625 ], [ -110.654297, 24.297040 ], [ -110.170898, 24.266997 ], [ -109.775391, 23.805450 ], [ -109.412842, 23.362429 ], [ -109.434814, 23.180764 ], [ -109.852295, 22.816694 ], [ -110.028076, 22.826820 ], [ -110.291748, 23.433009 ], [ -110.950928, 23.996290 ], [ -111.665039, 24.487149 ], [ -112.181396, 24.736853 ], [ -112.148438, 25.473033 ], [ -112.302246, 26.007424 ], [ -113.466797, 26.765231 ], [ -113.598633, 26.637639 ], [ -113.851318, 26.902477 ], [ -114.466553, 27.137368 ], [ -115.048828, 27.722436 ], [ -114.982910, 27.800210 ], [ -114.565430, 27.741885 ], [ -114.202881, 28.110749 ], [ -114.158936, 28.565225 ], [ -114.927979, 29.276816 ], [ -115.521240, 29.554345 ], [ -116.718750, 31.634676 ], [ -117.125244, 32.537552 ], [ -115.993652, 32.611616 ], [ -114.719238, 32.722599 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.611122 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.593506, 48.011975 ], [ -89.274902, 48.019324 ], [ -89.121094, 48.070738 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.123779, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.343750, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 49.001844 ], [ -95.152588, 49.001844 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -135.472412, 59.789580 ], [ -135.000000, 59.321981 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.253418, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.199661 ], [ -135.878906, 59.656642 ], [ -135.472412, 59.789580 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.121094, 66.861082 ], [ -89.121094, 64.067396 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.960218 ], [ -91.933594, 62.835089 ], [ -93.153076, 62.021528 ], [ -94.240723, 60.898388 ], [ -94.625244, 60.108670 ], [ -94.680176, 58.950008 ], [ -93.218994, 58.779591 ], [ -92.768555, 57.844751 ], [ -92.296143, 57.088515 ], [ -90.900879, 57.284981 ], [ -90.000000, 57.076575 ], [ -89.121094, 56.872996 ], [ -89.121094, 48.070738 ], [ -89.274902, 48.019324 ], [ -89.593506, 48.011975 ], [ -90.000000, 48.092757 ], [ -90.823975, 48.268569 ], [ -91.636963, 48.136767 ], [ -92.603760, 48.451066 ], [ -93.625488, 48.611122 ], [ -94.328613, 48.669199 ], [ -94.636230, 48.835797 ], [ -94.812012, 49.389524 ], [ -95.152588, 49.382373 ], [ -95.152588, 49.001844 ], [ -122.969971, 49.001844 ], [ -124.903564, 49.986552 ], [ -125.628662, 50.415519 ], [ -127.430420, 50.826758 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.133301, 52.756243 ], [ -129.309082, 53.559889 ], [ -130.517578, 54.284469 ], [ -130.539551, 54.800685 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.912273 ], [ -131.704102, 56.553428 ], [ -132.725830, 57.692406 ], [ -133.352051, 58.407468 ], [ -134.274902, 58.859224 ], [ -134.945068, 59.271495 ], [ -135.000000, 59.321981 ], [ -135.472412, 59.789580 ], [ -135.878906, 59.656642 ], [ -135.878906, 66.861082 ], [ -89.121094, 66.861082 ] ] ], [ [ [ -128.353271, 50.771208 ], [ -127.309570, 50.548344 ], [ -126.694336, 50.401515 ], [ -125.749512, 50.296358 ], [ -124.914551, 49.475263 ], [ -123.925781, 49.059470 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.650635, 48.821333 ], [ -125.958252, 49.181703 ], [ -126.848145, 49.532339 ], [ -127.023926, 49.816721 ], [ -128.056641, 49.993615 ], [ -128.441162, 50.541363 ], [ -128.353271, 50.771208 ] ] ], [ [ [ -133.176270, 54.168866 ], [ -132.703857, 54.040038 ], [ -131.748047, 54.117383 ], [ -132.044678, 52.981723 ], [ -131.176758, 52.180669 ], [ -131.572266, 52.180669 ], [ -132.176514, 52.636397 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.242188, 53.852527 ], [ -133.176270, 54.168866 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.812012, 49.389524 ], [ -94.636230, 48.835797 ], [ -94.328613, 48.669199 ], [ -93.625488, 48.611122 ], [ -92.603760, 48.451066 ], [ -91.636963, 48.136767 ], [ -90.823975, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.593506, 48.011975 ], [ -89.274902, 48.019324 ], [ -89.121094, 48.070738 ], [ -89.121094, 40.313043 ], [ -124.398193, 40.313043 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.137296 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.145508, 43.707594 ], [ -123.892822, 45.521744 ], [ -124.079590, 46.860191 ], [ -124.398193, 47.717154 ], [ -124.683838, 48.180739 ], [ -124.562988, 48.378145 ], [ -123.123779, 48.041365 ], [ -122.585449, 47.092566 ], [ -122.343750, 47.361153 ], [ -122.497559, 48.180739 ], [ -122.838135, 49.001844 ], [ -95.152588, 49.001844 ], [ -95.152588, 49.382373 ], [ -94.812012, 49.389524 ] ] ], [ [ [ -135.472412, 59.789580 ], [ -135.000000, 59.321981 ], [ -134.945068, 59.271495 ], [ -134.274902, 58.859224 ], [ -133.352051, 58.407468 ], [ -132.725830, 57.692406 ], [ -131.704102, 56.553428 ], [ -130.001221, 55.912273 ], [ -129.979248, 55.285372 ], [ -130.539551, 54.800685 ], [ -131.088867, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.253418, 56.371335 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.124320 ], [ -135.000000, 58.188080 ], [ -135.043945, 58.188080 ], [ -135.878906, 58.199661 ], [ -135.878906, 59.656642 ], [ -135.472412, 59.789580 ] ] ] ] } } ] } ] } , @@ -315,11 +299,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.565918, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.304138 ], [ -68.148193, -55.615589 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.257080, -54.495568 ], [ -73.278809, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.103516, -54.072283 ], [ -70.587158, -53.618579 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.795654, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.740723, -42.049293 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.413029 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.323242, -44.410240 ], [ -71.224365, -44.785734 ], [ -71.652832, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.882723 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.246626 ], [ -72.641602, -48.879167 ], [ -73.410645, -49.317961 ], [ -73.322754, -50.380502 ], [ -72.971191, -50.743408 ], [ -72.312012, -50.680797 ], [ -72.322998, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.146973 ], [ -68.565674, -52.301761 ], [ -69.455566, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.902276 ], [ -71.004639, -53.833081 ], [ -71.433105, -53.859007 ], [ -72.553711, -53.533778 ], [ -73.696289, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.256348, -51.631657 ], [ -74.970703, -51.041394 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.709762 ], [ -74.124756, -46.942762 ], [ -75.640869, -46.649436 ], [ -74.696045, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.365126 ], [ -74.333496, -43.229195 ], [ -74.014893, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.740234, -40.313043 ], [ -71.795654, -40.313043 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.752686, -53.852527 ], [ -66.445312, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.197683 ], [ -66.445312, -55.247815 ], [ -66.961670, -54.895565 ], [ -67.565918, -54.870285 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -62.281494, -40.313043 ], [ -62.149658, -40.672306 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -64.973145, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.041134 ], [ -63.457031, -42.561173 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.492783 ], [ -65.324707, -44.504341 ], [ -65.566406, -45.034715 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.576904, -46.301406 ], [ -66.599121, -47.032695 ], [ -65.643311, -47.234490 ], [ -65.983887, -48.136767 ], [ -67.159424, -48.698212 ], [ -67.818604, -49.873398 ], [ -68.730469, -50.268277 ], [ -69.136963, -50.736455 ], [ -68.818359, -51.774638 ], [ -68.148193, -52.348763 ], [ -68.565674, -52.301761 ], [ -69.499512, -52.146973 ], [ -71.916504, -52.011937 ], [ -72.322998, -51.426614 ], [ -72.312012, -50.680797 ], [ -72.971191, -50.743408 ], [ -73.322754, -50.380502 ], [ -73.410645, -49.317961 ], [ -72.641602, -48.879167 ], [ -72.333984, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.882723 ], [ -71.553955, -45.560218 ], [ -71.652832, -44.972571 ], [ -71.224365, -44.785734 ], [ -71.323242, -44.410240 ], [ -71.795654, -44.205835 ], [ -71.466064, -43.786958 ], [ -71.916504, -43.413029 ], [ -72.147217, -42.252918 ], [ -71.740723, -42.049293 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.795654, -40.313043 ], [ -62.281494, -40.313043 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.546143, -51.103522 ], [ -57.744141, -51.549751 ], [ -58.051758, -51.903613 ], [ -59.403076, -52.200874 ], [ -59.853516, -51.849353 ], [ -60.699463, -52.301761 ], [ -61.193848, -51.849353 ], [ -59.996338, -51.248163 ], [ -59.150391, -51.501904 ], [ -58.546143, -51.103522 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.516221 ], [ -68.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.565918, -54.870285 ], [ -66.961670, -54.895565 ], [ -67.291260, -55.304138 ], [ -68.148193, -55.615589 ], [ -68.642578, -55.578345 ], [ -69.235840, -55.497527 ], [ -69.960938, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.257080, -54.495568 ], [ -73.278809, -53.956086 ], [ -74.663086, -52.835958 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.103516, -54.072283 ], [ -70.587158, -53.618579 ], [ -70.268555, -52.928775 ], [ -69.345703, -52.516221 ] ] ], [ [ [ -71.795654, -40.313043 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.740723, -42.049293 ], [ -72.147217, -42.252918 ], [ -71.916504, -43.413029 ], [ -71.466064, -43.786958 ], [ -71.795654, -44.205835 ], [ -71.323242, -44.410240 ], [ -71.224365, -44.785734 ], [ -71.652832, -44.972571 ], [ -71.553955, -45.560218 ], [ -71.916504, -46.882723 ], [ -72.443848, -47.739323 ], [ -72.333984, -48.246626 ], [ -72.641602, -48.879167 ], [ -73.410645, -49.317961 ], [ -73.322754, -50.380502 ], [ -72.971191, -50.743408 ], [ -72.312012, -50.680797 ], [ -72.322998, -51.426614 ], [ -71.916504, -52.011937 ], [ -69.499512, -52.146973 ], [ -68.565674, -52.301761 ], [ -69.455566, -52.295042 ], [ -69.938965, -52.536273 ], [ -70.839844, -52.902276 ], [ -71.004639, -53.833081 ], [ -71.433105, -53.859007 ], [ -72.553711, -53.533778 ], [ -73.696289, -52.835958 ], [ -74.948730, -52.261434 ], [ -75.256348, -51.631657 ], [ -74.970703, -51.041394 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.709762 ], [ -74.124756, -46.942762 ], [ -75.640869, -46.649436 ], [ -74.696045, -45.767523 ], [ -74.355469, -44.103365 ], [ -73.234863, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.114524 ], [ -73.696289, -43.365126 ], [ -74.333496, -43.229195 ], [ -74.014893, -41.795888 ], [ -73.872070, -40.979898 ], [ -73.740234, -40.313043 ], [ -71.795654, -40.313043 ] ] ], [ [ [ -58.546143, -51.103522 ], [ -57.744141, -51.549751 ], [ -58.051758, -51.903613 ], [ -59.403076, -52.200874 ], [ -59.853516, -51.849353 ], [ -60.699463, -52.301761 ], [ -61.193848, -51.849353 ], [ -59.996338, -51.248163 ], [ -59.150391, -51.501904 ], [ -58.546143, -51.103522 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Antarctica", "sov_a3": "ATA", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Antarctica", "adm0_a3": "ATA", "geou_dif": 0, "geounit": "Antarctica", "gu_a3": "ATA", "su_dif": 0, "subunit": "Antarctica", "su_a3": "ATA", "brk_diff": 0, "name": "Antarctica", "name_long": "Antarctica", "brk_a3": "ATA", "brk_name": "Antarctica", "abbrev": "Ant.", "postal": "AQ", "note_brk": "Multiple claims held in abeyance", "name_sort": "Antarctica", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": -99, "pop_est": 3802, "gdp_md_est": 760.4, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AQ", "iso_a3": "ATA", "iso_n3": "010", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "ATA", "adm0_a3_us": "ATA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Antarctica", "region_un": "Antarctica", "subregion": "Antarctica", "region_wb": "Antarctica", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.810059, -63.273182 ], [ -57.216797, -63.524073 ], [ -57.590332, -63.860036 ], [ -58.612061, -64.153742 ], [ -59.040527, -64.368438 ], [ -59.787598, -64.211157 ], [ -60.611572, -64.311349 ], [ -62.017822, -64.797526 ], [ -62.512207, -65.095272 ], [ -62.644043, -65.485626 ], [ -62.589111, -65.856756 ], [ -62.116699, -66.191574 ], [ -62.808838, -66.425537 ], [ -63.742676, -66.504502 ], [ -63.764648, -66.513260 ], [ -64.291992, -66.839487 ], [ -64.335938, -66.861082 ], [ -67.225342, -66.861082 ], [ -66.588135, -66.513260 ], [ -66.060791, -66.209308 ], [ -65.368652, -65.897167 ], [ -64.566650, -65.603878 ], [ -64.171143, -65.173806 ], [ -63.621826, -64.895589 ], [ -62.995605, -64.642704 ], [ -62.039795, -64.586185 ], [ -61.413574, -64.268454 ], [ -60.710449, -64.077003 ], [ -59.886475, -63.956673 ], [ -59.161377, -63.704722 ], [ -58.590088, -63.386601 ], [ -57.810059, -63.273182 ] ] ] } } ] } @@ -329,11 +311,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.224854, 0.878872 ], [ -69.246826, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.422607, -1.120534 ], [ -69.444580, -1.559866 ], [ -69.895020, -4.302591 ], [ -70.389404, -3.765597 ], [ -70.686035, -3.743671 ], [ -70.048828, -2.723583 ], [ -70.806885, -2.262595 ], [ -71.411133, -2.339438 ], [ -71.773682, -2.174771 ], [ -72.322998, -2.438229 ], [ -73.070068, -2.306506 ], [ -73.663330, -1.263325 ], [ -74.124756, -0.999705 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.794678, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.263671 ], [ -77.420654, 0.395505 ], [ -77.662354, 0.823946 ], [ -77.849121, 0.812961 ], [ -77.969971, 0.878872 ], [ -69.224854, 0.878872 ] ] ], [ [ [ -65.489502, 0.878872 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.489258, 0.878872 ], [ -65.489502, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.097656, 0.878872 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.560059, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.901123, -1.548884 ], [ -44.417725, -2.141835 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.569939 ], [ -44.121094, -23.221155 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.636475, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.581299, -29.228890 ], [ -50.690918, -30.987028 ], [ -51.569824, -31.774878 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.646240, -33.201924 ], [ -53.206787, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.623291, -30.221102 ], [ -56.293945, -28.854296 ], [ -55.162354, -27.887639 ], [ -54.492188, -27.479035 ], [ -53.646240, -26.922070 ], [ -53.624268, -26.125850 ], [ -54.129639, -25.552354 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.567108 ], [ -54.294434, -24.026397 ], [ -54.645996, -23.845650 ], [ -55.030518, -24.006326 ], [ -55.404053, -23.956136 ], [ -55.513916, -23.574057 ], [ -55.612793, -22.654572 ], [ -55.799561, -22.360236 ], [ -56.469727, -22.085640 ], [ -56.876221, -22.278931 ], [ -57.930908, -22.095820 ], [ -57.864990, -20.735566 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.362976 ], [ -60.040283, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.259521, -20.519644 ], [ -62.292480, -21.053744 ], [ -62.687988, -22.248429 ], [ -62.841797, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.379883, -22.796439 ], [ -64.962158, -22.075459 ], [ -66.269531, -21.830907 ], [ -67.104492, -22.735657 ], [ -67.829590, -22.877440 ], [ -68.214111, -21.493964 ], [ -68.752441, -20.375527 ], [ -68.444824, -19.404430 ], [ -68.961182, -18.979026 ], [ -69.104004, -18.260653 ], [ -69.587402, -17.581194 ], [ -69.862061, -18.093644 ], [ -70.367432, -18.344098 ], [ -71.378174, -17.780074 ], [ -71.466064, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.262989 ], [ -76.003418, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.540771, -6.544560 ], [ -81.243896, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.980469, -2.218684 ], [ -80.364990, -2.690661 ], [ -80.969238, -2.251617 ], [ -80.760498, -1.966167 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.911827 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.804688, 0.878872 ], [ -77.969971, 0.878872 ], [ -77.849121, 0.812961 ], [ -77.662354, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.794678, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.339438 ], [ -70.806885, -2.262595 ], [ -70.048828, -2.723583 ], [ -70.686035, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -69.444580, -1.559866 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.224854, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.489502, 0.878872 ], [ -50.097656, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.969971, 0.878872 ], [ -77.849121, 0.812961 ], [ -77.662354, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.263671 ], [ -76.289062, 0.417477 ], [ -75.794678, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.124756, -0.999705 ], [ -73.663330, -1.263325 ], [ -73.070068, -2.306506 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.174771 ], [ -71.411133, -2.339438 ], [ -70.806885, -2.262595 ], [ -70.048828, -2.723583 ], [ -70.686035, -3.743671 ], [ -70.389404, -3.765597 ], [ -69.895020, -4.302591 ], [ -70.795898, -4.247812 ], [ -70.927734, -4.401183 ], [ -71.751709, -4.598327 ], [ -72.894287, -5.276948 ], [ -72.960205, -5.747174 ], [ -73.212891, -6.085936 ], [ -73.114014, -6.631870 ], [ -73.718262, -6.915521 ], [ -73.718262, -7.340675 ], [ -73.981934, -7.525873 ], [ -73.564453, -8.428904 ], [ -73.015137, -9.037003 ], [ -73.223877, -9.459899 ], [ -72.564697, -9.524914 ], [ -72.180176, -10.055403 ], [ -71.301270, -10.077037 ], [ -70.477295, -9.492408 ], [ -70.543213, -11.005904 ], [ -70.092773, -11.124507 ], [ -69.532471, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.170410, -10.304110 ], [ -66.643066, -9.936388 ], [ -65.335693, -9.763198 ], [ -65.445557, -10.509417 ], [ -65.324707, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.458033 ], [ -63.193359, -12.629618 ], [ -62.797852, -13.004558 ], [ -62.127686, -13.197165 ], [ -61.710205, -13.485790 ], [ -61.083984, -13.485790 ], [ -60.501709, -13.774066 ], [ -60.457764, -14.360191 ], [ -60.260010, -14.647368 ], [ -60.249023, -15.082732 ], [ -60.545654, -15.093339 ], [ -60.161133, -16.256867 ], [ -58.238525, -16.299051 ], [ -58.381348, -16.878147 ], [ -58.282471, -17.277219 ], [ -57.733154, -17.549772 ], [ -57.502441, -18.177169 ], [ -57.678223, -18.958246 ], [ -57.952881, -19.404430 ], [ -57.854004, -19.973349 ], [ -58.161621, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.117432, -19.362976 ], [ -60.040283, -19.342245 ], [ -61.787109, -19.632240 ], [ -62.259521, -20.519644 ], [ -62.292480, -21.053744 ], [ -62.687988, -22.248429 ], [ -62.841797, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.379883, -22.796439 ], [ -64.962158, -22.075459 ], [ -66.269531, -21.830907 ], [ -67.104492, -22.735657 ], [ -67.829590, -22.877440 ], [ -68.214111, -21.493964 ], [ -68.752441, -20.375527 ], [ -68.444824, -19.404430 ], [ -68.961182, -18.979026 ], [ -69.104004, -18.260653 ], [ -69.587402, -17.581194 ], [ -69.862061, -18.093644 ], [ -70.367432, -18.344098 ], [ -71.378174, -17.780074 ], [ -71.466064, -17.361125 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.262989 ], [ -76.003418, -14.647368 ], [ -76.420898, -13.827412 ], [ -76.256104, -13.539201 ], [ -77.102051, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.928675 ], [ -79.760742, -7.199001 ], [ -80.540771, -6.544560 ], [ -81.243896, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.101074, -4.039618 ], [ -80.299072, -3.403758 ], [ -79.771729, -2.657738 ], [ -79.980469, -2.218684 ], [ -80.364990, -2.690661 ], [ -80.969238, -2.251617 ], [ -80.760498, -1.966167 ], [ -80.936279, -1.054628 ], [ -80.584717, -0.911827 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.804688, 0.878872 ], [ -77.969971, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.260653 ], [ -68.961182, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.752441, -20.375527 ], [ -68.214111, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.324219, -24.026397 ], [ -68.411865, -24.517139 ], [ -68.389893, -26.185018 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -69.005127, -27.518015 ], [ -69.653320, -28.459033 ], [ -70.015869, -29.372602 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.363018 ], [ -70.070801, -33.091542 ], [ -69.818115, -33.275435 ], [ -69.818115, -34.198173 ], [ -70.389404, -35.173808 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.659606 ], [ -71.114502, -37.579413 ], [ -70.817871, -38.556757 ], [ -71.411133, -38.916682 ], [ -71.674805, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.718994, -25.710837 ], [ -70.400391, -23.634460 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.756364 ], [ -70.367432, -18.344098 ], [ -69.862061, -18.093644 ], [ -69.587402, -17.581194 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.097656, 0.878872 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.560059, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.901123, -1.548884 ], [ -44.417725, -2.141835 ], [ -44.582520, -2.690661 ], [ -44.121094, -2.569939 ], [ -44.121094, -23.221155 ], [ -44.648438, -23.352343 ], [ -45.351562, -23.795398 ], [ -46.472168, -24.086589 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.636475, -26.627818 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.671311 ], [ -49.581299, -29.228890 ], [ -50.690918, -30.987028 ], [ -51.569824, -31.774878 ], [ -52.250977, -32.249974 ], [ -52.712402, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.646240, -33.201924 ], [ -53.206787, -32.731841 ], [ -53.789062, -32.045333 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.975342, -30.883369 ], [ -56.975098, -30.107118 ], [ -57.623291, -30.221102 ], [ -56.293945, -28.854296 ], [ -55.162354, -27.887639 ], [ -54.492188, -27.479035 ], [ -53.646240, -26.922070 ], [ -53.624268, -26.125850 ], [ -54.129639, -25.552354 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.627818 ], [ -55.689697, -27.391278 ], [ -56.480713, -27.547242 ], [ -57.612305, -27.401032 ], [ -58.612061, -27.127591 ], [ -57.634277, -25.601902 ], [ -57.777100, -25.165173 ], [ -58.809814, -24.776760 ], [ -60.029297, -24.036431 ], [ -60.842285, -23.885838 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.053744 ], [ -62.259521, -20.519644 ], [ -61.787109, -19.632240 ], [ -60.040283, -19.342245 ], [ -59.117432, -19.362976 ], [ -58.183594, -19.870060 ], [ -58.161621, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.952881, -19.404430 ], [ -57.678223, -18.958246 ], [ -57.502441, -18.177169 ], [ -57.733154, -17.549772 ], [ -58.282471, -17.277219 ], [ -58.381348, -16.878147 ], [ -58.238525, -16.299051 ], [ -60.161133, -16.256867 ], [ -60.545654, -15.093339 ], [ -60.249023, -15.082732 ], [ -60.260010, -14.647368 ], [ -60.457764, -14.360191 ], [ -60.501709, -13.774066 ], [ -61.083984, -13.485790 ], [ -61.710205, -13.485790 ], [ -62.127686, -13.197165 ], [ -62.797852, -13.004558 ], [ -63.193359, -12.629618 ], [ -64.313965, -12.458033 ], [ -65.401611, -11.566144 ], [ -65.324707, -10.898042 ], [ -65.445557, -10.509417 ], [ -65.335693, -9.763198 ], [ -66.643066, -9.936388 ], [ -67.170410, -10.304110 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.532471, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.543213, -11.005904 ], [ -70.477295, -9.492408 ], [ -71.301270, -10.077037 ], [ -72.180176, -10.055403 ], [ -72.564697, -9.524914 ], [ -73.223877, -9.459899 ], [ -73.015137, -9.037003 ], [ -73.564453, -8.428904 ], [ -73.981934, -7.525873 ], [ -73.718262, -7.340675 ], [ -73.718262, -6.915521 ], [ -73.114014, -6.631870 ], [ -73.212891, -6.085936 ], [ -72.960205, -5.747174 ], [ -72.894287, -5.276948 ], [ -71.751709, -4.598327 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.247812 ], [ -69.895020, -4.302591 ], [ -69.444580, -1.559866 ], [ -69.422607, -1.120534 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.224854, 0.878872 ], [ -66.489258, 0.878872 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.489502, 0.878872 ], [ -50.097656, 0.878872 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.687988, -22.248429 ], [ -60.842285, -23.885838 ], [ -60.029297, -24.036431 ], [ -58.809814, -24.776760 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.601902 ], [ -58.612061, -27.127591 ], [ -57.612305, -27.401032 ], [ -56.480713, -27.547242 ], [ -55.689697, -27.391278 ], [ -54.788818, -26.627818 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.887639 ], [ -56.293945, -28.854296 ], [ -57.623291, -30.221102 ], [ -56.975098, -30.107118 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.206787, -32.731841 ], [ -53.646240, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.800049, -34.397845 ], [ -54.931641, -34.957995 ], [ -55.667725, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.434098 ], [ -57.821045, -34.461277 ], [ -58.425293, -33.906896 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.905980 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.817871, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.125488, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.198173 ], [ -69.818115, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.389893, -26.185018 ], [ -68.411865, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.040283, -19.342245 ], [ -59.117432, -19.362976 ], [ -58.183594, -19.870060 ], [ -58.161621, -20.179724 ], [ -57.864990, -20.735566 ], [ -57.930908, -22.095820 ], [ -56.876221, -22.278931 ], [ -56.469727, -22.085640 ], [ -55.799561, -22.360236 ], [ -55.612793, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.404053, -23.956136 ], [ -55.030518, -24.006326 ], [ -54.645996, -23.845650 ], [ -54.294434, -24.026397 ], [ -54.294434, -24.567108 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.552354 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.922070 ], [ -54.492188, -27.479035 ], [ -55.162354, -27.887639 ], [ -56.293945, -28.854296 ], [ -57.623291, -30.221102 ], [ -56.975098, -30.107118 ], [ -55.975342, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.045333 ], [ -53.206787, -32.731841 ], [ -53.646240, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.800049, -34.397845 ], [ -54.931641, -34.957995 ], [ -55.667725, -34.750640 ], [ -56.217041, -34.858890 ], [ -57.139893, -34.434098 ], [ -57.821045, -34.461277 ], [ -58.425293, -33.906896 ], [ -58.491211, -34.434098 ], [ -57.227783, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.905980 ], [ -57.744141, -38.186387 ], [ -59.227295, -38.719805 ], [ -61.237793, -38.925229 ], [ -62.336426, -38.831150 ], [ -62.127686, -39.427707 ], [ -62.325439, -40.170479 ], [ -62.149658, -40.680638 ], [ -62.666016, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.764648, -41.170384 ], [ -64.259033, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.062786 ], [ -65.039062, -41.640078 ], [ -71.806641, -41.640078 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.674805, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.817871, -38.556757 ], [ -71.114502, -37.579413 ], [ -71.125488, -36.659606 ], [ -70.367432, -36.004673 ], [ -70.389404, -35.173808 ], [ -69.818115, -34.198173 ], [ -69.818115, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.363018 ], [ -69.916992, -30.334954 ], [ -70.015869, -29.372602 ], [ -69.653320, -28.459033 ], [ -69.005127, -27.518015 ], [ -68.291016, -26.902477 ], [ -68.598633, -26.509905 ], [ -68.389893, -26.185018 ], [ -68.411865, -24.517139 ], [ -67.324219, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.269531, -21.830907 ], [ -64.962158, -22.075459 ], [ -64.379883, -22.796439 ], [ -63.984375, -21.993989 ], [ -62.841797, -22.034730 ], [ -62.687988, -22.248429 ], [ -62.292480, -21.053744 ], [ -62.259521, -20.519644 ], [ -61.787109, -19.632240 ], [ -60.040283, -19.342245 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, -17.581194 ], [ -69.104004, -18.260653 ], [ -68.961182, -18.979026 ], [ -68.444824, -19.404430 ], [ -68.752441, -20.375527 ], [ -68.214111, -21.493964 ], [ -67.829590, -22.877440 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.324219, -24.026397 ], [ -68.411865, -24.517139 ], [ -68.389893, -26.185018 ], [ -68.598633, -26.509905 ], [ -68.291016, -26.902477 ], [ -69.005127, -27.518015 ], [ -69.653320, -28.459033 ], [ -70.015869, -29.372602 ], [ -69.916992, -30.334954 ], [ -70.532227, -31.363018 ], [ -70.070801, -33.091542 ], [ -69.818115, -33.275435 ], [ -69.818115, -34.198173 ], [ -70.389404, -35.173808 ], [ -70.367432, -36.004673 ], [ -71.125488, -36.659606 ], [ -71.114502, -37.579413 ], [ -70.817871, -38.556757 ], [ -71.411133, -38.916682 ], [ -71.674805, -39.808536 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.806641, -41.640078 ], [ -73.992920, -41.640078 ], [ -73.872070, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.212891, -39.257778 ], [ -73.509521, -38.281313 ], [ -73.586426, -37.160317 ], [ -73.168945, -37.125286 ], [ -72.553711, -35.514343 ], [ -71.861572, -33.906896 ], [ -71.433105, -32.417066 ], [ -71.663818, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.644606 ], [ -70.718994, -25.710837 ], [ -70.400391, -23.634460 ], [ -70.092773, -21.391705 ], [ -70.158691, -19.756364 ], [ -70.367432, -18.344098 ], [ -69.862061, -18.093644 ], [ -69.587402, -17.581194 ] ] ] } } ] } ] } , @@ -341,43 +325,43 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.235107, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.942321 ], [ -74.981689, 39.198205 ], [ -75.201416, 39.249271 ], [ -75.531006, 39.495563 ], [ -75.322266, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.058594, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.212832 ], [ -76.025391, 37.256566 ], [ -75.717773, 37.935533 ], [ -76.234131, 38.315801 ], [ -76.343994, 39.147103 ], [ -76.541748, 38.719805 ], [ -76.333008, 38.082690 ], [ -76.992188, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.871582, 36.553775 ], [ -75.728760, 35.550105 ], [ -76.365967, 34.804783 ], [ -77.398682, 34.506557 ], [ -78.057861, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.495598 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.859375, 32.036020 ], [ -81.331787, 31.438037 ], [ -81.485596, 30.732393 ], [ -81.309814, 30.031055 ], [ -80.980225, 29.180941 ], [ -80.529785, 28.468691 ], [ -80.529785, 28.042895 ], [ -80.057373, 26.882880 ], [ -80.090332, 26.204734 ], [ -80.134277, 25.819672 ], [ -80.375977, 25.204941 ], [ -80.683594, 25.075648 ], [ -81.166992, 25.204941 ], [ -81.331787, 25.641526 ], [ -81.705322, 25.869109 ], [ -82.705078, 27.498527 ], [ -82.858887, 27.887639 ], [ -82.650146, 28.545926 ], [ -82.924805, 29.094577 ], [ -83.704834, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.111084, 29.630771 ], [ -85.286865, 29.688053 ], [ -85.770264, 30.154627 ], [ -86.396484, 30.401307 ], [ -87.528076, 30.268556 ], [ -88.417969, 30.382353 ], [ -89.176025, 30.315988 ], [ -89.593506, 30.154627 ], [ -89.417725, 29.888281 ], [ -89.428711, 29.487425 ], [ -89.219971, 29.286399 ], [ -89.406738, 29.161756 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.200123 ], [ -90.153809, 29.113775 ], [ -90.878906, 29.142566 ], [ -90.878906, 41.640078 ], [ -69.960938, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.821916 ], [ -89.143066, 17.811456 ], [ -89.154053, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.527588, 14.243087 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.404470 ], [ -90.604248, 16.467695 ], [ -90.714111, 16.688817 ], [ -90.878906, 16.794024 ], [ -90.878906, 17.821916 ], [ -90.000000, 17.821916 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.251890 ], [ -87.615967, 19.642588 ], [ -87.440186, 19.466592 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.510866 ], [ -88.483887, 18.490029 ], [ -88.846436, 17.884659 ], [ -89.033203, 17.999632 ], [ -89.154053, 17.957832 ], [ -89.143066, 17.811456 ], [ -89.154053, 17.014768 ], [ -89.230957, 15.887376 ], [ -88.934326, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.220215, 15.728814 ], [ -88.681641, 15.347762 ], [ -89.154053, 15.061515 ], [ -89.219971, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.582520, 14.360191 ], [ -89.527588, 14.243087 ], [ -89.725342, 14.136576 ], [ -90.000000, 13.934067 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.615234, 13.912740 ], [ -90.878906, 13.923404 ], [ -90.878906, 19.217803 ], [ -90.769043, 19.280036 ], [ -90.538330, 19.870060 ], [ -90.450439, 20.704739 ], [ -90.274658, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.258661 ], [ -88.538818, 21.493964 ], [ -87.659912, 21.453069 ], [ -87.055664, 21.545066 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.887376 ], [ -85.177002, 15.908508 ], [ -84.979248, 15.993015 ], [ -84.528809, 15.855674 ], [ -84.364014, 15.834536 ], [ -84.056396, 15.644197 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.273587 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.571242 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.858643, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.649902, 10.941192 ], [ -83.397217, 10.390572 ], [ -83.012695, 9.990491 ], [ -82.540283, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.026153 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.852507 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ], [ -79.024658, 9.546583 ], [ -79.057617, 9.449062 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.928675 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.552002, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.375977, 8.298470 ], [ -80.474854, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.700105 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -83.507080, 8.450639 ], [ -83.704834, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.627930, 9.047853 ], [ -83.913574, 9.286465 ], [ -84.298096, 9.481572 ], [ -84.649658, 9.611582 ], [ -84.715576, 9.903921 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.828154 ], [ -85.660400, 9.936388 ], [ -85.792236, 10.131117 ], [ -85.792236, 10.433793 ], [ -85.660400, 10.757763 ], [ -85.935059, 10.898042 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.561035, 13.058075 ], [ -87.396240, 12.908198 ], [ -87.319336, 12.983148 ], [ -87.484131, 13.293411 ], [ -87.791748, 13.378932 ], [ -87.901611, 13.143678 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.656663 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.527588, 14.243087 ], [ -89.582520, 14.360191 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -88.681641, 15.347762 ], [ -88.220215, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.845105 ], [ -86.901855, 15.760536 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.887376 ], [ -86.000977, 16.003576 ] ] ], [ [ [ -87.055664, 21.545066 ], [ -86.813965, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.385254, 20.251890 ], [ -87.615967, 19.642588 ], [ -87.440186, 19.466592 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.510866 ], [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.297119, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.725586, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.014768 ], [ -89.143066, 17.811456 ], [ -90.000000, 17.821916 ], [ -90.878906, 17.821916 ], [ -90.878906, 19.217803 ], [ -90.769043, 19.280036 ], [ -90.538330, 19.870060 ], [ -90.450439, 20.704739 ], [ -90.274658, 21.002471 ], [ -90.000000, 21.105000 ], [ -89.604492, 21.258661 ], [ -88.538818, 21.493964 ], [ -87.659912, 21.453069 ], [ -87.055664, 21.545066 ] ] ], [ [ [ -82.265625, 23.190863 ], [ -81.397705, 23.120154 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.300537, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.849394 ], [ -77.080078, 20.416717 ], [ -77.486572, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.022983 ], [ -78.717041, 21.596151 ], [ -79.288330, 21.555284 ], [ -80.211182, 21.830907 ], [ -80.518799, 22.034730 ], [ -81.815186, 22.187405 ], [ -82.166748, 22.390714 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.902588, 22.156883 ], [ -84.045410, 21.912471 ], [ -84.550781, 21.800308 ], [ -84.968262, 21.892084 ], [ -84.440918, 22.207749 ], [ -84.232178, 22.563293 ], [ -83.781738, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ], [ [ [ -78.189697, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.783203, 23.704895 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.204941 ] ] ], [ [ [ -78.508301, 26.873081 ], [ -77.849121, 26.833875 ], [ -77.816162, 26.578702 ], [ -78.903809, 26.421390 ], [ -78.980713, 26.784847 ], [ -78.508301, 26.873081 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -77.003174, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ], [ [ [ -90.878906, 16.794024 ], [ -90.714111, 16.688817 ], [ -90.604248, 16.467695 ], [ -90.439453, 16.404470 ], [ -90.461426, 16.066929 ], [ -90.878906, 16.066929 ], [ -90.878906, 16.794024 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.887376 ], [ -85.177002, 15.908508 ], [ -84.979248, 15.993015 ], [ -84.528809, 15.855674 ], [ -84.364014, 15.834536 ], [ -84.056396, 15.644197 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.273587 ], [ -83.144531, 14.997852 ], [ -83.232422, 14.902322 ], [ -83.287354, 14.679254 ], [ -83.177490, 14.306969 ], [ -83.408203, 13.966054 ], [ -83.518066, 13.571242 ], [ -83.551025, 13.122280 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.627930, 12.318536 ], [ -83.715820, 11.888853 ], [ -83.649902, 11.630716 ], [ -83.858643, 11.372339 ], [ -83.803711, 11.102947 ], [ -83.649902, 10.941192 ], [ -83.397217, 10.390572 ], [ -83.012695, 9.990491 ], [ -82.540283, 9.568251 ], [ -82.188721, 9.210560 ], [ -82.210693, 8.993600 ], [ -81.804199, 8.950193 ], [ -81.716309, 9.026153 ], [ -81.441650, 8.787368 ], [ -80.947266, 8.852507 ], [ -80.518799, 9.112945 ], [ -79.914551, 9.308149 ], [ -79.573975, 9.611582 ], [ -79.024658, 9.546583 ], [ -79.057617, 9.449062 ], [ -78.497314, 9.416548 ], [ -78.057861, 9.243093 ], [ -77.728271, 8.950193 ], [ -77.354736, 8.667918 ], [ -77.475586, 8.526701 ], [ -77.244873, 7.928675 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.514981 ], [ -78.431396, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.711359 ], [ -79.123535, 8.993600 ], [ -79.552002, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.167236, 8.331083 ], [ -80.375977, 8.298470 ], [ -80.474854, 8.091862 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.275292 ], [ -80.881348, 7.220800 ], [ -81.057129, 7.819847 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.700105 ], [ -81.716309, 8.102739 ], [ -82.133789, 8.178868 ], [ -82.386475, 8.287599 ], [ -82.814941, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.968750, 8.222364 ], [ -83.507080, 8.450639 ], [ -83.704834, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.627930, 9.047853 ], [ -83.913574, 9.286465 ], [ -84.298096, 9.481572 ], [ -84.649658, 9.611582 ], [ -84.715576, 9.903921 ], [ -84.979248, 10.087854 ], [ -84.913330, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.341797, 9.828154 ], [ -85.660400, 9.936388 ], [ -85.792236, 10.131117 ], [ -85.792236, 10.433793 ], [ -85.660400, 10.757763 ], [ -85.935059, 10.898042 ], [ -85.715332, 11.092166 ], [ -86.528320, 11.802834 ], [ -86.748047, 12.146746 ], [ -87.165527, 12.458033 ], [ -87.670898, 12.908198 ], [ -87.561035, 13.058075 ], [ -87.396240, 12.908198 ], [ -87.319336, 12.983148 ], [ -87.484131, 13.293411 ], [ -87.791748, 13.378932 ], [ -87.901611, 13.143678 ], [ -88.483887, 13.165074 ], [ -88.846436, 13.261333 ], [ -89.252930, 13.453737 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.656663 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.934067 ], [ -89.725342, 14.136576 ], [ -89.527588, 14.243087 ], [ -89.582520, 14.360191 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.219971, 14.870469 ], [ -89.154053, 15.061515 ], [ -88.681641, 15.347762 ], [ -88.220215, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.866242 ], [ -87.615967, 15.876809 ], [ -87.517090, 15.792254 ], [ -87.363281, 15.845105 ], [ -86.901855, 15.760536 ], [ -86.440430, 15.781682 ], [ -86.121826, 15.887376 ], [ -86.000977, 16.003576 ] ] ], [ [ [ -82.265625, 23.190863 ], [ -81.397705, 23.120154 ], [ -80.617676, 23.099944 ], [ -79.672852, 22.766051 ], [ -79.277344, 22.400872 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.278931 ], [ -76.519775, 21.207459 ], [ -76.190186, 21.217701 ], [ -75.596924, 21.012727 ], [ -75.673828, 20.735566 ], [ -74.937744, 20.694462 ], [ -74.179688, 20.282809 ], [ -74.300537, 20.045611 ], [ -74.959717, 19.921713 ], [ -75.629883, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.750244, 19.849394 ], [ -77.080078, 20.416717 ], [ -77.486572, 20.673905 ], [ -78.134766, 20.735566 ], [ -78.486328, 21.022983 ], [ -78.717041, 21.596151 ], [ -79.288330, 21.555284 ], [ -80.211182, 21.830907 ], [ -80.518799, 22.034730 ], [ -81.815186, 22.187405 ], [ -82.166748, 22.390714 ], [ -81.793213, 22.634293 ], [ -82.770996, 22.684984 ], [ -83.496094, 22.167058 ], [ -83.902588, 22.156883 ], [ -84.045410, 21.912471 ], [ -84.550781, 21.800308 ], [ -84.968262, 21.892084 ], [ -84.440918, 22.207749 ], [ -84.232178, 22.563293 ], [ -83.781738, 22.786311 ], [ -83.265381, 22.978624 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.190863 ] ] ], [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.257812, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.615013 ], [ -68.686523, 18.208480 ], [ -69.158936, 18.417079 ], [ -69.620361, 18.375379 ], [ -69.949951, 18.427502 ], [ -70.136719, 18.239786 ], [ -70.521240, 18.187607 ], [ -70.664062, 18.427502 ], [ -70.993652, 18.281518 ], [ -71.400146, 17.602139 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -72.366943, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.916016, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.443604, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ], [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.110352, 18.344098 ], [ -88.121338, 18.072757 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.297119, 17.130292 ], [ -88.242188, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.267414 ], [ -88.725586, 16.235772 ], [ -88.934326, 15.887376 ], [ -89.230957, 15.887376 ], [ -89.154053, 17.014768 ], [ -89.154053, 17.957832 ], [ -89.033203, 17.999632 ], [ -88.846436, 17.884659 ], [ -88.483887, 18.490029 ], [ -88.297119, 18.500447 ] ] ], [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.396230 ], [ -76.365967, 18.156291 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.863747 ], [ -77.200928, 17.696362 ], [ -77.761230, 17.863747 ], [ -78.332520, 18.229351 ], [ -78.211670, 18.448347 ], [ -77.794189, 18.521283 ] ] ], [ [ [ -78.189697, 25.204941 ], [ -77.893066, 25.165173 ], [ -77.541504, 24.337087 ], [ -77.530518, 23.755182 ], [ -77.783203, 23.704895 ], [ -78.035889, 24.287027 ], [ -78.409424, 24.577100 ], [ -78.189697, 25.204941 ] ] ], [ [ [ -78.508301, 26.873081 ], [ -77.849121, 26.833875 ], [ -77.816162, 26.578702 ], [ -78.903809, 26.421390 ], [ -78.980713, 26.784847 ], [ -78.508301, 26.873081 ] ] ], [ [ [ -77.783203, 27.039557 ], [ -77.003174, 26.588527 ], [ -77.167969, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.343750, 26.529565 ], [ -77.783203, 26.922070 ], [ -77.783203, 27.039557 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.770570 ], [ -71.356201, 11.533852 ], [ -71.949463, 11.426187 ], [ -71.619873, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.069551 ], [ -71.268311, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.400146, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.157486 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.236084, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.291260, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.196000 ], [ -64.885254, 10.077037 ], [ -64.324951, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.072510, 10.703792 ], [ -61.875000, 10.714587 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -60.545654, 7.776309 ], [ -60.633545, 7.416942 ], [ -60.292969, 7.046379 ], [ -60.545654, 6.850078 ], [ -61.160889, 6.697343 ], [ -61.138916, 6.227934 ], [ -61.413574, 5.954827 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.797852, 4.006740 ], [ -63.094482, 3.765597 ], [ -63.885498, 4.017699 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.050577 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.405299 ], [ -63.369141, 2.196727 ], [ -64.083252, 1.911267 ], [ -64.193115, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.060547, 1.131518 ], [ -67.258301, 1.713612 ], [ -67.532959, 2.032045 ], [ -67.862549, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.213867, 0.988720 ], [ -69.246826, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.201660, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.794678, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.662354, 0.823946 ], [ -77.849121, 0.812961 ], [ -78.848877, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.262595 ], [ -78.431396, 2.624814 ], [ -77.926025, 2.690661 ], [ -77.508545, 3.326986 ], [ -77.124023, 3.853293 ], [ -77.497559, 4.083453 ], [ -77.310791, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.475586, 6.686431 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.244873, 7.928675 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.635334 ], [ -76.080322, 9.340672 ], [ -75.673828, 9.438224 ], [ -75.662842, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.190674, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.630615, 11.727546 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ], [ [ [ -73.190918, 19.911384 ], [ -72.575684, 19.870060 ], [ -71.707764, 19.715000 ], [ -71.586914, 19.880392 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.642588 ], [ -69.763184, 19.290406 ], [ -69.224854, 19.311143 ], [ -69.257812, 19.010190 ], [ -68.807373, 18.979026 ], [ -68.312988, 18.615013 ], [ -68.686523, 18.208480 ], [ -69.158936, 18.417079 ], [ -69.620361, 18.375379 ], [ -69.949951, 18.427502 ], [ -70.136719, 18.239786 ], [ -70.521240, 18.187607 ], [ -70.664062, 18.427502 ], [ -70.993652, 18.281518 ], [ -71.400146, 17.602139 ], [ -71.652832, 17.759150 ], [ -71.707764, 18.041421 ], [ -72.366943, 18.208480 ], [ -72.839355, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.916016, 18.030975 ], [ -74.454346, 18.344098 ], [ -74.366455, 18.667063 ], [ -73.443604, 18.521283 ], [ -72.696533, 18.448347 ], [ -72.333984, 18.667063 ], [ -72.795410, 19.103648 ], [ -72.784424, 19.487308 ], [ -73.410645, 19.642588 ], [ -73.190918, 19.911384 ] ] ], [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.396230 ], [ -76.365967, 18.156291 ], [ -76.201172, 17.884659 ], [ -76.904297, 17.863747 ], [ -77.200928, 17.696362 ], [ -77.761230, 17.863747 ], [ -78.332520, 18.229351 ], [ -78.211670, 18.448347 ], [ -77.794189, 18.521283 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.114523 ], [ -71.334229, 11.770570 ], [ -71.356201, 11.533852 ], [ -71.949463, 11.426187 ], [ -71.619873, 10.962764 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.860628 ], [ -71.696777, 9.069551 ], [ -71.268311, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.345215, 10.206813 ], [ -71.400146, 10.962764 ], [ -70.158691, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.938965, 12.157486 ], [ -69.587402, 11.458491 ], [ -68.884277, 11.436955 ], [ -68.236084, 10.887254 ], [ -68.192139, 10.552622 ], [ -67.291260, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.196000 ], [ -64.885254, 10.077037 ], [ -64.324951, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.072510, 10.703792 ], [ -61.875000, 10.714587 ], [ -62.731934, 10.422988 ], [ -62.391357, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.384032 ], [ -60.666504, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.095459, 7.993957 ], [ -58.480225, 7.351571 ], [ -58.458252, 6.828261 ], [ -58.073730, 6.806444 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.769036 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.020385 ], [ -53.953857, 5.758105 ], [ -54.481201, 4.893941 ], [ -54.393311, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.306506 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.975342, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.909424, 2.021065 ], [ -55.997314, 1.812442 ], [ -56.535645, 1.900286 ], [ -56.777344, 1.867345 ], [ -57.337646, 1.944207 ], [ -57.656250, 1.680667 ], [ -58.106689, 1.504954 ], [ -58.425293, 1.461023 ], [ -58.535156, 1.263325 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.809570, 3.601142 ], [ -59.534912, 3.962901 ], [ -59.765625, 4.423090 ], [ -60.106201, 4.576425 ], [ -59.974365, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.797852, 4.006740 ], [ -63.094482, 3.765597 ], [ -63.885498, 4.017699 ], [ -64.632568, 4.149201 ], [ -64.819336, 4.050577 ], [ -64.368896, 3.798484 ], [ -64.412842, 3.129546 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.405299 ], [ -63.369141, 2.196727 ], [ -64.083252, 1.911267 ], [ -64.193115, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.357666, 1.098565 ], [ -65.544434, 0.790990 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.060547, 1.131518 ], [ -67.258301, 1.713612 ], [ -67.532959, 2.032045 ], [ -67.862549, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.807129, 1.087581 ], [ -69.213867, 0.988720 ], [ -69.246826, 0.604237 ], [ -69.455566, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.015869, -0.186767 ], [ -69.576416, -0.549308 ], [ -69.488525, -0.878872 ], [ -74.201660, -0.878872 ], [ -74.443359, -0.527336 ], [ -75.102539, -0.054932 ], [ -75.377197, -0.153808 ], [ -75.651855, 0.000000 ], [ -75.794678, 0.087891 ], [ -76.289062, 0.417477 ], [ -76.574707, 0.252685 ], [ -77.420654, 0.395505 ], [ -77.662354, 0.823946 ], [ -77.849121, 0.812961 ], [ -78.848877, 1.384143 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.768518 ], [ -78.662109, 2.262595 ], [ -78.431396, 2.624814 ], [ -77.926025, 2.690661 ], [ -77.508545, 3.326986 ], [ -77.124023, 3.853293 ], [ -77.497559, 4.083453 ], [ -77.310791, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.321777, 5.845545 ], [ -77.475586, 6.686431 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.244873, 7.928675 ], [ -77.475586, 8.526701 ], [ -77.354736, 8.667918 ], [ -76.838379, 8.635334 ], [ -76.080322, 9.340672 ], [ -75.673828, 9.438224 ], [ -75.662842, 9.774025 ], [ -75.476074, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.278564, 11.102947 ], [ -74.190674, 11.307708 ], [ -73.410645, 11.221510 ], [ -72.630615, 11.727546 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ], [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.841064, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ] ] ], [ [ [ -61.105957, 10.887254 ], [ -60.897217, 10.854886 ], [ -60.930176, 10.109486 ], [ -61.765137, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.655273, 10.368958 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -59.754639, 8.363693 ], [ -59.095459, 7.993957 ], [ -58.480225, 7.351571 ], [ -58.458252, 6.828261 ], [ -58.073730, 6.806444 ], [ -57.150879, 5.976680 ], [ -55.953369, 5.769036 ], [ -55.843506, 5.954827 ], [ -55.030518, 6.020385 ], [ -53.953857, 5.758105 ], [ -54.481201, 4.893941 ], [ -54.393311, 4.214943 ], [ -54.008789, 3.623071 ], [ -54.184570, 3.184394 ], [ -54.272461, 2.734557 ], [ -54.525146, 2.306506 ], [ -55.096436, 2.526037 ], [ -55.568848, 2.416276 ], [ -55.975342, 2.504085 ], [ -56.074219, 2.218684 ], [ -55.909424, 2.021065 ], [ -55.997314, 1.812442 ], [ -56.535645, 1.900286 ], [ -56.777344, 1.867345 ], [ -57.337646, 1.944207 ], [ -57.656250, 1.680667 ], [ -58.106689, 1.504954 ], [ -58.425293, 1.461023 ], [ -58.535156, 1.263325 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.790480 ], [ -59.721680, 2.251617 ], [ -59.974365, 2.756504 ], [ -59.809570, 3.601142 ], [ -59.534912, 3.962901 ], [ -59.765625, 4.423090 ], [ -60.106201, 4.576425 ], [ -59.974365, 5.014339 ], [ -60.216064, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.413574, 5.954827 ], [ -61.138916, 6.227934 ], [ -61.160889, 6.697343 ], [ -60.545654, 6.850078 ], [ -60.292969, 7.046379 ], [ -60.633545, 7.416942 ], [ -60.545654, 7.776309 ], [ -59.754639, 8.363693 ] ] ], [ [ [ -67.104492, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.775146, 18.427502 ], [ -65.588379, 18.229351 ], [ -65.841064, 17.978733 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.236328, 18.375379 ], [ -67.104492, 18.521283 ] ] ], [ [ [ -61.105957, 10.887254 ], [ -60.897217, 10.854886 ], [ -60.930176, 10.109486 ], [ -61.765137, 10.001310 ], [ -61.951904, 10.087854 ], [ -61.655273, 10.368958 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.160158 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.943115, 2.119878 ], [ -53.415527, 2.054003 ], [ -53.558350, 2.328460 ], [ -53.778076, 2.372369 ], [ -54.085693, 2.108899 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.393311, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.848877, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.662354, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.252685 ], [ -76.289062, 0.417477 ], [ -75.794678, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.201660, -0.878872 ], [ -80.573730, -0.878872 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.977736 ], [ -78.848877, 1.384143 ] ] ], [ [ [ -60.216064, 5.244128 ], [ -59.974365, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.809570, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.106689, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.108899 ], [ -53.778076, 2.372369 ], [ -53.558350, 2.328460 ], [ -53.415527, 2.054003 ], [ -52.943115, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.862549, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.193115, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.405299 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.050577 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.797852, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -47.823486, -0.582265 ], [ -46.790771, -0.878872 ], [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.848877, 1.384143 ], [ -77.849121, 0.812961 ], [ -77.662354, 0.823946 ], [ -77.420654, 0.395505 ], [ -76.574707, 0.252685 ], [ -76.289062, 0.417477 ], [ -75.794678, 0.087891 ], [ -75.651855, 0.000000 ], [ -75.377197, -0.153808 ], [ -75.102539, -0.054932 ], [ -74.443359, -0.527336 ], [ -74.201660, -0.878872 ], [ -80.573730, -0.878872 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.024414, 0.362546 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.977736 ], [ -78.848877, 1.384143 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.953857, 5.758105 ], [ -52.877197, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.160158 ], [ -52.250977, 3.239240 ], [ -52.558594, 2.504085 ], [ -52.943115, 2.119878 ], [ -53.415527, 2.054003 ], [ -53.558350, 2.328460 ], [ -53.778076, 2.372369 ], [ -54.085693, 2.108899 ], [ -54.525146, 2.306506 ], [ -54.272461, 2.734557 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.393311, 4.214943 ], [ -54.481201, 4.893941 ], [ -53.953857, 5.758105 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.216064, 5.244128 ], [ -59.974365, 5.014339 ], [ -60.106201, 4.576425 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.962901 ], [ -59.809570, 3.601142 ], [ -59.974365, 2.756504 ], [ -59.721680, 2.251617 ], [ -59.644775, 1.790480 ], [ -59.029541, 1.318243 ], [ -58.535156, 1.263325 ], [ -58.425293, 1.461023 ], [ -58.106689, 1.504954 ], [ -57.656250, 1.680667 ], [ -57.337646, 1.944207 ], [ -56.777344, 1.867345 ], [ -56.535645, 1.900286 ], [ -55.997314, 1.812442 ], [ -55.909424, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.975342, 2.504085 ], [ -55.568848, 2.416276 ], [ -55.096436, 2.526037 ], [ -54.525146, 2.306506 ], [ -54.085693, 2.108899 ], [ -53.778076, 2.372369 ], [ -53.558350, 2.328460 ], [ -53.415527, 2.054003 ], [ -52.943115, 2.119878 ], [ -52.558594, 2.504085 ], [ -52.250977, 3.239240 ], [ -51.657715, 4.160158 ], [ -51.317139, 4.203986 ], [ -51.064453, 3.645000 ], [ -50.504150, 1.900286 ], [ -49.976807, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.701904, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.383301, -0.076904 ], [ -48.614502, -0.241699 ], [ -48.592529, -0.878872 ], [ -69.488525, -0.878872 ], [ -69.576416, -0.549308 ], [ -70.015869, -0.186767 ], [ -70.015869, 0.538322 ], [ -69.455566, 0.703107 ], [ -69.246826, 0.604237 ], [ -69.213867, 0.988720 ], [ -69.807129, 1.087581 ], [ -69.818115, 1.713612 ], [ -67.862549, 1.691649 ], [ -67.532959, 2.032045 ], [ -67.258301, 1.713612 ], [ -67.060547, 1.131518 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.790990 ], [ -65.357666, 1.098565 ], [ -64.610596, 1.329226 ], [ -64.193115, 1.493971 ], [ -64.083252, 1.911267 ], [ -63.369141, 2.196727 ], [ -63.424072, 2.405299 ], [ -64.270020, 2.493109 ], [ -64.412842, 3.129546 ], [ -64.368896, 3.798484 ], [ -64.819336, 4.050577 ], [ -64.632568, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.765597 ], [ -62.797852, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.216064, 5.244128 ] ] ], [ [ [ -48.164062, -0.878872 ], [ -47.823486, -0.582265 ], [ -46.790771, -0.878872 ], [ -48.164062, -0.878872 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.096207 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.960218 ], [ -90.878906, 62.950227 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.650879, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.364990, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.445427 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.892090, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.865479, 51.631657 ], [ -55.404053, 51.590723 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.589349 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.470459, 49.246293 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.683708 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.964844, 47.620975 ], [ -54.239502, 47.754098 ], [ -55.404053, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.250000, 47.628380 ], [ -57.326660, 47.569114 ], [ -59.260254, 47.598755 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.289406 ], [ -55.865479, 51.631657 ] ] ], [ [ [ -90.878906, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.033447, 56.468560 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.276611, 55.147488 ], [ -82.430420, 54.284469 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.153714 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.143132 ], [ -79.826660, 54.667478 ], [ -78.222656, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.048818 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.547793 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.137933 ], [ -69.587402, 61.058285 ], [ -69.620361, 60.217991 ], [ -69.290771, 58.955674 ], [ -68.367920, 58.802362 ], [ -67.653809, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.577637, 60.332386 ], [ -63.808594, 59.439490 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.781181 ], [ -56.162109, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.357666, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.050049, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.278631 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.248291, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.357666, 43.540585 ], [ -66.126709, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.785645, 45.698507 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.450380 ], [ -69.993896, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.499023, 45.003651 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.620171 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.204107 ], [ -82.441406, 41.672912 ], [ -82.694092, 41.672912 ], [ -83.023682, 41.828642 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.463135, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.144287, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.869385, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.305121 ], [ -89.274902, 48.019324 ], [ -89.593506, 48.011975 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -90.878906, 48.261256 ], [ -90.878906, 57.279043 ] ] ], [ [ [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.313721, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.026611, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.827881, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.853027, 66.861082 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.155029, 65.658275 ], [ -84.979248, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.781982, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.651136 ], [ -83.111572, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.517578, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.852783, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.809082, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.396675 ], [ -64.522705, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.305121 ], [ -86.462402, 47.554287 ], [ -84.869385, 46.897739 ], [ -84.781494, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.331055, 46.407564 ], [ -84.144287, 46.513516 ], [ -84.089355, 46.271037 ], [ -83.891602, 46.118942 ], [ -83.616943, 46.118942 ], [ -83.463135, 45.996962 ], [ -83.594971, 45.813486 ], [ -82.551270, 45.344424 ], [ -82.133789, 43.572432 ], [ -82.430420, 42.980540 ], [ -82.902832, 42.431566 ], [ -83.122559, 42.081917 ], [ -83.144531, 41.975827 ], [ -83.023682, 41.828642 ], [ -82.694092, 41.672912 ], [ -82.441406, 41.672912 ], [ -81.276855, 42.204107 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.859860 ], [ -78.914795, 42.964463 ], [ -79.013672, 43.269206 ], [ -79.167480, 43.468868 ], [ -78.717041, 43.620171 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -75.322266, 44.816916 ], [ -74.860840, 44.995883 ], [ -71.499023, 45.003651 ], [ -71.400146, 45.251688 ], [ -71.081543, 45.305803 ], [ -70.664062, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.993896, 46.694667 ], [ -69.235840, 47.450380 ], [ -68.906250, 47.182246 ], [ -68.236084, 47.353711 ], [ -67.785645, 47.062638 ], [ -67.785645, 45.698507 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -68.027344, 44.323848 ], [ -69.060059, 43.977005 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.092961 ], [ -70.817871, 42.867912 ], [ -70.828857, 42.334184 ], [ -70.488281, 41.804078 ], [ -70.081787, 41.779505 ], [ -70.180664, 42.147114 ], [ -69.884033, 41.918629 ], [ -69.960938, 41.640078 ], [ -70.642090, 41.475660 ], [ -71.114502, 41.492121 ], [ -71.861572, 41.319076 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.235107, 41.120746 ], [ -72.026367, 40.979898 ], [ -71.938477, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.630630 ], [ -73.948975, 40.747257 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.430224 ], [ -73.992920, 40.313043 ], [ -90.878906, 40.313043 ], [ -90.878906, 48.261256 ], [ -90.834961, 48.268569 ], [ -90.000000, 48.092757 ], [ -89.593506, 48.011975 ], [ -89.274902, 48.019324 ], [ -88.374023, 48.305121 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 66.861082 ], [ -44.121094, 60.064840 ], [ -44.791260, 60.037417 ], [ -45.000000, 60.157910 ], [ -46.263428, 60.850262 ], [ -48.262939, 60.855613 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.380185 ], [ -51.635742, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.178418 ], [ -53.657227, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.349609, 66.861082 ], [ -44.121094, 66.861082 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 62.950227 ], [ -90.878906, 66.861082 ], [ -82.089844, 66.861082 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.066895, 66.053716 ], [ -87.033691, 65.210683 ], [ -87.319336, 64.774125 ], [ -88.483887, 64.096207 ], [ -89.912109, 64.033744 ], [ -90.000000, 63.985600 ], [ -90.703125, 63.607217 ], [ -90.769043, 62.960218 ], [ -90.878906, 62.950227 ] ] ], [ [ [ -79.925537, 62.385277 ], [ -79.519043, 62.364901 ], [ -79.266357, 62.160372 ], [ -79.650879, 61.632507 ], [ -80.101318, 61.715912 ], [ -80.364990, 62.016374 ], [ -80.310059, 62.083315 ], [ -79.925537, 62.385277 ] ] ], [ [ [ -64.017334, 47.032695 ], [ -63.665771, 46.551305 ], [ -62.940674, 46.415139 ], [ -62.006836, 46.445427 ], [ -62.501221, 46.035109 ], [ -62.874756, 45.966425 ], [ -64.138184, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.017334, 47.032695 ] ] ], [ [ [ -83.254395, 62.915233 ], [ -81.881104, 62.905227 ], [ -81.892090, 62.709425 ], [ -83.067627, 62.160372 ], [ -83.770752, 62.180887 ], [ -83.990479, 62.451406 ], [ -83.254395, 62.915233 ] ] ], [ [ [ -55.865479, 51.631657 ], [ -55.404053, 51.590723 ], [ -55.601807, 51.316881 ], [ -56.129150, 50.687758 ], [ -56.799316, 49.809632 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.937080 ], [ -55.821533, 49.589349 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.553726 ], [ -53.470459, 49.246293 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.683708 ], [ -52.954102, 48.158757 ], [ -52.646484, 47.532038 ], [ -53.063965, 46.656977 ], [ -53.525391, 46.619261 ], [ -54.173584, 46.807580 ], [ -53.964844, 47.620975 ], [ -54.239502, 47.754098 ], [ -55.404053, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.294189, 47.390912 ], [ -56.250000, 47.628380 ], [ -57.326660, 47.569114 ], [ -59.260254, 47.598755 ], [ -59.414062, 47.901614 ], [ -58.798828, 48.253941 ], [ -59.227295, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.715591 ], [ -56.733398, 51.289406 ], [ -55.865479, 51.631657 ] ] ], [ [ [ -90.878906, 57.279043 ], [ -90.000000, 57.076575 ], [ -89.033203, 56.848972 ], [ -88.033447, 56.468560 ], [ -87.319336, 55.998381 ], [ -86.066895, 55.720923 ], [ -85.012207, 55.304138 ], [ -83.364258, 55.241552 ], [ -82.276611, 55.147488 ], [ -82.430420, 54.284469 ], [ -82.122803, 53.278353 ], [ -81.397705, 52.153714 ], [ -79.914551, 51.206883 ], [ -79.145508, 51.536086 ], [ -78.596191, 52.562995 ], [ -79.123535, 54.143132 ], [ -79.826660, 54.667478 ], [ -78.222656, 55.134930 ], [ -77.091064, 55.838314 ], [ -76.541748, 56.535258 ], [ -76.618652, 57.201759 ], [ -77.299805, 58.048818 ], [ -78.519287, 58.802362 ], [ -77.332764, 59.850333 ], [ -77.772217, 60.759160 ], [ -78.101807, 62.319003 ], [ -77.409668, 62.547793 ], [ -75.695801, 62.278146 ], [ -74.663086, 62.180887 ], [ -73.839111, 62.441242 ], [ -72.905273, 62.103883 ], [ -71.674805, 61.522695 ], [ -71.367188, 61.137933 ], [ -69.587402, 61.058285 ], [ -69.620361, 60.217991 ], [ -69.290771, 58.955674 ], [ -68.367920, 58.802362 ], [ -67.653809, 58.211238 ], [ -66.203613, 58.768200 ], [ -65.247803, 59.872398 ], [ -64.577637, 60.332386 ], [ -63.808594, 59.439490 ], [ -62.501221, 58.164908 ], [ -61.391602, 56.968936 ], [ -61.798096, 56.340901 ], [ -60.468750, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.326660, 54.622978 ], [ -56.931152, 53.781181 ], [ -56.162109, 53.644638 ], [ -55.755615, 53.271783 ], [ -55.678711, 52.146973 ], [ -56.403809, 51.767840 ], [ -57.128906, 51.419764 ], [ -58.776855, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.357666, 50.296358 ], [ -66.401367, 50.226124 ], [ -67.236328, 49.510944 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.746711 ], [ -71.103516, 46.822617 ], [ -70.257568, 46.987747 ], [ -68.653564, 48.297812 ], [ -66.555176, 49.131408 ], [ -65.050049, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.995241 ], [ -64.467773, 46.240652 ], [ -63.171387, 45.736860 ], [ -61.523438, 45.882361 ], [ -60.512695, 47.010226 ], [ -60.446777, 46.278631 ], [ -59.798584, 45.920587 ], [ -61.040039, 45.267155 ], [ -63.248291, 44.668653 ], [ -64.248047, 44.260937 ], [ -65.357666, 43.540585 ], [ -66.126709, 43.620171 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.027832, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.785645, 45.698507 ], [ -67.785645, 47.062638 ], [ -68.236084, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.450380 ], [ -69.993896, 46.694667 ], [ -70.301514, 45.912944 ], [ -70.664062, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.400146, 45.251688 ], [ -71.499023, 45.003651 ], [ -74.860840, 44.995883 ], [ -75.322266, 44.816916 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.620171 ], [ -79.167480, 43.468868 ], [ -79.013672, 43.269206 ], [ -78.914795, 42.964463 ], [ -78.936768, 42.859860 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.204107 ], [ -82.441406, 41.672912 ], [ -82.694092, 41.672912 ], [ -83.023682, 41.828642 ], [ -83.144531, 41.975827 ], [ -83.122559, 42.081917 ], [ -82.902832, 42.431566 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.572432 ], [ -82.551270, 45.344424 ], [ -83.594971, 45.813486 ], [ -83.463135, 45.996962 ], [ -83.616943, 46.118942 ], [ -83.891602, 46.118942 ], [ -84.089355, 46.271037 ], [ -84.144287, 46.513516 ], [ -84.331055, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.781494, 46.634351 ], [ -84.869385, 46.897739 ], [ -86.462402, 47.554287 ], [ -88.374023, 48.305121 ], [ -89.274902, 48.019324 ], [ -89.593506, 48.011975 ], [ -90.000000, 48.092757 ], [ -90.834961, 48.268569 ], [ -90.878906, 48.261256 ], [ -90.878906, 57.279043 ] ] ], [ [ [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.137207, 65.689953 ], [ -67.093506, 65.109148 ], [ -65.731201, 64.647408 ], [ -65.313721, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.017090, 62.674143 ], [ -66.269531, 62.945231 ], [ -68.785400, 63.743631 ], [ -67.368164, 62.885205 ], [ -66.324463, 62.278146 ], [ -66.159668, 61.928612 ], [ -68.873291, 62.329208 ], [ -71.026611, 62.910230 ], [ -72.235107, 63.396442 ], [ -71.883545, 63.680377 ], [ -74.827881, 64.680318 ], [ -74.816895, 64.387441 ], [ -77.706299, 64.230269 ], [ -78.552246, 64.572037 ], [ -77.893066, 65.307240 ], [ -76.014404, 65.325592 ], [ -73.959961, 65.453697 ], [ -74.289551, 65.811781 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -73.223877, 66.861082 ], [ -61.853027, 66.861082 ] ] ], [ [ [ -85.880127, 65.739656 ], [ -85.155029, 65.658275 ], [ -84.979248, 65.215289 ], [ -84.462891, 65.371416 ], [ -83.880615, 65.109148 ], [ -82.781982, 64.764759 ], [ -81.639404, 64.453849 ], [ -81.551514, 63.980781 ], [ -80.815430, 64.057785 ], [ -80.101318, 63.724183 ], [ -80.991211, 63.411198 ], [ -82.551270, 63.651136 ], [ -83.111572, 64.101007 ], [ -84.100342, 63.568120 ], [ -85.517578, 63.049981 ], [ -85.869141, 63.636504 ], [ -87.220459, 63.538763 ], [ -86.352539, 64.033744 ], [ -86.220703, 64.820907 ], [ -85.880127, 65.739656 ] ] ], [ [ [ -64.171143, 49.958288 ], [ -62.852783, 49.703168 ], [ -61.831055, 49.289306 ], [ -61.809082, 49.102645 ], [ -62.292480, 49.088258 ], [ -63.588867, 49.396675 ], [ -64.522705, 49.873398 ], [ -64.171143, 49.958288 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.819422 ], [ -53.426514, 70.833855 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -53.997803, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.590088, 75.098458 ], [ -58.579102, 75.516404 ], [ -61.270752, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.367676, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.517578, 69.881231 ], [ -84.100342, 69.805516 ], [ -82.617188, 69.657086 ], [ -81.276855, 69.162558 ], [ -81.221924, 68.664551 ], [ -81.958008, 68.130668 ], [ -81.254883, 67.596662 ], [ -81.386719, 67.110204 ], [ -83.067627, 66.513260 ], [ -83.342285, 66.412352 ], [ -84.737549, 66.258011 ], [ -85.616455, 66.513260 ], [ -85.770264, 66.557007 ], [ -85.792236, 66.513260 ], [ -86.000977, 66.160511 ], [ -90.878906, 66.160511 ], [ -90.878906, 69.534518 ], [ -90.549316, 69.496070 ], [ -90.549316, 68.475895 ], [ -90.000000, 68.800041 ], [ -89.208984, 69.260040 ], [ -88.022461, 68.616534 ], [ -88.319092, 67.871403 ], [ -87.352295, 67.199775 ], [ -86.308594, 67.921011 ], [ -85.572510, 68.784144 ], [ -85.517578, 69.881231 ] ] ], [ [ [ -80.354004, 73.760425 ], [ -78.057861, 73.652545 ], [ -76.343994, 73.102607 ], [ -76.245117, 72.825808 ], [ -77.310791, 72.854981 ], [ -78.387451, 72.877637 ], [ -79.486084, 72.741263 ], [ -79.771729, 72.803086 ], [ -80.870361, 73.334161 ], [ -80.837402, 73.692696 ], [ -80.354004, 73.760425 ] ] ], [ [ [ -85.825195, 73.803383 ], [ -86.561279, 73.156808 ], [ -85.770264, 72.534726 ], [ -84.847412, 73.340461 ], [ -82.309570, 73.751205 ], [ -80.595703, 72.715168 ], [ -80.749512, 72.060381 ], [ -78.771973, 72.352459 ], [ -77.827148, 72.747781 ], [ -75.607910, 72.242216 ], [ -74.223633, 71.767067 ], [ -74.102783, 71.328950 ], [ -72.246094, 71.556217 ], [ -71.202393, 70.920233 ], [ -68.785400, 70.524897 ], [ -67.917480, 70.121695 ], [ -66.972656, 69.185993 ], [ -68.807373, 68.720441 ], [ -66.445312, 68.065098 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.930060 ], [ -61.853027, 66.861082 ], [ -62.160645, 66.160511 ], [ -66.346436, 66.160511 ], [ -66.719971, 66.385961 ], [ -68.016357, 66.262434 ], [ -68.038330, 66.160511 ], [ -74.047852, 66.160511 ], [ -73.948975, 66.311035 ], [ -73.685303, 66.513260 ], [ -72.652588, 67.284773 ], [ -72.927246, 67.726108 ], [ -73.311768, 68.069202 ], [ -74.838867, 68.552351 ], [ -76.871338, 68.895187 ], [ -76.223145, 69.146920 ], [ -77.288818, 69.767557 ], [ -78.167725, 69.824471 ], [ -78.958740, 70.166473 ], [ -79.486084, 69.869892 ], [ -81.298828, 69.740944 ], [ -84.946289, 69.967967 ], [ -87.055664, 70.259452 ], [ -88.681641, 70.411031 ], [ -89.516602, 70.761586 ], [ -88.461914, 71.216075 ], [ -89.890137, 71.223149 ], [ -90.000000, 71.587473 ], [ -90.208740, 72.235514 ], [ -90.000000, 72.478584 ], [ -89.439697, 73.128134 ], [ -88.406982, 73.537742 ], [ -85.825195, 73.803383 ] ] ], [ [ [ -76.563721, 79.335219 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -75.388184, 78.525573 ], [ -76.343994, 78.181838 ], [ -77.882080, 77.899558 ], [ -78.365479, 77.508873 ], [ -79.760742, 77.208344 ], [ -79.617920, 76.982624 ], [ -77.904053, 77.022159 ], [ -77.893066, 76.778142 ], [ -80.562744, 76.177123 ], [ -83.177490, 76.452630 ], [ -86.110840, 76.299953 ], [ -87.593994, 76.419134 ], [ -89.494629, 76.473203 ], [ -89.615479, 76.952895 ], [ -87.769775, 77.179122 ], [ -88.253174, 77.899558 ], [ -87.648926, 77.970745 ], [ -84.979248, 77.537355 ], [ -86.341553, 78.179588 ], [ -87.956543, 78.371576 ], [ -87.154541, 78.759229 ], [ -85.374756, 78.996578 ], [ -85.231934, 79.171335 ], [ -85.100098, 79.335219 ], [ -76.563721, 79.335219 ] ] ], [ [ [ -75.893555, 68.285651 ], [ -75.113525, 68.011685 ], [ -75.102539, 67.579908 ], [ -75.212402, 67.445443 ], [ -75.860596, 67.148632 ], [ -76.981201, 67.097380 ], [ -77.233887, 67.588287 ], [ -76.805420, 68.147032 ], [ -75.893555, 68.285651 ] ] ], [ [ [ -90.878906, 76.055861 ], [ -89.824219, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.374512, 75.483395 ], [ -84.792480, 75.699360 ], [ -82.749023, 75.783244 ], [ -81.123047, 75.712922 ], [ -80.057373, 75.336721 ], [ -79.837646, 74.922284 ], [ -80.452881, 74.657110 ], [ -81.947021, 74.443466 ], [ -83.232422, 74.563812 ], [ -86.099854, 74.411022 ], [ -88.154297, 74.393298 ], [ -89.758301, 74.514023 ], [ -90.000000, 74.543330 ], [ -90.878906, 74.651295 ], [ -90.878906, 76.055861 ] ] ], [ [ [ -85.825195, 79.335219 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.249150 ], [ -90.802002, 78.215541 ], [ -90.878906, 78.220028 ], [ -90.878906, 79.335219 ], [ -85.825195, 79.335219 ] ] ], [ [ [ -90.878906, 73.904204 ], [ -90.516357, 73.855397 ], [ -90.878906, 73.643266 ], [ -90.878906, 73.904204 ] ] ], [ [ [ -90.878906, 76.224292 ], [ -90.878906, 76.501441 ], [ -90.747070, 76.450056 ], [ -90.878906, 76.224292 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 79.335219 ], [ -44.121094, 66.160511 ], [ -53.635254, 66.160511 ], [ -53.459473, 66.513260 ], [ -53.305664, 66.835165 ], [ -53.964844, 67.187000 ], [ -52.976074, 68.358699 ], [ -51.470947, 68.728413 ], [ -51.075439, 69.146920 ], [ -50.866699, 69.930300 ], [ -52.009277, 69.572896 ], [ -52.558594, 69.426691 ], [ -53.459473, 69.283371 ], [ -54.678955, 69.611206 ], [ -54.744873, 70.289117 ], [ -54.360352, 70.819422 ], [ -53.426514, 70.833855 ], [ -51.394043, 70.568803 ], [ -53.107910, 71.205460 ], [ -53.997803, 71.545787 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.711914, 72.587405 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -57.326660, 74.709347 ], [ -58.590088, 75.098458 ], [ -58.579102, 75.516404 ], [ -61.270752, 76.100796 ], [ -63.391113, 76.174498 ], [ -66.060791, 76.135063 ], [ -68.499756, 76.061155 ], [ -69.664307, 76.380383 ], [ -71.400146, 77.007347 ], [ -68.774414, 77.322168 ], [ -66.763916, 77.375105 ], [ -71.037598, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.157959, 78.433418 ], [ -69.367676, 78.914496 ], [ -67.434082, 79.171335 ], [ -66.170654, 79.335219 ], [ -44.121094, 79.335219 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.697510, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.016357, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.063963 ], [ -46.593018, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.516602, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.757812, 82.627105 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.878906, 80.691566 ], [ -90.000000, 80.580741 ], [ -89.450684, 80.508549 ], [ -87.813721, 80.320120 ], [ -87.022705, 79.659613 ], [ -85.814209, 79.337252 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.038437 ], [ -87.275391, 79.004962 ], [ -90.878906, 79.004962 ], [ -90.878906, 80.691566 ] ] ], [ [ [ -72.828369, 83.232544 ], [ -65.830078, 83.027553 ], [ -63.676758, 82.899703 ], [ -61.853027, 82.628514 ], [ -61.896973, 82.361644 ], [ -64.335938, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.653809, 81.500429 ], [ -65.478516, 81.506921 ], [ -67.840576, 80.898931 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.800637 ], [ -73.245850, 79.633945 ], [ -73.883057, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.531006, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.223145, 79.019620 ], [ -76.201172, 79.004962 ], [ -85.374756, 79.004962 ], [ -85.231934, 79.171335 ], [ -85.089111, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.934814, 80.251531 ], [ -84.199219, 80.208652 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464970 ], [ -84.100342, 80.578943 ], [ -87.593994, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.197754, 81.260042 ], [ -90.878906, 81.431957 ], [ -90.878906, 81.986228 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.934326, 82.116877 ], [ -86.967773, 82.279430 ], [ -85.495605, 82.652438 ], [ -84.254150, 82.600269 ], [ -83.177490, 82.319178 ], [ -82.419434, 82.860213 ], [ -81.101074, 83.019546 ], [ -79.310303, 83.130809 ], [ -76.245117, 83.171423 ], [ -75.717773, 83.063469 ], [ -72.828369, 83.232544 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 83.101841 ], [ -44.121094, 79.004962 ], [ -68.697510, 79.004962 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -68.016357, 80.116678 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.213175 ], [ -62.237549, 81.321593 ], [ -62.655029, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.129639, 82.199320 ], [ -53.041992, 81.887606 ], [ -50.394287, 82.438651 ], [ -47.999268, 82.063963 ], [ -46.593018, 81.986228 ], [ -45.000000, 81.737409 ], [ -44.516602, 81.661279 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.757812, 82.627105 ], [ -45.000000, 82.948424 ], [ -44.121094, 83.101841 ] ] ] } } ] } ] } , @@ -401,13 +385,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.536865, 41.640078 ], [ -6.383057, 41.385052 ], [ -6.844482, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -7.020264, 40.187267 ], [ -7.064209, 39.707187 ], [ -7.492676, 39.631077 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.376115 ], [ -7.031250, 38.074041 ], [ -7.163086, 37.805444 ], [ -7.536621, 37.431251 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.041748, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -8.997803, 41.640078 ], [ -6.536865, 41.640078 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.173808 ], [ -2.164307, 35.164828 ], [ -1.790771, 34.524661 ], [ -1.735840, 33.916013 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.259265 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.718822 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.892797 ], [ -4.855957, 30.496018 ], [ -5.240479, 30.002517 ], [ -6.064453, 29.726222 ], [ -7.053223, 29.573457 ], [ -8.668213, 28.844674 ], [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -4.921875, 24.976099 ], [ -6.448975, 24.956180 ], [ -5.482178, 16.320139 ], [ -5.317383, 16.204125 ], [ -5.537109, 15.496032 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.645752, 15.135764 ], [ -11.348877, 15.411319 ], [ -11.667480, 15.390136 ], [ -11.832275, 14.796128 ], [ -12.172852, 14.615478 ], [ -12.128906, 13.998037 ], [ -11.931152, 13.421681 ], [ -11.546631, 13.143678 ], [ -11.469727, 12.758232 ], [ -11.513672, 12.436577 ], [ -11.656494, 12.382928 ], [ -12.205811, 12.468760 ], [ -12.282715, 12.350734 ], [ -12.502441, 12.329269 ], [ -13.216553, 12.576010 ], [ -13.699951, 12.586732 ], [ -13.721924, 12.243392 ], [ -13.831787, 12.136005 ], [ -13.743896, 11.813588 ], [ -13.897705, 11.673755 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.512322 ], [ -14.688721, 11.523088 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.912938 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.667769 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.086889 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.634874 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.755428 ], [ -5.196533, 35.755428 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.668213, 27.654338 ], [ -8.679199, 27.391278 ], [ -8.690186, 25.878994 ], [ -11.964111, 25.928407 ], [ -11.931152, 23.372514 ], [ -12.875977, 23.281719 ], [ -13.117676, 22.766051 ], [ -12.930908, 21.330315 ], [ -16.842041, 21.330315 ], [ -17.061768, 21.002471 ], [ -17.017822, 21.422390 ], [ -14.754639, 21.504186 ], [ -14.633789, 21.861499 ], [ -14.216309, 22.309426 ], [ -13.886719, 23.684774 ], [ -12.502441, 24.766785 ], [ -12.030029, 26.027170 ], [ -11.711426, 26.106121 ], [ -11.392822, 26.882880 ], [ -10.546875, 26.990619 ], [ -10.184326, 26.863281 ], [ -9.733887, 26.863281 ], [ -9.415283, 27.088473 ], [ -8.789062, 27.117813 ], [ -8.811035, 27.654338 ], [ -8.668213, 27.654338 ] ] ], [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.677231 ], [ -4.998779, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.870832 ], [ -8.745117, 37.649034 ], [ -8.843994, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.393755 ], [ -9.041748, 39.757880 ], [ -8.975830, 40.162083 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -8.997803, 41.640078 ], [ 0.878906, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.976099 ], [ 0.000000, 21.790107 ], [ 0.878906, 21.227942 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.475106 ], [ 0.878906, 10.995120 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.217625 ], [ -14.688721, 10.649811 ], [ -14.842529, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.688721, 11.523088 ], [ -14.381104, 11.512322 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.673755 ], [ -13.743896, 11.813588 ], [ -13.831787, 12.136005 ], [ -13.721924, 12.243392 ], [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.502441, 12.329269 ], [ -12.282715, 12.350734 ], [ -12.205811, 12.468760 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.436577 ], [ -11.469727, 12.758232 ], [ -11.546631, 13.143678 ], [ -11.931152, 13.421681 ], [ -12.128906, 13.998037 ], [ -12.172852, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.667480, 15.390136 ], [ -11.348877, 15.411319 ], [ -10.645752, 15.135764 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.496032 ], [ -5.317383, 16.204125 ], [ -5.482178, 16.320139 ], [ -6.448975, 24.956180 ], [ -4.921875, 24.976099 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.878906, 36.421282 ], [ 0.878906, 21.227942 ], [ 0.000000, 21.790107 ], [ -4.921875, 24.976099 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.586198 ], [ -8.668213, 28.844674 ], [ -7.053223, 29.573457 ], [ -6.064453, 29.726222 ], [ -5.240479, 30.002517 ], [ -4.855957, 30.496018 ], [ -3.691406, 30.892797 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.718822 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.259265 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.735840, 33.916013 ], [ -1.790771, 34.524661 ], [ -2.164307, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.120850, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ], [ [ [ 0.878906, 41.640078 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ -0.461426, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.677231 ], [ -3.416748, 36.659606 ], [ -4.372559, 36.677231 ], [ -4.998779, 36.323977 ], [ -5.372314, 35.942436 ], [ -5.866699, 36.031332 ], [ -6.240234, 36.368222 ], [ -6.514893, 36.941111 ], [ -7.448730, 37.099003 ], [ -7.536621, 37.431251 ], [ -7.163086, 37.805444 ], [ -7.031250, 38.074041 ], [ -7.371826, 38.376115 ], [ -7.097168, 39.027719 ], [ -7.492676, 39.631077 ], [ -7.064209, 39.707187 ], [ -7.020264, 40.187267 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.385052 ], [ -6.536865, 41.640078 ], [ 0.878906, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 36.421282 ], [ 0.878906, 14.955399 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.878906, 13.475106 ], [ 0.878906, 10.995120 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 0.878906, 6.217012 ], [ 0.878906, 5.856475 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -1.065674, 5.003394 ], [ -1.966553, 4.707828 ], [ -2.856445, 4.992450 ], [ -3.306885, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.707828 ], [ -7.514648, 4.335456 ], [ -7.712402, 4.368320 ], [ -7.976074, 4.357366 ], [ -9.008789, 4.828260 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.711426, 6.860985 ], [ -12.425537, 7.264394 ], [ -12.952881, 7.798079 ], [ -13.117676, 8.167993 ], [ -13.249512, 8.906780 ], [ -13.688965, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.217625 ], [ -14.688721, 10.649811 ], [ -14.842529, 10.876465 ], [ -15.128174, 11.038255 ], [ -15.666504, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.303711, 11.953349 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.154376 ], [ -16.710205, 13.592600 ], [ -17.127686, 14.370834 ], [ -17.622070, 14.732386 ], [ -17.182617, 14.912938 ], [ -16.699219, 15.623037 ], [ -16.457520, 16.130262 ], [ -16.545410, 16.667769 ], [ -16.270752, 17.161786 ], [ -16.149902, 18.104087 ], [ -16.259766, 19.093267 ], [ -16.380615, 19.590844 ], [ -16.281738, 20.086889 ], [ -16.534424, 20.571082 ], [ -17.061768, 21.002471 ], [ -16.842041, 21.330315 ], [ -12.930908, 21.330315 ], [ -13.117676, 22.766051 ], [ -12.875977, 23.281719 ], [ -11.931152, 23.372514 ], [ -11.964111, 25.928407 ], [ -8.690186, 25.878994 ], [ -8.679199, 27.391278 ], [ -8.668213, 27.654338 ], [ -8.811035, 27.654338 ], [ -8.789062, 27.117813 ], [ -9.415283, 27.088473 ], [ -9.733887, 26.863281 ], [ -10.184326, 26.863281 ], [ -10.546875, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.711426, 26.106121 ], [ -12.030029, 26.027170 ], [ -12.502441, 24.766785 ], [ -13.886719, 23.684774 ], [ -14.216309, 22.309426 ], [ -14.633789, 21.861499 ], [ -14.754639, 21.504186 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.881890 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.674847 ], [ -16.325684, 23.019076 ], [ -15.985107, 23.725012 ], [ -15.424805, 24.357105 ], [ -15.084229, 24.517139 ], [ -14.820557, 25.105497 ], [ -14.798584, 25.631622 ], [ -14.436035, 26.254010 ], [ -13.776855, 26.617997 ], [ -13.139648, 27.634874 ], [ -12.612305, 28.033198 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.835050 ], [ -10.393066, 29.094577 ], [ -9.558105, 29.935895 ], [ -9.810791, 31.175210 ], [ -9.437256, 32.036020 ], [ -9.294434, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.657471, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.932617, 35.755428 ], [ -5.196533, 35.755428 ], [ -4.592285, 35.326330 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.173808 ], [ -2.164307, 35.164828 ], [ -1.208496, 35.710838 ], [ -0.120850, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 0.878906, 36.421282 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 0.021973, 11.016689 ], [ 0.878906, 10.995120 ], [ 0.878906, 6.217012 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.043945, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ] ] ], [ [ [ 0.878906, 14.955399 ], [ 0.878906, 13.475106 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.923554 ], [ 0.878906, 14.955399 ] ] ] ] } } ] } @@ -419,13 +399,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iceland", "sov_a3": "ISL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iceland", "adm0_a3": "ISL", "geou_dif": 0, "geounit": "Iceland", "gu_a3": "ISL", "su_dif": 0, "subunit": "Iceland", "su_a3": "ISL", "brk_diff": 0, "name": "Iceland", "name_long": "Iceland", "brk_a3": "ISL", "brk_name": "Iceland", "abbrev": "Iceland", "postal": "IS", "formal_en": "Republic of Iceland", "name_sort": "Iceland", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 306694, "gdp_md_est": 12710, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IS", "iso_a3": "ISL", "iso_n3": "352", "un_a3": "352", "wb_a2": "IS", "wb_a3": "ISL", "woe_id": -99, "adm0_a3_is": "ISL", "adm0_a3_us": "ISL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.526392 ], [ -15.853271, 66.513260 ], [ -14.501953, 66.456275 ], [ -14.743652, 65.807279 ], [ -13.612061, 65.127638 ], [ -14.908447, 64.363685 ], [ -17.797852, 63.680377 ], [ -18.654785, 63.494670 ], [ -22.763672, 63.961496 ], [ -21.774902, 64.401685 ], [ -23.950195, 64.890928 ], [ -22.181396, 65.086018 ], [ -22.225342, 65.375994 ], [ -24.323730, 65.608415 ], [ -23.653564, 66.262434 ], [ -22.137451, 66.407955 ], [ -20.577393, 65.730626 ], [ -19.050293, 66.275698 ], [ -17.797852, 65.991212 ], [ -16.204834, 66.513260 ], [ -16.171875, 66.526392 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.999268, 58.636935 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.686533 ], [ -1.955566, 57.686533 ], [ -2.219238, 56.866991 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -2.493896, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.155786 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.835958 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.616617 ], [ -4.844971, 54.788017 ], [ -5.075684, 55.059495 ], [ -4.713135, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.789795, 57.815504 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -2.999268, 58.636935 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.665741 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.277309 ], [ -8.009033, 41.787697 ], [ -7.415771, 41.787697 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.885921 ], [ -6.383057, 41.376809 ], [ -6.844482, 41.112469 ], [ -6.855469, 40.979898 ], [ -6.866455, 40.329796 ], [ -6.888428, 40.313043 ], [ -8.920898, 40.313043 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.130821 ], [ -8.261719, 42.277309 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.999268, 58.636935 ], [ -4.075928, 57.551208 ], [ -3.054199, 57.686533 ], [ -1.955566, 57.686533 ], [ -2.219238, 56.866991 ], [ -3.120117, 55.973798 ], [ -2.087402, 55.912273 ], [ -1.109619, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 0.878906, 52.869130 ], [ 0.878906, 50.958427 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -2.493896, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.537354, 50.338449 ], [ -5.240479, 49.958288 ], [ -5.778809, 50.155786 ], [ -4.306641, 51.206883 ], [ -3.416748, 51.426614 ], [ -4.987793, 51.590723 ], [ -5.262451, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.835958 ], [ -4.581299, 53.494582 ], [ -3.087158, 53.402982 ], [ -2.944336, 53.981935 ], [ -3.625488, 54.616617 ], [ -4.844971, 54.788017 ], [ -5.075684, 55.059495 ], [ -4.713135, 55.509971 ], [ -5.042725, 55.782751 ], [ -5.581055, 55.310391 ], [ -5.646973, 56.273861 ], [ -6.152344, 56.782827 ], [ -5.789795, 57.815504 ], [ -5.009766, 58.631217 ], [ -4.207764, 58.551061 ], [ -2.999268, 58.636935 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.261434 ], [ -8.558350, 51.665741 ], [ -9.975586, 51.822198 ], [ -9.162598, 52.862497 ], [ -9.689941, 53.878440 ], [ -8.327637, 54.661124 ], [ -7.569580, 55.128649 ], [ -6.734619, 55.172594 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.972422 ], [ 0.878906, 42.722804 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -1.505127, 43.036776 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.012224 ], [ -2.219238, 47.062638 ], [ -2.966309, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.640169 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.972422 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.756592, 43.564472 ], [ -5.405273, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.505127, 43.036776 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 0.878906, 42.722804 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -6.888428, 40.313043 ], [ -6.866455, 40.329796 ], [ -6.855469, 40.979898 ], [ -6.844482, 41.112469 ], [ -6.383057, 41.376809 ], [ -6.668701, 41.885921 ], [ -7.250977, 41.918629 ], [ -7.415771, 41.787697 ], [ -8.009033, 41.787697 ], [ -8.261719, 42.277309 ], [ -8.668213, 42.130821 ], [ -9.030762, 41.877741 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.976074, 43.747289 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.878906, 49.972422 ], [ 0.878906, 41.029643 ], [ 0.812988, 41.013066 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -8.920898, 40.313043 ], [ -8.767090, 40.755580 ], [ -8.778076, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.986816, 42.593533 ], [ -9.393311, 43.028745 ], [ -7.976074, 43.747289 ], [ -6.756592, 43.564472 ], [ -5.405273, 43.572432 ], [ -4.350586, 43.405047 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.024422 ], [ -1.197510, 46.012224 ], [ -2.219238, 47.062638 ], [ -2.966309, 47.569114 ], [ -4.493408, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.640169 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.681847 ], [ 0.878906, 49.972422 ] ] ] } } ] } ] } , @@ -457,17 +433,11 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.878872 ], [ 40.989990, -0.856902 ], [ 41.583252, -1.680667 ], [ 40.891113, -2.086941 ], [ 40.638428, -2.504085 ], [ 40.264893, -2.569939 ], [ 40.122070, -3.283114 ], [ 39.803467, -3.677892 ], [ 39.605713, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.677892 ], [ 37.705078, -3.096636 ], [ 34.068604, -1.065612 ], [ 33.903809, -0.955766 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.010690 ], [ 30.421143, -1.131518 ], [ 29.827881, -1.450040 ], [ 29.586182, -1.340210 ], [ 29.289551, -1.625758 ], [ 29.256592, -2.218684 ], [ 29.113770, -2.295528 ], [ 29.025879, -2.844290 ], [ 29.278564, -3.294082 ], [ 29.344482, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.344238, -8.244110 ], [ 29.003906, -8.407168 ], [ 28.740234, -8.526701 ], [ 28.454590, -9.167179 ], [ 28.674316, -9.611582 ], [ 28.498535, -10.790141 ], [ 28.377686, -11.792080 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.696045, -13.261333 ], [ 28.937988, -13.250640 ], [ 28.520508, -12.704651 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.169189, -11.609193 ], [ 26.553955, -11.921103 ], [ 25.751953, -11.781325 ], [ 25.422363, -11.329253 ], [ 24.785156, -11.243062 ], [ 24.312744, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.214355, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.807861, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.752930, -7.917793 ], [ 21.730957, -7.297088 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.155400 ], [ 19.171143, -7.743651 ], [ 19.017334, -7.993957 ], [ 18.468018, -7.852499 ], [ 18.138428, -7.993957 ], [ 17.479248, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.255068 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.413574, -1.746556 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 40.989990, 0.878872 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.878872 ], [ 43.857422, 0.878872 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.857422, 0.878872 ], [ 43.132324, 0.296630 ], [ 42.868652, 0.000000 ], [ 42.044678, -0.922812 ], [ 41.813965, -1.450040 ], [ 41.583252, -1.680667 ], [ 40.891113, -2.086941 ], [ 40.638428, -2.504085 ], [ 40.264893, -2.569939 ], [ 40.122070, -3.283114 ], [ 39.803467, -3.677892 ], [ 39.605713, -4.346411 ], [ 39.199219, -4.674980 ], [ 37.770996, -3.677892 ], [ 37.705078, -3.096636 ], [ 34.068604, -1.065612 ], [ 33.903809, -0.955766 ], [ 31.871338, -1.032659 ], [ 30.772705, -1.010690 ], [ 30.421143, -1.131518 ], [ 29.827881, -1.450040 ], [ 29.586182, -1.340210 ], [ 29.586182, -0.593251 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.604237 ], [ 30.003662, 0.878872 ], [ 43.857422, 0.878872 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.381348, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.479248, -8.070107 ], [ 18.138428, -7.993957 ], [ 18.468018, -7.852499 ], [ 19.017334, -7.993957 ], [ 19.171143, -7.743651 ], [ 19.423828, -7.155400 ], [ 20.039062, -7.122696 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.807861, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.214355, -9.893099 ], [ 22.159424, -11.081385 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.939697, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.528821 ], [ 21.379395, -17.936929 ], [ 18.962402, -17.790535 ], [ 18.259277, -17.308688 ], [ 14.216309, -17.350638 ], [ 14.062500, -17.424029 ], [ 13.458252, -16.972741 ], [ 12.810059, -16.941215 ], [ 12.216797, -17.109293 ], [ 11.733398, -17.298199 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.445319 ], [ 12.502441, -13.549881 ], [ 12.744141, -13.143678 ], [ 13.315430, -12.490214 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.559294 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.867403 ] ] ], [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.413574, -1.746556 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.255068 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.984821 ], [ 10.063477, -2.975956 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.294434, 0.274657 ], [ 9.459229, 0.878872 ], [ 17.775879, 0.878872 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.381348, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.578369, -6.620957 ], [ 16.864014, -7.220800 ], [ 17.479248, -8.070107 ], [ 18.138428, -7.993957 ], [ 18.468018, -7.852499 ], [ 19.017334, -7.993957 ], [ 19.171143, -7.743651 ], [ 19.423828, -7.155400 ], [ 20.039062, -7.122696 ], [ 20.093994, -6.948239 ], [ 20.599365, -6.937333 ], [ 20.511475, -7.297088 ], [ 21.730957, -7.297088 ], [ 21.752930, -7.917793 ], [ 21.950684, -8.309341 ], [ 21.807861, -8.906780 ], [ 21.873779, -9.524914 ], [ 22.214355, -9.893099 ], [ 22.159424, -11.081385 ], [ 22.401123, -10.995120 ], [ 22.840576, -11.016689 ], [ 23.455811, -10.865676 ], [ 23.917236, -10.930405 ], [ 24.016113, -11.243062 ], [ 23.906250, -11.727546 ], [ 24.082031, -12.189704 ], [ 23.928223, -12.565287 ], [ 24.016113, -12.908198 ], [ 21.939697, -12.897489 ], [ 21.884766, -16.077486 ], [ 22.565918, -16.899172 ], [ 23.214111, -17.528821 ], [ 24.038086, -17.298199 ], [ 24.686279, -17.350638 ], [ 25.081787, -17.581194 ], [ 25.081787, -17.664960 ], [ 24.521484, -17.884659 ], [ 24.213867, -17.895114 ], [ 23.576660, -18.281518 ], [ 23.203125, -17.874203 ], [ 21.654053, -18.218916 ], [ 20.906982, -18.250220 ], [ 20.885010, -21.810508 ], [ 19.896240, -21.851302 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.841797, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.216064, -27.088473 ], [ 14.996338, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.414062, -23.855698 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.051734 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 11.645508, -16.678293 ], [ 11.777344, -15.792254 ], [ 12.128906, -14.881087 ], [ 12.172852, -14.445319 ], [ 12.502441, -13.549881 ], [ 12.744141, -13.143678 ], [ 13.315430, -12.490214 ], [ 13.634033, -12.039321 ], [ 13.743896, -11.296934 ], [ 13.688965, -10.736175 ], [ 13.392334, -10.379765 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.559294 ], [ 12.733154, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.326660, -6.096860 ], [ 12.733154, -5.965754 ], [ 13.029785, -5.987607 ], [ 13.381348, -5.867403 ] ] ], [ [ [ 17.775879, 0.878872 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.230374 ], [ 16.413574, -1.746556 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.853293 ], [ 15.172119, -4.346411 ], [ 14.578857, -4.970560 ], [ 14.205322, -4.795417 ], [ 14.150391, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.255068 ], [ 12.436523, -5.681584 ], [ 12.183838, -5.790897 ], [ 11.920166, -5.036227 ], [ 11.096191, -3.984821 ], [ 10.063477, -2.975956 ], [ 9.404297, -2.141835 ], [ 8.800049, -1.109550 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.206543, 0.000000 ], [ 9.294434, 0.274657 ], [ 9.459229, 0.878872 ], [ 17.775879, 0.878872 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.955766 ], [ 34.068604, -1.065612 ], [ 37.705078, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.199219, -7.700105 ], [ 39.254150, -8.004837 ], [ 39.188232, -8.483239 ], [ 39.539795, -9.112945 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 39.517822, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.825928, -11.275387 ], [ 37.474365, -11.566144 ], [ 36.771240, -11.598432 ], [ 36.518555, -11.727546 ], [ 35.310059, -11.436955 ], [ 34.562988, -11.523088 ], [ 34.277344, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.531020 ], [ 33.321533, -10.800933 ], [ 33.112793, -11.609193 ], [ 33.310547, -12.436577 ], [ 32.991943, -12.790375 ], [ 32.684326, -13.710035 ], [ 33.211670, -13.976715 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.393931 ], [ 28.465576, -16.467695 ], [ 27.597656, -17.287709 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.957832 ], [ 26.378174, -17.842833 ], [ 25.268555, -17.738223 ], [ 25.653076, -18.542117 ], [ 25.850830, -18.719097 ], [ 26.169434, -19.290406 ], [ 27.301025, -20.396123 ], [ 27.729492, -20.499064 ], [ 27.729492, -20.848545 ], [ 28.026123, -21.483741 ], [ 28.795166, -21.637005 ], [ 29.432373, -22.095820 ], [ 28.015137, -22.826820 ], [ 27.125244, -23.574057 ], [ 26.784668, -24.236947 ], [ 26.488037, -24.617057 ], [ 25.938721, -24.696934 ], [ 25.664062, -25.492868 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.730469, -25.393661 ], [ 23.312988, -25.274504 ], [ 22.829590, -25.502785 ], [ 22.576904, -25.977799 ], [ 22.104492, -26.283565 ], [ 21.610107, -26.725987 ], [ 20.895996, -26.833875 ], [ 20.665283, -26.480407 ], [ 20.764160, -25.869109 ], [ 20.170898, -24.916331 ], [ 19.896240, -24.766785 ], [ 19.896240, -28.459033 ], [ 19.006348, -28.969701 ], [ 18.468018, -29.046566 ], [ 17.841797, -28.854296 ], [ 17.391357, -28.786918 ], [ 17.215576, -28.352734 ], [ 16.820068, -28.081674 ], [ 16.347656, -28.574874 ], [ 15.600586, -27.819645 ], [ 15.216064, -27.088473 ], [ 14.996338, -26.115986 ], [ 14.743652, -25.393661 ], [ 14.414062, -23.855698 ], [ 14.392090, -22.654572 ], [ 14.260254, -22.116177 ], [ 13.864746, -21.698265 ], [ 13.348389, -20.869078 ], [ 12.832031, -19.673626 ], [ 12.612305, -19.051734 ], [ 11.799316, -18.072757 ], [ 11.733398, -17.298199 ], [ 12.216797, -17.109293 ], [ 12.810059, -16.941215 ], [ 13.458252, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.216309, -17.350638 ], [ 18.259277, -17.308688 ], [ 18.962402, -17.790535 ], [ 21.379395, -17.936929 ], [ 23.214111, -17.528821 ], [ 22.565918, -16.899172 ], [ 21.884766, -16.077486 ], [ 21.939697, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.243062 ], [ 23.917236, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.312744, -11.264612 ], [ 24.785156, -11.243062 ], [ 25.422363, -11.329253 ], [ 25.751953, -11.781325 ], [ 26.553955, -11.921103 ], [ 27.169189, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.520508, -12.704651 ], [ 28.937988, -13.250640 ], [ 29.696045, -13.261333 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.377686, -11.792080 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.611582 ], [ 28.454590, -9.167179 ], [ 28.740234, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.344238, -8.244110 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.344482, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.844290 ], [ 29.113770, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.289551, -1.625758 ], [ 29.586182, -1.340210 ], [ 29.827881, -1.450040 ], [ 30.421143, -1.131518 ], [ 30.772705, -1.010690 ], [ 31.871338, -1.032659 ], [ 33.903809, -0.955766 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.277344, -10.163560 ], [ 34.562988, -11.523088 ], [ 35.310059, -11.436955 ], [ 36.518555, -11.727546 ], [ 36.771240, -11.598432 ], [ 37.474365, -11.566144 ], [ 37.825928, -11.275387 ], [ 38.430176, -11.286161 ], [ 39.517822, -10.898042 ], [ 40.319824, -10.314919 ], [ 40.484619, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.591667 ], [ 36.287842, -18.656654 ], [ 35.903320, -18.843913 ], [ 35.200195, -19.549437 ], [ 34.782715, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.136532 ], [ 35.562744, -22.095820 ], [ 35.540771, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.477150 ], [ 34.222412, -24.816654 ], [ 33.013916, -25.353955 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.069092, -26.735799 ], [ 31.992188, -26.293415 ], [ 31.838379, -25.849337 ], [ 31.750488, -25.482951 ], [ 31.937256, -24.367114 ], [ 31.190186, -22.248429 ], [ 30.662842, -22.156883 ], [ 30.322266, -22.268764 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.095820 ], [ 28.795166, -21.637005 ], [ 28.026123, -21.483741 ], [ 27.729492, -20.848545 ], [ 27.729492, -20.499064 ], [ 27.301025, -20.396123 ], [ 26.169434, -19.290406 ], [ 25.850830, -18.719097 ], [ 25.653076, -18.542117 ], [ 25.268555, -17.738223 ], [ 26.378174, -17.842833 ], [ 26.707764, -17.957832 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.287709 ], [ 28.465576, -16.467695 ], [ 28.828125, -16.393931 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.211670, -13.976715 ], [ 32.684326, -13.710035 ], [ 32.991943, -12.790375 ], [ 33.310547, -12.436577 ], [ 33.112793, -11.609193 ], [ 33.321533, -10.800933 ], [ 33.486328, -10.531020 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.095820 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.268764 ], [ 30.662842, -22.156883 ], [ 31.190186, -22.248429 ], [ 31.937256, -24.367114 ], [ 31.750488, -25.482951 ], [ 31.838379, -25.849337 ], [ 31.992188, -26.293415 ], [ 32.069092, -26.735799 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.758028 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.994385, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.841797, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -24.766785 ], [ 20.170898, -24.916331 ], [ 20.764160, -25.869109 ], [ 20.665283, -26.480407 ], [ 20.895996, -26.833875 ], [ 21.610107, -26.725987 ], [ 22.104492, -26.283565 ], [ 22.576904, -25.977799 ], [ 22.829590, -25.502785 ], [ 23.312988, -25.274504 ], [ 23.730469, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.492868 ], [ 25.938721, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.784668, -24.236947 ], [ 27.125244, -23.574057 ], [ 28.015137, -22.826820 ], [ 29.432373, -22.095820 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.003662, 0.878872 ], [ 29.871826, 0.604237 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.593251 ], [ 29.586182, -1.340210 ], [ 29.827881, -1.450040 ], [ 30.421143, -1.131518 ], [ 30.772705, -1.010690 ], [ 31.871338, -1.032659 ], [ 33.903809, -0.955766 ], [ 34.068604, -1.065612 ], [ 37.705078, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.199219, -4.674980 ], [ 38.737793, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.199219, -7.700105 ], [ 39.254150, -8.004837 ], [ 39.188232, -8.483239 ], [ 39.539795, -9.112945 ], [ 39.946289, -10.098670 ], [ 40.319824, -10.314919 ], [ 40.484619, -10.768556 ], [ 40.440674, -11.759815 ], [ 40.561523, -12.640338 ], [ 40.605469, -14.200488 ], [ 40.781250, -14.689881 ], [ 40.473633, -15.411319 ], [ 40.089111, -16.098598 ], [ 39.451904, -16.720385 ], [ 37.408447, -17.591667 ], [ 36.287842, -18.656654 ], [ 35.903320, -18.843913 ], [ 35.200195, -19.549437 ], [ 34.782715, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.258661 ], [ 35.375977, -21.841105 ], [ 35.386963, -22.136532 ], [ 35.562744, -22.095820 ], [ 35.540771, -23.069624 ], [ 35.375977, -23.533773 ], [ 35.606689, -23.704895 ], [ 35.463867, -24.126702 ], [ 35.046387, -24.477150 ], [ 34.222412, -24.816654 ], [ 33.013916, -25.353955 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.145576 ], [ 32.915039, -26.214591 ], [ 32.827148, -26.745610 ], [ 32.585449, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.200928, -28.758028 ], [ 31.322021, -29.401320 ], [ 30.904541, -29.907329 ], [ 30.618896, -30.420256 ], [ 30.058594, -31.137603 ], [ 28.927002, -32.175612 ], [ 28.223877, -32.768800 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.905762, -33.669497 ], [ 25.784912, -33.943360 ], [ 25.169678, -33.797409 ], [ 24.675293, -33.988918 ], [ 23.598633, -33.797409 ], [ 22.994385, -33.916013 ], [ 22.576904, -33.861293 ], [ 21.544189, -34.261757 ], [ 20.687256, -34.415973 ], [ 20.072021, -34.795762 ], [ 19.621582, -34.822823 ], [ 19.193115, -34.461277 ], [ 18.852539, -34.443159 ], [ 18.424072, -33.998027 ], [ 18.380127, -34.134542 ], [ 18.248291, -33.870416 ], [ 18.248291, -33.284620 ], [ 17.929688, -32.611616 ], [ 18.248291, -32.426340 ], [ 18.226318, -31.662733 ], [ 17.567139, -30.722949 ], [ 17.061768, -29.878755 ], [ 16.347656, -28.574874 ], [ 16.820068, -28.081674 ], [ 17.215576, -28.352734 ], [ 17.391357, -28.786918 ], [ 17.841797, -28.854296 ], [ 18.468018, -29.046566 ], [ 19.006348, -28.969701 ], [ 19.896240, -28.459033 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.810508 ], [ 20.906982, -18.250220 ], [ 21.654053, -18.218916 ], [ 23.203125, -17.874203 ], [ 23.576660, -18.281518 ], [ 24.213867, -17.895114 ], [ 24.521484, -17.884659 ], [ 25.081787, -17.664960 ], [ 25.081787, -17.581194 ], [ 24.686279, -17.350638 ], [ 24.038086, -17.298199 ], [ 23.214111, -17.528821 ], [ 22.565918, -16.899172 ], [ 21.884766, -16.077486 ], [ 21.939697, -12.897489 ], [ 24.016113, -12.908198 ], [ 23.928223, -12.565287 ], [ 24.082031, -12.189704 ], [ 23.906250, -11.727546 ], [ 24.016113, -11.243062 ], [ 23.917236, -10.930405 ], [ 23.455811, -10.865676 ], [ 22.840576, -11.016689 ], [ 22.401123, -10.995120 ], [ 22.159424, -11.081385 ], [ 22.214355, -9.893099 ], [ 21.873779, -9.524914 ], [ 21.807861, -8.906780 ], [ 21.950684, -8.309341 ], [ 21.752930, -7.917793 ], [ 21.730957, -7.297088 ], [ 20.511475, -7.297088 ], [ 20.599365, -6.937333 ], [ 20.093994, -6.948239 ], [ 20.039062, -7.122696 ], [ 19.423828, -7.155400 ], [ 19.171143, -7.743651 ], [ 19.017334, -7.993957 ], [ 18.468018, -7.852499 ], [ 18.138428, -7.993957 ], [ 17.479248, -8.070107 ], [ 16.864014, -7.220800 ], [ 16.578369, -6.620957 ], [ 16.325684, -5.878332 ], [ 13.381348, -5.867403 ], [ 13.029785, -5.987607 ], [ 12.733154, -5.965754 ], [ 12.326660, -6.096860 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.681584 ], [ 12.469482, -5.255068 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.150391, -4.510714 ], [ 14.205322, -4.795417 ], [ 14.578857, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.853293 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.413574, -1.746556 ], [ 16.864014, -1.230374 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.878872 ], [ 30.003662, 0.878872 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.878906, -15.792254 ], [ 45.878906, -25.373809 ], [ 45.406494, -25.601902 ], [ 45.000000, -25.423431 ], [ 44.044189, -24.986058 ], [ 43.769531, -24.457151 ], [ 43.703613, -23.574057 ], [ 43.352051, -22.776182 ], [ 43.253174, -22.055096 ], [ 43.439941, -21.340548 ], [ 43.890381, -21.166484 ], [ 43.901367, -20.828010 ], [ 44.373779, -20.076570 ], [ 44.461670, -19.435514 ], [ 44.230957, -18.958246 ], [ 44.044189, -18.333669 ], [ 43.967285, -17.413546 ], [ 44.318848, -16.846605 ], [ 44.450684, -16.214675 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.505371, -15.971892 ], [ 45.878906, -15.792254 ] ] ] } } ] } @@ -475,29 +445,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 22.360236 ], [ 0.000000, 21.790107 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.859727 ], [ 3.153076, 19.694314 ], [ 3.164062, 19.051734 ], [ 4.273682, 19.155547 ], [ 4.273682, 16.846605 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.021729, 14.966013 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.999756, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.618897 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.241455, 11.113727 ], [ 0.900879, 10.995120 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.065674, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -0.878906, 5.112830 ], [ -0.878906, 22.360236 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.878906, 22.360236 ], [ 0.000000, 21.790107 ], [ 1.823730, 20.612220 ], [ 2.065430, 20.138470 ], [ 2.680664, 19.859727 ], [ 3.153076, 19.694314 ], [ 3.164062, 19.051734 ], [ 4.273682, 19.155547 ], [ 4.273682, 16.846605 ], [ 3.724365, 16.183024 ], [ 3.636475, 15.570128 ], [ 2.746582, 15.411319 ], [ 1.384277, 15.326572 ], [ 1.021729, 14.966013 ], [ 0.373535, 14.923554 ], [ 0.296631, 14.445319 ], [ 0.428467, 13.987376 ], [ 0.999756, 13.336175 ], [ 1.021729, 12.854649 ], [ 2.175293, 12.618897 ], [ 2.153320, 11.942601 ], [ 1.933594, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.241455, 11.113727 ], [ 0.900879, 10.995120 ], [ 0.021973, 11.016689 ], [ 0.000000, 10.919618 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.649811 ], [ 0.373535, 10.185187 ], [ 0.362549, 9.459899 ], [ 0.461426, 8.678779 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.406048 ], [ 0.571289, 6.915521 ], [ 0.834961, 6.282539 ], [ 1.065674, 5.922045 ], [ 0.000000, 5.528511 ], [ -0.505371, 5.342583 ], [ -0.878906, 5.112830 ], [ -0.878906, 22.360236 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.871988 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.634033, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.106201, 36.615528 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 2.680664, 41.640078 ], [ 2.098389, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ], [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.153842 ], [ 21.752930, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.621338, 40.111689 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.690281 ], [ 19.962158, 39.918163 ], [ 19.412842, 40.245992 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 26.114502, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.172659 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.253032 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ], [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.439974 ], [ 15.314941, 37.134045 ], [ 15.106201, 36.615528 ], [ 14.337158, 36.993778 ], [ 13.831787, 37.107765 ], [ 12.436523, 37.614231 ], [ 12.568359, 38.125915 ], [ 13.743896, 38.030786 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.029053, 41.640078 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.871988 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.170479 ], [ 18.292236, 39.808536 ], [ 17.742920, 40.279526 ], [ 16.875000, 40.438586 ], [ 16.446533, 39.791655 ], [ 17.171631, 39.427707 ], [ 17.050781, 38.899583 ], [ 16.633301, 38.839708 ], [ 16.105957, 37.987504 ], [ 15.688477, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.897217, 38.754083 ], [ 16.105957, 38.959409 ], [ 15.721436, 39.546412 ], [ 15.413818, 40.044438 ], [ 14.996338, 40.170479 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.634033, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.216797, 41.640078 ], [ 16.029053, 41.640078 ] ] ], [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.667969, 39.172659 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.908133 ], [ 8.426514, 39.172659 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 22.917480, 41.640078 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.153842 ], [ 21.752930, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.511475, 41.640078 ], [ 22.917480, 41.640078 ] ] ], [ [ [ 9.338379, 41.640078 ], [ 9.228516, 41.385052 ], [ 8.778076, 41.582580 ], [ 8.756104, 41.640078 ], [ 9.338379, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.514160, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.601807, 36.412442 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.701917 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.436768, 32.370683 ], [ 10.942383, 32.082575 ], [ 10.634766, 31.756196 ], [ 9.953613, 31.372399 ], [ 10.052490, 30.958769 ], [ 9.975586, 30.533877 ], [ 9.481201, 30.306503 ], [ 9.810791, 29.420460 ], [ 9.865723, 28.960089 ], [ 9.689941, 28.139816 ], [ 9.755859, 27.683528 ], [ 9.635010, 27.137368 ], [ 9.722900, 26.509905 ], [ 9.316406, 26.096255 ], [ 9.909668, 25.363882 ], [ 9.953613, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.777588, 24.557116 ], [ 11.557617, 24.096619 ], [ 11.997070, 23.473324 ], [ 8.569336, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.273682, 19.155547 ], [ 3.164062, 19.051734 ], [ 3.153076, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.426514, 36.941111 ], [ 9.514160, 37.352693 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.680664, 41.640078 ], [ 2.098389, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.109863, 40.120090 ], [ 0.000000, 39.901309 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.908133 ], [ 0.109863, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.472412, 38.289937 ], [ -0.681152, 37.640335 ], [ -0.878906, 37.588119 ], [ -0.878906, 41.640078 ], [ 2.680664, 41.640078 ] ] ], [ [ [ 45.878906, 41.640078 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 44.978027, 41.253032 ], [ 43.582764, 41.095912 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.594238, 41.640078 ], [ 45.878906, 41.640078 ] ] ], [ [ [ 26.114502, 41.640078 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.917480, 41.640078 ], [ 26.114502, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.787275 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.746854 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.927979, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.656816 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 19.993998 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.150391, 22.492257 ], [ 13.579102, 23.039298 ], [ 11.997070, 23.473324 ], [ 11.557617, 24.096619 ], [ 10.777588, 24.557116 ], [ 10.305176, 24.377121 ], [ 9.953613, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.316406, 26.096255 ], [ 9.722900, 26.509905 ], [ 9.635010, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.689941, 28.139816 ], [ 9.865723, 28.960089 ], [ 9.810791, 29.420460 ], [ 9.481201, 30.306503 ], [ 9.975586, 30.533877 ], [ 10.052490, 30.958769 ], [ 9.953613, 31.372399 ], [ 10.634766, 31.756196 ], [ 10.942383, 32.082575 ], [ 11.436768, 32.370683 ], [ 11.491699, 33.137551 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.514160, 37.352693 ], [ 10.206299, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.096191, 36.897194 ], [ 10.601807, 36.412442 ], [ 10.590820, 35.942436 ], [ 10.942383, 35.701917 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.325292 ], [ 10.338135, 33.788279 ], [ 10.854492, 33.770015 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 12.667236, 32.787275 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.713355 ], [ 15.249023, 32.268555 ], [ 15.710449, 31.372399 ], [ 16.611328, 31.184609 ], [ 18.017578, 30.760719 ], [ 19.083252, 30.268556 ], [ 19.577637, 30.524413 ], [ 20.050049, 30.987028 ], [ 19.819336, 31.746854 ], [ 20.137939, 32.240683 ], [ 20.852051, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.194209 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.927979, 31.896214 ], [ 25.169678, 31.569175 ], [ 24.807129, 31.090574 ], [ 24.960938, 30.656816 ], [ 24.697266, 30.040566 ], [ 25.004883, 29.238477 ], [ 25.004883, 20.004322 ], [ 23.851318, 19.993998 ], [ 23.840332, 19.580493 ], [ 19.852295, 21.493964 ], [ 15.864258, 23.412847 ], [ 14.853516, 22.857195 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.043491 ], [ 15.490723, 20.725291 ], [ 15.908203, 20.385825 ], [ 15.688477, 19.952696 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.546143, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.346865 ], [ 14.600830, 13.325485 ], [ 14.501953, 12.854649 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.479487 ], [ 13.996582, 12.458033 ], [ 13.315430, 13.549881 ], [ 13.084717, 13.592600 ], [ 12.304688, 13.036669 ], [ 11.524658, 13.325485 ], [ 10.986328, 13.389620 ], [ 10.700684, 13.250640 ], [ 10.118408, 13.272026 ], [ 9.525146, 12.854649 ], [ 9.019775, 12.822514 ], [ 7.811279, 13.346865 ], [ 7.327881, 13.100880 ], [ 6.822510, 13.111580 ], [ 6.448975, 13.496473 ], [ 5.449219, 13.859414 ], [ 4.372559, 13.742053 ], [ 4.108887, 13.528519 ], [ 3.966064, 12.951029 ], [ 3.680420, 12.554564 ], [ 3.614502, 11.662996 ], [ 2.845459, 12.232655 ], [ 2.493896, 12.232655 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.618897 ], [ 1.021729, 12.854649 ], [ 0.999756, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.923554 ], [ 1.021729, 14.966013 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.846605 ], [ 4.273682, 19.155547 ], [ 3.164062, 19.051734 ], [ 3.153076, 19.694314 ], [ 2.680664, 19.859727 ], [ 2.065430, 20.138470 ], [ 1.823730, 20.612220 ], [ 0.000000, 21.790107 ], [ -0.878906, 22.360236 ], [ -0.878906, 35.764343 ], [ -0.131836, 35.889050 ], [ 0.000000, 35.969115 ], [ 0.505371, 36.297418 ], [ 1.472168, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.812012, 36.862043 ], [ 5.317383, 36.712467 ], [ 6.262207, 37.107765 ], [ 7.327881, 37.116526 ], [ 7.734375, 36.888408 ], [ 8.426514, 36.941111 ], [ 9.514160, 37.352693 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.301270, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.120090 ], [ 23.906250, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.631836, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.505191 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.405074 ], [ 22.774658, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.676025, 36.844461 ], [ 21.291504, 37.640335 ], [ 21.126709, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 19.984131, 39.690281 ], [ 19.962158, 39.918163 ], [ 19.412842, 40.245992 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.500732, 41.640078 ], [ 20.511475, 41.640078 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.752930, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.455078, 41.640078 ] ] ], [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.521729, 35.281501 ], [ 23.697510, 35.701917 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.645996, 2.284551 ], [ 11.282959, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ] ] ], [ [ [ 11.997070, 23.473324 ], [ 13.579102, 23.039298 ], [ 14.150391, 22.492257 ], [ 14.853516, 22.857195 ], [ 15.095215, 21.309846 ], [ 15.468750, 21.043491 ], [ 15.490723, 20.725291 ], [ 15.908203, 20.385825 ], [ 15.688477, 19.952696 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.686510 ], [ 13.546143, 14.370834 ], [ 13.952637, 13.998037 ], [ 13.952637, 13.346865 ], [ 14.600830, 13.325485 ], [ 14.501953, 12.854649 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.479487 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.899604 ], [ 14.414062, 11.566144 ], [ 13.579102, 10.800933 ], [ 13.315430, 10.163560 ], [ 13.172607, 9.644077 ], [ 12.952881, 9.416548 ], [ 12.755127, 8.711359 ], [ 12.216797, 8.309341 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.744385, 6.980954 ], [ 11.063232, 6.642783 ], [ 10.502930, 7.057282 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.457234 ], [ 9.239502, 6.446318 ], [ 8.756104, 5.473832 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.605052 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.065674, 5.922045 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.175293, 12.618897 ], [ 1.021729, 12.854649 ], [ 0.999756, 13.336175 ], [ 0.428467, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.923554 ], [ 1.021729, 14.966013 ], [ 1.384277, 15.326572 ], [ 2.746582, 15.411319 ], [ 3.636475, 15.570128 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.846605 ], [ 4.273682, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.569336, 21.565502 ], [ 11.997070, 23.473324 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.510986, 11.673755 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.236328, 10.973550 ], [ 21.719971, 10.563422 ], [ 21.005859, 9.470736 ], [ 20.061035, 9.015302 ], [ 19.094238, 9.069551 ], [ 18.808594, 8.982749 ], [ 18.907471, 8.624472 ], [ 18.391113, 8.276727 ], [ 17.962646, 7.885147 ], [ 16.710205, 7.504089 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.416942 ], [ 14.776611, 6.402648 ], [ 14.534912, 6.227934 ], [ 14.458008, 5.451959 ], [ 14.556885, 5.025283 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.203986 ], [ 15.040283, 3.853293 ], [ 15.402832, 3.337954 ], [ 15.864258, 3.008870 ], [ 15.908203, 2.558963 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.282959, 2.262595 ], [ 11.282959, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.164471 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.953857, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.492432, 4.488809 ], [ 8.503418, 4.773521 ], [ 7.459717, 4.412137 ], [ 7.086182, 4.466904 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.361328, 4.882994 ], [ 5.031738, 5.605052 ], [ 4.328613, 6.271618 ], [ 2.691650, 6.260697 ], [ 1.867676, 6.140555 ], [ 1.065674, 5.922045 ], [ 0.834961, 6.282539 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.406048 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.678779 ], [ 0.362549, 9.459899 ], [ 0.373535, 10.185187 ], [ 0.000000, 10.649811 ], [ -0.054932, 10.703792 ], [ 0.000000, 10.919618 ], [ 0.021973, 11.016689 ], [ 0.900879, 10.995120 ], [ 1.241455, 11.113727 ], [ 1.450195, 11.544616 ], [ 1.933594, 11.641476 ], [ 2.153320, 11.942601 ], [ 2.493896, 12.232655 ], [ 2.845459, 12.232655 ], [ 3.614502, 11.662996 ], [ 3.680420, 12.554564 ], [ 3.966064, 12.951029 ], [ 4.108887, 13.528519 ], [ 4.372559, 13.742053 ], [ 5.449219, 13.859414 ], [ 6.448975, 13.496473 ], [ 6.822510, 13.111580 ], [ 7.327881, 13.100880 ], [ 7.811279, 13.346865 ], [ 9.019775, 12.822514 ], [ 9.525146, 12.854649 ], [ 10.118408, 13.272026 ], [ 10.700684, 13.250640 ], [ 10.986328, 13.389620 ], [ 11.524658, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.315430, 13.549881 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.501953, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.998037 ], [ 13.546143, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.412847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.412847 ], [ 19.852295, 21.493964 ], [ 23.840332, 19.580493 ], [ 23.884277, 15.612456 ], [ 23.027344, 15.675932 ], [ 22.565918, 14.944785 ], [ 22.302246, 14.328260 ], [ 22.510986, 14.093957 ], [ 22.181396, 13.784737 ], [ 22.302246, 13.368243 ], [ 22.038574, 12.951029 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.640338 ], [ 22.500000, 12.254128 ], [ 22.510986, 11.673755 ], [ 22.873535, 11.383109 ], [ 22.862549, 11.146066 ], [ 22.983398, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.554688, 9.676569 ], [ 23.400879, 9.264779 ], [ 23.455811, 8.950193 ], [ 23.807373, 8.667918 ], [ 24.565430, 8.233237 ], [ 25.114746, 7.819847 ], [ 25.125732, 7.504089 ], [ 25.795898, 6.980954 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.048340, 5.123772 ], [ 26.400146, 5.145657 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.125732, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.112830 ], [ 23.302002, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.708740, 4.631179 ], [ 22.401123, 4.028659 ], [ 21.665039, 4.225900 ], [ 20.928955, 4.324501 ], [ 20.291748, 4.685930 ], [ 19.467773, 5.025283 ], [ 18.929443, 4.707828 ], [ 18.544922, 4.203986 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.138672, 3.721745 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.941162, 1.724593 ], [ 14.337158, 2.229662 ], [ 13.073730, 2.262595 ], [ 12.952881, 2.317483 ], [ 12.359619, 2.196727 ], [ 11.755371, 2.328460 ], [ 11.282959, 2.262595 ], [ 9.645996, 2.284551 ], [ 9.799805, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.953857, 3.908099 ], [ 8.745117, 4.346411 ], [ 8.492432, 4.488809 ], [ 8.503418, 4.773521 ], [ 8.756104, 5.473832 ], [ 9.239502, 6.446318 ], [ 9.525146, 6.457234 ], [ 10.118408, 7.035476 ], [ 10.502930, 7.057282 ], [ 11.063232, 6.642783 ], [ 11.744385, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.216797, 8.309341 ], [ 12.755127, 8.711359 ], [ 12.952881, 9.416548 ], [ 13.172607, 9.644077 ], [ 13.315430, 10.163560 ], [ 13.579102, 10.800933 ], [ 14.414062, 11.566144 ], [ 14.468994, 11.899604 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.479487 ], [ 14.216309, 12.801088 ], [ 14.501953, 12.854649 ], [ 14.600830, 13.325485 ], [ 13.952637, 13.346865 ], [ 13.952637, 13.998037 ], [ 13.546143, 14.370834 ], [ 13.974609, 15.686510 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.952696 ], [ 15.908203, 20.385825 ], [ 15.490723, 20.725291 ], [ 15.468750, 21.043491 ], [ 15.095215, 21.309846 ], [ 14.853516, 22.857195 ], [ 15.864258, 23.412847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.166992, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.406738, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.110107, 39.427707 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.764343 ], [ 45.878906, 34.903953 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 45.878906, 33.339707 ], [ 45.878906, 17.287709 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.121338, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.946045, 19.487308 ], [ 40.253906, 20.169411 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.052591 ], [ 34.793701, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.496988 ], [ 34.639893, 29.094577 ], [ 34.431152, 28.343065 ], [ 34.156494, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.754840 ], [ 32.739258, 28.700225 ], [ 33.354492, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.475098, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.755182 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 21.993989 ], [ 25.004883, 21.993989 ], [ 25.004883, 29.238477 ], [ 24.697266, 30.040566 ], [ 24.960938, 30.656816 ], [ 24.807129, 31.090574 ], [ 25.169678, 31.569175 ], [ 26.499023, 31.587894 ], [ 27.454834, 31.316101 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.864510 ], [ 29.685059, 31.184609 ], [ 30.091553, 31.475524 ], [ 30.981445, 31.550453 ], [ 31.684570, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.222197 ], [ 34.562988, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ], [ 35.903320, 35.406961 ], [ 36.156006, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.102376 ], [ 31.695557, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.388184, 36.261992 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.166992, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.114014, 41.640078 ] ] ], [ [ [ 34.573975, 35.666222 ], [ 33.903809, 35.245619 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.486572, 34.696461 ], [ 32.255859, 35.101934 ], [ 32.728271, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.389050 ], [ 33.673096, 35.371135 ], [ 34.573975, 35.666222 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.499023, 31.587894 ], [ 27.454834, 31.316101 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.864510 ], [ 29.685059, 31.184609 ], [ 30.091553, 31.475524 ], [ 30.981445, 31.550453 ], [ 31.684570, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.189941, 31.259770 ], [ 32.991943, 31.024694 ], [ 33.771973, 30.968189 ], [ 34.266357, 31.222197 ], [ 34.925537, 29.496988 ], [ 34.639893, 29.094577 ], [ 34.431152, 28.343065 ], [ 34.156494, 27.819645 ], [ 33.925781, 27.644606 ], [ 33.134766, 28.420391 ], [ 32.420654, 29.850173 ], [ 32.321777, 29.754840 ], [ 32.739258, 28.700225 ], [ 33.354492, 27.702984 ], [ 34.101562, 26.145576 ], [ 34.475098, 25.601902 ], [ 34.793701, 25.035839 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.755182 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.207749 ], [ 36.870117, 21.993989 ], [ 25.004883, 21.993989 ], [ 25.004883, 29.238477 ], [ 24.697266, 30.040566 ], [ 24.960938, 30.656816 ], [ 24.807129, 31.090574 ], [ 25.169678, 31.569175 ], [ 26.499023, 31.587894 ] ] ], [ [ [ 26.455078, 41.640078 ], [ 26.608887, 41.566142 ], [ 26.312256, 40.979898 ], [ 26.301270, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.411621, 40.120090 ], [ 23.906250, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.818604, 40.472024 ], [ 22.631836, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.345947, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.505191 ], [ 24.027100, 38.220920 ], [ 24.038086, 37.657732 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.405074 ], [ 22.774658, 37.300275 ], [ 23.159180, 36.421282 ], [ 22.489014, 36.412442 ], [ 21.676025, 36.844461 ], [ 21.291504, 37.640335 ], [ 21.126709, 38.307181 ], [ 20.214844, 39.342794 ], [ 20.148926, 39.622615 ], [ 20.621338, 40.111689 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.752930, 40.979898 ], [ 22.060547, 41.153842 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.640078 ], [ 26.455078, 41.640078 ] ] ], [ [ [ 34.573975, 35.666222 ], [ 33.903809, 35.245619 ], [ 34.002686, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.486572, 34.696461 ], [ 32.255859, 35.101934 ], [ 32.728271, 35.137879 ], [ 32.805176, 35.146863 ], [ 32.947998, 35.389050 ], [ 33.673096, 35.371135 ], [ 34.573975, 35.666222 ] ] ], [ [ [ 23.697510, 35.701917 ], [ 24.246826, 35.371135 ], [ 25.026855, 35.424868 ], [ 25.773926, 35.353216 ], [ 25.740967, 35.182788 ], [ 26.290283, 35.299435 ], [ 26.169434, 35.003003 ], [ 24.730225, 34.921971 ], [ 24.741211, 35.083956 ], [ 23.521729, 35.281501 ], [ 23.697510, 35.701917 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.993989 ], [ 37.188721, 21.012727 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.836090 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.487871 ], [ 41.737061, 13.923404 ], [ 42.593994, 12.993853 ], [ 43.077393, 12.693933 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.934570, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.178025 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 41.176758, 3.919060 ], [ 40.770264, 4.258768 ], [ 39.858398, 3.842332 ], [ 39.561768, 3.425692 ], [ 38.891602, 3.502455 ], [ 38.671875, 3.612107 ], [ 38.441162, 3.590178 ], [ 38.122559, 3.601142 ], [ 36.859131, 4.444997 ], [ 36.156006, 4.444997 ], [ 35.815430, 4.773521 ], [ 35.815430, 5.331644 ], [ 35.299072, 5.506640 ], [ 34.002686, 4.247812 ], [ 34.475098, 3.557283 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.900286 ], [ 34.672852, 1.175455 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.735574 ], [ 18.094482, 2.361392 ], [ 18.391113, 2.899153 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.138672, 3.721745 ], [ 16.534424, 3.195364 ], [ 16.018066, 2.262595 ], [ 15.908203, 2.558963 ], [ 15.864258, 3.008870 ], [ 15.402832, 3.337954 ], [ 15.040283, 3.853293 ], [ 14.952393, 4.203986 ], [ 14.479980, 4.729727 ], [ 14.556885, 5.025283 ], [ 14.458008, 5.451959 ], [ 14.534912, 6.227934 ], [ 14.776611, 6.402648 ], [ 15.281982, 7.416942 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.710205, 7.504089 ], [ 17.962646, 7.885147 ], [ 18.391113, 8.276727 ], [ 18.907471, 8.624472 ], [ 18.808594, 8.982749 ], [ 19.094238, 9.069551 ], [ 20.061035, 9.015302 ], [ 21.005859, 9.470736 ], [ 21.719971, 10.563422 ], [ 22.236328, 10.973550 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.673755 ], [ 22.500000, 12.254128 ], [ 22.291260, 12.640338 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.302246, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.993998 ], [ 25.004883, 20.004322 ], [ 25.004883, 21.993989 ], [ 36.870117, 21.993989 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.166992, 41.640078 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.095912 ], [ 44.978027, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.204050 ], [ 45.615234, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.113014 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.110107, 39.427707 ], [ 44.417725, 38.281313 ], [ 44.230957, 37.970185 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 45.878906, 35.764343 ], [ 45.878906, 34.903953 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 45.878906, 33.339707 ], [ 45.878906, 17.287709 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.066162, 17.413546 ], [ 43.791504, 17.319176 ], [ 43.385010, 17.581194 ], [ 43.121338, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.351768 ], [ 42.648926, 16.772987 ], [ 42.352295, 17.077790 ], [ 42.275391, 17.476432 ], [ 41.759033, 17.832374 ], [ 41.220703, 18.667063 ], [ 40.946045, 19.487308 ], [ 40.253906, 20.169411 ], [ 39.803467, 20.334326 ], [ 39.144287, 21.289374 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.573438 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.287027 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.936035, 25.601902 ], [ 36.639404, 25.829561 ], [ 36.254883, 26.568877 ], [ 35.134277, 28.062286 ], [ 34.628906, 28.052591 ], [ 34.793701, 28.603814 ], [ 34.837646, 28.960089 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.496988 ], [ 34.266357, 31.222197 ], [ 34.562988, 31.550453 ], [ 34.486084, 31.606610 ], [ 34.749756, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.082337 ], [ 35.123291, 33.091542 ], [ 35.485840, 33.906896 ], [ 36.002197, 34.642247 ], [ 35.903320, 35.406961 ], [ 36.156006, 35.817813 ], [ 35.782471, 36.270850 ], [ 36.166992, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.791691 ], [ 34.024658, 36.217687 ], [ 32.508545, 36.102376 ], [ 31.695557, 36.641978 ], [ 30.618896, 36.677231 ], [ 30.388184, 36.261992 ], [ 29.696045, 36.146747 ], [ 28.729248, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.649034 ], [ 26.323242, 38.203655 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.167969, 41.640078 ], [ 36.166992, 41.640078 ] ] ], [ [ [ 28.114014, 41.640078 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.004775 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.356201, 40.153687 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.566142 ], [ 26.455078, 41.640078 ], [ 28.114014, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.815430, 5.331644 ], [ 35.815430, 4.773521 ], [ 36.156006, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.601142 ], [ 38.441162, 3.590178 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.502455 ], [ 39.561768, 3.425692 ], [ 39.858398, 3.842332 ], [ 40.770264, 4.258768 ], [ 41.176758, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.979004, 2.778451 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.011963, -0.878872 ], [ 33.903809, -0.878872 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.900286 ], [ 34.595947, 3.052754 ], [ 34.475098, 3.557283 ], [ 34.002686, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.993989 ], [ 37.188721, 21.012727 ], [ 36.968994, 20.838278 ], [ 37.111816, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.408203, 17.999632 ], [ 38.990479, 16.836090 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.176758, 14.487871 ], [ 41.737061, 13.923404 ], [ 42.593994, 12.993853 ], [ 43.077393, 12.693933 ], [ 43.319092, 12.393659 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.738302 ], [ 43.143311, 11.458491 ], [ 42.780762, 10.930405 ], [ 42.561035, 10.574222 ], [ 42.934570, 10.022948 ], [ 43.297119, 9.535749 ], [ 43.681641, 9.178025 ], [ 45.000000, 8.700499 ], [ 45.878906, 8.385431 ], [ 45.878906, 5.976680 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 43.659668, 4.959615 ], [ 42.769775, 4.247812 ], [ 42.132568, 4.236856 ], [ 41.857910, 3.919060 ], [ 40.979004, 2.778451 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.856902 ], [ 41.011963, -0.878872 ], [ 29.586182, -0.878872 ], [ 29.586182, -0.593251 ], [ 29.816895, -0.208740 ], [ 29.838867, 0.000000 ], [ 29.871826, 0.593251 ], [ 30.091553, 1.065612 ], [ 30.465088, 1.581830 ], [ 30.849609, 1.845384 ], [ 31.179199, 2.207705 ], [ 30.772705, 2.339438 ], [ 30.838623, 3.502455 ], [ 29.959717, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.280680 ], [ 27.982178, 4.412137 ], [ 27.377930, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.943900 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.980954 ], [ 25.125732, 7.504089 ], [ 25.114746, 7.819847 ], [ 24.565430, 8.233237 ], [ 23.807373, 8.667918 ], [ 23.455811, 8.950193 ], [ 23.400879, 9.264779 ], [ 23.554688, 9.676569 ], [ 23.554688, 10.087854 ], [ 22.983398, 10.714587 ], [ 22.862549, 11.146066 ], [ 22.873535, 11.383109 ], [ 22.510986, 11.673755 ], [ 22.500000, 12.254128 ], [ 22.291260, 12.640338 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.951029 ], [ 22.302246, 13.368243 ], [ 22.181396, 13.784737 ], [ 22.510986, 14.093957 ], [ 22.302246, 14.328260 ], [ 22.565918, 14.944785 ], [ 23.027344, 15.675932 ], [ 23.884277, 15.612456 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.993998 ], [ 25.004883, 20.004322 ], [ 25.004883, 21.993989 ], [ 36.870117, 21.993989 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 45.878906, 39.113014 ], [ 45.878906, 38.788345 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.878906, 40.204050 ], [ 45.878906, 39.732538 ], [ 45.615234, 39.901309 ], [ 45.878906, 40.204050 ] ] ], [ [ [ 45.878906, 40.229218 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 44.978027, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.229218 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.978027, 41.253032 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.878906, 40.229218 ], [ 45.878906, 40.204050 ], [ 45.615234, 39.901309 ], [ 45.878906, 39.732538 ], [ 45.878906, 39.113014 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.406738, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.758545, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.095912 ], [ 44.978027, 41.253032 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.339707 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ], [ [ [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.778451 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 45.878906, 5.976680 ] ] ], [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.178025 ], [ 43.297119, 9.535749 ], [ 42.934570, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.930405 ], [ 43.143311, 11.458491 ] ] ], [ [ [ 43.385010, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.219727, 17.434511 ], [ 45.406494, 17.329664 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.693933 ], [ 44.494629, 12.715368 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.763396 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.209988 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.351768 ], [ 43.220215, 16.667769 ], [ 43.121338, 17.088291 ], [ 43.385010, 17.581194 ] ] ], [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 45.878906, 38.788345 ], [ 45.878906, 35.764343 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.230957, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 45.878906, 34.903953 ], [ 45.878906, 33.339707 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 45.878906, 34.903953 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 5.976680 ], [ 45.878906, 2.295528 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.066162, 1.054628 ], [ 43.132324, 0.285643 ], [ 42.868652, 0.000000 ], [ 42.077637, -0.878872 ], [ 41.011963, -0.878872 ], [ 40.989990, -0.856902 ], [ 40.989990, 0.000000 ], [ 40.979004, 2.778451 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.236856 ], [ 42.769775, 4.247812 ], [ 43.659668, 4.959615 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 45.878906, 5.976680 ] ] ], [ [ [ 43.143311, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.865676 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 45.878906, 10.736175 ], [ 45.878906, 8.385431 ], [ 45.000000, 8.700499 ], [ 43.681641, 9.178025 ], [ 43.297119, 9.535749 ], [ 42.934570, 10.022948 ], [ 42.561035, 10.574222 ], [ 42.780762, 10.930405 ], [ 43.143311, 11.458491 ] ] ], [ [ [ 43.385010, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.219727, 17.434511 ], [ 45.406494, 17.329664 ], [ 45.878906, 17.287709 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.693933 ], [ 44.494629, 12.715368 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.640338 ], [ 43.220215, 13.218556 ], [ 43.253174, 13.763396 ], [ 43.088379, 14.061988 ], [ 42.890625, 14.796128 ], [ 42.604980, 15.209988 ], [ 42.802734, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.351768 ], [ 43.220215, 16.667769 ], [ 43.121338, 17.088291 ], [ 43.385010, 17.581194 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.138672, 3.721745 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.391113, 2.899153 ], [ 18.094482, 2.361392 ], [ 17.896729, 1.735574 ], [ 17.775879, 0.856902 ], [ 17.830811, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.054932 ], [ 17.644043, -0.428463 ], [ 17.523193, -0.747049 ], [ 17.336426, -0.878872 ], [ 8.822021, -0.878872 ], [ 8.833008, -0.780005 ], [ 9.052734, -0.461421 ], [ 9.294434, 0.263671 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.282959, 1.054628 ], [ 11.282959, 2.262595 ], [ 11.755371, 2.328460 ], [ 12.359619, 2.196727 ], [ 12.952881, 2.317483 ], [ 13.073730, 2.262595 ], [ 14.337158, 2.229662 ], [ 15.941162, 1.724593 ], [ 16.018066, 2.262595 ], [ 16.534424, 3.195364 ], [ 17.138672, 3.721745 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.653076, 5.255068 ], [ 26.400146, 5.145657 ], [ 27.048340, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.412137 ], [ 28.432617, 4.280680 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.959717, 4.171115 ], [ 30.838623, 3.502455 ], [ 30.772705, 2.339438 ], [ 31.179199, 2.207705 ], [ 30.849609, 1.845384 ], [ 30.465088, 1.581830 ], [ 30.091553, 1.065612 ], [ 29.871826, 0.593251 ], [ 29.838867, 0.000000 ], [ 29.816895, -0.208740 ], [ 29.586182, -0.593251 ], [ 29.586182, -0.878872 ], [ 17.336426, -0.878872 ], [ 17.523193, -0.747049 ], [ 17.644043, -0.428463 ], [ 17.666016, -0.054932 ], [ 17.687988, 0.000000 ], [ 17.830811, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.896729, 1.735574 ], [ 18.094482, 2.361392 ], [ 18.391113, 2.899153 ], [ 18.544922, 4.203986 ], [ 18.929443, 4.707828 ], [ 19.467773, 5.025283 ], [ 20.291748, 4.685930 ], [ 20.928955, 4.324501 ], [ 21.665039, 4.225900 ], [ 22.401123, 4.028659 ], [ 22.708740, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.302002, 4.609278 ], [ 24.411621, 5.112830 ], [ 24.807129, 4.893941 ], [ 25.125732, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ] } } ] } ] } , @@ -505,35 +477,37 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.878906, 54.572062 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.670680 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.736292 ], [ 1.560059, 52.099757 ], [ 1.054688, 51.808615 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.791016, 50.771208 ], [ -0.878906, 50.757310 ], [ -0.878906, 54.572062 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.004618 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.411177 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.874756, 58.955674 ], [ 16.831055, 58.716894 ], [ 16.446533, 57.040730 ], [ 15.886230, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.191574 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 2.515869, 51.144894 ], [ 2.658691, 50.798991 ], [ 3.120117, 50.778155 ], [ 3.592529, 50.380502 ], [ 4.284668, 49.908787 ], [ 4.801025, 49.986552 ], [ 5.679932, 49.525208 ], [ 5.899658, 49.439557 ], [ 6.185303, 49.460984 ], [ 6.657715, 49.203243 ], [ 8.096924, 49.016257 ], [ 7.591553, 48.334343 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.734619, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.042480, 46.724800 ], [ 6.020508, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.328979 ], [ 6.756592, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.894100 ], [ 2.098389, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 2.515869, 51.144894 ] ] ], [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.095947, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.909424, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.078167 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.466399 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.806893 ], [ 8.547363, 57.106419 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.579834, 57.727619 ] ] ], [ [ [ 25.169678, 57.967331 ], [ 25.609131, 57.844751 ], [ 26.466064, 57.474497 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.861328, 56.758746 ], [ 28.179932, 56.170023 ], [ 27.103271, 55.782751 ], [ 26.499023, 55.615589 ], [ 25.532227, 56.096556 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.884277, 56.273861 ], [ 22.203369, 56.334812 ], [ 21.060791, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.588135, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.323975, 57.004850 ], [ 24.125977, 57.022794 ], [ 24.312744, 57.792089 ], [ 25.169678, 57.967331 ] ] ], [ [ [ 15.710449, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.191574 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.568115, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.997070, 61.799093 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.315260 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.998779, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 15.710449, 66.861082 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.710449, 66.861082 ], [ 15.391846, 66.513260 ], [ 15.106201, 66.191574 ], [ 13.557129, 64.788168 ], [ 13.919678, 64.444372 ], [ 13.568115, 64.048171 ], [ 12.579346, 64.067396 ], [ 11.931152, 63.129538 ], [ 11.997070, 61.799093 ], [ 12.634277, 61.291349 ], [ 12.304688, 60.119619 ], [ 11.469727, 59.433903 ], [ 11.030273, 58.853542 ], [ 10.360107, 59.467408 ], [ 8.382568, 58.315260 ], [ 7.053223, 58.077876 ], [ 5.668945, 58.585436 ], [ 5.306396, 59.662192 ], [ 4.998779, 61.969943 ], [ 5.910645, 62.613562 ], [ 8.558350, 63.455419 ], [ 10.524902, 64.486993 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.557129, 66.861082 ], [ 15.710449, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.012681 ], [ 9.558105, 42.155259 ], [ 9.228516, 41.376809 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.252918 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.012681 ] ] ], [ [ [ 9.920654, 54.983918 ], [ 9.942627, 54.597528 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.194583 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.117432, 53.755207 ], [ 14.359131, 53.245495 ], [ 14.073486, 52.981723 ], [ 14.436035, 52.623060 ], [ 14.688721, 52.086257 ], [ 14.611816, 51.747439 ], [ 15.018311, 51.103522 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.694718 ], [ 16.182861, 50.422519 ], [ 16.721191, 50.212064 ], [ 16.875000, 50.471491 ], [ 17.556152, 50.359480 ], [ 17.655029, 50.050085 ], [ 18.391113, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.496675 ], [ 18.402100, 49.310799 ], [ 18.171387, 49.267805 ], [ 18.105469, 49.045070 ], [ 17.918701, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.814099 ], [ 16.885986, 48.465637 ], [ 16.984863, 48.122101 ], [ 16.907959, 47.717154 ], [ 16.336670, 47.709762 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.369629, 46.837650 ], [ 16.567383, 46.505954 ], [ 15.765381, 46.240652 ], [ 15.677490, 45.836454 ], [ 15.325928, 45.729191 ], [ 15.325928, 45.452424 ], [ 14.941406, 45.467836 ], [ 14.600830, 45.637087 ], [ 14.414062, 45.467836 ], [ 13.721924, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.699951, 46.012224 ], [ 13.809814, 46.505954 ], [ 12.381592, 46.769968 ], [ 12.150879, 47.115000 ], [ 11.162109, 46.942762 ], [ 11.052246, 46.747389 ], [ 10.447998, 46.890232 ], [ 10.360107, 46.483265 ], [ 9.920654, 46.316584 ], [ 9.184570, 46.437857 ], [ 8.964844, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.164614 ], [ 7.756348, 45.821143 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.800537, 45.706179 ], [ 7.097168, 45.328979 ], [ 6.756592, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.547607, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.525879, 43.125043 ], [ 4.559326, 43.397065 ], [ 3.098145, 43.076913 ], [ 2.988281, 42.472097 ], [ 1.823730, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.666281 ], [ -0.878906, 42.884015 ], [ -0.878906, 49.382373 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.636963, 50.944584 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.075439, 53.507651 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.690201 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.108810 ], [ 12.689209, 55.609384 ], [ 12.095947, 54.800685 ], [ 11.041260, 55.366625 ], [ 10.909424, 55.776573 ], [ 12.370605, 56.108810 ] ] ], [ [ [ 10.579834, 57.727619 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.891003 ], [ 10.371094, 56.607885 ], [ 10.909424, 56.456420 ], [ 10.667725, 56.078167 ], [ 10.371094, 56.188368 ], [ 9.645996, 55.466399 ], [ 9.920654, 54.983918 ], [ 9.283447, 54.832336 ], [ 8.525391, 54.965002 ], [ 8.118896, 55.516192 ], [ 8.085938, 56.541315 ], [ 8.261719, 56.806893 ], [ 8.547363, 57.106419 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.444949 ], [ 10.579834, 57.727619 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.548548 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.144287, 47.040182 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.902344, 48.231991 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.303636 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.398193, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.234528 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 30.926514, 52.038977 ], [ 30.618896, 51.822198 ], [ 30.552979, 51.316881 ], [ 30.157471, 51.412912 ], [ 29.256592, 51.364921 ], [ 28.992920, 51.604372 ], [ 28.619385, 51.426614 ], [ 28.245850, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.334229, 51.828988 ], [ 25.334473, 51.910391 ], [ 24.554443, 51.890054 ], [ 24.005127, 51.618017 ], [ 23.532715, 51.577070 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.489470 ], [ 23.796387, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.532715, 53.468431 ], [ 23.488770, 53.910810 ], [ 24.455566, 53.904338 ], [ 25.543213, 54.284469 ], [ 25.773926, 54.844990 ], [ 26.586914, 55.166319 ], [ 26.499023, 55.615589 ], [ 27.103271, 55.782751 ], [ 28.179932, 56.170023 ], [ 27.861328, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.609131, 57.844751 ], [ 25.169678, 57.967331 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.345947, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 29.113770, 60.026441 ], [ 28.070068, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.004618 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 41.121826, 66.861082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.901653 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.759521, 65.494741 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.956299, 66.067090 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 12.150879, 47.115000 ], [ 12.381592, 46.769968 ], [ 13.809814, 46.505954 ], [ 13.699951, 46.012224 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.871988 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.634033, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.350425 ], [ 10.513916, 42.932296 ], [ 10.206299, 43.921637 ], [ 9.700928, 44.032321 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.763160 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.756592, 45.026950 ], [ 7.097168, 45.328979 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.821143 ], [ 8.316650, 46.164614 ], [ 8.492432, 46.004593 ], [ 8.964844, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.920654, 46.316584 ], [ 10.360107, 46.483265 ], [ 10.447998, 46.890232 ], [ 11.052246, 46.747389 ], [ 11.162109, 46.942762 ], [ 12.150879, 47.115000 ] ] ], [ [ [ 19.324951, 49.567978 ], [ 19.830322, 49.217597 ], [ 20.412598, 49.432413 ], [ 20.885010, 49.325122 ], [ 21.610107, 49.468124 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.821333 ], [ 22.082520, 48.421910 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.879513 ], [ 22.104492, 47.672786 ], [ 21.632080, 46.995241 ], [ 21.027832, 46.316584 ], [ 20.225830, 46.126556 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.317939 ], [ 22.884521, 42.000325 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.752930, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 20.786133, 40.979898 ], [ 20.610352, 41.087632 ], [ 20.467529, 41.516804 ], [ 20.588379, 41.853196 ], [ 20.522461, 42.220382 ], [ 20.280762, 42.317939 ], [ 20.072021, 42.585444 ], [ 19.808350, 42.496403 ], [ 19.742432, 42.690511 ], [ 19.302979, 42.195969 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.951320 ], [ 18.885498, 42.277309 ], [ 18.446045, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.205176 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.908447, 45.073521 ], [ 14.260254, 45.236218 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.721924, 45.498647 ], [ 14.414062, 45.467836 ], [ 14.600830, 45.637087 ], [ 14.941406, 45.467836 ], [ 15.325928, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.677490, 45.836454 ], [ 15.765381, 46.240652 ], [ 16.567383, 46.505954 ], [ 16.369629, 46.837650 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.336670, 47.709762 ], [ 16.907959, 47.717154 ], [ 16.984863, 48.122101 ], [ 16.885986, 48.465637 ], [ 17.105713, 48.814099 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.918701, 48.994636 ], [ 18.105469, 49.045070 ], [ 18.171387, 49.267805 ], [ 18.402100, 49.310799 ], [ 18.555908, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.907471, 49.432413 ], [ 19.324951, 49.567978 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.763672, 54.857640 ], [ 22.653809, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.554688, 66.861082 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.004618 ], [ 22.181396, 65.721594 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.411177 ], [ 19.775391, 63.607217 ], [ 17.852783, 62.749696 ], [ 17.116699, 61.338809 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.874756, 58.955674 ], [ 16.831055, 58.716894 ], [ 16.446533, 57.040730 ], [ 15.886230, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.106445, 55.404070 ], [ 12.941895, 55.360381 ], [ 12.623291, 56.304349 ], [ 11.788330, 57.439037 ], [ 11.030273, 58.853542 ], [ 11.469727, 59.433903 ], [ 12.304688, 60.119619 ], [ 12.634277, 61.291349 ], [ 11.997070, 61.799093 ], [ 11.931152, 63.129538 ], [ 12.579346, 64.067396 ], [ 13.568115, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.788168 ], [ 15.106201, 66.191574 ], [ 15.391846, 66.513260 ], [ 15.710449, 66.861082 ], [ 23.554688, 66.861082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.520752, 48.465637 ], [ 28.256836, 48.151428 ], [ 28.674316, 48.114767 ], [ 29.124756, 47.850031 ], [ 29.047852, 47.509780 ], [ 29.421387, 47.346267 ], [ 29.564209, 46.927759 ], [ 29.904785, 46.672056 ], [ 29.838867, 46.521076 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.346928 ], [ 29.168701, 46.377254 ], [ 29.069824, 46.513516 ], [ 28.861084, 46.437857 ], [ 28.937988, 46.255847 ], [ 28.663330, 45.935871 ], [ 28.487549, 45.598666 ], [ 28.234863, 45.490946 ], [ 28.685303, 45.305803 ], [ 29.146729, 45.460131 ], [ 29.608154, 45.290347 ], [ 29.630127, 45.034715 ], [ 29.146729, 44.816916 ], [ 28.839111, 44.910359 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.993164, 42.008489 ], [ 27.136230, 42.138968 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.884521, 42.000325 ], [ 22.379150, 42.317939 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.577355 ], [ 22.609863, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.478027, 44.410240 ], [ 22.708740, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.566162, 44.770137 ], [ 21.489258, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.225830, 46.126556 ], [ 21.027832, 46.316584 ], [ 21.632080, 46.995241 ], [ 22.104492, 47.672786 ], [ 22.708740, 47.879513 ], [ 23.148193, 48.092757 ], [ 23.763428, 47.982568 ], [ 24.400635, 47.982568 ], [ 24.873047, 47.739323 ], [ 25.213623, 47.886881 ], [ 25.949707, 47.982568 ], [ 26.202393, 48.217353 ], [ 26.619873, 48.217353 ], [ 26.861572, 48.370848 ], [ 27.520752, 48.465637 ] ] ], [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.096556 ], [ 26.499023, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.773926, 54.844990 ], [ 25.543213, 54.284469 ], [ 24.455566, 53.904338 ], [ 23.488770, 53.910810 ], [ 23.532715, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.796387, 52.689702 ], [ 23.203125, 52.489470 ], [ 23.510742, 52.025459 ], [ 23.532715, 51.577070 ], [ 24.027100, 50.701677 ], [ 23.928223, 50.422519 ], [ 23.422852, 50.310392 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.023461 ], [ 22.554932, 49.088258 ], [ 21.610107, 49.468124 ], [ 20.885010, 49.325122 ], [ 20.412598, 49.432413 ], [ 19.830322, 49.217597 ], [ 19.324951, 49.567978 ], [ 18.907471, 49.432413 ], [ 18.391113, 49.986552 ], [ 17.655029, 50.050085 ], [ 17.556152, 50.359480 ], [ 16.875000, 50.471491 ], [ 16.721191, 50.212064 ], [ 16.182861, 50.422519 ], [ 16.237793, 50.694718 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.103522 ], [ 14.611816, 51.747439 ], [ 14.688721, 52.086257 ], [ 14.436035, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.359131, 53.245495 ], [ 14.117432, 53.755207 ], [ 14.809570, 54.052939 ], [ 16.369629, 54.514704 ], [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 22.203369, 56.334812 ], [ 23.884277, 56.273861 ], [ 24.862061, 56.371335 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.206543, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.788818, 40.313043 ], [ 8.393555, 40.313043 ], [ 8.393555, 40.380028 ], [ 8.162842, 40.946714 ], [ 8.712158, 40.896906 ], [ 8.843994, 40.979898 ], [ 9.206543, 41.211722 ] ] ], [ [ [ 9.920654, 54.983918 ], [ 9.942627, 54.597528 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.953125, 54.194583 ], [ 12.524414, 54.470038 ], [ 13.645020, 54.072283 ], [ 14.117432, 53.755207 ], [ 14.809570, 54.052939 ], [ 16.369629, 54.514704 ], [ 17.622070, 54.851315 ], [ 18.621826, 54.680183 ], [ 18.698730, 54.438103 ], [ 19.665527, 54.425322 ], [ 20.895996, 54.310114 ], [ 22.730713, 54.329338 ], [ 23.247070, 54.220285 ], [ 23.488770, 53.910810 ], [ 23.532715, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.796387, 52.689702 ], [ 23.203125, 52.489470 ], [ 23.510742, 52.025459 ], [ 23.532715, 51.577070 ], [ 24.027100, 50.701677 ], [ 23.928223, 50.422519 ], [ 23.422852, 50.310392 ], [ 22.521973, 49.475263 ], [ 22.774658, 49.023461 ], [ 22.554932, 49.088258 ], [ 22.280273, 48.821333 ], [ 22.082520, 48.421910 ], [ 22.642822, 48.151428 ], [ 22.708740, 47.879513 ], [ 22.104492, 47.672786 ], [ 21.632080, 46.995241 ], [ 21.027832, 46.316584 ], [ 20.225830, 46.126556 ], [ 20.764160, 45.736860 ], [ 20.874023, 45.413876 ], [ 21.489258, 45.182037 ], [ 21.566162, 44.770137 ], [ 22.148438, 44.480830 ], [ 22.456055, 44.699898 ], [ 22.708740, 44.574817 ], [ 22.478027, 44.410240 ], [ 22.653809, 44.237328 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.644026 ], [ 22.983398, 43.213183 ], [ 22.609863, 42.900113 ], [ 22.434082, 42.577355 ], [ 22.543945, 42.463993 ], [ 22.379150, 42.317939 ], [ 22.884521, 42.000325 ], [ 22.950439, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.060547, 41.145570 ], [ 21.752930, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.016846, 40.838749 ], [ 21.005859, 40.580585 ], [ 20.676270, 40.430224 ], [ 20.654297, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.160156, 41.951320 ], [ 18.885498, 42.277309 ], [ 18.446045, 42.480200 ], [ 17.512207, 42.851806 ], [ 16.929932, 43.205176 ], [ 16.018066, 43.508721 ], [ 15.172119, 44.245199 ], [ 15.380859, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.908447, 45.073521 ], [ 14.260254, 45.236218 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.677979, 45.483244 ], [ 13.941650, 45.590978 ], [ 13.139648, 45.736860 ], [ 12.326660, 45.383019 ], [ 12.381592, 44.887012 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.087585 ], [ 13.524170, 43.588349 ], [ 14.029541, 42.763146 ], [ 15.139160, 41.951320 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.886230, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.871988 ], [ 18.380127, 40.354917 ], [ 18.402100, 40.313043 ], [ 17.556152, 40.313043 ], [ 16.875000, 40.438586 ], [ 16.787109, 40.313043 ], [ 14.897461, 40.313043 ], [ 14.699707, 40.605612 ], [ 14.062500, 40.788860 ], [ 13.853760, 40.979898 ], [ 13.634033, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.705729 ], [ 11.195068, 42.350425 ], [ 10.513916, 42.932296 ], [ 10.206299, 43.921637 ], [ 9.700928, 44.032321 ], [ 8.887939, 44.363133 ], [ 8.426514, 44.229457 ], [ 7.855225, 43.763160 ], [ 7.437744, 43.691708 ], [ 7.547607, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.756592, 45.026950 ], [ 7.097168, 45.328979 ], [ 6.800537, 45.706179 ], [ 6.844482, 45.989329 ], [ 6.503906, 46.430285 ], [ 6.020508, 46.271037 ], [ 6.042480, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.734619, 47.539455 ], [ 7.196045, 47.450380 ], [ 7.470703, 47.620975 ], [ 7.591553, 48.334343 ], [ 8.096924, 49.016257 ], [ 6.657715, 49.203243 ], [ 6.185303, 49.460984 ], [ 5.899658, 49.439557 ], [ 5.679932, 49.525208 ], [ 4.801025, 49.986552 ], [ 4.284668, 49.908787 ], [ 3.592529, 50.380502 ], [ 3.120117, 50.778155 ], [ 2.658691, 50.798991 ], [ 2.515869, 51.144894 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.702148, 53.094024 ], [ 6.075439, 53.507651 ], [ 6.910400, 53.481508 ], [ 7.097168, 53.690201 ], [ 7.932129, 53.748711 ], [ 8.118896, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.569336, 54.393352 ], [ 8.525391, 54.965002 ], [ 9.283447, 54.832336 ], [ 9.920654, 54.983918 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.878906, 42.884015 ], [ 0.000000, 42.666281 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ], [ 1.823730, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.894100 ], [ 2.098389, 41.228249 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.680638 ], [ 0.318604, 40.313043 ], [ -0.878906, 40.313043 ], [ -0.878906, 42.884015 ] ] ], [ [ [ 40.078125, 43.548548 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.978027, 41.244772 ], [ 43.582764, 41.087632 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.548548 ] ] ], [ [ [ 33.750000, 52.335339 ], [ 34.398193, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.303636 ], [ 39.671631, 48.785152 ], [ 39.902344, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.017716 ], [ 36.760254, 46.694667 ], [ 35.826416, 46.641894 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.332520, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.750488, 46.331758 ], [ 31.673584, 46.702202 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.146729, 45.460131 ], [ 28.685303, 45.305803 ], [ 28.234863, 45.490946 ], [ 28.487549, 45.598666 ], [ 28.663330, 45.935871 ], [ 28.937988, 46.255847 ], [ 28.861084, 46.437857 ], [ 29.069824, 46.513516 ], [ 29.168701, 46.377254 ], [ 29.761963, 46.346928 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.521076 ], [ 29.904785, 46.672056 ], [ 29.564209, 46.927759 ], [ 29.421387, 47.346267 ], [ 29.047852, 47.509780 ], [ 29.124756, 47.850031 ], [ 28.674316, 48.114767 ], [ 28.256836, 48.151428 ], [ 27.520752, 48.465637 ], [ 26.861572, 48.370848 ], [ 26.619873, 48.217353 ], [ 26.202393, 48.217353 ], [ 25.949707, 47.982568 ], [ 25.213623, 47.886881 ], [ 24.873047, 47.739323 ], [ 24.400635, 47.982568 ], [ 23.763428, 47.982568 ], [ 23.148193, 48.092757 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.821333 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.023461 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.701677 ], [ 23.532715, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.890054 ], [ 25.334473, 51.910391 ], [ 26.334229, 51.828988 ], [ 27.454834, 51.590723 ], [ 28.245850, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.604372 ], [ 29.256592, 51.364921 ], [ 30.157471, 51.412912 ], [ 30.552979, 51.316881 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.038977 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.234528 ], [ 33.750000, 52.335339 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 40.078125, 43.548548 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 45.878906, 42.057450 ], [ 45.878906, 41.153842 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.978027, 41.244772 ], [ 43.582764, 41.087632 ], [ 42.615967, 41.582580 ], [ 41.550293, 41.533254 ], [ 41.704102, 41.959490 ], [ 41.451416, 42.642041 ], [ 40.880127, 43.012681 ], [ 40.319824, 43.125043 ], [ 39.957275, 43.436966 ], [ 40.078125, 43.548548 ] ] ], [ [ [ 25.861816, 59.612212 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.472989 ], [ 28.135986, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.861328, 56.758746 ], [ 28.179932, 56.170023 ], [ 29.234619, 55.918430 ], [ 29.377441, 55.671389 ], [ 29.893799, 55.788929 ], [ 30.871582, 55.547281 ], [ 30.970459, 55.078367 ], [ 30.761719, 54.813348 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.975474 ], [ 31.728516, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.310791, 53.133590 ], [ 31.497803, 53.166534 ], [ 31.311035, 53.074228 ], [ 31.541748, 52.742943 ], [ 31.783447, 52.099757 ], [ 32.156982, 52.059246 ], [ 32.409668, 52.288323 ], [ 32.717285, 52.234528 ], [ 33.750000, 52.335339 ], [ 34.398193, 51.767840 ], [ 34.145508, 51.563412 ], [ 34.222412, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.375977, 50.771208 ], [ 35.354004, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.380502 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.922935 ], [ 40.067139, 49.603591 ], [ 40.078125, 49.303636 ], [ 39.671631, 48.785152 ], [ 39.902344, 48.231991 ], [ 39.737549, 47.901614 ], [ 38.770752, 47.827908 ], [ 38.254395, 47.546872 ], [ 38.221436, 47.100045 ], [ 37.430420, 47.017716 ], [ 36.760254, 46.694667 ], [ 35.826416, 46.641894 ], [ 34.958496, 46.271037 ], [ 35.024414, 45.652448 ], [ 35.507812, 45.406164 ], [ 36.529541, 45.467836 ], [ 36.331787, 45.112300 ], [ 35.244141, 44.941473 ], [ 33.881836, 44.363133 ], [ 33.332520, 44.566991 ], [ 33.552246, 45.034715 ], [ 32.453613, 45.328979 ], [ 32.629395, 45.521744 ], [ 33.585205, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.750488, 46.331758 ], [ 31.673584, 46.702202 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.035109 ], [ 29.608154, 45.290347 ], [ 29.630127, 45.034715 ], [ 29.146729, 44.816916 ], [ 28.839111, 44.910359 ], [ 28.564453, 43.707594 ], [ 28.037109, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.993164, 42.008489 ], [ 27.136230, 42.138968 ], [ 26.114502, 41.828642 ], [ 26.103516, 41.327326 ], [ 25.202637, 41.236511 ], [ 24.488525, 41.582580 ], [ 23.697510, 41.310824 ], [ 22.950439, 41.335576 ], [ 22.884521, 42.000325 ], [ 22.379150, 42.317939 ], [ 22.543945, 42.463993 ], [ 22.434082, 42.577355 ], [ 22.609863, 42.900113 ], [ 22.983398, 43.213183 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.008620 ], [ 22.653809, 44.237328 ], [ 22.478027, 44.410240 ], [ 22.708740, 44.574817 ], [ 22.456055, 44.699898 ], [ 22.148438, 44.480830 ], [ 21.566162, 44.770137 ], [ 21.489258, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.736860 ], [ 20.225830, 46.126556 ], [ 21.027832, 46.316584 ], [ 21.632080, 46.995241 ], [ 22.104492, 47.672786 ], [ 22.708740, 47.879513 ], [ 22.642822, 48.151428 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.821333 ], [ 22.554932, 49.088258 ], [ 22.774658, 49.023461 ], [ 22.521973, 49.475263 ], [ 23.422852, 50.310392 ], [ 23.928223, 50.422519 ], [ 24.027100, 50.701677 ], [ 23.532715, 51.577070 ], [ 23.510742, 52.025459 ], [ 23.203125, 52.489470 ], [ 23.796387, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.532715, 53.468431 ], [ 23.488770, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.329338 ], [ 22.653809, 54.584797 ], [ 22.763672, 54.857640 ], [ 22.313232, 55.015426 ], [ 21.269531, 55.191412 ], [ 21.060791, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.588135, 57.409461 ], [ 22.521973, 57.751076 ], [ 23.323975, 57.004850 ], [ 24.125977, 57.022794 ], [ 24.312744, 57.792089 ], [ 24.433594, 58.384438 ], [ 24.060059, 58.257508 ], [ 23.422852, 58.614056 ], [ 23.345947, 59.187185 ], [ 24.609375, 59.467408 ], [ 25.861816, 59.612212 ] ] ], [ [ [ 29.135742, 66.861082 ], [ 29.498291, 66.513260 ], [ 30.223389, 65.807279 ], [ 29.542236, 64.946813 ], [ 30.443115, 64.201596 ], [ 30.036621, 63.553446 ], [ 31.519775, 62.865169 ], [ 31.146240, 62.354707 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.500525 ], [ 26.257324, 60.424699 ], [ 24.499512, 60.059358 ], [ 22.873535, 59.844815 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.721571 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.608508 ], [ 21.533203, 63.189064 ], [ 22.445068, 63.816440 ], [ 24.730225, 64.900250 ], [ 25.400391, 65.109148 ], [ 25.290527, 65.535721 ], [ 23.906250, 66.004618 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.554688, 66.861082 ], [ 29.135742, 66.861082 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.742432, 42.690511 ], [ 19.808350, 42.496403 ], [ 20.072021, 42.585444 ], [ 20.280762, 42.317939 ], [ 20.522461, 42.220382 ], [ 20.588379, 41.853196 ], [ 20.467529, 41.516804 ], [ 20.610352, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.752930, 40.979898 ], [ 22.060547, 41.145570 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ], [ 26.608887, 41.557922 ], [ 26.312256, 40.979898 ], [ 26.301270, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 19.390869, 40.313043 ], [ 19.324951, 40.722283 ], [ 19.346924, 40.979898 ], [ 19.401855, 41.409776 ], [ 19.544678, 41.722131 ], [ 19.368896, 41.877741 ], [ 19.302979, 42.195969 ], [ 19.742432, 42.690511 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.114502, 41.828642 ], [ 26.608887, 41.557922 ], [ 26.312256, 40.979898 ], [ 26.301270, 40.938415 ], [ 26.059570, 40.822124 ], [ 25.444336, 40.855371 ], [ 24.927979, 40.946714 ], [ 23.719482, 40.688969 ], [ 24.180908, 40.313043 ], [ 22.983398, 40.313043 ], [ 22.818604, 40.472024 ], [ 22.675781, 40.313043 ], [ 20.654297, 40.313043 ], [ 20.676270, 40.430224 ], [ 21.005859, 40.580585 ], [ 21.016846, 40.838749 ], [ 21.676025, 40.930115 ], [ 21.752930, 40.979898 ], [ 22.060547, 41.145570 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.950439, 41.335576 ], [ 23.697510, 41.310824 ], [ 24.488525, 41.582580 ], [ 25.202637, 41.236511 ], [ 26.103516, 41.327326 ], [ 26.114502, 41.828642 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.087632 ], [ 43.637695, 40.979898 ], [ 43.758545, 40.738933 ], [ 43.670654, 40.313043 ], [ 27.158203, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.354736, 41.738528 ], [ 33.519287, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.557922 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.353271, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.517822, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.550293, 41.533254 ], [ 42.615967, 41.582580 ], [ 43.582764, 41.087632 ], [ 44.978027, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 27.158203, 40.313043 ], [ 27.279053, 40.421860 ], [ 28.817139, 40.455307 ], [ 29.102783, 40.979898 ], [ 29.245605, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.354736, 41.738528 ], [ 33.519287, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 27.993164, 42.008489 ], [ 28.114014, 41.623655 ], [ 28.992920, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 40.996484 ], [ 27.586670, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.608887, 40.313043 ], [ 26.246338, 40.313043 ], [ 26.048584, 40.613952 ], [ 26.059570, 40.822124 ], [ 26.301270, 40.938415 ], [ 26.312256, 40.979898 ], [ 26.608887, 41.557922 ], [ 26.114502, 41.828642 ], [ 27.136230, 42.138968 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 41.409776 ], [ 45.878906, 41.153842 ], [ 45.878906, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.978027, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.978027, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.175781, 40.988192 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 43.670654, 40.313043 ], [ 43.758545, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.087632 ], [ 44.978027, 41.244772 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.878906, 66.861082 ], [ 45.878906, 42.057450 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.548548 ], [ 39.957275, 43.436966 ], [ 38.682861, 44.276671 ], [ 37.540283, 44.653024 ], [ 36.672363, 45.243953 ], [ 37.408447, 45.406164 ], [ 38.232422, 46.240652 ], [ 37.672119, 46.634351 ], [ 39.144287, 47.040182 ], [ 39.122314, 47.264320 ], [ 38.221436, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.827908 ], [ 39.737549, 47.901614 ], [ 39.902344, 48.231991 ], [ 39.671631, 48.785152 ], [ 40.078125, 49.303636 ], [ 40.067139, 49.603591 ], [ 38.594971, 49.922935 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.380502 ], [ 36.628418, 50.226124 ], [ 35.354004, 50.576260 ], [ 35.375977, 50.771208 ], [ 35.024414, 51.206883 ], [ 34.222412, 51.255040 ], [ 34.145508, 51.563412 ], [ 34.398193, 51.767840 ], [ 33.750000, 52.335339 ], [ 32.717285, 52.234528 ], [ 32.409668, 52.288323 ], [ 32.156982, 52.059246 ], [ 31.783447, 52.099757 ], [ 31.541748, 52.742943 ], [ 31.311035, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.310791, 53.133590 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.728516, 53.794162 ], [ 31.794434, 53.975474 ], [ 31.387939, 54.156001 ], [ 30.761719, 54.813348 ], [ 30.970459, 55.078367 ], [ 30.871582, 55.547281 ], [ 29.893799, 55.788929 ], [ 29.377441, 55.671389 ], [ 29.234619, 55.918430 ], [ 28.179932, 56.170023 ], [ 27.861328, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.135986, 59.299552 ], [ 27.982178, 59.472989 ], [ 29.113770, 60.026441 ], [ 28.070068, 60.500525 ], [ 30.212402, 61.778319 ], [ 31.146240, 62.354707 ], [ 31.519775, 62.865169 ], [ 30.036621, 63.553446 ], [ 30.443115, 64.201596 ], [ 29.542236, 64.946813 ], [ 30.223389, 65.807279 ], [ 29.498291, 66.513260 ], [ 29.135742, 66.861082 ], [ 41.121826, 66.861082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 38.386230, 66.000150 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.761585 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.901653 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.415921 ], [ 36.232910, 64.110602 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.440674, 64.764759 ], [ 39.759521, 65.494741 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.956299, 66.067090 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.878906, 66.861082 ] ] ], [ [ [ 21.269531, 55.191412 ], [ 22.313232, 55.015426 ], [ 22.763672, 54.857640 ], [ 22.653809, 54.584797 ], [ 22.730713, 54.329338 ], [ 20.895996, 54.310114 ], [ 19.665527, 54.425322 ], [ 19.885254, 54.863963 ], [ 21.269531, 55.191412 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.184211 ], [ 31.300049, 70.451508 ], [ 30.003662, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.597412, 69.064638 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.162746 ], [ 26.180420, 69.824471 ], [ 25.686035, 69.092100 ], [ 24.741211, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.357178, 68.839735 ], [ 21.247559, 69.368703 ], [ 20.643311, 69.103859 ], [ 20.028076, 69.064638 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.011685 ], [ 16.765137, 68.011685 ], [ 15.391846, 66.513260 ], [ 15.073242, 66.160511 ], [ 12.700195, 66.160511 ], [ 13.128662, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ], [ 23.027344, 70.199994 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.984770 ], [ 28.168945, 71.184211 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.621338, 79.171335 ], [ 21.544189, 78.956665 ], [ 19.028320, 78.562667 ], [ 18.468018, 77.825640 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.808262 ], [ 15.919189, 76.770602 ], [ 13.765869, 77.379906 ], [ 14.666748, 77.734951 ], [ 13.172607, 78.025574 ], [ 11.228027, 78.870048 ], [ 10.766602, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.884521, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.730225, 77.853412 ], [ 22.489014, 77.444552 ], [ 20.731201, 77.676467 ], [ 21.412354, 77.934055 ], [ 20.808105, 78.253624 ], [ 22.884521, 78.455425 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.643311, 69.103859 ], [ 21.983643, 68.616534 ], [ 23.543701, 67.937524 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.774414, 66.160511 ], [ 15.073242, 66.160511 ], [ 15.391846, 66.513260 ], [ 16.105957, 67.301737 ], [ 16.765137, 68.011685 ], [ 17.731934, 68.011685 ], [ 17.995605, 68.568414 ], [ 19.885254, 68.407268 ], [ 20.028076, 69.064638 ], [ 20.643311, 69.103859 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.168945, 71.184211 ], [ 31.300049, 70.451508 ], [ 30.003662, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.154740 ], [ 28.597412, 69.064638 ], [ 29.014893, 69.767557 ], [ 27.729492, 70.162746 ], [ 26.180420, 69.824471 ], [ 25.686035, 69.092100 ], [ 24.741211, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.357178, 68.839735 ], [ 21.247559, 69.368703 ], [ 20.643311, 69.103859 ], [ 20.028076, 69.064638 ], [ 19.885254, 68.407268 ], [ 17.995605, 68.568414 ], [ 17.731934, 68.011685 ], [ 16.765137, 68.011685 ], [ 15.391846, 66.513260 ], [ 15.073242, 66.160511 ], [ 12.700195, 66.160511 ], [ 13.128662, 66.513260 ], [ 14.765625, 67.809245 ], [ 16.435547, 68.564399 ], [ 19.182129, 69.816891 ], [ 21.379395, 70.255741 ], [ 23.027344, 70.199994 ], [ 24.543457, 71.031249 ], [ 26.367188, 70.984770 ], [ 28.168945, 71.184211 ] ] ], [ [ [ 19.896240, 79.335219 ], [ 20.621338, 79.171335 ], [ 21.544189, 78.956665 ], [ 19.028320, 78.562667 ], [ 18.468018, 77.825640 ], [ 17.600098, 77.636542 ], [ 17.116699, 76.808262 ], [ 15.919189, 76.770602 ], [ 13.765869, 77.379906 ], [ 14.666748, 77.734951 ], [ 13.172607, 78.025574 ], [ 11.228027, 78.870048 ], [ 10.766602, 79.335219 ], [ 19.896240, 79.335219 ] ] ], [ [ [ 22.884521, 78.455425 ], [ 23.280029, 78.080156 ], [ 24.730225, 77.853412 ], [ 22.489014, 77.444552 ], [ 20.731201, 77.676467 ], [ 21.412354, 77.934055 ], [ 20.808105, 78.253624 ], [ 22.884521, 78.455425 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.729492, 70.162746 ], [ 29.014893, 69.767557 ], [ 28.597412, 69.064638 ], [ 28.443604, 68.362750 ], [ 29.981689, 67.696941 ], [ 29.058838, 66.942972 ], [ 29.498291, 66.513260 ], [ 29.860840, 66.160511 ], [ 23.774414, 66.160511 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.543701, 67.937524 ], [ 21.983643, 68.616534 ], [ 20.643311, 69.103859 ], [ 21.247559, 69.368703 ], [ 22.357178, 68.839735 ], [ 23.664551, 68.891231 ], [ 24.741211, 68.648556 ], [ 25.686035, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.729492, 70.162746 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.703613, 66.160511 ], [ 41.330566, 66.160511 ], [ 42.099609, 66.473823 ] ] ], [ [ [ 27.729492, 70.162746 ], [ 29.014893, 69.767557 ], [ 28.597412, 69.064638 ], [ 29.399414, 69.154740 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.903893 ], [ 33.771973, 69.302794 ], [ 36.518555, 69.064638 ], [ 40.297852, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.364014, 66.160511 ], [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.757250 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.244385, 66.160511 ], [ 23.774414, 66.160511 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.543701, 67.937524 ], [ 21.983643, 68.616534 ], [ 20.643311, 69.103859 ], [ 21.247559, 69.368703 ], [ 22.357178, 68.839735 ], [ 23.664551, 68.891231 ], [ 24.741211, 68.648556 ], [ 25.686035, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.729492, 70.162746 ] ] ], [ [ [ 43.450928, 68.568414 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.596662 ], [ 45.560303, 67.567334 ], [ 45.560303, 67.007428 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.568414 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 37.441406, 66.160511 ], [ 35.375977, 66.513260 ], [ 33.914795, 66.757250 ], [ 33.189697, 66.631198 ], [ 33.453369, 66.513260 ], [ 34.244385, 66.160511 ], [ 29.860840, 66.160511 ], [ 29.498291, 66.513260 ], [ 29.058838, 66.942972 ], [ 29.981689, 67.696941 ], [ 28.443604, 68.362750 ], [ 28.597412, 69.064638 ], [ 29.399414, 69.154740 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.903893 ], [ 33.771973, 69.302794 ], [ 36.518555, 69.064638 ], [ 40.297852, 67.933397 ], [ 41.055908, 67.458082 ], [ 41.132812, 66.791909 ], [ 40.539551, 66.513260 ], [ 40.012207, 66.266856 ], [ 39.364014, 66.160511 ], [ 37.441406, 66.160511 ] ] ], [ [ [ 41.330566, 66.160511 ], [ 42.099609, 66.473823 ], [ 43.022461, 66.416748 ], [ 43.703613, 66.160511 ], [ 41.330566, 66.160511 ] ] ], [ [ [ 44.022217, 66.160511 ], [ 44.329834, 66.513260 ], [ 44.538574, 66.757250 ], [ 43.703613, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.450928, 68.568414 ], [ 45.000000, 68.395135 ], [ 45.878906, 68.293779 ], [ 45.878906, 67.596662 ], [ 45.560303, 67.567334 ], [ 45.560303, 67.007428 ], [ 45.878906, 66.874030 ], [ 45.878906, 66.160511 ], [ 44.022217, 66.160511 ] ] ] ] } } ] } ] } , @@ -573,27 +547,27 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.339844, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.339844, 41.640078 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.219482, 41.640078 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.129021 ], [ 45.219727, 41.409776 ], [ 44.967041, 41.253032 ], [ 44.121094, 41.153842 ], [ 44.121094, 41.640078 ], [ 46.219482, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.970185 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 46.109619, 33.017876 ], [ 47.340088, 32.463426 ], [ 47.845459, 31.709476 ], [ 47.691650, 30.987028 ], [ 48.010254, 30.987028 ], [ 48.021240, 30.448674 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.307129, 30.059586 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.555576 ], [ 48.812256, 27.693256 ], [ 49.295654, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.218506, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.240479, 25.601902 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 21.993989 ], [ 54.997559, 19.993998 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.277219 ], [ 46.373291, 17.235252 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 39.385264 ] ] ], [ [ [ 44.121094, 40.094882 ], [ 44.395752, 40.002372 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ], [ 44.121094, 40.094882 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ], [ [ [ 44.121094, 39.385264 ], [ 44.417725, 38.281313 ], [ 44.219971, 37.970185 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.756490 ], [ 45.417480, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.750640 ], [ 45.417480, 33.970698 ], [ 46.109619, 33.017876 ], [ 47.340088, 32.463426 ], [ 47.845459, 31.709476 ], [ 47.691650, 30.987028 ], [ 48.010254, 30.987028 ], [ 48.021240, 30.448674 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.307129, 30.059586 ], [ 46.571045, 29.094577 ], [ 47.460938, 28.998532 ], [ 47.713623, 28.526622 ], [ 48.416748, 28.555576 ], [ 48.812256, 27.693256 ], [ 49.295654, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.218506, 26.273714 ], [ 50.119629, 25.938287 ], [ 50.240479, 25.601902 ], [ 50.526123, 25.324167 ], [ 50.657959, 24.996016 ], [ 50.811768, 24.756808 ], [ 51.108398, 24.557116 ], [ 51.394043, 24.627045 ], [ 51.580811, 24.246965 ], [ 51.613770, 24.016362 ], [ 51.998291, 22.998852 ], [ 55.008545, 22.492257 ], [ 55.206299, 22.705255 ], [ 55.667725, 21.993989 ], [ 54.997559, 19.993998 ], [ 51.998291, 18.999803 ], [ 49.119873, 18.615013 ], [ 48.186035, 18.166730 ], [ 47.471924, 17.119793 ], [ 46.999512, 16.951724 ], [ 46.746826, 17.277219 ], [ 46.373291, 17.235252 ], [ 45.406494, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.434511 ], [ 44.121094, 17.413546 ], [ 44.121094, 39.385264 ] ] ], [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.615234, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.121094, 39.436193 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.253032 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.274790 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.565430, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.151837 ], [ 67.829590, 37.142803 ], [ 67.082520, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.970185 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.380371, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 78.706055, 41.640078 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 56.997070, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.121094, 9.026153 ], [ 45.000000, 8.700499 ], [ 46.944580, 7.993957 ], [ 47.790527, 8.004837 ], [ 45.000000, 5.036227 ], [ 44.967041, 5.003394 ], [ 44.121094, 4.970560 ], [ 44.121094, 9.026153 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.229736, 39.044786 ], [ 48.856201, 38.814031 ], [ 48.889160, 38.315801 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.361816, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.691650, 39.504041 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 44.967041, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.339844, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.757324, 41.640078 ], [ 49.108887, 41.286062 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.178873 ], [ 49.394531, 39.402244 ], [ 49.229736, 39.044786 ], [ 48.856201, 38.814031 ], [ 48.889160, 38.315801 ], [ 48.636475, 38.272689 ], [ 48.010254, 38.796908 ], [ 48.361816, 39.291797 ], [ 48.065186, 39.580290 ], [ 47.691650, 39.504041 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.032715, 39.631077 ], [ 45.615234, 39.901309 ], [ 45.889893, 40.220830 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 44.967041, 41.253032 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.129021 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.219482, 41.640078 ], [ 46.900635, 41.640078 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.409776 ], [ 48.339844, 41.640078 ], [ 48.757324, 41.640078 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.296631, 39.470125 ], [ 45.736084, 39.470125 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.736946 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.791260, 39.715638 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 69.554443, 41.640078 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.599121, 41.640078 ], [ 69.554443, 41.640078 ] ] ], [ [ [ 55.964355, 41.640078 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.118408, 41.640078 ], [ 55.964355, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.074219, 26.056783 ], [ 56.260986, 25.710837 ], [ 56.392822, 24.926295 ], [ 55.887451, 24.916331 ], [ 55.810547, 24.266997 ], [ 55.986328, 24.126702 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.239258, 23.110049 ], [ 55.206299, 22.705255 ], [ 55.008545, 22.492257 ], [ 51.998291, 22.998852 ], [ 51.613770, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.800537, 24.016362 ], [ 52.580566, 24.176825 ], [ 54.008789, 24.116675 ], [ 54.689941, 24.796708 ], [ 55.437012, 25.433353 ], [ 56.074219, 26.056783 ] ] ], [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.602783, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ], [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.691650, 39.504041 ], [ 48.065186, 39.580290 ], [ 48.361816, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.889160, 38.315801 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.370157 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.387617 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.809326, 34.406910 ], [ 60.534668, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.787109, 30.732393 ], [ 60.875244, 29.831114 ], [ 61.369629, 29.305561 ], [ 61.776123, 28.700225 ], [ 62.731934, 28.256006 ], [ 62.753906, 27.381523 ], [ 63.237305, 27.215556 ], [ 63.314209, 26.755421 ], [ 61.875000, 26.234302 ], [ 61.501465, 25.075648 ], [ 59.622803, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.403564, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.021240, 30.448674 ], [ 48.010254, 30.987028 ], [ 47.691650, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.463426 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.219971, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.555576 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.074219, 26.056783 ], [ 56.260986, 25.710837 ], [ 56.392822, 24.926295 ], [ 55.887451, 24.916331 ], [ 55.810547, 24.266997 ], [ 55.986328, 24.126702 ], [ 55.524902, 23.936055 ], [ 55.524902, 23.523700 ], [ 55.239258, 23.110049 ], [ 55.206299, 22.705255 ], [ 55.008545, 22.492257 ], [ 51.998291, 22.998852 ], [ 51.613770, 24.016362 ], [ 51.580811, 24.246965 ], [ 51.756592, 24.297040 ], [ 51.800537, 24.016362 ], [ 52.580566, 24.176825 ], [ 54.008789, 24.116675 ], [ 54.689941, 24.796708 ], [ 55.437012, 25.433353 ], [ 56.074219, 26.056783 ] ] ], [ [ [ 51.284180, 26.115986 ], [ 51.591797, 25.799891 ], [ 51.602783, 25.214881 ], [ 51.394043, 24.627045 ], [ 51.108398, 24.557116 ], [ 50.811768, 24.756808 ], [ 50.745850, 25.482951 ], [ 51.009521, 26.007424 ], [ 51.284180, 26.115986 ] ] ], [ [ [ 47.307129, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.098145, 29.305561 ], [ 48.416748, 28.555576 ], [ 47.713623, 28.526622 ], [ 47.460938, 28.998532 ], [ 46.571045, 29.094577 ], [ 47.307129, 30.059586 ] ] ], [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.380371, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.970185 ], [ 66.522217, 37.361426 ], [ 66.214600, 37.396346 ], [ 65.742188, 37.657732 ], [ 65.588379, 37.300275 ], [ 64.742432, 37.107765 ], [ 64.544678, 36.315125 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.853440 ], [ 62.984619, 35.406961 ], [ 62.226562, 35.272532 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.900865 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.921143, 40.871988 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 78.706055, 41.640078 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.071069 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 73.828125, 39.892880 ], [ 73.959961, 39.656456 ], [ 73.674316, 39.427707 ], [ 71.784668, 39.274790 ], [ 70.554199, 39.605688 ], [ 69.466553, 39.529467 ], [ 69.565430, 40.103286 ], [ 70.653076, 39.935013 ], [ 71.015625, 40.245992 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.525030 ], [ 70.576172, 41.640078 ], [ 78.706055, 41.640078 ] ] ], [ [ [ 44.967041, 41.253032 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.889893, 40.220830 ], [ 45.615234, 39.901309 ], [ 46.032715, 39.631077 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.736946 ], [ 45.736084, 39.317300 ], [ 45.736084, 39.470125 ], [ 45.296631, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.715638 ], [ 44.395752, 40.002372 ], [ 44.121094, 40.094882 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.253032 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.051270, 41.640078 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.269550 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.380371, 40.052848 ], [ 63.522949, 39.359785 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.544189, 37.970185 ], [ 66.522217, 37.361426 ], [ 67.082520, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.137207, 37.020098 ], [ 68.862305, 37.343959 ], [ 69.202881, 37.151561 ], [ 69.521484, 37.605528 ], [ 70.114746, 37.588119 ], [ 70.268555, 37.735969 ], [ 70.378418, 38.134557 ], [ 70.806885, 38.487995 ], [ 71.345215, 38.255436 ], [ 71.235352, 37.952861 ], [ 71.542969, 37.900865 ], [ 71.455078, 37.063944 ], [ 71.850586, 36.738884 ], [ 72.191162, 36.949892 ], [ 72.641602, 37.046409 ], [ 73.256836, 37.492294 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.916260, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.268311, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.619873, 35.155846 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.343436 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.016242 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.100745 ], [ 69.268799, 32.500496 ], [ 69.323730, 31.896214 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.796631, 31.578535 ], [ 67.686768, 31.297328 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.468297 ], [ 64.346924, 29.554345 ], [ 64.149170, 29.343875 ], [ 63.555908, 29.468297 ], [ 62.556152, 29.315141 ], [ 60.875244, 29.831114 ], [ 61.787109, 30.732393 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.532237 ], [ 60.534668, 33.678640 ], [ 60.809326, 34.406910 ], [ 61.215820, 35.648369 ], [ 61.127930, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.518440 ], [ 57.326660, 38.030786 ], [ 56.623535, 38.117272 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.387617 ], [ 53.920898, 37.195331 ], [ 53.734131, 37.900865 ], [ 53.876953, 38.950865 ], [ 53.096924, 39.291797 ], [ 53.360596, 39.977120 ], [ 52.690430, 40.036027 ], [ 52.921143, 40.871988 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.964844, 41.640078 ], [ 55.118408, 41.640078 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.327326 ], [ 56.997070, 41.640078 ], [ 60.051270, 41.640078 ] ] ], [ [ [ 52.888184, 41.640078 ], [ 52.811279, 41.137296 ], [ 52.569580, 41.640078 ], [ 52.888184, 41.640078 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.042480, 10.639014 ], [ 50.833740, 10.282491 ], [ 50.559082, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.746582, 4.214943 ], [ 46.571045, 2.855263 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.404649 ], [ 49.273682, 11.426187 ], [ 49.735107, 11.576907 ], [ 50.262451, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ], [ [ [ 44.791260, 39.715638 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.736946 ], [ 46.505127, 38.771216 ], [ 47.691650, 39.504041 ], [ 48.065186, 39.580290 ], [ 48.361816, 39.291797 ], [ 48.010254, 38.796908 ], [ 48.636475, 38.272689 ], [ 48.889160, 38.315801 ], [ 49.196777, 37.579413 ], [ 50.152588, 37.370157 ], [ 50.844727, 36.870832 ], [ 52.261963, 36.703660 ], [ 53.822021, 36.967449 ], [ 53.920898, 37.195331 ], [ 54.799805, 37.387617 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.623535, 38.117272 ], [ 57.326660, 38.030786 ], [ 58.436279, 37.518440 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.127930, 36.491973 ], [ 61.215820, 35.648369 ], [ 60.809326, 34.406910 ], [ 60.534668, 33.678640 ], [ 60.963135, 33.532237 ], [ 60.534668, 32.981020 ], [ 60.864258, 32.184911 ], [ 60.941162, 31.550453 ], [ 61.699219, 31.381779 ], [ 61.787109, 30.732393 ], [ 60.875244, 29.831114 ], [ 62.556152, 29.315141 ], [ 63.555908, 29.468297 ], [ 64.149170, 29.343875 ], [ 64.346924, 29.554345 ], [ 65.050049, 29.468297 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.939697, 31.306715 ], [ 67.686768, 31.297328 ], [ 67.796631, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.268799, 32.500496 ], [ 69.686279, 33.100745 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.016242 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.343436 ], [ 71.114502, 34.732584 ], [ 71.619873, 35.155846 ], [ 71.499023, 35.648369 ], [ 71.268311, 36.075742 ], [ 71.850586, 36.509636 ], [ 72.916260, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.496456 ], [ 76.871338, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.454346, 32.759562 ], [ 75.256348, 32.268555 ], [ 74.410400, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.828369, 28.960089 ], [ 71.773682, 27.916767 ], [ 70.620117, 27.984700 ], [ 69.510498, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.279541, 25.720735 ], [ 70.850830, 25.214881 ], [ 71.048584, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.181152, 23.694835 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 59.622803, 25.383735 ], [ 58.524170, 25.611810 ], [ 57.403564, 25.740529 ], [ 56.975098, 26.961246 ], [ 56.491699, 27.137368 ], [ 55.722656, 26.961246 ], [ 54.711914, 26.480407 ], [ 53.492432, 26.814266 ], [ 52.481689, 27.576460 ], [ 51.525879, 27.868217 ], [ 50.855713, 28.815800 ], [ 50.119629, 30.145127 ], [ 49.581299, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.021240, 30.448674 ], [ 48.010254, 30.987028 ], [ 47.691650, 30.987028 ], [ 47.845459, 31.709476 ], [ 47.340088, 32.463426 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.970698 ], [ 45.648193, 34.750640 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.417480, 35.978006 ], [ 45.000000, 36.756490 ], [ 44.769287, 37.169072 ], [ 44.219971, 37.970185 ], [ 44.417725, 38.281313 ], [ 44.121094, 39.385264 ], [ 44.121094, 39.436193 ], [ 44.791260, 39.715638 ] ] ], [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.040771, 20.478482 ], [ 57.832031, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.667725, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.174072, 15.591293 ], [ 51.174316, 15.178181 ], [ 49.581299, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.693933 ], [ 44.494629, 12.715368 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.219727, 17.434511 ], [ 45.406494, 17.329664 ], [ 46.373291, 17.235252 ], [ 46.746826, 17.277219 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.667725, 21.993989 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 70.576172, 41.640078 ], [ 70.422363, 41.525030 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.245992 ], [ 70.598145, 40.220830 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.016113, 40.086477 ], [ 68.532715, 39.529467 ], [ 67.697754, 39.580290 ], [ 67.445068, 39.138582 ], [ 68.181152, 38.899583 ], [ 68.389893, 38.151837 ], [ 67.829590, 37.142803 ], [ 67.082520, 37.352693 ], [ 66.522217, 37.361426 ], [ 66.544189, 37.970185 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.522949, 39.359785 ], [ 62.380371, 40.052848 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.269550 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 60.051270, 41.640078 ], [ 66.599121, 41.640078 ], [ 66.719971, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.663973 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 69.554443, 41.640078 ], [ 70.576172, 41.640078 ] ] ], [ [ [ 56.997070, 41.640078 ], [ 57.095947, 41.327326 ], [ 55.964355, 41.310824 ], [ 55.964355, 41.640078 ], [ 56.997070, 41.640078 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.303264 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.108398, 12.028576 ], [ 51.130371, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.042480, 10.639014 ], [ 50.833740, 10.282491 ], [ 50.559082, 9.199715 ], [ 50.075684, 8.080985 ], [ 49.449463, 6.806444 ], [ 48.592529, 5.342583 ], [ 47.746582, 4.214943 ], [ 46.571045, 2.855263 ], [ 45.560303, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.121094, 1.087581 ], [ 44.121094, 4.970560 ], [ 44.967041, 5.003394 ], [ 45.000000, 5.036227 ], [ 47.790527, 8.004837 ], [ 46.944580, 7.993957 ], [ 45.000000, 8.700499 ], [ 44.121094, 9.026153 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.444598 ], [ 45.000000, 10.541821 ], [ 45.560303, 10.692996 ], [ 46.647949, 10.811724 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.383789, 11.372339 ], [ 48.944092, 11.404649 ], [ 49.273682, 11.426187 ], [ 49.735107, 11.576907 ], [ 50.262451, 11.673755 ], [ 50.734863, 12.017830 ], [ 51.108398, 12.028576 ] ] ], [ [ [ 56.392822, 24.926295 ], [ 56.843262, 24.236947 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.447021, 22.654572 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.040771, 20.478482 ], [ 57.832031, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.062118 ], [ 57.700195, 18.947856 ], [ 57.238770, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.667725, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.272217, 17.224758 ], [ 54.788818, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.709863 ], [ 53.107910, 16.646718 ], [ 52.382812, 16.383391 ], [ 52.196045, 15.940202 ], [ 52.174072, 15.591293 ], [ 51.174316, 15.178181 ], [ 49.581299, 14.711135 ], [ 48.680420, 13.998037 ], [ 48.240967, 13.944730 ], [ 47.944336, 14.008696 ], [ 47.351074, 13.592600 ], [ 46.713867, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.293411 ], [ 45.406494, 13.025966 ], [ 45.142822, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.693933 ], [ 44.494629, 12.715368 ], [ 44.176025, 12.586732 ], [ 44.121094, 12.586732 ], [ 44.121094, 17.413546 ], [ 45.000000, 17.434511 ], [ 45.219727, 17.434511 ], [ 45.406494, 17.329664 ], [ 46.373291, 17.235252 ], [ 46.746826, 17.277219 ], [ 46.999512, 16.951724 ], [ 47.471924, 17.119793 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 51.998291, 18.999803 ], [ 54.997559, 19.993998 ], [ 55.667725, 21.993989 ], [ 55.206299, 22.705255 ], [ 55.239258, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.524902, 23.936055 ], [ 55.986328, 24.126702 ], [ 55.810547, 24.266997 ], [ 55.887451, 24.916331 ], [ 56.392822, 24.926295 ] ] ], [ [ [ 56.359863, 26.391870 ], [ 56.491699, 26.303264 ], [ 56.392822, 25.898762 ], [ 56.260986, 25.710837 ], [ 56.074219, 26.056783 ], [ 56.359863, 26.391870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.565430, 40.103286 ], [ 69.466553, 39.529467 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.274790 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.422526 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.916260, 36.721274 ], [ 71.850586, 36.509636 ], [ 71.268311, 36.075742 ], [ 71.499023, 35.648369 ], [ 71.619873, 35.155846 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.343436 ], [ 70.883789, 33.988918 ], [ 69.927979, 34.016242 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.100745 ], [ 69.268799, 32.500496 ], [ 69.323730, 31.896214 ], [ 68.928223, 31.615966 ], [ 68.554688, 31.709476 ], [ 67.796631, 31.578535 ], [ 67.686768, 31.297328 ], [ 66.939697, 31.306715 ], [ 66.379395, 30.741836 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.468297 ], [ 64.346924, 29.554345 ], [ 64.149170, 29.343875 ], [ 63.555908, 29.468297 ], [ 62.556152, 29.315141 ], [ 60.875244, 29.831114 ], [ 61.787109, 30.732393 ], [ 61.699219, 31.381779 ], [ 60.941162, 31.550453 ], [ 60.864258, 32.184911 ], [ 60.534668, 32.981020 ], [ 60.963135, 33.532237 ], [ 60.534668, 33.678640 ], [ 60.809326, 34.406910 ], [ 61.215820, 35.648369 ], [ 62.226562, 35.272532 ], [ 62.984619, 35.406961 ], [ 63.193359, 35.853440 ], [ 63.984375, 36.004673 ], [ 64.544678, 36.315125 ], [ 64.742432, 37.107765 ], [ 65.588379, 37.300275 ], [ 65.742188, 37.657732 ], [ 66.214600, 37.396346 ], [ 66.522217, 37.361426 ], [ 67.082520, 37.352693 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.151837 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.697754, 39.580290 ], [ 68.532715, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 75.157471, 37.134045 ], [ 75.893555, 36.668419 ], [ 76.190186, 35.897950 ], [ 77.838135, 35.496456 ], [ 76.871338, 34.651285 ], [ 75.761719, 34.506557 ], [ 74.245605, 34.750640 ], [ 73.751221, 34.316218 ], [ 74.102783, 33.440609 ], [ 74.454346, 32.759562 ], [ 75.256348, 32.268555 ], [ 74.410400, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.828369, 28.960089 ], [ 71.773682, 27.916767 ], [ 70.620117, 27.984700 ], [ 69.510498, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.279541, 25.720735 ], [ 70.850830, 25.214881 ], [ 71.048584, 24.357105 ], [ 68.840332, 24.357105 ], [ 68.181152, 23.694835 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.666986 ], [ 66.379395, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 61.875000, 26.234302 ], [ 63.314209, 26.755421 ], [ 63.237305, 27.215556 ], [ 62.753906, 27.381523 ], [ 62.731934, 28.256006 ], [ 61.776123, 28.700225 ], [ 61.369629, 29.305561 ], [ 60.875244, 29.831114 ], [ 62.556152, 29.315141 ], [ 63.555908, 29.468297 ], [ 64.149170, 29.343875 ], [ 64.346924, 29.554345 ], [ 65.050049, 29.468297 ], [ 66.346436, 29.888281 ], [ 66.379395, 30.741836 ], [ 66.939697, 31.306715 ], [ 67.686768, 31.297328 ], [ 67.796631, 31.578535 ], [ 68.554688, 31.709476 ], [ 68.928223, 31.615966 ], [ 69.323730, 31.896214 ], [ 69.268799, 32.500496 ], [ 69.686279, 33.100745 ], [ 70.323486, 33.358062 ], [ 69.927979, 34.016242 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.343436 ], [ 71.114502, 34.732584 ], [ 71.619873, 35.155846 ], [ 71.499023, 35.648369 ], [ 71.268311, 36.075742 ], [ 71.850586, 36.509636 ], [ 72.916260, 36.721274 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ], [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.598145, 40.220830 ], [ 71.015625, 40.245992 ], [ 70.653076, 39.935013 ], [ 69.565430, 40.103286 ], [ 69.466553, 39.529467 ], [ 70.554199, 39.605688 ], [ 71.784668, 39.274790 ], [ 73.674316, 39.427707 ], [ 73.927002, 38.505191 ], [ 74.256592, 38.608286 ], [ 74.860840, 38.376115 ], [ 74.827881, 37.987504 ], [ 74.981689, 37.422526 ], [ 73.948975, 37.422526 ], [ 73.256836, 37.492294 ], [ 72.641602, 37.046409 ], [ 72.191162, 36.949892 ], [ 71.850586, 36.738884 ], [ 71.455078, 37.063944 ], [ 71.542969, 37.900865 ], [ 71.235352, 37.952861 ], [ 71.345215, 38.255436 ], [ 70.806885, 38.487995 ], [ 70.378418, 38.134557 ], [ 70.268555, 37.735969 ], [ 70.114746, 37.588119 ], [ 69.521484, 37.605528 ], [ 69.202881, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.389893, 38.151837 ], [ 68.181152, 38.899583 ], [ 67.445068, 39.138582 ], [ 67.697754, 39.580290 ], [ 68.532715, 39.529467 ], [ 69.016113, 40.086477 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ], [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.458731 ], [ 83.902588, 29.315141 ], [ 84.232178, 28.835050 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.197927 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.440040 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.410728 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.116622 ], [ 83.342285, 29.458731 ], [ 83.902588, 29.315141 ], [ 84.232178, 28.835050 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.197927 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.877928 ], [ 88.044434, 27.440040 ], [ 88.176270, 26.804461 ], [ 88.066406, 26.411551 ], [ 87.231445, 26.391870 ], [ 86.022949, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.671631, 27.235095 ], [ 83.309326, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.410728 ], [ 80.090332, 28.796546 ], [ 80.474854, 29.726222 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ], [ [ [ 90.021973, 28.294707 ], [ 90.736084, 28.062286 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.833875 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.294707 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.145264, 9.817329 ], [ 80.837402, 9.264779 ], [ 81.309814, 8.559294 ], [ 81.793213, 7.525873 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.817329 ] ] ], [ [ [ 77.838135, 35.496456 ], [ 78.914795, 34.325292 ], [ 78.815918, 33.504759 ], [ 79.211426, 32.990236 ], [ 79.178467, 32.481963 ], [ 78.464355, 32.620870 ], [ 78.739014, 31.512996 ], [ 79.727783, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.726222 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.410728 ], [ 82.001953, 27.926474 ], [ 83.309326, 27.362011 ], [ 84.671631, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.627818 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.411551 ], [ 88.176270, 26.804461 ], [ 88.044434, 27.440040 ], [ 88.121338, 27.877928 ], [ 88.736572, 28.081674 ], [ 88.835449, 27.098254 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 90.878906, 26.833875 ], [ 90.878906, 25.135339 ], [ 90.000000, 25.254633 ], [ 89.923096, 25.264568 ], [ 89.835205, 25.967922 ], [ 89.351807, 26.017298 ], [ 88.560791, 26.441066 ], [ 88.209229, 25.770214 ], [ 88.934326, 25.234758 ], [ 88.308105, 24.866503 ], [ 88.088379, 24.497146 ], [ 88.703613, 24.236947 ], [ 88.527832, 23.634460 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.698265 ], [ 86.978760, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.495361, 20.148785 ], [ 85.056152, 19.476950 ], [ 83.946533, 18.302381 ], [ 83.188477, 17.664960 ], [ 82.188721, 17.014768 ], [ 82.188721, 16.551962 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.321045, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.859619, 12.050065 ], [ 79.859619, 10.358151 ], [ 79.343262, 10.304110 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.210560 ], [ 78.277588, 8.928487 ], [ 77.947998, 8.254983 ], [ 77.541504, 7.961317 ], [ 76.596680, 8.895926 ], [ 76.135254, 10.293301 ], [ 75.750732, 11.307708 ], [ 75.399170, 11.781325 ], [ 74.860840, 12.736801 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.125000, 17.926476 ], [ 72.817383, 19.207429 ], [ 72.828369, 20.416717 ], [ 72.630615, 21.350781 ], [ 71.180420, 20.756114 ], [ 70.477295, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.694835 ], [ 68.840332, 24.357105 ], [ 71.048584, 24.357105 ], [ 70.850830, 25.214881 ], [ 70.279541, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.510498, 26.941660 ], [ 70.620117, 27.984700 ], [ 71.773682, 27.916767 ], [ 72.828369, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.410400, 31.690782 ], [ 75.256348, 32.268555 ], [ 74.454346, 32.759562 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.245605, 34.750640 ], [ 75.761719, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.496456 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.145264, 9.817329 ], [ 80.837402, 9.264779 ], [ 81.309814, 8.559294 ], [ 81.793213, 7.525873 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.354004, 5.965754 ], [ 79.870605, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.145264, 9.817329 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.339844, 41.640078 ], [ 47.988281, 41.409776 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.900635, 41.640078 ], [ 48.339844, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.496456 ], [ 78.914795, 34.325292 ], [ 78.815918, 33.504759 ], [ 79.211426, 32.990236 ], [ 79.178467, 32.481963 ], [ 78.464355, 32.620870 ], [ 78.739014, 31.512996 ], [ 79.727783, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.474854, 29.726222 ], [ 80.090332, 28.796546 ], [ 81.057129, 28.410728 ], [ 82.001953, 27.926474 ], [ 83.309326, 27.362011 ], [ 84.671631, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.022949, 26.627818 ], [ 87.231445, 26.391870 ], [ 88.066406, 26.411551 ], [ 88.176270, 26.804461 ], [ 88.044434, 27.440040 ], [ 88.121338, 27.877928 ], [ 88.736572, 28.081674 ], [ 88.835449, 27.098254 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 90.878906, 26.833875 ], [ 90.878906, 22.786311 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.698265 ], [ 86.978760, 21.493964 ], [ 87.033691, 20.745840 ], [ 86.495361, 20.148785 ], [ 85.056152, 19.476950 ], [ 83.946533, 18.302381 ], [ 83.188477, 17.664960 ], [ 82.188721, 17.014768 ], [ 82.188721, 16.551962 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.321045, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.838080 ], [ 80.288086, 13.004558 ], [ 79.859619, 12.050065 ], [ 79.859619, 10.358151 ], [ 79.343262, 10.304110 ], [ 78.881836, 9.546583 ], [ 79.189453, 9.210560 ], [ 78.277588, 8.928487 ], [ 77.947998, 8.254983 ], [ 77.541504, 7.961317 ], [ 76.596680, 8.895926 ], [ 76.135254, 10.293301 ], [ 75.750732, 11.307708 ], [ 75.399170, 11.781325 ], [ 74.860840, 12.736801 ], [ 74.619141, 13.987376 ], [ 74.443359, 14.615478 ], [ 73.531494, 15.993015 ], [ 73.125000, 17.926476 ], [ 72.817383, 19.207429 ], [ 72.828369, 20.416717 ], [ 72.630615, 21.350781 ], [ 71.180420, 20.756114 ], [ 70.477295, 20.879343 ], [ 69.169922, 22.085640 ], [ 69.642334, 22.451649 ], [ 69.345703, 22.836946 ], [ 68.181152, 23.694835 ], [ 68.840332, 24.357105 ], [ 71.048584, 24.357105 ], [ 70.850830, 25.214881 ], [ 70.279541, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.510498, 26.941660 ], [ 70.620117, 27.984700 ], [ 71.773682, 27.916767 ], [ 72.828369, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.410400, 31.690782 ], [ 75.256348, 32.268555 ], [ 74.454346, 32.759562 ], [ 74.102783, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.245605, 34.750640 ], [ 75.761719, 34.506557 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.496456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.560791, 26.441066 ], [ 89.351807, 26.017298 ], [ 89.835205, 25.967922 ], [ 89.923096, 25.264568 ], [ 90.000000, 25.254633 ], [ 90.878906, 25.135339 ], [ 90.878906, 22.786311 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.879395, 22.877440 ], [ 88.527832, 23.634460 ], [ 88.703613, 24.236947 ], [ 88.088379, 24.497146 ], [ 88.308105, 24.866503 ], [ 88.934326, 25.234758 ], [ 88.209229, 25.770214 ], [ 88.560791, 26.441066 ] ] ], [ [ [ 90.021973, 28.294707 ], [ 90.736084, 28.062286 ], [ 90.878906, 28.062286 ], [ 90.878906, 26.833875 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.293689 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.294707 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 41.640078 ], [ 90.878906, 28.062286 ], [ 90.736084, 28.062286 ], [ 90.021973, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 88.813477, 27.293689 ], [ 88.736572, 28.081674 ], [ 88.121338, 27.877928 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.197927 ], [ 85.012207, 28.642389 ], [ 84.232178, 28.835050 ], [ 83.902588, 29.315141 ], [ 83.342285, 29.458731 ], [ 82.331543, 30.116622 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.727783, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.464355, 32.620870 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.990236 ], [ 78.815918, 33.504759 ], [ 78.914795, 34.325292 ], [ 77.838135, 35.496456 ], [ 76.190186, 35.897950 ], [ 75.893555, 36.668419 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.422526 ], [ 74.827881, 37.987504 ], [ 74.860840, 38.376115 ], [ 74.256592, 38.608286 ], [ 73.927002, 38.505191 ], [ 73.674316, 39.427707 ], [ 73.959961, 39.656456 ], [ 73.828125, 39.892880 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.071069 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 78.706055, 41.640078 ], [ 90.878906, 41.640078 ] ] ] } } ] } @@ -601,18 +575,18 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.802490, 49.468124 ], [ 87.747803, 49.296472 ], [ 87.363281, 49.217597 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.688955 ], [ 85.122070, 50.113533 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.530762, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.421631, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.861816, 55.166319 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.597528 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.664171 ], [ 61.699219, 52.981723 ], [ 60.743408, 52.716331 ], [ 60.930176, 52.449314 ], [ 59.974365, 51.957807 ], [ 61.589355, 51.268789 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.541363 ], [ 58.359375, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.618103 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.450509 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.558860 ], [ 49.097900, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.637087 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.401536 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.691895, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 44.121094, 42.601620 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.670387 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.927002, 66.791909 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 46.406250, 41.861379 ], [ 46.142578, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 44.121094, 41.153842 ], [ 44.121094, 42.601620 ], [ 44.538574, 42.714732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.538574, 42.714732 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.504503 ], [ 45.780029, 42.090070 ], [ 46.406250, 41.861379 ], [ 46.142578, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.966797, 41.120746 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.269550 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 42.601620 ], [ 44.538574, 42.714732 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.406250, 41.861379 ], [ 46.691895, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.401536 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.861379 ] ] ], [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.166319 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.122070, 50.113533 ], [ 85.539551, 49.688955 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.605225, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.726318, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.266113, 42.350425 ], [ 79.639893, 42.496403 ], [ 79.145508, 42.851806 ], [ 77.662354, 42.956423 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.301196 ], [ 73.641357, 43.092961 ], [ 73.487549, 42.496403 ], [ 71.850586, 42.843751 ], [ 71.191406, 42.706660 ], [ 70.960693, 42.269179 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.818359, 40.979898 ], [ 68.631592, 40.663973 ], [ 68.258057, 40.663973 ], [ 68.071289, 40.979898 ], [ 67.983398, 41.137296 ], [ 66.719971, 41.170384 ], [ 66.511230, 41.983994 ], [ 66.027832, 41.992160 ], [ 66.104736, 42.996612 ], [ 64.907227, 43.723475 ], [ 63.182373, 43.651975 ], [ 62.017822, 43.500752 ], [ 61.062012, 44.402392 ], [ 58.502197, 45.583290 ], [ 55.931396, 44.995883 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.085693, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.439674 ], [ 52.503662, 42.787339 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.174072, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.800059 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.739323 ], [ 47.318115, 47.717154 ], [ 46.472168, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.450509 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.618103 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.541363 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.268789 ], [ 59.974365, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.716331 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.597528 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.861816, 55.166319 ], [ 71.180420, 54.130260 ], [ 72.224121, 54.374158 ], [ 73.509521, 54.033586 ], [ 73.421631, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.530762, 54.175297 ], [ 77.805176, 53.402982 ], [ 80.035400, 50.861444 ], [ 80.573730, 51.385495 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.122070, 50.113533 ], [ 85.539551, 49.688955 ], [ 86.835938, 49.823809 ], [ 87.363281, 49.217597 ], [ 86.605225, 48.545705 ], [ 85.770264, 48.458352 ], [ 85.726318, 47.450380 ], [ 85.166016, 47.002734 ], [ 83.177490, 47.331377 ], [ 82.463379, 45.537137 ], [ 81.947021, 45.313529 ], [ 79.969482, 44.918139 ], [ 80.870361, 43.181147 ], [ 80.178223, 42.916206 ], [ 80.266113, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 70.554199, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.125977, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.261291 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.747012 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 54.755859, 42.041134 ], [ 54.085693, 42.326062 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.779505 ], [ 52.448730, 42.024814 ], [ 52.690430, 42.439674 ], [ 52.503662, 42.787339 ], [ 51.339111, 43.133061 ], [ 50.888672, 44.032321 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.606113 ], [ 51.284180, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.174072, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.217773, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.800059 ], [ 51.196289, 47.047669 ], [ 50.031738, 46.611715 ], [ 49.097900, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.691406, 47.077604 ], [ 48.054199, 47.739323 ], [ 47.318115, 47.717154 ], [ 46.472168, 48.392738 ], [ 47.043457, 49.152970 ], [ 46.757812, 49.353756 ], [ 47.548828, 50.450509 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.720223 ], [ 54.536133, 51.027576 ], [ 55.722656, 50.618103 ], [ 56.777344, 51.041394 ], [ 58.359375, 51.062113 ], [ 59.644775, 50.541363 ], [ 59.930420, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.268789 ], [ 59.974365, 51.957807 ], [ 60.930176, 52.449314 ], [ 60.743408, 52.716331 ], [ 61.699219, 52.981723 ], [ 60.974121, 53.664171 ], [ 61.435547, 54.007769 ], [ 65.181885, 54.354956 ], [ 65.665283, 54.597528 ], [ 68.170166, 54.971308 ], [ 69.071045, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 74.212646, 43.301196 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.956423 ], [ 79.145508, 42.851806 ], [ 79.639893, 42.496403 ], [ 80.266113, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.541260, 41.582580 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.062786 ], [ 76.849365, 40.979898 ], [ 76.530762, 40.430224 ], [ 75.465088, 40.563895 ], [ 74.772949, 40.363288 ], [ 74.674072, 40.313043 ], [ 72.070312, 40.313043 ], [ 73.059082, 40.863680 ], [ 72.795410, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.145570 ], [ 70.422363, 41.516804 ], [ 71.257324, 42.163403 ], [ 70.960693, 42.269179 ], [ 71.191406, 42.706660 ], [ 71.850586, 42.843751 ], [ 73.487549, 42.496403 ], [ 73.641357, 43.092961 ], [ 74.212646, 43.301196 ] ] ], [ [ [ 44.967041, 41.244772 ], [ 45.000000, 41.211722 ], [ 45.186768, 40.979898 ], [ 45.560303, 40.813809 ], [ 45.362549, 40.563895 ], [ 45.747070, 40.313043 ], [ 44.121094, 40.313043 ], [ 44.121094, 41.153842 ], [ 44.967041, 41.244772 ] ] ], [ [ [ 58.634033, 42.747012 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.261291 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.921143, 40.871988 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.085693, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.747012 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.691895, 41.828642 ], [ 47.373047, 41.219986 ], [ 47.812500, 41.153842 ], [ 47.988281, 41.401536 ], [ 48.581543, 41.804078 ], [ 49.108887, 41.277806 ], [ 49.328613, 40.979898 ], [ 49.625244, 40.572240 ], [ 50.086670, 40.522151 ], [ 50.328369, 40.313043 ], [ 45.747070, 40.313043 ], [ 45.362549, 40.563895 ], [ 45.560303, 40.813809 ], [ 45.186768, 40.979898 ], [ 45.175781, 40.988192 ], [ 45.000000, 41.211722 ], [ 44.967041, 41.244772 ], [ 45.000000, 41.269550 ], [ 45.219727, 41.409776 ], [ 45.966797, 41.120746 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.142578, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.583290 ], [ 61.062012, 44.402392 ], [ 62.017822, 43.500752 ], [ 63.182373, 43.651975 ], [ 64.907227, 43.723475 ], [ 66.104736, 42.996612 ], [ 66.027832, 41.992160 ], [ 66.511230, 41.983994 ], [ 66.719971, 41.170384 ], [ 67.983398, 41.137296 ], [ 68.071289, 40.979898 ], [ 68.258057, 40.663973 ], [ 68.631592, 40.663973 ], [ 68.818359, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.960693, 42.269179 ], [ 71.257324, 42.163403 ], [ 70.422363, 41.516804 ], [ 71.158447, 41.145570 ], [ 71.872559, 41.393294 ], [ 72.795410, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.070312, 40.313043 ], [ 70.554199, 40.313043 ], [ 70.455322, 40.497092 ], [ 70.664062, 40.963308 ], [ 69.334717, 40.730608 ], [ 69.125977, 40.313043 ], [ 62.248535, 40.313043 ], [ 61.929932, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.545410, 41.261291 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.426253 ], [ 59.974365, 42.220382 ], [ 58.634033, 42.747012 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.828642 ], [ 57.095947, 41.319076 ], [ 55.964355, 41.310824 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.583290 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.634033, 42.747012 ], [ 59.974365, 42.220382 ], [ 60.084229, 41.426253 ], [ 60.468750, 41.219986 ], [ 61.545410, 41.261291 ], [ 61.885986, 41.087632 ], [ 61.929932, 40.979898 ], [ 62.248535, 40.313043 ], [ 52.767334, 40.313043 ], [ 52.921143, 40.871988 ], [ 53.854980, 40.630630 ], [ 54.733887, 40.946714 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.921143, 41.869561 ], [ 52.811279, 41.137296 ], [ 52.503662, 41.779505 ], [ 52.943115, 42.114524 ], [ 54.085693, 42.326062 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.261291 ], [ 55.964355, 41.310824 ], [ 57.095947, 41.319076 ], [ 56.931152, 41.828642 ], [ 57.788086, 42.171546 ], [ 58.634033, 42.747012 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.664062, 40.963308 ], [ 70.455322, 40.497092 ], [ 70.554199, 40.313043 ], [ 69.125977, 40.313043 ], [ 69.334717, 40.730608 ], [ 70.664062, 40.963308 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.878906, 66.861082 ], [ 90.878906, 50.380502 ], [ 90.714111, 50.331436 ], [ 90.000000, 50.007739 ], [ 88.802490, 49.468124 ], [ 87.747803, 49.296472 ], [ 87.363281, 49.217597 ], [ 86.835938, 49.823809 ], [ 85.539551, 49.688955 ], [ 85.122070, 50.113533 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.573730, 51.385495 ], [ 80.035400, 50.861444 ], [ 77.805176, 53.402982 ], [ 76.530762, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.421631, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.374158 ], [ 71.180420, 54.130260 ], [ 70.861816, 55.166319 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.971308 ], [ 65.665283, 54.597528 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.007769 ], [ 60.974121, 53.664171 ], [ 61.699219, 52.981723 ], [ 60.743408, 52.716331 ], [ 60.930176, 52.449314 ], [ 59.974365, 51.957807 ], [ 61.589355, 51.268789 ], [ 61.336670, 50.798991 ], [ 59.930420, 50.840636 ], [ 59.644775, 50.541363 ], [ 58.359375, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.722656, 50.618103 ], [ 54.536133, 51.027576 ], [ 52.327881, 51.720223 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.450509 ], [ 46.757812, 49.353756 ], [ 47.043457, 49.152970 ], [ 46.472168, 48.392738 ], [ 47.318115, 47.717154 ], [ 48.054199, 47.739323 ], [ 48.691406, 47.077604 ], [ 48.592529, 46.558860 ], [ 49.097900, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.680664, 45.637087 ], [ 46.680908, 44.606113 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.988576 ], [ 48.581543, 41.804078 ], [ 47.988281, 41.401536 ], [ 47.812500, 41.153842 ], [ 47.373047, 41.219986 ], [ 46.691895, 41.828642 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.504503 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.714732 ], [ 44.121094, 42.601620 ], [ 44.121094, 66.271278 ], [ 44.527588, 66.757250 ], [ 44.384766, 66.861082 ], [ 45.900879, 66.861082 ], [ 46.351318, 66.670387 ], [ 47.724609, 66.861082 ], [ 72.015381, 66.861082 ], [ 71.542969, 66.513260 ], [ 71.279297, 66.319861 ], [ 72.421875, 66.173828 ], [ 72.795410, 66.513260 ], [ 72.817383, 66.535143 ], [ 73.927002, 66.791909 ], [ 73.959961, 66.861082 ], [ 90.878906, 66.861082 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 90.878906, 46.611715 ], [ 90.878906, 45.367584 ], [ 90.582275, 45.721522 ], [ 90.878906, 46.611715 ] ] ], [ [ [ 90.878906, 46.995241 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.070738 ], [ 88.011475, 48.596592 ], [ 87.747803, 49.296472 ], [ 88.802490, 49.468124 ], [ 90.000000, 50.007739 ], [ 90.714111, 50.331436 ], [ 90.878906, 50.380502 ], [ 90.878906, 46.995241 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.747803, 49.296472 ], [ 88.011475, 48.596592 ], [ 88.857422, 48.070738 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.878906, 46.995241 ], [ 90.878906, 46.611715 ], [ 90.582275, 45.721522 ], [ 90.878906, 45.367584 ], [ 90.878906, 40.313043 ], [ 74.674072, 40.313043 ], [ 74.772949, 40.363288 ], [ 75.465088, 40.563895 ], [ 76.530762, 40.430224 ], [ 76.849365, 40.979898 ], [ 76.904297, 41.062786 ], [ 78.189697, 41.186922 ], [ 78.541260, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.266113, 42.350425 ], [ 80.178223, 42.916206 ], [ 80.870361, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.313529 ], [ 82.463379, 45.537137 ], [ 83.177490, 47.331377 ], [ 85.166016, 47.002734 ], [ 85.726318, 47.450380 ], [ 85.770264, 48.458352 ], [ 86.605225, 48.545705 ], [ 87.363281, 49.217597 ], [ 87.747803, 49.296472 ] ] ] } } @@ -661,19 +635,23 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.021973, 28.294707 ], [ 90.736084, 28.062286 ], [ 91.263428, 28.042895 ], [ 91.702881, 27.771051 ], [ 92.109375, 27.449790 ], [ 92.032471, 26.833875 ], [ 91.219482, 26.804461 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 89.121094, 26.980829 ], [ 89.121094, 27.644606 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.294707 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.449165 ], [ 96.591797, 28.825425 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.256006 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.693256 ], [ 97.130127, 27.078692 ], [ 96.416016, 27.264396 ], [ 95.130615, 26.568877 ], [ 95.152588, 25.997550 ], [ 94.603271, 25.165173 ], [ 94.559326, 24.676970 ], [ 94.108887, 23.845650 ], [ 93.328857, 24.076559 ], [ 93.284912, 23.039298 ], [ 93.065186, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.142334, 23.624395 ], [ 91.867676, 23.624395 ], [ 91.702881, 22.988738 ], [ 91.164551, 23.503552 ], [ 91.472168, 24.066528 ], [ 91.911621, 24.126702 ], [ 92.373047, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.878906, 25.135339 ], [ 90.000000, 25.254633 ], [ 89.923096, 25.264568 ], [ 89.835205, 25.967922 ], [ 89.351807, 26.017298 ], [ 89.121094, 26.145576 ], [ 89.121094, 26.980829 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 91.219482, 26.804461 ], [ 92.032471, 26.833875 ], [ 92.109375, 27.449790 ], [ 91.702881, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.642389 ], [ 94.570312, 29.276816 ], [ 95.405273, 29.027355 ], [ 96.119385, 29.449165 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.062256, 41.640078 ], [ 104.963379, 41.599013 ], [ 104.908447, 41.640078 ], [ 105.062256, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.449165 ], [ 96.591797, 28.825425 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.256006 ], [ 97.404785, 27.877928 ], [ 97.053223, 27.693256 ], [ 97.130127, 27.078692 ], [ 96.416016, 27.264396 ], [ 95.130615, 26.568877 ], [ 95.152588, 25.997550 ], [ 94.603271, 25.165173 ], [ 94.559326, 24.676970 ], [ 94.108887, 23.845650 ], [ 93.328857, 24.076559 ], [ 93.284912, 23.039298 ], [ 93.065186, 22.705255 ], [ 93.164062, 22.278931 ], [ 92.669678, 22.044913 ], [ 92.658691, 21.320081 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.834717, 22.177232 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.121094, 22.034730 ], [ 89.121094, 26.980829 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.784847 ], [ 90.373535, 26.873081 ], [ 91.219482, 26.804461 ], [ 92.032471, 26.833875 ], [ 92.109375, 27.449790 ], [ 91.702881, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.642389 ], [ 94.570312, 29.276816 ], [ 95.405273, 29.027355 ], [ 96.119385, 29.449165 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 89.121094, 26.145576 ], [ 89.351807, 26.017298 ], [ 89.835205, 25.967922 ], [ 89.923096, 25.264568 ], [ 90.000000, 25.254633 ], [ 90.878906, 25.135339 ], [ 91.801758, 25.145285 ], [ 92.373047, 24.976099 ], [ 91.911621, 24.126702 ], [ 91.472168, 24.066528 ], [ 91.164551, 23.503552 ], [ 91.702881, 22.988738 ], [ 91.867676, 23.624395 ], [ 92.142334, 23.624395 ], [ 92.669678, 22.044913 ], [ 92.658691, 21.320081 ], [ 92.307129, 21.473518 ], [ 92.373047, 20.673905 ], [ 92.087402, 21.186973 ], [ 92.021484, 21.698265 ], [ 91.834717, 22.177232 ], [ 91.417236, 22.766051 ], [ 90.494385, 22.806567 ], [ 90.593262, 22.390714 ], [ 90.274658, 21.830907 ], [ 90.000000, 21.963425 ], [ 89.846191, 22.034730 ], [ 89.703369, 21.851302 ], [ 89.417725, 21.963425 ], [ 89.121094, 22.034730 ], [ 89.121094, 26.145576 ] ] ], [ [ [ 90.021973, 28.294707 ], [ 90.736084, 28.062286 ], [ 91.263428, 28.042895 ], [ 91.702881, 27.771051 ], [ 92.109375, 27.449790 ], [ 92.032471, 26.833875 ], [ 91.219482, 26.804461 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.784847 ], [ 89.747314, 26.716174 ], [ 89.121094, 26.980829 ], [ 89.121094, 27.644606 ], [ 89.472656, 28.042895 ], [ 90.000000, 28.285033 ], [ 90.021973, 28.294707 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.016846, 19.694314 ], [ 110.577393, 19.259294 ], [ 110.335693, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.632812, 19.362976 ], [ 109.116211, 19.818390 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.266357, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.135010, 39.172659 ], [ 121.058350, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.588928 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.048096, 39.206719 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.056742 ], [ 118.883057, 37.892196 ], [ 118.916016, 37.448697 ], [ 119.707031, 37.151561 ], [ 120.827637, 37.866181 ], [ 121.717529, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.640869, 36.111253 ], [ 119.663086, 35.612651 ], [ 119.157715, 34.912962 ], [ 120.234375, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.234131, 32.463426 ], [ 121.904297, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.130128 ], [ 120.399170, 27.049342 ], [ 119.586182, 25.740529 ], [ 118.663330, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.894775, 22.786311 ], [ 114.763184, 22.664710 ], [ 114.158936, 22.217920 ], [ 113.807373, 22.543001 ], [ 113.247070, 22.055096 ], [ 111.840820, 21.545066 ], [ 110.786133, 21.391705 ], [ 110.445557, 20.344627 ], [ 109.896240, 20.282809 ], [ 109.632568, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.050537, 21.555284 ], [ 107.039795, 21.810508 ], [ 106.567383, 22.217920 ], [ 106.732178, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.711182, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.656494, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.271973, 21.197216 ], [ 101.184082, 21.432617 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.555284 ], [ 99.986572, 21.739091 ], [ 99.239502, 22.116177 ], [ 99.536133, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.250732, 27.741885 ], [ 97.910156, 28.333395 ], [ 97.327881, 28.256006 ], [ 96.251221, 28.410728 ], [ 96.591797, 28.825425 ], [ 96.119385, 29.449165 ], [ 95.405273, 29.027355 ], [ 94.570312, 29.276816 ], [ 93.416748, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.702881, 27.771051 ], [ 91.263428, 28.042895 ], [ 90.736084, 28.062286 ], [ 90.021973, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.644606 ], [ 89.121094, 41.640078 ], [ 104.908447, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.062256, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.162456 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.690661 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.096636 ], [ 113.719482, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.441022 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 97.910156, 28.333395 ], [ 98.250732, 27.741885 ], [ 98.679199, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.668213, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.732178, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.051734 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.402588, 9.524914 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.400307 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.228516, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.850078 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.436279, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.579346, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.525146, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.718239 ], [ 94.812012, 15.802825 ], [ 94.185791, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.362976 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.658691, 21.320081 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.065186, 22.705255 ], [ 93.284912, 23.039298 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.845650 ], [ 94.559326, 24.676970 ], [ 94.603271, 25.165173 ], [ 95.152588, 25.997550 ], [ 95.130615, 26.568877 ], [ 96.416016, 27.264396 ], [ 97.130127, 27.078692 ], [ 97.053223, 27.693256 ], [ 97.404785, 27.877928 ], [ 97.327881, 28.256006 ], [ 97.910156, 28.333395 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.333395 ], [ 98.250732, 27.741885 ], [ 98.679199, 27.508271 ], [ 98.712158, 26.745610 ], [ 98.668213, 25.918526 ], [ 97.723389, 25.085599 ], [ 97.602539, 23.895883 ], [ 98.657227, 24.066528 ], [ 98.898926, 23.140360 ], [ 99.536133, 22.948277 ], [ 99.239502, 22.116177 ], [ 99.986572, 21.739091 ], [ 100.415039, 21.555284 ], [ 101.151123, 21.851302 ], [ 101.184082, 21.432617 ], [ 101.271973, 21.197216 ], [ 101.799316, 21.176729 ], [ 101.656494, 22.319589 ], [ 102.172852, 22.461802 ], [ 102.711182, 22.705255 ], [ 103.502197, 22.705255 ], [ 104.479980, 22.816694 ], [ 105.325928, 23.352343 ], [ 105.809326, 22.978624 ], [ 106.732178, 22.796439 ], [ 106.567383, 22.217920 ], [ 107.039795, 21.810508 ], [ 108.050537, 21.555284 ], [ 106.721191, 20.694462 ], [ 105.886230, 19.746024 ], [ 105.666504, 19.051734 ], [ 107.358398, 16.699340 ], [ 108.270264, 16.077486 ], [ 108.874512, 15.273587 ], [ 109.335938, 13.421681 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.226562, 10.358151 ], [ 106.402588, 9.524914 ], [ 105.161133, 8.602747 ], [ 104.798584, 9.243093 ], [ 105.073242, 9.914744 ], [ 104.337158, 10.487812 ], [ 103.502197, 10.628216 ], [ 103.095703, 11.156845 ], [ 102.590332, 12.189704 ], [ 101.689453, 12.640338 ], [ 100.832520, 12.629618 ], [ 100.975342, 13.410994 ], [ 100.096436, 13.400307 ], [ 100.019531, 12.307802 ], [ 99.151611, 9.958030 ], [ 99.228516, 9.243093 ], [ 99.876709, 9.210560 ], [ 100.283203, 8.298470 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.850078 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.217012 ], [ 101.810303, 5.812757 ], [ 101.151123, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.468151 ], [ 99.689941, 6.850078 ], [ 99.525146, 7.340675 ], [ 98.986816, 7.906912 ], [ 98.503418, 8.385431 ], [ 98.338623, 7.798079 ], [ 98.151855, 8.352823 ], [ 98.261719, 8.971897 ], [ 98.558350, 9.936388 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.436955 ], [ 98.426514, 12.028576 ], [ 98.514404, 13.122280 ], [ 98.107910, 13.635310 ], [ 97.778320, 14.838612 ], [ 97.602539, 16.098598 ], [ 97.163086, 16.930705 ], [ 96.503906, 16.425548 ], [ 95.372314, 15.718239 ], [ 94.812012, 15.802825 ], [ 94.185791, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.208480 ], [ 93.537598, 19.362976 ], [ 93.669434, 19.725342 ], [ 93.076172, 19.849394 ], [ 92.373047, 20.673905 ], [ 92.307129, 21.473518 ], [ 92.658691, 21.320081 ], [ 92.669678, 22.044913 ], [ 93.164062, 22.278931 ], [ 93.065186, 22.705255 ], [ 93.284912, 23.039298 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.845650 ], [ 94.559326, 24.676970 ], [ 94.603271, 25.165173 ], [ 95.152588, 25.997550 ], [ 95.130615, 26.568877 ], [ 96.416016, 27.264396 ], [ 97.130127, 27.078692 ], [ 97.053223, 27.693256 ], [ 97.404785, 27.877928 ], [ 97.327881, 28.256006 ], [ 97.910156, 28.333395 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.497803, 25.294371 ], [ 121.948242, 24.996016 ], [ 121.783447, 24.397133 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.973614 ], [ 120.223389, 22.816694 ], [ 120.102539, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.136230, 6.926427 ], [ 117.641602, 6.424484 ], [ 117.685547, 5.987607 ], [ 118.344727, 5.703448 ], [ 119.179688, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.970560 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.861816, 4.302591 ], [ 115.521240, 3.162456 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.219390 ], [ 112.862549, 1.493971 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.511475, 0.769020 ], [ 109.830322, 1.340210 ], [ 109.665527, 2.010086 ], [ 110.401611, 1.658704 ], [ 111.170654, 1.845384 ], [ 111.368408, 2.690661 ], [ 111.796875, 2.888180 ], [ 112.994385, 3.096636 ], [ 113.719482, 3.897138 ], [ 114.202881, 4.521666 ], [ 114.664307, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.345459, 4.313546 ], [ 115.455322, 5.441022 ], [ 116.224365, 6.140555 ], [ 116.729736, 6.926427 ], [ 117.136230, 6.926427 ] ] ], [ [ [ 126.694336, 41.640078 ], [ 126.177979, 41.112469 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.266357, 39.926588 ], [ 122.871094, 39.639538 ], [ 122.135010, 39.172659 ], [ 121.058350, 38.899583 ], [ 121.585693, 39.359785 ], [ 121.376953, 39.749434 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.588928 ], [ 119.641113, 39.892880 ], [ 119.025879, 39.249271 ], [ 118.048096, 39.206719 ], [ 117.531738, 38.736946 ], [ 118.059082, 38.056742 ], [ 118.883057, 37.892196 ], [ 118.916016, 37.448697 ], [ 119.707031, 37.151561 ], [ 120.827637, 37.866181 ], [ 121.717529, 37.483577 ], [ 122.354736, 37.457418 ], [ 122.519531, 36.932330 ], [ 121.102295, 36.650793 ], [ 120.640869, 36.111253 ], [ 119.663086, 35.612651 ], [ 119.157715, 34.912962 ], [ 120.234375, 34.361576 ], [ 120.618896, 33.376412 ], [ 121.234131, 32.463426 ], [ 121.904297, 31.690782 ], [ 121.893311, 30.949347 ], [ 121.267090, 30.675715 ], [ 121.508789, 30.145127 ], [ 122.091064, 29.831114 ], [ 121.937256, 29.017748 ], [ 121.684570, 28.226970 ], [ 121.124268, 28.130128 ], [ 120.399170, 27.049342 ], [ 119.586182, 25.740529 ], [ 118.663330, 24.547123 ], [ 117.279053, 23.624395 ], [ 115.894775, 22.786311 ], [ 114.763184, 22.664710 ], [ 114.158936, 22.217920 ], [ 113.807373, 22.543001 ], [ 113.247070, 22.055096 ], [ 111.840820, 21.545066 ], [ 110.786133, 21.391705 ], [ 110.445557, 20.344627 ], [ 109.896240, 20.282809 ], [ 109.632568, 21.002471 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.718680 ], [ 108.050537, 21.555284 ], [ 107.039795, 21.810508 ], [ 106.567383, 22.217920 ], [ 106.732178, 22.796439 ], [ 105.809326, 22.978624 ], [ 105.325928, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.502197, 22.705255 ], [ 102.711182, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.656494, 22.319589 ], [ 101.799316, 21.176729 ], [ 101.271973, 21.197216 ], [ 101.184082, 21.432617 ], [ 101.151123, 21.851302 ], [ 100.415039, 21.555284 ], [ 99.986572, 21.739091 ], [ 99.239502, 22.116177 ], [ 99.536133, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.657227, 24.066528 ], [ 97.602539, 23.895883 ], [ 97.723389, 25.085599 ], [ 98.668213, 25.918526 ], [ 98.712158, 26.745610 ], [ 98.679199, 27.508271 ], [ 98.250732, 27.741885 ], [ 97.910156, 28.333395 ], [ 97.327881, 28.256006 ], [ 96.251221, 28.410728 ], [ 96.591797, 28.825425 ], [ 96.119385, 29.449165 ], [ 95.405273, 29.027355 ], [ 94.570312, 29.276816 ], [ 93.416748, 28.642389 ], [ 92.504883, 27.897349 ], [ 91.702881, 27.771051 ], [ 91.263428, 28.042895 ], [ 90.736084, 28.062286 ], [ 90.021973, 28.294707 ], [ 90.000000, 28.285033 ], [ 89.472656, 28.042895 ], [ 89.121094, 27.644606 ], [ 89.121094, 41.640078 ], [ 104.908447, 41.640078 ], [ 104.963379, 41.599013 ], [ 105.062256, 41.640078 ], [ 126.694336, 41.640078 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.151123, 5.692516 ], [ 101.810303, 5.812757 ], [ 102.139893, 6.217012 ], [ 102.370605, 6.129631 ], [ 102.963867, 5.528511 ], [ 103.381348, 4.850154 ], [ 103.436279, 4.182073 ], [ 103.337402, 3.721745 ], [ 103.436279, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.625758 ], [ 104.227295, 1.296276 ], [ 103.524170, 1.230374 ], [ 102.579346, 1.966167 ], [ 101.392822, 2.756504 ], [ 101.271973, 3.272146 ], [ 100.700684, 3.940981 ], [ 100.557861, 4.762573 ], [ 100.195312, 5.309766 ], [ 100.305176, 6.042236 ], [ 100.085449, 6.468151 ], [ 100.261230, 6.642783 ] ] ], [ [ [ 121.497803, 25.294371 ], [ 121.948242, 24.996016 ], [ 121.783447, 24.397133 ], [ 121.179199, 22.786311 ], [ 120.750732, 21.973614 ], [ 120.223389, 22.816694 ], [ 120.102539, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ], [ [ [ 110.214844, 20.097206 ], [ 110.786133, 20.076570 ], [ 111.016846, 19.694314 ], [ 110.577393, 19.259294 ], [ 110.335693, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.510866 ], [ 108.632812, 19.362976 ], [ 109.116211, 19.818390 ], [ 110.214844, 20.097206 ] ] ], [ [ [ 128.155518, 41.640078 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 127.133789, 41.640078 ], [ 128.155518, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.704590, 41.640078 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.480381 ], [ 128.638916, 40.187267 ], [ 127.968750, 40.027614 ], [ 127.540283, 39.757880 ], [ 127.507324, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.473877, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.470335 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.123047, 36.721274 ], [ 126.859131, 36.897194 ], [ 126.177979, 37.744657 ], [ 125.694580, 37.935533 ], [ 125.573730, 37.753344 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.108628 ], [ 124.991455, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.546412 ], [ 124.738770, 39.656456 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.572240 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.694336, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.155518, 41.640078 ], [ 129.704590, 41.640078 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.871247 ], [ 135.878906, 33.532237 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.370645 ], [ 132.154541, 33.906896 ], [ 130.989990, 33.888658 ], [ 132.000732, 33.146750 ], [ 131.330566, 31.447410 ], [ 130.682373, 31.024694 ], [ 130.198975, 31.419288 ], [ 130.451660, 32.314991 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.890869, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.681152, 35.523285 ], [ 135.878906, 35.871247 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.637451, 34.143635 ], [ 134.769287, 33.806538 ], [ 134.208984, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.011475, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.458943 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.361576 ] ] ], [ [ [ 129.704590, 41.640078 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.480381 ], [ 128.638916, 40.187267 ], [ 127.968750, 40.027614 ], [ 127.540283, 39.757880 ], [ 127.507324, 39.325799 ], [ 127.386475, 39.215231 ], [ 127.781982, 39.053318 ], [ 128.353271, 38.608286 ], [ 129.210205, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.473877, 35.630512 ], [ 129.089355, 35.083956 ], [ 128.188477, 34.885931 ], [ 127.386475, 34.470335 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.930979 ], [ 126.562500, 35.684072 ], [ 126.123047, 36.721274 ], [ 126.859131, 36.897194 ], [ 126.177979, 37.744657 ], [ 125.694580, 37.935533 ], [ 125.573730, 37.753344 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.944198 ], [ 124.716797, 38.108628 ], [ 124.991455, 38.548165 ], [ 125.222168, 38.668356 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.546412 ], [ 124.738770, 39.656456 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.572240 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.112469 ], [ 126.694336, 41.640078 ], [ 127.133789, 41.640078 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.155518, 41.640078 ], [ 129.704590, 41.640078 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.455322, 5.441022 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.893941 ], [ 115.455322, 5.441022 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.343750, 18.218916 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.178467, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.264383 ], [ 120.992432, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.926758, 15.400728 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.474609, 7.743651 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.607178, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.460518 ], [ 122.091064, 6.893707 ], [ 121.926270, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.947998, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.244110 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.233154, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.049038 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.299316, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.282491 ], [ 123.629150, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.876465 ], [ 123.497314, 10.941192 ], [ 123.343506, 10.260871 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.696045, 10.552622 ], [ 119.025879, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.687398 ], [ 118.992920, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.587669 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.444598 ], [ 121.970215, 10.908830 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.455322, 5.441022 ], [ 115.345459, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.664307, 4.006740 ], [ 114.202881, 4.521666 ], [ 114.598389, 4.893941 ], [ 115.455322, 5.441022 ] ] ], [ [ [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.343750, 18.218916 ], [ 122.178955, 17.811456 ], [ 122.519531, 17.088291 ], [ 122.255859, 16.256867 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.255859, 14.221789 ], [ 122.706299, 14.338904 ], [ 123.947754, 13.784737 ], [ 123.859863, 13.239945 ], [ 124.178467, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.926025, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.124268, 13.635310 ], [ 120.629883, 13.859414 ], [ 120.684814, 14.264383 ], [ 120.992432, 14.519780 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.392118 ], [ 120.069580, 14.966013 ], [ 119.926758, 15.400728 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.388184, 17.602139 ], [ 120.717773, 18.500447 ], [ 121.322021, 18.500447 ] ] ], [ [ [ 125.408936, 9.763198 ], [ 126.221924, 9.286465 ], [ 126.474609, 7.743651 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.837402, 7.297088 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.053161 ], [ 125.397949, 5.583184 ], [ 124.222412, 6.162401 ], [ 123.936768, 6.882800 ], [ 124.244385, 7.362467 ], [ 123.607178, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.460518 ], [ 122.091064, 6.893707 ], [ 121.926270, 7.188101 ], [ 122.310791, 8.037473 ], [ 122.947998, 8.320212 ], [ 123.486328, 8.689639 ], [ 123.837891, 8.244110 ], [ 124.606934, 8.515836 ], [ 124.760742, 8.961045 ], [ 125.474854, 8.982749 ], [ 125.408936, 9.763198 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.233154, 12.533115 ], [ 125.507812, 12.157486 ], [ 125.782471, 11.049038 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.833306 ], [ 124.464111, 10.887254 ], [ 124.299316, 11.490791 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.980713, 10.282491 ], [ 123.629150, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.991943, 9.026153 ], [ 122.376709, 9.709057 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.876465 ], [ 123.497314, 10.941192 ], [ 123.343506, 10.260871 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.509277, 11.372339 ], [ 119.696045, 10.552622 ], [ 119.025879, 10.001310 ], [ 118.509521, 9.318990 ], [ 117.180176, 8.363693 ], [ 117.663574, 9.069551 ], [ 118.388672, 9.687398 ], [ 118.992920, 10.379765 ], [ 119.509277, 11.372339 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.576907 ], [ 123.123779, 11.587669 ], [ 123.101807, 11.167624 ], [ 122.640381, 10.736175 ], [ 122.003174, 10.444598 ], [ 121.970215, 10.908830 ], [ 122.036133, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.432367 ], [ 121.530762, 13.068777 ], [ 121.267090, 12.200442 ], [ 120.838623, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.878906, 35.871247 ], [ 135.878906, 33.532237 ], [ 135.791016, 33.468108 ], [ 135.120850, 33.852170 ], [ 135.076904, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.370645 ], [ 132.154541, 33.906896 ], [ 130.989990, 33.888658 ], [ 132.000732, 33.146750 ], [ 131.330566, 31.447410 ], [ 130.682373, 31.024694 ], [ 130.198975, 31.419288 ], [ 130.451660, 32.314991 ], [ 129.814453, 32.611616 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.605470 ], [ 130.880127, 34.234512 ], [ 131.890869, 34.750640 ], [ 132.615967, 35.433820 ], [ 134.604492, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.681152, 35.523285 ], [ 135.878906, 35.871247 ] ] ], [ [ [ 133.901367, 34.361576 ], [ 134.637451, 34.143635 ], [ 134.769287, 33.806538 ], [ 134.208984, 33.201924 ], [ 133.791504, 33.523079 ], [ 133.286133, 33.284620 ], [ 133.011475, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.458943 ], [ 132.923584, 34.061761 ], [ 133.494873, 33.943360 ], [ 133.901367, 34.361576 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.385254, -0.373533 ], [ 133.989258, -0.780005 ], [ 134.033203, -0.878872 ], [ 130.847168, -0.878872 ], [ 131.868896, -0.692122 ], [ 132.385254, -0.373533 ] ] ], [ [ [ 125.068359, 1.636740 ], [ 125.244141, 1.417092 ], [ 124.442139, 0.428463 ], [ 123.684082, 0.230712 ], [ 122.728271, 0.428463 ], [ 121.058350, 0.384519 ], [ 120.179443, 0.230712 ], [ 120.135498, 0.000000 ], [ 120.047607, -0.516350 ], [ 120.399170, -0.878872 ], [ 119.476318, -0.878872 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.560294 ], [ 120.882568, 1.307260 ], [ 121.673584, 1.010690 ], [ 122.926025, 0.878872 ], [ 124.079590, 0.911827 ], [ 125.068359, 1.636740 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.001709, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.693848, 1.131518 ], [ 128.638916, 0.252685 ], [ 128.122559, 0.351560 ], [ 128.034668, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.386230, -0.780005 ], [ 128.155518, -0.878872 ], [ 128.089600, -0.878872 ], [ 127.694092, -0.263671 ], [ 127.639160, 0.000000 ], [ 127.397461, 1.010690 ], [ 127.606201, 1.812442 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.228271 ], [ 118.048096, 2.284551 ], [ 117.872314, 1.823423 ], [ 118.992920, 0.900842 ], [ 117.817383, 0.780005 ], [ 117.476807, 0.098877 ], [ 117.487793, 0.000000 ], [ 117.520752, -0.801976 ], [ 117.421875, -0.878872 ], [ 109.324951, -0.878872 ], [ 109.094238, -0.461421 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.417477 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.010086 ], [ 109.830322, 1.340210 ], [ 110.511475, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.219390 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.162456 ], [ 115.861816, 4.302591 ], [ 117.015381, 4.302591 ] ] ], [ [ [ 95.295410, 5.473832 ], [ 95.943604, 5.441022 ], [ 97.481689, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.140625, 3.590178 ], [ 99.689941, 3.173425 ], [ 100.645752, 2.097920 ], [ 101.656494, 2.086941 ], [ 102.502441, 1.395126 ], [ 103.073730, 0.560294 ], [ 103.842773, 0.098877 ], [ 103.787842, 0.000000 ], [ 103.436279, -0.714093 ], [ 103.710938, -0.878872 ], [ 100.261230, -0.878872 ], [ 100.140381, -0.648180 ], [ 99.459229, 0.000000 ], [ 99.261475, 0.186767 ], [ 98.975830, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.174072, 3.305050 ], [ 96.427002, 3.864255 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.473832 ] ] ], [ [ [ 121.893311, -0.878872 ], [ 123.343506, -0.615223 ], [ 123.288574, -0.878872 ], [ 121.893311, -0.878872 ] ] ] ] } } ] } @@ -685,7 +663,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.865967, 52.045734 ], [ 99.986572, 51.631657 ], [ 100.887451, 51.515580 ], [ 102.062988, 51.261915 ], [ 102.260742, 50.506440 ], [ 103.677979, 50.092393 ], [ 104.622803, 50.275299 ], [ 105.886230, 50.408518 ], [ 106.885986, 50.275299 ], [ 107.874756, 49.795450 ], [ 108.479004, 49.282140 ], [ 109.401855, 49.289306 ], [ 110.665283, 49.131408 ], [ 111.577148, 49.375220 ], [ 112.895508, 49.539469 ], [ 114.367676, 50.247205 ], [ 114.960938, 50.141706 ], [ 115.488281, 49.802541 ], [ 116.674805, 49.887557 ], [ 116.191406, 49.131408 ], [ 115.488281, 48.136767 ], [ 115.740967, 47.724545 ], [ 116.312256, 47.850031 ], [ 117.301025, 47.694974 ], [ 118.070068, 48.063397 ], [ 118.872070, 47.746711 ], [ 119.772949, 47.047669 ], [ 119.663086, 46.694667 ], [ 118.872070, 46.807580 ], [ 117.421875, 46.672056 ], [ 116.718750, 46.384833 ], [ 115.982666, 45.729191 ], [ 114.466553, 45.336702 ], [ 113.466797, 44.809122 ], [ 112.434082, 45.011419 ], [ 111.873779, 45.104546 ], [ 111.346436, 44.457310 ], [ 111.665039, 44.071800 ], [ 111.829834, 43.739352 ], [ 111.126709, 43.405047 ], [ 110.412598, 42.867912 ], [ 109.248047, 42.520700 ], [ 107.742920, 42.480200 ], [ 106.127930, 42.130821 ], [ 104.963379, 41.599013 ], [ 104.523926, 41.910453 ], [ 103.315430, 41.910453 ], [ 101.832275, 42.512602 ], [ 100.843506, 42.666281 ], [ 99.514160, 42.520700 ], [ 97.448730, 42.747012 ], [ 96.350098, 42.722804 ], [ 95.767822, 43.317185 ], [ 95.306396, 44.237328 ], [ 94.691162, 44.347422 ], [ 93.482666, 44.972571 ], [ 92.131348, 45.112300 ], [ 90.944824, 45.282617 ], [ 90.582275, 45.721522 ], [ 90.966797, 46.890232 ], [ 90.285645, 47.694974 ], [ 90.000000, 47.768868 ], [ 89.121094, 47.997274 ], [ 89.121094, 49.610710 ], [ 90.000000, 50.007739 ], [ 90.714111, 50.331436 ], [ 92.241211, 50.798991 ], [ 93.109131, 50.492463 ], [ 94.152832, 50.478483 ], [ 94.812012, 50.014799 ], [ 95.811768, 49.979488 ], [ 97.261963, 49.724479 ], [ 98.228760, 50.422519 ], [ 97.822266, 51.006842 ], [ 98.865967, 52.045734 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.455349 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.789476 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.351201 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.727209 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.374023, 48.180739 ], [ 135.000000, 48.472921 ], [ 135.032959, 48.480204 ], [ 135.000000, 48.429201 ], [ 134.505615, 47.576526 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.118942 ], [ 133.099365, 45.143305 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.932296 ], [ 130.638428, 42.900113 ], [ 130.638428, 42.391009 ], [ 130.781250, 42.220382 ], [ 130.396729, 42.277309 ], [ 129.968262, 41.943149 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.480381 ], [ 128.792725, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.588928 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.997274 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.282617 ], [ 92.131348, 45.112300 ], [ 93.482666, 44.972571 ], [ 94.691162, 44.347422 ], [ 95.306396, 44.237328 ], [ 95.767822, 43.317185 ], [ 96.350098, 42.722804 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.512602 ], [ 103.315430, 41.910453 ], [ 104.523926, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.130821 ], [ 107.742920, 42.480200 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.867912 ], [ 111.126709, 43.405047 ], [ 111.829834, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.104546 ], [ 112.434082, 45.011419 ], [ 113.466797, 44.809122 ], [ 114.466553, 45.336702 ], [ 115.982666, 45.729191 ], [ 116.718750, 46.384833 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.047669 ], [ 118.872070, 47.746711 ], [ 118.070068, 48.063397 ], [ 117.301025, 47.694974 ], [ 116.312256, 47.850031 ], [ 115.740967, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.131408 ], [ 116.674805, 49.887557 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.739746, 51.964577 ], [ 120.728760, 52.516221 ], [ 120.179443, 52.756243 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.429174 ], [ 123.574219, 53.455349 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.455349 ], [ 125.068359, 53.159947 ], [ 125.947266, 52.789476 ], [ 126.562500, 51.781436 ], [ 126.936035, 51.351201 ], [ 127.287598, 50.736455 ], [ 127.661133, 49.759978 ], [ 129.396973, 49.439557 ], [ 130.583496, 48.727209 ], [ 130.989990, 47.791016 ], [ 132.506104, 47.791016 ], [ 133.374023, 48.180739 ], [ 135.000000, 48.472921 ], [ 135.032959, 48.480204 ], [ 135.000000, 48.429201 ], [ 134.505615, 47.576526 ], [ 134.110107, 47.212106 ], [ 133.769531, 46.118942 ], [ 133.099365, 45.143305 ], [ 131.879883, 45.321254 ], [ 131.022949, 44.964798 ], [ 131.286621, 44.111254 ], [ 131.143799, 42.932296 ], [ 130.638428, 42.900113 ], [ 130.638428, 42.391009 ], [ 129.990234, 42.980540 ], [ 129.594727, 42.423457 ], [ 128.056641, 41.992160 ], [ 128.210449, 41.467428 ], [ 127.342529, 41.500350 ], [ 126.870117, 41.812267 ], [ 126.177979, 41.104191 ], [ 125.914307, 40.979898 ], [ 125.079346, 40.572240 ], [ 124.749756, 40.313043 ], [ 122.036133, 40.313043 ], [ 122.167969, 40.421860 ], [ 121.640625, 40.946714 ], [ 120.772705, 40.588928 ], [ 120.311279, 40.313043 ], [ 89.121094, 40.313043 ], [ 89.121094, 47.997274 ], [ 90.000000, 47.768868 ], [ 90.285645, 47.694974 ], [ 90.966797, 46.890232 ], [ 90.582275, 45.721522 ], [ 90.944824, 45.282617 ], [ 92.131348, 45.112300 ], [ 93.482666, 44.972571 ], [ 94.691162, 44.347422 ], [ 95.306396, 44.237328 ], [ 95.767822, 43.317185 ], [ 96.350098, 42.722804 ], [ 97.448730, 42.747012 ], [ 99.514160, 42.520700 ], [ 100.843506, 42.666281 ], [ 101.832275, 42.512602 ], [ 103.315430, 41.910453 ], [ 104.523926, 41.910453 ], [ 104.963379, 41.599013 ], [ 106.127930, 42.130821 ], [ 107.742920, 42.480200 ], [ 109.248047, 42.520700 ], [ 110.412598, 42.867912 ], [ 111.126709, 43.405047 ], [ 111.829834, 43.739352 ], [ 111.665039, 44.071800 ], [ 111.346436, 44.457310 ], [ 111.873779, 45.104546 ], [ 112.434082, 45.011419 ], [ 113.466797, 44.809122 ], [ 114.466553, 45.336702 ], [ 115.982666, 45.729191 ], [ 116.718750, 46.384833 ], [ 117.421875, 46.672056 ], [ 118.872070, 46.807580 ], [ 119.663086, 46.694667 ], [ 119.772949, 47.047669 ], [ 118.872070, 47.746711 ], [ 118.070068, 48.063397 ], [ 117.301025, 47.694974 ], [ 116.312256, 47.850031 ], [ 115.740967, 47.724545 ], [ 115.488281, 48.136767 ], [ 116.191406, 49.131408 ], [ 116.674805, 49.887557 ], [ 117.883301, 49.510944 ], [ 119.289551, 50.141706 ], [ 119.278564, 50.583237 ], [ 120.179443, 51.645294 ], [ 120.739746, 51.964577 ], [ 120.728760, 52.516221 ], [ 120.179443, 52.756243 ], [ 121.003418, 53.252069 ], [ 122.244873, 53.429174 ], [ 123.574219, 53.455349 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.990234, 42.980540 ], [ 130.638428, 42.391009 ], [ 130.781250, 42.220382 ], [ 130.396729, 42.277309 ], [ 129.968262, 41.943149 ], [ 129.671631, 41.599013 ], [ 129.704590, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.663973 ], [ 129.012451, 40.480381 ], [ 128.792725, 40.313043 ], [ 124.749756, 40.313043 ], [ 125.079346, 40.572240 ], [ 125.914307, 40.979898 ], [ 126.177979, 41.104191 ], [ 126.870117, 41.812267 ], [ 127.342529, 41.500350 ], [ 128.210449, 41.467428 ], [ 128.056641, 41.992160 ], [ 129.594727, 42.423457 ], [ 129.990234, 42.980540 ] ] ] } } ] } ] } , @@ -727,9 +707,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.121094, -1.098565 ], [ 134.143066, -1.153487 ], [ 134.417725, -2.767478 ], [ 135.000000, -3.107606 ], [ 135.461426, -3.370856 ], [ 136.296387, -2.306506 ], [ 137.438965, -1.702630 ], [ 138.328857, -1.702630 ], [ 139.185791, -2.054003 ], [ 139.932861, -2.405299 ], [ 140.998535, -2.602864 ], [ 141.031494, -9.123792 ], [ 140.141602, -8.298470 ], [ 139.130859, -8.102739 ], [ 138.878174, -8.385431 ], [ 137.614746, -8.418036 ], [ 138.043213, -7.602108 ], [ 138.669434, -7.318882 ], [ 138.405762, -6.238855 ], [ 137.933350, -5.397273 ], [ 135.988770, -4.543570 ], [ 135.164795, -4.466904 ], [ 135.000000, -4.357366 ], [ 134.121094, -3.820408 ], [ 134.121094, -1.098565 ] ] ], [ [ [ 134.494629, -5.441022 ], [ 134.725342, -5.736243 ], [ 134.725342, -6.217012 ], [ 134.208984, -6.893707 ], [ 134.121094, -6.129631 ], [ 134.285889, -5.779966 ], [ 134.494629, -5.441022 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.744873, -40.705628 ], [ 145.404053, -40.797177 ], [ 145.920410, -40.979898 ], [ 146.370850, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.293457, -40.880295 ], [ 148.293457, -40.979898 ], [ 148.337402, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.722900, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.744873, -40.705628 ] ] ], [ [ [ 142.514648, -10.671404 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.118896, -11.910354 ], [ 143.162842, -12.329269 ], [ 143.525391, -12.833226 ], [ 143.602295, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.551684 ], [ 144.569092, -14.168534 ], [ 144.898682, -14.594216 ], [ 145.371094, -14.987240 ], [ 145.272217, -15.432501 ], [ 145.491943, -16.288506 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.909684 ], [ 146.162109, -17.759150 ], [ 146.063232, -18.281518 ], [ 146.392822, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.853760, -20.396123 ], [ 148.721924, -20.632784 ], [ 149.293213, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.084229, -22.126355 ], [ 150.479736, -22.553147 ], [ 150.732422, -22.400872 ], [ 150.897217, -23.463246 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.138428, -26.076521 ], [ 153.160400, -26.637639 ], [ 153.094482, -27.264396 ], [ 153.566895, -28.110749 ], [ 153.511963, -28.998532 ], [ 153.336182, -29.458731 ], [ 153.072510, -30.353916 ], [ 153.094482, -30.921076 ], [ 152.896729, -31.644029 ], [ 152.446289, -32.546813 ], [ 151.710205, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.325928, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.952393, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.425049, -37.770715 ], [ 148.304443, -37.814124 ], [ 147.381592, -38.220920 ], [ 146.920166, -38.608286 ], [ 146.315918, -39.036253 ], [ 145.491943, -38.591114 ], [ 144.876709, -38.419166 ], [ 145.030518, -37.900865 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.814031 ], [ 142.745361, -38.539573 ], [ 142.185059, -38.384728 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.022131 ], [ 139.998779, -37.405074 ], [ 139.812012, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.737595 ], [ 138.120117, -35.612651 ], [ 138.449707, -35.128894 ], [ 138.208008, -34.388779 ], [ 137.724609, -35.074965 ], [ 136.834717, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.134542 ], [ 137.889404, -33.642063 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.751748 ], [ 136.373291, -34.098159 ], [ 135.988770, -34.894942 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.952474 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.805745 ], [ 134.274902, -32.620870 ], [ 134.121094, -32.546813 ], [ 134.121094, -11.964097 ], [ 134.395752, -12.039321 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.103781 ], [ 135.296631, -12.254128 ], [ 135.878906, -11.964097 ], [ 136.263428, -12.050065 ], [ 136.494141, -11.856599 ], [ 136.955566, -12.350734 ], [ 136.691895, -12.886780 ], [ 136.307373, -13.293411 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.721761 ], [ 135.505371, -14.997852 ], [ 136.296387, -15.548960 ], [ 137.065430, -15.876809 ], [ 137.581787, -16.214675 ], [ 138.306885, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.067287 ], [ 139.262695, -17.371610 ], [ 140.218506, -17.717294 ], [ 140.877686, -17.371610 ], [ 141.075439, -16.836090 ], [ 141.273193, -16.393931 ], [ 141.405029, -15.845105 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.275030 ], [ 141.525879, -13.699362 ], [ 141.657715, -12.951029 ], [ 141.844482, -12.747516 ], [ 141.690674, -12.404389 ], [ 141.932373, -11.878102 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.671404 ] ] ], [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.272217, -4.379275 ], [ 145.832520, -4.882994 ], [ 145.986328, -5.462896 ], [ 147.645264, -6.085936 ], [ 147.897949, -6.610044 ], [ 146.975098, -6.719165 ], [ 147.194824, -7.384258 ], [ 148.084717, -8.048352 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.271240, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.743652, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.787598, -10.390572 ], [ 147.908936, -10.131117 ], [ 147.139893, -9.492408 ], [ 146.568604, -8.939340 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.634776 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.624512, -9.329831 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.123792 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.325439, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.845545 ], [ 150.238037, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.583184 ], [ 149.842529, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.528511 ], [ 150.809326, -5.451959 ], [ 151.094971, -5.112830 ], [ 151.644287, -4.762573 ], [ 151.534424, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.644043, -3.655964 ], [ 153.017578, -3.984821 ], [ 153.138428, -4.499762 ], [ 152.830811, -4.762573 ], [ 152.644043, -4.182073 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.041783 ], [ 150.666504, -2.745531 ], [ 150.941162, -2.504085 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.125244, -10.487812 ], [ 162.399902, -10.822515 ], [ 161.696777, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 154.654541, -5.047171 ], [ 154.764404, -5.342583 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.016846, -6.544560 ], [ 155.885010, -6.817353 ], [ 155.599365, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.145657 ], [ 154.654541, -5.047171 ] ] ], [ [ [ 159.708252, -9.243093 ], [ 160.367432, -9.405710 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.466309, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.644077 ], [ 159.708252, -9.243093 ] ] ], [ [ [ 160.916748, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.685791, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.784912, -8.917634 ], [ 160.576172, -8.320212 ], [ 160.916748, -8.320212 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.642334, -8.026595 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.024572 ], [ 157.543945, -7.351571 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.177201 ], [ 156.489258, -6.762806 ], [ 156.544189, -6.599131 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Australia", "sov_a3": "AU1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Australia", "adm0_a3": "AUS", "geou_dif": 0, "geounit": "Australia", "gu_a3": "AUS", "su_dif": 0, "subunit": "Australia", "su_a3": "AUS", "brk_diff": 0, "name": "Australia", "name_long": "Australia", "brk_a3": "AUS", "brk_name": "Australia", "abbrev": "Auz.", "postal": "AU", "formal_en": "Commonwealth of Australia", "name_sort": "Australia", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 7, "pop_est": 21262641, "gdp_md_est": 800200, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AU", "iso_a3": "AUS", "iso_n3": "036", "un_a3": "036", "wb_a2": "AU", "wb_a3": "AUS", "woe_id": -99, "adm0_a3_is": "AUS", "adm0_a3_us": "AUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 144.744873, -40.705628 ], [ 145.404053, -40.797177 ], [ 145.920410, -40.979898 ], [ 146.370850, -41.137296 ], [ 147.689209, -40.805494 ], [ 148.293457, -40.880295 ], [ 148.293457, -40.979898 ], [ 148.337402, -41.640078 ], [ 145.030518, -41.640078 ], [ 144.722900, -41.162114 ], [ 144.722900, -40.979898 ], [ 144.744873, -40.705628 ] ] ], [ [ [ 142.514648, -10.671404 ], [ 142.800293, -11.156845 ], [ 142.866211, -11.781325 ], [ 143.118896, -11.910354 ], [ 143.162842, -12.329269 ], [ 143.525391, -12.833226 ], [ 143.602295, -13.400307 ], [ 143.558350, -13.763396 ], [ 143.920898, -14.551684 ], [ 144.569092, -14.168534 ], [ 144.898682, -14.594216 ], [ 145.371094, -14.987240 ], [ 145.272217, -15.432501 ], [ 145.491943, -16.288506 ], [ 145.634766, -16.783506 ], [ 145.887451, -16.909684 ], [ 146.162109, -17.759150 ], [ 146.063232, -18.281518 ], [ 146.392822, -18.958246 ], [ 147.469482, -19.476950 ], [ 148.853760, -20.396123 ], [ 148.721924, -20.632784 ], [ 149.293213, -21.258661 ], [ 149.677734, -22.339914 ], [ 150.084229, -22.126355 ], [ 150.479736, -22.553147 ], [ 150.732422, -22.400872 ], [ 150.897217, -23.463246 ], [ 152.072754, -24.457151 ], [ 152.852783, -25.264568 ], [ 153.138428, -26.076521 ], [ 153.160400, -26.637639 ], [ 153.094482, -27.264396 ], [ 153.566895, -28.110749 ], [ 153.511963, -28.998532 ], [ 153.336182, -29.458731 ], [ 153.072510, -30.353916 ], [ 153.094482, -30.921076 ], [ 152.896729, -31.644029 ], [ 152.446289, -32.546813 ], [ 151.710205, -33.045508 ], [ 151.347656, -33.815666 ], [ 151.007080, -34.307144 ], [ 150.710449, -35.173808 ], [ 150.325928, -35.675147 ], [ 150.073242, -36.421282 ], [ 149.952393, -37.107765 ], [ 149.996338, -37.422526 ], [ 149.425049, -37.770715 ], [ 148.304443, -37.814124 ], [ 147.381592, -38.220920 ], [ 146.920166, -38.608286 ], [ 146.315918, -39.036253 ], [ 145.491943, -38.591114 ], [ 144.876709, -38.419166 ], [ 145.030518, -37.900865 ], [ 144.492188, -38.082690 ], [ 143.613281, -38.814031 ], [ 142.745361, -38.539573 ], [ 142.185059, -38.384728 ], [ 141.602783, -38.307181 ], [ 140.635986, -38.022131 ], [ 139.998779, -37.405074 ], [ 139.812012, -36.641978 ], [ 139.570312, -36.137875 ], [ 139.086914, -35.737595 ], [ 138.120117, -35.612651 ], [ 138.449707, -35.128894 ], [ 138.208008, -34.388779 ], [ 137.724609, -35.074965 ], [ 136.834717, -35.263562 ], [ 137.351074, -34.705493 ], [ 137.504883, -34.134542 ], [ 137.889404, -33.642063 ], [ 137.812500, -32.898038 ], [ 136.999512, -33.751748 ], [ 136.373291, -34.098159 ], [ 135.988770, -34.894942 ], [ 135.208740, -34.479392 ], [ 135.241699, -33.952474 ], [ 135.000000, -33.669497 ], [ 134.615479, -33.220308 ], [ 134.121094, -32.870360 ], [ 134.121094, -32.805745 ], [ 134.274902, -32.620870 ], [ 134.121094, -32.546813 ], [ 134.121094, -11.964097 ], [ 134.395752, -12.039321 ], [ 134.681396, -11.942601 ], [ 135.000000, -12.103781 ], [ 135.296631, -12.254128 ], [ 135.878906, -11.964097 ], [ 136.263428, -12.050065 ], [ 136.494141, -11.856599 ], [ 136.955566, -12.350734 ], [ 136.691895, -12.886780 ], [ 136.307373, -13.293411 ], [ 135.966797, -13.325485 ], [ 136.076660, -13.720708 ], [ 135.780029, -14.221789 ], [ 135.428467, -14.721761 ], [ 135.505371, -14.997852 ], [ 136.296387, -15.548960 ], [ 137.065430, -15.876809 ], [ 137.581787, -16.214675 ], [ 138.306885, -16.804541 ], [ 138.581543, -16.804541 ], [ 139.108887, -17.067287 ], [ 139.262695, -17.371610 ], [ 140.218506, -17.717294 ], [ 140.877686, -17.371610 ], [ 141.075439, -16.836090 ], [ 141.273193, -16.393931 ], [ 141.405029, -15.845105 ], [ 141.701660, -15.050906 ], [ 141.569824, -14.562318 ], [ 141.635742, -14.275030 ], [ 141.525879, -13.699362 ], [ 141.657715, -12.951029 ], [ 141.844482, -12.747516 ], [ 141.690674, -12.404389 ], [ 141.932373, -11.878102 ], [ 142.119141, -11.329253 ], [ 142.141113, -11.049038 ], [ 142.514648, -10.671404 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Papua New Guinea", "sov_a3": "PNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Papua New Guinea", "adm0_a3": "PNG", "geou_dif": 0, "geounit": "Papua New Guinea", "gu_a3": "PNG", "su_dif": 1, "subunit": "Papua New Guinea", "su_a3": "PN1", "brk_diff": 0, "name": "Papua New Guinea", "name_long": "Papua New Guinea", "brk_a3": "PN1", "brk_name": "Papua New Guinea", "abbrev": "P.N.G.", "postal": "PG", "formal_en": "Independent State of Papua New Guinea", "name_sort": "Papua New Guinea", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 6057263, "gdp_md_est": 13210, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PG", "iso_a3": "PNG", "iso_n3": "598", "un_a3": "598", "wb_a2": "PG", "wb_a3": "PNG", "woe_id": -99, "adm0_a3_is": "PNG", "adm0_a3_us": "PNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 16, "long_len": 16, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.222900, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.178955, -16.161921 ], [ 167.222900, -15.897942 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.113037, -14.934170 ], [ 167.266846, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.665354 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ], [ [ [ 140.998535, -2.602864 ], [ 142.734375, -3.294082 ], [ 144.580078, -3.864255 ], [ 145.272217, -4.379275 ], [ 145.832520, -4.882994 ], [ 145.986328, -5.462896 ], [ 147.645264, -6.085936 ], [ 147.897949, -6.610044 ], [ 146.975098, -6.719165 ], [ 147.194824, -7.384258 ], [ 148.084717, -8.048352 ], [ 148.732910, -9.102097 ], [ 149.304199, -9.069551 ], [ 149.271240, -9.514079 ], [ 150.040283, -9.687398 ], [ 149.743652, -9.871452 ], [ 150.798340, -10.293301 ], [ 150.688477, -10.585022 ], [ 150.029297, -10.649811 ], [ 149.787598, -10.390572 ], [ 147.908936, -10.131117 ], [ 147.139893, -9.492408 ], [ 146.568604, -8.939340 ], [ 146.052246, -8.070107 ], [ 144.744873, -7.634776 ], [ 143.898926, -7.917793 ], [ 143.283691, -8.244110 ], [ 143.415527, -8.982749 ], [ 142.624512, -9.329831 ], [ 142.064209, -9.156333 ], [ 141.031494, -9.123792 ], [ 140.998535, -2.602864 ] ] ], [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.444598 ], [ 162.125244, -10.487812 ], [ 162.399902, -10.822515 ], [ 161.696777, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 152.138672, -4.149201 ], [ 152.336426, -4.313546 ], [ 152.325439, -4.872048 ], [ 151.984863, -5.484768 ], [ 151.457520, -5.561315 ], [ 151.303711, -5.845545 ], [ 150.238037, -6.315299 ], [ 149.710693, -6.315299 ], [ 148.886719, -6.031311 ], [ 148.315430, -5.747174 ], [ 148.403320, -5.441022 ], [ 149.304199, -5.583184 ], [ 149.842529, -5.506640 ], [ 149.996338, -5.025283 ], [ 150.139160, -5.003394 ], [ 150.238037, -5.528511 ], [ 150.809326, -5.451959 ], [ 151.094971, -5.112830 ], [ 151.644287, -4.762573 ], [ 151.534424, -4.171115 ], [ 152.138672, -4.149201 ] ] ], [ [ [ 159.708252, -9.243093 ], [ 160.367432, -9.405710 ], [ 160.686035, -9.611582 ], [ 160.850830, -9.871452 ], [ 160.466309, -9.893099 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.644077 ], [ 159.708252, -9.243093 ] ] ], [ [ [ 160.916748, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.685791, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.784912, -8.917634 ], [ 160.576172, -8.320212 ], [ 160.916748, -8.320212 ] ] ], [ [ [ 150.941162, -2.504085 ], [ 151.479492, -2.778451 ], [ 151.820068, -2.997899 ], [ 152.237549, -3.239240 ], [ 152.644043, -3.655964 ], [ 153.017578, -3.984821 ], [ 153.138428, -4.499762 ], [ 152.830811, -4.762573 ], [ 152.644043, -4.182073 ], [ 152.402344, -3.787522 ], [ 151.380615, -3.041783 ], [ 150.666504, -2.745531 ], [ 150.941162, -2.504085 ] ] ], [ [ [ 158.356934, -7.318882 ], [ 159.642334, -8.026595 ], [ 159.873047, -8.341953 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.427837 ], [ 158.356934, -7.318882 ] ] ], [ [ [ 156.544189, -6.599131 ], [ 157.137451, -7.024572 ], [ 157.543945, -7.351571 ], [ 157.346191, -7.406048 ], [ 156.906738, -7.177201 ], [ 156.489258, -6.762806 ], [ 156.544189, -6.599131 ] ] ], [ [ [ 154.654541, -5.047171 ], [ 154.764404, -5.342583 ], [ 155.061035, -5.572250 ], [ 155.544434, -6.206090 ], [ 156.016846, -6.544560 ], [ 155.885010, -6.817353 ], [ 155.599365, -6.926427 ], [ 155.170898, -6.533645 ], [ 154.731445, -5.900189 ], [ 154.511719, -5.145657 ], [ 154.654541, -5.047171 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.025879, -20.107523 ], [ 164.465332, -20.117840 ], [ 165.025635, -20.457896 ], [ 165.465088, -20.797201 ], [ 165.783691, -21.084500 ], [ 166.596680, -21.698265 ], [ 167.124023, -22.156883 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.126355 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.168701, -20.447602 ], [ 164.025879, -20.107523 ] ] ], [ [ [ 178.374023, -17.340152 ], [ 178.714600, -17.633552 ], [ 178.549805, -18.156291 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.132324, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.208740, -16.024696 ], [ 180.087891, -16.499299 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.436085 ], [ 179.417725, -16.383391 ], [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ] ] ], [ [ [ 167.222900, -15.897942 ], [ 167.849121, -16.467695 ], [ 167.519531, -16.594081 ], [ 167.178955, -16.161921 ], [ 167.222900, -15.897942 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.113037, -14.934170 ], [ 167.266846, -15.739388 ], [ 167.003174, -15.612456 ], [ 166.794434, -15.665354 ], [ 166.651611, -15.390136 ], [ 166.629639, -14.626109 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.025879, -20.107523 ], [ 164.465332, -20.117840 ], [ 165.025635, -20.457896 ], [ 165.465088, -20.797201 ], [ 165.783691, -21.084500 ], [ 166.596680, -21.698265 ], [ 167.124023, -22.156883 ], [ 166.739502, -22.400872 ], [ 166.190186, -22.126355 ], [ 165.476074, -21.677848 ], [ 164.827881, -21.145992 ], [ 164.168701, -20.447602 ], [ 164.025879, -20.107523 ] ] ], [ [ [ 178.374023, -17.340152 ], [ 178.714600, -17.633552 ], [ 178.549805, -18.156291 ], [ 177.934570, -18.291950 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.132324, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.208740, -16.024696 ], [ 180.087891, -16.499299 ], [ 180.000000, -16.551962 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.593750, -16.636192 ], [ 179.099121, -16.436085 ], [ 179.417725, -16.383391 ], [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "New Zealand", "sov_a3": "NZ1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "New Zealand", "adm0_a3": "NZL", "geou_dif": 0, "geounit": "New Zealand", "gu_a3": "NZL", "su_dif": 0, "subunit": "New Zealand", "su_a3": "NZL", "brk_diff": 0, "name": "New Zealand", "name_long": "New Zealand", "brk_a3": "NZL", "brk_name": "New Zealand", "abbrev": "N.Z.", "postal": "NZ", "formal_en": "New Zealand", "name_sort": "New Zealand", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 4213418, "gdp_md_est": 116700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NZ", "iso_a3": "NZL", "iso_n3": "554", "un_a3": "554", "wb_a2": "NZ", "wb_a3": "NZL", "woe_id": -99, "adm0_a3_is": "NZL", "adm0_a3_us": "NZL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Australia and New Zealand", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 172.803955, -40.497092 ], [ 173.056641, -40.979898 ], [ 173.243408, -41.335576 ], [ 173.858643, -40.979898 ], [ 173.957520, -40.930115 ], [ 173.990479, -40.979898 ], [ 174.254150, -41.352072 ], [ 174.254150, -41.640078 ], [ 171.760254, -41.640078 ], [ 171.947021, -41.516804 ], [ 172.089844, -40.979898 ], [ 172.100830, -40.955011 ], [ 172.803955, -40.497092 ] ] ], [ [ [ 173.012695, -34.452218 ], [ 173.551025, -35.003003 ], [ 174.331055, -35.263562 ], [ 174.616699, -36.155618 ], [ 175.341797, -37.212832 ], [ 175.363770, -36.527295 ], [ 175.814209, -36.800488 ], [ 175.957031, -37.553288 ], [ 176.770020, -37.883525 ], [ 177.440186, -37.961523 ], [ 178.011475, -37.579413 ], [ 178.516846, -37.692514 ], [ 178.275146, -38.582526 ], [ 177.967529, -39.164141 ], [ 177.209473, -39.147103 ], [ 176.945801, -39.453161 ], [ 177.033691, -39.884450 ], [ 176.890869, -40.069665 ], [ 176.242676, -40.979898 ], [ 176.011963, -41.294317 ], [ 175.330811, -41.640078 ], [ 175.209961, -41.640078 ], [ 175.067139, -41.426253 ], [ 174.649658, -41.286062 ], [ 174.858398, -40.979898 ], [ 175.231934, -40.463666 ], [ 174.902344, -39.909736 ], [ 173.825684, -39.512517 ], [ 173.858643, -39.147103 ], [ 174.572754, -38.796908 ], [ 174.748535, -38.030786 ], [ 174.693604, -37.378888 ], [ 174.298096, -36.712467 ], [ 174.320068, -36.536123 ], [ 173.847656, -36.120128 ], [ 173.056641, -35.236646 ], [ 172.639160, -34.533712 ], [ 173.012695, -34.452218 ] ] ] ] } } ] } @@ -745,7 +727,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.000000, 66.861082 ], [ 180.878906, 66.861082 ], [ 180.878906, 66.026947 ], [ 180.120850, 65.874725 ], [ 180.571289, 65.403445 ], [ 180.000000, 64.979359 ], [ 178.703613, 64.534272 ], [ 177.407227, 64.609749 ], [ 178.319092, 64.077003 ], [ 178.912354, 63.253412 ], [ 179.373779, 62.980189 ], [ 179.483643, 62.568045 ], [ 179.230957, 62.303688 ], [ 177.363281, 62.522458 ], [ 174.572754, 61.767926 ], [ 173.682861, 61.653379 ], [ 172.155762, 60.951777 ], [ 170.694580, 60.337823 ], [ 170.332031, 59.883425 ], [ 168.903809, 60.570777 ], [ 166.300049, 59.789580 ], [ 165.838623, 60.157910 ], [ 164.882812, 59.728716 ], [ 163.542480, 59.866883 ], [ 163.223877, 59.209688 ], [ 162.015381, 58.240164 ], [ 162.059326, 57.838903 ], [ 163.190918, 57.615992 ], [ 163.059082, 56.157788 ], [ 162.136230, 56.121060 ], [ 161.707764, 55.285372 ], [ 162.114258, 54.851315 ], [ 160.367432, 54.342149 ], [ 160.026855, 53.199452 ], [ 158.532715, 52.955257 ], [ 158.236084, 51.944265 ], [ 156.785889, 51.006842 ], [ 156.423340, 51.699800 ], [ 155.994873, 53.159947 ], [ 155.434570, 55.379110 ], [ 155.917969, 56.764768 ], [ 156.763916, 57.362090 ], [ 156.807861, 57.833055 ], [ 158.367920, 58.054632 ], [ 160.147705, 59.316375 ], [ 161.872559, 60.343260 ], [ 163.674316, 61.137933 ], [ 164.476318, 62.547793 ], [ 163.256836, 62.466646 ], [ 162.663574, 61.642945 ], [ 160.125732, 60.543775 ], [ 159.301758, 61.773123 ], [ 156.719971, 61.433515 ], [ 154.215088, 59.756395 ], [ 155.050049, 59.142135 ], [ 152.808838, 58.881942 ], [ 151.270752, 58.779591 ], [ 151.336670, 59.500880 ], [ 149.787598, 59.656642 ], [ 148.546143, 59.164668 ], [ 145.491943, 59.333189 ], [ 142.196045, 59.040555 ], [ 138.955078, 57.088515 ], [ 135.131836, 54.730964 ], [ 136.702881, 54.603892 ], [ 137.197266, 53.975474 ], [ 138.164062, 53.755207 ], [ 138.801270, 54.252389 ], [ 139.899902, 54.188155 ], [ 141.350098, 53.087426 ], [ 141.383057, 52.241256 ], [ 140.603027, 51.241286 ], [ 140.515137, 50.043030 ], [ 140.064697, 48.443778 ], [ 138.559570, 46.995241 ], [ 138.218994, 46.308996 ], [ 135.516357, 43.984910 ], [ 135.000000, 43.516689 ], [ 134.868164, 43.397065 ], [ 134.121094, 43.068888 ], [ 134.121094, 47.219568 ], [ 134.494629, 47.576526 ], [ 135.000000, 48.429201 ], [ 135.032959, 48.480204 ], [ 135.000000, 48.472921 ], [ 134.121094, 48.319734 ], [ 134.121094, 66.861082 ], [ 180.000000, 66.861082 ] ] ], [ [ [ 142.657471, 54.367759 ], [ 143.261719, 52.742943 ], [ 143.239746, 51.754240 ], [ 143.646240, 50.743408 ], [ 144.656982, 48.973006 ], [ 143.173828, 49.303636 ], [ 142.558594, 47.857403 ], [ 143.536377, 46.837650 ], [ 143.503418, 46.134170 ], [ 142.745361, 46.739861 ], [ 142.097168, 45.966425 ], [ 141.910400, 46.807580 ], [ 142.020264, 47.776252 ], [ 141.910400, 48.857487 ], [ 142.141113, 49.617828 ], [ 142.185059, 50.951506 ], [ 141.591797, 51.937492 ], [ 141.679688, 53.298056 ], [ 142.613525, 53.761702 ], [ 142.207031, 54.226708 ], [ 142.657471, 54.367759 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.372070, 41.376809 ], [ 141.525879, 40.979898 ], [ 141.789551, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.888916, 40.563895 ], [ 140.306396, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.063721, 42.988576 ], [ 143.184814, 41.992160 ], [ 141.613770, 42.674359 ], [ 141.064453, 41.582580 ], [ 139.954834, 41.566142 ], [ 139.822998, 42.561173 ], [ 140.317383, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.668701, 44.770137 ], [ 141.965332, 45.552525 ] ] ], [ [ [ 135.032959, 48.480204 ], [ 135.000000, 48.429201 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.219568 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.472921 ], [ 135.032959, 48.480204 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.032959, 48.480204 ], [ 135.000000, 48.429201 ], [ 134.494629, 47.576526 ], [ 134.121094, 47.219568 ], [ 134.121094, 48.319734 ], [ 135.000000, 48.472921 ], [ 135.032959, 48.480204 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.372070, 41.376809 ], [ 141.525879, 40.979898 ], [ 141.789551, 40.313043 ], [ 139.921875, 40.313043 ], [ 139.888916, 40.563895 ], [ 140.306396, 41.195190 ], [ 141.372070, 41.376809 ] ] ], [ [ [ 141.965332, 45.552525 ], [ 143.140869, 44.512176 ], [ 143.909912, 44.174325 ], [ 144.613037, 43.961191 ], [ 145.327148, 44.386692 ], [ 145.546875, 43.261206 ], [ 144.063721, 42.988576 ], [ 143.184814, 41.992160 ], [ 141.613770, 42.674359 ], [ 141.064453, 41.582580 ], [ 139.954834, 41.566142 ], [ 139.822998, 42.561173 ], [ 140.317383, 43.333169 ], [ 141.383057, 43.389082 ], [ 141.668701, 44.770137 ], [ 141.965332, 45.552525 ] ] ] ] } } ] } ] } , @@ -845,17 +829,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.275238 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.461826 ], [ -135.472412, 59.786816 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.268688 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.625977, 58.211238 ], [ -137.796021, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.822754, 59.725947 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.457218 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.703785 ], [ -150.606079, 59.366794 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.724257 ], [ -150.347900, 61.031692 ], [ -150.617065, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.144620 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.421294 ], [ -156.555176, 56.977918 ], [ -157.500000, 56.668302 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.465635 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.326799 ], [ -157.500000, 58.387318 ], [ -157.038574, 58.918828 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.682649 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.561646, 57.900256 ], [ -152.138672, 57.589503 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.759155, 57.815504 ], [ -153.226318, 57.967331 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.560547, 66.687784 ], [ -134.560547, 59.037729 ], [ -134.945068, 59.268688 ], [ -135.000000, 59.324783 ], [ -135.472412, 59.786816 ], [ -136.477661, 59.461826 ], [ -137.449951, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.037476, 59.998986 ], [ -140.009766, 60.275238 ], [ -140.998535, 60.305185 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.687784 ], [ -134.560547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -140.993042, 66.687784 ], [ -140.993042, 66.513260 ], [ -140.998535, 60.305185 ], [ -140.009766, 60.275238 ], [ -139.037476, 59.998986 ], [ -138.339844, 59.562158 ], [ -137.449951, 58.904646 ], [ -136.477661, 59.461826 ], [ -135.472412, 59.786816 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.268688 ], [ -134.560547, 59.037729 ], [ -134.560547, 58.156214 ], [ -135.000000, 58.185185 ], [ -136.625977, 58.211238 ], [ -137.796021, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.822754, 59.725947 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.457218 ], [ -147.112427, 60.885027 ], [ -148.222046, 60.673179 ], [ -148.018799, 59.977005 ], [ -148.568115, 59.913730 ], [ -149.727173, 59.703785 ], [ -150.606079, 59.366794 ], [ -151.715698, 59.156220 ], [ -151.858521, 59.745326 ], [ -151.408081, 60.724257 ], [ -150.347900, 61.031692 ], [ -150.617065, 61.283432 ], [ -151.896973, 60.726944 ], [ -152.578125, 60.062099 ], [ -154.017334, 59.349996 ], [ -153.286743, 58.864905 ], [ -154.231567, 58.144620 ], [ -155.308228, 57.727619 ], [ -156.307983, 57.421294 ], [ -156.555176, 56.977918 ], [ -157.500000, 56.668302 ], [ -157.939453, 56.523140 ], [ -157.939453, 57.465635 ], [ -157.725220, 57.568888 ], [ -157.549438, 58.326799 ], [ -157.500000, 58.387318 ], [ -157.038574, 58.918828 ], [ -157.500000, 58.799516 ], [ -157.939453, 58.682649 ], [ -157.939453, 66.687784 ], [ -140.993042, 66.687784 ] ] ], [ [ [ -153.226318, 57.967331 ], [ -152.561646, 57.900256 ], [ -152.138672, 57.589503 ], [ -153.006592, 57.115368 ], [ -154.006348, 56.734649 ], [ -154.517212, 56.992883 ], [ -154.671021, 57.459726 ], [ -153.759155, 57.815504 ], [ -153.226318, 57.967331 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.896484, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.716187, 70.530391 ], [ -147.612305, 70.213015 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.988655 ], [ -143.585815, 70.151558 ], [ -142.069702, 69.850978 ], [ -140.982056, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.887885 ], [ -157.500000, 71.041960 ], [ -156.577148, 71.357067 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.982056, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.543335, 68.989925 ], [ -136.499634, 68.897165 ], [ -135.626221, 69.314440 ], [ -135.000000, 69.476821 ], [ -134.560547, 69.590144 ], [ -134.560547, 66.337505 ], [ -140.993042, 66.337505 ], [ -140.993042, 66.513260 ], [ -140.982056, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.577148, 71.357067 ], [ -155.066528, 71.146970 ], [ -154.341431, 70.696320 ], [ -153.896484, 70.889683 ], [ -152.210083, 70.830248 ], [ -152.270508, 70.599846 ], [ -150.737915, 70.429440 ], [ -149.716187, 70.530391 ], [ -147.612305, 70.213015 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.988655 ], [ -143.585815, 70.151558 ], [ -142.069702, 69.850978 ], [ -140.982056, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.337505 ], [ -157.939453, 66.337505 ], [ -157.939453, 70.887885 ], [ -157.500000, 71.041960 ], [ -156.577148, 71.357067 ] ] ] } } ] } ] } , @@ -893,17 +877,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 48.998240 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.392700, 47.720849 ], [ -124.683838, 48.184401 ], [ -124.562988, 48.378145 ], [ -123.118286, 48.037692 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.357432 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -112.060547, 48.998240 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.800685 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.055664, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.292849 ], [ -125.414429, 49.947685 ], [ -124.920044, 49.475263 ], [ -123.920288, 49.063069 ], [ -123.508301, 48.509326 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.952759, 49.178113 ], [ -126.848145, 49.528774 ], [ -127.029419, 49.813176 ], [ -128.056641, 49.993615 ], [ -128.441162, 50.537872 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -112.060547, 56.022948 ], [ -112.060547, 48.998240 ], [ -112.500000, 48.998240 ], [ -122.975464, 49.001844 ], [ -124.909058, 49.983020 ], [ -125.623169, 50.415519 ], [ -127.435913, 50.830228 ], [ -127.990723, 51.713416 ], [ -127.847900, 52.328625 ], [ -129.127808, 52.752919 ], [ -129.303589, 53.559889 ], [ -130.512085, 54.287675 ], [ -130.534058, 54.800685 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -130.292358, 56.022948 ], [ -112.060547, 56.022948 ] ] ], [ [ [ -133.176270, 54.168866 ], [ -132.709351, 54.040038 ], [ -131.748047, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.176758, 52.180669 ], [ -131.577759, 52.180669 ], [ -132.176514, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.409532 ], [ -133.236694, 53.849286 ], [ -133.176270, 54.168866 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -112.060547, 48.998240 ], [ -112.060547, 40.647304 ], [ -124.310303, 40.647304 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.211426, 42.000325 ], [ -124.530029, 42.763146 ], [ -124.140015, 43.707594 ], [ -123.898315, 45.521744 ], [ -124.079590, 46.863947 ], [ -124.392700, 47.720849 ], [ -124.683838, 48.184401 ], [ -124.562988, 48.378145 ], [ -123.118286, 48.037692 ], [ -122.585449, 47.096305 ], [ -122.338257, 47.357432 ], [ -122.497559, 48.180739 ], [ -122.838135, 48.998240 ], [ -112.060547, 48.998240 ] ] ], [ [ [ -130.292358, 56.022948 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.534058, 54.800685 ], [ -131.083374, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.055664, 55.776573 ], [ -132.138062, 56.022948 ], [ -130.292358, 56.022948 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.268688 ], [ -134.269409, 58.859224 ], [ -133.352051, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.704102, 56.550400 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.990234, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.055664, 55.776573 ], [ -132.247925, 56.368293 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.121419 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.193871 ], [ -135.439453, 59.753628 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.060547, 66.687784 ], [ -112.060547, 55.528631 ], [ -129.990234, 55.528631 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -131.704102, 56.550400 ], [ -132.731323, 57.692406 ], [ -133.352051, 58.410345 ], [ -134.269409, 58.859224 ], [ -134.945068, 59.268688 ], [ -135.000000, 59.324783 ], [ -135.439453, 59.753628 ], [ -135.439453, 66.687784 ], [ -112.060547, 66.687784 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.439453, 59.753628 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.268688 ], [ -134.269409, 58.859224 ], [ -133.352051, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.704102, 56.550400 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.990234, 55.528631 ], [ -131.978760, 55.528631 ], [ -132.055664, 55.776573 ], [ -132.247925, 56.368293 ], [ -133.538818, 57.177947 ], [ -134.077148, 58.121419 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.439453, 58.193871 ], [ -135.439453, 59.753628 ] ] ] } } ] } ] } , @@ -945,11 +929,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.816686 ], [ -89.560547, 17.811456 ], [ -89.560547, 14.370834 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.301647 ], [ -89.560547, 14.227113 ], [ -89.719849, 14.131249 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.093384, 13.731381 ], [ -90.609741, 13.907408 ], [ -91.230469, 13.928736 ], [ -91.686401, 14.125922 ], [ -92.224731, 14.535733 ], [ -92.202759, 14.827991 ], [ -92.087402, 15.061515 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.409740 ], [ -90.598755, 16.467695 ], [ -90.708618, 16.683555 ], [ -91.082153, 16.914939 ], [ -91.450195, 17.250990 ], [ -90.999756, 17.250990 ], [ -90.999756, 17.816686 ], [ -90.000000, 17.816686 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.844238, 22.350076 ], [ -97.712402, 21.943046 ], [ -97.695923, 21.897181 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.632784 ], [ -96.525879, 19.890723 ], [ -96.289673, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.421997, 18.140632 ], [ -93.548584, 18.422290 ], [ -92.785034, 18.521283 ], [ -92.037964, 18.703489 ], [ -91.406250, 18.875103 ], [ -90.769043, 19.285221 ], [ -90.532837, 19.864894 ], [ -90.450439, 20.704739 ], [ -90.274658, 20.997343 ], [ -90.000000, 21.105000 ], [ -89.598999, 21.258661 ], [ -89.560547, 21.268900 ], [ -89.560547, 17.811456 ], [ -90.000000, 17.816686 ], [ -90.999756, 17.816686 ], [ -90.999756, 17.250990 ], [ -91.450195, 17.250990 ], [ -91.082153, 16.914939 ], [ -90.708618, 16.683555 ], [ -90.598755, 16.467695 ], [ -90.439453, 16.409740 ], [ -90.461426, 16.066929 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.061515 ], [ -92.202759, 14.827991 ], [ -92.224731, 14.535733 ], [ -93.356323, 15.612456 ], [ -93.872681, 15.940202 ], [ -94.691162, 16.198850 ], [ -95.251465, 16.124985 ], [ -96.053467, 15.749963 ], [ -96.553345, 15.654776 ], [ -97.261963, 15.913791 ], [ -98.009033, 16.103876 ], [ -98.948364, 16.562493 ], [ -99.695435, 16.704602 ], [ -100.827026, 17.172283 ], [ -101.661987, 17.649257 ], [ -101.914673, 17.916023 ], [ -102.474976, 17.973508 ], [ -103.502197, 18.291950 ], [ -103.914185, 18.745108 ], [ -104.990845, 19.316327 ], [ -105.490723, 19.947533 ], [ -105.732422, 20.432160 ], [ -105.397339, 20.529933 ], [ -105.501709, 20.817741 ], [ -105.270996, 21.074249 ], [ -105.265503, 21.422390 ], [ -105.600586, 21.871695 ], [ -105.617065, 21.943046 ], [ -105.693970, 22.268764 ], [ -105.748901, 22.350076 ], [ -97.844238, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.560547, 14.227113 ], [ -89.560547, 13.491131 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.662001 ], [ -90.093384, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.131249 ], [ -89.560547, 14.227113 ] ] ], [ [ [ -89.560547, 14.301647 ], [ -89.588013, 14.360191 ], [ -89.560547, 14.370834 ], [ -89.560547, 14.301647 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.816686 ], [ -89.560547, 17.811456 ], [ -89.560547, 13.491131 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.662001 ], [ -90.093384, 13.731381 ], [ -90.609741, 13.907408 ], [ -91.230469, 13.928736 ], [ -91.686401, 14.125922 ], [ -92.224731, 14.535733 ], [ -92.202759, 14.827991 ], [ -92.087402, 15.061515 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.461426, 16.066929 ], [ -90.439453, 16.409740 ], [ -90.598755, 16.467695 ], [ -90.708618, 16.683555 ], [ -91.082153, 16.914939 ], [ -91.450195, 17.250990 ], [ -90.999756, 17.250990 ], [ -90.999756, 17.816686 ], [ -90.000000, 17.816686 ] ] ] } } ] } ] } , @@ -963,9 +945,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.636230, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.447422 ], [ -91.636963, 48.140432 ], [ -90.829468, 48.268569 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.152588, 49.382373 ], [ -94.817505, 49.389524 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.560547, 56.022948 ], [ -89.560547, 48.011975 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.829468, 48.268569 ], [ -91.636963, 48.140432 ], [ -92.609253, 48.447422 ], [ -93.630981, 48.607490 ], [ -94.328613, 48.669199 ], [ -94.636230, 48.839413 ], [ -94.817505, 49.389524 ], [ -95.152588, 49.382373 ], [ -95.158081, 48.998240 ], [ -112.939453, 48.998240 ], [ -112.939453, 56.022948 ], [ -89.560547, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.636230, 48.839413 ], [ -94.328613, 48.669199 ], [ -93.630981, 48.607490 ], [ -92.609253, 48.447422 ], [ -91.636963, 48.140432 ], [ -90.829468, 48.268569 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.560547, 48.011975 ], [ -89.560547, 40.647304 ], [ -112.939453, 40.647304 ], [ -112.939453, 48.998240 ], [ -95.158081, 48.998240 ], [ -95.152588, 49.382373 ], [ -94.817505, 49.389524 ] ] ] } } ] } ] } , @@ -1025,9 +1007,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.519564 ], [ -68.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.500000, -54.873446 ], [ -67.060547, -54.892406 ], [ -67.060547, -55.021725 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.148193, -55.612487 ], [ -68.637085, -55.581450 ], [ -69.230347, -55.500639 ], [ -69.955444, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.262573, -54.495568 ], [ -73.284302, -53.959318 ], [ -74.663086, -52.839277 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.109009, -54.075506 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.932086 ], [ -69.345703, -52.519564 ] ] ], [ [ [ -71.872559, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.746216, -42.053372 ], [ -72.147217, -42.256984 ], [ -71.916504, -43.409038 ], [ -71.460571, -43.786958 ], [ -71.790161, -44.209773 ], [ -71.328735, -44.410240 ], [ -71.218872, -44.785734 ], [ -71.658325, -44.976457 ], [ -71.548462, -45.560218 ], [ -71.916504, -46.886477 ], [ -72.443848, -47.739323 ], [ -72.328491, -48.246626 ], [ -72.647095, -48.879167 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.380502 ], [ -72.976685, -50.743408 ], [ -72.306519, -50.677316 ], [ -72.328491, -51.426614 ], [ -71.911011, -52.008555 ], [ -69.499512, -52.143602 ], [ -68.571167, -52.301761 ], [ -69.461060, -52.291683 ], [ -69.938965, -52.539614 ], [ -70.845337, -52.898962 ], [ -71.004639, -53.833081 ], [ -71.427612, -53.855767 ], [ -72.559204, -53.533778 ], [ -73.701782, -52.835958 ], [ -74.943237, -52.264796 ], [ -75.256348, -51.631657 ], [ -74.976196, -51.044848 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.713458 ], [ -74.124756, -46.939012 ], [ -75.640869, -46.649436 ], [ -74.690552, -45.763691 ], [ -74.349976, -44.103365 ], [ -73.240356, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.118599 ], [ -73.701782, -43.365126 ], [ -74.328003, -43.225193 ], [ -74.014893, -41.795888 ], [ -73.866577, -40.979898 ], [ -73.806152, -40.647304 ], [ -71.872559, -40.647304 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.631592, -52.636397 ], [ -68.247070, -53.100621 ], [ -67.747192, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.060547, -54.168866 ], [ -67.060547, -54.892406 ], [ -67.500000, -54.873446 ], [ -68.631592, -54.870285 ], [ -68.631592, -52.636397 ] ] ], [ [ [ -67.060547, -40.647304 ], [ -67.060547, -45.398450 ], [ -67.291260, -45.552525 ], [ -67.500000, -46.092281 ], [ -67.576904, -46.301406 ], [ -67.500000, -46.362093 ], [ -67.060547, -46.690899 ], [ -67.060547, -48.647428 ], [ -67.164917, -48.698212 ], [ -67.500000, -49.303636 ], [ -67.813110, -49.869857 ], [ -68.724976, -50.264765 ], [ -69.136963, -50.732978 ], [ -68.812866, -51.771239 ], [ -68.148193, -52.352119 ], [ -68.571167, -52.301761 ], [ -69.499512, -52.143602 ], [ -71.911011, -52.008555 ], [ -72.328491, -51.426614 ], [ -72.306519, -50.677316 ], [ -72.976685, -50.743408 ], [ -73.328247, -50.380502 ], [ -73.416138, -49.317961 ], [ -72.647095, -48.879167 ], [ -72.328491, -48.246626 ], [ -72.443848, -47.739323 ], [ -71.916504, -46.886477 ], [ -71.548462, -45.560218 ], [ -71.658325, -44.976457 ], [ -71.218872, -44.785734 ], [ -71.328735, -44.410240 ], [ -71.790161, -44.209773 ], [ -71.460571, -43.786958 ], [ -71.916504, -43.409038 ], [ -72.147217, -42.256984 ], [ -71.746216, -42.053372 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.830437 ], [ -71.872559, -40.647304 ], [ -67.060547, -40.647304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.519564 ], [ -68.631592, -52.636397 ], [ -68.631592, -54.870285 ], [ -67.500000, -54.873446 ], [ -67.060547, -54.892406 ], [ -67.060547, -55.021725 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -68.148193, -55.612487 ], [ -68.637085, -55.581450 ], [ -69.230347, -55.500639 ], [ -69.955444, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.262573, -54.495568 ], [ -73.284302, -53.959318 ], [ -74.663086, -52.839277 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.716216 ], [ -71.109009, -54.075506 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.932086 ], [ -69.345703, -52.519564 ] ] ], [ [ [ -71.872559, -40.647304 ], [ -71.916504, -40.830437 ], [ -71.894531, -40.979898 ], [ -71.746216, -42.053372 ], [ -72.147217, -42.256984 ], [ -71.916504, -43.409038 ], [ -71.460571, -43.786958 ], [ -71.790161, -44.209773 ], [ -71.328735, -44.410240 ], [ -71.218872, -44.785734 ], [ -71.658325, -44.976457 ], [ -71.548462, -45.560218 ], [ -71.916504, -46.886477 ], [ -72.443848, -47.739323 ], [ -72.328491, -48.246626 ], [ -72.647095, -48.879167 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.380502 ], [ -72.976685, -50.743408 ], [ -72.306519, -50.677316 ], [ -72.328491, -51.426614 ], [ -71.911011, -52.008555 ], [ -69.499512, -52.143602 ], [ -68.571167, -52.301761 ], [ -69.461060, -52.291683 ], [ -69.938965, -52.539614 ], [ -70.845337, -52.898962 ], [ -71.004639, -53.833081 ], [ -71.427612, -53.855767 ], [ -72.559204, -53.533778 ], [ -73.701782, -52.835958 ], [ -74.943237, -52.264796 ], [ -75.256348, -51.631657 ], [ -74.976196, -51.044848 ], [ -75.476074, -50.380502 ], [ -75.607910, -48.676454 ], [ -75.179443, -47.713458 ], [ -74.124756, -46.939012 ], [ -75.640869, -46.649436 ], [ -74.690552, -45.763691 ], [ -74.349976, -44.103365 ], [ -73.240356, -44.457310 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.118599 ], [ -73.701782, -43.365126 ], [ -74.328003, -43.225193 ], [ -74.014893, -41.795888 ], [ -73.866577, -40.979898 ], [ -73.806152, -40.647304 ], [ -71.872559, -40.647304 ] ] ] ] } } ] } ] } , @@ -1035,9 +1017,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -21.534847 ], [ -67.060547, -22.684984 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.824097, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.208618, -21.534847 ], [ -67.060547, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.208618, -21.534847 ], [ -68.093262, -21.943046 ], [ -67.824097, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -67.060547, -22.831883 ], [ -67.060547, -23.211058 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -68.417358, -24.522137 ], [ -68.384399, -26.185018 ], [ -68.593140, -26.509905 ], [ -68.296509, -26.902477 ], [ -68.999634, -27.522887 ], [ -69.653320, -28.459033 ], [ -70.010376, -29.367814 ], [ -69.916992, -30.339695 ], [ -70.532227, -31.367709 ], [ -70.070801, -33.091542 ], [ -69.812622, -33.275435 ], [ -69.818115, -34.193630 ], [ -70.389404, -35.169318 ], [ -70.361938, -36.004673 ], [ -71.119995, -36.659606 ], [ -71.119995, -37.579413 ], [ -70.812378, -38.552461 ], [ -71.411133, -38.916682 ], [ -71.680298, -39.808536 ], [ -71.916504, -40.834593 ], [ -71.894531, -40.979898 ], [ -71.850586, -41.310824 ], [ -73.927002, -41.310824 ], [ -73.866577, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.218384, -39.257778 ], [ -73.504028, -38.285625 ], [ -73.586426, -37.155939 ], [ -73.163452, -37.125286 ], [ -72.553711, -35.509872 ], [ -71.861572, -33.911454 ], [ -71.438599, -32.421703 ], [ -71.669312, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.639740 ], [ -70.724487, -25.705888 ], [ -70.400391, -23.629427 ], [ -70.164185, -21.943046 ], [ -70.109253, -21.534847 ], [ -68.208618, -21.534847 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, -23.211058 ], [ -67.060547, -41.310824 ], [ -71.850586, -41.310824 ], [ -71.894531, -40.979898 ], [ -71.916504, -40.834593 ], [ -71.680298, -39.808536 ], [ -71.411133, -38.916682 ], [ -70.812378, -38.552461 ], [ -71.119995, -37.579413 ], [ -71.119995, -36.659606 ], [ -70.361938, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.193630 ], [ -69.812622, -33.275435 ], [ -70.070801, -33.091542 ], [ -70.532227, -31.367709 ], [ -69.916992, -30.339695 ], [ -70.010376, -29.367814 ], [ -69.653320, -28.459033 ], [ -68.999634, -27.522887 ], [ -68.296509, -26.902477 ], [ -68.593140, -26.509905 ], [ -68.384399, -26.185018 ], [ -68.417358, -24.522137 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -67.060547, -23.211058 ] ] ], [ [ [ -67.060547, -22.831883 ], [ -67.104492, -22.735657 ], [ -67.060547, -22.684984 ], [ -67.060547, -22.831883 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.208618, -21.534847 ], [ -68.093262, -21.943046 ], [ -67.824097, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -67.060547, -22.831883 ], [ -67.060547, -23.211058 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -68.417358, -24.522137 ], [ -68.384399, -26.185018 ], [ -68.593140, -26.509905 ], [ -68.296509, -26.902477 ], [ -68.999634, -27.522887 ], [ -69.653320, -28.459033 ], [ -70.010376, -29.367814 ], [ -69.916992, -30.339695 ], [ -70.532227, -31.367709 ], [ -70.070801, -33.091542 ], [ -69.812622, -33.275435 ], [ -69.818115, -34.193630 ], [ -70.389404, -35.169318 ], [ -70.361938, -36.004673 ], [ -71.119995, -36.659606 ], [ -71.119995, -37.579413 ], [ -70.812378, -38.552461 ], [ -71.411133, -38.916682 ], [ -71.680298, -39.808536 ], [ -71.916504, -40.834593 ], [ -71.894531, -40.979898 ], [ -71.850586, -41.310824 ], [ -73.927002, -41.310824 ], [ -73.866577, -40.979898 ], [ -73.674316, -39.943436 ], [ -73.218384, -39.257778 ], [ -73.504028, -38.285625 ], [ -73.586426, -37.155939 ], [ -73.163452, -37.125286 ], [ -72.553711, -35.509872 ], [ -71.861572, -33.911454 ], [ -71.438599, -32.421703 ], [ -71.669312, -30.921076 ], [ -71.367188, -30.097613 ], [ -71.488037, -28.863918 ], [ -70.905762, -27.639740 ], [ -70.724487, -25.705888 ], [ -70.400391, -23.629427 ], [ -70.164185, -21.943046 ], [ -70.109253, -21.534847 ], [ -68.208618, -21.534847 ] ] ] } } ] } ] } , @@ -1049,38 +1031,34 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.060425 ], [ -74.437866, -0.532829 ], [ -74.119263, -1.005197 ], [ -73.657837, -1.263325 ], [ -73.070068, -2.311994 ], [ -72.322998, -2.438229 ], [ -71.773682, -2.169281 ], [ -71.411133, -2.344926 ], [ -70.812378, -2.257106 ], [ -70.048828, -2.729070 ], [ -70.691528, -3.743671 ], [ -70.394897, -3.765597 ], [ -69.889526, -4.297113 ], [ -70.795898, -4.253290 ], [ -70.927734, -4.401183 ], [ -71.746216, -4.592852 ], [ -72.888794, -5.276948 ], [ -72.965698, -5.741708 ], [ -73.218384, -6.091398 ], [ -73.119507, -6.631870 ], [ -73.723755, -6.920974 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.525873 ], [ -73.569946, -8.423470 ], [ -73.015137, -9.031578 ], [ -73.223877, -9.465317 ], [ -72.559204, -9.519497 ], [ -72.185669, -10.055403 ], [ -71.301270, -10.082446 ], [ -70.482788, -9.492408 ], [ -70.548706, -11.011297 ], [ -70.092773, -11.124507 ], [ -69.526978, -10.951978 ], [ -68.664551, -12.565287 ], [ -68.878784, -12.902844 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.455958 ], [ -69.340210, -14.955399 ], [ -69.158936, -15.326572 ], [ -69.389648, -15.660065 ], [ -68.955688, -16.504566 ], [ -69.587402, -17.581194 ], [ -69.856567, -18.093644 ], [ -70.372925, -18.349312 ], [ -71.372681, -17.774843 ], [ -71.460571, -17.366367 ], [ -73.443604, -16.362310 ], [ -75.234375, -15.268288 ], [ -76.008911, -14.652683 ], [ -76.420898, -13.822078 ], [ -76.256104, -13.533860 ], [ -77.107544, -12.221918 ], [ -78.090820, -10.379765 ], [ -79.035645, -8.385431 ], [ -79.442139, -7.934115 ], [ -79.760742, -7.193551 ], [ -80.535278, -6.544560 ], [ -81.249390, -6.140555 ], [ -80.925293, -5.692516 ], [ -81.408691, -4.740675 ], [ -81.095581, -4.039618 ], [ -80.299072, -3.403758 ], [ -80.183716, -3.820408 ], [ -80.469360, -4.061536 ], [ -80.441895, -4.428567 ], [ -80.029907, -4.346411 ], [ -79.623413, -4.455951 ], [ -79.205933, -4.959615 ], [ -78.640137, -4.549046 ], [ -78.447876, -3.875216 ], [ -77.838135, -3.003384 ], [ -76.635132, -2.608352 ], [ -75.541992, -1.565357 ], [ -75.234375, -0.911827 ], [ -75.371704, -0.153808 ], [ -75.102539, -0.060425 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.228437 ], [ -67.170410, -10.309515 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.526978, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.011297 ], [ -70.482788, -9.492408 ], [ -71.301270, -10.082446 ], [ -72.185669, -10.055403 ], [ -72.559204, -9.519497 ], [ -73.223877, -9.465317 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.525873 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.920974 ], [ -73.119507, -6.631870 ], [ -73.218384, -6.091398 ], [ -72.965698, -5.741708 ], [ -72.888794, -5.276948 ], [ -71.746216, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.253290 ], [ -69.889526, -4.297113 ], [ -69.444580, -1.559866 ], [ -69.417114, -1.126026 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, -10.228437 ], [ -67.060547, -22.350076 ], [ -67.977905, -22.350076 ], [ -68.093262, -21.943046 ], [ -68.219604, -21.493964 ], [ -68.757935, -20.375527 ], [ -68.439331, -19.404430 ], [ -68.966675, -18.984220 ], [ -69.098511, -18.260653 ], [ -69.587402, -17.581194 ], [ -68.955688, -16.504566 ], [ -69.389648, -15.660065 ], [ -69.158936, -15.326572 ], [ -69.340210, -14.955399 ], [ -68.950195, -14.455958 ], [ -68.928223, -13.603278 ], [ -68.878784, -12.902844 ], [ -68.664551, -12.565287 ], [ -69.526978, -10.951978 ], [ -68.785400, -11.038255 ], [ -68.269043, -11.016689 ], [ -68.049316, -10.714587 ], [ -67.500000, -10.455402 ], [ -67.170410, -10.309515 ], [ -67.060547, -10.228437 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 0.439449 ], [ -67.060547, -10.228437 ], [ -67.170410, -10.309515 ], [ -67.500000, -10.455402 ], [ -68.049316, -10.714587 ], [ -68.269043, -11.016689 ], [ -68.785400, -11.038255 ], [ -69.526978, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.011297 ], [ -70.482788, -9.492408 ], [ -71.301270, -10.082446 ], [ -72.185669, -10.055403 ], [ -72.559204, -9.519497 ], [ -73.223877, -9.465317 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.525873 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.920974 ], [ -73.119507, -6.631870 ], [ -73.218384, -6.091398 ], [ -72.965698, -5.741708 ], [ -72.888794, -5.276948 ], [ -71.746216, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.253290 ], [ -69.889526, -4.297113 ], [ -69.444580, -1.559866 ], [ -69.417114, -1.126026 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.186767 ], [ -70.021362, 0.000000 ], [ -70.015869, 0.439449 ], [ -67.060547, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.587402, -17.581194 ], [ -69.098511, -18.260653 ], [ -68.966675, -18.984220 ], [ -68.439331, -19.404430 ], [ -68.757935, -20.375527 ], [ -68.219604, -21.493964 ], [ -68.093262, -21.943046 ], [ -67.977905, -22.350076 ], [ -70.224609, -22.350076 ], [ -70.164185, -21.943046 ], [ -70.087280, -21.396819 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.349312 ], [ -69.856567, -18.093644 ], [ -69.587402, -17.581194 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.816686 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.014768 ], [ -89.225464, 15.887376 ], [ -88.928833, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.342465 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.588013, 14.360191 ], [ -89.533081, 14.243087 ], [ -89.719849, 14.131249 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.816686 ], [ -90.000000, 17.816686 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.539957 ], [ -86.808472, 21.330315 ], [ -86.846924, 20.848545 ], [ -87.379761, 20.251890 ], [ -87.621460, 19.647761 ], [ -87.434692, 19.471771 ], [ -87.835693, 18.260653 ], [ -88.088379, 18.516075 ], [ -88.489380, 18.484819 ], [ -88.846436, 17.879431 ], [ -89.027710, 17.999632 ], [ -89.148560, 17.952606 ], [ -89.143066, 17.806226 ], [ -90.000000, 17.816686 ], [ -90.439453, 17.816686 ], [ -90.439453, 20.725291 ], [ -90.280151, 20.997343 ], [ -90.000000, 21.105000 ], [ -89.598999, 21.258661 ], [ -88.544312, 21.493964 ], [ -87.654419, 21.458181 ], [ -87.050171, 21.539957 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.351807, 14.424040 ], [ -89.055176, 14.338904 ], [ -88.840942, 14.136576 ], [ -88.538818, 13.976715 ], [ -88.500366, 13.843414 ], [ -88.066406, 13.960723 ], [ -87.857666, 13.891411 ], [ -87.720337, 13.784737 ], [ -87.791748, 13.384276 ], [ -87.901611, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.840942, 13.255986 ], [ -89.252930, 13.459080 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.662001 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.131249 ], [ -89.533081, 14.243087 ], [ -89.588013, 14.360191 ], [ -89.351807, 14.424040 ] ] ], [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.236694, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.262141 ], [ -88.731079, 16.230498 ], [ -88.928833, 15.887376 ], [ -89.225464, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.952606 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.879431 ], [ -88.489380, 18.484819 ], [ -88.297119, 18.500447 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.013769 ], [ -83.144531, 14.992546 ], [ -83.232422, 14.897013 ], [ -83.281860, 14.673940 ], [ -83.182983, 14.306969 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.622437, 12.318536 ], [ -83.715820, 11.894228 ], [ -83.649902, 11.625335 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.935798 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.522827, 11.808211 ], [ -86.742554, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.665405, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.313843, 12.983148 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.250640 ], [ -86.731567, 13.261333 ], [ -86.753540, 13.752725 ], [ -86.517334, 13.779402 ], [ -86.308594, 13.768731 ], [ -86.094360, 14.035344 ], [ -85.797729, 13.832746 ], [ -85.698853, 13.960723 ], [ -85.512085, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.557001 ], [ -85.050659, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.817371 ], [ -84.649658, 14.663312 ], [ -84.446411, 14.620794 ], [ -84.226685, 14.748323 ], [ -83.973999, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.013769 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.882093 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.993015 ], [ -84.523315, 15.855674 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.268288 ], [ -83.144531, 14.992546 ], [ -83.490601, 15.013769 ], [ -83.627930, 14.881087 ], [ -83.973999, 14.748323 ], [ -84.226685, 14.748323 ], [ -84.446411, 14.620794 ], [ -84.649658, 14.663312 ], [ -84.819946, 14.817371 ], [ -84.924316, 14.790817 ], [ -85.050659, 14.551684 ], [ -85.149536, 14.557001 ], [ -85.166016, 14.354870 ], [ -85.512085, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.797729, 13.832746 ], [ -86.094360, 14.035344 ], [ -86.308594, 13.768731 ], [ -86.517334, 13.779402 ], [ -86.753540, 13.752725 ], [ -86.731567, 13.261333 ], [ -86.879883, 13.250640 ], [ -87.006226, 13.025966 ], [ -87.313843, 12.983148 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.720337, 13.784737 ], [ -87.857666, 13.891411 ], [ -88.066406, 13.960723 ], [ -88.500366, 13.843414 ], [ -88.538818, 13.976715 ], [ -88.840942, 14.136576 ], [ -89.055176, 14.338904 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.225464, 14.870469 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.342465 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.860958 ], [ -87.615967, 15.876809 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.845105 ], [ -86.901855, 15.755249 ], [ -86.440430, 15.781682 ], [ -86.116333, 15.892659 ], [ -86.000977, 16.003576 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.816686 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.014768 ], [ -89.225464, 15.887376 ], [ -88.928833, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.516846, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.342465 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.870469 ], [ -89.143066, 14.679254 ], [ -89.351807, 14.424040 ], [ -89.588013, 14.360191 ], [ -89.533081, 14.243087 ], [ -89.719849, 14.131249 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.098877, 13.731381 ], [ -90.439453, 13.854081 ], [ -90.439453, 17.816686 ], [ -90.000000, 17.816686 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.353027, 11.000512 ], [ -84.188232, 10.790141 ], [ -83.891602, 10.725381 ], [ -83.655396, 10.935798 ], [ -83.402710, 10.395975 ], [ -83.012695, 9.990491 ], [ -82.545776, 9.562834 ], [ -82.930298, 9.476154 ], [ -82.924805, 9.074976 ], [ -82.716064, 8.923060 ], [ -82.869873, 8.803654 ], [ -82.825928, 8.624472 ], [ -82.913818, 8.423470 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.047853 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.644165, 9.611582 ], [ -84.710083, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.907837, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.336304, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.131117 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -86.000977, 16.003576 ], [ -85.682373, 15.950766 ], [ -85.440674, 15.882093 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.993015 ], [ -84.523315, 15.855674 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.770752, 15.421910 ], [ -83.408203, 15.268288 ], [ -83.144531, 14.992546 ], [ -83.232422, 14.897013 ], [ -83.281860, 14.673940 ], [ -83.182983, 14.306969 ], [ -83.413696, 13.971385 ], [ -83.518066, 13.565902 ], [ -83.551025, 13.127629 ], [ -83.496094, 12.865360 ], [ -83.474121, 12.415119 ], [ -83.622437, 12.318536 ], [ -83.715820, 11.894228 ], [ -83.649902, 11.625335 ], [ -83.853149, 11.372339 ], [ -83.809204, 11.102947 ], [ -83.655396, 10.935798 ], [ -83.891602, 10.725381 ], [ -84.188232, 10.790141 ], [ -84.353027, 11.000512 ], [ -84.671631, 11.081385 ], [ -84.902344, 10.951978 ], [ -85.561523, 11.216122 ], [ -85.709839, 11.086775 ], [ -86.055908, 11.404649 ], [ -86.522827, 11.808211 ], [ -86.742554, 12.141376 ], [ -87.165527, 12.458033 ], [ -87.665405, 12.908198 ], [ -87.555542, 13.063426 ], [ -87.390747, 12.913552 ], [ -87.313843, 12.983148 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.901611, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.840942, 13.255986 ], [ -89.252930, 13.459080 ], [ -89.813232, 13.517838 ], [ -90.000000, 13.662001 ], [ -90.098877, 13.731381 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.719849, 14.131249 ], [ -89.533081, 14.243087 ], [ -89.588013, 14.360191 ], [ -89.351807, 14.424040 ], [ -89.143066, 14.679254 ], [ -89.225464, 14.870469 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.342465 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.686510 ], [ -87.901611, 15.860958 ], [ -87.615967, 15.876809 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.845105 ], [ -86.901855, 15.755249 ], [ -86.440430, 15.781682 ], [ -86.116333, 15.892659 ], [ -86.000977, 16.003576 ] ] ], [ [ [ -88.297119, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.104858, 18.349312 ], [ -88.121338, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.486911 ], [ -88.302612, 17.130292 ], [ -88.236694, 17.035777 ], [ -88.352051, 16.530898 ], [ -88.549805, 16.262141 ], [ -88.731079, 16.230498 ], [ -88.928833, 15.887376 ], [ -89.225464, 15.887376 ], [ -89.148560, 17.014768 ], [ -89.143066, 17.806226 ], [ -89.148560, 17.952606 ], [ -89.027710, 17.999632 ], [ -88.846436, 17.879431 ], [ -88.489380, 18.484819 ], [ -88.297119, 18.500447 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Panama", "sov_a3": "PAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Panama", "adm0_a3": "PAN", "geou_dif": 0, "geounit": "Panama", "gu_a3": "PAN", "su_dif": 0, "subunit": "Panama", "su_a3": "PAN", "brk_diff": 0, "name": "Panama", "name_long": "Panama", "brk_a3": "PAN", "brk_name": "Panama", "abbrev": "Pan.", "postal": "PA", "formal_en": "Republic of Panama", "name_sort": "Panama", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3360474, "gdp_md_est": 38830, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PA", "iso_a3": "PAN", "iso_n3": "591", "un_a3": "591", "wb_a2": "PA", "wb_a3": "PAN", "woe_id": -99, "adm0_a3_is": "PAN", "adm0_a3_us": "PAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.497314, 9.416548 ], [ -78.052368, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.349243, 8.667918 ], [ -77.475586, 8.521268 ], [ -77.239380, 7.934115 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.509535 ], [ -78.425903, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.086423 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.814405 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.128296, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.963257, 8.222364 ], [ -82.913818, 8.423470 ], [ -82.825928, 8.624472 ], [ -82.869873, 8.803654 ], [ -82.716064, 8.923060 ], [ -82.924805, 9.074976 ], [ -82.930298, 9.476154 ], [ -82.545776, 9.562834 ], [ -82.183228, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.710815, 9.031578 ], [ -81.436157, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.518799, 9.107521 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.519775, 21.207459 ], [ -76.195679, 21.217701 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.174194, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.717041, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.820679, 22.192491 ], [ -82.100830, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.490601, 22.172145 ], [ -83.908081, 22.156883 ], [ -84.028931, 21.943046 ], [ -84.050903, 21.907375 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.207749 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.195679, 17.884659 ], [ -76.898804, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.858519 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.794189, 18.521283 ] ] ], [ [ [ -78.101807, 22.350076 ], [ -77.536011, 21.943046 ], [ -76.519775, 21.207459 ], [ -76.195679, 21.217701 ], [ -75.596924, 21.017855 ], [ -75.668335, 20.735566 ], [ -74.932251, 20.694462 ], [ -74.174194, 20.282809 ], [ -74.295044, 20.050771 ], [ -74.959717, 19.921713 ], [ -75.635376, 19.870060 ], [ -76.322021, 19.952696 ], [ -77.755737, 19.854561 ], [ -77.085571, 20.411569 ], [ -77.492065, 20.673905 ], [ -78.134766, 20.740703 ], [ -78.480835, 21.028110 ], [ -78.717041, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.039822 ], [ -81.820679, 22.192491 ], [ -82.100830, 22.350076 ], [ -78.101807, 22.350076 ] ] ], [ [ [ -83.243408, 22.350076 ], [ -83.490601, 22.172145 ], [ -83.908081, 22.156883 ], [ -84.028931, 21.943046 ], [ -84.050903, 21.907375 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.207749 ], [ -84.358521, 22.350076 ], [ -83.243408, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.561523, 11.216122 ], [ -84.902344, 10.951978 ], [ -84.671631, 11.081385 ], [ -84.353027, 11.000512 ], [ -84.188232, 10.790141 ], [ -83.891602, 10.725381 ], [ -83.655396, 10.935798 ], [ -83.402710, 10.395975 ], [ -83.012695, 9.990491 ], [ -82.545776, 9.562834 ], [ -82.183228, 9.205138 ], [ -82.205200, 8.993600 ], [ -81.809692, 8.950193 ], [ -81.710815, 9.031578 ], [ -81.436157, 8.787368 ], [ -80.947266, 8.857934 ], [ -80.518799, 9.107521 ], [ -79.914551, 9.313569 ], [ -79.573975, 9.611582 ], [ -79.019165, 9.552000 ], [ -79.057617, 9.454480 ], [ -78.497314, 9.416548 ], [ -78.052368, 9.248514 ], [ -77.728271, 8.944767 ], [ -77.349243, 8.667918 ], [ -77.475586, 8.521268 ], [ -77.239380, 7.934115 ], [ -77.431641, 7.634776 ], [ -77.750244, 7.710992 ], [ -77.882080, 7.220800 ], [ -78.211670, 7.509535 ], [ -78.425903, 8.048352 ], [ -78.178711, 8.320212 ], [ -78.431396, 8.385431 ], [ -78.618164, 8.716789 ], [ -79.118042, 8.993600 ], [ -79.557495, 8.928487 ], [ -79.760742, 8.581021 ], [ -80.161743, 8.331083 ], [ -80.381470, 8.298470 ], [ -80.480347, 8.086423 ], [ -80.002441, 7.547656 ], [ -80.277100, 7.416942 ], [ -80.419922, 7.269843 ], [ -80.886841, 7.220800 ], [ -81.057129, 7.814405 ], [ -81.188965, 7.645665 ], [ -81.518555, 7.705548 ], [ -81.721802, 8.108177 ], [ -82.128296, 8.173431 ], [ -82.391968, 8.293035 ], [ -82.820435, 8.287599 ], [ -82.847900, 8.070107 ], [ -82.963257, 8.222364 ], [ -83.507080, 8.445205 ], [ -83.710327, 8.657057 ], [ -83.594971, 8.830795 ], [ -83.633423, 9.047853 ], [ -83.908081, 9.291886 ], [ -84.303589, 9.486990 ], [ -84.644165, 9.611582 ], [ -84.710083, 9.909333 ], [ -84.973755, 10.087854 ], [ -84.907837, 9.795678 ], [ -85.111084, 9.557417 ], [ -85.336304, 9.833567 ], [ -85.660400, 9.930977 ], [ -85.797729, 10.131117 ], [ -85.792236, 10.439196 ], [ -85.660400, 10.752366 ], [ -85.940552, 10.892648 ], [ -85.561523, 11.216122 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Haiti", "sov_a3": "HTI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Haiti", "adm0_a3": "HTI", "geou_dif": 0, "geounit": "Haiti", "gu_a3": "HTI", "su_dif": 0, "subunit": "Haiti", "su_a3": "HTI", "brk_diff": 0, "name": "Haiti", "name_long": "Haiti", "brk_a3": "HTI", "brk_name": "Haiti", "abbrev": "Haiti", "postal": "HT", "formal_en": "Republic of Haiti", "name_sort": "Haiti", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 9035536, "gdp_md_est": 11500, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "HT", "iso_a3": "HTI", "iso_n3": "332", "un_a3": "332", "wb_a2": "HT", "wb_a3": "HTI", "woe_id": -99, "adm0_a3_is": "HTI", "adm0_a3_us": "HTI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.190918, 19.916548 ], [ -72.575684, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.290406 ], [ -69.219360, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.686523, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.620361, 18.380592 ], [ -69.949951, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.753918 ], [ -71.707764, 18.041421 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.454346, 18.338884 ], [ -74.366455, 18.661859 ], [ -73.449097, 18.526492 ], [ -72.691040, 18.443136 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.098458 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jamaica", "sov_a3": "JAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jamaica", "adm0_a3": "JAM", "geou_dif": 0, "geounit": "Jamaica", "gu_a3": "JAM", "su_dif": 0, "subunit": "Jamaica", "su_a3": "JAM", "brk_diff": 0, "name": "Jamaica", "name_long": "Jamaica", "brk_a3": "JAM", "brk_name": "Jamaica", "abbrev": "Jam.", "postal": "J", "formal_en": "Jamaica", "name_sort": "Jamaica", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 10, "pop_est": 2825928, "gdp_md_est": 20910, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JM", "iso_a3": "JAM", "iso_n3": "388", "un_a3": "388", "wb_a2": "JM", "wb_a3": "JAM", "woe_id": -99, "adm0_a3_is": "JAM", "adm0_a3_us": "JAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -73.190918, 19.916548 ], [ -72.575684, 19.870060 ], [ -71.713257, 19.715000 ], [ -71.586914, 19.885557 ], [ -70.806885, 19.880392 ], [ -70.213623, 19.621892 ], [ -69.949951, 19.647761 ], [ -69.768677, 19.290406 ], [ -69.219360, 19.311143 ], [ -69.252319, 19.015384 ], [ -68.807373, 18.979026 ], [ -68.318481, 18.609807 ], [ -68.686523, 18.203262 ], [ -69.164429, 18.422290 ], [ -69.620361, 18.380592 ], [ -69.949951, 18.427502 ], [ -70.131226, 18.245003 ], [ -70.515747, 18.182388 ], [ -70.669556, 18.427502 ], [ -70.999146, 18.281518 ], [ -71.400146, 17.596903 ], [ -71.658325, 17.753918 ], [ -71.707764, 18.041421 ], [ -72.372437, 18.213698 ], [ -72.844849, 18.145852 ], [ -73.454590, 18.218916 ], [ -73.921509, 18.030975 ], [ -74.454346, 18.338884 ], [ -74.366455, 18.661859 ], [ -73.449097, 18.526492 ], [ -72.691040, 18.443136 ], [ -72.333984, 18.667063 ], [ -72.789917, 19.098458 ], [ -72.784424, 19.482129 ], [ -73.416138, 19.637414 ], [ -73.190918, 19.916548 ] ] ], [ [ [ -77.794189, 18.521283 ], [ -76.893311, 18.401443 ], [ -76.365967, 18.161511 ], [ -76.195679, 17.884659 ], [ -76.898804, 17.868975 ], [ -77.206421, 17.701595 ], [ -77.766724, 17.858519 ], [ -78.338013, 18.224134 ], [ -78.217163, 18.453557 ], [ -77.794189, 18.521283 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.109152 ], [ -71.328735, 11.775948 ], [ -71.356201, 11.539234 ], [ -71.943970, 11.420802 ], [ -71.619873, 10.968157 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.866040 ], [ -71.696777, 9.069551 ], [ -71.262817, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.153198, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.944458, 12.162856 ], [ -69.581909, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.230591, 10.881859 ], [ -68.192139, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.541821 ], [ -67.060547, 10.568822 ], [ -67.066040, 1.126026 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.801636, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.598744 ], [ -69.450073, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.708252, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.102539, -0.060425 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.289062, 0.411984 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.763027 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.321502 ], [ -77.124023, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.239380, 7.934115 ], [ -77.475586, 8.521268 ], [ -77.349243, 8.667918 ], [ -76.832886, 8.635334 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.273071, 11.102947 ], [ -74.196167, 11.307708 ], [ -73.410645, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.751709, 12.436577 ], [ -71.400146, 12.372197 ], [ -71.136475, 12.109152 ], [ -71.328735, 11.775948 ], [ -71.971436, 11.609193 ], [ -72.224121, 11.108337 ], [ -72.614136, 10.822515 ], [ -72.905273, 10.450000 ], [ -73.026123, 9.736128 ], [ -73.306274, 9.150909 ], [ -72.789917, 9.085824 ], [ -72.658081, 8.624472 ], [ -72.438354, 8.401734 ], [ -72.361450, 7.999397 ], [ -72.476807, 7.629331 ], [ -72.443848, 7.422389 ], [ -72.196655, 7.340675 ], [ -71.960449, 6.991859 ], [ -70.675049, 7.084539 ], [ -70.092773, 6.959144 ], [ -69.389648, 6.096860 ], [ -68.983154, 6.206090 ], [ -68.263550, 6.151478 ], [ -67.692261, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.091398 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.555848 ], [ -67.741699, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.807617, 2.816858 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.597377 ], [ -67.181396, 2.251617 ], [ -67.060547, 1.856365 ], [ -67.066040, 1.126026 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -69.818115, 1.713612 ], [ -69.801636, 1.087581 ], [ -69.219360, 0.983228 ], [ -69.252319, 0.598744 ], [ -69.450073, 0.703107 ], [ -70.015869, 0.538322 ], [ -70.021362, 0.000000 ], [ -70.021362, -0.186767 ], [ -69.708252, -0.439449 ], [ -74.569702, -0.439449 ], [ -75.102539, -0.060425 ], [ -75.371704, -0.153808 ], [ -75.646362, 0.000000 ], [ -75.800171, 0.082397 ], [ -76.289062, 0.411984 ], [ -76.574707, 0.258178 ], [ -77.426147, 0.395505 ], [ -77.667847, 0.823946 ], [ -77.854614, 0.807468 ], [ -78.854370, 1.378651 ], [ -78.991699, 1.691649 ], [ -78.618164, 1.763027 ], [ -78.662109, 2.268084 ], [ -78.425903, 2.630301 ], [ -77.931519, 2.696148 ], [ -77.508545, 3.321502 ], [ -77.124023, 3.847812 ], [ -77.497559, 4.088932 ], [ -77.305298, 4.664030 ], [ -77.530518, 5.583184 ], [ -77.316284, 5.845545 ], [ -77.475586, 6.691887 ], [ -77.882080, 7.220800 ], [ -77.750244, 7.710992 ], [ -77.431641, 7.634776 ], [ -77.239380, 7.934115 ], [ -77.475586, 8.521268 ], [ -77.349243, 8.667918 ], [ -76.832886, 8.635334 ], [ -76.085815, 9.335252 ], [ -75.673828, 9.443643 ], [ -75.662842, 9.774025 ], [ -75.481567, 10.617418 ], [ -74.904785, 11.081385 ], [ -74.273071, 11.102947 ], [ -74.196167, 11.307708 ], [ -73.410645, 11.226898 ], [ -72.625122, 11.732924 ], [ -72.235107, 11.953349 ], [ -71.751709, 12.436577 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 18.521283 ], [ -67.060547, 17.952606 ], [ -67.181396, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ], [ -67.060547, 18.521283 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.944458, 12.162856 ], [ -69.581909, 11.458491 ], [ -68.884277, 11.442339 ], [ -68.230591, 10.881859 ], [ -68.192139, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.541821 ], [ -67.060547, 10.568822 ], [ -67.060547, 1.856365 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.597377 ], [ -67.500000, 2.630301 ], [ -67.807617, 2.816858 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.741699, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.500000, 5.621453 ], [ -67.340698, 6.091398 ], [ -67.500000, 6.173324 ], [ -67.692261, 6.266158 ], [ -68.263550, 6.151478 ], [ -68.983154, 6.206090 ], [ -69.389648, 6.096860 ], [ -70.092773, 6.959144 ], [ -70.675049, 7.084539 ], [ -71.960449, 6.991859 ], [ -72.196655, 7.340675 ], [ -72.443848, 7.422389 ], [ -72.476807, 7.629331 ], [ -72.361450, 7.999397 ], [ -72.438354, 8.401734 ], [ -72.658081, 8.624472 ], [ -72.789917, 9.085824 ], [ -73.306274, 9.150909 ], [ -73.026123, 9.736128 ], [ -72.905273, 10.450000 ], [ -72.614136, 10.822515 ], [ -72.224121, 11.108337 ], [ -71.971436, 11.609193 ], [ -71.328735, 11.775948 ], [ -71.356201, 11.539234 ], [ -71.943970, 11.420802 ], [ -71.619873, 10.968157 ], [ -71.630859, 10.444598 ], [ -72.070312, 9.866040 ], [ -71.696777, 9.069551 ], [ -71.262817, 9.134639 ], [ -71.037598, 9.860628 ], [ -71.350708, 10.212219 ], [ -71.400146, 10.968157 ], [ -70.153198, 11.372339 ], [ -70.290527, 11.845847 ], [ -69.944458, 12.162856 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ecuador", "sov_a3": "ECU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ecuador", "adm0_a3": "ECU", "geou_dif": 0, "geounit": "Ecuador", "gu_a3": "ECU", "su_dif": 0, "subunit": "Ecuador", "su_a3": "ECU", "brk_diff": 0, "name": "Ecuador", "name_long": "Ecuador", "brk_a3": "ECU", "brk_name": "Ecuador", "abbrev": "Ecu.", "postal": "EC", "formal_en": "Republic of Ecuador", "name_sort": "Ecuador", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 14573101, "gdp_md_est": 107700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "EC", "iso_a3": "ECU", "iso_n3": "218", "un_a3": "218", "wb_a2": "EC", "wb_a3": "ECU", "woe_id": -99, "adm0_a3_is": "ECU", "adm0_a3_us": "ECU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.854370, 1.378651 ], [ -77.854614, 0.807468 ], [ -77.667847, 0.823946 ], [ -77.426147, 0.395505 ], [ -76.574707, 0.258178 ], [ -76.289062, 0.411984 ], [ -75.800171, 0.082397 ], [ -75.646362, 0.000000 ], [ -75.371704, -0.153808 ], [ -75.322266, -0.439449 ], [ -80.447388, -0.439449 ], [ -80.397949, -0.285643 ], [ -80.233154, 0.000000 ], [ -80.018921, 0.357053 ], [ -80.090332, 0.769020 ], [ -79.541016, 0.983228 ], [ -78.854370, 1.378651 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.102539, -0.060425 ], [ -74.569702, -0.439449 ], [ -75.322266, -0.439449 ], [ -75.371704, -0.153808 ], [ -75.102539, -0.060425 ] ] ] } } @@ -1093,19 +1071,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.932983, 41.310824 ], [ -72.295532, 41.269550 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.120746 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.344727, 40.630630 ], [ -73.981934, 40.626461 ], [ -73.948975, 40.751418 ], [ -74.256592, 40.472024 ], [ -73.959961, 40.426042 ], [ -74.179688, 39.707187 ], [ -74.904785, 38.938048 ], [ -74.981689, 39.193948 ], [ -75.195923, 39.249271 ], [ -75.525513, 39.495563 ], [ -75.316772, 38.959409 ], [ -75.069580, 38.779781 ], [ -75.053101, 38.401949 ], [ -75.377197, 38.013476 ], [ -75.937500, 37.217206 ], [ -76.030884, 37.256566 ], [ -75.723267, 37.935533 ], [ -76.234131, 38.320111 ], [ -76.349487, 39.147103 ], [ -76.541748, 38.715519 ], [ -76.327515, 38.082690 ], [ -76.986694, 38.238180 ], [ -76.300049, 37.918201 ], [ -76.256104, 36.967449 ], [ -75.970459, 36.897194 ], [ -75.866089, 36.549362 ], [ -75.728760, 35.550105 ], [ -76.360474, 34.809293 ], [ -77.398682, 34.511083 ], [ -78.052368, 33.925130 ], [ -78.552246, 33.861293 ], [ -79.057617, 33.491017 ], [ -79.200439, 33.155948 ], [ -80.299072, 32.509762 ], [ -80.864868, 32.031363 ], [ -81.337280, 31.438037 ], [ -81.491089, 30.727671 ], [ -81.309814, 30.035811 ], [ -80.980225, 29.180941 ], [ -80.535278, 28.468691 ], [ -80.529785, 28.038046 ], [ -80.057373, 26.877981 ], [ -80.084839, 26.204734 ], [ -80.128784, 25.814727 ], [ -80.381470, 25.204941 ], [ -80.678101, 25.080624 ], [ -81.172485, 25.199971 ], [ -81.326294, 25.636574 ], [ -81.710815, 25.869109 ], [ -82.705078, 27.493654 ], [ -82.853394, 27.882784 ], [ -82.650146, 28.550751 ], [ -82.930298, 29.099377 ], [ -83.710327, 29.935895 ], [ -84.100342, 30.088108 ], [ -85.105591, 29.635546 ], [ -85.286865, 29.683281 ], [ -85.770264, 30.149877 ], [ -86.396484, 30.396569 ], [ -87.528076, 30.273300 ], [ -88.417969, 30.382353 ], [ -89.181519, 30.315988 ], [ -89.593506, 30.159377 ], [ -89.412231, 29.893043 ], [ -89.428711, 29.487425 ], [ -89.214478, 29.291190 ], [ -89.406738, 29.156959 ], [ -89.780273, 29.305561 ], [ -90.000000, 29.195328 ], [ -90.153809, 29.118574 ], [ -90.439453, 29.128172 ], [ -90.439453, 41.310824 ], [ -71.932983, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.209911 ], [ -77.887573, 25.170145 ], [ -77.536011, 24.337087 ], [ -77.536011, 23.760209 ], [ -77.777710, 23.709924 ], [ -78.030396, 24.287027 ], [ -78.409424, 24.572104 ], [ -78.189697, 25.209911 ] ] ], [ [ [ -77.788696, 27.039557 ], [ -76.997681, 26.588527 ], [ -77.173462, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.338257, 26.529565 ], [ -77.788696, 26.922070 ], [ -77.788696, 27.039557 ] ] ], [ [ [ -78.508301, 26.868181 ], [ -77.849121, 26.838776 ], [ -77.816162, 26.578702 ], [ -78.909302, 26.416470 ], [ -78.980713, 26.789751 ], [ -78.508301, 26.868181 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.050171, 21.539957 ], [ -87.044678, 21.534847 ], [ -87.105103, 21.534847 ], [ -87.050171, 21.539957 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "The Bahamas", "sov_a3": "BHS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "The Bahamas", "adm0_a3": "BHS", "geou_dif": 0, "geounit": "The Bahamas", "gu_a3": "BHS", "su_dif": 0, "subunit": "The Bahamas", "su_a3": "BHS", "brk_diff": 0, "name": "Bahamas", "name_long": "Bahamas", "brk_a3": "BHS", "brk_name": "Bahamas", "abbrev": "Bhs.", "postal": "BS", "formal_en": "Commonwealth of the Bahamas", "name_sort": "Bahamas, The", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 309156, "gdp_md_est": 9093, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BS", "iso_a3": "BHS", "iso_n3": "044", "un_a3": "044", "wb_a2": "BS", "wb_a3": "BHS", "woe_id": -99, "adm0_a3_is": "BHS", "adm0_a3_us": "BHS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.189697, 25.209911 ], [ -77.887573, 25.170145 ], [ -77.536011, 24.337087 ], [ -77.536011, 23.760209 ], [ -77.777710, 23.709924 ], [ -78.030396, 24.287027 ], [ -78.409424, 24.572104 ], [ -78.189697, 25.209911 ] ] ], [ [ [ -77.788696, 27.039557 ], [ -76.997681, 26.588527 ], [ -77.173462, 25.878994 ], [ -77.354736, 26.007424 ], [ -77.338257, 26.529565 ], [ -77.788696, 26.922070 ], [ -77.788696, 27.039557 ] ] ], [ [ [ -78.508301, 26.868181 ], [ -77.849121, 26.838776 ], [ -77.816162, 26.578702 ], [ -78.909302, 26.416470 ], [ -78.980713, 26.789751 ], [ -78.508301, 26.868181 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.265625, 23.185813 ], [ -81.403198, 23.115102 ], [ -80.617676, 23.104997 ], [ -79.678345, 22.766051 ], [ -79.282837, 22.395793 ], [ -78.343506, 22.512557 ], [ -77.991943, 22.273847 ], [ -77.536011, 21.943046 ], [ -76.975708, 21.534847 ], [ -78.695068, 21.534847 ], [ -78.717041, 21.596151 ], [ -79.282837, 21.560393 ], [ -80.216675, 21.825807 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.034730 ], [ -81.820679, 22.192491 ], [ -82.166748, 22.385635 ], [ -81.793213, 22.634293 ], [ -82.776489, 22.684984 ], [ -83.490601, 22.167058 ], [ -83.908081, 22.151796 ], [ -84.028931, 21.943046 ], [ -84.050903, 21.907375 ], [ -84.545288, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.896851, 21.943046 ], [ -84.446411, 22.202663 ], [ -84.226685, 22.563293 ], [ -83.776245, 22.786311 ], [ -83.265381, 22.983681 ], [ -82.507324, 23.079732 ], [ -82.265625, 23.185813 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.301467 ], [ -86.462402, 47.550579 ], [ -84.874878, 46.897739 ], [ -84.776001, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.138794, 46.509735 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.589478, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.133789, 43.568452 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.427511 ], [ -83.117065, 42.077840 ], [ -83.139038, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.672912 ], [ -82.435913, 41.672912 ], [ -81.276855, 42.208176 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.717041, 43.624147 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -76.371460, 44.095476 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.344727, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.081543, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.999390, 46.690899 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.182246 ], [ -68.230591, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.135555 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.766237 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.076294, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.960938, 41.635973 ], [ -70.636597, 41.475660 ], [ -71.119995, 41.492121 ], [ -71.856079, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.116607 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.976440, 40.647304 ], [ -73.948975, 40.751418 ], [ -74.064331, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.269409, 48.019324 ], [ -88.374023, 48.301467 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.060547, 56.022948 ], [ -67.060547, 49.664072 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.418121 ], [ -68.510742, 49.066668 ], [ -69.949951, 47.743017 ], [ -71.103516, 46.822617 ], [ -70.252075, 46.984000 ], [ -68.648071, 48.297812 ], [ -67.500000, 48.759810 ], [ -67.060547, 48.933326 ], [ -67.060547, 45.147179 ], [ -67.137451, 45.135555 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.230591, 47.353711 ], [ -68.906250, 47.182246 ], [ -69.235840, 47.446665 ], [ -69.999390, 46.690899 ], [ -70.301514, 45.912944 ], [ -70.658569, 45.460131 ], [ -71.081543, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.344727, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.316772, 44.816916 ], [ -76.371460, 44.095476 ], [ -76.497803, 44.016521 ], [ -76.816406, 43.628123 ], [ -78.717041, 43.624147 ], [ -79.172974, 43.464881 ], [ -79.008179, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.936768, 42.863886 ], [ -80.244141, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.435913, 41.672912 ], [ -82.688599, 41.672912 ], [ -83.029175, 41.832735 ], [ -83.139038, 41.975827 ], [ -83.117065, 42.077840 ], [ -82.897339, 42.427511 ], [ -82.430420, 42.980540 ], [ -82.133789, 43.568452 ], [ -82.551270, 45.348285 ], [ -83.589478, 45.817315 ], [ -83.468628, 45.993145 ], [ -83.616943, 46.115134 ], [ -83.891602, 46.115134 ], [ -84.089355, 46.274834 ], [ -84.138794, 46.509735 ], [ -84.336548, 46.407564 ], [ -84.605713, 46.437857 ], [ -84.539795, 46.536193 ], [ -84.776001, 46.634351 ], [ -84.874878, 46.897739 ], [ -86.462402, 47.550579 ], [ -88.374023, 48.301467 ], [ -89.269409, 48.019324 ], [ -89.598999, 48.008300 ], [ -90.000000, 48.096426 ], [ -90.439453, 48.188063 ], [ -90.439453, 56.022948 ], [ -87.363281, 56.022948 ], [ -87.324829, 55.998381 ], [ -86.314087, 55.776573 ], [ -86.072388, 55.724017 ], [ -85.012207, 55.301011 ], [ -83.358765, 55.244684 ], [ -82.271118, 55.147488 ], [ -82.435913, 54.281262 ], [ -82.122803, 53.275068 ], [ -81.397705, 52.157085 ], [ -79.909058, 51.206883 ], [ -79.140015, 51.532669 ], [ -78.601685, 52.559656 ], [ -79.123535, 54.139915 ], [ -79.826660, 54.667478 ], [ -78.228149, 55.134930 ], [ -77.195435, 55.776573 ], [ -77.096558, 55.838314 ], [ -76.948242, 56.022948 ], [ -67.060547, 56.022948 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.374023, 48.301467 ], [ -86.462402, 47.550579 ], [ -84.874878, 46.897739 ], [ -84.776001, 46.634351 ], [ -84.539795, 46.536193 ], [ -84.605713, 46.437857 ], [ -84.336548, 46.407564 ], [ -84.138794, 46.509735 ], [ -84.089355, 46.274834 ], [ -83.891602, 46.115134 ], [ -83.616943, 46.115134 ], [ -83.468628, 45.993145 ], [ -83.589478, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.133789, 43.568452 ], [ -82.430420, 42.980540 ], [ -82.897339, 42.427511 ], [ -83.117065, 42.077840 ], [ -83.139038, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.688599, 41.672912 ], [ -82.435913, 41.672912 ], [ -81.276855, 42.208176 ], [ -80.244141, 42.366662 ], [ -78.936768, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.008179, 43.269206 ], [ -79.172974, 43.464881 ], [ -78.717041, 43.624147 ], [ -76.816406, 43.628123 ], [ -76.497803, 44.016521 ], [ -76.371460, 44.095476 ], [ -75.316772, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.344727, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.081543, 45.305803 ], [ -70.658569, 45.460131 ], [ -70.301514, 45.912944 ], [ -69.999390, 46.690899 ], [ -69.235840, 47.446665 ], [ -68.906250, 47.182246 ], [ -68.230591, 47.353711 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.135555 ], [ -67.060547, 44.991998 ], [ -67.060547, 44.766237 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.323848 ], [ -69.060059, 43.980958 ], [ -70.114746, 43.683764 ], [ -70.642090, 43.088949 ], [ -70.812378, 42.863886 ], [ -70.823364, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.076294, 41.779505 ], [ -70.186157, 42.143042 ], [ -69.884033, 41.922716 ], [ -69.960938, 41.635973 ], [ -70.636597, 41.475660 ], [ -71.119995, 41.492121 ], [ -71.856079, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.872314, 41.219986 ], [ -73.564453, 40.979898 ], [ -73.707275, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.116607 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -73.267822, 40.647304 ], [ -73.976440, 40.647304 ], [ -73.948975, 40.751418 ], [ -74.064331, 40.647304 ], [ -90.439453, 40.647304 ], [ -90.439453, 48.188063 ], [ -90.000000, 48.096426 ], [ -89.598999, 48.008300 ], [ -89.269409, 48.019324 ], [ -88.374023, 48.301467 ] ] ] } } ] } ] } , @@ -1123,17 +1101,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379089 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 75.969558 ], [ -90.000000, 75.882732 ], [ -89.818726, 75.847855 ], [ -89.187012, 75.609532 ], [ -87.835693, 75.565780 ], [ -86.380005, 75.482018 ], [ -84.786987, 75.699360 ], [ -82.754517, 75.784593 ], [ -81.128540, 75.714278 ], [ -80.057373, 75.336721 ], [ -79.832153, 74.922284 ], [ -80.458374, 74.657110 ], [ -81.947021, 74.441992 ], [ -83.226929, 74.563812 ], [ -86.094360, 74.409546 ], [ -88.148804, 74.391820 ], [ -89.763794, 74.515490 ], [ -90.000000, 74.544794 ], [ -90.439453, 74.597405 ], [ -90.439453, 75.969558 ] ] ], [ [ [ -76.140747, 79.253586 ], [ -75.525513, 79.198134 ], [ -75.629883, 79.171335 ], [ -76.217651, 79.018574 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.899558 ], [ -78.359985, 77.508873 ], [ -79.760742, 77.209560 ], [ -79.617920, 76.982624 ], [ -77.909546, 77.022159 ], [ -77.887573, 76.778142 ], [ -80.557251, 76.178435 ], [ -83.171997, 76.453917 ], [ -86.110840, 76.298652 ], [ -87.599487, 76.419134 ], [ -89.489136, 76.471918 ], [ -89.615479, 76.951655 ], [ -87.764282, 77.177903 ], [ -88.258667, 77.899558 ], [ -87.648926, 77.969600 ], [ -84.973755, 77.538540 ], [ -86.336060, 78.179588 ], [ -87.962036, 78.371576 ], [ -87.149048, 78.758158 ], [ -85.374756, 78.996578 ], [ -85.237427, 79.171335 ], [ -85.171509, 79.253586 ], [ -76.140747, 79.253586 ] ] ], [ [ [ -86.204224, 79.253586 ], [ -86.583252, 79.171335 ], [ -87.187500, 79.039482 ], [ -89.033203, 78.287126 ], [ -90.000000, 78.248032 ], [ -90.439453, 78.230117 ], [ -90.439453, 79.253586 ], [ -86.204224, 79.253586 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 77.367899 ], [ -67.060547, 76.104754 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379089 ], [ -71.400146, 77.008582 ], [ -68.774414, 77.323374 ], [ -67.500000, 77.357083 ], [ -67.060547, 77.367899 ] ] ], [ [ [ -67.060547, 77.394300 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635365 ], [ -73.295288, 78.043795 ], [ -73.157959, 78.432316 ], [ -69.373169, 78.913440 ], [ -67.500000, 79.162043 ], [ -67.060547, 79.219732 ], [ -67.060547, 77.394300 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.116678 ], [ -67.500000, 80.357916 ], [ -67.148438, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -90.439453, 80.636316 ], [ -90.000000, 80.579842 ], [ -89.450684, 80.509454 ], [ -87.808228, 80.320120 ], [ -87.017212, 79.659613 ], [ -85.814209, 79.336236 ], [ -86.583252, 79.171335 ], [ -86.962280, 79.088462 ], [ -90.439453, 79.088462 ], [ -90.439453, 80.636316 ] ] ], [ [ [ -67.060547, 82.732092 ], [ -67.060547, 81.649320 ], [ -67.500000, 81.540120 ], [ -67.653809, 81.501241 ], [ -67.500000, 81.501241 ], [ -67.060547, 81.502864 ], [ -67.060547, 81.105113 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -69.466553, 80.616633 ], [ -71.180420, 79.799664 ], [ -73.240356, 79.633945 ], [ -73.877563, 79.430356 ], [ -76.904297, 79.323013 ], [ -75.525513, 79.197105 ], [ -75.629883, 79.171335 ], [ -75.953979, 79.088462 ], [ -85.303345, 79.088462 ], [ -85.237427, 79.171335 ], [ -85.094604, 79.345380 ], [ -86.506348, 79.736238 ], [ -86.929321, 80.251531 ], [ -84.199219, 80.207718 ], [ -83.408203, 80.099692 ], [ -81.848145, 80.464060 ], [ -84.100342, 80.579842 ], [ -87.599487, 80.515792 ], [ -89.362793, 80.855383 ], [ -90.000000, 81.164372 ], [ -90.203247, 81.260042 ], [ -90.439453, 81.320764 ], [ -90.439453, 82.041938 ], [ -90.098877, 82.085171 ], [ -90.000000, 82.088196 ], [ -88.928833, 82.117630 ], [ -86.967773, 82.279430 ], [ -85.501099, 82.652438 ], [ -84.259644, 82.599562 ], [ -83.177490, 82.319912 ], [ -82.683105, 82.676285 ], [ -82.606201, 82.732092 ], [ -67.060547, 82.732092 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.060547, 79.219732 ], [ -67.060547, 79.088462 ], [ -68.060303, 79.088462 ], [ -67.060547, 79.219732 ] ] ], [ [ [ -67.060547, 79.990487 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.116678 ], [ -67.500000, 80.357916 ], [ -67.148438, 80.515792 ], [ -67.060547, 80.534782 ], [ -67.060547, 79.990487 ] ] ] ] } } ] } ] } , @@ -1177,77 +1155,79 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -54.870285 ], [ -67.500000, -54.873446 ], [ -66.956177, -54.898724 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.537957 ], [ -67.939453, -54.870285 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, -53.566414 ], [ -67.752686, -53.849286 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.450880 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.200818 ], [ -66.450806, -55.250946 ], [ -66.956177, -54.898724 ], [ -67.500000, -54.873446 ], [ -67.939453, -54.870285 ], [ -67.939453, -53.566414 ] ] ], [ [ [ -62.155151, -40.647304 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.801336 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.066928 ], [ -64.978638, -42.057450 ], [ -64.302979, -42.358544 ], [ -63.753662, -42.045213 ], [ -63.457031, -42.565219 ], [ -64.379883, -42.875964 ], [ -65.181885, -43.496768 ], [ -65.324707, -44.500423 ], [ -65.566406, -45.038597 ], [ -66.511230, -45.042478 ], [ -67.291260, -45.552525 ], [ -67.500000, -46.092281 ], [ -67.582397, -46.301406 ], [ -67.500000, -46.362093 ], [ -66.593628, -47.036439 ], [ -65.637817, -47.238219 ], [ -65.983887, -48.133101 ], [ -67.164917, -48.698212 ], [ -67.500000, -49.303636 ], [ -67.818604, -49.869857 ], [ -67.939453, -49.922935 ], [ -67.939453, -40.647304 ], [ -62.155151, -40.647304 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -54.870285 ], [ -67.500000, -54.873446 ], [ -66.956177, -54.898724 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.375989 ], [ -67.939453, -55.537957 ], [ -67.939453, -54.870285 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.546143, -51.100073 ], [ -57.749634, -51.549751 ], [ -58.046265, -51.900223 ], [ -59.397583, -52.200874 ], [ -59.848022, -51.849353 ], [ -60.699463, -52.301761 ], [ -61.199341, -51.849353 ], [ -59.996338, -51.251601 ], [ -59.150391, -51.501904 ], [ -58.546143, -51.100073 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.332168 ], [ -44.648438, -23.352343 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.800424 ], [ -46.472168, -24.091604 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.987028 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.206787, -32.727220 ], [ -53.789062, -32.049989 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.969849, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.486694, -27.474161 ], [ -53.646240, -26.926968 ], [ -53.624268, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.572104 ], [ -54.288940, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.025024, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.513916, -23.574057 ], [ -55.607300, -22.654572 ], [ -55.794067, -22.360236 ], [ -56.469727, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.908936, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.451782, -21.534847 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.374390, -22.801503 ], [ -64.962158, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.269531, -21.830907 ], [ -66.373901, -21.943046 ], [ -67.104492, -22.735657 ], [ -67.500000, -22.811631 ], [ -67.829590, -22.872379 ], [ -67.939453, -22.477030 ], [ -67.939453, -21.534847 ], [ -62.451782, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.477030 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.477030 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, -21.534847 ], [ -44.560547, -23.332168 ], [ -44.648438, -23.352343 ], [ -45.000000, -23.574057 ], [ -45.351562, -23.800424 ], [ -46.472168, -24.091604 ], [ -47.647705, -24.886436 ], [ -48.493652, -25.878994 ], [ -48.641968, -26.622908 ], [ -48.471680, -27.176469 ], [ -48.658447, -28.188244 ], [ -48.889160, -28.676130 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.987028 ], [ -51.575317, -31.779547 ], [ -52.256470, -32.245329 ], [ -52.712402, -33.197328 ], [ -53.371582, -33.770015 ], [ -53.651733, -33.201924 ], [ -53.206787, -32.727220 ], [ -53.789062, -32.049989 ], [ -54.569092, -31.494262 ], [ -55.601807, -30.855079 ], [ -55.969849, -30.883369 ], [ -56.975098, -30.111870 ], [ -57.623291, -30.216355 ], [ -56.288452, -28.854296 ], [ -55.162354, -27.882784 ], [ -54.486694, -27.474161 ], [ -53.646240, -26.926968 ], [ -53.624268, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.740529 ], [ -54.426270, -25.165173 ], [ -54.294434, -24.572104 ], [ -54.288940, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.025024, -24.001308 ], [ -55.398560, -23.956136 ], [ -55.513916, -23.574057 ], [ -55.607300, -22.654572 ], [ -55.794067, -22.360236 ], [ -56.469727, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.908936, -21.534847 ], [ -44.560547, -21.534847 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.469727, -22.085640 ], [ -55.794067, -22.360236 ], [ -55.607300, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.025024, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.288940, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.391278 ], [ -56.486206, -27.552112 ], [ -57.606812, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.606856 ], [ -57.777100, -25.165173 ], [ -58.804321, -24.771772 ], [ -60.029297, -24.036431 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, -21.830907 ], [ -65.681763, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.374390, -22.801503 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.036431 ], [ -58.804321, -24.771772 ], [ -57.777100, -25.165173 ], [ -57.634277, -25.606856 ], [ -58.617554, -27.122702 ], [ -57.606812, -27.396155 ], [ -56.486206, -27.552112 ], [ -55.695190, -27.391278 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.740529 ], [ -54.129639, -25.547398 ], [ -53.624268, -26.125850 ], [ -53.646240, -26.926968 ], [ -54.486694, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.288452, -28.854296 ], [ -57.623291, -30.216355 ], [ -57.875977, -31.019987 ], [ -58.139648, -32.045333 ], [ -58.128662, -33.040903 ], [ -58.348389, -33.266250 ], [ -58.496704, -34.434098 ], [ -57.222290, -35.290469 ], [ -57.359619, -35.978006 ], [ -56.733398, -36.412442 ], [ -56.788330, -36.901587 ], [ -57.749634, -38.186387 ], [ -59.232788, -38.719805 ], [ -61.237793, -38.929502 ], [ -62.336426, -38.826871 ], [ -62.122192, -39.423464 ], [ -62.330933, -40.174676 ], [ -62.144165, -40.676472 ], [ -62.660522, -40.979898 ], [ -62.742920, -41.029643 ], [ -63.770142, -41.166249 ], [ -64.264526, -40.979898 ], [ -64.731445, -40.805494 ], [ -64.995117, -40.979898 ], [ -65.115967, -41.066928 ], [ -65.083008, -41.310824 ], [ -67.939453, -41.310824 ], [ -67.939453, -24.302047 ], [ -67.500000, -24.101633 ], [ -67.329712, -24.026397 ], [ -66.983643, -22.988738 ], [ -67.104492, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.269531, -21.830907 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.975098, -30.111870 ], [ -55.969849, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.049989 ], [ -53.206787, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.755153 ], [ -56.211548, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.465806 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.266250 ], [ -58.128662, -33.040903 ], [ -58.139648, -32.045333 ], [ -57.875977, -31.019987 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ], [ [ [ -57.908936, -21.534847 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.469727, -22.085640 ], [ -55.794067, -22.360236 ], [ -55.607300, -22.654572 ], [ -55.513916, -23.574057 ], [ -55.398560, -23.956136 ], [ -55.025024, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.288940, -24.021379 ], [ -54.294434, -24.572104 ], [ -54.426270, -25.165173 ], [ -54.624023, -25.740529 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.391278 ], [ -56.486206, -27.552112 ], [ -57.606812, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.606856 ], [ -57.777100, -25.165173 ], [ -58.804321, -24.771772 ], [ -60.029297, -24.036431 ], [ -60.847778, -23.880815 ], [ -62.682495, -22.248429 ], [ -62.451782, -21.534847 ], [ -57.908936, -21.534847 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.111870 ], [ -55.969849, -30.883369 ], [ -55.601807, -30.855079 ], [ -54.569092, -31.494262 ], [ -53.789062, -32.049989 ], [ -53.206787, -32.727220 ], [ -53.651733, -33.201924 ], [ -53.371582, -33.770015 ], [ -53.805542, -34.397845 ], [ -54.937134, -34.953493 ], [ -55.673218, -34.755153 ], [ -56.211548, -34.858890 ], [ -57.139893, -34.429567 ], [ -57.815552, -34.465806 ], [ -58.425293, -33.911454 ], [ -58.348389, -33.266250 ], [ -58.128662, -33.040903 ], [ -58.139648, -32.045333 ], [ -57.875977, -31.019987 ], [ -57.623291, -30.216355 ], [ -56.975098, -30.111870 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, -22.477030 ], [ -67.829590, -22.872379 ], [ -67.500000, -22.811631 ], [ -67.104492, -22.735657 ], [ -66.983643, -22.988738 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.101633 ], [ -67.939453, -24.302047 ], [ -67.939453, -22.477030 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.498657, 0.439449 ], [ -50.696411, 0.225219 ], [ -50.388794, -0.082397 ], [ -48.619995, -0.236205 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.565552, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.735566 ], [ -58.167114, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.947388, -19.399249 ], [ -57.672729, -18.963442 ], [ -57.496948, -18.177169 ], [ -57.733154, -17.555009 ], [ -58.276978, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.238525, -16.299051 ], [ -60.155640, -16.262141 ], [ -60.540161, -15.093339 ], [ -60.249023, -15.077428 ], [ -60.265503, -14.647368 ], [ -60.457764, -14.354870 ], [ -60.501709, -13.779402 ], [ -61.083984, -13.480448 ], [ -61.710205, -13.491131 ], [ -62.127686, -13.202513 ], [ -62.803345, -13.004558 ], [ -63.193359, -12.629618 ], [ -64.313965, -12.463396 ], [ -65.401611, -11.566144 ], [ -65.319214, -10.898042 ], [ -65.445557, -10.514818 ], [ -65.335693, -9.763198 ], [ -66.643066, -9.930977 ], [ -67.170410, -10.309515 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.498657, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.335693, -9.763198 ], [ -65.445557, -10.514818 ], [ -65.319214, -10.898042 ], [ -65.401611, -11.566144 ], [ -64.313965, -12.463396 ], [ -63.193359, -12.629618 ], [ -62.803345, -13.004558 ], [ -62.127686, -13.202513 ], [ -61.710205, -13.491131 ], [ -61.083984, -13.480448 ], [ -60.501709, -13.779402 ], [ -60.457764, -14.354870 ], [ -60.265503, -14.647368 ], [ -60.249023, -15.077428 ], [ -60.540161, -15.093339 ], [ -60.155640, -16.262141 ], [ -58.238525, -16.299051 ], [ -58.386841, -16.878147 ], [ -58.276978, -17.271973 ], [ -57.733154, -17.555009 ], [ -57.496948, -18.177169 ], [ -57.672729, -18.963442 ], [ -57.947388, -19.399249 ], [ -57.854004, -19.973349 ], [ -58.167114, -20.179724 ], [ -58.183594, -19.870060 ], [ -59.111938, -19.357794 ], [ -60.040283, -19.342245 ], [ -61.787109, -19.637414 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.053744 ], [ -62.583618, -21.943046 ], [ -62.682495, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.984375, -21.993989 ], [ -64.160156, -22.350076 ], [ -64.742432, -22.350076 ], [ -64.962158, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.269531, -21.836006 ], [ -66.373901, -21.943046 ], [ -66.747437, -22.350076 ], [ -67.939453, -22.350076 ], [ -67.939453, -10.660608 ], [ -67.500000, -10.455402 ], [ -67.170410, -10.309515 ], [ -66.643066, -9.930977 ], [ -65.335693, -9.763198 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.269531, -21.836006 ], [ -65.681763, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.747437, -22.350076 ], [ -66.373901, -21.943046 ], [ -66.269531, -21.836006 ] ] ], [ [ [ -64.160156, -22.350076 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -50.498657, 0.439449 ], [ -50.696411, 0.225219 ], [ -50.388794, -0.082397 ], [ -48.619995, -0.236205 ], [ -48.581543, -1.241358 ], [ -47.823486, -0.582265 ], [ -46.565552, -0.944781 ], [ -45.000000, -1.515936 ], [ -44.906616, -1.554375 ], [ -44.560547, -1.966167 ], [ -44.560547, -2.619326 ], [ -44.582520, -2.690661 ], [ -44.560547, -2.685174 ], [ -44.560547, -22.350076 ], [ -55.816040, -22.350076 ], [ -56.469727, -22.085640 ], [ -56.881714, -22.284014 ], [ -57.936401, -22.090730 ], [ -57.930908, -21.943046 ], [ -57.870483, -20.735566 ], [ -58.167114, -20.179724 ], [ -57.854004, -19.973349 ], [ -57.947388, -19.399249 ], [ -57.672729, -18.963442 ], [ -57.496948, -18.177169 ], [ -57.733154, -17.555009 ], [ -58.276978, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.238525, -16.299051 ], [ -60.155640, -16.262141 ], [ -60.540161, -15.093339 ], [ -60.249023, -15.077428 ], [ -60.265503, -14.647368 ], [ -60.457764, -14.354870 ], [ -60.501709, -13.779402 ], [ -61.083984, -13.480448 ], [ -61.710205, -13.491131 ], [ -62.127686, -13.202513 ], [ -62.803345, -13.004558 ], [ -63.193359, -12.629618 ], [ -64.313965, -12.463396 ], [ -65.401611, -11.566144 ], [ -65.319214, -10.898042 ], [ -65.445557, -10.514818 ], [ -65.335693, -9.763198 ], [ -66.643066, -9.930977 ], [ -67.170410, -10.309515 ], [ -67.500000, -10.455402 ], [ -67.939453, -10.660608 ], [ -67.939453, 0.439449 ], [ -50.498657, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.040283, -19.342245 ], [ -59.111938, -19.357794 ], [ -58.183594, -19.870060 ], [ -58.167114, -20.179724 ], [ -57.870483, -20.735566 ], [ -57.930908, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.284014 ], [ -56.469727, -22.085640 ], [ -55.816040, -22.350076 ], [ -62.572632, -22.350076 ], [ -62.682495, -22.248429 ], [ -62.583618, -21.943046 ], [ -62.292480, -21.053744 ], [ -62.265015, -20.514499 ], [ -61.787109, -19.637414 ], [ -60.040283, -19.342245 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.269531, -21.836006 ], [ -65.681763, -21.943046 ], [ -64.962158, -22.075459 ], [ -64.742432, -22.350076 ], [ -66.747437, -22.350076 ], [ -66.373901, -21.943046 ], [ -66.269531, -21.836006 ] ] ], [ [ [ -64.160156, -22.350076 ], [ -63.984375, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.682495, -22.248429 ], [ -62.572632, -22.350076 ], [ -64.160156, -22.350076 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.880493, 10.714587 ], [ -62.726440, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.378612 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -60.551147, 7.776309 ], [ -60.639038, 7.411495 ], [ -60.292969, 7.040927 ], [ -60.540161, 6.855532 ], [ -61.155396, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.885498, 4.017699 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.544434, 0.785498 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.126026 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.691649 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.078003, 10.698394 ], [ -61.880493, 10.714587 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Colombia", "sov_a3": "COL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Colombia", "adm0_a3": "COL", "geou_dif": 0, "geounit": "Colombia", "gu_a3": "COL", "su_dif": 0, "subunit": "Colombia", "su_a3": "COL", "brk_diff": 0, "name": "Colombia", "name_long": "Colombia", "brk_a3": "COL", "brk_name": "Colombia", "abbrev": "Col.", "postal": "CO", "formal_en": "Republic of Colombia", "name_sort": "Colombia", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 45644023, "gdp_md_est": 395400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CO", "iso_a3": "COL", "iso_n3": "170", "un_a3": "170", "wb_a2": "CO", "wb_a3": "COL", "woe_id": -99, "adm0_a3_is": "COL", "adm0_a3_us": "COL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.697754, 6.266158 ], [ -67.500000, 6.173324 ], [ -67.340698, 6.091398 ], [ -67.500000, 5.621453 ], [ -67.521973, 5.555848 ], [ -67.747192, 5.222247 ], [ -67.824097, 4.505238 ], [ -67.620850, 3.836851 ], [ -67.500000, 3.710782 ], [ -67.335205, 3.540835 ], [ -67.302246, 3.316018 ], [ -67.500000, 3.124061 ], [ -67.813110, 2.816858 ], [ -67.500000, 2.630301 ], [ -67.445068, 2.597377 ], [ -67.181396, 2.251617 ], [ -66.873779, 1.252342 ], [ -67.066040, 1.126026 ], [ -67.258301, 1.719102 ], [ -67.500000, 1.993616 ], [ -67.538452, 2.037534 ], [ -67.868042, 1.691649 ], [ -67.939453, 1.691649 ], [ -67.939453, 6.217012 ], [ -67.697754, 6.266158 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Puerto Rico", "adm0_a3": "PRI", "geou_dif": 0, "geounit": "Puerto Rico", "gu_a3": "PRI", "su_dif": 0, "subunit": "Puerto Rico", "su_a3": "PRI", "brk_diff": 0, "name": "Puerto Rico", "name_long": "Puerto Rico", "brk_a3": "PRI", "brk_name": "Puerto Rico", "abbrev": "P.R.", "postal": "PR", "formal_en": "Commonwealth of Puerto Rico", "note_adm0": "Commonwealth of U.S.A.", "name_sort": "Puerto Rico", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 3971020, "gdp_md_est": 70230, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "PR", "iso_a3": "PRI", "iso_n3": "630", "un_a3": "630", "wb_a2": "PR", "wb_a3": "PRI", "woe_id": -99, "adm0_a3_is": "PRI", "adm0_a3_us": "PRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.098999, 18.521283 ], [ -66.280518, 18.510866 ], [ -65.769653, 18.427502 ], [ -65.588379, 18.224134 ], [ -65.846558, 17.973508 ], [ -66.599121, 17.978733 ], [ -67.181396, 17.947381 ], [ -67.241821, 18.375379 ], [ -67.098999, 18.521283 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Trinidad and Tobago", "sov_a3": "TTO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Trinidad and Tobago", "adm0_a3": "TTO", "geou_dif": 0, "geounit": "Trinidad and Tobago", "gu_a3": "TTO", "su_dif": 0, "subunit": "Trinidad and Tobago", "su_a3": "TTO", "brk_diff": 0, "name": "Trinidad and Tobago", "name_long": "Trinidad and Tobago", "brk_a3": "TTO", "brk_name": "Trinidad and Tobago", "abbrev": "Tr.T.", "postal": "TT", "formal_en": "Republic of Trinidad and Tobago", "name_sort": "Trinidad and Tobago", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1310000, "gdp_md_est": 29010, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TT", "iso_a3": "TTO", "iso_n3": "780", "un_a3": "780", "wb_a2": "TT", "wb_a3": "TTO", "woe_id": -99, "adm0_a3_is": "TTO", "adm0_a3_us": "TTO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 19, "long_len": 19, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.105957, 10.887254 ], [ -60.891724, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.946411, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Venezuela", "sov_a3": "VEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Venezuela", "adm0_a3": "VEN", "geou_dif": 0, "geounit": "Venezuela", "gu_a3": "VEN", "su_dif": 0, "subunit": "Venezuela", "su_a3": "VEN", "brk_diff": 0, "name": "Venezuela", "name_long": "Venezuela", "brk_a3": "VEN", "brk_name": "Venezuela", "abbrev": "Ven.", "postal": "VE", "formal_en": "Bolivarian Republic of Venezuela", "formal_fr": "Repรบblica Bolivariana de Venezuela", "name_sort": "Venezuela, RB", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 26814843, "gdp_md_est": 357400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "VE", "iso_a3": "VEN", "iso_n3": "862", "un_a3": "862", "wb_a2": "VE", "wb_a3": "VEN", "woe_id": -99, "adm0_a3_is": "VEN", "adm0_a3_us": "VEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.880493, 10.714587 ], [ -62.726440, 10.417586 ], [ -62.385864, 9.947209 ], [ -61.589355, 9.871452 ], [ -60.831299, 9.378612 ], [ -60.671997, 8.581021 ], [ -60.150146, 8.602747 ], [ -59.754639, 8.363693 ], [ -60.551147, 7.776309 ], [ -60.639038, 7.411495 ], [ -60.292969, 7.040927 ], [ -60.540161, 6.855532 ], [ -61.155396, 6.697343 ], [ -61.138916, 6.233395 ], [ -61.408081, 5.960290 ], [ -60.732422, 5.200365 ], [ -60.600586, 4.915833 ], [ -60.963135, 4.532618 ], [ -62.083740, 4.160158 ], [ -62.803345, 4.006740 ], [ -63.094482, 3.771078 ], [ -63.885498, 4.017699 ], [ -64.627075, 4.149201 ], [ -64.813843, 4.056056 ], [ -64.368896, 3.798484 ], [ -64.407349, 3.124061 ], [ -64.270020, 2.493109 ], [ -63.424072, 2.410787 ], [ -63.369141, 2.202216 ], [ -64.083252, 1.916757 ], [ -64.198608, 1.493971 ], [ -64.610596, 1.329226 ], [ -65.352173, 1.093073 ], [ -65.544434, 0.785498 ], [ -66.324463, 0.725078 ], [ -66.873779, 1.252342 ], [ -67.181396, 2.251617 ], [ -67.445068, 2.597377 ], [ -67.500000, 2.630301 ], [ -67.813110, 2.816858 ], [ -67.500000, 3.124061 ], [ -67.302246, 3.316018 ], [ -67.335205, 3.540835 ], [ -67.500000, 3.710782 ], [ -67.620850, 3.836851 ], [ -67.824097, 4.505238 ], [ -67.747192, 5.222247 ], [ -67.521973, 5.555848 ], [ -67.500000, 5.621453 ], [ -67.340698, 6.091398 ], [ -67.500000, 6.173324 ], [ -67.697754, 6.266158 ], [ -67.939453, 6.217012 ], [ -67.939453, 10.552622 ], [ -67.500000, 10.547221 ], [ -67.296753, 10.541821 ], [ -66.225586, 10.649811 ], [ -65.654297, 10.201407 ], [ -64.890747, 10.077037 ], [ -64.330444, 10.390572 ], [ -64.313965, 10.639014 ], [ -63.078003, 10.698394 ], [ -61.880493, 10.714587 ] ] ], [ [ [ -61.105957, 10.887254 ], [ -60.891724, 10.854886 ], [ -60.935669, 10.109486 ], [ -61.770630, 10.001310 ], [ -61.946411, 10.087854 ], [ -61.660767, 10.363555 ], [ -61.677246, 10.757763 ], [ -61.105957, 10.887254 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Guyana", "sov_a3": "GUY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guyana", "adm0_a3": "GUY", "geou_dif": 0, "geounit": "Guyana", "gu_a3": "GUY", "su_dif": 0, "subunit": "Guyana", "su_a3": "GUY", "brk_diff": 0, "name": "Guyana", "name_long": "Guyana", "brk_a3": "GUY", "brk_name": "Guyana", "abbrev": "Guy.", "postal": "GY", "formal_en": "Co-operative Republic of Guyana", "name_sort": "Guyana", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 772298, "gdp_md_est": 2966, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GY", "iso_a3": "GUY", "iso_n3": "328", "un_a3": "328", "wb_a2": "GY", "wb_a3": "GUY", "woe_id": -99, "adm0_a3_is": "GUY", "adm0_a3_us": "GUY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.754639, 8.363693 ], [ -59.100952, 7.999397 ], [ -58.480225, 7.346123 ], [ -58.452759, 6.833716 ], [ -58.079224, 6.806444 ], [ -57.145386, 5.971217 ], [ -55.947876, 5.769036 ], [ -55.838013, 5.949363 ], [ -55.030518, 6.025848 ], [ -53.959351, 5.752640 ], [ -54.475708, 4.893941 ], [ -54.398804, 4.209465 ], [ -54.003296, 3.617589 ], [ -54.179077, 3.189879 ], [ -54.266968, 2.729070 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.520549 ], [ -55.568848, 2.421764 ], [ -55.969849, 2.509573 ], [ -56.074219, 2.218684 ], [ -55.903931, 2.021065 ], [ -55.991821, 1.817932 ], [ -56.535645, 1.900286 ], [ -56.782837, 1.861855 ], [ -57.332153, 1.949697 ], [ -57.661743, 1.680667 ], [ -58.112183, 1.504954 ], [ -58.430786, 1.461023 ], [ -58.540649, 1.268817 ], [ -59.029541, 1.318243 ], [ -59.644775, 1.784990 ], [ -59.716187, 2.246129 ], [ -59.974365, 2.756504 ], [ -59.815063, 3.606625 ], [ -59.534912, 3.957421 ], [ -59.765625, 4.423090 ], [ -60.111694, 4.570949 ], [ -59.979858, 5.014339 ], [ -60.210571, 5.244128 ], [ -60.732422, 5.200365 ], [ -61.408081, 5.960290 ], [ -61.138916, 6.233395 ], [ -61.155396, 6.697343 ], [ -60.540161, 6.855532 ], [ -60.292969, 7.040927 ], [ -60.639038, 7.411495 ], [ -60.551147, 7.776309 ], [ -59.754639, 8.363693 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.210571, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.570949 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.246129 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.461023 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.332153, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.535645, 1.900286 ], [ -55.991821, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.969849, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.520549 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.415527, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.553101, 2.504085 ], [ -52.245483, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.971313, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.082397 ], [ -48.619995, -0.236205 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.691649 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.126026 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.785498 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.493109 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.210571, 5.244128 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.752640 ], [ -52.882690, 5.408211 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.154679 ], [ -52.245483, 3.239240 ], [ -52.553101, 2.504085 ], [ -52.937622, 2.125367 ], [ -53.415527, 2.054003 ], [ -53.552856, 2.333949 ], [ -53.778076, 2.377857 ], [ -54.085693, 2.103409 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.008789, 3.623071 ], [ -54.398804, 4.209465 ], [ -54.475708, 4.893941 ], [ -53.959351, 5.752640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.210571, 5.244128 ], [ -59.979858, 5.014339 ], [ -60.111694, 4.570949 ], [ -59.765625, 4.423090 ], [ -59.534912, 3.957421 ], [ -59.815063, 3.606625 ], [ -59.974365, 2.756504 ], [ -59.716187, 2.246129 ], [ -59.644775, 1.784990 ], [ -59.029541, 1.318243 ], [ -58.540649, 1.268817 ], [ -58.430786, 1.461023 ], [ -58.112183, 1.504954 ], [ -57.661743, 1.680667 ], [ -57.332153, 1.949697 ], [ -56.782837, 1.861855 ], [ -56.535645, 1.900286 ], [ -55.991821, 1.817932 ], [ -55.903931, 2.021065 ], [ -56.074219, 2.218684 ], [ -55.969849, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.520549 ], [ -54.525146, 2.311994 ], [ -54.085693, 2.103409 ], [ -53.778076, 2.377857 ], [ -53.552856, 2.333949 ], [ -53.415527, 2.054003 ], [ -52.937622, 2.125367 ], [ -52.553101, 2.504085 ], [ -52.245483, 3.239240 ], [ -51.657715, 4.154679 ], [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.971313, 1.735574 ], [ -49.943848, 1.043643 ], [ -50.696411, 0.219726 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.082397 ], [ -48.619995, -0.236205 ], [ -48.614502, -0.439449 ], [ -67.939453, -0.439449 ], [ -67.939453, 1.691649 ], [ -67.868042, 1.691649 ], [ -67.538452, 2.037534 ], [ -67.500000, 1.993616 ], [ -67.258301, 1.719102 ], [ -67.066040, 1.126026 ], [ -66.873779, 1.252342 ], [ -66.324463, 0.725078 ], [ -65.544434, 0.785498 ], [ -65.352173, 1.093073 ], [ -64.610596, 1.329226 ], [ -64.198608, 1.493971 ], [ -64.083252, 1.916757 ], [ -63.369141, 2.202216 ], [ -63.424072, 2.410787 ], [ -64.270020, 2.493109 ], [ -64.407349, 3.124061 ], [ -64.368896, 3.798484 ], [ -64.813843, 4.056056 ], [ -64.627075, 4.149201 ], [ -63.885498, 4.017699 ], [ -63.094482, 3.771078 ], [ -62.803345, 4.006740 ], [ -62.083740, 4.160158 ], [ -60.963135, 4.532618 ], [ -60.600586, 4.915833 ], [ -60.732422, 5.200365 ], [ -60.210571, 5.244128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.939453, 44.367060 ], [ -67.939453, 47.163575 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 49.267805 ], [ -67.939453, 56.022948 ], [ -61.051025, 56.022948 ], [ -60.474243, 55.776573 ], [ -59.567871, 55.203953 ], [ -57.974854, 54.946076 ], [ -57.332153, 54.626158 ], [ -56.936646, 53.777935 ], [ -56.156616, 53.647894 ], [ -55.755615, 53.268498 ], [ -55.684204, 52.146973 ], [ -56.409302, 51.771239 ], [ -57.123413, 51.419764 ], [ -58.771362, 51.062113 ], [ -60.029297, 50.240179 ], [ -61.721191, 50.078295 ], [ -63.863525, 50.289339 ], [ -65.363159, 50.296358 ], [ -66.395874, 50.229638 ], [ -67.236328, 49.510944 ], [ -67.500000, 49.418121 ], [ -67.939453, 49.267805 ] ] ], [ [ [ -64.011841, 47.036439 ], [ -63.665771, 46.547528 ], [ -62.935181, 46.415139 ], [ -62.012329, 46.441642 ], [ -62.501221, 46.031296 ], [ -62.874756, 45.966425 ], [ -64.143677, 46.392411 ], [ -64.390869, 46.724800 ], [ -64.011841, 47.036439 ] ] ], [ [ [ -55.870972, 51.631657 ], [ -55.404053, 51.587310 ], [ -55.596313, 51.316881 ], [ -56.134644, 50.687758 ], [ -56.793823, 49.813176 ], [ -56.140137, 50.148746 ], [ -55.469971, 49.933544 ], [ -55.821533, 49.585787 ], [ -54.931641, 49.310799 ], [ -54.470215, 49.557289 ], [ -53.475952, 49.249879 ], [ -53.783569, 48.516604 ], [ -53.085938, 48.687334 ], [ -52.959595, 48.155093 ], [ -52.646484, 47.535747 ], [ -53.069458, 46.653207 ], [ -53.519897, 46.615488 ], [ -54.179077, 46.807580 ], [ -53.959351, 47.624678 ], [ -54.239502, 47.750405 ], [ -55.398560, 46.882723 ], [ -55.997314, 46.920255 ], [ -55.288696, 47.387193 ], [ -56.250000, 47.632082 ], [ -57.321167, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.897931 ], [ -58.793335, 48.250283 ], [ -59.232788, 48.523881 ], [ -58.392334, 49.124219 ], [ -57.359619, 50.719069 ], [ -56.738892, 51.285970 ], [ -55.870972, 51.631657 ] ] ], [ [ [ -67.939453, 48.582058 ], [ -67.500000, 48.759810 ], [ -66.549683, 49.131408 ], [ -65.055542, 49.231947 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.991494 ], [ -64.473267, 46.236853 ], [ -63.171387, 45.736860 ], [ -61.517944, 45.882361 ], [ -60.518188, 47.006480 ], [ -60.446777, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.263289 ], [ -63.253784, 44.668653 ], [ -64.242554, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.121216, 43.616194 ], [ -66.159668, 44.465151 ], [ -64.423828, 45.290347 ], [ -66.022339, 45.259422 ], [ -67.137451, 45.135555 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -67.939453, 47.163575 ], [ -67.939453, 48.582058 ] ] ], [ [ [ -64.171143, 49.954754 ], [ -62.858276, 49.706720 ], [ -61.836548, 49.289306 ], [ -61.803589, 49.102645 ], [ -62.292480, 49.084660 ], [ -63.588867, 49.400250 ], [ -64.517212, 49.873398 ], [ -64.171143, 49.954754 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 47.163575 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.135555 ], [ -66.961670, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.939453, 44.367060 ], [ -67.939453, 47.163575 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.630249, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.176112 ], [ -53.662720, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.583130, 60.335105 ], [ -63.803101, 59.442282 ], [ -62.501221, 58.164908 ], [ -61.397095, 56.965942 ], [ -61.798096, 56.337856 ], [ -60.474243, 55.776573 ], [ -60.468750, 55.773483 ], [ -60.078735, 55.528631 ], [ -67.939453, 55.528631 ], [ -67.939453, 58.447733 ], [ -67.653809, 58.211238 ], [ -67.500000, 58.271954 ], [ -66.198120, 58.765352 ], [ -65.242310, 59.869641 ], [ -64.583130, 60.335105 ] ] ], [ [ [ -67.939453, 66.269067 ], [ -67.939453, 66.687784 ], [ -61.929932, 66.687784 ], [ -62.160645, 66.160511 ], [ -63.918457, 64.997939 ], [ -65.148926, 65.426299 ], [ -66.719971, 66.388161 ], [ -67.500000, 66.313242 ], [ -67.939453, 66.269067 ] ] ], [ [ [ -67.939453, 65.578908 ], [ -67.500000, 65.337055 ], [ -67.088013, 65.106836 ], [ -65.731201, 64.647408 ], [ -65.319214, 64.382691 ], [ -64.665527, 63.391522 ], [ -65.011597, 62.674143 ], [ -66.275024, 62.945231 ], [ -67.500000, 63.339808 ], [ -67.939453, 63.479957 ], [ -67.939453, 65.578908 ] ] ], [ [ [ -67.939453, 63.233627 ], [ -67.500000, 62.962715 ], [ -67.368164, 62.882701 ], [ -66.324463, 62.280701 ], [ -66.165161, 61.931197 ], [ -67.500000, 62.129572 ], [ -67.939453, 62.193702 ], [ -67.939453, 63.233627 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 66.687784 ], [ -44.560547, 60.048389 ], [ -44.785767, 60.037417 ], [ -45.000000, 60.155176 ], [ -46.263428, 60.852938 ], [ -48.262939, 60.858288 ], [ -49.229736, 61.407236 ], [ -49.899902, 62.382731 ], [ -51.630249, 63.626745 ], [ -52.141113, 64.277992 ], [ -52.272949, 65.176112 ], [ -53.662720, 66.098268 ], [ -53.459473, 66.513260 ], [ -53.377075, 66.687784 ], [ -44.560547, 66.687784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.835165 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.728413 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.424760 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.354858, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.568803 ], [ -53.107910, 71.203690 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.939453, 68.481941 ], [ -67.500000, 68.360725 ], [ -66.450806, 68.067150 ], [ -64.863281, 67.846560 ], [ -63.424072, 66.927908 ], [ -61.853027, 66.861082 ], [ -62.083740, 66.337505 ], [ -66.637573, 66.337505 ], [ -66.719971, 66.388161 ], [ -67.241821, 66.337505 ], [ -67.939453, 66.337505 ], [ -67.939453, 68.481941 ] ] ], [ [ [ -67.939453, 68.940633 ], [ -67.939453, 70.132898 ], [ -67.917480, 70.121695 ], [ -67.500000, 69.716202 ], [ -66.967163, 69.185993 ], [ -67.500000, 69.052858 ], [ -67.939453, 68.940633 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 74.140084 ], [ -44.560547, 66.337505 ], [ -53.547363, 66.337505 ], [ -53.459473, 66.513260 ], [ -53.300171, 66.835165 ], [ -53.970337, 67.189129 ], [ -52.981567, 68.356673 ], [ -51.476440, 68.728413 ], [ -51.080933, 69.146920 ], [ -50.872192, 69.928415 ], [ -52.014771, 69.574813 ], [ -52.558594, 69.424760 ], [ -53.453979, 69.283371 ], [ -54.684448, 69.609292 ], [ -54.750366, 70.289117 ], [ -54.354858, 70.821227 ], [ -53.432007, 70.835658 ], [ -51.388550, 70.568803 ], [ -53.107910, 71.203690 ], [ -54.003296, 71.547525 ], [ -54.997559, 71.406172 ], [ -55.832520, 71.653291 ], [ -54.717407, 72.585761 ], [ -55.327148, 72.958315 ], [ -56.118164, 73.649452 ], [ -56.530151, 74.019543 ], [ -56.667480, 74.140084 ], [ -44.560547, 74.140084 ] ] ] } } ] } ] } , @@ -1259,17 +1239,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.155261 ], [ -67.500000, 80.357916 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.985462 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.539673, 82.732092 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.891479, 82.361644 ], [ -64.330444, 81.927816 ], [ -66.752930, 81.724769 ], [ -67.500000, 81.540120 ], [ -67.659302, 81.501241 ], [ -67.500000, 81.501241 ], [ -65.478516, 81.506110 ], [ -67.500000, 80.989712 ], [ -67.840576, 80.899800 ], [ -67.939453, 80.883278 ], [ -67.939453, 82.732092 ], [ -62.539673, 82.732092 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -44.560547, 81.666853 ], [ -44.560547, 79.088462 ], [ -67.939453, 79.088462 ], [ -67.939453, 79.105086 ], [ -67.434082, 79.171335 ], [ -65.709229, 79.394020 ], [ -65.324707, 79.757749 ], [ -67.500000, 80.048561 ], [ -67.939453, 80.106301 ], [ -67.939453, 80.155261 ], [ -67.500000, 80.357916 ], [ -67.148438, 80.515792 ], [ -63.687744, 81.214014 ], [ -62.232056, 81.320764 ], [ -62.649536, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.205811, 82.190368 ], [ -54.135132, 82.199320 ], [ -53.041992, 81.888381 ], [ -50.388794, 82.438651 ], [ -48.004761, 82.064721 ], [ -46.598511, 81.985462 ], [ -45.000000, 81.736620 ], [ -44.560547, 81.666853 ] ] ], [ [ [ -44.560547, 81.670037 ], [ -45.000000, 81.772072 ], [ -46.900635, 82.199320 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -46.197510, 82.732092 ], [ -44.560547, 82.732092 ], [ -44.560547, 81.670037 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 0 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.763306, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.939453, 83.089955 ], [ -67.500000, 83.077387 ], [ -65.824585, 83.027553 ], [ -63.676758, 82.899703 ], [ -62.166138, 82.676285 ], [ -61.847534, 82.628514 ], [ -61.853027, 82.620052 ], [ -67.939453, 82.620052 ], [ -67.939453, 83.089955 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.560547, 83.025552 ], [ -44.560547, 82.620052 ], [ -46.763306, 82.620052 ], [ -46.763306, 82.627809 ], [ -46.499634, 82.676285 ], [ -45.000000, 82.947749 ], [ -44.560547, 83.025552 ] ] ] } } ] } ] } , @@ -1363,23 +1343,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.925415, 21.325198 ], [ -16.842041, 21.330315 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.210815, 22.350076 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.749146, 21.499075 ], [ -17.017822, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.161971 ], [ -16.468506, 22.350076 ], [ -14.210815, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.062744, 22.350076 ], [ -13.007812, 21.943046 ], [ -12.925415, 21.325198 ], [ -16.842041, 21.330315 ], [ -17.061768, 20.997343 ], [ -17.017822, 21.422390 ], [ -14.749146, 21.499075 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -14.210815, 22.350076 ], [ -13.062744, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.618286, 9.264779 ], [ -10.651245, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.395153 ], [ -11.200562, 7.106344 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.258945 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.616998 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.855216 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ], [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.826538, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.243392 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.808211 ], [ -13.897705, 11.679135 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.661011, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.163330, 22.350076 ], [ -6.113892, 21.943046 ], [ -5.487671, 16.325411 ], [ -5.311890, 16.198850 ], [ -5.537109, 15.501326 ], [ -9.547119, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.085449, 15.326572 ], [ -10.651245, 15.130462 ], [ -11.348877, 15.411319 ], [ -11.661987, 15.384839 ], [ -11.832275, 14.796128 ], [ -12.167358, 14.615478 ], [ -12.826538, 15.300081 ], [ -13.436279, 16.040534 ], [ -14.095459, 16.304323 ], [ -14.573364, 16.599346 ], [ -15.133667, 16.583552 ], [ -15.622559, 16.367580 ], [ -16.116943, 16.451891 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.144409, 18.109308 ], [ -16.254272, 19.093267 ], [ -16.375122, 19.590844 ], [ -16.276245, 20.092047 ], [ -16.534424, 20.565939 ], [ -17.061768, 20.997343 ], [ -16.842041, 21.330315 ], [ -12.925415, 21.325198 ], [ -13.007812, 21.943046 ], [ -13.062744, 22.350076 ], [ -6.163330, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.573364, 16.599346 ], [ -14.095459, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.826538, 15.300081 ], [ -12.167358, 14.615478 ], [ -12.123413, 13.992706 ], [ -11.925659, 13.421681 ], [ -11.552124, 13.138328 ], [ -11.464233, 12.752874 ], [ -11.513672, 12.441941 ], [ -11.656494, 12.382928 ], [ -12.200317, 12.463396 ], [ -12.277222, 12.350734 ], [ -12.496948, 12.329269 ], [ -13.216553, 12.576010 ], [ -13.699951, 12.586732 ], [ -13.716431, 12.243392 ], [ -13.826294, 12.141376 ], [ -13.743896, 11.808211 ], [ -13.897705, 11.679135 ], [ -14.117432, 11.673755 ], [ -14.381104, 11.506940 ], [ -14.683228, 11.528470 ], [ -15.128174, 11.038255 ], [ -15.661011, 11.458491 ], [ -16.083984, 11.523088 ], [ -16.314697, 11.802834 ], [ -16.309204, 11.958723 ], [ -16.611328, 12.168226 ], [ -16.677246, 12.382928 ], [ -16.842041, 13.149027 ], [ -16.710205, 13.592600 ], [ -17.122192, 14.370834 ], [ -17.622070, 14.727073 ], [ -17.182617, 14.918246 ], [ -16.699219, 15.617747 ], [ -16.463013, 16.135539 ], [ -16.116943, 16.451891 ], [ -15.622559, 16.367580 ], [ -15.133667, 16.583552 ], [ -14.573364, 16.599346 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.329269 ], [ -12.277222, 12.350734 ], [ -12.200317, 12.463396 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.441941 ], [ -11.453247, 12.076924 ], [ -11.293945, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.840471 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.124146, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.125709 ], [ -8.305664, 9.790264 ], [ -8.080444, 9.373193 ], [ -7.833252, 8.575590 ], [ -8.201294, 8.456072 ], [ -8.300171, 8.314777 ], [ -8.217773, 8.124491 ], [ -8.278198, 7.683773 ], [ -8.437500, 7.683773 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.206543, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.537565 ], [ -10.014038, 8.428904 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.651245, 8.977323 ], [ -10.618286, 9.264779 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.855216 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.616998 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.679135 ], [ -13.743896, 11.808211 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.856934, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.469764 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.093262 ], [ -6.201782, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.663208, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.619019, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.124146, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.840471 ], [ -10.590820, 11.921103 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.293945, 12.076924 ], [ -11.453247, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.464233, 12.752874 ], [ -11.552124, 13.138328 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.167358, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.661987, 15.384839 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.311890, 16.198850 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.856934, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.114553 ], [ -0.263672, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.439453, 13.982046 ], [ 0.439453, 11.011297 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.758057, 10.935798 ], [ -1.203003, 11.005904 ], [ -2.938843, 10.962764 ], [ -2.960815, 10.395975 ], [ -2.823486, 9.638661 ], [ -3.510132, 9.898510 ], [ -3.977051, 9.860628 ], [ -4.328613, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.368958 ], [ -5.471191, 10.951978 ], [ -5.196533, 11.372339 ], [ -5.218506, 11.711410 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.004517, 13.469764 ], [ -3.521118, 13.336175 ], [ -3.103638, 13.539201 ], [ -2.966309, 13.795406 ], [ -2.191772, 14.243087 ], [ -1.999512, 14.557001 ], [ -1.065674, 14.971320 ], [ -0.516357, 15.114553 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.618286, 9.264779 ], [ -10.651245, 8.977323 ], [ -10.491943, 8.716789 ], [ -10.502930, 8.347388 ], [ -10.228271, 8.407168 ], [ -10.014038, 8.428904 ], [ -9.755859, 8.537565 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.206543, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.437500, 7.683773 ], [ -8.481445, 7.395153 ], [ -8.382568, 6.910067 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.189707 ], [ -7.992554, 6.124170 ], [ -7.569580, 5.703448 ], [ -7.536621, 5.309766 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.362843 ], [ -7.970581, 4.351889 ], [ -9.003296, 4.833733 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.705933, 6.860985 ], [ -12.425537, 7.258945 ], [ -12.947388, 7.798079 ], [ -13.123169, 8.162556 ], [ -13.244019, 8.901353 ], [ -12.711182, 9.340672 ], [ -12.595825, 9.616998 ], [ -12.425537, 9.833567 ], [ -12.150879, 9.855216 ], [ -11.914673, 10.044585 ], [ -11.118164, 10.044585 ] ] ], [ [ [ -0.856934, 22.350076 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.439453, 21.509296 ], [ 0.439453, 14.934170 ], [ 0.000000, 14.923554 ], [ -0.263672, 14.923554 ], [ -0.516357, 15.114553 ], [ -1.065674, 14.971320 ], [ -1.999512, 14.557001 ], [ -2.191772, 14.243087 ], [ -2.966309, 13.795406 ], [ -3.103638, 13.539201 ], [ -3.521118, 13.336175 ], [ -4.004517, 13.469764 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.218506, 11.711410 ], [ -5.196533, 11.372339 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.368958 ], [ -5.817261, 10.223031 ], [ -6.047974, 10.093262 ], [ -6.201782, 10.520219 ], [ -6.492920, 10.412183 ], [ -6.663208, 10.428391 ], [ -6.849976, 10.136524 ], [ -7.619019, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.333130, 10.493213 ], [ -8.283691, 10.790141 ], [ -8.404541, 10.908830 ], [ -8.618774, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.377075, 11.393879 ], [ -8.783569, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.124146, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.887695, 12.060809 ], [ -10.162354, 11.840471 ], [ -10.590820, 11.921103 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.293945, 12.076924 ], [ -11.453247, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.464233, 12.752874 ], [ -11.552124, 13.138328 ], [ -11.925659, 13.421681 ], [ -12.123413, 13.992706 ], [ -12.167358, 14.615478 ], [ -11.832275, 14.796128 ], [ -11.661987, 15.384839 ], [ -11.348877, 15.411319 ], [ -10.651245, 15.130462 ], [ -10.085449, 15.326572 ], [ -9.700928, 15.262989 ], [ -9.547119, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.311890, 16.198850 ], [ -5.487671, 16.325411 ], [ -6.113892, 21.943046 ], [ -6.163330, 22.350076 ], [ -0.856934, 22.350076 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Cรดte d'Ivoire", "name_long": "Cรดte d'Ivoire", "brk_a3": "CIV", "brk_name": "Cรดte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Cรดte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.201782, 10.520219 ], [ -6.047974, 10.093262 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.823486, 9.638661 ], [ -2.559814, 8.216927 ], [ -2.982788, 7.378810 ], [ -3.240967, 6.249776 ], [ -2.807007, 5.386336 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.702354 ], [ -7.520142, 4.335456 ], [ -7.712402, 4.362843 ], [ -7.635498, 5.189423 ], [ -7.536621, 5.309766 ], [ -7.569580, 5.703448 ], [ -7.992554, 6.124170 ], [ -8.311157, 6.189707 ], [ -8.602295, 6.468151 ], [ -8.382568, 6.910067 ], [ -8.481445, 7.395153 ], [ -8.437500, 7.683773 ], [ -8.278198, 7.683773 ], [ -8.217773, 8.124491 ], [ -8.300171, 8.314777 ], [ -8.201294, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.373193 ], [ -8.305664, 9.790264 ], [ -8.228760, 10.125709 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.619019, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.663208, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.201782, 10.520219 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.027466, 11.016689 ], [ 0.000000, 10.914224 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.060181, 4.997922 ], [ -1.961060, 4.707828 ], [ -2.856445, 4.992450 ], [ -2.807007, 5.386336 ], [ -3.240967, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.559814, 8.216927 ], [ -2.960815, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.005904 ], [ -0.758057, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.496948, 12.329269 ], [ -12.277222, 12.350734 ], [ -12.200317, 12.463396 ], [ -11.656494, 12.382928 ], [ -11.513672, 12.441941 ], [ -11.453247, 12.076924 ], [ -11.293945, 12.076924 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.590820, 11.921103 ], [ -10.162354, 11.840471 ], [ -9.887695, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ], [ -9.124146, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.783569, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.580322, 11.135287 ], [ -8.618774, 10.811724 ], [ -8.404541, 10.908830 ], [ -8.283691, 10.790141 ], [ -8.333130, 10.493213 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.619019, 10.147339 ], [ -6.849976, 10.136524 ], [ -6.663208, 10.428391 ], [ -6.492920, 10.412183 ], [ -6.201782, 10.520219 ], [ -6.047974, 10.093262 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.368958 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.328613, 9.611582 ], [ -3.977051, 9.860628 ], [ -3.510132, 9.898510 ], [ -2.823486, 9.638661 ], [ -2.960815, 10.395975 ], [ -2.938843, 10.962764 ], [ -1.203003, 11.005904 ], [ -0.758057, 10.935798 ], [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.027466, 11.016689 ], [ 0.000000, 10.914224 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.439453, 8.857934 ], [ 0.439453, 5.697982 ], [ 0.000000, 5.533978 ], [ -0.505371, 5.342583 ], [ -1.060181, 4.997922 ], [ -1.961060, 4.707828 ], [ -2.856445, 4.992450 ], [ -3.312378, 4.981505 ], [ -4.010010, 5.178482 ], [ -4.647217, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.525879, 4.702354 ], [ -7.520142, 4.335456 ], [ -7.712402, 4.362843 ], [ -7.970581, 4.351889 ], [ -9.003296, 4.833733 ], [ -9.909668, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.436768, 6.784626 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.395153 ], [ -10.695190, 7.939556 ], [ -10.228271, 8.407168 ], [ -10.502930, 8.347388 ], [ -10.491943, 8.716789 ], [ -10.651245, 8.977323 ], [ -10.618286, 9.264779 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.914673, 10.044585 ], [ -12.150879, 9.855216 ], [ -12.425537, 9.833567 ], [ -12.595825, 9.616998 ], [ -12.711182, 9.340672 ], [ -13.244019, 8.901353 ], [ -13.683472, 9.492408 ], [ -14.073486, 9.882275 ], [ -14.326172, 10.012130 ], [ -14.578857, 10.212219 ], [ -14.694214, 10.655210 ], [ -14.837036, 10.876465 ], [ -15.128174, 11.038255 ], [ -14.683228, 11.528470 ], [ -14.381104, 11.506940 ], [ -14.117432, 11.673755 ], [ -13.897705, 11.679135 ], [ -13.743896, 11.808211 ], [ -13.826294, 12.141376 ], [ -13.716431, 12.243392 ], [ -13.699951, 12.586732 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 22.350076 ], [ 0.439453, 21.509296 ], [ 0.000000, 21.795208 ], [ -0.230713, 21.943046 ], [ -0.856934, 22.350076 ], [ 0.439453, 22.350076 ] ] ] } } , @@ -1391,32 +1367,32 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.662720, 27.654338 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.870483, 23.281719 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.952881, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.496948, 24.766785 ], [ -12.030029, 26.027170 ], [ -11.716919, 26.101188 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.858380 ], [ -9.733887, 26.858380 ], [ -9.409790, 27.088473 ], [ -8.794556, 27.117813 ], [ -8.816528, 27.654338 ], [ -8.662720, 27.654338 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.509399, 41.310824 ], [ -6.849976, 41.112469 ], [ -6.849976, 40.979898 ], [ -6.860962, 40.329796 ], [ -7.025757, 40.183070 ], [ -7.064209, 39.711413 ], [ -7.498169, 39.626846 ], [ -7.097168, 39.027719 ], [ -7.371826, 38.371809 ], [ -7.025757, 38.074041 ], [ -7.163086, 37.801104 ], [ -7.536621, 37.426888 ], [ -7.454224, 37.094622 ], [ -7.855225, 36.835668 ], [ -8.382568, 36.976227 ], [ -8.898926, 36.866438 ], [ -8.745117, 37.649034 ], [ -8.838501, 38.264063 ], [ -9.283447, 38.358888 ], [ -9.525146, 38.736946 ], [ -9.448242, 39.389509 ], [ -9.047241, 39.753657 ], [ -8.975830, 40.157885 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.186922 ], [ -8.860474, 41.310824 ], [ -6.509399, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.927124, 35.759886 ], [ -5.191040, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.524661 ], [ -1.730347, 33.920572 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.723495 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.897511 ], [ -4.855957, 30.500751 ], [ -5.240479, 29.997760 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.662720, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.117813 ], [ -9.409790, 27.088473 ], [ -9.733887, 26.858380 ], [ -10.189819, 26.858380 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.101188 ], [ -12.030029, 26.027170 ], [ -12.496948, 24.766785 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.014020 ], [ -15.979614, 23.719983 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.517139 ], [ -14.820557, 25.100523 ], [ -14.798584, 25.636574 ], [ -14.436035, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.931135 ], [ -9.810791, 31.175210 ], [ -9.431763, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.927124, 35.759886 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.109863, 40.124291 ], [ 0.000000, 39.897094 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.115356, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.466919, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.026889 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.094622 ], [ -7.536621, 37.426888 ], [ -7.163086, 37.801104 ], [ -7.025757, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.027719 ], [ -7.498169, 39.626846 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.860962, 40.329796 ], [ -6.849976, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.662720, 27.654338 ], [ -8.684692, 27.396155 ], [ -8.684692, 25.878994 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.372514 ], [ -12.870483, 23.281719 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.952881, 21.534847 ], [ -14.738159, 21.534847 ], [ -14.628296, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.496948, 24.766785 ], [ -12.030029, 26.027170 ], [ -11.716919, 26.101188 ], [ -11.392822, 26.882880 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.858380 ], [ -9.733887, 26.858380 ], [ -9.409790, 27.088473 ], [ -8.794556, 27.117813 ], [ -8.816528, 27.654338 ], [ -8.662720, 27.654338 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.927124, 35.759886 ], [ -5.191040, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.636475, 35.398006 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.790771, 34.524661 ], [ -1.730347, 33.920572 ], [ -1.384277, 32.861132 ], [ -1.120605, 32.648626 ], [ -1.307373, 32.263911 ], [ -2.614746, 32.091883 ], [ -3.065186, 31.723495 ], [ -3.647461, 31.634676 ], [ -3.691406, 30.897511 ], [ -4.855957, 30.500751 ], [ -5.240479, 29.997760 ], [ -6.058960, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.839862 ], [ -8.662720, 27.654338 ], [ -8.816528, 27.654338 ], [ -8.794556, 27.117813 ], [ -9.409790, 27.088473 ], [ -9.733887, 26.858380 ], [ -10.189819, 26.858380 ], [ -10.552368, 26.990619 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.101188 ], [ -12.030029, 26.027170 ], [ -12.496948, 24.766785 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.628296, 21.861499 ], [ -14.738159, 21.534847 ], [ -17.006836, 21.534847 ], [ -16.973877, 21.886987 ], [ -16.896973, 21.943046 ], [ -16.589355, 22.156883 ], [ -16.259766, 22.679916 ], [ -16.325684, 23.014020 ], [ -15.979614, 23.719983 ], [ -15.424805, 24.357105 ], [ -15.089722, 24.517139 ], [ -14.820557, 25.100523 ], [ -14.798584, 25.636574 ], [ -14.436035, 26.254010 ], [ -13.771362, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -10.898438, 28.830238 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.931135 ], [ -9.810791, 31.175210 ], [ -9.431763, 32.036020 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.238688 ], [ -7.651978, 33.696923 ], [ -6.910400, 34.107256 ], [ -6.240234, 35.146863 ], [ -5.927124, 35.759886 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.921875, 24.971120 ], [ -6.454468, 24.956180 ], [ -6.113892, 21.943046 ], [ -6.069946, 21.534847 ], [ -12.952881, 21.534847 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.870483, 23.281719 ], [ -11.936646, 23.372514 ], [ -11.969604, 25.933347 ], [ -8.684692, 25.878994 ], [ -8.684692, 27.396155 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 24.971120 ], [ -1.549072, 22.791375 ], [ -0.230713, 21.943046 ], [ 0.401001, 21.534847 ], [ -6.069946, 21.534847 ], [ -6.113892, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.921875, 24.971120 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 41.310824 ], [ 0.439453, 40.426042 ], [ 0.109863, 40.124291 ], [ 0.000000, 39.897094 ], [ -0.274658, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.115356, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.466919, 38.289937 ], [ -0.681152, 37.640335 ], [ -1.439209, 37.439974 ], [ -2.142334, 36.672825 ], [ -3.416748, 36.659606 ], [ -4.367065, 36.677231 ], [ -4.993286, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.026889 ], [ -6.234741, 36.368222 ], [ -6.520386, 36.941111 ], [ -7.454224, 37.094622 ], [ -7.536621, 37.426888 ], [ -7.163086, 37.801104 ], [ -7.025757, 38.074041 ], [ -7.371826, 38.371809 ], [ -7.097168, 39.027719 ], [ -7.498169, 39.626846 ], [ -7.064209, 39.711413 ], [ -7.025757, 40.183070 ], [ -6.860962, 40.329796 ], [ -6.849976, 40.979898 ], [ -6.849976, 41.112469 ], [ -6.509399, 41.310824 ], [ 0.439453, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 36.261992 ], [ 0.439453, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.230713, 21.943046 ], [ -1.549072, 22.791375 ], [ -4.921875, 24.971120 ], [ -8.684692, 27.396155 ], [ -8.662720, 27.586198 ], [ -8.673706, 28.839862 ], [ -7.058716, 29.578234 ], [ -6.058960, 29.730992 ], [ -5.240479, 29.997760 ], [ -4.855957, 30.500751 ], [ -3.691406, 30.897511 ], [ -3.647461, 31.634676 ], [ -3.065186, 31.723495 ], [ -2.614746, 32.091883 ], [ -1.307373, 32.263911 ], [ -1.120605, 32.648626 ], [ -1.384277, 32.861132 ], [ -1.730347, 33.920572 ], [ -1.790771, 34.524661 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.439453, 36.261992 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 7, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.081909, 55.912273 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.667426 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.773315, 50.159305 ], [ -4.306641, 51.210325 ], [ -3.411255, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.059495 ], [ -4.718628, 55.506861 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.569580, 55.131790 ], [ -7.366333, 54.594345 ], [ -7.569580, 54.059388 ], [ -6.954346, 54.072283 ], [ -6.196289, 53.865486 ], [ -6.031494, 53.153359 ], [ -6.789551, 52.258071 ], [ -8.558350, 51.669148 ], [ -9.975586, 51.818803 ], [ -9.162598, 52.862497 ], [ -9.684448, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.569580, 55.131790 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.108330 ], [ -6.849976, 40.979898 ], [ -6.855469, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.134895 ], [ -8.261719, 42.281373 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.070679, 56.022948 ], [ -3.120117, 55.973798 ], [ -2.081909, 55.912273 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.622978 ], [ -0.428467, 54.463653 ], [ 0.000000, 53.667426 ], [ 0.186768, 53.324312 ], [ 0.439453, 52.971800 ], [ 0.439453, 50.767734 ], [ 0.000000, 50.771208 ], [ -0.785522, 50.774682 ], [ -2.488403, 50.499452 ], [ -2.955322, 50.694718 ], [ -3.614502, 50.226124 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.958288 ], [ -5.773315, 50.159305 ], [ -4.306641, 51.210325 ], [ -3.411255, 51.426614 ], [ -4.982300, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.218750, 52.301761 ], [ -4.768066, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.402982 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.613436 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.059495 ], [ -4.718628, 55.506861 ], [ -5.048218, 55.785840 ], [ -5.059204, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.630493, 56.022948 ], [ -3.070679, 56.022948 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.657959, 54.552952 ], [ -6.196289, 53.865486 ], [ -6.954346, 54.072283 ], [ -7.569580, 54.059388 ], [ -7.366333, 54.594345 ], [ -7.569580, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.439453, 49.827353 ], [ 0.439453, 42.638000 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.662241 ], [ -1.499634, 43.032761 ], [ -1.900635, 43.421009 ], [ -1.384277, 44.020472 ], [ -1.192017, 46.012224 ], [ -2.224731, 47.062638 ], [ -2.960815, 47.569114 ], [ -4.487915, 47.953145 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.614990, 48.643798 ], [ -1.933594, 49.774170 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.678293 ], [ 0.439453, 49.827353 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.261719, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.881831 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.108330 ], [ -6.849976, 40.979898 ], [ -6.855469, 40.647304 ], [ -8.811035, 40.647304 ], [ -8.767090, 40.759741 ], [ -8.783569, 40.979898 ], [ -8.789062, 41.182788 ], [ -8.986816, 41.541478 ], [ -9.030762, 41.877741 ], [ -8.668213, 42.134895 ], [ -8.261719, 42.281373 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.976074, 43.747289 ], [ -6.751099, 43.568452 ], [ -5.410767, 43.572432 ], [ -4.345093, 43.401056 ], [ -3.515625, 43.452919 ], [ -1.900635, 43.421009 ], [ -1.499634, 43.032761 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.577355 ], [ 0.439453, 42.638000 ], [ 0.439453, 40.647304 ], [ -6.855469, 40.647304 ], [ -6.849976, 40.979898 ], [ -6.849976, 41.108330 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.881831 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.261719, 42.281373 ], [ -8.668213, 42.134895 ], [ -9.030762, 41.877741 ], [ -8.981323, 42.593533 ], [ -9.393311, 43.024730 ], [ -7.976074, 43.747289 ] ] ] } } ] } ] } @@ -1491,14 +1467,14 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.840576, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.406616, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.898510 ], [ 21.879272, -9.524914 ], [ 21.802368, -8.912207 ], [ 21.950684, -8.309341 ], [ 21.747437, -7.923234 ], [ 21.730957, -7.291639 ], [ 20.516968, -7.302536 ], [ 20.604858, -6.942786 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.468018, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.864014, -7.226249 ], [ 16.572876, -6.626414 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.867403 ], [ 13.024292, -5.987607 ], [ 12.738647, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.687050 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.858774 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.747049 ], [ 17.638550, -0.428463 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.808838, 0.439449 ], [ 17.825317, 0.291136 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.638550, -0.428463 ], [ 17.523193, -0.747049 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.858774 ], [ 15.172119, -4.346411 ], [ 14.584351, -4.970560 ], [ 14.210815, -4.795417 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.260498, -4.882994 ], [ 12.996826, -4.784469 ], [ 12.623291, -4.439521 ], [ 12.321167, -4.609278 ], [ 11.914673, -5.041699 ], [ 11.096191, -3.979341 ], [ 10.068970, -2.970470 ], [ 9.404297, -2.147324 ], [ 8.800049, -1.115042 ], [ 8.833008, -0.780005 ], [ 9.047241, -0.461421 ], [ 9.201050, 0.000000 ], [ 9.294434, 0.269164 ], [ 9.338379, 0.439449 ], [ 17.808838, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.867403 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.626414 ], [ 16.864014, -7.226249 ], [ 17.473755, -8.070107 ], [ 18.132935, -7.988518 ], [ 18.468018, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.093994, -6.942786 ], [ 20.604858, -6.942786 ], [ 20.516968, -7.302536 ], [ 21.730957, -7.291639 ], [ 21.747437, -7.923234 ], [ 21.950684, -8.309341 ], [ 21.802368, -8.912207 ], [ 21.879272, -9.524914 ], [ 22.208862, -9.898510 ], [ 22.153931, -11.086775 ], [ 22.406616, -10.995120 ], [ 22.500000, -10.995120 ], [ 22.840576, -11.016689 ], [ 22.939453, -10.989728 ], [ 22.939453, -12.902844 ], [ 22.500000, -12.902844 ], [ 21.934204, -12.897489 ], [ 21.890259, -16.082764 ], [ 22.500000, -16.820316 ], [ 22.565918, -16.899172 ], [ 22.939453, -17.261482 ], [ 22.939453, -17.586431 ], [ 22.500000, -17.680662 ], [ 21.379395, -17.931702 ], [ 18.956909, -17.790535 ], [ 18.264771, -17.308688 ], [ 14.210815, -17.355882 ], [ 14.062500, -17.424029 ], [ 13.463745, -16.972741 ], [ 12.815552, -16.941215 ], [ 12.216797, -17.114543 ], [ 11.733398, -17.303443 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.797539 ], [ 12.123413, -14.881087 ], [ 12.178345, -14.450639 ], [ 12.502441, -13.549881 ], [ 12.738647, -13.138328 ], [ 13.315430, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.688965, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.123169, -9.768611 ], [ 12.875977, -9.167179 ], [ 12.930908, -8.961045 ], [ 13.238525, -8.564726 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.102322 ], [ 12.738647, -5.965754 ], [ 13.024292, -5.987607 ], [ 13.375854, -5.867403 ] ] ], [ [ [ 12.623291, -4.439521 ], [ 12.996826, -4.784469 ], [ 12.634277, -4.992450 ], [ 12.469482, -5.249598 ], [ 12.436523, -5.687050 ], [ 12.183838, -5.790897 ], [ 11.914673, -5.041699 ], [ 12.321167, -4.609278 ], [ 12.623291, -4.439521 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.815552, -16.941215 ], [ 13.463745, -16.972741 ], [ 14.062500, -17.424029 ], [ 14.210815, -17.355882 ], [ 18.264771, -17.308688 ], [ 18.956909, -17.790535 ], [ 21.379395, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.939453, -17.586431 ], [ 22.939453, -17.926476 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.912476, -18.255437 ], [ 20.885010, -21.815608 ], [ 19.896240, -21.851302 ], [ 19.896240, -22.350076 ], [ 14.315186, -22.350076 ], [ 14.260254, -22.111088 ], [ 14.100952, -21.943046 ], [ 13.870239, -21.698265 ], [ 13.353882, -20.874210 ], [ 12.826538, -19.673626 ], [ 12.612305, -19.046541 ], [ 11.793823, -18.072757 ], [ 11.733398, -17.303443 ], [ 12.216797, -17.114543 ], [ 12.815552, -16.941215 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 0.439449 ], [ 22.939453, -10.989728 ], [ 22.840576, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.406616, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.898510 ], [ 21.879272, -9.524914 ], [ 21.802368, -8.912207 ], [ 21.950684, -8.309341 ], [ 21.747437, -7.923234 ], [ 21.730957, -7.291639 ], [ 20.516968, -7.302536 ], [ 20.604858, -6.942786 ], [ 20.093994, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.468018, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.070107 ], [ 16.864014, -7.226249 ], [ 16.572876, -6.626414 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.867403 ], [ 13.024292, -5.987607 ], [ 12.738647, -5.965754 ], [ 12.321167, -6.102322 ], [ 12.183838, -5.790897 ], [ 12.436523, -5.687050 ], [ 12.469482, -5.249598 ], [ 12.634277, -4.992450 ], [ 12.996826, -4.784469 ], [ 13.260498, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.210815, -4.795417 ], [ 14.584351, -4.970560 ], [ 15.172119, -4.346411 ], [ 15.754395, -3.858774 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.747049 ], [ 17.638550, -0.428463 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.291136 ], [ 17.808838, 0.439449 ], [ 22.939453, 0.439449 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.902844 ], [ 22.939453, -12.902844 ], [ 22.939453, -17.261482 ], [ 22.565918, -16.899172 ], [ 22.500000, -16.820316 ], [ 21.890259, -16.082764 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, -17.926476 ], [ 22.939453, -22.350076 ], [ 19.896240, -22.350076 ], [ 19.896240, -21.851302 ], [ 20.885010, -21.815608 ], [ 20.912476, -18.255437 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.939453, -17.926476 ] ] ] } } @@ -1507,11 +1483,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.056210 ], [ -0.269165, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.433960, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.027222, 12.849293 ], [ 2.180786, 12.624258 ], [ 2.153320, 11.937227 ], [ 1.939087, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.246948, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.000000, 11.022080 ], [ -0.439453, 11.097556 ], [ -0.439453, 15.056210 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.000000, 21.795208 ], [ 1.823730, 20.607078 ], [ 2.059937, 20.138470 ], [ 2.686157, 19.854561 ], [ 3.147583, 19.694314 ], [ 3.158569, 19.056926 ], [ 4.268188, 19.155547 ], [ 4.273682, 16.851862 ], [ 3.724365, 16.183024 ], [ 3.641968, 15.564836 ], [ 2.752075, 15.406024 ], [ 1.384277, 15.321274 ], [ 1.016235, 14.966013 ], [ 0.373535, 14.928862 ], [ 0.000000, 14.923554 ], [ -0.269165, 14.923554 ], [ -0.439453, 15.056210 ], [ -0.439453, 22.080550 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.022080 ], [ 0.027466, 11.016689 ], [ 0.000000, 10.914224 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.673348 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.840454, 6.277078 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 11.097556 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 15.056210 ], [ -0.269165, 14.923554 ], [ 0.000000, 14.923554 ], [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.433960, 13.987376 ], [ 0.994263, 13.336175 ], [ 1.027222, 12.849293 ], [ 2.180786, 12.624258 ], [ 2.153320, 11.937227 ], [ 1.939087, 11.641476 ], [ 1.450195, 11.544616 ], [ 1.246948, 11.108337 ], [ 0.900879, 10.995120 ], [ 0.027466, 11.016689 ], [ 0.000000, 10.914224 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.368042, 9.465317 ], [ 0.461426, 8.673348 ], [ 0.714111, 8.309341 ], [ 0.494385, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.840454, 6.277078 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.533978 ], [ -0.439453, 5.369929 ], [ -0.439453, 15.056210 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.975586, 22.350076 ], [ 9.244995, 21.943046 ], [ 8.574829, 21.565502 ], [ 5.679932, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.686157, 19.854561 ], [ 2.059937, 20.138470 ], [ 1.823730, 20.607078 ], [ 0.000000, 21.795208 ], [ -0.439453, 22.080550 ], [ -0.439453, 22.350076 ], [ 9.975586, 22.350076 ] ] ] } } , @@ -1519,43 +1493,45 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.930420, 22.350076 ], [ 14.996338, 21.943046 ], [ 15.100708, 21.304728 ], [ 15.474243, 21.048618 ], [ 15.490723, 20.730428 ], [ 15.902710, 20.385825 ], [ 15.688477, 19.957860 ], [ 15.303955, 17.926476 ], [ 15.249023, 16.625665 ], [ 13.974609, 15.681221 ], [ 13.540649, 14.365513 ], [ 13.958130, 13.992706 ], [ 13.958130, 13.352210 ], [ 14.595337, 13.330830 ], [ 14.496460, 12.860004 ], [ 14.216309, 12.801088 ], [ 14.183350, 12.484850 ], [ 13.996582, 12.458033 ], [ 13.320923, 13.555222 ], [ 13.084717, 13.592600 ], [ 12.304688, 13.036669 ], [ 11.530151, 13.325485 ], [ 10.991821, 13.384276 ], [ 10.700684, 13.245293 ], [ 10.118408, 13.277373 ], [ 9.525146, 12.849293 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.341520 ], [ 7.333374, 13.095530 ], [ 6.822510, 13.111580 ], [ 6.448975, 13.491131 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.528519 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.549202 ], [ 3.614502, 11.657616 ], [ 2.850952, 12.232655 ], [ 2.493896, 12.232655 ], [ 2.153320, 11.937227 ], [ 2.180786, 12.624258 ], [ 1.027222, 12.849293 ], [ 0.994263, 13.336175 ], [ 0.433960, 13.987376 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.966013 ], [ 1.384277, 15.321274 ], [ 2.752075, 15.406024 ], [ 3.641968, 15.564836 ], [ 3.724365, 16.183024 ], [ 4.273682, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.679932, 19.601194 ], [ 8.574829, 21.565502 ], [ 9.244995, 21.943046 ], [ 9.975586, 22.350076 ], [ 14.930420, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.232655 ], [ 3.614502, 11.657616 ], [ 3.576050, 11.329253 ], [ 3.795776, 10.730778 ], [ 3.603516, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.752075, 7.868823 ], [ 2.691650, 6.255237 ], [ 1.867676, 6.140555 ], [ 1.620483, 6.828261 ], [ 1.664429, 9.129216 ], [ 1.466675, 9.335252 ], [ 1.428223, 9.822742 ], [ 0.774536, 10.471607 ], [ 0.900879, 10.995120 ], [ 1.246948, 11.108337 ], [ 1.450195, 11.544616 ], [ 1.939087, 11.641476 ], [ 2.153320, 11.937227 ], [ 2.493896, 12.232655 ], [ 2.850952, 12.232655 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.850952, 12.232655 ], [ 3.614502, 11.657616 ], [ 3.576050, 11.329253 ], [ 3.795776, 10.730778 ], [ 3.603516, 10.331132 ], [ 3.707886, 10.060811 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.134639 ], [ 2.724609, 8.504970 ], [ 2.752075, 7.868823 ], [ 2.691650, 6.255237 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.840454, 6.277078 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.411495 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.673348 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.914224 ], [ 0.027466, 11.016689 ], [ 0.900879, 10.995120 ], [ 1.246948, 11.108337 ], [ 1.450195, 11.544616 ], [ 1.939087, 11.641476 ], [ 2.153320, 11.937227 ], [ 2.493896, 12.232655 ], [ 2.850952, 12.232655 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.443726, 13.864747 ], [ 6.448975, 13.491131 ], [ 6.822510, 13.111580 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.118408, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.384276 ], [ 11.530151, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.795537 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.958374, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.222290, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.749878, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.051831 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.440859 ], [ 8.761597, 5.479300 ], [ 8.503418, 4.768047 ], [ 7.465210, 4.412137 ], [ 7.086182, 4.461427 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.366821, 4.888467 ], [ 5.037231, 5.610519 ], [ 4.328613, 6.271618 ], [ 3.576050, 6.255237 ], [ 2.691650, 6.255237 ], [ 2.752075, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.603516, 10.331132 ], [ 3.795776, 10.730778 ], [ 3.576050, 11.329253 ], [ 3.614502, 11.657616 ], [ 3.680420, 12.549202 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.528519 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ], [ [ [ 0.027466, 11.016689 ], [ 0.900879, 10.995120 ], [ 0.774536, 10.471607 ], [ 1.428223, 9.822742 ], [ 1.466675, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.620483, 6.828261 ], [ 1.867676, 6.140555 ], [ 1.060181, 5.927508 ], [ 0.840454, 6.277078 ], [ 0.571289, 6.915521 ], [ 0.494385, 7.411495 ], [ 0.714111, 8.309341 ], [ 0.461426, 8.673348 ], [ 0.368042, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.703792 ], [ 0.000000, 10.914224 ], [ 0.027466, 11.016689 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.448975, 13.491131 ], [ 6.822510, 13.111580 ], [ 7.333374, 13.095530 ], [ 7.805786, 13.341520 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.849293 ], [ 10.118408, 13.277373 ], [ 10.700684, 13.245293 ], [ 10.991821, 13.384276 ], [ 11.530151, 13.325485 ], [ 12.304688, 13.036669 ], [ 13.084717, 13.592600 ], [ 13.320923, 13.555222 ], [ 13.996582, 12.458033 ], [ 14.183350, 12.484850 ], [ 14.578857, 12.082296 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.573608, 10.795537 ], [ 13.309937, 10.158153 ], [ 13.167114, 9.638661 ], [ 12.958374, 9.416548 ], [ 12.755127, 8.716789 ], [ 12.222290, 8.303906 ], [ 12.062988, 7.798079 ], [ 11.843262, 7.395153 ], [ 11.749878, 6.980954 ], [ 11.057739, 6.642783 ], [ 10.497437, 7.051831 ], [ 10.118408, 7.035476 ], [ 9.525146, 6.451776 ], [ 9.234009, 6.440859 ], [ 8.761597, 5.479300 ], [ 8.503418, 4.768047 ], [ 7.465210, 4.412137 ], [ 7.086182, 4.461427 ], [ 6.701660, 4.236856 ], [ 5.899658, 4.258768 ], [ 5.366821, 4.888467 ], [ 5.037231, 5.610519 ], [ 4.328613, 6.271618 ], [ 3.576050, 6.255237 ], [ 2.691650, 6.255237 ], [ 2.752075, 7.868823 ], [ 2.724609, 8.504970 ], [ 2.911377, 9.134639 ], [ 3.218994, 9.443643 ], [ 3.707886, 10.060811 ], [ 3.603516, 10.331132 ], [ 3.795776, 10.730778 ], [ 3.576050, 11.329253 ], [ 3.614502, 11.657616 ], [ 3.680420, 12.549202 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.528519 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.897461, 12.216549 ], [ 14.963379, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.017539 ], [ 13.958130, 9.546583 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.792797 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.540405, 6.227934 ], [ 14.463501, 5.451959 ], [ 14.562378, 5.030755 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.209465 ], [ 15.040283, 3.847812 ], [ 15.408325, 3.332470 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.553476 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.960677 ], [ 14.337158, 2.224173 ], [ 13.079224, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.755371, 2.322972 ], [ 11.277466, 2.257106 ], [ 11.288452, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.492432, 4.494285 ], [ 8.503418, 4.768047 ], [ 8.761597, 5.479300 ], [ 9.234009, 6.440859 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.035476 ], [ 10.497437, 7.051831 ], [ 11.057739, 6.642783 ], [ 11.749878, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.222290, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.958374, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.795537 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.484850 ], [ 14.216309, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.651489, 2.284551 ], [ 11.277466, 2.257106 ], [ 11.288452, 1.054628 ], [ 9.832764, 1.065612 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.158979 ], [ 9.651489, 2.284551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.072510, 22.350076 ], [ 18.918457, 21.943046 ], [ 22.500000, 20.226120 ], [ 22.939453, 20.014645 ], [ 22.939453, 15.543668 ], [ 22.571411, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.186890, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.939697, 12.586732 ], [ 22.291260, 12.645698 ], [ 22.500000, 12.259496 ], [ 22.500000, 12.114523 ], [ 22.510986, 11.679135 ], [ 22.879028, 11.383109 ], [ 22.868042, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.968157 ], [ 21.725464, 10.563422 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.009877 ], [ 19.094238, 9.074976 ], [ 18.814087, 8.982749 ], [ 18.912964, 8.629903 ], [ 18.391113, 8.282163 ], [ 17.968140, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.732765 ], [ 16.292725, 7.754537 ], [ 16.105957, 7.493196 ], [ 15.281982, 7.422389 ], [ 15.435791, 7.689217 ], [ 15.122681, 8.379997 ], [ 14.979858, 8.792797 ], [ 14.545898, 8.966471 ], [ 13.958130, 9.546583 ], [ 14.172363, 10.017539 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.990491 ], [ 15.468750, 9.979671 ], [ 14.924927, 10.892648 ], [ 14.963379, 11.555380 ], [ 14.897461, 12.216549 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.958130, 13.352210 ], [ 13.958130, 13.992706 ], [ 13.540649, 14.365513 ], [ 13.974609, 15.681221 ], [ 15.249023, 16.625665 ], [ 15.303955, 17.926476 ], [ 15.688477, 19.957860 ], [ 15.902710, 20.385825 ], [ 15.490723, 20.730428 ], [ 15.474243, 21.048618 ], [ 15.100708, 21.304728 ], [ 14.996338, 21.943046 ], [ 14.930420, 22.350076 ], [ 18.072510, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.868042, 11.140677 ], [ 22.879028, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.114523 ], [ 22.500000, 12.259496 ], [ 22.291260, 12.645698 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.186890, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.785505 ], [ 22.571411, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.897461, 12.216549 ], [ 14.963379, 11.555380 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.979671 ], [ 14.908447, 9.990491 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.017539 ], [ 13.958130, 9.546583 ], [ 14.545898, 8.966471 ], [ 14.979858, 8.792797 ], [ 15.122681, 8.379997 ], [ 15.435791, 7.689217 ], [ 15.281982, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.540405, 6.227934 ], [ 14.463501, 5.451959 ], [ 14.562378, 5.030755 ], [ 14.479980, 4.729727 ], [ 14.952393, 4.209465 ], [ 15.040283, 3.847812 ], [ 15.408325, 3.332470 ], [ 15.864258, 3.014356 ], [ 15.908203, 2.553476 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.724593 ], [ 15.150146, 1.960677 ], [ 14.337158, 2.224173 ], [ 13.079224, 2.268084 ], [ 12.952881, 2.322972 ], [ 12.359619, 2.191238 ], [ 11.755371, 2.322972 ], [ 11.277466, 2.257106 ], [ 9.651489, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.732708 ], [ 8.948364, 3.902618 ], [ 8.745117, 4.351889 ], [ 8.492432, 4.494285 ], [ 8.503418, 4.768047 ], [ 8.761597, 5.479300 ], [ 9.234009, 6.440859 ], [ 9.525146, 6.451776 ], [ 10.118408, 7.035476 ], [ 10.497437, 7.051831 ], [ 11.057739, 6.642783 ], [ 11.749878, 6.980954 ], [ 11.843262, 7.395153 ], [ 12.062988, 7.798079 ], [ 12.222290, 8.303906 ], [ 12.755127, 8.716789 ], [ 12.958374, 9.416548 ], [ 13.167114, 9.638661 ], [ 13.309937, 10.158153 ], [ 13.573608, 10.795537 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.578857, 12.082296 ], [ 14.183350, 12.484850 ], [ 14.216309, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.868042, 11.140677 ], [ 22.939453, 10.860281 ], [ 22.939453, 4.685930 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.406616, 4.028659 ], [ 21.659546, 4.220421 ], [ 20.928955, 4.319024 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.934937, 4.707828 ], [ 18.544922, 4.198508 ], [ 18.457031, 3.502455 ], [ 17.808838, 3.557283 ], [ 17.133179, 3.727227 ], [ 16.539917, 3.195364 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.553476 ], [ 15.864258, 3.014356 ], [ 15.408325, 3.332470 ], [ 15.040283, 3.847812 ], [ 14.952393, 4.209465 ], [ 14.479980, 4.729727 ], [ 14.562378, 5.030755 ], [ 14.463501, 5.451959 ], [ 14.540405, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.281982, 7.422389 ], [ 16.105957, 7.493196 ], [ 16.292725, 7.754537 ], [ 16.457520, 7.732765 ], [ 16.704712, 7.509535 ], [ 17.968140, 7.890588 ], [ 18.391113, 8.282163 ], [ 18.912964, 8.629903 ], [ 18.814087, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.009877 ], [ 21.000366, 9.476154 ], [ 21.725464, 10.563422 ], [ 22.230835, 10.968157 ], [ 22.500000, 11.043647 ], [ 22.868042, 11.140677 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.319024 ], [ 21.659546, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.902222, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.396606, 2.899153 ], [ 18.457031, 3.502455 ], [ 18.544922, 4.198508 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 15.543668 ], [ 22.939453, 10.860281 ], [ 22.868042, 11.140677 ], [ 22.879028, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.114523 ], [ 22.500000, 12.259496 ], [ 22.291260, 12.645698 ], [ 21.939697, 12.586732 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.186890, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.785505 ], [ 22.571411, 14.944785 ], [ 22.939453, 15.543668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.557283 ], [ 18.457031, 3.502455 ], [ 18.396606, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.902222, 1.741065 ], [ 17.775879, 0.856902 ], [ 17.825317, 0.285643 ], [ 17.687988, 0.000000 ], [ 17.666016, -0.060425 ], [ 17.633057, -0.439449 ], [ 9.052734, -0.439449 ], [ 9.201050, 0.000000 ], [ 9.294434, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.832764, 1.065612 ], [ 11.288452, 1.054628 ], [ 11.277466, 2.257106 ], [ 11.755371, 2.322972 ], [ 12.359619, 2.191238 ], [ 12.952881, 2.322972 ], [ 13.079224, 2.268084 ], [ 14.337158, 2.224173 ], [ 15.150146, 1.960677 ], [ 15.941162, 1.724593 ], [ 16.012573, 2.268084 ], [ 16.539917, 3.195364 ], [ 17.133179, 3.727227 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.319024 ], [ 21.659546, 4.220421 ], [ 22.406616, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 22.939453, 4.685930 ], [ 22.939453, -0.439449 ], [ 17.633057, -0.439449 ], [ 17.666016, -0.060425 ], [ 17.687988, 0.000000 ], [ 17.825317, 0.285643 ], [ 17.775879, 0.856902 ], [ 17.902222, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.396606, 2.899153 ], [ 18.457031, 3.502455 ], [ 18.544922, 4.198508 ], [ 18.934937, 4.707828 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.080550 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.993778 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.609880 ], [ 12.573853, 38.125915 ], [ 13.743896, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.876141 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.166281 ], [ 18.292236, 39.808536 ], [ 17.737427, 40.275335 ], [ 16.869507, 40.442767 ], [ 16.452026, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.056274, 38.903858 ], [ 16.638794, 38.843986 ], [ 16.100464, 37.983175 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 15.001831, 40.170479 ], [ 14.705200, 40.601441 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.191056 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.673462, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.903858 ], [ 8.432007, 39.172659 ], [ 8.388062, 40.375844 ], [ 8.162842, 40.950863 ], [ 8.712158, 40.896906 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.213745, 41.310824 ], [ 2.092896, 41.228249 ], [ 0.812988, 41.017211 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.676472 ], [ 0.109863, 40.124291 ], [ 0.000000, 39.897094 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.115356, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.439453, 38.311491 ], [ -0.439453, 41.310824 ], [ 2.213745, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.087632 ], [ 20.527954, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 22.080550 ], [ 0.401001, 21.534847 ], [ -0.439453, 21.534847 ], [ -0.439453, 22.080550 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.213745, 41.310824 ], [ 2.092896, 41.228249 ], [ 0.812988, 41.017211 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.676472 ], [ 0.109863, 40.124291 ], [ 0.000000, 39.897094 ], [ -0.280151, 39.308800 ], [ 0.000000, 38.903858 ], [ 0.115356, 38.736946 ], [ 0.000000, 38.651198 ], [ -0.439453, 38.311491 ], [ -0.439453, 41.310824 ], [ 2.213745, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.523682, 38.229550 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.337158, 36.993778 ], [ 13.826294, 37.103384 ], [ 12.431030, 37.609880 ], [ 12.573853, 38.125915 ], [ 13.743896, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.523682, 38.229550 ] ] ], [ [ [ 16.457520, 41.310824 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.876141 ], [ 18.380127, 40.354917 ], [ 18.479004, 40.166281 ], [ 18.292236, 39.808536 ], [ 17.737427, 40.275335 ], [ 16.869507, 40.442767 ], [ 16.452026, 39.795876 ], [ 17.171631, 39.423464 ], [ 17.056274, 38.903858 ], [ 16.638794, 38.843986 ], [ 16.100464, 37.983175 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.212288 ], [ 15.891724, 38.749799 ], [ 16.111450, 38.963680 ], [ 15.721436, 39.542176 ], [ 15.413818, 40.048643 ], [ 15.001831, 40.170479 ], [ 14.705200, 40.601441 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.191056 ], [ 12.886963, 41.253032 ], [ 12.788086, 41.310824 ], [ 16.457520, 41.310824 ] ] ], [ [ [ 9.212036, 41.211722 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.497092 ], [ 9.673462, 39.176917 ], [ 9.217529, 39.240763 ], [ 8.811035, 38.903858 ], [ 8.432007, 39.172659 ], [ 8.388062, 40.375844 ], [ 8.162842, 40.950863 ], [ 8.712158, 40.896906 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.211722 ] ] ], [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.107487 ], [ 20.148926, 39.622615 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.390869, 41.310824 ], [ 22.796631, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.897194 ], [ 10.601807, 36.408021 ], [ 10.596313, 35.946883 ], [ 10.942383, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.343628, 33.783713 ], [ 10.859985, 33.765449 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.431274, 32.366043 ], [ 10.947876, 32.082575 ], [ 10.640259, 31.760867 ], [ 9.953613, 31.377089 ], [ 10.057983, 30.958769 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.137368 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.091322 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 12.002563, 23.468285 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.080550 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.862043 ], [ 5.322876, 36.716871 ], [ 6.262207, 37.107765 ], [ 7.333374, 37.116526 ], [ 7.739868, 36.884014 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.348326 ], [ 10.211792, 37.230328 ], [ 10.184326, 36.721274 ], [ 11.030273, 37.090240 ], [ 11.101685, 36.897194 ], [ 10.601807, 36.408021 ], [ 10.596313, 35.946883 ], [ 10.942383, 35.697456 ], [ 10.810547, 34.831841 ], [ 10.151367, 34.329828 ], [ 10.343628, 33.783713 ], [ 10.859985, 33.765449 ], [ 11.107178, 33.293804 ], [ 11.491699, 33.137551 ], [ 11.431274, 32.366043 ], [ 10.947876, 32.082575 ], [ 10.640259, 31.760867 ], [ 9.953613, 31.377089 ], [ 10.057983, 30.958769 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.058228, 32.101190 ], [ 8.442993, 32.505129 ], [ 8.432007, 32.745703 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.478565 ], [ 8.217773, 36.430122 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.348326 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.254377 ], [ 22.851562, 39.656456 ], [ 22.939453, 39.571822 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.307181 ], [ 20.731201, 38.766933 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.622615 ], [ 19.978638, 39.694507 ], [ 19.962158, 39.913950 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.390869, 41.310824 ], [ 20.527954, 41.310824 ], [ 20.604858, 41.087632 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.133159 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.333374, 37.116526 ], [ 7.739868, 36.884014 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.430122 ], [ 8.377075, 35.478565 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.432007, 32.745703 ], [ 8.442993, 32.505129 ], [ 9.058228, 32.101190 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.137368 ], [ 9.717407, 26.509905 ], [ 9.321899, 26.091322 ], [ 9.909668, 25.363882 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.377121 ], [ 10.772095, 24.562112 ], [ 11.563110, 24.096619 ], [ 12.002563, 23.468285 ], [ 9.244995, 21.943046 ], [ 8.525391, 21.534847 ], [ 0.401001, 21.534847 ], [ -0.439453, 22.080550 ], [ -0.439453, 35.840082 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.973561 ], [ 0.505371, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.164062, 36.782892 ], [ 4.817505, 36.862043 ], [ 5.322876, 36.716871 ], [ 6.262207, 37.107765 ], [ 7.333374, 37.116526 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.491699, 33.137551 ], [ 12.667236, 32.791892 ], [ 13.084717, 32.879587 ], [ 13.919678, 32.708733 ], [ 15.249023, 32.263911 ], [ 15.715942, 31.377089 ], [ 16.611328, 31.179910 ], [ 18.023071, 30.760719 ], [ 19.088745, 30.263812 ], [ 19.577637, 30.524413 ], [ 20.055542, 30.982319 ], [ 19.819336, 31.751525 ], [ 20.137939, 32.236036 ], [ 20.857544, 32.704111 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 22.939453, 32.583849 ], [ 22.939453, 21.534847 ], [ 19.764404, 21.534847 ], [ 18.918457, 21.943046 ], [ 15.864258, 23.407806 ], [ 14.853516, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.584595, 23.039298 ], [ 12.002563, 23.468285 ], [ 11.563110, 24.096619 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.377121 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.363882 ], [ 9.321899, 26.091322 ], [ 9.717407, 26.509905 ], [ 9.629517, 27.137368 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.057983, 30.958769 ], [ 9.953613, 31.377089 ], [ 10.640259, 31.760867 ], [ 10.947876, 32.082575 ], [ 11.431274, 32.366043 ], [ 11.491699, 33.137551 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.002563, 23.468285 ], [ 13.584595, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.853516, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.062256, 21.534847 ], [ 8.525391, 21.534847 ], [ 9.244995, 21.943046 ], [ 12.002563, 23.468285 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.864258, 23.407806 ], [ 18.918457, 21.943046 ], [ 19.764404, 21.534847 ], [ 15.062256, 21.534847 ], [ 14.996338, 21.943046 ], [ 14.853516, 22.862256 ], [ 15.864258, 23.407806 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.310824 ], [ 22.939453, 40.354917 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.254377 ], [ 22.851562, 39.656456 ], [ 22.939453, 39.571822 ], [ 22.939453, 37.330857 ], [ 22.774658, 37.304645 ], [ 22.939453, 36.923548 ], [ 22.939453, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 21.670532, 36.844461 ], [ 21.296997, 37.644685 ], [ 21.121216, 38.307181 ], [ 20.731201, 38.766933 ], [ 20.220337, 39.338546 ], [ 20.148926, 39.622615 ], [ 20.615845, 40.107487 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.598877, 41.133159 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 22.939453, 41.310824 ] ] ] } } ] } ] } , @@ -1563,68 +1539,66 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 54.466845 ], [ -0.433960, 54.463653 ], [ 0.000000, 53.667426 ], [ 0.186768, 53.324312 ], [ 0.472412, 52.928775 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.805218 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.764259 ], [ 0.000000, 50.771208 ], [ -0.439453, 50.771208 ], [ -0.439453, 54.466845 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.008664 ], [ 9.563599, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.256984 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.778155 ], [ 3.587036, 50.376999 ], [ 4.284668, 49.905249 ], [ 4.801025, 49.983020 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.199654 ], [ 8.102417, 49.016257 ], [ 7.597046, 48.330691 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.740112, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.026001, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.806030, 45.706179 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.553101, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.397065 ], [ 3.103638, 43.072901 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.642456, 50.944584 ], [ 2.515869, 51.148340 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 42.795401 ], [ 1.829224, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.890010 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.676472 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.771211 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.425537, 56.022948 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.046753, 55.363503 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.975098, 56.022948 ], [ 12.425537, 56.022948 ] ] ], [ [ [ 10.200806, 56.022948 ], [ 9.953613, 55.776573 ], [ 9.651489, 55.469513 ], [ 9.920654, 54.980766 ], [ 9.283447, 54.829172 ], [ 8.525391, 54.961848 ], [ 8.124390, 55.516192 ], [ 8.113403, 55.776573 ], [ 8.107910, 56.022948 ], [ 10.200806, 56.022948 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.849353 ], [ 6.157837, 50.802463 ], [ 5.608521, 51.037940 ], [ 4.976807, 51.474540 ], [ 4.048462, 51.265352 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.540405, 56.022948 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.360381 ], [ 12.804565, 55.776573 ], [ 12.722168, 56.022948 ], [ 14.540405, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Belgium", "sov_a3": "BEL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belgium", "adm0_a3": "BEL", "geou_dif": 0, "geounit": "Belgium", "gu_a3": "BEL", "su_dif": 0, "subunit": "Belgium", "su_a3": "BEL", "brk_diff": 0, "name": "Belgium", "name_long": "Belgium", "brk_a3": "BEL", "brk_name": "Belgium", "abbrev": "Belg.", "postal": "B", "formal_en": "Kingdom of Belgium", "name_sort": "Belgium", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 10414336, "gdp_md_est": 389300, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "BE", "iso_a3": "BEL", "iso_n3": "056", "un_a3": "056", "wb_a2": "BE", "wb_a3": "BEL", "woe_id": -99, "adm0_a3_is": "BEL", "adm0_a3_us": "BEL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.976807, 51.474540 ], [ 5.608521, 51.037940 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 6.245728, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.983020 ], [ 4.284668, 49.905249 ], [ 3.587036, 50.376999 ], [ 3.125610, 50.778155 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.317871, 51.344339 ], [ 4.048462, 51.265352 ], [ 4.976807, 51.474540 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.844482, 52.227799 ], [ 6.591797, 51.852746 ], [ 5.987549, 51.849353 ], [ 6.157837, 50.802463 ], [ 6.042480, 50.127622 ], [ 6.245728, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.899658, 49.443129 ], [ 5.674438, 49.528774 ], [ 4.801025, 49.983020 ], [ 4.284668, 49.905249 ], [ 3.587036, 50.376999 ], [ 3.125610, 50.778155 ], [ 2.658691, 50.795519 ], [ 2.515869, 51.148340 ], [ 3.317871, 51.344339 ], [ 3.834229, 51.618017 ], [ 4.707642, 53.090725 ], [ 6.075439, 53.510918 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.393311, 43.008664 ], [ 9.563599, 42.151187 ], [ 9.228516, 41.380930 ], [ 8.778076, 41.582580 ], [ 8.547363, 42.256984 ], [ 8.745117, 42.625876 ], [ 9.393311, 43.008664 ] ] ], [ [ [ 2.515869, 51.148340 ], [ 2.658691, 50.795519 ], [ 3.125610, 50.778155 ], [ 3.587036, 50.376999 ], [ 4.284668, 49.905249 ], [ 4.801025, 49.983020 ], [ 5.674438, 49.528774 ], [ 5.899658, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.199654 ], [ 8.102417, 49.016257 ], [ 7.597046, 48.330691 ], [ 7.470703, 47.620975 ], [ 7.196045, 47.450380 ], [ 6.740112, 47.539455 ], [ 6.767578, 47.286682 ], [ 6.036987, 46.724800 ], [ 6.026001, 46.271037 ], [ 6.503906, 46.430285 ], [ 6.844482, 45.989329 ], [ 6.806030, 45.706179 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.026950 ], [ 7.009277, 44.253069 ], [ 7.553101, 44.127028 ], [ 7.437744, 43.691708 ], [ 6.531372, 43.129052 ], [ 4.559326, 43.397065 ], [ 3.103638, 43.072901 ], [ 2.988281, 42.472097 ], [ 1.829224, 42.342305 ], [ 0.703125, 42.795401 ], [ 0.340576, 42.577355 ], [ 0.000000, 42.662241 ], [ -0.439453, 42.771211 ], [ -0.439453, 49.532339 ], [ 0.000000, 49.681847 ], [ 1.340332, 50.127622 ], [ 1.642456, 50.944584 ], [ 2.515869, 51.148340 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.980766 ], [ 9.942627, 54.594345 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.958618, 54.194583 ], [ 12.518921, 54.470038 ], [ 13.650513, 54.075506 ], [ 14.122925, 53.755207 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.441528, 52.623060 ], [ 14.688721, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 14.573364, 50.999929 ], [ 14.309692, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.969360, 50.481978 ], [ 12.238770, 50.264765 ], [ 12.414551, 49.968889 ], [ 12.524414, 49.546598 ], [ 13.035278, 49.307217 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.886963, 48.286848 ], [ 13.029785, 47.635784 ], [ 12.936401, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.145386, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.525391, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.597046, 48.330691 ], [ 8.102417, 49.016257 ], [ 6.657715, 49.199654 ], [ 6.185303, 49.464554 ], [ 6.245728, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.393352 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.829172 ], [ 9.920654, 54.980766 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.525391, 47.831596 ], [ 9.596558, 47.524620 ], [ 9.635010, 47.346267 ], [ 9.481201, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.365601, 46.483265 ], [ 9.926147, 46.312790 ], [ 9.184570, 46.437857 ], [ 8.970337, 46.035109 ], [ 8.492432, 46.004593 ], [ 8.316650, 46.160810 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.775186 ], [ 6.844482, 45.989329 ], [ 6.503906, 46.430285 ], [ 6.026001, 46.271037 ], [ 6.036987, 46.724800 ], [ 6.767578, 47.286682 ], [ 6.740112, 47.539455 ], [ 7.196045, 47.450380 ], [ 7.470703, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.525391, 47.831596 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.980766 ], [ 9.942627, 54.594345 ], [ 10.953369, 54.361358 ], [ 10.942383, 54.007769 ], [ 11.958618, 54.194583 ], [ 12.518921, 54.470038 ], [ 13.650513, 54.075506 ], [ 14.122925, 53.755207 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.441528, 52.623060 ], [ 14.688721, 52.089633 ], [ 14.606323, 51.744038 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.471491 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.046557 ], [ 18.396606, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.493107 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.041469 ], [ 17.913208, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.962187 ], [ 14.342651, 48.552978 ], [ 13.595581, 48.875554 ], [ 13.244019, 48.414619 ], [ 12.886963, 48.286848 ], [ 13.029785, 47.635784 ], [ 12.936401, 47.465236 ], [ 12.623291, 47.672786 ], [ 12.145386, 47.702368 ], [ 11.425781, 47.524620 ], [ 10.546875, 47.565407 ], [ 10.404053, 47.301585 ], [ 9.898682, 47.580231 ], [ 9.596558, 47.524620 ], [ 8.525391, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.470703, 47.620975 ], [ 7.597046, 48.330691 ], [ 8.102417, 49.016257 ], [ 6.657715, 49.199654 ], [ 6.185303, 49.464554 ], [ 6.245728, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.802463 ], [ 5.987549, 51.849353 ], [ 6.591797, 51.852746 ], [ 6.844482, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.102661, 53.693454 ], [ 7.937622, 53.748711 ], [ 8.124390, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.574829, 54.393352 ], [ 8.525391, 54.961848 ], [ 9.283447, 54.829172 ], [ 9.920654, 54.980766 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.139160, 46.656977 ], [ 14.633789, 46.430285 ], [ 13.809814, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.156372, 47.115000 ], [ 11.167603, 46.939012 ], [ 11.052246, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.145386, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.936401, 47.465236 ], [ 13.029785, 47.635784 ], [ 12.886963, 48.286848 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.342651, 48.552978 ], [ 14.902954, 48.962187 ], [ 15.254517, 49.037868 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.729191 ], [ 15.331421, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.463983 ], [ 13.716431, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.809814, 46.509735 ], [ 14.633789, 46.430285 ], [ 15.139160, 46.656977 ], [ 16.012573, 46.683363 ], [ 16.204834, 46.852678 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.207589 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.162842, 40.950863 ], [ 8.712158, 40.896906 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.207589 ] ] ], [ [ [ 12.156372, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.809814, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.941650, 45.590978 ], [ 13.145142, 45.736860 ], [ 12.332153, 45.379161 ], [ 12.387085, 44.883120 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.091531 ], [ 13.529663, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.701627 ], [ 11.195068, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.917680 ], [ 9.706421, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.432007, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.691708 ], [ 7.553101, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.806030, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.160810 ], [ 8.492432, 46.004593 ], [ 8.970337, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.926147, 46.312790 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.052246, 46.751153 ], [ 11.167603, 46.939012 ], [ 12.156372, 47.115000 ] ] ], [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.428840 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.468124 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.217353 ], [ 22.642822, 48.147763 ], [ 22.714233, 47.879513 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.991494 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.599609, 46.172223 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.209134 ], [ 16.320190, 45.003651 ], [ 15.963135, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.243286, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.847779 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.504737 ], [ 15.177612, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.073521 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.683472, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.463983 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.331421, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.105713, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.913208, 48.994636 ], [ 18.105469, 49.041469 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.493107 ], [ 18.852539, 49.496675 ], [ 18.912964, 49.435985 ], [ 19.319458, 49.571540 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.309692, 51.117317 ], [ 14.573364, 50.999929 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.721191, 50.215580 ], [ 16.869507, 50.471491 ], [ 17.556152, 50.362985 ], [ 17.649536, 50.046557 ], [ 18.396606, 49.986552 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.493107 ], [ 18.402100, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.041469 ], [ 17.913208, 48.994636 ], [ 17.885742, 48.900838 ], [ 17.545166, 48.799627 ], [ 17.105713, 48.817716 ], [ 16.962891, 48.596592 ], [ 16.501465, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.254517, 49.037868 ], [ 14.902954, 48.962187 ], [ 14.342651, 48.552978 ], [ 13.595581, 48.875554 ], [ 13.035278, 49.307217 ], [ 12.524414, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.264765 ], [ 12.969360, 50.481978 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.309692, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.232349 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.121704, 44.422011 ], [ 19.599609, 44.036270 ], [ 19.456787, 43.568452 ], [ 19.220581, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.632568, 43.213183 ], [ 19.962158, 43.104994 ], [ 20.341187, 42.896089 ], [ 20.258789, 42.811522 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.686473 ], [ 19.308472, 42.195969 ], [ 19.374390, 41.877741 ], [ 19.165649, 41.955405 ], [ 18.885498, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.243286, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.963135, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.209134 ], [ 17.001343, 45.232349 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.895996, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.939453, 54.284469 ], [ 22.939453, 49.862776 ], [ 22.521973, 49.475263 ], [ 22.780151, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.468124 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.428840 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.912964, 49.435985 ], [ 18.396606, 49.986552 ], [ 17.649536, 50.046557 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.471491 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.688721, 52.089633 ], [ 14.441528, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.122925, 53.755207 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.511516 ], [ 17.622070, 54.851315 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.599609, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.413876 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.766237 ], [ 22.148438, 44.476911 ], [ 22.461548, 44.699898 ], [ 22.500000, 44.680372 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.478027, 44.406316 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.640051 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.896089 ], [ 22.500000, 42.698586 ], [ 22.439575, 42.577355 ], [ 22.500000, 42.508552 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.384644, 42.317939 ], [ 22.500000, 42.244785 ], [ 22.884521, 41.996243 ], [ 22.939453, 41.463312 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.083492 ], [ 20.462036, 41.512691 ], [ 20.593872, 41.853196 ], [ 20.522461, 42.216314 ], [ 20.286255, 42.317939 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.811522 ], [ 20.341187, 42.896089 ], [ 19.962158, 43.104994 ], [ 19.632568, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.220581, 43.524655 ], [ 19.456787, 43.568452 ], [ 19.599609, 44.036270 ], [ 19.121704, 44.422011 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.599609, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.037868 ], [ 16.029053, 48.734455 ], [ 16.501465, 48.785152 ], [ 16.962891, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.122101 ], [ 16.902466, 47.713458 ], [ 16.342163, 47.713458 ], [ 16.534424, 47.494937 ], [ 16.204834, 46.852678 ], [ 16.369629, 46.841407 ], [ 16.567383, 46.502173 ], [ 15.770874, 46.236853 ], [ 15.671997, 45.832627 ], [ 15.325928, 45.729191 ], [ 15.331421, 45.452424 ], [ 14.935913, 45.471688 ], [ 14.595337, 45.633246 ], [ 14.414062, 45.463983 ], [ 13.716431, 45.498647 ], [ 13.941650, 45.590978 ], [ 13.699951, 46.016039 ], [ 13.809814, 46.509735 ], [ 12.376099, 46.766206 ], [ 12.156372, 47.115000 ], [ 11.167603, 46.939012 ], [ 11.052246, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.100045 ], [ 9.635010, 47.346267 ], [ 9.596558, 47.524620 ], [ 9.898682, 47.580231 ], [ 10.404053, 47.301585 ], [ 10.546875, 47.565407 ], [ 11.425781, 47.524620 ], [ 12.145386, 47.702368 ], [ 12.623291, 47.672786 ], [ 12.936401, 47.465236 ], [ 13.029785, 47.635784 ], [ 12.886963, 48.286848 ], [ 13.244019, 48.414619 ], [ 13.595581, 48.875554 ], [ 14.342651, 48.552978 ], [ 14.902954, 48.962187 ], [ 15.254517, 49.037868 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.188277 ], [ 22.318726, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.854478 ], [ 22.653809, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.895996, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.863963 ], [ 21.269531, 55.188277 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.212036, 41.207589 ], [ 9.404297, 40.979898 ], [ 9.684448, 40.647304 ], [ 8.283691, 40.647304 ], [ 8.162842, 40.950863 ], [ 8.712158, 40.896906 ], [ 8.838501, 40.979898 ], [ 9.212036, 41.207589 ] ] ], [ [ [ 12.156372, 47.115000 ], [ 12.376099, 46.766206 ], [ 13.809814, 46.509735 ], [ 13.699951, 46.016039 ], [ 13.941650, 45.590978 ], [ 13.145142, 45.736860 ], [ 12.332153, 45.379161 ], [ 12.387085, 44.883120 ], [ 12.260742, 44.598290 ], [ 12.590332, 44.091531 ], [ 13.529663, 43.588349 ], [ 14.029541, 42.759113 ], [ 15.144653, 41.955405 ], [ 15.930176, 41.959490 ], [ 16.171875, 41.738528 ], [ 15.891724, 41.541478 ], [ 17.270508, 40.979898 ], [ 17.523193, 40.876141 ], [ 17.896729, 40.647304 ], [ 14.551392, 40.647304 ], [ 14.062500, 40.784701 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.186922 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.701627 ], [ 11.195068, 42.354485 ], [ 10.513916, 42.932296 ], [ 10.200806, 43.917680 ], [ 9.706421, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.432007, 44.229457 ], [ 7.849731, 43.767127 ], [ 7.437744, 43.691708 ], [ 7.553101, 44.127028 ], [ 7.009277, 44.253069 ], [ 6.751099, 45.026950 ], [ 7.097168, 45.332840 ], [ 6.806030, 45.706179 ], [ 6.844482, 45.989329 ], [ 7.272949, 45.775186 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.160810 ], [ 8.492432, 46.004593 ], [ 8.970337, 46.035109 ], [ 9.184570, 46.437857 ], [ 9.926147, 46.312790 ], [ 10.365601, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.052246, 46.751153 ], [ 11.167603, 46.939012 ], [ 12.156372, 47.115000 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 49.862776 ], [ 22.521973, 49.475263 ], [ 22.780151, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 21.610107, 49.468124 ], [ 20.890503, 49.328702 ], [ 20.418091, 49.428840 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.912964, 49.435985 ], [ 18.396606, 49.986552 ], [ 17.649536, 50.046557 ], [ 17.556152, 50.362985 ], [ 16.869507, 50.471491 ], [ 16.721191, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.744038 ], [ 14.688721, 52.089633 ], [ 14.441528, 52.623060 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.122925, 53.755207 ], [ 14.804077, 54.049714 ], [ 16.364136, 54.511516 ], [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.698730, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.895996, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.653809, 54.581613 ], [ 22.758179, 54.854478 ], [ 22.500000, 54.949231 ], [ 22.318726, 55.015426 ], [ 21.269531, 55.188277 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.567383, 46.502173 ], [ 16.885986, 46.381044 ], [ 17.633057, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.555908, 45.081279 ], [ 17.863770, 45.065762 ], [ 17.001343, 45.232349 ], [ 16.534424, 45.209134 ], [ 16.320190, 45.003651 ], [ 15.963135, 45.232349 ], [ 15.748901, 44.816916 ], [ 16.243286, 44.351350 ], [ 16.457520, 44.040219 ], [ 16.918945, 43.667872 ], [ 17.297974, 43.444943 ], [ 17.677002, 43.028745 ], [ 18.561401, 42.650122 ], [ 18.451538, 42.480200 ], [ 17.512207, 42.847779 ], [ 16.929932, 43.209180 ], [ 16.018066, 43.504737 ], [ 15.177612, 44.241264 ], [ 15.375366, 44.315988 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.073521 ], [ 14.260254, 45.232349 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.135555 ], [ 13.683472, 45.483244 ], [ 13.716431, 45.498647 ], [ 14.414062, 45.463983 ], [ 14.595337, 45.633246 ], [ 14.935913, 45.471688 ], [ 15.331421, 45.452424 ], [ 15.325928, 45.729191 ], [ 15.671997, 45.832627 ], [ 15.770874, 46.236853 ], [ 16.567383, 46.502173 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 47.993598 ], [ 22.939453, 43.830564 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.478027, 44.406316 ], [ 22.500000, 44.425934 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.699898 ], [ 22.148438, 44.476911 ], [ 21.560669, 44.766237 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.991494 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.714233, 47.879513 ], [ 22.939453, 47.993598 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.418091, 49.428840 ], [ 20.890503, 49.328702 ], [ 21.610107, 49.468124 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.088013, 48.421910 ], [ 22.500000, 48.217353 ], [ 22.642822, 48.147763 ], [ 22.714233, 47.879513 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.991494 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 20.764160, 45.733025 ], [ 20.874023, 45.413876 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.766237 ], [ 22.148438, 44.476911 ], [ 22.461548, 44.699898 ], [ 22.500000, 44.680372 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.478027, 44.406316 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.412109, 44.008620 ], [ 22.500000, 43.640051 ], [ 22.939453, 43.253205 ], [ 22.939453, 43.173135 ], [ 22.604370, 42.896089 ], [ 22.500000, 42.698586 ], [ 22.439575, 42.577355 ], [ 22.500000, 42.508552 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.384644, 42.317939 ], [ 22.500000, 42.244785 ], [ 22.884521, 41.996243 ], [ 22.939453, 41.463312 ], [ 22.939453, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.055054, 41.149706 ], [ 21.758423, 40.979898 ], [ 21.676025, 40.930115 ], [ 21.022339, 40.842905 ], [ 21.005859, 40.647304 ], [ 19.335938, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.407349, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.165649, 41.955405 ], [ 18.885498, 42.281373 ], [ 18.451538, 42.480200 ], [ 18.561401, 42.650122 ], [ 17.677002, 43.028745 ], [ 17.297974, 43.444943 ], [ 16.918945, 43.667872 ], [ 16.457520, 44.040219 ], [ 16.243286, 44.351350 ], [ 15.748901, 44.816916 ], [ 15.963135, 45.232349 ], [ 16.320190, 45.003651 ], [ 16.534424, 45.209134 ], [ 17.001343, 45.232349 ], [ 17.863770, 45.065762 ], [ 18.555908, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.633057, 45.951150 ], [ 16.885986, 46.381044 ], [ 16.567383, 46.502173 ], [ 16.369629, 46.841407 ], [ 16.204834, 46.852678 ], [ 16.534424, 47.494937 ], [ 16.342163, 47.713458 ], [ 16.902466, 47.713458 ], [ 16.979370, 48.122101 ], [ 16.880493, 48.469279 ], [ 17.105713, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.900838 ], [ 17.913208, 48.994636 ], [ 18.105469, 49.041469 ], [ 18.171387, 49.271389 ], [ 18.402100, 49.314380 ], [ 18.555908, 49.493107 ], [ 18.852539, 49.496675 ], [ 18.912964, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.463312 ], [ 22.884521, 41.996243 ], [ 22.500000, 42.244785 ], [ 22.384644, 42.317939 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.508552 ], [ 22.439575, 42.577355 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.896089 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 43.253205 ], [ 22.500000, 43.640051 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.939453, 43.830564 ], [ 22.939453, 43.253205 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 56.022948 ], [ 22.939453, 54.284469 ], [ 22.730713, 54.326135 ], [ 22.653809, 54.581613 ], [ 22.758179, 54.854478 ], [ 22.500000, 54.949231 ], [ 22.318726, 55.015426 ], [ 21.269531, 55.188277 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.022948 ], [ 22.939453, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 49.862776 ], [ 22.939453, 47.993598 ], [ 22.714233, 47.879513 ], [ 22.642822, 48.147763 ], [ 22.500000, 48.217353 ], [ 22.088013, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.780151, 49.027063 ], [ 22.521973, 49.475263 ], [ 22.939453, 49.862776 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.703125, 42.795401 ], [ 1.829224, 42.342305 ], [ 2.988281, 42.472097 ], [ 3.043213, 41.890010 ], [ 2.092896, 41.224118 ], [ 0.812988, 41.013066 ], [ 0.802002, 40.979898 ], [ 0.725098, 40.676472 ], [ 0.686646, 40.647304 ], [ -0.439453, 40.647304 ], [ -0.439453, 42.771211 ], [ 0.000000, 42.662241 ], [ 0.340576, 42.577355 ], [ 0.703125, 42.795401 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.939453, 43.173135 ], [ 22.939453, 41.463312 ], [ 22.884521, 41.996243 ], [ 22.500000, 42.244785 ], [ 22.384644, 42.317939 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.508552 ], [ 22.439575, 42.577355 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.896089 ], [ 22.939453, 43.173135 ] ] ], [ [ [ 22.939453, 47.993598 ], [ 22.939453, 43.253205 ], [ 22.500000, 43.640051 ], [ 22.412109, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.478027, 44.406316 ], [ 22.500000, 44.425934 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.461548, 44.699898 ], [ 22.148438, 44.476911 ], [ 21.560669, 44.766237 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.413876 ], [ 20.764160, 45.733025 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.991494 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.714233, 47.879513 ], [ 22.939453, 47.993598 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 21.005859, 40.647304 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.939453, 41.335576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.686473 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.286255, 42.317939 ], [ 20.522461, 42.216314 ], [ 20.593872, 41.853196 ], [ 20.462036, 41.512691 ], [ 20.604858, 41.083492 ], [ 20.786133, 40.979898 ], [ 21.022339, 40.842905 ], [ 21.676025, 40.930115 ], [ 21.758423, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.133159 ], [ 22.598877, 41.129021 ], [ 22.763672, 41.302571 ], [ 22.939453, 41.335576 ], [ 22.939453, 40.647304 ], [ 19.335938, 40.647304 ], [ 19.319458, 40.726446 ], [ 19.352417, 40.979898 ], [ 19.407349, 41.409776 ], [ 19.539185, 41.718030 ], [ 19.374390, 41.877741 ], [ 19.308472, 42.195969 ], [ 19.736938, 42.686473 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.188277 ], [ 22.318726, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.854478 ], [ 22.653809, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 20.895996, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.890747, 54.863963 ], [ 21.269531, 55.188277 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.186890, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.628784, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.030273, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.634277, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.127055 ], [ 12.579346, 64.064993 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.785828 ], [ 15.111694, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.551147, 66.687784 ], [ 15.391846, 66.513260 ], [ 15.111694, 66.193792 ], [ 13.557129, 64.785828 ], [ 13.919678, 64.444372 ], [ 13.573608, 64.048171 ], [ 12.579346, 64.064993 ], [ 11.931152, 63.127055 ], [ 11.991577, 61.799093 ], [ 12.634277, 61.293988 ], [ 12.299194, 60.116882 ], [ 11.469727, 59.431110 ], [ 11.030273, 58.856383 ], [ 10.360107, 59.470199 ], [ 8.382568, 58.312374 ], [ 7.047729, 58.077876 ], [ 5.668945, 58.588299 ], [ 5.311890, 59.662192 ], [ 4.993286, 61.969943 ], [ 5.916138, 62.613562 ], [ 8.552856, 63.452964 ], [ 10.530396, 64.484627 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.342896, 66.687784 ], [ 15.551147, 66.687784 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.628784, 55.528631 ], [ 10.986328, 55.528631 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 12.370605, 56.111873 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.213660 ], [ 10.250244, 56.888003 ], [ 10.371094, 56.607885 ], [ 10.914917, 56.456420 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.188368 ], [ 9.953613, 55.776573 ], [ 9.706421, 55.528631 ], [ 8.118896, 55.528631 ], [ 8.113403, 55.776573 ], [ 8.091431, 56.538287 ], [ 8.256226, 56.809901 ], [ 8.547363, 57.109402 ], [ 9.426270, 57.171992 ], [ 9.777832, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.527466, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.527466, 57.754007 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 66.687784 ], [ 22.939453, 65.847768 ], [ 22.500000, 65.775744 ], [ 22.186890, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.780884, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.122192, 61.341444 ], [ 17.830811, 60.635490 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.952841 ], [ 16.831055, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.102683 ], [ 14.666748, 56.200593 ], [ 14.364624, 55.776573 ], [ 14.188843, 55.528631 ], [ 12.886963, 55.528631 ], [ 12.804565, 55.776573 ], [ 12.628784, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.030273, 58.856383 ], [ 11.469727, 59.431110 ], [ 12.299194, 60.116882 ], [ 12.634277, 61.293988 ], [ 11.991577, 61.799093 ], [ 11.931152, 63.127055 ], [ 12.579346, 64.064993 ], [ 13.573608, 64.048171 ], [ 13.919678, 64.444372 ], [ 13.557129, 64.785828 ], [ 15.111694, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.551147, 66.687784 ], [ 22.939453, 66.687784 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.939453, 64.057785 ], [ 22.939453, 59.855851 ], [ 22.873535, 59.844815 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.324463, 60.718885 ], [ 21.544189, 61.705499 ], [ 21.060791, 62.605981 ], [ 21.538696, 63.189064 ], [ 22.445068, 63.816440 ], [ 22.500000, 63.845512 ], [ 22.939453, 64.057785 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.527466, 57.754007 ], [ 22.939453, 57.365052 ], [ 22.939453, 56.310443 ], [ 22.500000, 56.325675 ], [ 22.203369, 56.337856 ], [ 21.055298, 56.029087 ], [ 21.093750, 56.782827 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.527466, 57.754007 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.203369, 56.337856 ], [ 22.500000, 56.325675 ], [ 22.939453, 56.310443 ], [ 22.939453, 55.528631 ], [ 21.181641, 55.528631 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.029087 ], [ 22.203369, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.648804, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.238037, 66.337505 ], [ 15.391846, 66.513260 ], [ 16.111450, 67.301737 ], [ 16.770630, 68.013742 ], [ 17.731934, 68.009628 ], [ 17.995605, 68.566406 ], [ 19.879761, 68.407268 ], [ 20.028076, 69.064638 ], [ 20.648804, 69.105818 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.253885 ], [ 22.500000, 70.218593 ], [ 22.939453, 70.203715 ], [ 22.939453, 68.863517 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 21.247559, 69.370638 ], [ 20.648804, 69.105818 ], [ 20.028076, 69.064638 ], [ 19.879761, 68.407268 ], [ 17.995605, 68.566406 ], [ 17.731934, 68.009628 ], [ 16.770630, 68.013742 ], [ 15.391846, 66.513260 ], [ 15.238037, 66.337505 ], [ 12.914429, 66.337505 ], [ 13.128662, 66.513260 ], [ 14.760132, 67.809245 ], [ 16.435547, 68.562391 ], [ 19.187622, 69.816891 ], [ 21.379395, 70.253885 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.648804, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.939453, 68.200133 ], [ 22.939453, 66.337505 ], [ 15.238037, 66.337505 ], [ 15.391846, 66.513260 ], [ 16.111450, 67.301737 ], [ 16.770630, 68.013742 ], [ 17.731934, 68.009628 ], [ 17.995605, 68.566406 ], [ 19.879761, 68.407268 ], [ 20.028076, 69.064638 ], [ 20.648804, 69.105818 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.247559, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 22.939453, 68.863517 ], [ 22.939453, 68.200133 ], [ 22.500000, 68.391090 ], [ 21.978149, 68.616534 ], [ 20.648804, 69.105818 ], [ 21.247559, 69.370638 ] ] ] } } ] } ] } @@ -1667,13 +1641,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.662842, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.090730 ], [ 28.020630, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.790161, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.393661 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.582397, -25.982737 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.283565 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.854858, -21.534847 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.662842, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.637005 ], [ 28.267822, -21.534847 ], [ 31.854858, -21.534847 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.271606, -21.534847 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.535278, -23.069624 ], [ 35.370483, -23.538809 ], [ 35.606689, -23.709924 ], [ 35.458374, -24.121689 ], [ 35.040894, -24.477150 ], [ 34.216919, -24.816654 ], [ 33.013916, -25.358919 ], [ 32.574463, -25.730633 ], [ 32.662354, -26.150507 ], [ 32.915039, -26.219519 ], [ 32.832642, -26.745610 ], [ 32.074585, -26.735799 ], [ 31.986694, -26.293415 ], [ 31.838379, -25.844393 ], [ 31.755981, -25.487910 ], [ 31.931763, -24.372117 ], [ 31.673584, -23.659619 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 31.854858, -21.534847 ], [ 35.271606, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.273847 ], [ 30.662842, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.673584, -23.659619 ], [ 31.931763, -24.372117 ], [ 31.755981, -25.487910 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.074585, -26.735799 ], [ 32.832642, -26.745610 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.206421, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.904541, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.058594, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.669497 ], [ 25.779419, -33.947917 ], [ 25.175171, -33.797409 ], [ 24.680786, -33.988918 ], [ 23.593140, -33.797409 ], [ 22.988892, -33.916013 ], [ 22.576904, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.283565 ], [ 22.500000, -26.032106 ], [ 22.582397, -25.982737 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.790161, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.020630, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.854296 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.878755 ], [ 27.751465, -30.647364 ], [ 28.108521, -30.548070 ], [ 28.289795, -30.225848 ], [ 28.850098, -30.069094 ], [ 29.020386, -29.745302 ], [ 29.328003, -29.257649 ], [ 28.981934, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.267822, -21.534847 ], [ 28.795166, -21.637005 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.020630, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.790161, -24.241956 ], [ 26.488037, -24.617057 ], [ 25.944214, -24.696934 ], [ 25.768433, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.026855, -25.720735 ], [ 24.213867, -25.671236 ], [ 23.735962, -25.393661 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.502785 ], [ 22.582397, -25.982737 ], [ 22.500000, -26.032106 ], [ 22.104492, -26.283565 ], [ 22.060547, -26.322960 ], [ 22.060547, -21.534847 ], [ 28.267822, -21.534847 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Lesotho", "sov_a3": "LSO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lesotho", "adm0_a3": "LSO", "geou_dif": 0, "geounit": "Lesotho", "gu_a3": "LSO", "su_dif": 0, "subunit": "Lesotho", "su_a3": "LSO", "brk_diff": 0, "name": "Lesotho", "name_long": "Lesotho", "brk_a3": "LSO", "brk_name": "Lesotho", "abbrev": "Les.", "postal": "LS", "formal_en": "Kingdom of Lesotho", "name_sort": "Lesotho", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 2130819, "gdp_md_est": 3293, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LS", "iso_a3": "LSO", "iso_n3": "426", "un_a3": "426", "wb_a2": "LS", "wb_a3": "LSO", "woe_id": -99, "adm0_a3_is": "LSO", "adm0_a3_us": "LSO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.542480, -28.647210 ], [ 28.981934, -28.955282 ], [ 29.328003, -29.257649 ], [ 29.020386, -29.745302 ], [ 28.850098, -30.069094 ], [ 28.289795, -30.225848 ], [ 28.108521, -30.548070 ], [ 27.751465, -30.647364 ], [ 26.998901, -29.878755 ], [ 27.531738, -29.243270 ], [ 28.075562, -28.854296 ], [ 28.542480, -28.647210 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.273847 ], [ 30.662842, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.673584, -23.659619 ], [ 31.931763, -24.372117 ], [ 31.755981, -25.487910 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.293415 ], [ 32.074585, -26.735799 ], [ 32.832642, -26.745610 ], [ 32.579956, -27.469287 ], [ 32.464600, -28.304381 ], [ 32.206421, -28.753213 ], [ 31.327515, -29.401320 ], [ 30.904541, -29.912091 ], [ 30.624390, -30.424993 ], [ 30.058594, -31.142305 ], [ 28.927002, -32.170963 ], [ 28.218384, -32.773419 ], [ 27.465820, -33.229498 ], [ 26.422119, -33.614619 ], [ 25.911255, -33.669497 ], [ 25.779419, -33.947917 ], [ 25.175171, -33.797409 ], [ 24.680786, -33.988918 ], [ 23.593140, -33.797409 ], [ 22.988892, -33.916013 ], [ 22.576904, -33.865854 ], [ 22.500000, -33.893217 ], [ 22.060547, -34.061761 ], [ 22.060547, -26.322960 ], [ 22.104492, -26.283565 ], [ 22.500000, -26.032106 ], [ 22.582397, -25.982737 ], [ 22.824097, -25.502785 ], [ 23.312988, -25.269536 ], [ 23.735962, -25.393661 ], [ 24.213867, -25.671236 ], [ 25.026855, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.768433, -25.175117 ], [ 25.944214, -24.696934 ], [ 26.488037, -24.617057 ], [ 26.790161, -24.241956 ], [ 27.119751, -23.574057 ], [ 28.020630, -22.826820 ], [ 29.432373, -22.090730 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -21.534847 ], [ 45.439453, -25.587040 ], [ 45.411987, -25.601902 ], [ 45.000000, -25.418470 ], [ 44.038696, -24.991037 ], [ 43.764038, -24.462151 ], [ 43.698120, -23.574057 ], [ 43.346558, -22.776182 ], [ 43.253174, -22.060187 ], [ 43.280640, -21.943046 ], [ 43.385010, -21.534847 ], [ 45.439453, -21.534847 ] ] ] } } ] } @@ -1681,8 +1655,6 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.822388, -0.208740 ], [ 29.591675, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.295044, -1.620267 ], [ 29.256592, -2.218684 ], [ 29.119263, -2.295528 ], [ 29.025879, -2.838804 ], [ 29.278564, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.349731, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.797457 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.937988, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.334639 ], [ 24.785156, -11.237674 ], [ 24.318237, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.930405 ], [ 23.455811, -10.871070 ], [ 22.840576, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.898510 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.129028, 0.439449 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.903809, -0.950274 ], [ 31.865845, -1.027167 ], [ 30.772705, -1.016182 ], [ 30.421143, -1.137010 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.591675, -0.587758 ], [ 29.822388, -0.208740 ], [ 29.833374, 0.000000 ], [ 29.866333, 0.439449 ], [ 34.129028, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.989990, 0.439449 ], [ 40.989990, 0.000000 ], [ 40.995483, -0.862394 ], [ 41.588745, -1.686158 ], [ 40.885620, -2.081451 ], [ 40.638428, -2.498597 ], [ 40.264893, -2.575426 ], [ 40.122070, -3.277630 ], [ 39.803467, -3.683373 ], [ 39.605713, -4.346411 ], [ 39.204712, -4.680455 ], [ 37.770996, -3.677892 ], [ 37.699585, -3.096636 ], [ 34.074097, -1.060120 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.129028, 0.439449 ], [ 40.989990, 0.439449 ] ] ] } } @@ -1693,16 +1665,20 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.298199 ], [ 24.686279, -17.355882 ], [ 25.076294, -17.581194 ], [ 25.087280, -17.664960 ], [ 24.521484, -17.889887 ], [ 24.219360, -17.889887 ], [ 23.582153, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.025751 ], [ 22.060547, -18.124971 ], [ 22.060547, -17.780074 ], [ 22.500000, -17.680662 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.298199 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.204712, -4.680455 ], [ 38.743286, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.488672 ], [ 39.539795, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.319824, -10.320324 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.831421, -11.270000 ], [ 37.474365, -11.571525 ], [ 36.776733, -11.598432 ], [ 36.513062, -11.722167 ], [ 35.315552, -11.442339 ], [ 34.562988, -11.523088 ], [ 34.282837, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.195435, -8.933914 ], [ 31.558228, -8.765653 ], [ 31.157227, -8.597316 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.278564, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.119263, -2.295528 ], [ 29.256592, -2.218684 ], [ 29.295044, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.421143, -1.137010 ], [ 30.772705, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.866333, 0.439449 ], [ 29.833374, 0.000000 ], [ 29.822388, -0.208740 ], [ 29.591675, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.421143, -1.137010 ], [ 30.816650, -1.702630 ], [ 30.761719, -2.290039 ], [ 30.470581, -2.416276 ], [ 30.531006, -2.811371 ], [ 30.745239, -3.036298 ], [ 30.756226, -3.359889 ], [ 30.509033, -3.568248 ], [ 30.119019, -4.088932 ], [ 29.756470, -4.455951 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.421387, -5.943900 ], [ 29.619141, -6.522730 ], [ 30.201416, -7.079088 ], [ 30.739746, -8.341953 ], [ 30.349731, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.167179 ], [ 28.674316, -9.606166 ], [ 28.498535, -10.790141 ], [ 28.372192, -11.797457 ], [ 28.641357, -11.974845 ], [ 29.344482, -12.361466 ], [ 29.619141, -12.178965 ], [ 29.701538, -13.255986 ], [ 28.937988, -13.250640 ], [ 28.526001, -12.699292 ], [ 28.157959, -12.275599 ], [ 27.388916, -12.136005 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.926478 ], [ 25.751953, -11.786703 ], [ 25.416870, -11.334639 ], [ 24.785156, -11.237674 ], [ 24.318237, -11.264612 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.930405 ], [ 23.455811, -10.871070 ], [ 22.840576, -11.016689 ], [ 22.500000, -10.995120 ], [ 22.401123, -10.995120 ], [ 22.153931, -11.086775 ], [ 22.208862, -9.898510 ], [ 22.060547, -9.730714 ], [ 22.060547, 0.439449 ], [ 29.866333, 0.439449 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.349731, -8.238674 ], [ 30.739746, -8.341953 ], [ 31.157227, -8.597316 ], [ 31.558228, -8.765653 ], [ 32.195435, -8.933914 ], [ 32.761230, -9.232249 ], [ 33.233643, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.118286, -11.609193 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.689819, -13.715372 ], [ 33.217163, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.278320, -15.506619 ], [ 29.520264, -15.644197 ], [ 28.948975, -16.045813 ], [ 28.828125, -16.388661 ], [ 28.471069, -16.467695 ], [ 27.597656, -17.292954 ], [ 27.048340, -17.936929 ], [ 26.707764, -17.963058 ], [ 26.383667, -17.848061 ], [ 25.263062, -17.738223 ], [ 25.087280, -17.664960 ], [ 25.076294, -17.581194 ], [ 24.686279, -17.355882 ], [ 24.032593, -17.298199 ], [ 23.214111, -17.523583 ], [ 22.565918, -16.899172 ], [ 22.500000, -16.820316 ], [ 22.060547, -16.288506 ], [ 22.060547, -12.897489 ], [ 22.500000, -12.902844 ], [ 24.016113, -12.913552 ], [ 23.933716, -12.565287 ], [ 24.082031, -12.195073 ], [ 23.906250, -11.722167 ], [ 24.021606, -11.237674 ], [ 23.911743, -10.930405 ], [ 24.257812, -10.951978 ], [ 24.318237, -11.264612 ], [ 24.785156, -11.237674 ], [ 25.416870, -11.334639 ], [ 25.751953, -11.786703 ], [ 26.553955, -11.926478 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.136005 ], [ 28.157959, -12.275599 ], [ 28.526001, -12.699292 ], [ 28.937988, -13.250640 ], [ 29.701538, -13.255986 ], [ 29.619141, -12.178965 ], [ 29.344482, -12.361466 ], [ 28.641357, -11.974845 ], [ 28.372192, -11.797457 ], [ 28.498535, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.167179 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.349731, -8.238674 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.854858, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.662842, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.090730 ], [ 28.932495, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.582153, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.889887 ], [ 25.087280, -17.664960 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.471069, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.278320, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.854858, -16.320139 ], [ 32.327271, -16.393931 ], [ 32.849121, -16.715124 ], [ 32.849121, -17.978733 ], [ 32.656860, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.662354, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.253513 ], [ 30.662842, -22.151796 ], [ 30.322266, -22.273847 ], [ 29.838867, -22.105999 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.642111 ], [ 28.020630, -21.488852 ], [ 27.729492, -20.853679 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.295590 ], [ 25.850830, -18.713894 ], [ 25.653076, -18.536909 ], [ 25.263062, -17.738223 ], [ 26.383667, -17.848061 ], [ 26.707764, -17.963058 ], [ 27.048340, -17.936929 ], [ 27.597656, -17.292954 ], [ 28.471069, -16.467695 ], [ 28.828125, -16.388661 ], [ 28.948975, -16.045813 ], [ 29.520264, -15.644197 ], [ 30.278320, -15.506619 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 34.074097, -1.060120 ], [ 37.699585, -3.096636 ], [ 37.770996, -3.677892 ], [ 39.204712, -4.680455 ], [ 38.743286, -5.911117 ], [ 38.803711, -6.479067 ], [ 39.440918, -6.839170 ], [ 39.473877, -7.100893 ], [ 39.193726, -7.705548 ], [ 39.254150, -8.010276 ], [ 39.188232, -8.488672 ], [ 39.539795, -9.112945 ], [ 39.951782, -10.098670 ], [ 40.319824, -10.320324 ], [ 39.523315, -10.898042 ], [ 38.430176, -11.286161 ], [ 37.831421, -11.270000 ], [ 37.474365, -11.571525 ], [ 36.776733, -11.598432 ], [ 36.513062, -11.722167 ], [ 35.315552, -11.442339 ], [ 34.562988, -11.523088 ], [ 34.282837, -10.163560 ], [ 33.739014, -9.416548 ], [ 32.761230, -9.232249 ], [ 32.195435, -8.933914 ], [ 31.558228, -8.765653 ], [ 31.157227, -8.597316 ], [ 30.739746, -8.341953 ], [ 30.201416, -7.079088 ], [ 29.619141, -6.522730 ], [ 29.421387, -5.943900 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.756470, -4.455951 ], [ 30.119019, -4.088932 ], [ 30.509033, -3.568248 ], [ 30.756226, -3.359889 ], [ 30.745239, -3.036298 ], [ 30.531006, -2.811371 ], [ 30.470581, -2.416276 ], [ 30.761719, -2.290039 ], [ 30.816650, -1.702630 ], [ 30.421143, -1.137010 ], [ 30.772705, -1.016182 ], [ 31.865845, -1.027167 ], [ 33.903809, -0.950274 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.761230, -9.232249 ], [ 33.739014, -9.416548 ], [ 34.282837, -10.163560 ], [ 34.562988, -11.523088 ], [ 34.282837, -12.280966 ], [ 34.562988, -13.581921 ], [ 34.909058, -13.565902 ], [ 35.271606, -13.891411 ], [ 35.689087, -14.610163 ], [ 35.771484, -15.897942 ], [ 35.343018, -16.109153 ], [ 35.035400, -16.804541 ], [ 34.381714, -16.183024 ], [ 34.310303, -15.480151 ], [ 34.519043, -15.013769 ], [ 34.458618, -14.615478 ], [ 34.068604, -14.360191 ], [ 33.788452, -14.450639 ], [ 33.217163, -13.971385 ], [ 32.689819, -13.715372 ], [ 32.991943, -12.785018 ], [ 33.305054, -12.436577 ], [ 33.118286, -11.609193 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.233643, -9.676569 ], [ 32.761230, -9.232249 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.319824, -10.320324 ], [ 40.479126, -10.768556 ], [ 40.440674, -11.765192 ], [ 40.561523, -12.640338 ], [ 40.599976, -14.205814 ], [ 40.775757, -14.695195 ], [ 40.479126, -15.406024 ], [ 40.089111, -16.103876 ], [ 39.451904, -16.720385 ], [ 38.540039, -17.104043 ], [ 37.413940, -17.586431 ], [ 36.282349, -18.661859 ], [ 35.897827, -18.843913 ], [ 35.200195, -19.554614 ], [ 34.788208, -19.787380 ], [ 34.705811, -20.499064 ], [ 35.178223, -21.253542 ], [ 35.375977, -21.841105 ], [ 35.375977, -21.943046 ], [ 35.386963, -22.141620 ], [ 35.562744, -22.090730 ], [ 35.557251, -22.350076 ], [ 31.223145, -22.350076 ], [ 31.190186, -22.253513 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.662354, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.656860, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.849121, -16.715124 ], [ 32.327271, -16.393931 ], [ 31.854858, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.278320, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.217163, -13.971385 ], [ 33.788452, -14.450639 ], [ 34.068604, -14.360191 ], [ 34.458618, -14.615478 ], [ 34.519043, -15.013769 ], [ 34.310303, -15.480151 ], [ 34.381714, -16.183024 ], [ 35.035400, -16.804541 ], [ 35.343018, -16.109153 ], [ 35.771484, -15.897942 ], [ 35.689087, -14.610163 ], [ 35.271606, -13.891411 ], [ 34.909058, -13.565902 ], [ 34.562988, -13.581921 ], [ 34.282837, -12.280966 ], [ 34.562988, -11.523088 ], [ 35.315552, -11.442339 ], [ 36.513062, -11.722167 ], [ 36.776733, -11.598432 ], [ 37.474365, -11.571525 ], [ 37.831421, -11.270000 ], [ 38.430176, -11.286161 ], [ 39.523315, -10.898042 ], [ 40.319824, -10.320324 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.087280, -17.664960 ], [ 25.263062, -17.738223 ], [ 25.653076, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.295590 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.729492, -20.853679 ], [ 28.020630, -21.488852 ], [ 28.795166, -21.642111 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.932495, -22.350076 ], [ 22.060547, -22.350076 ], [ 22.060547, -18.124971 ], [ 22.500000, -18.025751 ], [ 23.197632, -17.868975 ], [ 23.582153, -18.281518 ], [ 24.219360, -17.889887 ], [ 24.521484, -17.889887 ], [ 25.087280, -17.664960 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.105999 ], [ 30.322266, -22.273847 ], [ 30.662842, -22.151796 ], [ 31.190186, -22.253513 ], [ 31.223145, -22.350076 ], [ 28.932495, -22.350076 ], [ 29.432373, -22.090730 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Madagascar", "sov_a3": "MDG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Madagascar", "adm0_a3": "MDG", "geou_dif": 0, "geounit": "Madagascar", "gu_a3": "MDG", "su_dif": 0, "subunit": "Madagascar", "su_a3": "MDG", "brk_diff": 0, "name": "Madagascar", "name_long": "Madagascar", "brk_a3": "MDG", "brk_name": "Madagascar", "abbrev": "Mad.", "postal": "MG", "formal_en": "Republic of Madagascar", "name_sort": "Madagascar", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 20653556, "gdp_md_est": 20130, "pop_year": -99, "lastcensus": 1993, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MG", "iso_a3": "MDG", "iso_n3": "450", "un_a3": "450", "wb_a2": "MG", "wb_a3": "MDG", "woe_id": -99, "adm0_a3_is": "MDG", "adm0_a3_us": "MDG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, -15.998295 ], [ 45.439453, -22.350076 ], [ 43.291626, -22.350076 ], [ 43.253174, -22.060187 ], [ 43.280640, -21.943046 ], [ 43.434448, -21.335432 ], [ 43.895874, -21.166484 ], [ 43.895874, -20.833144 ], [ 44.373779, -20.071411 ], [ 44.467163, -19.435514 ], [ 44.236450, -18.963442 ], [ 44.044189, -18.333669 ], [ 43.961792, -17.413546 ], [ 44.313354, -16.851862 ], [ 44.445190, -16.219949 ], [ 44.945068, -16.183024 ], [ 45.000000, -16.161921 ], [ 45.439453, -15.998295 ] ] ] } } @@ -1715,79 +1691,83 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.060547, 12.993853 ], [ 22.060547, 20.437308 ], [ 22.500000, 20.226120 ], [ 23.840332, 19.580493 ], [ 23.889771, 15.607166 ], [ 23.027344, 15.681221 ], [ 22.571411, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.104613 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.181396, 13.784737 ], [ 22.296753, 13.373588 ], [ 22.060547, 12.993853 ] ] ], [ [ [ 22.060547, 12.608176 ], [ 22.285767, 12.645698 ], [ 22.494507, 12.259496 ], [ 22.500000, 12.114523 ], [ 22.510986, 11.679135 ], [ 22.879028, 11.383109 ], [ 22.868042, 11.140677 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.968157 ], [ 22.060547, 10.833306 ], [ 22.060547, 12.608176 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.066162, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.072539 ], [ 42.269897, 17.471193 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.868042, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.560181, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.662488 ], [ 24.570923, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.975502 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.042847, 5.123772 ], [ 26.405640, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.401123, 4.028659 ], [ 22.060547, 4.116327 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.968157 ], [ 22.500000, 11.043647 ], [ 22.868042, 11.140677 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.502075, 22.350076 ], [ 36.694336, 22.207749 ], [ 36.870117, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.350076 ], [ 36.502075, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.413696, 17.994407 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.288506 ], [ 36.326294, 14.822681 ], [ 36.430664, 14.418720 ], [ 36.271362, 13.560562 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.260864, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.781751 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.822807 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.008179, 4.247812 ], [ 33.392944, 3.787522 ], [ 32.689819, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.377930, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.943900 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.975502 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.570923, 8.227801 ], [ 23.807373, 8.662488 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.560181, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.868042, 11.140677 ], [ 22.879028, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.114523 ], [ 22.494507, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.785505 ], [ 22.571411, 14.944785 ], [ 23.027344, 15.681221 ], [ 23.889771, 15.607166 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.870117, 21.999082 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.868042, 11.140677 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.087854 ], [ 23.560181, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.461304, 8.955619 ], [ 23.807373, 8.662488 ], [ 24.570923, 8.227801 ], [ 25.114746, 7.825289 ], [ 25.125732, 7.498643 ], [ 25.795898, 6.975502 ], [ 26.213379, 6.544560 ], [ 26.466064, 5.943900 ], [ 27.213135, 5.550381 ], [ 27.377930, 5.233187 ], [ 27.042847, 5.123772 ], [ 26.405640, 5.151128 ], [ 25.653076, 5.255068 ], [ 25.279541, 5.167541 ], [ 25.131226, 4.926779 ], [ 24.807129, 4.893941 ], [ 24.411621, 5.107358 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.707828 ], [ 22.703247, 4.631179 ], [ 22.500000, 4.220421 ], [ 22.401123, 4.028659 ], [ 22.060547, 4.116327 ], [ 22.060547, 10.833306 ], [ 22.230835, 10.968157 ], [ 22.500000, 11.043647 ], [ 22.868042, 11.140677 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 22.350076 ], [ 45.439453, 17.329664 ], [ 45.401001, 17.329664 ], [ 45.219727, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.066162, 17.408305 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.220215, 16.667769 ], [ 42.780762, 16.346497 ], [ 42.648926, 16.772987 ], [ 42.346802, 17.072539 ], [ 42.269897, 17.471193 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.803467, 20.339476 ], [ 39.138794, 21.289374 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.988895 ], [ 39.050903, 22.350076 ], [ 45.439453, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 25.653076, 5.255068 ], [ 26.405640, 5.151128 ], [ 27.042847, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.432617, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.845384 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.822388, -0.208740 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.116327 ], [ 22.401123, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.893941 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ], [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.737699 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.448395 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.538478 ], [ 42.000732, 12.098410 ], [ 41.665649, 11.630716 ], [ 41.742554, 11.356182 ], [ 41.759033, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.780762, 10.925011 ], [ 42.561035, 10.568822 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.681641, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.036227 ], [ 44.967041, 4.997922 ], [ 43.659668, 4.954142 ], [ 42.769775, 4.253290 ], [ 42.132568, 4.231378 ], [ 41.857910, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.253290 ], [ 39.858398, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.496972 ], [ 38.671875, 3.612107 ], [ 38.435669, 3.584695 ], [ 38.122559, 3.595660 ], [ 36.859131, 4.444997 ], [ 36.161499, 4.444997 ], [ 35.820923, 4.773521 ], [ 35.820923, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.822807 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.781751 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.260864, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.560562 ], [ 36.430664, 14.418720 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.117310, 19.808054 ], [ 37.485352, 18.615013 ], [ 38.413696, 17.994407 ], [ 37.902832, 17.424029 ], [ 37.166748, 17.261482 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.288506 ], [ 36.326294, 14.822681 ], [ 36.430664, 14.418720 ], [ 36.271362, 13.560562 ], [ 35.864868, 12.576010 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.733276, 10.908830 ], [ 34.260864, 10.628216 ], [ 33.964233, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.826904, 9.481572 ], [ 33.843384, 9.979671 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.090820, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.678833, 12.023203 ], [ 32.074585, 11.969471 ], [ 32.316284, 11.679135 ], [ 32.404175, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.354980, 9.806504 ], [ 30.838623, 9.703643 ], [ 29.998169, 10.287896 ], [ 29.619141, 10.082446 ], [ 29.514771, 9.790264 ], [ 29.003906, 9.600750 ], [ 28.965454, 9.394871 ], [ 27.971191, 9.394871 ], [ 27.833862, 9.600750 ], [ 27.114258, 9.638661 ], [ 26.751709, 9.465317 ], [ 26.477051, 9.552000 ], [ 25.966187, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.271681 ], [ 24.796143, 9.806504 ], [ 24.537964, 8.917634 ], [ 24.197388, 8.727648 ], [ 23.889771, 8.619041 ], [ 23.807373, 8.662488 ], [ 23.461304, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.560181, 9.681984 ], [ 23.554688, 10.087854 ], [ 22.977905, 10.714587 ], [ 22.868042, 11.140677 ], [ 22.879028, 11.383109 ], [ 22.510986, 11.679135 ], [ 22.500000, 12.114523 ], [ 22.494507, 12.259496 ], [ 22.285767, 12.645698 ], [ 22.060547, 12.608176 ], [ 22.060547, 12.993853 ], [ 22.296753, 13.373588 ], [ 22.181396, 13.784737 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.104613 ], [ 22.302246, 14.322937 ], [ 22.500000, 14.785505 ], [ 22.571411, 14.944785 ], [ 23.027344, 15.681221 ], [ 23.889771, 15.607166 ], [ 23.840332, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 36.870117, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.413696, 17.994407 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.182251, 14.487871 ], [ 41.737061, 13.918072 ], [ 42.280884, 13.341520 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.732924 ], [ 43.148804, 11.458491 ], [ 42.780762, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.759033, 11.049038 ], [ 41.742554, 11.356182 ], [ 41.665649, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.538478 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.448395 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.115267 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.737699 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.418720 ], [ 36.326294, 14.822681 ], [ 36.754761, 16.288506 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.424029 ], [ 38.413696, 17.994407 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.090820, 11.442339 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.843384, 9.979671 ], [ 33.826904, 9.481572 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.826904, 8.379997 ], [ 33.294067, 8.352823 ], [ 32.953491, 7.781751 ], [ 33.568726, 7.710992 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.822807 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.008179, 4.247812 ], [ 33.392944, 3.787522 ], [ 32.689819, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.171115 ], [ 29.718018, 4.598327 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.432617, 4.286158 ], [ 27.982178, 4.406660 ], [ 27.377930, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.943900 ], [ 26.213379, 6.544560 ], [ 25.795898, 6.975502 ], [ 25.125732, 7.498643 ], [ 25.114746, 7.825289 ], [ 24.570923, 8.227801 ], [ 23.889771, 8.619041 ], [ 24.197388, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.806504 ], [ 25.070801, 10.271681 ], [ 25.790405, 10.412183 ], [ 25.966187, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.465317 ], [ 27.114258, 9.638661 ], [ 27.833862, 9.600750 ], [ 27.971191, 9.394871 ], [ 28.965454, 9.394871 ], [ 29.003906, 9.600750 ], [ 29.514771, 9.790264 ], [ 29.619141, 10.082446 ], [ 29.998169, 10.287896 ], [ 30.838623, 9.703643 ], [ 31.354980, 9.806504 ], [ 31.849365, 10.531020 ], [ 32.404175, 11.081385 ], [ 32.316284, 11.679135 ], [ 32.074585, 11.969471 ], [ 32.678833, 12.023203 ], [ 32.744751, 12.248760 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.008179, 4.247812 ], [ 34.480591, 3.551800 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.175455 ], [ 34.183960, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.898315, -0.439449 ], [ 29.679565, -0.439449 ], [ 29.822388, -0.208740 ], [ 29.833374, 0.000000 ], [ 29.877319, 0.598744 ], [ 30.086060, 1.060120 ], [ 30.470581, 1.581830 ], [ 30.855103, 1.845384 ], [ 31.173706, 2.202216 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.689819, 3.793003 ], [ 33.392944, 3.787522 ], [ 34.008179, 4.247812 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.413696, 17.994407 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.919074 ], [ 39.814453, 15.432501 ], [ 41.182251, 14.487871 ], [ 41.737061, 13.918072 ], [ 42.280884, 13.341520 ], [ 42.588501, 12.999205 ], [ 43.082886, 12.699292 ], [ 43.319092, 12.388294 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.732924 ], [ 43.148804, 11.458491 ], [ 42.780762, 10.925011 ], [ 42.555542, 11.102947 ], [ 42.313843, 11.032864 ], [ 41.759033, 11.049038 ], [ 41.742554, 11.356182 ], [ 41.665649, 11.630716 ], [ 42.000732, 12.098410 ], [ 42.352295, 12.538478 ], [ 42.011719, 12.865360 ], [ 41.599731, 13.448395 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.115267 ], [ 40.028687, 14.519780 ], [ 39.342041, 14.530415 ], [ 39.100342, 14.737699 ], [ 38.512573, 14.503826 ], [ 37.908325, 14.960706 ], [ 37.595215, 14.211139 ], [ 36.430664, 14.418720 ], [ 36.326294, 14.822681 ], [ 36.754761, 16.288506 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.261482 ], [ 37.902832, 17.424029 ], [ 38.413696, 17.994407 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.820923, 5.337114 ], [ 35.820923, 4.773521 ], [ 36.161499, 4.444997 ], [ 36.859131, 4.444997 ], [ 38.122559, 3.595660 ], [ 38.435669, 3.584695 ], [ 38.671875, 3.612107 ], [ 38.891602, 3.496972 ], [ 39.561768, 3.420208 ], [ 39.858398, 3.836851 ], [ 40.770264, 4.253290 ], [ 41.171265, 3.919060 ], [ 41.857910, 3.919060 ], [ 40.984497, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.989990, -0.439449 ], [ 33.898315, -0.439449 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.183960, 0.516350 ], [ 34.672852, 1.175455 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.480591, 3.551800 ], [ 34.008179, 4.247812 ], [ 35.299072, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.966167 ], [ 45.000000, 1.669686 ], [ 44.071655, 1.049136 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.478638, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.984497, 2.783938 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.231378 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.954142 ], [ 44.967041, 4.997922 ], [ 45.000000, 5.036227 ], [ 45.439453, 5.506640 ] ] ], [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.219727, 17.434511 ], [ 45.401001, 17.329664 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.063426 ], [ 45.406494, 13.025966 ], [ 45.148315, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.225708, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.896118, 14.801439 ], [ 42.604980, 15.209988 ], [ 42.808228, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.908325, 14.960706 ], [ 38.512573, 14.503826 ], [ 39.100342, 14.737699 ], [ 39.342041, 14.530415 ], [ 40.028687, 14.519780 ], [ 40.896606, 14.115267 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.448395 ], [ 42.011719, 12.865360 ], [ 42.352295, 12.538478 ], [ 42.000732, 12.098410 ], [ 41.665649, 11.630716 ], [ 41.742554, 11.356182 ], [ 41.759033, 11.049038 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.102947 ], [ 42.780762, 10.925011 ], [ 42.561035, 10.568822 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.681641, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.439453, 8.542998 ], [ 45.439453, 5.506640 ], [ 45.000000, 5.036227 ], [ 44.967041, 4.997922 ], [ 43.659668, 4.954142 ], [ 42.769775, 4.253290 ], [ 42.132568, 4.231378 ], [ 41.857910, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.770264, 4.253290 ], [ 39.858398, 3.836851 ], [ 39.561768, 3.420208 ], [ 38.891602, 3.496972 ], [ 38.671875, 3.612107 ], [ 38.435669, 3.584695 ], [ 38.122559, 3.595660 ], [ 36.859131, 4.444997 ], [ 36.161499, 4.444997 ], [ 35.820923, 4.773521 ], [ 35.820923, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.822807 ], [ 34.074097, 7.226249 ], [ 33.568726, 7.710992 ], [ 32.953491, 7.781751 ], [ 33.294067, 8.352823 ], [ 33.826904, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.964233, 9.584501 ], [ 34.260864, 10.628216 ], [ 34.733276, 10.908830 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.576010 ], [ 36.271362, 13.560562 ], [ 36.430664, 14.418720 ], [ 37.595215, 14.211139 ], [ 37.908325, 14.960706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.066162, 17.408305 ], [ 45.000000, 17.429270 ], [ 45.219727, 17.434511 ], [ 45.401001, 17.329664 ], [ 45.439453, 17.329664 ], [ 45.439453, 13.063426 ], [ 45.406494, 13.025966 ], [ 45.148315, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.634978 ], [ 43.225708, 13.218556 ], [ 43.253174, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.896118, 14.801439 ], [ 42.604980, 15.209988 ], [ 42.808228, 15.262989 ], [ 42.703857, 15.718239 ], [ 42.824707, 15.908508 ], [ 42.780762, 16.346497 ], [ 43.220215, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.148804, 11.458491 ], [ 43.472900, 11.275387 ], [ 43.670654, 10.860281 ], [ 44.121094, 10.444598 ], [ 44.615479, 10.439196 ], [ 45.000000, 10.547221 ], [ 45.439453, 10.666006 ], [ 45.439453, 8.542998 ], [ 45.000000, 8.705929 ], [ 43.681641, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.561035, 10.568822 ], [ 42.780762, 10.925011 ], [ 43.148804, 11.458491 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.439453, 5.506640 ], [ 45.439453, 1.966167 ], [ 45.000000, 1.669686 ], [ 44.071655, 1.049136 ], [ 43.137817, 0.291136 ], [ 42.874146, 0.000000 ], [ 42.478638, -0.439449 ], [ 40.989990, -0.439449 ], [ 40.989990, 0.000000 ], [ 40.984497, 2.783938 ], [ 41.857910, 3.919060 ], [ 42.132568, 4.231378 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.954142 ], [ 44.967041, 4.997922 ], [ 45.000000, 5.036227 ], [ 45.439453, 5.506640 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.653076, 5.255068 ], [ 26.405640, 5.151128 ], [ 27.042847, 5.123772 ], [ 27.377930, 5.233187 ], [ 27.982178, 4.406660 ], [ 28.432617, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.718018, 4.598327 ], [ 29.954224, 4.171115 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.202216 ], [ 30.855103, 1.845384 ], [ 30.470581, 1.581830 ], [ 30.086060, 1.060120 ], [ 29.877319, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.822388, -0.208740 ], [ 29.679565, -0.439449 ], [ 22.060547, -0.439449 ], [ 22.060547, 4.116327 ], [ 22.401123, 4.028659 ], [ 22.500000, 4.220421 ], [ 22.703247, 4.631179 ], [ 22.840576, 4.707828 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.107358 ], [ 24.807129, 4.893941 ], [ 25.131226, 4.926779 ], [ 25.279541, 5.167541 ], [ 25.653076, 5.255068 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.927734, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.927734, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.796631, 41.310824 ], [ 22.763672, 41.306698 ], [ 22.598877, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 41.310824 ], [ 22.796631, 41.310824 ] ] ], [ [ [ 25.927734, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.043335, 41.310824 ], [ 25.927734, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 43.154297, 41.310824 ], [ 45.065918, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.703003, 35.701917 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.917467 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.277016 ], [ 23.703003, 35.701917 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.684804 ], [ 24.411621, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.043579, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.133159 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.927734, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 32.764181 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.189560 ], [ 23.609619, 32.184911 ], [ 23.928223, 32.017392 ], [ 24.922485, 31.896214 ], [ 25.164185, 31.569175 ], [ 24.801636, 31.085870 ], [ 24.960938, 30.661541 ], [ 24.702759, 30.045322 ], [ 24.999390, 29.238477 ], [ 24.999390, 21.534847 ], [ 22.060547, 21.534847 ], [ 22.060547, 32.764181 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.703003, 35.701917 ], [ 24.246826, 35.366656 ], [ 25.026855, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.746460, 35.178298 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.003003 ], [ 24.724731, 34.917467 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.277016 ], [ 23.703003, 35.701917 ] ] ], [ [ [ 26.477051, 41.310824 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.934265 ], [ 26.059570, 40.822124 ], [ 25.449829, 40.851216 ], [ 24.927979, 40.946714 ], [ 23.713989, 40.684804 ], [ 24.411621, 40.124291 ], [ 23.900757, 39.960280 ], [ 23.345947, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.254377 ], [ 22.851562, 39.656456 ], [ 23.351440, 39.189691 ], [ 22.972412, 38.967951 ], [ 23.532715, 38.509490 ], [ 24.027100, 38.220920 ], [ 24.043579, 37.653383 ], [ 23.115234, 37.918201 ], [ 23.411865, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.421282 ], [ 22.500000, 36.412442 ], [ 22.489014, 36.408021 ], [ 22.060547, 36.637570 ], [ 22.060547, 41.149706 ], [ 22.598877, 41.133159 ], [ 22.763672, 41.306698 ], [ 22.796631, 41.310824 ], [ 25.043335, 41.310824 ], [ 25.197144, 41.236511 ], [ 25.927734, 41.310824 ], [ 26.477051, 41.310824 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.579468, 35.670685 ], [ 33.903809, 35.245619 ], [ 34.008179, 34.976002 ], [ 32.980957, 34.569906 ], [ 32.492065, 34.700977 ], [ 32.255859, 35.101934 ], [ 32.733765, 35.137879 ], [ 32.805176, 35.142371 ], [ 32.947998, 35.384572 ], [ 33.667603, 35.371135 ], [ 34.579468, 35.670685 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.002197, 34.642247 ], [ 36.447144, 34.592520 ], [ 36.611938, 34.202716 ], [ 36.068115, 33.824794 ], [ 35.820923, 33.275435 ], [ 35.837402, 32.865746 ], [ 35.700073, 32.713355 ], [ 35.722046, 32.708733 ], [ 36.837158, 32.310349 ], [ 38.792725, 33.376412 ], [ 39.199219, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.339695 ], [ 37.507324, 30.002517 ], [ 36.743774, 29.864465 ], [ 36.502075, 29.501769 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.545771 ], [ 34.491577, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.077734 ], [ 35.128784, 33.091542 ], [ 35.485840, 33.902336 ], [ 36.002197, 34.642247 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.499023, 31.583215 ], [ 27.460327, 31.320794 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.470839 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.195435, 31.259770 ], [ 32.997437, 31.024694 ], [ 33.777466, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.925537, 29.501769 ], [ 34.645386, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.140259, 28.415560 ], [ 32.426147, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.030861 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.750154 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.202663 ], [ 36.870117, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.960938, 30.661541 ], [ 24.801636, 31.085870 ], [ 25.164185, 31.569175 ], [ 26.499023, 31.583215 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.401245, 40.002372 ], [ 44.796753, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.176145 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.886887 ], [ 39.199219, 32.161663 ], [ 38.792725, 33.376412 ], [ 36.837158, 32.310349 ], [ 35.700073, 32.713355 ], [ 35.837402, 32.865746 ], [ 35.820923, 33.275435 ], [ 36.068115, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.592520 ], [ 36.002197, 34.642247 ], [ 35.908813, 35.406961 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.796090 ], [ 34.030151, 36.217687 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.641978 ], [ 30.624390, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.417678 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.007446, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.361694, 40.149488 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 43.154297, 41.310824 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.659668, 40.254377 ], [ 44.401245, 40.002372 ], [ 44.796753, 39.711413 ], [ 44.110107, 39.427707 ], [ 44.423218, 38.281313 ], [ 44.225464, 37.970185 ], [ 44.774780, 37.169072 ], [ 44.296875, 37.002553 ], [ 43.945312, 37.256566 ], [ 42.780762, 37.383253 ], [ 42.352295, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.292114, 36.359375 ], [ 41.385498, 35.626047 ], [ 41.006470, 34.415973 ], [ 38.792725, 33.376412 ], [ 36.837158, 32.310349 ], [ 35.700073, 32.713355 ], [ 35.837402, 32.865746 ], [ 35.820923, 33.275435 ], [ 35.551758, 33.261657 ], [ 35.463867, 33.086939 ], [ 35.128784, 33.091542 ], [ 35.485840, 33.902336 ], [ 36.002197, 34.642247 ], [ 35.908813, 35.406961 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.562600 ], [ 34.716797, 36.796090 ], [ 34.030151, 36.217687 ], [ 32.508545, 36.106815 ], [ 31.701050, 36.641978 ], [ 30.624390, 36.677231 ], [ 30.393677, 36.261992 ], [ 29.701538, 36.142311 ], [ 28.734741, 36.677231 ], [ 27.641602, 36.659606 ], [ 27.048340, 37.653383 ], [ 26.317749, 38.207972 ], [ 26.806641, 38.985033 ], [ 26.169434, 39.461644 ], [ 27.279053, 40.417678 ], [ 28.822632, 40.459487 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 31.558228, 41.310824 ], [ 37.007446, 41.310824 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.104191 ], [ 40.374756, 41.013066 ], [ 41.044922, 41.310824 ], [ 43.154297, 41.310824 ] ] ], [ [ [ 28.959961, 41.310824 ], [ 28.987427, 41.302571 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 26.361694, 40.149488 ], [ 26.043091, 40.618122 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.477051, 41.310824 ], [ 28.959961, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.161663 ], [ 40.402222, 31.886887 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.176145 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.578510 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.282020 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.639648, 27.376645 ], [ 35.134277, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.603814 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.501769 ], [ 36.743774, 29.864465 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.339695 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.199219, 32.161663 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.988192 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.362549, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.302124, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.796753, 39.711413 ], [ 44.401245, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.499023, 31.583215 ], [ 27.460327, 31.320794 ], [ 28.454590, 31.024694 ], [ 28.916016, 30.869225 ], [ 29.685059, 31.184609 ], [ 30.097046, 31.470839 ], [ 30.975952, 31.555134 ], [ 31.690063, 31.428663 ], [ 31.959229, 30.930501 ], [ 32.195435, 31.259770 ], [ 32.997437, 31.024694 ], [ 33.777466, 30.968189 ], [ 34.266357, 31.217499 ], [ 34.925537, 29.501769 ], [ 34.645386, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.156494, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.140259, 28.415560 ], [ 32.426147, 29.850173 ], [ 32.321777, 29.759609 ], [ 32.733765, 28.705043 ], [ 33.348999, 27.698120 ], [ 34.107056, 26.140645 ], [ 34.475098, 25.596948 ], [ 34.793701, 25.030861 ], [ 35.694580, 23.926013 ], [ 35.496826, 23.750154 ], [ 35.529785, 23.099944 ], [ 36.694336, 22.202663 ], [ 36.870117, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 29.238477 ], [ 24.702759, 30.045322 ], [ 24.960938, 30.661541 ], [ 24.801636, 31.085870 ], [ 25.164185, 31.569175 ], [ 26.499023, 31.583215 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.780762, 37.383253 ], [ 43.945312, 37.256566 ], [ 44.296875, 37.002553 ], [ 44.774780, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 45.439453, 35.969115 ], [ 45.439453, 34.043557 ], [ 45.417480, 33.966142 ], [ 45.439453, 33.938803 ], [ 45.439453, 29.147364 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.176145 ], [ 41.890869, 31.189308 ], [ 40.402222, 31.886887 ], [ 39.199219, 32.161663 ], [ 38.792725, 33.376412 ], [ 41.006470, 34.415973 ], [ 41.385498, 35.626047 ], [ 41.292114, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.352295, 37.230328 ], [ 42.780762, 37.383253 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.376412 ], [ 39.199219, 32.161663 ], [ 39.006958, 32.008076 ], [ 37.001953, 31.508313 ], [ 38.001709, 30.505484 ], [ 37.672119, 30.339695 ], [ 37.507324, 30.002517 ], [ 36.743774, 29.864465 ], [ 36.502075, 29.501769 ], [ 36.068115, 29.195328 ], [ 34.958496, 29.353452 ], [ 34.925537, 29.501769 ], [ 34.266357, 31.217499 ], [ 34.557495, 31.545771 ], [ 34.491577, 31.606610 ], [ 34.755249, 32.073266 ], [ 34.958496, 32.824211 ], [ 35.101318, 33.077734 ], [ 35.128784, 33.091542 ], [ 35.463867, 33.086939 ], [ 35.551758, 33.261657 ], [ 35.820923, 33.275435 ], [ 35.837402, 32.865746 ], [ 35.700073, 32.713355 ], [ 35.722046, 32.708733 ], [ 36.837158, 32.310349 ], [ 38.792725, 33.376412 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.161663 ], [ 40.402222, 31.886887 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.176145 ], [ 45.000000, 29.166552 ], [ 45.439453, 29.147364 ], [ 45.439453, 21.534847 ], [ 39.100342, 21.534847 ], [ 39.028931, 21.943046 ], [ 39.023438, 21.983801 ], [ 39.067383, 22.578510 ], [ 38.496094, 23.684774 ], [ 38.023682, 24.076559 ], [ 37.485352, 24.282020 ], [ 37.155762, 24.856534 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.824617 ], [ 36.249390, 26.568877 ], [ 35.639648, 27.376645 ], [ 35.134277, 28.062286 ], [ 34.634399, 28.057439 ], [ 34.788208, 28.603814 ], [ 34.832153, 28.955282 ], [ 34.958496, 29.353452 ], [ 36.068115, 29.195328 ], [ 36.502075, 29.501769 ], [ 36.743774, 29.864465 ], [ 37.507324, 30.002517 ], [ 37.672119, 30.339695 ], [ 38.001709, 30.505484 ], [ 37.001953, 31.508313 ], [ 39.006958, 32.008076 ], [ 39.199219, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.870117, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.018433, 21.534847 ], [ 24.999390, 21.534847 ], [ 24.999390, 21.999082 ], [ 36.870117, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.302124, 39.470125 ], [ 45.439453, 39.474365 ], [ 45.439453, 38.891033 ], [ 45.000000, 39.291797 ], [ 44.956055, 39.334297 ], [ 44.796753, 39.711413 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.509623 ], [ 45.362549, 40.559721 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.988192 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.439453, 41.310824 ], [ 45.439453, 40.867834 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.988192 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.362549, 40.559721 ], [ 45.439453, 40.509623 ], [ 45.439453, 39.474365 ], [ 45.302124, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.796753, 39.711413 ], [ 44.401245, 40.002372 ], [ 43.659668, 40.254377 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 34.043557 ], [ 45.439453, 33.938803 ], [ 45.417480, 33.966142 ], [ 45.439453, 34.043557 ] ] ], [ [ [ 45.439453, 35.969115 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.774780, 37.169072 ], [ 44.225464, 37.970185 ], [ 44.423218, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.796753, 39.711413 ], [ 44.956055, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.439453, 38.891033 ], [ 45.439453, 35.969115 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 56.022948 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.773438, 56.022948 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.326135 ], [ 23.247070, 54.220285 ], [ 23.483276, 53.910810 ], [ 23.527222, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.801880, 52.689702 ], [ 23.203125, 52.486125 ], [ 23.510742, 52.022078 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.422519 ], [ 23.428345, 50.306884 ], [ 22.521973, 49.475263 ], [ 22.780151, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.285723 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 49.285723 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.082520, 48.421910 ], [ 22.500000, 48.217353 ], [ 22.642822, 48.147763 ], [ 22.714233, 47.879513 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 49.285723 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.456055, 44.699898 ], [ 22.500000, 44.680372 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.472534, 44.406316 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.640051 ], [ 22.988892, 43.209180 ], [ 22.604370, 42.896089 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.577355 ], [ 22.500000, 42.508552 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.317939 ], [ 22.500000, 42.244785 ], [ 22.884521, 41.996243 ], [ 22.955933, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.456055, 44.699898 ] ] ], [ [ [ 22.060547, 49.285723 ], [ 22.500000, 49.109838 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.030665 ], [ 22.280273, 48.824949 ], [ 22.082520, 48.421910 ], [ 22.500000, 48.217353 ], [ 22.642822, 48.147763 ], [ 22.714233, 47.879513 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 22.060547, 47.617273 ], [ 22.060547, 49.285723 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.456055, 44.699898 ], [ 22.500000, 44.680372 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.472534, 44.406316 ], [ 22.500000, 44.382766 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.091531 ], [ 22.406616, 44.008620 ], [ 22.500000, 43.640051 ], [ 22.988892, 43.209180 ], [ 22.604370, 42.896089 ], [ 22.500000, 42.698586 ], [ 22.434082, 42.577355 ], [ 22.500000, 42.508552 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.423457 ], [ 22.379150, 42.317939 ], [ 22.500000, 42.244785 ], [ 22.884521, 41.996243 ], [ 22.955933, 41.335576 ], [ 22.763672, 41.302571 ], [ 22.598877, 41.129021 ], [ 22.500000, 41.133159 ], [ 22.060547, 41.149706 ], [ 22.060547, 44.520010 ], [ 22.142944, 44.476911 ], [ 22.456055, 44.699898 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 56.022948 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.686035, 56.022948 ], [ 27.773438, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.508552 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.710696 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.432977 ], [ 38.682861, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.402307 ], [ 38.232422, 46.240652 ], [ 37.677612, 46.634351 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.260592 ], [ 38.226929, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.781533 ], [ 40.083618, 49.307217 ], [ 40.072632, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.359497, 50.576260 ], [ 35.381470, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.227905, 51.255040 ], [ 34.145508, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.755493, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.415161, 52.288323 ], [ 32.162476, 52.059246 ], [ 31.788940, 52.099757 ], [ 31.541748, 52.739618 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.130294 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.794434, 53.972243 ], [ 31.387939, 54.156001 ], [ 30.756226, 54.810183 ], [ 30.975952, 55.081512 ], [ 30.877075, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.844360, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.854478 ], [ 22.653809, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.844990 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.910810 ], [ 23.247070, 54.220285 ], [ 22.730713, 54.326135 ], [ 22.653809, 54.581613 ], [ 22.758179, 54.854478 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.789673, 56.022948 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.844360, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.877075, 55.550388 ], [ 30.975952, 55.081512 ], [ 30.756226, 54.810183 ], [ 31.387939, 54.156001 ], [ 31.794434, 53.972243 ], [ 31.734009, 53.794162 ], [ 32.409668, 53.618579 ], [ 32.695312, 53.350551 ], [ 32.305298, 53.130294 ], [ 31.497803, 53.166534 ], [ 31.305542, 53.074228 ], [ 31.541748, 52.739618 ], [ 31.788940, 52.099757 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.558472, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.256592, 51.368351 ], [ 28.992920, 51.600960 ], [ 28.619385, 51.426614 ], [ 28.240356, 51.570241 ], [ 27.454834, 51.590723 ], [ 26.339722, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.886664 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.577070 ], [ 23.510742, 52.022078 ], [ 23.203125, 52.486125 ], [ 23.801880, 52.689702 ], [ 23.807373, 53.087426 ], [ 23.527222, 53.468431 ], [ 23.483276, 53.910810 ], [ 24.450073, 53.904338 ], [ 25.537720, 54.281262 ], [ 25.768433, 54.844990 ], [ 26.586914, 55.166319 ], [ 26.493530, 55.615589 ], [ 27.081299, 55.776573 ], [ 27.773438, 56.022948 ], [ 28.789673, 56.022948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.686035, 56.022948 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.166319 ], [ 25.768433, 54.844990 ], [ 25.537720, 54.281262 ], [ 24.450073, 53.904338 ], [ 23.483276, 53.910810 ], [ 23.527222, 53.468431 ], [ 23.807373, 53.087426 ], [ 23.801880, 52.689702 ], [ 23.203125, 52.486125 ], [ 23.510742, 52.022078 ], [ 23.527222, 51.577070 ], [ 24.032593, 50.705156 ], [ 23.922729, 50.422519 ], [ 23.428345, 50.306884 ], [ 22.521973, 49.475263 ], [ 22.780151, 49.027063 ], [ 22.560425, 49.084660 ], [ 22.500000, 49.109838 ], [ 22.060547, 49.285723 ], [ 22.060547, 54.322931 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.326135 ], [ 22.653809, 54.581613 ], [ 22.758179, 54.854478 ], [ 22.500000, 54.949231 ], [ 22.313232, 55.015426 ], [ 22.060547, 55.059495 ], [ 22.060547, 56.022948 ], [ 25.686035, 56.022948 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.824220 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.163452, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.301939 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.630127, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.810747 ], [ 27.246094, 44.174325 ], [ 26.065063, 43.941417 ], [ 25.570679, 43.687736 ], [ 24.104004, 43.739352 ], [ 23.334961, 43.897892 ], [ 22.944946, 43.822638 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.406316 ], [ 22.500000, 44.425934 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.456055, 44.699898 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.714233, 47.879513 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.406128, 47.982568 ], [ 24.867554, 47.735629 ], [ 25.208130, 47.890564 ], [ 25.949707, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.755493, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.145508, 51.566827 ], [ 34.227905, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.381470, 50.774682 ], [ 35.359497, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.072632, 49.600030 ], [ 40.083618, 49.307217 ], [ 39.677124, 48.781533 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.226929, 47.100045 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.271037 ], [ 35.024414, 45.648608 ], [ 35.513306, 45.410020 ], [ 36.529541, 45.467836 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.937585 ], [ 33.881836, 44.359206 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.325117 ], [ 32.634888, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.679077, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.301939 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.594822 ], [ 28.663330, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.866577, 46.437857 ], [ 29.075317, 46.517296 ], [ 29.174194, 46.377254 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.672056 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.846344 ], [ 28.674316, 48.118434 ], [ 28.262329, 48.155093 ], [ 27.526245, 48.465637 ], [ 26.861572, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.949707, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.735629 ], [ 24.406128, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.714233, 47.879513 ], [ 22.642822, 48.147763 ], [ 22.500000, 48.217353 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.780151, 49.027063 ], [ 22.521973, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.422519 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.886664 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.558472, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.788940, 52.099757 ], [ 32.162476, 52.059246 ], [ 32.415161, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.755493, 52.335339 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.659302, 44.233393 ], [ 22.944946, 43.822638 ], [ 23.334961, 43.897892 ], [ 24.104004, 43.739352 ], [ 25.570679, 43.687736 ], [ 26.065063, 43.941417 ], [ 27.246094, 44.174325 ], [ 27.971191, 43.810747 ], [ 28.558960, 43.707594 ], [ 28.042603, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.004407 ], [ 27.136230, 42.138968 ], [ 26.119995, 41.824549 ], [ 26.109009, 41.327326 ], [ 25.197144, 41.232380 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.306698 ], [ 22.955933, 41.335576 ], [ 22.884521, 41.996243 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.317939 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.508552 ], [ 22.434082, 42.577355 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.896089 ], [ 22.988892, 43.209180 ], [ 22.500000, 43.640051 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ] ] ], [ [ [ 27.526245, 48.465637 ], [ 28.262329, 48.155093 ], [ 28.674316, 48.118434 ], [ 29.124756, 47.846344 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.672056 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.174194, 46.377254 ], [ 29.075317, 46.517296 ], [ 28.866577, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.663330, 45.939691 ], [ 28.487549, 45.594822 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.163452, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.824220 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.861572, 48.367198 ], [ 27.526245, 48.465637 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.927490, 48.122101 ], [ 27.235107, 47.824220 ], [ 27.553711, 47.405785 ], [ 28.130493, 46.811339 ], [ 28.163452, 46.369674 ], [ 28.053589, 45.943511 ], [ 28.234863, 45.487095 ], [ 28.679810, 45.301939 ], [ 29.152222, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.630127, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 28.042603, 43.293200 ], [ 27.674561, 42.577355 ], [ 27.998657, 42.004407 ], [ 27.136230, 42.138968 ], [ 26.119995, 41.824549 ], [ 26.109009, 41.327326 ], [ 25.197144, 41.232380 ], [ 24.494019, 41.582580 ], [ 23.692017, 41.306698 ], [ 22.955933, 41.335576 ], [ 22.884521, 41.996243 ], [ 22.500000, 42.244785 ], [ 22.379150, 42.317939 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.459940 ], [ 22.500000, 42.508552 ], [ 22.434082, 42.577355 ], [ 22.500000, 42.698586 ], [ 22.604370, 42.896089 ], [ 22.988892, 43.209180 ], [ 22.500000, 43.640051 ], [ 22.406616, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.659302, 44.233393 ], [ 22.500000, 44.382766 ], [ 22.472534, 44.406316 ], [ 22.500000, 44.425934 ], [ 22.708740, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.456055, 44.699898 ], [ 22.142944, 44.476911 ], [ 22.060547, 44.520010 ], [ 22.060547, 47.617273 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.714233, 47.879513 ], [ 23.142700, 48.096426 ], [ 23.763428, 47.986245 ], [ 24.406128, 47.982568 ], [ 24.867554, 47.735629 ], [ 25.208130, 47.890564 ], [ 25.949707, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.755493, 52.335339 ], [ 34.392700, 51.767840 ], [ 34.145508, 51.566827 ], [ 34.227905, 51.255040 ], [ 35.024414, 51.206883 ], [ 35.381470, 50.774682 ], [ 35.359497, 50.576260 ], [ 36.628418, 50.226124 ], [ 37.397461, 50.384005 ], [ 38.012695, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.072632, 49.600030 ], [ 40.083618, 49.307217 ], [ 39.677124, 48.781533 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.897931 ], [ 38.770752, 47.824220 ], [ 38.254395, 47.546872 ], [ 38.226929, 47.100045 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.826416, 46.645665 ], [ 34.963989, 46.271037 ], [ 35.024414, 45.648608 ], [ 35.513306, 45.410020 ], [ 36.529541, 45.467836 ], [ 36.337280, 45.112300 ], [ 35.238647, 44.937585 ], [ 33.881836, 44.359206 ], [ 33.327026, 44.563077 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.325117 ], [ 32.634888, 45.517895 ], [ 33.590698, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.331758 ], [ 31.679077, 46.705969 ], [ 30.750732, 46.581518 ], [ 30.377197, 46.031296 ], [ 29.602661, 45.294211 ], [ 29.152222, 45.463983 ], [ 28.679810, 45.301939 ], [ 28.234863, 45.487095 ], [ 28.487549, 45.594822 ], [ 28.663330, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.866577, 46.437857 ], [ 29.075317, 46.517296 ], [ 29.174194, 46.377254 ], [ 29.761963, 46.350719 ], [ 30.025635, 46.422713 ], [ 29.838867, 46.524855 ], [ 29.910278, 46.672056 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.053345, 47.509780 ], [ 29.124756, 47.846344 ], [ 28.674316, 48.118434 ], [ 28.262329, 48.155093 ], [ 27.526245, 48.465637 ], [ 26.861572, 48.367198 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.949707, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.735629 ], [ 24.406128, 47.982568 ], [ 23.763428, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.714233, 47.879513 ], [ 22.642822, 48.147763 ], [ 22.500000, 48.217353 ], [ 22.082520, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.030665 ], [ 22.560425, 49.084660 ], [ 22.780151, 49.027063 ], [ 22.521973, 49.475263 ], [ 23.428345, 50.306884 ], [ 23.922729, 50.422519 ], [ 24.032593, 50.705156 ], [ 23.527222, 51.577070 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.886664 ], [ 25.328979, 51.910391 ], [ 26.339722, 51.832383 ], [ 27.454834, 51.590723 ], [ 28.240356, 51.570241 ], [ 28.619385, 51.426614 ], [ 28.992920, 51.600960 ], [ 29.256592, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.558472, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.788940, 52.099757 ], [ 32.162476, 52.059246 ], [ 32.415161, 52.288323 ], [ 32.717285, 52.237892 ], [ 33.755493, 52.335339 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.526245, 48.465637 ], [ 28.262329, 48.155093 ], [ 28.674316, 48.118434 ], [ 29.124756, 47.846344 ], [ 29.053345, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.910278, 46.672056 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.422713 ], [ 29.761963, 46.350719 ], [ 29.174194, 46.377254 ], [ 29.075317, 46.517296 ], [ 28.866577, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.663330, 45.939691 ], [ 28.487549, 45.594822 ], [ 28.234863, 45.487095 ], [ 28.053589, 45.943511 ], [ 28.163452, 46.369674 ], [ 28.130493, 46.811339 ], [ 27.553711, 47.405785 ], [ 27.235107, 47.824220 ], [ 26.927490, 48.122101 ], [ 26.619873, 48.221013 ], [ 26.861572, 48.367198 ], [ 27.526245, 48.465637 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.924072, 43.381098 ], [ 42.396240, 43.221190 ], [ 43.758545, 42.738944 ], [ 43.934326, 42.553080 ], [ 44.538574, 42.710696 ], [ 45.000000, 42.609706 ], [ 45.439453, 42.508552 ], [ 45.439453, 41.327326 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.621460, 41.582580 ], [ 41.555786, 41.533254 ], [ 41.704102, 41.963575 ], [ 41.456909, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.325317, 43.129052 ], [ 39.957275, 43.432977 ], [ 40.078125, 43.552529 ] ] ] } } , @@ -1795,9 +1775,11 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.946714 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.100052 ], [ 40.374756, 41.013066 ], [ 41.555786, 41.533254 ], [ 42.621460, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.738933 ], [ 43.736572, 40.647304 ], [ 28.921509, 40.647304 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.734429 ], [ 33.513794, 42.016652 ], [ 35.167236, 42.041134 ] ] ], [ [ [ 27.136230, 42.138968 ], [ 27.998657, 42.004407 ], [ 28.119507, 41.623655 ], [ 28.987427, 41.298444 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.191162, 40.688969 ], [ 27.125244, 40.647304 ], [ 26.043091, 40.647304 ], [ 26.059570, 40.822124 ], [ 26.295776, 40.934265 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.119995, 41.824549 ], [ 27.136230, 42.138968 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.428467, 40.647304 ], [ 43.736572, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 40.659806 ], [ 45.439453, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.439453, 40.659806 ] ] ], [ [ [ 45.439453, 40.867834 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.439453, 41.327326 ], [ 45.439453, 40.867834 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.181274, 40.984045 ], [ 45.439453, 40.867834 ], [ 45.439453, 40.659806 ], [ 45.428467, 40.647304 ], [ 43.736572, 40.647304 ], [ 43.753052, 40.738933 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 56.022948 ], [ 45.439453, 42.508552 ], [ 45.000000, 42.609706 ], [ 44.538574, 42.710696 ], [ 43.934326, 42.553080 ], [ 43.758545, 42.738944 ], [ 42.396240, 43.221190 ], [ 40.924072, 43.381098 ], [ 40.078125, 43.552529 ], [ 39.957275, 43.432977 ], [ 38.682861, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.677856, 45.243953 ], [ 37.402954, 45.402307 ], [ 38.232422, 46.240652 ], [ 37.677612, 46.634351 ], [ 39.149780, 47.043926 ], [ 39.122314, 47.260592 ], [ 38.226929, 47.100045 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.824220 ], [ 39.737549, 47.897931 ], [ 39.896851, 48.231991 ], [ 39.677124, 48.781533 ], [ 40.083618, 49.307217 ], [ 40.072632, 49.600030 ], [ 38.594971, 49.926472 ], [ 38.012695, 49.915862 ], [ 37.397461, 50.384005 ], [ 36.628418, 50.226124 ], [ 35.359497, 50.576260 ], [ 35.381470, 50.774682 ], [ 35.024414, 51.206883 ], [ 34.227905, 51.255040 ], [ 34.145508, 51.566827 ], [ 34.392700, 51.767840 ], [ 33.755493, 52.335339 ], [ 32.717285, 52.237892 ], [ 32.415161, 52.288323 ], [ 32.162476, 52.059246 ], [ 31.788940, 52.099757 ], [ 31.541748, 52.739618 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.166534 ], [ 32.305298, 53.130294 ], [ 32.695312, 53.350551 ], [ 32.409668, 53.618579 ], [ 31.734009, 53.794162 ], [ 31.794434, 53.972243 ], [ 31.387939, 54.156001 ], [ 30.756226, 54.810183 ], [ 30.975952, 55.081512 ], [ 30.877075, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.844360, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.789673, 56.022948 ], [ 45.439453, 56.022948 ] ] ], [ [ [ 22.060547, 55.059495 ], [ 22.313232, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.854478 ], [ 22.653809, 54.581613 ], [ 22.730713, 54.326135 ], [ 22.500000, 54.326135 ], [ 22.060547, 54.322931 ], [ 22.060547, 55.059495 ] ] ] ] } } ] } ] } , @@ -1805,26 +1787,24 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.560181, 66.687784 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.906250, 66.006852 ], [ 22.500000, 65.775744 ], [ 22.181396, 65.723852 ], [ 22.060547, 65.635623 ], [ 22.060547, 66.687784 ], [ 23.560181, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.466064, 57.474497 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.179932, 56.166965 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.527466, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 25.164185, 57.970244 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.322510, 66.687784 ], [ 29.503784, 66.513260 ], [ 30.217896, 65.805028 ], [ 29.547729, 64.949139 ], [ 30.448608, 64.203987 ], [ 30.036621, 63.550999 ], [ 31.519775, 62.867674 ], [ 31.140747, 62.357256 ], [ 30.212402, 61.778319 ], [ 28.070068, 60.503230 ], [ 26.257324, 60.421988 ], [ 24.499512, 60.056616 ], [ 22.873535, 59.844815 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.060547, 60.470758 ], [ 22.060547, 63.555892 ], [ 22.439575, 63.816440 ], [ 22.500000, 63.845512 ], [ 24.730225, 64.902580 ], [ 25.400391, 65.111460 ], [ 25.296021, 65.533446 ], [ 23.906250, 66.006852 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.560181, 66.687784 ], [ 29.322510, 66.687784 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.877075, 55.528631 ], [ 30.877075, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.844360, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.179932, 56.166965 ], [ 27.855835, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.130493, 59.299552 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.026441 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.778319 ], [ 31.140747, 62.357256 ], [ 31.519775, 62.867674 ], [ 30.036621, 63.550999 ], [ 30.448608, 64.203987 ], [ 29.547729, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.503784, 66.513260 ], [ 29.322510, 66.687784 ], [ 33.502808, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.899410 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.413549 ], [ 36.232910, 64.108204 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.907593, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.017700, 66.264645 ], [ 38.386230, 65.997916 ], [ 35.375977, 66.513260 ], [ 34.343262, 66.687784 ], [ 40.907593, 66.687784 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.867310, 59.609433 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 27.773438, 57.243394 ], [ 27.855835, 56.758746 ], [ 28.179932, 56.166965 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.004883, 56.163906 ], [ 24.862061, 56.371335 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.325675 ], [ 22.197876, 56.337856 ], [ 22.060547, 56.301301 ], [ 22.060547, 57.586559 ], [ 22.500000, 57.745213 ], [ 22.527466, 57.754007 ], [ 23.318481, 57.004850 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.381559 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.611195 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.867310, 59.609433 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.867310, 59.609433 ], [ 26.949463, 59.445075 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.299552 ], [ 27.421875, 58.722599 ], [ 27.718506, 57.792089 ], [ 27.290039, 57.474497 ], [ 26.466064, 57.474497 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.792089 ], [ 24.428101, 58.381559 ], [ 24.060059, 58.257508 ], [ 23.428345, 58.611195 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.464617 ], [ 25.867310, 59.609433 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.179932, 56.166965 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.844360, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.948730, 55.776573 ], [ 30.877075, 55.550388 ], [ 30.877075, 55.528631 ], [ 26.510010, 55.528631 ], [ 26.493530, 55.615589 ], [ 27.081299, 55.776573 ], [ 28.179932, 56.166965 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.862061, 56.371335 ], [ 25.004883, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.510010, 55.528631 ], [ 22.060547, 55.528631 ], [ 22.060547, 56.301301 ], [ 22.197876, 56.337856 ], [ 22.500000, 56.325675 ], [ 23.878784, 56.273861 ], [ 24.862061, 56.371335 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.439453, 66.687784 ], [ 45.439453, 55.528631 ], [ 30.877075, 55.528631 ], [ 30.877075, 55.550388 ], [ 29.948730, 55.776573 ], [ 29.899292, 55.788929 ], [ 29.844360, 55.776573 ], [ 29.371948, 55.668291 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.179932, 56.166965 ], [ 27.855835, 56.758746 ], [ 27.773438, 57.243394 ], [ 27.290039, 57.474497 ], [ 27.718506, 57.792089 ], [ 27.421875, 58.722599 ], [ 28.130493, 59.299552 ], [ 27.982178, 59.475779 ], [ 29.119263, 60.026441 ], [ 28.070068, 60.503230 ], [ 30.212402, 61.778319 ], [ 31.140747, 62.357256 ], [ 31.519775, 62.867674 ], [ 30.036621, 63.550999 ], [ 30.448608, 64.203987 ], [ 29.547729, 64.949139 ], [ 30.217896, 65.805028 ], [ 29.503784, 66.513260 ], [ 29.322510, 66.687784 ], [ 33.502808, 66.687784 ], [ 33.184204, 66.633377 ], [ 33.453369, 66.513260 ], [ 34.815674, 65.899410 ], [ 34.881592, 65.435435 ], [ 34.947510, 64.413549 ], [ 36.232910, 64.108204 ], [ 37.012939, 63.850354 ], [ 37.144775, 64.335150 ], [ 36.540527, 64.764759 ], [ 37.177734, 65.141497 ], [ 39.594727, 64.520097 ], [ 40.435181, 64.764759 ], [ 39.765015, 65.497020 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.950806, 66.069318 ], [ 44.324341, 66.513260 ], [ 44.472656, 66.687784 ], [ 45.439453, 66.687784 ] ] ], [ [ [ 40.907593, 66.687784 ], [ 40.534058, 66.513260 ], [ 40.017700, 66.264645 ], [ 38.386230, 65.997916 ], [ 35.375977, 66.513260 ], [ 34.343262, 66.687784 ], [ 40.907593, 66.687784 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.580453 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.935460 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.580453 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.168945, 71.184211 ], [ 31.294556, 70.453346 ], [ 30.009155, 70.185103 ], [ 31.102295, 69.557553 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 29.014893, 69.765657 ], [ 27.734985, 70.164610 ], [ 26.180420, 69.824471 ], [ 25.691528, 69.092100 ], [ 24.735718, 68.648556 ], [ 23.664551, 68.891231 ], [ 22.500000, 68.847665 ], [ 22.357178, 68.841718 ], [ 22.060547, 68.984016 ], [ 22.060547, 70.233460 ], [ 22.500000, 70.218593 ], [ 23.027344, 70.201855 ], [ 24.548950, 71.029464 ], [ 26.372681, 70.986560 ], [ 28.168945, 71.184211 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.060547, 68.580453 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.935460 ], [ 23.565674, 66.513260 ], [ 23.565674, 66.394761 ], [ 23.615112, 66.337505 ], [ 22.060547, 66.337505 ], [ 22.060547, 68.580453 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.734985, 70.164610 ], [ 29.014893, 69.765657 ], [ 28.591919, 69.064638 ], [ 28.449097, 68.364776 ], [ 29.976196, 67.696941 ], [ 29.053345, 66.942972 ], [ 29.498291, 66.513260 ], [ 29.679565, 66.337505 ], [ 23.615112, 66.337505 ], [ 23.565674, 66.394761 ], [ 23.565674, 66.513260 ], [ 23.538208, 67.935460 ], [ 22.500000, 68.391090 ], [ 22.060547, 68.580453 ], [ 22.060547, 68.984016 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.847665 ], [ 23.664551, 68.891231 ], [ 24.735718, 68.648556 ], [ 25.691528, 69.092100 ], [ 26.180420, 69.824471 ], [ 27.734985, 70.164610 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 36.414185, 66.337505 ], [ 35.375977, 66.513260 ], [ 33.920288, 66.759418 ], [ 33.184204, 66.631198 ], [ 33.453369, 66.513260 ], [ 33.848877, 66.337505 ], [ 29.679565, 66.337505 ], [ 29.498291, 66.513260 ], [ 29.053345, 66.942972 ], [ 29.976196, 67.696941 ], [ 28.449097, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.557553 ], [ 32.135010, 69.905780 ], [ 33.777466, 69.300853 ], [ 36.513062, 69.062675 ], [ 40.292358, 67.931333 ], [ 41.061401, 67.455976 ], [ 41.127319, 66.791909 ], [ 40.534058, 66.513260 ], [ 40.166016, 66.337505 ], [ 36.414185, 66.337505 ] ] ], [ [ [ 41.759033, 66.337505 ], [ 42.094116, 66.476016 ], [ 43.016968, 66.418945 ], [ 43.236694, 66.337505 ], [ 41.759033, 66.337505 ] ] ], [ [ [ 44.176025, 66.337505 ], [ 44.324341, 66.513260 ], [ 44.533081, 66.755082 ], [ 43.698120, 67.352555 ], [ 44.187012, 67.949900 ], [ 43.456421, 68.570421 ], [ 45.000000, 68.393113 ], [ 45.439453, 68.342487 ], [ 45.439453, 66.337505 ], [ 44.176025, 66.337505 ] ] ] ] } } @@ -1893,63 +1873,67 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 8.863362 ], [ 45.000000, 8.705929 ], [ 46.950073, 7.993957 ], [ 47.790527, 7.999397 ], [ 45.000000, 5.036227 ], [ 44.961548, 4.997922 ], [ 44.560547, 4.986977 ], [ 44.560547, 8.863362 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.809570, 22.350076 ], [ 59.809570, 22.309426 ], [ 59.584351, 21.943046 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.035278, 20.478482 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.277710, 17.224758 ], [ 54.794312, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.704602 ], [ 53.107910, 16.651981 ], [ 52.003784, 18.999803 ], [ 55.003052, 19.999160 ], [ 55.651245, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.442505, 22.350076 ], [ 59.809570, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.003784, 18.999803 ], [ 53.107910, 16.651981 ], [ 52.388306, 16.383391 ], [ 52.190552, 15.934920 ], [ 52.168579, 15.596584 ], [ 51.174316, 15.172879 ], [ 49.575806, 14.705822 ], [ 48.680420, 14.003367 ], [ 48.240967, 13.944730 ], [ 47.938843, 14.003367 ], [ 47.356567, 13.592600 ], [ 46.719360, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.288065 ], [ 45.406494, 13.025966 ], [ 45.148315, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.560547, 12.715368 ], [ 44.560547, 17.418787 ], [ 45.219727, 17.434511 ], [ 45.401001, 17.329664 ], [ 46.367798, 17.230005 ], [ 46.752319, 17.282464 ], [ 46.999512, 16.946470 ], [ 47.466431, 17.114543 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 52.003784, 18.999803 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.800990 ], [ 48.598022, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 4.997922 ], [ 45.000000, 5.036227 ], [ 47.790527, 7.999397 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.978943 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.262451, 11.679135 ], [ 50.734863, 12.023203 ], [ 51.113892, 12.023203 ] ] ], [ [ [ 52.003784, 18.999803 ], [ 53.107910, 16.651981 ], [ 52.388306, 16.383391 ], [ 52.190552, 15.934920 ], [ 52.168579, 15.596584 ], [ 51.174316, 15.172879 ], [ 49.575806, 14.705822 ], [ 48.680420, 14.003367 ], [ 48.240967, 13.944730 ], [ 47.938843, 14.003367 ], [ 47.356567, 13.592600 ], [ 46.719360, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.288065 ], [ 45.406494, 13.025966 ], [ 45.148315, 12.951029 ], [ 45.000000, 12.715368 ], [ 44.989014, 12.699292 ], [ 44.560547, 12.715368 ], [ 44.560547, 17.418787 ], [ 45.219727, 17.434511 ], [ 45.401001, 17.329664 ], [ 46.367798, 17.230005 ], [ 46.752319, 17.282464 ], [ 46.999512, 16.946470 ], [ 47.466431, 17.114543 ], [ 48.186035, 18.166730 ], [ 49.119873, 18.615013 ], [ 52.003784, 18.999803 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.809570, 22.350076 ], [ 59.809570, 22.309426 ], [ 59.584351, 21.943046 ], [ 59.282227, 21.432617 ], [ 58.864746, 21.115249 ], [ 58.491211, 20.427013 ], [ 58.035278, 20.478482 ], [ 57.826538, 20.241583 ], [ 57.667236, 19.735684 ], [ 57.788086, 19.067310 ], [ 57.694702, 18.942660 ], [ 57.233276, 18.947856 ], [ 56.612549, 18.573362 ], [ 56.513672, 18.083201 ], [ 56.282959, 17.874203 ], [ 55.662231, 17.884659 ], [ 55.272217, 17.633552 ], [ 55.277710, 17.224758 ], [ 54.794312, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.704602 ], [ 53.107910, 16.651981 ], [ 52.003784, 18.999803 ], [ 55.003052, 19.999160 ], [ 55.651245, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.442505, 22.350076 ], [ 59.809570, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.949585, 11.410033 ], [ 48.938599, 10.978943 ], [ 48.938599, 9.449062 ], [ 48.488159, 8.836223 ], [ 47.790527, 7.999397 ], [ 46.950073, 7.993957 ], [ 45.000000, 8.705929 ], [ 44.560547, 8.863362 ], [ 44.560547, 10.444598 ], [ 44.615479, 10.439196 ], [ 45.000000, 10.547221 ], [ 45.560303, 10.698394 ], [ 46.647949, 10.817120 ], [ 47.526855, 11.124507 ], [ 48.021240, 11.189180 ], [ 48.378296, 11.372339 ], [ 48.949585, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.113892, 12.023203 ], [ 51.135864, 11.749059 ], [ 51.042480, 11.167624 ], [ 51.047974, 10.639014 ], [ 50.833740, 10.277086 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.454956, 6.800990 ], [ 48.598022, 5.337114 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.565796, 2.043024 ], [ 45.000000, 1.669686 ], [ 44.560547, 1.378651 ], [ 44.560547, 4.986977 ], [ 44.961548, 4.997922 ], [ 45.000000, 5.036227 ], [ 47.790527, 7.999397 ], [ 48.488159, 8.836223 ], [ 48.938599, 9.449062 ], [ 48.938599, 10.978943 ], [ 48.949585, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.576907 ], [ 50.262451, 11.679135 ], [ 50.734863, 12.023203 ], [ 51.113892, 12.023203 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 46.521606, 41.310824 ], [ 46.636963, 41.182788 ], [ 46.505127, 41.066928 ], [ 45.961304, 41.124884 ], [ 45.477905, 41.310824 ], [ 46.521606, 41.310824 ] ] ], [ [ [ 45.065918, 41.310824 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 41.310824 ], [ 45.065918, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.982319 ], [ 48.004761, 30.982319 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.176145 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.483577 ] ] ], [ [ [ 44.560547, 39.888665 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.614152 ], [ 44.560547, 39.888665 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 44.560547, 39.614152 ], [ 44.560547, 39.888665 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.614152 ] ] ], [ [ [ 44.560547, 37.483577 ], [ 44.769287, 37.169072 ], [ 44.560547, 37.094622 ], [ 44.560547, 37.483577 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.213013, 26.273714 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.324167 ], [ 50.663452, 25.000994 ], [ 50.811768, 24.751820 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.241956 ], [ 51.619263, 24.011344 ], [ 52.003784, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.211792, 22.705255 ], [ 55.667725, 21.999082 ], [ 55.651245, 21.943046 ], [ 55.513916, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.809652 ], [ 45.362549, 40.559721 ], [ 45.895386, 40.216635 ], [ 45.609741, 39.897094 ], [ 46.038208, 39.626846 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.317300 ], [ 45.741577, 39.474365 ], [ 45.302124, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.114380, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.038208, 39.626846 ], [ 45.609741, 39.897094 ], [ 45.895386, 40.216635 ], [ 45.362549, 40.559721 ], [ 45.560303, 40.809652 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.988192 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.505127, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.153842 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.302124, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.741231 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.769287, 37.169072 ], [ 45.000000, 36.752089 ], [ 45.422974, 35.978006 ], [ 46.076660, 35.675147 ], [ 46.153564, 35.092945 ], [ 45.648193, 34.746126 ], [ 45.417480, 33.966142 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.850952, 31.709476 ], [ 47.686157, 30.982319 ], [ 48.004761, 30.982319 ], [ 48.015747, 30.453409 ], [ 48.570557, 29.926374 ], [ 47.977295, 29.973970 ], [ 47.301636, 30.059586 ], [ 46.571045, 29.099377 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.176145 ], [ 44.560547, 29.286399 ], [ 44.560547, 37.094622 ], [ 44.769287, 37.169072 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 29.286399 ], [ 44.708862, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.571045, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.550751 ], [ 48.806763, 27.688392 ], [ 49.301147, 27.459539 ], [ 49.471436, 27.108034 ], [ 50.152588, 26.686730 ], [ 50.213013, 26.273714 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.324167 ], [ 50.663452, 25.000994 ], [ 50.811768, 24.751820 ], [ 51.113892, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.241956 ], [ 51.619263, 24.011344 ], [ 52.003784, 22.998852 ], [ 55.008545, 22.497332 ], [ 55.211792, 22.705255 ], [ 55.667725, 21.999082 ], [ 55.651245, 21.943046 ], [ 55.513916, 21.534847 ], [ 44.560547, 21.534847 ], [ 44.560547, 29.286399 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 41.310824 ], [ 67.939453, 41.137296 ], [ 66.714478, 41.170384 ], [ 66.681519, 41.310824 ], [ 67.939453, 41.310824 ] ] ], [ [ [ 55.964355, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.409546, 41.310824 ], [ 55.964355, 41.310824 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.181274, 40.988192 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.809652 ], [ 45.362549, 40.559721 ], [ 45.895386, 40.216635 ], [ 45.609741, 39.897094 ], [ 46.038208, 39.626846 ], [ 46.483154, 39.461644 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.317300 ], [ 45.741577, 39.474365 ], [ 45.302124, 39.470125 ], [ 45.000000, 39.740986 ], [ 44.791260, 39.711413 ], [ 44.560547, 39.888665 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.445068, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.142803 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.522217, 37.361426 ], [ 66.549683, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.550903, 41.265421 ], [ 60.468750, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.468750, 41.219986 ], [ 61.550903, 41.265421 ], [ 61.885986, 41.087632 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.549683, 37.974515 ], [ 66.522217, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.550171, 36.310699 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.268047 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.026459 ], [ 56.618042, 38.121593 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.739624, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.287546 ], [ 53.360596, 39.972911 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.969849, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.081421, 41.310824 ], [ 49.114380, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.086670, 40.526327 ], [ 50.394287, 40.254377 ], [ 49.570312, 40.174676 ], [ 49.394531, 39.398000 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.814031 ], [ 48.883667, 38.320111 ], [ 48.636475, 38.268376 ], [ 48.010254, 38.792627 ], [ 48.356323, 39.287546 ], [ 48.059692, 39.580290 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.461644 ], [ 46.038208, 39.626846 ], [ 45.609741, 39.897094 ], [ 45.895386, 40.216635 ], [ 45.362549, 40.559721 ], [ 45.560303, 40.809652 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.988192 ], [ 44.972534, 41.248903 ], [ 45.065918, 41.310824 ], [ 45.477905, 41.310824 ], [ 45.961304, 41.124884 ], [ 46.505127, 41.066928 ], [ 46.636963, 41.182788 ], [ 46.521606, 41.310824 ], [ 47.268677, 41.310824 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.153842 ], [ 47.922363, 41.310824 ], [ 49.081421, 41.310824 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.302124, 39.470125 ], [ 45.741577, 39.474365 ], [ 45.736084, 39.317300 ], [ 46.142578, 38.741231 ], [ 45.461426, 38.873929 ], [ 45.000000, 39.291797 ], [ 44.950562, 39.334297 ], [ 44.791260, 39.711413 ], [ 45.000000, 39.740986 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.267456, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.026459 ], [ 58.436279, 37.522797 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.674069 ], [ 60.963135, 33.527658 ], [ 60.540161, 32.981020 ], [ 60.864258, 32.180262 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.377089 ], [ 61.781616, 30.732393 ], [ 60.875244, 29.826348 ], [ 61.369629, 29.300771 ], [ 61.770630, 28.700225 ], [ 62.731934, 28.260844 ], [ 62.759399, 27.376645 ], [ 63.237305, 27.215556 ], [ 63.319702, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.501465, 25.075648 ], [ 59.617310, 25.378772 ], [ 58.529663, 25.606856 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.961246 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.809364 ], [ 52.487183, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.855713, 28.810987 ], [ 50.114136, 30.145127 ], [ 49.575806, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.982319 ], [ 47.686157, 30.982319 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.074219, 26.051848 ], [ 56.260986, 25.715786 ], [ 56.398315, 24.921313 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.266997 ], [ 55.980835, 24.131715 ], [ 55.530396, 23.931034 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.211792, 22.705255 ], [ 55.008545, 22.497332 ], [ 52.003784, 22.998852 ], [ 51.619263, 24.011344 ], [ 51.580811, 24.241956 ], [ 51.756592, 24.292034 ], [ 51.795044, 24.016362 ], [ 52.580566, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.695435, 24.796708 ], [ 55.442505, 25.438314 ], [ 56.074219, 26.051848 ] ] ], [ [ [ 51.289673, 26.111053 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.751820 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.289673, 26.111053 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.074219, 26.051848 ], [ 56.260986, 25.715786 ], [ 56.398315, 24.921313 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.266997 ], [ 55.980835, 24.131715 ], [ 55.530396, 23.931034 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.211792, 22.705255 ], [ 55.008545, 22.497332 ], [ 52.003784, 22.998852 ], [ 51.619263, 24.011344 ], [ 51.580811, 24.241956 ], [ 51.756592, 24.292034 ], [ 51.795044, 24.016362 ], [ 52.580566, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.695435, 24.796708 ], [ 55.442505, 25.438314 ], [ 56.074219, 26.051848 ] ] ], [ [ [ 51.289673, 26.111053 ], [ 51.591797, 25.799891 ], [ 51.608276, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.113892, 24.557116 ], [ 50.811768, 24.751820 ], [ 50.745850, 25.482951 ], [ 51.015015, 26.007424 ], [ 51.289673, 26.111053 ] ] ], [ [ [ 47.301636, 30.059586 ], [ 47.977295, 29.973970 ], [ 48.186035, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.550751 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.571045, 29.099377 ], [ 47.301636, 30.059586 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.681519, 41.310824 ], [ 66.714478, 41.170384 ], [ 67.939453, 41.137296 ], [ 67.939453, 39.567588 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.445068, 39.138582 ], [ 67.500000, 39.121537 ], [ 67.939453, 38.980763 ], [ 67.939453, 37.343959 ], [ 67.829590, 37.142803 ], [ 67.500000, 37.239075 ], [ 67.077026, 37.357059 ], [ 66.522217, 37.361426 ], [ 66.549683, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.891033 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.935425, 40.979898 ], [ 61.885986, 41.087632 ], [ 61.550903, 41.265421 ], [ 60.468750, 41.219986 ], [ 60.298462, 41.310824 ], [ 66.681519, 41.310824 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 60.298462, 41.310824 ], [ 60.468750, 41.219986 ], [ 61.550903, 41.265421 ], [ 61.885986, 41.087632 ], [ 61.935425, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.891033 ], [ 65.214844, 38.401949 ], [ 66.549683, 37.974515 ], [ 66.522217, 37.361426 ], [ 66.220093, 37.391982 ], [ 65.747681, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.747925, 37.112146 ], [ 64.550171, 36.310699 ], [ 63.984375, 36.004673 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.402484 ], [ 62.232056, 35.268047 ], [ 61.210327, 35.648369 ], [ 61.122437, 36.491973 ], [ 60.380859, 36.527295 ], [ 59.238281, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.332153, 38.026459 ], [ 56.618042, 38.121593 ], [ 56.184082, 37.935533 ], [ 55.513916, 37.961523 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.739624, 37.905199 ], [ 53.882446, 38.950865 ], [ 53.102417, 39.287546 ], [ 53.360596, 39.972911 ], [ 52.695923, 40.031821 ], [ 52.915649, 40.876141 ], [ 53.860474, 40.630630 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.299927, 41.310824 ], [ 55.409546, 41.310824 ], [ 55.458984, 41.261291 ], [ 55.969849, 41.310824 ], [ 60.298462, 41.310824 ] ] ], [ [ [ 52.838745, 41.310824 ], [ 52.816772, 41.137296 ], [ 52.728882, 41.310824 ], [ 52.838745, 41.310824 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.522217, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.142803 ], [ 67.939453, 37.099003 ], [ 67.939453, 31.606610 ], [ 67.796631, 31.583215 ], [ 67.686768, 31.302022 ], [ 66.939697, 31.302022 ], [ 66.384888, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.315141 ], [ 60.875244, 29.826348 ], [ 61.781616, 30.732393 ], [ 61.699219, 31.377089 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.180262 ], [ 60.540161, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.674069 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.268047 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.004673 ], [ 64.550171, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.398315, 24.921313 ], [ 56.848755, 24.241956 ], [ 57.403564, 23.875792 ], [ 58.139648, 23.745126 ], [ 58.732910, 23.563987 ], [ 59.452515, 22.659641 ], [ 59.809570, 22.532854 ], [ 59.809570, 22.309426 ], [ 59.584351, 21.943046 ], [ 59.342651, 21.534847 ], [ 55.513916, 21.534847 ], [ 55.651245, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.211792, 22.705255 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.530396, 23.931034 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.266997 ], [ 55.887451, 24.921313 ], [ 56.398315, 24.921313 ] ] ], [ [ [ 56.365356, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.392822, 25.893820 ], [ 56.260986, 25.715786 ], [ 56.074219, 26.051848 ], [ 56.365356, 26.396790 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.791260, 39.711413 ], [ 44.950562, 39.334297 ], [ 45.000000, 39.291797 ], [ 45.461426, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.580290 ], [ 48.356323, 39.287546 ], [ 48.010254, 38.792627 ], [ 48.636475, 38.268376 ], [ 48.883667, 38.320111 ], [ 49.202271, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.844727, 36.870832 ], [ 52.267456, 36.699255 ], [ 53.827515, 36.963060 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.513916, 37.961523 ], [ 56.184082, 37.935533 ], [ 56.618042, 38.121593 ], [ 57.332153, 38.026459 ], [ 58.436279, 37.522797 ], [ 59.238281, 37.413800 ], [ 60.380859, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.648369 ], [ 60.803833, 34.402377 ], [ 60.529175, 33.674069 ], [ 60.963135, 33.527658 ], [ 60.540161, 32.981020 ], [ 60.864258, 32.180262 ], [ 60.941162, 31.545771 ], [ 61.699219, 31.377089 ], [ 61.781616, 30.732393 ], [ 60.875244, 29.826348 ], [ 62.550659, 29.315141 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.050049, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.384888, 30.737114 ], [ 66.939697, 31.302022 ], [ 67.686768, 31.302022 ], [ 67.796631, 31.583215 ], [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 59.617310, 25.378772 ], [ 58.529663, 25.606856 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 55.722656, 26.961246 ], [ 54.717407, 26.480407 ], [ 53.492432, 26.809364 ], [ 52.487183, 27.581329 ], [ 51.520386, 27.863360 ], [ 50.855713, 28.810987 ], [ 50.114136, 30.145127 ], [ 49.575806, 29.983487 ], [ 48.944092, 30.315988 ], [ 48.570557, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.982319 ], [ 47.686157, 30.982319 ], [ 47.850952, 31.709476 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.966142 ], [ 45.648193, 34.746126 ], [ 46.153564, 35.092945 ], [ 46.076660, 35.675147 ], [ 45.422974, 35.978006 ], [ 45.000000, 36.752089 ], [ 44.769287, 37.169072 ], [ 44.560547, 37.483577 ], [ 44.560547, 39.614152 ], [ 44.791260, 39.711413 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.099003 ], [ 67.829590, 37.142803 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.121537 ], [ 67.445068, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.980763 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.747681, 37.662081 ], [ 66.220093, 37.391982 ], [ 66.522217, 37.361426 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.142803 ], [ 67.939453, 37.099003 ], [ 67.939453, 31.606610 ], [ 67.796631, 31.583215 ], [ 67.686768, 31.302022 ], [ 66.939697, 31.302022 ], [ 66.384888, 30.737114 ], [ 66.346436, 29.888281 ], [ 65.050049, 29.473079 ], [ 64.352417, 29.559123 ], [ 64.149170, 29.339087 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.315141 ], [ 60.875244, 29.826348 ], [ 61.781616, 30.732393 ], [ 61.699219, 31.377089 ], [ 60.941162, 31.545771 ], [ 60.864258, 32.180262 ], [ 60.540161, 32.981020 ], [ 60.963135, 33.527658 ], [ 60.529175, 33.674069 ], [ 60.803833, 34.402377 ], [ 61.210327, 35.648369 ], [ 62.232056, 35.268047 ], [ 62.984619, 35.402484 ], [ 63.193359, 35.857892 ], [ 63.984375, 36.004673 ], [ 64.550171, 36.310699 ], [ 64.747925, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.747681, 37.662081 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 31.606610 ], [ 67.939453, 23.775291 ], [ 67.500000, 23.926013 ], [ 67.445068, 23.946096 ], [ 67.148438, 24.661994 ], [ 66.373901, 25.423431 ], [ 64.533691, 25.234758 ], [ 62.907715, 25.214881 ], [ 61.501465, 25.075648 ], [ 61.875000, 26.239229 ], [ 63.319702, 26.755421 ], [ 63.237305, 27.215556 ], [ 62.759399, 27.376645 ], [ 62.731934, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.300771 ], [ 60.875244, 29.826348 ], [ 62.550659, 29.315141 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.339087 ], [ 64.352417, 29.559123 ], [ 65.050049, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.384888, 30.737114 ], [ 66.939697, 31.302022 ], [ 67.686768, 31.302022 ], [ 67.796631, 31.583215 ], [ 67.939453, 31.606610 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.939453, 37.343959 ], [ 67.939453, 37.099003 ], [ 67.829590, 37.142803 ], [ 67.939453, 37.343959 ] ] ], [ [ [ 67.939453, 38.980763 ], [ 67.500000, 39.121537 ], [ 67.445068, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 67.939453, 39.567588 ], [ 67.939453, 38.980763 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.922363, 41.310824 ], [ 47.817993, 41.153842 ], [ 47.373047, 41.219986 ], [ 47.268677, 41.310824 ], [ 47.922363, 41.310824 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 10, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.936610 ], [ 67.500000, 54.870285 ], [ 65.670776, 54.600710 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.004540 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.743408, 52.719658 ], [ 60.930176, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.935913, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.717163, 50.621588 ], [ 54.536133, 51.024121 ], [ 52.327881, 51.716819 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.353756 ], [ 47.043457, 49.149377 ], [ 46.466675, 48.392738 ], [ 47.318115, 47.713458 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.558860 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.984558 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.824549 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.500453 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.560547, 42.706660 ], [ 45.000000, 42.609706 ], [ 45.472412, 42.500453 ], [ 45.780029, 42.090070 ], [ 46.406250, 41.861379 ], [ 46.148071, 41.722131 ], [ 46.636963, 41.178654 ], [ 46.505127, 41.062786 ], [ 45.961304, 41.124884 ], [ 45.219727, 41.409776 ], [ 45.000000, 41.265421 ], [ 44.972534, 41.248903 ], [ 44.560547, 41.203456 ], [ 44.560547, 42.706660 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.824549 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.114380, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.809652 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.181274, 40.984045 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.809652 ], [ 45.428467, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 54.936610 ], [ 67.939453, 41.137296 ], [ 67.500000, 41.149706 ], [ 66.714478, 41.166249 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.992160 ], [ 66.099243, 42.996612 ], [ 64.901733, 43.727445 ], [ 63.187866, 43.648001 ], [ 62.012329, 43.504737 ], [ 61.062012, 44.406316 ], [ 58.502197, 45.587134 ], [ 55.931396, 44.995883 ], [ 55.969849, 41.306698 ], [ 55.458984, 41.257162 ], [ 54.755859, 42.041134 ], [ 54.080200, 42.322001 ], [ 52.943115, 42.114524 ], [ 52.503662, 41.783601 ], [ 52.448730, 42.024814 ], [ 52.695923, 42.443728 ], [ 52.503662, 42.791370 ], [ 51.344604, 43.133061 ], [ 50.894165, 44.028371 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.512176 ], [ 51.317139, 45.243953 ], [ 52.168579, 45.406164 ], [ 53.041992, 45.259422 ], [ 53.223267, 46.233053 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.047669 ], [ 50.037231, 46.607941 ], [ 49.103394, 46.399988 ], [ 48.592529, 46.558860 ], [ 48.696899, 47.073863 ], [ 48.059692, 47.743017 ], [ 47.318115, 47.713458 ], [ 46.466675, 48.392738 ], [ 47.043457, 49.149377 ], [ 46.752319, 49.353756 ], [ 47.548828, 50.454007 ], [ 48.581543, 49.873398 ], [ 48.702393, 50.604159 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.716819 ], [ 54.536133, 51.024121 ], [ 55.717163, 50.621588 ], [ 56.777344, 51.041394 ], [ 58.364868, 51.062113 ], [ 59.644775, 50.544854 ], [ 59.935913, 50.840636 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.930176, 52.445966 ], [ 60.743408, 52.719658 ], [ 61.699219, 52.978416 ], [ 60.979614, 53.664171 ], [ 61.435547, 54.004540 ], [ 65.181885, 54.354956 ], [ 65.670776, 54.600710 ], [ 67.500000, 54.870285 ], [ 67.939453, 54.936610 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.215854 ], [ 45.181274, 40.984045 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.809652 ], [ 45.428467, 40.647304 ], [ 44.560547, 40.647304 ], [ 44.560547, 41.203456 ], [ 44.972534, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.062012, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.648001 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.992160 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.166249 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.885986, 41.083492 ], [ 61.550903, 41.265421 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.422134 ], [ 59.979858, 42.220382 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.824549 ], [ 47.373047, 41.219986 ], [ 47.817993, 41.149706 ], [ 47.988281, 41.405656 ], [ 48.587036, 41.808173 ], [ 49.114380, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.564819, 40.647304 ], [ 45.428467, 40.647304 ], [ 45.560303, 40.809652 ], [ 45.192261, 40.979898 ], [ 45.181274, 40.984045 ], [ 45.000000, 41.215854 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.265421 ], [ 45.219727, 41.409776 ], [ 45.961304, 41.124884 ], [ 46.505127, 41.062786 ], [ 46.636963, 41.178654 ], [ 46.148071, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.794556, 40.647304 ], [ 52.855225, 40.647304 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 53.904419, 40.647304 ], [ 54.739380, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.549700 ], [ 53.723145, 42.122673 ], [ 52.915649, 41.865470 ], [ 52.816772, 41.133159 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.114524 ], [ 54.080200, 42.322001 ], [ 54.755859, 42.041134 ], [ 55.458984, 41.257162 ], [ 55.969849, 41.306698 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.824549 ], [ 57.788086, 42.171546 ], [ 58.628540, 42.751046 ], [ 59.979858, 42.220382 ], [ 60.084229, 41.422134 ], [ 60.468750, 41.219986 ], [ 61.550903, 41.265421 ], [ 61.885986, 41.083492 ], [ 61.935425, 40.979898 ], [ 62.094727, 40.647304 ], [ 53.904419, 40.647304 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 61.062012, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.187866, 43.648001 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.996612 ], [ 66.022339, 41.992160 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.166249 ], [ 67.500000, 41.149706 ], [ 67.939453, 41.137296 ], [ 67.939453, 40.647304 ], [ 62.094727, 40.647304 ], [ 61.935425, 40.979898 ], [ 61.885986, 41.083492 ], [ 61.550903, 41.265421 ], [ 60.468750, 41.219986 ], [ 60.084229, 41.422134 ], [ 59.979858, 42.220382 ], [ 58.628540, 42.751046 ], [ 57.788086, 42.171546 ], [ 56.931152, 41.824549 ], [ 57.095947, 41.323201 ], [ 55.969849, 41.306698 ], [ 55.931396, 44.995883 ], [ 58.502197, 45.587134 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.939453, 56.022948 ], [ 67.939453, 54.936610 ], [ 67.500000, 54.870285 ], [ 65.670776, 54.600710 ], [ 65.181885, 54.354956 ], [ 61.435547, 54.004540 ], [ 60.979614, 53.664171 ], [ 61.699219, 52.978416 ], [ 60.743408, 52.719658 ], [ 60.930176, 52.445966 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.935913, 50.840636 ], [ 59.644775, 50.544854 ], [ 58.364868, 51.062113 ], [ 56.777344, 51.041394 ], [ 55.717163, 50.621588 ], [ 54.536133, 51.024121 ], [ 52.327881, 51.716819 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.604159 ], [ 48.581543, 49.873398 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.353756 ], [ 47.043457, 49.149377 ], [ 46.466675, 48.392738 ], [ 47.318115, 47.713458 ], [ 48.059692, 47.743017 ], [ 48.696899, 47.073863 ], [ 48.592529, 46.558860 ], [ 49.103394, 46.399988 ], [ 48.647461, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.592773, 43.659924 ], [ 47.493896, 42.984558 ], [ 48.587036, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.817993, 41.149706 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.824549 ], [ 46.406250, 41.861379 ], [ 45.780029, 42.090070 ], [ 45.472412, 42.500453 ], [ 45.000000, 42.609706 ], [ 44.560547, 42.706660 ], [ 44.560547, 56.022948 ], [ 67.939453, 56.022948 ] ] ] } } ] } ] } , @@ -2015,11 +1999,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.150757, 9.822742 ], [ 80.842896, 9.264779 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.520427 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.348511, 5.965754 ], [ 79.876099, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.150757, 9.822742 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.978271, 22.350076 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 86.978760, 21.493964 ], [ 87.033691, 20.740703 ], [ 86.500854, 20.148785 ], [ 85.061646, 19.476950 ], [ 83.941040, 18.302381 ], [ 83.188477, 17.670194 ], [ 82.194214, 17.014768 ], [ 82.194214, 16.557227 ], [ 81.694336, 16.309596 ], [ 80.793457, 15.950766 ], [ 80.326538, 15.897942 ], [ 80.024414, 15.135764 ], [ 80.233154, 13.832746 ], [ 80.288086, 13.004558 ], [ 79.865112, 12.055437 ], [ 79.859619, 10.358151 ], [ 79.343262, 10.309515 ], [ 78.887329, 9.546583 ], [ 79.189453, 9.215982 ], [ 78.277588, 8.933914 ], [ 77.942505, 8.249546 ], [ 77.541504, 7.966758 ], [ 76.596680, 8.895926 ], [ 76.129761, 10.298706 ], [ 75.745239, 11.307708 ], [ 75.399170, 11.781325 ], [ 74.866333, 12.742158 ], [ 74.619141, 13.992706 ], [ 74.443359, 14.615478 ], [ 73.536987, 15.987734 ], [ 73.119507, 17.926476 ], [ 72.822876, 19.207429 ], [ 72.828369, 20.416717 ], [ 72.630615, 21.355897 ], [ 71.174927, 20.756114 ], [ 70.471802, 20.874210 ], [ 69.164429, 22.090730 ], [ 69.510498, 22.350076 ], [ 88.978271, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.978271, 22.350076 ], [ 90.439453, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 80.150757, 9.822742 ], [ 80.842896, 9.264779 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.520427 ], [ 81.639404, 6.479067 ], [ 81.221924, 6.195168 ], [ 80.348511, 5.965754 ], [ 79.876099, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.150757, 9.822742 ] ] ], [ [ [ 90.439453, 22.350076 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.968519 ], [ 89.033203, 22.055096 ], [ 88.978271, 22.350076 ], [ 90.439453, 22.350076 ] ] ] ] } } ] } ] } , @@ -2027,23 +2009,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.027100, 41.310824 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.263550, 40.659806 ], [ 68.076782, 40.979898 ], [ 67.988892, 41.137296 ], [ 67.060547, 41.157978 ], [ 67.060547, 41.310824 ], [ 69.027100, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.470581, 40.559721 ], [ 74.778442, 40.363288 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.601456 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.241799 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.053833, 41.310824 ], [ 72.800903, 40.979898 ], [ 73.059082, 40.863680 ], [ 71.773682, 40.145289 ], [ 71.015625, 40.241799 ], [ 70.603638, 40.216635 ], [ 70.460815, 40.497092 ], [ 70.669556, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.010620, 40.086477 ], [ 68.538208, 39.533703 ], [ 67.703247, 39.580290 ], [ 67.500000, 39.240763 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.899583 ], [ 68.395386, 38.156157 ], [ 67.829590, 37.142803 ], [ 67.500000, 37.239075 ], [ 67.060547, 37.357059 ], [ 67.060547, 41.157978 ], [ 67.988892, 41.137296 ], [ 68.076782, 40.979898 ], [ 68.263550, 40.659806 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.027100, 41.310824 ], [ 70.828857, 41.310824 ], [ 71.158447, 41.145570 ], [ 71.636353, 41.310824 ], [ 72.053833, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.664013 ], [ 76.195679, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.502030 ], [ 74.240112, 34.746126 ], [ 73.751221, 34.316218 ], [ 74.108276, 33.440609 ], [ 74.454346, 32.764181 ], [ 75.261841, 32.268555 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.620117, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.845825, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.302022 ], [ 67.686768, 31.302022 ], [ 67.796631, 31.583215 ], [ 68.560181, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.933472, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.071302 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.716871 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.299561, 41.310824 ], [ 78.189697, 41.186922 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.525269, 40.426042 ], [ 75.470581, 40.559721 ], [ 74.778442, 40.363288 ], [ 73.822632, 39.892880 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.601456 ], [ 69.466553, 39.525230 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.015625, 40.241799 ], [ 71.773682, 40.145289 ], [ 73.059082, 40.863680 ], [ 72.800903, 40.979898 ], [ 72.053833, 41.310824 ], [ 78.299561, 41.310824 ] ] ], [ [ [ 71.636353, 41.310824 ], [ 71.158447, 41.145570 ], [ 70.828857, 41.310824 ], [ 71.636353, 41.310824 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.483695 ], [ 71.350708, 38.259750 ], [ 71.240845, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.063944 ], [ 71.845093, 36.738884 ], [ 72.196655, 36.945502 ], [ 72.636108, 37.046409 ], [ 73.262329, 37.492294 ], [ 73.948975, 37.422526 ], [ 74.981689, 37.418163 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.069824, 36.835668 ], [ 72.921753, 36.716871 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.071302 ], [ 71.499023, 35.648369 ], [ 71.614380, 35.151354 ], [ 71.114502, 34.732584 ], [ 71.158447, 34.347971 ], [ 70.883789, 33.988918 ], [ 69.933472, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.500496 ], [ 69.318237, 31.900878 ], [ 68.928223, 31.620644 ], [ 68.560181, 31.714149 ], [ 67.796631, 31.583215 ], [ 67.686768, 31.302022 ], [ 67.060547, 31.302022 ], [ 67.060547, 37.357059 ], [ 67.500000, 37.239075 ], [ 67.829590, 37.142803 ], [ 68.137207, 37.020098 ], [ 68.862305, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.521484, 37.609880 ], [ 70.120239, 37.588119 ], [ 70.274048, 37.735969 ], [ 70.378418, 38.138877 ], [ 70.806885, 38.483695 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.669556, 40.959160 ], [ 70.460815, 40.497092 ], [ 70.603638, 40.216635 ], [ 71.015625, 40.241799 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.466553, 39.525230 ], [ 70.548706, 39.601456 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.932495, 38.505191 ], [ 74.256592, 38.603993 ], [ 74.866333, 38.376115 ], [ 74.833374, 37.987504 ], [ 74.981689, 37.418163 ], [ 73.948975, 37.422526 ], [ 73.262329, 37.492294 ], [ 72.636108, 37.046409 ], [ 72.196655, 36.945502 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.063944 ], [ 71.542969, 37.905199 ], [ 71.240845, 37.952861 ], [ 71.350708, 38.259750 ], [ 70.806885, 38.483695 ], [ 70.378418, 38.138877 ], [ 70.274048, 37.735969 ], [ 70.120239, 37.588119 ], [ 69.521484, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.862305, 37.343959 ], [ 68.137207, 37.020098 ], [ 67.829590, 37.142803 ], [ 68.395386, 38.156157 ], [ 68.175659, 38.899583 ], [ 67.500000, 39.121537 ], [ 67.439575, 39.138582 ], [ 67.500000, 39.240763 ], [ 67.703247, 39.580290 ], [ 68.538208, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.726446 ], [ 70.669556, 40.959160 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.111870 ], [ 83.336792, 29.463514 ], [ 83.902588, 29.319931 ], [ 84.237671, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.202768 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.873073 ], [ 88.044434, 27.444916 ], [ 88.176270, 26.809364 ], [ 88.060913, 26.411551 ], [ 87.231445, 26.396790 ], [ 86.028442, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.677124, 27.235095 ], [ 83.303833, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.090332, 28.791732 ], [ 80.480347, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.899048, 36.664013 ], [ 76.195679, 35.897950 ], [ 77.838135, 35.491984 ], [ 76.871338, 34.651285 ], [ 75.756226, 34.502030 ], [ 74.240112, 34.746126 ], [ 73.751221, 34.316218 ], [ 74.108276, 33.440609 ], [ 74.454346, 32.764181 ], [ 75.261841, 32.268555 ], [ 74.404907, 31.690782 ], [ 74.421387, 30.977609 ], [ 73.454590, 29.973970 ], [ 72.822876, 28.960089 ], [ 71.779175, 27.911913 ], [ 70.620117, 27.989551 ], [ 69.515991, 26.941660 ], [ 70.169678, 26.490240 ], [ 70.285034, 25.720735 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.845825, 24.357105 ], [ 68.175659, 23.689805 ], [ 67.500000, 23.926013 ], [ 67.439575, 23.946096 ], [ 67.142944, 24.661994 ], [ 67.060547, 24.746831 ], [ 67.060547, 31.302022 ], [ 67.686768, 31.302022 ], [ 67.796631, 31.583215 ], [ 68.560181, 31.714149 ], [ 68.928223, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.263306, 32.500496 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.933472, 34.020795 ], [ 70.883789, 33.988918 ], [ 71.158447, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.151354 ], [ 71.499023, 35.648369 ], [ 71.262817, 36.071302 ], [ 71.845093, 36.509636 ], [ 72.921753, 36.716871 ], [ 74.069824, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.439453, 28.159190 ], [ 90.439453, 26.868181 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.779943 ], [ 89.747314, 26.716174 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.529541, 30.420256 ], [ 82.331543, 30.111870 ], [ 83.336792, 29.463514 ], [ 83.902588, 29.319931 ], [ 84.237671, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.825195, 28.202768 ], [ 86.956787, 27.974998 ], [ 88.121338, 27.873073 ], [ 88.044434, 27.444916 ], [ 88.176270, 26.809364 ], [ 88.060913, 26.411551 ], [ 87.231445, 26.396790 ], [ 86.028442, 26.627818 ], [ 85.253906, 26.725987 ], [ 84.677124, 27.235095 ], [ 83.303833, 27.362011 ], [ 82.001953, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.090332, 28.791732 ], [ 80.480347, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.529541, 30.420256 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.491984 ], [ 78.914795, 34.320755 ], [ 78.810425, 33.504759 ], [ 79.211426, 32.994843 ], [ 79.178467, 32.481963 ], [ 78.458862, 32.616243 ], [ 78.739014, 31.512996 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.480347, 29.730992 ], [ 80.090332, 28.791732 ], [ 81.057129, 28.415560 ], [ 82.001953, 27.926474 ], [ 83.303833, 27.362011 ], [ 84.677124, 27.235095 ], [ 85.253906, 26.725987 ], [ 86.028442, 26.627818 ], [ 87.231445, 26.396790 ], [ 88.060913, 26.411551 ], [ 88.176270, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.873073 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.747314, 26.716174 ], [ 90.000000, 26.779943 ], [ 90.373535, 26.873081 ], [ 90.439453, 26.868181 ], [ 90.439453, 25.195000 ], [ 90.000000, 25.259601 ], [ 89.923096, 25.269536 ], [ 89.835205, 25.962984 ], [ 89.357300, 26.012361 ], [ 88.566284, 26.445984 ], [ 88.209229, 25.765267 ], [ 88.934326, 25.239727 ], [ 88.308105, 24.866503 ], [ 88.088379, 24.502145 ], [ 88.703613, 24.231938 ], [ 88.533325, 23.629427 ], [ 88.879395, 22.877440 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.890381, 21.688057 ], [ 88.209229, 21.703369 ], [ 87.203979, 21.534847 ], [ 69.763184, 21.534847 ], [ 69.323730, 21.943046 ], [ 69.164429, 22.085640 ], [ 69.647827, 22.451649 ], [ 69.351196, 22.842008 ], [ 68.175659, 23.689805 ], [ 68.845825, 24.357105 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.285034, 25.720735 ], [ 70.169678, 26.490240 ], [ 69.515991, 26.941660 ], [ 70.620117, 27.989551 ], [ 71.779175, 27.911913 ], [ 72.822876, 28.960089 ], [ 73.454590, 29.973970 ], [ 74.421387, 30.977609 ], [ 74.404907, 31.690782 ], [ 75.261841, 32.268555 ], [ 74.454346, 32.764181 ], [ 74.108276, 33.440609 ], [ 73.751221, 34.316218 ], [ 74.240112, 34.746126 ], [ 75.756226, 34.502030 ], [ 76.871338, 34.651285 ], [ 77.838135, 35.491984 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.566284, 26.445984 ], [ 89.357300, 26.012361 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.879395, 22.877440 ], [ 88.533325, 23.629427 ], [ 88.703613, 24.231938 ], [ 88.088379, 24.502145 ], [ 88.308105, 24.866503 ], [ 88.934326, 25.239727 ], [ 88.209229, 25.765267 ], [ 88.566284, 26.445984 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 88.566284, 26.445984 ], [ 89.357300, 26.012361 ], [ 89.835205, 25.962984 ], [ 89.923096, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.439453, 25.195000 ], [ 90.439453, 22.131443 ], [ 90.274658, 21.836006 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.769287, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.963425 ], [ 89.033203, 22.055096 ], [ 88.879395, 22.877440 ], [ 88.533325, 23.629427 ], [ 88.703613, 24.231938 ], [ 88.088379, 24.502145 ], [ 88.308105, 24.866503 ], [ 88.934326, 25.239727 ], [ 88.209229, 25.765267 ], [ 88.566284, 26.445984 ] ] ], [ [ [ 90.016479, 28.294707 ], [ 90.439453, 28.159190 ], [ 90.439453, 26.868181 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.779943 ], [ 89.747314, 26.716174 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.478149, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 41.310824 ], [ 90.439453, 28.159190 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.478149, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.873073 ], [ 86.956787, 27.974998 ], [ 85.825195, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.237671, 28.839862 ], [ 83.902588, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.331543, 30.111870 ], [ 81.529541, 30.420256 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.739014, 31.512996 ], [ 78.458862, 32.616243 ], [ 79.178467, 32.481963 ], [ 79.211426, 32.994843 ], [ 78.810425, 33.504759 ], [ 78.914795, 34.320755 ], [ 77.838135, 35.491984 ], [ 76.195679, 35.897950 ], [ 75.899048, 36.664013 ], [ 75.157471, 37.134045 ], [ 74.981689, 37.418163 ], [ 74.833374, 37.987504 ], [ 74.866333, 38.376115 ], [ 74.256592, 38.603993 ], [ 73.932495, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.892880 ], [ 74.778442, 40.363288 ], [ 75.470581, 40.559721 ], [ 76.525269, 40.426042 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.186922 ], [ 78.299561, 41.310824 ], [ 90.439453, 41.310824 ] ] ] } } ] } @@ -2051,16 +2031,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 11, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.468124 ], [ 87.753296, 49.296472 ], [ 87.363281, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.545044, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.427124, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.968155 ], [ 67.500000, 54.870285 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.071045, 55.385352 ], [ 70.867310, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.033586 ], [ 73.427124, 53.488046 ], [ 74.388428, 53.546836 ], [ 76.893311, 54.489187 ], [ 76.525269, 54.175297 ], [ 77.799683, 53.402982 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.386230, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.418945, 50.310392 ], [ 85.116577, 50.117056 ], [ 85.545044, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.363281, 49.214009 ], [ 86.599731, 48.549342 ], [ 85.770264, 48.454709 ], [ 85.720825, 47.450380 ], [ 85.166016, 46.998988 ], [ 83.182983, 47.327654 ], [ 82.457886, 45.537137 ], [ 81.947021, 45.317392 ], [ 79.969482, 44.918139 ], [ 80.864868, 43.181147 ], [ 80.183716, 42.920229 ], [ 80.260620, 42.350425 ], [ 79.645386, 42.496403 ], [ 79.145508, 42.855833 ], [ 77.662354, 42.960443 ], [ 76.003418, 42.988576 ], [ 75.640869, 42.875964 ], [ 74.212646, 43.297198 ], [ 73.646851, 43.088949 ], [ 73.493042, 42.500453 ], [ 71.845093, 42.843751 ], [ 71.185913, 42.702623 ], [ 70.966187, 42.265114 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.823853, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.263550, 40.659806 ], [ 68.076782, 40.979898 ], [ 67.988892, 41.133159 ], [ 67.500000, 41.149706 ], [ 67.060547, 41.157978 ], [ 67.060547, 54.807017 ], [ 67.500000, 54.870285 ], [ 68.170166, 54.968155 ], [ 69.071045, 55.385352 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.960443 ], [ 79.145508, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.546753, 41.582580 ], [ 78.189697, 41.182788 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.059082, 40.863680 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.141433 ], [ 70.422363, 41.520917 ], [ 71.262817, 42.167475 ], [ 70.966187, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.493042, 42.500453 ], [ 73.646851, 43.088949 ], [ 74.212646, 43.297198 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.966187, 42.265114 ], [ 71.262817, 42.167475 ], [ 70.422363, 41.520917 ], [ 71.158447, 41.141433 ], [ 71.872559, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.059082, 40.863680 ], [ 72.663574, 40.647304 ], [ 70.526733, 40.647304 ], [ 70.669556, 40.959160 ], [ 69.329224, 40.726446 ], [ 69.290771, 40.647304 ], [ 67.060547, 40.647304 ], [ 67.060547, 41.157978 ], [ 67.500000, 41.149706 ], [ 67.988892, 41.133159 ], [ 68.076782, 40.979898 ], [ 68.263550, 40.659806 ], [ 68.631592, 40.668140 ], [ 68.823853, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.966187, 42.265114 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.297198 ], [ 75.640869, 42.875964 ], [ 76.003418, 42.988576 ], [ 77.662354, 42.960443 ], [ 79.145508, 42.855833 ], [ 79.645386, 42.496403 ], [ 80.260620, 42.350425 ], [ 80.123291, 42.122673 ], [ 78.546753, 41.582580 ], [ 78.189697, 41.182788 ], [ 76.904297, 41.066928 ], [ 76.854858, 40.979898 ], [ 76.657104, 40.647304 ], [ 72.663574, 40.647304 ], [ 73.059082, 40.863680 ], [ 72.800903, 40.979898 ], [ 71.872559, 41.393294 ], [ 71.158447, 41.141433 ], [ 70.422363, 41.520917 ], [ 71.262817, 42.167475 ], [ 70.966187, 42.265114 ], [ 71.185913, 42.702623 ], [ 71.845093, 42.843751 ], [ 73.493042, 42.500453 ], [ 73.646851, 43.088949 ], [ 74.212646, 43.297198 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.669556, 40.959160 ], [ 70.526733, 40.647304 ], [ 69.290771, 40.647304 ], [ 69.329224, 40.726446 ], [ 70.669556, 40.959160 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 56.022948 ], [ 90.439453, 50.208549 ], [ 90.000000, 50.011269 ], [ 88.807983, 49.468124 ], [ 87.753296, 49.296472 ], [ 87.363281, 49.214009 ], [ 86.830444, 49.827353 ], [ 85.545044, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.418945, 50.310392 ], [ 83.935547, 50.889174 ], [ 83.386230, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 77.799683, 53.402982 ], [ 76.525269, 54.175297 ], [ 76.893311, 54.489187 ], [ 74.388428, 53.546836 ], [ 73.427124, 53.488046 ], [ 73.509521, 54.033586 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.867310, 55.169456 ], [ 69.071045, 55.385352 ], [ 68.170166, 54.968155 ], [ 67.500000, 54.870285 ], [ 67.060547, 54.807017 ], [ 67.060547, 56.022948 ], [ 90.439453, 56.022948 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.439453, 50.208549 ], [ 90.439453, 47.509780 ], [ 90.280151, 47.691277 ], [ 90.000000, 47.768868 ], [ 88.857422, 48.067068 ], [ 88.016968, 48.600225 ], [ 87.753296, 49.296472 ], [ 88.807983, 49.468124 ], [ 90.000000, 50.011269 ], [ 90.439453, 50.208549 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.753296, 49.296472 ], [ 88.016968, 48.600225 ], [ 88.857422, 48.067068 ], [ 90.000000, 47.768868 ], [ 90.280151, 47.691277 ], [ 90.439453, 47.509780 ], [ 90.439453, 40.647304 ], [ 76.657104, 40.647304 ], [ 76.854858, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.189697, 41.182788 ], [ 78.546753, 41.582580 ], [ 80.123291, 42.122673 ], [ 80.260620, 42.350425 ], [ 80.183716, 42.920229 ], [ 80.864868, 43.181147 ], [ 79.969482, 44.918139 ], [ 81.947021, 45.317392 ], [ 82.457886, 45.537137 ], [ 83.182983, 47.327654 ], [ 85.166016, 46.998988 ], [ 85.720825, 47.450380 ], [ 85.770264, 48.454709 ], [ 86.599731, 48.549342 ], [ 87.363281, 49.214009 ], [ 87.753296, 49.296472 ] ] ] } } @@ -2123,43 +2103,33 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 93.147583, 22.350076 ], [ 93.169556, 22.278931 ], [ 92.675171, 22.044913 ], [ 92.570801, 22.350076 ], [ 93.147583, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 93.147583, 22.350076 ], [ 93.169556, 22.278931 ], [ 92.675171, 22.044913 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.307129, 21.473518 ], [ 92.367554, 20.668766 ], [ 92.081909, 21.192094 ], [ 92.026978, 21.698265 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.713867, 22.350076 ], [ 93.147583, 22.350076 ] ] ], [ [ [ 90.565796, 22.350076 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.565796, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.570801, 22.350076 ], [ 92.675171, 22.044913 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.307129, 21.473518 ], [ 92.367554, 20.668766 ], [ 92.081909, 21.192094 ], [ 92.026978, 21.698265 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.713867, 22.350076 ], [ 92.570801, 22.350076 ] ] ], [ [ [ 90.565796, 22.350076 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 22.350076 ], [ 90.565796, 22.350076 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.694314 ], [ 110.571899, 19.254108 ], [ 110.341187, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.505657 ], [ 108.627319, 19.368159 ], [ 109.121704, 19.818390 ], [ 110.214844, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 111.846313, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.445557, 20.339476 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.605835, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.766357, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.804810, 21.171606 ], [ 101.271973, 21.202337 ], [ 101.184082, 21.437730 ], [ 101.151123, 21.846204 ], [ 100.420532, 21.555284 ], [ 99.986572, 21.744194 ], [ 99.591064, 21.943046 ], [ 99.244995, 22.121266 ], [ 99.321899, 22.350076 ], [ 101.766357, 22.350076 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.321899, 22.350076 ], [ 99.244995, 22.121266 ], [ 99.591064, 21.943046 ], [ 99.986572, 21.744194 ], [ 100.420532, 21.555284 ], [ 101.151123, 21.846204 ], [ 101.184082, 21.437730 ], [ 100.332642, 20.786931 ], [ 100.118408, 20.416717 ], [ 99.547119, 20.184879 ], [ 98.959351, 19.751194 ], [ 98.256226, 19.704658 ], [ 97.800293, 18.625425 ], [ 97.377319, 18.443136 ], [ 97.860718, 17.565484 ], [ 98.492432, 16.836090 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.305380 ], [ 98.195801, 15.119856 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.266680 ], [ 99.195557, 12.801088 ], [ 99.591064, 11.888853 ], [ 99.041748, 10.957371 ], [ 98.552856, 9.930977 ], [ 98.459473, 10.671404 ], [ 98.767090, 11.442339 ], [ 98.432007, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.098598 ], [ 97.168579, 16.925450 ], [ 96.509399, 16.425548 ], [ 95.372314, 15.712951 ], [ 94.812012, 15.802825 ], [ 94.191284, 16.035255 ], [ 94.537354, 17.277219 ], [ 94.328613, 18.213698 ], [ 93.543091, 19.362976 ], [ 93.663940, 19.725342 ], [ 93.081665, 19.854561 ], [ 92.367554, 20.668766 ], [ 92.307129, 21.473518 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.044913 ], [ 93.169556, 22.278931 ], [ 93.147583, 22.350076 ], [ 99.321899, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.118408, 20.416717 ], [ 100.552368, 20.107523 ], [ 100.607300, 19.508020 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.406655 ], [ 101.063232, 17.513106 ], [ 102.112427, 18.109308 ], [ 102.414551, 17.931702 ], [ 103.002319, 17.957832 ], [ 103.200073, 18.307596 ], [ 103.958130, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.782104, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.721761 ], [ 105.221558, 14.269707 ], [ 104.282227, 14.413400 ], [ 102.991333, 14.221789 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.624258 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.157104, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.876709, 9.205138 ], [ 100.283203, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.807292 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.844624 ], [ 99.519653, 7.340675 ], [ 98.992310, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.041748, 10.957371 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.195801, 15.119856 ], [ 98.536377, 15.305380 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.704658 ], [ 98.959351, 19.751194 ], [ 99.547119, 20.184879 ], [ 100.118408, 20.416717 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.826050, 19.885557 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.481672 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.385864, 14.200488 ], [ 106.495972, 14.567634 ], [ 106.045532, 13.880746 ], [ 105.221558, 14.269707 ], [ 104.282227, 14.413400 ], [ 102.991333, 14.221789 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.184334 ], [ 101.689453, 12.645698 ], [ 100.832520, 12.624258 ], [ 100.980835, 13.410994 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.157104, 9.963440 ], [ 99.223022, 9.237671 ], [ 99.876709, 9.205138 ], [ 100.283203, 8.293035 ], [ 100.458984, 7.427837 ], [ 101.019287, 6.855532 ], [ 101.623535, 6.740986 ], [ 102.139893, 6.222473 ], [ 101.815796, 5.807292 ], [ 101.156616, 5.692516 ], [ 101.074219, 6.206090 ], [ 100.261230, 6.642783 ], [ 100.085449, 6.462693 ], [ 99.689941, 6.844624 ], [ 99.519653, 7.340675 ], [ 98.992310, 7.906912 ], [ 98.503418, 8.379997 ], [ 98.338623, 7.792636 ], [ 98.151855, 8.347388 ], [ 98.261719, 8.971897 ], [ 98.552856, 9.930977 ], [ 99.041748, 10.957371 ], [ 99.591064, 11.888853 ], [ 99.195557, 12.801088 ], [ 99.212036, 13.266680 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.195801, 15.119856 ], [ 98.536377, 15.305380 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.836090 ], [ 97.860718, 17.565484 ], [ 97.377319, 18.443136 ], [ 97.800293, 18.625425 ], [ 98.256226, 19.704658 ], [ 98.959351, 19.751194 ], [ 99.547119, 20.184879 ], [ 100.118408, 20.416717 ], [ 100.332642, 20.786931 ], [ 101.184082, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.171606 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.255249, 22.350076 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 103.205566, 20.766387 ], [ 104.436035, 20.756114 ], [ 104.826050, 19.885557 ], [ 104.183350, 19.621892 ], [ 103.897705, 19.264480 ], [ 105.095215, 18.667063 ], [ 105.924683, 17.481672 ], [ 106.556396, 16.604610 ], [ 107.314453, 15.908508 ], [ 107.567139, 15.199386 ], [ 107.385864, 14.200488 ], [ 106.495972, 14.567634 ], [ 106.045532, 13.880746 ], [ 105.221558, 14.269707 ], [ 105.545654, 14.721761 ], [ 105.589600, 15.570128 ], [ 104.782104, 16.441354 ], [ 104.716187, 17.429270 ], [ 103.958130, 18.239786 ], [ 103.200073, 18.307596 ], [ 103.002319, 17.957832 ], [ 102.414551, 17.931702 ], [ 102.112427, 18.109308 ], [ 101.063232, 17.513106 ], [ 101.035767, 18.406655 ], [ 101.282959, 19.461413 ], [ 100.607300, 19.508020 ], [ 100.552368, 20.107523 ], [ 100.118408, 20.416717 ], [ 100.332642, 20.786931 ], [ 101.184082, 21.437730 ], [ 101.271973, 21.202337 ], [ 101.804810, 21.171606 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.319589 ], [ 101.766357, 22.350076 ], [ 102.255249, 22.350076 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.694079 ], [ 108.270264, 16.077486 ], [ 108.880005, 15.273587 ], [ 109.335938, 13.427024 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.408081, 9.530332 ], [ 105.161133, 8.597316 ], [ 104.798584, 9.237671 ], [ 105.078735, 9.914744 ], [ 104.337158, 10.487812 ], [ 105.199585, 10.887254 ], [ 106.248779, 10.962764 ], [ 105.809326, 11.566144 ], [ 107.490234, 12.334636 ], [ 107.616577, 13.533860 ], [ 107.385864, 14.200488 ], [ 107.567139, 15.199386 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.481672 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.621892 ], [ 104.826050, 19.885557 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.567634 ], [ 107.385864, 14.200488 ], [ 107.616577, 13.533860 ], [ 107.490234, 12.334636 ], [ 105.809326, 11.566144 ], [ 106.248779, 10.962764 ], [ 105.199585, 10.887254 ], [ 104.337158, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.991333, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.221558, 14.269707 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.567634 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.605835, 22.350076 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 106.715698, 20.694462 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 107.363892, 16.694079 ], [ 108.270264, 16.077486 ], [ 108.880005, 15.273587 ], [ 109.335938, 13.427024 ], [ 109.204102, 11.662996 ], [ 108.369141, 11.005904 ], [ 107.221069, 10.363555 ], [ 106.408081, 9.530332 ], [ 105.161133, 8.597316 ], [ 104.798584, 9.237671 ], [ 105.078735, 9.914744 ], [ 104.337158, 10.487812 ], [ 103.496704, 10.633615 ], [ 103.090210, 11.151456 ], [ 102.584839, 12.184334 ], [ 102.348633, 13.394963 ], [ 102.991333, 14.221789 ], [ 104.282227, 14.413400 ], [ 105.221558, 14.269707 ], [ 106.045532, 13.880746 ], [ 106.495972, 14.567634 ], [ 107.385864, 14.200488 ], [ 107.567139, 15.199386 ], [ 107.314453, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.481672 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.621892 ], [ 104.826050, 19.885557 ], [ 104.436035, 20.756114 ], [ 103.205566, 20.766387 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.255249, 22.350076 ], [ 106.605835, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.939453, 3.091151 ], [ 112.939453, 1.472006 ], [ 112.862549, 1.493971 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.406109 ], [ 111.796875, 0.900842 ], [ 111.159668, 0.977736 ], [ 110.516968, 0.769020 ], [ 109.830322, 1.334718 ], [ 109.665527, 2.004596 ], [ 110.396118, 1.664195 ], [ 111.170654, 1.850874 ], [ 111.373901, 2.696148 ], [ 111.796875, 2.882694 ], [ 112.500000, 3.014356 ], [ 112.939453, 3.091151 ] ] ], [ [ [ 100.261230, 6.642783 ], [ 101.074219, 6.206090 ], [ 101.156616, 5.692516 ], [ 101.815796, 5.807292 ], [ 102.139893, 6.222473 ], [ 102.370605, 6.124170 ], [ 102.963867, 5.523043 ], [ 103.381348, 4.855628 ], [ 103.441772, 4.182073 ], [ 103.331909, 3.727227 ], [ 103.430786, 3.381824 ], [ 103.502197, 2.789425 ], [ 103.853760, 2.515061 ], [ 104.249268, 1.631249 ], [ 104.232788, 1.290784 ], [ 103.518677, 1.224882 ], [ 102.573853, 1.966167 ], [ 101.392822, 2.761991 ], [ 101.277466, 3.266661 ], [ 100.695190, 3.935500 ], [ 100.557861, 4.768047 ], [ 100.200806, 5.309766 ], [ 100.305176, 6.036773 ], [ 100.085449, 6.462693 ], [ 100.261230, 6.642783 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.214844, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.694314 ], [ 110.571899, 19.254108 ], [ 110.341187, 18.677471 ], [ 109.478760, 18.198044 ], [ 108.654785, 18.505657 ], [ 108.627319, 19.368159 ], [ 109.121704, 19.818390 ], [ 110.214844, 20.102365 ] ] ], [ [ [ 112.939453, 22.350076 ], [ 112.939453, 21.943046 ], [ 112.500000, 21.785006 ], [ 111.846313, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.445557, 20.339476 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.391705 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.605835, 22.350076 ], [ 112.939453, 22.350076 ] ] ], [ [ [ 101.766357, 22.350076 ], [ 101.651001, 22.319589 ], [ 101.700439, 21.943046 ], [ 101.804810, 21.171606 ], [ 101.271973, 21.202337 ], [ 101.184082, 21.437730 ], [ 101.151123, 21.846204 ], [ 100.420532, 21.555284 ], [ 99.986572, 21.744194 ], [ 99.591064, 21.943046 ], [ 99.244995, 22.121266 ], [ 99.321899, 22.350076 ], [ 101.766357, 22.350076 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.665527, 2.004596 ], [ 109.830322, 1.334718 ], [ 110.516968, 0.769020 ], [ 111.159668, 0.977736 ], [ 111.796875, 0.900842 ], [ 112.379150, 1.406109 ], [ 112.500000, 1.433566 ], [ 112.862549, 1.493971 ], [ 112.939453, 1.472006 ], [ 112.939453, -0.439449 ], [ 109.088745, -0.439449 ], [ 109.017334, 0.000000 ], [ 108.951416, 0.411984 ], [ 109.072266, 1.340210 ], [ 109.665527, 2.004596 ] ] ], [ [ [ 95.295410, 5.479300 ], [ 95.938110, 5.435554 ], [ 97.487183, 5.244128 ], [ 98.371582, 4.269724 ], [ 99.146118, 3.590178 ], [ 99.695435, 3.173425 ], [ 100.640259, 2.097920 ], [ 101.661987, 2.081451 ], [ 102.496948, 1.395126 ], [ 103.079224, 0.560294 ], [ 103.837280, 0.104370 ], [ 103.787842, 0.000000 ], [ 103.568115, -0.439449 ], [ 99.920654, -0.439449 ], [ 99.459229, 0.000000 ], [ 99.266968, 0.181274 ], [ 98.970337, 1.043643 ], [ 98.602295, 1.823423 ], [ 97.701416, 2.449205 ], [ 97.179565, 3.305050 ], [ 96.427002, 3.869735 ], [ 95.383301, 4.970560 ], [ 95.295410, 5.479300 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 12, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.294707 ], [ 90.730591, 28.062286 ], [ 91.257935, 28.038046 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.449790 ], [ 92.032471, 26.838776 ], [ 91.219482, 26.809364 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.779943 ], [ 89.741821, 26.716174 ], [ 89.560547, 26.794654 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.119385, 29.453948 ], [ 96.586304, 28.830238 ], [ 96.251221, 28.410728 ], [ 97.327881, 28.260844 ], [ 97.404785, 27.882784 ], [ 97.053223, 27.698120 ], [ 97.135620, 27.083582 ], [ 96.421509, 27.264396 ], [ 95.125122, 26.573790 ], [ 95.158081, 26.002487 ], [ 94.603271, 25.160201 ], [ 94.553833, 24.671978 ], [ 94.108887, 23.850674 ], [ 93.328857, 24.076559 ], [ 93.290405, 23.044353 ], [ 93.059692, 22.700188 ], [ 93.169556, 22.278931 ], [ 92.675171, 22.039822 ], [ 92.147827, 23.624395 ], [ 91.873169, 23.624395 ], [ 91.708374, 22.983681 ], [ 91.159058, 23.503552 ], [ 91.466675, 24.071544 ], [ 91.917114, 24.126702 ], [ 92.378540, 24.976099 ], [ 91.801758, 25.145285 ], [ 90.873413, 25.130366 ], [ 90.000000, 25.259601 ], [ 89.917603, 25.269536 ], [ 89.829712, 25.962984 ], [ 89.560547, 25.992612 ], [ 89.560547, 26.794654 ], [ 89.741821, 26.716174 ], [ 90.000000, 26.779943 ], [ 90.373535, 26.873081 ], [ 91.219482, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.103882, 27.449790 ], [ 91.697388, 27.771051 ], [ 92.504883, 27.897349 ], [ 93.416748, 28.637568 ], [ 94.564819, 29.276816 ], [ 95.405273, 29.032158 ], [ 96.119385, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.560547, 25.992612 ], [ 89.829712, 25.962984 ], [ 89.917603, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.873413, 25.130366 ], [ 91.801758, 25.145285 ], [ 92.378540, 24.976099 ], [ 91.917114, 24.126702 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.708374, 22.983681 ], [ 91.873169, 23.624395 ], [ 92.147827, 23.624395 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.658691, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.698265 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.499878, 22.801503 ], [ 90.587769, 22.390714 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.992612 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 89.560547, 25.992612 ], [ 89.829712, 25.962984 ], [ 89.917603, 25.269536 ], [ 90.000000, 25.259601 ], [ 90.873413, 25.130366 ], [ 91.801758, 25.145285 ], [ 92.378540, 24.976099 ], [ 91.917114, 24.126702 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.708374, 22.983681 ], [ 91.873169, 23.624395 ], [ 92.147827, 23.624395 ], [ 92.675171, 22.039822 ], [ 92.669678, 21.943046 ], [ 92.658691, 21.534847 ], [ 92.043457, 21.534847 ], [ 92.026978, 21.698265 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.499878, 22.801503 ], [ 90.587769, 22.390714 ], [ 90.335083, 21.943046 ], [ 90.274658, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.968519 ], [ 89.846191, 22.039822 ], [ 89.703369, 21.856401 ], [ 89.560547, 21.912471 ], [ 89.560547, 25.992612 ] ] ], [ [ [ 90.016479, 28.294707 ], [ 90.730591, 28.062286 ], [ 91.257935, 28.038046 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.449790 ], [ 92.032471, 26.838776 ], [ 91.219482, 26.809364 ], [ 90.373535, 26.873081 ], [ 90.000000, 26.779943 ], [ 89.741821, 26.716174 ], [ 89.560547, 26.794654 ], [ 89.560547, 28.081674 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.294707 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.915649, 28.333395 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.740705 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.080624 ], [ 97.608032, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.244995, 22.116177 ], [ 99.591064, 21.943046 ], [ 99.986572, 21.744194 ], [ 100.420532, 21.555284 ], [ 101.151123, 21.846204 ], [ 101.173096, 21.534847 ], [ 92.658691, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.169556, 22.278931 ], [ 93.059692, 22.700188 ], [ 93.290405, 23.044353 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.850674 ], [ 94.553833, 24.671978 ], [ 94.603271, 25.160201 ], [ 95.158081, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.421509, 27.264396 ], [ 97.135620, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.404785, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.915649, 28.333395 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.943046 ], [ 111.846313, 21.550175 ], [ 111.736450, 21.534847 ], [ 109.275513, 21.534847 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.726685, 22.791375 ], [ 105.814819, 22.973567 ], [ 105.331421, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.507690, 22.700188 ], [ 102.705688, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.651001, 22.314508 ], [ 101.700439, 21.943046 ], [ 101.755371, 21.534847 ], [ 101.173096, 21.534847 ], [ 101.151123, 21.846204 ], [ 100.420532, 21.555284 ], [ 99.986572, 21.744194 ], [ 99.591064, 21.943046 ], [ 99.244995, 22.116177 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.662720, 24.061512 ], [ 97.608032, 23.895883 ], [ 97.723389, 25.080624 ], [ 98.673706, 25.918526 ], [ 98.712158, 26.740705 ], [ 98.684692, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.915649, 28.333395 ], [ 97.327881, 28.260844 ], [ 96.251221, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.119385, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.416748, 28.637568 ], [ 92.504883, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.038046 ], [ 90.730591, 28.062286 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.560547, 28.081674 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.172852, 22.461802 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 102.826538, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.314508 ], [ 102.172852, 22.461802 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.915649, 28.333395 ], [ 98.245239, 27.746746 ], [ 98.684692, 27.508271 ], [ 98.712158, 26.740705 ], [ 98.673706, 25.918526 ], [ 97.723389, 25.080624 ], [ 97.608032, 23.895883 ], [ 98.662720, 24.061512 ], [ 98.898926, 23.140360 ], [ 99.530640, 22.948277 ], [ 99.244995, 22.116177 ], [ 99.591064, 21.943046 ], [ 99.986572, 21.744194 ], [ 100.420532, 21.555284 ], [ 101.151123, 21.846204 ], [ 101.173096, 21.534847 ], [ 92.658691, 21.534847 ], [ 92.669678, 21.943046 ], [ 92.675171, 22.039822 ], [ 93.169556, 22.278931 ], [ 93.059692, 22.700188 ], [ 93.290405, 23.044353 ], [ 93.328857, 24.076559 ], [ 94.108887, 23.850674 ], [ 94.553833, 24.671978 ], [ 94.603271, 25.160201 ], [ 95.158081, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.421509, 27.264396 ], [ 97.135620, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.404785, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.915649, 28.333395 ] ] ], [ [ [ 102.172852, 22.461802 ], [ 102.557373, 21.943046 ], [ 102.755127, 21.672744 ], [ 102.826538, 21.534847 ], [ 101.755371, 21.534847 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.314508 ], [ 102.172852, 22.461802 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.331421, 23.352343 ], [ 105.814819, 22.973567 ], [ 106.726685, 22.791375 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.045288, 21.810508 ], [ 108.050537, 21.550175 ], [ 108.023071, 21.534847 ], [ 102.826538, 21.534847 ], [ 102.755127, 21.672744 ], [ 102.557373, 21.943046 ], [ 102.172852, 22.461802 ], [ 102.705688, 22.705255 ], [ 103.507690, 22.700188 ], [ 104.479980, 22.816694 ], [ 105.331421, 23.352343 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.939453, 41.310824 ], [ 112.939453, 21.943046 ], [ 111.846313, 21.550175 ], [ 111.736450, 21.534847 ], [ 109.275513, 21.534847 ], [ 108.522949, 21.713576 ], [ 108.050537, 21.550175 ], [ 107.045288, 21.810508 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.726685, 22.791375 ], [ 105.814819, 22.973567 ], [ 105.331421, 23.352343 ], [ 104.479980, 22.816694 ], [ 103.507690, 22.700188 ], [ 102.705688, 22.705255 ], [ 102.172852, 22.461802 ], [ 101.651001, 22.314508 ], [ 101.700439, 21.943046 ], [ 101.755371, 21.534847 ], [ 101.173096, 21.534847 ], [ 101.151123, 21.846204 ], [ 100.420532, 21.555284 ], [ 99.986572, 21.744194 ], [ 99.591064, 21.943046 ], [ 99.244995, 22.116177 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.140360 ], [ 98.662720, 24.061512 ], [ 97.608032, 23.895883 ], [ 97.723389, 25.080624 ], [ 98.673706, 25.918526 ], [ 98.712158, 26.740705 ], [ 98.684692, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.915649, 28.333395 ], [ 97.327881, 28.260844 ], [ 96.251221, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.119385, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.416748, 28.637568 ], [ 92.504883, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.038046 ], [ 90.730591, 28.062286 ], [ 90.016479, 28.294707 ], [ 90.000000, 28.289870 ], [ 89.560547, 28.081674 ], [ 89.560547, 41.310824 ], [ 112.939453, 41.310824 ] ] ] } } ] } ] } , @@ -2245,16 +2215,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.647095, 6.419025 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.185181, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.867310, 4.302591 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.213898 ], [ 112.862549, 1.493971 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.406109 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.350952, 4.313546 ], [ 115.449829, 5.446491 ], [ 116.224365, 6.140555 ], [ 116.724243, 6.920974 ], [ 117.130737, 6.926427 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.582153, 22.350076 ], [ 113.241577, 22.055096 ], [ 112.933960, 21.943046 ], [ 112.500000, 21.785006 ], [ 112.060547, 21.626793 ], [ 112.060547, 22.350076 ], [ 113.582153, 22.350076 ] ] ], [ [ [ 114.329224, 22.350076 ], [ 114.153442, 22.223005 ], [ 114.016113, 22.350076 ], [ 114.329224, 22.350076 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.750732, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.926427 ], [ 117.647095, 6.419025 ], [ 117.691040, 5.987607 ], [ 118.350220, 5.708914 ], [ 119.185181, 5.408211 ], [ 119.113770, 5.014339 ], [ 118.443604, 4.965088 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.302591 ], [ 115.867310, 4.302591 ], [ 115.521240, 3.167940 ], [ 115.136719, 2.822344 ], [ 114.620361, 1.428075 ], [ 113.807373, 1.213898 ], [ 112.862549, 1.493971 ], [ 112.500000, 1.433566 ], [ 112.379150, 1.406109 ], [ 112.060547, 1.131518 ], [ 112.060547, 2.932069 ], [ 112.500000, 3.014356 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.891658 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.873047, 4.346411 ], [ 115.350952, 4.313546 ], [ 115.449829, 5.446491 ], [ 116.224365, 6.140555 ], [ 116.724243, 6.920974 ], [ 117.130737, 6.926427 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.350952, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.603882, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.942993, 22.350076 ], [ 120.750732, 21.973614 ], [ 120.509033, 22.350076 ], [ 120.942993, 22.350076 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.414429, 9.757784 ], [ 126.221924, 9.286465 ], [ 126.375732, 8.412602 ], [ 126.480103, 7.749094 ], [ 126.540527, 7.188101 ], [ 126.199951, 6.271618 ], [ 125.831909, 7.291639 ], [ 125.364990, 6.784626 ], [ 125.683594, 6.047699 ], [ 125.397949, 5.577717 ], [ 124.222412, 6.162401 ], [ 123.942261, 6.882800 ], [ 124.244385, 7.357019 ], [ 123.612671, 7.830731 ], [ 123.299561, 7.416942 ], [ 122.827148, 7.455071 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.188101 ], [ 122.316284, 8.032034 ], [ 122.942505, 8.314777 ], [ 123.486328, 8.689639 ], [ 123.843384, 8.238674 ], [ 124.601440, 8.510403 ], [ 124.766235, 8.961045 ], [ 125.474854, 8.988175 ], [ 125.414429, 9.757784 ] ] ], [ [ [ 120.717773, 18.505657 ], [ 121.322021, 18.500447 ], [ 121.937256, 18.218916 ], [ 122.244873, 18.479609 ], [ 122.338257, 18.224134 ], [ 122.173462, 17.811456 ], [ 122.519531, 17.093542 ], [ 122.255859, 16.262141 ], [ 121.662598, 15.929638 ], [ 121.508789, 15.125159 ], [ 121.728516, 14.328260 ], [ 122.261353, 14.216464 ], [ 122.700806, 14.333582 ], [ 123.953247, 13.779402 ], [ 123.854370, 13.234598 ], [ 124.183960, 12.993853 ], [ 124.079590, 12.533115 ], [ 123.299561, 13.025966 ], [ 122.931519, 13.549881 ], [ 122.673340, 13.186468 ], [ 122.036133, 13.784737 ], [ 121.129761, 13.635310 ], [ 120.629883, 13.854081 ], [ 120.679321, 14.269707 ], [ 120.992432, 14.525098 ], [ 120.695801, 14.753635 ], [ 120.563965, 14.397439 ], [ 120.069580, 14.971320 ], [ 119.921265, 15.406024 ], [ 119.882812, 16.362310 ], [ 120.289307, 16.035255 ], [ 120.393677, 17.596903 ], [ 120.717773, 18.505657 ] ] ], [ [ [ 124.266357, 12.554564 ], [ 125.227661, 12.533115 ], [ 125.502319, 12.162856 ], [ 125.782471, 11.043647 ], [ 125.013428, 11.307708 ], [ 125.035400, 10.973550 ], [ 125.277100, 10.358151 ], [ 124.804688, 10.131117 ], [ 124.760742, 10.838701 ], [ 124.458618, 10.887254 ], [ 124.304810, 11.496174 ], [ 124.892578, 11.415418 ], [ 124.881592, 11.792080 ], [ 124.266357, 12.554564 ] ] ], [ [ [ 124.079590, 11.232286 ], [ 123.986206, 10.277086 ], [ 123.623657, 9.947209 ], [ 123.310547, 9.318990 ], [ 122.997437, 9.020728 ], [ 122.382202, 9.714472 ], [ 122.585449, 9.979671 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.502808, 10.941192 ], [ 123.338013, 10.266276 ], [ 124.079590, 11.232286 ] ] ], [ [ [ 119.514771, 11.366953 ], [ 119.690552, 10.552622 ], [ 119.031372, 10.001310 ], [ 118.504028, 9.313569 ], [ 117.174683, 8.363693 ], [ 117.663574, 9.064127 ], [ 118.388672, 9.681984 ], [ 118.987427, 10.374362 ], [ 119.514771, 11.366953 ] ] ], [ [ [ 121.882324, 11.888853 ], [ 122.486572, 11.582288 ], [ 123.123779, 11.582288 ], [ 123.101807, 11.162235 ], [ 122.640381, 10.741572 ], [ 122.003174, 10.439196 ], [ 121.970215, 10.903436 ], [ 122.041626, 11.415418 ], [ 121.882324, 11.888853 ] ] ], [ [ [ 120.322266, 13.464422 ], [ 121.179199, 13.427024 ], [ 121.530762, 13.068777 ], [ 121.261597, 12.205811 ], [ 120.833130, 12.704651 ], [ 120.322266, 13.464422 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.350952, 4.313546 ], [ 114.873047, 4.346411 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.603882, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.379761, -0.373533 ], [ 132.648926, -0.439449 ], [ 132.269897, -0.439449 ], [ 132.379761, -0.373533 ] ] ], [ [ [ 125.068359, 1.642231 ], [ 125.244141, 1.417092 ], [ 124.436646, 0.428463 ], [ 123.689575, 0.236205 ], [ 122.722778, 0.428463 ], [ 121.058350, 0.379026 ], [ 120.184937, 0.236205 ], [ 120.140991, 0.000000 ], [ 120.058594, -0.439449 ], [ 119.630127, -0.439449 ], [ 119.772949, 0.000000 ], [ 119.827881, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.888062, 1.307260 ], [ 121.668091, 1.010690 ], [ 122.931519, 0.873379 ], [ 124.079590, 0.917319 ], [ 125.068359, 1.642231 ] ] ], [ [ [ 127.935791, 2.174771 ], [ 128.007202, 1.625758 ], [ 128.594971, 1.537901 ], [ 128.688354, 1.131518 ], [ 128.638916, 0.258178 ], [ 128.122559, 0.357053 ], [ 128.029175, 0.000000 ], [ 127.968750, -0.252685 ], [ 128.117065, -0.439449 ], [ 127.809448, -0.439449 ], [ 127.699585, -0.269164 ], [ 127.633667, 0.000000 ], [ 127.402954, 1.010690 ], [ 127.600708, 1.806951 ], [ 127.935791, 2.174771 ] ] ], [ [ [ 117.015381, 4.302591 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.284551 ], [ 117.877808, 1.828913 ], [ 118.998413, 0.900842 ], [ 117.811890, 0.785498 ], [ 117.482300, 0.098877 ], [ 117.482300, 0.000000 ], [ 117.504272, -0.439449 ], [ 112.060547, -0.439449 ], [ 112.060547, 1.131518 ], [ 112.379150, 1.406109 ], [ 112.500000, 1.433566 ], [ 112.862549, 1.493971 ], [ 113.807373, 1.213898 ], [ 114.620361, 1.428075 ], [ 115.136719, 2.822344 ], [ 115.521240, 3.167940 ], [ 115.867310, 4.302591 ], [ 117.015381, 4.302591 ] ] ] ] } } ] } ] } @@ -2265,9 +2235,7 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Taiwan", "sov_a3": "TWN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Taiwan", "adm0_a3": "TWN", "geou_dif": 0, "geounit": "Taiwan", "gu_a3": "TWN", "su_dif": 0, "subunit": "Taiwan", "su_a3": "TWN", "brk_diff": 1, "name": "Taiwan", "name_long": "Taiwan", "brk_a3": "B77", "brk_name": "Taiwan", "abbrev": "Taiwan", "postal": "TW", "note_brk": "Self admin.; Claimed by China", "name_sort": "Taiwan", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 22974347, "gdp_md_est": 712000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "TW", "iso_a3": "TWN", "iso_n3": "158", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "TWN", "adm0_a3_us": "TWN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.497803, 25.294371 ], [ 121.953735, 24.996016 ], [ 121.777954, 24.392130 ], [ 121.179199, 22.791375 ], [ 120.750732, 21.968519 ], [ 120.223389, 22.811631 ], [ 120.108032, 23.553917 ], [ 120.695801, 24.537129 ], [ 121.497803, 25.294371 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.682617, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.659806 ], [ 129.012451, 40.484560 ], [ 128.633423, 40.187267 ], [ 127.968750, 40.023408 ], [ 127.534790, 39.757880 ], [ 127.501831, 39.321550 ], [ 127.386475, 39.210975 ], [ 127.781982, 39.049052 ], [ 128.353271, 38.612578 ], [ 128.204956, 38.367502 ], [ 127.781982, 38.302870 ], [ 127.073364, 38.255436 ], [ 126.683350, 37.805444 ], [ 126.238403, 37.840157 ], [ 126.177979, 37.749001 ], [ 125.689087, 37.939865 ], [ 125.568237, 37.749001 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.948529 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.548165 ], [ 125.222168, 38.664067 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.550648 ], [ 124.738770, 39.660685 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.568067 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.682617, 41.310824 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Korea", "sov_a3": "KOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Korea", "adm0_a3": "KOR", "geou_dif": 0, "geounit": "South Korea", "gu_a3": "KOR", "su_dif": 0, "subunit": "South Korea", "su_a3": "KOR", "brk_diff": 0, "name": "Korea", "name_long": "Republic of Korea", "brk_a3": "KOR", "brk_name": "Republic of Korea", "abbrev": "S.K.", "postal": "KR", "formal_en": "Republic of Korea", "name_sort": "Korea, Rep.", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 48508972, "gdp_md_est": 1335000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "KR", "iso_a3": "KOR", "iso_n3": "410", "un_a3": "410", "wb_a2": "KR", "wb_a3": "KOR", "woe_id": -99, "adm0_a3_is": "KOR", "adm0_a3_us": "KOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 17, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.353271, 38.612578 ], [ 129.215698, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.468384, 35.630512 ], [ 129.094849, 35.079460 ], [ 128.188477, 34.890437 ], [ 127.386475, 34.474864 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.935482 ], [ 126.562500, 35.684072 ], [ 126.117554, 36.725677 ], [ 126.859131, 36.892801 ], [ 126.177979, 37.749001 ], [ 126.238403, 37.840157 ], [ 126.683350, 37.805444 ], [ 127.073364, 38.255436 ], [ 127.781982, 38.302870 ], [ 128.204956, 38.367502 ], [ 128.353271, 38.612578 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "North Korea", "sov_a3": "PRK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "North Korea", "adm0_a3": "PRK", "geou_dif": 0, "geounit": "North Korea", "gu_a3": "PRK", "su_dif": 0, "subunit": "North Korea", "su_a3": "PRK", "brk_diff": 0, "name": "Dem. Rep. Korea", "name_long": "Dem. Rep. Korea", "brk_a3": "PRK", "brk_name": "Dem. Rep. Korea", "abbrev": "N.K.", "postal": "KP", "formal_en": "Democratic People's Republic of Korea", "name_sort": "Korea, Dem. Rep.", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 22665345, "gdp_md_est": 40000, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KP", "iso_a3": "PRK", "iso_n3": "408", "un_a3": "408", "wb_a2": "KP", "wb_a3": "PRK", "woe_id": -99, "adm0_a3_is": "PRK", "adm0_a3_us": "PRK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 15, "long_len": 15, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.682617, 41.310824 ], [ 129.699097, 40.979898 ], [ 129.704590, 40.880295 ], [ 129.188232, 40.659806 ], [ 129.012451, 40.484560 ], [ 128.633423, 40.187267 ], [ 127.968750, 40.023408 ], [ 127.534790, 39.757880 ], [ 127.501831, 39.321550 ], [ 127.386475, 39.210975 ], [ 127.781982, 39.049052 ], [ 128.353271, 38.612578 ], [ 129.215698, 37.431251 ], [ 129.462891, 36.782892 ], [ 129.468384, 35.630512 ], [ 129.094849, 35.079460 ], [ 128.188477, 34.890437 ], [ 127.386475, 34.474864 ], [ 126.485596, 34.388779 ], [ 126.375732, 34.935482 ], [ 126.562500, 35.684072 ], [ 126.117554, 36.725677 ], [ 126.859131, 36.892801 ], [ 126.177979, 37.749001 ], [ 125.689087, 37.939865 ], [ 125.568237, 37.749001 ], [ 125.277100, 37.666429 ], [ 125.244141, 37.857507 ], [ 124.980469, 37.948529 ], [ 124.711304, 38.108628 ], [ 124.985962, 38.548165 ], [ 125.222168, 38.664067 ], [ 125.134277, 38.848264 ], [ 125.386963, 39.385264 ], [ 125.321045, 39.550648 ], [ 124.738770, 39.660685 ], [ 124.266357, 39.926588 ], [ 125.079346, 40.568067 ], [ 125.919800, 40.979898 ], [ 126.183472, 41.108330 ], [ 126.375732, 41.310824 ], [ 129.682617, 41.310824 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Japan", "sov_a3": "JPN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Japan", "adm0_a3": "JPN", "geou_dif": 0, "geounit": "Japan", "gu_a3": "JPN", "su_dif": 0, "subunit": "Japan", "su_a3": "JPN", "brk_diff": 0, "name": "Japan", "name_long": "Japan", "brk_a3": "JPN", "brk_name": "Japan", "abbrev": "Japan", "postal": "J", "formal_en": "Japan", "name_sort": "Japan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 127078679, "gdp_md_est": 4329000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "JP", "iso_a3": "JPN", "iso_n3": "392", "un_a3": "392", "wb_a2": "JP", "wb_a3": "JPN", "woe_id": -99, "adm0_a3_is": "JPN", "adm0_a3_us": "JPN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.609985, 35.728677 ], [ 135.000000, 35.657296 ], [ 135.439453, 35.572449 ], [ 135.439453, 33.669497 ], [ 135.120850, 33.847608 ], [ 135.082397, 34.597042 ], [ 135.000000, 34.587997 ], [ 133.341064, 34.375179 ], [ 132.160034, 33.902336 ], [ 130.989990, 33.884097 ], [ 132.000732, 33.146750 ], [ 131.336060, 31.447410 ], [ 130.687866, 31.029401 ], [ 130.204468, 31.419288 ], [ 130.451660, 32.319634 ], [ 129.814453, 32.606989 ], [ 129.407959, 33.293804 ], [ 130.352783, 33.600894 ], [ 130.880127, 34.229971 ], [ 131.885376, 34.750640 ], [ 132.621460, 35.433820 ], [ 134.609985, 35.728677 ] ] ], [ [ [ 133.906860, 34.361576 ], [ 134.637451, 34.148181 ], [ 134.769287, 33.806538 ], [ 134.203491, 33.201924 ], [ 133.796997, 33.523079 ], [ 133.280640, 33.289212 ], [ 133.016968, 32.704111 ], [ 132.363281, 32.990236 ], [ 132.374268, 33.463525 ], [ 132.923584, 34.057211 ], [ 133.494873, 33.943360 ], [ 133.906860, 34.361576 ] ] ] ] } } ] } @@ -2433,9 +2401,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Solomon Islands", "sov_a3": "SLB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Solomon Islands", "adm0_a3": "SLB", "geou_dif": 0, "geounit": "Solomon Islands", "gu_a3": "SLB", "su_dif": 0, "subunit": "Solomon Islands", "su_a3": "SLB", "brk_diff": 0, "name": "Solomon Is.", "name_long": "Solomon Islands", "brk_a3": "SLB", "brk_name": "Solomon Is.", "abbrev": "S. Is.", "postal": "SB", "name_sort": "Solomon Islands", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 595613, "gdp_md_est": 1078, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SB", "iso_a3": "SLB", "iso_n3": "090", "un_a3": "090", "wb_a2": "SB", "wb_a3": "SLB", "woe_id": -99, "adm0_a3_is": "SLB", "adm0_a3_us": "SLB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 161.323242, -10.206813 ], [ 161.916504, -10.450000 ], [ 162.119751, -10.482410 ], [ 162.399902, -10.827911 ], [ 161.702271, -10.822515 ], [ 161.323242, -10.206813 ] ] ], [ [ [ 159.702759, -9.243093 ], [ 160.361938, -9.400291 ], [ 160.691528, -9.611582 ], [ 160.856323, -9.876864 ], [ 160.466309, -9.898510 ], [ 159.851074, -9.795678 ], [ 159.642334, -9.638661 ], [ 159.702759, -9.243093 ] ] ], [ [ [ 160.922241, -8.320212 ], [ 161.279297, -9.123792 ], [ 161.680298, -9.600750 ], [ 161.531982, -9.784851 ], [ 160.790405, -8.917634 ], [ 160.581665, -8.320212 ], [ 160.922241, -8.320212 ] ] ], [ [ [ 158.362427, -7.318882 ], [ 158.823853, -7.563992 ], [ 159.642334, -8.021155 ], [ 159.878540, -8.336518 ], [ 159.916992, -8.537565 ], [ 159.136963, -8.113615 ], [ 158.587646, -7.754537 ], [ 158.214111, -7.422389 ], [ 158.362427, -7.318882 ] ] ], [ [ [ 157.060547, -6.964597 ], [ 157.137451, -7.024572 ], [ 157.500000, -7.318882 ], [ 157.538452, -7.351571 ], [ 157.500000, -7.362467 ], [ 157.340698, -7.406048 ], [ 157.060547, -7.258945 ], [ 157.060547, -6.964597 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.031372, -20.107523 ], [ 164.459839, -20.122998 ], [ 165.020142, -20.463043 ], [ 165.459595, -20.802337 ], [ 165.783691, -21.079375 ], [ 166.602173, -21.703369 ], [ 166.876831, -21.943046 ], [ 167.124023, -22.161971 ], [ 166.821899, -22.350076 ], [ 166.635132, -22.350076 ], [ 166.190186, -22.131443 ], [ 165.893555, -21.943046 ], [ 165.476074, -21.682953 ], [ 164.833374, -21.151115 ], [ 164.168701, -20.447602 ], [ 164.031372, -20.107523 ] ] ], [ [ [ 167.217407, -15.892659 ], [ 167.843628, -16.467695 ], [ 167.514038, -16.599346 ], [ 167.178955, -16.161921 ], [ 167.217407, -15.892659 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.107544, -14.934170 ], [ 167.272339, -15.739388 ], [ 167.003174, -15.617747 ], [ 166.794434, -15.670643 ], [ 166.651611, -15.395432 ], [ 166.629639, -14.626109 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Vanuatu", "sov_a3": "VUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vanuatu", "adm0_a3": "VUT", "geou_dif": 0, "geounit": "Vanuatu", "gu_a3": "VUT", "su_dif": 0, "subunit": "Vanuatu", "su_a3": "VUT", "brk_diff": 0, "name": "Vanuatu", "name_long": "Vanuatu", "brk_a3": "VUT", "brk_name": "Vanuatu", "abbrev": "Van.", "postal": "VU", "formal_en": "Republic of Vanuatu", "name_sort": "Vanuatu", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 218519, "gdp_md_est": 988.5, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VU", "iso_a3": "VUT", "iso_n3": "548", "un_a3": "548", "wb_a2": "VU", "wb_a3": "VUT", "woe_id": -99, "adm0_a3_is": "VUT", "adm0_a3_us": "VUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 2, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.217407, -15.892659 ], [ 167.843628, -16.467695 ], [ 167.514038, -16.599346 ], [ 167.178955, -16.161921 ], [ 167.217407, -15.892659 ] ] ], [ [ [ 166.629639, -14.626109 ], [ 167.107544, -14.934170 ], [ 167.272339, -15.739388 ], [ 167.003174, -15.617747 ], [ 166.794434, -15.670643 ], [ 166.651611, -15.395432 ], [ 166.629639, -14.626109 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 178.374023, -17.340152 ], [ 178.720093, -17.628317 ], [ 178.555298, -18.151072 ], [ 177.934570, -18.286734 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.126831, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ], [ 180.082397, -16.504566 ], [ 180.000000, -16.557227 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.599243, -16.641455 ], [ 179.099121, -16.436085 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Fiji", "sov_a3": "FJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Fiji", "adm0_a3": "FJI", "geou_dif": 0, "geounit": "Fiji", "gu_a3": "FJI", "su_dif": 0, "subunit": "Fiji", "su_a3": "FJI", "brk_diff": 0, "name": "Fiji", "name_long": "Fiji", "brk_a3": "FJI", "brk_name": "Fiji", "abbrev": "Fiji", "postal": "FJ", "formal_en": "Republic of Fiji", "name_sort": "Fiji", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 944720, "gdp_md_est": 3579, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "FJ", "iso_a3": "FJI", "iso_n3": "242", "un_a3": "242", "wb_a2": "FJ", "wb_a3": "FJI", "woe_id": -99, "adm0_a3_is": "FJI", "adm0_a3_us": "FJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Oceania", "region_un": "Oceania", "subregion": "Melanesia", "region_wb": "East Asia & Pacific", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 164.031372, -20.107523 ], [ 164.459839, -20.122998 ], [ 165.020142, -20.463043 ], [ 165.459595, -20.802337 ], [ 165.783691, -21.079375 ], [ 166.602173, -21.703369 ], [ 166.876831, -21.943046 ], [ 167.124023, -22.161971 ], [ 166.821899, -22.350076 ], [ 166.635132, -22.350076 ], [ 166.190186, -22.131443 ], [ 165.893555, -21.943046 ], [ 165.476074, -21.682953 ], [ 164.833374, -21.151115 ], [ 164.168701, -20.447602 ], [ 164.031372, -20.107523 ] ] ], [ [ [ 178.374023, -17.340152 ], [ 178.720093, -17.628317 ], [ 178.555298, -18.151072 ], [ 177.934570, -18.286734 ], [ 177.385254, -18.166730 ], [ 177.286377, -17.727759 ], [ 177.670898, -17.382095 ], [ 178.126831, -17.507867 ], [ 178.374023, -17.340152 ] ] ], [ [ [ 180.208740, -16.024696 ], [ 180.082397, -16.504566 ], [ 180.000000, -16.557227 ], [ 179.362793, -16.804541 ], [ 178.725586, -17.014768 ], [ 178.599243, -16.641455 ], [ 179.099121, -16.436085 ], [ 179.412231, -16.378121 ], [ 180.000000, -16.066929 ], [ 180.208740, -16.024696 ] ] ] ] } } ] } ] } , @@ -2659,25 +2627,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.998535, 61.710706 ], [ -140.998535, 60.306546 ], [ -140.012512, 60.276600 ], [ -139.040222, 60.000359 ], [ -138.339844, 59.562158 ], [ -137.452698, 58.904646 ], [ -136.480408, 59.463222 ], [ -135.475159, 59.788198 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.270091 ], [ -134.780273, 59.170298 ], [ -134.780273, 58.170702 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.798767, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.825500, 59.727331 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.458572 ], [ -146.250000, 60.574825 ], [ -146.469727, 60.654340 ], [ -146.469727, 61.710706 ], [ -140.998535, 61.710706 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 61.710706 ], [ -134.780273, 59.170298 ], [ -134.945068, 59.270091 ], [ -135.000000, 59.324783 ], [ -135.475159, 59.788198 ], [ -136.480408, 59.463222 ], [ -137.452698, 58.904646 ], [ -138.339844, 59.562158 ], [ -139.040222, 60.000359 ], [ -140.012512, 60.276600 ], [ -140.998535, 60.306546 ], [ -140.998535, 61.710706 ], [ -134.780273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.998535, 61.710706 ], [ -140.998535, 60.306546 ], [ -140.012512, 60.276600 ], [ -139.040222, 60.000359 ], [ -138.339844, 59.562158 ], [ -137.452698, 58.904646 ], [ -136.480408, 59.463222 ], [ -135.475159, 59.788198 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.270091 ], [ -134.780273, 59.170298 ], [ -134.780273, 58.170702 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -136.628723, 58.212685 ], [ -137.798767, 58.499435 ], [ -139.866943, 59.537103 ], [ -140.825500, 59.727331 ], [ -142.575073, 60.084023 ], [ -143.959351, 59.998986 ], [ -145.925903, 60.458572 ], [ -146.250000, 60.574825 ], [ -146.469727, 60.654340 ], [ -146.469727, 61.710706 ], [ -140.998535, 61.710706 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.990295, 66.600676 ], [ -140.990295, 66.513260 ], [ -140.998535, 61.606396 ], [ -140.998535, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.990295, 66.600676 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -134.780273, 66.600676 ], [ -134.780273, 61.501734 ], [ -140.998535, 61.501734 ], [ -140.998535, 61.606396 ], [ -140.990295, 66.513260 ], [ -140.990295, 66.600676 ], [ -134.780273, 66.600676 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.990295, 66.600676 ], [ -140.990295, 66.513260 ], [ -140.998535, 61.606396 ], [ -140.998535, 61.501734 ], [ -146.469727, 61.501734 ], [ -146.469727, 66.600676 ], [ -140.990295, 66.600676 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 70.158085 ], [ -146.250000, 70.146895 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.989595 ], [ -143.588562, 70.152491 ], [ -142.072449, 69.851924 ], [ -140.984802, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.158085 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.984802, 69.712393 ], [ -139.119873, 69.471042 ], [ -137.546082, 68.989925 ], [ -136.502380, 68.898154 ], [ -135.626221, 69.315410 ], [ -135.000000, 69.476821 ], [ -134.780273, 69.533557 ], [ -134.780273, 66.425537 ], [ -140.993042, 66.425537 ], [ -140.993042, 66.513260 ], [ -140.984802, 69.712393 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -146.469727, 70.158085 ], [ -146.250000, 70.146895 ], [ -145.689697, 70.119827 ], [ -144.920654, 69.989595 ], [ -143.588562, 70.152491 ], [ -142.072449, 69.851924 ], [ -140.984802, 69.712393 ], [ -140.993042, 66.513260 ], [ -140.993042, 66.425537 ], [ -146.469727, 66.425537 ], [ -146.469727, 70.158085 ] ] ] } } ] } ] } , @@ -2731,25 +2699,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.565735, 48.379970 ], [ -123.750000, 48.188063 ], [ -123.530273, 48.136767 ], [ -123.530273, 40.813809 ], [ -124.266357, 40.813809 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.214172, 42.000325 ], [ -124.532776, 42.765162 ], [ -124.142761, 43.707594 ], [ -123.898315, 45.523668 ], [ -124.079590, 46.863947 ], [ -124.395447, 47.720849 ], [ -124.686584, 48.184401 ], [ -124.565735, 48.379970 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.931274, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.750000, 48.830374 ], [ -123.530273, 48.534795 ], [ -123.530273, 48.503867 ], [ -123.750000, 48.443778 ], [ -124.013672, 48.370848 ], [ -125.656128, 48.824949 ], [ -125.738525, 48.922499 ], [ -125.859375, 49.066668 ], [ -123.931274, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -124.565735, 48.379970 ], [ -123.750000, 48.188063 ], [ -123.530273, 48.136767 ], [ -123.530273, 40.813809 ], [ -124.266357, 40.813809 ], [ -124.222412, 40.979898 ], [ -124.178467, 41.141433 ], [ -124.214172, 42.000325 ], [ -124.532776, 42.765162 ], [ -124.142761, 43.707594 ], [ -123.898315, 45.523668 ], [ -124.079590, 46.863947 ], [ -124.395447, 47.720849 ], [ -124.686584, 48.184401 ], [ -124.565735, 48.379970 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.006714, 55.899956 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.536804, 54.802268 ], [ -131.086121, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.058411, 55.776573 ], [ -132.096863, 55.899956 ], [ -130.006714, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -128.358765, 50.771208 ], [ -127.309570, 50.551835 ], [ -126.694336, 50.401515 ], [ -125.755005, 50.294603 ], [ -125.414429, 49.949453 ], [ -124.920044, 49.475263 ], [ -123.923035, 49.063069 ], [ -123.818665, 48.922499 ], [ -123.711548, 48.777913 ], [ -125.485840, 48.777913 ], [ -125.656128, 48.824949 ], [ -125.738525, 48.922499 ], [ -125.955505, 49.179908 ], [ -126.850891, 49.530557 ], [ -127.029419, 49.814949 ], [ -128.059387, 49.995381 ], [ -128.443909, 50.539617 ], [ -128.358765, 50.771208 ] ] ], [ [ [ -123.530273, 55.899956 ], [ -123.530273, 49.285723 ], [ -123.750000, 49.398463 ], [ -124.909058, 49.984786 ], [ -125.625916, 50.417269 ], [ -127.435913, 50.830228 ], [ -127.993469, 51.715118 ], [ -127.850647, 52.330304 ], [ -129.130554, 52.754581 ], [ -129.306335, 53.561520 ], [ -130.514832, 54.287675 ], [ -130.536804, 54.802268 ], [ -129.979248, 55.285372 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.899956 ], [ -123.530273, 55.899956 ] ] ], [ [ [ -133.179016, 54.170474 ], [ -132.709351, 54.040038 ], [ -131.750793, 54.120602 ], [ -132.050171, 52.985030 ], [ -131.179504, 52.180669 ], [ -131.577759, 52.182353 ], [ -132.179260, 52.639730 ], [ -132.550049, 53.100621 ], [ -133.055420, 53.411169 ], [ -133.239441, 53.850906 ], [ -133.179016, 54.170474 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.006714, 55.899956 ], [ -130.001221, 55.776573 ], [ -129.979248, 55.285372 ], [ -130.536804, 54.802268 ], [ -131.086121, 55.178868 ], [ -131.967773, 55.497527 ], [ -132.058411, 55.776573 ], [ -132.096863, 55.899956 ], [ -130.006714, 55.899956 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 59.539888 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.270091 ], [ -134.272156, 58.860644 ], [ -133.354797, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.706848, 56.551914 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.995728, 55.652798 ], [ -132.017212, 55.652798 ], [ -132.058411, 55.776573 ], [ -132.250671, 56.369814 ], [ -133.538818, 57.179436 ], [ -134.077148, 58.122869 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.190976 ], [ -135.219727, 59.539888 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.530273, 61.710706 ], [ -123.530273, 55.652798 ], [ -129.995728, 55.652798 ], [ -130.001221, 55.776573 ], [ -130.006714, 55.915352 ], [ -131.706848, 56.551914 ], [ -132.731323, 57.692406 ], [ -133.354797, 58.410345 ], [ -134.272156, 58.860644 ], [ -134.945068, 59.270091 ], [ -135.000000, 59.324783 ], [ -135.219727, 59.539888 ], [ -135.219727, 61.710706 ], [ -123.530273, 61.710706 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -135.219727, 59.539888 ], [ -135.000000, 59.324783 ], [ -134.945068, 59.270091 ], [ -134.272156, 58.860644 ], [ -133.354797, 58.410345 ], [ -132.731323, 57.692406 ], [ -131.706848, 56.551914 ], [ -130.006714, 55.915352 ], [ -130.001221, 55.776573 ], [ -129.995728, 55.652798 ], [ -132.017212, 55.652798 ], [ -132.058411, 55.776573 ], [ -132.250671, 56.369814 ], [ -133.538818, 57.179436 ], [ -134.077148, 58.122869 ], [ -135.000000, 58.185185 ], [ -135.038452, 58.188080 ], [ -135.219727, 58.190976 ], [ -135.219727, 59.539888 ] ] ] } } ] } ] } , @@ -2837,17 +2805,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 44.988113 ], [ -123.898315, 45.523668 ], [ -123.969727, 46.056079 ], [ -123.969727, 48.239309 ], [ -123.750000, 48.188063 ], [ -123.121033, 48.039529 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.359293 ], [ -122.500305, 48.180739 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.931274, 49.066668 ], [ -123.923035, 49.063069 ], [ -123.750000, 48.830374 ], [ -123.511047, 48.509326 ], [ -123.750000, 48.443778 ], [ -123.969727, 48.383618 ], [ -123.969727, 49.066668 ], [ -123.931274, 49.066668 ] ] ], [ [ [ -112.280273, 49.066668 ], [ -112.280273, 49.000042 ], [ -122.840881, 49.000042 ], [ -122.975464, 49.001844 ], [ -123.101807, 49.066668 ], [ -112.280273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 40.813809 ], [ -123.969727, 40.813809 ], [ -123.969727, 44.988113 ], [ -123.898315, 45.523668 ], [ -123.969727, 46.056079 ], [ -123.969727, 48.239309 ], [ -123.750000, 48.188063 ], [ -123.121033, 48.039529 ], [ -122.588196, 47.096305 ], [ -122.341003, 47.359293 ], [ -122.500305, 48.180739 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ], [ -122.747498, 48.777913 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -123.969727, 49.082861 ], [ -123.923035, 49.063069 ], [ -123.711548, 48.777913 ], [ -123.969727, 48.777913 ], [ -123.969727, 49.082861 ] ] ], [ [ [ -112.280273, 55.899956 ], [ -112.280273, 49.000042 ], [ -112.500000, 49.000042 ], [ -122.975464, 49.001844 ], [ -123.750000, 49.398463 ], [ -123.969727, 49.509160 ], [ -123.969727, 55.899956 ], [ -112.280273, 55.899956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.280273, 49.000042 ], [ -112.280273, 48.777913 ], [ -122.747498, 48.777913 ], [ -122.807922, 48.922499 ], [ -122.840881, 49.000042 ], [ -112.280273, 49.000042 ] ] ] } } ] } ] } , @@ -2953,17 +2921,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.066668 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 49.066668 ], [ -101.030273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 40.813809 ], [ -112.719727, 40.813809 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 55.899956 ], [ -101.030273, 49.000042 ], [ -112.719727, 49.000042 ], [ -112.719727, 55.899956 ], [ -101.030273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 49.000042 ], [ -101.030273, 48.777913 ], [ -112.719727, 48.777913 ], [ -112.719727, 49.000042 ], [ -101.030273, 49.000042 ] ] ] } } ] } ] } , @@ -3053,10 +3021,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.780273, 17.816686 ], [ -89.780273, 14.091293 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.096130, 13.734049 ], [ -90.609741, 13.910074 ], [ -91.233215, 13.928736 ], [ -91.689148, 14.125922 ], [ -92.227478, 14.538391 ], [ -92.202759, 14.830646 ], [ -92.087402, 15.064167 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.464172, 16.069568 ], [ -90.439453, 16.409740 ], [ -90.601501, 16.470329 ], [ -90.711365, 16.686186 ], [ -91.082153, 16.917567 ], [ -91.452942, 17.250990 ], [ -91.002502, 17.253613 ], [ -91.002502, 17.816686 ], [ -90.000000, 17.819301 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -97.775574, 22.146708 ], [ -97.712402, 21.943046 ], [ -97.698669, 21.899730 ], [ -97.388306, 21.412162 ], [ -97.190552, 20.635355 ], [ -96.525879, 19.890723 ], [ -96.292419, 19.321511 ], [ -95.899658, 18.828316 ], [ -94.839478, 18.562947 ], [ -94.424744, 18.143242 ], [ -93.548584, 18.424896 ], [ -92.785034, 18.523888 ], [ -92.037964, 18.703489 ], [ -91.408997, 18.875103 ], [ -90.771790, 19.285221 ], [ -90.532837, 19.867477 ], [ -90.450439, 20.707308 ], [ -90.277405, 20.999907 ], [ -90.000000, 21.107563 ], [ -89.780273, 21.192094 ], [ -89.780273, 17.816686 ], [ -90.000000, 17.819301 ], [ -91.002502, 17.816686 ], [ -91.002502, 17.253613 ], [ -91.452942, 17.250990 ], [ -91.082153, 16.917567 ], [ -90.711365, 16.686186 ], [ -90.601501, 16.470329 ], [ -90.439453, 16.409740 ], [ -90.464172, 16.069568 ], [ -91.746826, 16.066929 ], [ -92.230225, 15.252389 ], [ -92.087402, 15.064167 ], [ -92.202759, 14.830646 ], [ -92.227478, 14.538391 ], [ -93.359070, 15.615101 ], [ -93.875427, 15.940202 ], [ -94.691162, 16.201488 ], [ -95.251465, 16.127624 ], [ -96.053467, 15.752606 ], [ -96.556091, 15.654776 ], [ -97.264709, 15.916432 ], [ -98.011780, 16.106514 ], [ -98.948364, 16.565125 ], [ -99.698181, 16.707232 ], [ -100.829773, 17.172283 ], [ -101.250000, 17.413546 ], [ -101.469727, 17.536678 ], [ -101.469727, 22.146708 ], [ -97.775574, 22.146708 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.780273, 17.816686 ], [ -89.780273, 14.091293 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.096130, 13.734049 ], [ -90.609741, 13.910074 ], [ -91.233215, 13.928736 ], [ -91.689148, 14.125922 ], [ -92.227478, 14.538391 ], [ -92.202759, 14.830646 ], [ -92.087402, 15.064167 ], [ -92.230225, 15.252389 ], [ -91.746826, 16.066929 ], [ -90.464172, 16.069568 ], [ -90.439453, 16.409740 ], [ -90.601501, 16.470329 ], [ -90.711365, 16.686186 ], [ -91.082153, 16.917567 ], [ -91.452942, 17.250990 ], [ -91.002502, 17.253613 ], [ -91.002502, 17.816686 ], [ -90.000000, 17.819301 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 14.091293 ], [ -89.780273, 13.517838 ], [ -89.813232, 13.520508 ], [ -90.000000, 13.662001 ], [ -90.096130, 13.734049 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.780273, 14.091293 ] ] ] } } ] } ] } @@ -3077,17 +3045,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713135, 49.066668 ], [ -94.666443, 48.922499 ], [ -94.638977, 48.839413 ], [ -94.328613, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.609253, 48.449244 ], [ -91.639709, 48.140432 ], [ -90.829468, 48.270397 ], [ -90.000000, 48.094592 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.158081, 49.000042 ], [ -95.158081, 49.066668 ], [ -94.713135, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -89.780273, 49.066668 ], [ -89.780273, 48.048710 ], [ -90.000000, 48.094592 ], [ -90.829468, 48.270397 ], [ -91.639709, 48.140432 ], [ -92.609253, 48.449244 ], [ -93.630981, 48.609306 ], [ -94.328613, 48.671013 ], [ -94.638977, 48.839413 ], [ -94.666443, 48.922499 ], [ -94.713135, 49.066668 ], [ -89.780273, 49.066668 ] ] ], [ [ [ -95.158081, 49.066668 ], [ -95.158081, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 49.066668 ], [ -95.158081, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.713135, 49.066668 ], [ -94.666443, 48.922499 ], [ -94.638977, 48.839413 ], [ -94.328613, 48.671013 ], [ -93.630981, 48.609306 ], [ -92.609253, 48.449244 ], [ -91.639709, 48.140432 ], [ -90.829468, 48.270397 ], [ -90.000000, 48.094592 ], [ -89.780273, 48.048710 ], [ -89.780273, 40.813809 ], [ -101.469727, 40.813809 ], [ -101.469727, 49.000042 ], [ -95.158081, 49.000042 ], [ -95.158081, 49.066668 ], [ -94.713135, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.666443, 48.922499 ], [ -94.638977, 48.839413 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.158081, 49.000042 ], [ -95.155334, 49.384161 ], [ -94.817505, 49.389524 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.780273, 55.899956 ], [ -89.780273, 48.777913 ], [ -94.526367, 48.777913 ], [ -94.638977, 48.839413 ], [ -94.666443, 48.922499 ], [ -94.817505, 49.389524 ], [ -95.155334, 49.384161 ], [ -95.158081, 49.000042 ], [ -101.469727, 49.000042 ], [ -101.469727, 55.899956 ], [ -89.780273, 55.899956 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -94.817505, 49.389524 ], [ -94.666443, 48.922499 ], [ -94.638977, 48.839413 ], [ -94.526367, 48.777913 ], [ -101.469727, 48.777913 ], [ -101.469727, 49.000042 ], [ -95.158081, 49.000042 ], [ -95.155334, 49.384161 ], [ -94.817505, 49.389524 ] ] ] } } ] } ] } , @@ -3205,21 +3173,21 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.014768 ], [ -89.228210, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.345113 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.873124 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.424040 ], [ -89.588013, 14.362852 ], [ -89.533081, 14.245749 ], [ -89.722595, 14.133912 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.096130, 13.734049 ], [ -90.219727, 13.776734 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Mexico", "sov_a3": "MEX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mexico", "adm0_a3": "MEX", "geou_dif": 0, "geounit": "Mexico", "gu_a3": "MEX", "su_dif": 0, "subunit": "Mexico", "su_a3": "MEX", "brk_diff": 0, "name": "Mexico", "name_long": "Mexico", "brk_a3": "MEX", "brk_name": "Mexico", "abbrev": "Mex.", "postal": "MX", "formal_en": "United Mexican States", "name_sort": "Mexico", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 111211789, "gdp_md_est": 1563000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MX", "iso_a3": "MEX", "iso_n3": "484", "un_a3": "484", "wb_a2": "MX", "wb_a3": "MEX", "woe_id": -99, "adm0_a3_is": "MEX", "adm0_a3_us": "MEX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -87.052917, 21.542511 ], [ -86.811218, 21.330315 ], [ -86.846924, 20.851112 ], [ -87.382507, 20.254467 ], [ -87.621460, 19.647761 ], [ -87.437439, 19.471771 ], [ -87.585754, 19.041349 ], [ -87.838440, 18.260653 ], [ -88.091125, 18.516075 ], [ -88.489380, 18.487424 ], [ -88.849182, 17.882045 ], [ -89.030457, 18.002244 ], [ -89.151306, 17.955219 ], [ -89.143066, 17.808841 ], [ -90.000000, 17.819301 ], [ -90.219727, 17.819301 ], [ -90.219727, 21.022983 ], [ -90.000000, 21.107563 ], [ -89.601746, 21.261221 ], [ -88.544312, 21.493964 ], [ -87.657166, 21.458181 ], [ -87.052917, 21.542511 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guatemala", "sov_a3": "GTM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guatemala", "adm0_a3": "GTM", "geou_dif": 0, "geounit": "Guatemala", "gu_a3": "GTM", "su_dif": 0, "subunit": "Guatemala", "su_a3": "GTM", "brk_diff": 0, "name": "Guatemala", "name_long": "Guatemala", "brk_a3": "GTM", "brk_name": "Guatemala", "abbrev": "Guat.", "postal": "GT", "formal_en": "Republic of Guatemala", "name_sort": "Guatemala", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 13276517, "gdp_md_est": 68580, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GT", "iso_a3": "GTM", "iso_n3": "320", "un_a3": "320", "wb_a2": "GT", "wb_a3": "GTM", "woe_id": -99, "adm0_a3_is": "GTM", "adm0_a3_us": "GTM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -90.000000, 17.819301 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.014768 ], [ -89.228210, 15.887376 ], [ -88.931580, 15.887376 ], [ -88.604736, 15.707663 ], [ -88.519592, 15.855674 ], [ -88.225708, 15.728814 ], [ -88.681641, 15.345113 ], [ -89.154053, 15.066819 ], [ -89.225464, 14.873124 ], [ -89.145813, 14.679254 ], [ -89.354553, 14.424040 ], [ -89.588013, 14.362852 ], [ -89.533081, 14.245749 ], [ -89.722595, 14.133912 ], [ -90.000000, 13.928736 ], [ -90.065918, 13.880746 ], [ -90.096130, 13.734049 ], [ -90.219727, 13.776734 ], [ -90.219727, 17.819301 ], [ -90.000000, 17.819301 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Belize", "sov_a3": "BLZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belize", "adm0_a3": "BLZ", "geou_dif": 0, "geounit": "Belize", "gu_a3": "BLZ", "su_dif": 0, "subunit": "Belize", "su_a3": "BLZ", "brk_diff": 0, "name": "Belize", "name_long": "Belize", "brk_a3": "BLZ", "brk_name": "Belize", "abbrev": "Belize", "postal": "BZ", "formal_en": "Belize", "name_sort": "Belize", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 307899, "gdp_md_est": 2536, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BZ", "iso_a3": "BLZ", "iso_n3": "084", "un_a3": "084", "wb_a2": "BZ", "wb_a3": "BLZ", "woe_id": -99, "adm0_a3_is": "BLZ", "adm0_a3_us": "BLZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.299866, 18.500447 ], [ -88.297119, 18.354526 ], [ -88.107605, 18.349312 ], [ -88.124084, 18.077979 ], [ -88.286133, 17.644022 ], [ -88.198242, 17.489531 ], [ -88.302612, 17.132916 ], [ -88.239441, 17.035777 ], [ -88.354797, 16.530898 ], [ -88.552551, 16.264777 ], [ -88.731079, 16.233135 ], [ -88.931580, 15.887376 ], [ -89.228210, 15.887376 ], [ -89.151306, 17.014768 ], [ -89.143066, 17.808841 ], [ -89.151306, 17.955219 ], [ -89.030457, 18.002244 ], [ -88.849182, 17.882045 ], [ -88.489380, 18.487424 ], [ -88.299866, 18.500447 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "El Salvador", "sov_a3": "SLV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "El Salvador", "adm0_a3": "SLV", "geou_dif": 0, "geounit": "El Salvador", "gu_a3": "SLV", "su_dif": 0, "subunit": "El Salvador", "su_a3": "SLV", "brk_diff": 0, "name": "El Salvador", "name_long": "El Salvador", "brk_a3": "SLV", "brk_name": "El Salvador", "abbrev": "El. S.", "postal": "SV", "formal_en": "Republic of El Salvador", "name_sort": "El Salvador", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 6, "mapcolor13": 8, "pop_est": 7185218, "gdp_md_est": 43630, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SV", "iso_a3": "SLV", "iso_n3": "222", "un_a3": "222", "wb_a2": "SV", "wb_a3": "SLV", "woe_id": -99, "adm0_a3_is": "SLV", "adm0_a3_us": "SLV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -89.354553, 14.424040 ], [ -89.057922, 14.338904 ], [ -88.843689, 14.139239 ], [ -88.541565, 13.979381 ], [ -88.503113, 13.846080 ], [ -88.066406, 13.963389 ], [ -87.860413, 13.894077 ], [ -87.723083, 13.784737 ], [ -87.791748, 13.384276 ], [ -87.904358, 13.149027 ], [ -88.483887, 13.165074 ], [ -88.843689, 13.258660 ], [ -89.255676, 13.459080 ], [ -89.813232, 13.520508 ], [ -90.000000, 13.662001 ], [ -90.096130, 13.734049 ], [ -90.065918, 13.880746 ], [ -90.000000, 13.928736 ], [ -89.722595, 14.133912 ], [ -89.533081, 14.245749 ], [ -89.588013, 14.362852 ], [ -89.354553, 14.424040 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.995199 ], [ -83.232422, 14.899668 ], [ -83.284607, 14.676597 ], [ -83.182983, 14.309631 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.551025, 13.127629 ], [ -83.498840, 12.868037 ], [ -83.474121, 12.417801 ], [ -83.625183, 12.321219 ], [ -83.718567, 11.894228 ], [ -83.649902, 11.628026 ], [ -83.855896, 11.372339 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.102947 ], [ -83.677368, 10.962764 ], [ -84.325562, 10.962764 ], [ -84.355774, 11.000512 ], [ -84.674377, 11.081385 ], [ -84.883118, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.468140, 11.178402 ], [ -85.561523, 11.216122 ], [ -85.605469, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.525574, 11.808211 ], [ -86.745300, 12.144061 ], [ -87.168274, 12.458033 ], [ -87.668152, 12.910875 ], [ -87.558289, 13.063426 ], [ -87.393494, 12.913552 ], [ -87.316589, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.253313 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.520081, 13.779402 ], [ -86.311340, 13.771399 ], [ -86.097107, 14.038008 ], [ -85.800476, 13.835413 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.559659 ], [ -85.053406, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.820026 ], [ -84.649658, 14.665969 ], [ -84.449158, 14.620794 ], [ -84.229431, 14.748323 ], [ -83.976746, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Honduras", "sov_a3": "HND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Honduras", "adm0_a3": "HND", "geou_dif": 0, "geounit": "Honduras", "gu_a3": "HND", "su_dif": 0, "subunit": "Honduras", "su_a3": "HND", "brk_diff": 0, "name": "Honduras", "name_long": "Honduras", "brk_a3": "HND", "brk_name": "Honduras", "abbrev": "Hond.", "postal": "HN", "formal_en": "Republic of Honduras", "name_sort": "Honduras", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7792854, "gdp_md_est": 33720, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "HN", "iso_a3": "HND", "iso_n3": "340", "un_a3": "340", "wb_a2": "HN", "wb_a3": "HND", "woe_id": -99, "adm0_a3_is": "HND", "adm0_a3_us": "HND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -86.000977, 16.006216 ], [ -85.682373, 15.953407 ], [ -85.443420, 15.884734 ], [ -85.182495, 15.908508 ], [ -84.984741, 15.995655 ], [ -84.526062, 15.858316 ], [ -84.369507, 15.834536 ], [ -84.061890, 15.649486 ], [ -83.773499, 15.424558 ], [ -83.410950, 15.270938 ], [ -83.147278, 14.995199 ], [ -83.490601, 15.016422 ], [ -83.627930, 14.881087 ], [ -83.976746, 14.748323 ], [ -84.229431, 14.748323 ], [ -84.449158, 14.620794 ], [ -84.649658, 14.665969 ], [ -84.819946, 14.820026 ], [ -84.924316, 14.790817 ], [ -85.053406, 14.551684 ], [ -85.149536, 14.559659 ], [ -85.166016, 14.354870 ], [ -85.514832, 14.077973 ], [ -85.698853, 13.960723 ], [ -85.800476, 13.835413 ], [ -86.097107, 14.038008 ], [ -86.311340, 13.771399 ], [ -86.520081, 13.779402 ], [ -86.756287, 13.755392 ], [ -86.734314, 13.264006 ], [ -86.879883, 13.253313 ], [ -87.006226, 13.025966 ], [ -87.316589, 12.985824 ], [ -87.489624, 13.298757 ], [ -87.791748, 13.384276 ], [ -87.723083, 13.784737 ], [ -87.860413, 13.894077 ], [ -88.066406, 13.963389 ], [ -88.503113, 13.846080 ], [ -88.541565, 13.979381 ], [ -88.843689, 14.139239 ], [ -89.057922, 14.338904 ], [ -89.354553, 14.424040 ], [ -89.145813, 14.679254 ], [ -89.225464, 14.873124 ], [ -89.154053, 15.066819 ], [ -88.681641, 15.345113 ], [ -88.225708, 15.728814 ], [ -88.121338, 15.689154 ], [ -87.901611, 15.863600 ], [ -87.615967, 15.879451 ], [ -87.522583, 15.797539 ], [ -87.368774, 15.847747 ], [ -86.901855, 15.757893 ], [ -86.440430, 15.781682 ], [ -86.119080, 15.892659 ], [ -86.000977, 16.006216 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.561523, 11.216122 ], [ -85.468140, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.860901, 10.962764 ], [ -85.605469, 11.178402 ], [ -85.561523, 11.216122 ] ] ], [ [ [ -84.883118, 10.962764 ], [ -84.674377, 11.081385 ], [ -84.355774, 11.000512 ], [ -84.325562, 10.962764 ], [ -84.883118, 10.962764 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Nicaragua", "sov_a3": "NIC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nicaragua", "adm0_a3": "NIC", "geou_dif": 0, "geounit": "Nicaragua", "gu_a3": "NIC", "su_dif": 0, "subunit": "Nicaragua", "su_a3": "NIC", "brk_diff": 0, "name": "Nicaragua", "name_long": "Nicaragua", "brk_a3": "NIC", "brk_name": "Nicaragua", "abbrev": "Nic.", "postal": "NI", "formal_en": "Republic of Nicaragua", "name_sort": "Nicaragua", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 5891199, "gdp_md_est": 16790, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NI", "iso_a3": "NIC", "iso_n3": "558", "un_a3": "558", "wb_a2": "NI", "wb_a3": "NIC", "woe_id": -99, "adm0_a3_is": "NIC", "adm0_a3_us": "NIC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -83.490601, 15.016422 ], [ -83.147278, 14.995199 ], [ -83.232422, 14.899668 ], [ -83.284607, 14.676597 ], [ -83.182983, 14.309631 ], [ -83.413696, 13.971385 ], [ -83.520813, 13.568572 ], [ -83.551025, 13.127629 ], [ -83.498840, 12.868037 ], [ -83.474121, 12.417801 ], [ -83.625183, 12.321219 ], [ -83.718567, 11.894228 ], [ -83.649902, 11.628026 ], [ -83.855896, 11.372339 ], [ -83.822937, 11.178402 ], [ -83.809204, 11.102947 ], [ -83.677368, 10.962764 ], [ -84.325562, 10.962764 ], [ -84.355774, 11.000512 ], [ -84.674377, 11.081385 ], [ -84.883118, 10.962764 ], [ -84.929810, 10.962764 ], [ -85.468140, 11.178402 ], [ -85.561523, 11.216122 ], [ -85.605469, 11.178402 ], [ -85.712585, 11.089471 ], [ -85.811462, 11.178402 ], [ -86.058655, 11.404649 ], [ -86.525574, 11.808211 ], [ -86.745300, 12.144061 ], [ -87.168274, 12.458033 ], [ -87.668152, 12.910875 ], [ -87.558289, 13.063426 ], [ -87.393494, 12.913552 ], [ -87.316589, 12.985824 ], [ -87.006226, 13.025966 ], [ -86.879883, 13.253313 ], [ -86.734314, 13.264006 ], [ -86.756287, 13.755392 ], [ -86.520081, 13.779402 ], [ -86.311340, 13.771399 ], [ -86.097107, 14.038008 ], [ -85.800476, 13.835413 ], [ -85.698853, 13.960723 ], [ -85.514832, 14.077973 ], [ -85.166016, 14.354870 ], [ -85.149536, 14.559659 ], [ -85.053406, 14.551684 ], [ -84.924316, 14.790817 ], [ -84.819946, 14.820026 ], [ -84.649658, 14.665969 ], [ -84.449158, 14.620794 ], [ -84.229431, 14.748323 ], [ -83.976746, 14.748323 ], [ -83.627930, 14.881087 ], [ -83.490601, 15.016422 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cuba", "sov_a3": "CUB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cuba", "adm0_a3": "CUB", "geou_dif": 0, "geounit": "Cuba", "gu_a3": "CUB", "su_dif": 0, "subunit": "Cuba", "su_a3": "CUB", "brk_diff": 0, "name": "Cuba", "name_long": "Cuba", "brk_a3": "CUB", "brk_name": "Cuba", "abbrev": "Cuba", "postal": "CU", "formal_en": "Republic of Cuba", "name_sort": "Cuba", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 11451652, "gdp_md_est": 108200, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CU", "iso_a3": "CUB", "iso_n3": "192", "un_a3": "192", "wb_a2": "CU", "wb_a3": "CUB", "woe_id": -99, "adm0_a3_is": "CUB", "adm0_a3_us": "CUB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Caribbean", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.530273, 22.146708 ], [ -78.530273, 21.140869 ], [ -78.719788, 21.598704 ], [ -78.750000, 21.596151 ], [ -79.285583, 21.560393 ], [ -80.216675, 21.828357 ], [ -80.381470, 21.943046 ], [ -80.518799, 22.037276 ], [ -81.436157, 22.146708 ], [ -78.530273, 22.146708 ] ] ], [ [ [ -83.913574, 22.146708 ], [ -84.031677, 21.943046 ], [ -84.050903, 21.909923 ], [ -84.548035, 21.800308 ], [ -84.973755, 21.897181 ], [ -84.894104, 21.943046 ], [ -84.545288, 22.146708 ], [ -83.913574, 22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Costa Rica", "sov_a3": "CRI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Costa Rica", "adm0_a3": "CRI", "geou_dif": 0, "geounit": "Costa Rica", "gu_a3": "CRI", "su_dif": 0, "subunit": "Costa Rica", "su_a3": "CRI", "brk_diff": 0, "name": "Costa Rica", "name_long": "Costa Rica", "brk_a3": "CRI", "brk_name": "Costa Rica", "abbrev": "C.R.", "postal": "CR", "formal_en": "Republic of Costa Rica", "name_sort": "Costa Rica", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 4253877, "gdp_md_est": 48320, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CR", "iso_a3": "CRI", "iso_n3": "188", "un_a3": "188", "wb_a2": "CR", "wb_a3": "CRI", "woe_id": -99, "adm0_a3_is": "CRI", "adm0_a3_us": "CRI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Central America", "region_wb": "Latin America & Caribbean", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -85.561523, 11.216122 ], [ -85.468140, 11.178402 ], [ -84.929810, 10.962764 ], [ -85.860901, 10.962764 ], [ -85.605469, 11.178402 ], [ -85.561523, 11.216122 ] ] ], [ [ [ -84.883118, 10.962764 ], [ -84.674377, 11.081385 ], [ -84.355774, 11.000512 ], [ -84.325562, 10.962764 ], [ -84.883118, 10.962764 ] ] ] ] } } ] } ] } , @@ -3241,9 +3209,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.376770, 48.303294 ], [ -87.440186, 47.940267 ], [ -86.462402, 47.552433 ], [ -84.874878, 46.899616 ], [ -84.778748, 46.636237 ], [ -84.542542, 46.538082 ], [ -84.605713, 46.439750 ], [ -84.336548, 46.409458 ], [ -84.141541, 46.511625 ], [ -84.092102, 46.274834 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.468628, 45.995054 ], [ -83.592224, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.136536, 43.570442 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.429539 ], [ -83.119812, 42.079878 ], [ -83.141785, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.691345, 41.674963 ], [ -82.438660, 41.674963 ], [ -81.276855, 42.208176 ], [ -80.246887, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.010925, 43.269206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.614205 ], [ -78.719788, 43.624147 ], [ -78.530273, 43.624147 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.142265 ], [ -90.000000, 48.094592 ], [ -89.598999, 48.010138 ], [ -89.272156, 48.019324 ], [ -88.376770, 48.303294 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.530273, 49.066668 ], [ -78.530273, 43.624147 ], [ -78.719788, 43.624147 ], [ -78.750000, 43.614205 ], [ -79.172974, 43.466874 ], [ -79.010925, 43.269206 ], [ -78.920288, 42.964463 ], [ -78.939514, 42.863886 ], [ -80.246887, 42.366662 ], [ -81.276855, 42.208176 ], [ -82.438660, 41.674963 ], [ -82.691345, 41.674963 ], [ -83.029175, 41.832735 ], [ -83.141785, 41.975827 ], [ -83.119812, 42.079878 ], [ -82.900085, 42.429539 ], [ -82.430420, 42.980540 ], [ -82.136536, 43.570442 ], [ -82.551270, 45.348285 ], [ -83.592224, 45.817315 ], [ -83.468628, 45.995054 ], [ -83.616943, 46.117038 ], [ -83.891602, 46.117038 ], [ -84.092102, 46.274834 ], [ -84.141541, 46.511625 ], [ -84.336548, 46.409458 ], [ -84.605713, 46.439750 ], [ -84.542542, 46.538082 ], [ -84.778748, 46.636237 ], [ -84.874878, 46.899616 ], [ -86.462402, 47.552433 ], [ -87.440186, 47.940267 ], [ -88.376770, 48.303294 ], [ -89.272156, 48.019324 ], [ -89.598999, 48.010138 ], [ -90.000000, 48.094592 ], [ -90.219727, 48.142265 ], [ -90.219727, 49.066668 ], [ -78.530273, 49.066668 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -88.376770, 48.303294 ], [ -87.440186, 47.940267 ], [ -86.462402, 47.552433 ], [ -84.874878, 46.899616 ], [ -84.778748, 46.636237 ], [ -84.542542, 46.538082 ], [ -84.605713, 46.439750 ], [ -84.336548, 46.409458 ], [ -84.141541, 46.511625 ], [ -84.092102, 46.274834 ], [ -83.891602, 46.117038 ], [ -83.616943, 46.117038 ], [ -83.468628, 45.995054 ], [ -83.592224, 45.817315 ], [ -82.551270, 45.348285 ], [ -82.136536, 43.570442 ], [ -82.430420, 42.980540 ], [ -82.900085, 42.429539 ], [ -83.119812, 42.079878 ], [ -83.141785, 41.975827 ], [ -83.029175, 41.832735 ], [ -82.691345, 41.674963 ], [ -82.438660, 41.674963 ], [ -81.276855, 42.208176 ], [ -80.246887, 42.366662 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.964463 ], [ -79.010925, 43.269206 ], [ -79.172974, 43.466874 ], [ -78.750000, 43.614205 ], [ -78.719788, 43.624147 ], [ -78.530273, 43.624147 ], [ -78.530273, 40.813809 ], [ -90.219727, 40.813809 ], [ -90.219727, 48.142265 ], [ -90.000000, 48.094592 ], [ -89.598999, 48.010138 ], [ -89.272156, 48.019324 ], [ -88.376770, 48.303294 ] ] ] } } ] } ] } , @@ -3357,25 +3325,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.517892 ], [ -68.634338, -52.636397 ], [ -68.634338, -54.870285 ], [ -67.563171, -54.870285 ], [ -67.500000, -54.873446 ], [ -67.280273, -54.882927 ], [ -67.280273, -55.288501 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.377550 ], [ -68.148193, -55.612487 ], [ -68.639832, -55.579897 ], [ -69.233093, -55.499083 ], [ -69.958191, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.262573, -54.495568 ], [ -73.284302, -53.957702 ], [ -74.663086, -52.837617 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.714590 ], [ -71.109009, -54.073894 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.930430 ], [ -69.345703, -52.517892 ] ] ], [ [ [ -72.597656, -48.777913 ], [ -72.647095, -48.879167 ], [ -72.723999, -48.922499 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.378751 ], [ -72.976685, -50.741670 ], [ -72.309265, -50.677316 ], [ -72.328491, -51.426614 ], [ -71.913757, -52.008555 ], [ -69.499512, -52.143602 ], [ -68.571167, -52.300081 ], [ -69.461060, -52.291683 ], [ -69.941711, -52.537944 ], [ -70.845337, -52.898962 ], [ -71.007385, -53.833081 ], [ -71.430359, -53.855767 ], [ -72.559204, -53.532146 ], [ -73.701782, -52.834299 ], [ -74.945984, -52.263115 ], [ -75.259094, -51.629952 ], [ -74.976196, -51.043121 ], [ -75.478821, -50.378751 ], [ -75.588684, -48.922499 ], [ -75.599670, -48.777913 ], [ -72.597656, -48.777913 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -68.634338, -52.636397 ], [ -68.249817, -53.100621 ], [ -67.749939, -53.849286 ], [ -67.500000, -53.965781 ], [ -67.280273, -54.067448 ], [ -67.280273, -54.882927 ], [ -67.500000, -54.873446 ], [ -67.563171, -54.870285 ], [ -68.634338, -54.870285 ], [ -68.634338, -52.636397 ] ] ], [ [ [ -67.280273, -48.777913 ], [ -67.280273, -48.908059 ], [ -67.500000, -49.305427 ], [ -67.815857, -49.869857 ], [ -68.727722, -50.264765 ], [ -69.139709, -50.732978 ], [ -68.815613, -51.771239 ], [ -68.150940, -52.350441 ], [ -68.571167, -52.300081 ], [ -69.499512, -52.143602 ], [ -71.913757, -52.008555 ], [ -72.328491, -51.426614 ], [ -72.309265, -50.677316 ], [ -72.976685, -50.741670 ], [ -73.328247, -50.378751 ], [ -73.416138, -49.317961 ], [ -72.723999, -48.922499 ], [ -72.647095, -48.879167 ], [ -72.597656, -48.777913 ], [ -67.280273, -48.777913 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.345703, -52.517892 ], [ -68.634338, -52.636397 ], [ -68.634338, -54.870285 ], [ -67.563171, -54.870285 ], [ -67.500000, -54.873446 ], [ -67.280273, -54.882927 ], [ -67.280273, -55.288501 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.377550 ], [ -68.148193, -55.612487 ], [ -68.639832, -55.579897 ], [ -69.233093, -55.499083 ], [ -69.958191, -55.197683 ], [ -71.004639, -55.053203 ], [ -72.262573, -54.495568 ], [ -73.284302, -53.957702 ], [ -74.663086, -52.837617 ], [ -73.839111, -53.047818 ], [ -72.432861, -53.714590 ], [ -71.109009, -54.073894 ], [ -70.592651, -53.615321 ], [ -70.268555, -52.930430 ], [ -69.345703, -52.517892 ] ] ], [ [ [ -72.597656, -48.777913 ], [ -72.647095, -48.879167 ], [ -72.723999, -48.922499 ], [ -73.416138, -49.317961 ], [ -73.328247, -50.378751 ], [ -72.976685, -50.741670 ], [ -72.309265, -50.677316 ], [ -72.328491, -51.426614 ], [ -71.913757, -52.008555 ], [ -69.499512, -52.143602 ], [ -68.571167, -52.300081 ], [ -69.461060, -52.291683 ], [ -69.941711, -52.537944 ], [ -70.845337, -52.898962 ], [ -71.007385, -53.833081 ], [ -71.430359, -53.855767 ], [ -72.559204, -53.532146 ], [ -73.701782, -52.834299 ], [ -74.945984, -52.263115 ], [ -75.259094, -51.629952 ], [ -74.976196, -51.043121 ], [ -75.478821, -50.378751 ], [ -75.588684, -48.922499 ], [ -75.599670, -48.777913 ], [ -72.597656, -48.777913 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 20 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.911011, -40.813809 ], [ -71.916504, -40.832515 ], [ -71.897278, -40.979898 ], [ -71.746216, -42.051332 ], [ -72.149963, -42.254951 ], [ -71.916504, -43.409038 ], [ -71.463318, -43.786958 ], [ -71.792908, -44.207804 ], [ -71.328735, -44.408278 ], [ -71.221619, -44.783785 ], [ -71.658325, -44.974514 ], [ -71.551208, -45.560218 ], [ -71.916504, -46.884600 ], [ -72.446594, -47.739323 ], [ -72.331238, -48.244797 ], [ -72.647095, -48.879167 ], [ -72.723999, -48.922499 ], [ -72.973938, -49.066668 ], [ -75.577698, -49.066668 ], [ -75.588684, -48.922499 ], [ -75.607910, -48.674640 ], [ -75.182190, -47.711610 ], [ -74.127502, -46.939012 ], [ -75.643616, -46.647551 ], [ -74.693298, -45.763691 ], [ -74.352722, -44.103365 ], [ -73.240356, -44.455349 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.116561 ], [ -73.701782, -43.365126 ], [ -74.330750, -43.225193 ], [ -74.017639, -41.793840 ], [ -73.866577, -40.979898 ], [ -73.836365, -40.813809 ], [ -71.911011, -40.813809 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -40.813809 ], [ -67.280273, -45.542908 ], [ -67.294006, -45.552525 ], [ -67.500000, -46.094186 ], [ -67.579651, -46.301406 ], [ -67.500000, -46.360198 ], [ -67.280273, -46.524855 ], [ -67.280273, -48.908059 ], [ -67.368164, -49.066668 ], [ -72.973938, -49.066668 ], [ -72.723999, -48.922499 ], [ -72.647095, -48.879167 ], [ -72.331238, -48.244797 ], [ -72.446594, -47.739323 ], [ -71.916504, -46.884600 ], [ -71.551208, -45.560218 ], [ -71.658325, -44.974514 ], [ -71.221619, -44.783785 ], [ -71.328735, -44.408278 ], [ -71.792908, -44.207804 ], [ -71.463318, -43.786958 ], [ -71.916504, -43.409038 ], [ -72.149963, -42.254951 ], [ -71.746216, -42.051332 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.832515 ], [ -71.911011, -40.813809 ], [ -67.280273, -40.813809 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.911011, -40.813809 ], [ -71.916504, -40.832515 ], [ -71.897278, -40.979898 ], [ -71.746216, -42.051332 ], [ -72.149963, -42.254951 ], [ -71.916504, -43.409038 ], [ -71.463318, -43.786958 ], [ -71.792908, -44.207804 ], [ -71.328735, -44.408278 ], [ -71.221619, -44.783785 ], [ -71.658325, -44.974514 ], [ -71.551208, -45.560218 ], [ -71.916504, -46.884600 ], [ -72.446594, -47.739323 ], [ -72.331238, -48.244797 ], [ -72.647095, -48.879167 ], [ -72.723999, -48.922499 ], [ -72.973938, -49.066668 ], [ -75.577698, -49.066668 ], [ -75.588684, -48.922499 ], [ -75.607910, -48.674640 ], [ -75.182190, -47.711610 ], [ -74.127502, -46.939012 ], [ -75.643616, -46.647551 ], [ -74.693298, -45.763691 ], [ -74.352722, -44.103365 ], [ -73.240356, -44.455349 ], [ -72.718506, -42.382894 ], [ -73.388672, -42.116561 ], [ -73.701782, -43.365126 ], [ -74.330750, -43.225193 ], [ -74.017639, -41.793840 ], [ -73.866577, -40.979898 ], [ -73.836365, -40.813809 ], [ -71.911011, -40.813809 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 19 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.427856, -31.765537 ], [ -70.378418, -31.952162 ], [ -70.073547, -33.091542 ], [ -69.815369, -33.273139 ], [ -69.818115, -34.193630 ], [ -70.389404, -35.169318 ], [ -70.364685, -36.004673 ], [ -71.122742, -36.657403 ], [ -71.119995, -37.577236 ], [ -70.815125, -38.552461 ], [ -71.413879, -38.916682 ], [ -71.680298, -39.808536 ], [ -71.916504, -40.832515 ], [ -71.897278, -40.979898 ], [ -71.872559, -41.145570 ], [ -73.899536, -41.145570 ], [ -73.869324, -40.979898 ], [ -73.677063, -39.941331 ], [ -73.218384, -39.257778 ], [ -73.506775, -38.283469 ], [ -73.589172, -37.155939 ], [ -73.166199, -37.123096 ], [ -72.553711, -35.509872 ], [ -71.861572, -33.909175 ], [ -71.438599, -32.419385 ], [ -71.510010, -31.952162 ], [ -71.540222, -31.765537 ], [ -70.427856, -31.765537 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -31.765537 ], [ -67.280273, -41.145570 ], [ -71.872559, -41.145570 ], [ -71.897278, -40.979898 ], [ -71.916504, -40.832515 ], [ -71.680298, -39.808536 ], [ -71.413879, -38.916682 ], [ -70.815125, -38.552461 ], [ -71.119995, -37.577236 ], [ -71.122742, -36.657403 ], [ -70.364685, -36.004673 ], [ -70.389404, -35.169318 ], [ -69.818115, -34.193630 ], [ -69.815369, -33.273139 ], [ -70.073547, -33.091542 ], [ -70.378418, -31.952162 ], [ -70.427856, -31.765537 ], [ -67.280273, -31.765537 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -70.427856, -31.765537 ], [ -70.378418, -31.952162 ], [ -70.073547, -33.091542 ], [ -69.815369, -33.273139 ], [ -69.818115, -34.193630 ], [ -70.389404, -35.169318 ], [ -70.364685, -36.004673 ], [ -71.122742, -36.657403 ], [ -71.119995, -37.577236 ], [ -70.815125, -38.552461 ], [ -71.413879, -38.916682 ], [ -71.680298, -39.808536 ], [ -71.916504, -40.832515 ], [ -71.897278, -40.979898 ], [ -71.872559, -41.145570 ], [ -73.899536, -41.145570 ], [ -73.869324, -40.979898 ], [ -73.677063, -39.941331 ], [ -73.218384, -39.257778 ], [ -73.506775, -38.283469 ], [ -73.589172, -37.155939 ], [ -73.166199, -37.123096 ], [ -72.553711, -35.509872 ], [ -71.861572, -33.909175 ], [ -71.438599, -32.419385 ], [ -71.510010, -31.952162 ], [ -71.540222, -31.765537 ], [ -70.427856, -31.765537 ] ] ] } } ] } ] } , @@ -3383,9 +3351,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -21.739091 ], [ -67.280273, -22.768584 ], [ -67.500000, -22.809099 ], [ -67.826843, -22.872379 ], [ -68.093262, -21.943046 ], [ -68.150940, -21.739091 ], [ -67.280273, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.150940, -21.739091 ], [ -68.093262, -21.943046 ], [ -67.826843, -22.872379 ], [ -67.500000, -22.809099 ], [ -67.280273, -22.768584 ], [ -67.280273, -23.875792 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -68.417358, -24.519638 ], [ -68.387146, -26.185018 ], [ -68.595886, -26.507447 ], [ -68.296509, -26.900028 ], [ -69.002380, -27.520451 ], [ -69.656067, -28.459033 ], [ -70.013123, -29.367814 ], [ -69.919739, -30.337324 ], [ -70.534973, -31.365364 ], [ -70.378418, -31.952162 ], [ -70.328979, -32.138409 ], [ -71.482544, -32.138409 ], [ -71.510010, -31.952162 ], [ -71.669312, -30.921076 ], [ -71.369934, -30.095237 ], [ -71.490784, -28.861513 ], [ -70.905762, -27.639740 ], [ -70.724487, -25.705888 ], [ -70.403137, -23.629427 ], [ -70.166931, -21.943046 ], [ -70.136719, -21.739091 ], [ -68.150940, -21.739091 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -23.875792 ], [ -67.280273, -32.138409 ], [ -70.328979, -32.138409 ], [ -70.378418, -31.952162 ], [ -70.534973, -31.365364 ], [ -69.919739, -30.337324 ], [ -70.013123, -29.367814 ], [ -69.656067, -28.459033 ], [ -69.002380, -27.520451 ], [ -68.296509, -26.900028 ], [ -68.595886, -26.507447 ], [ -68.387146, -26.185018 ], [ -68.417358, -24.519638 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -67.280273, -23.875792 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -68.150940, -21.739091 ], [ -68.093262, -21.943046 ], [ -67.826843, -22.872379 ], [ -67.500000, -22.809099 ], [ -67.280273, -22.768584 ], [ -67.280273, -23.875792 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -68.417358, -24.519638 ], [ -68.387146, -26.185018 ], [ -68.595886, -26.507447 ], [ -68.296509, -26.900028 ], [ -69.002380, -27.520451 ], [ -69.656067, -28.459033 ], [ -70.013123, -29.367814 ], [ -69.919739, -30.337324 ], [ -70.534973, -31.365364 ], [ -70.378418, -31.952162 ], [ -70.328979, -32.138409 ], [ -71.482544, -32.138409 ], [ -71.510010, -31.952162 ], [ -71.669312, -30.921076 ], [ -71.369934, -30.095237 ], [ -71.490784, -28.861513 ], [ -70.905762, -27.639740 ], [ -70.724487, -25.705888 ], [ -70.403137, -23.629427 ], [ -70.166931, -21.943046 ], [ -70.136719, -21.739091 ], [ -68.150940, -21.739091 ] ] ] } } ] } ] } , @@ -3393,10 +3361,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.524231, -10.962764 ], [ -69.408875, -11.178402 ], [ -68.664551, -12.562606 ], [ -68.878784, -12.900166 ], [ -68.928223, -13.603278 ], [ -68.950195, -14.453299 ], [ -69.340210, -14.952746 ], [ -69.161682, -15.323923 ], [ -69.389648, -15.660065 ], [ -68.958435, -16.501933 ], [ -69.590149, -17.581194 ], [ -69.859314, -18.093644 ], [ -70.372925, -18.346705 ], [ -71.375427, -17.774843 ], [ -71.463318, -17.363746 ], [ -73.443604, -16.359674 ], [ -75.237122, -15.265638 ], [ -76.008911, -14.650026 ], [ -76.423645, -13.822078 ], [ -76.258850, -13.533860 ], [ -77.107544, -12.221918 ], [ -77.665100, -11.178402 ], [ -77.780457, -10.962764 ], [ -70.545959, -10.962764 ], [ -70.548706, -11.008601 ], [ -70.092773, -11.124507 ], [ -69.565430, -10.962764 ], [ -69.524231, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.565430, -10.962764 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.008601 ], [ -70.545959, -10.962764 ], [ -69.565430, -10.962764 ] ] ], [ [ [ -68.233337, -10.962764 ], [ -68.271790, -11.013993 ], [ -68.785400, -11.035560 ], [ -69.433594, -10.962764 ], [ -68.233337, -10.962764 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.962764 ], [ -67.280273, -22.146708 ], [ -68.032837, -22.146708 ], [ -68.090515, -21.943046 ], [ -68.219604, -21.493964 ], [ -68.757935, -20.372952 ], [ -68.442078, -19.404430 ], [ -68.966675, -18.981623 ], [ -69.101257, -18.260653 ], [ -69.590149, -17.581194 ], [ -68.958435, -16.501933 ], [ -69.389648, -15.660065 ], [ -69.161682, -15.323923 ], [ -69.340210, -14.952746 ], [ -68.950195, -14.453299 ], [ -68.928223, -13.603278 ], [ -68.878784, -12.900166 ], [ -68.664551, -12.562606 ], [ -69.408875, -11.178402 ], [ -69.524231, -10.962764 ], [ -69.433594, -10.962764 ], [ -68.785400, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.233337, -10.962764 ], [ -67.280273, -10.962764 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -69.565430, -10.962764 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.008601 ], [ -70.545959, -10.962764 ], [ -69.565430, -10.962764 ] ] ], [ [ [ -68.233337, -10.962764 ], [ -68.271790, -11.013993 ], [ -68.785400, -11.035560 ], [ -69.433594, -10.962764 ], [ -68.233337, -10.962764 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.590149, -17.581194 ], [ -69.101257, -18.260653 ], [ -68.966675, -18.981623 ], [ -68.442078, -19.404430 ], [ -68.757935, -20.372952 ], [ -68.219604, -21.493964 ], [ -68.090515, -21.943046 ], [ -68.032837, -22.146708 ], [ -70.197144, -22.146708 ], [ -70.166931, -21.943046 ], [ -70.090027, -21.394262 ], [ -70.164185, -19.756364 ], [ -70.372925, -18.346705 ], [ -69.859314, -18.093644 ], [ -69.590149, -17.581194 ] ] ] } } ] } ] } @@ -3409,9 +3377,9 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Peru", "sov_a3": "PER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Peru", "adm0_a3": "PER", "geou_dif": 0, "geounit": "Peru", "gu_a3": "PER", "su_dif": 0, "subunit": "Peru", "su_a3": "PER", "brk_diff": 0, "name": "Peru", "name_long": "Peru", "brk_a3": "PER", "brk_name": "Peru", "abbrev": "Peru", "postal": "PE", "formal_en": "Republic of Peru", "name_sort": "Peru", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 11, "pop_est": 29546963, "gdp_md_est": 247300, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "PE", "iso_a3": "PER", "iso_n3": "604", "un_a3": "604", "wb_a2": "PE", "wb_a3": "PER", "woe_id": -99, "adm0_a3_is": "PER", "adm0_a3_us": "PER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.105286, -0.057678 ], [ -74.440613, -0.530083 ], [ -74.122009, -1.002451 ], [ -73.660583, -1.260579 ], [ -73.070068, -2.309250 ], [ -72.325745, -2.435484 ], [ -71.773682, -2.169281 ], [ -71.413879, -2.342182 ], [ -70.812378, -2.257106 ], [ -70.048828, -2.726327 ], [ -70.691528, -3.743671 ], [ -70.394897, -3.765597 ], [ -69.892273, -4.297113 ], [ -70.795898, -4.250551 ], [ -70.927734, -4.401183 ], [ -71.748962, -4.592852 ], [ -72.891541, -5.274213 ], [ -72.965698, -5.741708 ], [ -73.218384, -6.088667 ], [ -73.119507, -6.629142 ], [ -73.723755, -6.918247 ], [ -73.723755, -7.340675 ], [ -73.987427, -7.523150 ], [ -73.569946, -8.423470 ], [ -73.015137, -9.031578 ], [ -73.226624, -9.462608 ], [ -72.561951, -9.519497 ], [ -72.185669, -10.052698 ], [ -71.301270, -10.079741 ], [ -70.482788, -9.489699 ], [ -70.548706, -11.008601 ], [ -70.092773, -11.124507 ], [ -69.529724, -10.951978 ], [ -69.408875, -11.178402 ], [ -69.293518, -11.393879 ], [ -77.549744, -11.393879 ], [ -77.665100, -11.178402 ], [ -78.090820, -10.377064 ], [ -78.969727, -8.523984 ], [ -78.969727, -4.787206 ], [ -78.640137, -4.549046 ], [ -78.450623, -3.872476 ], [ -77.838135, -3.003384 ], [ -76.635132, -2.608352 ], [ -75.544739, -1.562611 ], [ -75.234375, -0.911827 ], [ -75.374451, -0.151062 ], [ -75.105286, -0.057678 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 0.219726 ], [ -67.280273, -10.355450 ], [ -67.500000, -10.458103 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.785400, -11.035560 ], [ -69.529724, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.301270, -10.079741 ], [ -72.185669, -10.052698 ], [ -72.561951, -9.519497 ], [ -73.226624, -9.462608 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.918247 ], [ -73.119507, -6.629142 ], [ -73.218384, -6.088667 ], [ -72.965698, -5.741708 ], [ -72.891541, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.892273, -4.297113 ], [ -69.444580, -1.557120 ], [ -69.419861, -1.123280 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.184021 ], [ -70.018616, 0.000000 ], [ -70.018616, 0.219726 ], [ -67.280273, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, -10.355450 ], [ -67.280273, -11.393879 ], [ -69.293518, -11.393879 ], [ -69.408875, -11.178402 ], [ -69.529724, -10.951978 ], [ -68.785400, -11.035560 ], [ -68.271790, -11.013993 ], [ -68.049316, -10.711888 ], [ -67.500000, -10.458103 ], [ -67.280273, -10.355450 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 0.219726 ], [ -67.280273, -10.355450 ], [ -67.500000, -10.458103 ], [ -68.049316, -10.711888 ], [ -68.271790, -11.013993 ], [ -68.785400, -11.035560 ], [ -69.529724, -10.951978 ], [ -70.092773, -11.124507 ], [ -70.548706, -11.008601 ], [ -70.482788, -9.489699 ], [ -71.301270, -10.079741 ], [ -72.185669, -10.052698 ], [ -72.561951, -9.519497 ], [ -73.226624, -9.462608 ], [ -73.015137, -9.031578 ], [ -73.569946, -8.423470 ], [ -73.987427, -7.523150 ], [ -73.723755, -7.340675 ], [ -73.723755, -6.918247 ], [ -73.119507, -6.629142 ], [ -73.218384, -6.088667 ], [ -72.965698, -5.741708 ], [ -72.891541, -5.274213 ], [ -71.748962, -4.592852 ], [ -70.927734, -4.401183 ], [ -70.795898, -4.250551 ], [ -69.892273, -4.297113 ], [ -69.444580, -1.557120 ], [ -69.419861, -1.123280 ], [ -69.576416, -0.549308 ], [ -70.021362, -0.184021 ], [ -70.018616, 0.000000 ], [ -70.018616, 0.219726 ], [ -67.280273, 0.219726 ] ] ] } } ] } ] } , @@ -3463,9 +3431,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.238586, 47.448522 ], [ -68.906250, 47.184113 ], [ -68.233337, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.261355 ], [ -67.280273, 44.666700 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.683764 ], [ -70.644836, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.079041, 41.779505 ], [ -70.186157, 42.145078 ], [ -69.884033, 41.922716 ], [ -69.963684, 41.638026 ], [ -70.639343, 41.475660 ], [ -71.119995, 41.494178 ], [ -71.858826, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.875061, 41.219986 ], [ -73.567200, 40.979898 ], [ -73.710022, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.118676 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -72.487793, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.851806 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.964463 ], [ -78.969727, 43.131057 ], [ -78.969727, 43.536603 ], [ -78.750000, 43.614205 ], [ -78.719788, 43.624147 ], [ -76.819153, 43.628123 ], [ -76.500549, 44.018496 ], [ -76.374207, 44.095476 ], [ -75.319519, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.347473, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.084290, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.304260, 45.914855 ], [ -69.999390, 46.692783 ], [ -69.238586, 47.448522 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.969727, 43.536603 ], [ -78.969727, 49.066668 ], [ -68.513489, 49.066668 ], [ -68.672791, 48.922499 ], [ -69.952698, 47.744864 ], [ -71.103516, 46.822617 ], [ -70.254822, 46.985874 ], [ -68.650818, 48.299640 ], [ -67.500000, 48.759810 ], [ -67.280273, 48.846643 ], [ -67.280273, 45.261355 ], [ -67.500000, 45.452424 ], [ -67.791138, 45.702343 ], [ -67.791138, 47.066380 ], [ -68.233337, 47.355571 ], [ -68.906250, 47.184113 ], [ -69.238586, 47.448522 ], [ -69.999390, 46.692783 ], [ -70.304260, 45.914855 ], [ -70.661316, 45.460131 ], [ -71.084290, 45.305803 ], [ -71.405640, 45.255555 ], [ -71.504517, 45.007535 ], [ -73.347473, 45.007535 ], [ -74.866333, 44.999767 ], [ -75.319519, 44.816916 ], [ -76.374207, 44.095476 ], [ -76.500549, 44.018496 ], [ -76.819153, 43.628123 ], [ -78.719788, 43.624147 ], [ -78.750000, 43.614205 ], [ -78.969727, 43.536603 ] ] ], [ [ [ -78.969727, 43.131057 ], [ -78.920288, 42.964463 ], [ -78.939514, 42.863886 ], [ -78.969727, 42.851806 ], [ -78.969727, 43.131057 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.238586, 47.448522 ], [ -68.906250, 47.184113 ], [ -68.233337, 47.355571 ], [ -67.791138, 47.066380 ], [ -67.791138, 45.702343 ], [ -67.500000, 45.452424 ], [ -67.280273, 45.261355 ], [ -67.280273, 44.666700 ], [ -67.500000, 44.566991 ], [ -68.032837, 44.325813 ], [ -69.060059, 43.980958 ], [ -70.117493, 43.683764 ], [ -70.644836, 43.090955 ], [ -70.815125, 42.865899 ], [ -70.826111, 42.334184 ], [ -70.493774, 41.804078 ], [ -70.079041, 41.779505 ], [ -70.186157, 42.145078 ], [ -69.884033, 41.922716 ], [ -69.963684, 41.638026 ], [ -70.639343, 41.475660 ], [ -71.119995, 41.494178 ], [ -71.858826, 41.319076 ], [ -72.295532, 41.269550 ], [ -72.875061, 41.219986 ], [ -73.567200, 40.979898 ], [ -73.710022, 40.930115 ], [ -73.322754, 40.979898 ], [ -72.240601, 41.118676 ], [ -72.020874, 40.979898 ], [ -71.943970, 40.930115 ], [ -72.487793, 40.813809 ], [ -78.969727, 40.813809 ], [ -78.969727, 42.851806 ], [ -78.939514, 42.863886 ], [ -78.920288, 42.964463 ], [ -78.969727, 43.131057 ], [ -78.969727, 43.536603 ], [ -78.750000, 43.614205 ], [ -78.719788, 43.624147 ], [ -76.819153, 43.628123 ], [ -76.500549, 44.018496 ], [ -76.374207, 44.095476 ], [ -75.319519, 44.816916 ], [ -74.866333, 44.999767 ], [ -73.347473, 45.007535 ], [ -71.504517, 45.007535 ], [ -71.405640, 45.255555 ], [ -71.084290, 45.305803 ], [ -70.661316, 45.460131 ], [ -70.304260, 45.914855 ], [ -69.999390, 46.692783 ], [ -69.238586, 47.448522 ] ] ] } } ] } ] } , @@ -3501,25 +3469,25 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.898560, 76.890745 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.778142 ], [ -78.750000, 76.587719 ], [ -78.969727, 76.538575 ], [ -78.969727, 76.890745 ], [ -77.898560, 76.890745 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 76.890745 ], [ -67.280273, 76.098157 ], [ -67.500000, 76.091556 ], [ -68.505249, 76.061155 ], [ -69.664307, 76.379736 ], [ -70.930481, 76.840816 ], [ -71.070557, 76.890745 ], [ -67.280273, 76.890745 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162559 ], [ -67.280273, 79.191440 ], [ -67.280273, 77.407481 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -78.969727, 77.379906 ], [ -78.969727, 79.212538 ], [ -75.690308, 79.212538 ], [ -75.528259, 79.197619 ], [ -75.629883, 79.171335 ], [ -76.220398, 79.019097 ], [ -75.393677, 78.525573 ], [ -76.343994, 78.182963 ], [ -77.887573, 77.900134 ], [ -78.362732, 77.508873 ], [ -78.750000, 77.426628 ], [ -78.969727, 77.379906 ] ] ], [ [ [ -78.969727, 76.998081 ], [ -78.750000, 77.003024 ], [ -77.909546, 77.022159 ], [ -77.895813, 76.840816 ], [ -77.890320, 76.790701 ], [ -78.969727, 76.790701 ], [ -78.969727, 76.998081 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 77.362492 ], [ -67.280273, 76.790701 ], [ -70.790405, 76.790701 ], [ -70.930481, 76.840816 ], [ -71.402893, 77.008582 ], [ -68.777161, 77.323374 ], [ -67.500000, 77.356481 ], [ -67.280273, 77.362492 ] ] ], [ [ [ -67.280273, 77.407481 ], [ -67.500000, 77.420647 ], [ -71.043091, 77.635954 ], [ -73.298035, 78.044364 ], [ -73.160706, 78.432867 ], [ -69.373169, 78.913968 ], [ -67.500000, 79.162559 ], [ -67.280273, 79.191440 ], [ -67.280273, 77.407481 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.357916 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.280273, 81.127169 ], [ -67.280273, 81.047597 ], [ -67.500000, 80.990143 ], [ -67.840576, 80.899800 ], [ -69.469299, 80.616633 ], [ -71.180420, 79.800150 ], [ -73.243103, 79.633945 ], [ -73.880310, 79.430356 ], [ -76.907043, 79.323013 ], [ -75.528259, 79.197619 ], [ -75.629883, 79.171335 ], [ -75.791931, 79.129976 ], [ -78.969727, 79.129976 ], [ -78.969727, 81.127169 ], [ -67.280273, 81.127169 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.280273, 79.190925 ], [ -67.280273, 79.129976 ], [ -67.747192, 79.129976 ], [ -67.280273, 79.190925 ] ] ], [ [ [ -67.280273, 80.019566 ], [ -67.500000, 80.048561 ], [ -68.021851, 80.117150 ], [ -67.500000, 80.357916 ], [ -67.280273, 80.457688 ], [ -67.280273, 80.019566 ] ] ] ] } } ] } ] } , @@ -3585,10 +3553,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.563171, -54.870285 ], [ -67.500000, -54.873446 ], [ -66.958923, -54.897144 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.377550 ], [ -67.719727, -55.457056 ], [ -67.719727, -54.870285 ], [ -67.563171, -54.870285 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.719727, -53.863866 ], [ -67.500000, -53.965781 ], [ -66.450806, -54.449283 ], [ -65.050049, -54.699234 ], [ -65.500488, -55.199251 ], [ -66.450806, -55.249381 ], [ -66.958923, -54.897144 ], [ -67.500000, -54.873446 ], [ -67.563171, -54.870285 ], [ -67.719727, -54.870285 ], [ -67.719727, -53.863866 ] ] ], [ [ [ -67.208862, -48.777913 ], [ -67.288513, -48.922499 ], [ -67.500000, -49.305427 ], [ -67.719727, -49.697838 ], [ -67.719727, -48.777913 ], [ -67.208862, -48.777913 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.563171, -54.870285 ], [ -67.500000, -54.873446 ], [ -66.958923, -54.897144 ], [ -67.291260, -55.301011 ], [ -67.500000, -55.377550 ], [ -67.719727, -55.457056 ], [ -67.719727, -54.870285 ], [ -67.563171, -54.870285 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Dependency", "admin": "Falkland Islands", "adm0_a3": "FLK", "geou_dif": 0, "geounit": "Falkland Islands", "gu_a3": "FLK", "su_dif": 0, "subunit": "Falkland Islands", "su_a3": "FLK", "brk_diff": 1, "name": "Falkland Is.", "name_long": "Falkland Islands", "brk_a3": "B12", "brk_name": "Falkland Is.", "abbrev": "Flk. Is.", "postal": "FK", "formal_en": "Falkland Islands", "note_adm0": "U.K.", "note_brk": "Admin. by U.K.; Claimed by Argentina", "name_sort": "Falkland Islands", "name_alt": "Islas Malvinas", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 3140, "gdp_md_est": 105.1, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FK", "iso_a3": "FLK", "iso_n3": "238", "un_a3": "238", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "FLK", "adm0_a3_us": "FLK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 12, "long_len": 16, "abbrev_len": 8, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -58.548889, -51.100073 ], [ -57.749634, -51.549751 ], [ -58.049011, -51.900223 ], [ -59.400330, -52.199190 ], [ -59.850769, -51.849353 ], [ -60.699463, -52.300081 ], [ -61.199341, -51.849353 ], [ -59.999084, -51.249882 ], [ -59.150391, -51.500194 ], [ -58.548889, -51.100073 ] ] ] } } ] } ] } @@ -3609,37 +3577,37 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, -28.627925 ], [ -56.030273, -30.838573 ], [ -56.250000, -30.670991 ], [ -56.975098, -30.109494 ], [ -57.626038, -30.216355 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -56.030273, -28.627925 ] ] ], [ [ [ -56.030273, -22.263680 ], [ -56.250000, -22.174688 ], [ -56.472473, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.936401, -22.090730 ], [ -57.928162, -21.943046 ], [ -57.919922, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.263680 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.517700, -21.739091 ], [ -62.586365, -21.943046 ], [ -62.685242, -22.248429 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.993989 ], [ -64.377136, -22.798971 ], [ -64.964905, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.272278, -21.833456 ], [ -66.373901, -21.943046 ], [ -67.107239, -22.735657 ], [ -67.500000, -22.809099 ], [ -67.719727, -22.852133 ], [ -67.719727, -21.739091 ], [ -62.517700, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.809099 ], [ -67.107239, -22.735657 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.681763, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.457102 ], [ -56.030273, -28.627925 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.030273, -28.627925 ], [ -56.030273, -30.838573 ], [ -56.250000, -30.670991 ], [ -56.975098, -30.109494 ], [ -57.626038, -30.216355 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -56.030273, -28.627925 ] ] ], [ [ [ -56.030273, -22.263680 ], [ -56.250000, -22.174688 ], [ -56.472473, -22.085640 ], [ -56.881714, -22.281472 ], [ -57.936401, -22.090730 ], [ -57.928162, -21.943046 ], [ -57.919922, -21.739091 ], [ -56.030273, -21.739091 ], [ -56.030273, -22.263680 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.919922, -21.739091 ], [ -57.928162, -21.943046 ], [ -57.936401, -22.090730 ], [ -56.881714, -22.281472 ], [ -56.472473, -22.085640 ], [ -56.250000, -22.174688 ], [ -56.030273, -22.263680 ], [ -56.030273, -27.457102 ], [ -56.250000, -27.500963 ], [ -56.486206, -27.549677 ], [ -57.609558, -27.396155 ], [ -58.617554, -27.122702 ], [ -57.634277, -25.604379 ], [ -57.777100, -25.162687 ], [ -58.807068, -24.771772 ], [ -60.029297, -24.033922 ], [ -60.847778, -23.880815 ], [ -62.685242, -22.248429 ], [ -62.586365, -21.943046 ], [ -62.517700, -21.739091 ], [ -57.919922, -21.739091 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.272278, -21.833456 ], [ -65.681763, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.377136, -22.798971 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.685242, -22.248429 ], [ -60.847778, -23.880815 ], [ -60.029297, -24.033922 ], [ -58.807068, -24.771772 ], [ -57.777100, -25.162687 ], [ -57.634277, -25.604379 ], [ -58.617554, -27.122702 ], [ -57.609558, -27.396155 ], [ -56.486206, -27.549677 ], [ -56.250000, -27.500963 ], [ -56.030273, -27.457102 ], [ -56.030273, -28.627925 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -57.626038, -30.216355 ], [ -57.875977, -31.017633 ], [ -58.117676, -31.952162 ], [ -58.142395, -32.045333 ], [ -58.142395, -32.138409 ], [ -67.719727, -32.138409 ], [ -67.719727, -24.201879 ], [ -67.500000, -24.104140 ], [ -67.329712, -24.026397 ], [ -66.986389, -22.986210 ], [ -67.107239, -22.735657 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.975098, -30.109494 ], [ -56.250000, -30.670991 ], [ -56.030273, -30.838573 ], [ -56.030273, -32.138409 ], [ -58.142395, -32.138409 ], [ -58.142395, -32.045333 ], [ -58.117676, -31.952162 ], [ -57.875977, -31.017633 ], [ -57.626038, -30.216355 ], [ -56.975098, -30.109494 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Chile", "sov_a3": "CHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chile", "adm0_a3": "CHL", "geou_dif": 0, "geounit": "Chile", "gu_a3": "CHL", "su_dif": 0, "subunit": "Chile", "su_a3": "CHL", "brk_diff": 0, "name": "Chile", "name_long": "Chile", "brk_a3": "CHL", "brk_name": "Chile", "abbrev": "Chile", "postal": "CL", "formal_en": "Republic of Chile", "name_sort": "Chile", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 16601707, "gdp_md_est": 244500, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CL", "iso_a3": "CHL", "iso_n3": "152", "un_a3": "152", "wb_a2": "CL", "wb_a3": "CHL", "woe_id": -99, "adm0_a3_is": "CHL", "adm0_a3_us": "CHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.107239, -22.735657 ], [ -66.986389, -22.986210 ], [ -67.329712, -24.026397 ], [ -67.500000, -24.104140 ], [ -67.719727, -24.201879 ], [ -67.719727, -22.852133 ], [ -67.500000, -22.809099 ], [ -67.107239, -22.735657 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ], [ -56.321411, -22.146708 ], [ -56.472473, -22.085640 ], [ -56.598816, -22.146708 ], [ -57.626038, -22.146708 ], [ -57.936401, -22.090730 ], [ -57.928162, -21.943046 ], [ -57.870483, -20.732997 ], [ -58.167114, -20.177145 ], [ -57.854004, -19.970767 ], [ -57.950134, -19.399249 ], [ -57.675476, -18.960844 ], [ -57.499695, -18.174559 ], [ -57.735901, -17.552391 ], [ -58.279724, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.241272, -16.299051 ], [ -60.158386, -16.259504 ], [ -60.542908, -15.093339 ], [ -60.251770, -15.077428 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.354870 ], [ -60.504456, -13.776734 ], [ -61.083984, -13.480448 ], [ -61.712952, -13.488460 ], [ -62.127686, -13.199839 ], [ -62.803345, -13.001882 ], [ -63.196106, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.401611, -11.566144 ], [ -65.354919, -11.178402 ], [ -65.330200, -10.962764 ], [ -56.030273, -10.962764 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.330200, -10.962764 ], [ -65.354919, -11.178402 ], [ -65.401611, -11.566144 ], [ -64.316711, -12.460715 ], [ -63.196106, -12.626938 ], [ -62.803345, -13.001882 ], [ -62.127686, -13.199839 ], [ -61.712952, -13.488460 ], [ -61.083984, -13.480448 ], [ -60.504456, -13.776734 ], [ -60.460510, -14.354870 ], [ -60.265503, -14.644711 ], [ -60.251770, -15.077428 ], [ -60.542908, -15.093339 ], [ -60.158386, -16.259504 ], [ -58.241272, -16.299051 ], [ -58.386841, -16.878147 ], [ -58.279724, -17.271973 ], [ -57.735901, -17.552391 ], [ -57.499695, -18.174559 ], [ -57.675476, -18.960844 ], [ -57.950134, -19.399249 ], [ -57.854004, -19.970767 ], [ -58.167114, -20.177145 ], [ -58.183594, -19.867477 ], [ -59.114685, -19.357794 ], [ -60.043030, -19.342245 ], [ -61.787109, -19.634827 ], [ -62.265015, -20.514499 ], [ -62.292480, -21.051181 ], [ -62.583618, -21.943046 ], [ -62.652283, -22.146708 ], [ -62.762146, -22.146708 ], [ -62.847290, -22.034730 ], [ -63.987122, -21.993989 ], [ -64.061279, -22.146708 ], [ -64.907227, -22.146708 ], [ -64.964905, -22.075459 ], [ -65.681763, -21.943046 ], [ -66.272278, -21.833456 ], [ -66.373901, -21.943046 ], [ -66.560669, -22.146708 ], [ -67.719727, -22.146708 ], [ -67.719727, -10.962764 ], [ -65.330200, -10.962764 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.272278, -21.833456 ], [ -65.681763, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.907227, -22.146708 ], [ -66.560669, -22.146708 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ], [ [ [ -64.061279, -22.146708 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.762146, -22.146708 ], [ -64.061279, -22.146708 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, -10.962764 ], [ -56.030273, -22.146708 ], [ -56.321411, -22.146708 ], [ -56.472473, -22.085640 ], [ -56.598816, -22.146708 ], [ -57.626038, -22.146708 ], [ -57.936401, -22.090730 ], [ -57.928162, -21.943046 ], [ -57.870483, -20.732997 ], [ -58.167114, -20.177145 ], [ -57.854004, -19.970767 ], [ -57.950134, -19.399249 ], [ -57.675476, -18.960844 ], [ -57.499695, -18.174559 ], [ -57.735901, -17.552391 ], [ -58.279724, -17.271973 ], [ -58.386841, -16.878147 ], [ -58.241272, -16.299051 ], [ -60.158386, -16.259504 ], [ -60.542908, -15.093339 ], [ -60.251770, -15.077428 ], [ -60.265503, -14.644711 ], [ -60.460510, -14.354870 ], [ -60.504456, -13.776734 ], [ -61.083984, -13.480448 ], [ -61.712952, -13.488460 ], [ -62.127686, -13.199839 ], [ -62.803345, -13.001882 ], [ -63.196106, -12.626938 ], [ -64.316711, -12.460715 ], [ -65.401611, -11.566144 ], [ -65.354919, -11.178402 ], [ -65.330200, -10.962764 ], [ -56.030273, -10.962764 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -60.043030, -19.342245 ], [ -59.114685, -19.357794 ], [ -58.183594, -19.867477 ], [ -58.167114, -20.177145 ], [ -57.870483, -20.732997 ], [ -57.928162, -21.943046 ], [ -57.936401, -22.090730 ], [ -57.626038, -22.146708 ], [ -62.652283, -22.146708 ], [ -62.583618, -21.943046 ], [ -62.292480, -21.051181 ], [ -62.265015, -20.514499 ], [ -61.787109, -19.634827 ], [ -60.043030, -19.342245 ] ] ], [ [ [ -56.598816, -22.146708 ], [ -56.472473, -22.085640 ], [ -56.321411, -22.146708 ], [ -56.598816, -22.146708 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -66.272278, -21.833456 ], [ -65.681763, -21.943046 ], [ -64.964905, -22.075459 ], [ -64.907227, -22.146708 ], [ -66.560669, -22.146708 ], [ -66.373901, -21.943046 ], [ -66.272278, -21.833456 ] ] ], [ [ [ -64.061279, -22.146708 ], [ -63.987122, -21.993989 ], [ -62.847290, -22.034730 ], [ -62.762146, -22.146708 ], [ -64.061279, -22.146708 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ], [ -65.382385, -11.393879 ], [ -65.354919, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.512117 ], [ -65.338440, -9.763198 ], [ -66.645813, -9.930977 ], [ -67.173157, -10.306813 ], [ -67.500000, -10.458103 ], [ -67.719727, -10.558022 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bolivia", "sov_a3": "BOL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bolivia", "adm0_a3": "BOL", "geou_dif": 0, "geounit": "Bolivia", "gu_a3": "BOL", "su_dif": 0, "subunit": "Bolivia", "su_a3": "BOL", "brk_diff": 0, "name": "Bolivia", "name_long": "Bolivia", "brk_a3": "BOL", "brk_name": "Bolivia", "abbrev": "Bolivia", "postal": "BO", "formal_en": "Plurinational State of Bolivia", "name_sort": "Bolivia", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 2, "mapcolor13": 3, "pop_est": 9775246, "gdp_md_est": 43270, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BO", "iso_a3": "BOL", "iso_n3": "068", "un_a3": "068", "wb_a2": "BO", "wb_a3": "BOL", "woe_id": -99, "adm0_a3_is": "BOL", "adm0_a3_us": "BOL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.338440, -9.763198 ], [ -65.445557, -10.512117 ], [ -65.321960, -10.895345 ], [ -65.354919, -11.178402 ], [ -65.382385, -11.393879 ], [ -67.719727, -11.393879 ], [ -67.719727, -10.558022 ], [ -67.500000, -10.458103 ], [ -67.173157, -10.306813 ], [ -66.645813, -9.930977 ], [ -65.338440, -9.763198 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 0.219726 ], [ -56.030273, -11.393879 ], [ -65.382385, -11.393879 ], [ -65.354919, -11.178402 ], [ -65.321960, -10.895345 ], [ -65.445557, -10.512117 ], [ -65.338440, -9.763198 ], [ -66.645813, -9.930977 ], [ -67.173157, -10.306813 ], [ -67.500000, -10.458103 ], [ -67.719727, -10.558022 ], [ -67.719727, 0.219726 ], [ -56.030273, 0.219726 ] ] ] } } ] } ] } , @@ -3667,9 +3635,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 45.640928 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.137493 ], [ -66.964417, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.719727, 44.469071 ], [ -67.719727, 45.640928 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -64.756165, 49.066668 ], [ -64.495239, 48.922499 ], [ -64.171143, 48.741701 ], [ -65.115967, 48.070738 ], [ -64.797363, 46.993368 ], [ -64.473267, 46.238752 ], [ -63.174133, 45.738777 ], [ -61.520691, 45.884273 ], [ -60.518188, 47.008353 ], [ -60.449524, 46.282428 ], [ -59.804077, 45.920587 ], [ -61.040039, 45.265222 ], [ -63.253784, 44.670606 ], [ -64.245300, 44.264871 ], [ -65.363159, 43.544567 ], [ -66.123962, 43.618182 ], [ -66.162415, 44.465151 ], [ -64.426575, 45.292279 ], [ -66.025085, 45.259422 ], [ -67.137451, 45.137493 ], [ -67.500000, 45.452424 ], [ -67.719727, 45.640928 ], [ -67.719727, 48.671013 ], [ -67.500000, 48.757999 ], [ -67.085266, 48.922499 ], [ -66.719971, 49.066668 ], [ -64.756165, 49.066668 ] ] ], [ [ [ -64.014587, 47.036439 ], [ -63.665771, 46.549417 ], [ -62.937927, 46.415139 ], [ -62.012329, 46.443535 ], [ -62.503967, 46.033203 ], [ -62.874756, 45.968334 ], [ -64.143677, 46.392411 ], [ -64.393616, 46.726683 ], [ -64.014587, 47.036439 ] ] ], [ [ [ -56.030273, 49.066668 ], [ -56.030273, 47.576526 ], [ -56.250000, 47.632082 ], [ -57.323914, 47.572820 ], [ -59.265747, 47.602459 ], [ -59.419556, 47.899772 ], [ -58.796082, 48.252112 ], [ -59.232788, 48.523881 ], [ -58.677979, 48.922499 ], [ -58.474731, 49.066668 ], [ -56.030273, 49.066668 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United States of America", "sov_a3": "US1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United States of America", "adm0_a3": "USA", "geou_dif": 0, "geounit": "United States of America", "gu_a3": "USA", "su_dif": 0, "subunit": "United States of America", "su_a3": "USA", "brk_diff": 0, "name": "United States", "name_long": "United States", "brk_a3": "USA", "brk_name": "United States", "abbrev": "U.S.A.", "postal": "US", "formal_en": "United States of America", "name_sort": "United States of America", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 1, "pop_est": 313973000, "gdp_md_est": 15094000, "pop_year": 0, "lastcensus": 2010, "gdp_year": 0, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": 0, "iso_a2": "US", "iso_a3": "USA", "iso_n3": "840", "un_a3": "840", "wb_a2": "US", "wb_a3": "USA", "woe_id": -99, "adm0_a3_is": "USA", "adm0_a3_us": "USA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 13, "long_len": 13, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -67.719727, 45.640928 ], [ -67.500000, 45.452424 ], [ -67.137451, 45.137493 ], [ -66.964417, 44.809122 ], [ -67.500000, 44.566991 ], [ -67.719727, 44.469071 ], [ -67.719727, 45.640928 ] ] ] } } ] } ] } , @@ -3717,17 +3685,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.357916 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.975403, 81.127169 ], [ -67.104492, 81.093214 ], [ -67.500000, 80.990143 ], [ -67.719727, 80.931889 ], [ -67.719727, 81.127169 ], [ -66.975403, 81.127169 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 81.127169 ], [ -56.030273, 79.129976 ], [ -67.719727, 79.129976 ], [ -67.719727, 79.133601 ], [ -67.431335, 79.171335 ], [ -65.711975, 79.394526 ], [ -65.324707, 79.758237 ], [ -67.500000, 80.048561 ], [ -67.719727, 80.077473 ], [ -67.719727, 80.257575 ], [ -67.500000, 80.357916 ], [ -67.151184, 80.515792 ], [ -64.308472, 81.093214 ], [ -64.135437, 81.127169 ], [ -56.030273, 81.127169 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 10, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.481506, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Canada", "sov_a3": "CAN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Canada", "adm0_a3": "CAN", "geou_dif": 0, "geounit": "Canada", "gu_a3": "CAN", "su_dif": 0, "subunit": "Canada", "su_a3": "CAN", "brk_diff": 0, "name": "Canada", "name_long": "Canada", "brk_a3": "CAN", "brk_name": "Canada", "abbrev": "Can.", "postal": "CA", "formal_en": "Canada", "name_sort": "Canada", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 33487208, "gdp_md_est": 1300000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CA", "iso_a3": "CAN", "iso_n3": "124", "un_a3": "124", "wb_a2": "CA", "wb_a3": "CAN", "woe_id": -99, "adm0_a3_is": "CAN", "adm0_a3_us": "CAN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "North America", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.352905, 82.704241 ], [ -62.166138, 82.676285 ], [ -61.850281, 82.628514 ], [ -61.894226, 82.361644 ], [ -64.333191, 81.927816 ], [ -66.752930, 81.725164 ], [ -67.500000, 81.540524 ], [ -67.656555, 81.501241 ], [ -67.500000, 81.501646 ], [ -65.481262, 81.506516 ], [ -67.104492, 81.093214 ], [ -67.236328, 81.059130 ], [ -67.719727, 81.059130 ], [ -67.719727, 82.704241 ], [ -62.352905, 82.704241 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Greenland", "adm0_a3": "GRL", "geou_dif": 0, "geounit": "Greenland", "gu_a3": "GRL", "su_dif": 0, "subunit": "Greenland", "su_a3": "GRL", "brk_diff": 0, "name": "Greenland", "name_long": "Greenland", "brk_a3": "GRL", "brk_name": "Greenland", "abbrev": "Grlnd.", "postal": "GL", "formal_en": "Greenland", "note_adm0": "Den.", "name_sort": "Greenland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 57600, "gdp_md_est": 1100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GL", "iso_a3": "GRL", "iso_n3": "304", "un_a3": "304", "wb_a2": "GL", "wb_a3": "GRL", "woe_id": -99, "adm0_a3_is": "GRL", "adm0_a3_us": "GRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "North America", "region_un": "Americas", "subregion": "Northern America", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.030273, 82.194099 ], [ -56.030273, 81.059130 ], [ -64.481506, 81.059130 ], [ -64.308472, 81.093214 ], [ -63.690491, 81.214014 ], [ -62.234802, 81.321178 ], [ -62.652283, 81.770499 ], [ -60.281982, 82.033568 ], [ -57.208557, 82.190741 ], [ -56.250000, 82.193353 ], [ -56.030273, 82.194099 ] ] ] } } ] } ] } , @@ -3779,10 +3747,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.780273, -21.739091 ], [ -44.780273, -23.435529 ], [ -45.000000, -23.576574 ], [ -45.351562, -23.797911 ], [ -46.472168, -24.089097 ], [ -47.647705, -24.886436 ], [ -48.496399, -25.876523 ], [ -48.641968, -26.622908 ], [ -48.474426, -27.176469 ], [ -48.661194, -28.185823 ], [ -48.889160, -28.673721 ], [ -49.586792, -29.224096 ], [ -50.696411, -30.984673 ], [ -51.575317, -31.777213 ], [ -51.830750, -31.952162 ], [ -52.099915, -32.138409 ], [ -53.712158, -32.138409 ], [ -53.789062, -32.047661 ], [ -53.923645, -31.952162 ], [ -54.571838, -31.494262 ], [ -55.601807, -30.852721 ], [ -55.972595, -30.883369 ], [ -56.250000, -30.670991 ], [ -56.469727, -30.500751 ], [ -56.469727, -29.034559 ], [ -56.291199, -28.851891 ], [ -56.250000, -28.815800 ], [ -55.162354, -27.882784 ], [ -54.489441, -27.474161 ], [ -53.648987, -26.924519 ], [ -53.627014, -26.125850 ], [ -54.129639, -25.547398 ], [ -54.624023, -25.738055 ], [ -54.429016, -25.162687 ], [ -54.294434, -24.569606 ], [ -54.291687, -24.021379 ], [ -54.651489, -23.840626 ], [ -55.027771, -24.001308 ], [ -55.401306, -23.956136 ], [ -55.516663, -23.571540 ], [ -55.610046, -22.654572 ], [ -55.796814, -22.357696 ], [ -56.250000, -22.174688 ], [ -56.469727, -22.085640 ], [ -56.469727, -21.739091 ], [ -44.780273, -21.739091 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.034559 ], [ -56.469727, -27.547242 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Paraguay", "sov_a3": "PRY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Paraguay", "adm0_a3": "PRY", "geou_dif": 0, "geounit": "Paraguay", "gu_a3": "PRY", "su_dif": 0, "subunit": "Paraguay", "su_a3": "PRY", "brk_diff": 0, "name": "Paraguay", "name_long": "Paraguay", "brk_a3": "PRY", "brk_name": "Paraguay", "abbrev": "Para.", "postal": "PY", "formal_en": "Republic of Paraguay", "name_sort": "Paraguay", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 2, "pop_est": 6995655, "gdp_md_est": 28890, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PY", "iso_a3": "PRY", "iso_n3": "600", "un_a3": "600", "wb_a2": "PY", "wb_a3": "PRY", "woe_id": -99, "adm0_a3_is": "PRY", "adm0_a3_us": "PRY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -22.085640 ], [ -56.250000, -22.174688 ], [ -55.796814, -22.357696 ], [ -55.610046, -22.654572 ], [ -55.516663, -23.571540 ], [ -55.401306, -23.956136 ], [ -55.027771, -24.001308 ], [ -54.651489, -23.840626 ], [ -54.291687, -24.021379 ], [ -54.294434, -24.569606 ], [ -54.429016, -25.162687 ], [ -54.624023, -25.738055 ], [ -54.788818, -26.622908 ], [ -55.695190, -27.388840 ], [ -56.250000, -27.500963 ], [ -56.469727, -27.547242 ], [ -56.469727, -22.085640 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Argentina", "sov_a3": "ARG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Argentina", "adm0_a3": "ARG", "geou_dif": 0, "geounit": "Argentina", "gu_a3": "ARG", "su_dif": 0, "subunit": "Argentina", "su_a3": "ARG", "brk_diff": 0, "name": "Argentina", "name_long": "Argentina", "brk_a3": "ARG", "brk_name": "Argentina", "abbrev": "Arg.", "postal": "AR", "formal_en": "Argentine Republic", "name_sort": "Argentina", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 40913584, "gdp_md_est": 573900, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AR", "iso_a3": "ARG", "iso_n3": "032", "un_a3": "032", "wb_a2": "AR", "wb_a3": "ARG", "woe_id": -99, "adm0_a3_is": "ARG", "adm0_a3_us": "ARG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.129639, -25.547398 ], [ -53.627014, -26.125850 ], [ -53.648987, -26.924519 ], [ -54.489441, -27.474161 ], [ -55.162354, -27.882784 ], [ -56.250000, -28.815800 ], [ -56.291199, -28.851891 ], [ -56.469727, -29.034559 ], [ -56.469727, -27.547242 ], [ -56.250000, -27.500963 ], [ -55.695190, -27.388840 ], [ -54.788818, -26.622908 ], [ -54.624023, -25.738055 ], [ -54.129639, -25.547398 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Uruguay", "sov_a3": "URY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uruguay", "adm0_a3": "URY", "geou_dif": 0, "geounit": "Uruguay", "gu_a3": "URY", "su_dif": 0, "subunit": "Uruguay", "su_a3": "URY", "brk_diff": 0, "name": "Uruguay", "name_long": "Uruguay", "brk_a3": "URY", "brk_name": "Uruguay", "abbrev": "Ury.", "postal": "UY", "formal_en": "Oriental Republic of Uruguay", "name_sort": "Uruguay", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 3494382, "gdp_md_est": 43160, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "UY", "iso_a3": "URY", "iso_n3": "858", "un_a3": "858", "wb_a2": "UY", "wb_a3": "URY", "woe_id": -99, "adm0_a3_is": "URY", "adm0_a3_us": "URY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -56.469727, -30.500751 ], [ -56.250000, -30.670991 ], [ -55.972595, -30.883369 ], [ -55.601807, -30.852721 ], [ -54.571838, -31.494262 ], [ -53.923645, -31.952162 ], [ -53.789062, -32.047661 ], [ -53.712158, -32.138409 ], [ -56.469727, -32.138409 ], [ -56.469727, -30.500751 ] ] ] } } ] } ] } @@ -3805,9 +3773,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Suriname", "sov_a3": "SUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Suriname", "adm0_a3": "SUR", "geou_dif": 0, "geounit": "Suriname", "gu_a3": "SUR", "su_dif": 0, "subunit": "Suriname", "su_a3": "SUR", "brk_diff": 0, "name": "Suriname", "name_long": "Suriname", "brk_a3": "SUR", "brk_name": "Suriname", "abbrev": "Sur.", "postal": "SR", "formal_en": "Republic of Suriname", "name_sort": "Suriname", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 481267, "gdp_md_est": 4254, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "SR", "iso_a3": "SUR", "iso_n3": "740", "un_a3": "740", "wb_a2": "SR", "wb_a3": "SUR", "woe_id": -99, "adm0_a3_is": "SUR", "adm0_a3_us": "SUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -55.033264, 6.025848 ], [ -53.959351, 5.755372 ], [ -54.478455, 4.896677 ], [ -54.398804, 4.212204 ], [ -54.006042, 3.620330 ], [ -54.181824, 3.189879 ], [ -54.269714, 2.731813 ], [ -54.525146, 2.311994 ], [ -55.096436, 2.523293 ], [ -55.568848, 2.421764 ], [ -55.972595, 2.509573 ], [ -56.074219, 2.221428 ], [ -55.906677, 2.021065 ], [ -55.994568, 1.817932 ], [ -56.250000, 1.856365 ], [ -56.469727, 1.889306 ], [ -56.469727, 5.859207 ], [ -56.250000, 5.820954 ], [ -55.950623, 5.771769 ], [ -55.840759, 5.952095 ], [ -55.033264, 6.025848 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.974060, 1.735574 ], [ -49.946594, 1.046390 ], [ -50.699158, 0.222473 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.079651 ], [ -48.806763, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.889306 ], [ -56.250000, 1.856365 ], [ -55.994568, 1.817932 ], [ -55.906677, 2.021065 ], [ -56.074219, 2.221428 ], [ -55.972595, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.523293 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.778076, 2.377857 ], [ -53.555603, 2.333949 ], [ -53.418274, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.555847, 2.504085 ], [ -52.248230, 3.241982 ], [ -51.657715, 4.157419 ], [ -51.317139, 4.203986 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -53.959351, 5.755372 ], [ -52.882690, 5.410945 ], [ -51.822510, 4.565474 ], [ -51.657715, 4.157419 ], [ -52.248230, 3.241982 ], [ -52.555847, 2.504085 ], [ -52.940369, 2.125367 ], [ -53.418274, 2.054003 ], [ -53.555603, 2.333949 ], [ -53.778076, 2.377857 ], [ -54.088440, 2.106154 ], [ -54.525146, 2.311994 ], [ -54.272461, 2.740044 ], [ -54.184570, 3.195364 ], [ -54.011536, 3.623071 ], [ -54.398804, 4.212204 ], [ -54.478455, 4.896677 ], [ -53.959351, 5.755372 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Brazil", "sov_a3": "BRA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brazil", "adm0_a3": "BRA", "geou_dif": 0, "geounit": "Brazil", "gu_a3": "BRA", "su_dif": 0, "subunit": "Brazil", "su_a3": "BRA", "brk_diff": 0, "name": "Brazil", "name_long": "Brazil", "brk_a3": "BRA", "brk_name": "Brazil", "abbrev": "Brazil", "postal": "BR", "formal_en": "Federative Republic of Brazil", "name_sort": "Brazil", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 7, "pop_est": 198739269, "gdp_md_est": 1993000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BR", "iso_a3": "BRA", "iso_n3": "076", "un_a3": "076", "wb_a2": "BR", "wb_a3": "BRA", "woe_id": -99, "adm0_a3_is": "BRA", "adm0_a3_us": "BRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "South America", "region_un": "Americas", "subregion": "South America", "region_wb": "Latin America & Caribbean", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.317139, 4.203986 ], [ -51.069946, 3.650482 ], [ -50.509644, 1.900286 ], [ -49.974060, 1.735574 ], [ -49.946594, 1.046390 ], [ -50.699158, 0.222473 ], [ -50.471191, 0.000000 ], [ -50.388794, -0.079651 ], [ -48.806763, -0.219726 ], [ -56.469727, -0.219726 ], [ -56.469727, 1.889306 ], [ -56.250000, 1.856365 ], [ -55.994568, 1.817932 ], [ -55.906677, 2.021065 ], [ -56.074219, 2.221428 ], [ -55.972595, 2.509573 ], [ -55.568848, 2.421764 ], [ -55.096436, 2.523293 ], [ -54.525146, 2.311994 ], [ -54.088440, 2.106154 ], [ -53.778076, 2.377857 ], [ -53.555603, 2.333949 ], [ -53.418274, 2.054003 ], [ -52.940369, 2.125367 ], [ -52.555847, 2.504085 ], [ -52.248230, 3.241982 ], [ -51.657715, 4.157419 ], [ -51.317139, 4.203986 ] ] ] } } ] } ] } , @@ -4109,40 +4077,40 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.809570, 11.393879 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.581360, 11.393879 ], [ -14.809570, 11.393879 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.917419, 10.047289 ], [ -11.250000, 10.044585 ], [ -11.118164, 10.044585 ], [ -11.030273, 9.933682 ], [ -11.030273, 7.536764 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.784626 ], [ -11.708679, 6.860985 ], [ -12.428284, 7.261670 ], [ -12.950134, 7.798079 ], [ -13.123169, 8.165274 ], [ -13.246765, 8.904067 ], [ -12.711182, 9.343382 ], [ -12.595825, 9.619706 ], [ -12.425537, 9.836273 ], [ -12.150879, 9.857922 ], [ -11.917419, 10.047289 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 11.393879 ], [ -11.030273, 9.933682 ], [ -11.118164, 10.044585 ], [ -11.250000, 10.044585 ], [ -11.917419, 10.047289 ], [ -12.150879, 9.857922 ], [ -12.425537, 9.836273 ], [ -12.595825, 9.619706 ], [ -12.711182, 9.343382 ], [ -13.246765, 8.904067 ], [ -13.686218, 9.495117 ], [ -14.073486, 9.884981 ], [ -14.328918, 10.014834 ], [ -14.578857, 10.214922 ], [ -14.694214, 10.655210 ], [ -14.839783, 10.876465 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.809570, 11.393879 ], [ -11.030273, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 7.536764 ], [ -11.030273, 6.391730 ], [ -11.250000, 6.604587 ], [ -11.439514, 6.784626 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.397877 ], [ -11.030273, 7.536764 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.917419, 10.047289 ], [ -11.250000, 10.044585 ], [ -11.118164, 10.044585 ], [ -11.030273, 9.933682 ], [ -11.030273, 7.536764 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.784626 ], [ -11.708679, 6.860985 ], [ -12.428284, 7.261670 ], [ -12.950134, 7.798079 ], [ -13.123169, 8.165274 ], [ -13.246765, 8.904067 ], [ -12.711182, 9.343382 ], [ -12.595825, 9.619706 ], [ -12.425537, 9.836273 ], [ -12.150879, 9.857922 ], [ -11.917419, 10.047289 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.004089, 21.419833 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.608582, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.035278, 22.146708 ], [ -13.007812, 21.943046 ], [ -12.928162, 21.327757 ], [ -16.844788, 21.332873 ], [ -17.064514, 20.999907 ], [ -17.020569, 21.422390 ], [ -17.004089, 21.419833 ], [ -14.751892, 21.501630 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.370117, 22.146708 ], [ -13.035278, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.370117, 22.146708 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.751892, 21.501630 ], [ -17.004089, 21.419833 ], [ -17.020569, 21.422390 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.608582, 22.146708 ], [ -14.370117, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -14.576111, 16.599346 ], [ -14.098206, 16.304323 ], [ -13.436279, 16.040534 ], [ -12.829285, 15.302730 ], [ -12.170105, 14.618136 ], [ -12.126160, 13.995372 ], [ -11.928406, 13.421681 ], [ -11.552124, 13.141003 ], [ -11.466980, 12.755553 ], [ -11.513672, 12.441941 ], [ -11.659241, 12.385611 ], [ -12.203064, 12.466078 ], [ -12.279968, 12.353417 ], [ -12.499695, 12.331952 ], [ -13.216553, 12.576010 ], [ -15.548401, 12.626938 ], [ -15.817566, 12.514347 ], [ -16.147156, 12.546521 ], [ -16.677246, 12.385611 ], [ -16.842041, 13.151702 ], [ -15.930176, 13.130304 ], [ -15.691223, 13.269353 ], [ -15.512695, 13.277373 ], [ -15.141907, 13.509826 ], [ -14.713440, 13.298757 ], [ -14.276733, 13.280046 ], [ -13.845520, 13.504485 ], [ -14.046021, 13.792739 ], [ -14.375610, 13.624633 ], [ -14.685974, 13.629972 ], [ -15.081482, 13.875413 ], [ -15.400085, 13.859414 ], [ -15.625305, 13.624633 ], [ -16.712952, 13.595269 ], [ -17.124939, 14.373495 ], [ -17.624817, 14.729730 ], [ -17.185364, 14.918246 ], [ -16.701965, 15.620392 ], [ -16.463013, 16.135539 ], [ -16.119690, 16.454525 ], [ -15.622559, 16.370215 ], [ -15.136414, 16.586185 ], [ -14.576111, 16.599346 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Gambia", "sov_a3": "GMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gambia", "adm0_a3": "GMB", "geou_dif": 0, "geounit": "Gambia", "gu_a3": "GMB", "su_dif": 0, "subunit": "Gambia", "su_a3": "GMB", "brk_diff": 0, "name": "Gambia", "name_long": "The Gambia", "brk_a3": "GMB", "brk_name": "Gambia", "abbrev": "Gambia", "postal": "GM", "formal_en": "Republic of the Gambia", "name_sort": "Gambia, The", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 1782893, "gdp_md_est": 2272, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GM", "iso_a3": "GMB", "iso_n3": "270", "un_a3": "270", "wb_a2": "GM", "wb_a3": "GMB", "woe_id": -99, "adm0_a3_is": "GMB", "adm0_a3_us": "GMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.081482, 13.875413 ], [ -14.685974, 13.629972 ], [ -14.375610, 13.624633 ], [ -14.046021, 13.792739 ], [ -13.845520, 13.504485 ], [ -14.276733, 13.280046 ], [ -14.713440, 13.298757 ], [ -15.141907, 13.509826 ], [ -15.512695, 13.277373 ], [ -15.691223, 13.269353 ], [ -15.930176, 13.130304 ], [ -16.842041, 13.151702 ], [ -16.712952, 13.595269 ], [ -15.625305, 13.624633 ], [ -15.400085, 13.859414 ], [ -15.081482, 13.875413 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Guinea Bissau", "sov_a3": "GNB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea Bissau", "adm0_a3": "GNB", "geou_dif": 0, "geounit": "Guinea Bissau", "gu_a3": "GNB", "su_dif": 0, "subunit": "Guinea Bissau", "su_a3": "GNB", "brk_diff": 0, "name": "Guinea-Bissau", "name_long": "Guinea-Bissau", "brk_a3": "GNB", "brk_name": "Guinea-Bissau", "abbrev": "GnB.", "postal": "GW", "formal_en": "Republic of Guinea-Bissau", "name_sort": "Guinea-Bissau", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 1533964, "gdp_md_est": 904.2, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GW", "iso_a3": "GNB", "iso_n3": "624", "un_a3": "624", "wb_a2": "GW", "wb_a3": "GNB", "woe_id": -99, "adm0_a3_is": "GNB", "adm0_a3_us": "GNB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.548401, 12.626938 ], [ -13.699951, 12.586732 ], [ -13.719177, 12.246076 ], [ -13.829041, 12.141376 ], [ -13.743896, 11.810900 ], [ -13.900452, 11.679135 ], [ -14.120178, 11.676445 ], [ -14.381104, 11.509631 ], [ -14.685974, 11.528470 ], [ -15.004578, 11.178402 ], [ -15.130920, 11.040951 ], [ -15.306702, 11.178402 ], [ -15.663757, 11.458491 ], [ -16.083984, 11.525779 ], [ -16.314697, 11.805523 ], [ -16.309204, 11.958723 ], [ -16.614075, 12.170911 ], [ -16.677246, 12.385611 ], [ -16.147156, 12.546521 ], [ -15.817566, 12.514347 ], [ -15.548401, 12.626938 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 22.146708 ], [ -11.030273, 15.284185 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.664734, 15.387488 ], [ -11.835022, 14.798783 ], [ -12.170105, 14.618136 ], [ -12.829285, 15.302730 ], [ -13.436279, 16.040534 ], [ -14.098206, 16.304323 ], [ -14.576111, 16.599346 ], [ -15.136414, 16.586185 ], [ -15.622559, 16.370215 ], [ -16.119690, 16.454525 ], [ -16.463013, 16.135539 ], [ -16.550903, 16.673031 ], [ -16.270752, 17.167034 ], [ -16.147156, 18.109308 ], [ -16.257019, 19.095862 ], [ -16.377869, 19.593432 ], [ -16.278992, 20.092047 ], [ -16.537170, 20.568510 ], [ -17.064514, 20.999907 ], [ -16.844788, 21.332873 ], [ -12.928162, 21.327757 ], [ -13.007812, 21.943046 ], [ -13.035278, 22.146708 ], [ -11.030273, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -11.030273, 15.284185 ], [ -11.030273, 12.211180 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.513672, 12.441941 ], [ -11.466980, 12.755553 ], [ -11.552124, 13.141003 ], [ -11.928406, 13.421681 ], [ -12.126160, 13.995372 ], [ -12.170105, 14.618136 ], [ -11.835022, 14.798783 ], [ -11.664734, 15.387488 ], [ -11.348877, 15.411319 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.699951, 12.586732 ], [ -13.216553, 12.576010 ], [ -12.499695, 12.331952 ], [ -12.279968, 12.353417 ], [ -12.203064, 12.466078 ], [ -11.659241, 12.385611 ], [ -11.513672, 12.441941 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -11.030273, 12.211180 ], [ -11.030273, 10.962764 ], [ -14.993591, 10.962764 ], [ -15.130920, 11.040951 ], [ -15.004578, 11.178402 ], [ -14.685974, 11.528470 ], [ -14.381104, 11.509631 ], [ -14.120178, 11.676445 ], [ -13.900452, 11.679135 ], [ -13.743896, 11.810900 ], [ -13.829041, 12.141376 ], [ -13.719177, 12.246076 ], [ -13.699951, 12.586732 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 14, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.721905 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.900028 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.030273, 28.721905 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 26.929416 ], [ -11.030273, 25.918526 ], [ -11.250000, 25.920996 ], [ -11.969604, 25.933347 ], [ -11.936646, 23.375035 ], [ -12.873230, 23.284242 ], [ -13.117676, 22.771117 ], [ -13.007812, 21.943046 ], [ -12.983093, 21.739091 ], [ -14.672241, 21.739091 ], [ -14.631042, 21.861499 ], [ -14.556885, 21.943046 ], [ -14.221802, 22.309426 ], [ -13.892212, 23.689805 ], [ -12.499695, 24.769278 ], [ -12.030029, 26.029638 ], [ -11.716919, 26.103654 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.900028 ], [ -11.030273, 26.929416 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.030273, 28.721905 ], [ -11.030273, 26.929416 ], [ -11.250000, 26.900028 ], [ -11.392822, 26.882880 ], [ -11.716919, 26.103654 ], [ -12.030029, 26.029638 ], [ -12.499695, 24.769278 ], [ -13.892212, 23.689805 ], [ -14.221802, 22.309426 ], [ -14.556885, 21.943046 ], [ -14.631042, 21.861499 ], [ -14.672241, 21.739091 ], [ -16.987610, 21.739091 ], [ -16.973877, 21.886987 ], [ -16.894226, 21.943046 ], [ -16.589355, 22.159427 ], [ -16.262512, 22.679916 ], [ -16.325684, 23.016548 ], [ -15.982361, 23.722497 ], [ -15.424805, 24.359608 ], [ -15.089722, 24.519638 ], [ -14.823303, 25.103010 ], [ -14.801331, 25.636574 ], [ -14.438782, 26.254010 ], [ -13.774109, 26.617997 ], [ -13.139648, 27.639740 ], [ -12.617798, 28.038046 ], [ -11.689453, 28.149503 ], [ -11.030273, 28.721905 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.969604, 25.933347 ], [ -11.250000, 25.920996 ], [ -11.030273, 25.918526 ], [ -11.030273, 21.739091 ], [ -12.983093, 21.739091 ], [ -13.007812, 21.943046 ], [ -13.117676, 22.771117 ], [ -12.873230, 23.284242 ], [ -11.936646, 23.375035 ], [ -11.969604, 25.933347 ] ] ] } } ] } ] } @@ -4241,16 +4209,16 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.469727, 10.044585 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.792808 ], [ -11.469727, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 11.393879 ], [ -5.196533, 11.375031 ], [ -5.322876, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.095966 ], [ -6.204529, 10.522919 ], [ -6.492920, 10.412183 ], [ -6.665955, 10.431092 ], [ -6.849976, 10.139228 ], [ -7.621765, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.407288, 10.908830 ], [ -8.621521, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.196533, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 11.393879 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ 0.000000, 11.024776 ], [ -0.439453, 11.097556 ], [ -0.760803, 10.935798 ], [ -1.203003, 11.008601 ], [ -2.941589, 10.962764 ], [ -2.963562, 10.395975 ], [ -2.826233, 9.641369 ], [ -3.512878, 9.901216 ], [ -3.979797, 9.863334 ], [ -4.331360, 9.611582 ], [ -4.779053, 9.822742 ], [ -4.954834, 10.152746 ], [ -5.405273, 10.371660 ], [ -5.471191, 10.951978 ], [ -5.322876, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.196533, 11.393879 ], [ 0.219727, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.196533, 11.393879 ], [ -5.196533, 11.375031 ], [ -5.322876, 11.178402 ], [ -5.471191, 10.951978 ], [ -5.405273, 10.371660 ], [ -5.817261, 10.223031 ], [ -6.050720, 10.095966 ], [ -6.204529, 10.522919 ], [ -6.492920, 10.412183 ], [ -6.665955, 10.431092 ], [ -6.849976, 10.139228 ], [ -7.621765, 10.147339 ], [ -7.899170, 10.298706 ], [ -8.031006, 10.206813 ], [ -8.335876, 10.495914 ], [ -8.283691, 10.792839 ], [ -8.407288, 10.908830 ], [ -8.621521, 10.811724 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -5.196533, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.621521, 10.811724 ], [ -8.407288, 10.908830 ], [ -8.283691, 10.792839 ], [ -8.335876, 10.495914 ], [ -8.031006, 10.206813 ], [ -8.228760, 10.128413 ], [ -8.308411, 9.790264 ], [ -8.080444, 9.375903 ], [ -7.833252, 8.575590 ], [ -8.204041, 8.456072 ], [ -8.300171, 8.317495 ], [ -8.220520, 8.124491 ], [ -8.280945, 7.686495 ], [ -8.440247, 7.686495 ], [ -8.723145, 7.710992 ], [ -8.926392, 7.307985 ], [ -9.209290, 7.313433 ], [ -9.404297, 7.525873 ], [ -9.338379, 7.928675 ], [ -9.755859, 8.540281 ], [ -10.016785, 8.428904 ], [ -10.231018, 8.407168 ], [ -10.505676, 8.350106 ], [ -10.494690, 8.716789 ], [ -10.653992, 8.977323 ], [ -10.621033, 9.267490 ], [ -10.838013, 9.687398 ], [ -11.118164, 10.044585 ], [ -11.469727, 10.044585 ], [ -11.469727, 11.393879 ], [ -8.377075, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Liberia", "sov_a3": "LBR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Liberia", "adm0_a3": "LBR", "geou_dif": 0, "geounit": "Liberia", "gu_a3": "LBR", "su_dif": 0, "subunit": "Liberia", "su_a3": "LBR", "brk_diff": 0, "name": "Liberia", "name_long": "Liberia", "brk_a3": "LBR", "brk_name": "Liberia", "abbrev": "Liberia", "postal": "LR", "formal_en": "Republic of Liberia", "name_sort": "Liberia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 3441790, "gdp_md_est": 1526, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "LR", "iso_a3": "LBR", "iso_n3": "430", "un_a3": "430", "wb_a2": "LR", "wb_a3": "LBR", "woe_id": -99, "adm0_a3_is": "LBR", "adm0_a3_us": "LBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.755859, 8.540281 ], [ -9.338379, 7.928675 ], [ -9.404297, 7.525873 ], [ -9.209290, 7.313433 ], [ -8.926392, 7.307985 ], [ -8.723145, 7.710992 ], [ -8.440247, 7.686495 ], [ -8.484192, 7.395153 ], [ -8.385315, 6.912794 ], [ -8.602295, 6.468151 ], [ -8.311157, 6.192438 ], [ -7.992554, 6.126900 ], [ -7.569580, 5.706181 ], [ -7.539368, 5.312501 ], [ -7.635498, 5.189423 ], [ -7.712402, 4.365582 ], [ -7.973328, 4.354627 ], [ -9.006042, 4.833733 ], [ -9.912415, 5.594118 ], [ -10.766602, 6.140555 ], [ -11.250000, 6.604587 ], [ -11.439514, 6.784626 ], [ -11.250000, 7.040927 ], [ -11.200562, 7.106344 ], [ -11.145630, 7.397877 ], [ -10.695190, 7.939556 ], [ -10.231018, 8.407168 ], [ -10.016785, 8.428904 ], [ -9.755859, 8.540281 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Sierra Leone", "sov_a3": "SLE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sierra Leone", "adm0_a3": "SLE", "geou_dif": 0, "geounit": "Sierra Leone", "gu_a3": "SLE", "su_dif": 0, "subunit": "Sierra Leone", "su_a3": "SLE", "brk_diff": 0, "name": "Sierra Leone", "name_long": "Sierra Leone", "brk_a3": "SLE", "brk_name": "Sierra Leone", "abbrev": "S.L.", "postal": "SL", "formal_en": "Republic of Sierra Leone", "name_sort": "Sierra Leone", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 6440053, "gdp_md_est": 4285, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SL", "iso_a3": "SLE", "iso_n3": "694", "un_a3": "694", "wb_a2": "SL", "wb_a3": "SLE", "woe_id": -99, "adm0_a3_is": "SLE", "adm0_a3_us": "SLE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.118164, 10.044585 ], [ -10.838013, 9.687398 ], [ -10.621033, 9.267490 ], [ -10.653992, 8.977323 ], [ -10.494690, 8.716789 ], [ -10.505676, 8.350106 ], [ -10.231018, 8.407168 ], [ -10.695190, 7.939556 ], [ -11.145630, 7.397877 ], [ -11.200562, 7.106344 ], [ -11.250000, 7.040927 ], [ -11.439514, 6.784626 ], [ -11.469727, 6.792808 ], [ -11.469727, 10.044585 ], [ -11.118164, 10.044585 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ivory Coast", "sov_a3": "CIV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ivory Coast", "adm0_a3": "CIV", "geou_dif": 0, "geounit": "Ivory Coast", "gu_a3": "CIV", "su_dif": 0, "subunit": "Ivory Coast", "su_a3": "CIV", "brk_diff": 0, "name": "Cรดte d'Ivoire", "name_long": "Cรดte d'Ivoire", "brk_a3": "CIV", "brk_name": "Cรดte d'Ivoire", "abbrev": "I.C.", "postal": "CI", "formal_en": "Republic of Ivory Coast", "formal_fr": "Republic of Cote D'Ivoire", "name_sort": "Cรดte d'Ivoire", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 20617068, "gdp_md_est": 33850, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CI", "iso_a3": "CIV", "iso_n3": "384", "un_a3": "384", "wb_a2": "CI", "wb_a3": "CIV", "woe_id": -99, "adm0_a3_is": "CIV", "adm0_a3_us": "CIV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 13, "long_len": 13, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.204529, 10.522919 ], [ -6.050720, 10.095966 ], [ -5.817261, 10.223031 ], [ -5.405273, 10.371660 ], [ -4.954834, 10.152746 ], [ -4.779053, 9.822742 ], [ -4.331360, 9.611582 ], [ -3.979797, 9.863334 ], [ -3.512878, 9.901216 ], [ -2.826233, 9.641369 ], [ -2.562561, 8.219646 ], [ -2.982788, 7.378810 ], [ -3.243713, 6.249776 ], [ -2.809753, 5.389070 ], [ -2.856445, 4.995186 ], [ -3.312378, 4.984241 ], [ -4.010010, 5.178482 ], [ -4.649963, 5.167541 ], [ -5.833740, 4.992450 ], [ -6.528625, 4.705091 ], [ -7.520142, 4.338195 ], [ -7.712402, 4.365582 ], [ -7.635498, 5.189423 ], [ -7.539368, 5.312501 ], [ -7.569580, 5.706181 ], [ -7.992554, 6.126900 ], [ -8.311157, 6.192438 ], [ -8.602295, 6.468151 ], [ -8.385315, 6.912794 ], [ -8.484192, 7.395153 ], [ -8.440247, 7.686495 ], [ -8.280945, 7.686495 ], [ -8.220520, 8.124491 ], [ -8.300171, 8.317495 ], [ -8.204041, 8.456072 ], [ -7.833252, 8.575590 ], [ -8.080444, 9.375903 ], [ -8.308411, 9.790264 ], [ -8.228760, 10.128413 ], [ -8.031006, 10.206813 ], [ -7.899170, 10.298706 ], [ -7.621765, 10.147339 ], [ -6.849976, 10.139228 ], [ -6.665955, 10.431092 ], [ -6.492920, 10.412183 ], [ -6.204529, 10.522919 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.439453, 11.097556 ], [ 0.000000, 11.024776 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.914224 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.219727, 10.374362 ], [ 0.219727, 5.613252 ], [ 0.000000, 5.531244 ], [ -0.508118, 5.342583 ], [ -1.062927, 5.000658 ], [ -1.963806, 4.710566 ], [ -2.856445, 4.995186 ], [ -2.809753, 5.389070 ], [ -3.243713, 6.249776 ], [ -2.982788, 7.378810 ], [ -2.562561, 8.219646 ], [ -2.963562, 10.395975 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ], [ -0.760803, 10.935798 ], [ -0.439453, 11.097556 ] ] ] } } @@ -4261,15 +4229,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Senegal", "sov_a3": "SEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Senegal", "adm0_a3": "SEN", "geou_dif": 0, "geounit": "Senegal", "gu_a3": "SEN", "su_dif": 0, "subunit": "Senegal", "su_a3": "SEN", "brk_diff": 0, "name": "Senegal", "name_long": "Senegal", "brk_a3": "SEN", "brk_name": "Senegal", "abbrev": "Sen.", "postal": "SN", "formal_en": "Republic of Senegal", "name_sort": "Senegal", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 13711597, "gdp_md_est": 21980, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SN", "iso_a3": "SEN", "iso_n3": "686", "un_a3": "686", "wb_a2": "SN", "wb_a3": "SEN", "woe_id": -99, "adm0_a3_is": "SEN", "adm0_a3_us": "SEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.469727, 12.768946 ], [ -11.466980, 12.755553 ], [ -11.469727, 12.736801 ], [ -11.469727, 12.768946 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.138611, 22.146708 ], [ -6.113892, 21.943046 ], [ -5.971069, 20.640495 ], [ -5.487671, 16.325411 ], [ -5.314636, 16.201488 ], [ -5.537109, 15.501326 ], [ -9.549866, 15.485445 ], [ -9.700928, 15.262989 ], [ -10.088196, 15.329221 ], [ -10.651245, 15.133113 ], [ -11.250000, 15.371598 ], [ -11.348877, 15.411319 ], [ -11.469727, 15.403376 ], [ -11.469727, 22.146708 ], [ -6.138611, 22.146708 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.543823, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.322876, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.543823, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.516357, 15.117204 ], [ -0.266418, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.219727, 14.928862 ], [ 0.219727, 11.013993 ], [ 0.024719, 11.019384 ], [ -0.439453, 11.097556 ], [ -0.705872, 10.962764 ], [ -0.925598, 10.962764 ], [ -1.203003, 11.008601 ], [ -2.941589, 10.962764 ], [ -5.462952, 10.962764 ], [ -5.322876, 11.178402 ], [ -5.196533, 11.375031 ], [ -5.221252, 11.714099 ], [ -4.427490, 12.543840 ], [ -4.279175, 13.229251 ], [ -4.007263, 13.472435 ], [ -3.523865, 13.338848 ], [ -3.103638, 13.541871 ], [ -2.969055, 13.798074 ], [ -2.191772, 14.245749 ], [ -2.002258, 14.559659 ], [ -1.065674, 14.973973 ], [ -0.516357, 15.117204 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.543823, 22.146708 ], [ -0.230713, 21.943046 ], [ 0.000000, 21.795208 ], [ 0.219727, 21.652323 ], [ 0.219727, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.266418, 14.923554 ], [ -0.516357, 15.117204 ], [ -1.065674, 14.973973 ], [ -2.002258, 14.559659 ], [ -2.191772, 14.245749 ], [ -2.969055, 13.798074 ], [ -3.103638, 13.541871 ], [ -3.523865, 13.338848 ], [ -4.007263, 13.472435 ], [ -4.279175, 13.229251 ], [ -4.427490, 12.543840 ], [ -5.221252, 11.714099 ], [ -5.196533, 11.375031 ], [ -5.322876, 11.178402 ], [ -5.462952, 10.962764 ], [ -8.602295, 10.962764 ], [ -8.580322, 11.135287 ], [ -8.547363, 11.178402 ], [ -8.377075, 11.393879 ], [ -8.786316, 11.813588 ], [ -8.904419, 12.087667 ], [ -9.126892, 12.307802 ], [ -9.327393, 12.334636 ], [ -9.569092, 12.195073 ], [ -9.890442, 12.060809 ], [ -10.165100, 11.843159 ], [ -10.593567, 11.923790 ], [ -10.870972, 12.178965 ], [ -11.035767, 12.211180 ], [ -11.250000, 12.101095 ], [ -11.296692, 12.076924 ], [ -11.455994, 12.076924 ], [ -11.469727, 12.162856 ], [ -11.469727, 15.403376 ], [ -11.348877, 15.411319 ], [ -11.250000, 15.371598 ], [ -10.651245, 15.133113 ], [ -10.088196, 15.329221 ], [ -9.700928, 15.262989 ], [ -9.549866, 15.485445 ], [ -5.537109, 15.501326 ], [ -5.314636, 16.201488 ], [ -5.487671, 16.325411 ], [ -5.971069, 20.640495 ], [ -6.113892, 21.943046 ], [ -6.138611, 22.146708 ], [ -0.543823, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Guinea", "sov_a3": "GIN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Guinea", "adm0_a3": "GIN", "geou_dif": 0, "geounit": "Guinea", "gu_a3": "GIN", "su_dif": 0, "subunit": "Guinea", "su_a3": "GIN", "brk_diff": 0, "name": "Guinea", "name_long": "Guinea", "brk_a3": "GIN", "brk_name": "Guinea", "abbrev": "Gin.", "postal": "GN", "formal_en": "Republic of Guinea", "name_sort": "Guinea", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 10057975, "gdp_md_est": 10600, "pop_year": -99, "lastcensus": 1996, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "GN", "iso_a3": "GIN", "iso_n3": "324", "un_a3": "324", "wb_a2": "GN", "wb_a3": "GIN", "woe_id": -99, "adm0_a3_is": "GIN", "adm0_a3_us": "GIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -9.327393, 12.334636 ], [ -9.126892, 12.307802 ], [ -8.904419, 12.087667 ], [ -8.786316, 11.813588 ], [ -8.377075, 11.393879 ], [ -8.547363, 11.178402 ], [ -8.580322, 11.135287 ], [ -8.602295, 10.962764 ], [ -11.469727, 10.962764 ], [ -11.469727, 12.162856 ], [ -11.455994, 12.076924 ], [ -11.296692, 12.076924 ], [ -11.250000, 12.101095 ], [ -11.035767, 12.211180 ], [ -10.870972, 12.178965 ], [ -10.593567, 11.923790 ], [ -10.165100, 11.843159 ], [ -9.890442, 12.060809 ], [ -9.569092, 12.195073 ], [ -9.327393, 12.334636 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -1.203003, 11.008601 ], [ -0.925598, 10.962764 ], [ -2.941589, 10.962764 ], [ -1.203003, 11.008601 ] ] ], [ [ [ -0.705872, 10.962764 ], [ -0.439453, 11.097556 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.705872, 10.962764 ] ] ] ] } } , @@ -4281,10 +4249,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.276917, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.900028 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.340648 ], [ -11.250000, 28.531449 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.276917, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 7, "sovereignt": "Western Sahara", "sov_a3": "SAH", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Western Sahara", "adm0_a3": "SAH", "geou_dif": 0, "geounit": "Western Sahara", "gu_a3": "SAH", "su_dif": 0, "subunit": "Western Sahara", "su_a3": "SAH", "brk_diff": 1, "name": "W. Sahara", "name_long": "Western Sahara", "brk_a3": "B28", "brk_name": "W. Sahara", "abbrev": "W. Sah.", "postal": "WS", "formal_en": "Sahrawi Arab Democratic Republic", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Morocco", "name_sort": "Western Sahara", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 4, "mapcolor13": 4, "pop_est": -99, "gdp_md_est": -99, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "EH", "iso_a3": "ESH", "iso_n3": "732", "un_a3": "732", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "SAH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 14, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.665466, 27.656771 ], [ -8.665466, 27.588632 ], [ -8.684692, 27.396155 ], [ -8.687439, 25.881466 ], [ -11.250000, 25.920996 ], [ -11.469727, 25.925937 ], [ -11.469727, 26.698999 ], [ -11.392822, 26.882880 ], [ -11.250000, 26.900028 ], [ -10.552368, 26.990619 ], [ -10.189819, 26.860830 ], [ -9.736633, 26.860830 ], [ -9.412537, 27.088473 ], [ -8.794556, 27.120257 ], [ -8.816528, 27.656771 ], [ -8.665466, 27.656771 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.276917, 32.138409 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.067932, 31.723495 ], [ -3.647461, 31.637014 ], [ -3.691406, 30.897511 ], [ -4.858704, 30.500751 ], [ -5.243225, 30.000138 ], [ -6.061707, 29.730992 ], [ -7.058716, 29.578234 ], [ -8.673706, 28.842268 ], [ -8.665466, 27.656771 ], [ -8.816528, 27.656771 ], [ -8.794556, 27.120257 ], [ -9.412537, 27.088473 ], [ -9.736633, 26.860830 ], [ -10.189819, 26.860830 ], [ -10.552368, 26.990619 ], [ -11.250000, 26.900028 ], [ -11.392822, 26.882880 ], [ -11.469727, 26.698999 ], [ -11.469727, 28.340648 ], [ -11.250000, 28.531449 ], [ -10.901184, 28.832644 ], [ -10.398560, 29.099377 ], [ -9.563599, 29.933515 ], [ -9.813538, 31.177560 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.409790, 32.138409 ], [ -2.276917, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mauritania", "sov_a3": "MRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mauritania", "adm0_a3": "MRT", "geou_dif": 0, "geounit": "Mauritania", "gu_a3": "MRT", "su_dif": 0, "subunit": "Mauritania", "su_a3": "MRT", "brk_diff": 0, "name": "Mauritania", "name_long": "Mauritania", "brk_a3": "MRT", "brk_name": "Mauritania", "abbrev": "Mrt.", "postal": "MR", "formal_en": "Islamic Republic of Mauritania", "name_sort": "Mauritania", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 1, "pop_est": 3129486, "gdp_md_est": 6308, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MR", "iso_a3": "MRT", "iso_n3": "478", "un_a3": "478", "wb_a2": "MR", "wb_a3": "MRT", "woe_id": -99, "adm0_a3_is": "MRT", "adm0_a3_us": "MRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.684692, 27.396155 ], [ -4.924622, 24.973610 ], [ -6.454468, 24.956180 ], [ -6.116638, 21.943046 ], [ -6.091919, 21.739091 ], [ -11.469727, 21.739091 ], [ -11.469727, 25.925937 ], [ -11.250000, 25.920996 ], [ -8.687439, 25.881466 ], [ -8.684692, 27.396155 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.924622, 24.973610 ], [ -1.549072, 22.793907 ], [ -0.227966, 21.943046 ], [ 0.085144, 21.739091 ], [ -6.091919, 21.739091 ], [ -6.116638, 21.943046 ], [ -6.454468, 24.956180 ], [ -4.924622, 24.973610 ] ] ] } } @@ -4297,30 +4265,30 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.789551, 41.145570 ], [ -6.849976, 41.110399 ], [ -6.852722, 40.979898 ], [ -6.863708, 40.331890 ], [ -7.025757, 40.185168 ], [ -7.066956, 39.711413 ], [ -7.498169, 39.628961 ], [ -7.097168, 39.029852 ], [ -7.374573, 38.373962 ], [ -7.028503, 38.076204 ], [ -7.165833, 37.803274 ], [ -7.536621, 37.429069 ], [ -7.454224, 37.096812 ], [ -7.855225, 36.837866 ], [ -8.382568, 36.978421 ], [ -8.898926, 36.868635 ], [ -8.745117, 37.651209 ], [ -8.841248, 38.266219 ], [ -9.286194, 38.358888 ], [ -9.527893, 38.736946 ], [ -9.448242, 39.391632 ], [ -9.047241, 39.755769 ], [ -8.978577, 40.159984 ], [ -8.769836, 40.759741 ], [ -8.780823, 40.979898 ], [ -8.789062, 41.145570 ], [ -6.789551, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.929871, 35.759886 ], [ -5.193787, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.639221, 35.400245 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.793518, 34.526924 ], [ -1.733093, 33.920572 ], [ -1.387024, 32.863439 ], [ -1.123352, 32.650938 ], [ -1.307373, 32.263911 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.015747, 31.765537 ], [ -9.555359, 31.765537 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.240985 ], [ -7.654724, 33.696923 ], [ -6.913147, 34.109531 ], [ -6.242981, 35.146863 ], [ -5.929871, 35.759886 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 41.145570 ], [ 0.219727, 40.225024 ], [ 0.107117, 40.124291 ], [ 0.000000, 39.899202 ], [ -0.277405, 39.310925 ], [ 0.000000, 38.903858 ], [ 0.112610, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.466919, 38.292092 ], [ -0.683899, 37.642510 ], [ -1.439209, 37.442155 ], [ -2.145081, 36.675028 ], [ -3.416748, 36.659606 ], [ -4.369812, 36.677231 ], [ -4.996033, 36.323977 ], [ -5.377808, 35.946883 ], [ -5.866699, 36.029111 ], [ -6.237488, 36.368222 ], [ -6.520386, 36.943307 ], [ -7.454224, 37.096812 ], [ -7.536621, 37.429069 ], [ -7.165833, 37.803274 ], [ -7.028503, 38.076204 ], [ -7.374573, 38.373962 ], [ -7.097168, 39.029852 ], [ -7.498169, 39.628961 ], [ -7.066956, 39.711413 ], [ -7.025757, 40.185168 ], [ -6.863708, 40.331890 ], [ -6.852722, 40.979898 ], [ -6.849976, 41.110399 ], [ -6.789551, 41.145570 ], [ 0.219727, 41.145570 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Morocco", "sov_a3": "MAR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Morocco", "adm0_a3": "MAR", "geou_dif": 0, "geounit": "Morocco", "gu_a3": "MAR", "su_dif": 0, "subunit": "Morocco", "su_a3": "MAR", "brk_diff": 0, "name": "Morocco", "name_long": "Morocco", "brk_a3": "MAR", "brk_name": "Morocco", "abbrev": "Mor.", "postal": "MA", "formal_en": "Kingdom of Morocco", "name_sort": "Morocco", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 34859364, "gdp_md_est": 136600, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MA", "iso_a3": "MAR", "iso_n3": "504", "un_a3": "504", "wb_a2": "MA", "wb_a3": "MAR", "woe_id": -99, "adm0_a3_is": "MAR", "adm0_a3_us": "MAR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.929871, 35.759886 ], [ -5.193787, 35.755428 ], [ -4.592285, 35.330812 ], [ -3.639221, 35.400245 ], [ -2.603760, 35.178298 ], [ -2.169800, 35.169318 ], [ -1.793518, 34.526924 ], [ -1.733093, 33.920572 ], [ -1.387024, 32.863439 ], [ -1.123352, 32.650938 ], [ -1.307373, 32.263911 ], [ -2.617493, 32.094209 ], [ -2.790527, 31.952162 ], [ -3.015747, 31.765537 ], [ -9.555359, 31.765537 ], [ -9.472961, 31.952162 ], [ -9.434509, 32.038348 ], [ -9.299927, 32.565333 ], [ -8.657227, 33.240985 ], [ -7.654724, 33.696923 ], [ -6.913147, 34.109531 ], [ -6.242981, 35.146863 ], [ -5.929871, 35.759886 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 36.115690 ], [ 0.219727, 31.765537 ], [ -3.015747, 31.765537 ], [ -2.790527, 31.952162 ], [ -2.617493, 32.094209 ], [ -1.307373, 32.263911 ], [ -1.123352, 32.650938 ], [ -1.387024, 32.863439 ], [ -1.733093, 33.920572 ], [ -1.793518, 34.526924 ], [ -2.169800, 35.169318 ], [ -1.208496, 35.715298 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.971338 ], [ 0.219727, 36.115690 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.264465, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.883876 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.110399 ], [ -6.852722, 40.979898 ], [ -6.855469, 40.813809 ], [ -8.772583, 40.813809 ], [ -8.780823, 40.979898 ], [ -8.791809, 41.184855 ], [ -8.989563, 41.543533 ], [ -9.033508, 41.879786 ], [ -8.670959, 42.134895 ], [ -8.264465, 42.281373 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.219727, 49.066668 ], [ 0.219727, 42.609706 ], [ 0.000000, 42.662241 ], [ -1.502380, 43.034768 ], [ -1.900635, 43.423004 ], [ -1.384277, 44.022447 ], [ -1.194763, 46.014131 ], [ -2.224731, 47.064509 ], [ -2.963562, 47.570967 ], [ -4.490662, 47.954984 ], [ -4.592285, 48.683708 ], [ -3.295898, 48.900838 ], [ -1.617737, 48.643798 ], [ -1.694641, 48.922499 ], [ -1.735840, 49.066668 ], [ 0.219727, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Portugal", "sov_a3": "PRT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Portugal", "adm0_a3": "PRT", "geou_dif": 0, "geounit": "Portugal", "gu_a3": "PRT", "su_dif": 1, "subunit": "Portugal", "su_a3": "PR1", "brk_diff": 0, "name": "Portugal", "name_long": "Portugal", "brk_a3": "PR1", "brk_name": "Portugal", "abbrev": "Port.", "postal": "P", "formal_en": "Portuguese Republic", "name_sort": "Portugal", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 10707924, "gdp_md_est": 208627, "pop_year": -99, "lastcensus": 2011, "gdp_year": 0, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PT", "iso_a3": "PRT", "iso_n3": "620", "un_a3": "620", "wb_a2": "PT", "wb_a3": "PRT", "woe_id": -99, "adm0_a3_is": "PRT", "adm0_a3_us": "PRT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.264465, 42.281373 ], [ -8.014526, 41.791793 ], [ -7.421265, 41.791793 ], [ -7.250977, 41.918629 ], [ -6.668701, 41.883876 ], [ -6.388550, 41.380930 ], [ -6.849976, 41.110399 ], [ -6.852722, 40.979898 ], [ -6.855469, 40.813809 ], [ -8.772583, 40.813809 ], [ -8.780823, 40.979898 ], [ -8.791809, 41.184855 ], [ -8.989563, 41.543533 ], [ -9.033508, 41.879786 ], [ -8.670959, 42.134895 ], [ -8.264465, 42.281373 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.978821, 43.749273 ], [ -6.753845, 43.568452 ], [ -5.410767, 43.574422 ], [ -4.347839, 43.403052 ], [ -3.518372, 43.454913 ], [ -1.900635, 43.423004 ], [ -1.502380, 43.034768 ], [ 0.000000, 42.662241 ], [ 0.219727, 42.609706 ], [ 0.219727, 40.813809 ], [ -6.855469, 40.813809 ], [ -6.852722, 40.979898 ], [ -6.849976, 41.110399 ], [ -6.388550, 41.380930 ], [ -6.668701, 41.883876 ], [ -7.250977, 41.918629 ], [ -7.421265, 41.791793 ], [ -8.014526, 41.791793 ], [ -8.264465, 42.281373 ], [ -8.670959, 42.134895 ], [ -9.033508, 41.879786 ], [ -8.984070, 42.593533 ], [ -9.393311, 43.026737 ], [ -7.978821, 43.749273 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 15, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.669053 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.275068 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.619507, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ireland", "sov_a3": "IRL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ireland", "adm0_a3": "IRL", "geou_dif": 0, "geounit": "Ireland", "gu_a3": "IRL", "su_dif": 0, "subunit": "Ireland", "su_a3": "IRL", "brk_diff": 0, "name": "Ireland", "name_long": "Ireland", "brk_a3": "IRL", "brk_name": "Ireland", "abbrev": "Ire.", "postal": "IRL", "formal_en": "Ireland", "name_sort": "Ireland", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 4203200, "gdp_md_est": 188400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IE", "iso_a3": "IRL", "iso_n3": "372", "un_a3": "372", "wb_a2": "IE", "wb_a3": "IRL", "woe_id": -99, "adm0_a3_is": "IRL", "adm0_a3_us": "IRL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.572327, 55.131790 ], [ -7.366333, 54.595937 ], [ -7.572327, 54.059388 ], [ -6.954346, 54.073894 ], [ -6.199036, 53.867105 ], [ -6.034241, 53.153359 ], [ -6.789551, 52.259752 ], [ -8.561096, 51.669148 ], [ -9.978333, 51.820500 ], [ -9.165344, 52.864156 ], [ -9.687195, 53.881679 ], [ -8.327637, 54.664301 ], [ -7.572327, 55.131790 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -2.076416, 55.899956 ], [ -1.983032, 55.776573 ], [ -1.115112, 54.624568 ], [ -0.431213, 54.463653 ], [ 0.000000, 53.669053 ], [ 0.184021, 53.324312 ], [ 0.219727, 53.275068 ], [ 0.219727, 50.767734 ], [ 0.000000, 50.769471 ], [ -0.788269, 50.774682 ], [ -2.491150, 50.499452 ], [ -2.955322, 50.696458 ], [ -3.617249, 50.227881 ], [ -4.542847, 50.341955 ], [ -5.245972, 49.960055 ], [ -5.776062, 50.159305 ], [ -4.309387, 51.210325 ], [ -3.414001, 51.426614 ], [ -4.985046, 51.594135 ], [ -5.267944, 51.991646 ], [ -4.221497, 52.301761 ], [ -4.770813, 52.839277 ], [ -4.581299, 53.494582 ], [ -3.092651, 53.404620 ], [ -2.944336, 53.985165 ], [ -3.630981, 54.615027 ], [ -4.844971, 54.791185 ], [ -5.081177, 55.061068 ], [ -4.718628, 55.508416 ], [ -5.039978, 55.776573 ], [ -5.048218, 55.784296 ], [ -5.056458, 55.776573 ], [ -5.586548, 55.310391 ], [ -5.614014, 55.776573 ], [ -5.619507, 55.899956 ], [ -2.076416, 55.899956 ] ] ], [ [ [ -6.734619, 55.172594 ], [ -5.660706, 54.554544 ], [ -6.199036, 53.867105 ], [ -6.954346, 54.073894 ], [ -7.572327, 54.059388 ], [ -7.366333, 54.595937 ], [ -7.572327, 55.131790 ], [ -6.734619, 55.172594 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.295898, 48.900838 ], [ -2.491150, 48.777913 ], [ -4.029236, 48.777913 ], [ -3.295898, 48.900838 ] ] ], [ [ [ -1.653442, 48.777913 ], [ -1.694641, 48.922499 ], [ -1.933594, 49.775943 ], [ -0.988770, 49.346599 ], [ 0.000000, 49.680070 ], [ 0.219727, 49.752880 ], [ 0.219727, 48.777913 ], [ -1.653442, 48.777913 ] ] ] ] } } ] } ] } @@ -4393,36 +4361,36 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.000000, 11.024776 ], [ 0.024719, 11.019384 ], [ 0.000000, 10.914224 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.644412 ], [ 0.368042, 10.190594 ], [ 0.365295, 9.465317 ], [ 0.461426, 8.676064 ], [ 0.711365, 8.312059 ], [ 0.491638, 7.411495 ], [ 0.571289, 6.915521 ], [ 0.837708, 6.279808 ], [ 1.060181, 5.927508 ], [ 0.000000, 5.531244 ], [ -0.219727, 5.449225 ], [ -0.219727, 11.059821 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.581543, 11.393879 ], [ 3.573303, 11.329253 ], [ 3.630981, 11.178402 ], [ 3.795776, 10.733477 ], [ 3.600769, 10.331132 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.137351 ], [ 2.724609, 8.507687 ], [ 2.749329, 7.871544 ], [ 2.691650, 6.257967 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.830988 ], [ 1.664429, 9.129216 ], [ 1.463928, 9.335252 ], [ 1.425476, 9.825448 ], [ 1.076660, 10.174374 ], [ 0.771790, 10.471607 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.376038, 11.393879 ], [ 3.581543, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.771790, 10.471607 ], [ 1.076660, 10.174374 ], [ 1.425476, 9.825448 ], [ 1.463928, 9.335252 ], [ 1.664429, 9.129216 ], [ 1.617737, 6.830988 ], [ 1.864929, 6.143286 ], [ 1.060181, 5.927508 ], [ 0.837708, 6.279808 ], [ 0.571289, 6.915521 ], [ 0.491638, 7.411495 ], [ 0.711365, 8.312059 ], [ 0.461426, 8.676064 ], [ 0.365295, 9.465317 ], [ 0.368042, 10.190594 ], [ 0.000000, 10.644412 ], [ -0.049438, 10.706490 ], [ 0.000000, 10.914224 ], [ 0.024719, 11.019384 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.630981, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.581543, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.581543, 11.393879 ], [ 3.573303, 11.329253 ], [ 3.630981, 11.178402 ], [ 3.795776, 10.733477 ], [ 3.600769, 10.331132 ], [ 3.705139, 10.063516 ], [ 3.218994, 9.443643 ], [ 2.911377, 9.137351 ], [ 2.724609, 8.507687 ], [ 2.749329, 7.871544 ], [ 2.691650, 6.257967 ], [ 1.864929, 6.143286 ], [ 1.617737, 6.830988 ], [ 1.664429, 9.129216 ], [ 1.463928, 9.335252 ], [ 1.425476, 9.825448 ], [ 1.076660, 10.174374 ], [ 0.771790, 10.471607 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.376038, 11.393879 ], [ 3.581543, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.497437, 7.054557 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.287295 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.259851 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.948364, 3.905359 ], [ 8.745117, 4.351889 ], [ 8.489685, 4.494285 ], [ 8.500671, 4.770784 ], [ 8.758850, 5.479300 ], [ 9.234009, 6.443589 ], [ 9.522400, 6.454505 ], [ 10.118408, 7.038202 ], [ 10.497437, 7.054557 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 11.393879 ], [ 11.469727, 6.847351 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 10.497437, 7.054557 ], [ 10.118408, 7.038202 ], [ 9.522400, 6.454505 ], [ 9.234009, 6.443589 ], [ 8.758850, 5.479300 ], [ 8.500671, 4.770784 ], [ 7.462463, 4.412137 ], [ 7.083435, 4.464165 ], [ 6.698914, 4.239595 ], [ 5.896912, 4.261507 ], [ 5.364075, 4.888467 ], [ 5.034485, 5.610519 ], [ 4.325867, 6.271618 ], [ 3.573303, 6.257967 ], [ 2.691650, 6.257967 ], [ 2.749329, 7.871544 ], [ 2.724609, 8.507687 ], [ 2.911377, 9.137351 ], [ 3.218994, 9.443643 ], [ 3.705139, 10.063516 ], [ 3.600769, 10.331132 ], [ 3.795776, 10.733477 ], [ 3.630981, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.581543, 11.393879 ], [ 11.469727, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.648743, 2.284551 ], [ 11.250000, 2.259851 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 9.830017, 1.068358 ], [ 9.492188, 1.010690 ], [ 9.305420, 1.161725 ], [ 9.648743, 2.284551 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.497437, 7.054557 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.469727, 6.847351 ], [ 11.469727, 2.287295 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.259851 ], [ 9.648743, 2.284551 ], [ 9.794312, 3.074695 ], [ 9.404297, 3.735449 ], [ 8.948364, 3.905359 ], [ 8.745117, 4.351889 ], [ 8.489685, 4.494285 ], [ 8.500671, 4.770784 ], [ 8.758850, 5.479300 ], [ 9.234009, 6.443589 ], [ 9.522400, 6.454505 ], [ 10.118408, 7.038202 ], [ 10.497437, 7.054557 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 2.287295 ], [ 11.469727, -0.219726 ], [ 9.126892, -0.219726 ], [ 9.201050, 0.000000 ], [ 9.291687, 0.269164 ], [ 9.492188, 1.010690 ], [ 9.830017, 1.068358 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.469727, 2.287295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.431213, 13.990041 ], [ 0.994263, 13.336175 ], [ 1.024475, 12.851971 ], [ 2.178040, 12.624258 ], [ 2.153320, 11.939914 ], [ 1.936340, 11.641476 ], [ 1.447449, 11.547307 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ -0.219727, 11.059821 ], [ -0.219727, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.373535, 14.928862 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.935403 ], [ 0.000000, 21.795208 ], [ 1.823730, 20.609649 ], [ 2.059937, 20.141049 ], [ 2.683411, 19.857144 ], [ 3.147583, 19.694314 ], [ 3.158569, 19.056926 ], [ 4.268188, 19.155547 ], [ 4.270935, 16.851862 ], [ 3.724365, 16.183024 ], [ 3.639221, 15.567482 ], [ 2.749329, 15.408672 ], [ 1.384277, 15.323923 ], [ 1.016235, 14.968667 ], [ 0.373535, 14.928862 ], [ 0.000000, 14.926208 ], [ -0.219727, 14.923554 ], [ -0.219727, 21.935403 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Burkina Faso", "sov_a3": "BFA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burkina Faso", "adm0_a3": "BFA", "geou_dif": 0, "geounit": "Burkina Faso", "gu_a3": "BFA", "su_dif": 0, "subunit": "Burkina Faso", "su_a3": "BFA", "brk_diff": 0, "name": "Burkina Faso", "name_long": "Burkina Faso", "brk_a3": "BFA", "brk_name": "Burkina Faso", "abbrev": "B.F.", "postal": "BF", "formal_en": "Burkina Faso", "name_sort": "Burkina Faso", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 15746232, "gdp_md_est": 17820, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BF", "iso_a3": "BFA", "iso_n3": "854", "un_a3": "854", "wb_a2": "BF", "wb_a3": "BFA", "woe_id": -99, "adm0_a3_is": "BFA", "adm0_a3_us": "BFA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.373535, 14.928862 ], [ 0.296631, 14.445319 ], [ 0.431213, 13.990041 ], [ 0.994263, 13.336175 ], [ 1.024475, 12.851971 ], [ 2.178040, 12.624258 ], [ 2.153320, 11.939914 ], [ 1.936340, 11.641476 ], [ 1.447449, 11.547307 ], [ 1.274414, 11.178402 ], [ 1.244202, 11.111032 ], [ 0.900879, 10.997816 ], [ 0.024719, 11.019384 ], [ -0.219727, 11.059821 ], [ -0.219727, 14.923554 ], [ 0.000000, 14.926208 ], [ 0.373535, 14.928862 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ghana", "sov_a3": "GHA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ghana", "adm0_a3": "GHA", "geou_dif": 0, "geounit": "Ghana", "gu_a3": "GHA", "su_dif": 0, "subunit": "Ghana", "su_a3": "GHA", "brk_diff": 0, "name": "Ghana", "name_long": "Ghana", "brk_a3": "GHA", "brk_name": "Ghana", "abbrev": "Ghana", "postal": "GH", "formal_en": "Republic of Ghana", "name_sort": "Ghana", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 23832495, "gdp_md_est": 34200, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GH", "iso_a3": "GHA", "iso_n3": "288", "un_a3": "288", "wb_a2": "GH", "wb_a3": "GHA", "woe_id": -99, "adm0_a3_is": "GHA", "adm0_a3_us": "GHA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 11.059821 ], [ 0.024719, 11.019384 ], [ 0.010986, 10.962764 ], [ -0.219727, 10.962764 ], [ -0.219727, 11.059821 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.613037, 22.146708 ], [ 9.247742, 21.943046 ], [ 8.572083, 21.565502 ], [ 5.677185, 19.601194 ], [ 4.268188, 19.155547 ], [ 3.158569, 19.056926 ], [ 3.147583, 19.694314 ], [ 2.683411, 19.857144 ], [ 2.059937, 20.141049 ], [ 1.823730, 20.609649 ], [ 0.000000, 21.795208 ], [ -0.219727, 21.935403 ], [ -0.219727, 22.146708 ], [ 9.613037, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 22.146708 ], [ 11.469727, 13.333503 ], [ 11.250000, 13.357554 ], [ 10.989075, 13.386948 ], [ 10.700684, 13.247966 ], [ 10.115662, 13.277373 ], [ 9.525146, 12.851971 ], [ 9.014282, 12.827870 ], [ 7.805786, 13.344193 ], [ 7.330627, 13.098205 ], [ 6.819763, 13.114255 ], [ 6.446228, 13.493802 ], [ 5.443726, 13.864747 ], [ 4.367065, 13.747389 ], [ 4.108887, 13.531190 ], [ 3.966064, 12.956383 ], [ 3.680420, 12.551883 ], [ 3.611755, 11.660306 ], [ 2.848206, 12.235339 ], [ 2.491150, 12.232655 ], [ 2.153320, 11.939914 ], [ 2.178040, 12.624258 ], [ 1.024475, 12.851971 ], [ 0.994263, 13.336175 ], [ 0.431213, 13.990041 ], [ 0.296631, 14.445319 ], [ 0.373535, 14.928862 ], [ 1.016235, 14.968667 ], [ 1.384277, 15.323923 ], [ 2.749329, 15.408672 ], [ 3.639221, 15.567482 ], [ 3.724365, 16.183024 ], [ 4.270935, 16.851862 ], [ 4.268188, 19.155547 ], [ 5.677185, 19.601194 ], [ 8.572083, 21.565502 ], [ 9.247742, 21.943046 ], [ 9.613037, 22.146708 ], [ 11.469727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.630981, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.892639, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Togo", "sov_a3": "TGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Togo", "adm0_a3": "TGO", "geou_dif": 0, "geounit": "Togo", "gu_a3": "TGO", "su_dif": 0, "subunit": "Togo", "su_a3": "TGO", "brk_diff": 0, "name": "Togo", "name_long": "Togo", "brk_a3": "TGO", "brk_name": "Togo", "abbrev": "Togo", "postal": "TG", "formal_en": "Togolese Republic", "formal_fr": "Rรฉpublique Togolaise", "name_sort": "Togo", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 6019877, "gdp_md_est": 5118, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TG", "iso_a3": "TGO", "iso_n3": "768", "un_a3": "768", "wb_a2": "TG", "wb_a3": "TGO", "woe_id": -99, "adm0_a3_is": "TGO", "adm0_a3_us": "TGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.024719, 11.019384 ], [ 0.900879, 10.997816 ], [ 0.892639, 10.962764 ], [ 0.010986, 10.962764 ], [ 0.024719, 11.019384 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Benin", "sov_a3": "BEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Benin", "adm0_a3": "BEN", "geou_dif": 0, "geounit": "Benin", "gu_a3": "BEN", "su_dif": 0, "subunit": "Benin", "su_a3": "BEN", "brk_diff": 0, "name": "Benin", "name_long": "Benin", "brk_a3": "BEN", "brk_name": "Benin", "abbrev": "Benin", "postal": "BJ", "formal_en": "Republic of Benin", "name_sort": "Benin", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 8791832, "gdp_md_est": 12830, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BJ", "iso_a3": "BEN", "iso_n3": "204", "un_a3": "204", "wb_a2": "BJ", "wb_a3": "BEN", "woe_id": -99, "adm0_a3_is": "BEN", "adm0_a3_us": "BEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.848206, 12.235339 ], [ 3.611755, 11.660306 ], [ 3.573303, 11.329253 ], [ 3.630981, 11.178402 ], [ 3.710632, 10.962764 ], [ 0.892639, 10.962764 ], [ 0.900879, 10.997816 ], [ 1.244202, 11.111032 ], [ 1.274414, 11.178402 ], [ 1.447449, 11.547307 ], [ 1.936340, 11.641476 ], [ 2.153320, 11.939914 ], [ 2.491150, 12.232655 ], [ 2.848206, 12.235339 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.443726, 13.864747 ], [ 6.446228, 13.493802 ], [ 6.819763, 13.114255 ], [ 7.330627, 13.098205 ], [ 7.805786, 13.344193 ], [ 9.014282, 12.827870 ], [ 9.525146, 12.851971 ], [ 10.115662, 13.277373 ], [ 10.700684, 13.247966 ], [ 10.989075, 13.386948 ], [ 11.250000, 13.357554 ], [ 11.469727, 13.333503 ], [ 11.469727, 10.962764 ], [ 3.710632, 10.962764 ], [ 3.630981, 11.178402 ], [ 3.573303, 11.329253 ], [ 3.611755, 11.660306 ], [ 3.680420, 12.551883 ], [ 3.966064, 12.956383 ], [ 4.108887, 13.531190 ], [ 4.367065, 13.747389 ], [ 5.443726, 13.864747 ] ] ] } } ] } ] } @@ -4431,10 +4399,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mali", "sov_a3": "MLI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mali", "adm0_a3": "MLI", "geou_dif": 0, "geounit": "Mali", "gu_a3": "MLI", "su_dif": 0, "subunit": "Mali", "su_a3": "MLI", "brk_diff": 0, "name": "Mali", "name_long": "Mali", "brk_a3": "MLI", "brk_name": "Mali", "abbrev": "Mali", "postal": "ML", "formal_en": "Republic of Mali", "name_sort": "Mali", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 12666987, "gdp_md_est": 14590, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ML", "iso_a3": "MLI", "iso_n3": "466", "un_a3": "466", "wb_a2": "ML", "wb_a3": "MLI", "woe_id": -99, "adm0_a3_is": "MLI", "adm0_a3_us": "MLI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 21.935403 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.739091 ], [ -0.219727, 21.935403 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.003296, 32.138409 ], [ 9.055481, 32.103516 ], [ 9.091187, 31.952162 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.139813 ], [ 9.717407, 26.512362 ], [ 9.319153, 26.093788 ], [ 9.909668, 25.366364 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.379623 ], [ 10.772095, 24.562112 ], [ 11.250000, 24.282020 ], [ 11.469727, 24.151766 ], [ 11.469727, 23.178239 ], [ 11.250000, 23.056989 ], [ 9.247742, 21.943046 ], [ 8.882446, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.935403 ], [ -0.219727, 32.138409 ], [ 9.003296, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.041260, 32.138409 ], [ 10.945129, 32.082575 ], [ 10.821533, 31.952162 ], [ 10.637512, 31.760867 ], [ 9.950867, 31.377089 ], [ 10.055237, 30.961124 ], [ 9.970093, 30.538608 ], [ 9.481201, 30.306503 ], [ 9.091187, 31.952162 ], [ 9.055481, 32.103516 ], [ 9.003296, 32.138409 ], [ 11.041260, 32.138409 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.003296, 32.138409 ], [ 9.055481, 32.103516 ], [ 9.091187, 31.952162 ], [ 9.481201, 30.306503 ], [ 9.805298, 29.425245 ], [ 9.860229, 28.960089 ], [ 9.684448, 28.144660 ], [ 9.755859, 27.688392 ], [ 9.629517, 27.139813 ], [ 9.717407, 26.512362 ], [ 9.319153, 26.093788 ], [ 9.909668, 25.366364 ], [ 9.948120, 24.936257 ], [ 10.305176, 24.379623 ], [ 10.772095, 24.562112 ], [ 11.250000, 24.282020 ], [ 11.469727, 24.151766 ], [ 11.469727, 23.178239 ], [ 11.250000, 23.056989 ], [ 9.247742, 21.943046 ], [ 8.882446, 21.739091 ], [ 0.085144, 21.739091 ], [ -0.219727, 21.935403 ], [ -0.219727, 32.138409 ], [ 9.003296, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.138409 ], [ 11.469727, 24.151766 ], [ 11.250000, 24.282020 ], [ 10.772095, 24.562112 ], [ 10.305176, 24.379623 ], [ 9.948120, 24.936257 ], [ 9.909668, 25.366364 ], [ 9.319153, 26.093788 ], [ 9.717407, 26.512362 ], [ 9.629517, 27.139813 ], [ 9.755859, 27.688392 ], [ 9.684448, 28.144660 ], [ 9.860229, 28.960089 ], [ 9.805298, 29.425245 ], [ 9.481201, 30.306503 ], [ 9.970093, 30.538608 ], [ 10.055237, 30.961124 ], [ 9.950867, 31.377089 ], [ 10.637512, 31.760867 ], [ 10.821533, 31.952162 ], [ 10.945129, 32.082575 ], [ 11.041260, 32.138409 ], [ 11.469727, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 23.178239 ], [ 11.469727, 21.739091 ], [ 8.882446, 21.739091 ], [ 9.247742, 21.943046 ], [ 11.250000, 23.056989 ], [ 11.469727, 23.178239 ] ] ] } } @@ -4443,14 +4411,14 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.499181 ], [ 9.670715, 39.176917 ], [ 9.214783, 39.240763 ], [ 8.808289, 38.905996 ], [ 8.429260, 39.172659 ], [ 8.388062, 40.377936 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.104919, 41.145570 ], [ 9.264221, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.219727, 39.434072 ], [ -0.219727, 41.145570 ], [ 1.601257, 41.145570 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.722351, 40.678555 ], [ 0.107117, 40.124291 ], [ 0.000000, 39.899202 ], [ -0.219727, 39.434072 ] ] ], [ [ [ -0.219727, 39.225870 ], [ 0.000000, 38.903858 ], [ 0.112610, 38.739088 ], [ 0.000000, 38.653343 ], [ -0.219727, 38.483695 ], [ -0.219727, 39.225870 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.330627, 37.118716 ], [ 7.737122, 36.886211 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.432332 ], [ 8.377075, 35.480802 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.429260, 32.748013 ], [ 8.440247, 32.505129 ], [ 9.055481, 32.103516 ], [ 9.135132, 31.765537 ], [ -0.219727, 31.765537 ], [ -0.219727, 35.873472 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.971338 ], [ 0.502625, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.161316, 36.782892 ], [ 4.814758, 36.864240 ], [ 5.320129, 36.716871 ], [ 6.262207, 37.109955 ], [ 7.330627, 37.118716 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.264221, 41.145570 ], [ 9.404297, 40.979898 ], [ 9.810791, 40.499181 ], [ 9.670715, 39.176917 ], [ 9.214783, 39.240763 ], [ 8.808289, 38.905996 ], [ 8.429260, 39.172659 ], [ 8.388062, 40.377936 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.104919, 41.145570 ], [ 9.264221, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.508667, 37.350509 ], [ 10.209045, 37.230328 ], [ 10.181580, 36.723475 ], [ 11.027527, 37.092431 ], [ 11.098938, 36.899391 ], [ 10.599060, 36.410231 ], [ 10.593567, 35.946883 ], [ 10.939636, 35.699686 ], [ 10.807800, 34.834096 ], [ 10.148621, 34.329828 ], [ 10.340881, 33.785996 ], [ 10.857239, 33.767732 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.469727, 33.144451 ], [ 11.469727, 32.881894 ], [ 11.431274, 32.368363 ], [ 11.250000, 32.261588 ], [ 10.945129, 32.082575 ], [ 10.821533, 31.952162 ], [ 10.643005, 31.765537 ], [ 9.135132, 31.765537 ], [ 9.055481, 32.103516 ], [ 8.440247, 32.505129 ], [ 8.429260, 32.748013 ], [ 7.613525, 33.344296 ], [ 7.525635, 34.098159 ], [ 8.140869, 34.655804 ], [ 8.377075, 35.480802 ], [ 8.217773, 36.432332 ], [ 8.421021, 36.945502 ], [ 9.508667, 37.350509 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.330627, 37.118716 ], [ 7.737122, 36.886211 ], [ 8.421021, 36.945502 ], [ 8.217773, 36.432332 ], [ 8.377075, 35.480802 ], [ 8.140869, 34.655804 ], [ 7.525635, 34.098159 ], [ 7.613525, 33.344296 ], [ 8.429260, 32.748013 ], [ 8.440247, 32.505129 ], [ 9.055481, 32.103516 ], [ 9.135132, 31.765537 ], [ -0.219727, 31.765537 ], [ -0.219727, 35.873472 ], [ -0.126343, 35.889050 ], [ 0.000000, 35.971338 ], [ 0.502625, 36.301845 ], [ 1.466675, 36.606709 ], [ 3.161316, 36.782892 ], [ 4.814758, 36.864240 ], [ 5.320129, 36.716871 ], [ 6.262207, 37.109955 ], [ 7.330627, 37.118716 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 32.881894 ], [ 11.469727, 31.765537 ], [ 10.643005, 31.765537 ], [ 10.821533, 31.952162 ], [ 10.945129, 32.082575 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.469727, 32.881894 ] ] ] } } ] } ] } @@ -4459,15 +4427,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.390564, 43.010673 ], [ 9.560852, 42.153223 ], [ 9.228516, 41.380930 ], [ 8.775330, 41.584634 ], [ 8.544617, 42.256984 ], [ 8.745117, 42.627896 ], [ 9.390564, 43.010673 ] ] ], [ [ [ 7.717896, 49.066668 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.594299, 48.332517 ], [ 7.467957, 47.620975 ], [ 7.193298, 47.450380 ], [ 6.737366, 47.541310 ], [ 6.767578, 47.288545 ], [ 6.036987, 46.726683 ], [ 6.023254, 46.272936 ], [ 6.501160, 46.430285 ], [ 6.844482, 45.991237 ], [ 6.803284, 45.708097 ], [ 7.097168, 45.332840 ], [ 6.751099, 45.028892 ], [ 7.006531, 44.255036 ], [ 7.550354, 44.127028 ], [ 7.434998, 43.693694 ], [ 6.528625, 43.129052 ], [ 4.556580, 43.399061 ], [ 3.100891, 43.074907 ], [ 2.985535, 42.472097 ], [ 1.826477, 42.344335 ], [ 0.700378, 42.795401 ], [ 0.337830, 42.579377 ], [ 0.000000, 42.662241 ], [ -0.219727, 42.716750 ], [ -0.219727, 49.066668 ], [ 7.717896, 49.066668 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.522644, 47.831596 ], [ 9.593811, 47.524620 ], [ 9.632263, 47.348128 ], [ 9.481201, 47.101914 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.483265 ], [ 9.923401, 46.314687 ], [ 9.181824, 46.439750 ], [ 8.967590, 46.037016 ], [ 8.489685, 46.004593 ], [ 8.316650, 46.162712 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.844482, 45.991237 ], [ 6.501160, 46.430285 ], [ 6.023254, 46.272936 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.737366, 47.541310 ], [ 7.193298, 47.450380 ], [ 7.467957, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.522644, 47.831596 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.795401 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.472097 ], [ 3.040466, 41.892055 ], [ 2.092896, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.758057, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.716750 ], [ 0.000000, 42.662241 ], [ 0.337830, 42.579377 ], [ 0.700378, 42.795401 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 49.066668 ], [ 11.469727, 47.535747 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 10.544128, 47.567261 ], [ 10.401306, 47.301585 ], [ 9.895935, 47.580231 ], [ 9.593811, 47.524620 ], [ 8.522644, 47.831596 ], [ 8.316650, 47.613570 ], [ 7.467957, 47.620975 ], [ 7.594299, 48.332517 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 7.717896, 49.066668 ], [ 11.469727, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Switzerland", "sov_a3": "CHE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Switzerland", "adm0_a3": "CHE", "geou_dif": 0, "geounit": "Switzerland", "gu_a3": "CHE", "su_dif": 0, "subunit": "Switzerland", "su_a3": "CHE", "brk_diff": 0, "name": "Switzerland", "name_long": "Switzerland", "brk_a3": "CHE", "brk_name": "Switzerland", "abbrev": "Switz.", "postal": "CH", "formal_en": "Swiss Confederation", "name_sort": "Switzerland", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 7604467, "gdp_md_est": 316700, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CH", "iso_a3": "CHE", "iso_n3": "756", "un_a3": "756", "wb_a2": "CH", "wb_a3": "CHE", "woe_id": -99, "adm0_a3_is": "CHE", "adm0_a3_us": "CHE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.522644, 47.831596 ], [ 9.593811, 47.524620 ], [ 9.632263, 47.348128 ], [ 9.481201, 47.101914 ], [ 9.931641, 46.920255 ], [ 10.442505, 46.893985 ], [ 10.362854, 46.483265 ], [ 9.923401, 46.314687 ], [ 9.181824, 46.439750 ], [ 8.967590, 46.037016 ], [ 8.489685, 46.004593 ], [ 8.316650, 46.162712 ], [ 7.756348, 45.824971 ], [ 7.272949, 45.777102 ], [ 6.844482, 45.991237 ], [ 6.501160, 46.430285 ], [ 6.023254, 46.272936 ], [ 6.036987, 46.726683 ], [ 6.767578, 47.288545 ], [ 6.737366, 47.541310 ], [ 7.193298, 47.450380 ], [ 7.467957, 47.620975 ], [ 8.316650, 47.613570 ], [ 8.522644, 47.831596 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.895935, 47.580231 ], [ 10.401306, 47.301585 ], [ 10.544128, 47.567261 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 11.469727, 47.535747 ], [ 11.469727, 46.995241 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 10.442505, 46.893985 ], [ 9.931641, 46.920255 ], [ 9.481201, 47.101914 ], [ 9.632263, 47.348128 ], [ 9.593811, 47.524620 ], [ 9.895935, 47.580231 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.209290, 41.209655 ], [ 9.404297, 40.979898 ], [ 9.547119, 40.813809 ], [ 8.215027, 40.813809 ], [ 8.160095, 40.950863 ], [ 8.709412, 40.898982 ], [ 8.838501, 40.979898 ], [ 9.209290, 41.209655 ] ] ], [ [ [ 11.469727, 46.995241 ], [ 11.469727, 42.157296 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 10.511169, 42.932296 ], [ 10.200806, 43.919659 ], [ 9.703674, 44.036270 ], [ 8.887939, 44.367060 ], [ 8.429260, 44.231425 ], [ 7.849731, 43.767127 ], [ 7.434998, 43.693694 ], [ 7.550354, 44.127028 ], [ 7.006531, 44.255036 ], [ 6.751099, 45.028892 ], [ 7.097168, 45.332840 ], [ 6.803284, 45.708097 ], [ 6.844482, 45.991237 ], [ 7.272949, 45.777102 ], [ 7.756348, 45.824971 ], [ 8.316650, 46.162712 ], [ 8.489685, 46.004593 ], [ 8.967590, 46.037016 ], [ 9.181824, 46.439750 ], [ 9.923401, 46.314687 ], [ 10.362854, 46.483265 ], [ 10.442505, 46.893985 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 11.469727, 46.995241 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Spain", "sov_a3": "ESP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Spain", "adm0_a3": "ESP", "geou_dif": 0, "geounit": "Spain", "gu_a3": "ESP", "su_dif": 0, "subunit": "Spain", "su_a3": "ESP", "brk_diff": 0, "name": "Spain", "name_long": "Spain", "brk_a3": "ESP", "brk_name": "Spain", "abbrev": "Sp.", "postal": "E", "formal_en": "Kingdom of Spain", "name_sort": "Spain", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 40525002, "gdp_md_est": 1403000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "ES", "iso_a3": "ESP", "iso_n3": "724", "un_a3": "724", "wb_a2": "ES", "wb_a3": "ESP", "woe_id": -99, "adm0_a3_is": "ESP", "adm0_a3_us": "ESP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.700378, 42.795401 ], [ 1.826477, 42.344335 ], [ 2.985535, 42.472097 ], [ 3.040466, 41.892055 ], [ 2.092896, 41.226183 ], [ 0.810242, 41.015138 ], [ 0.802002, 40.979898 ], [ 0.758057, 40.813809 ], [ -0.219727, 40.813809 ], [ -0.219727, 42.716750 ], [ 0.000000, 42.662241 ], [ 0.337830, 42.579377 ], [ 0.700378, 42.795401 ] ] ] } } ] } ] } , @@ -4475,6 +4443,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "United Kingdom", "sov_a3": "GB1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "United Kingdom", "adm0_a3": "GBR", "geou_dif": 0, "geounit": "United Kingdom", "gu_a3": "GBR", "su_dif": 0, "subunit": "United Kingdom", "su_a3": "GBR", "brk_diff": 0, "name": "United Kingdom", "name_long": "United Kingdom", "brk_a3": "GBR", "brk_name": "United Kingdom", "abbrev": "U.K.", "postal": "GB", "formal_en": "United Kingdom of Great Britain and Northern Ireland", "name_sort": "United Kingdom", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 62262000, "gdp_md_est": 1977704, "pop_year": 0, "lastcensus": 2011, "gdp_year": 2009, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GB", "iso_a3": "GBR", "iso_n3": "826", "un_a3": "826", "wb_a2": "GB", "wb_a3": "GBR", "woe_id": -99, "adm0_a3_is": "GBR", "adm0_a3_us": "GBR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 14, "long_len": 14, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.219727, 54.075506 ], [ 0.000000, 53.669053 ], [ 0.184021, 53.324312 ], [ 0.469666, 52.930430 ], [ 1.680908, 52.739618 ], [ 1.560059, 52.099757 ], [ 1.049194, 51.806917 ], [ 1.450195, 51.289406 ], [ 0.549316, 50.765997 ], [ 0.000000, 50.769471 ], [ -0.219727, 50.771208 ], [ -0.219727, 54.075506 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 10.079956, 55.899956 ], [ 9.956360, 55.776573 ], [ 9.648743, 55.469513 ], [ 9.920654, 54.982342 ], [ 9.280701, 54.830754 ], [ 8.525391, 54.963425 ], [ 8.121643, 55.517747 ], [ 8.113403, 55.776573 ], [ 8.107910, 55.899956 ], [ 10.079956, 55.899956 ] ] ], [ [ [ 11.469727, 55.899956 ], [ 11.469727, 55.136500 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.434021, 55.899956 ], [ 11.469727, 55.899956 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Netherlands", "sov_a3": "NL1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Netherlands", "adm0_a3": "NLD", "geou_dif": 0, "geounit": "Netherlands", "gu_a3": "NLD", "su_dif": 0, "subunit": "Netherlands", "su_a3": "NLD", "brk_diff": 0, "name": "Netherlands", "name_long": "Netherlands", "brk_a3": "NLD", "brk_name": "Netherlands", "abbrev": "Neth.", "postal": "NL", "formal_en": "Kingdom of the Netherlands", "name_sort": "Netherlands", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 16715999, "gdp_md_est": 672000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NL", "iso_a3": "NLD", "iso_n3": "528", "un_a3": "528", "wb_a2": "NL", "wb_a3": "NLD", "woe_id": -99, "adm0_a3_is": "NLD", "adm0_a3_us": "NLD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.075439, 53.510918 ], [ 6.904907, 53.481508 ], [ 7.091675, 53.143476 ], [ 6.841736, 52.227799 ], [ 6.589050, 51.852746 ], [ 5.987549, 51.851049 ], [ 6.157837, 50.804199 ], [ 5.605774, 51.037940 ], [ 4.974060, 51.474540 ], [ 4.045715, 51.267071 ], [ 3.315125, 51.346054 ], [ 3.831482, 51.619722 ], [ 4.704895, 53.092375 ], [ 6.075439, 53.510918 ] ] ] } } @@ -4483,19 +4453,17 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Luxembourg", "sov_a3": "LUX", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Luxembourg", "adm0_a3": "LUX", "geou_dif": 0, "geounit": "Luxembourg", "gu_a3": "LUX", "su_dif": 0, "subunit": "Luxembourg", "su_a3": "LUX", "brk_diff": 0, "name": "Luxembourg", "name_long": "Luxembourg", "brk_a3": "LUX", "brk_name": "Luxembourg", "abbrev": "Lux.", "postal": "L", "formal_en": "Grand Duchy of Luxembourg", "name_sort": "Luxembourg", "mapcolor7": 1, "mapcolor8": 7, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 491775, "gdp_md_est": 39370, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "LU", "iso_a3": "LUX", "iso_n3": "442", "un_a3": "442", "wb_a2": "LU", "wb_a3": "LUX", "woe_id": -99, "adm0_a3_is": "LUX", "adm0_a3_us": "LUX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.042480, 50.127622 ], [ 6.242981, 49.901711 ], [ 6.185303, 49.464554 ], [ 5.896912, 49.443129 ], [ 5.674438, 49.528774 ], [ 5.781555, 50.090631 ], [ 6.042480, 50.127622 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "France", "sov_a3": "FR1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "France", "adm0_a3": "FRA", "geou_dif": 0, "geounit": "France", "gu_a3": "FRA", "su_dif": 0, "subunit": "France", "su_a3": "FRA", "brk_diff": 0, "name": "France", "name_long": "France", "brk_a3": "FRA", "brk_name": "France", "abbrev": "Fr.", "postal": "F", "formal_en": "French Republic", "name_sort": "France", "mapcolor7": 7, "mapcolor8": 5, "mapcolor9": 9, "mapcolor13": 11, "pop_est": 64057792, "gdp_md_est": 2128000, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FR", "iso_a3": "FRA", "iso_n3": "250", "un_a3": "250", "wb_a2": "FR", "wb_a3": "FRA", "woe_id": -99, "adm0_a3_is": "FRA", "adm0_a3_us": "FRA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 3, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.513123, 51.148340 ], [ 2.658691, 50.797255 ], [ 3.122864, 50.779892 ], [ 3.587036, 50.378751 ], [ 4.284668, 49.907018 ], [ 4.798279, 49.984786 ], [ 5.674438, 49.528774 ], [ 5.896912, 49.443129 ], [ 6.185303, 49.464554 ], [ 6.657715, 49.201448 ], [ 8.099670, 49.018058 ], [ 8.028259, 48.922499 ], [ 7.921143, 48.777913 ], [ -0.219727, 48.777913 ], [ -0.219727, 49.607150 ], [ 0.000000, 49.680070 ], [ 1.337585, 50.127622 ], [ 1.639709, 50.946315 ], [ 2.513123, 51.148340 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.920654, 54.982342 ], [ 9.939880, 54.595937 ], [ 10.950623, 54.362958 ], [ 10.939636, 54.009383 ], [ 11.250000, 54.065836 ], [ 11.469727, 54.107723 ], [ 11.469727, 48.777913 ], [ 7.921143, 48.777913 ], [ 8.028259, 48.922499 ], [ 8.099670, 49.018058 ], [ 6.657715, 49.201448 ], [ 6.185303, 49.464554 ], [ 6.242981, 49.901711 ], [ 6.042480, 50.127622 ], [ 6.157837, 50.804199 ], [ 5.987549, 51.851049 ], [ 6.589050, 51.852746 ], [ 6.841736, 52.227799 ], [ 7.091675, 53.143476 ], [ 6.904907, 53.481508 ], [ 7.099915, 53.693454 ], [ 7.934875, 53.748711 ], [ 8.121643, 53.527248 ], [ 8.800049, 54.020680 ], [ 8.572083, 54.394951 ], [ 8.525391, 54.963425 ], [ 9.280701, 54.830754 ], [ 9.920654, 54.982342 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 16, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.435300 ], [ 11.469727, 58.041550 ], [ 11.250000, 58.449170 ], [ 11.027527, 58.856383 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.435300 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 61.710706 ], [ 11.469727, 59.435300 ], [ 11.250000, 59.149178 ], [ 11.027527, 58.856383 ], [ 10.357361, 59.470199 ], [ 8.382568, 58.313817 ], [ 7.047729, 58.079329 ], [ 5.666199, 58.588299 ], [ 5.309143, 59.663579 ], [ 5.045471, 61.606396 ], [ 5.028992, 61.710706 ], [ 11.469727, 61.710706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.469727, 55.907655 ], [ 11.469727, 55.652798 ], [ 10.947876, 55.652798 ], [ 10.903931, 55.776573 ], [ 10.903931, 55.779662 ], [ 11.250000, 55.858358 ], [ 11.469727, 55.907655 ] ] ], [ [ [ 10.579834, 57.730552 ], [ 10.546875, 57.215147 ], [ 10.250244, 56.889503 ], [ 10.371094, 56.609397 ], [ 10.912170, 56.457938 ], [ 10.667725, 56.081232 ], [ 10.371094, 56.189896 ], [ 9.953613, 55.776573 ], [ 9.830017, 55.652798 ], [ 8.118896, 55.652798 ], [ 8.113403, 55.776573 ], [ 8.088684, 56.539801 ], [ 8.256226, 56.809901 ], [ 8.544617, 57.109402 ], [ 9.423523, 57.171992 ], [ 9.775085, 57.447905 ], [ 10.579834, 57.730552 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.469727, 59.435300 ], [ 11.469727, 58.041550 ], [ 11.250000, 58.449170 ], [ 11.027527, 58.856383 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 11.469727, 59.435300 ] ] ] } } ] } ] } , @@ -4583,12 +4551,12 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.159424, -10.962764 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.719727, -11.011297 ], [ 22.719727, -12.902844 ], [ 22.500000, -12.900166 ], [ 21.934204, -12.897489 ], [ 21.887512, -16.080125 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 22.719727, -17.048907 ], [ 22.719727, -17.633552 ], [ 22.500000, -17.680662 ], [ 21.376648, -17.931702 ], [ 18.956909, -17.787920 ], [ 18.262024, -17.308688 ], [ 14.210815, -17.353260 ], [ 14.059753, -17.424029 ], [ 13.460999, -16.970114 ], [ 12.812805, -16.941215 ], [ 12.216797, -17.111918 ], [ 11.733398, -17.300821 ], [ 11.640015, -16.673031 ], [ 11.777344, -15.794896 ], [ 12.123413, -14.878433 ], [ 12.175598, -14.447979 ], [ 12.499695, -13.547211 ], [ 12.738647, -13.138328 ], [ 13.312683, -12.484850 ], [ 13.634033, -12.039321 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.708191, -10.962764 ], [ 22.159424, -10.962764 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.812805, -16.941215 ], [ 13.460999, -16.970114 ], [ 14.059753, -17.424029 ], [ 14.210815, -17.353260 ], [ 18.262024, -17.308688 ], [ 18.956909, -17.787920 ], [ 21.376648, -17.931702 ], [ 22.500000, -17.680662 ], [ 22.719727, -17.633552 ], [ 22.719727, -17.976121 ], [ 22.500000, -18.025751 ], [ 21.654053, -18.218916 ], [ 20.909729, -18.252828 ], [ 20.882263, -21.813058 ], [ 19.896240, -21.848753 ], [ 19.896240, -22.146708 ], [ 14.265747, -22.146708 ], [ 14.257507, -22.111088 ], [ 14.098206, -21.943046 ], [ 13.867493, -21.698265 ], [ 13.351135, -20.871644 ], [ 12.826538, -19.673626 ], [ 12.609558, -19.046541 ], [ 11.793823, -18.070146 ], [ 11.733398, -17.300821 ], [ 12.216797, -17.111918 ], [ 12.812805, -16.941215 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -10.962764 ], [ 22.719727, -11.011297 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.159424, -10.962764 ], [ 22.719727, -10.962764 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.934204, -12.897489 ], [ 22.500000, -12.900166 ], [ 22.719727, -12.902844 ], [ 22.719727, -17.048907 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 21.887512, -16.080125 ], [ 21.934204, -12.897489 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, -17.976121 ], [ 22.719727, -22.146708 ], [ 19.896240, -22.146708 ], [ 19.896240, -21.848753 ], [ 20.882263, -21.813058 ], [ 20.909729, -18.252828 ], [ 21.654053, -18.218916 ], [ 22.500000, -18.025751 ], [ 22.719727, -17.976121 ] ] ] } } @@ -4597,13 +4565,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.011297 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.208862, -9.895804 ], [ 21.876526, -9.524914 ], [ 21.802368, -8.909493 ], [ 21.947937, -8.306624 ], [ 21.747437, -7.920514 ], [ 21.728210, -7.291639 ], [ 20.514221, -7.299812 ], [ 20.602112, -6.940059 ], [ 20.091248, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.465271, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.861267, -7.223524 ], [ 16.572876, -6.623686 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.864671 ], [ 13.024292, -5.984875 ], [ 12.735901, -5.965754 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.790897 ], [ 12.436523, -5.684317 ], [ 12.466736, -5.249598 ], [ 12.631531, -4.992450 ], [ 12.996826, -4.781732 ], [ 13.257751, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.970560 ], [ 15.172119, -4.343673 ], [ 15.754395, -3.856034 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.744303 ], [ 17.638550, -0.425716 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.792358, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.911438, 0.219726 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.315186, -0.552054 ], [ 14.425049, -1.334718 ], [ 14.298706, -1.999106 ], [ 13.991089, -2.471157 ], [ 13.109436, -2.429996 ], [ 12.576599, -1.949697 ], [ 12.496948, -2.391578 ], [ 11.821289, -2.515061 ], [ 11.477966, -2.764735 ], [ 11.854248, -3.425692 ], [ 11.250000, -3.864255 ], [ 11.093445, -3.979341 ], [ 11.030273, -3.916319 ], [ 11.030273, 0.219726 ], [ 13.911438, 0.219726 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.792358, 0.219726 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.638550, -0.425716 ], [ 17.523193, -0.744303 ], [ 16.864014, -1.224882 ], [ 16.408081, -1.741065 ], [ 15.974121, -2.712609 ], [ 16.007080, -3.535352 ], [ 15.754395, -3.856034 ], [ 15.172119, -4.343673 ], [ 14.581604, -4.970560 ], [ 14.208069, -4.792680 ], [ 14.144897, -4.510714 ], [ 13.601074, -4.499762 ], [ 13.257751, -4.882994 ], [ 12.996826, -4.781732 ], [ 12.620544, -4.436782 ], [ 12.318420, -4.606540 ], [ 11.914673, -5.038963 ], [ 11.250000, -4.182073 ], [ 11.093445, -3.979341 ], [ 11.250000, -3.864255 ], [ 11.854248, -3.425692 ], [ 11.477966, -2.764735 ], [ 11.821289, -2.515061 ], [ 12.496948, -2.391578 ], [ 12.576599, -1.949697 ], [ 13.109436, -2.429996 ], [ 13.991089, -2.471157 ], [ 14.298706, -1.999106 ], [ 14.425049, -1.334718 ], [ 14.315186, -0.552054 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 13.911438, 0.219726 ], [ 17.792358, 0.219726 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.375854, -5.864671 ], [ 16.325684, -5.878332 ], [ 16.572876, -6.623686 ], [ 16.861267, -7.223524 ], [ 17.089233, -7.544933 ], [ 17.473755, -8.067388 ], [ 18.132935, -7.988518 ], [ 18.465271, -7.847057 ], [ 19.017334, -7.988518 ], [ 19.165649, -7.738208 ], [ 19.418335, -7.155400 ], [ 20.039062, -7.117245 ], [ 20.091248, -6.942786 ], [ 20.602112, -6.940059 ], [ 20.514221, -7.299812 ], [ 21.728210, -7.291639 ], [ 21.747437, -7.920514 ], [ 21.947937, -8.306624 ], [ 21.802368, -8.909493 ], [ 21.876526, -9.524914 ], [ 22.208862, -9.895804 ], [ 22.153931, -11.084080 ], [ 22.403870, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.719727, -11.011297 ], [ 22.719727, -11.393879 ], [ 13.724670, -11.393879 ], [ 13.738403, -11.296934 ], [ 13.727417, -11.178402 ], [ 13.686218, -10.730778 ], [ 13.386841, -10.374362 ], [ 13.120422, -9.765904 ], [ 12.875977, -9.167179 ], [ 12.928162, -8.958332 ], [ 13.235779, -8.562010 ], [ 12.727661, -6.926427 ], [ 12.227783, -6.293459 ], [ 12.321167, -6.099591 ], [ 12.735901, -5.965754 ], [ 13.024292, -5.984875 ], [ 13.375854, -5.864671 ] ] ], [ [ [ 12.620544, -4.436782 ], [ 12.996826, -4.781732 ], [ 12.631531, -4.992450 ], [ 12.466736, -5.249598 ], [ 12.436523, -5.684317 ], [ 12.181091, -5.790897 ], [ 11.914673, -5.038963 ], [ 12.318420, -4.606540 ], [ 12.620544, -4.436782 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 0.219726 ], [ 22.719727, -11.011297 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.153931, -11.084080 ], [ 22.208862, -9.895804 ], [ 21.876526, -9.524914 ], [ 21.802368, -8.909493 ], [ 21.947937, -8.306624 ], [ 21.747437, -7.920514 ], [ 21.728210, -7.291639 ], [ 20.514221, -7.299812 ], [ 20.602112, -6.940059 ], [ 20.091248, -6.942786 ], [ 20.039062, -7.117245 ], [ 19.418335, -7.155400 ], [ 19.165649, -7.738208 ], [ 19.017334, -7.988518 ], [ 18.465271, -7.847057 ], [ 18.132935, -7.988518 ], [ 17.473755, -8.067388 ], [ 17.089233, -7.544933 ], [ 16.861267, -7.223524 ], [ 16.572876, -6.623686 ], [ 16.325684, -5.878332 ], [ 13.375854, -5.864671 ], [ 13.024292, -5.984875 ], [ 12.735901, -5.965754 ], [ 12.321167, -6.099591 ], [ 12.181091, -5.790897 ], [ 12.436523, -5.684317 ], [ 12.466736, -5.249598 ], [ 12.631531, -4.992450 ], [ 12.996826, -4.781732 ], [ 13.257751, -4.882994 ], [ 13.601074, -4.499762 ], [ 14.144897, -4.510714 ], [ 14.208069, -4.792680 ], [ 14.581604, -4.970560 ], [ 15.172119, -4.343673 ], [ 15.754395, -3.856034 ], [ 16.007080, -3.535352 ], [ 15.974121, -2.712609 ], [ 16.408081, -1.741065 ], [ 16.864014, -1.224882 ], [ 17.523193, -0.744303 ], [ 17.638550, -0.425716 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.792358, 0.219726 ], [ 22.719727, 0.219726 ] ] ] } } ] } ] } , @@ -4611,19 +4579,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.221802, 11.393879 ], [ 13.985596, 11.178402 ], [ 13.573608, 10.798235 ], [ 13.309937, 10.160857 ], [ 13.167114, 9.641369 ], [ 12.955627, 9.416548 ], [ 12.752380, 8.716789 ], [ 12.219543, 8.306624 ], [ 12.062988, 7.800800 ], [ 11.840515, 7.397877 ], [ 11.747131, 6.980954 ], [ 11.250000, 6.738259 ], [ 11.057739, 6.645511 ], [ 11.030273, 6.664608 ], [ 11.030273, 11.393879 ], [ 14.221802, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.941406, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.259851 ], [ 11.030273, 2.262595 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Equatorial Guinea", "sov_a3": "GNQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Equatorial Guinea", "adm0_a3": "GNQ", "geou_dif": 0, "geounit": "Equatorial Guinea", "gu_a3": "GNQ", "su_dif": 0, "subunit": "Equatorial Guinea", "su_a3": "GNQ", "brk_diff": 0, "name": "Eq. Guinea", "name_long": "Equatorial Guinea", "brk_a3": "GNQ", "brk_name": "Eq. Guinea", "abbrev": "Eq. G.", "postal": "GQ", "formal_en": "Republic of Equatorial Guinea", "name_sort": "Equatorial Guinea", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 650702, "gdp_md_est": 14060, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "7. Least developed region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "GQ", "iso_a3": "GNQ", "iso_n3": "226", "un_a3": "226", "wb_a2": "GQ", "wb_a3": "GNQ", "woe_id": -99, "adm0_a3_is": "GNQ", "adm0_a3_us": "GNQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 17, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 2.262595 ], [ 11.250000, 2.259851 ], [ 11.277466, 2.259851 ], [ 11.285706, 1.057374 ], [ 11.250000, 1.057374 ], [ 11.030273, 1.060120 ], [ 11.030273, 2.262595 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.393879 ], [ 22.719727, 11.102947 ], [ 22.500000, 11.043647 ], [ 22.230835, 10.970854 ], [ 21.722717, 10.566122 ], [ 21.000366, 9.476154 ], [ 20.061035, 9.012590 ], [ 19.094238, 9.074976 ], [ 18.811340, 8.982749 ], [ 18.910217, 8.629903 ], [ 18.388367, 8.282163 ], [ 17.965393, 7.890588 ], [ 16.704712, 7.509535 ], [ 16.457520, 7.735487 ], [ 16.289978, 7.754537 ], [ 16.105957, 7.495920 ], [ 15.279236, 7.422389 ], [ 15.435791, 7.691939 ], [ 15.119934, 8.382714 ], [ 14.979858, 8.795511 ], [ 14.543152, 8.966471 ], [ 13.955383, 9.549292 ], [ 14.172363, 10.020244 ], [ 14.628296, 9.920155 ], [ 14.908447, 9.993196 ], [ 15.468750, 9.982376 ], [ 14.924927, 10.892648 ], [ 14.941406, 11.178402 ], [ 14.952393, 11.393879 ], [ 22.719727, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.952393, 11.393879 ], [ 14.941406, 11.178402 ], [ 14.924927, 10.892648 ], [ 15.468750, 9.982376 ], [ 14.908447, 9.993196 ], [ 14.628296, 9.920155 ], [ 14.172363, 10.020244 ], [ 13.955383, 9.549292 ], [ 14.543152, 8.966471 ], [ 14.979858, 8.795511 ], [ 15.119934, 8.382714 ], [ 15.435791, 7.691939 ], [ 15.279236, 7.422389 ], [ 14.776611, 6.408107 ], [ 14.537659, 6.227934 ], [ 14.460754, 5.451959 ], [ 14.559631, 5.030755 ], [ 14.477234, 4.732464 ], [ 14.949646, 4.209465 ], [ 15.037537, 3.850553 ], [ 15.405579, 3.335212 ], [ 15.861511, 3.014356 ], [ 15.908203, 2.556219 ], [ 16.012573, 2.268084 ], [ 15.941162, 1.727338 ], [ 15.147400, 1.963422 ], [ 14.337158, 2.226917 ], [ 13.076477, 2.268084 ], [ 12.950134, 2.322972 ], [ 12.359619, 2.193983 ], [ 11.752625, 2.325716 ], [ 11.277466, 2.259851 ], [ 11.250000, 2.259851 ], [ 11.030273, 2.262595 ], [ 11.030273, 6.664608 ], [ 11.057739, 6.645511 ], [ 11.250000, 6.738259 ], [ 11.747131, 6.980954 ], [ 11.840515, 7.397877 ], [ 12.062988, 7.800800 ], [ 12.219543, 8.306624 ], [ 12.752380, 8.716789 ], [ 12.955627, 9.416548 ], [ 13.167114, 9.641369 ], [ 13.309937, 10.160857 ], [ 13.573608, 10.798235 ], [ 13.985596, 11.178402 ], [ 14.221802, 11.393879 ], [ 14.952393, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.321763 ], [ 21.659546, 4.223161 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.288390 ], [ 17.773132, 0.856902 ], [ 17.899475, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.393860, 2.899153 ], [ 18.454285, 3.505197 ], [ 18.542175, 4.201247 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.030755 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 4.642130 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.028659 ], [ 21.659546, 4.223161 ], [ 20.928955, 4.321763 ], [ 20.291748, 4.691404 ], [ 19.467773, 5.030755 ], [ 18.932190, 4.710566 ], [ 18.542175, 4.201247 ], [ 18.454285, 3.505197 ], [ 17.808838, 3.560024 ], [ 17.133179, 3.727227 ], [ 16.537170, 3.198106 ], [ 16.012573, 2.268084 ], [ 15.908203, 2.556219 ], [ 15.861511, 3.014356 ], [ 15.405579, 3.335212 ], [ 15.037537, 3.850553 ], [ 14.949646, 4.209465 ], [ 14.477234, 4.732464 ], [ 14.559631, 5.030755 ], [ 14.460754, 5.451959 ], [ 14.537659, 6.227934 ], [ 14.776611, 6.408107 ], [ 15.279236, 7.422389 ], [ 16.105957, 7.495920 ], [ 16.289978, 7.754537 ], [ 16.457520, 7.735487 ], [ 16.704712, 7.509535 ], [ 17.965393, 7.890588 ], [ 18.388367, 8.282163 ], [ 18.910217, 8.629903 ], [ 18.811340, 8.982749 ], [ 19.094238, 9.074976 ], [ 20.061035, 9.012590 ], [ 21.000366, 9.476154 ], [ 21.722717, 10.566122 ], [ 22.230835, 10.970854 ], [ 22.500000, 11.043647 ], [ 22.719727, 11.102947 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Gabon", "sov_a3": "GAB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Gabon", "adm0_a3": "GAB", "geou_dif": 0, "geounit": "Gabon", "gu_a3": "GAB", "su_dif": 0, "subunit": "Gabon", "su_a3": "GAB", "brk_diff": 0, "name": "Gabon", "name_long": "Gabon", "brk_a3": "GAB", "brk_name": "Gabon", "abbrev": "Gabon", "postal": "GA", "formal_en": "Gabonese Republic", "name_sort": "Gabon", "mapcolor7": 6, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 5, "pop_est": 1514993, "gdp_md_est": 21110, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "GA", "iso_a3": "GAB", "iso_n3": "266", "un_a3": "266", "wb_a2": "GA", "wb_a3": "GAB", "woe_id": -99, "adm0_a3_is": "GAB", "adm0_a3_us": "GAB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": 3, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.752625, 2.325716 ], [ 12.359619, 2.193983 ], [ 12.950134, 2.322972 ], [ 13.076477, 2.268084 ], [ 13.002319, 1.831658 ], [ 13.282471, 1.315497 ], [ 14.026794, 1.395126 ], [ 14.276733, 1.197423 ], [ 13.842773, 0.038452 ], [ 13.872986, 0.000000 ], [ 14.048767, -0.219726 ], [ 11.030273, -0.219726 ], [ 11.030273, 1.060120 ], [ 11.250000, 1.057374 ], [ 11.285706, 1.057374 ], [ 11.277466, 2.259851 ], [ 11.752625, 2.325716 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Republic of Congo", "sov_a3": "COG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Congo", "adm0_a3": "COG", "geou_dif": 0, "geounit": "Republic of Congo", "gu_a3": "COG", "su_dif": 0, "subunit": "Republic of Congo", "su_a3": "COG", "brk_diff": 0, "name": "Congo", "name_long": "Republic of Congo", "brk_a3": "COG", "brk_name": "Republic of Congo", "abbrev": "Rep. Congo", "postal": "CG", "formal_en": "Republic of Congo", "name_sort": "Congo, Rep.", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 4012809, "gdp_md_est": 15350, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CG", "iso_a3": "COG", "iso_n3": "178", "un_a3": "178", "wb_a2": "CG", "wb_a3": "COG", "woe_id": -99, "adm0_a3_is": "COG", "adm0_a3_us": "COG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 17, "abbrev_len": 10, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.133179, 3.727227 ], [ 17.808838, 3.560024 ], [ 18.454285, 3.505197 ], [ 18.393860, 2.899153 ], [ 18.094482, 2.366880 ], [ 17.899475, 1.741065 ], [ 17.773132, 0.856902 ], [ 17.825317, 0.288390 ], [ 17.690735, 0.000000 ], [ 17.663269, -0.057678 ], [ 17.652283, -0.219726 ], [ 14.048767, -0.219726 ], [ 13.872986, 0.000000 ], [ 13.842773, 0.038452 ], [ 14.276733, 1.197423 ], [ 14.026794, 1.395126 ], [ 13.282471, 1.315497 ], [ 13.002319, 1.831658 ], [ 13.076477, 2.268084 ], [ 14.337158, 2.226917 ], [ 15.147400, 1.963422 ], [ 15.941162, 1.727338 ], [ 16.012573, 2.268084 ], [ 16.537170, 3.198106 ], [ 17.133179, 3.727227 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 5.030755 ], [ 20.291748, 4.691404 ], [ 20.928955, 4.321763 ], [ 21.659546, 4.223161 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.719727, 4.642130 ], [ 22.719727, -0.219726 ], [ 17.652283, -0.219726 ], [ 17.663269, -0.057678 ], [ 17.690735, 0.000000 ], [ 17.825317, 0.288390 ], [ 17.773132, 0.856902 ], [ 17.899475, 1.741065 ], [ 18.094482, 2.366880 ], [ 18.393860, 2.899153 ], [ 18.454285, 3.505197 ], [ 18.542175, 4.201247 ], [ 18.932190, 4.710566 ], [ 19.467773, 5.030755 ] ] ] } } ] } ] } , @@ -4635,22 +4603,22 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Nigeria", "sov_a3": "NGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nigeria", "adm0_a3": "NGA", "geou_dif": 0, "geounit": "Nigeria", "gu_a3": "NGA", "su_dif": 0, "subunit": "Nigeria", "su_a3": "NGA", "brk_diff": 0, "name": "Nigeria", "name_long": "Nigeria", "brk_a3": "NGA", "brk_name": "Nigeria", "abbrev": "Nigeria", "postal": "NG", "formal_en": "Federal Republic of Nigeria", "name_sort": "Nigeria", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 149229090, "gdp_md_est": 335400, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "NG", "iso_a3": "NGA", "iso_n3": "566", "un_a3": "566", "wb_a2": "NG", "wb_a3": "NGA", "woe_id": -99, "adm0_a3_is": "NGA", "adm0_a3_us": "NGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.084717, 13.595269 ], [ 13.318176, 13.555222 ], [ 13.996582, 12.460715 ], [ 14.180603, 12.484850 ], [ 14.576111, 12.084982 ], [ 14.468994, 11.904979 ], [ 14.414062, 11.571525 ], [ 13.985596, 11.178402 ], [ 13.752136, 10.962764 ], [ 11.030273, 10.962764 ], [ 11.030273, 13.381604 ], [ 11.250000, 13.357554 ], [ 11.527405, 13.328158 ], [ 12.301941, 13.036669 ], [ 13.084717, 13.595269 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.894714, 12.219233 ], [ 14.960632, 11.555380 ], [ 14.941406, 11.178402 ], [ 14.927673, 10.962764 ], [ 13.752136, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.576111, 12.084982 ], [ 14.180603, 12.484850 ], [ 14.213562, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.498230, 22.146708 ], [ 18.921204, 21.943046 ], [ 19.849548, 21.493964 ], [ 22.500000, 20.226120 ], [ 22.719727, 20.120419 ], [ 22.719727, 15.188784 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.184143, 13.787404 ], [ 22.296753, 13.373588 ], [ 22.038574, 12.956383 ], [ 21.936951, 12.589413 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.508240, 11.679135 ], [ 22.719727, 11.509631 ], [ 22.719727, 11.102947 ], [ 22.230835, 10.970854 ], [ 22.219849, 10.962764 ], [ 14.927673, 10.962764 ], [ 14.941406, 11.178402 ], [ 14.960632, 11.555380 ], [ 14.894714, 12.219233 ], [ 14.496460, 12.860004 ], [ 14.595337, 13.330830 ], [ 13.955383, 13.352210 ], [ 13.955383, 13.995372 ], [ 13.540649, 14.368173 ], [ 13.971863, 15.683865 ], [ 15.249023, 16.628297 ], [ 15.301208, 17.929089 ], [ 15.685730, 19.957860 ], [ 15.902710, 20.388400 ], [ 15.487976, 20.730428 ], [ 15.471497, 21.048618 ], [ 15.097961, 21.307287 ], [ 14.996338, 21.943046 ], [ 14.966125, 22.146708 ], [ 18.498230, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 15.188784 ], [ 22.719727, 11.509631 ], [ 22.508240, 11.679135 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 21.936951, 12.589413 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.184143, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 22.719727, 15.188784 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cameroon", "sov_a3": "CMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cameroon", "adm0_a3": "CMR", "geou_dif": 0, "geounit": "Cameroon", "gu_a3": "CMR", "su_dif": 0, "subunit": "Cameroon", "su_a3": "CMR", "brk_diff": 0, "name": "Cameroon", "name_long": "Cameroon", "brk_a3": "CMR", "brk_name": "Cameroon", "abbrev": "Cam.", "postal": "CM", "formal_en": "Republic of Cameroon", "name_sort": "Cameroon", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 3, "pop_est": 18879301, "gdp_md_est": 42750, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "CM", "iso_a3": "CMR", "iso_n3": "120", "un_a3": "120", "wb_a2": "CM", "wb_a3": "CMR", "woe_id": -99, "adm0_a3_is": "CMR", "adm0_a3_us": "CMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.496460, 12.860004 ], [ 14.894714, 12.219233 ], [ 14.960632, 11.555380 ], [ 14.941406, 11.178402 ], [ 14.927673, 10.962764 ], [ 13.752136, 10.962764 ], [ 13.985596, 11.178402 ], [ 14.414062, 11.571525 ], [ 14.468994, 11.904979 ], [ 14.576111, 12.084982 ], [ 14.180603, 12.484850 ], [ 14.213562, 12.801088 ], [ 14.496460, 12.860004 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 11.102947 ], [ 22.719727, 10.962764 ], [ 22.219849, 10.962764 ], [ 22.230835, 10.970854 ], [ 22.719727, 11.102947 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 15.188784 ], [ 22.719727, 11.509631 ], [ 22.508240, 11.679135 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 21.936951, 12.589413 ], [ 22.038574, 12.956383 ], [ 22.296753, 13.373588 ], [ 22.184143, 13.787404 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 22.719727, 15.188784 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 24.409639 ], [ 11.250000, 24.282020 ], [ 11.560364, 24.099126 ], [ 11.999817, 23.470805 ], [ 11.250000, 23.056989 ], [ 11.030273, 22.935630 ], [ 11.030273, 24.409639 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.041260, 32.138409 ], [ 11.030273, 32.133757 ], [ 11.030273, 32.138409 ], [ 11.041260, 32.138409 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Algeria", "sov_a3": "DZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Algeria", "adm0_a3": "DZA", "geou_dif": 0, "geounit": "Algeria", "gu_a3": "DZA", "su_dif": 0, "subunit": "Algeria", "su_a3": "DZA", "brk_diff": 0, "name": "Algeria", "name_long": "Algeria", "brk_a3": "DZA", "brk_name": "Algeria", "abbrev": "Alg.", "postal": "DZ", "formal_en": "People's Democratic Republic of Algeria", "name_sort": "Algeria", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 34178188, "gdp_md_est": 232900, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "DZ", "iso_a3": "DZA", "iso_n3": "012", "un_a3": "012", "wb_a2": "DZ", "wb_a3": "DZA", "woe_id": -99, "adm0_a3_is": "DZA", "adm0_a3_us": "DZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.030273, 24.409639 ], [ 11.250000, 24.282020 ], [ 11.560364, 24.099126 ], [ 11.999817, 23.470805 ], [ 11.250000, 23.056989 ], [ 11.030273, 22.935630 ], [ 11.030273, 24.409639 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 32.138409 ], [ 22.719727, 21.739091 ], [ 19.341431, 21.739091 ], [ 18.918457, 21.943046 ], [ 15.861511, 23.410327 ], [ 14.850769, 22.862256 ], [ 14.144897, 22.492257 ], [ 13.581848, 23.039298 ], [ 11.999817, 23.470805 ], [ 11.560364, 24.099126 ], [ 11.250000, 24.282020 ], [ 11.030273, 24.409639 ], [ 11.030273, 32.133757 ], [ 11.041260, 32.138409 ], [ 15.314941, 32.138409 ], [ 15.411072, 31.952162 ], [ 15.713196, 31.377089 ], [ 16.611328, 31.182259 ], [ 18.020325, 30.763079 ], [ 19.085999, 30.266184 ], [ 19.574890, 30.526779 ], [ 20.052795, 30.984673 ], [ 19.819336, 31.751525 ], [ 19.948425, 31.952162 ], [ 20.069275, 32.138409 ], [ 22.719727, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Niger", "sov_a3": "NER", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Niger", "adm0_a3": "NER", "geou_dif": 0, "geounit": "Niger", "gu_a3": "NER", "su_dif": 0, "subunit": "Niger", "su_a3": "NER", "brk_diff": 0, "name": "Niger", "name_long": "Niger", "brk_a3": "NER", "brk_name": "Niger", "abbrev": "Niger", "postal": "NE", "formal_en": "Republic of Niger", "name_sort": "Niger", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 15306252, "gdp_md_est": 10040, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NE", "iso_a3": "NER", "iso_n3": "562", "un_a3": "562", "wb_a2": "NE", "wb_a3": "NER", "woe_id": -99, "adm0_a3_is": "NER", "adm0_a3_us": "NER", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Western Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.999817, 23.470805 ], [ 13.581848, 23.039298 ], [ 14.144897, 22.492257 ], [ 14.850769, 22.862256 ], [ 14.996338, 21.943046 ], [ 15.029297, 21.739091 ], [ 11.030273, 21.739091 ], [ 11.030273, 22.935630 ], [ 11.250000, 23.056989 ], [ 11.999817, 23.470805 ] ] ] } } @@ -4663,23 +4631,25 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.520935, 38.231708 ], [ 15.161133, 37.444335 ], [ 15.309448, 37.134045 ], [ 15.100708, 36.619937 ], [ 14.334412, 36.995972 ], [ 13.826294, 37.105575 ], [ 12.431030, 37.612056 ], [ 12.571106, 38.125915 ], [ 13.741150, 38.035112 ], [ 14.760132, 38.143198 ], [ 15.520935, 38.231708 ] ] ], [ [ [ 16.864014, 41.145570 ], [ 17.267761, 40.979898 ], [ 17.520447, 40.876141 ], [ 18.377380, 40.354917 ], [ 18.479004, 40.168380 ], [ 18.292236, 39.810646 ], [ 17.737427, 40.277430 ], [ 16.869507, 40.442767 ], [ 16.449280, 39.795876 ], [ 17.171631, 39.425586 ], [ 17.053528, 38.903858 ], [ 16.636047, 38.843986 ], [ 16.100464, 37.985340 ], [ 15.682983, 37.909534 ], [ 15.688477, 38.214446 ], [ 15.891724, 38.751941 ], [ 16.108704, 38.963680 ], [ 15.718689, 39.544294 ], [ 15.413818, 40.048643 ], [ 14.999084, 40.172578 ], [ 14.702454, 40.603527 ], [ 14.059753, 40.786780 ], [ 13.853760, 40.979898 ], [ 13.675232, 41.145570 ], [ 16.864014, 41.145570 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.585632, 41.145570 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.109588 ], [ 20.148926, 39.624730 ], [ 19.978638, 39.694507 ], [ 19.959412, 39.916056 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.349670, 40.979898 ], [ 19.371643, 41.145570 ], [ 20.585632, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.046814, 41.145570 ], [ 21.755676, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.585632, 41.145570 ], [ 22.046814, 41.145570 ] ] ], [ [ [ 22.609863, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.175903, 41.145570 ], [ 22.609863, 41.145570 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Tunisia", "sov_a3": "TUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tunisia", "adm0_a3": "TUN", "geou_dif": 0, "geounit": "Tunisia", "gu_a3": "TUN", "su_dif": 0, "subunit": "Tunisia", "su_a3": "TUN", "brk_diff": 0, "name": "Tunisia", "name_long": "Tunisia", "brk_a3": "TUN", "brk_name": "Tunisia", "abbrev": "Tun.", "postal": "TN", "formal_en": "Republic of Tunisia", "name_sort": "Tunisia", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 10486339, "gdp_md_est": 81710, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TN", "iso_a3": "TUN", "iso_n3": "788", "un_a3": "788", "wb_a2": "TN", "wb_a3": "TUN", "woe_id": -99, "adm0_a3_is": "TUN", "adm0_a3_us": "TUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.030273, 36.833470 ], [ 11.030273, 37.085858 ], [ 11.098938, 36.899391 ], [ 11.030273, 36.833470 ] ] ], [ [ [ 11.030273, 33.440609 ], [ 11.107178, 33.293804 ], [ 11.250000, 33.236390 ], [ 11.488953, 33.137551 ], [ 11.431274, 32.368363 ], [ 11.250000, 32.261588 ], [ 11.030273, 32.133757 ], [ 11.030273, 33.440609 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.585632, 41.145570 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.000366, 40.580585 ], [ 20.676270, 40.434405 ], [ 20.615845, 40.109588 ], [ 20.148926, 39.624730 ], [ 19.978638, 39.694507 ], [ 19.959412, 39.916056 ], [ 19.407349, 40.250184 ], [ 19.319458, 40.726446 ], [ 19.349670, 40.979898 ], [ 19.371643, 41.145570 ], [ 20.585632, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.488953, 33.137551 ], [ 12.664490, 32.791892 ], [ 13.081970, 32.879587 ], [ 13.919678, 32.711044 ], [ 15.246277, 32.266233 ], [ 15.411072, 31.952162 ], [ 15.509949, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.133757 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.488953, 33.137551 ] ] ], [ [ [ 19.827576, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.135193, 32.238359 ], [ 20.854797, 32.706422 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.719727, 32.664813 ], [ 22.719727, 31.765537 ], [ 19.827576, 31.765537 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.145570 ], [ 22.719727, 40.365381 ], [ 22.626343, 40.256473 ], [ 22.719727, 40.006580 ], [ 22.719727, 36.414652 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 21.670532, 36.844461 ], [ 21.294250, 37.644685 ], [ 21.121216, 38.309336 ], [ 20.731201, 38.769075 ], [ 20.217590, 39.340670 ], [ 20.148926, 39.624730 ], [ 20.615845, 40.109588 ], [ 20.676270, 40.434405 ], [ 21.000366, 40.580585 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.755676, 40.979898 ], [ 22.046814, 41.145570 ], [ 22.175903, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 22.719727, 41.145570 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.488953, 33.137551 ], [ 12.664490, 32.791892 ], [ 13.081970, 32.879587 ], [ 13.919678, 32.711044 ], [ 15.246277, 32.266233 ], [ 15.411072, 31.952162 ], [ 15.509949, 31.765537 ], [ 11.030273, 31.765537 ], [ 11.030273, 32.133757 ], [ 11.250000, 32.261588 ], [ 11.431274, 32.368363 ], [ 11.488953, 33.137551 ] ] ], [ [ [ 19.827576, 31.765537 ], [ 19.948425, 31.952162 ], [ 20.135193, 32.238359 ], [ 20.854797, 32.706422 ], [ 21.544189, 32.842674 ], [ 22.500000, 32.699489 ], [ 22.719727, 32.664813 ], [ 22.719727, 31.765537 ], [ 19.827576, 31.765537 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.348389, 49.066668 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.244019, 48.416442 ], [ 12.884216, 48.288676 ], [ 13.027039, 47.637634 ], [ 12.933655, 47.467093 ], [ 12.620544, 47.672786 ], [ 12.142639, 47.702368 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 11.030273, 47.543164 ], [ 11.030273, 49.066668 ], [ 13.348389, 49.066668 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.110962, 49.066668 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 16.960144, 48.596592 ], [ 16.498718, 48.785152 ], [ 16.029053, 48.734455 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.339905, 48.554796 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.348389, 49.066668 ], [ 18.110962, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.348389, 49.066668 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.244019, 48.416442 ], [ 12.884216, 48.288676 ], [ 13.027039, 47.637634 ], [ 12.933655, 47.467093 ], [ 12.620544, 47.672786 ], [ 12.142639, 47.702368 ], [ 11.425781, 47.524620 ], [ 11.250000, 47.533893 ], [ 11.030273, 47.543164 ], [ 11.030273, 49.066668 ], [ 13.348389, 49.066668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.631836, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 16.029053, 48.734455 ], [ 16.498718, 48.785152 ], [ 16.960144, 48.596592 ], [ 16.880493, 48.469279 ], [ 16.979370, 48.123934 ], [ 16.902466, 47.715306 ], [ 16.339417, 47.713458 ], [ 16.534424, 47.496792 ], [ 16.202087, 46.852678 ], [ 16.012573, 46.683363 ], [ 15.136414, 46.658862 ], [ 14.633789, 46.432178 ], [ 13.807068, 46.509735 ], [ 12.376099, 46.768087 ], [ 12.153625, 47.115000 ], [ 11.250000, 46.955887 ], [ 11.164856, 46.940887 ], [ 11.049500, 46.751153 ], [ 11.030273, 46.754917 ], [ 11.030273, 47.543164 ], [ 11.250000, 47.533893 ], [ 11.425781, 47.524620 ], [ 12.142639, 47.702368 ], [ 12.620544, 47.672786 ], [ 12.933655, 47.467093 ], [ 13.027039, 47.637634 ], [ 12.884216, 48.288676 ], [ 13.244019, 48.416442 ], [ 13.595581, 48.877361 ], [ 14.339905, 48.554796 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ] ] ] } } , @@ -4687,92 +4657,90 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Italy", "sov_a3": "ITA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Italy", "adm0_a3": "ITA", "geou_dif": 0, "geounit": "Italy", "gu_a3": "ITA", "su_dif": 0, "subunit": "Italy", "su_a3": "ITA", "brk_diff": 0, "name": "Italy", "name_long": "Italy", "brk_a3": "ITA", "brk_name": "Italy", "abbrev": "Italy", "postal": "I", "formal_en": "Italian Republic", "name_sort": "Italy", "mapcolor7": 6, "mapcolor8": 7, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 58126212, "gdp_md_est": 1823000, "pop_year": -99, "lastcensus": 2012, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IT", "iso_a3": "ITA", "iso_n3": "380", "un_a3": "380", "wb_a2": "IT", "wb_a3": "ITA", "woe_id": -99, "adm0_a3_is": "ITA", "adm0_a3_us": "ITA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.153625, 47.115000 ], [ 12.376099, 46.768087 ], [ 13.807068, 46.509735 ], [ 13.697205, 46.016039 ], [ 13.938904, 45.590978 ], [ 13.142395, 45.736860 ], [ 12.329407, 45.381090 ], [ 12.384338, 44.885066 ], [ 12.260742, 44.600246 ], [ 12.590332, 44.091531 ], [ 13.526917, 43.588349 ], [ 14.029541, 42.761129 ], [ 15.141907, 41.955405 ], [ 15.927429, 41.961532 ], [ 16.169128, 41.740578 ], [ 15.888977, 41.541478 ], [ 17.267761, 40.979898 ], [ 17.520447, 40.876141 ], [ 17.622070, 40.813809 ], [ 14.029541, 40.813809 ], [ 13.853760, 40.979898 ], [ 13.628540, 41.188989 ], [ 12.886963, 41.253032 ], [ 12.106934, 41.703678 ], [ 11.250000, 42.313878 ], [ 11.192322, 42.354485 ], [ 11.030273, 42.492353 ], [ 11.030273, 46.754917 ], [ 11.049500, 46.751153 ], [ 11.164856, 46.940887 ], [ 11.250000, 46.955887 ], [ 12.153625, 47.115000 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.623832 ], [ 21.871033, 48.319734 ], [ 22.085266, 48.421910 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.993368 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.596863, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.630310, 45.951150 ], [ 16.883240, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.534424, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.866617 ], [ 17.858276, 47.757791 ], [ 18.695984, 47.881355 ], [ 18.778381, 48.081749 ], [ 19.173889, 48.111099 ], [ 19.660034, 48.266741 ], [ 19.769897, 48.202710 ], [ 20.239563, 48.327039 ], [ 20.473022, 48.562068 ], [ 20.802612, 48.623832 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.564636, 46.504064 ], [ 16.883240, 46.381044 ], [ 17.630310, 45.951150 ], [ 18.457031, 45.759859 ], [ 18.830566, 45.909122 ], [ 19.072266, 45.521744 ], [ 19.390869, 45.236218 ], [ 19.006348, 44.859763 ], [ 18.553162, 45.081279 ], [ 17.861023, 45.067701 ], [ 17.001343, 45.234283 ], [ 16.534424, 45.211069 ], [ 16.317444, 45.003651 ], [ 15.960388, 45.234283 ], [ 15.748901, 44.818864 ], [ 16.240540, 44.351350 ], [ 16.457520, 44.042193 ], [ 16.916199, 43.667872 ], [ 17.297974, 43.446937 ], [ 17.674255, 43.028745 ], [ 18.558655, 42.650122 ], [ 18.448792, 42.480200 ], [ 17.509460, 42.849793 ], [ 16.929932, 43.209180 ], [ 16.015320, 43.506729 ], [ 15.174866, 44.243231 ], [ 15.375366, 44.317953 ], [ 14.919434, 44.738930 ], [ 14.902954, 45.075460 ], [ 14.257507, 45.234283 ], [ 13.952637, 44.801327 ], [ 13.656006, 45.137493 ], [ 13.680725, 45.483244 ], [ 13.716431, 45.500572 ], [ 14.411316, 45.465910 ], [ 14.595337, 45.635167 ], [ 14.935913, 45.471688 ], [ 15.328674, 45.452424 ], [ 15.323181, 45.731108 ], [ 15.671997, 45.834540 ], [ 15.768127, 46.238752 ], [ 16.564636, 46.504064 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.085266, 48.421910 ], [ 21.871033, 48.319734 ], [ 20.802612, 48.623832 ], [ 20.473022, 48.562068 ], [ 20.239563, 48.327039 ], [ 19.769897, 48.202710 ], [ 19.660034, 48.266741 ], [ 19.173889, 48.111099 ], [ 18.778381, 48.081749 ], [ 18.695984, 47.881355 ], [ 17.858276, 47.757791 ], [ 17.487488, 47.866617 ], [ 16.979370, 48.123934 ], [ 16.880493, 48.469279 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.110962, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.802612, 48.623832 ], [ 21.871033, 48.319734 ], [ 22.085266, 48.421910 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.098999, 47.672786 ], [ 21.626587, 46.993368 ], [ 21.022339, 46.316584 ], [ 20.220337, 46.126556 ], [ 19.596863, 46.172223 ], [ 18.830566, 45.909122 ], [ 18.457031, 45.759859 ], [ 17.630310, 45.951150 ], [ 16.883240, 46.381044 ], [ 16.564636, 46.504064 ], [ 16.369629, 46.841407 ], [ 16.202087, 46.852678 ], [ 16.534424, 47.496792 ], [ 16.339417, 47.713458 ], [ 16.902466, 47.715306 ], [ 16.979370, 48.123934 ], [ 17.487488, 47.866617 ], [ 17.858276, 47.757791 ], [ 18.695984, 47.881355 ], [ 18.778381, 48.081749 ], [ 19.173889, 48.111099 ], [ 19.660034, 48.266741 ], [ 19.769897, 48.202710 ], [ 20.239563, 48.327039 ], [ 20.473022, 48.562068 ], [ 20.802612, 48.623832 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.001343, 45.234283 ], [ 17.861023, 45.067701 ], [ 18.553162, 45.081279 ], [ 19.006348, 44.859763 ], [ 19.368896, 44.863656 ], [ 19.118958, 44.423973 ], [ 19.599609, 44.038244 ], [ 19.454041, 43.568452 ], [ 19.217834, 43.524655 ], [ 19.031067, 43.432977 ], [ 18.706970, 43.199170 ], [ 18.558655, 42.650122 ], [ 17.674255, 43.028745 ], [ 17.297974, 43.446937 ], [ 16.916199, 43.667872 ], [ 16.457520, 44.042193 ], [ 16.240540, 44.351350 ], [ 15.748901, 44.818864 ], [ 15.960388, 45.234283 ], [ 16.317444, 45.003651 ], [ 16.534424, 45.211069 ], [ 17.001343, 45.234283 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.217834, 43.524655 ], [ 19.484253, 43.353144 ], [ 19.629822, 43.213183 ], [ 19.959412, 43.106999 ], [ 20.338440, 42.898101 ], [ 20.258789, 42.813537 ], [ 20.072021, 42.589489 ], [ 19.802856, 42.500453 ], [ 19.736938, 42.688492 ], [ 19.305725, 42.195969 ], [ 19.371643, 41.877741 ], [ 19.162903, 41.955405 ], [ 18.882751, 42.281373 ], [ 18.448792, 42.480200 ], [ 18.558655, 42.650122 ], [ 18.706970, 43.199170 ], [ 19.031067, 43.432977 ], [ 19.217834, 43.524655 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.055054, 41.149706 ], [ 21.755676, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.680372 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.642038 ], [ 22.719727, 43.446937 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.813599, 43.271206 ], [ 20.956421, 43.131057 ], [ 21.143188, 43.068888 ], [ 21.275024, 42.910172 ], [ 21.439819, 42.861873 ], [ 21.632080, 42.676378 ], [ 21.774902, 42.682435 ], [ 21.662292, 42.439674 ], [ 21.544189, 42.319970 ], [ 21.577148, 42.244785 ], [ 21.351929, 42.206142 ], [ 20.761414, 42.051332 ], [ 20.717468, 41.847059 ], [ 20.591125, 41.855242 ], [ 20.522461, 42.218348 ], [ 20.283508, 42.319970 ], [ 20.072021, 42.589489 ], [ 20.258789, 42.813537 ], [ 20.497742, 42.884015 ], [ 20.635071, 43.217187 ], [ 20.813599, 43.271206 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.596863, 46.172223 ], [ 20.220337, 46.126556 ], [ 20.761414, 45.734943 ], [ 20.874023, 45.415804 ], [ 21.483765, 45.182037 ], [ 21.560669, 44.768187 ], [ 22.145691, 44.478871 ], [ 22.458801, 44.701850 ], [ 22.500000, 44.680372 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.642038 ], [ 22.719727, 43.446937 ], [ 22.719727, 42.992595 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 21.917725, 42.303722 ], [ 21.577148, 42.244785 ], [ 21.544189, 42.319970 ], [ 21.662292, 42.439674 ], [ 21.774902, 42.682435 ], [ 21.632080, 42.676378 ], [ 21.439819, 42.861873 ], [ 21.275024, 42.910172 ], [ 21.143188, 43.068888 ], [ 20.956421, 43.131057 ], [ 20.813599, 43.271206 ], [ 20.635071, 43.217187 ], [ 20.497742, 42.884015 ], [ 20.258789, 42.813537 ], [ 20.338440, 42.898101 ], [ 19.959412, 43.106999 ], [ 19.629822, 43.213183 ], [ 19.484253, 43.353144 ], [ 19.217834, 43.524655 ], [ 19.454041, 43.568452 ], [ 19.599609, 44.038244 ], [ 19.118958, 44.423973 ], [ 19.368896, 44.863656 ], [ 19.006348, 44.859763 ], [ 19.390869, 45.236218 ], [ 19.072266, 45.521744 ], [ 18.830566, 45.909122 ], [ 19.596863, 46.172223 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.631836, 49.066668 ], [ 22.719727, 49.066668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.719727, 42.102298 ], [ 22.719727, 41.261291 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.055054, 41.149706 ], [ 21.755676, 40.979898 ], [ 21.673279, 40.932190 ], [ 21.019592, 40.842905 ], [ 20.786133, 40.979898 ], [ 20.604858, 41.085562 ], [ 20.462036, 41.514747 ], [ 20.591125, 41.855242 ], [ 20.717468, 41.847059 ], [ 20.761414, 42.051332 ], [ 21.351929, 42.206142 ], [ 21.917725, 42.303722 ], [ 22.381897, 42.319970 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.885039 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.085266, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.384644, 48.922499 ], [ 22.535706, 49.066668 ], [ 22.631836, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 47.885039 ], [ 22.719727, 44.144769 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.425934 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.458801, 44.701850 ], [ 22.145691, 44.478871 ], [ 21.560669, 44.768187 ], [ 21.483765, 45.182037 ], [ 20.874023, 45.415804 ], [ 20.761414, 45.734943 ], [ 20.220337, 46.126556 ], [ 21.022339, 46.316584 ], [ 21.626587, 46.993368 ], [ 22.098999, 47.672786 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 22.719727, 47.885039 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Bulgaria", "sov_a3": "BGR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bulgaria", "adm0_a3": "BGR", "geou_dif": 0, "geounit": "Bulgaria", "gu_a3": "BGR", "su_dif": 0, "subunit": "Bulgaria", "su_a3": "BGR", "brk_diff": 0, "name": "Bulgaria", "name_long": "Bulgaria", "brk_a3": "BGR", "brk_name": "Bulgaria", "abbrev": "Bulg.", "postal": "BG", "formal_en": "Republic of Bulgaria", "name_sort": "Bulgaria", "mapcolor7": 4, "mapcolor8": 5, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 7204687, "gdp_md_est": 93750, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BG", "iso_a3": "BGR", "iso_n3": "100", "un_a3": "100", "wb_a2": "BG", "wb_a3": "BGR", "woe_id": -99, "adm0_a3_is": "BGR", "adm0_a3_us": "BGR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 42.992595 ], [ 22.719727, 42.102298 ], [ 22.500000, 42.244785 ], [ 22.381897, 42.319970 ], [ 22.500000, 42.423457 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.510577 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.700604 ], [ 22.604370, 42.898101 ], [ 22.719727, 42.992595 ] ] ], [ [ [ 22.719727, 43.446937 ], [ 22.500000, 43.642038 ], [ 22.409363, 44.008620 ], [ 22.500000, 44.091531 ], [ 22.656555, 44.235360 ], [ 22.719727, 44.144769 ], [ 22.719727, 43.446937 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.631836, 49.066668 ], [ 22.719727, 49.043269 ], [ 22.719727, 47.885039 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.085266, 48.421910 ], [ 22.280273, 48.824949 ], [ 22.384644, 48.922499 ], [ 22.535706, 49.066668 ], [ 22.631836, 49.066668 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.736938, 42.688492 ], [ 19.802856, 42.500453 ], [ 20.072021, 42.589489 ], [ 20.283508, 42.319970 ], [ 20.522461, 42.218348 ], [ 20.591125, 41.855242 ], [ 20.462036, 41.514747 ], [ 20.604858, 41.085562 ], [ 20.786133, 40.979898 ], [ 21.019592, 40.842905 ], [ 21.016846, 40.813809 ], [ 19.330444, 40.813809 ], [ 19.349670, 40.979898 ], [ 19.404602, 41.409776 ], [ 19.539185, 41.720081 ], [ 19.371643, 41.877741 ], [ 19.305725, 42.195969 ], [ 19.736938, 42.688492 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 41.261291 ], [ 22.719727, 40.813809 ], [ 21.016846, 40.813809 ], [ 21.019592, 40.842905 ], [ 21.673279, 40.932190 ], [ 21.755676, 40.979898 ], [ 22.055054, 41.149706 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.719727, 41.261291 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.405629 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.452515, 55.899956 ], [ 14.364624, 55.776573 ], [ 14.100952, 55.407189 ], [ 12.941895, 55.361942 ], [ 12.804565, 55.776573 ], [ 12.763367, 55.899956 ], [ 14.452515, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.505188, 55.899956 ], [ 12.584839, 55.776573 ], [ 12.689209, 55.609384 ], [ 12.090454, 54.800685 ], [ 11.250000, 55.254077 ], [ 11.044006, 55.365064 ], [ 11.030273, 55.405629 ], [ 11.030273, 55.808999 ], [ 11.434021, 55.899956 ], [ 12.505188, 55.899956 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.518921, 54.470038 ], [ 13.647766, 54.075506 ], [ 14.120178, 53.756831 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.438782, 52.624727 ], [ 14.685974, 52.089633 ], [ 14.606323, 51.745738 ], [ 15.018311, 51.106971 ], [ 14.570618, 51.001657 ], [ 14.306946, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.966614, 50.483726 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.968889 ], [ 12.521667, 49.546598 ], [ 13.032532, 49.307217 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.065836 ], [ 11.955872, 54.196190 ], [ 12.518921, 54.470038 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Czech Republic", "sov_a3": "CZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Czech Republic", "adm0_a3": "CZE", "geou_dif": 0, "geounit": "Czech Republic", "gu_a3": "CZE", "su_dif": 0, "subunit": "Czech Republic", "su_a3": "CZE", "brk_diff": 0, "name": "Czech Rep.", "name_long": "Czech Republic", "brk_a3": "CZE", "brk_name": "Czech Rep.", "abbrev": "Cz. Rep.", "postal": "CZ", "formal_en": "Czech Republic", "name_sort": "Czech Republic", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 10211904, "gdp_md_est": 265200, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "CZ", "iso_a3": "CZE", "iso_n3": "203", "un_a3": "203", "wb_a2": "CZ", "wb_a3": "CZE", "woe_id": -99, "adm0_a3_is": "CZE", "adm0_a3_us": "CZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 14, "abbrev_len": 8, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.306946, 51.117317 ], [ 14.570618, 51.001657 ], [ 15.018311, 51.106971 ], [ 15.490723, 50.785102 ], [ 16.237793, 50.698197 ], [ 16.177368, 50.422519 ], [ 16.718445, 50.215580 ], [ 16.869507, 50.473239 ], [ 17.553406, 50.362985 ], [ 17.649536, 50.048321 ], [ 18.393860, 49.988318 ], [ 18.852539, 49.496675 ], [ 18.555908, 49.494891 ], [ 18.399353, 49.314380 ], [ 18.171387, 49.271389 ], [ 18.105469, 49.043269 ], [ 17.913208, 48.996438 ], [ 17.891235, 48.922499 ], [ 17.885742, 48.902643 ], [ 17.545166, 48.799627 ], [ 17.102966, 48.817716 ], [ 17.078247, 48.777913 ], [ 16.515198, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.432800, 48.777913 ], [ 15.919189, 48.777913 ], [ 15.551147, 48.922499 ], [ 15.254517, 49.039668 ], [ 14.900208, 48.963991 ], [ 14.842529, 48.922499 ], [ 14.644775, 48.777913 ], [ 13.826294, 48.777913 ], [ 13.595581, 48.877361 ], [ 13.537903, 48.922499 ], [ 13.032532, 49.307217 ], [ 12.521667, 49.546598 ], [ 12.414551, 49.968889 ], [ 12.238770, 50.266521 ], [ 12.966614, 50.483726 ], [ 13.337402, 50.732978 ], [ 14.057007, 50.927276 ], [ 14.306946, 51.117317 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Germany", "sov_a3": "DEU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Germany", "adm0_a3": "DEU", "geou_dif": 0, "geounit": "Germany", "gu_a3": "DEU", "su_dif": 0, "subunit": "Germany", "su_a3": "DEU", "brk_diff": 0, "name": "Germany", "name_long": "Germany", "brk_a3": "DEU", "brk_name": "Germany", "abbrev": "Ger.", "postal": "D", "formal_en": "Federal Republic of Germany", "name_sort": "Germany", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 82329758, "gdp_md_est": 2918000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "1. Developed region: G7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DE", "iso_a3": "DEU", "iso_n3": "276", "un_a3": "276", "wb_a2": "DE", "wb_a3": "DEU", "woe_id": -99, "adm0_a3_is": "DEU", "adm0_a3_us": "DEU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.518921, 54.470038 ], [ 13.647766, 54.075506 ], [ 14.120178, 53.756831 ], [ 14.353638, 53.248782 ], [ 14.073486, 52.981723 ], [ 14.438782, 52.624727 ], [ 14.685974, 52.089633 ], [ 14.606323, 51.745738 ], [ 15.018311, 51.106971 ], [ 14.570618, 51.001657 ], [ 14.306946, 51.117317 ], [ 14.057007, 50.927276 ], [ 13.337402, 50.732978 ], [ 12.966614, 50.483726 ], [ 12.238770, 50.266521 ], [ 12.414551, 49.968889 ], [ 12.521667, 49.546598 ], [ 13.032532, 49.307217 ], [ 13.537903, 48.922499 ], [ 13.595581, 48.877361 ], [ 13.518677, 48.777913 ], [ 11.030273, 48.777913 ], [ 11.030273, 54.025520 ], [ 11.250000, 54.065836 ], [ 11.955872, 54.196190 ], [ 12.518921, 54.470038 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.127814 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Austria", "sov_a3": "AUT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Austria", "adm0_a3": "AUT", "geou_dif": 0, "geounit": "Austria", "gu_a3": "AUT", "su_dif": 0, "subunit": "Austria", "su_a3": "AUT", "brk_diff": 0, "name": "Austria", "name_long": "Austria", "brk_a3": "AUT", "brk_name": "Austria", "abbrev": "Aust.", "postal": "A", "formal_en": "Republic of Austria", "name_sort": "Austria", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 4, "pop_est": 8210281, "gdp_md_est": 329500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "AT", "iso_a3": "AUT", "iso_n3": "040", "un_a3": "040", "wb_a2": "AT", "wb_a3": "AUT", "woe_id": -99, "adm0_a3_is": "AUT", "adm0_a3_us": "AUT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Western Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 13.595581, 48.877361 ], [ 13.826294, 48.777913 ], [ 13.518677, 48.777913 ], [ 13.595581, 48.877361 ] ] ], [ [ [ 14.644775, 48.777913 ], [ 14.842529, 48.922499 ], [ 14.900208, 48.963991 ], [ 15.254517, 49.039668 ], [ 15.551147, 48.922499 ], [ 15.919189, 48.777913 ], [ 14.644775, 48.777913 ] ] ], [ [ [ 16.432800, 48.777913 ], [ 16.498718, 48.785152 ], [ 16.515198, 48.777913 ], [ 16.432800, 48.777913 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.319458, 49.571540 ], [ 19.824829, 49.217597 ], [ 20.415344, 49.430626 ], [ 20.887756, 49.328702 ], [ 21.607361, 49.469909 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.032466 ], [ 22.384644, 48.922499 ], [ 22.280273, 48.824949 ], [ 22.258301, 48.777913 ], [ 17.078247, 48.777913 ], [ 17.102966, 48.817716 ], [ 17.545166, 48.799627 ], [ 17.885742, 48.902643 ], [ 17.891235, 48.922499 ], [ 17.913208, 48.996438 ], [ 18.105469, 49.043269 ], [ 18.171387, 49.271389 ], [ 18.399353, 49.314380 ], [ 18.555908, 49.494891 ], [ 18.852539, 49.496675 ], [ 18.910217, 49.435985 ], [ 19.319458, 49.571540 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.189845 ], [ 22.315979, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.719727, 54.870285 ], [ 22.719727, 54.757916 ], [ 22.651062, 54.583205 ], [ 22.719727, 54.362958 ], [ 22.719727, 54.327736 ], [ 22.500000, 54.326135 ], [ 20.893250, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.888000, 54.865544 ], [ 21.269531, 55.189845 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 54.757916 ], [ 22.719727, 54.362958 ], [ 22.651062, 54.583205 ], [ 22.719727, 54.757916 ] ] ], [ [ [ 22.719727, 54.870285 ], [ 22.500000, 54.949231 ], [ 22.315979, 55.015426 ], [ 21.269531, 55.189845 ], [ 21.121216, 55.776573 ], [ 21.088257, 55.899956 ], [ 22.719727, 55.899956 ], [ 22.719727, 54.870285 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.622070, 54.851315 ], [ 18.621826, 54.683359 ], [ 18.695984, 54.438103 ], [ 19.660034, 54.425322 ], [ 20.893250, 54.313319 ], [ 22.500000, 54.326135 ], [ 22.719727, 54.327736 ], [ 22.719727, 49.662295 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.127814 ], [ 22.719727, 49.043269 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 21.607361, 49.469909 ], [ 20.887756, 49.328702 ], [ 20.415344, 49.430626 ], [ 19.824829, 49.217597 ], [ 19.319458, 49.571540 ], [ 18.910217, 49.435985 ], [ 18.393860, 49.988318 ], [ 17.649536, 50.048321 ], [ 17.553406, 50.362985 ], [ 16.869507, 50.473239 ], [ 16.718445, 50.215580 ], [ 16.177368, 50.422519 ], [ 16.237793, 50.698197 ], [ 15.490723, 50.785102 ], [ 15.018311, 51.106971 ], [ 14.606323, 51.745738 ], [ 14.685974, 52.089633 ], [ 14.438782, 52.624727 ], [ 14.073486, 52.981723 ], [ 14.353638, 53.248782 ], [ 14.120178, 53.756831 ], [ 14.804077, 54.051327 ], [ 16.364136, 54.513110 ], [ 17.622070, 54.851315 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.719727, 49.043269 ], [ 22.719727, 48.777913 ], [ 22.258301, 48.777913 ], [ 22.280273, 48.824949 ], [ 22.384644, 48.922499 ], [ 22.500000, 49.032466 ], [ 22.557678, 49.086459 ], [ 22.719727, 49.043269 ] ] ], [ [ [ 22.719727, 49.127814 ], [ 22.519226, 49.477048 ], [ 22.719727, 49.662295 ], [ 22.719727, 49.127814 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.269531, 55.189845 ], [ 22.315979, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.719727, 54.870285 ], [ 22.719727, 54.757916 ], [ 22.651062, 54.583205 ], [ 22.719727, 54.362958 ], [ 22.719727, 54.327736 ], [ 22.500000, 54.326135 ], [ 20.893250, 54.313319 ], [ 19.660034, 54.425322 ], [ 19.888000, 54.865544 ], [ 21.269531, 55.189845 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.954258 ], [ 16.828308, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.104215 ], [ 14.666748, 56.200593 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.804565, 55.776573 ], [ 12.626038, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.250000, 58.449170 ], [ 11.030273, 58.850700 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.631531, 61.293988 ], [ 12.238770, 61.606396 ], [ 12.106934, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.106934, 61.710706 ], [ 12.238770, 61.606396 ], [ 12.631531, 61.293988 ], [ 12.299194, 60.118251 ], [ 11.466980, 59.432506 ], [ 11.250000, 59.149178 ], [ 11.030273, 58.860644 ], [ 11.030273, 61.710706 ], [ 12.106934, 61.710706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Denmark", "sov_a3": "DN1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Denmark", "adm0_a3": "DNK", "geou_dif": 0, "geounit": "Denmark", "gu_a3": "DNK", "su_dif": 0, "subunit": "Denmark", "su_a3": "DNK", "brk_diff": 0, "name": "Denmark", "name_long": "Denmark", "brk_a3": "DNK", "brk_name": "Denmark", "abbrev": "Den.", "postal": "DK", "formal_en": "Kingdom of Denmark", "name_sort": "Denmark", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 5500510, "gdp_md_est": 203600, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "DK", "iso_a3": "DNK", "iso_n3": "208", "un_a3": "208", "wb_a2": "DK", "wb_a3": "DNK", "woe_id": -99, "adm0_a3_is": "DNK", "adm0_a3_us": "DNK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.370605, 56.111873 ], [ 12.584839, 55.776573 ], [ 12.661743, 55.652798 ], [ 11.030273, 55.652798 ], [ 11.030273, 55.808999 ], [ 11.250000, 55.858358 ], [ 12.370605, 56.111873 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.524719, 57.754007 ], [ 22.719727, 57.571834 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.327198 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.030622 ], [ 21.091003, 56.784332 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.306213, 61.710706 ], [ 17.254028, 61.606396 ], [ 17.119446, 61.341444 ], [ 17.830811, 60.636836 ], [ 18.786621, 60.081284 ], [ 17.869263, 58.954258 ], [ 16.828308, 58.719747 ], [ 16.446533, 57.040730 ], [ 15.880737, 56.104215 ], [ 14.666748, 56.200593 ], [ 14.361877, 55.776573 ], [ 14.273987, 55.652798 ], [ 12.845764, 55.652798 ], [ 12.804565, 55.776573 ], [ 12.626038, 56.307396 ], [ 11.788330, 57.441993 ], [ 11.250000, 58.449170 ], [ 11.030273, 58.850700 ], [ 11.030273, 58.860644 ], [ 11.250000, 59.149178 ], [ 11.466980, 59.432506 ], [ 12.299194, 60.118251 ], [ 12.631531, 61.293988 ], [ 12.238770, 61.606396 ], [ 12.106934, 61.710706 ], [ 17.306213, 61.710706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 61.710706 ], [ 22.719727, 59.989371 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 21.321716, 60.720228 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.541443, 61.710706 ], [ 22.719727, 61.710706 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.524719, 57.754007 ], [ 22.719727, 57.571834 ], [ 22.719727, 56.318060 ], [ 22.500000, 56.327198 ], [ 22.200623, 56.337856 ], [ 21.055298, 56.030622 ], [ 21.091003, 56.784332 ], [ 21.582642, 57.412420 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.200623, 56.337856 ], [ 22.500000, 56.327198 ], [ 22.719727, 56.318060 ], [ 22.719727, 55.652798 ], [ 21.151428, 55.652798 ], [ 21.121216, 55.776573 ], [ 21.055298, 56.030622 ], [ 22.200623, 56.337856 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 66.600676 ], [ 22.719727, 65.812906 ], [ 22.500000, 65.775744 ], [ 22.184143, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.778137, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.254028, 61.606396 ], [ 17.201843, 61.501734 ], [ 12.370605, 61.501734 ], [ 12.238770, 61.606396 ], [ 11.991577, 61.800390 ], [ 11.931152, 63.128297 ], [ 12.579346, 64.066194 ], [ 13.570862, 64.049373 ], [ 13.919678, 64.445557 ], [ 13.554382, 64.786998 ], [ 15.108948, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.471497, 66.600676 ], [ 22.719727, 66.600676 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.471497, 66.600676 ], [ 15.391846, 66.513260 ], [ 15.108948, 66.193792 ], [ 13.554382, 64.786998 ], [ 13.919678, 64.445557 ], [ 13.570862, 64.049373 ], [ 12.579346, 64.066194 ], [ 11.931152, 63.128297 ], [ 11.991577, 61.800390 ], [ 12.238770, 61.606396 ], [ 12.370605, 61.501734 ], [ 11.030273, 61.501734 ], [ 11.030273, 64.875772 ], [ 11.250000, 65.044333 ], [ 12.359619, 65.879215 ], [ 13.128662, 66.513260 ], [ 13.235779, 66.600676 ], [ 15.471497, 66.600676 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 66.600676 ], [ 22.719727, 65.812906 ], [ 22.500000, 65.775744 ], [ 22.184143, 65.723852 ], [ 21.214600, 65.025785 ], [ 21.368408, 64.413549 ], [ 19.778137, 63.609658 ], [ 17.847290, 62.749696 ], [ 17.254028, 61.606396 ], [ 17.201843, 61.501734 ], [ 12.370605, 61.501734 ], [ 12.238770, 61.606396 ], [ 11.991577, 61.800390 ], [ 11.931152, 63.128297 ], [ 12.579346, 64.066194 ], [ 13.570862, 64.049373 ], [ 13.919678, 64.445557 ], [ 13.554382, 64.786998 ], [ 15.108948, 66.193792 ], [ 15.391846, 66.513260 ], [ 15.471497, 66.600676 ], [ 22.719727, 66.600676 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.719727, 63.950643 ], [ 22.719727, 61.501734 ], [ 21.497498, 61.501734 ], [ 21.522217, 61.606396 ], [ 21.544189, 61.705499 ], [ 21.058044, 62.607244 ], [ 21.535950, 63.190302 ], [ 22.442322, 63.817652 ], [ 22.500000, 63.845512 ], [ 22.719727, 63.950643 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 17, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.646057, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.719727, 68.295811 ], [ 22.719727, 66.425537 ], [ 15.312195, 66.425537 ], [ 15.391846, 66.513260 ], [ 16.108704, 67.302797 ], [ 16.767883, 68.013742 ], [ 17.729187, 68.010656 ], [ 17.992859, 68.567410 ], [ 19.879761, 68.407268 ], [ 20.025330, 69.065619 ], [ 20.646057, 69.105818 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.379395, 70.254813 ], [ 22.500000, 70.218593 ], [ 22.719727, 70.212085 ], [ 22.719727, 68.855592 ], [ 22.500000, 68.846674 ], [ 22.357178, 68.841718 ], [ 21.244812, 69.370638 ], [ 20.646057, 69.105818 ], [ 20.025330, 69.065619 ], [ 19.879761, 68.407268 ], [ 17.992859, 68.567410 ], [ 17.729187, 68.010656 ], [ 16.767883, 68.013742 ], [ 16.108704, 67.302797 ], [ 15.391846, 66.513260 ], [ 15.312195, 66.425537 ], [ 13.018799, 66.425537 ], [ 13.125916, 66.513260 ], [ 14.760132, 67.810282 ], [ 16.435547, 68.563395 ], [ 19.184875, 69.817839 ], [ 21.379395, 70.254813 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.646057, 69.105818 ], [ 21.978149, 68.616534 ], [ 22.500000, 68.391090 ], [ 22.719727, 68.295811 ], [ 22.719727, 66.425537 ], [ 15.312195, 66.425537 ], [ 15.391846, 66.513260 ], [ 16.108704, 67.302797 ], [ 16.767883, 68.013742 ], [ 17.729187, 68.010656 ], [ 17.992859, 68.567410 ], [ 19.879761, 68.407268 ], [ 20.025330, 69.065619 ], [ 20.646057, 69.105818 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.244812, 69.370638 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.846674 ], [ 22.719727, 68.855592 ], [ 22.719727, 68.295811 ], [ 22.500000, 68.391090 ], [ 21.978149, 68.616534 ], [ 20.646057, 69.105818 ], [ 21.244812, 69.370638 ] ] ] } } ] } ] } @@ -4851,12 +4819,12 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 18 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.032106 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.665344, -21.739091 ], [ 31.475830, -21.943046 ], [ 31.190186, -22.250971 ], [ 30.660095, -22.151796 ], [ 30.322266, -22.271306 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.935242, -21.739091 ], [ 31.665344, -21.739091 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, -21.739091 ], [ 33.969727, -24.928785 ], [ 33.750000, -25.025884 ], [ 33.013916, -25.356437 ], [ 32.574463, -25.728158 ], [ 32.659607, -26.148042 ], [ 32.915039, -26.217055 ], [ 32.829895, -26.743158 ], [ 32.071838, -26.733346 ], [ 31.986694, -26.290953 ], [ 31.838379, -25.844393 ], [ 31.753235, -25.485431 ], [ 31.931763, -24.369615 ], [ 31.670837, -23.659619 ], [ 31.190186, -22.250971 ], [ 31.475830, -21.943046 ], [ 31.665344, -21.739091 ], [ 33.969727, -21.739091 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.935242, -21.739091 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 28.017883, -22.826820 ], [ 27.119751, -23.574057 ], [ 26.787415, -24.239451 ], [ 26.485291, -24.617057 ], [ 25.941467, -24.696934 ], [ 25.765686, -25.175117 ], [ 25.664062, -25.487910 ], [ 25.024109, -25.720735 ], [ 24.211121, -25.671236 ], [ 23.733215, -25.391179 ], [ 23.312988, -25.269536 ], [ 22.824097, -25.500306 ], [ 22.579651, -25.980268 ], [ 22.500000, -26.032106 ], [ 22.280273, -26.170229 ], [ 22.280273, -21.739091 ], [ 28.935242, -21.739091 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 30.322266, -22.271306 ], [ 30.660095, -22.151796 ], [ 31.190186, -22.250971 ], [ 31.670837, -23.659619 ], [ 31.931763, -24.369615 ], [ 31.753235, -25.485431 ], [ 31.838379, -25.844393 ], [ 31.333008, -25.661333 ], [ 31.044617, -25.730633 ], [ 30.948486, -26.022234 ], [ 30.676575, -26.399250 ], [ 30.684814, -26.743158 ], [ 31.283569, -27.286367 ], [ 31.868591, -27.178912 ], [ 32.071838, -26.733346 ], [ 32.829895, -26.743158 ], [ 32.579956, -27.469287 ], [ 32.461853, -28.301962 ], [ 32.203674, -28.753213 ], [ 31.324768, -29.401320 ], [ 30.901794, -29.909710 ], [ 30.621643, -30.422625 ], [ 30.055847, -31.139954 ], [ 29.165955, -31.952162 ], [ 28.959961, -32.138409 ], [ 22.280273, -32.138409 ], [ 22.280273, -26.170229 ], [ 22.500000, -26.032106 ], [ 22.579651, -25.980268 ], [ 22.824097, -25.500306 ], [ 23.312988, -25.269536 ], [ 23.733215, -25.391179 ], [ 24.211121, -25.671236 ], [ 25.024109, -25.720735 ], [ 25.664062, -25.487910 ], [ 25.765686, -25.175117 ], [ 25.941467, -24.696934 ], [ 26.485291, -24.617057 ], [ 26.787415, -24.239451 ], [ 27.119751, -23.574057 ], [ 28.017883, -22.826820 ], [ 29.432373, -22.090730 ] ], [ [ 28.542480, -28.647210 ], [ 28.075562, -28.851891 ], [ 27.531738, -29.243270 ], [ 26.998901, -29.876374 ], [ 27.748718, -30.645001 ], [ 28.108521, -30.545704 ], [ 28.289795, -30.225848 ], [ 28.847351, -30.069094 ], [ 29.017639, -29.742917 ], [ 29.325256, -29.257649 ], [ 28.979187, -28.955282 ], [ 28.542480, -28.647210 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Swaziland", "sov_a3": "SWZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Swaziland", "adm0_a3": "SWZ", "geou_dif": 0, "geounit": "Swaziland", "gu_a3": "SWZ", "su_dif": 0, "subunit": "Swaziland", "su_a3": "SWZ", "brk_diff": 0, "name": "Swaziland", "name_long": "Swaziland", "brk_a3": "SWZ", "brk_name": "Swaziland", "abbrev": "Swz.", "postal": "SW", "formal_en": "Kingdom of Swaziland", "name_sort": "Swaziland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 1123913, "gdp_md_est": 5702, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SZ", "iso_a3": "SWZ", "iso_n3": "748", "un_a3": "748", "wb_a2": "SZ", "wb_a3": "SWZ", "woe_id": -99, "adm0_a3_is": "SWZ", "adm0_a3_us": "SWZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.333008, -25.661333 ], [ 31.838379, -25.844393 ], [ 31.986694, -26.290953 ], [ 32.071838, -26.733346 ], [ 31.868591, -27.178912 ], [ 31.283569, -27.286367 ], [ 30.684814, -26.743158 ], [ 30.676575, -26.399250 ], [ 30.948486, -26.022234 ], [ 31.044617, -25.730633 ], [ 31.333008, -25.661333 ] ] ] } } @@ -4867,15 +4835,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 17 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.260559, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, -12.900166 ], [ 22.280273, -11.038255 ], [ 22.403870, -10.992424 ], [ 22.837830, -11.016689 ], [ 23.063049, -10.962764 ], [ 23.922729, -10.962764 ], [ 23.999634, -11.178402 ], [ 24.018860, -11.237674 ], [ 23.903503, -11.722167 ], [ 24.079285, -12.192388 ], [ 23.930969, -12.565287 ], [ 24.016113, -12.910875 ], [ 22.500000, -12.900166 ], [ 22.280273, -12.900166 ] ] ], [ [ [ 22.280273, -16.557227 ], [ 22.500000, -16.822945 ], [ 22.563171, -16.899172 ], [ 23.214111, -17.523583 ], [ 22.500000, -17.683278 ], [ 22.280273, -17.730375 ], [ 22.280273, -16.557227 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Namibia", "sov_a3": "NAM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Namibia", "adm0_a3": "NAM", "geou_dif": 0, "geounit": "Namibia", "gu_a3": "NAM", "su_dif": 0, "subunit": "Namibia", "su_a3": "NAM", "brk_diff": 0, "name": "Namibia", "name_long": "Namibia", "brk_a3": "NAM", "brk_name": "Namibia", "abbrev": "Nam.", "postal": "NA", "formal_en": "Republic of Namibia", "name_sort": "Namibia", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 7, "pop_est": 2108665, "gdp_md_est": 13250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "NA", "iso_a3": "NAM", "iso_n3": "516", "un_a3": "516", "wb_a2": "NA", "wb_a3": "NAM", "woe_id": -99, "adm0_a3_is": "NAM", "adm0_a3_us": "NAM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.032593, -17.295576 ], [ 24.683533, -17.353260 ], [ 25.076294, -17.578576 ], [ 25.084534, -17.662343 ], [ 24.521484, -17.887273 ], [ 24.216614, -17.889887 ], [ 23.579407, -18.281518 ], [ 23.197632, -17.868975 ], [ 22.500000, -18.028363 ], [ 22.280273, -18.077979 ], [ 22.280273, -17.730375 ], [ 22.500000, -17.683278 ], [ 23.214111, -17.523583 ], [ 24.032593, -17.295576 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.222656, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.900166 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.999634, -11.178402 ], [ 23.922729, -10.962764 ], [ 24.260559, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.473816, -10.962764 ], [ 28.449097, -11.178402 ], [ 28.372192, -11.794769 ], [ 28.641357, -11.972158 ], [ 29.341736, -12.361466 ], [ 29.616394, -12.178965 ], [ 29.698792, -13.255986 ], [ 28.935242, -13.247966 ], [ 28.523254, -12.699292 ], [ 28.155212, -12.272915 ], [ 27.388916, -12.133320 ], [ 27.163696, -11.609193 ], [ 26.553955, -11.923790 ], [ 25.751953, -11.784014 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.260559, -10.962764 ], [ 28.473816, -10.962764 ] ] ], [ [ [ 23.063049, -10.962764 ], [ 22.837830, -11.016689 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, -10.962764 ], [ 23.063049, -10.962764 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.274841, -10.962764 ], [ 33.222656, -11.178402 ], [ 33.115540, -11.606503 ], [ 33.305054, -12.436577 ], [ 32.991943, -12.785018 ], [ 32.687073, -13.712704 ], [ 33.214417, -13.971385 ], [ 30.179443, -14.796128 ], [ 30.275574, -15.506619 ], [ 29.517517, -15.644197 ], [ 28.946228, -16.043174 ], [ 28.825378, -16.388661 ], [ 28.468323, -16.467695 ], [ 27.597656, -17.290332 ], [ 27.045593, -17.936929 ], [ 26.707764, -17.960445 ], [ 26.380920, -17.845447 ], [ 25.263062, -17.735607 ], [ 25.084534, -17.662343 ], [ 25.076294, -17.578576 ], [ 24.683533, -17.353260 ], [ 24.032593, -17.295576 ], [ 23.214111, -17.523583 ], [ 22.563171, -16.899172 ], [ 22.500000, -16.822945 ], [ 22.280273, -16.557227 ], [ 22.280273, -12.900166 ], [ 22.500000, -12.900166 ], [ 24.016113, -12.910875 ], [ 23.930969, -12.565287 ], [ 24.079285, -12.192388 ], [ 23.903503, -11.722167 ], [ 24.018860, -11.237674 ], [ 23.999634, -11.178402 ], [ 23.922729, -10.962764 ], [ 24.260559, -10.962764 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.751953, -11.784014 ], [ 26.553955, -11.923790 ], [ 27.163696, -11.609193 ], [ 27.388916, -12.133320 ], [ 28.155212, -12.272915 ], [ 28.523254, -12.699292 ], [ 28.935242, -13.247966 ], [ 29.698792, -13.255986 ], [ 29.616394, -12.178965 ], [ 29.341736, -12.361466 ], [ 28.641357, -11.972158 ], [ 28.372192, -11.794769 ], [ 28.449097, -11.178402 ], [ 28.473816, -10.962764 ], [ 33.274841, -10.962764 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zimbabwe", "sov_a3": "ZWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zimbabwe", "adm0_a3": "ZWE", "geou_dif": 0, "geounit": "Zimbabwe", "gu_a3": "ZWE", "su_dif": 0, "subunit": "Zimbabwe", "su_a3": "ZWE", "brk_diff": 0, "name": "Zimbabwe", "name_long": "Zimbabwe", "brk_a3": "ZWE", "brk_name": "Zimbabwe", "abbrev": "Zimb.", "postal": "ZW", "formal_en": "Republic of Zimbabwe", "name_sort": "Zimbabwe", "mapcolor7": 1, "mapcolor8": 5, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 12619600, "gdp_md_est": 9323, "pop_year": 0, "lastcensus": 2002, "gdp_year": 0, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ZW", "iso_a3": "ZWE", "iso_n3": "716", "un_a3": "716", "wb_a2": "ZW", "wb_a3": "ZWE", "woe_id": -99, "adm0_a3_is": "ZWE", "adm0_a3_us": "ZWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.275574, -15.506619 ], [ 30.338745, -15.882093 ], [ 31.173706, -15.860958 ], [ 31.635132, -16.072207 ], [ 31.852112, -16.320139 ], [ 32.327271, -16.391296 ], [ 32.846375, -16.712494 ], [ 32.849121, -17.978733 ], [ 32.654114, -18.672267 ], [ 32.612915, -19.419973 ], [ 32.772217, -19.715000 ], [ 32.659607, -20.303418 ], [ 32.508545, -20.396123 ], [ 32.244873, -21.115249 ], [ 31.475830, -21.943046 ], [ 31.286316, -22.146708 ], [ 29.962463, -22.146708 ], [ 29.838867, -22.103454 ], [ 29.432373, -22.090730 ], [ 29.223633, -21.943046 ], [ 28.795166, -21.639558 ], [ 28.020630, -21.486297 ], [ 27.726746, -20.851112 ], [ 27.723999, -20.499064 ], [ 27.295532, -20.390974 ], [ 26.163940, -19.292998 ], [ 25.850830, -18.713894 ], [ 25.650330, -18.536909 ], [ 25.263062, -17.735607 ], [ 26.380920, -17.845447 ], [ 26.707764, -17.960445 ], [ 27.045593, -17.936929 ], [ 27.597656, -17.290332 ], [ 28.468323, -16.467695 ], [ 28.825378, -16.388661 ], [ 28.946228, -16.043174 ], [ 29.517517, -15.644197 ], [ 30.275574, -15.506619 ] ] ] } } , @@ -4883,28 +4849,30 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mozambique", "sov_a3": "MOZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mozambique", "adm0_a3": "MOZ", "geou_dif": 0, "geounit": "Mozambique", "gu_a3": "MOZ", "su_dif": 0, "subunit": "Mozambique", "su_a3": "MOZ", "brk_diff": 0, "name": "Mozambique", "name_long": "Mozambique", "brk_a3": "MOZ", "brk_name": "Mozambique", "abbrev": "Moz.", "postal": "MZ", "formal_en": "Republic of Mozambique", "name_sort": "Mozambique", "mapcolor7": 4, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 4, "pop_est": 21669278, "gdp_md_est": 18940, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MZ", "iso_a3": "MOZ", "iso_n3": "508", "un_a3": "508", "wb_a2": "MZ", "wb_a3": "MOZ", "woe_id": -99, "adm0_a3_is": "MOZ", "adm0_a3_us": "MOZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.214417, -13.971385 ], [ 33.750000, -14.418720 ], [ 33.788452, -14.450639 ], [ 33.969727, -14.392118 ], [ 33.969727, -22.146708 ], [ 31.286316, -22.146708 ], [ 31.475830, -21.943046 ], [ 32.244873, -21.115249 ], [ 32.508545, -20.396123 ], [ 32.659607, -20.303418 ], [ 32.772217, -19.715000 ], [ 32.612915, -19.419973 ], [ 32.654114, -18.672267 ], [ 32.849121, -17.978733 ], [ 32.846375, -16.712494 ], [ 32.327271, -16.391296 ], [ 31.852112, -16.320139 ], [ 31.635132, -16.072207 ], [ 31.173706, -15.860958 ], [ 30.338745, -15.882093 ], [ 30.275574, -15.506619 ], [ 30.179443, -14.796128 ], [ 33.214417, -13.971385 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Botswana", "sov_a3": "BWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Botswana", "adm0_a3": "BWA", "geou_dif": 0, "geounit": "Botswana", "gu_a3": "BWA", "su_dif": 0, "subunit": "Botswana", "su_a3": "BWA", "brk_diff": 0, "name": "Botswana", "name_long": "Botswana", "brk_a3": "BWA", "brk_name": "Botswana", "abbrev": "Bwa.", "postal": "BW", "formal_en": "Republic of Botswana", "name_sort": "Botswana", "mapcolor7": 6, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 1990876, "gdp_md_est": 27060, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BW", "iso_a3": "BWA", "iso_n3": "072", "un_a3": "072", "wb_a2": "BW", "wb_a3": "BWA", "woe_id": -99, "adm0_a3_is": "BWA", "adm0_a3_us": "BWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.084534, -17.662343 ], [ 25.263062, -17.735607 ], [ 25.650330, -18.536909 ], [ 25.850830, -18.713894 ], [ 26.163940, -19.292998 ], [ 27.295532, -20.390974 ], [ 27.723999, -20.499064 ], [ 27.726746, -20.851112 ], [ 28.020630, -21.486297 ], [ 28.795166, -21.639558 ], [ 29.223633, -21.943046 ], [ 29.432373, -22.090730 ], [ 29.325256, -22.146708 ], [ 22.280273, -22.146708 ], [ 22.280273, -18.077979 ], [ 22.500000, -18.028363 ], [ 23.197632, -17.868975 ], [ 23.579407, -18.281518 ], [ 24.216614, -17.889887 ], [ 24.521484, -17.887273 ], [ 25.084534, -17.662343 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "South Africa", "sov_a3": "ZAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Africa", "adm0_a3": "ZAF", "geou_dif": 0, "geounit": "South Africa", "gu_a3": "ZAF", "su_dif": 0, "subunit": "South Africa", "su_a3": "ZAF", "brk_diff": 0, "name": "South Africa", "name_long": "South Africa", "brk_a3": "ZAF", "brk_name": "South Africa", "abbrev": "S.Af.", "postal": "ZA", "formal_en": "Republic of South Africa", "name_sort": "South Africa", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 2, "pop_est": 49052489, "gdp_md_est": 491000, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ZA", "iso_a3": "ZAF", "iso_n3": "710", "un_a3": "710", "wb_a2": "ZA", "wb_a3": "ZAF", "woe_id": -99, "adm0_a3_is": "ZAF", "adm0_a3_us": "ZAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Southern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.432373, -22.090730 ], [ 29.838867, -22.103454 ], [ 29.962463, -22.146708 ], [ 29.325256, -22.146708 ], [ 29.432373, -22.090730 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 16 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.849854, 0.219726 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.588928, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.292297, -1.620267 ], [ 29.253845, -2.215939 ], [ 29.116516, -2.292784 ], [ 29.025879, -2.838804 ], [ 29.275818, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.418640, -5.941168 ], [ 29.619141, -6.520001 ], [ 30.198669, -7.079088 ], [ 30.739746, -8.339236 ], [ 30.346985, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.164467 ], [ 28.674316, -9.606166 ], [ 28.495789, -10.790141 ], [ 28.449097, -11.178402 ], [ 28.421631, -11.393879 ], [ 25.463562, -11.393879 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.927708 ], [ 23.455811, -10.868373 ], [ 22.837830, -11.016689 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, 0.219726 ], [ 29.849854, 0.219726 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.892822, 0.109863 ], [ 33.903809, -0.950274 ], [ 33.750000, -0.955766 ], [ 31.865845, -1.027167 ], [ 30.769958, -1.013436 ], [ 30.418396, -1.134264 ], [ 29.822388, -1.444549 ], [ 29.580688, -1.340210 ], [ 29.588928, -0.587758 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.849854, 0.219726 ], [ 33.969727, 0.219726 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.219726 ], [ 33.969727, -0.994213 ], [ 33.903809, -0.950274 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.219726 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Angola", "sov_a3": "AGO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Angola", "adm0_a3": "AGO", "geou_dif": 0, "geounit": "Angola", "gu_a3": "AGO", "su_dif": 0, "subunit": "Angola", "su_a3": "AGO", "brk_diff": 0, "name": "Angola", "name_long": "Angola", "brk_a3": "AGO", "brk_name": "Angola", "abbrev": "Ang.", "postal": "AO", "formal_en": "People's Republic of Angola", "name_sort": "Angola", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 12799293, "gdp_md_est": 110300, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AO", "iso_a3": "AGO", "iso_n3": "024", "un_a3": "024", "wb_a2": "AO", "wb_a3": "AGO", "woe_id": -99, "adm0_a3_is": "AGO", "adm0_a3_us": "AGO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.455811, -10.868373 ], [ 23.911743, -10.927708 ], [ 23.999634, -11.178402 ], [ 24.018860, -11.237674 ], [ 23.980408, -11.393879 ], [ 22.280273, -11.393879 ], [ 22.280273, -11.038255 ], [ 22.403870, -10.992424 ], [ 22.500000, -10.997816 ], [ 22.837830, -11.016689 ], [ 23.455811, -10.868373 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.849854, 0.219726 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.588928, -0.587758 ], [ 29.580688, -1.340210 ], [ 29.292297, -1.620267 ], [ 29.253845, -2.215939 ], [ 29.116516, -2.292784 ], [ 29.025879, -2.838804 ], [ 29.275818, -3.294082 ], [ 29.338989, -4.499762 ], [ 29.520264, -5.419148 ], [ 29.418640, -5.941168 ], [ 29.619141, -6.520001 ], [ 30.198669, -7.079088 ], [ 30.739746, -8.339236 ], [ 30.346985, -8.238674 ], [ 29.003906, -8.407168 ], [ 28.734741, -8.526701 ], [ 28.449097, -9.164467 ], [ 28.674316, -9.606166 ], [ 28.495789, -10.790141 ], [ 28.449097, -11.178402 ], [ 28.421631, -11.393879 ], [ 25.463562, -11.393879 ], [ 25.416870, -11.331946 ], [ 24.782410, -11.237674 ], [ 24.315491, -11.261919 ], [ 24.299011, -11.178402 ], [ 24.257812, -10.951978 ], [ 23.911743, -10.927708 ], [ 23.455811, -10.868373 ], [ 22.837830, -11.016689 ], [ 22.500000, -10.997816 ], [ 22.403870, -10.992424 ], [ 22.280273, -11.038255 ], [ 22.280273, 0.219726 ], [ 29.849854, 0.219726 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Rwanda", "sov_a3": "RWA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Rwanda", "adm0_a3": "RWA", "geou_dif": 0, "geounit": "Rwanda", "gu_a3": "RWA", "su_dif": 0, "subunit": "Rwanda", "su_a3": "RWA", "brk_diff": 0, "name": "Rwanda", "name_long": "Rwanda", "brk_a3": "RWA", "brk_name": "Rwanda", "abbrev": "Rwa.", "postal": "RW", "formal_en": "Republic of Rwanda", "name_sort": "Rwanda", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 10, "pop_est": 10473282, "gdp_md_est": 9706, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "RW", "iso_a3": "RWA", "iso_n3": "646", "un_a3": "646", "wb_a2": "RW", "wb_a3": "RWA", "woe_id": -99, "adm0_a3_is": "RWA", "adm0_a3_us": "RWA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.418396, -1.134264 ], [ 30.816650, -1.699885 ], [ 30.758972, -2.287295 ], [ 30.470581, -2.413532 ], [ 29.937744, -2.347670 ], [ 29.632874, -2.918354 ], [ 29.025879, -2.838804 ], [ 29.116516, -2.292784 ], [ 29.253845, -2.215939 ], [ 29.292297, -1.620267 ], [ 29.580688, -1.340210 ], [ 29.822388, -1.444549 ], [ 30.418396, -1.134264 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Burundi", "sov_a3": "BDI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Burundi", "adm0_a3": "BDI", "geou_dif": 0, "geounit": "Burundi", "gu_a3": "BDI", "su_dif": 0, "subunit": "Burundi", "su_a3": "BDI", "brk_diff": 0, "name": "Burundi", "name_long": "Burundi", "brk_a3": "BDI", "brk_name": "Burundi", "abbrev": "Bur.", "postal": "BI", "formal_en": "Republic of Burundi", "name_sort": "Burundi", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8988091, "gdp_md_est": 3102, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BI", "iso_a3": "BDI", "iso_n3": "108", "un_a3": "108", "wb_a2": "BI", "wb_a3": "BDI", "woe_id": -99, "adm0_a3_is": "BDI", "adm0_a3_us": "BDI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.937744, -2.347670 ], [ 30.470581, -2.413532 ], [ 30.528259, -2.808628 ], [ 30.742493, -3.033555 ], [ 30.753479, -3.359889 ], [ 30.506287, -3.568248 ], [ 30.116272, -4.088932 ], [ 29.753723, -4.453212 ], [ 29.338989, -4.499762 ], [ 29.275818, -3.294082 ], [ 29.025879, -2.838804 ], [ 29.632874, -2.918354 ], [ 29.937744, -2.347670 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 33.969727, -0.994213 ], [ 33.969727, -9.733421 ], [ 33.750000, -9.432806 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.192688, -8.931200 ], [ 31.555481, -8.762938 ], [ 31.157227, -8.594600 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.520001 ], [ 29.418640, -5.941168 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.753723, -4.453212 ], [ 30.116272, -4.088932 ], [ 30.506287, -3.568248 ], [ 30.753479, -3.359889 ], [ 30.742493, -3.033555 ], [ 30.528259, -2.808628 ], [ 30.470581, -2.413532 ], [ 30.758972, -2.287295 ], [ 30.816650, -1.699885 ], [ 30.418396, -1.134264 ], [ 30.769958, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Zambia", "sov_a3": "ZMB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Zambia", "adm0_a3": "ZMB", "geou_dif": 0, "geounit": "Zambia", "gu_a3": "ZMB", "su_dif": 0, "subunit": "Zambia", "su_a3": "ZMB", "brk_diff": 0, "name": "Zambia", "name_long": "Zambia", "brk_a3": "ZMB", "brk_name": "Zambia", "abbrev": "Zambia", "postal": "ZM", "formal_en": "Republic of Zambia", "name_sort": "Zambia", "mapcolor7": 5, "mapcolor8": 8, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 11862740, "gdp_md_est": 17500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ZM", "iso_a3": "ZMB", "iso_n3": "894", "un_a3": "894", "wb_a2": "ZM", "wb_a3": "ZMB", "woe_id": -99, "adm0_a3_is": "ZMB", "adm0_a3_us": "ZMB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.911743, -10.927708 ], [ 24.257812, -10.951978 ], [ 24.299011, -11.178402 ], [ 24.315491, -11.261919 ], [ 24.782410, -11.237674 ], [ 25.416870, -11.331946 ], [ 25.463562, -11.393879 ], [ 23.980408, -11.393879 ], [ 24.018860, -11.237674 ], [ 23.999634, -11.178402 ], [ 23.911743, -10.927708 ] ] ], [ [ [ 28.421631, -11.393879 ], [ 28.449097, -11.178402 ], [ 28.495789, -10.790141 ], [ 28.674316, -9.606166 ], [ 28.449097, -9.164467 ], [ 28.734741, -8.526701 ], [ 29.003906, -8.407168 ], [ 30.346985, -8.238674 ], [ 30.739746, -8.339236 ], [ 31.157227, -8.594600 ], [ 31.555481, -8.762938 ], [ 32.192688, -8.931200 ], [ 32.758484, -9.229538 ], [ 33.230896, -9.676569 ], [ 33.486328, -10.525619 ], [ 33.316040, -10.795537 ], [ 33.222656, -11.178402 ], [ 33.167725, -11.393879 ], [ 28.421631, -11.393879 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "United Republic of Tanzania", "sov_a3": "TZA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Republic of Tanzania", "adm0_a3": "TZA", "geou_dif": 0, "geounit": "Tanzania", "gu_a3": "TZA", "su_dif": 0, "subunit": "Tanzania", "su_a3": "TZA", "brk_diff": 0, "name": "Tanzania", "name_long": "Tanzania", "brk_a3": "TZA", "brk_name": "Tanzania", "abbrev": "Tanz.", "postal": "TZ", "formal_en": "United Republic of Tanzania", "name_sort": "Tanzania", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 41048532, "gdp_md_est": 54250, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TZ", "iso_a3": "TZA", "iso_n3": "834", "un_a3": "834", "wb_a2": "TZ", "wb_a3": "TZA", "woe_id": -99, "adm0_a3_is": "TZA", "adm0_a3_us": "TZA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.903809, -0.950274 ], [ 33.969727, -0.994213 ], [ 33.969727, -9.733421 ], [ 33.750000, -9.432806 ], [ 33.739014, -9.416548 ], [ 32.758484, -9.229538 ], [ 32.192688, -8.931200 ], [ 31.555481, -8.762938 ], [ 31.157227, -8.594600 ], [ 30.739746, -8.339236 ], [ 30.198669, -7.079088 ], [ 29.619141, -6.520001 ], [ 29.418640, -5.941168 ], [ 29.520264, -5.419148 ], [ 29.338989, -4.499762 ], [ 29.753723, -4.453212 ], [ 30.116272, -4.088932 ], [ 30.506287, -3.568248 ], [ 30.753479, -3.359889 ], [ 30.742493, -3.033555 ], [ 30.528259, -2.808628 ], [ 30.470581, -2.413532 ], [ 30.758972, -2.287295 ], [ 30.816650, -1.699885 ], [ 30.418396, -1.134264 ], [ 30.769958, -1.013436 ], [ 31.865845, -1.027167 ], [ 33.750000, -0.955766 ], [ 33.903809, -0.950274 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Malawi", "sov_a3": "MWI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malawi", "adm0_a3": "MWI", "geou_dif": 0, "geounit": "Malawi", "gu_a3": "MWI", "su_dif": 0, "subunit": "Malawi", "su_a3": "MWI", "brk_diff": 0, "name": "Malawi", "name_long": "Malawi", "brk_a3": "MWI", "brk_name": "Malawi", "abbrev": "Mal.", "postal": "MW", "formal_en": "Republic of Malawi", "name_sort": "Malawi", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 14268711, "gdp_md_est": 11810, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MW", "iso_a3": "MWI", "iso_n3": "454", "un_a3": "454", "wb_a2": "MW", "wb_a3": "MWI", "woe_id": -99, "adm0_a3_is": "MWI", "adm0_a3_us": "MWI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.758484, -9.229538 ], [ 33.739014, -9.416548 ], [ 33.750000, -9.432806 ], [ 33.939514, -9.692813 ], [ 33.969727, -9.733421 ], [ 33.969727, -11.393879 ], [ 33.167725, -11.393879 ], [ 33.222656, -11.178402 ], [ 33.316040, -10.795537 ], [ 33.486328, -10.525619 ], [ 33.230896, -9.676569 ], [ 32.758484, -9.229538 ] ] ] } } ] } ] } @@ -4913,19 +4881,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.393879 ], [ 22.876282, 11.385802 ], [ 22.868042, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.500000, 11.043647 ], [ 22.280273, 10.984335 ], [ 22.280273, 11.393879 ], [ 22.865295, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.096313, 11.393879 ], [ 33.132019, 11.178402 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.969727, 9.074976 ], [ 33.969727, 8.673348 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.784472 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.223161 ], [ 33.750000, 4.058796 ], [ 33.390198, 3.790262 ], [ 32.687073, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.429871, 4.286158 ], [ 27.979431, 4.409398 ], [ 27.375183, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.946631 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.978228 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.568176, 8.230519 ], [ 23.887024, 8.619041 ], [ 24.194641, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.809210 ], [ 25.070801, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.963440, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.833862, 9.603458 ], [ 27.971191, 9.397581 ], [ 28.965454, 9.397581 ], [ 29.001160, 9.603458 ], [ 29.514771, 9.792971 ], [ 29.619141, 10.085150 ], [ 29.995422, 10.290599 ], [ 30.838623, 9.706350 ], [ 31.352234, 9.809210 ], [ 31.849365, 10.531020 ], [ 32.401428, 11.081385 ], [ 32.387695, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.096313, 11.393879 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.387695, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.868042, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.614290 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.132019, 11.178402 ], [ 33.096313, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.977905, 10.714587 ], [ 23.554688, 10.090558 ], [ 23.557434, 9.681984 ], [ 23.395386, 9.264779 ], [ 23.458557, 8.955619 ], [ 23.804626, 8.665203 ], [ 24.568176, 8.230519 ], [ 25.114746, 7.825289 ], [ 25.122986, 7.501366 ], [ 25.795898, 6.978228 ], [ 26.213379, 6.547289 ], [ 26.466064, 5.946631 ], [ 27.213135, 5.550381 ], [ 27.375183, 5.233187 ], [ 27.042847, 5.126508 ], [ 26.402893, 5.151128 ], [ 25.650330, 5.255068 ], [ 25.279541, 5.170276 ], [ 25.128479, 4.926779 ], [ 24.804382, 4.896677 ], [ 24.411621, 5.110094 ], [ 23.296509, 4.609278 ], [ 22.840576, 4.710566 ], [ 22.703247, 4.633917 ], [ 22.500000, 4.223161 ], [ 22.403870, 4.028659 ], [ 22.280273, 4.061536 ], [ 22.280273, 10.984335 ], [ 22.500000, 11.043647 ], [ 22.865295, 11.143372 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.045140 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.614290 ], [ 33.969727, 9.045140 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 32.354736, 11.393879 ], [ 32.387695, 11.178402 ], [ 32.401428, 11.081385 ], [ 31.849365, 10.531020 ], [ 31.352234, 9.809210 ], [ 30.838623, 9.706350 ], [ 29.995422, 10.290599 ], [ 29.619141, 10.085150 ], [ 29.514771, 9.792971 ], [ 29.001160, 9.603458 ], [ 28.965454, 9.397581 ], [ 27.971191, 9.397581 ], [ 27.833862, 9.603458 ], [ 27.111511, 9.638661 ], [ 26.751709, 9.468027 ], [ 26.477051, 9.552000 ], [ 25.963440, 10.136524 ], [ 25.790405, 10.412183 ], [ 25.070801, 10.274384 ], [ 24.796143, 9.809210 ], [ 24.537964, 8.917634 ], [ 24.194641, 8.727648 ], [ 23.887024, 8.619041 ], [ 23.804626, 8.665203 ], [ 23.458557, 8.955619 ], [ 23.395386, 9.264779 ], [ 23.557434, 9.681984 ], [ 23.554688, 10.090558 ], [ 22.977905, 10.714587 ], [ 22.865295, 11.143372 ], [ 22.868042, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.865295, 11.393879 ], [ 32.354736, 11.393879 ] ] ], [ [ [ 33.969727, 11.393879 ], [ 33.969727, 9.614290 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.722534, 10.325728 ], [ 33.206177, 10.719984 ], [ 33.132019, 11.178402 ], [ 33.096313, 11.393879 ], [ 33.969727, 11.393879 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.650330, 5.255068 ], [ 26.402893, 5.151128 ], [ 27.042847, 5.126508 ], [ 27.375183, 5.233187 ], [ 27.979431, 4.409398 ], [ 28.429871, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.954224, 4.173855 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.848129 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.811401, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.061536 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.110094 ], [ 24.804382, 4.896677 ], [ 25.128479, 4.926779 ], [ 25.279541, 5.170276 ], [ 25.650330, 5.255068 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.096313, 11.393879 ], [ 33.132019, 11.178402 ], [ 33.206177, 10.719984 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.969727, 9.074976 ], [ 33.969727, 8.673348 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.294067, 8.355540 ], [ 32.953491, 7.784472 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 33.969727, 7.327054 ], [ 33.969727, 4.223161 ], [ 33.750000, 4.058796 ], [ 33.390198, 3.790262 ], [ 32.687073, 3.793003 ], [ 31.882324, 3.557283 ], [ 31.245117, 3.782041 ], [ 30.833130, 3.507938 ], [ 29.954224, 4.173855 ], [ 29.715271, 4.601065 ], [ 29.157715, 4.390229 ], [ 28.696289, 4.455951 ], [ 28.429871, 4.286158 ], [ 27.979431, 4.409398 ], [ 27.375183, 5.233187 ], [ 27.213135, 5.550381 ], [ 26.466064, 5.946631 ], [ 26.213379, 6.547289 ], [ 25.795898, 6.978228 ], [ 25.122986, 7.501366 ], [ 25.114746, 7.825289 ], [ 24.568176, 8.230519 ], [ 23.887024, 8.619041 ], [ 24.194641, 8.727648 ], [ 24.537964, 8.917634 ], [ 24.796143, 9.809210 ], [ 25.070801, 10.274384 ], [ 25.790405, 10.412183 ], [ 25.963440, 10.136524 ], [ 26.477051, 9.552000 ], [ 26.751709, 9.468027 ], [ 27.111511, 9.638661 ], [ 27.833862, 9.603458 ], [ 27.971191, 9.397581 ], [ 28.965454, 9.397581 ], [ 29.001160, 9.603458 ], [ 29.514771, 9.792971 ], [ 29.619141, 10.085150 ], [ 29.995422, 10.290599 ], [ 30.838623, 9.706350 ], [ 31.352234, 9.809210 ], [ 31.849365, 10.531020 ], [ 32.401428, 11.081385 ], [ 32.387695, 11.178402 ], [ 32.354736, 11.393879 ], [ 33.096313, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 4.223161 ], [ 33.969727, 0.216979 ], [ 33.892822, 0.109863 ], [ 33.895569, -0.219726 ], [ 29.811401, -0.219726 ], [ 29.819641, -0.205993 ], [ 29.833374, 0.000000 ], [ 29.874573, 0.598744 ], [ 30.086060, 1.062866 ], [ 30.467834, 1.584576 ], [ 30.852356, 1.848129 ], [ 31.173706, 2.204961 ], [ 30.772705, 2.339438 ], [ 30.833130, 3.507938 ], [ 31.245117, 3.782041 ], [ 31.882324, 3.557283 ], [ 32.687073, 3.793003 ], [ 33.390198, 3.790262 ], [ 33.750000, 4.058796 ], [ 33.969727, 4.223161 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 0.216979 ], [ 33.969727, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.109863 ], [ 33.969727, 0.216979 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 8.673348 ], [ 33.969727, 7.327054 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 32.953491, 7.784472 ], [ 33.294067, 8.355540 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.969727, 8.673348 ] ] ], [ [ [ 33.969727, 9.045140 ], [ 33.961487, 9.584501 ], [ 33.969727, 9.614290 ], [ 33.969727, 9.045140 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Democratic Republic of the Congo", "sov_a3": "COD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Democratic Republic of the Congo", "adm0_a3": "COD", "geou_dif": 0, "geounit": "Democratic Republic of the Congo", "gu_a3": "COD", "su_dif": 0, "subunit": "Democratic Republic of the Congo", "su_a3": "COD", "brk_diff": 0, "name": "Dem. Rep. Congo", "name_long": "Democratic Republic of the Congo", "brk_a3": "COD", "brk_name": "Democratic Republic of the Congo", "abbrev": "D.R.C.", "postal": "DRC", "formal_en": "Democratic Republic of the Congo", "name_sort": "Congo, Dem. Rep.", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 7, "pop_est": 68692542, "gdp_md_est": 20640, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CD", "iso_a3": "COD", "iso_n3": "180", "un_a3": "180", "wb_a2": "ZR", "wb_a3": "ZAR", "woe_id": -99, "adm0_a3_is": "COD", "adm0_a3_us": "COD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 15, "long_len": 32, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.650330, 5.255068 ], [ 26.402893, 5.151128 ], [ 27.042847, 5.126508 ], [ 27.375183, 5.233187 ], [ 27.979431, 4.409398 ], [ 28.429871, 4.286158 ], [ 28.696289, 4.455951 ], [ 29.157715, 4.390229 ], [ 29.715271, 4.601065 ], [ 29.954224, 4.173855 ], [ 30.833130, 3.507938 ], [ 30.772705, 2.339438 ], [ 31.173706, 2.204961 ], [ 30.852356, 1.848129 ], [ 30.467834, 1.584576 ], [ 30.086060, 1.062866 ], [ 29.874573, 0.598744 ], [ 29.833374, 0.000000 ], [ 29.819641, -0.205993 ], [ 29.811401, -0.219726 ], [ 22.280273, -0.219726 ], [ 22.280273, 4.061536 ], [ 22.403870, 4.028659 ], [ 22.500000, 4.223161 ], [ 22.703247, 4.633917 ], [ 22.840576, 4.710566 ], [ 23.296509, 4.609278 ], [ 24.411621, 5.110094 ], [ 24.804382, 4.896677 ], [ 25.128479, 4.926779 ], [ 25.279541, 5.170276 ], [ 25.650330, 5.255068 ] ] ] } } ] } ] } , @@ -4935,13 +4903,13 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Chad", "sov_a3": "TCD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Chad", "adm0_a3": "TCD", "geou_dif": 0, "geounit": "Chad", "gu_a3": "TCD", "su_dif": 0, "subunit": "Chad", "su_a3": "TCD", "brk_diff": 0, "name": "Chad", "name_long": "Chad", "brk_a3": "TCD", "brk_name": "Chad", "abbrev": "Chad", "postal": "TD", "formal_en": "Republic of Chad", "name_sort": "Chad", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 8, "mapcolor13": 6, "pop_est": 10329208, "gdp_md_est": 15860, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TD", "iso_a3": "TCD", "iso_n3": "148", "un_a3": "148", "wb_a2": "TD", "wb_a3": "TCD", "woe_id": -99, "adm0_a3_is": "TCD", "adm0_a3_us": "TCD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.280273, 13.878079 ], [ 22.280273, 20.331750 ], [ 22.500000, 20.226120 ], [ 23.837585, 19.580493 ], [ 23.887024, 15.609811 ], [ 23.024597, 15.681221 ], [ 22.568665, 14.944785 ], [ 22.500000, 14.785505 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.107276 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.083301 ], [ 22.280273, 13.878079 ] ] ], [ [ [ 22.280273, 12.643018 ], [ 22.288513, 12.645698 ], [ 22.497253, 12.259496 ], [ 22.508240, 11.679135 ], [ 22.876282, 11.385802 ], [ 22.868042, 11.178402 ], [ 22.865295, 11.143372 ], [ 22.280273, 10.984335 ], [ 22.280273, 12.643018 ] ] ], [ [ [ 22.280273, 13.435038 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.346865 ], [ 22.280273, 13.435038 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.911987, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.984335 ], [ 22.865295, 11.143372 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.088074, 11.442339 ], [ 33.132019, 11.178402 ], [ 33.167725, 10.962764 ], [ 32.283325, 10.962764 ], [ 32.401428, 11.081385 ], [ 32.387695, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.074585, 11.972158 ], [ 32.676086, 12.025889 ], [ 32.744751, 12.248760 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 22.146708 ], [ 33.969727, 21.999082 ], [ 24.999390, 21.999082 ], [ 24.999390, 22.146708 ], [ 33.969727, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 21.999082 ], [ 33.969727, 10.962764 ], [ 33.167725, 10.962764 ], [ 33.132019, 11.178402 ], [ 33.088074, 11.442339 ], [ 33.206177, 12.178965 ], [ 32.744751, 12.248760 ], [ 32.676086, 12.025889 ], [ 32.074585, 11.972158 ], [ 32.313538, 11.681825 ], [ 32.387695, 11.178402 ], [ 32.401428, 11.081385 ], [ 32.283325, 10.962764 ], [ 22.911987, 10.962764 ], [ 22.865295, 11.143372 ], [ 22.868042, 11.178402 ], [ 22.876282, 11.385802 ], [ 22.508240, 11.679135 ], [ 22.497253, 12.259496 ], [ 22.288513, 12.645698 ], [ 22.280273, 12.643018 ], [ 22.280273, 13.346865 ], [ 22.296753, 13.373588 ], [ 22.280273, 13.435038 ], [ 22.280273, 13.878079 ], [ 22.500000, 14.083301 ], [ 22.510986, 14.093957 ], [ 22.500000, 14.107276 ], [ 22.302246, 14.325599 ], [ 22.500000, 14.785505 ], [ 22.568665, 14.944785 ], [ 23.024597, 15.681221 ], [ 23.887024, 15.609811 ], [ 23.837585, 19.580493 ], [ 23.851318, 19.999160 ], [ 24.999390, 20.004322 ], [ 24.999390, 21.999082 ], [ 33.969727, 21.999082 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Central African Republic", "sov_a3": "CAF", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Central African Republic", "adm0_a3": "CAF", "geou_dif": 0, "geounit": "Central African Republic", "gu_a3": "CAF", "su_dif": 0, "subunit": "Central African Republic", "su_a3": "CAF", "brk_diff": 0, "name": "Central African Rep.", "name_long": "Central African Republic", "brk_a3": "CAF", "brk_name": "Central African Rep.", "abbrev": "C.A.R.", "postal": "CF", "formal_en": "Central African Republic", "name_sort": "Central African Republic", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 9, "pop_est": 4511488, "gdp_md_est": 3198, "pop_year": -99, "lastcensus": 2003, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "CF", "iso_a3": "CAF", "iso_n3": "140", "un_a3": "140", "wb_a2": "CF", "wb_a3": "CAF", "woe_id": -99, "adm0_a3_is": "CAF", "adm0_a3_us": "CAF", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Middle Africa", "region_wb": "Sub-Saharan Africa", "name_len": 20, "long_len": 24, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.865295, 11.143372 ], [ 22.911987, 10.962764 ], [ 22.280273, 10.962764 ], [ 22.280273, 10.984335 ], [ 22.865295, 11.143372 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.744751, 12.248760 ], [ 33.206177, 12.178965 ], [ 33.088074, 11.442339 ], [ 33.132019, 11.178402 ], [ 33.167725, 10.962764 ], [ 32.283325, 10.962764 ], [ 32.401428, 11.081385 ], [ 32.387695, 11.178402 ], [ 32.313538, 11.681825 ], [ 32.074585, 11.972158 ], [ 32.676086, 12.025889 ], [ 32.744751, 12.248760 ] ] ] } } ] } ] } , @@ -4959,10 +4927,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.609863, 41.145570 ], [ 22.596130, 41.131090 ], [ 22.280273, 41.141433 ], [ 22.280273, 41.145570 ], [ 22.609863, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.700256, 35.704147 ], [ 24.246826, 35.368895 ], [ 25.024109, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.743713, 35.180543 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.919719 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.279259 ], [ 23.700256, 35.704147 ] ] ], [ [ [ 26.397400, 41.145570 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 23.713989, 40.686886 ], [ 24.408875, 40.124291 ], [ 23.900757, 39.962386 ], [ 23.343201, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.256473 ], [ 22.848816, 39.658571 ], [ 23.348694, 39.189691 ], [ 22.972412, 38.970087 ], [ 23.529968, 38.509490 ], [ 24.024353, 38.220920 ], [ 24.040833, 37.655558 ], [ 23.115234, 37.920368 ], [ 23.409119, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.520673 ], [ 22.280273, 41.141433 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 26.397400, 41.145570 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Libya", "sov_a3": "LBY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Libya", "adm0_a3": "LBY", "geou_dif": 0, "geounit": "Libya", "gu_a3": "LBY", "su_dif": 0, "subunit": "Libya", "su_a3": "LBY", "brk_diff": 0, "name": "Libya", "name_long": "Libya", "brk_a3": "LBY", "brk_name": "Libya", "abbrev": "Libya", "postal": "LY", "formal_en": "Libya", "name_sort": "Libya", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 11, "pop_est": 6310434, "gdp_md_est": 88830, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LY", "iso_a3": "LBY", "iso_n3": "434", "un_a3": "434", "wb_a2": "LY", "wb_a3": "LBY", "woe_id": -99, "adm0_a3_is": "LBY", "adm0_a3_us": "LBY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 32.731841 ], [ 22.500000, 32.699489 ], [ 22.895508, 32.639375 ], [ 23.236084, 32.191884 ], [ 23.609619, 32.187236 ], [ 23.928223, 32.017392 ], [ 24.474792, 31.952162 ], [ 24.922485, 31.898546 ], [ 25.021362, 31.765537 ], [ 22.280273, 31.765537 ], [ 22.280273, 32.731841 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.700256, 35.704147 ], [ 24.246826, 35.368895 ], [ 25.024109, 35.424868 ], [ 25.768433, 35.353216 ], [ 25.743713, 35.180543 ], [ 26.290283, 35.299435 ], [ 26.163940, 35.005253 ], [ 24.724731, 34.919719 ], [ 24.735718, 35.083956 ], [ 23.516235, 35.279259 ], [ 23.700256, 35.704147 ] ] ], [ [ [ 26.397400, 41.145570 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 23.713989, 40.686886 ], [ 24.408875, 40.124291 ], [ 23.900757, 39.962386 ], [ 23.343201, 39.960280 ], [ 22.813110, 40.476203 ], [ 22.626343, 40.256473 ], [ 22.848816, 39.658571 ], [ 23.348694, 39.189691 ], [ 22.972412, 38.970087 ], [ 23.529968, 38.509490 ], [ 24.024353, 38.220920 ], [ 24.040833, 37.655558 ], [ 23.115234, 37.920368 ], [ 23.409119, 37.409437 ], [ 22.774658, 37.304645 ], [ 23.153687, 36.423493 ], [ 22.500000, 36.410231 ], [ 22.489014, 36.410231 ], [ 22.280273, 36.520673 ], [ 22.280273, 41.141433 ], [ 22.596130, 41.131090 ], [ 22.609863, 41.145570 ], [ 26.397400, 41.145570 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Cyprus", "sov_a3": "CYP", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cyprus", "adm0_a3": "CYP", "geou_dif": 0, "geounit": "Cyprus", "gu_a3": "CYP", "su_dif": 0, "subunit": "Cyprus", "su_a3": "CYP", "brk_diff": 0, "name": "Cyprus", "name_long": "Cyprus", "brk_a3": "CYP", "brk_name": "Cyprus", "abbrev": "Cyp.", "postal": "CY", "formal_en": "Republic of Cyprus", "name_sort": "Cyprus", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 7, "pop_est": 531640, "gdp_md_est": 22700, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "CY", "iso_a3": "CYP", "iso_n3": "196", "un_a3": "196", "wb_a2": "CY", "wb_a3": "CYP", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.189697, 35.173808 ], [ 33.384705, 35.162582 ], [ 33.456116, 35.101934 ], [ 33.475342, 35.000754 ], [ 33.524780, 35.038992 ], [ 33.675842, 35.018750 ], [ 33.750000, 35.047987 ], [ 33.865356, 35.092945 ], [ 33.969727, 35.059229 ], [ 33.969727, 34.964748 ], [ 33.750000, 34.876918 ], [ 32.980957, 34.572168 ], [ 32.489319, 34.700977 ], [ 32.255859, 35.104181 ], [ 32.731018, 35.140125 ], [ 32.920532, 35.088451 ], [ 33.189697, 35.173808 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 35.471855 ], [ 33.969727, 35.288227 ], [ 33.901062, 35.245619 ], [ 33.969727, 35.059229 ], [ 33.865356, 35.092945 ], [ 33.750000, 35.047987 ], [ 33.675842, 35.018750 ], [ 33.524780, 35.038992 ], [ 33.475342, 35.000754 ], [ 33.456116, 35.101934 ], [ 33.384705, 35.162582 ], [ 33.189697, 35.173808 ], [ 32.920532, 35.088451 ], [ 32.731018, 35.140125 ], [ 32.802429, 35.144617 ], [ 32.947998, 35.386811 ], [ 33.667603, 35.373375 ], [ 33.969727, 35.471855 ] ] ] } } @@ -4973,15 +4941,17 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.327039 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.280273, 47.733782 ], [ 22.280273, 48.327039 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.755432, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.631836, 49.066668 ], [ 22.755432, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.535706, 49.066668 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.066668 ], [ 22.535706, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Hungary", "sov_a3": "HUN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Hungary", "adm0_a3": "HUN", "geou_dif": 0, "geounit": "Hungary", "gu_a3": "HUN", "su_dif": 0, "subunit": "Hungary", "su_a3": "HUN", "brk_diff": 0, "name": "Hungary", "name_long": "Hungary", "brk_a3": "HUN", "brk_name": "Hungary", "abbrev": "Hun.", "postal": "HU", "formal_en": "Republic of Hungary", "name_sort": "Hungary", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 5, "pop_est": 9905596, "gdp_md_est": 196600, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "HU", "iso_a3": "HUN", "iso_n3": "348", "un_a3": "348", "wb_a2": "HU", "wb_a3": "HUN", "woe_id": -99, "adm0_a3_is": "HUN", "adm0_a3_us": "HUN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 48.327039 ], [ 22.500000, 48.219183 ], [ 22.640076, 48.149596 ], [ 22.711487, 47.881355 ], [ 22.500000, 47.809465 ], [ 22.280273, 47.733782 ], [ 22.280273, 48.327039 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.458801, 44.701850 ], [ 22.500000, 44.680372 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.425934 ], [ 22.475281, 44.408278 ], [ 22.656555, 44.235360 ], [ 22.500000, 44.091531 ], [ 22.409363, 44.008620 ], [ 22.500000, 43.642038 ], [ 22.986145, 43.211182 ], [ 22.604370, 42.898101 ], [ 22.500000, 42.700604 ], [ 22.436829, 42.579377 ], [ 22.500000, 42.510577 ], [ 22.543945, 42.461967 ], [ 22.500000, 42.423457 ], [ 22.381897, 42.319970 ], [ 22.280273, 42.315909 ], [ 22.280273, 44.574817 ], [ 22.458801, 44.701850 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.755432, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.631836, 49.066668 ], [ 22.755432, 49.066668 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.381897, 42.319970 ], [ 22.500000, 42.244785 ], [ 22.881775, 41.998284 ], [ 22.953186, 41.337638 ], [ 22.760925, 41.304634 ], [ 22.596130, 41.131090 ], [ 22.500000, 41.135227 ], [ 22.280273, 41.141433 ], [ 22.280273, 42.315909 ], [ 22.381897, 42.319970 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.398467 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.327026, 44.565034 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.327048 ], [ 32.632141, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.333654 ], [ 31.676331, 46.705969 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.463983 ], [ 28.679810, 45.303871 ], [ 28.234863, 45.489020 ], [ 28.484802, 45.596744 ], [ 28.660583, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.863831, 46.437857 ], [ 29.072571, 46.517296 ], [ 29.171448, 46.379149 ], [ 29.759216, 46.350719 ], [ 30.025635, 46.424606 ], [ 29.838867, 46.524855 ], [ 29.907532, 46.673941 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.050598, 47.509780 ], [ 29.122009, 47.848188 ], [ 28.671570, 48.118434 ], [ 28.259583, 48.155093 ], [ 27.523499, 48.467458 ], [ 26.858826, 48.369023 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.946960, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.737476 ], [ 24.403381, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.280273, 48.327039 ], [ 22.280273, 48.824949 ], [ 22.535706, 49.066668 ], [ 22.631836, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.755432, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Romania", "sov_a3": "ROU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Romania", "adm0_a3": "ROU", "geou_dif": 0, "geounit": "Romania", "gu_a3": "ROU", "su_dif": 0, "subunit": "Romania", "su_a3": "ROU", "brk_diff": 0, "name": "Romania", "name_long": "Romania", "brk_a3": "ROU", "brk_name": "Romania", "abbrev": "Rom.", "postal": "RO", "formal_en": "Romania", "name_sort": "Romania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 13, "pop_est": 22215421, "gdp_md_est": 271400, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RO", "iso_a3": "ROU", "iso_n3": "642", "un_a3": "642", "wb_a2": "RO", "wb_a3": "ROM", "woe_id": -99, "adm0_a3_is": "ROU", "adm0_a3_us": "ROU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.619873, 48.221013 ], [ 26.924744, 48.123934 ], [ 27.235107, 47.826064 ], [ 27.550964, 47.405785 ], [ 28.127747, 46.811339 ], [ 28.160706, 46.371569 ], [ 28.053589, 45.945421 ], [ 28.234863, 45.489020 ], [ 28.679810, 45.303871 ], [ 29.149475, 45.463983 ], [ 29.602661, 45.294211 ], [ 29.627380, 45.034715 ], [ 29.141235, 44.820812 ], [ 28.839111, 44.914249 ], [ 28.558960, 43.707594 ], [ 27.971191, 43.812729 ], [ 27.243347, 44.176295 ], [ 26.065063, 43.943395 ], [ 25.567932, 43.687736 ], [ 24.101257, 43.741336 ], [ 23.332214, 43.897892 ], [ 22.944946, 43.824620 ], [ 22.656555, 44.235360 ], [ 22.475281, 44.408278 ], [ 22.500000, 44.425934 ], [ 22.705994, 44.578730 ], [ 22.500000, 44.680372 ], [ 22.458801, 44.701850 ], [ 22.280273, 44.574817 ], [ 22.280273, 47.733782 ], [ 22.500000, 47.809465 ], [ 22.711487, 47.881355 ], [ 23.142700, 48.096426 ], [ 23.760681, 47.986245 ], [ 24.403381, 47.982568 ], [ 24.867554, 47.737476 ], [ 25.208130, 47.890564 ], [ 25.946960, 47.986245 ], [ 26.196899, 48.221013 ], [ 26.619873, 48.221013 ] ] ] } } , @@ -4989,8 +4959,6 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Moldova", "sov_a3": "MDA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Moldova", "adm0_a3": "MDA", "geou_dif": 0, "geounit": "Moldova", "gu_a3": "MDA", "su_dif": 0, "subunit": "Moldova", "su_a3": "MDA", "brk_diff": 0, "name": "Moldova", "name_long": "Moldova", "brk_a3": "MDA", "brk_name": "Moldova", "abbrev": "Mda.", "postal": "MD", "formal_en": "Republic of Moldova", "name_sort": "Moldova", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4320748, "gdp_md_est": 10670, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MD", "iso_a3": "MDA", "iso_n3": "498", "un_a3": "498", "wb_a2": "MD", "wb_a3": "MDA", "woe_id": -99, "adm0_a3_is": "MDA", "adm0_a3_us": "MDA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.523499, 48.467458 ], [ 28.259583, 48.155093 ], [ 28.671570, 48.118434 ], [ 29.122009, 47.848188 ], [ 29.050598, 47.509780 ], [ 29.415894, 47.346267 ], [ 29.558716, 46.927759 ], [ 29.907532, 46.673941 ], [ 29.838867, 46.524855 ], [ 30.025635, 46.424606 ], [ 29.759216, 46.350719 ], [ 29.171448, 46.379149 ], [ 29.072571, 46.517296 ], [ 28.863831, 46.437857 ], [ 28.932495, 46.259645 ], [ 28.660583, 45.939691 ], [ 28.484802, 45.596744 ], [ 28.234863, 45.489020 ], [ 28.053589, 45.945421 ], [ 28.160706, 46.371569 ], [ 28.127747, 46.811339 ], [ 27.550964, 47.405785 ], [ 27.235107, 47.826064 ], [ 26.924744, 48.123934 ], [ 26.619873, 48.221013 ], [ 26.858826, 48.369023 ], [ 27.523499, 48.467458 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 49.066668 ], [ 33.969727, 44.398467 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.327026, 44.565034 ], [ 33.546753, 45.034715 ], [ 32.453613, 45.327048 ], [ 32.632141, 45.519820 ], [ 33.587952, 45.851760 ], [ 33.299561, 46.080852 ], [ 31.744995, 46.333654 ], [ 31.676331, 46.705969 ], [ 30.747986, 46.583406 ], [ 30.377197, 46.033203 ], [ 29.602661, 45.294211 ], [ 29.149475, 45.463983 ], [ 28.679810, 45.303871 ], [ 28.234863, 45.489020 ], [ 28.484802, 45.596744 ], [ 28.660583, 45.939691 ], [ 28.932495, 46.259645 ], [ 28.863831, 46.437857 ], [ 29.072571, 46.517296 ], [ 29.171448, 46.379149 ], [ 29.759216, 46.350719 ], [ 30.025635, 46.424606 ], [ 29.838867, 46.524855 ], [ 29.907532, 46.673941 ], [ 29.558716, 46.927759 ], [ 29.415894, 47.346267 ], [ 29.050598, 47.509780 ], [ 29.122009, 47.848188 ], [ 28.671570, 48.118434 ], [ 28.259583, 48.155093 ], [ 27.523499, 48.467458 ], [ 26.858826, 48.369023 ], [ 26.619873, 48.221013 ], [ 26.196899, 48.221013 ], [ 25.946960, 47.986245 ], [ 25.208130, 47.890564 ], [ 24.867554, 47.737476 ], [ 24.403381, 47.982568 ], [ 23.760681, 47.986245 ], [ 23.142700, 48.096426 ], [ 22.711487, 47.881355 ], [ 22.640076, 48.149596 ], [ 22.500000, 48.219183 ], [ 22.280273, 48.327039 ], [ 22.280273, 48.824949 ], [ 22.535706, 49.066668 ], [ 22.631836, 49.066668 ], [ 22.777405, 49.027063 ], [ 22.755432, 49.066668 ], [ 33.969727, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Greece", "sov_a3": "GRC", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Greece", "adm0_a3": "GRC", "geou_dif": 0, "geounit": "Greece", "gu_a3": "GRC", "su_dif": 0, "subunit": "Greece", "su_a3": "GRC", "brk_diff": 0, "name": "Greece", "name_long": "Greece", "brk_a3": "GRC", "brk_name": "Greece", "abbrev": "Greece", "postal": "GR", "formal_en": "Hellenic Republic", "name_sort": "Greece", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 9, "pop_est": 10737428, "gdp_md_est": 343000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "GR", "iso_a3": "GRC", "iso_n3": "300", "un_a3": "300", "wb_a2": "GR", "wb_a3": "GRC", "woe_id": -99, "adm0_a3_is": "GRC", "adm0_a3_us": "GRC", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.117249, 41.826595 ], [ 26.603394, 41.562032 ], [ 26.317749, 40.979898 ], [ 26.295776, 40.936340 ], [ 26.056824, 40.824202 ], [ 25.447083, 40.853293 ], [ 24.925232, 40.946714 ], [ 24.304504, 40.813809 ], [ 22.280273, 40.813809 ], [ 22.280273, 41.141433 ], [ 22.500000, 41.135227 ], [ 22.596130, 41.131090 ], [ 22.760925, 41.304634 ], [ 22.953186, 41.337638 ], [ 23.692017, 41.308761 ], [ 24.491272, 41.584634 ], [ 25.197144, 41.234446 ], [ 26.106262, 41.329389 ], [ 26.117249, 41.826595 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 42.024814 ], [ 33.969727, 40.813809 ], [ 29.014893, 40.813809 ], [ 29.108276, 40.979898 ], [ 29.240112, 41.219986 ], [ 31.146240, 41.087632 ], [ 32.349243, 41.736479 ], [ 33.513794, 42.018692 ], [ 33.750000, 42.022773 ], [ 33.969727, 42.024814 ] ] ], [ [ [ 27.136230, 42.141005 ], [ 27.995911, 42.006448 ], [ 28.116760, 41.623655 ], [ 28.987427, 41.300508 ], [ 28.806152, 41.054502 ], [ 27.619629, 41.000630 ], [ 27.592163, 40.979898 ], [ 27.361450, 40.813809 ], [ 26.056824, 40.813809 ], [ 26.056824, 40.824202 ], [ 26.295776, 40.936340 ], [ 26.317749, 40.979898 ], [ 26.603394, 41.562032 ], [ 26.117249, 41.826595 ], [ 27.136230, 42.141005 ] ] ] ] } } @@ -4999,35 +4967,35 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.427368, 55.899956 ], [ 27.103271, 55.782751 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.930481, 55.899956 ], [ 27.427368, 55.899956 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.327736 ], [ 23.244324, 54.220285 ], [ 23.483276, 53.912428 ], [ 23.527222, 53.470066 ], [ 23.804626, 53.089076 ], [ 23.799133, 52.691367 ], [ 23.200378, 52.487798 ], [ 23.507996, 52.023769 ], [ 23.527222, 51.578776 ], [ 24.029846, 50.705156 ], [ 23.922729, 50.424269 ], [ 23.425598, 50.308638 ], [ 22.519226, 49.477048 ], [ 22.777405, 49.027063 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 22.280273, 49.197859 ], [ 22.280273, 54.324533 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.327736 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovakia", "sov_a3": "SVK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovakia", "adm0_a3": "SVK", "geou_dif": 0, "geounit": "Slovakia", "gu_a3": "SVK", "su_dif": 0, "subunit": "Slovakia", "su_a3": "SVK", "brk_diff": 0, "name": "Slovakia", "name_long": "Slovakia", "brk_a3": "SVK", "brk_name": "Slovakia", "abbrev": "Svk.", "postal": "SK", "formal_en": "Slovak Republic", "name_sort": "Slovak Republic", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 5463046, "gdp_md_est": 119500, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SK", "iso_a3": "SVK", "iso_n3": "703", "un_a3": "703", "wb_a2": "SK", "wb_a3": "SVK", "woe_id": -99, "adm0_a3_is": "SVK", "adm0_a3_us": "SVK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 49.197859 ], [ 22.500000, 49.109838 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.032466 ], [ 22.280273, 48.824949 ], [ 22.280273, 49.197859 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 55.899956 ], [ 33.969727, 52.143602 ], [ 33.750000, 52.335339 ], [ 32.714539, 52.237892 ], [ 32.412415, 52.288323 ], [ 32.159729, 52.060935 ], [ 31.786194, 52.101444 ], [ 31.539001, 52.741280 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.168180 ], [ 32.305298, 53.131942 ], [ 32.692566, 53.352191 ], [ 32.406921, 53.618579 ], [ 31.731262, 53.794162 ], [ 31.791687, 53.973859 ], [ 31.385193, 54.157609 ], [ 30.756226, 54.811766 ], [ 30.973206, 55.081512 ], [ 30.874329, 55.550388 ], [ 29.945984, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.841614, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.311523, 55.776573 ], [ 29.240112, 55.899956 ], [ 33.969727, 55.899956 ] ] ], [ [ [ 22.280273, 55.021725 ], [ 22.315979, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.856059 ], [ 22.651062, 54.583205 ], [ 22.730713, 54.327736 ], [ 22.500000, 54.326135 ], [ 22.280273, 54.324533 ], [ 22.280273, 55.021725 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.240112, 55.899956 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.841614, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.945984, 55.776573 ], [ 30.874329, 55.550388 ], [ 30.973206, 55.081512 ], [ 30.756226, 54.811766 ], [ 31.385193, 54.157609 ], [ 31.791687, 53.973859 ], [ 31.731262, 53.794162 ], [ 32.406921, 53.618579 ], [ 32.692566, 53.352191 ], [ 32.305298, 53.131942 ], [ 31.497803, 53.168180 ], [ 31.305542, 53.074228 ], [ 31.539001, 52.741280 ], [ 31.786194, 52.101444 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.555725, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.253845, 51.368351 ], [ 28.992920, 51.602666 ], [ 28.616638, 51.428327 ], [ 28.240356, 51.571949 ], [ 27.454834, 51.592429 ], [ 26.336975, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.888359 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.578776 ], [ 23.507996, 52.023769 ], [ 23.200378, 52.487798 ], [ 23.799133, 52.691367 ], [ 23.804626, 53.089076 ], [ 23.527222, 53.470066 ], [ 23.483276, 53.912428 ], [ 24.450073, 53.905956 ], [ 25.537720, 54.282865 ], [ 25.768433, 54.846571 ], [ 26.586914, 55.167888 ], [ 26.493530, 55.615589 ], [ 27.081299, 55.776573 ], [ 27.103271, 55.782751 ], [ 27.427368, 55.899956 ], [ 29.240112, 55.899956 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.427368, 55.899956 ], [ 27.103271, 55.782751 ], [ 27.081299, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.174927, 55.776573 ], [ 25.930481, 55.899956 ], [ 27.427368, 55.899956 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.930481, 55.899956 ], [ 26.174927, 55.776573 ], [ 26.493530, 55.615589 ], [ 26.586914, 55.167888 ], [ 25.768433, 54.846571 ], [ 25.537720, 54.282865 ], [ 24.450073, 53.905956 ], [ 23.483276, 53.912428 ], [ 23.244324, 54.220285 ], [ 22.730713, 54.327736 ], [ 22.651062, 54.583205 ], [ 22.758179, 54.856059 ], [ 22.500000, 54.949231 ], [ 22.315979, 55.015426 ], [ 22.280273, 55.021725 ], [ 22.280273, 55.899956 ], [ 25.930481, 55.899956 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Poland", "sov_a3": "POL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Poland", "adm0_a3": "POL", "geou_dif": 0, "geounit": "Poland", "gu_a3": "POL", "su_dif": 0, "subunit": "Poland", "su_a3": "POL", "brk_diff": 0, "name": "Poland", "name_long": "Poland", "brk_a3": "POL", "brk_name": "Poland", "abbrev": "Pol.", "postal": "PL", "formal_en": "Republic of Poland", "name_sort": "Poland", "mapcolor7": 3, "mapcolor8": 7, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 38482919, "gdp_md_est": 667900, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "PL", "iso_a3": "POL", "iso_n3": "616", "un_a3": "616", "wb_a2": "PL", "wb_a3": "POL", "woe_id": -99, "adm0_a3_is": "POL", "adm0_a3_us": "POL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.730713, 54.327736 ], [ 23.244324, 54.220285 ], [ 23.483276, 53.912428 ], [ 23.527222, 53.470066 ], [ 23.804626, 53.089076 ], [ 23.799133, 52.691367 ], [ 23.200378, 52.487798 ], [ 23.507996, 52.023769 ], [ 23.527222, 51.578776 ], [ 24.029846, 50.705156 ], [ 23.922729, 50.424269 ], [ 23.425598, 50.308638 ], [ 22.519226, 49.477048 ], [ 22.777405, 49.027063 ], [ 22.557678, 49.086459 ], [ 22.500000, 49.109838 ], [ 22.280273, 49.197859 ], [ 22.280273, 54.324533 ], [ 22.500000, 54.326135 ], [ 22.730713, 54.327736 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.240112, 55.899956 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.841614, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.945984, 55.776573 ], [ 30.874329, 55.550388 ], [ 30.973206, 55.081512 ], [ 30.756226, 54.811766 ], [ 31.385193, 54.157609 ], [ 31.791687, 53.973859 ], [ 31.731262, 53.794162 ], [ 32.406921, 53.618579 ], [ 32.692566, 53.352191 ], [ 32.305298, 53.131942 ], [ 31.497803, 53.168180 ], [ 31.305542, 53.074228 ], [ 31.539001, 52.741280 ], [ 31.786194, 52.101444 ], [ 30.926514, 52.042355 ], [ 30.618896, 51.822198 ], [ 30.555725, 51.320314 ], [ 30.157471, 51.416338 ], [ 29.253845, 51.368351 ], [ 28.992920, 51.602666 ], [ 28.616638, 51.428327 ], [ 28.240356, 51.571949 ], [ 27.454834, 51.592429 ], [ 26.336975, 51.832383 ], [ 25.328979, 51.910391 ], [ 24.554443, 51.888359 ], [ 24.005127, 51.618017 ], [ 23.527222, 51.578776 ], [ 23.507996, 52.023769 ], [ 23.200378, 52.487798 ], [ 23.799133, 52.691367 ], [ 23.804626, 53.089076 ], [ 23.527222, 53.470066 ], [ 23.483276, 53.912428 ], [ 24.450073, 53.905956 ], [ 25.537720, 54.282865 ], [ 25.768433, 54.846571 ], [ 26.586914, 55.167888 ], [ 26.493530, 55.615589 ], [ 27.081299, 55.776573 ], [ 27.103271, 55.782751 ], [ 27.427368, 55.899956 ], [ 29.240112, 55.899956 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 33.969727, 52.143602 ], [ 33.969727, 48.777913 ], [ 22.280273, 48.777913 ], [ 22.280273, 48.824949 ], [ 22.500000, 49.032466 ], [ 22.557678, 49.086459 ], [ 22.777405, 49.027063 ], [ 22.519226, 49.477048 ], [ 23.425598, 50.308638 ], [ 23.922729, 50.424269 ], [ 24.029846, 50.705156 ], [ 23.527222, 51.578776 ], [ 24.005127, 51.618017 ], [ 24.554443, 51.888359 ], [ 25.328979, 51.910391 ], [ 26.336975, 51.832383 ], [ 27.454834, 51.592429 ], [ 28.240356, 51.571949 ], [ 28.616638, 51.428327 ], [ 28.992920, 51.602666 ], [ 29.253845, 51.368351 ], [ 30.157471, 51.416338 ], [ 30.555725, 51.320314 ], [ 30.618896, 51.822198 ], [ 30.926514, 52.042355 ], [ 31.786194, 52.101444 ], [ 32.159729, 52.060935 ], [ 32.412415, 52.288323 ], [ 32.714539, 52.237892 ], [ 33.750000, 52.335339 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.969727, 55.899956 ], [ 33.969727, 52.143602 ], [ 33.750000, 52.335339 ], [ 32.714539, 52.237892 ], [ 32.412415, 52.288323 ], [ 32.159729, 52.060935 ], [ 31.786194, 52.101444 ], [ 31.539001, 52.741280 ], [ 31.305542, 53.074228 ], [ 31.497803, 53.168180 ], [ 32.305298, 53.131942 ], [ 32.692566, 53.352191 ], [ 32.406921, 53.618579 ], [ 31.731262, 53.794162 ], [ 31.791687, 53.973859 ], [ 31.385193, 54.157609 ], [ 30.756226, 54.811766 ], [ 30.973206, 55.081512 ], [ 30.874329, 55.550388 ], [ 29.945984, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.841614, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.311523, 55.776573 ], [ 29.240112, 55.899956 ], [ 33.969727, 55.899956 ] ] ], [ [ [ 22.280273, 55.021725 ], [ 22.315979, 55.015426 ], [ 22.500000, 54.949231 ], [ 22.758179, 54.856059 ], [ 22.651062, 54.583205 ], [ 22.730713, 54.327736 ], [ 22.500000, 54.326135 ], [ 22.280273, 54.324533 ], [ 22.280273, 55.021725 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.463318, 57.475973 ], [ 27.287292, 57.474497 ], [ 27.770691, 57.244880 ], [ 27.855835, 56.758746 ], [ 28.177185, 56.168494 ], [ 27.103271, 55.782751 ], [ 27.081299, 55.776573 ], [ 26.628113, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.002136, 56.163906 ], [ 24.859314, 56.372856 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.327198 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ], [ 23.318481, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.094299, 61.710706 ], [ 29.915771, 61.606396 ], [ 28.070068, 60.503230 ], [ 26.254578, 60.423343 ], [ 24.496765, 60.057987 ], [ 22.870789, 59.846195 ], [ 22.500000, 60.196156 ], [ 22.291260, 60.392148 ], [ 22.280273, 60.396219 ], [ 22.280273, 61.710706 ], [ 30.094299, 61.710706 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 61.710706 ], [ 33.969727, 55.652798 ], [ 30.454102, 55.652798 ], [ 29.945984, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.841614, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.177185, 56.168494 ], [ 27.855835, 56.758746 ], [ 27.770691, 57.244880 ], [ 27.287292, 57.474497 ], [ 27.715759, 57.792089 ], [ 27.419128, 58.724025 ], [ 28.130493, 59.300954 ], [ 27.982178, 59.475779 ], [ 29.116516, 60.027814 ], [ 28.070068, 60.503230 ], [ 29.915771, 61.606396 ], [ 30.094299, 61.710706 ], [ 33.969727, 61.710706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Latvia", "sov_a3": "LVA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Latvia", "adm0_a3": "LVA", "geou_dif": 0, "geounit": "Latvia", "gu_a3": "LVA", "su_dif": 0, "subunit": "Latvia", "su_a3": "LVA", "brk_diff": 0, "name": "Latvia", "name_long": "Latvia", "brk_a3": "LVA", "brk_name": "Latvia", "abbrev": "Lat.", "postal": "LV", "formal_en": "Republic of Latvia", "name_sort": "Latvia", "mapcolor7": 4, "mapcolor8": 7, "mapcolor9": 6, "mapcolor13": 13, "pop_est": 2231503, "gdp_md_est": 38860, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LV", "iso_a3": "LVA", "iso_n3": "428", "un_a3": "428", "wb_a2": "LV", "wb_a3": "LVA", "woe_id": -99, "adm0_a3_is": "LVA", "adm0_a3_us": "LVA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.164185, 57.970244 ], [ 25.603638, 57.847674 ], [ 26.463318, 57.475973 ], [ 27.287292, 57.474497 ], [ 27.770691, 57.244880 ], [ 27.855835, 56.758746 ], [ 28.177185, 56.168494 ], [ 27.103271, 55.782751 ], [ 27.081299, 55.776573 ], [ 26.628113, 55.652798 ], [ 26.419373, 55.652798 ], [ 26.174927, 55.776573 ], [ 25.532227, 56.099620 ], [ 25.002136, 56.163906 ], [ 24.859314, 56.372856 ], [ 23.878784, 56.273861 ], [ 22.500000, 56.327198 ], [ 22.280273, 56.334812 ], [ 22.280273, 57.665973 ], [ 22.500000, 57.745213 ], [ 22.524719, 57.754007 ], [ 23.318481, 57.006346 ], [ 24.120483, 57.025784 ], [ 24.312744, 57.793553 ], [ 25.164185, 57.970244 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Estonia", "sov_a3": "EST", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Estonia", "adm0_a3": "EST", "geou_dif": 0, "geounit": "Estonia", "gu_a3": "EST", "su_dif": 0, "subunit": "Estonia", "su_a3": "EST", "brk_diff": 0, "name": "Estonia", "name_long": "Estonia", "brk_a3": "EST", "brk_name": "Estonia", "abbrev": "Est.", "postal": "EST", "formal_en": "Republic of Estonia", "name_sort": "Estonia", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 10, "pop_est": 1299371, "gdp_md_est": 27410, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "EE", "iso_a3": "EST", "iso_n3": "233", "un_a3": "233", "wb_a2": "EE", "wb_a3": "EST", "woe_id": -99, "adm0_a3_is": "EST", "adm0_a3_us": "EST", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.864563, 59.610823 ], [ 26.949463, 59.446471 ], [ 27.982178, 59.475779 ], [ 28.130493, 59.300954 ], [ 27.419128, 58.724025 ], [ 27.715759, 57.792089 ], [ 27.287292, 57.474497 ], [ 26.463318, 57.475973 ], [ 25.603638, 57.847674 ], [ 25.164185, 57.970244 ], [ 24.312744, 57.793553 ], [ 24.428101, 58.382998 ], [ 24.060059, 58.257508 ], [ 23.425598, 58.612625 ], [ 23.340454, 59.187185 ], [ 24.603882, 59.466013 ], [ 25.864563, 59.610823 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 25.002136, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.327198 ], [ 23.878784, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Belarus", "sov_a3": "BLR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Belarus", "adm0_a3": "BLR", "geou_dif": 0, "geounit": "Belarus", "gu_a3": "BLR", "su_dif": 0, "subunit": "Belarus", "su_a3": "BLR", "brk_diff": 0, "name": "Belarus", "name_long": "Belarus", "brk_a3": "BLR", "brk_name": "Belarus", "abbrev": "Bela.", "postal": "BY", "formal_en": "Republic of Belarus", "name_sort": "Belarus", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 5, "mapcolor13": 11, "pop_est": 9648533, "gdp_md_est": 114100, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BY", "iso_a3": "BLR", "iso_n3": "112", "un_a3": "112", "wb_a2": "BY", "wb_a3": "BLR", "woe_id": -99, "adm0_a3_is": "BLR", "adm0_a3_us": "BLR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.177185, 56.168494 ], [ 29.229126, 55.918430 ], [ 29.311523, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.841614, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.945984, 55.776573 ], [ 30.454102, 55.652798 ], [ 26.628113, 55.652798 ], [ 27.081299, 55.776573 ], [ 27.103271, 55.782751 ], [ 28.177185, 56.168494 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lithuania", "sov_a3": "LTU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lithuania", "adm0_a3": "LTU", "geou_dif": 0, "geounit": "Lithuania", "gu_a3": "LTU", "su_dif": 0, "subunit": "Lithuania", "su_a3": "LTU", "brk_diff": 0, "name": "Lithuania", "name_long": "Lithuania", "brk_a3": "LTU", "brk_name": "Lithuania", "abbrev": "Lith.", "postal": "LT", "formal_en": "Republic of Lithuania", "name_sort": "Lithuania", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 9, "pop_est": 3555179, "gdp_md_est": 63330, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LT", "iso_a3": "LTU", "iso_n3": "440", "un_a3": "440", "wb_a2": "LT", "wb_a3": "LTU", "woe_id": -99, "adm0_a3_is": "LTU", "adm0_a3_us": "LTU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.859314, 56.372856 ], [ 25.002136, 56.163906 ], [ 25.532227, 56.099620 ], [ 26.174927, 55.776573 ], [ 26.419373, 55.652798 ], [ 22.280273, 55.652798 ], [ 22.280273, 56.334812 ], [ 22.500000, 56.327198 ], [ 23.878784, 56.273861 ], [ 24.859314, 56.372856 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.969727, 61.710706 ], [ 33.969727, 55.652798 ], [ 30.454102, 55.652798 ], [ 29.945984, 55.776573 ], [ 29.896545, 55.788929 ], [ 29.841614, 55.776573 ], [ 29.371948, 55.669840 ], [ 29.311523, 55.776573 ], [ 29.229126, 55.918430 ], [ 28.177185, 56.168494 ], [ 27.855835, 56.758746 ], [ 27.770691, 57.244880 ], [ 27.287292, 57.474497 ], [ 27.715759, 57.792089 ], [ 27.419128, 58.724025 ], [ 28.130493, 59.300954 ], [ 27.982178, 59.475779 ], [ 29.116516, 60.027814 ], [ 28.070068, 60.503230 ], [ 29.915771, 61.606396 ], [ 30.094299, 61.710706 ], [ 33.969727, 61.710706 ] ] ] } } ] } ] } , @@ -5043,10 +5011,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 18, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 68.486977 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.936492 ], [ 23.562927, 66.513260 ], [ 23.565674, 66.425537 ], [ 22.280273, 66.425537 ], [ 22.280273, 68.486977 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Norway", "sov_a3": "NOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Norway", "adm0_a3": "NOR", "geou_dif": 0, "geounit": "Norway", "gu_a3": "NOR", "su_dif": 0, "subunit": "Norway", "su_a3": "NOR", "brk_diff": 0, "name": "Norway", "name_long": "Norway", "brk_a3": "NOR", "brk_name": "Norway", "abbrev": "Nor.", "postal": "N", "formal_en": "Kingdom of Norway", "name_sort": "Norway", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 12, "pop_est": 4676305, "gdp_md_est": 276400, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "NO", "iso_a3": "NOR", "iso_n3": "578", "un_a3": "578", "wb_a2": "NO", "wb_a3": "NOR", "woe_id": -99, "adm0_a3_is": "NOR", "adm0_a3_us": "NOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.314026, 70.685421 ], [ 30.624390, 70.612614 ], [ 31.294556, 70.453346 ], [ 30.006409, 70.186034 ], [ 31.102295, 69.558512 ], [ 29.399414, 69.156695 ], [ 28.591919, 69.064638 ], [ 29.014893, 69.766607 ], [ 27.732239, 70.164610 ], [ 26.180420, 69.825418 ], [ 25.688782, 69.092100 ], [ 24.735718, 68.649556 ], [ 23.661804, 68.891231 ], [ 22.500000, 68.846674 ], [ 22.357178, 68.841718 ], [ 22.280273, 68.878368 ], [ 22.280273, 70.225099 ], [ 22.500000, 70.218593 ], [ 23.024597, 70.201855 ], [ 23.771667, 70.612614 ], [ 23.906250, 70.685421 ], [ 30.314026, 70.685421 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sweden", "sov_a3": "SWE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sweden", "adm0_a3": "SWE", "geou_dif": 0, "geounit": "Sweden", "gu_a3": "SWE", "su_dif": 0, "subunit": "Sweden", "su_a3": "SWE", "brk_diff": 0, "name": "Sweden", "name_long": "Sweden", "brk_a3": "SWE", "brk_name": "Sweden", "abbrev": "Swe.", "postal": "S", "formal_en": "Kingdom of Sweden", "name_sort": "Sweden", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 9059651, "gdp_md_est": 344300, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SE", "iso_a3": "SWE", "iso_n3": "752", "un_a3": "752", "wb_a2": "SE", "wb_a3": "SWE", "woe_id": -99, "adm0_a3_is": "SWE", "adm0_a3_us": "SWE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.280273, 68.486977 ], [ 22.500000, 68.391090 ], [ 23.538208, 67.936492 ], [ 23.562927, 66.513260 ], [ 23.565674, 66.425537 ], [ 22.280273, 66.425537 ], [ 22.280273, 68.486977 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Finland", "sov_a3": "FI1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "Finland", "adm0_a3": "FIN", "geou_dif": 0, "geounit": "Finland", "gu_a3": "FIN", "su_dif": 0, "subunit": "Finland", "su_a3": "FIN", "brk_diff": 0, "name": "Finland", "name_long": "Finland", "brk_a3": "FIN", "brk_name": "Finland", "abbrev": "Fin.", "postal": "FIN", "formal_en": "Republic of Finland", "name_sort": "Finland", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 6, "pop_est": 5250275, "gdp_md_est": 193500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "FI", "iso_a3": "FIN", "iso_n3": "246", "un_a3": "246", "wb_a2": "FI", "wb_a3": "FIN", "woe_id": -99, "adm0_a3_is": "FIN", "adm0_a3_us": "FIN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Northern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.732239, 70.164610 ], [ 29.014893, 69.766607 ], [ 28.591919, 69.064638 ], [ 28.446350, 68.364776 ], [ 29.976196, 67.697983 ], [ 29.053345, 66.944048 ], [ 29.501038, 66.513260 ], [ 29.588928, 66.425537 ], [ 23.565674, 66.425537 ], [ 23.562927, 66.513260 ], [ 23.538208, 67.936492 ], [ 22.500000, 68.391090 ], [ 22.280273, 68.486977 ], [ 22.280273, 68.878368 ], [ 22.357178, 68.841718 ], [ 22.500000, 68.846674 ], [ 23.661804, 68.891231 ], [ 24.735718, 68.649556 ], [ 25.688782, 69.092100 ], [ 26.180420, 69.825418 ], [ 27.732239, 70.164610 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.132263, 69.905780 ], [ 33.750000, 69.310558 ], [ 33.774719, 69.301823 ], [ 33.969727, 69.285314 ], [ 33.969727, 66.750746 ], [ 33.917542, 66.759418 ], [ 33.750000, 66.730138 ], [ 33.184204, 66.632288 ], [ 33.453369, 66.513260 ], [ 33.648376, 66.425537 ], [ 29.588928, 66.425537 ], [ 29.501038, 66.513260 ], [ 29.053345, 66.944048 ], [ 29.976196, 67.697983 ], [ 28.446350, 68.364776 ], [ 28.591919, 69.064638 ], [ 29.399414, 69.156695 ], [ 31.102295, 69.558512 ], [ 32.132263, 69.905780 ] ] ] } } @@ -5157,38 +5125,38 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.719157 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.719157 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.873352, 11.393879 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.730530, 10.908830 ], [ 34.258118, 10.630916 ], [ 33.961487, 9.584501 ], [ 33.964233, 9.465317 ], [ 33.824158, 9.484281 ], [ 33.843384, 9.982376 ], [ 33.750000, 10.247357 ], [ 33.722534, 10.325728 ], [ 33.530273, 10.471607 ], [ 33.530273, 11.393879 ], [ 34.873352, 11.393879 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.728821, 11.393879 ], [ 41.739807, 11.356182 ], [ 41.750793, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.778015, 10.927708 ], [ 42.558289, 10.571522 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.678894, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.219727, 8.624472 ], [ 45.219727, 5.271478 ], [ 45.000000, 5.038963 ], [ 44.964294, 5.000658 ], [ 43.659668, 4.956879 ], [ 42.769775, 4.253290 ], [ 42.129822, 4.234117 ], [ 41.855164, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.767517, 4.256029 ], [ 39.855652, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.499714 ], [ 38.671875, 3.614848 ], [ 38.435669, 3.587436 ], [ 38.119812, 3.598401 ], [ 36.856384, 4.447736 ], [ 36.158752, 4.447736 ], [ 35.818176, 4.776258 ], [ 35.818176, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.825534 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 33.530273, 7.719157 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.961487, 9.584501 ], [ 34.258118, 10.630916 ], [ 34.730530, 10.908830 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 34.873352, 11.393879 ], [ 41.728821, 11.393879 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.099365, 11.393879 ], [ 42.951050, 11.178402 ], [ 42.778015, 10.927708 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.750793, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.728821, 11.393879 ], [ 43.099365, 11.393879 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "South Sudan", "sov_a3": "SDS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "South Sudan", "adm0_a3": "SDS", "geou_dif": 0, "geounit": "South Sudan", "gu_a3": "SDS", "su_dif": 0, "subunit": "South Sudan", "su_a3": "SDS", "brk_diff": 0, "name": "S. Sudan", "name_long": "South Sudan", "brk_a3": "SDS", "brk_name": "S. Sudan", "abbrev": "S. Sud.", "postal": "SS", "formal_en": "Republic of South Sudan", "name_sort": "South Sudan", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 5, "pop_est": 10625176, "gdp_md_est": 13227, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SS", "iso_a3": "SSD", "iso_n3": "728", "un_a3": "728", "wb_a2": "SS", "wb_a3": "SSD", "woe_id": -99, "adm0_a3_is": "SSD", "adm0_a3_us": "SDS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 11, "abbrev_len": 7, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 8.366410 ], [ 33.530273, 10.471607 ], [ 33.722534, 10.325728 ], [ 33.750000, 10.247357 ], [ 33.843384, 9.982376 ], [ 33.824158, 9.484281 ], [ 33.964233, 9.465317 ], [ 33.975220, 8.684209 ], [ 33.824158, 8.379997 ], [ 33.750000, 8.377279 ], [ 33.530273, 8.366410 ] ] ], [ [ [ 33.530273, 7.719157 ], [ 33.568726, 7.713713 ], [ 33.750000, 7.539487 ], [ 34.074097, 7.226249 ], [ 34.249878, 6.825534 ], [ 34.705811, 6.593674 ], [ 35.299072, 5.506640 ], [ 34.005432, 4.250551 ], [ 33.750000, 4.058796 ], [ 33.530273, 3.894398 ], [ 33.530273, 7.719157 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uganda", "sov_a3": "UGA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uganda", "adm0_a3": "UGA", "geou_dif": 0, "geounit": "Uganda", "gu_a3": "UGA", "su_dif": 0, "subunit": "Uganda", "su_a3": "UGA", "brk_diff": 0, "name": "Uganda", "name_long": "Uganda", "brk_a3": "UGA", "brk_name": "Uganda", "abbrev": "Uga.", "postal": "UG", "formal_en": "Republic of Uganda", "name_sort": "Uganda", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 4, "pop_est": 32369558, "gdp_md_est": 39380, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "UG", "iso_a3": "UGA", "iso_n3": "800", "un_a3": "800", "wb_a2": "UG", "wb_a3": "UGA", "woe_id": -99, "adm0_a3_is": "UGA", "adm0_a3_us": "UGA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.005432, 4.250551 ], [ 34.477844, 3.554541 ], [ 34.595947, 3.052754 ], [ 35.035400, 1.905776 ], [ 34.672852, 1.178201 ], [ 34.181213, 0.516350 ], [ 33.892822, 0.109863 ], [ 33.892822, 0.000000 ], [ 33.895569, -0.219726 ], [ 33.530273, -0.219726 ], [ 33.530273, 3.894398 ], [ 33.750000, 4.058796 ], [ 34.005432, 4.250551 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.099365, 11.393879 ], [ 42.951050, 11.178402 ], [ 42.778015, 10.927708 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.750793, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.728821, 11.393879 ], [ 43.099365, 11.393879 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Kenya", "sov_a3": "KEN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kenya", "adm0_a3": "KEN", "geou_dif": 0, "geounit": "Kenya", "gu_a3": "KEN", "su_dif": 0, "subunit": "Kenya", "su_a3": "KEN", "brk_diff": 0, "name": "Kenya", "name_long": "Kenya", "brk_a3": "KEN", "brk_name": "Kenya", "abbrev": "Ken.", "postal": "KE", "formal_en": "Republic of Kenya", "name_sort": "Kenya", "mapcolor7": 5, "mapcolor8": 2, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 39002772, "gdp_md_est": 61510, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KE", "iso_a3": "KEN", "iso_n3": "404", "un_a3": "404", "wb_a2": "KE", "wb_a3": "KEN", "woe_id": -99, "adm0_a3_is": "KEN", "adm0_a3_us": "KEN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.299072, 5.506640 ], [ 35.818176, 5.337114 ], [ 35.818176, 4.776258 ], [ 36.158752, 4.447736 ], [ 36.856384, 4.447736 ], [ 38.119812, 3.598401 ], [ 38.435669, 3.587436 ], [ 38.671875, 3.614848 ], [ 38.891602, 3.499714 ], [ 39.559021, 3.422950 ], [ 39.855652, 3.839591 ], [ 40.767517, 4.256029 ], [ 41.171265, 3.919060 ], [ 41.855164, 3.919060 ], [ 40.981750, 2.783938 ], [ 40.989990, 0.000000 ], [ 40.992737, -0.219726 ], [ 33.895569, -0.219726 ], [ 33.892822, 0.000000 ], [ 33.892822, 0.109863 ], [ 34.181213, 0.516350 ], [ 34.672852, 1.178201 ], [ 35.035400, 1.905776 ], [ 34.595947, 3.052754 ], [ 34.477844, 3.554541 ], [ 34.005432, 4.250551 ], [ 35.299072, 5.506640 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.271478 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.068909, 1.051882 ], [ 43.135071, 0.291136 ], [ 42.871399, 0.000000 ], [ 42.673645, -0.219726 ], [ 40.992737, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.981750, 2.783938 ], [ 41.855164, 3.919060 ], [ 42.129822, 4.234117 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.956879 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.038963 ], [ 45.219727, 5.271478 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.728821, 11.393879 ], [ 41.739807, 11.356182 ], [ 41.750793, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.778015, 10.927708 ], [ 42.558289, 10.571522 ], [ 42.929077, 10.022948 ], [ 43.297119, 9.541166 ], [ 43.678894, 9.183447 ], [ 45.000000, 8.705929 ], [ 45.219727, 8.624472 ], [ 45.219727, 5.271478 ], [ 45.000000, 5.038963 ], [ 44.964294, 5.000658 ], [ 43.659668, 4.956879 ], [ 42.769775, 4.253290 ], [ 42.129822, 4.234117 ], [ 41.855164, 3.919060 ], [ 41.171265, 3.919060 ], [ 40.767517, 4.256029 ], [ 39.855652, 3.839591 ], [ 39.559021, 3.422950 ], [ 38.891602, 3.499714 ], [ 38.671875, 3.614848 ], [ 38.435669, 3.587436 ], [ 38.119812, 3.598401 ], [ 36.856384, 4.447736 ], [ 36.158752, 4.447736 ], [ 35.818176, 4.776258 ], [ 35.818176, 5.337114 ], [ 35.299072, 5.506640 ], [ 34.705811, 6.593674 ], [ 34.249878, 6.825534 ], [ 34.074097, 7.226249 ], [ 33.750000, 7.539487 ], [ 33.568726, 7.713713 ], [ 33.530273, 7.719157 ], [ 33.530273, 8.366410 ], [ 33.750000, 8.377279 ], [ 33.824158, 8.379997 ], [ 33.975220, 8.684209 ], [ 33.961487, 9.584501 ], [ 34.258118, 10.630916 ], [ 34.730530, 10.908830 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 34.873352, 11.393879 ], [ 41.728821, 11.393879 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.264160, 11.393879 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.667908, 10.862978 ], [ 44.118347, 10.444598 ], [ 44.615479, 10.441897 ], [ 45.000000, 10.547221 ], [ 45.219727, 10.606620 ], [ 45.219727, 8.624472 ], [ 45.000000, 8.705929 ], [ 43.678894, 9.183447 ], [ 43.297119, 9.541166 ], [ 42.929077, 10.022948 ], [ 42.558289, 10.571522 ], [ 42.778015, 10.927708 ], [ 42.951050, 11.178402 ], [ 43.099365, 11.393879 ], [ 43.264160, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 5.271478 ], [ 45.219727, 1.817932 ], [ 45.000000, 1.672431 ], [ 44.068909, 1.051882 ], [ 43.135071, 0.291136 ], [ 42.871399, 0.000000 ], [ 42.673645, -0.219726 ], [ 40.992737, -0.219726 ], [ 40.989990, 0.000000 ], [ 40.981750, 2.783938 ], [ 41.855164, 3.919060 ], [ 42.129822, 4.234117 ], [ 42.769775, 4.253290 ], [ 43.659668, 4.956879 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.038963 ], [ 45.219727, 5.271478 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ], [ 45.000000, 17.429270 ], [ 44.063416, 17.410925 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.075164 ], [ 42.269897, 17.473812 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.034424, 22.146708 ], [ 45.219727, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.741028, 22.146708 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 22.146708 ], [ 36.741028, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.482605, 18.615013 ], [ 37.861633, 18.367559 ], [ 38.410950, 17.997019 ], [ 37.902832, 17.426649 ], [ 37.166748, 17.264105 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.291142 ], [ 36.323547, 14.822681 ], [ 36.430664, 14.421380 ], [ 36.271362, 13.563232 ], [ 35.864868, 12.578691 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.744263, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 22.146708 ], [ 45.219727, 17.431890 ], [ 45.000000, 17.429270 ], [ 44.063416, 17.410925 ], [ 43.791504, 17.319176 ], [ 43.379517, 17.581194 ], [ 43.115845, 17.088291 ], [ 43.217468, 16.667769 ], [ 42.778015, 16.349132 ], [ 42.648926, 16.775617 ], [ 42.346802, 17.075164 ], [ 42.269897, 17.473812 ], [ 41.753540, 17.832374 ], [ 41.220703, 18.672267 ], [ 40.940552, 19.487308 ], [ 40.248413, 20.174567 ], [ 39.800720, 20.339476 ], [ 39.138794, 21.291933 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.034424, 22.146708 ], [ 45.219727, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ], [ 39.100342, 14.740355 ], [ 39.339294, 14.530415 ], [ 40.025940, 14.519780 ], [ 40.896606, 14.117931 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.451066 ], [ 42.008972, 12.865360 ], [ 42.352295, 12.541159 ], [ 42.000732, 12.101095 ], [ 41.662903, 11.630716 ], [ 41.739807, 11.356182 ], [ 41.750793, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.734070, 10.962764 ], [ 34.744263, 10.962764 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.578691 ], [ 36.271362, 13.563232 ], [ 36.430664, 14.421380 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.886597, 21.943046 ], [ 37.188721, 21.017855 ], [ 36.968994, 20.838278 ], [ 37.114563, 19.808054 ], [ 37.482605, 18.615013 ], [ 37.861633, 18.367559 ], [ 38.410950, 17.997019 ], [ 37.902832, 17.426649 ], [ 37.166748, 17.264105 ], [ 36.853638, 16.956979 ], [ 36.754761, 16.291142 ], [ 36.323547, 14.822681 ], [ 36.430664, 14.421380 ], [ 36.271362, 13.563232 ], [ 35.864868, 12.578691 ], [ 35.260620, 12.082296 ], [ 34.832153, 11.318481 ], [ 34.796448, 11.178402 ], [ 34.744263, 10.962764 ], [ 33.530273, 10.962764 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Eritrea", "sov_a3": "ERI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Eritrea", "adm0_a3": "ERI", "geou_dif": 0, "geounit": "Eritrea", "gu_a3": "ERI", "su_dif": 0, "subunit": "Eritrea", "su_a3": "ERI", "brk_diff": 0, "name": "Eritrea", "name_long": "Eritrea", "brk_a3": "ERI", "brk_name": "Eritrea", "abbrev": "Erit.", "postal": "ER", "formal_en": "State of Eritrea", "name_sort": "Eritrea", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 5647168, "gdp_md_est": 3945, "pop_year": -99, "lastcensus": 1984, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ER", "iso_a3": "ERI", "iso_n3": "232", "un_a3": "232", "wb_a2": "ER", "wb_a3": "ERI", "woe_id": -99, "adm0_a3_is": "ERI", "adm0_a3_us": "ERI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.410950, 17.997019 ], [ 38.990479, 16.841348 ], [ 39.265137, 15.921715 ], [ 39.814453, 15.435148 ], [ 41.179504, 14.490531 ], [ 41.734314, 13.920738 ], [ 42.278137, 13.344193 ], [ 42.588501, 12.999205 ], [ 43.080139, 12.699292 ], [ 42.780762, 12.455351 ], [ 42.352295, 12.541159 ], [ 42.008972, 12.865360 ], [ 41.599731, 13.451066 ], [ 41.154785, 13.774066 ], [ 40.896606, 14.117931 ], [ 40.025940, 14.519780 ], [ 39.339294, 14.530415 ], [ 39.100342, 14.740355 ], [ 38.512573, 14.506485 ], [ 37.905579, 14.960706 ], [ 37.592468, 14.213801 ], [ 36.430664, 14.421380 ], [ 36.323547, 14.822681 ], [ 36.754761, 16.291142 ], [ 36.853638, 16.956979 ], [ 37.166748, 17.264105 ], [ 37.902832, 17.426649 ], [ 38.410950, 17.997019 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Djibouti", "sov_a3": "DJI", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Djibouti", "adm0_a3": "DJI", "geou_dif": 0, "geounit": "Djibouti", "gu_a3": "DJI", "su_dif": 0, "subunit": "Djibouti", "su_a3": "DJI", "brk_diff": 0, "name": "Djibouti", "name_long": "Djibouti", "brk_a3": "DJI", "brk_name": "Djibouti", "abbrev": "Dji.", "postal": "DJ", "formal_en": "Republic of Djibouti", "name_sort": "Djibouti", "mapcolor7": 1, "mapcolor8": 2, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 516055, "gdp_md_est": 1885, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "DJ", "iso_a3": "DJI", "iso_n3": "262", "un_a3": "262", "wb_a2": "DJ", "wb_a3": "DJI", "woe_id": -99, "adm0_a3_is": "DJI", "adm0_a3_us": "DJI", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Middle East & North Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.080139, 12.699292 ], [ 43.319092, 12.390976 ], [ 43.286133, 11.974845 ], [ 42.714844, 11.735613 ], [ 43.146057, 11.461183 ], [ 42.951050, 11.178402 ], [ 42.802734, 10.962764 ], [ 42.734070, 10.962764 ], [ 42.555542, 11.105642 ], [ 42.313843, 11.032864 ], [ 41.756287, 11.051734 ], [ 41.750793, 11.178402 ], [ 41.739807, 11.356182 ], [ 41.662903, 11.630716 ], [ 42.000732, 12.101095 ], [ 42.352295, 12.541159 ], [ 42.780762, 12.455351 ], [ 43.080139, 12.699292 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.905579, 14.960706 ], [ 38.512573, 14.506485 ], [ 39.100342, 14.740355 ], [ 39.339294, 14.530415 ], [ 40.025940, 14.519780 ], [ 40.896606, 14.117931 ], [ 41.154785, 13.774066 ], [ 41.599731, 13.451066 ], [ 42.008972, 12.865360 ], [ 42.352295, 12.541159 ], [ 42.000732, 12.101095 ], [ 41.662903, 11.630716 ], [ 41.739807, 11.356182 ], [ 41.750793, 11.178402 ], [ 41.756287, 11.051734 ], [ 42.313843, 11.032864 ], [ 42.555542, 11.105642 ], [ 42.734070, 10.962764 ], [ 34.744263, 10.962764 ], [ 34.796448, 11.178402 ], [ 34.832153, 11.318481 ], [ 35.260620, 12.082296 ], [ 35.864868, 12.578691 ], [ 36.271362, 13.563232 ], [ 36.430664, 14.421380 ], [ 37.592468, 14.213801 ], [ 37.905579, 14.960706 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.379517, 17.581194 ], [ 43.791504, 17.319176 ], [ 44.063416, 17.410925 ], [ 45.000000, 17.429270 ], [ 45.219727, 17.431890 ], [ 45.219727, 12.975118 ], [ 45.145569, 12.953706 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.699292 ], [ 44.494629, 12.720726 ], [ 44.176025, 12.586732 ], [ 43.483887, 12.637658 ], [ 43.222961, 13.221230 ], [ 43.250427, 13.768731 ], [ 43.088379, 14.061988 ], [ 42.893372, 14.801439 ], [ 42.604980, 15.212638 ], [ 42.805481, 15.262989 ], [ 42.701111, 15.718239 ], [ 42.824707, 15.911150 ], [ 42.778015, 16.349132 ], [ 43.217468, 16.667769 ], [ 43.115845, 17.088291 ], [ 43.379517, 17.581194 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.146057, 11.461183 ], [ 43.470154, 11.278080 ], [ 43.516846, 11.178402 ], [ 43.621216, 10.962764 ], [ 42.802734, 10.962764 ], [ 42.951050, 11.178402 ], [ 43.146057, 11.461183 ] ] ] } } @@ -5197,18 +5165,18 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.030773 ], [ 33.530273, 30.987028 ], [ 33.750000, 30.970544 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.030773 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 37.001953, 31.508313 ], [ 37.998962, 30.507850 ], [ 37.669373, 30.339695 ], [ 37.504578, 30.004895 ], [ 36.741028, 29.864465 ], [ 36.502075, 29.504159 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.355846 ], [ 34.922791, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.122070, 31.952162 ], [ 39.298096, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.060120, 32.138409 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.224915, 31.753861 ], [ 34.969482, 31.615966 ], [ 34.928284, 31.353637 ], [ 35.397949, 31.489578 ], [ 35.419922, 31.099982 ], [ 34.922791, 29.501769 ], [ 34.266357, 31.219848 ], [ 34.557495, 31.548112 ], [ 34.488831, 31.606610 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.768982, 32.138409 ], [ 35.060120, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.546265, 32.138409 ], [ 35.546265, 31.781882 ], [ 35.397949, 31.489578 ], [ 34.928284, 31.353637 ], [ 34.969482, 31.615966 ], [ 35.224915, 31.753861 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.060120, 32.138409 ], [ 35.546265, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 32.138409 ], [ 45.219727, 29.156959 ], [ 45.000000, 29.166552 ], [ 44.708862, 29.178543 ], [ 41.890869, 31.189308 ], [ 40.399475, 31.889219 ], [ 40.122070, 31.952162 ], [ 39.298096, 32.138409 ], [ 45.219727, 32.138409 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.166260, 32.138409 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 37.001953, 31.508313 ], [ 37.998962, 30.507850 ], [ 37.669373, 30.339695 ], [ 37.504578, 30.004895 ], [ 36.741028, 29.864465 ], [ 36.502075, 29.504159 ], [ 36.068115, 29.197726 ], [ 34.955750, 29.355846 ], [ 34.922791, 29.501769 ], [ 35.419922, 31.099982 ], [ 35.397949, 31.489578 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.138409 ], [ 39.166260, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.298096, 32.138409 ], [ 40.122070, 31.952162 ], [ 40.399475, 31.889219 ], [ 41.890869, 31.189308 ], [ 44.708862, 29.178543 ], [ 45.000000, 29.166552 ], [ 45.219727, 29.156959 ], [ 45.219727, 21.739091 ], [ 39.064636, 21.739091 ], [ 39.031677, 21.943046 ], [ 39.023438, 21.986348 ], [ 39.067383, 22.578510 ], [ 38.493347, 23.687289 ], [ 38.023682, 24.079067 ], [ 37.482605, 24.284523 ], [ 37.155762, 24.859026 ], [ 37.210693, 25.085599 ], [ 36.930542, 25.601902 ], [ 36.639404, 25.827089 ], [ 36.249390, 26.571333 ], [ 35.639648, 27.376645 ], [ 35.131531, 28.062286 ], [ 34.631653, 28.057439 ], [ 34.788208, 28.606226 ], [ 34.832153, 28.957686 ], [ 34.955750, 29.355846 ], [ 36.068115, 29.197726 ], [ 36.502075, 29.504159 ], [ 36.741028, 29.864465 ], [ 37.504578, 30.004895 ], [ 37.669373, 30.339695 ], [ 37.998962, 30.507850 ], [ 37.001953, 31.508313 ], [ 38.770752, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.166260, 32.138409 ], [ 39.298096, 32.138409 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Egypt", "sov_a3": "EGY", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Egypt", "adm0_a3": "EGY", "geou_dif": 0, "geounit": "Egypt", "gu_a3": "EGY", "su_dif": 0, "subunit": "Egypt", "su_a3": "EGY", "brk_diff": 0, "name": "Egypt", "name_long": "Egypt", "brk_a3": "EGY", "brk_name": "Egypt", "abbrev": "Egypt", "postal": "EG", "formal_en": "Arab Republic of Egypt", "name_sort": "Egypt, Arab Rep.", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 7, "mapcolor13": 2, "pop_est": 83082869, "gdp_md_est": 443700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "EG", "iso_a3": "EGY", "iso_n3": "818", "un_a3": "818", "wb_a2": "EG", "wb_a3": "EGY", "woe_id": -99, "adm0_a3_is": "EGY", "adm0_a3_us": "EGY", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 33.530273, 28.030773 ], [ 33.530273, 30.987028 ], [ 33.750000, 30.970544 ], [ 33.774719, 30.968189 ], [ 34.266357, 31.219848 ], [ 34.922791, 29.501769 ], [ 34.642639, 29.099377 ], [ 34.425659, 28.343065 ], [ 34.153748, 27.824503 ], [ 33.920288, 27.649472 ], [ 33.750000, 27.814786 ], [ 33.530273, 28.030773 ] ] ], [ [ [ 33.530273, 27.327855 ], [ 33.750000, 26.875531 ], [ 34.104309, 26.143111 ], [ 34.475098, 25.599425 ], [ 34.793701, 25.033350 ], [ 35.691833, 23.926013 ], [ 35.494080, 23.752668 ], [ 35.527039, 23.102471 ], [ 36.691589, 22.205206 ], [ 36.867371, 21.999082 ], [ 33.530273, 21.999082 ], [ 33.530273, 27.327855 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sudan", "sov_a3": "SDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sudan", "adm0_a3": "SDN", "geou_dif": 0, "geounit": "Sudan", "gu_a3": "SDN", "su_dif": 0, "subunit": "Sudan", "su_a3": "SDN", "brk_diff": 0, "name": "Sudan", "name_long": "Sudan", "brk_a3": "SDN", "brk_name": "Sudan", "abbrev": "Sudan", "postal": "SD", "formal_en": "Republic of the Sudan", "name_sort": "Sudan", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 4, "mapcolor13": 1, "pop_est": 25946220, "gdp_md_est": 88080, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SD", "iso_a3": "SDN", "iso_n3": "729", "un_a3": "729", "wb_a2": "SD", "wb_a3": "SDN", "woe_id": -99, "adm0_a3_is": "SDN", "adm0_a3_us": "SDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Northern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.867371, 21.999082 ], [ 36.886597, 21.943046 ], [ 36.952515, 21.739091 ], [ 33.530273, 21.739091 ], [ 33.530273, 21.999082 ], [ 36.867371, 21.999082 ] ] ] } } ] } ] } @@ -5221,51 +5189,51 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Northern Cyprus", "sov_a3": "CYN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Northern Cyprus", "adm0_a3": "CYN", "geou_dif": 0, "geounit": "Northern Cyprus", "gu_a3": "CYN", "su_dif": 0, "subunit": "Northern Cyprus", "su_a3": "CYN", "brk_diff": 1, "name": "N. Cyprus", "name_long": "Northern Cyprus", "brk_a3": "B20", "brk_name": "N. Cyprus", "abbrev": "N. Cy.", "postal": "CN", "formal_en": "Turkish Republic of Northern Cyprus", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Cyprus", "name_sort": "Cyprus, Northern", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 8, "pop_est": 265100, "gdp_md_est": 3600, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "CYP", "adm0_a3_us": "CYP", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 15, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.576721, 35.670685 ], [ 33.901062, 35.245619 ], [ 33.972473, 35.059229 ], [ 33.865356, 35.092945 ], [ 33.750000, 35.047987 ], [ 33.675842, 35.018750 ], [ 33.530273, 35.038992 ], [ 33.530273, 35.375614 ], [ 33.667603, 35.373375 ], [ 33.750000, 35.400245 ], [ 34.576721, 35.670685 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.478394, 41.145570 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.741014 ], [ 43.656921, 40.254377 ], [ 44.401245, 40.004476 ], [ 44.794006, 39.713525 ], [ 44.110107, 39.427707 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.294128, 37.002553 ], [ 43.942566, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.212463, 37.074902 ], [ 40.674133, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.622141 ], [ 36.738281, 36.818080 ], [ 36.686096, 36.259778 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.564806 ], [ 34.714050, 36.796090 ], [ 34.027405, 36.219903 ], [ 33.750000, 36.199958 ], [ 33.530273, 36.182225 ], [ 33.530273, 41.145570 ], [ 37.619934, 41.145570 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.102121 ], [ 40.374756, 41.013066 ], [ 40.671387, 41.145570 ], [ 43.478394, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Lebanon", "sov_a3": "LBN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Lebanon", "adm0_a3": "LBN", "geou_dif": 0, "geounit": "Lebanon", "gu_a3": "LBN", "su_dif": 0, "subunit": "Lebanon", "su_a3": "LBN", "brk_diff": 0, "name": "Lebanon", "name_long": "Lebanon", "brk_a3": "LBN", "brk_name": "Lebanon", "abbrev": "Leb.", "postal": "LB", "formal_en": "Lebanese Republic", "name_sort": "Lebanon", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 12, "pop_est": 4017095, "gdp_md_est": 44060, "pop_year": -99, "lastcensus": 1970, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "LB", "iso_a3": "LBN", "iso_n3": "422", "un_a3": "422", "wb_a2": "LB", "wb_a3": "LBN", "woe_id": -99, "adm0_a3_is": "LBN", "adm0_a3_us": "LBN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": 4, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.999451, 34.644507 ], [ 36.447144, 34.594781 ], [ 36.611938, 34.202716 ], [ 36.065369, 33.824794 ], [ 35.820923, 33.277732 ], [ 35.551758, 33.263953 ], [ 35.461121, 33.089240 ], [ 35.126038, 33.091542 ], [ 35.483093, 33.904616 ], [ 35.980225, 34.610606 ], [ 35.999451, 34.644507 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.628280 ], [ 41.006470, 34.418239 ], [ 38.792725, 33.378706 ], [ 36.834412, 32.312670 ], [ 35.700073, 32.715666 ], [ 35.837402, 32.868053 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.999451, 34.644507 ], [ 35.906067, 35.409200 ], [ 36.150513, 35.822267 ], [ 36.686096, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.622141 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.674133, 37.090240 ], [ 41.212463, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.378706 ], [ 39.196472, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.538025, 31.765537 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.393878 ], [ 35.719299, 32.708733 ], [ 36.834412, 32.312670 ], [ 38.792725, 33.378706 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.544294 ], [ 45.000000, 39.740986 ], [ 44.794006, 39.713525 ], [ 44.401245, 40.004476 ], [ 43.656921, 40.254377 ], [ 43.753052, 40.741014 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.057922, 41.145570 ], [ 45.054932, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.663147, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.122070, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Syria", "sov_a3": "SYR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Syria", "adm0_a3": "SYR", "geou_dif": 0, "geounit": "Syria", "gu_a3": "SYR", "su_dif": 0, "subunit": "Syria", "su_a3": "SYR", "brk_diff": 0, "name": "Syria", "name_long": "Syria", "brk_a3": "SYR", "brk_name": "Syria", "abbrev": "Syria", "postal": "SYR", "formal_en": "Syrian Arab Republic", "name_sort": "Syrian Arab Republic", "mapcolor7": 2, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 6, "pop_est": 20178485, "gdp_md_est": 98830, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "SY", "iso_a3": "SYR", "iso_n3": "760", "un_a3": "760", "wb_a2": "SY", "wb_a3": "SYR", "woe_id": -99, "adm0_a3_is": "SYR", "adm0_a3_us": "SYR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.349548, 37.230328 ], [ 41.835938, 36.606709 ], [ 41.289368, 36.359375 ], [ 41.382751, 35.628280 ], [ 41.006470, 34.418239 ], [ 38.792725, 33.378706 ], [ 36.834412, 32.312670 ], [ 35.700073, 32.715666 ], [ 35.837402, 32.868053 ], [ 35.820923, 33.277732 ], [ 36.065369, 33.824794 ], [ 36.611938, 34.202716 ], [ 36.447144, 34.594781 ], [ 35.999451, 34.644507 ], [ 35.906067, 35.409200 ], [ 36.150513, 35.822267 ], [ 36.686096, 36.259778 ], [ 36.738281, 36.818080 ], [ 37.067871, 36.622141 ], [ 38.166504, 36.901587 ], [ 38.699341, 36.712467 ], [ 39.523315, 36.716871 ], [ 40.674133, 37.090240 ], [ 41.212463, 37.074902 ], [ 42.349548, 37.230328 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Israel", "adm0_a3": "ISR", "geou_dif": 0, "geounit": "Israel", "gu_a3": "ISR", "su_dif": 0, "subunit": "Israel", "su_a3": "ISR", "brk_diff": 0, "name": "Israel", "name_long": "Israel", "brk_a3": "ISR", "brk_name": "Israel", "abbrev": "Isr.", "postal": "IS", "formal_en": "State of Israel", "name_sort": "Israel", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 9, "pop_est": 7233701, "gdp_md_est": 201400, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "IL", "iso_a3": "ISR", "iso_n3": "376", "un_a3": "376", "wb_a2": "IL", "wb_a3": "ISR", "woe_id": -99, "adm0_a3_is": "ISR", "adm0_a3_us": "ISR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.820923, 33.277732 ], [ 35.837402, 32.868053 ], [ 35.700073, 32.715666 ], [ 35.719299, 32.708733 ], [ 35.546265, 32.393878 ], [ 35.183716, 32.532921 ], [ 35.002441, 31.952162 ], [ 34.974976, 31.865895 ], [ 35.200195, 31.765537 ], [ 34.579468, 31.765537 ], [ 34.683838, 31.952162 ], [ 34.752502, 32.073266 ], [ 34.955750, 32.826519 ], [ 35.098572, 33.080035 ], [ 35.126038, 33.091542 ], [ 35.461121, 33.089240 ], [ 35.551758, 33.263953 ], [ 35.820923, 33.277732 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.778015, 37.385435 ], [ 43.942566, 37.256566 ], [ 44.294128, 37.002553 ], [ 44.772034, 37.171260 ], [ 45.000000, 36.754290 ], [ 45.219727, 36.348315 ], [ 45.219727, 31.765537 ], [ 40.663147, 31.765537 ], [ 40.399475, 31.889219 ], [ 40.122070, 31.952162 ], [ 39.196472, 32.161663 ], [ 38.792725, 33.378706 ], [ 41.006470, 34.418239 ], [ 41.382751, 35.628280 ], [ 41.289368, 36.359375 ], [ 41.835938, 36.606709 ], [ 42.349548, 37.230328 ], [ 42.778015, 37.385435 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Israel", "sov_a3": "ISR", "adm0_dif": 1, "level": 2, "type": "Disputed", "admin": "Palestine", "adm0_a3": "PSX", "geou_dif": 0, "geounit": "Palestine", "gu_a3": "PSX", "su_dif": 0, "subunit": "Palestine", "su_a3": "PSX", "brk_diff": 0, "name": "Palestine", "name_long": "Palestine", "brk_a3": "PSX", "brk_name": "Palestine", "abbrev": "Pal.", "postal": "PAL", "formal_en": "West Bank and Gaza", "note_adm0": "Partial self-admin.", "note_brk": "Partial self-admin.", "name_sort": "Palestine (West Bank and Gaza)", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 4119083, "gdp_md_est": 11950.77, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PS", "iso_a3": "PSE", "iso_n3": "275", "un_a3": "275", "wb_a2": "GZ", "wb_a3": "WBG", "woe_id": -99, "adm0_a3_is": "PSE", "adm0_a3_us": "PSX", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": -99 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.183716, 32.532921 ], [ 35.546265, 32.393878 ], [ 35.546265, 31.781882 ], [ 35.538025, 31.765537 ], [ 35.200195, 31.765537 ], [ 34.974976, 31.865895 ], [ 35.002441, 31.952162 ], [ 35.183716, 32.532921 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.478394, 41.145570 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.753052, 40.741014 ], [ 43.656921, 40.254377 ], [ 44.401245, 40.004476 ], [ 44.794006, 39.713525 ], [ 44.110107, 39.427707 ], [ 44.420471, 38.281313 ], [ 44.225464, 37.972350 ], [ 44.772034, 37.171260 ], [ 44.294128, 37.002553 ], [ 43.942566, 37.256566 ], [ 42.778015, 37.385435 ], [ 42.349548, 37.230328 ], [ 41.212463, 37.074902 ], [ 40.674133, 37.090240 ], [ 39.523315, 36.716871 ], [ 38.699341, 36.712467 ], [ 38.166504, 36.901587 ], [ 37.067871, 36.622141 ], [ 36.738281, 36.818080 ], [ 36.686096, 36.259778 ], [ 36.150513, 35.822267 ], [ 35.782471, 36.275279 ], [ 36.161499, 36.650793 ], [ 35.551758, 36.564806 ], [ 34.714050, 36.796090 ], [ 34.027405, 36.219903 ], [ 33.750000, 36.199958 ], [ 33.530273, 36.182225 ], [ 33.530273, 41.145570 ], [ 37.619934, 41.145570 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.102121 ], [ 40.374756, 41.013066 ], [ 40.671387, 41.145570 ], [ 43.478394, 41.145570 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Jordan", "sov_a3": "JOR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Jordan", "adm0_a3": "JOR", "geou_dif": 0, "geounit": "Jordan", "gu_a3": "JOR", "su_dif": 0, "subunit": "Jordan", "su_a3": "JOR", "brk_diff": 0, "name": "Jordan", "name_long": "Jordan", "brk_a3": "JOR", "brk_name": "Jordan", "abbrev": "Jord.", "postal": "J", "formal_en": "Hashemite Kingdom of Jordan", "name_sort": "Jordan", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 4, "pop_est": 6342948, "gdp_md_est": 31610, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "JO", "iso_a3": "JOR", "iso_n3": "400", "un_a3": "400", "wb_a2": "JO", "wb_a3": "JOR", "woe_id": -99, "adm0_a3_is": "JOR", "adm0_a3_us": "JOR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.792725, 33.378706 ], [ 39.196472, 32.161663 ], [ 39.004211, 32.010405 ], [ 38.770752, 31.952162 ], [ 38.026428, 31.765537 ], [ 35.538025, 31.765537 ], [ 35.546265, 31.781882 ], [ 35.546265, 32.393878 ], [ 35.719299, 32.708733 ], [ 36.834412, 32.312670 ], [ 38.792725, 33.378706 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.196472, 32.161663 ], [ 40.122070, 31.952162 ], [ 40.399475, 31.889219 ], [ 40.663147, 31.765537 ], [ 38.026428, 31.765537 ], [ 38.770752, 31.952162 ], [ 39.004211, 32.010405 ], [ 39.196472, 32.161663 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 45.000000, 39.740986 ], [ 45.219727, 39.544294 ], [ 45.219727, 39.091700 ], [ 45.000000, 39.293923 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.740986 ] ] ], [ [ [ 45.219727, 41.145570 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.054932, 41.145570 ], [ 45.219727, 41.145570 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 39.544294 ], [ 45.000000, 39.740986 ], [ 44.794006, 39.713525 ], [ 44.401245, 40.004476 ], [ 43.656921, 40.254377 ], [ 43.753052, 40.741014 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.057922, 41.145570 ], [ 45.054932, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.293923 ], [ 45.219727, 39.091700 ], [ 45.219727, 36.348315 ], [ 45.000000, 36.754290 ], [ 44.772034, 37.171260 ], [ 44.225464, 37.972350 ], [ 44.420471, 38.281313 ], [ 44.110107, 39.427707 ], [ 44.794006, 39.713525 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 49.066668 ], [ 45.219727, 42.559150 ], [ 45.000000, 42.607685 ], [ 44.538574, 42.712714 ], [ 43.931580, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.078125, 43.552529 ], [ 39.954529, 43.434972 ], [ 38.680115, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.675110, 45.243953 ], [ 37.402954, 45.404235 ], [ 38.232422, 46.240652 ], [ 37.674866, 46.636237 ], [ 39.147034, 47.043926 ], [ 39.122314, 47.262456 ], [ 38.224182, 47.101914 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.896851, 48.231991 ], [ 39.674377, 48.783342 ], [ 39.781494, 48.922499 ], [ 39.894104, 49.066668 ], [ 45.219727, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.894104, 49.066668 ], [ 39.781494, 48.922499 ], [ 39.674377, 48.783342 ], [ 39.896851, 48.231991 ], [ 39.737549, 47.899772 ], [ 38.770752, 47.826064 ], [ 38.254395, 47.546872 ], [ 38.224182, 47.101914 ], [ 37.424927, 47.021461 ], [ 36.760254, 46.698435 ], [ 35.823669, 46.645665 ], [ 34.961243, 46.272936 ], [ 35.021667, 45.650528 ], [ 35.510559, 45.410020 ], [ 36.529541, 45.469762 ], [ 36.334534, 45.112300 ], [ 35.238647, 44.939529 ], [ 33.881836, 44.361169 ], [ 33.750000, 44.410240 ], [ 33.530273, 44.490628 ], [ 33.530273, 44.999767 ], [ 33.546753, 45.034715 ], [ 33.530273, 45.038597 ], [ 33.530273, 45.832627 ], [ 33.587952, 45.851760 ], [ 33.530273, 45.897655 ], [ 33.530273, 49.066668 ], [ 39.894104, 49.066668 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.078125, 43.552529 ], [ 40.921326, 43.383094 ], [ 42.393494, 43.221190 ], [ 43.755798, 42.740961 ], [ 43.931580, 42.555104 ], [ 44.538574, 42.712714 ], [ 45.000000, 42.607685 ], [ 45.219727, 42.559150 ], [ 45.219727, 41.409776 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.267485 ], [ 44.972534, 41.248903 ], [ 43.582764, 41.091772 ], [ 42.618713, 41.582580 ], [ 41.553040, 41.535310 ], [ 41.704102, 41.963575 ], [ 41.454163, 42.646081 ], [ 40.874634, 43.012681 ], [ 40.322571, 43.129052 ], [ 39.954529, 43.434972 ], [ 40.078125, 43.552529 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.167236, 42.041134 ], [ 36.914062, 41.335576 ], [ 38.232422, 40.979898 ], [ 38.347778, 40.948788 ], [ 38.583984, 40.979898 ], [ 39.512329, 41.102121 ], [ 40.374756, 41.013066 ], [ 41.553040, 41.535310 ], [ 42.618713, 41.582580 ], [ 43.582764, 41.091772 ], [ 43.637695, 40.979898 ], [ 43.717346, 40.813809 ], [ 33.530273, 40.813809 ], [ 33.530273, 42.018692 ], [ 33.750000, 42.022773 ], [ 35.167236, 42.041134 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 40.813809 ], [ 43.717346, 40.813809 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.216980, 41.411836 ], [ 45.219727, 41.409776 ], [ 45.219727, 40.967456 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.219727, 40.967456 ], [ 45.219727, 40.813809 ], [ 43.717346, 40.813809 ], [ 43.637695, 40.979898 ], [ 43.582764, 41.091772 ], [ 44.972534, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 49.066668 ], [ 45.219727, 42.559150 ], [ 45.000000, 42.607685 ], [ 44.538574, 42.712714 ], [ 43.931580, 42.555104 ], [ 43.755798, 42.740961 ], [ 42.393494, 43.221190 ], [ 40.921326, 43.383094 ], [ 40.078125, 43.552529 ], [ 39.954529, 43.434972 ], [ 38.680115, 44.280604 ], [ 37.540283, 44.656932 ], [ 36.675110, 45.243953 ], [ 37.402954, 45.404235 ], [ 38.232422, 46.240652 ], [ 37.674866, 46.636237 ], [ 39.147034, 47.043926 ], [ 39.122314, 47.262456 ], [ 38.224182, 47.101914 ], [ 38.254395, 47.546872 ], [ 38.770752, 47.826064 ], [ 39.737549, 47.899772 ], [ 39.896851, 48.231991 ], [ 39.674377, 48.783342 ], [ 39.781494, 48.922499 ], [ 39.894104, 49.066668 ], [ 45.219727, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 19, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 55.899956 ], [ 45.219727, 48.777913 ], [ 39.677124, 48.777913 ], [ 39.674377, 48.783342 ], [ 39.781494, 48.922499 ], [ 40.080872, 49.307217 ], [ 40.069885, 49.601811 ], [ 38.594971, 49.926472 ], [ 38.009949, 49.915862 ], [ 37.394714, 50.384005 ], [ 36.625671, 50.226124 ], [ 35.356750, 50.578004 ], [ 35.378723, 50.774682 ], [ 35.021667, 51.206883 ], [ 34.225159, 51.256758 ], [ 34.142761, 51.566827 ], [ 34.392700, 51.769540 ], [ 33.750000, 52.335339 ], [ 33.530273, 52.315195 ], [ 33.530273, 55.899956 ], [ 45.219727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Ukraine", "sov_a3": "UKR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ukraine", "adm0_a3": "UKR", "geou_dif": 0, "geounit": "Ukraine", "gu_a3": "UKR", "su_dif": 0, "subunit": "Ukraine", "su_a3": "UKR", "brk_diff": 0, "name": "Ukraine", "name_long": "Ukraine", "brk_a3": "UKR", "brk_name": "Ukraine", "abbrev": "Ukr.", "postal": "UA", "formal_en": "Ukraine", "name_sort": "Ukraine", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 3, "pop_est": 45700395, "gdp_md_est": 339800, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UA", "iso_a3": "UKR", "iso_n3": "804", "un_a3": "804", "wb_a2": "UA", "wb_a3": "UKR", "woe_id": -99, "adm0_a3_is": "UKR", "adm0_a3_us": "UKR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.335339 ], [ 34.392700, 51.769540 ], [ 34.142761, 51.566827 ], [ 34.225159, 51.256758 ], [ 35.021667, 51.206883 ], [ 35.378723, 50.774682 ], [ 35.356750, 50.578004 ], [ 36.625671, 50.226124 ], [ 37.394714, 50.384005 ], [ 38.009949, 49.915862 ], [ 38.594971, 49.926472 ], [ 40.069885, 49.601811 ], [ 40.080872, 49.307217 ], [ 39.781494, 48.922499 ], [ 39.674377, 48.783342 ], [ 39.677124, 48.777913 ], [ 33.530273, 48.777913 ], [ 33.530273, 52.315195 ], [ 33.750000, 52.335339 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.219727, 55.899956 ], [ 45.219727, 48.777913 ], [ 39.677124, 48.777913 ], [ 39.674377, 48.783342 ], [ 39.781494, 48.922499 ], [ 40.080872, 49.307217 ], [ 40.069885, 49.601811 ], [ 38.594971, 49.926472 ], [ 38.009949, 49.915862 ], [ 37.394714, 50.384005 ], [ 36.625671, 50.226124 ], [ 35.356750, 50.578004 ], [ 35.378723, 50.774682 ], [ 35.021667, 51.206883 ], [ 34.225159, 51.256758 ], [ 34.142761, 51.566827 ], [ 34.392700, 51.769540 ], [ 33.750000, 52.335339 ], [ 33.530273, 52.315195 ], [ 33.530273, 55.899956 ], [ 45.219727, 55.899956 ] ] ] } } ] } ] } , @@ -5363,9 +5331,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Ethiopia", "sov_a3": "ETH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Ethiopia", "adm0_a3": "ETH", "geou_dif": 0, "geounit": "Ethiopia", "gu_a3": "ETH", "su_dif": 0, "subunit": "Ethiopia", "su_a3": "ETH", "brk_diff": 0, "name": "Ethiopia", "name_long": "Ethiopia", "brk_a3": "ETH", "brk_name": "Ethiopia", "abbrev": "Eth.", "postal": "ET", "formal_en": "Federal Democratic Republic of Ethiopia", "name_sort": "Ethiopia", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 13, "pop_est": 85237338, "gdp_md_est": 68770, "pop_year": -99, "lastcensus": 2007, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "ET", "iso_a3": "ETH", "iso_n3": "231", "un_a3": "231", "wb_a2": "ET", "wb_a3": "ETH", "woe_id": -99, "adm0_a3_is": "ETH", "adm0_a3_us": "ETH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 8.784654 ], [ 45.000000, 8.703214 ], [ 46.947327, 7.996677 ], [ 47.790527, 8.002117 ], [ 45.000000, 5.038963 ], [ 44.964294, 5.000658 ], [ 44.780273, 4.995186 ], [ 44.780273, 8.784654 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.045227, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.524173 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.038963 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.941345, 11.393879 ], [ 48.938599, 11.178402 ], [ 48.938599, 9.451771 ], [ 48.485413, 8.838937 ], [ 47.790527, 8.002117 ], [ 46.947327, 7.996677 ], [ 45.000000, 8.703214 ], [ 44.780273, 8.784654 ], [ 44.780273, 10.487812 ], [ 45.000000, 10.547221 ], [ 45.557556, 10.698394 ], [ 46.645203, 10.817120 ], [ 47.526855, 11.127202 ], [ 47.919617, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.683167, 11.393879 ], [ 48.941345, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.078186, 11.393879 ], [ 51.045227, 11.178402 ], [ 51.045227, 10.641713 ], [ 50.833740, 10.279789 ], [ 50.553589, 9.199715 ], [ 50.070190, 8.080985 ], [ 49.452209, 6.803717 ], [ 48.595276, 5.339848 ], [ 47.741089, 4.220421 ], [ 46.565552, 2.855263 ], [ 45.563049, 2.045769 ], [ 45.000000, 1.672431 ], [ 44.780273, 1.524173 ], [ 44.780273, 4.995186 ], [ 44.964294, 5.000658 ], [ 45.000000, 5.038963 ], [ 47.790527, 8.002117 ], [ 48.485413, 8.838937 ], [ 48.938599, 9.451771 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.393879 ], [ 51.078186, 11.393879 ] ] ] } } ] } ] } , @@ -5373,13 +5341,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.571594, 22.146708 ], [ 55.667725, 21.999082 ], [ 55.648499, 21.943046 ], [ 55.000305, 19.999160 ], [ 52.001038, 18.999803 ], [ 49.117126, 18.617616 ], [ 48.183289, 18.166730 ], [ 47.466431, 17.117168 ], [ 46.999512, 16.949097 ], [ 46.749573, 17.282464 ], [ 46.367798, 17.232628 ], [ 45.401001, 17.332286 ], [ 45.216980, 17.434511 ], [ 45.000000, 17.429270 ], [ 44.780273, 17.426649 ], [ 44.780273, 22.146708 ], [ 55.571594, 22.146708 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.049256 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.662231, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.274963, 17.227382 ], [ 54.791565, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.707232 ], [ 53.107910, 16.651981 ], [ 52.001038, 18.999803 ], [ 55.000305, 19.999160 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Yemen", "sov_a3": "YEM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Yemen", "adm0_a3": "YEM", "geou_dif": 0, "geounit": "Yemen", "gu_a3": "YEM", "su_dif": 0, "subunit": "Yemen", "su_a3": "YEM", "brk_diff": 0, "name": "Yemen", "name_long": "Yemen", "brk_a3": "YEM", "brk_name": "Yemen", "abbrev": "Yem.", "postal": "YE", "formal_en": "Republic of Yemen", "name_sort": "Yemen, Rep.", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 23822783, "gdp_md_est": 55280, "pop_year": -99, "lastcensus": 2004, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "YE", "iso_a3": "YEM", "iso_n3": "887", "un_a3": "887", "wb_a2": "RY", "wb_a3": "YEM", "woe_id": -99, "adm0_a3_is": "YEM", "adm0_a3_us": "YEM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.001038, 18.999803 ], [ 53.107910, 16.651981 ], [ 52.385559, 16.383391 ], [ 52.190552, 15.937561 ], [ 52.168579, 15.596584 ], [ 51.171570, 15.175530 ], [ 49.575806, 14.708478 ], [ 48.680420, 14.003367 ], [ 48.238220, 13.947396 ], [ 47.938843, 14.006031 ], [ 47.353821, 13.592600 ], [ 46.716614, 13.400307 ], [ 45.878906, 13.346865 ], [ 45.626221, 13.290738 ], [ 45.406494, 13.025966 ], [ 45.145569, 12.953706 ], [ 45.000000, 12.718047 ], [ 44.989014, 12.699292 ], [ 44.780273, 12.707330 ], [ 44.780273, 17.426649 ], [ 45.000000, 17.429270 ], [ 45.216980, 17.434511 ], [ 45.401001, 17.332286 ], [ 46.367798, 17.232628 ], [ 46.749573, 17.282464 ], [ 46.999512, 16.949097 ], [ 47.466431, 17.117168 ], [ 48.183289, 18.166730 ], [ 49.117126, 18.617616 ], [ 52.001038, 18.999803 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.045227, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 22.146708 ], [ 56.469727, 18.049256 ], [ 56.282959, 17.876817 ], [ 56.250000, 17.876817 ], [ 55.662231, 17.884659 ], [ 55.269470, 17.633552 ], [ 55.274963, 17.227382 ], [ 54.791565, 16.951724 ], [ 54.239502, 17.046281 ], [ 53.569336, 16.707232 ], [ 53.107910, 16.651981 ], [ 52.001038, 18.999803 ], [ 55.000305, 19.999160 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.571594, 22.146708 ], [ 56.469727, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Somaliland", "sov_a3": "SOL", "adm0_dif": 0, "level": 2, "type": "Indeterminate", "admin": "Somaliland", "adm0_a3": "SOL", "geou_dif": 0, "geounit": "Somaliland", "gu_a3": "SOL", "su_dif": 0, "subunit": "Somaliland", "su_a3": "SOL", "brk_diff": 1, "name": "Somaliland", "name_long": "Somaliland", "brk_a3": "B30", "brk_name": "Somaliland", "abbrev": "Solnd.", "postal": "SL", "formal_en": "Republic of Somaliland", "note_adm0": "Self admin.", "note_brk": "Self admin.; Claimed by Somalia", "name_sort": "Somaliland", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 2, "pop_est": 3500000, "gdp_md_est": 12250, "pop_year": -99, "lastcensus": -99, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "-99", "wb_a3": "-99", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 10, "long_len": 10, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.946838, 11.410033 ], [ 48.941345, 11.393879 ], [ 48.938599, 11.178402 ], [ 48.938599, 10.962764 ], [ 47.059937, 10.962764 ], [ 47.526855, 11.127202 ], [ 47.919617, 11.178402 ], [ 48.021240, 11.191874 ], [ 48.378296, 11.375031 ], [ 48.946838, 11.410033 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Somalia", "sov_a3": "SOM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Somalia", "adm0_a3": "SOM", "geou_dif": 0, "geounit": "Somalia", "gu_a3": "SOM", "su_dif": 0, "subunit": "Somalia", "su_a3": "SOM", "brk_diff": 0, "name": "Somalia", "name_long": "Somalia", "brk_a3": "SOM", "brk_name": "Somalia", "abbrev": "Som.", "postal": "SO", "formal_en": "Federal Republic of Somalia", "name_sort": "Somalia", "mapcolor7": 2, "mapcolor8": 8, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 9832017, "gdp_md_est": 5524, "pop_year": -99, "lastcensus": 1987, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "SO", "iso_a3": "SOM", "iso_n3": "706", "un_a3": "706", "wb_a2": "SO", "wb_a3": "SOM", "woe_id": -99, "adm0_a3_is": "SOM", "adm0_a3_us": "SOM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Africa", "region_un": "Africa", "subregion": "Eastern Africa", "region_wb": "Sub-Saharan Africa", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.111145, 12.025889 ], [ 51.133118, 11.749059 ], [ 51.045227, 11.178402 ], [ 51.042480, 10.962764 ], [ 48.938599, 10.962764 ], [ 48.938599, 11.178402 ], [ 48.941345, 11.393879 ], [ 48.946838, 11.410033 ], [ 49.268188, 11.431571 ], [ 49.729614, 11.579597 ], [ 50.259705, 11.679135 ], [ 50.732117, 12.023203 ], [ 51.111145, 12.025889 ] ] ] } } ] } ] } , @@ -5389,6 +5357,8 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Saudi Arabia", "sov_a3": "SAU", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Saudi Arabia", "adm0_a3": "SAU", "geou_dif": 0, "geounit": "Saudi Arabia", "gu_a3": "SAU", "su_dif": 0, "subunit": "Saudi Arabia", "su_a3": "SAU", "brk_diff": 0, "name": "Saudi Arabia", "name_long": "Saudi Arabia", "brk_a3": "SAU", "brk_name": "Saudi Arabia", "abbrev": "Saud.", "postal": "SA", "formal_en": "Kingdom of Saudi Arabia", "name_sort": "Saudi Arabia", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 7, "pop_est": 28686633, "gdp_md_est": 576500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "SA", "iso_a3": "SAU", "iso_n3": "682", "un_a3": "682", "wb_a2": "SA", "wb_a3": "SAU", "woe_id": -99, "adm0_a3_is": "SAU", "adm0_a3_us": "SAU", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 12, "long_len": 12, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 29.176145 ], [ 45.000000, 29.166552 ], [ 46.568298, 29.099377 ], [ 47.460938, 29.003336 ], [ 47.708130, 28.526622 ], [ 48.416748, 28.553164 ], [ 48.806763, 27.690824 ], [ 49.298401, 27.461976 ], [ 49.471436, 27.110479 ], [ 50.152588, 26.689183 ], [ 50.213013, 26.276177 ], [ 50.114136, 25.943227 ], [ 50.240479, 25.606856 ], [ 50.526123, 25.326649 ], [ 50.660706, 25.000994 ], [ 50.809021, 24.754314 ], [ 51.111145, 24.557116 ], [ 51.388550, 24.627045 ], [ 51.580811, 24.244460 ], [ 51.616516, 24.013853 ], [ 52.001038, 23.001380 ], [ 55.005798, 22.497332 ], [ 55.209045, 22.707789 ], [ 55.667725, 21.999082 ], [ 55.648499, 21.943046 ], [ 55.579834, 21.739091 ], [ 44.780273, 21.739091 ], [ 44.780273, 29.176145 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.683411, 31.952162 ], [ 47.557068, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kuwait", "sov_a3": "KWT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kuwait", "adm0_a3": "KWT", "geou_dif": 0, "geounit": "Kuwait", "gu_a3": "KWT", "su_dif": 0, "subunit": "Kuwait", "su_a3": "KWT", "brk_diff": 0, "name": "Kuwait", "name_long": "Kuwait", "brk_a3": "KWT", "brk_name": "Kuwait", "abbrev": "Kwt.", "postal": "KW", "formal_en": "State of Kuwait", "name_sort": "Kuwait", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 2691158, "gdp_md_est": 149100, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "KW", "iso_a3": "KWT", "iso_n3": "414", "un_a3": "414", "wb_a2": "KW", "wb_a3": "KWT", "woe_id": -99, "adm0_a3_is": "KWT", "adm0_a3_us": "KWT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.301636, 30.059586 ], [ 47.974548, 29.976349 ], [ 48.183289, 29.535230 ], [ 48.092651, 29.305561 ], [ 48.416748, 28.553164 ], [ 47.708130, 28.526622 ], [ 47.460938, 29.003336 ], [ 46.568298, 29.099377 ], [ 47.301636, 30.059586 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Qatar", "sov_a3": "QAT", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Qatar", "adm0_a3": "QAT", "geou_dif": 0, "geounit": "Qatar", "gu_a3": "QAT", "su_dif": 0, "subunit": "Qatar", "su_a3": "QAT", "brk_diff": 0, "name": "Qatar", "name_long": "Qatar", "brk_a3": "QAT", "brk_name": "Qatar", "abbrev": "Qatar", "postal": "QA", "formal_en": "State of Qatar", "name_sort": "Qatar", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 4, "pop_est": 833285, "gdp_md_est": 91330, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "QA", "iso_a3": "QAT", "iso_n3": "634", "un_a3": "634", "wb_a2": "QA", "wb_a3": "QAT", "woe_id": -99, "adm0_a3_is": "QAT", "adm0_a3_us": "QAT", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.286926, 26.113520 ], [ 51.589050, 25.799891 ], [ 51.605530, 25.214881 ], [ 51.388550, 24.627045 ], [ 51.111145, 24.557116 ], [ 50.809021, 24.754314 ], [ 50.743103, 25.482951 ], [ 51.012268, 26.007424 ], [ 51.286926, 26.113520 ] ] ] } } @@ -5396,8 +5366,6 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 55.887451, 24.921313 ], [ 55.805054, 24.269501 ], [ 55.980835, 24.131715 ], [ 55.527649, 23.933545 ], [ 55.524902, 23.523700 ], [ 55.233765, 23.110049 ], [ 55.209045, 22.707789 ], [ 55.005798, 22.497332 ], [ 52.001038, 23.001380 ], [ 51.616516, 24.013853 ], [ 51.580811, 24.244460 ], [ 51.756592, 24.294537 ], [ 51.795044, 24.018871 ], [ 52.577820, 24.176825 ], [ 53.404541, 24.151766 ], [ 54.008789, 24.121689 ], [ 54.692688, 24.796708 ], [ 55.439758, 25.438314 ], [ 56.071472, 26.054315 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.469727, 24.811668 ], [ 56.469727, 21.739091 ], [ 55.579834, 21.739091 ], [ 55.648499, 21.943046 ], [ 55.667725, 21.999082 ], [ 55.209045, 22.707789 ], [ 55.233765, 23.110049 ], [ 55.524902, 23.523700 ], [ 55.527649, 23.933545 ], [ 55.980835, 24.131715 ], [ 55.805054, 24.269501 ], [ 55.887451, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.469727, 26.320498 ], [ 56.469727, 26.236766 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 32.138409 ], [ 56.469727, 27.137368 ], [ 56.250000, 27.086028 ], [ 55.722656, 26.963694 ], [ 54.714661, 26.480407 ], [ 53.492432, 26.811815 ], [ 52.484436, 27.581329 ], [ 51.520386, 27.865789 ], [ 50.852966, 28.813393 ], [ 50.114136, 30.147502 ], [ 49.575806, 29.985866 ], [ 48.941345, 30.315988 ], [ 48.567810, 29.926374 ], [ 48.015747, 30.453409 ], [ 48.004761, 30.984673 ], [ 47.686157, 30.984673 ], [ 47.848206, 31.709476 ], [ 47.683411, 31.952162 ], [ 47.557068, 32.138409 ], [ 56.469727, 32.138409 ] ] ] } } ] } ] } , @@ -5405,43 +5373,43 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.595764, 41.145570 ], [ 46.502380, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.909119, 41.145570 ], [ 46.595764, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 37.155939 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.076660, 35.677379 ], [ 46.150818, 35.092945 ], [ 45.648193, 34.748383 ], [ 45.417480, 33.968420 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.683411, 31.952162 ], [ 47.809753, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.155939 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Turkey", "sov_a3": "TUR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkey", "adm0_a3": "TUR", "geou_dif": 0, "geounit": "Turkey", "gu_a3": "TUR", "su_dif": 0, "subunit": "Turkey", "su_a3": "TUR", "brk_diff": 0, "name": "Turkey", "name_long": "Turkey", "brk_a3": "TUR", "brk_name": "Turkey", "abbrev": "Tur.", "postal": "TR", "formal_en": "Republic of Turkey", "name_sort": "Turkey", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 8, "mapcolor13": 4, "pop_est": 76805524, "gdp_md_est": 902700, "pop_year": -99, "lastcensus": 2000, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TR", "iso_a3": "TUR", "iso_n3": "792", "un_a3": "792", "wb_a2": "TR", "wb_a3": "TUR", "woe_id": -99, "adm0_a3_is": "TUR", "adm0_a3_us": "TUR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 39.724089 ], [ 44.794006, 39.713525 ], [ 44.780273, 39.707187 ], [ 44.780273, 39.724089 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.210510, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.054932, 41.145570 ], [ 45.909119, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.210510, 41.145570 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.293923 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.740986 ] ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.054932, 41.145570 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.560303, 40.811730 ], [ 45.359802, 40.561808 ], [ 45.892639, 40.218733 ], [ 45.609741, 39.899202 ], [ 46.035461, 39.628961 ], [ 46.483154, 39.463764 ], [ 46.505127, 38.771216 ], [ 46.142578, 38.741231 ], [ 45.736084, 39.319425 ], [ 45.738831, 39.474365 ], [ 45.299377, 39.472245 ], [ 45.000000, 39.740986 ], [ 44.794006, 39.713525 ], [ 44.780273, 39.724089 ], [ 44.780273, 41.145570 ], [ 45.054932, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.965854 ], [ 56.181335, 37.935533 ], [ 55.511169, 37.963689 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.736877, 37.905199 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.289671 ], [ 53.357849, 39.975015 ], [ 52.693176, 40.033924 ], [ 52.915649, 40.876141 ], [ 53.857727, 40.630630 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.503174, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.816772, 41.145570 ], [ 52.814026, 41.135227 ], [ 52.808533, 41.145570 ], [ 52.816772, 41.145570 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Iraq", "sov_a3": "IRQ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iraq", "adm0_a3": "IRQ", "geou_dif": 0, "geounit": "Iraq", "gu_a3": "IRQ", "su_dif": 0, "subunit": "Iraq", "su_a3": "IRQ", "brk_diff": 0, "name": "Iraq", "name_long": "Iraq", "brk_a3": "IRQ", "brk_name": "Iraq", "abbrev": "Iraq", "postal": "IRQ", "formal_en": "Republic of Iraq", "name_sort": "Iraq", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 1, "pop_est": 31129225, "gdp_md_est": 103900, "pop_year": -99, "lastcensus": 1997, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IQ", "iso_a3": "IRQ", "iso_n3": "368", "un_a3": "368", "wb_a2": "IQ", "wb_a3": "IRQ", "woe_id": -99, "adm0_a3_is": "IRQ", "adm0_a3_us": "IRQ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 37.155939 ], [ 45.000000, 36.754290 ], [ 45.420227, 35.978006 ], [ 46.076660, 35.677379 ], [ 46.150818, 35.092945 ], [ 45.648193, 34.748383 ], [ 45.417480, 33.968420 ], [ 46.109619, 33.017876 ], [ 47.334595, 32.468061 ], [ 47.683411, 31.952162 ], [ 47.809753, 31.765537 ], [ 44.780273, 31.765537 ], [ 44.780273, 37.155939 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 49.210510, 41.145570 ], [ 49.328613, 40.979898 ], [ 49.619751, 40.572240 ], [ 50.083923, 40.526327 ], [ 50.391541, 40.256473 ], [ 49.570312, 40.176775 ], [ 49.394531, 39.400122 ], [ 49.224243, 39.049052 ], [ 48.856201, 38.816171 ], [ 48.883667, 38.320111 ], [ 48.633728, 38.270532 ], [ 48.010254, 38.794768 ], [ 48.356323, 39.289671 ], [ 48.059692, 39.582407 ], [ 47.686157, 39.508279 ], [ 46.505127, 38.771216 ], [ 46.483154, 39.463764 ], [ 46.035461, 39.628961 ], [ 45.609741, 39.899202 ], [ 45.892639, 40.218733 ], [ 45.359802, 40.561808 ], [ 45.560303, 40.811730 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.054932, 41.145570 ], [ 45.909119, 41.145570 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.595764, 41.145570 ], [ 49.210510, 41.145570 ] ] ], [ [ [ 45.000000, 39.740986 ], [ 45.299377, 39.472245 ], [ 45.738831, 39.474365 ], [ 45.736084, 39.319425 ], [ 46.142578, 38.741231 ], [ 45.458679, 38.873929 ], [ 45.000000, 39.293923 ], [ 44.953308, 39.336422 ], [ 44.794006, 39.713525 ], [ 45.000000, 39.740986 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.794006, 39.713525 ], [ 44.953308, 39.336422 ], [ 45.000000, 39.293923 ], [ 45.458679, 38.873929 ], [ 46.142578, 38.741231 ], [ 46.505127, 38.771216 ], [ 47.686157, 39.508279 ], [ 48.059692, 39.582407 ], [ 48.356323, 39.289671 ], [ 48.010254, 38.794768 ], [ 48.633728, 38.270532 ], [ 48.883667, 38.320111 ], [ 49.199524, 37.583766 ], [ 50.147095, 37.374523 ], [ 50.841980, 36.873029 ], [ 52.264709, 36.701458 ], [ 53.824768, 36.965255 ], [ 53.920898, 37.199706 ], [ 54.799805, 37.391982 ], [ 55.511169, 37.963689 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.469727, 38.058905 ], [ 56.469727, 31.765537 ], [ 47.809753, 31.765537 ], [ 47.683411, 31.952162 ], [ 47.334595, 32.468061 ], [ 46.109619, 33.017876 ], [ 45.417480, 33.968420 ], [ 45.648193, 34.748383 ], [ 46.150818, 35.092945 ], [ 46.076660, 35.677379 ], [ 45.420227, 35.978006 ], [ 45.000000, 36.754290 ], [ 44.780273, 37.155939 ], [ 44.780273, 39.707187 ], [ 44.794006, 39.713525 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.469727, 41.145570 ], [ 56.469727, 38.058905 ], [ 56.250000, 37.965854 ], [ 56.181335, 37.935533 ], [ 55.511169, 37.963689 ], [ 54.799805, 37.391982 ], [ 53.920898, 37.199706 ], [ 53.736877, 37.905199 ], [ 53.879700, 38.953001 ], [ 53.099670, 39.289671 ], [ 53.357849, 39.975015 ], [ 52.693176, 40.033924 ], [ 52.915649, 40.876141 ], [ 53.857727, 40.630630 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.503174, 41.145570 ], [ 56.469727, 41.145570 ] ] ], [ [ [ 52.816772, 41.145570 ], [ 52.814026, 41.135227 ], [ 52.808533, 41.145570 ], [ 52.816772, 41.145570 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.977539, 49.066668 ], [ 46.867676, 48.922499 ], [ 46.466675, 48.394562 ], [ 47.315369, 47.715306 ], [ 48.056946, 47.743017 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.560749 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.659924 ], [ 47.491150, 42.986567 ], [ 48.584290, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.826595 ], [ 46.406250, 41.861379 ], [ 45.777283, 42.092108 ], [ 45.469666, 42.502478 ], [ 45.000000, 42.609706 ], [ 44.780273, 42.658202 ], [ 44.780273, 49.066668 ], [ 46.977539, 49.066668 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Georgia", "sov_a3": "GEO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Georgia", "adm0_a3": "GEO", "geou_dif": 0, "geounit": "Georgia", "gu_a3": "GEO", "su_dif": 0, "subunit": "Georgia", "su_a3": "GEO", "brk_diff": 0, "name": "Georgia", "name_long": "Georgia", "brk_a3": "GEO", "brk_name": "Georgia", "abbrev": "Geo.", "postal": "GE", "formal_en": "Georgia", "name_sort": "Georgia", "mapcolor7": 5, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 2, "pop_est": 4615807, "gdp_md_est": 21510, "pop_year": -99, "lastcensus": 2002, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "GE", "iso_a3": "GEO", "iso_n3": "268", "un_a3": "268", "wb_a2": "GE", "wb_a3": "GEO", "woe_id": -99, "adm0_a3_is": "GEO", "adm0_a3_us": "GEO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.780273, 42.658202 ], [ 45.000000, 42.609706 ], [ 45.469666, 42.502478 ], [ 45.777283, 42.092108 ], [ 46.406250, 41.861379 ], [ 46.145325, 41.722131 ], [ 46.636963, 41.180721 ], [ 46.502380, 41.064857 ], [ 45.961304, 41.124884 ], [ 45.216980, 41.411836 ], [ 45.000000, 41.267485 ], [ 44.972534, 41.248903 ], [ 44.780273, 41.226183 ], [ 44.780273, 42.658202 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.826595 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.988281, 41.405656 ], [ 48.584290, 41.808173 ], [ 49.111633, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.449463, 40.813809 ], [ 45.554810, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.636963, 41.180721 ], [ 46.145325, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.554810, 40.813809 ], [ 44.780273, 40.813809 ], [ 44.780273, 41.226183 ], [ 44.972534, 41.248903 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 49.066668 ], [ 56.469727, 45.120053 ], [ 56.250000, 45.069641 ], [ 55.928650, 44.995883 ], [ 55.967102, 41.308761 ], [ 55.456238, 41.259227 ], [ 54.755859, 42.043174 ], [ 54.080200, 42.324032 ], [ 52.943115, 42.116561 ], [ 52.503662, 41.783601 ], [ 52.445984, 42.026854 ], [ 52.693176, 42.443728 ], [ 52.500916, 42.791370 ], [ 51.341858, 43.133061 ], [ 50.891418, 44.030346 ], [ 50.339355, 44.284537 ], [ 50.306396, 44.610023 ], [ 51.278687, 44.514135 ], [ 51.317139, 45.245887 ], [ 52.168579, 45.408092 ], [ 53.041992, 45.259422 ], [ 53.220520, 46.234953 ], [ 53.041992, 46.852678 ], [ 52.042236, 46.803820 ], [ 51.190796, 47.049540 ], [ 50.034485, 46.609828 ], [ 49.100647, 46.399988 ], [ 48.592529, 46.560749 ], [ 48.694153, 47.075734 ], [ 48.056946, 47.743017 ], [ 47.315369, 47.715306 ], [ 46.466675, 48.394562 ], [ 46.867676, 48.922499 ], [ 46.977539, 49.066668 ], [ 56.469727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Armenia", "sov_a3": "ARM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Armenia", "adm0_a3": "ARM", "geou_dif": 0, "geounit": "Armenia", "gu_a3": "ARM", "su_dif": 0, "subunit": "Armenia", "su_a3": "ARM", "brk_diff": 0, "name": "Armenia", "name_long": "Armenia", "brk_a3": "ARM", "brk_name": "Armenia", "abbrev": "Arm.", "postal": "ARM", "formal_en": "Republic of Armenia", "name_sort": "Armenia", "mapcolor7": 3, "mapcolor8": 1, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 2967004, "gdp_md_est": 18770, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AM", "iso_a3": "ARM", "iso_n3": "051", "un_a3": "051", "wb_a2": "AM", "wb_a3": "ARM", "woe_id": -99, "adm0_a3_is": "ARM", "adm0_a3_us": "ARM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.972534, 41.248903 ], [ 45.000000, 41.213788 ], [ 45.178528, 40.986118 ], [ 45.192261, 40.979898 ], [ 45.554810, 40.813809 ], [ 44.780273, 40.813809 ], [ 44.780273, 41.226183 ], [ 44.972534, 41.248903 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Azerbaijan", "sov_a3": "AZE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Azerbaijan", "adm0_a3": "AZE", "geou_dif": 0, "geounit": "Azerbaijan", "gu_a3": "AZE", "su_dif": 0, "subunit": "Azerbaijan", "su_a3": "AZE", "brk_diff": 0, "name": "Azerbaijan", "name_long": "Azerbaijan", "brk_a3": "AZE", "brk_name": "Azerbaijan", "abbrev": "Aze.", "postal": "AZ", "formal_en": "Republic of Azerbaijan", "name_sort": "Azerbaijan", "mapcolor7": 1, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 8, "pop_est": 8238672, "gdp_md_est": 77610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "AZ", "iso_a3": "AZE", "iso_n3": "031", "un_a3": "031", "wb_a2": "AZ", "wb_a3": "AZE", "woe_id": -99, "adm0_a3_is": "AZE", "adm0_a3_us": "AZE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.406250, 41.861379 ], [ 46.686401, 41.826595 ], [ 47.373047, 41.219986 ], [ 47.815247, 41.151774 ], [ 47.988281, 41.405656 ], [ 48.584290, 41.808173 ], [ 49.111633, 41.281935 ], [ 49.328613, 40.979898 ], [ 49.449463, 40.813809 ], [ 45.554810, 40.813809 ], [ 45.192261, 40.979898 ], [ 45.178528, 40.986118 ], [ 45.000000, 41.213788 ], [ 44.972534, 41.248903 ], [ 45.000000, 41.267485 ], [ 45.216980, 41.411836 ], [ 45.961304, 41.124884 ], [ 46.502380, 41.064857 ], [ 46.636963, 41.180721 ], [ 46.145325, 41.722131 ], [ 46.406250, 41.861379 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.915649, 40.876141 ], [ 53.154602, 40.813809 ], [ 52.899170, 40.813809 ], [ 52.915649, 40.876141 ] ] ], [ [ [ 54.360352, 40.813809 ], [ 54.736633, 40.950863 ], [ 54.700928, 40.979898 ], [ 54.008789, 41.551756 ], [ 53.720398, 42.122673 ], [ 52.915649, 41.867516 ], [ 52.814026, 41.135227 ], [ 52.503662, 41.783601 ], [ 52.943115, 42.116561 ], [ 54.080200, 42.324032 ], [ 54.755859, 42.043174 ], [ 55.456238, 41.259227 ], [ 55.967102, 41.308761 ], [ 56.250000, 41.312887 ], [ 56.469727, 41.314950 ], [ 56.469727, 40.813809 ], [ 54.360352, 40.813809 ] ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 45.120053 ], [ 56.469727, 41.314950 ], [ 56.250000, 41.312887 ], [ 55.967102, 41.308761 ], [ 55.928650, 44.995883 ], [ 56.250000, 45.069641 ], [ 56.469727, 45.120053 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 46.977539, 49.066668 ], [ 46.867676, 48.922499 ], [ 46.466675, 48.394562 ], [ 47.315369, 47.715306 ], [ 48.056946, 47.743017 ], [ 48.694153, 47.075734 ], [ 48.592529, 46.560749 ], [ 49.100647, 46.399988 ], [ 48.644714, 45.805829 ], [ 47.675171, 45.640928 ], [ 46.680908, 44.610023 ], [ 47.590027, 43.659924 ], [ 47.491150, 42.986567 ], [ 48.584290, 41.808173 ], [ 47.988281, 41.405656 ], [ 47.815247, 41.151774 ], [ 47.373047, 41.219986 ], [ 46.686401, 41.826595 ], [ 46.406250, 41.861379 ], [ 45.777283, 42.092108 ], [ 45.469666, 42.502478 ], [ 45.000000, 42.609706 ], [ 44.780273, 42.658202 ], [ 44.780273, 49.066668 ], [ 46.977539, 49.066668 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 20, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 55.899956 ], [ 56.469727, 50.920351 ], [ 56.250000, 50.833698 ], [ 55.717163, 50.621588 ], [ 54.533386, 51.025849 ], [ 52.327881, 51.718521 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.605903 ], [ 48.578796, 49.875168 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.355545 ], [ 47.043457, 49.151173 ], [ 46.867676, 48.922499 ], [ 46.757812, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.327881, 51.718521 ], [ 54.533386, 51.025849 ], [ 55.717163, 50.621588 ], [ 56.250000, 50.833698 ], [ 56.469727, 50.920351 ], [ 56.469727, 48.777913 ], [ 46.757812, 48.777913 ], [ 46.867676, 48.922499 ], [ 47.043457, 49.151173 ], [ 46.752319, 49.355545 ], [ 47.548828, 50.454007 ], [ 48.578796, 49.875168 ], [ 48.702393, 50.605903 ], [ 50.767822, 51.692990 ], [ 52.327881, 51.718521 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.469727, 55.899956 ], [ 56.469727, 50.920351 ], [ 56.250000, 50.833698 ], [ 55.717163, 50.621588 ], [ 54.533386, 51.025849 ], [ 52.327881, 51.718521 ], [ 50.767822, 51.692990 ], [ 48.702393, 50.605903 ], [ 48.578796, 49.875168 ], [ 47.548828, 50.454007 ], [ 46.752319, 49.355545 ], [ 47.043457, 49.151173 ], [ 46.867676, 48.922499 ], [ 46.757812, 48.777913 ], [ 44.780273, 48.777913 ], [ 44.780273, 55.899956 ], [ 56.469727, 55.899956 ] ] ] } } ] } ] } , @@ -5543,15 +5511,15 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.869751, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.379434 ], [ 61.781616, 30.734754 ], [ 60.875244, 29.828731 ], [ 61.369629, 29.303166 ], [ 61.770630, 28.700225 ], [ 62.729187, 28.260844 ], [ 62.756653, 27.379084 ], [ 63.234558, 27.217999 ], [ 63.316956, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.498718, 25.078136 ], [ 59.617310, 25.381254 ], [ 58.526917, 25.609333 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 56.250000, 27.086028 ], [ 56.030273, 27.034664 ], [ 56.030273, 32.138409 ], [ 60.869751, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "United Arab Emirates", "sov_a3": "ARE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "United Arab Emirates", "adm0_a3": "ARE", "geou_dif": 0, "geounit": "United Arab Emirates", "gu_a3": "ARE", "su_dif": 0, "subunit": "United Arab Emirates", "su_a3": "ARE", "brk_diff": 0, "name": "United Arab Emirates", "name_long": "United Arab Emirates", "brk_a3": "ARE", "brk_name": "United Arab Emirates", "abbrev": "U.A.E.", "postal": "AE", "formal_en": "United Arab Emirates", "name_sort": "United Arab Emirates", "mapcolor7": 2, "mapcolor8": 1, "mapcolor9": 3, "mapcolor13": 3, "pop_est": 4798491, "gdp_md_est": 184300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "AE", "iso_a3": "ARE", "iso_n3": "784", "un_a3": "784", "wb_a2": "AE", "wb_a3": "ARE", "woe_id": -99, "adm0_a3_is": "ARE", "adm0_a3_us": "ARE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 20, "long_len": 20, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.071472, 26.054315 ], [ 56.250000, 25.735581 ], [ 56.260986, 25.715786 ], [ 56.395569, 24.923804 ], [ 56.250000, 24.923804 ], [ 56.030273, 24.921313 ], [ 56.030273, 26.014829 ], [ 56.071472, 26.054315 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.393502 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.304368 ], [ 66.382141, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.047302, 29.473079 ], [ 64.349670, 29.559123 ], [ 64.149170, 29.341481 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.317536 ], [ 60.875244, 29.828731 ], [ 61.781616, 30.734754 ], [ 61.699219, 31.379434 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.869751, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Oman", "sov_a3": "OMN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Oman", "adm0_a3": "OMN", "geou_dif": 0, "geounit": "Oman", "gu_a3": "OMN", "su_dif": 0, "subunit": "Oman", "su_a3": "OMN", "brk_diff": 0, "name": "Oman", "name_long": "Oman", "brk_a3": "OMN", "brk_name": "Oman", "abbrev": "Oman", "postal": "OM", "formal_en": "Sultanate of Oman", "name_sort": "Oman", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3418085, "gdp_md_est": 66980, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "OM", "iso_a3": "OMN", "iso_n3": "512", "un_a3": "512", "wb_a2": "OM", "wb_a3": "OMN", "woe_id": -99, "adm0_a3_is": "OMN", "adm0_a3_us": "OMN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Western Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 56.395569, 24.923804 ], [ 56.846008, 24.241956 ], [ 57.403564, 23.878303 ], [ 58.136902, 23.747640 ], [ 58.730164, 23.566505 ], [ 59.180603, 22.991267 ], [ 59.449768, 22.659641 ], [ 59.806824, 22.532854 ], [ 59.806824, 22.309426 ], [ 59.581604, 21.943046 ], [ 59.458008, 21.739091 ], [ 56.030273, 21.739091 ], [ 56.030273, 24.921313 ], [ 56.250000, 24.923804 ], [ 56.395569, 24.923804 ] ] ], [ [ [ 56.362610, 26.396790 ], [ 56.486206, 26.308189 ], [ 56.390076, 25.896291 ], [ 56.260986, 25.715786 ], [ 56.250000, 25.735581 ], [ 56.071472, 26.054315 ], [ 56.250000, 26.263862 ], [ 56.362610, 26.396790 ] ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 31.393502 ], [ 67.719727, 23.850674 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.145691, 24.664490 ], [ 66.373901, 25.425912 ], [ 64.530945, 25.237243 ], [ 62.904968, 25.217366 ], [ 61.498718, 25.078136 ], [ 61.875000, 26.239229 ], [ 63.316956, 26.755421 ], [ 63.234558, 27.217999 ], [ 62.756653, 27.379084 ], [ 62.729187, 28.260844 ], [ 61.770630, 28.700225 ], [ 61.369629, 29.303166 ], [ 60.875244, 29.828731 ], [ 62.550659, 29.317536 ], [ 63.550415, 29.468297 ], [ 64.149170, 29.341481 ], [ 64.349670, 29.559123 ], [ 65.047302, 29.473079 ], [ 66.346436, 29.888281 ], [ 66.382141, 30.739475 ], [ 66.939697, 31.304368 ], [ 67.500000, 31.302022 ], [ 67.684021, 31.302022 ], [ 67.719727, 31.393502 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.869751, 32.138409 ], [ 60.891724, 31.952162 ], [ 60.941162, 31.548112 ], [ 61.699219, 31.379434 ], [ 61.781616, 30.734754 ], [ 60.875244, 29.828731 ], [ 61.369629, 29.303166 ], [ 61.770630, 28.700225 ], [ 62.729187, 28.260844 ], [ 62.756653, 27.379084 ], [ 63.234558, 27.217999 ], [ 63.316956, 26.755421 ], [ 61.875000, 26.239229 ], [ 61.498718, 25.078136 ], [ 59.617310, 25.381254 ], [ 58.526917, 25.609333 ], [ 57.398071, 25.740529 ], [ 56.969604, 26.966142 ], [ 56.491699, 27.142257 ], [ 56.250000, 27.086028 ], [ 56.030273, 27.034664 ], [ 56.030273, 32.138409 ], [ 60.869751, 32.138409 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 32.138409 ], [ 67.719727, 31.393502 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.302022 ], [ 66.939697, 31.304368 ], [ 66.382141, 30.739475 ], [ 66.346436, 29.888281 ], [ 65.047302, 29.473079 ], [ 64.349670, 29.559123 ], [ 64.149170, 29.341481 ], [ 63.550415, 29.468297 ], [ 62.550659, 29.317536 ], [ 60.875244, 29.828731 ], [ 61.781616, 30.734754 ], [ 61.699219, 31.379434 ], [ 60.941162, 31.548112 ], [ 60.891724, 31.952162 ], [ 60.869751, 32.138409 ], [ 67.719727, 32.138409 ] ] ] } } ] } ] } , @@ -5559,12 +5527,12 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.612610, 41.145570 ], [ 67.719727, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.770630, 41.145570 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.893171 ], [ 65.214844, 38.401949 ], [ 66.546936, 37.974515 ], [ 66.519470, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.745178, 37.112146 ], [ 64.547424, 36.312912 ], [ 63.981628, 36.006895 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.270289 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.378113, 36.527295 ], [ 59.235535, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.329407, 38.028622 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.965854 ], [ 56.181335, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.770630, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.612610, 41.145570 ], [ 67.719727, 41.143501 ], [ 67.719727, 39.580290 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 67.719727, 39.051185 ], [ 67.719727, 37.175637 ], [ 67.500000, 37.236889 ], [ 67.077026, 37.357059 ], [ 66.519470, 37.363609 ], [ 66.546936, 37.974515 ], [ 65.214844, 38.401949 ], [ 64.171143, 38.893171 ], [ 63.517456, 39.364032 ], [ 62.374878, 40.052848 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.770630, 41.145570 ], [ 67.612610, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Iran", "sov_a3": "IRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Iran", "adm0_a3": "IRN", "geou_dif": 0, "geounit": "Iran", "gu_a3": "IRN", "su_dif": 0, "subunit": "Iran", "su_a3": "IRN", "brk_diff": 0, "name": "Iran", "name_long": "Iran", "brk_a3": "IRN", "brk_name": "Iran", "abbrev": "Iran", "postal": "IRN", "formal_en": "Islamic Republic of Iran", "name_sort": "Iran, Islamic Rep.", "mapcolor7": 4, "mapcolor8": 3, "mapcolor9": 4, "mapcolor13": 13, "pop_est": 66429284, "gdp_md_est": 841700, "pop_year": -99, "lastcensus": 2006, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "IR", "iso_a3": "IRN", "iso_n3": "364", "un_a3": "364", "wb_a2": "IR", "wb_a3": "IRN", "woe_id": -99, "adm0_a3_is": "IRN", "adm0_a3_us": "IRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "Middle East & North Africa", "name_len": 4, "long_len": 4, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.618042, 38.121593 ], [ 57.329407, 38.028622 ], [ 58.436279, 37.522797 ], [ 59.235535, 37.413800 ], [ 60.378113, 36.527295 ], [ 61.122437, 36.491973 ], [ 61.210327, 35.650601 ], [ 60.803833, 34.404644 ], [ 60.529175, 33.676354 ], [ 60.963135, 33.529948 ], [ 60.537415, 32.981020 ], [ 60.864258, 32.182586 ], [ 60.891724, 31.952162 ], [ 60.913696, 31.765537 ], [ 56.030273, 31.765537 ], [ 56.030273, 37.942031 ], [ 56.181335, 37.935533 ], [ 56.250000, 37.965854 ], [ 56.618042, 38.121593 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 61.770630, 41.145570 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.374878, 40.052848 ], [ 63.517456, 39.364032 ], [ 64.171143, 38.893171 ], [ 65.214844, 38.401949 ], [ 66.546936, 37.974515 ], [ 66.519470, 37.363609 ], [ 66.217346, 37.394164 ], [ 65.744934, 37.662081 ], [ 65.588379, 37.304645 ], [ 64.745178, 37.112146 ], [ 64.547424, 36.312912 ], [ 63.981628, 36.006895 ], [ 63.193359, 35.857892 ], [ 62.984619, 35.404722 ], [ 62.229309, 35.270289 ], [ 61.210327, 35.650601 ], [ 61.122437, 36.491973 ], [ 60.378113, 36.527295 ], [ 59.235535, 37.413800 ], [ 58.436279, 37.522797 ], [ 57.329407, 38.028622 ], [ 56.618042, 38.121593 ], [ 56.250000, 37.965854 ], [ 56.181335, 37.935533 ], [ 56.030273, 37.942031 ], [ 56.030273, 41.145570 ], [ 61.770630, 41.145570 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 65.744934, 37.662081 ], [ 66.217346, 37.394164 ], [ 66.519470, 37.363609 ], [ 67.077026, 37.357059 ], [ 67.500000, 37.236889 ], [ 67.719727, 37.175637 ], [ 67.719727, 31.765537 ], [ 60.913696, 31.765537 ], [ 60.891724, 31.952162 ], [ 60.864258, 32.182586 ], [ 60.537415, 32.981020 ], [ 60.963135, 33.529948 ], [ 60.529175, 33.676354 ], [ 60.803833, 34.404644 ], [ 61.210327, 35.650601 ], [ 62.229309, 35.270289 ], [ 62.984619, 35.404722 ], [ 63.193359, 35.857892 ], [ 63.981628, 36.006895 ], [ 64.547424, 36.312912 ], [ 64.745178, 37.112146 ], [ 65.588379, 37.304645 ], [ 65.744934, 37.662081 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 39.580290 ], [ 67.719727, 39.051185 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 67.719727, 39.580290 ] ] ] } } @@ -5575,17 +5543,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 49.066668 ], [ 67.719727, 41.143501 ], [ 67.500000, 41.147638 ], [ 66.714478, 41.168317 ], [ 66.511230, 41.988077 ], [ 66.022339, 41.994202 ], [ 66.099243, 42.998621 ], [ 64.901733, 43.727445 ], [ 63.185120, 43.649988 ], [ 62.012329, 43.504737 ], [ 61.059265, 44.406316 ], [ 60.240784, 44.783785 ], [ 58.502197, 45.587134 ], [ 56.250000, 45.069641 ], [ 56.030273, 45.019185 ], [ 56.030273, 49.066668 ], [ 67.719727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.751046 ], [ 59.977112, 42.222416 ], [ 60.084229, 41.424194 ], [ 60.466003, 41.219986 ], [ 61.548157, 41.265421 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.308761 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.751046 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.502197, 45.587134 ], [ 60.240784, 44.783785 ], [ 61.059265, 44.406316 ], [ 62.012329, 43.504737 ], [ 63.185120, 43.649988 ], [ 64.901733, 43.727445 ], [ 66.099243, 42.998621 ], [ 66.022339, 41.994202 ], [ 66.511230, 41.988077 ], [ 66.714478, 41.168317 ], [ 67.500000, 41.147638 ], [ 67.719727, 41.143501 ], [ 67.719727, 40.813809 ], [ 62.012329, 40.813809 ], [ 61.932678, 40.979898 ], [ 61.883240, 41.085562 ], [ 61.548157, 41.265421 ], [ 60.466003, 41.219986 ], [ 60.084229, 41.424194 ], [ 59.977112, 42.222416 ], [ 58.628540, 42.751046 ], [ 57.785339, 42.171546 ], [ 56.931152, 41.826595 ], [ 57.095947, 41.323201 ], [ 56.250000, 41.312887 ], [ 56.030273, 41.308761 ], [ 56.030273, 45.019185 ], [ 56.250000, 45.069641 ], [ 58.502197, 45.587134 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Turkmenistan", "sov_a3": "TKM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Turkmenistan", "adm0_a3": "TKM", "geou_dif": 0, "geounit": "Turkmenistan", "gu_a3": "TKM", "su_dif": 0, "subunit": "Turkmenistan", "su_a3": "TKM", "brk_diff": 0, "name": "Turkmenistan", "name_long": "Turkmenistan", "brk_a3": "TKM", "brk_name": "Turkmenistan", "abbrev": "Turkm.", "postal": "TM", "formal_en": "Turkmenistan", "name_sort": "Turkmenistan", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 4884887, "gdp_md_est": 29780, "pop_year": -99, "lastcensus": 1995, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TM", "iso_a3": "TKM", "iso_n3": "795", "un_a3": "795", "wb_a2": "TM", "wb_a3": "TKM", "woe_id": -99, "adm0_a3_is": "TKM", "adm0_a3_us": "TKM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 12, "long_len": 12, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.628540, 42.751046 ], [ 59.977112, 42.222416 ], [ 60.084229, 41.424194 ], [ 60.466003, 41.219986 ], [ 61.548157, 41.265421 ], [ 61.883240, 41.085562 ], [ 61.932678, 40.979898 ], [ 62.012329, 40.813809 ], [ 56.030273, 40.813809 ], [ 56.030273, 41.308761 ], [ 56.250000, 41.312887 ], [ 57.095947, 41.323201 ], [ 56.931152, 41.826595 ], [ 57.785339, 42.171546 ], [ 58.628540, 42.751046 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 21, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 55.899956 ], [ 67.719727, 54.903461 ], [ 67.500000, 54.871866 ], [ 65.668030, 54.600710 ], [ 65.179138, 54.354956 ], [ 61.435547, 54.006155 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.740662, 52.719658 ], [ 60.927429, 52.447640 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.933167, 50.842370 ], [ 59.642029, 50.544854 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.043121 ], [ 56.250000, 50.833698 ], [ 56.030273, 50.746884 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 54.903461 ], [ 67.719727, 48.777913 ], [ 56.030273, 48.777913 ], [ 56.030273, 50.746884 ], [ 56.250000, 50.833698 ], [ 56.777344, 51.043121 ], [ 58.362122, 51.063839 ], [ 59.642029, 50.544854 ], [ 59.933167, 50.842370 ], [ 61.336670, 50.798991 ], [ 61.589355, 51.272226 ], [ 59.968872, 51.961192 ], [ 60.927429, 52.447640 ], [ 60.740662, 52.719658 ], [ 61.699219, 52.980070 ], [ 60.976868, 53.665798 ], [ 61.435547, 54.006155 ], [ 65.179138, 54.354956 ], [ 65.668030, 54.600710 ], [ 67.500000, 54.871866 ], [ 67.719727, 54.903461 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.719727, 55.899956 ], [ 67.719727, 54.903461 ], [ 67.500000, 54.871866 ], [ 65.668030, 54.600710 ], [ 65.179138, 54.354956 ], [ 61.435547, 54.006155 ], [ 60.976868, 53.665798 ], [ 61.699219, 52.980070 ], [ 60.740662, 52.719658 ], [ 60.927429, 52.447640 ], [ 59.968872, 51.961192 ], [ 61.589355, 51.272226 ], [ 61.336670, 50.798991 ], [ 59.933167, 50.842370 ], [ 59.642029, 50.544854 ], [ 58.362122, 51.063839 ], [ 56.777344, 51.043121 ], [ 56.250000, 50.833698 ], [ 56.030273, 50.746884 ], [ 56.030273, 55.899956 ], [ 67.719727, 55.899956 ] ] ] } } ] } ] } , @@ -5699,10 +5667,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.064087, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.421387, 30.979964 ], [ 73.451843, 29.976349 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.617371, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.169678, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.843079, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.500000, 31.302022 ], [ 67.684021, 31.302022 ], [ 67.793884, 31.583215 ], [ 68.557434, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.296265, 32.138409 ], [ 75.064087, 32.138409 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.296265, 32.138409 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 68.925476, 31.620644 ], [ 68.557434, 31.714149 ], [ 67.793884, 31.583215 ], [ 67.684021, 31.302022 ], [ 67.500000, 31.302022 ], [ 67.280273, 31.304368 ], [ 67.280273, 32.138409 ], [ 69.296265, 32.138409 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.064087, 32.138409 ], [ 74.786682, 31.952162 ], [ 74.404907, 31.693119 ], [ 74.421387, 30.979964 ], [ 73.451843, 29.976349 ], [ 72.822876, 28.962492 ], [ 71.776428, 27.914340 ], [ 70.617371, 27.989551 ], [ 69.513245, 26.941660 ], [ 70.169678, 26.492699 ], [ 70.282288, 25.723210 ], [ 70.845337, 25.214881 ], [ 71.043091, 24.357105 ], [ 68.843079, 24.359608 ], [ 68.175659, 23.692320 ], [ 67.500000, 23.926013 ], [ 67.442322, 23.946096 ], [ 67.280273, 24.339589 ], [ 67.280273, 31.304368 ], [ 67.500000, 31.302022 ], [ 67.684021, 31.302022 ], [ 67.793884, 31.583215 ], [ 68.557434, 31.714149 ], [ 68.925476, 31.620644 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.296265, 32.138409 ], [ 75.064087, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.582458, 32.138409 ], [ 78.629150, 31.952162 ], [ 78.739014, 31.515337 ], [ 78.969727, 31.367709 ], [ 78.969727, 21.739091 ], [ 69.543457, 21.739091 ], [ 69.320984, 21.943046 ], [ 69.164429, 22.088185 ], [ 69.645081, 22.451649 ], [ 69.348450, 22.842008 ], [ 68.175659, 23.692320 ], [ 68.843079, 24.359608 ], [ 71.043091, 24.357105 ], [ 70.845337, 25.214881 ], [ 70.282288, 25.723210 ], [ 70.169678, 26.492699 ], [ 69.513245, 26.941660 ], [ 70.617371, 27.989551 ], [ 71.776428, 27.914340 ], [ 72.822876, 28.962492 ], [ 73.451843, 29.976349 ], [ 74.421387, 30.979964 ], [ 74.404907, 31.693119 ], [ 74.786682, 31.952162 ], [ 75.064087, 32.138409 ], [ 78.582458, 32.138409 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 32.138409 ], [ 78.969727, 31.367709 ], [ 78.739014, 31.515337 ], [ 78.629150, 31.952162 ], [ 78.582458, 32.138409 ], [ 78.969727, 32.138409 ] ] ] } } @@ -5713,16 +5681,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.922729, 41.145570 ], [ 68.821106, 40.979898 ], [ 68.631592, 40.668140 ], [ 68.260803, 40.661889 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.601624, 41.145570 ], [ 68.922729, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 72.427368, 41.145570 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 71.773682, 40.145289 ], [ 71.012878, 40.243895 ], [ 70.600891, 40.218733 ], [ 70.458069, 40.497092 ], [ 70.666809, 40.961234 ], [ 69.329224, 40.728527 ], [ 69.010620, 40.086477 ], [ 68.535461, 39.533703 ], [ 67.700500, 39.580290 ], [ 67.500000, 39.238635 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.121537 ], [ 68.175659, 38.901721 ], [ 68.392639, 38.156157 ], [ 67.829590, 37.144993 ], [ 67.500000, 37.236889 ], [ 67.280273, 37.300275 ], [ 67.280273, 41.145570 ], [ 67.601624, 41.145570 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.260803, 40.661889 ], [ 68.631592, 40.668140 ], [ 68.821106, 40.979898 ], [ 68.922729, 41.145570 ], [ 72.427368, 41.145570 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.666216 ], [ 76.192932, 35.897950 ], [ 77.838135, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.504293 ], [ 74.240112, 34.748383 ], [ 73.751221, 34.318487 ], [ 74.105530, 33.440609 ], [ 74.451599, 32.764181 ], [ 75.259094, 32.270878 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.128723, 31.765537 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.263306, 32.502813 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.930725, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.153600 ], [ 71.499023, 35.650601 ], [ 71.262817, 36.073522 ], [ 71.845093, 36.509636 ], [ 72.919006, 36.719072 ], [ 74.067078, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.758484, 41.145570 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.525269, 40.428133 ], [ 75.467834, 40.561808 ], [ 74.775696, 40.365381 ], [ 73.822632, 39.894987 ], [ 73.959961, 39.660685 ], [ 73.674316, 39.431950 ], [ 71.784668, 39.279042 ], [ 70.548706, 39.603572 ], [ 69.463806, 39.527348 ], [ 69.559937, 40.103286 ], [ 70.647583, 39.935013 ], [ 71.012878, 40.243895 ], [ 71.773682, 40.145289 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 72.427368, 41.145570 ], [ 77.758484, 41.145570 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Afghanistan", "sov_a3": "AFG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Afghanistan", "adm0_a3": "AFG", "geou_dif": 0, "geounit": "Afghanistan", "gu_a3": "AFG", "su_dif": 0, "subunit": "Afghanistan", "su_a3": "AFG", "brk_diff": 0, "name": "Afghanistan", "name_long": "Afghanistan", "brk_a3": "AFG", "brk_name": "Afghanistan", "abbrev": "Afg.", "postal": "AF", "formal_en": "Islamic State of Afghanistan", "name_sort": "Afghanistan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 7, "pop_est": 28400000, "gdp_md_est": 22270, "pop_year": -99, "lastcensus": 1979, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "AF", "iso_a3": "AFG", "iso_n3": "004", "un_a3": "004", "wb_a2": "AF", "wb_a3": "AFG", "woe_id": -99, "adm0_a3_is": "AFG", "adm0_a3_us": "AFG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 11, "long_len": 11, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.806885, 38.485845 ], [ 71.347961, 38.259750 ], [ 71.238098, 37.952861 ], [ 71.542969, 37.905199 ], [ 71.449585, 37.066136 ], [ 71.845093, 36.738884 ], [ 72.193909, 36.947697 ], [ 72.636108, 37.048601 ], [ 73.259583, 37.494473 ], [ 73.948975, 37.422526 ], [ 74.978943, 37.420345 ], [ 75.157471, 37.134045 ], [ 74.575195, 37.020098 ], [ 74.067078, 36.835668 ], [ 72.919006, 36.719072 ], [ 71.845093, 36.509636 ], [ 71.262817, 36.073522 ], [ 71.499023, 35.650601 ], [ 71.614380, 35.153600 ], [ 71.114502, 34.732584 ], [ 71.155701, 34.347971 ], [ 70.881042, 33.988918 ], [ 69.930725, 34.020795 ], [ 70.323486, 33.358062 ], [ 69.686279, 33.105347 ], [ 69.263306, 32.502813 ], [ 69.312744, 31.952162 ], [ 69.318237, 31.900878 ], [ 69.128723, 31.765537 ], [ 67.280273, 31.765537 ], [ 67.280273, 37.300275 ], [ 67.500000, 37.236889 ], [ 67.829590, 37.144993 ], [ 68.134460, 37.022291 ], [ 68.859558, 37.343959 ], [ 69.197388, 37.151561 ], [ 69.518738, 37.609880 ], [ 70.117493, 37.588119 ], [ 70.271301, 37.735969 ], [ 70.375671, 38.138877 ], [ 70.806885, 38.485845 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.458069, 40.497092 ], [ 70.600891, 40.218733 ], [ 71.012878, 40.243895 ], [ 70.647583, 39.935013 ], [ 69.559937, 40.103286 ], [ 69.463806, 39.527348 ], [ 70.548706, 39.603572 ], [ 71.784668, 39.279042 ], [ 73.674316, 39.431950 ], [ 73.929749, 38.505191 ], [ 74.256592, 38.606140 ], [ 74.863586, 38.378269 ], [ 74.830627, 37.989669 ], [ 74.978943, 37.420345 ], [ 73.948975, 37.422526 ], [ 73.259583, 37.494473 ], [ 72.636108, 37.048601 ], [ 72.193909, 36.947697 ], [ 71.845093, 36.738884 ], [ 71.449585, 37.066136 ], [ 71.542969, 37.905199 ], [ 71.238098, 37.952861 ], [ 71.347961, 38.259750 ], [ 70.806885, 38.485845 ], [ 70.375671, 38.138877 ], [ 70.271301, 37.735969 ], [ 70.117493, 37.588119 ], [ 69.518738, 37.609880 ], [ 69.197388, 37.151561 ], [ 68.859558, 37.343959 ], [ 68.134460, 37.022291 ], [ 67.829590, 37.144993 ], [ 68.392639, 38.156157 ], [ 68.175659, 38.901721 ], [ 67.500000, 39.121537 ], [ 67.442322, 39.140712 ], [ 67.500000, 39.238635 ], [ 67.700500, 39.580290 ], [ 68.535461, 39.533703 ], [ 69.010620, 40.086477 ], [ 69.329224, 40.728527 ], [ 70.666809, 40.961234 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Pakistan", "sov_a3": "PAK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Pakistan", "adm0_a3": "PAK", "geou_dif": 0, "geounit": "Pakistan", "gu_a3": "PAK", "su_dif": 0, "subunit": "Pakistan", "su_a3": "PAK", "brk_diff": 0, "name": "Pakistan", "name_long": "Pakistan", "brk_a3": "PAK", "brk_name": "Pakistan", "abbrev": "Pak.", "postal": "PK", "formal_en": "Islamic Republic of Pakistan", "name_sort": "Pakistan", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 176242949, "gdp_md_est": 427300, "pop_year": -99, "lastcensus": 1998, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PK", "iso_a3": "PAK", "iso_n3": "586", "un_a3": "586", "wb_a2": "PK", "wb_a3": "PAK", "woe_id": -99, "adm0_a3_is": "PAK", "adm0_a3_us": "PAK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.157471, 37.134045 ], [ 75.896301, 36.666216 ], [ 76.192932, 35.897950 ], [ 77.838135, 35.494220 ], [ 76.871338, 34.653545 ], [ 75.756226, 34.504293 ], [ 74.240112, 34.748383 ], [ 73.751221, 34.318487 ], [ 74.105530, 33.440609 ], [ 74.451599, 32.764181 ], [ 75.259094, 32.270878 ], [ 74.786682, 31.952162 ], [ 74.512024, 31.765537 ], [ 69.128723, 31.765537 ], [ 69.318237, 31.900878 ], [ 69.312744, 31.952162 ], [ 69.263306, 32.502813 ], [ 69.686279, 33.105347 ], [ 70.323486, 33.358062 ], [ 69.930725, 34.020795 ], [ 70.881042, 33.988918 ], [ 71.155701, 34.347971 ], [ 71.114502, 34.732584 ], [ 71.614380, 35.153600 ], [ 71.499023, 35.650601 ], [ 71.262817, 36.073522 ], [ 71.845093, 36.509636 ], [ 72.919006, 36.719072 ], [ 74.067078, 36.835668 ], [ 74.575195, 37.020098 ], [ 75.157471, 37.134045 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.838135, 35.494220 ], [ 78.750000, 34.499766 ], [ 78.912048, 34.323024 ], [ 78.810425, 33.507049 ], [ 78.969727, 33.302986 ], [ 78.969727, 32.523658 ], [ 78.750000, 32.563018 ], [ 78.458862, 32.618557 ], [ 78.629150, 31.952162 ], [ 78.675842, 31.765537 ], [ 74.512024, 31.765537 ], [ 74.786682, 31.952162 ], [ 75.259094, 32.270878 ], [ 74.451599, 32.764181 ], [ 74.105530, 33.440609 ], [ 73.751221, 34.318487 ], [ 74.240112, 34.748383 ], [ 75.756226, 34.504293 ], [ 76.871338, 34.653545 ], [ 77.838135, 35.494220 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 78.969727, 32.523658 ], [ 78.969727, 31.765537 ], [ 78.675842, 31.765537 ], [ 78.629150, 31.952162 ], [ 78.458862, 32.618557 ], [ 78.750000, 32.563018 ], [ 78.969727, 32.523658 ] ] ], [ [ [ 78.969727, 33.302986 ], [ 78.810425, 33.507049 ], [ 78.912048, 34.323024 ], [ 78.750000, 34.499766 ], [ 77.838135, 35.494220 ], [ 76.192932, 35.897950 ], [ 75.896301, 36.666216 ], [ 75.157471, 37.134045 ], [ 74.978943, 37.420345 ], [ 74.830627, 37.989669 ], [ 74.863586, 38.378269 ], [ 74.256592, 38.606140 ], [ 73.929749, 38.505191 ], [ 73.674316, 39.431950 ], [ 73.959961, 39.660685 ], [ 73.822632, 39.894987 ], [ 74.775696, 40.365381 ], [ 75.467834, 40.561808 ], [ 76.525269, 40.428133 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 77.758484, 41.145570 ], [ 78.969727, 41.145570 ], [ 78.969727, 33.302986 ] ] ] ] } } @@ -5733,10 +5701,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 49.066668 ], [ 78.969727, 42.867912 ], [ 78.750000, 42.884015 ], [ 77.659607, 42.960443 ], [ 76.000671, 42.988576 ], [ 75.638123, 42.877977 ], [ 74.212646, 43.299197 ], [ 73.644104, 43.090955 ], [ 73.490295, 42.500453 ], [ 71.845093, 42.845765 ], [ 71.185913, 42.704641 ], [ 70.963440, 42.267147 ], [ 70.389404, 42.081917 ], [ 69.071045, 41.385052 ], [ 68.821106, 40.979898 ], [ 68.719482, 40.813809 ], [ 68.172913, 40.813809 ], [ 68.076782, 40.979898 ], [ 67.986145, 41.135227 ], [ 67.500000, 41.147638 ], [ 67.280273, 41.153842 ], [ 67.280273, 49.066668 ], [ 78.969727, 49.066668 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.730330 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Uzbekistan", "sov_a3": "UZB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Uzbekistan", "adm0_a3": "UZB", "geou_dif": 0, "geounit": "Uzbekistan", "gu_a3": "UZB", "su_dif": 0, "subunit": "Uzbekistan", "su_a3": "UZB", "brk_diff": 0, "name": "Uzbekistan", "name_long": "Uzbekistan", "brk_a3": "UZB", "brk_name": "Uzbekistan", "abbrev": "Uzb.", "postal": "UZ", "formal_en": "Republic of Uzbekistan", "name_sort": "Uzbekistan", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 27606007, "gdp_md_est": 71670, "pop_year": -99, "lastcensus": 1989, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "UZ", "iso_a3": "UZB", "iso_n3": "860", "un_a3": "860", "wb_a2": "UZ", "wb_a3": "UZB", "woe_id": -99, "adm0_a3_is": "UZB", "adm0_a3_us": "UZB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": 5, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 67.280273, 41.153842 ], [ 67.500000, 41.147638 ], [ 67.986145, 41.135227 ], [ 68.076782, 40.979898 ], [ 68.172913, 40.813809 ], [ 67.280273, 40.813809 ], [ 67.280273, 41.153842 ] ] ], [ [ [ 68.719482, 40.813809 ], [ 68.821106, 40.979898 ], [ 69.071045, 41.385052 ], [ 70.389404, 42.081917 ], [ 70.963440, 42.267147 ], [ 71.260071, 42.167475 ], [ 70.419617, 41.520917 ], [ 71.158447, 41.143501 ], [ 71.869812, 41.393294 ], [ 72.800903, 40.979898 ], [ 73.056335, 40.865757 ], [ 72.962952, 40.813809 ], [ 70.600891, 40.813809 ], [ 70.666809, 40.961234 ], [ 69.818115, 40.813809 ], [ 68.719482, 40.813809 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Kyrgyzstan", "sov_a3": "KGZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kyrgyzstan", "adm0_a3": "KGZ", "geou_dif": 0, "geounit": "Kyrgyzstan", "gu_a3": "KGZ", "su_dif": 0, "subunit": "Kyrgyzstan", "su_a3": "KGZ", "brk_diff": 0, "name": "Kyrgyzstan", "name_long": "Kyrgyzstan", "brk_a3": "KGZ", "brk_name": "Kyrgyzstan", "abbrev": "Kgz.", "postal": "KG", "formal_en": "Kyrgyz Republic", "name_sort": "Kyrgyz Republic", "mapcolor7": 5, "mapcolor8": 7, "mapcolor9": 7, "mapcolor13": 6, "pop_est": 5431747, "gdp_md_est": 11610, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KG", "iso_a3": "KGZ", "iso_n3": "417", "un_a3": "417", "wb_a2": "KG", "wb_a3": "KGZ", "woe_id": -99, "adm0_a3_is": "KGZ", "adm0_a3_us": "KGZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.212646, 43.299197 ], [ 75.638123, 42.877977 ], [ 76.000671, 42.988576 ], [ 77.659607, 42.960443 ], [ 78.750000, 42.884015 ], [ 78.969727, 42.867912 ], [ 78.969727, 41.730330 ], [ 78.750000, 41.654445 ], [ 78.544006, 41.582580 ], [ 78.186951, 41.184855 ], [ 76.904297, 41.066928 ], [ 76.852112, 40.979898 ], [ 76.753235, 40.813809 ], [ 72.962952, 40.813809 ], [ 73.056335, 40.865757 ], [ 72.800903, 40.979898 ], [ 71.869812, 41.393294 ], [ 71.158447, 41.143501 ], [ 70.419617, 41.520917 ], [ 71.260071, 42.167475 ], [ 70.963440, 42.267147 ], [ 71.185913, 42.704641 ], [ 71.845093, 42.845765 ], [ 73.490295, 42.500453 ], [ 73.644104, 43.090955 ], [ 74.212646, 43.299197 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Tajikistan", "sov_a3": "TJK", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Tajikistan", "adm0_a3": "TJK", "geou_dif": 0, "geounit": "Tajikistan", "gu_a3": "TJK", "su_dif": 0, "subunit": "Tajikistan", "su_a3": "TJK", "brk_diff": 0, "name": "Tajikistan", "name_long": "Tajikistan", "brk_a3": "TJK", "brk_name": "Tajikistan", "abbrev": "Tjk.", "postal": "TJ", "formal_en": "Republic of Tajikistan", "name_sort": "Tajikistan", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 2, "mapcolor13": 5, "pop_est": 7349145, "gdp_md_est": 13160, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "TJ", "iso_a3": "TJK", "iso_n3": "762", "un_a3": "762", "wb_a2": "TJ", "wb_a3": "TJK", "woe_id": -99, "adm0_a3_is": "TJK", "adm0_a3_us": "TJK", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.666809, 40.961234 ], [ 70.600891, 40.813809 ], [ 69.818115, 40.813809 ], [ 70.666809, 40.961234 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 41.730330 ], [ 78.969727, 40.813809 ], [ 76.753235, 40.813809 ], [ 76.852112, 40.979898 ], [ 76.904297, 41.066928 ], [ 78.186951, 41.184855 ], [ 78.544006, 41.582580 ], [ 78.750000, 41.654445 ], [ 78.969727, 41.730330 ] ] ] } } @@ -5745,9 +5713,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 22, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 55.899956 ], [ 78.969727, 52.093008 ], [ 78.750000, 52.342052 ], [ 77.799683, 53.404620 ], [ 76.525269, 54.176904 ], [ 76.890564, 54.490782 ], [ 74.385681, 53.546836 ], [ 73.424377, 53.489680 ], [ 73.509521, 54.035199 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.864563, 55.169456 ], [ 69.068298, 55.385352 ], [ 68.170166, 54.969732 ], [ 67.500000, 54.871866 ], [ 67.280273, 54.838664 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.068298, 55.385352 ], [ 70.864563, 55.169456 ], [ 71.180420, 54.133478 ], [ 72.224121, 54.377358 ], [ 73.509521, 54.035199 ], [ 73.424377, 53.489680 ], [ 74.385681, 53.546836 ], [ 76.890564, 54.490782 ], [ 76.525269, 54.176904 ], [ 77.799683, 53.404620 ], [ 78.750000, 52.342052 ], [ 78.969727, 52.093008 ], [ 78.969727, 48.777913 ], [ 67.280273, 48.777913 ], [ 67.280273, 54.838664 ], [ 67.500000, 54.871866 ], [ 68.170166, 54.969732 ], [ 69.068298, 55.385352 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.969727, 55.899956 ], [ 78.969727, 52.093008 ], [ 78.750000, 52.342052 ], [ 77.799683, 53.404620 ], [ 76.525269, 54.176904 ], [ 76.890564, 54.490782 ], [ 74.385681, 53.546836 ], [ 73.424377, 53.489680 ], [ 73.509521, 54.035199 ], [ 72.224121, 54.377358 ], [ 71.180420, 54.133478 ], [ 70.864563, 55.169456 ], [ 69.068298, 55.385352 ], [ 68.170166, 54.969732 ], [ 67.500000, 54.871866 ], [ 67.280273, 54.838664 ], [ 67.280273, 55.899956 ], [ 78.969727, 55.899956 ] ] ] } } ] } ] } , @@ -5843,9 +5811,9 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 15 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.148010, 9.822742 ], [ 80.840149, 9.267490 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.523150 ], [ 81.636658, 6.481796 ], [ 81.219177, 6.197899 ], [ 80.348511, 5.968485 ], [ 79.873352, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.148010, 9.822742 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.859619, 11.393879 ], [ 79.859619, 11.178402 ], [ 79.856873, 10.358151 ], [ 79.340515, 10.309515 ], [ 78.884583, 9.546583 ], [ 79.189453, 9.215982 ], [ 78.530273, 9.012590 ], [ 78.530273, 11.393879 ], [ 79.859619, 11.393879 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Sri Lanka", "sov_a3": "LKA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Sri Lanka", "adm0_a3": "LKA", "geou_dif": 0, "geounit": "Sri Lanka", "gu_a3": "LKA", "su_dif": 0, "subunit": "Sri Lanka", "su_a3": "LKA", "brk_diff": 0, "name": "Sri Lanka", "name_long": "Sri Lanka", "brk_a3": "LKA", "brk_name": "Sri Lanka", "abbrev": "Sri L.", "postal": "LK", "formal_en": "Democratic Socialist Republic of Sri Lanka", "name_sort": "Sri Lanka", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 4, "mapcolor13": 9, "pop_est": 21324791, "gdp_md_est": 91870, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LK", "iso_a3": "LKA", "iso_n3": "144", "un_a3": "144", "wb_a2": "LK", "wb_a3": "LKA", "woe_id": -99, "adm0_a3_is": "LKA", "adm0_a3_us": "LKA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 9, "long_len": 9, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 80.148010, 9.822742 ], [ 80.840149, 9.267490 ], [ 81.304321, 8.564726 ], [ 81.787720, 7.523150 ], [ 81.636658, 6.481796 ], [ 81.219177, 6.197899 ], [ 80.348511, 5.968485 ], [ 79.873352, 6.762806 ], [ 79.694824, 8.200616 ], [ 80.148010, 9.822742 ] ] ] } } ] } ] } , @@ -5861,10 +5829,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Nepal", "sov_a3": "NPL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Nepal", "adm0_a3": "NPL", "geou_dif": 0, "geounit": "Nepal", "gu_a3": "NPL", "su_dif": 0, "subunit": "Nepal", "su_a3": "NPL", "brk_diff": 0, "name": "Nepal", "name_long": "Nepal", "brk_a3": "NPL", "brk_name": "Nepal", "abbrev": "Nepal", "postal": "NP", "formal_en": "Nepal", "name_sort": "Nepal", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 12, "pop_est": 28563377, "gdp_md_est": 31080, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "NP", "iso_a3": "NPL", "iso_n3": "524", "un_a3": "524", "wb_a2": "NP", "wb_a3": "NPL", "woe_id": -99, "adm0_a3_is": "NPL", "adm0_a3_us": "NPL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 81.526794, 30.422625 ], [ 82.328796, 30.114246 ], [ 83.336792, 29.463514 ], [ 83.899841, 29.319931 ], [ 84.234924, 28.839862 ], [ 85.012207, 28.642389 ], [ 85.822449, 28.202768 ], [ 86.954041, 27.974998 ], [ 88.121338, 27.875500 ], [ 88.044434, 27.444916 ], [ 88.173523, 26.809364 ], [ 88.060913, 26.414010 ], [ 87.228699, 26.396790 ], [ 86.025696, 26.630273 ], [ 85.251160, 26.725987 ], [ 84.674377, 27.235095 ], [ 83.303833, 27.364450 ], [ 81.999207, 27.926474 ], [ 81.057129, 28.415560 ], [ 80.087585, 28.794139 ], [ 80.477600, 29.730992 ], [ 81.112061, 30.183122 ], [ 81.526794, 30.422625 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.297126 ], [ 90.219727, 28.231810 ], [ 90.219727, 26.836325 ], [ 90.000000, 26.782395 ], [ 89.744568, 26.718627 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.475403, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.297126 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.582458, 32.138409 ], [ 78.739014, 31.515337 ], [ 78.750000, 31.508313 ], [ 79.722290, 30.883369 ], [ 81.112061, 30.183122 ], [ 80.477600, 29.730992 ], [ 80.087585, 28.794139 ], [ 81.057129, 28.415560 ], [ 81.999207, 27.926474 ], [ 83.303833, 27.364450 ], [ 84.674377, 27.235095 ], [ 85.251160, 26.725987 ], [ 86.025696, 26.630273 ], [ 87.228699, 26.396790 ], [ 88.060913, 26.414010 ], [ 88.173523, 26.809364 ], [ 88.044434, 27.444916 ], [ 88.121338, 27.875500 ], [ 88.731079, 28.086520 ], [ 88.835449, 27.098254 ], [ 89.744568, 26.718627 ], [ 90.000000, 26.782395 ], [ 90.219727, 26.836325 ], [ 90.219727, 25.227305 ], [ 90.000000, 25.257117 ], [ 89.920349, 25.269536 ], [ 89.832458, 25.965453 ], [ 89.354553, 26.014829 ], [ 88.563538, 26.445984 ], [ 88.209229, 25.767740 ], [ 88.931580, 25.239727 ], [ 88.305359, 24.866503 ], [ 88.085632, 24.502145 ], [ 88.700867, 24.234442 ], [ 88.530579, 23.631944 ], [ 88.876648, 22.879971 ], [ 89.033203, 22.055096 ], [ 88.989258, 21.943046 ], [ 88.906860, 21.739091 ], [ 78.530273, 21.739091 ], [ 78.530273, 32.138409 ], [ 78.582458, 32.138409 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.297126 ], [ 90.219727, 28.231810 ], [ 90.219727, 26.836325 ], [ 90.000000, 26.782395 ], [ 89.744568, 26.718627 ], [ 88.835449, 27.098254 ], [ 88.813477, 27.298571 ], [ 89.475403, 28.042895 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.297126 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.563538, 26.445984 ], [ 89.354553, 26.014829 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.269536 ], [ 90.000000, 25.257117 ], [ 90.219727, 25.227305 ], [ 90.219727, 21.861499 ], [ 90.000000, 21.965972 ], [ 89.846191, 22.039822 ], [ 89.772034, 21.943046 ], [ 89.703369, 21.856401 ], [ 89.478149, 21.943046 ], [ 89.417725, 21.965972 ], [ 89.033203, 22.055096 ], [ 88.876648, 22.879971 ], [ 88.530579, 23.631944 ], [ 88.700867, 24.234442 ], [ 88.085632, 24.502145 ], [ 88.305359, 24.866503 ], [ 88.931580, 25.239727 ], [ 88.209229, 25.767740 ], [ 88.563538, 26.445984 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 32.138409 ], [ 90.219727, 28.231810 ], [ 90.016479, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.475403, 28.042895 ], [ 88.813477, 27.298571 ], [ 88.731079, 28.086520 ], [ 88.121338, 27.875500 ], [ 86.954041, 27.974998 ], [ 85.822449, 28.202768 ], [ 85.012207, 28.642389 ], [ 84.234924, 28.839862 ], [ 83.899841, 29.319931 ], [ 83.336792, 29.463514 ], [ 82.328796, 30.114246 ], [ 81.526794, 30.422625 ], [ 81.112061, 30.183122 ], [ 79.722290, 30.883369 ], [ 78.750000, 31.508313 ], [ 78.739014, 31.515337 ], [ 78.582458, 32.138409 ], [ 90.219727, 32.138409 ] ] ] } } @@ -5893,10 +5861,10 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 23, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 55.899956 ], [ 90.219727, 50.110011 ], [ 90.000000, 50.011269 ], [ 88.805237, 49.469909 ], [ 87.750549, 49.296472 ], [ 87.360535, 49.215803 ], [ 86.830444, 49.827353 ], [ 85.542297, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.416199, 50.312146 ], [ 83.935547, 50.889174 ], [ 83.383484, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.342052 ], [ 78.530273, 52.591369 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Kazakhstan", "sov_a3": "KAZ", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kazakhstan", "adm0_a3": "KAZ", "geou_dif": 0, "geounit": "Kazakhstan", "gu_a3": "KAZ", "su_dif": 0, "subunit": "Kazakhstan", "su_a3": "KAZ", "brk_diff": 0, "name": "Kazakhstan", "name_long": "Kazakhstan", "brk_a3": "KAZ", "brk_name": "Kazakhstan", "abbrev": "Kaz.", "postal": "KZ", "formal_en": "Republic of Kazakhstan", "name_sort": "Kazakhstan", "mapcolor7": 6, "mapcolor8": 1, "mapcolor9": 6, "mapcolor13": 1, "pop_est": 15399437, "gdp_md_est": 175800, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "KZ", "iso_a3": "KAZ", "iso_n3": "398", "un_a3": "398", "wb_a2": "KZ", "wb_a3": "KAZ", "woe_id": -99, "adm0_a3_is": "KAZ", "adm0_a3_us": "KAZ", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Central Asia", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 78.530273, 52.591369 ], [ 78.750000, 52.342052 ], [ 80.035400, 50.864911 ], [ 80.568237, 51.388923 ], [ 81.947021, 50.812877 ], [ 83.383484, 51.069017 ], [ 83.935547, 50.889174 ], [ 84.416199, 50.312146 ], [ 85.116577, 50.117056 ], [ 85.542297, 49.692508 ], [ 86.830444, 49.827353 ], [ 87.360535, 49.215803 ], [ 87.025452, 48.922499 ], [ 86.860657, 48.777913 ], [ 78.530273, 48.777913 ], [ 78.530273, 52.591369 ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Russia", "sov_a3": "RUS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Russia", "adm0_a3": "RUS", "geou_dif": 0, "geounit": "Russia", "gu_a3": "RUS", "su_dif": 0, "subunit": "Russia", "su_a3": "RUS", "brk_diff": 0, "name": "Russia", "name_long": "Russian Federation", "brk_a3": "RUS", "brk_name": "Russia", "abbrev": "Rus.", "postal": "RUS", "formal_en": "Russian Federation", "name_sort": "Russian Federation", "mapcolor7": 2, "mapcolor8": 5, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 140041247, "gdp_md_est": 2266000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RU", "iso_a3": "RUS", "iso_n3": "643", "un_a3": "643", "wb_a2": "RU", "wb_a3": "RUS", "woe_id": -99, "adm0_a3_is": "RUS", "adm0_a3_us": "RUS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Eastern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 18, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 55.899956 ], [ 90.219727, 50.110011 ], [ 90.000000, 50.011269 ], [ 88.805237, 49.469909 ], [ 87.750549, 49.296472 ], [ 87.360535, 49.215803 ], [ 86.830444, 49.827353 ], [ 85.542297, 49.692508 ], [ 85.116577, 50.117056 ], [ 84.416199, 50.312146 ], [ 83.935547, 50.889174 ], [ 83.383484, 51.069017 ], [ 81.947021, 50.812877 ], [ 80.568237, 51.388923 ], [ 80.035400, 50.864911 ], [ 78.750000, 52.342052 ], [ 78.530273, 52.591369 ], [ 78.530273, 55.899956 ], [ 90.219727, 55.899956 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Mongolia", "sov_a3": "MNG", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Mongolia", "adm0_a3": "MNG", "geou_dif": 0, "geounit": "Mongolia", "gu_a3": "MNG", "su_dif": 0, "subunit": "Mongolia", "su_a3": "MNG", "brk_diff": 0, "name": "Mongolia", "name_long": "Mongolia", "brk_a3": "MNG", "brk_name": "Mongolia", "abbrev": "Mong.", "postal": "MN", "formal_en": "Mongolia", "name_sort": "Mongolia", "mapcolor7": 3, "mapcolor8": 5, "mapcolor9": 5, "mapcolor13": 6, "pop_est": 3041142, "gdp_md_est": 9476, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "MN", "iso_a3": "MNG", "iso_n3": "496", "un_a3": "496", "wb_a2": "MN", "wb_a3": "MNG", "woe_id": -99, "adm0_a3_is": "MNG", "adm0_a3_us": "MNG", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.219727, 50.110011 ], [ 90.219727, 48.777913 ], [ 87.948303, 48.777913 ], [ 87.750549, 49.296472 ], [ 88.805237, 49.469909 ], [ 90.000000, 50.011269 ], [ 90.219727, 50.110011 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.750549, 49.296472 ], [ 87.948303, 48.777913 ], [ 86.860657, 48.777913 ], [ 87.025452, 48.922499 ], [ 87.360535, 49.215803 ], [ 87.750549, 49.296472 ] ] ] } } @@ -6011,27 +5979,27 @@ , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 92.636719, 22.146708 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.653198, 21.325198 ], [ 92.304382, 21.476073 ], [ 92.367554, 20.671336 ], [ 92.081909, 21.192094 ], [ 92.024231, 21.700817 ], [ 91.928101, 21.943046 ], [ 91.848450, 22.146708 ], [ 92.636719, 22.146708 ] ] ], [ [ [ 90.447693, 22.146708 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.836006 ], [ 90.049438, 21.943046 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 22.146708 ], [ 90.447693, 22.146708 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 22.146708 ], [ 101.469727, 21.192094 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.181335, 21.437730 ], [ 101.151123, 21.848753 ], [ 100.417786, 21.557839 ], [ 99.983826, 21.744194 ], [ 99.591064, 21.943046 ], [ 99.242249, 22.118722 ], [ 99.253235, 22.146708 ], [ 101.469727, 22.146708 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.253235, 22.146708 ], [ 99.242249, 22.118722 ], [ 99.591064, 21.943046 ], [ 99.983826, 21.744194 ], [ 100.417786, 21.557839 ], [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 100.329895, 20.786931 ], [ 100.115662, 20.416717 ], [ 99.544373, 20.187457 ], [ 98.959351, 19.753779 ], [ 98.253479, 19.707243 ], [ 97.797546, 18.628027 ], [ 97.374573, 18.445741 ], [ 97.857971, 17.568102 ], [ 98.492432, 16.838719 ], [ 98.904419, 16.177749 ], [ 98.536377, 15.308029 ], [ 98.193054, 15.122507 ], [ 98.432007, 14.620794 ], [ 99.096680, 13.827412 ], [ 99.212036, 13.269353 ], [ 99.195557, 12.803767 ], [ 99.588318, 11.891541 ], [ 99.168091, 11.178402 ], [ 99.041748, 10.962764 ], [ 98.572083, 10.962764 ], [ 98.657227, 11.178402 ], [ 98.764343, 11.442339 ], [ 98.429260, 12.033948 ], [ 98.508911, 13.122280 ], [ 98.102417, 13.640649 ], [ 97.778320, 14.838612 ], [ 97.597046, 16.101237 ], [ 97.165833, 16.928078 ], [ 96.506653, 16.428182 ], [ 95.369568, 15.715595 ], [ 94.809265, 15.802825 ], [ 94.188538, 16.037895 ], [ 94.534607, 17.277219 ], [ 94.325867, 18.213698 ], [ 93.540344, 19.365567 ], [ 93.663940, 19.727928 ], [ 93.078918, 19.854561 ], [ 92.367554, 20.671336 ], [ 92.304382, 21.476073 ], [ 92.653198, 21.325198 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 92.889404, 22.146708 ], [ 99.253235, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.115662, 20.416717 ], [ 100.549622, 20.110102 ], [ 100.607300, 19.508020 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 101.469727, 17.746071 ], [ 101.469727, 12.640338 ], [ 101.250000, 12.634978 ], [ 100.832520, 12.626938 ], [ 100.978088, 13.413666 ], [ 100.096436, 13.405651 ], [ 100.019531, 12.307802 ], [ 99.602051, 11.178402 ], [ 99.522400, 10.962764 ], [ 99.041748, 10.962764 ], [ 99.168091, 11.178402 ], [ 99.588318, 11.891541 ], [ 99.195557, 12.803767 ], [ 99.212036, 13.269353 ], [ 99.096680, 13.827412 ], [ 98.432007, 14.620794 ], [ 98.193054, 15.122507 ], [ 98.536377, 15.308029 ], [ 98.904419, 16.177749 ], [ 98.492432, 16.838719 ], [ 97.857971, 17.568102 ], [ 97.374573, 18.445741 ], [ 97.797546, 18.628027 ], [ 98.253479, 19.707243 ], [ 98.959351, 19.753779 ], [ 99.544373, 20.187457 ], [ 100.115662, 20.416717 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.181335, 21.437730 ], [ 101.250000, 21.253542 ], [ 101.269226, 21.202337 ], [ 101.469727, 21.192094 ], [ 101.469727, 17.746071 ], [ 101.250000, 17.620464 ], [ 101.060486, 17.513106 ], [ 101.035767, 18.409261 ], [ 101.282959, 19.461413 ], [ 101.250000, 19.464003 ], [ 100.607300, 19.508020 ], [ 100.549622, 20.110102 ], [ 100.115662, 20.416717 ], [ 100.329895, 20.786931 ], [ 101.181335, 21.437730 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 22.146708 ], [ 101.469727, 21.192094 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.181335, 21.437730 ], [ 101.151123, 21.848753 ], [ 100.417786, 21.557839 ], [ 99.983826, 21.744194 ], [ 99.591064, 21.943046 ], [ 99.242249, 22.118722 ], [ 99.253235, 22.146708 ], [ 101.469727, 22.146708 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 24, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.297126 ], [ 90.730591, 28.064710 ], [ 91.257935, 28.040471 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.452228 ], [ 92.032471, 26.838776 ], [ 91.216736, 26.809364 ], [ 90.373535, 26.875531 ], [ 90.000000, 26.782395 ], [ 89.780273, 26.728440 ], [ 89.780273, 28.185823 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.297126 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "India", "sov_a3": "IND", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "India", "adm0_a3": "IND", "geou_dif": 0, "geounit": "India", "gu_a3": "IND", "su_dif": 0, "subunit": "India", "su_a3": "IND", "brk_diff": 0, "name": "India", "name_long": "India", "brk_a3": "IND", "brk_name": "India", "abbrev": "India", "postal": "IND", "formal_en": "Republic of India", "name_sort": "India", "mapcolor7": 1, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 2, "pop_est": 1166079220, "gdp_md_est": 3297000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "IN", "iso_a3": "IND", "iso_n3": "356", "un_a3": "356", "wb_a2": "IN", "wb_a3": "IND", "woe_id": -99, "adm0_a3_is": "IND", "adm0_a3_us": "IND", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.116638, 29.453948 ], [ 96.586304, 28.830238 ], [ 96.248474, 28.410728 ], [ 97.327881, 28.260844 ], [ 97.402039, 27.882784 ], [ 97.053223, 27.698120 ], [ 97.132874, 27.083582 ], [ 96.418762, 27.264396 ], [ 95.125122, 26.573790 ], [ 95.155334, 26.002487 ], [ 94.603271, 25.162687 ], [ 94.553833, 24.674474 ], [ 94.106140, 23.850674 ], [ 93.326111, 24.079067 ], [ 93.287659, 23.044353 ], [ 93.059692, 22.702722 ], [ 93.166809, 22.278931 ], [ 92.672424, 22.042367 ], [ 92.145081, 23.626911 ], [ 91.870422, 23.624395 ], [ 91.705627, 22.986210 ], [ 91.159058, 23.503552 ], [ 91.466675, 24.071544 ], [ 91.914368, 24.129209 ], [ 92.375793, 24.976099 ], [ 91.799011, 25.147771 ], [ 90.873413, 25.132852 ], [ 90.000000, 25.257117 ], [ 89.920349, 25.269536 ], [ 89.832458, 25.965453 ], [ 89.780273, 25.970391 ], [ 89.780273, 26.728440 ], [ 90.000000, 26.782395 ], [ 90.373535, 26.875531 ], [ 91.216736, 26.809364 ], [ 92.032471, 26.838776 ], [ 92.103882, 27.452228 ], [ 91.697388, 27.771051 ], [ 92.502136, 27.897349 ], [ 93.414001, 28.639979 ], [ 94.564819, 29.276816 ], [ 95.405273, 29.032158 ], [ 96.116638, 29.453948 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 25.970391 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.269536 ], [ 90.000000, 25.257117 ], [ 90.873413, 25.132852 ], [ 91.799011, 25.147771 ], [ 92.375793, 24.976099 ], [ 91.914368, 24.129209 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.705627, 22.986210 ], [ 91.870422, 23.624395 ], [ 92.145081, 23.626911 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.664185, 21.739091 ], [ 92.010498, 21.739091 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.497131, 22.804035 ], [ 90.587769, 22.393253 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.965972 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 25.970391 ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bhutan", "sov_a3": "BTN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bhutan", "adm0_a3": "BTN", "geou_dif": 0, "geounit": "Bhutan", "gu_a3": "BTN", "su_dif": 0, "subunit": "Bhutan", "su_a3": "BTN", "brk_diff": 0, "name": "Bhutan", "name_long": "Bhutan", "brk_a3": "BTN", "brk_name": "Bhutan", "abbrev": "Bhutan", "postal": "BT", "formal_en": "Kingdom of Bhutan", "name_sort": "Bhutan", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 1, "mapcolor13": 8, "pop_est": 691141, "gdp_md_est": 3524, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "BT", "iso_a3": "BTN", "iso_n3": "064", "un_a3": "064", "wb_a2": "BT", "wb_a3": "BTN", "woe_id": -99, "adm0_a3_is": "BTN", "adm0_a3_us": "BTN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 6, "long_len": 6, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.016479, 28.297126 ], [ 90.730591, 28.064710 ], [ 91.257935, 28.040471 ], [ 91.697388, 27.771051 ], [ 92.103882, 27.452228 ], [ 92.032471, 26.838776 ], [ 91.216736, 26.809364 ], [ 90.373535, 26.875531 ], [ 90.000000, 26.782395 ], [ 89.780273, 26.728440 ], [ 89.780273, 28.185823 ], [ 90.000000, 28.289870 ], [ 90.016479, 28.297126 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.912903, 28.335813 ], [ 98.245239, 27.746746 ], [ 98.681946, 27.508271 ], [ 98.712158, 26.743158 ], [ 98.670959, 25.918526 ], [ 97.723389, 25.083111 ], [ 97.605286, 23.898394 ], [ 98.659973, 24.064020 ], [ 98.898926, 23.142886 ], [ 99.530640, 22.948277 ], [ 99.242249, 22.118722 ], [ 99.591064, 21.943046 ], [ 99.994812, 21.739091 ], [ 92.664185, 21.739091 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 93.166809, 22.278931 ], [ 93.059692, 22.702722 ], [ 93.287659, 23.044353 ], [ 93.326111, 24.079067 ], [ 94.106140, 23.850674 ], [ 94.553833, 24.674474 ], [ 94.603271, 25.162687 ], [ 95.155334, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.418762, 27.264396 ], [ 97.132874, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.402039, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.912903, 28.335813 ] ] ], [ [ [ 100.873718, 21.739091 ], [ 101.151123, 21.848753 ], [ 101.159363, 21.739091 ], [ 100.873718, 21.739091 ] ] ] ] } } +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Bangladesh", "sov_a3": "BGD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bangladesh", "adm0_a3": "BGD", "geou_dif": 0, "geounit": "Bangladesh", "gu_a3": "BGD", "su_dif": 0, "subunit": "Bangladesh", "su_a3": "BGD", "brk_diff": 0, "name": "Bangladesh", "name_long": "Bangladesh", "brk_a3": "BGD", "brk_name": "Bangladesh", "abbrev": "Bang.", "postal": "BD", "formal_en": "People's Republic of Bangladesh", "name_sort": "Bangladesh", "mapcolor7": 3, "mapcolor8": 4, "mapcolor9": 7, "mapcolor13": 7, "pop_est": 156050883, "gdp_md_est": 224000, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "BD", "iso_a3": "BGD", "iso_n3": "050", "un_a3": "050", "wb_a2": "BD", "wb_a3": "BGD", "woe_id": -99, "adm0_a3_is": "BGD", "adm0_a3_us": "BGD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Southern Asia", "region_wb": "South Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 89.780273, 25.970391 ], [ 89.832458, 25.965453 ], [ 89.920349, 25.269536 ], [ 90.000000, 25.257117 ], [ 90.873413, 25.132852 ], [ 91.799011, 25.147771 ], [ 92.375793, 24.976099 ], [ 91.914368, 24.129209 ], [ 91.466675, 24.071544 ], [ 91.159058, 23.503552 ], [ 91.705627, 22.986210 ], [ 91.870422, 23.624395 ], [ 92.145081, 23.626911 ], [ 92.672424, 22.042367 ], [ 92.669678, 21.943046 ], [ 92.664185, 21.739091 ], [ 92.010498, 21.739091 ], [ 91.928101, 21.943046 ], [ 91.834717, 22.182318 ], [ 91.417236, 22.766051 ], [ 90.497131, 22.804035 ], [ 90.587769, 22.393253 ], [ 90.332336, 21.943046 ], [ 90.271912, 21.836006 ], [ 90.049438, 21.943046 ], [ 90.000000, 21.965972 ], [ 89.846191, 22.039822 ], [ 89.780273, 21.955783 ], [ 89.780273, 25.970391 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.469727, 32.138409 ], [ 101.469727, 21.739091 ], [ 101.159363, 21.739091 ], [ 101.151123, 21.848753 ], [ 100.873718, 21.739091 ], [ 99.994812, 21.739091 ], [ 99.591064, 21.943046 ], [ 99.242249, 22.118722 ], [ 99.530640, 22.948277 ], [ 98.898926, 23.142886 ], [ 98.659973, 24.064020 ], [ 97.605286, 23.898394 ], [ 97.723389, 25.083111 ], [ 98.670959, 25.918526 ], [ 98.712158, 26.743158 ], [ 98.681946, 27.508271 ], [ 98.245239, 27.746746 ], [ 97.912903, 28.335813 ], [ 97.327881, 28.260844 ], [ 96.248474, 28.410728 ], [ 96.586304, 28.830238 ], [ 96.116638, 29.453948 ], [ 95.405273, 29.032158 ], [ 94.564819, 29.276816 ], [ 93.414001, 28.639979 ], [ 92.502136, 27.897349 ], [ 91.697388, 27.771051 ], [ 91.257935, 28.040471 ], [ 90.730591, 28.064710 ], [ 90.016479, 28.297126 ], [ 90.000000, 28.289870 ], [ 89.780273, 28.185823 ], [ 89.780273, 32.138409 ], [ 101.469727, 32.138409 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.912903, 28.335813 ], [ 98.245239, 27.746746 ], [ 98.681946, 27.508271 ], [ 98.712158, 26.743158 ], [ 98.670959, 25.918526 ], [ 97.723389, 25.083111 ], [ 97.605286, 23.898394 ], [ 98.659973, 24.064020 ], [ 98.898926, 23.142886 ], [ 99.530640, 22.948277 ], [ 99.242249, 22.118722 ], [ 99.591064, 21.943046 ], [ 99.994812, 21.739091 ], [ 92.664185, 21.739091 ], [ 92.669678, 21.943046 ], [ 92.672424, 22.042367 ], [ 93.166809, 22.278931 ], [ 93.059692, 22.702722 ], [ 93.287659, 23.044353 ], [ 93.326111, 24.079067 ], [ 94.106140, 23.850674 ], [ 94.553833, 24.674474 ], [ 94.603271, 25.162687 ], [ 95.155334, 26.002487 ], [ 95.125122, 26.573790 ], [ 96.418762, 27.264396 ], [ 97.132874, 27.083582 ], [ 97.053223, 27.698120 ], [ 97.402039, 27.882784 ], [ 97.327881, 28.260844 ], [ 97.912903, 28.335813 ] ] ], [ [ [ 100.873718, 21.739091 ], [ 101.151123, 21.848753 ], [ 101.159363, 21.739091 ], [ 100.873718, 21.739091 ] ] ] ] } } ] } ] } , @@ -6181,6 +6149,8 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 14 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.212097, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.696900 ], [ 110.571899, 19.256701 ], [ 110.338440, 18.677471 ], [ 109.476013, 18.198044 ], [ 108.654785, 18.508261 ], [ 108.627319, 19.368159 ], [ 109.118958, 19.820974 ], [ 110.212097, 20.102365 ] ] ], [ [ [ 112.719727, 22.146708 ], [ 112.719727, 21.864048 ], [ 112.500000, 21.785006 ], [ 111.843567, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.442810, 20.342052 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.394262 ], [ 108.522949, 21.716128 ], [ 108.050537, 21.552730 ], [ 107.042542, 21.813058 ], [ 106.891479, 21.943046 ], [ 106.649780, 22.146708 ], [ 112.719727, 22.146708 ] ] ], [ [ [ 101.672974, 22.146708 ], [ 101.700439, 21.943046 ], [ 101.802063, 21.174168 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.181335, 21.437730 ], [ 101.151123, 21.848753 ], [ 101.030273, 21.800308 ], [ 101.030273, 22.146708 ], [ 101.672974, 22.146708 ] ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.151123, 21.848753 ], [ 101.181335, 21.437730 ], [ 101.030273, 21.322640 ], [ 101.030273, 21.800308 ], [ 101.151123, 21.848753 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Thailand", "sov_a3": "THA", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Thailand", "adm0_a3": "THA", "geou_dif": 0, "geounit": "Thailand", "gu_a3": "THA", "su_dif": 0, "subunit": "Thailand", "su_a3": "THA", "brk_diff": 0, "name": "Thailand", "name_long": "Thailand", "brk_a3": "THA", "brk_name": "Thailand", "abbrev": "Thai.", "postal": "TH", "formal_en": "Kingdom of Thailand", "name_sort": "Thailand", "mapcolor7": 3, "mapcolor8": 6, "mapcolor9": 8, "mapcolor13": 1, "pop_est": 65905410, "gdp_md_est": 547400, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "TH", "iso_a3": "THA", "iso_n3": "764", "un_a3": "764", "wb_a2": "TH", "wb_a3": "THA", "woe_id": -99, "adm0_a3_is": "THA", "adm0_a3_us": "THA", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.030273, 19.479540 ], [ 101.250000, 19.464003 ], [ 101.282959, 19.461413 ], [ 101.035767, 18.409261 ], [ 101.060486, 17.513106 ], [ 101.250000, 17.620464 ], [ 102.112427, 18.109308 ], [ 102.411804, 17.931702 ], [ 102.999573, 17.960445 ], [ 103.200073, 18.310203 ], [ 103.955383, 18.239786 ], [ 104.716187, 17.429270 ], [ 104.779358, 16.441354 ], [ 105.589600, 15.570128 ], [ 105.545654, 14.724417 ], [ 105.218811, 14.272369 ], [ 104.282227, 14.416060 ], [ 102.988586, 14.224451 ], [ 102.348633, 13.394963 ], [ 102.584839, 12.187019 ], [ 101.686707, 12.645698 ], [ 101.250000, 12.634978 ], [ 101.030273, 12.632298 ], [ 101.030273, 19.479540 ] ] ] } } @@ -6190,20 +6160,18 @@ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.649780, 22.146708 ], [ 106.891479, 21.943046 ], [ 107.042542, 21.813058 ], [ 108.050537, 21.552730 ], [ 106.715698, 20.697031 ], [ 105.880737, 19.751194 ], [ 105.661011, 19.056926 ], [ 106.427307, 18.004856 ], [ 107.361145, 16.696709 ], [ 108.270264, 16.080125 ], [ 108.877258, 15.276237 ], [ 109.335938, 13.427024 ], [ 109.201355, 11.665686 ], [ 108.580627, 11.178402 ], [ 108.366394, 11.008601 ], [ 108.283997, 10.962764 ], [ 106.248779, 10.962764 ], [ 106.092224, 11.178402 ], [ 105.809326, 11.568835 ], [ 107.490234, 12.337319 ], [ 107.613831, 13.536530 ], [ 107.383118, 14.203151 ], [ 107.564392, 15.202037 ], [ 107.311707, 15.908508 ], [ 106.556396, 16.604610 ], [ 105.924683, 17.484291 ], [ 105.095215, 18.667063 ], [ 103.897705, 19.264480 ], [ 104.183350, 19.624479 ], [ 104.823303, 19.885557 ], [ 104.436035, 20.758682 ], [ 103.202820, 20.766387 ], [ 102.755127, 21.675296 ], [ 102.557373, 21.943046 ], [ 102.406311, 22.146708 ], [ 106.649780, 22.146708 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Cambodia", "sov_a3": "KHM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Cambodia", "adm0_a3": "KHM", "geou_dif": 0, "geounit": "Cambodia", "gu_a3": "KHM", "su_dif": 0, "subunit": "Cambodia", "su_a3": "KHM", "brk_diff": 0, "name": "Cambodia", "name_long": "Cambodia", "brk_a3": "KHM", "brk_name": "Cambodia", "abbrev": "Camb.", "postal": "KH", "formal_en": "Kingdom of Cambodia", "name_sort": "Cambodia", "mapcolor7": 6, "mapcolor8": 3, "mapcolor9": 6, "mapcolor13": 5, "pop_est": 14494293, "gdp_md_est": 27940, "pop_year": -99, "lastcensus": 2008, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "KH", "iso_a3": "KHM", "iso_n3": "116", "un_a3": "116", "wb_a2": "KH", "wb_a3": "KHM", "woe_id": -99, "adm0_a3_is": "KHM", "adm0_a3_us": "KHM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.495972, 14.570293 ], [ 107.383118, 14.203151 ], [ 107.613831, 13.536530 ], [ 107.490234, 12.337319 ], [ 105.809326, 11.568835 ], [ 106.092224, 11.178402 ], [ 106.248779, 10.962764 ], [ 103.238525, 10.962764 ], [ 103.090210, 11.154151 ], [ 103.079224, 11.178402 ], [ 102.584839, 12.187019 ], [ 102.348633, 13.394963 ], [ 102.988586, 14.224451 ], [ 104.282227, 14.416060 ], [ 105.218811, 14.272369 ], [ 106.042786, 13.880746 ], [ 106.495972, 14.570293 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.212097, 20.102365 ], [ 110.786133, 20.076570 ], [ 111.011353, 19.696900 ], [ 110.571899, 19.256701 ], [ 110.338440, 18.677471 ], [ 109.476013, 18.198044 ], [ 108.654785, 18.508261 ], [ 108.627319, 19.368159 ], [ 109.118958, 19.820974 ], [ 110.212097, 20.102365 ] ] ], [ [ [ 112.719727, 22.146708 ], [ 112.719727, 21.864048 ], [ 112.500000, 21.785006 ], [ 111.843567, 21.550175 ], [ 110.786133, 21.396819 ], [ 110.442810, 20.342052 ], [ 109.890747, 20.282809 ], [ 109.627075, 21.007599 ], [ 109.863281, 21.394262 ], [ 108.522949, 21.716128 ], [ 108.050537, 21.552730 ], [ 107.042542, 21.813058 ], [ 106.891479, 21.943046 ], [ 106.649780, 22.146708 ], [ 112.719727, 22.146708 ] ] ], [ [ [ 101.672974, 22.146708 ], [ 101.700439, 21.943046 ], [ 101.802063, 21.174168 ], [ 101.269226, 21.202337 ], [ 101.250000, 21.253542 ], [ 101.181335, 21.437730 ], [ 101.151123, 21.848753 ], [ 101.030273, 21.800308 ], [ 101.030273, 22.146708 ], [ 101.672974, 22.146708 ] ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 25, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 32.138409 ], [ 112.719727, 21.864048 ], [ 112.370911, 21.739091 ], [ 107.328186, 21.739091 ], [ 107.042542, 21.813058 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.726685, 22.793907 ], [ 105.812073, 22.976095 ], [ 105.328674, 23.352343 ], [ 104.477234, 22.819226 ], [ 103.504944, 22.702722 ], [ 102.705688, 22.707789 ], [ 102.170105, 22.464340 ], [ 101.651001, 22.317049 ], [ 101.700439, 21.943046 ], [ 101.727905, 21.739091 ], [ 101.159363, 21.739091 ], [ 101.151123, 21.848753 ], [ 101.030273, 21.800308 ], [ 101.030273, 32.138409 ], [ 112.719727, 32.138409 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Myanmar", "sov_a3": "MMR", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Myanmar", "adm0_a3": "MMR", "geou_dif": 0, "geounit": "Myanmar", "gu_a3": "MMR", "su_dif": 0, "subunit": "Myanmar", "su_a3": "MMR", "brk_diff": 0, "name": "Myanmar", "name_long": "Myanmar", "brk_a3": "MMR", "brk_name": "Myanmar", "abbrev": "Myan.", "postal": "MM", "formal_en": "Republic of the Union of Myanmar", "name_sort": "Myanmar", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 5, "mapcolor13": 13, "pop_est": 48137741, "gdp_md_est": 55130, "pop_year": -99, "lastcensus": 1983, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "5. Low income", "wikipedia": -99, "iso_a2": "MM", "iso_a3": "MMR", "iso_n3": "104", "un_a3": "104", "wb_a2": "MM", "wb_a3": "MMR", "woe_id": -99, "adm0_a3_is": "MMR", "adm0_a3_us": "MMR", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.151123, 21.848753 ], [ 101.159363, 21.739091 ], [ 101.030273, 21.739091 ], [ 101.030273, 21.800308 ], [ 101.151123, 21.848753 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 4, "sovereignt": "Laos", "sov_a3": "LAO", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Laos", "adm0_a3": "LAO", "geou_dif": 0, "geounit": "Laos", "gu_a3": "LAO", "su_dif": 0, "subunit": "Laos", "su_a3": "LAO", "brk_diff": 0, "name": "Lao PDR", "name_long": "Lao PDR", "brk_a3": "LAO", "brk_name": "Laos", "abbrev": "Laos", "postal": "LA", "formal_en": "Lao People's Democratic Republic", "name_sort": "Lao PDR", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 9, "pop_est": 6834942, "gdp_md_est": 13980, "pop_year": -99, "lastcensus": 2005, "gdp_year": -99, "economy": "7. Least developed region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "LA", "iso_a3": "LAO", "iso_n3": "418", "un_a3": "418", "wb_a2": "LA", "wb_a3": "LAO", "woe_id": -99, "adm0_a3_is": "LAO", "adm0_a3_us": "LAO", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.170105, 22.464340 ], [ 102.557373, 21.943046 ], [ 102.708435, 21.739091 ], [ 101.727905, 21.739091 ], [ 101.700439, 21.943046 ], [ 101.651001, 22.317049 ], [ 102.170105, 22.464340 ] ] ] } } , { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Vietnam", "sov_a3": "VNM", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Vietnam", "adm0_a3": "VNM", "geou_dif": 0, "geounit": "Vietnam", "gu_a3": "VNM", "su_dif": 0, "subunit": "Vietnam", "su_a3": "VNM", "brk_diff": 0, "name": "Vietnam", "name_long": "Vietnam", "brk_a3": "VNM", "brk_name": "Vietnam", "abbrev": "Viet.", "postal": "VN", "formal_en": "Socialist Republic of Vietnam", "name_sort": "Vietnam", "mapcolor7": 5, "mapcolor8": 6, "mapcolor9": 5, "mapcolor13": 4, "pop_est": 86967524, "gdp_md_est": 241700, "pop_year": -99, "lastcensus": 2009, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "VN", "iso_a3": "VNM", "iso_n3": "704", "un_a3": "704", "wb_a2": "VN", "wb_a3": "VNM", "woe_id": -99, "adm0_a3_is": "VNM", "adm0_a3_us": "VNM", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 7, "long_len": 7, "abbrev_len": 5, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.328674, 23.352343 ], [ 105.812073, 22.976095 ], [ 106.726685, 22.793907 ], [ 106.567383, 22.217920 ], [ 106.891479, 21.943046 ], [ 107.042542, 21.813058 ], [ 107.328186, 21.739091 ], [ 102.708435, 21.739091 ], [ 102.557373, 21.943046 ], [ 102.170105, 22.464340 ], [ 102.705688, 22.707789 ], [ 103.504944, 22.702722 ], [ 104.477234, 22.819226 ], [ 105.328674, 23.352343 ] ] ] } } -, -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "China", "sov_a3": "CH1", "adm0_dif": 1, "level": 2, "type": "Country", "admin": "China", "adm0_a3": "CHN", "geou_dif": 0, "geounit": "China", "gu_a3": "CHN", "su_dif": 0, "subunit": "China", "su_a3": "CHN", "brk_diff": 0, "name": "China", "name_long": "China", "brk_a3": "CHN", "brk_name": "China", "abbrev": "China", "postal": "CN", "formal_en": "People's Republic of China", "name_sort": "China", "mapcolor7": 4, "mapcolor8": 4, "mapcolor9": 4, "mapcolor13": 3, "pop_est": 1338612970, "gdp_md_est": 7973000, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "3. Emerging region: BRIC", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "CN", "iso_a3": "CHN", "iso_n3": "156", "un_a3": "156", "wb_a2": "CN", "wb_a3": "CHN", "woe_id": -99, "adm0_a3_is": "CHN", "adm0_a3_us": "CHN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 5, "long_len": 5, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 112.719727, 32.138409 ], [ 112.719727, 21.864048 ], [ 112.370911, 21.739091 ], [ 107.328186, 21.739091 ], [ 107.042542, 21.813058 ], [ 106.891479, 21.943046 ], [ 106.567383, 22.217920 ], [ 106.726685, 22.793907 ], [ 105.812073, 22.976095 ], [ 105.328674, 23.352343 ], [ 104.477234, 22.819226 ], [ 103.504944, 22.702722 ], [ 102.705688, 22.707789 ], [ 102.170105, 22.464340 ], [ 101.651001, 22.317049 ], [ 101.700439, 21.943046 ], [ 101.727905, 21.739091 ], [ 101.159363, 21.739091 ], [ 101.151123, 21.848753 ], [ 101.030273, 21.800308 ], [ 101.030273, 32.138409 ], [ 112.719727, 32.138409 ] ] ] } } ] } ] } , @@ -6353,10 +6321,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 3, "sovereignt": "Malaysia", "sov_a3": "MYS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Malaysia", "adm0_a3": "MYS", "geou_dif": 0, "geounit": "Malaysia", "gu_a3": "MYS", "su_dif": 0, "subunit": "Malaysia", "su_a3": "MYS", "brk_diff": 0, "name": "Malaysia", "name_long": "Malaysia", "brk_a3": "MYS", "brk_name": "Malaysia", "abbrev": "Malay.", "postal": "MY", "formal_en": "Malaysia", "name_sort": "Malaysia", "mapcolor7": 2, "mapcolor8": 4, "mapcolor9": 3, "mapcolor13": 6, "pop_est": 25715819, "gdp_md_est": 384300, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MY", "iso_a3": "MYS", "iso_n3": "458", "un_a3": "458", "wb_a2": "MY", "wb_a3": "MYS", "woe_id": -99, "adm0_a3_is": "MYS", "adm0_a3_us": "MYS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 8, "long_len": 8, "abbrev_len": 6, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.130737, 6.929153 ], [ 117.644348, 6.421754 ], [ 117.688293, 5.987607 ], [ 118.347473, 5.708914 ], [ 119.182434, 5.408211 ], [ 119.111023, 5.017075 ], [ 118.440857, 4.967824 ], [ 118.619385, 4.477856 ], [ 117.883301, 4.138243 ], [ 117.015381, 4.305330 ], [ 115.864563, 4.305330 ], [ 115.518494, 3.167940 ], [ 115.133972, 2.822344 ], [ 114.620361, 1.430820 ], [ 113.804626, 1.216644 ], [ 112.859802, 1.496717 ], [ 112.500000, 1.430820 ], [ 112.379150, 1.408855 ], [ 112.280273, 1.323735 ], [ 112.280273, 2.973213 ], [ 112.500000, 3.011613 ], [ 112.994385, 3.102121 ], [ 113.713989, 3.894398 ], [ 114.202881, 4.527142 ], [ 114.658813, 4.006740 ], [ 114.870300, 4.349150 ], [ 115.348206, 4.316285 ], [ 115.449829, 5.446491 ], [ 116.221619, 6.143286 ], [ 116.724243, 6.923700 ], [ 117.130737, 6.929153 ] ] ] } } , -{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } -, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Philippines", "sov_a3": "PHL", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Philippines", "adm0_a3": "PHL", "geou_dif": 0, "geounit": "Philippines", "gu_a3": "PHL", "su_dif": 0, "subunit": "Philippines", "su_a3": "PHL", "brk_diff": 0, "name": "Philippines", "name_long": "Philippines", "brk_a3": "PHL", "brk_name": "Philippines", "abbrev": "Phil.", "postal": "PH", "formal_en": "Republic of the Philippines", "name_sort": "Philippines", "mapcolor7": 3, "mapcolor8": 2, "mapcolor9": 2, "mapcolor13": 8, "pop_est": 97976603, "gdp_md_est": 317500, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "5. Emerging region: G20", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "PH", "iso_a3": "PHL", "iso_n3": "608", "un_a3": "608", "wb_a2": "PH", "wb_a3": "PHL", "woe_id": -99, "adm0_a3_is": "PHL", "adm0_a3_us": "PHL", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 11, "long_len": 11, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.969727, 6.931880 ], [ 123.969727, 6.806444 ], [ 123.939514, 6.885527 ], [ 123.969727, 6.931880 ] ] ], [ [ [ 123.969727, 7.563992 ], [ 123.750000, 7.730043 ], [ 123.609924, 7.833452 ], [ 123.296814, 7.419666 ], [ 122.824402, 7.457794 ], [ 122.085571, 6.899161 ], [ 121.920776, 7.190826 ], [ 122.313538, 8.034754 ], [ 122.942505, 8.317495 ], [ 123.486328, 8.692354 ], [ 123.750000, 8.355540 ], [ 123.840637, 8.241392 ], [ 123.969727, 8.287599 ], [ 123.969727, 7.563992 ] ] ], [ [ [ 123.969727, 11.092166 ], [ 123.969727, 10.266276 ], [ 123.750000, 10.066220 ], [ 123.623657, 9.949914 ], [ 123.310547, 9.318990 ], [ 122.994690, 9.023440 ], [ 122.379456, 9.714472 ], [ 122.585449, 9.982376 ], [ 122.838135, 10.260871 ], [ 122.947998, 10.881859 ], [ 123.500061, 10.941192 ], [ 123.338013, 10.266276 ], [ 123.750000, 10.806328 ], [ 123.969727, 11.092166 ] ] ], [ [ [ 119.512024, 11.369646 ], [ 119.553223, 11.178402 ], [ 119.690552, 10.555322 ], [ 119.028625, 10.004015 ], [ 118.504028, 9.316280 ], [ 117.174683, 8.366410 ], [ 117.663574, 9.066839 ], [ 118.385925, 9.684691 ], [ 118.987427, 10.377064 ], [ 119.410400, 11.178402 ], [ 119.512024, 11.369646 ] ] ], [ [ [ 123.112793, 11.393879 ], [ 123.101807, 11.178402 ], [ 123.101807, 11.164929 ], [ 122.637634, 10.741572 ], [ 122.003174, 10.441897 ], [ 121.967468, 10.906133 ], [ 122.005920, 11.178402 ], [ 122.036133, 11.393879 ], [ 123.112793, 11.393879 ] ] ] ] } } , +{ "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Brunei", "sov_a3": "BRN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Brunei", "adm0_a3": "BRN", "geou_dif": 0, "geounit": "Brunei", "gu_a3": "BRN", "su_dif": 0, "subunit": "Brunei", "su_a3": "BRN", "brk_diff": 0, "name": "Brunei", "name_long": "Brunei Darussalam", "brk_a3": "BRN", "brk_name": "Brunei", "abbrev": "Brunei", "postal": "BN", "formal_en": "Negara Brunei Darussalam", "name_sort": "Brunei", "mapcolor7": 4, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 12, "pop_est": 388190, "gdp_md_est": 20250, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "BN", "iso_a3": "BRN", "iso_n3": "096", "un_a3": "096", "wb_a2": "BN", "wb_a3": "BRN", "woe_id": -99, "adm0_a3_is": "BRN", "adm0_a3_us": "BRN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 6, "long_len": 17, "abbrev_len": 6, "tiny": 2, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.449829, 5.446491 ], [ 115.348206, 4.316285 ], [ 114.870300, 4.349150 ], [ 114.658813, 4.006740 ], [ 114.202881, 4.527142 ], [ 114.601135, 4.899414 ], [ 115.449829, 5.446491 ] ] ] } } +, { "type": "Feature", "properties": { "scalerank": 1, "featurecla": "Admin-0 country", "labelrank": 2, "sovereignt": "Indonesia", "sov_a3": "IDN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Indonesia", "adm0_a3": "IDN", "geou_dif": 0, "geounit": "Indonesia", "gu_a3": "IDN", "su_dif": 0, "subunit": "Indonesia", "su_a3": "IDN", "brk_diff": 0, "name": "Indonesia", "name_long": "Indonesia", "brk_a3": "IDN", "brk_name": "Indonesia", "abbrev": "Indo.", "postal": "INDO", "formal_en": "Republic of Indonesia", "name_sort": "Indonesia", "mapcolor7": 6, "mapcolor8": 6, "mapcolor9": 6, "mapcolor13": 11, "pop_est": 240271522, "gdp_md_est": 914600, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "4. Emerging region: MIKT", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "ID", "iso_a3": "IDN", "iso_n3": "360", "un_a3": "360", "wb_a2": "ID", "wb_a3": "IDN", "woe_id": -99, "adm0_a3_is": "IDN", "adm0_a3_us": "IDN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Asia", "region_un": "Asia", "subregion": "South-Eastern Asia", "region_wb": "East Asia & Pacific", "name_len": 9, "long_len": 9, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.885315, 1.310005 ], [ 121.668091, 1.013436 ], [ 122.928772, 0.876126 ], [ 123.750000, 0.906334 ], [ 123.969727, 0.914573 ], [ 123.969727, 0.307616 ], [ 123.750000, 0.252685 ], [ 123.686829, 0.236205 ], [ 122.722778, 0.431209 ], [ 121.055603, 0.381772 ], [ 120.182190, 0.236205 ], [ 120.138245, 0.000000 ], [ 120.097046, -0.219726 ], [ 119.701538, -0.219726 ], [ 119.772949, 0.000000 ], [ 119.825134, 0.153808 ], [ 120.036621, 0.565787 ], [ 120.885315, 1.310005 ] ] ], [ [ [ 117.015381, 4.305330 ], [ 117.883301, 4.138243 ], [ 117.312012, 3.233755 ], [ 118.048096, 2.287295 ], [ 117.875061, 1.828913 ], [ 118.995667, 0.903588 ], [ 117.811890, 0.785498 ], [ 117.479553, 0.101623 ], [ 117.485046, 0.000000 ], [ 117.493286, -0.219726 ], [ 112.280273, -0.219726 ], [ 112.280273, 1.323735 ], [ 112.379150, 1.408855 ], [ 112.500000, 1.430820 ], [ 112.859802, 1.496717 ], [ 113.804626, 1.216644 ], [ 114.620361, 1.430820 ], [ 115.133972, 2.822344 ], [ 115.518494, 3.167940 ], [ 115.864563, 4.305330 ], [ 117.015381, 4.305330 ] ] ] ] } } ] } ] } diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json index cca0f2ecd..400a054ff 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json.check.mbtiles", @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-fraction-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":528,\"detail_reduced\":2,\"tiny_polygons\":2,\"tile_size_desired\":39240},{\"coalesced_as_needed\":216,\"tile_size_desired\":25160},{\"coalesced_as_needed\":213,\"tile_size_desired\":21223},{\"coalesced_as_needed\":204,\"tile_size_desired\":10749},{\"coalesced_as_needed\":126,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", +"strategies": "[{\"coalesced_as_needed\":176,\"detail_reduced\":2,\"tiny_polygons\":1,\"tile_size_desired\":39240},{\"coalesced_as_needed\":216,\"tile_size_desired\":25160},{\"coalesced_as_needed\":213,\"tile_size_desired\":21223},{\"coalesced_as_needed\":204,\"tile_size_desired\":10749},{\"coalesced_as_needed\":126,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json index 23b7d56fc..891429dc5 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json.check.mbtiles", @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--coalesce-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"coalesced_as_needed\":7519,\"tiny_polygons\":2,\"tile_size_desired\":39240},{\"coalesced_as_needed\":442,\"tile_size_desired\":25160},{\"coalesced_as_needed\":214,\"tiny_polygons\":1,\"tile_size_desired\":21223},{\"coalesced_as_needed\":179,\"tile_size_desired\":10749},{\"coalesced_as_needed\":73,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", +"strategies": "[{\"coalesced_as_needed\":175,\"tiny_polygons\":1,\"tile_size_desired\":39240},{\"coalesced_as_needed\":212,\"tile_size_desired\":25160},{\"coalesced_as_needed\":214,\"tiny_polygons\":1,\"tile_size_desired\":21223},{\"coalesced_as_needed\":179,\"tile_size_desired\":10749},{\"coalesced_as_needed\":73,\"tile_size_desired\":6591},{\"tiny_polygons\":1}]", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json index 7a3d67313..dd16efbcf 100644 --- a/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "16.875000,44.951199,5", "description": "tests/ne_110m_admin_0_countries/out/-z5_-M5000_--drop-smallest-as-needed.json.check.mbtiles", diff --git a/tests/ne_110m_admin_0_countries/out/-zg_-yname.json b/tests/ne_110m_admin_0_countries/out/-zg_-yname.json index 2c3243f8d..207d58640 100644 --- a/tests/ne_110m_admin_0_countries/out/-zg_-yname.json +++ b/tests/ne_110m_admin_0_countries/out/-zg_-yname.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "0.023802,-85.040752,359.950216,83.645130", +"antimeridian_adjusted_bounds": "0.023802,-85.051129,359.950216,83.645130", "bounds": "-180.000000,-85.051129,180.000000,83.645130", "center": "0.000000,0.000000,0", "description": "tests/ne_110m_admin_0_countries/out/-zg_-yname.json.check.mbtiles", diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json index 518dfb0bd..4f1997dfd 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json @@ -9,7 +9,7 @@ "maxzoom": "7", "minzoom": "1", "name": "tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol.json.check.mbtiles", -"strategies": "[{},{\"dropped_by_rate\":109},{\"dropped_by_rate\":125},{\"dropped_by_rate\":139},{\"dropped_by_rate\":125},{\"dropped_by_rate\":121},{\"dropped_by_rate\":95},{}]", +"strategies": "[{},{\"dropped_by_rate\":109},{\"dropped_by_rate\":124},{\"dropped_by_rate\":138},{\"dropped_by_rate\":123},{\"dropped_by_rate\":119},{\"dropped_by_rate\":102},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -27,13 +27,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.406250, 43.500752 ], [ -91.230469, 43.500752 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.406250, 43.500752 ], [ -91.230469, 43.500752 ] ], [ [ -79.475098, 39.724089 ], [ -79.475098, 39.215231 ], [ -79.167480, 39.419221 ], [ -78.969727, 39.453161 ], [ -78.837891, 39.554883 ], [ -78.530273, 39.520992 ], [ -78.222656, 39.673370 ], [ -77.915039, 39.588757 ], [ -77.717285, 39.317300 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 41.508577 ], [ -111.049805, 41.029643 ], [ -109.050293, 41.004775 ] ], [ [ -91.153564, 33.008663 ], [ -91.087646, 32.953368 ], [ -91.175537, 32.805745 ], [ -91.032715, 32.602362 ], [ -91.076660, 32.481963 ], [ -90.944824, 32.305706 ], [ -91.076660, 32.203505 ], [ -91.131592, 32.017392 ], [ -91.318359, 31.858897 ], [ -91.505127, 31.409912 ], [ -91.625977, 31.297328 ], [ -91.582031, 31.043522 ], [ -90.703125, 31.015279 ], [ -90.000000, 31.015279 ], [ -89.758301, 31.015279 ], [ -89.791260, 30.845647 ], [ -89.857178, 30.685164 ], [ -89.791260, 30.552800 ], [ -89.659424, 30.439202 ], [ -89.604492, 30.173625 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 41.508577 ], [ -111.049805, 41.029643 ], [ -109.050293, 41.004775 ] ], [ [ -109.050293, 37.002553 ], [ -109.039307, 31.344254 ] ], [ [ -89.296875, 36.597889 ], [ -89.494629, 36.509636 ] ] ] } } ] } ] } , @@ -45,7 +45,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.703125, 41.475660 ], [ -90.571289, 41.508577 ] ], [ [ -89.604492, 30.173625 ], [ -89.659424, 30.439202 ], [ -89.791260, 30.552800 ], [ -89.857178, 30.685164 ], [ -89.791260, 30.845647 ], [ -89.758301, 31.015279 ], [ -90.000000, 31.015279 ], [ -90.703125, 31.015279 ] ], [ [ -88.165283, 35.003003 ], [ -85.627441, 34.985003 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.703125, 41.475660 ], [ -90.571289, 41.508577 ] ], [ [ -89.099121, 36.949892 ], [ -89.132080, 36.853252 ], [ -89.110107, 36.694851 ], [ -89.494629, 36.509636 ] ], [ [ -79.475098, 39.724089 ], [ -79.486084, 39.215231 ], [ -79.156494, 39.419221 ], [ -78.958740, 39.461644 ], [ -78.826904, 39.563353 ], [ -78.530273, 39.520992 ], [ -78.420410, 39.597223 ], [ -78.233643, 39.673370 ], [ -77.926025, 39.588757 ], [ -77.805176, 39.453161 ], [ -77.717285, 39.325799 ] ] ] } } ] } ] } , @@ -57,7 +57,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.052484 ], [ -118.114014, 37.644685 ], [ -119.998169, 38.993572 ], [ -119.998169, 40.979898 ], [ -119.998169, 41.244772 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -118.114014, 37.644685 ], [ -119.998169, 38.993572 ], [ -119.998169, 41.244772 ] ], [ [ -114.032593, 36.993778 ], [ -112.148438, 37.011326 ] ] ] } } ] } ] } , @@ -69,19 +69,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.050293, 41.000630 ] ], [ [ -109.044800, 36.998166 ], [ -103.002319, 36.993778 ] ], [ [ -91.153564, 33.008663 ], [ -91.082153, 32.953368 ], [ -91.175537, 32.810362 ], [ -91.032715, 32.602362 ], [ -91.071167, 32.477329 ], [ -90.944824, 32.305706 ], [ -91.082153, 32.203505 ], [ -91.126099, 32.017392 ], [ -91.318359, 31.858897 ], [ -91.499634, 31.409912 ], [ -91.625977, 31.297328 ], [ -91.582031, 31.048228 ], [ -90.703125, 31.015279 ], [ -89.758301, 31.015279 ], [ -89.785767, 30.845647 ], [ -89.851685, 30.685164 ], [ -89.791260, 30.557531 ], [ -89.659424, 30.439202 ], [ -89.648438, 30.391830 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.050293, 41.000630 ] ], [ [ -104.046021, 41.244772 ], [ -104.046021, 41.004775 ] ], [ [ -109.044800, 36.998166 ], [ -112.851562, 37.006939 ] ], [ [ -109.044800, 36.998166 ], [ -109.044800, 31.339563 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.851562, 41.996243 ] ], [ [ -104.024048, 45.954969 ], [ -100.068970, 45.966425 ], [ -98.442993, 45.962606 ], [ -96.536865, 46.016039 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.851562, 41.996243 ] ], [ [ -104.051514, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.664917, 36.022447 ], [ -90.313110, 36.022447 ], [ -90.252686, 36.120128 ], [ -90.027466, 36.337253 ], [ -90.109863, 36.461054 ], [ -90.351562, 36.474307 ] ], [ [ -89.604492, 30.178373 ], [ -89.659424, 30.439202 ], [ -89.791260, 30.557531 ], [ -89.851685, 30.685164 ], [ -89.785767, 30.845647 ], [ -89.758301, 31.015279 ], [ -90.351562, 31.015279 ] ], [ [ -88.165283, 34.998504 ], [ -86.907349, 34.998504 ], [ -85.627441, 34.985003 ] ], [ [ -87.528076, 30.273300 ], [ -87.456665, 30.410782 ], [ -87.407227, 30.609550 ], [ -87.632446, 30.850363 ], [ -87.615967, 30.925789 ], [ -87.044678, 30.982319 ], [ -85.006714, 30.991737 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.664917, 36.022447 ], [ -90.313110, 36.022447 ], [ -90.252686, 36.120128 ], [ -90.027466, 36.337253 ], [ -90.109863, 36.461054 ], [ -90.351562, 36.474307 ] ], [ [ -89.104614, 36.949892 ], [ -89.132080, 36.853252 ], [ -89.115601, 36.694851 ], [ -89.500122, 36.505221 ] ], [ [ -83.078613, 34.980502 ], [ -83.182983, 34.894942 ], [ -83.347778, 34.705493 ], [ -83.078613, 34.538238 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.161818 ], [ -82.595215, 33.984364 ], [ -82.249146, 33.747180 ], [ -82.177734, 33.623768 ], [ -81.941528, 33.458943 ], [ -81.826172, 33.224903 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.791892 ], [ -81.375732, 32.680996 ], [ -81.408691, 32.606989 ], [ -81.221924, 32.500496 ], [ -81.128540, 32.310349 ], [ -81.128540, 32.119801 ], [ -81.035156, 32.082575 ], [ -80.864868, 32.031363 ] ], [ [ -79.475098, 39.719863 ], [ -79.486084, 39.215231 ], [ -79.332275, 39.304550 ], [ -79.161987, 39.419221 ], [ -78.964233, 39.457403 ], [ -78.826904, 39.563353 ], [ -78.535767, 39.520992 ], [ -78.425903, 39.597223 ], [ -78.233643, 39.673370 ], [ -77.920532, 39.592990 ], [ -77.799683, 39.448919 ], [ -77.722778, 39.321550 ] ] ] } } ] } ] } , @@ -99,37 +99,37 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -118.114014, 37.644685 ], [ -120.000916, 38.995707 ], [ -119.998169, 40.979898 ], [ -119.998169, 41.112469 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -118.114014, 37.644685 ], [ -120.000916, 38.995707 ], [ -119.998169, 41.112469 ] ], [ [ -114.029846, 36.993778 ], [ -112.324219, 37.009133 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.925781, 41.998284 ] ], [ [ -112.324219, 44.559163 ], [ -112.335205, 44.561120 ], [ -112.362671, 44.461231 ], [ -112.689514, 44.498464 ], [ -112.873535, 44.359206 ], [ -113.052063, 44.619799 ], [ -113.175659, 44.764287 ], [ -113.378906, 44.789633 ], [ -113.439331, 44.861710 ], [ -113.502502, 45.123929 ], [ -113.681030, 45.249755 ], [ -113.793640, 45.564064 ], [ -113.914490, 45.702343 ], [ -114.035339, 45.729191 ], [ -114.136963, 45.589056 ], [ -114.334717, 45.469762 ], [ -114.513245, 45.569832 ], [ -114.524231, 45.824971 ], [ -114.406128, 45.890008 ], [ -114.491272, 46.147492 ], [ -114.392395, 46.409458 ], [ -114.285278, 46.632465 ], [ -114.584656, 46.641894 ], [ -114.842834, 46.786897 ], [ -115.120239, 47.094435 ], [ -115.287781, 47.249407 ], [ -115.518494, 47.344406 ], [ -115.705261, 47.504214 ], [ -115.705261, 47.683881 ], [ -115.966187, 47.949466 ], [ -116.043091, 48.922499 ], [ -116.048584, 49.000042 ] ], [ [ -119.998169, 41.992160 ], [ -119.998169, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.925781, 41.998284 ] ], [ [ -117.029114, 42.000325 ], [ -114.032593, 41.992160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.031860, 48.998240 ], [ -117.031860, 48.922499 ], [ -117.029114, 48.806863 ] ], [ [ -116.048584, 49.000042 ], [ -116.043091, 48.922499 ], [ -116.032104, 48.806863 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.031860, 48.998240 ], [ -117.031860, 48.922499 ], [ -117.029114, 48.806863 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.506958, 31.753861 ], [ -106.619568, 31.914868 ], [ -106.625061, 31.952162 ], [ -106.630554, 31.998759 ], [ -103.002319, 31.998759 ], [ -103.002319, 32.101190 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -106.506958, 31.753861 ], [ -106.619568, 31.914868 ], [ -106.630554, 31.998759 ], [ -103.002319, 31.998759 ], [ -103.002319, 32.101190 ] ], [ [ -109.042053, 31.339563 ], [ -109.044800, 32.101190 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.112469 ], [ -111.055298, 41.027571 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 37.000359 ], [ -103.002319, 36.995972 ], [ -102.041016, 36.991585 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.112469 ], [ -111.055298, 41.027571 ], [ -109.053040, 41.002703 ] ], [ [ -104.046021, 41.112469 ], [ -104.046021, 41.004775 ] ], [ [ -109.044800, 37.000359 ], [ -110.494995, 37.006939 ], [ -112.675781, 37.006939 ] ], [ [ -103.002319, 36.995972 ], [ -102.041016, 36.991585 ] ], [ [ -109.044800, 37.000359 ], [ -109.044800, 31.802893 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.675781, 41.996243 ] ], [ [ -111.085510, 44.506300 ], [ -111.192627, 44.561120 ], [ -111.291504, 44.701850 ], [ -111.398621, 44.729174 ], [ -111.541443, 44.529801 ], [ -111.772156, 44.498464 ], [ -112.335205, 44.561120 ], [ -112.362671, 44.461231 ], [ -112.675781, 44.496505 ] ], [ [ -104.026794, 45.956878 ], [ -104.076233, 47.171044 ], [ -104.092712, 48.922499 ], [ -104.092712, 49.005447 ] ], [ [ -104.026794, 45.956878 ], [ -101.074219, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.675781, 41.996243 ] ], [ [ -104.026794, 45.956878 ], [ -104.076233, 47.171044 ], [ -104.092712, 48.922499 ], [ -104.092712, 49.005447 ] ], [ [ -104.051514, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , @@ -147,13 +147,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.795288, 40.582671 ], [ -95.861206, 40.763901 ], [ -95.833740, 40.942564 ], [ -95.839233, 40.979898 ], [ -95.855713, 41.112469 ] ], [ [ -95.795288, 40.582671 ], [ -94.001770, 40.584757 ], [ -92.850952, 40.593100 ], [ -91.757812, 40.613952 ], [ -91.568298, 40.451127 ], [ -91.430969, 40.367474 ] ], [ [ -91.156311, 33.008663 ], [ -91.084900, 32.953368 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.477329 ], [ -90.942078, 32.305706 ], [ -91.082153, 32.203505 ], [ -91.128845, 32.015063 ], [ -91.321106, 31.858897 ], [ -91.345825, 31.802893 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.795288, 40.582671 ], [ -95.861206, 40.763901 ], [ -95.833740, 40.942564 ], [ -95.839233, 40.979898 ], [ -95.855713, 41.112469 ] ], [ [ -90.249939, 35.021000 ], [ -90.000000, 35.021000 ], [ -89.824219, 35.021000 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.539612, 46.198844 ], [ -96.600037, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.734619, 46.715386 ], [ -96.745605, 46.944637 ], [ -96.778564, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.825256, 47.426229 ], [ -96.844482, 47.546872 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.953145 ], [ -97.130127, 48.136767 ], [ -97.149353, 48.317908 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.119141, 48.757999 ], [ -97.212524, 48.902643 ], [ -97.218018, 48.922499 ], [ -97.229004, 49.001844 ] ], [ [ -96.539612, 46.017946 ], [ -98.440247, 45.962606 ], [ -100.066223, 45.964515 ], [ -101.425781, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.539612, 46.198844 ], [ -96.600037, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.734619, 46.715386 ], [ -96.745605, 46.944637 ], [ -96.778564, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.825256, 47.426229 ], [ -96.844482, 47.546872 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.953145 ], [ -97.130127, 48.136767 ], [ -97.149353, 48.317908 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.119141, 48.757999 ], [ -97.212524, 48.902643 ], [ -97.218018, 48.922499 ], [ -97.229004, 49.001844 ] ], [ [ -91.227722, 43.500752 ], [ -91.213989, 43.446937 ], [ -91.082153, 43.287203 ], [ -91.172791, 43.211182 ], [ -91.170044, 43.002639 ], [ -91.065674, 42.753063 ], [ -90.738831, 42.658202 ], [ -90.639954, 42.504503 ] ] ] } } ] } ] } , @@ -165,31 +165,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.682802 ], [ -89.788513, 30.848005 ], [ -89.758301, 31.012925 ], [ -90.175781, 31.015279 ] ], [ [ -87.530823, 30.273300 ], [ -87.456665, 30.410782 ], [ -87.404480, 30.607186 ], [ -87.632446, 30.850363 ], [ -87.615967, 30.928145 ], [ -87.044678, 30.984673 ], [ -85.003967, 30.989383 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.682802 ], [ -89.788513, 30.848005 ], [ -89.758301, 31.012925 ], [ -90.175781, 31.015279 ] ], [ [ -81.079102, 32.101190 ], [ -81.035156, 32.084902 ], [ -80.864868, 32.033692 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 36.465472 ], [ -90.112610, 36.461054 ], [ -90.030212, 36.337253 ], [ -90.175781, 36.197742 ] ], [ [ -90.175781, 36.022447 ], [ -90.000000, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -84.822693, 39.106620 ], [ -84.808960, 41.112469 ] ], [ [ -88.049927, 37.818463 ], [ -87.920837, 37.792422 ], [ -87.909851, 37.903032 ], [ -87.654419, 37.827141 ], [ -87.440186, 37.935533 ], [ -87.129822, 37.783740 ], [ -87.055664, 37.881357 ], [ -86.824951, 37.976680 ], [ -86.610718, 37.857507 ], [ -86.498108, 37.970185 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.058655, 37.961523 ], [ -85.838928, 38.257593 ], [ -85.698853, 38.289937 ], [ -85.567017, 38.462192 ], [ -85.424194, 38.535276 ], [ -85.404968, 38.726233 ], [ -85.166016, 38.689798 ], [ -85.012207, 38.779781 ], [ -84.841919, 38.779781 ], [ -84.800720, 38.854681 ], [ -84.880371, 39.059716 ], [ -84.822693, 39.106620 ] ], [ [ -88.165283, 34.998504 ], [ -86.910095, 34.998504 ], [ -85.624695, 34.985003 ] ], [ [ -80.518799, 40.641051 ], [ -80.518799, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 36.465472 ], [ -90.112610, 36.461054 ], [ -90.030212, 36.337253 ], [ -90.175781, 36.197742 ] ], [ [ -90.175781, 36.022447 ], [ -90.000000, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -88.165283, 34.998504 ], [ -89.263916, 35.021000 ], [ -90.175781, 35.021000 ] ], [ [ -89.497375, 36.505221 ], [ -88.069153, 36.496390 ], [ -88.071899, 36.655200 ], [ -87.874146, 36.655200 ], [ -87.841187, 36.611118 ], [ -87.214966, 36.639774 ], [ -86.091614, 36.626550 ], [ -85.517578, 36.597889 ], [ -85.231934, 36.608914 ], [ -84.350281, 36.567012 ], [ -83.671875, 36.600094 ] ], [ [ -89.101868, 36.952087 ], [ -89.134827, 36.851054 ], [ -89.115601, 36.694851 ], [ -89.274902, 36.611118 ], [ -89.497375, 36.505221 ] ], [ [ -80.518799, 40.641051 ], [ -80.518799, 41.112469 ] ], [ [ -83.075867, 34.978252 ], [ -83.185730, 34.894942 ], [ -83.345032, 34.705493 ], [ -83.075867, 34.540500 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.161818 ], [ -82.597961, 33.984364 ], [ -82.249146, 33.749464 ], [ -82.180481, 33.623768 ], [ -81.944275, 33.461234 ], [ -81.826172, 33.222605 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.791892 ], [ -81.375732, 32.683308 ], [ -81.411438, 32.609303 ], [ -81.224670, 32.498180 ], [ -81.125793, 32.312670 ], [ -81.128540, 32.122127 ], [ -81.035156, 32.084902 ], [ -80.864868, 32.033692 ] ], [ [ -79.477844, 39.719863 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.161987, 39.417099 ], [ -78.961487, 39.457403 ], [ -78.829651, 39.563353 ], [ -78.574219, 39.527348 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 42.120636 ], [ -90.156555, 42.104336 ], [ -90.175781, 42.006448 ] ], [ [ -84.806213, 41.677015 ], [ -84.808960, 40.847060 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 42.120636 ], [ -90.156555, 42.104336 ], [ -90.175781, 42.006448 ] ], [ [ -86.824951, 41.761069 ], [ -86.824951, 41.754922 ], [ -85.748291, 41.750824 ], [ -84.806213, 41.754922 ], [ -84.806213, 41.677015 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.847060 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.913269, 40.959160 ], [ -73.951721, 40.979898 ], [ -74.207153, 41.112469 ] ], [ [ -77.041626, 38.788345 ], [ -77.058105, 38.709089 ], [ -77.228394, 38.614724 ], [ -77.343750, 38.391186 ], [ -77.209167, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.240337 ] ], [ [ -75.404663, 39.795876 ], [ -75.552979, 39.690281 ], [ -75.528259, 39.497683 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.913269, 40.959160 ], [ -73.951721, 40.979898 ], [ -74.207153, 41.112469 ] ], [ [ -77.722778, 39.321550 ], [ -77.802429, 39.448919 ], [ -77.923279, 39.592990 ], [ -78.230896, 39.671256 ], [ -78.425903, 39.597223 ], [ -78.533020, 39.523111 ], [ -78.829651, 39.563353 ], [ -78.925781, 39.487085 ] ], [ [ -75.786438, 39.724089 ], [ -75.709534, 39.802206 ], [ -75.621643, 39.846504 ], [ -75.404663, 39.795876 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.838867, 41.426253 ], [ -75.009155, 41.496235 ], [ -75.075073, 41.640078 ], [ -75.047607, 41.750824 ], [ -75.168457, 41.840920 ], [ -75.385437, 41.998284 ], [ -78.925781, 42.000325 ] ], [ [ -73.281555, 42.742978 ], [ -72.457581, 42.726839 ] ], [ [ -71.801147, 42.012571 ], [ -71.792908, 41.465370 ], [ -71.853333, 41.319076 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.838867, 41.426253 ], [ -75.009155, 41.496235 ], [ -75.075073, 41.640078 ], [ -75.047607, 41.750824 ], [ -75.168457, 41.840920 ], [ -75.385437, 41.998284 ], [ -78.925781, 42.000325 ] ], [ [ -73.281555, 42.742978 ], [ -72.457581, 42.726839 ] ], [ [ -73.498535, 42.053372 ], [ -71.801147, 42.012571 ] ] ] } } ] } ] } , @@ -213,7 +213,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.837891, 41.998284 ] ], [ [ -119.998169, 41.992160 ], [ -118.037109, 41.995222 ] ], [ [ -119.998169, 41.992160 ], [ -119.999542, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.837891, 41.998284 ] ], [ [ -119.998169, 41.992160 ], [ -119.999542, 40.913513 ] ] ] } } ] } ] } , @@ -225,31 +225,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -116.691284, 36.597889 ], [ -116.787415, 36.668419 ] ], [ [ -114.642334, 35.052484 ], [ -114.580536, 35.248984 ], [ -114.629974, 35.445009 ], [ -114.650574, 35.638325 ], [ -114.649200, 35.853440 ], [ -114.739838, 35.991341 ], [ -114.671173, 36.114581 ], [ -114.461060, 36.114581 ], [ -114.268799, 36.043547 ], [ -114.132843, 36.003563 ], [ -114.065552, 36.155618 ], [ -114.022980, 36.189984 ], [ -114.027100, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -116.691284, 36.597889 ], [ -116.787415, 36.668419 ] ], [ [ -114.642334, 35.052484 ], [ -114.621735, 34.963623 ], [ -114.566803, 34.828459 ], [ -114.484406, 34.652415 ], [ -114.353943, 34.464674 ], [ -114.165802, 34.271971 ], [ -114.469299, 34.067450 ], [ -114.547577, 33.608901 ], [ -114.742584, 33.379853 ], [ -114.691772, 33.203073 ], [ -114.656067, 33.053565 ], [ -114.478912, 32.916485 ], [ -114.590149, 32.715666 ], [ -114.721985, 32.716822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.596527, 36.527295 ], [ -118.125000, 37.652296 ], [ -118.212891, 37.715331 ] ], [ [ -114.029846, 36.993778 ], [ -114.027100, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.596527, 36.527295 ], [ -118.125000, 37.652296 ], [ -118.212891, 37.715331 ] ], [ [ -114.029846, 36.993778 ], [ -112.412109, 37.009133 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.027740, 41.999305 ], [ -117.014008, 43.796872 ], [ -116.926117, 44.080680 ], [ -117.007141, 44.210757 ], [ -117.193909, 44.278638 ], [ -117.192535, 44.438683 ], [ -117.051086, 44.665723 ], [ -116.835480, 44.863656 ], [ -116.709137, 45.151053 ] ], [ [ -117.027740, 41.999305 ], [ -117.027740, 41.997263 ], [ -118.212891, 41.995222 ] ], [ [ -112.412109, 44.468091 ], [ -112.689514, 44.498464 ], [ -112.874908, 44.360188 ], [ -113.052063, 44.619799 ], [ -113.174286, 44.765262 ], [ -113.378906, 44.789633 ], [ -113.439331, 44.862683 ], [ -113.502502, 45.124898 ], [ -113.540955, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.027740, 41.999305 ], [ -117.014008, 43.796872 ], [ -116.926117, 44.080680 ], [ -117.007141, 44.210757 ], [ -117.193909, 44.278638 ], [ -117.192535, 44.438683 ], [ -117.051086, 44.665723 ], [ -116.835480, 44.863656 ], [ -116.709137, 45.151053 ] ], [ [ -114.033966, 41.993181 ], [ -112.412109, 41.997263 ] ], [ [ -117.027740, 41.999305 ], [ -114.033966, 41.993181 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 45.999824 ], [ -116.905518, 46.177929 ], [ -116.997528, 46.329862 ], [ -117.026367, 47.722697 ], [ -117.030487, 48.980217 ] ], [ [ -116.915131, 45.999824 ], [ -118.212891, 45.995054 ] ], [ [ -113.479156, 45.026950 ], [ -113.502502, 45.123929 ], [ -113.679657, 45.248788 ], [ -113.793640, 45.565025 ], [ -113.913116, 45.702343 ], [ -114.035339, 45.730150 ], [ -114.136963, 45.589056 ], [ -114.334717, 45.469762 ], [ -114.513245, 45.568871 ], [ -114.522858, 45.824971 ], [ -114.407501, 45.890008 ], [ -114.491272, 46.146540 ], [ -114.393768, 46.409458 ], [ -114.283905, 46.631522 ], [ -114.584656, 46.640951 ], [ -114.842834, 46.785956 ], [ -115.121613, 47.095370 ], [ -115.287781, 47.250339 ], [ -115.518494, 47.345337 ], [ -115.703888, 47.505142 ], [ -115.703888, 47.684806 ], [ -115.967560, 47.950386 ], [ -116.045837, 48.980217 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 45.999824 ], [ -116.905518, 46.177929 ], [ -116.997528, 46.329862 ], [ -117.026367, 47.722697 ], [ -117.030487, 48.980217 ] ], [ [ -116.915131, 45.999824 ], [ -118.212891, 45.995054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.030487, 48.999141 ], [ -117.030487, 48.864715 ] ], [ [ -116.047211, 49.000042 ], [ -116.037598, 48.864715 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.030487, 48.999141 ], [ -117.030487, 48.922499 ], [ -117.030487, 48.864715 ] ] } } ] } ] } , @@ -267,13 +267,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.053925, 41.046217 ], [ -111.053925, 41.028607 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 36.999262 ], [ -106.787109, 36.998166 ] ], [ [ -109.044800, 36.999262 ], [ -109.044800, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.053925, 41.046217 ], [ -111.053925, 41.028607 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 36.999262 ], [ -110.496368, 37.006939 ], [ -112.500000, 37.009133 ], [ -112.587891, 37.008036 ] ], [ [ -109.044800, 36.999262 ], [ -109.044800, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.001346 ], [ -112.587891, 41.997263 ] ], [ [ -111.085510, 44.506300 ], [ -111.194000, 44.561120 ], [ -111.291504, 44.700874 ], [ -111.399994, 44.728199 ], [ -111.541443, 44.529801 ], [ -111.770782, 44.497485 ], [ -112.335205, 44.560142 ], [ -112.362671, 44.462211 ], [ -112.587891, 44.487689 ] ], [ [ -111.085510, 44.506300 ], [ -111.049805, 44.487689 ], [ -111.049805, 42.001346 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.001346 ], [ -112.587891, 41.997263 ] ], [ [ -111.049805, 42.001346 ], [ -111.053925, 41.027571 ], [ -109.053040, 41.001666 ] ] ] } } ] } ] } , @@ -297,19 +297,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.044647, 41.046217 ], [ -104.044647, 41.004775 ] ], [ [ -103.002319, 36.994875 ], [ -106.962891, 36.999262 ] ], [ [ -102.049255, 40.000268 ], [ -101.162109, 40.000268 ] ], [ [ -103.002319, 36.994875 ], [ -102.041016, 36.991585 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.044647, 41.046217 ], [ -104.044647, 41.004775 ] ], [ [ -103.002319, 36.994875 ], [ -103.002319, 36.527295 ] ], [ [ -103.002319, 36.994875 ], [ -102.041016, 36.991585 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.077606, 45.040537 ], [ -104.052887, 42.999625 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.052887, 42.999625 ], [ -104.044647, 41.003739 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.026794, 45.955924 ], [ -104.077606, 47.171044 ], [ -104.092712, 48.980217 ] ], [ [ -104.077606, 45.040537 ], [ -104.077606, 45.026950 ] ], [ [ -104.026794, 45.955924 ], [ -101.162109, 45.963561 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.026794, 45.955924 ], [ -104.077606, 47.171044 ], [ -104.092712, 48.980217 ] ] ] } } ] } ] } , @@ -327,19 +327,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.583714 ], [ -95.861206, 40.764941 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.979898 ], [ -95.846100, 41.046217 ] ], [ [ -95.537109, 40.001320 ], [ -101.337891, 40.000268 ] ], [ [ -95.796661, 40.583714 ], [ -95.776062, 40.501269 ], [ -95.625000, 40.359103 ], [ -95.537109, 40.284764 ] ], [ [ -95.796661, 40.583714 ], [ -95.537109, 40.583714 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.583714 ], [ -95.861206, 40.764941 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.979898 ], [ -95.846100, 41.046217 ] ], [ [ -95.796661, 40.583714 ], [ -95.776062, 40.501269 ], [ -95.625000, 40.359103 ], [ -95.537109, 40.284764 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.451721, 43.501749 ], [ -96.439362, 44.435741 ], [ -96.529999, 45.151053 ] ], [ [ -96.454468, 42.488302 ], [ -96.410522, 42.388980 ], [ -96.345978, 42.224450 ], [ -96.348724, 42.142023 ], [ -96.167450, 41.953363 ], [ -96.104279, 41.787697 ], [ -96.096039, 41.555866 ], [ -96.024628, 41.524001 ], [ -95.958710, 41.404626 ], [ -95.855713, 41.115573 ], [ -95.837860, 40.979898 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.451721, 43.501749 ], [ -96.439362, 44.435741 ], [ -96.529999, 45.151053 ] ], [ [ -96.451721, 43.501749 ], [ -96.586304, 43.500752 ], [ -96.586304, 43.257206 ], [ -96.458588, 43.124041 ], [ -96.483307, 43.015693 ], [ -96.535492, 42.855833 ], [ -96.615143, 42.691521 ], [ -96.453094, 42.580388 ], [ -96.454468, 42.488302 ], [ -96.410522, 42.388980 ], [ -96.345978, 42.224450 ], [ -96.348724, 42.142023 ], [ -96.167450, 41.953363 ], [ -96.104279, 41.787697 ], [ -96.096039, 41.555866 ], [ -96.024628, 41.524001 ], [ -95.958710, 41.404626 ], [ -95.855713, 41.115573 ], [ -95.837860, 40.979898 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.538239, 46.198844 ], [ -96.601410, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.733246, 46.716327 ], [ -96.745605, 46.944637 ], [ -96.779938, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.823883, 47.426229 ], [ -96.844482, 47.545945 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.954065 ], [ -97.130127, 48.136767 ], [ -97.147980, 48.318821 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.120514, 48.757999 ], [ -97.213898, 48.902643 ], [ -97.216644, 48.922499 ], [ -97.226257, 48.980217 ] ], [ [ -96.539612, 46.017946 ], [ -98.441620, 45.963561 ], [ -100.066223, 45.965470 ], [ -101.337891, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -96.539612, 46.017946 ], [ -96.538239, 46.198844 ], [ -96.601410, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.733246, 46.716327 ], [ -96.745605, 46.944637 ], [ -96.779938, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.823883, 47.426229 ], [ -96.844482, 47.545945 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.954065 ], [ -97.130127, 48.136767 ], [ -97.147980, 48.318821 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.120514, 48.757999 ], [ -97.213898, 48.902643 ], [ -97.216644, 48.922499 ], [ -97.226257, 48.980217 ] ] } } ] } ] } , @@ -357,49 +357,49 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.479675, 33.635203 ], [ -94.909515, 33.831638 ], [ -95.189667, 33.937663 ], [ -95.417633, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.479675, 33.635203 ], [ -94.427490, 33.570005 ], [ -94.232483, 33.583735 ], [ -94.001770, 33.579159 ], [ -94.059448, 33.012118 ] ], [ [ -94.627991, 36.540536 ], [ -93.412628, 36.526191 ], [ -91.251068, 36.522881 ], [ -90.111237, 36.461054 ], [ -90.028839, 36.337253 ], [ -90.254059, 36.122346 ], [ -90.314484, 36.022447 ], [ -89.912109, 36.022447 ] ], [ [ -91.156311, 33.009815 ], [ -91.084900, 32.952216 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.478488 ], [ -90.942078, 32.306867 ], [ -91.080780, 32.204667 ], [ -91.127472, 32.015063 ], [ -91.207123, 31.952162 ], [ -91.299133, 31.877558 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.479675, 33.635203 ], [ -94.909515, 33.831638 ], [ -95.189667, 33.937663 ], [ -95.417633, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.627991, 36.540536 ], [ -94.625244, 36.668419 ] ], [ [ -94.479675, 33.635203 ], [ -94.427490, 33.570005 ], [ -94.232483, 33.583735 ], [ -94.001770, 33.579159 ], [ -94.059448, 33.012118 ] ], [ [ -90.248566, 35.021000 ], [ -89.912109, 35.021000 ] ], [ [ -91.156311, 33.009815 ], [ -91.084900, 32.952216 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.478488 ], [ -90.942078, 32.306867 ], [ -91.080780, 32.204667 ], [ -91.127472, 32.015063 ], [ -91.207123, 31.952162 ], [ -91.299133, 31.877558 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.429596, 40.368520 ], [ -91.410370, 40.551374 ], [ -91.153564, 40.699381 ], [ -91.087646, 40.851216 ], [ -90.955811, 41.025499 ], [ -90.962677, 41.046217 ] ], [ [ -95.322876, 40.001320 ], [ -95.712891, 40.001320 ] ], [ [ -95.322876, 40.001320 ], [ -95.451965, 40.214538 ], [ -95.607147, 40.343404 ], [ -95.625000, 40.359103 ], [ -95.712891, 40.441721 ] ], [ [ -91.429596, 40.368520 ], [ -91.566925, 40.452172 ], [ -91.757812, 40.613952 ], [ -92.850952, 40.592057 ], [ -94.001770, 40.584757 ], [ -95.712891, 40.583714 ] ], [ [ -94.627991, 36.540536 ], [ -93.506012, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.429596, 40.368520 ], [ -91.410370, 40.551374 ], [ -91.153564, 40.699381 ], [ -91.087646, 40.851216 ], [ -90.955811, 41.025499 ], [ -90.962677, 41.046217 ] ], [ [ -95.322876, 40.001320 ], [ -95.451965, 40.214538 ], [ -95.607147, 40.343404 ], [ -95.625000, 40.359103 ], [ -95.712891, 40.441721 ] ], [ [ -94.622498, 36.999262 ], [ -94.617004, 36.999262 ], [ -94.627991, 36.540536 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.227722, 43.500752 ], [ -92.539215, 43.519676 ], [ -94.000397, 43.512705 ], [ -95.359955, 43.499756 ], [ -95.712891, 43.500752 ] ], [ [ -91.227722, 43.500752 ], [ -91.253815, 43.614205 ], [ -91.256561, 43.854336 ], [ -91.289520, 43.937462 ], [ -91.627350, 44.085612 ], [ -91.878662, 44.257003 ], [ -91.950073, 44.364115 ], [ -92.061310, 44.432799 ], [ -92.385406, 44.574817 ], [ -92.504883, 44.583621 ], [ -92.796021, 44.775986 ], [ -92.765808, 44.995883 ], [ -92.765808, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.227722, 43.500752 ], [ -92.539215, 43.519676 ], [ -94.000397, 43.512705 ], [ -95.359955, 43.499756 ], [ -95.712891, 43.500752 ] ], [ [ -91.227722, 43.500752 ], [ -91.213989, 43.446937 ], [ -91.083527, 43.288202 ], [ -91.172791, 43.212182 ], [ -91.170044, 43.001634 ], [ -91.128845, 42.912183 ], [ -91.064301, 42.754071 ], [ -90.737457, 42.658202 ], [ -90.639954, 42.505515 ], [ -89.912109, 42.505515 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -92.011871, 46.711619 ], [ -92.274170, 46.656035 ], [ -92.264557, 46.095138 ], [ -92.296143, 46.096091 ], [ -92.756195, 45.890008 ], [ -92.899017, 45.705220 ], [ -92.688904, 45.517895 ], [ -92.764435, 45.267155 ], [ -92.765808, 45.026950 ] ], [ [ -90.396881, 46.575855 ], [ -90.335083, 46.596619 ], [ -90.333710, 46.593788 ], [ -90.175781, 46.560749 ], [ -90.096130, 46.381044 ], [ -90.000000, 46.361145 ], [ -89.912109, 46.343136 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -92.011871, 46.711619 ], [ -92.274170, 46.656035 ], [ -92.264557, 46.095138 ], [ -92.296143, 46.096091 ], [ -92.756195, 45.890008 ], [ -92.899017, 45.705220 ], [ -92.688904, 45.517895 ], [ -92.764435, 45.267155 ], [ -92.765808, 45.089036 ], [ -92.765808, 45.026950 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.622345, 30.274486 ], [ -89.658051, 30.440386 ], [ -89.789886, 30.556348 ], [ -89.853058, 30.682802 ], [ -89.787140, 30.846826 ], [ -89.758301, 31.012925 ], [ -90.087891, 31.014102 ] ], [ [ -87.529449, 30.274486 ], [ -87.458038, 30.410782 ], [ -87.404480, 30.608368 ], [ -87.632446, 30.851542 ], [ -87.617340, 30.926967 ], [ -87.044678, 30.984673 ], [ -85.005341, 30.990560 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.604492, 30.175999 ], [ -89.622345, 30.274486 ], [ -89.658051, 30.440386 ], [ -89.789886, 30.556348 ], [ -89.853058, 30.682802 ], [ -89.787140, 30.846826 ], [ -89.758301, 31.012925 ], [ -90.000000, 31.014102 ], [ -90.087891, 31.014102 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087891, 36.425703 ], [ -90.028839, 36.337253 ], [ -90.087891, 36.281921 ] ], [ [ -90.087891, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -89.497375, 36.506325 ], [ -89.523468, 36.409126 ], [ -89.585266, 36.266421 ], [ -89.662170, 36.022447 ] ], [ [ -88.166656, 34.999629 ], [ -86.908722, 34.998504 ], [ -85.624695, 34.986128 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087891, 36.425703 ], [ -90.028839, 36.337253 ], [ -90.087891, 36.281921 ] ], [ [ -90.087891, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -88.166656, 34.999629 ], [ -89.263916, 35.021000 ], [ -90.087891, 35.021000 ] ], [ [ -89.497375, 36.506325 ], [ -88.069153, 36.496390 ], [ -88.071899, 36.655200 ], [ -87.874146, 36.656301 ], [ -87.841187, 36.611118 ], [ -87.216339, 36.639774 ], [ -86.091614, 36.626550 ], [ -85.518951, 36.597889 ], [ -85.230560, 36.610016 ], [ -84.375000, 36.568115 ], [ -84.350281, 36.567012 ], [ -84.287109, 36.570321 ] ], [ [ -89.497375, 36.506325 ], [ -89.303741, 36.597889 ], [ -89.165039, 36.668419 ] ], [ [ -88.166656, 34.999629 ], [ -86.908722, 34.998504 ], [ -85.624695, 34.986128 ] ], [ [ -84.287109, 35.201867 ], [ -84.298096, 35.198500 ], [ -84.320068, 34.986128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.822693, 39.106620 ], [ -84.808960, 41.046217 ] ], [ [ -88.051300, 37.819548 ], [ -88.018341, 38.021050 ], [ -87.878265, 38.289937 ], [ -87.670898, 38.508415 ], [ -87.598114, 38.673717 ], [ -87.514343, 38.734804 ], [ -87.506104, 38.869652 ], [ -87.559662, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528076, 39.391632 ], [ -87.526703, 41.046217 ] ], [ [ -89.103241, 36.952087 ], [ -89.141693, 37.103384 ], [ -89.073029, 37.199706 ], [ -88.807983, 37.146087 ], [ -88.566284, 37.054081 ], [ -88.434448, 37.136235 ], [ -88.472900, 37.354876 ], [ -88.247681, 37.437793 ], [ -88.071899, 37.510815 ], [ -88.157043, 37.605528 ], [ -88.044434, 37.744657 ], [ -88.051300, 37.819548 ], [ -87.920837, 37.793508 ], [ -87.911224, 37.904116 ], [ -87.653046, 37.826057 ], [ -87.438812, 37.935533 ], [ -87.131195, 37.783740 ], [ -87.055664, 37.880273 ], [ -86.824951, 37.975598 ], [ -86.609344, 37.858591 ], [ -86.499481, 37.969102 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.060028, 37.960441 ], [ -85.838928, 38.258671 ], [ -85.697479, 38.289937 ], [ -85.565643, 38.462192 ], [ -85.425568, 38.535276 ], [ -85.403595, 38.727305 ], [ -85.167389, 38.690869 ], [ -85.010834, 38.778711 ], [ -84.843292, 38.780852 ], [ -84.799347, 38.854681 ], [ -84.880371, 39.058650 ], [ -84.822693, 39.106620 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.822693, 39.106620 ], [ -84.808960, 41.046217 ] ], [ [ -88.051300, 37.819548 ], [ -88.018341, 38.021050 ], [ -87.878265, 38.289937 ], [ -87.670898, 38.508415 ], [ -87.598114, 38.673717 ], [ -87.514343, 38.734804 ], [ -87.506104, 38.869652 ], [ -87.559662, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528076, 39.391632 ], [ -87.526703, 41.046217 ] ], [ [ -88.070526, 36.527295 ], [ -88.071899, 36.597889 ], [ -88.071899, 36.654098 ], [ -87.874146, 36.656301 ], [ -87.841187, 36.611118 ], [ -87.216339, 36.638672 ], [ -86.091614, 36.625448 ], [ -85.518951, 36.597889 ], [ -85.230560, 36.610016 ], [ -84.350281, 36.567012 ], [ -84.287109, 36.570321 ] ], [ [ -88.051300, 37.819548 ], [ -87.920837, 37.793508 ], [ -87.911224, 37.904116 ], [ -87.653046, 37.826057 ], [ -87.438812, 37.935533 ], [ -87.131195, 37.783740 ], [ -87.055664, 37.880273 ], [ -86.824951, 37.975598 ], [ -86.609344, 37.858591 ], [ -86.499481, 37.969102 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.060028, 37.960441 ], [ -85.838928, 38.258671 ], [ -85.697479, 38.289937 ], [ -85.565643, 38.462192 ], [ -85.425568, 38.535276 ], [ -85.403595, 38.727305 ], [ -85.167389, 38.690869 ], [ -85.010834, 38.778711 ], [ -84.843292, 38.780852 ], [ -84.799347, 38.854681 ], [ -84.880371, 39.058650 ], [ -84.822693, 39.106620 ] ], [ [ -89.103241, 36.952087 ], [ -89.133453, 36.851054 ], [ -89.114227, 36.694851 ], [ -89.303741, 36.597889 ], [ -89.453430, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.661285, 45.151053 ], [ -87.613220, 45.109393 ], [ -87.598114, 45.106485 ] ], [ [ -84.806213, 41.677015 ], [ -84.808960, 40.913513 ] ], [ [ -87.521210, 41.707779 ], [ -87.525330, 41.707779 ], [ -87.526703, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.661285, 45.151053 ], [ -87.613220, 45.109393 ], [ -87.598114, 45.106485 ] ], [ [ -87.806854, 42.494378 ], [ -88.575897, 42.503490 ], [ -90.087891, 42.505515 ] ], [ [ -86.823578, 41.761069 ], [ -86.823578, 41.755947 ], [ -85.748291, 41.750824 ], [ -84.807587, 41.755947 ], [ -84.806213, 41.677015 ] ], [ [ -87.521210, 41.707779 ], [ -87.525330, 41.707779 ], [ -87.526703, 40.913513 ] ] ] } } ] } ] } , @@ -417,43 +417,43 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.375000, 36.568115 ], [ -84.462891, 36.572527 ] ], [ [ -81.679230, 36.585760 ], [ -82.185974, 36.565909 ], [ -83.577118, 36.597889 ], [ -83.673248, 36.600094 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -83.075867, 34.978252 ], [ -82.975616, 35.008628 ], [ -82.435913, 35.179421 ], [ -81.514435, 35.171563 ], [ -81.046143, 35.125525 ], [ -81.037903, 35.036743 ], [ -80.937653, 35.103058 ], [ -80.781097, 34.933230 ], [ -80.783844, 34.817186 ], [ -79.672852, 34.807038 ], [ -78.662109, 33.953613 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.375000, 36.568115 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.383484, 36.656301 ], [ -83.343658, 36.668419 ] ], [ [ -84.320068, 34.986128 ], [ -84.298096, 35.198500 ], [ -84.086609, 35.261319 ], [ -84.017944, 35.368895 ], [ -83.875122, 35.489747 ], [ -83.673248, 35.516579 ], [ -83.438416, 35.562395 ], [ -83.209076, 35.648369 ], [ -83.110199, 35.737595 ], [ -82.919312, 35.816700 ], [ -82.924805, 35.889050 ], [ -82.673492, 36.024668 ], [ -82.592468, 35.936876 ], [ -82.223053, 36.125674 ], [ -82.051392, 36.105705 ], [ -81.897583, 36.274172 ], [ -81.692963, 36.317338 ], [ -81.703949, 36.459950 ], [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -83.075867, 34.978252 ], [ -83.185730, 34.896069 ], [ -83.346405, 34.706622 ], [ -83.075867, 34.540500 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.162954 ], [ -82.596588, 33.985502 ], [ -82.249146, 33.748322 ], [ -82.180481, 33.623768 ], [ -81.942902, 33.461234 ], [ -81.826172, 33.222605 ], [ -81.507568, 33.021330 ], [ -81.436157, 32.793047 ], [ -81.375732, 32.682152 ], [ -81.411438, 32.608146 ], [ -81.224670, 32.499338 ], [ -81.125793, 32.311509 ], [ -81.127167, 32.120964 ], [ -81.036530, 32.083738 ], [ -80.864868, 32.032527 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.577118, 36.597889 ], [ -82.185974, 36.565909 ], [ -81.679230, 36.585760 ] ], [ [ -80.518799, 40.641051 ], [ -80.517426, 41.046217 ] ], [ [ -82.588348, 38.414862 ], [ -82.341156, 38.440682 ], [ -82.210693, 38.579306 ], [ -82.194214, 38.801189 ], [ -82.054138, 39.018117 ], [ -81.918182, 38.993572 ], [ -81.905823, 38.881412 ], [ -81.816559, 38.922024 ], [ -81.784973, 39.019184 ], [ -81.745148, 39.199270 ], [ -81.521301, 39.371464 ], [ -81.400452, 39.349166 ], [ -81.265869, 39.376772 ], [ -81.150513, 39.425586 ], [ -80.878601, 39.654341 ], [ -80.862122, 39.756824 ], [ -80.764618, 39.972911 ], [ -80.661621, 40.233412 ], [ -80.614929, 40.463666 ], [ -80.657501, 40.591014 ], [ -80.518799, 40.641051 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -79.477844, 39.720920 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.160614, 39.418160 ], [ -78.962860, 39.457403 ], [ -78.828278, 39.562294 ], [ -78.662109, 39.540058 ] ], [ [ -81.971741, 37.535866 ], [ -81.927795, 37.365791 ], [ -81.815186, 37.275146 ], [ -81.662750, 37.195331 ], [ -81.348267, 37.315568 ], [ -81.227417, 37.245635 ], [ -80.855255, 37.328673 ], [ -80.833282, 37.418163 ], [ -80.719299, 37.383253 ], [ -80.595703, 37.456328 ], [ -80.457001, 37.441064 ], [ -80.297699, 37.518440 ], [ -80.275726, 37.609880 ], [ -80.292206, 37.727280 ], [ -80.157623, 37.900865 ], [ -79.963989, 38.031867 ], [ -79.914551, 38.178830 ], [ -79.742889, 38.356734 ], [ -79.648132, 38.573938 ], [ -79.514923, 38.497668 ], [ -79.366608, 38.425622 ], [ -79.222412, 38.464342 ], [ -79.174347, 38.555683 ], [ -78.965607, 38.821521 ], [ -78.892822, 38.779781 ], [ -78.750000, 38.904927 ], [ -78.662109, 38.964748 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.383484, 36.656301 ], [ -83.177490, 36.717972 ], [ -83.088226, 36.815881 ], [ -82.814941, 36.934525 ], [ -82.709198, 37.039832 ], [ -82.684479, 37.120906 ], [ -82.372742, 37.237982 ], [ -81.971741, 37.535866 ] ], [ [ -80.518799, 40.641051 ], [ -80.517426, 41.046217 ] ], [ [ -81.679230, 36.585760 ], [ -81.691589, 36.527295 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -79.477844, 39.720920 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.160614, 39.418160 ], [ -78.962860, 39.457403 ], [ -78.828278, 39.562294 ], [ -78.662109, 39.540058 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.461761, 41.693424 ], [ -83.839417, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -79.759369, 42.237669 ], [ -79.759369, 41.999305 ], [ -78.662109, 41.999305 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.461761, 41.693424 ], [ -83.839417, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -78.553619, 33.861293 ], [ -78.837891, 34.101571 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.750000, 36.539433 ], [ -78.837891, 36.539433 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.911896, 40.960197 ], [ -74.079437, 41.046217 ] ], [ [ -73.674316, 41.046217 ], [ -73.656464, 40.985082 ] ], [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -77.722778, 39.322612 ], [ -77.801056, 39.449980 ], [ -77.923279, 39.592990 ], [ -78.232269, 39.672313 ], [ -78.424530, 39.596165 ], [ -78.533020, 39.522052 ], [ -78.750000, 39.551707 ], [ -78.829651, 39.562294 ], [ -78.837891, 39.555942 ] ], [ [ -77.722778, 39.322612 ], [ -77.834015, 39.134321 ], [ -78.344879, 39.405428 ], [ -78.424530, 39.138582 ], [ -78.548126, 39.039453 ], [ -78.750000, 38.904927 ], [ -78.837891, 38.827940 ] ], [ [ -77.040253, 38.789416 ], [ -77.059479, 38.708018 ], [ -77.229767, 38.613651 ], [ -77.342377, 38.391186 ], [ -77.210541, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.239259 ] ], [ [ -75.404663, 39.794820 ], [ -75.200043, 39.886558 ], [ -75.128632, 39.949753 ], [ -74.891052, 40.081224 ], [ -74.763336, 40.190414 ], [ -75.077820, 40.449037 ], [ -75.095673, 40.555548 ], [ -75.204163, 40.586842 ], [ -75.198669, 40.747257 ], [ -75.081940, 40.869911 ], [ -75.135498, 41.000630 ], [ -75.051727, 41.046217 ] ], [ [ -75.404663, 39.794820 ], [ -75.554352, 39.691337 ], [ -75.526886, 39.498742 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.911896, 40.960197 ], [ -74.079437, 41.046217 ] ], [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -77.722778, 39.322612 ], [ -77.801056, 39.449980 ], [ -77.923279, 39.592990 ], [ -78.232269, 39.672313 ], [ -78.424530, 39.596165 ], [ -78.533020, 39.522052 ], [ -78.750000, 39.551707 ], [ -78.829651, 39.562294 ], [ -78.837891, 39.555942 ] ], [ [ -77.722778, 39.322612 ], [ -77.575836, 39.288608 ], [ -77.442627, 39.213103 ], [ -77.516785, 39.105554 ], [ -77.305298, 39.045853 ], [ -77.118530, 38.933776 ] ], [ [ -77.040253, 38.789416 ], [ -77.059479, 38.708018 ], [ -77.229767, 38.613651 ], [ -77.342377, 38.391186 ], [ -77.210541, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.239259 ] ], [ [ -75.787811, 39.723032 ], [ -75.713654, 38.449287 ], [ -75.047607, 38.448211 ] ], [ [ -75.787811, 39.723032 ], [ -75.710907, 39.802206 ], [ -75.620270, 39.847558 ], [ -75.404663, 39.794820 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.678192, 41.355165 ], [ -74.840240, 41.426253 ], [ -75.010529, 41.495207 ], [ -75.075073, 41.641105 ], [ -75.048981, 41.750824 ], [ -75.167084, 41.841943 ], [ -75.385437, 41.998284 ], [ -76.743622, 42.000325 ], [ -78.837891, 41.999305 ] ], [ [ -73.281555, 42.742978 ], [ -73.037109, 42.738944 ] ], [ [ -73.497162, 42.054391 ], [ -73.553467, 41.289158 ], [ -73.475189, 41.204489 ], [ -73.692169, 41.107295 ], [ -73.656464, 40.985082 ] ], [ [ -74.678192, 41.355165 ], [ -74.800415, 41.310824 ], [ -74.976196, 41.087632 ], [ -75.135498, 40.999593 ], [ -75.127258, 40.979898 ], [ -75.099792, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.678192, 41.355165 ], [ -74.840240, 41.426253 ], [ -75.010529, 41.495207 ], [ -75.075073, 41.641105 ], [ -75.048981, 41.750824 ], [ -75.167084, 41.841943 ], [ -75.385437, 41.998284 ], [ -76.743622, 42.000325 ], [ -78.837891, 41.999305 ] ], [ [ -73.347473, 45.006564 ], [ -73.368073, 44.804250 ], [ -73.407898, 44.675489 ], [ -73.383179, 44.378840 ], [ -73.328247, 44.226504 ], [ -73.429871, 44.019484 ], [ -73.337860, 43.758201 ], [ -73.401031, 43.613211 ], [ -73.383179, 43.575417 ], [ -73.238983, 43.567457 ], [ -73.281555, 42.742978 ], [ -73.037109, 42.738944 ] ], [ [ -73.497162, 42.054391 ], [ -73.037109, 42.043174 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.456207, 42.726839 ], [ -73.212891, 42.741970 ] ], [ [ -70.644836, 43.089952 ], [ -70.815125, 42.864893 ] ], [ [ -71.801147, 42.012571 ], [ -71.792908, 41.466399 ], [ -71.853333, 41.320107 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.456207, 42.726839 ], [ -73.212891, 42.741970 ] ], [ [ -71.504517, 45.008506 ], [ -71.503143, 45.007535 ], [ -71.619873, 44.736003 ], [ -71.545715, 44.592423 ], [ -71.585541, 44.468091 ], [ -71.809387, 44.352332 ], [ -72.003021, 44.304196 ], [ -72.035980, 44.206819 ], [ -72.059326, 44.045154 ], [ -72.177429, 43.808765 ], [ -72.259827, 43.721490 ], [ -72.369690, 43.521668 ], [ -72.402649, 43.285203 ], [ -72.434235, 43.222190 ], [ -72.458954, 42.960443 ], [ -72.537231, 42.830660 ], [ -72.456207, 42.726839 ] ], [ [ -70.644836, 43.089952 ], [ -70.815125, 42.864893 ] ], [ [ -71.801147, 42.012571 ], [ -73.212891, 42.047253 ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json index 998a88e1a..f3c076419 100644 --- a/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json +++ b/tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json @@ -9,7 +9,7 @@ "maxzoom": "7", "minzoom": "1", "name": "tests/ne_110m_admin_1_states_provinces_lines/out/-lcountries_-P_-Z1_-z7_-b4_-xfeaturecla_-xscalerank_-acrol_-ps.json.check.mbtiles", -"strategies": "[{},{\"dropped_by_rate\":109},{\"dropped_by_rate\":125},{\"dropped_by_rate\":139},{\"dropped_by_rate\":125},{\"dropped_by_rate\":121},{\"dropped_by_rate\":95},{}]", +"strategies": "[{},{\"dropped_by_rate\":109},{\"dropped_by_rate\":124},{\"dropped_by_rate\":138},{\"dropped_by_rate\":123},{\"dropped_by_rate\":119},{\"dropped_by_rate\":102},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -27,13 +27,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -91.406250, 43.500752 ], [ -91.230469, 43.500752 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.406250, 43.500752 ], [ -91.230469, 43.500752 ] ], [ [ -79.475098, 39.724089 ], [ -79.475098, 39.215231 ], [ -79.321289, 39.300299 ], [ -79.167480, 39.419221 ], [ -78.969727, 39.453161 ], [ -78.837891, 39.554883 ], [ -78.530273, 39.520992 ], [ -78.420410, 39.588757 ], [ -78.222656, 39.673370 ], [ -77.915039, 39.588757 ], [ -77.805176, 39.453161 ], [ -77.717285, 39.317300 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 41.508577 ], [ -111.049805, 41.029643 ], [ -109.050293, 41.004775 ] ], [ [ -91.153564, 33.008663 ], [ -91.087646, 32.953368 ], [ -91.175537, 32.805745 ], [ -91.032715, 32.602362 ], [ -91.076660, 32.481963 ], [ -90.944824, 32.305706 ], [ -91.076660, 32.203505 ], [ -91.131592, 32.017392 ], [ -91.318359, 31.858897 ], [ -91.406250, 31.653381 ], [ -91.505127, 31.409912 ], [ -91.625977, 31.297328 ], [ -91.582031, 31.043522 ], [ -90.703125, 31.015279 ], [ -89.758301, 31.015279 ], [ -89.791260, 30.845647 ], [ -89.857178, 30.685164 ], [ -89.791260, 30.552800 ], [ -89.659424, 30.439202 ], [ -89.626465, 30.278044 ], [ -89.604492, 30.173625 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 41.508577 ], [ -111.049805, 41.029643 ], [ -109.050293, 41.004775 ] ], [ [ -109.050293, 37.002553 ], [ -109.039307, 31.344254 ] ], [ [ -89.296875, 36.597889 ], [ -89.494629, 36.509636 ] ] ] } } ] } ] } , @@ -45,7 +45,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.703125, 41.475660 ], [ -90.692139, 41.475660 ], [ -90.571289, 41.508577 ] ], [ [ -89.604492, 30.173625 ], [ -89.626465, 30.278044 ], [ -89.659424, 30.439202 ], [ -89.791260, 30.552800 ], [ -89.857178, 30.685164 ], [ -89.791260, 30.845647 ], [ -89.758301, 31.015279 ], [ -90.703125, 31.015279 ] ], [ [ -88.165283, 35.003003 ], [ -86.912842, 35.003003 ], [ -85.627441, 34.985003 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.703125, 41.475660 ], [ -90.692139, 41.475660 ], [ -90.571289, 41.508577 ] ], [ [ -89.099121, 36.949892 ], [ -89.132080, 36.853252 ], [ -89.110107, 36.694851 ], [ -89.274902, 36.615528 ], [ -89.494629, 36.509636 ] ], [ [ -79.475098, 39.724089 ], [ -79.486084, 39.215231 ], [ -79.332275, 39.300299 ], [ -79.156494, 39.419221 ], [ -78.958740, 39.461644 ], [ -78.826904, 39.563353 ], [ -78.530273, 39.520992 ], [ -78.420410, 39.597223 ], [ -78.233643, 39.673370 ], [ -77.926025, 39.588757 ], [ -77.805176, 39.453161 ], [ -77.717285, 39.325799 ] ] ] } } ] } ] } , @@ -57,7 +57,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.052484 ], [ -116.317749, 36.323977 ], [ -118.114014, 37.644685 ], [ -119.998169, 38.993572 ], [ -119.998169, 41.244772 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.317749, 36.323977 ], [ -118.114014, 37.644685 ], [ -119.998169, 38.993572 ], [ -119.998169, 41.244772 ] ], [ [ -114.032593, 36.993778 ], [ -112.417603, 37.011326 ], [ -112.148438, 37.011326 ] ] ] } } ] } ] } , @@ -69,19 +69,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.050293, 41.000630 ] ], [ [ -109.044800, 36.998166 ], [ -107.479248, 36.998166 ], [ -105.897217, 36.998166 ], [ -104.199829, 36.993778 ], [ -103.002319, 36.993778 ] ], [ [ -91.153564, 33.008663 ], [ -91.082153, 32.953368 ], [ -91.175537, 32.810362 ], [ -91.032715, 32.602362 ], [ -91.071167, 32.477329 ], [ -90.944824, 32.305706 ], [ -91.082153, 32.203505 ], [ -91.126099, 32.017392 ], [ -91.318359, 31.858897 ], [ -91.411743, 31.648705 ], [ -91.499634, 31.409912 ], [ -91.625977, 31.297328 ], [ -91.582031, 31.048228 ], [ -90.703125, 31.015279 ], [ -89.758301, 31.015279 ], [ -89.785767, 30.845647 ], [ -89.851685, 30.685164 ], [ -89.791260, 30.557531 ], [ -89.659424, 30.439202 ], [ -89.648438, 30.391830 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.244772 ], [ -111.055298, 41.029643 ], [ -109.050293, 41.000630 ] ], [ [ -104.046021, 41.244772 ], [ -104.046021, 41.004775 ] ], [ [ -109.044800, 36.998166 ], [ -110.494995, 37.006939 ], [ -112.417603, 37.011326 ], [ -112.851562, 37.006939 ] ], [ [ -109.044800, 36.998166 ], [ -109.044800, 31.339563 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 5 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.851562, 41.996243 ] ], [ [ -104.024048, 45.954969 ], [ -102.117920, 45.962606 ], [ -100.068970, 45.966425 ], [ -98.442993, 45.962606 ], [ -96.536865, 46.016039 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.851562, 41.996243 ] ], [ [ -104.051514, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 6 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.664917, 36.022447 ], [ -90.313110, 36.022447 ], [ -90.252686, 36.120128 ], [ -90.142822, 36.230981 ], [ -90.027466, 36.337253 ], [ -90.109863, 36.461054 ], [ -90.351562, 36.474307 ] ], [ [ -89.604492, 30.178373 ], [ -89.620972, 30.273300 ], [ -89.659424, 30.439202 ], [ -89.791260, 30.557531 ], [ -89.851685, 30.685164 ], [ -89.785767, 30.845647 ], [ -89.758301, 31.015279 ], [ -90.351562, 31.015279 ] ], [ [ -88.165283, 34.998504 ], [ -86.907349, 34.998504 ], [ -85.627441, 34.985003 ] ], [ [ -87.528076, 30.273300 ], [ -87.456665, 30.410782 ], [ -87.407227, 30.609550 ], [ -87.632446, 30.850363 ], [ -87.615967, 30.925789 ], [ -87.044678, 30.982319 ], [ -85.006714, 30.991737 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.664917, 36.022447 ], [ -90.313110, 36.022447 ], [ -90.252686, 36.120128 ], [ -90.142822, 36.230981 ], [ -90.027466, 36.337253 ], [ -90.109863, 36.461054 ], [ -90.351562, 36.474307 ] ], [ [ -89.104614, 36.949892 ], [ -89.132080, 36.853252 ], [ -89.115601, 36.694851 ], [ -89.274902, 36.611118 ], [ -89.500122, 36.505221 ] ], [ [ -83.078613, 34.980502 ], [ -83.182983, 34.894942 ], [ -83.347778, 34.705493 ], [ -83.078613, 34.538238 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.161818 ], [ -82.595215, 33.984364 ], [ -82.249146, 33.747180 ], [ -82.177734, 33.623768 ], [ -81.941528, 33.458943 ], [ -81.826172, 33.224903 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.791892 ], [ -81.375732, 32.680996 ], [ -81.408691, 32.606989 ], [ -81.221924, 32.500496 ], [ -81.128540, 32.310349 ], [ -81.128540, 32.119801 ], [ -81.035156, 32.082575 ], [ -80.864868, 32.031363 ] ], [ [ -79.475098, 39.719863 ], [ -79.486084, 39.215231 ], [ -79.332275, 39.304550 ], [ -79.161987, 39.419221 ], [ -78.964233, 39.457403 ], [ -78.826904, 39.563353 ], [ -78.535767, 39.520992 ], [ -78.425903, 39.597223 ], [ -78.233643, 39.673370 ], [ -77.920532, 39.592990 ], [ -77.799683, 39.448919 ], [ -77.722778, 39.321550 ] ] ] } } ] } ] } , @@ -99,37 +99,37 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -118.114014, 37.644685 ], [ -120.000916, 38.995707 ], [ -119.998169, 41.112469 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -118.114014, 37.644685 ], [ -120.000916, 38.995707 ], [ -119.998169, 41.112469 ] ], [ [ -114.029846, 36.993778 ], [ -112.417603, 37.009133 ], [ -112.324219, 37.009133 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.925781, 41.998284 ] ], [ [ -112.324219, 44.559163 ], [ -112.335205, 44.561120 ], [ -112.362671, 44.461231 ], [ -112.689514, 44.498464 ], [ -112.873535, 44.359206 ], [ -113.052063, 44.619799 ], [ -113.175659, 44.764287 ], [ -113.378906, 44.789633 ], [ -113.439331, 44.861710 ], [ -113.502502, 45.123929 ], [ -113.681030, 45.249755 ], [ -113.793640, 45.564064 ], [ -113.914490, 45.702343 ], [ -114.035339, 45.729191 ], [ -114.136963, 45.589056 ], [ -114.334717, 45.469762 ], [ -114.513245, 45.569832 ], [ -114.524231, 45.824971 ], [ -114.406128, 45.890008 ], [ -114.491272, 46.147492 ], [ -114.392395, 46.409458 ], [ -114.285278, 46.632465 ], [ -114.584656, 46.641894 ], [ -114.842834, 46.786897 ], [ -115.120239, 47.094435 ], [ -115.287781, 47.249407 ], [ -115.518494, 47.344406 ], [ -115.705261, 47.504214 ], [ -115.705261, 47.683881 ], [ -115.966187, 47.949466 ], [ -116.048584, 49.000042 ] ], [ [ -119.998169, 41.992160 ], [ -119.998169, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.925781, 41.998284 ] ], [ [ -117.029114, 42.000325 ], [ -114.032593, 41.992160 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 10 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.031860, 48.998240 ], [ -117.029114, 48.806863 ] ], [ [ -116.048584, 49.000042 ], [ -116.032104, 48.806863 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.031860, 48.998240 ], [ -117.029114, 48.806863 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -106.506958, 31.753861 ], [ -106.619568, 31.914868 ], [ -106.630554, 31.998759 ], [ -105.729675, 31.998759 ], [ -103.930664, 31.998759 ], [ -103.002319, 31.998759 ], [ -103.002319, 32.101190 ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -106.506958, 31.753861 ], [ -106.619568, 31.914868 ], [ -106.630554, 31.998759 ], [ -105.729675, 31.998759 ], [ -103.930664, 31.998759 ], [ -103.002319, 31.998759 ], [ -103.002319, 32.101190 ] ], [ [ -109.042053, 31.339563 ], [ -109.044800, 32.101190 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.112469 ], [ -111.055298, 41.027571 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 37.000359 ], [ -107.479248, 37.000359 ], [ -105.899963, 36.995972 ], [ -104.199829, 36.995972 ], [ -103.002319, 36.995972 ], [ -102.041016, 36.991585 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.055298, 41.112469 ], [ -111.055298, 41.027571 ], [ -109.053040, 41.002703 ] ], [ [ -104.046021, 41.112469 ], [ -104.046021, 41.004775 ] ], [ [ -109.044800, 37.000359 ], [ -110.494995, 37.006939 ], [ -112.417603, 37.009133 ], [ -112.675781, 37.006939 ] ], [ [ -103.002319, 36.995972 ], [ -102.041016, 36.991585 ] ], [ [ -109.044800, 37.000359 ], [ -109.044800, 31.802893 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.675781, 41.996243 ] ], [ [ -111.085510, 44.506300 ], [ -111.192627, 44.561120 ], [ -111.291504, 44.701850 ], [ -111.398621, 44.729174 ], [ -111.541443, 44.529801 ], [ -111.772156, 44.498464 ], [ -112.335205, 44.561120 ], [ -112.362671, 44.461231 ], [ -112.675781, 44.496505 ] ], [ [ -104.026794, 45.956878 ], [ -104.076233, 47.171044 ], [ -104.092712, 49.005447 ] ], [ [ -104.026794, 45.956878 ], [ -102.115173, 45.960697 ], [ -101.074219, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.000325 ], [ -112.675781, 41.996243 ] ], [ [ -104.026794, 45.956878 ], [ -104.076233, 47.171044 ], [ -104.092712, 49.005447 ] ], [ [ -104.051514, 43.000630 ], [ -104.046021, 41.004775 ] ] ] } } ] } ] } , @@ -147,13 +147,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.795288, 40.582671 ], [ -95.861206, 40.763901 ], [ -95.833740, 40.942564 ], [ -95.855713, 41.112469 ] ], [ [ -95.795288, 40.582671 ], [ -94.897156, 40.582671 ], [ -94.001770, 40.584757 ], [ -92.850952, 40.593100 ], [ -91.757812, 40.613952 ], [ -91.568298, 40.451127 ], [ -91.430969, 40.367474 ] ], [ [ -91.156311, 33.008663 ], [ -91.084900, 32.953368 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.477329 ], [ -90.942078, 32.305706 ], [ -91.082153, 32.203505 ], [ -91.128845, 32.015063 ], [ -91.321106, 31.858897 ], [ -91.345825, 31.802893 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.795288, 40.582671 ], [ -95.861206, 40.763901 ], [ -95.833740, 40.942564 ], [ -95.855713, 41.112469 ] ], [ [ -90.249939, 35.021000 ], [ -89.824219, 35.021000 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 7, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.539612, 46.198844 ], [ -96.600037, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.734619, 46.715386 ], [ -96.745605, 46.944637 ], [ -96.778564, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.825256, 47.426229 ], [ -96.844482, 47.546872 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.953145 ], [ -97.130127, 48.136767 ], [ -97.149353, 48.317908 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.119141, 48.757999 ], [ -97.212524, 48.902643 ], [ -97.229004, 49.001844 ] ], [ [ -96.539612, 46.017946 ], [ -98.440247, 45.962606 ], [ -100.066223, 45.964515 ], [ -101.425781, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.539612, 46.198844 ], [ -96.600037, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.734619, 46.715386 ], [ -96.745605, 46.944637 ], [ -96.778564, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.825256, 47.426229 ], [ -96.844482, 47.546872 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.953145 ], [ -97.130127, 48.136767 ], [ -97.149353, 48.317908 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.119141, 48.757999 ], [ -97.212524, 48.902643 ], [ -97.229004, 49.001844 ] ], [ [ -91.227722, 43.500752 ], [ -91.213989, 43.446937 ], [ -91.082153, 43.287203 ], [ -91.172791, 43.211182 ], [ -91.170044, 43.002639 ], [ -91.128845, 42.912183 ], [ -91.065674, 42.753063 ], [ -90.738831, 42.658202 ], [ -90.639954, 42.504503 ] ] ] } } ] } ] } , @@ -165,31 +165,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 13 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.623718, 30.275672 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.682802 ], [ -89.788513, 30.848005 ], [ -89.758301, 31.012925 ], [ -90.175781, 31.015279 ] ], [ [ -87.530823, 30.273300 ], [ -87.456665, 30.410782 ], [ -87.404480, 30.607186 ], [ -87.632446, 30.850363 ], [ -87.615967, 30.928145 ], [ -87.044678, 30.984673 ], [ -85.003967, 30.989383 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.623718, 30.275672 ], [ -89.659424, 30.441570 ], [ -89.791260, 30.557531 ], [ -89.854431, 30.682802 ], [ -89.788513, 30.848005 ], [ -89.758301, 31.012925 ], [ -90.175781, 31.015279 ] ], [ [ -81.079102, 32.101190 ], [ -81.035156, 32.084902 ], [ -80.864868, 32.033692 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 36.465472 ], [ -90.112610, 36.461054 ], [ -90.030212, 36.337253 ], [ -90.142822, 36.230981 ], [ -90.175781, 36.197742 ] ], [ [ -90.175781, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -84.822693, 39.106620 ], [ -84.817200, 39.800096 ], [ -84.808960, 40.772222 ], [ -84.808960, 41.112469 ] ], [ [ -88.049927, 37.818463 ], [ -87.920837, 37.792422 ], [ -87.909851, 37.903032 ], [ -87.654419, 37.827141 ], [ -87.440186, 37.935533 ], [ -87.129822, 37.783740 ], [ -87.055664, 37.881357 ], [ -86.824951, 37.976680 ], [ -86.610718, 37.857507 ], [ -86.498108, 37.970185 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.058655, 37.961523 ], [ -85.838928, 38.257593 ], [ -85.698853, 38.289937 ], [ -85.567017, 38.462192 ], [ -85.424194, 38.535276 ], [ -85.404968, 38.726233 ], [ -85.166016, 38.689798 ], [ -85.012207, 38.779781 ], [ -84.841919, 38.779781 ], [ -84.800720, 38.854681 ], [ -84.880371, 39.059716 ], [ -84.822693, 39.106620 ] ], [ [ -88.165283, 34.998504 ], [ -86.910095, 34.998504 ], [ -85.624695, 34.985003 ] ], [ [ -80.518799, 40.641051 ], [ -80.518799, 41.112469 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 36.465472 ], [ -90.112610, 36.461054 ], [ -90.030212, 36.337253 ], [ -90.142822, 36.230981 ], [ -90.175781, 36.197742 ] ], [ [ -90.175781, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -88.165283, 34.998504 ], [ -89.263916, 35.021000 ], [ -90.175781, 35.021000 ] ], [ [ -89.497375, 36.505221 ], [ -88.069153, 36.496390 ], [ -88.071899, 36.655200 ], [ -87.874146, 36.655200 ], [ -87.841187, 36.611118 ], [ -87.214966, 36.639774 ], [ -86.676636, 36.633162 ], [ -86.091614, 36.626550 ], [ -85.517578, 36.597889 ], [ -85.231934, 36.608914 ], [ -84.350281, 36.567012 ], [ -83.671875, 36.600094 ] ], [ [ -89.101868, 36.952087 ], [ -89.134827, 36.851054 ], [ -89.115601, 36.694851 ], [ -89.274902, 36.611118 ], [ -89.497375, 36.505221 ] ], [ [ -80.518799, 40.641051 ], [ -80.518799, 41.112469 ] ], [ [ -83.075867, 34.978252 ], [ -83.185730, 34.894942 ], [ -83.345032, 34.705493 ], [ -83.075867, 34.540500 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.161818 ], [ -82.597961, 33.984364 ], [ -82.249146, 33.749464 ], [ -82.180481, 33.623768 ], [ -81.944275, 33.461234 ], [ -81.826172, 33.222605 ], [ -81.507568, 33.022482 ], [ -81.436157, 32.791892 ], [ -81.375732, 32.683308 ], [ -81.411438, 32.609303 ], [ -81.224670, 32.498180 ], [ -81.125793, 32.312670 ], [ -81.128540, 32.122127 ], [ -81.035156, 32.084902 ], [ -80.864868, 32.033692 ] ], [ [ -79.477844, 39.719863 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.161987, 39.417099 ], [ -78.961487, 39.457403 ], [ -78.829651, 39.563353 ], [ -78.574219, 39.527348 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 8, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 42.120636 ], [ -90.156555, 42.104336 ], [ -90.175781, 42.006448 ] ], [ [ -84.806213, 41.677015 ], [ -84.808960, 40.847060 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.847060 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.175781, 42.120636 ], [ -90.156555, 42.104336 ], [ -90.175781, 42.006448 ] ], [ [ -86.824951, 41.761069 ], [ -86.824951, 41.754922 ], [ -85.748291, 41.750824 ], [ -84.806213, 41.754922 ], [ -84.806213, 41.677015 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.847060 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 12 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.913269, 40.959160 ], [ -74.207153, 41.112469 ] ], [ [ -77.041626, 38.788345 ], [ -77.058105, 38.709089 ], [ -77.228394, 38.614724 ], [ -77.343750, 38.391186 ], [ -77.209167, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.240337 ] ], [ [ -75.404663, 39.795876 ], [ -75.552979, 39.690281 ], [ -75.528259, 39.497683 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.913269, 40.959160 ], [ -74.207153, 41.112469 ] ], [ [ -77.722778, 39.321550 ], [ -77.802429, 39.448919 ], [ -77.923279, 39.592990 ], [ -78.230896, 39.671256 ], [ -78.425903, 39.597223 ], [ -78.533020, 39.523111 ], [ -78.829651, 39.563353 ], [ -78.925781, 39.487085 ] ], [ [ -75.786438, 39.724089 ], [ -75.709534, 39.802206 ], [ -75.621643, 39.846504 ], [ -75.404663, 39.795876 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 5, "x": 9, "y": 11 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.838867, 41.426253 ], [ -75.009155, 41.496235 ], [ -75.075073, 41.640078 ], [ -75.047607, 41.750824 ], [ -75.168457, 41.840920 ], [ -75.385437, 41.998284 ], [ -76.742249, 42.000325 ], [ -78.200684, 42.000325 ], [ -78.925781, 42.000325 ] ], [ [ -73.281555, 42.742978 ], [ -72.457581, 42.726839 ] ], [ [ -71.801147, 42.012571 ], [ -71.792908, 41.465370 ], [ -71.853333, 41.319076 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.679565, 41.356196 ], [ -74.838867, 41.426253 ], [ -75.009155, 41.496235 ], [ -75.075073, 41.640078 ], [ -75.047607, 41.750824 ], [ -75.168457, 41.840920 ], [ -75.385437, 41.998284 ], [ -76.742249, 42.000325 ], [ -78.200684, 42.000325 ], [ -78.925781, 42.000325 ] ], [ [ -73.281555, 42.742978 ], [ -72.457581, 42.726839 ] ], [ [ -73.498535, 42.053372 ], [ -72.732239, 42.035014 ], [ -71.801147, 42.012571 ] ] ] } } ] } ] } , @@ -213,7 +213,7 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.837891, 41.998284 ] ], [ [ -119.998169, 41.992160 ], [ -118.037109, 41.995222 ] ], [ [ -119.998169, 41.992160 ], [ -119.999542, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -119.998169, 41.992160 ], [ -123.837891, 41.998284 ] ], [ [ -119.998169, 41.992160 ], [ -119.999542, 40.913513 ] ] ] } } ] } ] } , @@ -225,31 +225,31 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -116.787415, 36.668419 ] ], [ [ -114.642334, 35.052484 ], [ -114.580536, 35.248984 ], [ -114.629974, 35.445009 ], [ -114.650574, 35.638325 ], [ -114.649200, 35.853440 ], [ -114.739838, 35.991341 ], [ -114.671173, 36.114581 ], [ -114.461060, 36.114581 ], [ -114.268799, 36.043547 ], [ -114.132843, 36.003563 ], [ -114.065552, 36.155618 ], [ -114.022980, 36.189984 ], [ -114.027100, 36.668419 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -114.642334, 35.052484 ], [ -116.320496, 36.321764 ], [ -116.787415, 36.668419 ] ], [ [ -114.642334, 35.052484 ], [ -114.621735, 34.963623 ], [ -114.566803, 34.828459 ], [ -114.484406, 34.652415 ], [ -114.353943, 34.464674 ], [ -114.165802, 34.271971 ], [ -114.469299, 34.067450 ], [ -114.547577, 33.608901 ], [ -114.742584, 33.379853 ], [ -114.691772, 33.203073 ], [ -114.656067, 33.053565 ], [ -114.478912, 32.916485 ], [ -114.590149, 32.715666 ], [ -114.721985, 32.716822 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.596527, 36.527295 ], [ -118.114014, 37.644685 ], [ -118.212891, 37.715331 ] ], [ [ -114.029846, 36.993778 ], [ -114.027100, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.596527, 36.527295 ], [ -118.114014, 37.644685 ], [ -118.212891, 37.715331 ] ], [ [ -114.029846, 36.993778 ], [ -112.417603, 37.009133 ], [ -112.412109, 37.009133 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.027740, 41.999305 ], [ -117.014008, 43.796872 ], [ -116.926117, 44.080680 ], [ -117.007141, 44.210757 ], [ -117.193909, 44.278638 ], [ -117.192535, 44.438683 ], [ -117.051086, 44.665723 ], [ -116.835480, 44.863656 ], [ -116.709137, 45.151053 ] ], [ [ -117.027740, 41.999305 ], [ -117.027740, 41.997263 ], [ -118.212891, 41.995222 ] ], [ [ -112.412109, 44.468091 ], [ -112.689514, 44.498464 ], [ -112.874908, 44.360188 ], [ -113.052063, 44.619799 ], [ -113.174286, 44.765262 ], [ -113.378906, 44.789633 ], [ -113.439331, 44.862683 ], [ -113.502502, 45.124898 ], [ -113.540955, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.027740, 41.999305 ], [ -117.014008, 43.796872 ], [ -116.926117, 44.080680 ], [ -117.007141, 44.210757 ], [ -117.193909, 44.278638 ], [ -117.192535, 44.438683 ], [ -117.051086, 44.665723 ], [ -116.835480, 44.863656 ], [ -116.709137, 45.151053 ] ], [ [ -114.033966, 41.993181 ], [ -112.412109, 41.997263 ] ], [ [ -117.027740, 41.999305 ], [ -114.033966, 41.993181 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 45.999824 ], [ -116.905518, 46.177929 ], [ -116.997528, 46.329862 ], [ -117.026367, 47.722697 ], [ -117.030487, 48.980217 ] ], [ [ -116.915131, 45.999824 ], [ -118.212891, 45.995054 ] ], [ [ -113.479156, 45.026950 ], [ -113.502502, 45.123929 ], [ -113.679657, 45.248788 ], [ -113.793640, 45.565025 ], [ -113.913116, 45.702343 ], [ -114.035339, 45.730150 ], [ -114.136963, 45.589056 ], [ -114.334717, 45.469762 ], [ -114.513245, 45.568871 ], [ -114.522858, 45.824971 ], [ -114.407501, 45.890008 ], [ -114.491272, 46.146540 ], [ -114.393768, 46.409458 ], [ -114.283905, 46.631522 ], [ -114.584656, 46.640951 ], [ -114.842834, 46.785956 ], [ -115.121613, 47.095370 ], [ -115.287781, 47.250339 ], [ -115.518494, 47.345337 ], [ -115.703888, 47.505142 ], [ -115.703888, 47.684806 ], [ -115.967560, 47.950386 ], [ -116.045837, 48.980217 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -116.915131, 45.999824 ], [ -116.905518, 46.177929 ], [ -116.997528, 46.329862 ], [ -117.026367, 47.722697 ], [ -117.030487, 48.980217 ] ], [ [ -116.915131, 45.999824 ], [ -118.212891, 45.995054 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 11, "y": 21 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -117.030487, 48.999141 ], [ -117.030487, 48.864715 ] ], [ [ -116.047211, 49.000042 ], [ -116.037598, 48.864715 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -117.030487, 48.999141 ], [ -117.030487, 48.864715 ] ] } } ] } ] } , @@ -267,13 +267,13 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.053925, 41.046217 ], [ -111.053925, 41.028607 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 36.999262 ], [ -107.479248, 36.999262 ], [ -106.787109, 36.998166 ] ], [ [ -109.044800, 36.999262 ], [ -109.044800, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.053925, 41.046217 ], [ -111.053925, 41.028607 ], [ -109.053040, 41.002703 ] ], [ [ -109.044800, 36.999262 ], [ -110.496368, 37.006939 ], [ -112.417603, 37.009133 ], [ -112.587891, 37.008036 ] ], [ [ -109.044800, 36.999262 ], [ -109.044800, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 12, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.001346 ], [ -112.587891, 41.997263 ] ], [ [ -111.085510, 44.506300 ], [ -111.194000, 44.561120 ], [ -111.291504, 44.700874 ], [ -111.399994, 44.728199 ], [ -111.541443, 44.529801 ], [ -111.770782, 44.497485 ], [ -112.335205, 44.560142 ], [ -112.362671, 44.462211 ], [ -112.587891, 44.487689 ] ], [ [ -111.085510, 44.506300 ], [ -111.049805, 44.487689 ], [ -111.049805, 42.001346 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -111.049805, 42.001346 ], [ -112.587891, 41.997263 ] ], [ [ -111.049805, 42.001346 ], [ -111.053925, 41.027571 ], [ -109.053040, 41.001666 ] ] ] } } ] } ] } , @@ -297,19 +297,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.044647, 41.046217 ], [ -104.044647, 41.004775 ] ], [ [ -103.002319, 36.994875 ], [ -104.199829, 36.995972 ], [ -105.899963, 36.997069 ], [ -106.962891, 36.999262 ] ], [ [ -102.049255, 40.000268 ], [ -102.047882, 40.000268 ], [ -101.162109, 40.000268 ] ], [ [ -103.002319, 36.994875 ], [ -102.041016, 36.991585 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.044647, 41.046217 ], [ -104.044647, 41.004775 ] ], [ [ -103.002319, 36.994875 ], [ -103.002319, 36.527295 ] ], [ [ -103.002319, 36.994875 ], [ -102.041016, 36.991585 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.077606, 45.040537 ], [ -104.052887, 42.999625 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.052887, 42.999625 ], [ -104.044647, 41.003739 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.026794, 45.955924 ], [ -104.077606, 47.171044 ], [ -104.092712, 48.980217 ] ], [ [ -104.077606, 45.040537 ], [ -104.077606, 45.026950 ] ], [ [ -104.026794, 45.955924 ], [ -102.116547, 45.960697 ], [ -101.162109, 45.963561 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -104.077606, 45.040537 ], [ -105.746155, 45.051210 ], [ -106.962891, 45.047330 ] ], [ [ -104.026794, 45.955924 ], [ -104.077606, 47.171044 ], [ -104.092712, 48.980217 ] ] ] } } ] } ] } , @@ -327,19 +327,19 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.583714 ], [ -95.861206, 40.764941 ], [ -95.833740, 40.943602 ], [ -95.846100, 41.046217 ] ], [ [ -95.537109, 40.001320 ], [ -96.698914, 40.001320 ], [ -98.999176, 40.000268 ], [ -100.299683, 40.000268 ], [ -101.337891, 40.000268 ] ], [ [ -95.796661, 40.583714 ], [ -95.776062, 40.501269 ], [ -95.607147, 40.343404 ], [ -95.537109, 40.284764 ] ], [ [ -95.796661, 40.583714 ], [ -95.537109, 40.583714 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -95.796661, 40.583714 ], [ -95.861206, 40.764941 ], [ -95.833740, 40.943602 ], [ -95.846100, 41.046217 ] ], [ [ -95.796661, 40.583714 ], [ -95.776062, 40.501269 ], [ -95.607147, 40.343404 ], [ -95.537109, 40.284764 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.451721, 43.501749 ], [ -96.439362, 44.435741 ], [ -96.529999, 45.151053 ] ], [ [ -96.454468, 42.488302 ], [ -96.410522, 42.388980 ], [ -96.345978, 42.224450 ], [ -96.348724, 42.142023 ], [ -96.167450, 41.953363 ], [ -96.104279, 41.787697 ], [ -96.096039, 41.555866 ], [ -96.024628, 41.524001 ], [ -95.958710, 41.404626 ], [ -95.855713, 41.115573 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.451721, 43.501749 ], [ -96.439362, 44.435741 ], [ -96.529999, 45.151053 ] ], [ [ -96.451721, 43.501749 ], [ -96.586304, 43.500752 ], [ -96.586304, 43.257206 ], [ -96.458588, 43.124041 ], [ -96.483307, 43.015693 ], [ -96.535492, 42.855833 ], [ -96.615143, 42.691521 ], [ -96.453094, 42.580388 ], [ -96.454468, 42.488302 ], [ -96.410522, 42.388980 ], [ -96.345978, 42.224450 ], [ -96.348724, 42.142023 ], [ -96.167450, 41.953363 ], [ -96.104279, 41.787697 ], [ -96.096039, 41.555866 ], [ -96.024628, 41.524001 ], [ -95.958710, 41.404626 ], [ -95.855713, 41.115573 ], [ -95.833740, 40.943602 ], [ -95.837860, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 14, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -96.539612, 46.017946 ], [ -96.538239, 46.198844 ], [ -96.601410, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.733246, 46.716327 ], [ -96.745605, 46.944637 ], [ -96.779938, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.823883, 47.426229 ], [ -96.844482, 47.545945 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.954065 ], [ -97.130127, 48.136767 ], [ -97.147980, 48.318821 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.120514, 48.757999 ], [ -97.213898, 48.902643 ], [ -97.226257, 48.980217 ] ], [ [ -96.539612, 46.017946 ], [ -98.441620, 45.963561 ], [ -100.066223, 45.965470 ], [ -101.337891, 45.962606 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -96.539612, 46.017946 ], [ -96.538239, 46.198844 ], [ -96.601410, 46.350719 ], [ -96.685181, 46.513516 ], [ -96.733246, 46.716327 ], [ -96.745605, 46.944637 ], [ -96.779938, 46.998988 ], [ -96.819763, 47.292271 ], [ -96.823883, 47.426229 ], [ -96.844482, 47.545945 ], [ -96.893921, 47.748558 ], [ -97.014771, 47.954065 ], [ -97.130127, 48.136767 ], [ -97.147980, 48.318821 ], [ -97.160339, 48.514785 ], [ -97.127380, 48.641984 ], [ -97.120514, 48.757999 ], [ -97.213898, 48.902643 ], [ -97.226257, 48.980217 ] ] } } ] } ] } , @@ -357,49 +357,49 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.479675, 33.635203 ], [ -94.909515, 33.831638 ], [ -95.189667, 33.937663 ], [ -95.417633, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.479675, 33.635203 ], [ -94.427490, 33.570005 ], [ -94.232483, 33.583735 ], [ -94.001770, 33.579159 ], [ -94.059448, 33.012118 ] ], [ [ -94.627991, 36.540536 ], [ -93.412628, 36.526191 ], [ -92.307129, 36.522881 ], [ -91.251068, 36.522881 ], [ -90.111237, 36.461054 ], [ -90.028839, 36.337253 ], [ -90.141449, 36.229874 ], [ -90.254059, 36.122346 ], [ -90.314484, 36.022447 ], [ -89.912109, 36.022447 ] ], [ [ -91.156311, 33.009815 ], [ -91.084900, 32.952216 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.478488 ], [ -90.942078, 32.306867 ], [ -91.080780, 32.204667 ], [ -91.127472, 32.015063 ], [ -91.299133, 31.877558 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -94.479675, 33.635203 ], [ -94.909515, 33.831638 ], [ -95.189667, 33.937663 ], [ -95.417633, 33.870416 ], [ -95.712891, 33.879537 ] ], [ [ -94.627991, 36.540536 ], [ -94.625244, 36.668419 ] ], [ [ -94.479675, 33.635203 ], [ -94.427490, 33.570005 ], [ -94.232483, 33.583735 ], [ -94.001770, 33.579159 ], [ -94.059448, 33.012118 ] ], [ [ -90.248566, 35.021000 ], [ -89.912109, 35.021000 ] ], [ [ -91.156311, 33.009815 ], [ -91.084900, 32.952216 ], [ -91.175537, 32.808053 ], [ -91.029968, 32.602362 ], [ -91.071167, 32.478488 ], [ -90.942078, 32.306867 ], [ -91.080780, 32.204667 ], [ -91.127472, 32.015063 ], [ -91.299133, 31.877558 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.429596, 40.368520 ], [ -91.410370, 40.551374 ], [ -91.153564, 40.699381 ], [ -91.087646, 40.851216 ], [ -90.955811, 41.025499 ], [ -90.962677, 41.046217 ] ], [ [ -95.322876, 40.001320 ], [ -95.712891, 40.001320 ] ], [ [ -95.322876, 40.001320 ], [ -95.451965, 40.214538 ], [ -95.607147, 40.343404 ], [ -95.712891, 40.441721 ] ], [ [ -91.429596, 40.368520 ], [ -91.566925, 40.452172 ], [ -91.757812, 40.613952 ], [ -92.850952, 40.592057 ], [ -94.001770, 40.584757 ], [ -94.898529, 40.582671 ], [ -95.712891, 40.583714 ] ], [ [ -94.627991, 36.540536 ], [ -93.506012, 36.527295 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.429596, 40.368520 ], [ -91.410370, 40.551374 ], [ -91.153564, 40.699381 ], [ -91.087646, 40.851216 ], [ -90.955811, 41.025499 ], [ -90.962677, 41.046217 ] ], [ [ -95.322876, 40.001320 ], [ -95.451965, 40.214538 ], [ -95.607147, 40.343404 ], [ -95.712891, 40.441721 ] ], [ [ -94.622498, 36.999262 ], [ -94.617004, 36.999262 ], [ -94.627991, 36.540536 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.227722, 43.500752 ], [ -92.539215, 43.519676 ], [ -94.000397, 43.512705 ], [ -95.359955, 43.499756 ], [ -95.712891, 43.500752 ] ], [ [ -91.227722, 43.500752 ], [ -91.253815, 43.614205 ], [ -91.256561, 43.854336 ], [ -91.289520, 43.937462 ], [ -91.627350, 44.085612 ], [ -91.878662, 44.257003 ], [ -91.950073, 44.364115 ], [ -92.061310, 44.432799 ], [ -92.385406, 44.574817 ], [ -92.504883, 44.583621 ], [ -92.796021, 44.775986 ], [ -92.765808, 44.995883 ], [ -92.765808, 45.151053 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -91.227722, 43.500752 ], [ -92.539215, 43.519676 ], [ -94.000397, 43.512705 ], [ -95.359955, 43.499756 ], [ -95.712891, 43.500752 ] ], [ [ -91.227722, 43.500752 ], [ -91.213989, 43.446937 ], [ -91.083527, 43.288202 ], [ -91.172791, 43.212182 ], [ -91.170044, 43.001634 ], [ -91.128845, 42.912183 ], [ -91.064301, 42.754071 ], [ -90.737457, 42.658202 ], [ -90.639954, 42.505515 ], [ -89.912109, 42.505515 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 15, "y": 22 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -92.011871, 46.711619 ], [ -92.274170, 46.656035 ], [ -92.264557, 46.095138 ], [ -92.296143, 46.096091 ], [ -92.543335, 45.985512 ], [ -92.756195, 45.890008 ], [ -92.899017, 45.705220 ], [ -92.688904, 45.517895 ], [ -92.764435, 45.267155 ], [ -92.765808, 45.026950 ] ], [ [ -90.396881, 46.575855 ], [ -90.335083, 46.596619 ], [ -90.333710, 46.593788 ], [ -90.175781, 46.560749 ], [ -90.096130, 46.381044 ], [ -89.912109, 46.343136 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -92.011871, 46.711619 ], [ -92.274170, 46.656035 ], [ -92.264557, 46.095138 ], [ -92.296143, 46.096091 ], [ -92.543335, 45.985512 ], [ -92.756195, 45.890008 ], [ -92.899017, 45.705220 ], [ -92.688904, 45.517895 ], [ -92.764435, 45.267155 ], [ -92.765808, 45.026950 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 26 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.604492, 30.175999 ], [ -89.622345, 30.274486 ], [ -89.658051, 30.440386 ], [ -89.789886, 30.556348 ], [ -89.853058, 30.682802 ], [ -89.787140, 30.846826 ], [ -89.758301, 31.012925 ], [ -90.087891, 31.014102 ] ], [ [ -87.529449, 30.274486 ], [ -87.458038, 30.410782 ], [ -87.404480, 30.608368 ], [ -87.632446, 30.851542 ], [ -87.617340, 30.926967 ], [ -87.044678, 30.984673 ], [ -85.005341, 30.990560 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -89.604492, 30.175999 ], [ -89.622345, 30.274486 ], [ -89.658051, 30.440386 ], [ -89.789886, 30.556348 ], [ -89.853058, 30.682802 ], [ -89.787140, 30.846826 ], [ -89.758301, 31.012925 ], [ -90.087891, 31.014102 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087891, 36.425703 ], [ -90.028839, 36.337253 ], [ -90.087891, 36.281921 ] ], [ [ -90.087891, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -89.497375, 36.506325 ], [ -89.523468, 36.409126 ], [ -89.585266, 36.266421 ], [ -89.662170, 36.022447 ] ], [ [ -88.166656, 34.999629 ], [ -86.908722, 34.998504 ], [ -85.624695, 34.986128 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087891, 36.425703 ], [ -90.028839, 36.337253 ], [ -90.087891, 36.281921 ] ], [ [ -90.087891, 36.022447 ], [ -89.662170, 36.022447 ] ], [ [ -88.166656, 34.999629 ], [ -89.263916, 35.021000 ], [ -90.087891, 35.021000 ] ], [ [ -89.497375, 36.506325 ], [ -88.069153, 36.496390 ], [ -88.071899, 36.655200 ], [ -87.874146, 36.656301 ], [ -87.841187, 36.611118 ], [ -87.216339, 36.639774 ], [ -86.678009, 36.634264 ], [ -86.091614, 36.626550 ], [ -85.518951, 36.597889 ], [ -85.230560, 36.610016 ], [ -84.350281, 36.567012 ], [ -84.287109, 36.570321 ] ], [ [ -89.497375, 36.506325 ], [ -89.273529, 36.612221 ], [ -89.165039, 36.668419 ] ], [ [ -88.166656, 34.999629 ], [ -86.908722, 34.998504 ], [ -85.624695, 34.986128 ] ], [ [ -84.287109, 35.201867 ], [ -84.298096, 35.198500 ], [ -84.320068, 34.986128 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.822693, 39.106620 ], [ -84.817200, 39.799041 ], [ -84.808960, 40.772222 ], [ -84.808960, 41.046217 ] ], [ [ -88.051300, 37.819548 ], [ -88.018341, 38.021050 ], [ -87.878265, 38.289937 ], [ -87.670898, 38.508415 ], [ -87.598114, 38.673717 ], [ -87.514343, 38.734804 ], [ -87.506104, 38.869652 ], [ -87.559662, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528076, 39.391632 ], [ -87.526703, 40.550331 ], [ -87.526703, 41.046217 ] ], [ [ -89.103241, 36.952087 ], [ -89.141693, 37.103384 ], [ -89.073029, 37.199706 ], [ -88.807983, 37.146087 ], [ -88.566284, 37.054081 ], [ -88.434448, 37.136235 ], [ -88.472900, 37.354876 ], [ -88.247681, 37.437793 ], [ -88.071899, 37.510815 ], [ -88.157043, 37.605528 ], [ -88.044434, 37.744657 ], [ -88.051300, 37.819548 ], [ -87.920837, 37.793508 ], [ -87.911224, 37.904116 ], [ -87.653046, 37.826057 ], [ -87.438812, 37.935533 ], [ -87.131195, 37.783740 ], [ -87.055664, 37.880273 ], [ -86.824951, 37.975598 ], [ -86.609344, 37.858591 ], [ -86.499481, 37.969102 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.060028, 37.960441 ], [ -85.838928, 38.258671 ], [ -85.697479, 38.289937 ], [ -85.565643, 38.462192 ], [ -85.425568, 38.535276 ], [ -85.403595, 38.727305 ], [ -85.167389, 38.690869 ], [ -85.010834, 38.778711 ], [ -84.843292, 38.780852 ], [ -84.799347, 38.854681 ], [ -84.880371, 39.058650 ], [ -84.822693, 39.106620 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -84.822693, 39.106620 ], [ -84.817200, 39.799041 ], [ -84.808960, 40.772222 ], [ -84.808960, 41.046217 ] ], [ [ -88.051300, 37.819548 ], [ -88.018341, 38.021050 ], [ -87.878265, 38.289937 ], [ -87.670898, 38.508415 ], [ -87.598114, 38.673717 ], [ -87.514343, 38.734804 ], [ -87.506104, 38.869652 ], [ -87.559662, 39.040520 ], [ -87.642059, 39.114079 ], [ -87.528076, 39.391632 ], [ -87.526703, 40.550331 ], [ -87.526703, 41.046217 ] ], [ [ -88.070526, 36.527295 ], [ -88.071899, 36.654098 ], [ -87.874146, 36.656301 ], [ -87.841187, 36.611118 ], [ -87.216339, 36.638672 ], [ -86.678009, 36.633162 ], [ -86.091614, 36.625448 ], [ -85.518951, 36.597889 ], [ -85.230560, 36.610016 ], [ -84.350281, 36.567012 ], [ -84.287109, 36.570321 ] ], [ [ -88.051300, 37.819548 ], [ -87.920837, 37.793508 ], [ -87.911224, 37.904116 ], [ -87.653046, 37.826057 ], [ -87.438812, 37.935533 ], [ -87.131195, 37.783740 ], [ -87.055664, 37.880273 ], [ -86.824951, 37.975598 ], [ -86.609344, 37.858591 ], [ -86.499481, 37.969102 ], [ -86.325073, 38.169114 ], [ -86.261902, 38.045928 ], [ -86.060028, 37.960441 ], [ -85.838928, 38.258671 ], [ -85.697479, 38.289937 ], [ -85.565643, 38.462192 ], [ -85.425568, 38.535276 ], [ -85.403595, 38.727305 ], [ -85.167389, 38.690869 ], [ -85.010834, 38.778711 ], [ -84.843292, 38.780852 ], [ -84.799347, 38.854681 ], [ -84.880371, 39.058650 ], [ -84.822693, 39.106620 ] ], [ [ -89.103241, 36.952087 ], [ -89.133453, 36.851054 ], [ -89.114227, 36.694851 ], [ -89.273529, 36.611118 ], [ -89.453430, 36.527295 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 16, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.661285, 45.151053 ], [ -87.613220, 45.109393 ], [ -87.613220, 45.110362 ], [ -87.598114, 45.106485 ] ], [ [ -84.806213, 41.677015 ], [ -84.808960, 40.913513 ] ], [ [ -87.521210, 41.707779 ], [ -87.525330, 41.707779 ], [ -87.526703, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -87.661285, 45.151053 ], [ -87.613220, 45.109393 ], [ -87.613220, 45.110362 ], [ -87.598114, 45.106485 ] ], [ [ -87.806854, 42.494378 ], [ -88.575897, 42.503490 ], [ -89.619598, 42.505515 ], [ -90.087891, 42.505515 ] ], [ [ -86.823578, 41.761069 ], [ -86.823578, 41.755947 ], [ -85.748291, 41.750824 ], [ -84.807587, 41.755947 ], [ -84.806213, 41.677015 ] ], [ [ -87.521210, 41.707779 ], [ -87.525330, 41.707779 ], [ -87.526703, 40.913513 ] ] ] } } ] } ] } , @@ -417,43 +417,43 @@ , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -81.679230, 36.585760 ], [ -82.185974, 36.565909 ], [ -83.673248, 36.600094 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -83.075867, 34.978252 ], [ -82.975616, 35.008628 ], [ -82.435913, 35.179421 ], [ -81.514435, 35.171563 ], [ -81.046143, 35.125525 ], [ -81.037903, 35.036743 ], [ -80.937653, 35.103058 ], [ -80.781097, 34.933230 ], [ -80.783844, 34.817186 ], [ -79.672852, 34.807038 ], [ -78.662109, 33.953613 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.383484, 36.656301 ], [ -83.343658, 36.668419 ] ], [ [ -84.320068, 34.986128 ], [ -84.298096, 35.198500 ], [ -84.086609, 35.261319 ], [ -84.017944, 35.368895 ], [ -83.875122, 35.489747 ], [ -83.673248, 35.516579 ], [ -83.438416, 35.562395 ], [ -83.209076, 35.648369 ], [ -83.110199, 35.737595 ], [ -82.919312, 35.816700 ], [ -82.924805, 35.889050 ], [ -82.673492, 36.024668 ], [ -82.592468, 35.936876 ], [ -82.223053, 36.125674 ], [ -82.051392, 36.105705 ], [ -81.897583, 36.274172 ], [ -81.692963, 36.317338 ], [ -81.703949, 36.459950 ], [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -83.075867, 34.978252 ], [ -83.185730, 34.896069 ], [ -83.346405, 34.706622 ], [ -83.075867, 34.540500 ], [ -82.902832, 34.479392 ], [ -82.716064, 34.162954 ], [ -82.596588, 33.985502 ], [ -82.249146, 33.748322 ], [ -82.180481, 33.623768 ], [ -81.942902, 33.461234 ], [ -81.826172, 33.222605 ], [ -81.507568, 33.021330 ], [ -81.436157, 32.793047 ], [ -81.375732, 32.682152 ], [ -81.411438, 32.608146 ], [ -81.224670, 32.499338 ], [ -81.125793, 32.311509 ], [ -81.127167, 32.120964 ], [ -81.036530, 32.083738 ], [ -80.864868, 32.032527 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -82.185974, 36.565909 ], [ -81.679230, 36.585760 ] ], [ [ -80.518799, 40.641051 ], [ -80.517426, 41.046217 ] ], [ [ -82.588348, 38.414862 ], [ -82.341156, 38.440682 ], [ -82.210693, 38.579306 ], [ -82.194214, 38.801189 ], [ -82.054138, 39.018117 ], [ -81.918182, 38.993572 ], [ -81.905823, 38.881412 ], [ -81.816559, 38.922024 ], [ -81.784973, 39.019184 ], [ -81.745148, 39.199270 ], [ -81.521301, 39.371464 ], [ -81.400452, 39.349166 ], [ -81.265869, 39.376772 ], [ -81.150513, 39.425586 ], [ -80.878601, 39.654341 ], [ -80.862122, 39.756824 ], [ -80.764618, 39.972911 ], [ -80.661621, 40.233412 ], [ -80.614929, 40.463666 ], [ -80.657501, 40.591014 ], [ -80.518799, 40.641051 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -79.477844, 39.720920 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.160614, 39.418160 ], [ -78.962860, 39.457403 ], [ -78.828278, 39.562294 ], [ -78.662109, 39.540058 ] ], [ [ -81.971741, 37.535866 ], [ -81.927795, 37.365791 ], [ -81.815186, 37.275146 ], [ -81.662750, 37.195331 ], [ -81.348267, 37.315568 ], [ -81.227417, 37.245635 ], [ -80.855255, 37.328673 ], [ -80.833282, 37.418163 ], [ -80.719299, 37.383253 ], [ -80.595703, 37.456328 ], [ -80.457001, 37.441064 ], [ -80.297699, 37.518440 ], [ -80.275726, 37.609880 ], [ -80.292206, 37.727280 ], [ -80.157623, 37.900865 ], [ -79.963989, 38.031867 ], [ -79.914551, 38.178830 ], [ -79.742889, 38.356734 ], [ -79.648132, 38.573938 ], [ -79.514923, 38.497668 ], [ -79.366608, 38.425622 ], [ -79.222412, 38.464342 ], [ -79.174347, 38.555683 ], [ -79.075470, 38.680150 ], [ -78.965607, 38.821521 ], [ -78.892822, 38.779781 ], [ -78.744507, 38.909202 ], [ -78.662109, 38.964748 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.673248, 36.600094 ], [ -84.350281, 36.567012 ], [ -84.462891, 36.572527 ] ], [ [ -83.673248, 36.600094 ], [ -83.383484, 36.656301 ], [ -83.177490, 36.717972 ], [ -83.088226, 36.815881 ], [ -82.814941, 36.934525 ], [ -82.709198, 37.039832 ], [ -82.684479, 37.120906 ], [ -82.372742, 37.237982 ], [ -81.971741, 37.535866 ] ], [ [ -80.518799, 40.641051 ], [ -80.517426, 41.046217 ] ], [ [ -81.679230, 36.585760 ], [ -81.691589, 36.527295 ] ], [ [ -81.679230, 36.585760 ], [ -79.991455, 36.541640 ], [ -78.662109, 36.539433 ] ], [ [ -79.477844, 39.720920 ], [ -79.486084, 39.213103 ], [ -79.332275, 39.302425 ], [ -79.160614, 39.418160 ], [ -78.962860, 39.457403 ], [ -78.828278, 39.562294 ], [ -78.662109, 39.540058 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 17, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.461761, 41.693424 ], [ -83.839417, 41.685220 ], [ -84.295349, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -79.759369, 42.237669 ], [ -79.759369, 41.999305 ], [ -78.662109, 41.999305 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -83.461761, 41.693424 ], [ -83.839417, 41.685220 ], [ -84.295349, 41.685220 ], [ -84.462891, 41.683169 ] ], [ [ -80.516052, 41.957448 ], [ -80.518799, 40.913513 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 25 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -78.553619, 33.861293 ], [ -78.837891, 34.101571 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "LineString", "coordinates": [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 24 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.911896, 40.960197 ], [ -74.079437, 41.046217 ] ], [ [ -73.674316, 41.046217 ], [ -73.656464, 40.985082 ] ], [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -77.722778, 39.322612 ], [ -77.801056, 39.449980 ], [ -77.923279, 39.592990 ], [ -78.232269, 39.672313 ], [ -78.424530, 39.596165 ], [ -78.533020, 39.522052 ], [ -78.829651, 39.562294 ], [ -78.837891, 39.555942 ] ], [ [ -77.722778, 39.322612 ], [ -77.834015, 39.134321 ], [ -78.344879, 39.405428 ], [ -78.424530, 39.138582 ], [ -78.548126, 39.039453 ], [ -78.744507, 38.909202 ], [ -78.837891, 38.827940 ] ], [ [ -77.040253, 38.789416 ], [ -77.059479, 38.708018 ], [ -77.229767, 38.613651 ], [ -77.342377, 38.391186 ], [ -77.210541, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.239259 ] ], [ [ -75.404663, 39.794820 ], [ -75.200043, 39.886558 ], [ -75.128632, 39.949753 ], [ -74.891052, 40.081224 ], [ -74.763336, 40.190414 ], [ -75.077820, 40.449037 ], [ -75.095673, 40.555548 ], [ -75.204163, 40.586842 ], [ -75.198669, 40.747257 ], [ -75.081940, 40.869911 ], [ -75.135498, 41.000630 ], [ -75.051727, 41.046217 ] ], [ [ -75.404663, 39.794820 ], [ -75.554352, 39.691337 ], [ -75.526886, 39.498742 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -73.911896, 40.960197 ], [ -74.079437, 41.046217 ] ], [ [ -75.867462, 36.550466 ], [ -76.941376, 36.546053 ], [ -77.998810, 36.537226 ], [ -78.837891, 36.539433 ] ], [ [ -77.722778, 39.322612 ], [ -77.801056, 39.449980 ], [ -77.923279, 39.592990 ], [ -78.232269, 39.672313 ], [ -78.424530, 39.596165 ], [ -78.533020, 39.522052 ], [ -78.829651, 39.562294 ], [ -78.837891, 39.555942 ] ], [ [ -77.722778, 39.322612 ], [ -77.575836, 39.288608 ], [ -77.442627, 39.213103 ], [ -77.516785, 39.105554 ], [ -77.305298, 39.045853 ], [ -77.118530, 38.933776 ] ], [ [ -77.040253, 38.789416 ], [ -77.059479, 38.708018 ], [ -77.229767, 38.613651 ], [ -77.342377, 38.391186 ], [ -77.210541, 38.337348 ], [ -77.047119, 38.380422 ], [ -76.989441, 38.239259 ] ], [ [ -75.787811, 39.723032 ], [ -75.713654, 38.449287 ], [ -75.047607, 38.448211 ] ], [ [ -75.787811, 39.723032 ], [ -75.710907, 39.802206 ], [ -75.620270, 39.847558 ], [ -75.404663, 39.794820 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 18, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.678192, 41.355165 ], [ -74.840240, 41.426253 ], [ -75.010529, 41.495207 ], [ -75.075073, 41.641105 ], [ -75.048981, 41.750824 ], [ -75.167084, 41.841943 ], [ -75.385437, 41.998284 ], [ -76.743622, 42.000325 ], [ -78.200684, 41.999305 ], [ -78.837891, 41.999305 ] ], [ [ -73.281555, 42.742978 ], [ -73.037109, 42.738944 ] ], [ [ -73.497162, 42.054391 ], [ -73.553467, 41.289158 ], [ -73.475189, 41.204489 ], [ -73.692169, 41.107295 ], [ -73.656464, 40.985082 ] ], [ [ -74.678192, 41.355165 ], [ -74.800415, 41.310824 ], [ -74.976196, 41.087632 ], [ -75.135498, 40.999593 ], [ -75.099792, 40.913513 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -74.678192, 41.355165 ], [ -74.840240, 41.426253 ], [ -75.010529, 41.495207 ], [ -75.075073, 41.641105 ], [ -75.048981, 41.750824 ], [ -75.167084, 41.841943 ], [ -75.385437, 41.998284 ], [ -76.743622, 42.000325 ], [ -78.200684, 41.999305 ], [ -78.837891, 41.999305 ] ], [ [ -73.347473, 45.006564 ], [ -73.368073, 44.804250 ], [ -73.407898, 44.675489 ], [ -73.383179, 44.378840 ], [ -73.328247, 44.226504 ], [ -73.429871, 44.019484 ], [ -73.337860, 43.758201 ], [ -73.401031, 43.613211 ], [ -73.383179, 43.575417 ], [ -73.238983, 43.567457 ], [ -73.281555, 42.742978 ], [ -73.037109, 42.738944 ] ], [ [ -73.497162, 42.054391 ], [ -73.037109, 42.043174 ] ] ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 6, "x": 19, "y": 23 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "countries", "version": 2, "extent": 4096 }, "features": [ -{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.456207, 42.726839 ], [ -73.212891, 42.741970 ] ], [ [ -70.644836, 43.089952 ], [ -70.815125, 42.864893 ] ], [ [ -71.801147, 42.012571 ], [ -71.792908, 41.466399 ], [ -71.853333, 41.320107 ] ] ] } } +{ "type": "Feature", "properties": { "adm0_a3": "USA", "adm0_name": "United States of America", "mapcolor9": 1, "mapcolor13": 1 }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -72.456207, 42.726839 ], [ -73.212891, 42.741970 ] ], [ [ -71.504517, 45.008506 ], [ -71.503143, 45.007535 ], [ -71.619873, 44.736003 ], [ -71.545715, 44.592423 ], [ -71.585541, 44.468091 ], [ -71.809387, 44.352332 ], [ -72.003021, 44.304196 ], [ -72.035980, 44.206819 ], [ -72.059326, 44.045154 ], [ -72.177429, 43.808765 ], [ -72.259827, 43.721490 ], [ -72.369690, 43.521668 ], [ -72.402649, 43.285203 ], [ -72.434235, 43.222190 ], [ -72.458954, 42.960443 ], [ -72.537231, 42.830660 ], [ -72.456207, 42.726839 ] ], [ [ -70.644836, 43.089952 ], [ -70.815125, 42.864893 ] ], [ [ -71.801147, 42.012571 ], [ -72.732239, 42.036034 ], [ -73.212891, 42.047253 ] ] ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json b/tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json index c164cef93..6b9967e1a 100644 --- a/tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json +++ b/tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--extra-detail_30_--smallest-maximum-zoom-guess_3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":152},{}]", +"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":154},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,35 +17,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } ] } ] } , @@ -55,7 +55,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.284438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } ] } ] } , @@ -63,23 +63,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.747257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -91,17 +91,15 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.313113 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -109,47 +107,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.514648, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.579084 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.687782 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } @@ -159,7 +159,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -169,13 +169,11 @@ , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -183,11 +181,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178 }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.771109 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } ] } @@ -197,47 +195,45 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.375488, 23.140360 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamรก|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamรก (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.509417 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.661778 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -247,25 +243,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.329588 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.072754, -22.573438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604 }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118 }, "geometry": { "type": "Point", "coordinates": [ 47.504883, -18.916680 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.159098 ] } } ] } ] } , @@ -273,93 +271,93 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 46.210250 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.472097 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.456543, 44.824708 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796 }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djamรฉna", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djamรฉna", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.125264 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundรฉ", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundรฉ", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.173808 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359 }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.055176, 9.557417 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "รœrรผmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "รœrรผmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.966309, 29.363027 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.189941, 28.594169 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } ] } ] } , @@ -367,13 +365,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.162401 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.938965, -9.427387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } ] } @@ -383,29 +381,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.590332, 17.957832 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hร  Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thรกi Nguyรชn", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hร  Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.842285, 21.043491 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json index 97c842734..e19ac5ae8 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json @@ -10,7 +10,7 @@ "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_2_-Bf20_-rf20_-pb.json.check.mbtiles", "strategies": "[{\"dropped_by_rate\":237},{\"dropped_by_rate\":229},{}]", -"tippecanoe_decisions": "{\"basezoom\":2,\"droprate\":6.599999999999999,\"retain_points_multiplier\":1}", +"tippecanoe_decisions": "{\"basezoom\":2,\"droprate\":6.6,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ @@ -18,13 +18,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundรฉ", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundรฉ", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } ] } @@ -56,7 +56,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } , @@ -92,7 +92,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.426758, 43.739352 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } , @@ -104,7 +104,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.514648, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundรฉ", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundรฉ", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } , @@ -118,7 +118,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.931066 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.983148 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.978733 ] } } , diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json index 1301a2c46..c06572321 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json @@ -9,7 +9,7 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":152},{}]", +"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":154},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,35 +17,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } ] } ] } , @@ -55,7 +55,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.284438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } ] } ] } , @@ -63,23 +63,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.747257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -91,17 +91,15 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.313113 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -109,47 +107,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.514648, 9.102097 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.579084 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.687782 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } @@ -159,7 +159,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -169,13 +169,11 @@ , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -183,11 +181,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178 }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.771109 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } ] } @@ -197,47 +195,45 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.375488, 23.140360 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamรก|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamรก (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.509417 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.661778 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -247,25 +243,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.329588 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.072754, -22.573438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604 }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118 }, "geometry": { "type": "Point", "coordinates": [ 47.504883, -18.916680 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.159098 ] } } ] } ] } , @@ -273,93 +271,93 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 46.210250 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.472097 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.456543, 44.824708 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796 }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djamรฉna", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djamรฉna", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.125264 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundรฉ", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundรฉ", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.173808 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359 }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.055176, 9.557417 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "รœrรผmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "รœrรผmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.966309, 29.363027 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.189941, 28.594169 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } ] } ] } , @@ -367,13 +365,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.162401 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.938965, -9.427387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } ] } @@ -383,29 +381,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.590332, 17.957832 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hร  Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thรกi Nguyรชn", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hร  Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.842285, 21.043491 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json index 0e3bf1dfd..94c8b4843 100644 --- a/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json +++ b/tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json @@ -9,8 +9,8 @@ "maxzoom": "3", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/--smallest-maximum-zoom-guess_3_-rp.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":230},{\"dropped_by_rate\":231},{\"dropped_by_rate\":160},{}]", -"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.6582825467008166,\"retain_points_multiplier\":1}", +"strategies": "[{\"dropped_by_rate\":230},{\"dropped_by_rate\":231},{\"dropped_by_rate\":159},{}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.65828,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ @@ -18,29 +18,29 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.187500, 14.093957 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.878332 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Cรดte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.375599 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.776573 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.535749 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.683528 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } ] } ] } , @@ -50,7 +50,9 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.039321 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|Sรฃo Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Sรฃo Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "Sรฃo Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.563987 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.538086, -18.145852 ] } } ] } ] } , @@ -60,21 +62,21 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.747257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.067383, 9.925566 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.231445, 14.093957 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.284185 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.831055, 17.098792 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.453737 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.104087 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Cรดte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.504883, 6.402648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.539201 ] } } ] } ] } , @@ -82,15 +84,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.609278 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.313113 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 147.172852, -9.449062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.461914, -18.145852 ] } } ] } ] } , @@ -98,45 +102,43 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.426758, 43.739352 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.536133, 47.129951 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.042736 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.741211, 59.422728 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.504883, 6.402648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.539201 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.069094 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.580711 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.200195, 31.765537 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.609193 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.579084 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.297852, 27.722436 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.931066 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.848633, 6.926427 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.502930, 13.752725 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.309426 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } ] } , @@ -147,6 +149,8 @@ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -172,7 +176,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|Sรฃo Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Sรฃo Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "Sรฃo Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.563987 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } ] } ] } , @@ -184,7 +188,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.209473, 14.093957 ] } } , @@ -194,15 +198,15 @@ , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotรก", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotรก", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.609278 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.509417 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , @@ -210,13 +214,13 @@ , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406 }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.472372 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Cรดte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.331644 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } ] } ] } , @@ -224,7 +228,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.329588 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , @@ -234,7 +238,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.905762, -24.647017 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324, "MAX_POP20": 361324, "MAX_POP50": 361324, "MAX_POP300": 361324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 141, "MIN_AREAMI": 54, "MAX_AREAMI": 54, "MIN_PERKM": 177, "MAX_PERKM": 177, "MIN_PERMI": 110, "MAX_PERMI": 110, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 118355, "ELEVATION": 0, "GTOPO30": 1482, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.324720 ] } } , @@ -252,21 +256,21 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 46.210250 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } , @@ -274,19 +278,19 @@ , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.423340, 42.000325 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883 }, "geometry": { "type": "Point", "coordinates": [ 27.553711, 53.904338 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796 }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } , @@ -294,7 +298,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundรฉ", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundรฉ", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , @@ -302,13 +306,13 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.200195, 31.784217 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.587669 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.055176, 9.557417 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "รœrรผmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "รœrรผmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } , @@ -322,12 +326,14 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.189941, 28.594169 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.848633, 6.926427 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } ] } ] } @@ -344,7 +350,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } ] } ] } , @@ -354,15 +360,13 @@ , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.524902, 13.752725 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pรฉnh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pรฉnh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.544616 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 2.921097 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.191895, 22.309426 ] } } , @@ -370,7 +374,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 120.563965, 16.425548 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , diff --git a/tests/ne_110m_populated_places/out/-yNAME.json b/tests/ne_110m_populated_places/out/-yNAME.json index 440b223b8..b8bd2fa38 100644 --- a/tests/ne_110m_populated_places/out/-yNAME.json +++ b/tests/ne_110m_populated_places/out/-yNAME.json @@ -9,7 +9,7 @@ "maxzoom": "14", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":242},{\"dropped_by_rate\":268},{\"dropped_by_rate\":255},{\"dropped_by_rate\":248},{\"dropped_by_rate\":207},{\"dropped_by_rate\":139},{\"dropped_by_rate\":78},{\"dropped_by_rate\":33},{\"dropped_by_rate\":13},{\"dropped_by_rate\":5},{\"dropped_by_rate\":4},{\"dropped_by_rate\":2},{\"dropped_by_rate\":1},{},{}]", +"strategies": "[{\"dropped_by_rate\":242},{\"dropped_by_rate\":268},{\"dropped_by_rate\":255},{\"dropped_by_rate\":248},{\"dropped_by_rate\":207},{\"dropped_by_rate\":139},{\"dropped_by_rate\":78},{\"dropped_by_rate\":33},{\"dropped_by_rate\":13},{\"dropped_by_rate\":6},{\"dropped_by_rate\":5},{\"dropped_by_rate\":3},{\"dropped_by_rate\":1},{},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -5854,8 +5854,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 9, "x": 277, "y": 262 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282669, -4.257228 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.313053, -4.327754 ] } } ] } ] } , @@ -7428,8 +7426,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 10, "x": 555, "y": 524 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.282755, -4.257228 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.313053, -4.327754 ] } } ] } ] } , @@ -9560,8 +9556,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 11, "x": 1478, "y": 984 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.857774, 6.931965 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.949999, 6.900013 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json b/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json index 30a44d268..39585cdaa 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-Ccat_-z5.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":258},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":258},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json index de0f25833..7d342c325 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z4_--no-tile-stats.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":251},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":251},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json index eb1c2d3bd..ab36a87b6 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2fremove.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json index 52c8d5ba8..03e7d4d26 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json index 16e05a879..bed7761e0 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z4_-C.%2ftests%2ffilter%2frename_-c.%2ftests%2ffilter%2frename2.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":247},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed_again", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5.json index 4c415734b..3c8e679f8 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json index 99f4ad7f8..0068916c3 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-denser_60.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":261},{\"dropped_by_rate\":241},{\"dropped_by_rate\":218},{\"dropped_by_rate\":139},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":241},{\"dropped_by_rate\":216},{\"dropped_by_rate\":138},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -44,8 +44,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } ] } ] } , @@ -55,9 +53,9 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } ] } ] } , @@ -89,7 +87,7 @@ , { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } , -{ "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } , { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.923554 ] } } , @@ -100,8 +98,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } ] } ] } , @@ -111,9 +107,9 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.565348 ] } } ] } @@ -134,6 +130,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } ] } ] } , @@ -171,12 +169,14 @@ , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } +{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } , +{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +, { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } ] } ] } @@ -196,6 +196,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } ] } ] } , @@ -212,8 +214,6 @@ { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.238525, -8.841651 ] } } , { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } ] } ] } , @@ -221,9 +221,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.479067 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } ] } ] } , @@ -233,9 +231,11 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.916483 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } ] } ] } , @@ -263,9 +263,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } +{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , @@ -283,7 +283,9 @@ , { "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.555380 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.574951, 16.425548 ] } } , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } @@ -317,9 +319,9 @@ , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } -, { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.915521 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } ] } ] } , @@ -383,7 +385,7 @@ , { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.083862, 9.936388 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.766968, 17.973508 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , { "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.598327 ] } } , @@ -395,7 +397,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.402466, 33.829357 ] } } , +{ "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } +, { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.349243, 25.080624 ] } } ] } ] } , @@ -427,7 +433,7 @@ , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.847534, 17.114543 ] } } , -{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } ] } @@ -449,7 +455,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } +{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } , { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } @@ -499,7 +505,7 @@ , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } , -{ "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.620239, 6.484525 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } ] } @@ -517,9 +523,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kรธbenhavn" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } +{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } , { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.385620, 43.850374 ] } } ] } @@ -530,8 +538,6 @@ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } , { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kรธbenhavn" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } ] } ] } , @@ -549,7 +555,7 @@ , { "type": "Feature", "properties": { "NAME": "Lusaka" }, "geometry": { "type": "Point", "coordinates": [ 28.284302, -15.416615 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } , { "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } ] } @@ -559,7 +565,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -567,10 +573,10 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } -, { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , +{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } +, { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } ] } @@ -615,7 +621,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277710, 25.229789 ] } } +{ "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.386841, 37.948529 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } @@ -631,6 +637,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } +, { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.931880 ] } } ] } ] } @@ -639,8 +647,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.561053 ] } } , -{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } -, { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } , { "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.717573 ] } } @@ -653,8 +659,6 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } -, { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } @@ -673,7 +677,7 @@ , { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } , -{ "type": "Feature", "properties": { "NAME": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.913940, 11.549998 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } ] } @@ -703,6 +707,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.569458, 16.430816 ] } } +, { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } ] } ] } @@ -714,8 +720,6 @@ { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , { "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -773,7 +777,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json index 74f0f9836..b55edce42 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json index e4d008eb9..ab83de8cd 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_--preserve-point-density-threshold_8.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":221},{\"dropped_by_rate\":213},{\"dropped_by_rate\":148},{\"dropped_by_rate\":73},{\"dropped_by_rate\":26},{}]", +"strategies": "[{\"dropped_by_rate\":223},{\"dropped_by_rate\":217},{\"dropped_by_rate\":152},{\"dropped_by_rate\":83},{\"dropped_by_rate\":38},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.941406, 39.707187 ] } } , { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } , @@ -35,8 +35,6 @@ , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.916485 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } -, { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } @@ -49,8 +47,6 @@ , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } -, { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } , { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } @@ -72,6 +68,8 @@ { "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } , { "type": "Feature", "properties": { "NAME": "Rio de Janeiro" }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ -181.538086, -18.145852 ] } } ] } ] } , @@ -101,7 +99,7 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , @@ -117,8 +115,6 @@ , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.553147 ] } } , { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } @@ -133,9 +129,7 @@ , { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.906896 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.461914, -18.145852 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -41.310824 ] } } ] } @@ -147,7 +141,7 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.426758, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } , @@ -155,8 +149,6 @@ , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } -, { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } , { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } @@ -167,8 +159,6 @@ , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } -, { "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } @@ -196,6 +186,8 @@ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -210,8 +202,6 @@ { "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } , { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -251,15 +241,13 @@ , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.209473, 14.093957 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } -, { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.925566 ] } } , { "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , @@ -277,7 +265,9 @@ , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.361466 ] } } +{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -287,9 +277,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } , @@ -301,9 +291,7 @@ , { "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } +{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.905762, -24.647017 ] } } , { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.609278 ] } } , @@ -315,19 +303,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.538086, 12.361466 ] } } -, { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , { "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } , { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , @@ -335,8 +321,6 @@ , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } -, { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } @@ -347,8 +331,6 @@ , { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } -, { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } , { "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } @@ -361,7 +343,7 @@ , { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.307616 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , @@ -373,7 +355,7 @@ , { "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } , @@ -389,8 +371,6 @@ , { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.848633, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } -, { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } ] } ] } @@ -415,6 +395,8 @@ , { "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } , +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } +, { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } @@ -474,8 +456,6 @@ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -525,8 +505,6 @@ , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } -, { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.936388 ] } } , { "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.761475, 17.978733 ] } } @@ -539,7 +517,7 @@ , { "type": "Feature", "properties": { "NAME": "Saint John's" }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.100880 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , @@ -609,9 +587,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } , @@ -636,10 +614,6 @@ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.916748, -24.647017 ] } } , { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.223877, -25.710837 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } ] } , @@ -647,6 +621,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , +{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +, { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.014893, 41.104191 ] } } , { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.765292 ] } } @@ -655,8 +631,6 @@ , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } -, { "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.129631 ] } } @@ -665,8 +639,6 @@ , { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } -, { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } , { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } @@ -683,8 +655,6 @@ , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } -, { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } , { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } @@ -693,6 +663,8 @@ , { "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } , +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.337167 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } @@ -715,15 +687,13 @@ , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } -, { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , { "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.496403 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kรธbenhavn" }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , @@ -733,11 +703,11 @@ , { "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } , { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } , { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , @@ -747,8 +717,6 @@ , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } -, { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.014893, 41.104191 ] } } , { "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } @@ -785,7 +753,7 @@ , { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } +{ "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.952861 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.590088, 23.614329 ] } } , @@ -809,8 +777,6 @@ , { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, { "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } @@ -849,8 +815,6 @@ , { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } -, { "type": "Feature", "properties": { "NAME": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.513916, 13.752725 ] } } , { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } @@ -867,7 +831,7 @@ , { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } , { "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.574951, 16.425548 ] } } , @@ -919,8 +883,6 @@ , { "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } -, { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.915521 ] } } , { "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } @@ -991,8 +953,6 @@ , { "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } -, { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.083862, 9.936388 ] } } @@ -1067,6 +1027,8 @@ , { "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } , +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.617310, 13.100880 ] } } +, { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } @@ -1157,8 +1119,6 @@ , { "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } -, { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.233032, -8.836223 ] } } ] } ] } @@ -1171,16 +1131,12 @@ , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } -, { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } , { "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } -, { "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } , { "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } @@ -1198,8 +1154,6 @@ { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , { "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } ] } ] } , @@ -1209,8 +1163,6 @@ , { "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } -, { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , { "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.334595, 48.868328 ] } } @@ -1239,15 +1191,11 @@ , { "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.147763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } -, { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.385620, 43.850374 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } ] } , @@ -1270,8 +1218,6 @@ { "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } , { "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } ] } , @@ -1333,13 +1279,9 @@ , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } -, { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } , { "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } ] } , @@ -1407,8 +1349,6 @@ , { "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277710, 25.229789 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.386841, 37.948529 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } @@ -1430,8 +1370,6 @@ { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.931880 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json index 88ae749fc..56a005e41 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-B3.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":152},{},{},{}]", +"strategies": "[{\"dropped_by_rate\":227},{\"dropped_by_rate\":227},{\"dropped_by_rate\":154},{},{},{}]", "tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -18,35 +18,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } ] } ] } , @@ -56,7 +56,7 @@ , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.284438 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } ] } ] } , @@ -64,23 +64,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } +{ "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.795535 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -92,17 +92,15 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.313113 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -110,47 +108,49 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.650122 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.514648, 9.102097 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.579084 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.687782 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } @@ -160,7 +160,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ -181.560059, -18.124971 ] } } ] } ] } , @@ -170,13 +170,11 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.190918, 33.998027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -184,11 +182,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } ] } @@ -198,47 +196,45 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.375488, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.906738, 10.509417 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.361466 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -248,25 +244,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } +, { "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.526855, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.159098 ] } } ] } ] } , @@ -274,93 +272,93 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.538086, 12.361466 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.472097 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.456543, 44.824708 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.173808 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.307616 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } ] } ] } , @@ -368,13 +366,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.124971 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } ] } @@ -384,29 +382,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.957832 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.842285, 21.043491 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.493196 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.904614 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json index 492f8076f..521df6b4d 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json @@ -5,11 +5,11 @@ "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json.check.mbtiles -yNAME -z5 -c./tests/filter/rename tests/ne_110m_populated_places/in.json", -"json": "{\"vector_layers\":[{\"id\":\"renamed\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"renamed\",\"count\":493,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"renamed\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"renamed\",\"count\":488,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-c.%2ftests%2ffilter%2frename.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "renamed", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json index 9e68f9e4d..928cf3dd1 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json @@ -5,11 +5,11 @@ "description": "tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json.check.mbtiles -yNAME -z5 -ccat tests/ne_110m_populated_places/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":493,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":5,\"fields\":{\"NAME\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":488,\"geometry\":\"Point\",\"attributeCount\":1,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]}]}]}}", "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-ccat.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":239},{\"dropped_by_rate\":208},{\"dropped_by_rate\":121},{}]", +"strategies": "[{\"dropped_by_rate\":240},{\"dropped_by_rate\":262},{\"dropped_by_rate\":240},{\"dropped_by_rate\":209},{\"dropped_by_rate\":124},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,9 +17,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -33,7 +33,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } ] } ] } , @@ -41,9 +41,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.346411 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -51,11 +49,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -68,8 +68,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } ] } ] } , @@ -83,11 +81,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -97,9 +95,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } ] } ] } , @@ -107,19 +103,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -127,7 +123,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -136,6 +132,8 @@ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , @@ -149,9 +147,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -165,7 +161,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } ] } ] } , @@ -175,11 +171,11 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -190,6 +186,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -203,17 +201,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } ] } ] } , @@ -221,13 +219,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -235,15 +233,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } ] } ] } , @@ -251,17 +251,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } ] } @@ -277,31 +277,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -309,11 +305,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } ] } ] } , @@ -333,15 +331,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } ] } ] } , @@ -368,8 +364,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.440694 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.620794 ] } } ] } ] } , @@ -377,7 +371,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } , @@ -390,8 +384,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 4, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } -, -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } , @@ -399,11 +391,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } @@ -415,7 +407,7 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -423,7 +415,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -438,6 +432,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 5, "y": 8 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.916870, -15.781682 ] } } ] } ] } , @@ -445,11 +441,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.715454, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.517944, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.167847, 5.834616 ] } } ] } @@ -471,15 +467,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Dakar" }, "geometry": { "type": "Point", "coordinates": [ -17.473755, 14.716448 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.683472, 9.530332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -487,7 +481,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.200073, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } @@ -508,6 +502,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.920572 ] } } ] } ] } , @@ -515,7 +511,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } ] } ] } , @@ -525,11 +521,13 @@ , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -539,7 +537,7 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -549,23 +547,23 @@ , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.519653, 47.133688 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.820812 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.165161, 42.666281 ] } } ] } @@ -574,6 +572,8 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 8, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -583,7 +583,7 @@ , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.590942, -25.953106 ] } } ] } @@ -595,11 +595,11 @@ , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.360962, -3.376340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } ] } ] } , @@ -607,11 +607,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.203491, 15.353059 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -619,13 +621,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -635,11 +635,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } +{ "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.726230 ] } } ] } ] } , @@ -647,7 +647,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.933472, 60.177038 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.947970 ] } } ] } ] } , @@ -655,7 +657,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -669,13 +671,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.595581, 23.614329 ] } } ] } ] } , @@ -689,7 +689,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } @@ -701,11 +701,9 @@ , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.163452, 33.701493 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } ] } ] } , @@ -714,8 +712,6 @@ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } ] } , @@ -729,13 +725,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.168823, 16.783506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.963058 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.847778, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -743,7 +735,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -762,10 +754,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 13, "y": 7 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.309426 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.487750 ] } } ] } ] } , @@ -775,7 +763,9 @@ , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -823,7 +813,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.445435, -18.135412 ] } } ] } ] } , @@ -831,7 +821,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json index b7573c2f1..cd5ebf048 100644 --- a/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json +++ b/tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json @@ -9,7 +9,7 @@ "maxzoom": "5", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-yNAME_-z5_-r1.5.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":211},{\"dropped_by_rate\":214},{\"dropped_by_rate\":179},{\"dropped_by_rate\":138},{\"dropped_by_rate\":70},{}]", +"strategies": "[{\"dropped_by_rate\":211},{\"dropped_by_rate\":214},{\"dropped_by_rate\":180},{\"dropped_by_rate\":137},{\"dropped_by_rate\":71},{}]", "tippecanoe_decisions": "{\"basezoom\":5,\"droprate\":1.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -20,65 +20,65 @@ , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.928487 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.790897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } +{ "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 8.494105 ] } } , -{ "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +{ "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.253906, -21.125498 ], [ 184.746094, -21.125498 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.359375, -34.597042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.073231 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.863281, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } , { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.909736 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.472656, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.368950 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } , { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.318243 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 121.025391, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 173.056641, 1.318243 ], [ -186.943359, 1.318243 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } , { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.686952 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } ] } ] } , @@ -86,11 +86,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } , -{ "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } -, { "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } , -{ "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } ] } ] } , @@ -98,29 +96,29 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.802518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.418945, 33.833920 ] } } +{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.168226 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.928711, 64.148952 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +{ "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.450639 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.538086, 42.488302 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } ] } @@ -130,25 +128,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } -, { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.553147 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.318243 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.318243 ] } } , -{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.465820, -29.305561 ] } } +{ "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } , { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.906896 ] } } ] } ] } , @@ -156,57 +152,61 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.538086, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.458008, 50.092393 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.042736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.136767 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } , { "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.943436 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.760742, 32.063956 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.200195, 31.765537 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } , { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.411133, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.547852, 25.284438 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.512557 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.931066 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.983148 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.274309 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } ] } ] } , @@ -214,7 +214,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } , -{ "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -222,7 +222,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } +{ "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } ] } @@ -232,11 +234,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } +{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.159180, -16.488765 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , -{ "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -244,35 +246,35 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } , -{ "type": "Feature", "properties": { "NAME": "Atlanta" }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } -, { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.587376 ] } } +{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.906738, 10.509417 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.090179 ] } } , -{ "type": "Feature", "properties": { "NAME": "Reykjavรญk" }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.016242 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.472372 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.504503 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } ] } @@ -282,21 +284,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.395505 ] } } -, { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.905762, -24.647017 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.324720 ] } } +{ "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.526855, -18.916680 ] } } ] } ] } , @@ -306,47 +306,47 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.504503 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.458008, 50.078295 ] } } +{ "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } , { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +{ "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } , -{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } +{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } , { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.383789, 6.446318 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.373533 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.926588 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.376465, 35.173808 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.760742, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.925293, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.200195, 31.784217 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } , { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.587669 ] } } , @@ -354,19 +354,17 @@ , { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.525879, 25.284438 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.224820 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.565348 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.524661 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.961736 ] } } ] } ] } , @@ -378,11 +376,9 @@ , { "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } , -{ "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.193848, -33.925130 ] } } , -{ "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } ] } ] } , @@ -390,19 +386,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } , +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +, { "type": "Feature", "properties": { "NAME": "Ulaanbaatar" }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } , { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.842285, 21.043491 ] } } , -{ "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 2.921097 ] } } +{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.563965, 16.425548 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } +{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } , @@ -414,7 +412,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } , -{ "type": "Feature", "properties": { "NAME": "Apia" }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.780029, -8.515836 ] } } ] } ] } , @@ -424,7 +422,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } +{ "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , { "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } ] } @@ -440,13 +440,15 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } +{ "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.047119, -12.050065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , -{ "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.606085 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.553917 ] } } +{ "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } ] } , @@ -458,33 +460,35 @@ , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } +{ "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } , { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.080811, 4.598327 ] } } +{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } , { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.100880 ] } } , { "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , -{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -498,21 +502,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Praia" }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.912938 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } +{ "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Freetown" }, "geometry": { "type": "Point", "coordinates": [ -13.238525, 8.472372 ] } } , { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.320705 ] } } +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } ] } ] } , @@ -528,25 +532,23 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } -, { "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } , { "type": "Feature", "properties": { "NAME": "Kigali" }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.916748, -24.647017 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.315141 ] } } +{ "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.223877, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -558,35 +560,41 @@ , { "type": "Feature", "properties": { "NAME": "Tirana" }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } , -{ "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.765292 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.014893, 41.104191 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } , { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.129631 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.479067 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } +{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.860107, 39.926588 ] } } +{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.211182, 31.774878 ] } } , -{ "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } , { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.337167 ] } } , { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.598432 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -596,25 +604,25 @@ , { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.916483 ] } } , -{ "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.496403 ] } } , { "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.912751 ] } } , { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.468994, 50.085344 ] } } +{ "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.994873, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 46.057985 ] } } , { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } , { "type": "Feature", "properties": { "NAME": "Sarajevo" }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } , @@ -622,23 +630,21 @@ , { "type": "Feature", "properties": { "NAME": "Skopje" }, "geometry": { "type": "Point", "coordinates": [ 21.434326, 42.000325 ] } } , -{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } +{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.014893, 41.104191 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } ] } ] } , @@ -646,29 +652,27 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } -, { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.234758 ] } } +{ "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , { "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.590088, 23.614329 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dushanbe" }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.556757 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.712710 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.319092, 22.492257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } ] } ] } , @@ -678,8 +682,6 @@ , { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } -, { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } @@ -696,21 +698,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } -, { "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } , { "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , -{ "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 2.910125 ] } } +{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } , { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baguio City" }, "geometry": { "type": "Point", "coordinates": [ 120.574951, 16.425548 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } , { "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } , @@ -734,13 +734,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Port Moresby" }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } +{ "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Port Vila" }, "geometry": { "type": "Point", "coordinates": [ 168.321533, -17.738223 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.853252 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } ] } ] } , @@ -752,6 +750,8 @@ , { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } , +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +, { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } @@ -790,8 +790,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.332642, 25.671236 ] } } -, { "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } ] } ] } @@ -806,6 +804,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } , +{ "type": "Feature", "properties": { "NAME": "Lima" }, "geometry": { "type": "Point", "coordinates": [ -77.052612, -12.050065 ] } } +, { "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } ] } ] } @@ -814,19 +814,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.764038, 17.250990 ] } } , +{ "type": "Feature", "properties": { "NAME": "Tegucigalpa" }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } +, { "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.203491, 13.710035 ] } } , { "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.270142, 12.152116 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.535522, 8.966471 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingston" }, "geometry": { "type": "Point", "coordinates": [ -76.766968, 17.973508 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } , { "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.900513, 18.469189 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.086304, 4.598327 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.502808, -0.214233 ] } } ] } ] } , @@ -836,7 +834,7 @@ , { "type": "Feature", "properties": { "NAME": "Miami" }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.008667, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } , { "type": "Feature", "properties": { "NAME": "Nassau" }, "geometry": { "type": "Point", "coordinates": [ -77.349243, 25.080624 ] } } ] } @@ -846,7 +844,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.753296, 41.832735 ] } } , +{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +, { "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701294, 45.417732 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.751418 ] } } ] } ] } , @@ -856,7 +858,7 @@ , { "type": "Feature", "properties": { "NAME": "Buenos Aires" }, "geometry": { "type": "Point", "coordinates": [ -58.397827, -34.601563 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.558952 ] } } +{ "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } ] } , @@ -876,9 +878,9 @@ , { "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.386108, 15.300081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.210327, 13.149027 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.737671, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown" }, "geometry": { "type": "Point", "coordinates": [ -59.617310, 13.100880 ] } } , { "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.504016 ] } } , @@ -916,9 +918,7 @@ , { "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abidjan" }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.320705 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } ] } ] } , @@ -928,11 +928,9 @@ , { "type": "Feature", "properties": { "NAME": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146118, 38.724090 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.619019, 33.600894 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Madrid" }, "geometry": { "type": "Point", "coordinates": [ -3.685913, 40.400948 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.651489, 26.115986 ] } } ] } ] } , @@ -960,9 +958,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.335081 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } +{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.329979 ] } } , { "type": "Feature", "properties": { "NAME": "Luanda" }, "geometry": { "type": "Point", "coordinates": [ 13.233032, -8.836223 ] } } ] } @@ -972,21 +968,21 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } , +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.114868, 13.517838 ] } } +, { "type": "Feature", "properties": { "NAME": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.135093 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.521362, 6.402648 ] } } +{ "type": "Feature", "properties": { "NAME": "Porto-Novo" }, "geometry": { "type": "Point", "coordinates": [ 2.620239, 6.484525 ] } } , { "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.389282, 6.446318 ] } } , -{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.531128, 9.085824 ] } } +{ "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.783569, 3.749153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville" }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } +{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } , { "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.869735 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.561401, 4.362843 ] } } ] } ] } , @@ -994,9 +990,9 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048706, 36.765292 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.178833, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.893426 ] } } ] } ] } , @@ -1004,13 +1000,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "The Hague" }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.916382, 52.352119 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.334106, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris" }, "geometry": { "type": "Point", "coordinates": [ 2.334595, 48.868328 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra" }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.500453 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , @@ -1018,19 +1012,19 @@ , { "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.410278, 43.739352 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kรธbenhavn" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } +{ "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , { "type": "Feature", "properties": { "NAME": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.463501, 50.085344 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.000366, 52.251346 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364136, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Ljubljana" }, "geometry": { "type": "Point", "coordinates": [ 14.518433, 46.054173 ] } } , -{ "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.001587, 45.798170 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.442017, 43.933506 ] } } , { "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.453003, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.898188 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.147763 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , @@ -1048,7 +1042,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.750122, 59.919237 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kรธbenhavn" }, "geometry": { "type": "Point", "coordinates": [ 12.562866, 55.680682 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.352796 ] } } ] } ] } , @@ -1056,11 +1050,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Gaborone" }, "geometry": { "type": "Point", "coordinates": [ 25.911255, -24.647017 ] } } , -{ "type": "Feature", "properties": { "NAME": "Johannesburg" }, "geometry": { "type": "Point", "coordinates": [ 28.031616, -26.170229 ] } } +{ "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.229858, -29.123373 ] } } , { "type": "Feature", "properties": { "NAME": "Maseru" }, "geometry": { "type": "Point", "coordinates": [ 27.482300, -29.319931 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.229370, -25.705888 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.318037 ] } } , { "type": "Feature", "properties": { "NAME": "Lobamba" }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.465656 ] } } , @@ -1078,11 +1072,11 @@ , { "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.041870, -17.816686 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma" }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.800990 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.982046 ] } } +{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } ] } ] } , @@ -1090,13 +1084,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.536011, 15.591293 ] } } , +{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.580200, 4.828260 ] } } +, { "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Asmara" }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.331870 ] } } , { "type": "Feature", "properties": { "NAME": "Djibouti" }, "geometry": { "type": "Point", "coordinates": [ 43.148804, 11.593051 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.699341, 9.031578 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.368042, 2.064982 ] } } ] } ] } , @@ -1104,17 +1102,19 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.108330 ] } } , +{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.983175 ] } } +, { "type": "Feature", "properties": { "NAME": "Ankara" }, "geometry": { "type": "Point", "coordinates": [ 32.865601, 39.926588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.250610, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo" }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.874976 ] } } +{ "type": "Feature", "properties": { "NAME": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.500179 ] } } , { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.511108, 40.183070 ] } } , -{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 35.205688, 31.779547 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.930786, 31.952162 ] } } ] } @@ -1124,11 +1124,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.317993, 54.683359 ] } } , +{ "type": "Feature", "properties": { "NAME": "Minsk" }, "geometry": { "type": "Point", "coordinates": [ 27.564697, 53.901102 ] } } +, { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514526, 50.433017 ] } } , { "type": "Feature", "properties": { "NAME": "Sofia" }, "geometry": { "type": "Point", "coordinates": [ 23.318481, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.098022, 44.433780 ] } } , { "type": "Feature", "properties": { "NAME": "Istanbul" }, "geometry": { "type": "Point", "coordinates": [ 29.009399, 41.104191 ] } } , @@ -1149,8 +1151,6 @@ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.453491, -4.620229 ] } } , { "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -1164,13 +1164,13 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.861450, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.421509, 35.670685 ] } } , -{ "type": "Feature", "properties": { "NAME": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.774292, 24.642024 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.586548, 26.234302 ] } } , { "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.277710, 25.229789 ] } } +{ "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.365845, 24.467151 ] } } , { "type": "Feature", "properties": { "NAME": "Ashgabat" }, "geometry": { "type": "Point", "coordinates": [ 58.386841, 37.948529 ] } } , @@ -1188,9 +1188,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Mumbai" }, "geometry": { "type": "Point", "coordinates": [ 72.855835, 19.015384 ] } } , +{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.557983, 12.972442 ] } } +, { "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.504028, 4.165637 ] } } , -{ "type": "Feature", "properties": { "NAME": "Colombo" }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.931880 ] } } +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.953003, 6.899161 ] } } ] } ] } , @@ -1202,11 +1204,9 @@ , { "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.598992 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kathmandu" }, "geometry": { "type": "Point", "coordinates": [ 85.314331, 27.717573 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.642944, 27.474161 ] } } , { "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.324585, 22.497332 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -1214,7 +1214,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Astana" }, "geometry": { "type": "Point", "coordinates": [ 71.427612, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.296265, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Bishkek" }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } , { "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.806783 ] } } ] } @@ -1238,7 +1238,7 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.167940 ] } } , -{ "type": "Feature", "properties": { "NAME": "Putrajaya" }, "geometry": { "type": "Point", "coordinates": [ 101.705933, 2.910125 ] } } +{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } ] } ] } , @@ -1246,7 +1246,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.474161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.067993, 30.670991 ] } } ] } ] } , @@ -1278,11 +1278,11 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.930801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hong Kong" }, "geometry": { "type": "Point", "coordinates": [ 114.186401, 22.304344 ] } } +{ "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.437378, 31.217499 ] } } , { "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.569214, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.755005, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 126.996460, 37.566351 ] } } ] } ] } , @@ -1291,8 +1291,6 @@ { "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.818463 ] } } , { "type": "Feature", "properties": { "NAME": "Sydney" }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.920572 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Canberra" }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.285985 ] } } ] } ] } , @@ -1325,8 +1323,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 4, "x": 15, "y": 9 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Auckland" }, "geometry": { "type": "Point", "coordinates": [ 174.765015, -36.848857 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.786987, -41.302571 ] } } ] } ] } , @@ -1344,6 +1340,8 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Palikir" }, "geometry": { "type": "Point", "coordinates": [ 158.153687, 6.915521 ] } } , +{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.381226, 7.100893 ] } } +, { "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.018188, 1.334718 ] } } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json b/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json index 10bb3c51d..23c5c9e48 100644 --- a/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json +++ b/tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json @@ -9,7 +9,7 @@ "maxzoom": "2", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z0_-M10000_--drop-densest-as-needed_--extend-zooms-if-still-dropping-maximum_2.json.check.mbtiles", -"strategies": "[{\"dropped_as_needed\":220,\"tile_size_desired\":75535},{\"dropped_as_needed\":207,\"tile_size_desired\":44899},{\"dropped_as_needed\":182,\"tile_size_desired\":35505}]", +"strategies": "[{\"dropped_as_needed\":223,\"tile_size_desired\":75535},{\"dropped_as_needed\":230,\"tile_size_desired\":44899},{\"dropped_as_needed\":195,\"tile_size_desired\":35505}]", "tippecanoe_decisions": "{\"basezoom\":0,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" @@ -18,49 +18,43 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -105.029297, 39.774769 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.253906, -21.125498 ], [ 184.746094, -21.125498 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.722656, 59.933000 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.076172, 36.738884 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.833984, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 68.730469, 38.548165 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 19.808054 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.607069 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } ] } ] } , @@ -69,14 +63,6 @@ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.537565 ] } } ] } ] } , @@ -84,34 +70,16 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.418945, 33.833920 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.231445, 14.093957 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.928711, 64.148952 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.902322 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "รŽle-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.032227, 36.774092 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.539201 ] } } @@ -122,33 +90,25 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.563477, 0.307616 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.064982 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.318243 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.553147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Offical capital", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269, "MAX_POP20": 218269, "MAX_POP50": 218269, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 55, "MAX_AREAKM": 55, "MIN_AREAMI": 21, "MAX_AREAMI": 21, "MIN_PERKM": 61, "MAX_PERKM": 61, "MIN_PERMI": 38, "MAX_PERMI": 38, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 180541, "ELEVATION": 0, "GTOPO30": 1129, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.184246 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.609278 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 147.172852, -9.449062 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826 }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.906896 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.537565 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -41.310824 ] } } ] } ] } , @@ -156,43 +116,37 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.538086, 12.382928 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.916992, 60.174306 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236 }, "geometry": { "type": "Point", "coordinates": [ 23.334961, 42.682435 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.738528 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djamรฉna", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djamรฉna", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.032227, 36.774092 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa" }, "geometry": { "type": "Point", "coordinates": [ 34.760742, 32.063956 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.539201 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 71.411133, 51.179343 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.877930, 40.413496 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.064982 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.613459 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.520508, 4.171115 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.548165 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.931066 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.395508, 23.725012 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.612305, 17.978733 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.943436 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.309426 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.493196 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.425548 ] } } , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } , @@ -205,8 +159,6 @@ { "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -216,13 +168,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } ] } ] } , @@ -232,10 +178,14 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.045508 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.771109 ] } } , { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|Sรฃo Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Sรฃo Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "Sรฃo Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.563987 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413 }, "geometry": { "type": "Point", "coordinates": [ -43.220215, -22.917923 ] } } ] } ] } @@ -248,14 +198,12 @@ , { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.947209 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } @@ -264,15 +212,9 @@ , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225 }, "geometry": { "type": "Point", "coordinates": [ -17.468262, 14.711135 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ISO_A2": "AD", "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998, "MAX_POP20": 53998, "MAX_POP50": 53998, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 23, "MAX_AREAKM": 23, "MIN_AREAMI": 9, "MAX_AREAMI": 9, "MIN_PERKM": 49, "MAX_PERKM": 49, "MIN_PERMI": 31, "MAX_PERMI": 31, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52, "GN_POP": 7890, "ELEVATION": 0, "GTOPO30": 687, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.504503 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEALT": "Lomรฉ", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267, "MEGANAME": "Lomรฉ", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448, "MAX_POP20": 953569, "MAX_POP50": 954013, "MAX_POP300": 953569, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 343, "MAX_AREAKM": 364, "MIN_AREAMI": 133, "MAX_AREAMI": 140, "MIN_PERKM": 353, "MAX_PERKM": 360, "MIN_PERMI": 219, "MAX_PERMI": 224, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24, "GN_POP": 749700, "ELEVATION": 0, "GTOPO30": 64, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33, "POP1955": 56, "POP1960": 95, "POP1965": 138, "POP1970": 192, "POP1975": 257, "POP1980": 344, "POP1985": 466, "POP1990": 619, "POP1995": 796, "POP2000": 1023, "POP2005": 1315, "POP2010": 1452, "POP2015": 1669, "POP2020": 2038, "POP2025": 2410, "POP2050": 2791, "CITYALT": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } ] } ] } , @@ -280,19 +222,17 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.329588 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.072754, -22.573438 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566, "MAX_POP20": 1289566, "MAX_POP50": 1289566, "MAX_POP300": 1289566, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 183, "MAX_AREAKM": 183, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 122, "MAX_PERKM": 122, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1267440, "ELEVATION": 0, "GTOPO30": 1277, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31, "POP1955": 53, "POP1960": 91, "POP1965": 160, "POP1970": 278, "POP1975": 385, "POP1980": 533, "POP1985": 636, "POP1990": 757, "POP1995": 902, "POP2000": 1073, "POP2005": 1261, "POP2010": 1328, "POP2015": 1421, "POP2020": 1587, "POP2025": 1797, "POP2050": 2047 }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.411319 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.804199, -1.274309 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.905762, -24.647017 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.609278 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.159098 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118 }, "geometry": { "type": "Point", "coordinates": [ 47.504883, -18.916680 ] } } ] } ] } , @@ -300,45 +240,41 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 4.262695, 52.079506 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kรธbenhavn", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "Kรธbenhavn", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen" }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEALT": "Lomรฉ", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267, "MEGANAME": "Lomรฉ", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448, "MAX_POP20": 953569, "MAX_POP50": 954013, "MAX_POP300": 953569, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 343, "MAX_AREAKM": 364, "MIN_AREAMI": 133, "MAX_AREAMI": 140, "MIN_PERKM": 353, "MAX_PERKM": 360, "MIN_PERMI": 219, "MAX_PERMI": 224, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24, "GN_POP": 749700, "ELEVATION": 0, "GTOPO30": 64, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33, "POP1955": 56, "POP1960": 95, "POP1965": 138, "POP1970": 192, "POP1975": 257, "POP1980": 344, "POP1985": 466, "POP1990": 619, "POP1995": 796, "POP2000": 1023, "POP2005": 1315, "POP2010": 1452, "POP2015": 1669, "POP2020": 2038, "POP2025": 2410, "POP2050": 2791, "CITYALT": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa" }, "geometry": { "type": "Point", "coordinates": [ 34.760742, 32.082575 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "รœrรผmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "รœrรผmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.944198 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.565348 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.848633, 6.926427 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908, "MAX_POP20": 20149761, "MAX_POP50": 20149761, "MAX_POP300": 20149761, "MAX_POP310": 20149761, "MAX_NATSCA": 300, "MIN_AREAKM": 442, "MAX_AREAKM": 1479, "MIN_AREAMI": 171, "MAX_AREAMI": 571, "MIN_PERKM": 244, "MAX_PERKM": 1021, "MIN_PERMI": 152, "MAX_PERMI": 634, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16, "GN_POP": 12691836, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857, "POP1955": 3432, "POP1960": 4060, "POP1965": 4854, "POP1970": 5811, "POP1975": 7082, "POP1980": 8658, "POP1985": 10341, "POP1990": 12308, "POP1995": 14111, "POP2000": 16086, "POP2005": 18202, "POP2010": 18978, "POP2015": 20072, "POP2020": 21946, "POP2025": 24051, "POP2050": 26385, "CITYALT": "Bombay" }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } , @@ -350,8 +286,6 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.162401 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } @@ -362,11 +296,7 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.938965, -9.427387 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.208984, -8.515836 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.294317 ] } } ] } ] } , @@ -378,11 +308,11 @@ , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.191895, 22.309426 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 120.563965, 16.425548 ] } } , @@ -391,8 +321,6 @@ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.759666 ] } } , { "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } ] } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json index 15fc745d0..6ed94ce62 100644 --- a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json +++ b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json @@ -5,202 +5,501 @@ "description": "tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json.check.mbtiles -z0 -r2 -B3 -yNAME --retain-points-multiplier 3 --order-by NAME tests/ne_110m_populated_places/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"NAME\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":93,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92],\"min\":0,\"max\":92}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"NAME\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":243,\"type\":\"number\",\"values\":[0,1,10,100,101,102,103,104,105,106,107,108,109,11,110,111,112,113,114,115,116,117,118,119,12,120,121,122,123,124,125,126,127,128,129,13,130,131,132,133,134,135,136,137,138,139,14,140,141,142,143,144,145,146,147,148,149,15,150,151,152,153,154,155,156,157,158,159,16,160,161,162,163,164,165,166,167,168,169,17,170,171,172,173,174,175,176,177,178,179,18,180,181,182,183,184,185,186,187,188],\"min\":0,\"max\":242}]}]}}", "maxzoom": "0", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--order-by_NAME.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":150}]", "tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2,\"retain_points_multiplier\":3}", "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": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } +{ "type": "Feature", "properties": { "NAME": "Abidjan", "tippecanoe:retain_points_multiplier_sequence": 168, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } +{ "type": "Feature", "properties": { "NAME": "Abu Dhabi", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 54.404297, 24.447150 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } +{ "type": "Feature", "properties": { "NAME": "Accra", "tippecanoe:retain_points_multiplier_sequence": 163, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -0.175781, 5.528511 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +{ "type": "Feature", "properties": { "NAME": "Addis Ababa", "tippecanoe:retain_points_multiplier_sequence": 207, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 38.671875, 9.015302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +{ "type": "Feature", "properties": { "NAME": "Algiers", "tippecanoe:retain_points_multiplier_sequence": 173, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 3.076172, 36.738884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } +{ "type": "Feature", "properties": { "NAME": "Amman", "tippecanoe:retain_points_multiplier_sequence": 83, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +{ "type": "Feature", "properties": { "NAME": "Amsterdam", "tippecanoe:retain_points_multiplier_sequence": 192, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.375599 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 13, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Ankara", "tippecanoe:retain_points_multiplier_sequence": 145, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.909736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +{ "type": "Feature", "properties": { "NAME": "Antananarivo", "tippecanoe:retain_points_multiplier_sequence": 88, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 47.548828, -18.895893 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +{ "type": "Feature", "properties": { "NAME": "Apia", "tippecanoe:retain_points_multiplier_sequence": 137, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } +{ "type": "Feature", "properties": { "NAME": "Ashgabat", "tippecanoe:retain_points_multiplier_sequence": 49, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 58.359375, 37.926868 ] } } , -{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +{ "type": "Feature", "properties": { "NAME": "Asmara", "tippecanoe:retain_points_multiplier_sequence": 95, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.368950 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 107, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +{ "type": "Feature", "properties": { "NAME": "Asuncion", "tippecanoe:retain_points_multiplier_sequence": 62, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.324167 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } +{ "type": "Feature", "properties": { "NAME": "Athens", "tippecanoe:retain_points_multiplier_sequence": 205, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "NAME": "Atlanta", "tippecanoe:retain_points_multiplier_sequence": 179, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -84.375000, 33.797409 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 197, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad", "tippecanoe:retain_points_multiplier_sequence": 206, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +{ "type": "Feature", "properties": { "NAME": "Baguio City", "tippecanoe:retain_points_multiplier_sequence": 24, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.467695 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Baku", "tippecanoe:retain_points_multiplier_sequence": 121, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 49.833984, 40.380028 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Bamako", "tippecanoe:retain_points_multiplier_sequence": 104, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } , -{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan", "tippecanoe:retain_points_multiplier_sequence": 114, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.960938, 4.915833 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangalore", "tippecanoe:retain_points_multiplier_sequence": 204, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 188, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui", "tippecanoe:retain_points_multiplier_sequence": 117, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.496473 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +{ "type": "Feature", "properties": { "NAME": "Basseterre", "tippecanoe:retain_points_multiplier_sequence": 40, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -62.753906, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing", "tippecanoe:retain_points_multiplier_sequence": 227, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.909736 ] } } , -{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 105, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade", "tippecanoe:retain_points_multiplier_sequence": 113, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.840291 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 116, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +{ "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 198, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } , -{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern", "tippecanoe:retain_points_multiplier_sequence": 26, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 9, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Bissau", "tippecanoe:retain_points_multiplier_sequence": 82, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -15.556641, 11.867351 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Bloemfontein", "tippecanoe:retain_points_multiplier_sequence": 67, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.191406, -29.152161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +{ "type": "Feature", "properties": { "NAME": "Bogota", "tippecanoe:retain_points_multiplier_sequence": 230, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.565474 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia", "tippecanoe:retain_points_multiplier_sequence": 169, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 20, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville", "tippecanoe:retain_points_multiplier_sequence": 109, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels", "tippecanoe:retain_points_multiplier_sequence": 170, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 148, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 146, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +{ "type": "Feature", "properties": { "NAME": "Buenos Aires", "tippecanoe:retain_points_multiplier_sequence": 211, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -58.359375, -34.597042 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 69, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura", "tippecanoe:retain_points_multiplier_sequence": 37, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 231, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +{ "type": "Feature", "properties": { "NAME": "Canberra", "tippecanoe:retain_points_multiplier_sequence": 129, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 149.150391, -35.317366 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town", "tippecanoe:retain_points_multiplier_sequence": 222, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.457031, -33.943360 ] } } , -{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } +{ "type": "Feature", "properties": { "NAME": "Caracas", "tippecanoe:retain_points_multiplier_sequence": 181, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -66.884766, 10.487812 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Casablanca", "tippecanoe:retain_points_multiplier_sequence": 193, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -7.646484, 33.578015 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries", "tippecanoe:retain_points_multiplier_sequence": 39, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu", "tippecanoe:retain_points_multiplier_sequence": 200, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 180, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 73, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 77, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Conakry", "tippecanoe:retain_points_multiplier_sequence": 110, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +{ "type": "Feature", "properties": { "NAME": "Cotonou", "tippecanoe:retain_points_multiplier_sequence": 124, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.548828, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 190, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +{ "type": "Feature", "properties": { "NAME": "Damascus", "tippecanoe:retain_points_multiplier_sequence": 149, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 155, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +{ "type": "Feature", "properties": { "NAME": "Denver", "tippecanoe:retain_points_multiplier_sequence": 176, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -105.029297, 39.774769 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +{ "type": "Feature", "properties": { "NAME": "Dhaka", "tippecanoe:retain_points_multiplier_sequence": 171, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 52, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "NAME": "Djibouti", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.609193 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 25, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 21, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } +{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 183, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 156, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +{ "type": "Feature", "properties": { "NAME": "Dushanbe", "tippecanoe:retain_points_multiplier_sequence": 61, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 68.730469, 38.548165 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "Freetown", "tippecanoe:retain_points_multiplier_sequence": 64, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 8.494105 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 7, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +{ "type": "Feature", "properties": { "NAME": "Gaborone", "tippecanoe:retain_points_multiplier_sequence": 128, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.607069 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "NAME": "Geneva", "tippecanoe:retain_points_multiplier_sequence": 186, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +{ "type": "Feature", "properties": { "NAME": "Georgetown", "tippecanoe:retain_points_multiplier_sequence": 55, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -58.183594, 6.839170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 99, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 144, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } +{ "type": "Feature", "properties": { "NAME": "Harare", "tippecanoe:retain_points_multiplier_sequence": 51, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa", "tippecanoe:retain_points_multiplier_sequence": 134, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +{ "type": "Feature", "properties": { "NAME": "Havana", "tippecanoe:retain_points_multiplier_sequence": 159, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.160563 ] } } , -{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 166, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } , -{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 242, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +{ "type": "Feature", "properties": { "NAME": "Honiara", "tippecanoe:retain_points_multiplier_sequence": 70, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston", "tippecanoe:retain_points_multiplier_sequence": 177, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.840644 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 65, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 220, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 229, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 76, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +{ "type": "Feature", "properties": { "NAME": "Jerusalem", "tippecanoe:retain_points_multiplier_sequence": 140, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.244141, 31.802893 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "NAME": "Johannesburg", "tippecanoe:retain_points_multiplier_sequence": 191, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.037109, -26.194877 ] } } , -{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 17, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 212, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 58, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kathmandu", "tippecanoe:retain_points_multiplier_sequence": 66, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.683528 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 151, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kiev", "tippecanoe:retain_points_multiplier_sequence": 182, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kigali", "tippecanoe:retain_points_multiplier_sequence": 15, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 38, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 202, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kolkata", "tippecanoe:retain_points_multiplier_sequence": 237, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.512557 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur", "tippecanoe:retain_points_multiplier_sequence": 158, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kuwait", "tippecanoe:retain_points_multiplier_sequence": 161, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 32, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kรธbenhavn", "tippecanoe:retain_points_multiplier_sequence": 167, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 123, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Laayoune", "tippecanoe:retain_points_multiplier_sequence": 27, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lagos", "tippecanoe:retain_points_multiplier_sequence": 225, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 3.427734, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 100, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lilongwe", "tippecanoe:retain_points_multiplier_sequence": 98, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 189, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lisbon", "tippecanoe:retain_points_multiplier_sequence": 150, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ljubljana", "tippecanoe:retain_points_multiplier_sequence": 19, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.073231 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lobamba", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.431228 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 219, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 216, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 172, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lusaka", "tippecanoe:retain_points_multiplier_sequence": 50, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.300781, -15.453680 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 4, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Madrid", "tippecanoe:retain_points_multiplier_sequence": 185, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Majuro", "tippecanoe:retain_points_multiplier_sequence": 6, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 94, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 139, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Managua", "tippecanoe:retain_points_multiplier_sequence": 63, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -86.308594, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 43, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Manila", "tippecanoe:retain_points_multiplier_sequence": 195, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 120.937500, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Maputo", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Melbourne", "tippecanoe:retain_points_multiplier_sequence": 214, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 8, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mexico City", "tippecanoe:retain_points_multiplier_sequence": 224, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Miami", "tippecanoe:retain_points_multiplier_sequence": 178, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Minsk", "tippecanoe:retain_points_multiplier_sequence": 126, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.597656, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu", "tippecanoe:retain_points_multiplier_sequence": 75, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.108899 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monaco", "tippecanoe:retain_points_multiplier_sequence": 10, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.382812, 43.771094 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 157, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monterrey", "tippecanoe:retain_points_multiplier_sequence": 196, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -100.371094, 25.641526 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 45, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Moroni", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Moscow", "tippecanoe:retain_points_multiplier_sequence": 223, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.776573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mumbai", "tippecanoe:retain_points_multiplier_sequence": 234, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 18.979026 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Muscat", "tippecanoe:retain_points_multiplier_sequence": 76, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 58.623047, 23.644524 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 228, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 142, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Naypyidaw", "tippecanoe:retain_points_multiplier_sequence": 132, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 19.808054 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 93, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 203, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 218, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 60, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nicosia", "tippecanoe:retain_points_multiplier_sequence": 143, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 33.398438, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 103, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nukualofa", "tippecanoe:retain_points_multiplier_sequence": 133, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.253906, -21.125498 ], [ 184.746094, -21.125498 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 201, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Oslo", "tippecanoe:retain_points_multiplier_sequence": 152, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 10.722656, 59.933000 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ottawa", "tippecanoe:retain_points_multiplier_sequence": 112, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -75.673828, 45.398450 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 130, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Palikir", "tippecanoe:retain_points_multiplier_sequence": 5, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Panama City", "tippecanoe:retain_points_multiplier_sequence": 71, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.928487 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paramaribo", "tippecanoe:retain_points_multiplier_sequence": 59, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.878332 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 235, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Phnom Penh", "tippecanoe:retain_points_multiplier_sequence": 122, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 104.941406, 11.523088 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Podgorica", "tippecanoe:retain_points_multiplier_sequence": 22, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.248047, 42.488302 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port Louis", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 57.480469, -20.138470 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 69, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port Vila", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 168.310547, -17.727759 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Porto-Novo", "tippecanoe:retain_points_multiplier_sequence": 36, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.636719, 6.489983 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 160, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 141, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pristina", "tippecanoe:retain_points_multiplier_sequence": 28, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Putrajaya", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pyongyang", "tippecanoe:retain_points_multiplier_sequence": 154, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Quito", "tippecanoe:retain_points_multiplier_sequence": 89, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rabat", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rangoon", "tippecanoe:retain_points_multiplier_sequence": 174, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Reykjavรญk", "tippecanoe:retain_points_multiplier_sequence": 56, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riga", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 238, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riyadh", "tippecanoe:retain_points_multiplier_sequence": 221, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.607069 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 226, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Roseau", "tippecanoe:retain_points_multiplier_sequence": 29, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.347656, 15.284185 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 42, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Saint John's", "tippecanoe:retain_points_multiplier_sequence": 44, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.875000, 17.140790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 175, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Jose", "tippecanoe:retain_points_multiplier_sequence": 90, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Marino", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Salvador", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sanaa", "tippecanoe:retain_points_multiplier_sequence": 147, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santiago", "tippecanoe:retain_points_multiplier_sequence": 236, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.431441 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 162, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 239, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Tome", "tippecanoe:retain_points_multiplier_sequence": 136, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.767578, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sarajevo", "tippecanoe:retain_points_multiplier_sequence": 131, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul", "tippecanoe:retain_points_multiplier_sequence": 194, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 232, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Singapore", "tippecanoe:retain_points_multiplier_sequence": 241, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 34, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sofia", "tippecanoe:retain_points_multiplier_sequence": 125, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 23.291016, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 23, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm", "tippecanoe:retain_points_multiplier_sequence": 187, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sucre", "tippecanoe:retain_points_multiplier_sequence": 115, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -65.302734, -19.062118 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 101, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sydney", "tippecanoe:retain_points_multiplier_sequence": 240, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 215, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 97, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tarawa", "tippecanoe:retain_points_multiplier_sequence": 11, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 173.056641, 1.318243 ], [ -186.943359, 1.318243 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 184, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tbilisi", "tippecanoe:retain_points_multiplier_sequence": 106, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tegucigalpa", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.187500, 14.093957 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tehran", "tippecanoe:retain_points_multiplier_sequence": 208, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 165, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } +, +{ "type": "Feature", "properties": { "NAME": "The Hague", "tippecanoe:retain_points_multiplier_sequence": 18, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 52.106505 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Thimphu", "tippecanoe:retain_points_multiplier_sequence": 127, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tirana", "tippecanoe:retain_points_multiplier_sequence": 119, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.775391, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tokyo", "tippecanoe:retain_points_multiplier_sequence": 233, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 210, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tripoli", "tippecanoe:retain_points_multiplier_sequence": 164, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.916485 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tunis", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ulaanbaatar", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Urumqi", "tippecanoe:retain_points_multiplier_sequence": 199, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 87.539062, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vaduz", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 47.159840 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 138, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 102, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 209, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vatican City", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Victoria", "tippecanoe:retain_points_multiplier_sequence": 135, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vienna", "tippecanoe:retain_points_multiplier_sequence": 213, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.224673 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 108, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vilnius", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 153, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Washington, D.C.", "tippecanoe:retain_points_multiplier_sequence": 217, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Wellington", "tippecanoe:retain_points_multiplier_sequence": 79, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.185547, -41.310824 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 80, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 111, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yaounde", "tippecanoe:retain_points_multiplier_sequence": 118, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yerevan", "tippecanoe:retain_points_multiplier_sequence": 120, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.472656, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zagreb", "tippecanoe:retain_points_multiplier_sequence": 96, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } ] } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json index 8aa08548a..1856b66c8 100644 --- a/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json +++ b/tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json @@ -5,202 +5,501 @@ "description": "tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json.check.mbtiles", "format": "pbf", "generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json.check.mbtiles -z0 -r2 -B3 -yNAME --retain-points-multiplier 3 --preserve-input-order tests/ne_110m_populated_places/in.json", -"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"NAME\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":93,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,31,32,33,34,35,36,37,38,39,4,40,41,42,43,44,45,46,47,48,49,5,50,51,52,53,54,55,56,57,58,59,6,60,61,62,63,64,65,66,67,68,69,7,70,71,72,73,74,75,76,77,78,79,8,80,81,82,83,84,85,86,87,88,89,9,90,91,92],\"min\":0,\"max\":92}]}]}}", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"NAME\":\"String\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":3,\"attributes\":[{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"tippecanoe:retain_points_multiplier_first\",\"count\":1,\"type\":\"boolean\",\"values\":[true]},{\"attribute\":\"tippecanoe:retain_points_multiplier_sequence\",\"count\":243,\"type\":\"number\",\"values\":[0,1,10,100,101,102,103,104,105,106,107,108,109,11,110,111,112,113,114,115,116,117,118,119,12,120,121,122,123,124,125,126,127,128,129,13,130,131,132,133,134,135,136,137,138,139,14,140,141,142,143,144,145,146,147,148,149,15,150,151,152,153,154,155,156,157,158,159,16,160,161,162,163,164,165,166,167,168,169,17,170,171,172,173,174,175,176,177,178,179,18,180,181,182,183,184,185,186,187,188],\"min\":0,\"max\":242}]}]}}", "maxzoom": "0", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z0_-r2_-B3_-yNAME_--retain-points-multiplier_3_--preserve-input-order.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":150}]", "tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2,\"retain_points_multiplier\":3}", "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": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Vatican City", "tippecanoe:retain_points_multiplier_sequence": 0, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } , -{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } , -{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +{ "type": "Feature", "properties": { "NAME": "Vaduz", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 47.159840 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 1, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Lobamba", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.431228 ] } } , -{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Luxembourg", "tippecanoe:retain_points_multiplier_sequence": 4, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.610710 ] } } , -{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +{ "type": "Feature", "properties": { "NAME": "Palikir", "tippecanoe:retain_points_multiplier_sequence": 5, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 2, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +{ "type": "Feature", "properties": { "NAME": "Majuro", "tippecanoe:retain_points_multiplier_sequence": 6, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } , -{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +{ "type": "Feature", "properties": { "NAME": "Funafuti", "tippecanoe:retain_points_multiplier_sequence": 7, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 179.208984, -8.494105 ], [ -180.791016, -8.494105 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } +{ "type": "Feature", "properties": { "NAME": "Melekeok", "tippecanoe:retain_points_multiplier_sequence": 8, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 3, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +{ "type": "Feature", "properties": { "NAME": "Bir Lehlou", "tippecanoe:retain_points_multiplier_sequence": 9, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco", "tippecanoe:retain_points_multiplier_sequence": 10, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.382812, 43.771094 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa", "tippecanoe:retain_points_multiplier_sequence": 11, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 173.056641, 1.318243 ], [ -186.943359, 1.318243 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } +{ "type": "Feature", "properties": { "NAME": "Moroni", "tippecanoe:retain_points_multiplier_sequence": 12, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +{ "type": "Feature", "properties": { "NAME": "Andorra", "tippecanoe:retain_points_multiplier_sequence": 13, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.494141, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 14, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +{ "type": "Feature", "properties": { "NAME": "Kigali", "tippecanoe:retain_points_multiplier_sequence": 15, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.933227 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } +{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 17, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 16, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } +{ "type": "Feature", "properties": { "NAME": "The Hague", "tippecanoe:retain_points_multiplier_sequence": 18, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 52.106505 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +{ "type": "Feature", "properties": { "NAME": "Ljubljana", "tippecanoe:retain_points_multiplier_sequence": 19, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.073231 ] } } , -{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } +{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 20, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } +{ "type": "Feature", "properties": { "NAME": "Doha", "tippecanoe:retain_points_multiplier_sequence": 21, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.503906, 25.324167 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } +{ "type": "Feature", "properties": { "NAME": "Podgorica", "tippecanoe:retain_points_multiplier_sequence": 22, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.248047, 42.488302 ] } } , -{ "type": "Feature", "properties": { "NAME": "Mbabane", "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 23, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +{ "type": "Feature", "properties": { "NAME": "Baguio City", "tippecanoe:retain_points_multiplier_sequence": 24, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.467695 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 25, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +{ "type": "Feature", "properties": { "NAME": "Bern", "tippecanoe:retain_points_multiplier_sequence": 26, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Laayoune", "tippecanoe:retain_points_multiplier_sequence": 27, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +{ "type": "Feature", "properties": { "NAME": "Pristina", "tippecanoe:retain_points_multiplier_sequence": 28, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } , -{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Roseau", "tippecanoe:retain_points_multiplier_sequence": 29, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.347656, 15.284185 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Djibouti", "tippecanoe:retain_points_multiplier_sequence": 30, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.609193 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +{ "type": "Feature", "properties": { "NAME": "Putrajaya", "tippecanoe:retain_points_multiplier_sequence": 31, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +{ "type": "Feature", "properties": { "NAME": "Kyoto", "tippecanoe:retain_points_multiplier_sequence": 32, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.791016, 35.029996 ] } } , -{ "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul", "tippecanoe:retain_points_multiplier_sequence": 33, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -16.611328, 13.496473 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } +{ "type": "Feature", "properties": { "NAME": "Skopje", "tippecanoe:retain_points_multiplier_sequence": 34, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 41.967659 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Bridgetown", "tippecanoe:retain_points_multiplier_sequence": 35, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +{ "type": "Feature", "properties": { "NAME": "Porto-Novo", "tippecanoe:retain_points_multiplier_sequence": 36, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.636719, 6.489983 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +{ "type": "Feature", "properties": { "NAME": "Bujumbura", "tippecanoe:retain_points_multiplier_sequence": 37, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown", "tippecanoe:retain_points_multiplier_sequence": 38, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries", "tippecanoe:retain_points_multiplier_sequence": 39, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } , -{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } +{ "type": "Feature", "properties": { "NAME": "Basseterre", "tippecanoe:retain_points_multiplier_sequence": 40, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -62.753906, 17.308688 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis", "tippecanoe:retain_points_multiplier_sequence": 41, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 57.480469, -20.138470 ] } } , -{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint George's", "tippecanoe:retain_points_multiplier_sequence": 42, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte", "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Manama", "tippecanoe:retain_points_multiplier_sequence": 43, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 50.625000, 26.273714 ] } } , -{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } +{ "type": "Feature", "properties": { "NAME": "Saint John's", "tippecanoe:retain_points_multiplier_sequence": 44, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -61.875000, 17.140790 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } +{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 45, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } , -{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +{ "type": "Feature", "properties": { "NAME": "Lome", "tippecanoe:retain_points_multiplier_sequence": 46, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 1.230469, 6.140555 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis", "tippecanoe:retain_points_multiplier_sequence": 47, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +{ "type": "Feature", "properties": { "NAME": "Abu Dhabi", "tippecanoe:retain_points_multiplier_sequence": 48, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 54.404297, 24.447150 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } +{ "type": "Feature", "properties": { "NAME": "Ashgabat", "tippecanoe:retain_points_multiplier_sequence": 49, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 58.359375, 37.926868 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba", "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 31.552734, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Lusaka", "tippecanoe:retain_points_multiplier_sequence": 50, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.300781, -15.453680 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +{ "type": "Feature", "properties": { "NAME": "Harare", "tippecanoe:retain_points_multiplier_sequence": 51, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.025391, -17.811456 ] } } , -{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 52, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Vila", "tippecanoe:retain_points_multiplier_sequence": 53, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 168.310547, -17.727759 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } +{ "type": "Feature", "properties": { "NAME": "Tegucigalpa", "tippecanoe:retain_points_multiplier_sequence": 54, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.187500, 14.093957 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +{ "type": "Feature", "properties": { "NAME": "Georgetown", "tippecanoe:retain_points_multiplier_sequence": 55, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -58.183594, 6.839170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +{ "type": "Feature", "properties": { "NAME": "Reykjavรญk", "tippecanoe:retain_points_multiplier_sequence": 56, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 69, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-au-Prince", "tippecanoe:retain_points_multiplier_sequence": 57, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala", "tippecanoe:retain_points_multiplier_sequence": 58, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.351560 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +{ "type": "Feature", "properties": { "NAME": "Paramaribo", "tippecanoe:retain_points_multiplier_sequence": 59, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.878332 ] } } , -{ "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey", "tippecanoe:retain_points_multiplier_sequence": 60, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +{ "type": "Feature", "properties": { "NAME": "Dushanbe", "tippecanoe:retain_points_multiplier_sequence": 61, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 68.730469, 38.548165 ] } } , -{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +{ "type": "Feature", "properties": { "NAME": "Asuncion", "tippecanoe:retain_points_multiplier_sequence": 62, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -57.656250, -25.324167 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua", "tippecanoe:retain_points_multiplier_sequence": 63, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -86.308594, 12.125264 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +{ "type": "Feature", "properties": { "NAME": "Freetown", "tippecanoe:retain_points_multiplier_sequence": 64, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.271484, 8.494105 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 65, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 76, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +{ "type": "Feature", "properties": { "NAME": "Kathmandu", "tippecanoe:retain_points_multiplier_sequence": 66, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.683528 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +{ "type": "Feature", "properties": { "NAME": "Bloemfontein", "tippecanoe:retain_points_multiplier_sequence": 67, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.191406, -29.152161 ] } } , -{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +{ "type": "Feature", "properties": { "NAME": "Pretoria", "tippecanoe:retain_points_multiplier_sequence": 68, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.212891, -25.720735 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 69, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } , -{ "type": "Feature", "properties": { "NAME": "Islamabad", "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 73.125000, 33.724340 ] } } +{ "type": "Feature", "properties": { "NAME": "Honiara", "tippecanoe:retain_points_multiplier_sequence": 70, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +{ "type": "Feature", "properties": { "NAME": "Panama City", "tippecanoe:retain_points_multiplier_sequence": 71, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.928487 ] } } , -{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat", "tippecanoe:retain_points_multiplier_sequence": 72, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +{ "type": "Feature", "properties": { "NAME": "Chisinau", "tippecanoe:retain_points_multiplier_sequence": 73, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.828125, 46.980252 ] } } , -{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +{ "type": "Feature", "properties": { "NAME": "Maputo", "tippecanoe:retain_points_multiplier_sequence": 74, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu", "tippecanoe:retain_points_multiplier_sequence": 75, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.108899 ] } } , -{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +{ "type": "Feature", "properties": { "NAME": "Muscat", "tippecanoe:retain_points_multiplier_sequence": 76, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 58.623047, 23.644524 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bratislava", "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.166085 ] } } +{ "type": "Feature", "properties": { "NAME": "Colombo", "tippecanoe:retain_points_multiplier_sequence": 77, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 79.892578, 6.926427 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +{ "type": "Feature", "properties": { "NAME": "Ulaanbaatar", "tippecanoe:retain_points_multiplier_sequence": 78, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.875000, 47.931066 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } +{ "type": "Feature", "properties": { "NAME": "Wellington", "tippecanoe:retain_points_multiplier_sequence": 79, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.185547, -41.310824 ] ] } } , -{ "type": "Feature", "properties": { "NAME": "Dodoma", "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 35.771484, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Windhoek", "tippecanoe:retain_points_multiplier_sequence": 80, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 17.050781, -22.593726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja", "tippecanoe:retain_points_multiplier_sequence": 81, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port Moresby", "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 147.216797, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Bissau", "tippecanoe:retain_points_multiplier_sequence": 82, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -15.556641, 11.867351 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili", "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "NAME": "Amman", "tippecanoe:retain_points_multiplier_sequence": 83, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +{ "type": "Feature", "properties": { "NAME": "Vilnius", "tippecanoe:retain_points_multiplier_sequence": 84, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga", "tippecanoe:retain_points_multiplier_sequence": 85, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +{ "type": "Feature", "properties": { "NAME": "Bishkek", "tippecanoe:retain_points_multiplier_sequence": 86, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 74.619141, 42.875964 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +{ "type": "Feature", "properties": { "NAME": "Maseru", "tippecanoe:retain_points_multiplier_sequence": 87, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.509766, -29.305561 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +{ "type": "Feature", "properties": { "NAME": "Antananarivo", "tippecanoe:retain_points_multiplier_sequence": 88, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 47.548828, -18.895893 ] } } , -{ "type": "Feature", "properties": { "NAME": "Montevideo", "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.885931 ] } } +{ "type": "Feature", "properties": { "NAME": "Quito", "tippecanoe:retain_points_multiplier_sequence": 89, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } , -{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } +{ "type": "Feature", "properties": { "NAME": "San Jose", "tippecanoe:retain_points_multiplier_sequence": 90, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } , -{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +{ "type": "Feature", "properties": { "NAME": "San Salvador", "tippecanoe:retain_points_multiplier_sequence": 91, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } , -{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingston", "tippecanoe:retain_points_multiplier_sequence": 92, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ndjamena", "tippecanoe:retain_points_multiplier_sequence": 93, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.029297, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Malabo", "tippecanoe:retain_points_multiplier_sequence": 94, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Asmara", "tippecanoe:retain_points_multiplier_sequence": 95, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zagreb", "tippecanoe:retain_points_multiplier_sequence": 96, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.828799 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tallinn", "tippecanoe:retain_points_multiplier_sequence": 97, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.697266, 59.445075 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lilongwe", "tippecanoe:retain_points_multiplier_sequence": 98, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Guatemala", "tippecanoe:retain_points_multiplier_sequence": 99, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Libreville", "tippecanoe:retain_points_multiplier_sequence": 100, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Suva", "tippecanoe:retain_points_multiplier_sequence": 101, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 178.417969, -18.145852 ], [ -181.582031, -18.145852 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valparaiso", "tippecanoe:retain_points_multiplier_sequence": 102, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nouakchott", "tippecanoe:retain_points_multiplier_sequence": 103, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bamako", "tippecanoe:retain_points_multiplier_sequence": 104, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Beirut", "tippecanoe:retain_points_multiplier_sequence": 105, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tbilisi", "tippecanoe:retain_points_multiplier_sequence": 106, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Astana", "tippecanoe:retain_points_multiplier_sequence": 107, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 71.455078, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vientiane", "tippecanoe:retain_points_multiplier_sequence": 108, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 102.568359, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville", "tippecanoe:retain_points_multiplier_sequence": 109, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.214943 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Conakry", "tippecanoe:retain_points_multiplier_sequence": 110, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yamoussoukro", "tippecanoe:retain_points_multiplier_sequence": 111, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ottawa", "tippecanoe:retain_points_multiplier_sequence": 112, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -75.673828, 45.398450 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Belgrade", "tippecanoe:retain_points_multiplier_sequence": 113, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.840291 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bandar Seri Begawan", "tippecanoe:retain_points_multiplier_sequence": 114, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.960938, 4.915833 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sucre", "tippecanoe:retain_points_multiplier_sequence": 115, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -65.302734, -19.062118 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Belmopan", "tippecanoe:retain_points_multiplier_sequence": 116, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangui", "tippecanoe:retain_points_multiplier_sequence": 117, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yaounde", "tippecanoe:retain_points_multiplier_sequence": 118, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tirana", "tippecanoe:retain_points_multiplier_sequence": 119, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.775391, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Yerevan", "tippecanoe:retain_points_multiplier_sequence": 120, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.472656, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Baku", "tippecanoe:retain_points_multiplier_sequence": 121, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 49.833984, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Phnom Penh", "tippecanoe:retain_points_multiplier_sequence": 122, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 104.941406, 11.523088 ] } } +, +{ "type": "Feature", "properties": { "NAME": "La Paz", "tippecanoe:retain_points_multiplier_sequence": 123, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -68.115234, -16.467695 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cotonou", "tippecanoe:retain_points_multiplier_sequence": 124, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.548828, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sofia", "tippecanoe:retain_points_multiplier_sequence": 125, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 23.291016, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Minsk", "tippecanoe:retain_points_multiplier_sequence": 126, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 27.597656, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Thimphu", "tippecanoe:retain_points_multiplier_sequence": 127, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Gaborone", "tippecanoe:retain_points_multiplier_sequence": 128, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.607069 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Canberra", "tippecanoe:retain_points_multiplier_sequence": 129, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 149.150391, -35.317366 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ouagadougou", "tippecanoe:retain_points_multiplier_sequence": 130, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -1.494141, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sarajevo", "tippecanoe:retain_points_multiplier_sequence": 131, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Naypyidaw", "tippecanoe:retain_points_multiplier_sequence": 132, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 19.808054 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nukualofa", "tippecanoe:retain_points_multiplier_sequence": 133, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.253906, -21.125498 ], [ 184.746094, -21.125498 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hargeysa", "tippecanoe:retain_points_multiplier_sequence": 134, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Victoria", "tippecanoe:retain_points_multiplier_sequence": 135, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.653080 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Tome", "tippecanoe:retain_points_multiplier_sequence": 136, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.767578, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Apia", "tippecanoe:retain_points_multiplier_sequence": 137, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Valletta", "tippecanoe:retain_points_multiplier_sequence": 138, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Male", "tippecanoe:retain_points_multiplier_sequence": 139, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 73.476562, 4.127285 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Jerusalem", "tippecanoe:retain_points_multiplier_sequence": 140, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 35.244141, 31.802893 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Praia", "tippecanoe:retain_points_multiplier_sequence": 141, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nassau", "tippecanoe:retain_points_multiplier_sequence": 142, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nicosia", "tippecanoe:retain_points_multiplier_sequence": 143, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 33.398438, 35.173808 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hanoi", "tippecanoe:retain_points_multiplier_sequence": 144, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 105.820312, 21.043491 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ankara", "tippecanoe:retain_points_multiplier_sequence": 145, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Budapest", "tippecanoe:retain_points_multiplier_sequence": 146, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.517201 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sanaa", "tippecanoe:retain_points_multiplier_sequence": 147, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.368950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bucharest", "tippecanoe:retain_points_multiplier_sequence": 148, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.465151 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Damascus", "tippecanoe:retain_points_multiplier_sequence": 149, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lisbon", "tippecanoe:retain_points_multiplier_sequence": 150, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Khartoum", "tippecanoe:retain_points_multiplier_sequence": 151, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.623037 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Oslo", "tippecanoe:retain_points_multiplier_sequence": 152, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 10.722656, 59.933000 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Warsaw", "tippecanoe:retain_points_multiplier_sequence": 153, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.268157 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pyongyang", "tippecanoe:retain_points_multiplier_sequence": 154, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 125.771484, 39.027719 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dar es Salaam", "tippecanoe:retain_points_multiplier_sequence": 155, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.839170 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dublin", "tippecanoe:retain_points_multiplier_sequence": 156, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monrovia", "tippecanoe:retain_points_multiplier_sequence": 157, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kuala Lumpur", "tippecanoe:retain_points_multiplier_sequence": 158, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Havana", "tippecanoe:retain_points_multiplier_sequence": 159, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.160563 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Prague", "tippecanoe:retain_points_multiplier_sequence": 160, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 50.064192 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kuwait", "tippecanoe:retain_points_multiplier_sequence": 161, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santo Domingo", "tippecanoe:retain_points_multiplier_sequence": 162, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Accra", "tippecanoe:retain_points_multiplier_sequence": 163, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -0.175781, 5.528511 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tripoli", "tippecanoe:retain_points_multiplier_sequence": 164, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.916485 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tel Aviv-Yafo", "tippecanoe:retain_points_multiplier_sequence": 165, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 34.804688, 32.101190 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Helsinki", "tippecanoe:retain_points_multiplier_sequence": 166, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.196156 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kรธbenhavn", "tippecanoe:retain_points_multiplier_sequence": 167, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Abidjan", "tippecanoe:retain_points_multiplier_sequence": 168, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.353521 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brasilia", "tippecanoe:retain_points_multiplier_sequence": 169, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brussels", "tippecanoe:retain_points_multiplier_sequence": 170, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dhaka", "tippecanoe:retain_points_multiplier_sequence": 171, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luanda", "tippecanoe:retain_points_multiplier_sequence": 172, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.271484, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Algiers", "tippecanoe:retain_points_multiplier_sequence": 173, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 3.076172, 36.738884 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rangoon", "tippecanoe:retain_points_multiplier_sequence": 174, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 16.804541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "San Francisco", "tippecanoe:retain_points_multiplier_sequence": 175, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Denver", "tippecanoe:retain_points_multiplier_sequence": 176, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -105.029297, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Houston", "tippecanoe:retain_points_multiplier_sequence": 177, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.840644 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Miami", "tippecanoe:retain_points_multiplier_sequence": 178, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Atlanta", "tippecanoe:retain_points_multiplier_sequence": 179, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -84.375000, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chicago", "tippecanoe:retain_points_multiplier_sequence": 180, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Caracas", "tippecanoe:retain_points_multiplier_sequence": 181, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -66.884766, 10.487812 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kiev", "tippecanoe:retain_points_multiplier_sequence": 182, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dubai", "tippecanoe:retain_points_multiplier_sequence": 183, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.244696 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tashkent", "tippecanoe:retain_points_multiplier_sequence": 184, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.257812, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Madrid", "tippecanoe:retain_points_multiplier_sequence": 185, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Geneva", "tippecanoe:retain_points_multiplier_sequence": 186, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stockholm", "tippecanoe:retain_points_multiplier_sequence": 187, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangkok", "tippecanoe:retain_points_multiplier_sequence": 188, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 100.546875, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lima", "tippecanoe:retain_points_multiplier_sequence": 189, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -77.080078, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dakar", "tippecanoe:retain_points_multiplier_sequence": 190, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Johannesburg", "tippecanoe:retain_points_multiplier_sequence": 191, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 28.037109, -26.194877 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Amsterdam", "tippecanoe:retain_points_multiplier_sequence": 192, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.375599 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Casablanca", "tippecanoe:retain_points_multiplier_sequence": 193, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -7.646484, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul", "tippecanoe:retain_points_multiplier_sequence": 194, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Manila", "tippecanoe:retain_points_multiplier_sequence": 195, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 120.937500, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Monterrey", "tippecanoe:retain_points_multiplier_sequence": 196, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -100.371094, 25.641526 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Auckland", "tippecanoe:retain_points_multiplier_sequence": 197, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.726562, -36.879621 ], [ -185.273438, -36.879621 ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Berlin", "tippecanoe:retain_points_multiplier_sequence": 198, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 13.359375, 52.536273 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Urumqi", "tippecanoe:retain_points_multiplier_sequence": 199, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 87.539062, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Chengdu", "tippecanoe:retain_points_multiplier_sequence": 200, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Osaka", "tippecanoe:retain_points_multiplier_sequence": 201, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kinshasa", "tippecanoe:retain_points_multiplier_sequence": 202, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New Delhi", "tippecanoe:retain_points_multiplier_sequence": 203, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 77.167969, 28.613459 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bangalore", "tippecanoe:retain_points_multiplier_sequence": 204, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 77.519531, 12.983148 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Athens", "tippecanoe:retain_points_multiplier_sequence": 205, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.996163 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Baghdad", "tippecanoe:retain_points_multiplier_sequence": 206, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Addis Ababa", "tippecanoe:retain_points_multiplier_sequence": 207, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 38.671875, 9.015302 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tehran", "tippecanoe:retain_points_multiplier_sequence": 208, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vancouver", "tippecanoe:retain_points_multiplier_sequence": 209, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Toronto", "tippecanoe:retain_points_multiplier_sequence": 210, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Buenos Aires", "tippecanoe:retain_points_multiplier_sequence": 211, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -58.359375, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kabul", "tippecanoe:retain_points_multiplier_sequence": 212, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vienna", "tippecanoe:retain_points_multiplier_sequence": 213, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.224673 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Melbourne", "tippecanoe:retain_points_multiplier_sequence": 214, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 144.931641, -37.788081 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Taipei", "tippecanoe:retain_points_multiplier_sequence": 215, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Los Angeles", "tippecanoe:retain_points_multiplier_sequence": 216, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Washington, D.C.", "tippecanoe:retain_points_multiplier_sequence": 217, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York", "tippecanoe:retain_points_multiplier_sequence": 218, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "NAME": "London", "tippecanoe:retain_points_multiplier_sequence": 219, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Istanbul", "tippecanoe:retain_points_multiplier_sequence": 220, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Riyadh", "tippecanoe:retain_points_multiplier_sequence": 221, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.607069 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cape Town", "tippecanoe:retain_points_multiplier_sequence": 222, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 18.457031, -33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Moscow", "tippecanoe:retain_points_multiplier_sequence": 223, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.776573 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mexico City", "tippecanoe:retain_points_multiplier_sequence": 224, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lagos", "tippecanoe:retain_points_multiplier_sequence": 225, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 3.427734, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rome", "tippecanoe:retain_points_multiplier_sequence": 226, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Beijing", "tippecanoe:retain_points_multiplier_sequence": 227, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nairobi", "tippecanoe:retain_points_multiplier_sequence": 228, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Jakarta", "tippecanoe:retain_points_multiplier_sequence": 229, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 106.787109, -6.140555 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bogota", "tippecanoe:retain_points_multiplier_sequence": 230, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.565474 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cairo", "tippecanoe:retain_points_multiplier_sequence": 231, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 31.289062, 30.069094 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Shanghai", "tippecanoe:retain_points_multiplier_sequence": 232, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 121.464844, 31.203405 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tokyo", "tippecanoe:retain_points_multiplier_sequence": 233, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mumbai", "tippecanoe:retain_points_multiplier_sequence": 234, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 18.979026 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Paris", "tippecanoe:retain_points_multiplier_sequence": 235, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 2.373047, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Santiago", "tippecanoe:retain_points_multiplier_sequence": 236, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.431441 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kolkata", "tippecanoe:retain_points_multiplier_sequence": 237, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.512557 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Rio de Janeiro", "tippecanoe:retain_points_multiplier_sequence": 238, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -43.242188, -22.917923 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sao Paulo", "tippecanoe:retain_points_multiplier_sequence": 239, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ -46.669922, -23.563987 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sydney", "tippecanoe:retain_points_multiplier_sequence": 240, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Singapore", "tippecanoe:retain_points_multiplier_sequence": 241, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 103.886719, 1.318243 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hong Kong", "tippecanoe:retain_points_multiplier_sequence": 242, "tippecanoe:retain_points_multiplier_first": true }, "geometry": { "type": "Point", "coordinates": [ 114.169922, 22.268764 ] } } ] } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json index 685a24dde..4b7c56ab5 100644 --- a/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "1", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z1_-M10000_--coalesce-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":145,\"coalesced_as_needed\":77,\"tile_size_desired\":33283},{\"coalesced_as_needed\":226,\"tile_size_desired\":44899}]", +"strategies": "[{\"dropped_by_rate\":145,\"coalesced_as_needed\":80,\"tile_size_desired\":34115},{\"coalesced_as_needed\":226,\"tile_size_desired\":44899}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,44 +17,38 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.125000, 33.943360 ], [ -100.283203, 25.641526 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -118.125000, 33.943360 ], [ -95.361328, 29.840644 ], [ -90.527344, 14.604847 ], [ -75.673828, 45.398450 ], [ -82.353516, 23.079732 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -90.527344, 14.604847 ], [ -79.365234, 43.707594 ], [ -82.353516, 23.079732 ], [ -76.992188, 38.891033 ] ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -88.769531, 17.224758 ], [ -89.208984, 13.667338 ], [ -79.541016, 8.928487 ], [ -72.333984, 18.562947 ], [ -61.347656, 15.284185 ], [ -61.699219, 12.039321 ], [ -66.884766, 10.487812 ], [ -55.107422, 5.790897 ], [ -7.558594, 33.578015 ], [ -9.667969, 26.115986 ], [ -15.996094, 18.062312 ], [ -13.623047, 9.535749 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -74.003906, 40.713956 ], [ -88.769531, 17.224758 ], [ -86.220703, 12.125264 ], [ -79.541016, 8.928487 ], [ -69.873047, 18.479609 ], [ -60.996094, 14.008696 ], [ -61.699219, 12.039321 ], [ -61.523438, 10.660608 ], [ -55.107422, 5.790897 ], [ -0.087891, 51.508742 ] ] } } , { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.666016, 17.308688 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } -, -{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -13.183594, 27.137368 ], [ -6.855469, 34.016242 ], [ -9.667969, 26.115986 ], [ -16.611328, 13.410994 ], [ -13.623047, 9.535749 ], [ -1.494141, 12.382928 ], [ -5.273438, 6.839170 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -7.998047, 12.640338 ], [ -5.273438, 6.839170 ], [ -0.175781, 5.528511 ], [ -68.115234, -16.551962 ], [ -65.214844, -19.062118 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.166016, -21.125498 ], [ 184.833984, -21.125498 ], [ -71.630859, -33.063924 ] ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.263671 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -57.656250, -25.324167 ], [ -56.162109, -34.885931 ], [ 4.921875, 52.321911 ], [ 6.152344, 49.610710 ], [ 6.152344, 46.195042 ], [ 9.580078, 47.100045 ], [ 13.447266, 52.536273 ], [ 21.005859, 52.214339 ], [ 15.996094, 45.767523 ], [ 12.480469, 41.902277 ], [ 19.072266, 47.457809 ], [ 19.248047, 42.423457 ], [ 21.181641, 42.682435 ], [ 24.960938, 60.152442 ], [ 30.498047, 50.401515 ], [ 28.916016, 46.980252 ], [ 37.617188, 55.727110 ], [ 10.195312, 36.809285 ], [ 14.501953, 35.889050 ], [ 2.548828, 6.402648 ], [ 3.427734, 6.402648 ], [ 8.789062, 3.688855 ], [ 15.029297, 12.125264 ], [ 23.730469, 37.996163 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -65.214844, -19.062118 ], [ -58.359375, -34.597042 ], [ -56.162109, -34.885931 ], [ 18.105469, 59.355596 ], [ 4.921875, 52.321911 ], [ 2.373047, 48.864715 ], [ 6.152344, 46.195042 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.810547, 59.888937 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 7.470703, 43.707594 ], [ 13.447266, 52.536273 ], [ 16.347656, 48.166085 ], [ 15.996094, 45.767523 ], [ 12.480469, 41.902277 ], [ 19.072266, 47.457809 ], [ 20.478516, 44.777936 ], [ 21.181641, 42.682435 ], [ 24.785156, 59.400365 ], [ 25.312500, 54.673831 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 23.378906, 42.682435 ], [ 28.916016, 46.980252 ], [ 44.824219, 41.705729 ], [ 10.195312, 36.809285 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 33.398438, 35.173808 ], [ 35.507812, 33.870416 ], [ 44.560547, 40.178873 ], [ 35.947266, 31.952162 ], [ 31.640625, 4.828260 ], [ 44.208984, 15.368950 ], [ 38.759766, 9.015302 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 2.109375, 13.496473 ], [ 2.548828, 6.402648 ], [ 7.558594, 9.102097 ], [ 8.789062, 3.688855 ], [ 11.513672, 3.864255 ], [ 23.730469, 37.996163 ], [ 31.289062, 30.069094 ], [ 35.507812, 33.870416 ], [ 44.384766, 33.358062 ], [ 35.947266, 31.952162 ], [ 32.607422, 0.263671 ], [ 44.208984, 15.368950 ], [ 44.121094, 9.535749 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 69.345703, 41.310824 ], [ 87.626953, 43.771094 ], [ 47.988281, 29.382175 ], [ 50.625000, 26.194877 ], [ 54.404297, 24.447150 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 69.345703, 41.310824 ], [ 49.921875, 40.380028 ], [ 47.988281, 29.382175 ], [ 51.591797, 25.244696 ], [ 54.404297, 24.447150 ], [ 45.351562, 2.021065 ], [ 69.169922, 34.524661 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 58.623047, 23.563987 ], [ 69.169922, 34.524661 ], [ 77.255859, 28.613459 ], [ 88.330078, 22.512557 ], [ 77.607422, 12.983148 ], [ 79.980469, 6.839170 ], [ 96.152344, 16.804541 ], [ 102.656250, 17.978733 ], [ 101.689453, 3.162456 ], [ 103.886719, 1.230374 ], [ 121.464844, 31.203405 ], [ 125.771484, 39.027719 ], [ 121.025391, 14.604847 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 85.341797, 27.683528 ], [ 88.330078, 22.512557 ], [ 73.564453, 4.127285 ], [ 79.980469, 6.839170 ], [ 104.062500, 30.675715 ], [ 96.152344, 16.804541 ], [ 105.908203, 21.043491 ], [ 101.689453, 3.162456 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 116.367188, 39.909736 ], [ 121.464844, 31.203405 ], [ 127.001953, 37.579413 ], [ 121.025391, 14.604847 ], [ 139.746094, 35.675147 ], [ 173.056641, 1.318243 ], [ -187.031250, 1.318243 ], [ 15.292969, -4.390229 ], [ 18.457031, -33.943360 ], [ 29.355469, -3.425692 ], [ 36.826172, -1.318243 ], [ 39.287109, -6.839170 ], [ 25.927734, -24.686952 ], [ 26.279297, -29.152161 ], [ 31.113281, -26.352498 ], [ 32.607422, -25.958045 ] ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 134.648438, 7.449624 ], [ 139.746094, 35.675147 ], [ 171.386719, 7.100893 ], [ 15.292969, -4.390229 ], [ 29.355469, -3.425692 ], [ 31.025391, -17.811456 ], [ 39.287109, -6.839170 ], [ 43.242188, -11.695273 ], [ 26.279297, -29.152161 ], [ 28.212891, -25.720735 ], [ 32.607422, -25.958045 ], [ 47.548828, -18.895893 ], [ 159.960938, -9.449062 ], [ 179.208984, -8.581021 ], [ -180.791016, -8.581021 ] ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, -22.593726 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 57.480469, -20.220966 ], [ 151.171875, -33.943360 ], [ 159.960938, -9.449062 ], [ 178.505859, -18.145852 ], [ -181.582031, -18.145852 ] ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.857507 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.273438, -41.310824 ] ] } } ] } ] } diff --git a/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json b/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json index 34ef51cbd..ae76aa05e 100644 --- a/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json +++ b/tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json @@ -9,7 +9,7 @@ "maxzoom": "1", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z1_-M10000_--drop-smallest-as-needed.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":145,\"dropped_as_needed\":76,\"tile_size_desired\":33283},{\"dropped_as_needed\":206,\"tile_size_desired\":44899}]", +"strategies": "[{\"dropped_by_rate\":145,\"dropped_as_needed\":76,\"tile_size_desired\":34115},{\"dropped_as_needed\":206,\"tile_size_desired\":44899}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,7 +17,7 @@ { "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.283203, 25.641526 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.673828, 45.398450 ] } } , { "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.079732 ] } } , @@ -25,37 +25,37 @@ , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.107422, 5.790897 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } -, { "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } , +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ -175.166016, -21.125498 ], [ 184.833984, -21.125498 ] ] } } +, { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.263671 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.214844, -19.062118 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.810547, 59.888937 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.214844, -19.062118 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.960938, 60.152442 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "รœrรผmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "รœrรผmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.626953, 43.771094 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.623047, 23.563987 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.496473 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.439453, 23.725012 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.021065 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.648438, 7.449624 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.683528 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.062500, 30.675715 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, -22.593726 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.439453, 34.741612 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.480469, -20.220966 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.857507 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.581021 ] } } , -{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826 }, "geometry": { "type": "Point", "coordinates": [ 151.171875, -33.943360 ] } } , { "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "MultiPoint", "coordinates": [ [ 174.814453, -41.310824 ], [ -185.273438, -41.310824 ] ] } } ] } diff --git a/tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json b/tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json new file mode 100644 index 000000000..f9aa01a1b --- /dev/null +++ b/tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json @@ -0,0 +1,1130 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-175.220564,-41.299973,179.216647,64.150023", +"bounds": "-175.220564,-41.299973,179.216647,64.150023", +"center": "-157.500000,64.150023,3", +"description": "tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json.check.mbtiles -z20 -r1 --generate-variable-depth-tile-pyramid --limit-tile-feature-count 50 tests/ne_110m_populated_places/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"ADM0CAP\":\"Number\",\"ADM0NAME\":\"String\",\"ADM0_A3\":\"String\",\"ADM1NAME\":\"String\",\"ADMIN1_COD\":\"Number\",\"CAPALT\":\"Number\",\"CAPIN\":\"String\",\"CHANGED\":\"Number\",\"CHECKME\":\"Number\",\"CITYALT\":\"String\",\"COMPARE\":\"Number\",\"DIFFASCII\":\"Number\",\"DIFFNOTE\":\"String\",\"ELEVATION\":\"Number\",\"FEATURECLA\":\"String\",\"FEATURE_CL\":\"String\",\"FEATURE_CO\":\"String\",\"GEONAMEID\":\"Number\",\"GEONAMESNO\":\"String\",\"GN_ASCII\":\"String\",\"GN_POP\":\"Number\",\"GTOPO30\":\"Number\",\"ISO_A2\":\"String\",\"LABELRANK\":\"Number\",\"LATITUDE\":\"Number\",\"LONGITUDE\":\"Number\",\"LS_MATCH\":\"Number\",\"LS_NAME\":\"String\",\"MAX_AREAKM\":\"Number\",\"MAX_AREAMI\":\"Number\",\"MAX_BBXMAX\":\"Number\",\"MAX_BBXMIN\":\"Number\",\"MAX_BBYMAX\":\"Number\",\"MAX_BBYMIN\":\"Number\",\"MAX_NATSCA\":\"Number\",\"MAX_PERKM\":\"Number\",\"MAX_PERMI\":\"Number\",\"MAX_POP10\":\"Number\",\"MAX_POP20\":\"Number\",\"MAX_POP300\":\"Number\",\"MAX_POP310\":\"Number\",\"MAX_POP50\":\"Number\",\"MEAN_BBXC\":\"Number\",\"MEAN_BBYC\":\"Number\",\"MEGACITY\":\"Number\",\"MEGANAME\":\"String\",\"MIN_AREAKM\":\"Number\",\"MIN_AREAMI\":\"Number\",\"MIN_BBXMAX\":\"Number\",\"MIN_BBXMIN\":\"Number\",\"MIN_BBYMAX\":\"Number\",\"MIN_BBYMIN\":\"Number\",\"MIN_PERKM\":\"Number\",\"MIN_PERMI\":\"Number\",\"NAME\":\"String\",\"NAMEALT\":\"String\",\"NAMEASCII\":\"String\",\"NAMEDIFF\":\"Number\",\"NAMEPAR\":\"String\",\"NATSCALE\":\"Number\",\"POP1950\":\"Number\",\"POP1955\":\"Number\",\"POP1960\":\"Number\",\"POP1965\":\"Number\",\"POP1970\":\"Number\",\"POP1975\":\"Number\",\"POP1980\":\"Number\",\"POP1985\":\"Number\",\"POP1990\":\"Number\",\"POP1995\":\"Number\",\"POP2000\":\"Number\",\"POP2005\":\"Number\",\"POP2010\":\"Number\",\"POP2015\":\"Number\",\"POP2020\":\"Number\",\"POP2025\":\"Number\",\"POP2050\":\"Number\",\"POP_MAX\":\"Number\",\"POP_MIN\":\"Number\",\"POP_OTHER\":\"Number\",\"RANK_MAX\":\"Number\",\"RANK_MIN\":\"Number\",\"SCALERANK\":\"Number\",\"SOV0NAME\":\"String\",\"SOV_A3\":\"String\",\"TIMEZONE\":\"String\",\"UN_ADM0\":\"String\",\"UN_FID\":\"Number\",\"UN_LAT\":\"Number\",\"UN_LONG\":\"Number\",\"WORLDCITY\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":91,\"attributes\":[{\"attribute\":\"ADM0CAP\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"ADM0NAME\",\"count\":198,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\":\"ADM0_A3\",\"count\":198,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\":\"ADM1NAME\",\"count\":204,\"type\":\"string\",\"values\":[\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunciรณn\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavskรฝ\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrรซs\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazรกn\",\"Gauteng\",\"Genรจve\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\":\"ADMIN1_COD\",\"count\":53,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\":0,\"max\":82},{\"attribute\":\"CAPALT\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"CAPIN\",\"count\":20,\"type\":\"string\",\"values\":[\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\":\"CHANGED\",\"count\":7,\"type\":\"number\",\"values\":[0,1,20,3,4,40,5],\"min\":0,\"max\":40},{\"attribute\":\"CHECKME\",\"count\":2,\"type\":\"number\",\"values\":[0,5],\"min\":0,\"max\":5},{\"attribute\":\"CITYALT\",\"count\":53,\"type\":\"string\",\"values\":[\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\":\"COMPARE\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFASCII\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFNOTE\",\"count\":12,\"type\":\"string\",\"values\":[\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\":\"ELEVATION\",\"count\":19,\"type\":\"number\",\"values\":[0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\":0,\"max\":2320},{\"attribute\":\"FEATURECLA\",\"count\":6,\"type\":\"string\",\"values\":[\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\":\"FEATURE_CL\",\"count\":1,\"type\":\"string\",\"values\":[\"P\"]},{\"attribute\":\"FEATURE_CO\",\"count\":4,\"type\":\"string\",\"values\":[\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\":\"GEONAMEID\",\"count\":242,\"type\":\"number\",\"values\":[-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\":-1,\"max\":6942553},{\"attribute\":\"GEONAMESNO\",\"count\":8,\"type\":\"string\",\"values\":[\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\":\"GN_ASCII\",\"count\":239,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\":\"GN_POP\",\"count\":236,\"type\":\"number\",\"values\":[0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\":0,\"max\":14608512},{\"attribute\":\"GTOPO30\",\"count\":166,\"type\":\"number\",\"values\":[-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\":-9999,\"max\":3829},{\"attribute\":\"ISO_A2\",\"count\":196,\"type\":\"string\",\"values\":[\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\":\"LABELRANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,5,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"LATITUDE\",\"count\":242,\"type\":\"number\",\"values\":[-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\":-41.299974,\"max\":64.150024},{\"attribute\":\"LONGITUDE\",\"count\":243,\"type\":\"number\",\"values\":[-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\":-175.220564,\"max\":179.216647},{\"attribute\":\"LS_MATCH\",\"count\":3,\"type\":\"number\",\"values\":[0,1,2],\"min\":0,\"max\":2},{\"attribute\":\"LS_NAME\",\"count\":242,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\":\"MAX_AREAKM\",\"count\":212,\"type\":\"number\",\"values\":[0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\":0,\"max\":186559},{\"attribute\":\"MAX_AREAMI\",\"count\":181,\"type\":\"number\",\"values\":[0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\":0,\"max\":72030},{\"attribute\":\"MAX_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MAX_BBXMIN\",\"count\":241,\"type\":\"number\",\"values\":[-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MAX_BBYMAX\",\"count\":239,\"type\":\"number\",\"values\":[-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MAX_BBYMIN\",\"count\":240,\"type\":\"number\",\"values\":[-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MAX_NATSCA\",\"count\":5,\"type\":\"number\",\"values\":[0,100,20,300,50],\"min\":0,\"max\":300},{\"attribute\":\"MAX_PERKM\",\"count\":198,\"type\":\"number\",\"values\":[0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\":0,\"max\":130296},{\"attribute\":\"MAX_PERMI\",\"count\":189,\"type\":\"number\",\"values\":[0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\":0,\"max\":80962},{\"attribute\":\"MAX_POP10\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\":0,\"max\":16172884},{\"attribute\":\"MAX_POP20\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\":0,\"max\":24218878},{\"attribute\":\"MAX_POP300\",\"count\":219,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\":0,\"max\":87652060},{\"attribute\":\"MAX_POP310\",\"count\":45,\"type\":\"number\",\"values\":[0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\":0,\"max\":224908923},{\"attribute\":\"MAX_POP50\",\"count\":238,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\":0,\"max\":53845691},{\"attribute\":\"MEAN_BBXC\",\"count\":242,\"type\":\"number\",\"values\":[-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\":-175.206798,\"max\":178.472885},{\"attribute\":\"MEAN_BBYC\",\"count\":242,\"type\":\"number\",\"values\":[-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\":-41.285539,\"max\":64.116125},{\"attribute\":\"MEGACITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"MEGANAME\",\"count\":145,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunciรณn\",\"Athรญnai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotรก\",\"Brasรญlia\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de Mรฉxico\",\"Ciudad de Panamรก (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaรฏr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hร  Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"Kรธbenhavn\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomรฉ\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djamรฉna\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\":\"MIN_AREAKM\",\"count\":200,\"type\":\"number\",\"values\":[0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\":0,\"max\":5912},{\"attribute\":\"MIN_AREAMI\",\"count\":166,\"type\":\"number\",\"values\":[0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\":0,\"max\":2283},{\"attribute\":\"MIN_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MIN_BBXMIN\",\"count\":238,\"type\":\"number\",\"values\":[-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MIN_BBYMAX\",\"count\":241,\"type\":\"number\",\"values\":[-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MIN_BBYMIN\",\"count\":237,\"type\":\"number\",\"values\":[-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MIN_PERKM\",\"count\":192,\"type\":\"number\",\"values\":[0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\":0,\"max\":2296},{\"attribute\":\"MIN_PERMI\",\"count\":181,\"type\":\"number\",\"values\":[0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\":0,\"max\":1427},{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEALT\",\"count\":43,\"type\":\"string\",\"values\":[\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunciรณn\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotรก\",\"Brasรญlia\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de Mรฉxico\",\"Ciudad de Panamรก|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaรฏr\",\"Hร  Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomรฉ\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djamรฉna\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pรฉnh\",\"San Francisco-Oakland\",\"San Josรฉ\",\"Sana'a'\",\"Sao Paulo|Sรฃo Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaรญso\",\"Washington D.C.\",\"Yangon\",\"Yaoundรฉ\",\"รœrรผmqi|Wulumqi\"]},{\"attribute\":\"NAMEASCII\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEDIFF\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"NAMEPAR\",\"count\":12,\"type\":\"string\",\"values\":[\"Athรญnai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\":\"NATSCALE\",\"count\":8,\"type\":\"number\",\"values\":[10,110,20,200,30,300,50,600],\"min\":10,\"max\":600},{\"attribute\":\"POP1950\",\"count\":135,\"type\":\"number\",\"values\":[0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\":0,\"max\":12338},{\"attribute\":\"POP1955\",\"count\":139,\"type\":\"number\",\"values\":[0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\":0,\"max\":13713},{\"attribute\":\"POP1960\",\"count\":141,\"type\":\"number\",\"values\":[0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\":0,\"max\":16679},{\"attribute\":\"POP1965\",\"count\":143,\"type\":\"number\",\"values\":[0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\":0,\"max\":20284},{\"attribute\":\"POP1970\",\"count\":138,\"type\":\"number\",\"values\":[0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\":0,\"max\":23298},{\"attribute\":\"POP1975\",\"count\":142,\"type\":\"number\",\"values\":[0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\":0,\"max\":26615},{\"attribute\":\"POP1980\",\"count\":143,\"type\":\"number\",\"values\":[0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\":0,\"max\":28549},{\"attribute\":\"POP1985\",\"count\":144,\"type\":\"number\",\"values\":[0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\":0,\"max\":30304},{\"attribute\":\"POP1990\",\"count\":144,\"type\":\"number\",\"values\":[0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\":0,\"max\":32530},{\"attribute\":\"POP1995\",\"count\":144,\"type\":\"number\",\"values\":[0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\":0,\"max\":33587},{\"attribute\":\"POP2000\",\"count\":141,\"type\":\"number\",\"values\":[0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\":0,\"max\":34450},{\"attribute\":\"POP2005\",\"count\":143,\"type\":\"number\",\"values\":[0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\":0,\"max\":35327},{\"attribute\":\"POP2010\",\"count\":143,\"type\":\"number\",\"values\":[0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\":0,\"max\":35676},{\"attribute\":\"POP2015\",\"count\":144,\"type\":\"number\",\"values\":[0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\":0,\"max\":36094},{\"attribute\":\"POP2020\",\"count\":143,\"type\":\"number\",\"values\":[0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\":0,\"max\":36371},{\"attribute\":\"POP2025\",\"count\":144,\"type\":\"number\",\"values\":[0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\":0,\"max\":36399},{\"attribute\":\"POP2050\",\"count\":143,\"type\":\"number\",\"values\":[0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\":0,\"max\":36400},{\"attribute\":\"POP_MAX\",\"count\":240,\"type\":\"number\",\"values\":[10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\":500,\"max\":35676000},{\"attribute\":\"POP_MIN\",\"count\":243,\"type\":\"number\",\"values\":[10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\":200,\"max\":14608512},{\"attribute\":\"POP_OTHER\",\"count\":218,\"type\":\"number\",\"values\":[0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\":0,\"max\":16803572},{\"attribute\":\"RANK_MAX\",\"count\":12,\"type\":\"number\",\"values\":[10,11,12,13,14,2,4,5,6,7,8,9],\"min\":2,\"max\":14},{\"attribute\":\"RANK_MIN\",\"count\":14,\"type\":\"number\",\"values\":[1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\":1,\"max\":14},{\"attribute\":\"SCALERANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,4,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"SOV0NAME\",\"count\":197,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\":\"SOV_A3\",\"count\":197,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\":\"TIMEZONE\",\"count\":187,\"type\":\"string\",\"values\":[\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\":\"UN_ADM0\",\"count\":116,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Cรดte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\":\"UN_FID\",\"count\":145,\"type\":\"number\",\"values\":[0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\":0,\"max\":589},{\"attribute\":\"UN_LAT\",\"count\":145,\"type\":\"number\",\"values\":[-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\":-37.85,\"max\":60.19},{\"attribute\":\"UN_LONG\",\"count\":144,\"type\":\"number\",\"values\":[-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\":-122.96,\"max\":174.76},{\"attribute\":\"WORLDCITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1}]}]}}", +"maxzoom": "3", +"minzoom": "0", +"name": "tests/ne_110m_populated_places/out/-z20_-r1_--generate-variable-depth-tile-pyramid_--limit-tile-feature-count_50.json.check.mbtiles", +"strategies": "[{},{\"truncated_zooms\":2},{\"truncated_zooms\":2},{\"truncated_zooms\":8},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{},{}]", +"tippecanoe_decisions": "{\"basezoom\":20,\"droprate\":1,\"retain_points_multiplier\":1}", +"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": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -105.029297, 39.774769 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.371094, 25.641526 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049 }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.840644 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.714844, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.453125, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.673828, 45.398450 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.375000, 33.797409 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.160563 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.224758 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.187500, 14.093957 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193 }, "geometry": { "type": "Point", "coordinates": [ -86.308594, 12.125264 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.111328, 9.968851 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamรก|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamรก (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.928487 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -76.728516, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotรก", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotรก", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.565474 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.753906, 17.308688 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.875000, 17.140790 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.347656, 15.284185 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.699219, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -59.589844, 13.068777 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.884766, 10.487812 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -58.183594, 6.839170 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.878332 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.972656, 64.168107 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.087891, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -23.554688, 14.944785 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.646484, 33.578015 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salรฉ - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222 }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.689881 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.062312 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 536870912 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.220564, -21.138512 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -171.738641, -13.841545 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.501996, -0.213042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600 }, "geometry": { "type": "Point", "coordinates": [ -77.052007, -12.046066 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178 }, "geometry": { "type": "Point", "coordinates": [ -68.151931, -16.496027 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.622959, -33.045818 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Santiago", "DIFFASCII": 0, "NAMEASCII": "Santiago", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, admin", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Regiรณn Metropolitana de Santiago", "ISO_A2": "CL", "LATITUDE": -33.450014, "LONGITUDE": -70.667041, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5720000, "POP_MIN": 46611, "POP_OTHER": 3066651, "RANK_MAX": 13, "RANK_MIN": 7, "GEONAMEID": 3449741, "MEGANAME": "Santiago", "LS_NAME": "Santiago3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3540014, "MAX_POP20": 5157058, "MAX_POP50": 5157058, "MAX_POP300": 5157058, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 570, "MAX_AREAKM": 903, "MIN_AREAMI": 220, "MAX_AREAMI": 349, "MIN_PERKM": 310, "MAX_PERKM": 558, "MIN_PERMI": 193, "MAX_PERMI": 347, "MIN_BBXMIN": -70.958333, "MAX_BBXMIN": -70.8, "MIN_BBXMAX": -70.458333, "MAX_BBXMAX": -70.458333, "MIN_BBYMIN": -33.7, "MAX_BBYMIN": -33.556142, "MIN_BBYMAX": -33.175, "MAX_BBYMAX": -33.175, "MEAN_BBXC": -70.66127, "MEAN_BBYC": -33.461735, "COMPARE": 0, "GN_ASCII": "Santiago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 23, "GN_POP": 46611, "ELEVATION": 0, "GTOPO30": 441, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 17, "UN_ADM0": "Chile", "UN_LAT": 8.1, "UN_LONG": -80.96, "POP1950": 1322, "POP1955": 1618, "POP1960": 1980, "POP1965": 2294, "POP1970": 2647, "POP1975": 3138, "POP1980": 3721, "POP1985": 4201, "POP1990": 4616, "POP1995": 4964, "POP2000": 5275, "POP2005": 5599, "POP2010": 5720, "POP2015": 5879, "POP2020": 6084, "POP2025": 6224, "POP2050": 6310 }, "geometry": { "type": "Point", "coordinates": [ -70.668986, -33.448067 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -65.259515, -19.040970 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.917998, -15.781394 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.643451, -25.294457 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768 }, "geometry": { "type": "Point", "coordinates": [ -58.399477, -34.600555 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|Sรฃo Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Sรฃo Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "Sรฃo Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo" }, "geometry": { "type": "Point", "coordinates": [ -46.626965, -23.556733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520 }, "geometry": { "type": "Point", "coordinates": [ -56.172998, -34.856095 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413 }, "geometry": { "type": "Point", "coordinates": [ -43.226966, -22.923077 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.783353, -8.516651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -181.558293, -18.133015 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049 }, "geometry": { "type": "Point", "coordinates": [ -95.361328, 29.840644 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.409180, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.717773, 45.429299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.418945, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.244141, 25.799891 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.747257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.266728 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.231445, 14.093957 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.168226 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.067383, 9.925566 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamรก|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamรก (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -76.772461, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.562947 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotรก", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotรก", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.609278 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.831055, 17.098792 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.284185 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -59.633789, 13.111580 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.487812 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -58.183594, 6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.928711, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.902322 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.614619 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salรฉ - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222 }, "geometry": { "type": "Point", "coordinates": [ -6.855469, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225 }, "geometry": { "type": "Point", "coordinates": [ -17.490234, 14.732386 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.996094, 18.104087 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 536870912 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.733325, 0.333402 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.457965, 0.385388 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.581377, 0.318604 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364731, 2.068627 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.698037, 3.168611 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 101.701946, 2.914019 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.853874, 1.294979 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 173.017570, 1.338187 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150 }, "geometry": { "type": "Point", "coordinates": [ 15.282743, -4.257239 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762 }, "geometry": { "type": "Point", "coordinates": [ 15.313026, -4.327778 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272, "MAX_POP20": 1951272, "MAX_POP50": 1951272, "MAX_POP300": 1951272, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 237, "MAX_AREAKM": 237, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 2776168, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138, "POP1955": 174, "POP1960": 219, "POP1965": 315, "POP1970": 459, "POP1975": 665, "POP1980": 962, "POP1985": 1295, "POP1990": 1568, "POP1995": 1953, "POP2000": 2591, "POP2005": 3533, "POP2010": 4000, "POP2015": 4775, "POP2020": 6036, "POP2025": 7153, "POP2050": 8236 }, "geometry": { "type": "Point", "coordinates": [ 13.232481, -8.836340 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.083546, -22.570006 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744 }, "geometry": { "type": "Point", "coordinates": [ 18.433042, -33.918065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715 }, "geometry": { "type": "Point", "coordinates": [ 30.058585, -1.951644 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 29.360006, -3.376087 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566, "MAX_POP20": 1289566, "MAX_POP50": 1289566, "MAX_POP300": 1289566, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 183, "MAX_AREAKM": 183, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 122, "MAX_PERKM": 122, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1267440, "ELEVATION": 0, "GTOPO30": 1277, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31, "POP1955": 53, "POP1960": 91, "POP1965": 160, "POP1970": 278, "POP1975": 385, "POP1980": 533, "POP1985": 636, "POP1990": 757, "POP1995": 902, "POP2000": 1073, "POP2005": 1261, "POP2010": 1328, "POP2015": 1421, "POP2020": 1587, "POP2025": 1797, "POP2050": 2047 }, "geometry": { "type": "Point", "coordinates": [ 28.281381, -15.414698 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247 }, "geometry": { "type": "Point", "coordinates": [ 31.042763, -17.815843 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871 }, "geometry": { "type": "Point", "coordinates": [ 36.814711, -1.281400 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Offical capital", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269, "MAX_POP20": 218269, "MAX_POP50": 218269, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 55, "MAX_AREAKM": 55, "MIN_AREAMI": 21, "MAX_AREAMI": 21, "MIN_PERKM": 61, "MAX_PERKM": 61, "MIN_PERMI": 38, "MAX_PERMI": 38, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 180541, "ELEVATION": 0, "GTOPO30": 1129, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.750003, -6.183306 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688 }, "geometry": { "type": "Point", "coordinates": [ 39.266395, -6.798066 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.783301, -13.983295 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.240244, -11.704157 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.911947, -24.646313 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -26.170044999999999, "LONGITUDE": 28.03001, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168, "MAX_POP20": 5413549, "MAX_POP50": 5413549, "MAX_POP300": 5413549, "MAX_POP310": 5451385, "MAX_NATSCA": 300, "MIN_AREAKM": 1124, "MAX_AREAKM": 1614, "MIN_AREAMI": 434, "MAX_AREAMI": 623, "MIN_PERKM": 497, "MAX_PERKM": 828, "MIN_PERMI": 309, "MAX_PERMI": 514, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6, "GN_POP": 2026469, "ELEVATION": 0, "GTOPO30": 1775, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28, "POP1950": 900, "POP1955": 1016, "POP1960": 1147, "POP1965": 1288, "POP1970": 1444, "POP1975": 1547, "POP1980": 1656, "POP1985": 1773, "POP1990": 1898, "POP1995": 2265, "POP2000": 2732, "POP2005": 3258, "POP2010": 3435, "POP2015": 3618, "POP2020": 3785, "POP2025": 3916, "POP2050": 4041 }, "geometry": { "type": "Point", "coordinates": [ 28.028063, -26.168098 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 26.229912, -29.119993 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324, "MAX_POP20": 361324, "MAX_POP50": 361324, "MAX_POP300": 361324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 141, "MIN_AREAMI": 54, "MAX_AREAMI": 54, "MIN_PERKM": 177, "MAX_PERKM": 177, "MIN_PERMI": 110, "MAX_PERMI": 110, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 118355, "ELEVATION": 0, "GTOPO30": 1482, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 27.483273, -29.316674 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604 }, "geometry": { "type": "Point", "coordinates": [ 28.227483, -25.704974 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.133334, -26.316650 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative and", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782, "MAX_POP20": 9782, "MAX_POP50": 9782, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4557, "ELEVATION": 0, "GTOPO30": 651, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.199997, -26.466667 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560 }, "geometry": { "type": "Point", "coordinates": [ 32.587217, -25.953331 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.449989, -4.616631 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118 }, "geometry": { "type": "Point", "coordinates": [ 47.514678, -18.914691 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.499993, -20.166638 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.827491, -6.172471 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.579455, -8.559388 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 147.192503, -9.464707 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.973070, -37.818085 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826 }, "geometry": { "type": "Point", "coordinates": [ 151.183233, -33.918065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032, "MAX_POP20": 244896, "MAX_POP50": 244896, "MAX_POP300": 244896, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 226, "MAX_AREAKM": 251, "MIN_AREAMI": 87, "MAX_AREAMI": 97, "MIN_PERKM": 175, "MAX_PERKM": 202, "MIN_PERMI": 109, "MAX_PERMI": 126, "MIN_BBXMIN": 149, "MAX_BBXMIN": 149, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 327700, "ELEVATION": 0, "GTOPO30": 609, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 149.129026, -35.283028 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 159.949765, -9.437994 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 168.316640, -17.733350 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.216647, -8.516651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 178.441707, -18.133015 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475 }, "geometry": { "type": "Point", "coordinates": [ 174.763034, -36.848067 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.783274, -41.299973 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.538086, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.572250 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 4.262695, 52.079506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.108398, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "รŽle-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ISO_A2": "AD", "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998, "MAX_POP20": 53998, "MAX_POP50": 53998, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 23, "MAX_AREAKM": 23, "MIN_AREAMI": 9, "MAX_AREAMI": 9, "MIN_PERKM": 49, "MAX_PERKM": 49, "MIN_PERMI": 31, "MAX_PERMI": 31, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52, "GN_POP": 7890, "ELEVATION": 0, "GTOPO30": 687, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 1.538086, 42.488302 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.536133, 47.129951 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.426758, 43.739352 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kรธbenhavn", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "Kรธbenhavn", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen" }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.458008, 50.092393 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.241256 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.195387 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 46.042736 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavskรฝ", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.136767 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.369141, 43.834527 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.248047, 42.455888 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrรซs", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.343825 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 42.000325 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.916992, 60.174306 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.741211, 59.422728 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.673831 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883 }, "geometry": { "type": "Point", "coordinates": [ 27.553711, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236 }, "geometry": { "type": "Point", "coordinates": [ 23.334961, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.738528 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.032227, 36.774092 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.539201 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 268435456 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.123590, 49.275362 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.417168, 37.769195 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.181926, 33.991924 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985961, 39.741133 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413 }, "geometry": { "type": "Point", "coordinates": [ -100.331930, 25.671940 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049 }, "geometry": { "type": "Point", "coordinates": [ -95.341925, 29.821920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.132934, 19.444388 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528911, 14.623080 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.767072, 17.252033 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.204987, 13.711947 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.758789, 41.836828 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.431152, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.375488, 23.140360 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.908133 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.209473, 14.093957 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.947209 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamรก|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamรก (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama" }, "geometry": { "type": "Point", "coordinates": [ -79.541016, 8.971897 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -76.772461, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotรก", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotรก", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.091797, 4.609278 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.060809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.111580 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.509417 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -58.161621, 6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.923554 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.205566, 27.156920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salรฉ - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222 }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225 }, "geometry": { "type": "Point", "coordinates": [ -17.468262, 14.711135 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339, "MAX_POP20": 403339, "MAX_POP50": 403339, "MAX_POP300": 403339, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 70, "MIN_AREAMI": 27, "MAX_AREAMI": 27, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 388028, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.600586, 11.867351 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406 }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.472372 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.661778 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.921990 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 4.262695, 52.079506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "รŽle-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ISO_A2": "AD", "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998, "MAX_POP20": 53998, "MAX_POP50": 53998, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 23, "MAX_AREAKM": 23, "MIN_AREAMI": 9, "MAX_AREAMI": 9, "MIN_PERKM": 49, "MAX_PERKM": 49, "MIN_PERMI": 31, "MAX_PERMI": 31, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52, "GN_POP": 7890, "ELEVATION": 0, "GTOPO30": 687, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.504503 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 46.210250 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kรธbenhavn", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "Kรธbenhavn", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen" }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.458008, 50.078295 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavskรฝ", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.502359 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.472097 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.456543, 44.824708 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrรซs", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.423340, 42.000325 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.719238, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883 }, "geometry": { "type": "Point", "coordinates": [ 27.553711, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236 }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.112469 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.722131 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.898038 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.906849 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 268435456 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.639014, 27.472985 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.322729, 22.496915 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.914669, 47.918619 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.406633, 23.725005 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.068073, 30.671945 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461 }, "geometry": { "type": "Point", "coordinates": [ 96.116672, 19.768502 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.164731, 16.785299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok" }, "geometry": { "type": "Point", "coordinates": [ 100.514698, 13.751945 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 102.599980, 17.966692 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hร  Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thรกi Nguyรชn", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hร  Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.848068, 21.035273 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pรฉnh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pรฉnh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh" }, "geometry": { "type": "Point", "coordinates": [ 104.914688, 11.551975 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938 }, "geometry": { "type": "Point", "coordinates": [ 101.698037, 3.168611 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 101.701946, 2.914019 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.853874, 1.294979 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545 }, "geometry": { "type": "Point", "coordinates": [ 116.386339, 39.930838 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305 }, "geometry": { "type": "Point", "coordinates": [ 114.183063, 22.306926 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412 }, "geometry": { "type": "Point", "coordinates": [ 121.434558, 31.218398 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305 }, "geometry": { "type": "Point", "coordinates": [ 121.568333, 25.035833 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630 }, "geometry": { "type": "Point", "coordinates": [ 125.752744, 39.021384 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855, "MAX_POP20": 13143622, "MAX_POP50": 21387676, "MAX_POP300": 21991959, "MAX_POP310": 21991959, "MAX_NATSCA": 300, "MIN_AREAKM": 971, "MAX_AREAKM": 2718, "MIN_AREAMI": 375, "MAX_AREAMI": 1049, "MIN_PERKM": 546, "MAX_PERKM": 1901, "MIN_PERMI": 340, "MAX_PERMI": 1181, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 10349312, "ELEVATION": 0, "GTOPO30": 46, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021, "POP1955": 1553, "POP1960": 2361, "POP1965": 3452, "POP1970": 5312, "POP1975": 6808, "POP1980": 8258, "POP1985": 9547, "POP1990": 10544, "POP1995": 10256, "POP2000": 9917, "POP2005": 9825, "POP2010": 9796, "POP2015": 9762, "POP2020": 9740, "POP2025": 9738, "POP2050": 9738 }, "geometry": { "type": "Point", "coordinates": [ 126.997785, 37.568294 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 120.569942, 16.429990 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808 }, "geometry": { "type": "Point", "coordinates": [ 120.980271, 14.606104 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674, "MAX_POP20": 219674, "MAX_POP50": 219674, "MAX_POP300": 219674, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 155, "MAX_PERKM": 155, "MIN_PERMI": 96, "MAX_PERMI": 96, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 64409, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 114.933284, 4.883331 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626548, 7.487396 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.458198, 34.751981 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052, "MAX_POP20": 2520813, "MAX_POP50": 2520813, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 340, "MAX_AREAKM": 486, "MIN_AREAMI": 131, "MAX_AREAMI": 188, "MIN_PERKM": 130, "MAX_PERKM": 218, "MIN_PERMI": 81, "MAX_PERMI": 135, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22, "GN_POP": 1459640, "ELEVATION": 0, "GTOPO30": 86, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35, "UN_LONG": 135.75, "POP1950": 1002, "POP1955": 1091, "POP1960": 1165, "POP1965": 1229, "POP1970": 1298, "POP1975": 1622, "POP1980": 1701, "POP1985": 1714, "POP1990": 1760, "POP1995": 1804, "POP2000": 1806, "POP2005": 1805, "POP2010": 1805, "POP2015": 1804, "POP2020": 1804, "POP2025": 1804, "POP2050": 1804 }, "geometry": { "type": "Point", "coordinates": [ 135.748052, 35.031938 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400 }, "geometry": { "type": "Point", "coordinates": [ 139.749461, 35.686962 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.149974, 6.916643 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 171.380000, 7.103004 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 173.017570, 1.338187 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 134217728 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.528911, 14.623080 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.401895, 33.831959 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.366128, 23.133904 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272 }, "geometry": { "type": "Point", "coordinates": [ -80.226051, 25.789556 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.011364, 38.901495 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981962, 40.751924 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -77.350043, 25.083390 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -88.767072, 17.252033 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472 }, "geometry": { "type": "Point", "coordinates": [ -87.219475, 14.103990 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902 }, "geometry": { "type": "Point", "coordinates": [ -89.204987, 13.711947 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193 }, "geometry": { "type": "Point", "coordinates": [ -86.270437, 12.154962 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose" }, "geometry": { "type": "Point", "coordinates": [ -84.085997, 9.936958 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamรก|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamรก (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama" }, "geometry": { "type": "Point", "coordinates": [ -79.534983, 8.969963 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -76.767433, 17.977076 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346 }, "geometry": { "type": "Point", "coordinates": [ -72.337980, 18.542970 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885 }, "geometry": { "type": "Point", "coordinates": [ -69.902030, 18.472018 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotรก", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotรก", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota" }, "geometry": { "type": "Point", "coordinates": [ -74.085289, 4.598369 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -62.717009, 17.302030 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.850033, 17.118036 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.387012, 15.301015 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.000008, 14.001973 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.212062, 13.148278 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.741643, 12.052633 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -59.616526, 13.102002 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619 }, "geometry": { "type": "Point", "coordinates": [ -66.918983, 10.502944 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.517030, 10.651997 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -58.167028, 6.801973 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -55.167030, 5.835030 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.501996, -0.213042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 134217728 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.752000, 41.831936 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.421966, 43.701925 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.701961, 45.418642 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981962, 40.751924 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 134217728 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -23.516688, 14.916698 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.200005, 27.149982 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.146812, 38.724668 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.618313, 33.601922 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salรฉ - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222 }, "geometry": { "type": "Point", "coordinates": [ -6.836408, 34.025307 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.685297, 40.401972 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.652522, 26.119166 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225 }, "geometry": { "type": "Point", "coordinates": [ -17.475075, 14.717777 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.975340, 18.086427 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -16.591701, 13.453876 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339, "MAX_POP20": 403339, "MAX_POP50": 403339, "MAX_POP300": 403339, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 70, "MIN_AREAMI": 27, "MAX_AREAMI": 27, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 388028, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -15.598360, 11.865023 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856 }, "geometry": { "type": "Point", "coordinates": [ -13.682180, 9.533468 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406 }, "geometry": { "type": "Point", "coordinates": [ -13.236161, 8.471957 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214 }, "geometry": { "type": "Point", "coordinates": [ -8.001984, 12.651960 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.526669, 12.372261 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083 }, "geometry": { "type": "Point", "coordinates": [ -10.799660, 6.314581 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -5.275502, 6.818380 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Cรดte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031 }, "geometry": { "type": "Point", "coordinates": [ -4.041994, 5.321942 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.218661, 5.551980 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 134217728 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.950014, 64.150023 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.250851, 53.335006 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.118667, 51.501940 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935 }, "geometry": { "type": "Point", "coordinates": [ -3.685297, 40.401972 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 134217728 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.218661, 5.551980 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrรซs", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.818883, 41.327540 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102 }, "geometry": { "type": "Point", "coordinates": [ 29.008055, 41.106942 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers" }, "geometry": { "type": "Point", "coordinates": [ 3.048606, 36.765010 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 10.179678, 36.802778 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli" }, "geometry": { "type": "Point", "coordinates": [ 13.180011, 32.892500 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.514710, 35.899732 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028 }, "geometry": { "type": "Point", "coordinates": [ 2.114710, 13.518651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEALT": "Lomรฉ", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267, "MEGANAME": "Lomรฉ", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448, "MAX_POP20": 953569, "MAX_POP50": 954013, "MAX_POP300": 953569, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 343, "MAX_AREAKM": 364, "MIN_AREAMI": 133, "MAX_AREAMI": 140, "MIN_PERKM": 353, "MAX_PERKM": 360, "MIN_PERMI": 219, "MAX_PERMI": 224, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24, "GN_POP": 749700, "ELEVATION": 0, "GTOPO30": 64, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33, "POP1955": 56, "POP1960": 95, "POP1965": 138, "POP1970": 192, "POP1975": 257, "POP1980": 344, "POP1985": 466, "POP1990": 619, "POP1995": 796, "POP2000": 1023, "POP2005": 1315, "POP2010": 1452, "POP2015": 1669, "POP2020": 2038, "POP2025": 2410, "POP2050": 2791, "CITYALT": "Lome" }, "geometry": { "type": "Point", "coordinates": [ 1.220811, 6.133882 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411 }, "geometry": { "type": "Point", "coordinates": [ 2.518044, 6.401954 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453, "MAX_POP20": 457770, "MAX_POP50": 457770, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 278, "MAX_AREAKM": 319, "MIN_AREAMI": 107, "MAX_AREAMI": 123, "MIN_PERKM": 251, "MAX_PERKM": 312, "MIN_PERMI": 156, "MAX_PERMI": 194, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 234168, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 2.616625, 6.483310 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796 }, "geometry": { "type": "Point", "coordinates": [ 3.389585, 6.445207 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358 }, "geometry": { "type": "Point", "coordinates": [ 7.531382, 9.085279 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.733325, 0.333402 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 8.783277, 3.750015 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.457965, 0.385388 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djamรฉna", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djamรฉna", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.047202, 12.115042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundรฉ", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundรฉ", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.514704, 3.868646 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.558288, 4.366644 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.731375, 37.985272 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379, "MAX_POP20": 3306823, "MAX_POP50": 3306823, "MAX_POP300": 3306823, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 531, "MAX_AREAKM": 534, "MIN_AREAMI": 205, "MAX_AREAMI": 206, "MIN_PERKM": 355, "MAX_PERKM": 365, "MIN_PERMI": 221, "MAX_PERMI": 227, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68, "GN_POP": 3517182, "ELEVATION": 850, "GTOPO30": 889, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281, "POP1955": 439, "POP1960": 635, "POP1965": 954, "POP1970": 1341, "POP1975": 1709, "POP1980": 1891, "POP1985": 2213, "POP1990": 2561, "POP1995": 2842, "POP2000": 3179, "POP2005": 3572, "POP2010": 3716, "POP2015": 3908, "POP2020": 4178, "POP2025": 4403, "POP2050": 4589 }, "geometry": { "type": "Point", "coordinates": [ 32.862445, 39.929184 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 33.366634, 35.166676 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.248022, 30.051906 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa" }, "geometry": { "type": "Point", "coordinates": [ 34.768065, 32.081937 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507762, 33.873920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus" }, "geometry": { "type": "Point", "coordinates": [ 36.298050, 33.501979 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102 }, "geometry": { "type": "Point", "coordinates": [ 44.511605, 40.183096 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.391922, 33.340594 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 35.206625, 31.778407 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359 }, "geometry": { "type": "Point", "coordinates": [ 35.931354, 31.951971 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum" }, "geometry": { "type": "Point", "coordinates": [ 32.532233, 15.590024 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.580025, 4.829975 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.581377, 0.318604 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 38.933323, 15.333339 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204647, 15.356679 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 43.148001, 11.595014 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156 }, "geometry": { "type": "Point", "coordinates": [ 38.698058, 9.035256 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 44.065310, 9.560022 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364731, 2.068627 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 134217728 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.118667, 51.501940 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.748033, 59.918636 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.095388, 59.352705 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 4.269961, 52.080036 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089 }, "geometry": { "type": "Point", "coordinates": [ 4.914694, 52.351914 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.331370, 50.835262 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.130002, 49.611660 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "รŽle-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036 }, "geometry": { "type": "Point", "coordinates": [ 2.331389, 48.868638 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ISO_A2": "AD", "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998, "MAX_POP20": 53998, "MAX_POP50": 53998, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 23, "MAX_AREAKM": 23, "MIN_AREAMI": 9, "MAX_AREAMI": 9, "MIN_PERKM": 49, "MAX_PERKM": 49, "MIN_PERMI": 31, "MAX_PERMI": 31, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52, "GN_POP": 7890, "ELEVATION": 0, "GTOPO30": 687, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 1.516485, 42.500001 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.140028, 46.210007 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.466975, 46.916682 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.516669, 47.133723 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 7.406913, 43.739645 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kรธbenhavn", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "Kรธbenhavn", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen" }, "geometry": { "type": "Point", "coordinates": [ 12.561539, 55.680510 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436 }, "geometry": { "type": "Point", "coordinates": [ 13.399602, 52.523764 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague" }, "geometry": { "type": "Point", "coordinates": [ 14.464033, 50.085282 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 20.998053, 52.251946 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.364693, 48.201961 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 14.514969, 46.055288 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 15.999994, 45.800006 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.441770, 43.936095 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.453386, 41.903282 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome" }, "geometry": { "type": "Point", "coordinates": [ 12.481312, 41.897901 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavskรฝ", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 17.116980, 48.150018 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655 }, "geometry": { "type": "Point", "coordinates": [ 19.081374, 47.501952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 18.383001, 43.850022 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.266306, 42.465972 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.466044, 44.820591 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrรซs", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.818883, 41.327540 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.165984, 42.666709 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 21.433461, 42.000006 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220 }, "geometry": { "type": "Point", "coordinates": [ 24.932180, 60.177509 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.728040, 59.433877 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 24.099965, 56.950023 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 25.316635, 54.683366 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883 }, "geometry": { "type": "Point", "coordinates": [ 27.564681, 53.901923 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.514682, 50.435313 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236 }, "geometry": { "type": "Point", "coordinates": [ 23.314708, 42.685295 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest" }, "geometry": { "type": "Point", "coordinates": [ 26.098000, 44.435317 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 28.857711, 47.005023 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102 }, "geometry": { "type": "Point", "coordinates": [ 29.008055, 41.106942 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.613576, 55.754109 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788849, 41.726955 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 134217728 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102 }, "geometry": { "type": "Point", "coordinates": [ 44.511605, 40.183096 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.391922, 33.340594 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.204647, 15.356679 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.292986, 41.313647 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.860271, 40.397217 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814 }, "geometry": { "type": "Point", "coordinates": [ 51.422398, 35.673888 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.976355, 29.371663 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh" }, "geometry": { "type": "Point", "coordinates": [ 46.770795, 24.642779 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 50.583051, 26.236136 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 51.532967, 25.286556 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251, "MAX_POP20": 2244726, "MAX_POP50": 2244726, "MAX_POP300": 2244726, "MAX_POP310": 2244726, "MAX_NATSCA": 300, "MIN_AREAKM": 187, "MAX_AREAKM": 407, "MIN_AREAMI": 72, "MAX_AREAMI": 157, "MIN_PERKM": 158, "MAX_PERKM": 278, "MIN_PERMI": 98, "MAX_PERMI": 173, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 1137347, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20, "POP1955": 28, "POP1960": 40, "POP1965": 51, "POP1970": 80, "POP1975": 167, "POP1980": 254, "POP1985": 345, "POP1990": 473, "POP1995": 650, "POP2000": 938, "POP2005": 1272, "POP2010": 1379, "POP2015": 1516, "POP2020": 1709, "POP2025": 1894, "POP2050": 2077, "CITYALT": "Dubai" }, "geometry": { "type": "Point", "coordinates": [ 55.278028, 25.231942 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 54.366593, 24.466683 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.383299, 37.949994 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 58.593312, 23.613324 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.364731, 2.068627 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 68.773879, 38.560035 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175 }, "geometry": { "type": "Point", "coordinates": [ 69.181314, 34.518636 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320 }, "geometry": { "type": "Point", "coordinates": [ 73.164688, 33.701941 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 77.199980, 28.600023 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907 }, "geometry": { "type": "Point", "coordinates": [ 85.314696, 27.718637 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.639014, 27.472985 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.322729, 22.496915 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908, "MAX_POP20": 20149761, "MAX_POP50": 20149761, "MAX_POP300": 20149761, "MAX_POP310": 20149761, "MAX_NATSCA": 300, "MIN_AREAKM": 442, "MAX_AREAKM": 1479, "MIN_AREAMI": 171, "MAX_AREAMI": 571, "MIN_PERKM": 244, "MAX_PERKM": 1021, "MIN_PERMI": 152, "MAX_PERMI": 634, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16, "GN_POP": 12691836, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857, "POP1955": 3432, "POP1960": 4060, "POP1965": 4854, "POP1970": 5811, "POP1975": 7082, "POP1980": 8658, "POP1985": 10341, "POP1990": 12308, "POP1995": 14111, "POP2000": 16086, "POP2005": 18202, "POP2010": 18978, "POP2015": 20072, "POP2020": 21946, "POP2025": 24051, "POP2050": 26385, "CITYALT": "Bombay" }, "geometry": { "type": "Point", "coordinates": [ 72.855043, 19.018936 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719 }, "geometry": { "type": "Point", "coordinates": [ 77.558063, 12.971940 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 73.499947, 4.166708 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.857750, 6.931965 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 79.949993, 6.900003 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.406633, 23.725005 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 134217728 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.788849, 41.726955 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 71.427774, 51.181125 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.292986, 41.313647 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212, "MAX_POP20": 804212, "MAX_POP50": 804212, "MAX_POP300": 804212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 245, "MAX_AREAKM": 245, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 190, "MAX_PERKM": 190, "MIN_PERMI": 118, "MAX_PERMI": 118, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43, "MAX_BBYMAX": 43, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 900000, "ELEVATION": 0, "GTOPO30": 772, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150, "POP1955": 186, "POP1960": 236, "POP1965": 322, "POP1970": 433, "POP1975": 485, "POP1980": 538, "POP1985": 583, "POP1990": 635, "POP1995": 703, "POP2000": 770, "POP2005": 817, "POP2010": 837, "POP2015": 869, "POP2020": 934, "POP2025": 1011, "POP2050": 1096 }, "geometry": { "type": "Point", "coordinates": [ 74.583258, 42.875025 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "รœrรผmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "รœrรผmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.573059, 43.806958 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187 }, "geometry": { "type": "Point", "coordinates": [ 49.860271, 40.397217 ] } } +] } +] } +] } diff --git a/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json b/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json new file mode 100644 index 000000000..0772f2370 --- /dev/null +++ b/tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json @@ -0,0 +1,1390 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-175.220564,-41.299973,179.216647,64.150023", +"bounds": "-175.220564,-41.299973,179.216647,64.150023", +"center": "22.500000,53.746579,3", +"description": "tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles -z3 -b0 --accumulate-numeric-attributes numnum --set-attribute accum:1 --set-attribute accum2:1 --accumulate-attribute accum:sum --retain-points-multiplier 3 tests/ne_110m_populated_places/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"ADM0CAP\":\"Number\",\"ADM0NAME\":\"String\",\"ADM0_A3\":\"String\",\"ADM1NAME\":\"String\",\"ADMIN1_COD\":\"Number\",\"CAPALT\":\"Number\",\"CAPIN\":\"String\",\"CHANGED\":\"Number\",\"CHECKME\":\"Number\",\"CITYALT\":\"String\",\"COMPARE\":\"Number\",\"DIFFASCII\":\"Number\",\"DIFFNOTE\":\"String\",\"ELEVATION\":\"Number\",\"FEATURECLA\":\"String\",\"FEATURE_CL\":\"String\",\"FEATURE_CO\":\"String\",\"GEONAMEID\":\"Number\",\"GEONAMESNO\":\"String\",\"GN_ASCII\":\"String\",\"GN_POP\":\"Number\",\"GTOPO30\":\"Number\",\"ISO_A2\":\"String\",\"LABELRANK\":\"Number\",\"LATITUDE\":\"Number\",\"LONGITUDE\":\"Number\",\"LS_MATCH\":\"Number\",\"LS_NAME\":\"String\",\"MAX_AREAKM\":\"Number\",\"MAX_AREAMI\":\"Number\",\"MAX_BBXMAX\":\"Number\",\"MAX_BBXMIN\":\"Number\",\"MAX_BBYMAX\":\"Number\",\"MAX_BBYMIN\":\"Number\",\"MAX_NATSCA\":\"Number\",\"MAX_PERKM\":\"Number\",\"MAX_PERMI\":\"Number\",\"MAX_POP10\":\"Number\",\"MAX_POP20\":\"Number\",\"MAX_POP300\":\"Number\",\"MAX_POP310\":\"Number\",\"MAX_POP50\":\"Number\",\"MEAN_BBXC\":\"Number\",\"MEAN_BBYC\":\"Number\",\"MEGACITY\":\"Number\",\"MEGANAME\":\"String\",\"MIN_AREAKM\":\"Number\",\"MIN_AREAMI\":\"Number\",\"MIN_BBXMAX\":\"Number\",\"MIN_BBXMIN\":\"Number\",\"MIN_BBYMAX\":\"Number\",\"MIN_BBYMIN\":\"Number\",\"MIN_PERKM\":\"Number\",\"MIN_PERMI\":\"Number\",\"NAME\":\"String\",\"NAMEALT\":\"String\",\"NAMEASCII\":\"String\",\"NAMEDIFF\":\"Number\",\"NAMEPAR\":\"String\",\"NATSCALE\":\"Number\",\"POP1950\":\"Number\",\"POP1955\":\"Number\",\"POP1960\":\"Number\",\"POP1965\":\"Number\",\"POP1970\":\"Number\",\"POP1975\":\"Number\",\"POP1980\":\"Number\",\"POP1985\":\"Number\",\"POP1990\":\"Number\",\"POP1995\":\"Number\",\"POP2000\":\"Number\",\"POP2005\":\"Number\",\"POP2010\":\"Number\",\"POP2015\":\"Number\",\"POP2020\":\"Number\",\"POP2025\":\"Number\",\"POP2050\":\"Number\",\"POP_MAX\":\"Number\",\"POP_MIN\":\"Number\",\"POP_OTHER\":\"Number\",\"RANK_MAX\":\"Number\",\"RANK_MIN\":\"Number\",\"SCALERANK\":\"Number\",\"SOV0NAME\":\"String\",\"SOV_A3\":\"String\",\"TIMEZONE\":\"String\",\"UN_ADM0\":\"String\",\"UN_FID\":\"Number\",\"UN_LAT\":\"Number\",\"UN_LONG\":\"Number\",\"WORLDCITY\":\"Number\",\"accum\":\"Number\",\"accum2\":\"Number\",\"numnum:count:ADM0CAP\":\"Number\",\"numnum:count:ADMIN1_COD\":\"Number\",\"numnum:count:CAPALT\":\"Number\",\"numnum:count:CHANGED\":\"Number\",\"numnum:count:CHECKME\":\"Number\",\"numnum:count:COMPARE\":\"Number\",\"numnum:count:DIFFASCII\":\"Number\",\"numnum:count:ELEVATION\":\"Number\",\"numnum:count:GEONAMEID\":\"Number\",\"numnum:count:GN_POP\":\"Number\",\"numnum:count:GTOPO30\":\"Number\",\"numnum:count:LABELRANK\":\"Number\",\"numnum:count:LATITUDE\":\"Number\",\"numnum:count:LONGITUDE\":\"Number\",\"numnum:count:LS_MATCH\":\"Number\",\"numnum:count:MAX_AREAKM\":\"Number\",\"numnum:count:MAX_AREAMI\":\"Number\",\"numnum:count:MAX_BBXMAX\":\"Number\",\"numnum:count:MAX_BBXMIN\":\"Number\",\"numnum:count:MAX_BBYMAX\":\"Number\",\"numnum:count:MAX_BBYMIN\":\"Number\",\"numnum:count:MAX_NATSCA\":\"Number\",\"numnum:count:MAX_PERKM\":\"Number\",\"numnum:count:MAX_PERMI\":\"Number\",\"numnum:count:MAX_POP10\":\"Number\",\"numnum:count:MAX_POP20\":\"Number\",\"numnum:count:MAX_POP300\":\"Number\",\"numnum:count:MAX_POP310\":\"Number\",\"numnum:count:MAX_POP50\":\"Number\",\"numnum:count:MEAN_BBXC\":\"Number\",\"numnum:count:MEAN_BBYC\":\"Number\",\"numnum:count:MEGACITY\":\"Number\",\"numnum:count:MIN_AREAKM\":\"Number\",\"numnum:count:MIN_AREAMI\":\"Number\",\"numnum:count:MIN_BBXMAX\":\"Number\",\"numnum:count:MIN_BBXMIN\":\"Number\",\"numnum:count:MIN_BBYMAX\":\"Number\",\"numnum:count:MIN_BBYMIN\":\"Number\",\"numnum:count:MIN_PERKM\":\"Number\",\"numnum:count:MIN_PERMI\":\"Number\",\"numnum:count:NAMEDIFF\":\"Number\",\"numnum:count:NATSCALE\":\"Number\",\"numnum:count:POP1950\":\"Number\",\"numnum:count:POP1955\":\"Number\",\"numnum:count:POP1960\":\"Number\",\"numnum:count:POP1965\":\"Number\",\"numnum:count:POP1970\":\"Number\",\"numnum:count:POP1975\":\"Number\",\"numnum:count:POP1980\":\"Number\",\"numnum:count:POP1985\":\"Number\",\"numnum:count:POP1990\":\"Number\",\"numnum:count:POP1995\":\"Number\",\"numnum:count:POP2000\":\"Number\",\"numnum:count:POP2005\":\"Number\",\"numnum:count:POP2010\":\"Number\",\"numnum:count:POP2015\":\"Number\",\"numnum:count:POP2020\":\"Number\",\"numnum:count:POP2025\":\"Number\",\"numnum:count:POP2050\":\"Number\",\"numnum:count:POP_MAX\":\"Number\",\"numnum:count:POP_MIN\":\"Number\",\"numnum:count:POP_OTHER\":\"Number\",\"numnum:count:RANK_MAX\":\"Number\",\"numnum:count:RANK_MIN\":\"Number\",\"numnum:count:SCALERANK\":\"Number\",\"numnum:count:UN_FID\":\"Number\",\"numnum:count:UN_LAT\":\"Number\",\"numnum:count:UN_LONG\":\"Number\",\"numnum:count:WORLDCITY\":\"Number\",\"numnum:count:accum2\":\"Number\",\"numnum:max:ADM0CAP\":\"Number\",\"numnum:max:ADMIN1_COD\":\"Number\",\"numnum:max:CAPALT\":\"Number\",\"numnum:max:CHANGED\":\"Number\",\"numnum:max:CHECKME\":\"Number\",\"numnum:max:COMPARE\":\"Number\",\"numnum:max:DIFFASCII\":\"Number\",\"numnum:max:ELEVATION\":\"Number\",\"numnum:max:GEONAMEID\":\"Number\",\"numnum:max:GN_POP\":\"Number\",\"numnum:max:GTOPO30\":\"Number\",\"numnum:max:LABELRANK\":\"Number\",\"numnum:max:LATITUDE\":\"Number\",\"numnum:max:LONGITUDE\":\"Number\",\"numnum:max:LS_MATCH\":\"Number\",\"numnum:max:MAX_AREAKM\":\"Number\",\"numnum:max:MAX_AREAMI\":\"Number\",\"numnum:max:MAX_BBXMAX\":\"Number\",\"numnum:max:MAX_BBXMIN\":\"Number\",\"numnum:max:MAX_BBYMAX\":\"Number\",\"numnum:max:MAX_BBYMIN\":\"Number\",\"numnum:max:MAX_NATSCA\":\"Number\",\"numnum:max:MAX_PERKM\":\"Number\",\"numnum:max:MAX_PERMI\":\"Number\",\"numnum:max:MAX_POP10\":\"Number\",\"numnum:max:MAX_POP20\":\"Number\",\"numnum:max:MAX_POP300\":\"Number\",\"numnum:max:MAX_POP310\":\"Number\",\"numnum:max:MAX_POP50\":\"Number\",\"numnum:max:MEAN_BBXC\":\"Number\",\"numnum:max:MEAN_BBYC\":\"Number\",\"numnum:max:MEGACITY\":\"Number\",\"numnum:max:MIN_AREAKM\":\"Number\",\"numnum:max:MIN_AREAMI\":\"Number\",\"numnum:max:MIN_BBXMAX\":\"Number\",\"numnum:max:MIN_BBXMIN\":\"Number\",\"numnum:max:MIN_BBYMAX\":\"Number\",\"numnum:max:MIN_BBYMIN\":\"Number\",\"numnum:max:MIN_PERKM\":\"Number\",\"numnum:max:MIN_PERMI\":\"Number\",\"numnum:max:NAMEDIFF\":\"Number\",\"numnum:max:NATSCALE\":\"Number\",\"numnum:max:POP1950\":\"Number\",\"numnum:max:POP1955\":\"Number\",\"numnum:max:POP1960\":\"Number\",\"numnum:max:POP1965\":\"Number\",\"numnum:max:POP1970\":\"Number\",\"numnum:max:POP1975\":\"Number\",\"numnum:max:POP1980\":\"Number\",\"numnum:max:POP1985\":\"Number\",\"numnum:max:POP1990\":\"Number\",\"numnum:max:POP1995\":\"Number\",\"numnum:max:POP2000\":\"Number\",\"numnum:max:POP2005\":\"Number\",\"numnum:max:POP2010\":\"Number\",\"numnum:max:POP2015\":\"Number\",\"numnum:max:POP2020\":\"Number\",\"numnum:max:POP2025\":\"Number\",\"numnum:max:POP2050\":\"Number\",\"numnum:max:POP_MAX\":\"Number\",\"numnum:max:POP_MIN\":\"Number\",\"numnum:max:POP_OTHER\":\"Number\",\"numnum:max:RANK_MAX\":\"Number\",\"numnum:max:RANK_MIN\":\"Number\",\"numnum:max:SCALERANK\":\"Number\",\"numnum:max:UN_FID\":\"Number\",\"numnum:max:UN_LAT\":\"Number\",\"numnum:max:UN_LONG\":\"Number\",\"numnum:max:WORLDCITY\":\"Number\",\"numnum:max:accum2\":\"Number\",\"numnum:min:ADM0CAP\":\"Number\",\"numnum:min:ADMIN1_COD\":\"Number\",\"numnum:min:CAPALT\":\"Number\",\"numnum:min:CHANGED\":\"Number\",\"numnum:min:CHECKME\":\"Number\",\"numnum:min:COMPARE\":\"Number\",\"numnum:min:DIFFASCII\":\"Number\",\"numnum:min:ELEVATION\":\"Number\",\"numnum:min:GEONAMEID\":\"Number\",\"numnum:min:GN_POP\":\"Number\",\"numnum:min:GTOPO30\":\"Number\",\"numnum:min:LABELRANK\":\"Number\",\"numnum:min:LATITUDE\":\"Number\",\"numnum:min:LONGITUDE\":\"Number\",\"numnum:min:LS_MATCH\":\"Number\",\"numnum:min:MAX_AREAKM\":\"Number\",\"numnum:min:MAX_AREAMI\":\"Number\",\"numnum:min:MAX_BBXMAX\":\"Number\",\"numnum:min:MAX_BBXMIN\":\"Number\",\"numnum:min:MAX_BBYMAX\":\"Number\",\"numnum:min:MAX_BBYMIN\":\"Number\",\"numnum:min:MAX_NATSCA\":\"Number\",\"numnum:min:MAX_PERKM\":\"Number\",\"numnum:min:MAX_PERMI\":\"Number\",\"numnum:min:MAX_POP10\":\"Number\",\"numnum:min:MAX_POP20\":\"Number\",\"numnum:min:MAX_POP300\":\"Number\",\"numnum:min:MAX_POP310\":\"Number\",\"numnum:min:MAX_POP50\":\"Number\",\"numnum:min:MEAN_BBXC\":\"Number\",\"numnum:min:MEAN_BBYC\":\"Number\",\"numnum:min:MEGACITY\":\"Number\",\"numnum:min:MIN_AREAKM\":\"Number\",\"numnum:min:MIN_AREAMI\":\"Number\",\"numnum:min:MIN_BBXMAX\":\"Number\",\"numnum:min:MIN_BBXMIN\":\"Number\",\"numnum:min:MIN_BBYMAX\":\"Number\",\"numnum:min:MIN_BBYMIN\":\"Number\",\"numnum:min:MIN_PERKM\":\"Number\",\"numnum:min:MIN_PERMI\":\"Number\",\"numnum:min:NAMEDIFF\":\"Number\",\"numnum:min:NATSCALE\":\"Number\",\"numnum:min:POP1950\":\"Number\",\"numnum:min:POP1955\":\"Number\",\"numnum:min:POP1960\":\"Number\",\"numnum:min:POP1965\":\"Number\",\"numnum:min:POP1970\":\"Number\",\"numnum:min:POP1975\":\"Number\",\"numnum:min:POP1980\":\"Number\",\"numnum:min:POP1985\":\"Number\",\"numnum:min:POP1990\":\"Number\",\"numnum:min:POP1995\":\"Number\",\"numnum:min:POP2000\":\"Number\",\"numnum:min:POP2005\":\"Number\",\"numnum:min:POP2010\":\"Number\",\"numnum:min:POP2015\":\"Number\",\"numnum:min:POP2020\":\"Number\",\"numnum:min:POP2025\":\"Number\",\"numnum:min:POP2050\":\"Number\",\"numnum:min:POP_MAX\":\"Number\",\"numnum:min:POP_MIN\":\"Number\",\"numnum:min:POP_OTHER\":\"Number\",\"numnum:min:RANK_MAX\":\"Number\",\"numnum:min:RANK_MIN\":\"Number\",\"numnum:min:SCALERANK\":\"Number\",\"numnum:min:UN_FID\":\"Number\",\"numnum:min:UN_LAT\":\"Number\",\"numnum:min:UN_LONG\":\"Number\",\"numnum:min:WORLDCITY\":\"Number\",\"numnum:min:accum2\":\"Number\",\"numnum:sum:ADM0CAP\":\"Number\",\"numnum:sum:ADMIN1_COD\":\"Number\",\"numnum:sum:CAPALT\":\"Number\",\"numnum:sum:CHANGED\":\"Number\",\"numnum:sum:CHECKME\":\"Number\",\"numnum:sum:COMPARE\":\"Number\",\"numnum:sum:DIFFASCII\":\"Number\",\"numnum:sum:ELEVATION\":\"Number\",\"numnum:sum:GEONAMEID\":\"Number\",\"numnum:sum:GN_POP\":\"Number\",\"numnum:sum:GTOPO30\":\"Number\",\"numnum:sum:LABELRANK\":\"Number\",\"numnum:sum:LATITUDE\":\"Number\",\"numnum:sum:LONGITUDE\":\"Number\",\"numnum:sum:LS_MATCH\":\"Number\",\"numnum:sum:MAX_AREAKM\":\"Number\",\"numnum:sum:MAX_AREAMI\":\"Number\",\"numnum:sum:MAX_BBXMAX\":\"Number\",\"numnum:sum:MAX_BBXMIN\":\"Number\",\"numnum:sum:MAX_BBYMAX\":\"Number\",\"numnum:sum:MAX_BBYMIN\":\"Number\",\"numnum:sum:MAX_NATSCA\":\"Number\",\"numnum:sum:MAX_PERKM\":\"Number\",\"numnum:sum:MAX_PERMI\":\"Number\",\"numnum:sum:MAX_POP10\":\"Number\",\"numnum:sum:MAX_POP20\":\"Number\",\"numnum:sum:MAX_POP300\":\"Number\",\"numnum:sum:MAX_POP310\":\"Number\",\"numnum:sum:MAX_POP50\":\"Number\",\"numnum:sum:MEAN_BBXC\":\"Number\",\"numnum:sum:MEAN_BBYC\":\"Number\",\"numnum:sum:MEGACITY\":\"Number\",\"numnum:sum:MIN_AREAKM\":\"Number\",\"numnum:sum:MIN_AREAMI\":\"Number\",\"numnum:sum:MIN_BBXMAX\":\"Number\",\"numnum:sum:MIN_BBXMIN\":\"Number\",\"numnum:sum:MIN_BBYMAX\":\"Number\",\"numnum:sum:MIN_BBYMIN\":\"Number\",\"numnum:sum:MIN_PERKM\":\"Number\",\"numnum:sum:MIN_PERMI\":\"Number\",\"numnum:sum:NAMEDIFF\":\"Number\",\"numnum:sum:NATSCALE\":\"Number\",\"numnum:sum:POP1950\":\"Number\",\"numnum:sum:POP1955\":\"Number\",\"numnum:sum:POP1960\":\"Number\",\"numnum:sum:POP1965\":\"Number\",\"numnum:sum:POP1970\":\"Number\",\"numnum:sum:POP1975\":\"Number\",\"numnum:sum:POP1980\":\"Number\",\"numnum:sum:POP1985\":\"Number\",\"numnum:sum:POP1990\":\"Number\",\"numnum:sum:POP1995\":\"Number\",\"numnum:sum:POP2000\":\"Number\",\"numnum:sum:POP2005\":\"Number\",\"numnum:sum:POP2010\":\"Number\",\"numnum:sum:POP2015\":\"Number\",\"numnum:sum:POP2020\":\"Number\",\"numnum:sum:POP2025\":\"Number\",\"numnum:sum:POP2050\":\"Number\",\"numnum:sum:POP_MAX\":\"Number\",\"numnum:sum:POP_MIN\":\"Number\",\"numnum:sum:POP_OTHER\":\"Number\",\"numnum:sum:RANK_MAX\":\"Number\",\"numnum:sum:RANK_MIN\":\"Number\",\"numnum:sum:SCALERANK\":\"Number\",\"numnum:sum:UN_FID\":\"Number\",\"numnum:sum:UN_LAT\":\"Number\",\"numnum:sum:UN_LONG\":\"Number\",\"numnum:sum:WORLDCITY\":\"Number\",\"numnum:sum:accum2\":\"Number\",\"tippecanoe:retain_points_multiplier_first\":\"Boolean\",\"tippecanoe:retain_points_multiplier_sequence\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":375,\"attributes\":[{\"attribute\":\"ADM0CAP\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"ADM0NAME\",\"count\":198,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\":\"ADM0_A3\",\"count\":198,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\":\"ADM1NAME\",\"count\":204,\"type\":\"string\",\"values\":[\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunciรณn\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavskรฝ\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrรซs\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazรกn\",\"Gauteng\",\"Genรจve\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\":\"ADMIN1_COD\",\"count\":53,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\":0,\"max\":82},{\"attribute\":\"CAPALT\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"CAPIN\",\"count\":20,\"type\":\"string\",\"values\":[\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\":\"CHANGED\",\"count\":7,\"type\":\"number\",\"values\":[0,1,20,3,4,40,5],\"min\":0,\"max\":40},{\"attribute\":\"CHECKME\",\"count\":2,\"type\":\"number\",\"values\":[0,5],\"min\":0,\"max\":5},{\"attribute\":\"CITYALT\",\"count\":53,\"type\":\"string\",\"values\":[\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\":\"COMPARE\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFASCII\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFNOTE\",\"count\":12,\"type\":\"string\",\"values\":[\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\":\"ELEVATION\",\"count\":19,\"type\":\"number\",\"values\":[0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\":0,\"max\":2320},{\"attribute\":\"FEATURECLA\",\"count\":6,\"type\":\"string\",\"values\":[\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\":\"FEATURE_CL\",\"count\":1,\"type\":\"string\",\"values\":[\"P\"]},{\"attribute\":\"FEATURE_CO\",\"count\":4,\"type\":\"string\",\"values\":[\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\":\"GEONAMEID\",\"count\":242,\"type\":\"number\",\"values\":[-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\":-1,\"max\":6942553},{\"attribute\":\"GEONAMESNO\",\"count\":8,\"type\":\"string\",\"values\":[\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\":\"GN_ASCII\",\"count\":239,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\":\"GN_POP\",\"count\":236,\"type\":\"number\",\"values\":[0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\":0,\"max\":14608512},{\"attribute\":\"GTOPO30\",\"count\":166,\"type\":\"number\",\"values\":[-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\":-9999,\"max\":3829},{\"attribute\":\"ISO_A2\",\"count\":196,\"type\":\"string\",\"values\":[\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\":\"LABELRANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,5,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"LATITUDE\",\"count\":242,\"type\":\"number\",\"values\":[-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\":-41.299974,\"max\":64.150024},{\"attribute\":\"LONGITUDE\",\"count\":243,\"type\":\"number\",\"values\":[-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\":-175.220564,\"max\":179.216647},{\"attribute\":\"LS_MATCH\",\"count\":3,\"type\":\"number\",\"values\":[0,1,2],\"min\":0,\"max\":2},{\"attribute\":\"LS_NAME\",\"count\":242,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\":\"MAX_AREAKM\",\"count\":212,\"type\":\"number\",\"values\":[0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\":0,\"max\":186559},{\"attribute\":\"MAX_AREAMI\",\"count\":181,\"type\":\"number\",\"values\":[0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\":0,\"max\":72030},{\"attribute\":\"MAX_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MAX_BBXMIN\",\"count\":241,\"type\":\"number\",\"values\":[-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MAX_BBYMAX\",\"count\":239,\"type\":\"number\",\"values\":[-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MAX_BBYMIN\",\"count\":240,\"type\":\"number\",\"values\":[-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MAX_NATSCA\",\"count\":5,\"type\":\"number\",\"values\":[0,100,20,300,50],\"min\":0,\"max\":300},{\"attribute\":\"MAX_PERKM\",\"count\":198,\"type\":\"number\",\"values\":[0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\":0,\"max\":130296},{\"attribute\":\"MAX_PERMI\",\"count\":189,\"type\":\"number\",\"values\":[0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\":0,\"max\":80962},{\"attribute\":\"MAX_POP10\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\":0,\"max\":16172884},{\"attribute\":\"MAX_POP20\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\":0,\"max\":24218878},{\"attribute\":\"MAX_POP300\",\"count\":219,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\":0,\"max\":87652060},{\"attribute\":\"MAX_POP310\",\"count\":45,\"type\":\"number\",\"values\":[0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\":0,\"max\":224908923},{\"attribute\":\"MAX_POP50\",\"count\":238,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\":0,\"max\":53845691},{\"attribute\":\"MEAN_BBXC\",\"count\":242,\"type\":\"number\",\"values\":[-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\":-175.206798,\"max\":178.472885},{\"attribute\":\"MEAN_BBYC\",\"count\":242,\"type\":\"number\",\"values\":[-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\":-41.285539,\"max\":64.116125},{\"attribute\":\"MEGACITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"MEGANAME\",\"count\":145,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunciรณn\",\"Athรญnai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotรก\",\"Brasรญlia\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de Mรฉxico\",\"Ciudad de Panamรก (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaรฏr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hร  Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"Kรธbenhavn\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomรฉ\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djamรฉna\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\":\"MIN_AREAKM\",\"count\":200,\"type\":\"number\",\"values\":[0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\":0,\"max\":5912},{\"attribute\":\"MIN_AREAMI\",\"count\":166,\"type\":\"number\",\"values\":[0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\":0,\"max\":2283},{\"attribute\":\"MIN_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MIN_BBXMIN\",\"count\":238,\"type\":\"number\",\"values\":[-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MIN_BBYMAX\",\"count\":241,\"type\":\"number\",\"values\":[-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MIN_BBYMIN\",\"count\":237,\"type\":\"number\",\"values\":[-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MIN_PERKM\",\"count\":192,\"type\":\"number\",\"values\":[0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\":0,\"max\":2296},{\"attribute\":\"MIN_PERMI\",\"count\":181,\"type\":\"number\",\"values\":[0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\":0,\"max\":1427},{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEALT\",\"count\":43,\"type\":\"string\",\"values\":[\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunciรณn\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotรก\",\"Brasรญlia\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de Mรฉxico\",\"Ciudad de Panamรก|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaรฏr\",\"Hร  Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomรฉ\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djamรฉna\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pรฉnh\",\"San Francisco-Oakland\",\"San Josรฉ\",\"Sana'a'\",\"Sao Paulo|Sรฃo Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaรญso\",\"Washington D.C.\",\"Yangon\",\"Yaoundรฉ\",\"รœrรผmqi|Wulumqi\"]},{\"attribute\":\"NAMEASCII\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEDIFF\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"NAMEPAR\",\"count\":12,\"type\":\"string\",\"values\":[\"Athรญnai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\":\"NATSCALE\",\"count\":8,\"type\":\"number\",\"values\":[10,110,20,200,30,300,50,600],\"min\":10,\"max\":600},{\"attribute\":\"POP1950\",\"count\":135,\"type\":\"number\",\"values\":[0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\":0,\"max\":12338},{\"attribute\":\"POP1955\",\"count\":139,\"type\":\"number\",\"values\":[0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\":0,\"max\":13713},{\"attribute\":\"POP1960\",\"count\":141,\"type\":\"number\",\"values\":[0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\":0,\"max\":16679},{\"attribute\":\"POP1965\",\"count\":143,\"type\":\"number\",\"values\":[0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\":0,\"max\":20284},{\"attribute\":\"POP1970\",\"count\":138,\"type\":\"number\",\"values\":[0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\":0,\"max\":23298},{\"attribute\":\"POP1975\",\"count\":142,\"type\":\"number\",\"values\":[0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\":0,\"max\":26615},{\"attribute\":\"POP1980\",\"count\":143,\"type\":\"number\",\"values\":[0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\":0,\"max\":28549},{\"attribute\":\"POP1985\",\"count\":144,\"type\":\"number\",\"values\":[0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\":0,\"max\":30304},{\"attribute\":\"POP1990\",\"count\":144,\"type\":\"number\",\"values\":[0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\":0,\"max\":32530},{\"attribute\":\"POP1995\",\"count\":144,\"type\":\"number\",\"values\":[0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\":0,\"max\":33587},{\"attribute\":\"POP2000\",\"count\":141,\"type\":\"number\",\"values\":[0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\":0,\"max\":34450},{\"attribute\":\"POP2005\",\"count\":143,\"type\":\"number\",\"values\":[0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\":0,\"max\":35327},{\"attribute\":\"POP2010\",\"count\":143,\"type\":\"number\",\"values\":[0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\":0,\"max\":35676},{\"attribute\":\"POP2015\",\"count\":144,\"type\":\"number\",\"values\":[0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\":0,\"max\":36094},{\"attribute\":\"POP2020\",\"count\":143,\"type\":\"number\",\"values\":[0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\":0,\"max\":36371},{\"attribute\":\"POP2025\",\"count\":144,\"type\":\"number\",\"values\":[0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\":0,\"max\":36399},{\"attribute\":\"POP2050\",\"count\":143,\"type\":\"number\",\"values\":[0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\":0,\"max\":36400},{\"attribute\":\"POP_MAX\",\"count\":240,\"type\":\"number\",\"values\":[10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\":500,\"max\":35676000},{\"attribute\":\"POP_MIN\",\"count\":243,\"type\":\"number\",\"values\":[10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\":200,\"max\":14608512},{\"attribute\":\"POP_OTHER\",\"count\":218,\"type\":\"number\",\"values\":[0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\":0,\"max\":16803572},{\"attribute\":\"RANK_MAX\",\"count\":12,\"type\":\"number\",\"values\":[10,11,12,13,14,2,4,5,6,7,8,9],\"min\":2,\"max\":14},{\"attribute\":\"RANK_MIN\",\"count\":14,\"type\":\"number\",\"values\":[1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\":1,\"max\":14},{\"attribute\":\"SCALERANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,4,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"SOV0NAME\",\"count\":197,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\":\"SOV_A3\",\"count\":197,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\":\"TIMEZONE\",\"count\":187,\"type\":\"string\",\"values\":[\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\":\"UN_ADM0\",\"count\":116,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Cรดte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\":\"UN_FID\",\"count\":145,\"type\":\"number\",\"values\":[0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\":0,\"max\":589},{\"attribute\":\"UN_LAT\",\"count\":145,\"type\":\"number\",\"values\":[-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\":-37.85,\"max\":60.19},{\"attribute\":\"UN_LONG\",\"count\":144,\"type\":\"number\",\"values\":[-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\":-122.96,\"max\":174.76},{\"attribute\":\"WORLDCITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"accum\",\"count\":10,\"type\":\"number\",\"values\":[1,10,2,3,4,5,6,7,8,9],\"min\":1,\"max\":10},{\"attribute\":\"accum2\",\"count\":1,\"type\":\"number\",\"values\":[1],\"min\":1,\"max\":1},{\"attribute\":\"numnum:count:ADM0CAP\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:ADMIN1_COD\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:CAPALT\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:CHANGED\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:CHECKME\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:COMPARE\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10},{\"attribute\":\"numnum:count:DIFFASCII\",\"count\":9,\"type\":\"number\",\"values\":[10,2,3,4,5,6,7,8,9],\"min\":2,\"max\":10}]}]}}", +"maxzoom": "3", +"minzoom": "0", +"name": "tests/ne_110m_populated_places/out/-z3_-b0_--accumulate-numeric-attributes_numnum_--set-attribute_accum%3a1_--set-attribute_accum2%3a1_--accumulate-attribute_accum%3asum_--retain-points-multiplier_3.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":200},{\"dropped_by_rate\":140},{\"dropped_by_rate\":13},{}]", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":2.5,\"retain_points_multiplier\":3}", +"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": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 2100, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 49.273417, "numnum:min:LATITUDE": 25.669995, "numnum:sum:LATITUDE": 216.23256, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -95.339979, "numnum:min:LONGITUDE": -123.121644, "numnum:sum:LONGITUDE": -664.415583, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 20, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 12500000, "numnum:min:POP_MAX": 2313000, "numnum:sum:POP_MAX": 28747328, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3694820, "numnum:min:POP_MIN": 603502, "numnum:sum:POP_MIN": 11349441, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3607616, "numnum:min:POP_OTHER": 27400, "numnum:sum:POP_OTHER": 9006197, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 74, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 70, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6173331, "numnum:min:GEONAMEID": 3995465, "numnum:sum:GEONAMEID": 31047566, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 4976870, "numnum:min:MAX_POP10": 988636, "numnum:sum:MAX_POP10": 16047979, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 6558538, "numnum:min:MAX_POP20": 1130999, "numnum:sum:MAX_POP20": 18962045, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 14868745, "numnum:min:MAX_POP50": 1371285, "numnum:sum:MAX_POP50": 27652998, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 14870543, "numnum:min:MAX_POP300": 1590116, "numnum:sum:MAX_POP300": 30845208, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 14903021, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 19464718, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2388, "numnum:min:MIN_AREAKM": 218, "numnum:sum:MIN_AREAKM": 6153, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 5803, "numnum:min:MAX_AREAKM": 594, "numnum:sum:MAX_AREAKM": 13239, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 922, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 2376, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 2241, "numnum:min:MAX_AREAMI": 229, "numnum:sum:MAX_AREAMI": 5111, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1257, "numnum:min:MIN_PERKM": 126, "numnum:sum:MIN_PERKM": 2894, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 2202, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 5949, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 781, "numnum:min:MIN_PERMI": 78, "numnum:sum:MIN_PERMI": 1800, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 1369, "numnum:min:MAX_PERMI": 130, "numnum:sum:MAX_PERMI": 3696, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -95.841667, "numnum:min:MIN_BBXMIN": -123.283333, "numnum:sum:MIN_BBXMIN": -666.375001, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -95.841667, "numnum:min:MAX_BBXMIN": -123.283333, "numnum:sum:MAX_BBXMIN": -666.350001, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -95.133333, "numnum:min:MIN_BBXMAX": -122.708333, "numnum:sum:MIN_BBXMAX": -663.048849, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -95, "numnum:min:MAX_BBXMAX": -122.708333, "numnum:sum:MAX_BBXMAX": -661.283332, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 49.1, "numnum:min:MIN_BBYMIN": 25.575, "numnum:sum:MIN_BBYMIN": 214.23333399999999, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 49.1, "numnum:min:MAX_BBYMIN": 25.575, "numnum:sum:MAX_BBYMIN": 215.104298, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 49.383333, "numnum:min:MIN_BBYMAX": 25.85, "numnum:sum:MIN_BBYMAX": 217.508915, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 49.383333, "numnum:min:MAX_BBYMAX": 25.85, "numnum:sum:MAX_BBYMAX": 217.9, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -95.431928, "numnum:min:MEAN_BBXC": -122.982768, "numnum:sum:MEAN_BBXC": -664.108127, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 49.228888, "numnum:min:MEAN_BBYC": 25.71613, "numnum:sum:MEAN_BBYC": 216.08824199999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 3694820, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 7387735, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 89, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 105, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 563, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 801, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 570, "numnum:min:UN_FID": 15, "numnum:sum:UN_FID": 2570, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 49.27, "numnum:min:UN_LAT": 25.67, "numnum:sum:UN_LAT": 216.07000000000003, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": -95.4, "numnum:min:UN_LONG": -122.96, "numnum:sum:UN_LONG": -664.37, "numnum:count:POP1950": 6, "numnum:max:POP1950": 4046, "numnum:min:POP1950": 356, "numnum:sum:POP1950": 8027, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5154, "numnum:min:POP1955": 498, "numnum:sum:POP1955": 9806, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6530, "numnum:min:POP1960": 620, "numnum:sum:POP1960": 12008, "numnum:count:POP1965": 6, "numnum:max:POP1965": 7408, "numnum:min:POP1965": 836, "numnum:sum:POP1965": 13867, "numnum:count:POP1970": 6, "numnum:max:POP1970": 8378, "numnum:min:POP1970": 1045, "numnum:sum:POP1970": 15966, "numnum:count:POP1975": 6, "numnum:max:POP1975": 8926, "numnum:min:POP1975": 1150, "numnum:sum:POP1975": 17483, "numnum:count:POP1980": 6, "numnum:max:POP1980": 9512, "numnum:min:POP1980": 1247, "numnum:sum:POP1980": 19187, "numnum:count:POP1985": 6, "numnum:max:POP1985": 10181, "numnum:min:POP1985": 1359, "numnum:sum:POP1985": 20713, "numnum:count:POP1990": 6, "numnum:max:POP1990": 10883, "numnum:min:POP1990": 1528, "numnum:sum:POP1990": 22447, "numnum:count:POP1995": 6, "numnum:max:POP1995": 11339, "numnum:min:POP1995": 1747, "numnum:sum:POP1995": 24284, "numnum:count:POP2000": 6, "numnum:max:POP2000": 11814, "numnum:min:POP2000": 1959, "numnum:sum:POP2000": 26122, "numnum:count:POP2005": 6, "numnum:max:POP2005": 12307, "numnum:min:POP2005": 2093, "numnum:sum:POP2005": 27931, "numnum:count:POP2010": 6, "numnum:max:POP2010": 12500, "numnum:min:POP2010": 2146, "numnum:sum:POP2010": 28580, "numnum:count:POP2015": 6, "numnum:max:POP2015": 12773, "numnum:min:POP2015": 2219, "numnum:sum:POP2015": 29442, "numnum:count:POP2020": 6, "numnum:max:POP2020": 13160, "numnum:min:POP2020": 2310, "numnum:sum:POP2020": 30586, "numnum:count:POP2025": 6, "numnum:max:POP2025": 13461, "numnum:min:POP2025": 2380, "numnum:sum:POP2025": 31468, "numnum:count:POP2050": 6, "numnum:max:POP2050": 13672, "numnum:min:POP2050": 2444, "numnum:sum:POP2050": 32137, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1720, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 45.416697, "numnum:min:LATITUDE": 14.621135, "numnum:sum:LATITUDE": 198.840259, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -75.700015, "numnum:min:LONGITUDE": -99.130988, "numnum:sum:LONGITUDE": -516.927994, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 19028000, "numnum:min:POP_MAX": 1024000, "numnum:sum:POP_MAX": 39906000, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 10811002, "numnum:min:POP_MIN": 422908, "numnum:sum:POP_MIN": 19817350, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 10018444, "numnum:min:POP_OTHER": 872781, "numnum:sum:POP_OTHER": 23540801, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 76, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 70, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6167865, "numnum:min:GEONAMEID": 3530597, "numnum:sum:GEONAMEID": 28459248, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 10811002, "numnum:min:MAX_POP10": 885780, "numnum:sum:MAX_POP10": 24728070, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 17250245, "numnum:min:MAX_POP20": 885780, "numnum:sum:MAX_POP20": 33897660, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 18948089, "numnum:min:MAX_POP50": 885780, "numnum:sum:MAX_POP50": 39771712, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 18948089, "numnum:min:MAX_POP300": 885780, "numnum:sum:MAX_POP300": 39771712, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 18948089, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 36500072, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1400, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2761, "numnum:min:MIN_AREAKM": 410, "numnum:sum:MIN_AREAKM": 7347, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 4804, "numnum:min:MAX_AREAKM": 419, "numnum:sum:MAX_AREAKM": 14179, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 1066, "numnum:min:MIN_AREAMI": 158, "numnum:sum:MIN_AREAMI": 2836, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1855, "numnum:min:MAX_AREAMI": 162, "numnum:sum:MAX_AREAMI": 5476, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1494, "numnum:min:MIN_PERKM": 256, "numnum:sum:MIN_PERKM": 3401, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 2946, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 8185, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 929, "numnum:min:MIN_PERMI": 159, "numnum:sum:MIN_PERMI": 2114, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 1830, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 5084, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -75.983333, "numnum:min:MIN_BBXMIN": -99.366667, "numnum:sum:MIN_BBXMIN": -519.2999990000001, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -75.983333, "numnum:min:MAX_BBXMIN": -99.366667, "numnum:sum:MAX_BBXMIN": -518.45951, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -75.45, "numnum:min:MIN_BBXMAX": -99.018165, "numnum:sum:MIN_BBXMAX": -515.4315509999999, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -75.45, "numnum:min:MAX_BBXMAX": -98.808333, "numnum:sum:MAX_BBXMAX": -514.274999, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 45.225, "numnum:min:MIN_BBYMIN": 14.433333, "numnum:sum:MIN_BBYMIN": 196.775, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 45.225, "numnum:min:MAX_BBYMIN": 14.441667, "numnum:sum:MAX_BBYMIN": 197.21666599999998, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 45.55, "numnum:min:MIN_BBYMAX": 14.783333, "numnum:sum:MIN_BBYMAX": 200.267497, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 45.55, "numnum:min:MAX_BBYMAX": 14.783333, "numnum:sum:MAX_BBYMAX": 201.13333300000003, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -75.717666, "numnum:min:MEAN_BBXC": -99.116655, "numnum:sum:MEAN_BBXC": -517.030203, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 45.405246, "numnum:min:MEAN_BBYC": 14.603015, "numnum:sum:MEAN_BBYC": 198.87921699999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 11285654, "numnum:min:GN_POP": 422908, "numnum:sum:GN_POP": 20969772, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 499, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2216, "numnum:min:GTOPO30": 61, "numnum:sum:GTOPO30": 4469, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 531, "numnum:min:UN_FID": 13, "numnum:sum:UN_FID": 1640, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 45.37, "numnum:min:UN_LAT": 14.61, "numnum:sum:UN_LAT": 198.73, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": -75.65, "numnum:min:UN_LONG": -99.12, "numnum:sum:UN_LONG": -516.68, "numnum:count:POP1950": 6, "numnum:max:POP1950": 4999, "numnum:min:POP1950": 282, "numnum:sum:POP1950": 10032, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5565, "numnum:min:POP1955": 342, "numnum:sum:POP1955": 12074, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6183, "numnum:min:POP1960": 415, "numnum:sum:POP1960": 14606, "numnum:count:POP1965": 6, "numnum:max:POP1965": 6653, "numnum:min:POP1965": 482, "numnum:sum:POP1965": 17418, "numnum:count:POP1970": 6, "numnum:max:POP1970": 8769, "numnum:min:POP1970": 581, "numnum:sum:POP1970": 20833, "numnum:count:POP1975": 6, "numnum:max:POP1975": 10690, "numnum:min:POP1975": 676, "numnum:sum:POP1975": 23397, "numnum:count:POP1980": 6, "numnum:max:POP1980": 13010, "numnum:min:POP1980": 729, "numnum:sum:POP1980": 26337, "numnum:count:POP1985": 6, "numnum:max:POP1985": 14109, "numnum:min:POP1985": 776, "numnum:sum:POP1985": 28207, "numnum:count:POP1990": 6, "numnum:max:POP1990": 15312, "numnum:min:POP1990": 803, "numnum:sum:POP1990": 30398, "numnum:count:POP1995": 6, "numnum:max:POP1995": 16811, "numnum:min:POP1995": 839, "numnum:sum:POP1995": 33455, "numnum:count:POP2000": 6, "numnum:max:POP2000": 18022, "numnum:min:POP2000": 908, "numnum:sum:POP2000": 36491, "numnum:count:POP2005": 6, "numnum:max:POP2005": 18735, "numnum:min:POP2005": 984, "numnum:sum:POP2005": 39000, "numnum:count:POP2010": 6, "numnum:max:POP2010": 19028, "numnum:min:POP2010": 1024, "numnum:sum:POP2010": 39906, "numnum:count:POP2015": 6, "numnum:max:POP2015": 19485, "numnum:min:POP2015": 1104, "numnum:sum:POP2015": 41124, "numnum:count:POP2020": 6, "numnum:max:POP2020": 20189, "numnum:min:POP2020": 1232, "numnum:sum:POP2020": 42793, "numnum:count:POP2025": 6, "numnum:max:POP2025": 20695, "numnum:min:POP2025": 1274, "numnum:sum:POP2025": 44068, "numnum:count:POP2050": 6, "numnum:max:POP2050": 21009, "numnum:min:POP2050": 1315, "numnum:sum:POP2050": 45043, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.476950 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 1100, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 38.899549, "numnum:min:LATITUDE": 23.131959, "numnum:sum:LATITUDE": 87.819119, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -77.009419, "numnum:min:LONGITUDE": -82.364182, "numnum:sum:LONGITUDE": -239.597707, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5585000, "numnum:min:POP_MAX": 2174000, "numnum:sum:POP_MAX": 12097000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1990917, "numnum:min:POP_MIN": 382894, "numnum:sum:POP_MIN": 2926244, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2175991, "numnum:min:POP_OTHER": 1037811, "numnum:sum:POP_OTHER": 5144107, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4164138, "numnum:min:GEONAMEID": 3553478, "numnum:sum:GEONAMEID": 11858579, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2182723, "numnum:min:MAX_POP10": 1122682, "numnum:sum:MAX_POP10": 5296322, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2240256, "numnum:min:MAX_POP20": 1443206, "numnum:sum:MAX_POP20": 5734632, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5187749, "numnum:min:MAX_POP50": 2051170, "numnum:sum:MAX_POP50": 11003304, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5678280, "numnum:min:MAX_POP300": 2051170, "numnum:sum:MAX_POP300": 12917199, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 5678280, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10866029, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1114, "numnum:min:MIN_AREAKM": 323, "numnum:sum:MIN_AREAKM": 1817, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 3447, "numnum:min:MAX_AREAKM": 362, "numnum:sum:MAX_AREAKM": 6716, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 430, "numnum:min:MIN_AREAMI": 125, "numnum:sum:MIN_AREAMI": 702, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1331, "numnum:min:MAX_AREAMI": 140, "numnum:sum:MAX_AREAMI": 2593, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 548, "numnum:min:MIN_PERKM": 156, "numnum:sum:MIN_PERKM": 944, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1898, "numnum:min:MAX_PERKM": 286, "numnum:sum:MAX_PERKM": 3183, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 341, "numnum:min:MIN_PERMI": 97, "numnum:sum:MIN_PERMI": 587, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1179, "numnum:min:MAX_PERMI": 177, "numnum:sum:MAX_PERMI": 1976, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -77.533333, "numnum:min:MIN_BBXMIN": -82.533333, "numnum:sum:MIN_BBXMIN": -240.533333, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -77.308333, "numnum:min:MAX_BBXMIN": -82.533333, "numnum:sum:MAX_BBXMIN": -240.283333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -76.752653, "numnum:min:MIN_BBXMAX": -82.208333, "numnum:sum:MIN_BBXMAX": -239.136705, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -76.4, "numnum:min:MAX_BBXMAX": -82.208333, "numnum:sum:MAX_BBXMAX": -238.63333300000003, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.666667, "numnum:min:MIN_BBYMIN": 22.916667, "numnum:sum:MIN_BBYMIN": 87.13333399999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.754222, "numnum:min:MAX_BBYMIN": 22.975161, "numnum:sum:MAX_BBYMIN": 87.454383, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.241667, "numnum:min:MIN_BBYMAX": 23.183333, "numnum:sum:MIN_BBYMAX": 88.43906000000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 39.533333, "numnum:min:MAX_BBYMAX": 23.183333, "numnum:sum:MAX_BBYMAX": 89.708333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -77.002668, "numnum:min:MEAN_BBXC": -82.354344, "numnum:sum:MEAN_BBXC": -239.593428, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 39.007587, "numnum:min:MEAN_BBYC": 23.076845, "numnum:sum:MEAN_BBYC": 88.151611, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2163824, "numnum:min:GN_POP": 382894, "numnum:sum:GN_POP": 3099151, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 7, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 9, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 11, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 18, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 577, "numnum:min:UN_FID": 172, "numnum:sum:UN_FID": 1299, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 38.89, "numnum:min:UN_LAT": 23.04, "numnum:sum:UN_LAT": 87.75999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -76.95, "numnum:min:UN_LONG": -82.41, "numnum:sum:UN_LONG": -239.63, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1298, "numnum:min:POP1950": 622, "numnum:sum:POP1950": 3036, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1539, "numnum:min:POP1955": 924, "numnum:sum:POP1955": 3752, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1823, "numnum:min:POP1960": 1361, "numnum:sum:POP1960": 4620, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2135, "numnum:min:POP1965": 1598, "numnum:sum:POP1965": 5442, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2488, "numnum:min:POP1970": 1779, "numnum:sum:POP1970": 6408, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2626, "numnum:min:POP1975": 1848, "numnum:sum:POP1975": 7064, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3122, "numnum:min:POP1980": 1913, "numnum:sum:POP1980": 7812, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3521, "numnum:min:POP1985": 2005, "numnum:sum:POP1985": 8589, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3969, "numnum:min:POP1990": 2108, "numnum:sum:POP1990": 9453, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4431, "numnum:min:POP1995": 2183, "numnum:sum:POP1995": 10265, "numnum:count:POP2000": 3, "numnum:max:POP2000": 4946, "numnum:min:POP2000": 2187, "numnum:sum:POP2000": 11082, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5438, "numnum:min:POP2005": 2189, "numnum:sum:POP2005": 11868, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5585, "numnum:min:POP2010": 2174, "numnum:sum:POP2010": 12097, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5755, "numnum:min:POP2015": 2159, "numnum:sum:POP2015": 12378, "numnum:count:POP2020": 3, "numnum:max:POP2020": 5969, "numnum:min:POP2020": 2151, "numnum:sum:POP2020": 12756, "numnum:count:POP2025": 3, "numnum:max:POP2025": 6141, "numnum:min:POP2025": 2150, "numnum:sum:POP2025": 13069, "numnum:count:POP2050": 3, "numnum:max:POP2050": 6272, "numnum:min:POP2050": 2150, "numnum:sum:POP2050": 13311, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.160563 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 27, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1590, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 65, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 9, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 40.749979, "numnum:min:LATITUDE": 8.968017, "numnum:sum:LATITUDE": 178.471598, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": -72.336035, "numnum:min:LONGITUDE": -89.203041, "numnum:sum:LONGITUDE": -815.506753, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 19040000, "numnum:min:POP_MAX": 15220, "numnum:sum:POP_MAX": 28082860, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 8008278, "numnum:min:POP_MIN": 1724, "numnum:sum:POP_MIN": 12265887, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 9292603, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 18328124, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 6, "numnum:sum:RANK_MAX": 111, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 90, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 5128581, "numnum:min:GEONAMEID": 1690681, "numnum:sum:GEONAMEID": 35773816, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 10, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 20, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 9376946, "numnum:min:MAX_POP10": 15220, "numnum:sum:MAX_POP10": 19343540, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 11947707, "numnum:min:MAX_POP20": 15220, "numnum:sum:MAX_POP20": 22289433, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 18788144, "numnum:min:MAX_POP50": 15220, "numnum:sum:MAX_POP50": 29160907, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 18788144, "numnum:min:MAX_POP300": 15220, "numnum:sum:MAX_POP300": 29160907, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 18924578, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 18924578, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1200, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 1137, "numnum:min:MIN_AREAKM": 9, "numnum:sum:MIN_AREAKM": 2736, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 8185, "numnum:min:MAX_AREAKM": 9, "numnum:sum:MAX_AREAKM": 9967, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 439, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 1054, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 3160, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 3846, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 497, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 1679, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 4993, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 6318, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 309, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 1043, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 3102, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 3925, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": -72.441667, "numnum:min:MIN_BBXMIN": -89.316667, "numnum:sum:MIN_BBXMIN": -817.1666680000001, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": -72.441667, "numnum:min:MAX_BBXMIN": -89.316667, "numnum:sum:MAX_BBXMIN": -816.292747, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": -72.033333, "numnum:min:MIN_BBXMAX": -88.966667, "numnum:sum:MIN_BBXMAX": -813.9999449999999, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": -72.033333, "numnum:min:MAX_BBXMAX": -88.966667, "numnum:sum:MAX_BBXMAX": -813.133333, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 39.808333, "numnum:min:MIN_BBYMIN": 8.933333, "numnum:sum:MIN_BBYMIN": 176.96666600000004, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 40.566667, "numnum:min:MAX_BBYMIN": 8.943752, "numnum:sum:MAX_BBYMIN": 177.735419, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 41.057237, "numnum:min:MIN_BBYMAX": 9.1, "numnum:sum:MIN_BBYMAX": 179.515571, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 41.941667, "numnum:min:MAX_BBYMAX": 9.1, "numnum:sum:MAX_BBYMAX": 180.408334, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": -72.222424, "numnum:min:MEAN_BBXC": -89.176042, "numnum:sum:MEAN_BBXC": -815.184795, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 40.813006, "numnum:min:MEAN_BBYC": 9.035936, "numnum:sum:MEAN_BBYC": 178.64532899999998, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 37, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 129, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 8008278, "numnum:min:GN_POP": 1724, "numnum:sum:GN_POP": 12658675, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 10, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 10, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 1468, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 2717, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 555, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2112, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 40.7, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 118.09000000000002, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -89.2, "numnum:sum:UN_LONG": -572.49, "numnum:count:POP1950": 10, "numnum:max:POP1950": 12338, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 13167, "numnum:count:POP1955": 10, "numnum:max:POP1955": 13219, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 14295, "numnum:count:POP1960": 10, "numnum:max:POP1960": 14164, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 15562, "numnum:count:POP1965": 10, "numnum:max:POP1965": 15177, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 16993, "numnum:count:POP1970": 10, "numnum:max:POP1970": 16191, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 18554, "numnum:count:POP1975": 10, "numnum:max:POP1975": 15880, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 18754, "numnum:count:POP1980": 10, "numnum:max:POP1980": 15601, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 19038, "numnum:count:POP1985": 10, "numnum:max:POP1985": 15827, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 19973, "numnum:count:POP1990": 10, "numnum:max:POP1990": 16086, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 21087, "numnum:count:POP1995": 10, "numnum:max:POP1995": 16943, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 22839, "numnum:count:POP2000": 10, "numnum:max:POP2000": 17846, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 24516, "numnum:count:POP2005": 10, "numnum:max:POP2005": 18732, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 26234, "numnum:count:POP2010": 10, "numnum:max:POP2010": 19040, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 26902, "numnum:count:POP2015": 10, "numnum:max:POP2015": 19441, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 27889, "numnum:count:POP2020": 10, "numnum:max:POP2020": 19974, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 29457, "numnum:count:POP2025": 10, "numnum:max:POP2025": 20370, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 30859, "numnum:count:POP2050": 10, "numnum:max:POP2050": 20628, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 32037, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -74.003906, 40.780541 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1000, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 21, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 18.470073, "numnum:min:LATITUDE": 4.596424, "numnum:sum:LATITUDE": 86.78955300000001, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -61.000008, "numnum:min:LONGITUDE": -74.083344, "numnum:sum:LONGITUDE": -390.937493, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 21, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 7772000, "numnum:min:POP_MAX": 21887, "numnum:sum:POP_MAX": 10044685, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 6333661, "numnum:min:POP_MIN": 2873, "numnum:sum:POP_MIN": 6403465, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 5754084, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 9121344, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 53, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 42, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3688689, "numnum:min:GEONAMEID": 3028258, "numnum:sum:GEONAMEID": 21112528, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 25, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 6333661, "numnum:min:MAX_POP10": 21887, "numnum:sum:MAX_POP10": 9813139, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 6333154, "numnum:min:MAX_POP20": 21887, "numnum:sum:MAX_POP20": 9812632, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 6333154, "numnum:min:MAX_POP50": 21887, "numnum:sum:MAX_POP50": 9812632, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 6333154, "numnum:min:MAX_POP300": 21887, "numnum:sum:MAX_POP300": 9812632, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 6333154, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6333154, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 523, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 1034, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 523, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 1034, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 202, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 400, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 202, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 400, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 309, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 596, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 309, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 596, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 192, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 372, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 192, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 372, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -61.008333, "numnum:min:MIN_BBXMIN": -74.266667, "numnum:sum:MIN_BBXMIN": -391.48333299999998, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -61.008333, "numnum:min:MAX_BBXMIN": -74.266667, "numnum:sum:MAX_BBXMIN": -391.48333299999998, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -60.966667, "numnum:min:MIN_BBXMAX": -74.008333, "numnum:sum:MIN_BBXMAX": -390.58333300000006, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -60.966667, "numnum:min:MAX_BBXMAX": -74.008333, "numnum:sum:MAX_BBXMAX": -390.58333300000006, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 18.316667, "numnum:min:MIN_BBYMIN": 4.483333, "numnum:sum:MIN_BBYMIN": 86.425001, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 18.316667, "numnum:min:MAX_BBYMIN": 4.483333, "numnum:sum:MAX_BBYMIN": 86.425001, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 18.591667, "numnum:min:MIN_BBYMAX": 4.8, "numnum:sum:MIN_BBYMAX": 87.21666700000002, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 18.591667, "numnum:min:MAX_BBYMAX": 4.8, "numnum:sum:MAX_BBYMAX": 87.21666700000002, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -60.988377, "numnum:min:MEAN_BBXC": -74.116517, "numnum:sum:MEAN_BBXC": -391.01338799999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 18.467176, "numnum:min:MEAN_BBYC": 4.643227, "numnum:sum:MEAN_BBYC": 86.840964, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 47, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7102602, "numnum:min:GN_POP": 2873, "numnum:sum:GN_POP": 7164982, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2620, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -5326, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 176, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 337, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 18.48, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 23.11, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -74.08, "numnum:sum:UN_LONG": -143.97, "numnum:count:POP1950": 6, "numnum:max:POP1950": 630, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 849, "numnum:count:POP1955": 6, "numnum:max:POP1955": 894, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1206, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1269, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1715, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2393, "numnum:count:POP1970": 6, "numnum:max:POP1970": 2383, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3216, "numnum:count:POP1975": 6, "numnum:max:POP1975": 3040, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4056, "numnum:count:POP1980": 6, "numnum:max:POP1980": 3525, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4765, "numnum:count:POP1985": 6, "numnum:max:POP1985": 4087, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5483, "numnum:count:POP1990": 6, "numnum:max:POP1990": 4740, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6262, "numnum:count:POP1995": 6, "numnum:max:POP1995": 5494, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7164, "numnum:count:POP2000": 6, "numnum:max:POP2000": 6356, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8210, "numnum:count:POP2005": 6, "numnum:max:POP2005": 7353, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9415, "numnum:count:POP2010": 6, "numnum:max:POP2010": 7772, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9926, "numnum:count:POP2015": 6, "numnum:max:POP2015": 8320, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 10618, "numnum:count:POP2020": 6, "numnum:max:POP2020": 8916, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11441, "numnum:count:POP2025": 6, "numnum:max:POP2025": 9299, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 12021, "numnum:count:POP2050": 6, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 12485, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -69.873047, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 30, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 13.148279, "numnum:min:LATITUDE": 6.801974, "numnum:sum:LATITUDE": 66.257885, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -58.167029, "numnum:min:LONGITUDE": -66.917037, "numnum:sum:LONGITUDE": -369.171329, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 20, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 2985000, "numnum:min:POP_MAX": 33734, "numnum:sum:POP_MAX": 3818655, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1815679, "numnum:min:POP_MIN": 24518, "numnum:sum:POP_MIN": 2248166, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 2764555, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 3667144, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 55, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 51, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 4359981, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 20614985, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 25, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 2818500, "numnum:min:MAX_POP10": 27343, "numnum:sum:MAX_POP10": 3645764, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3351058, "numnum:min:MAX_POP20": 27343, "numnum:sum:MAX_POP20": 4178322, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 3351241, "numnum:min:MAX_POP50": 27343, "numnum:sum:MAX_POP50": 4178505, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 3351241, "numnum:min:MAX_POP300": 27343, "numnum:sum:MAX_POP300": 4178505, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 224, "numnum:min:MIN_AREAKM": 10, "numnum:sum:MIN_AREAKM": 506, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 370, "numnum:min:MAX_AREAKM": 10, "numnum:sum:MAX_AREAKM": 652, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 86, "numnum:min:MIN_AREAMI": 4, "numnum:sum:MIN_AREAMI": 195, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 143, "numnum:min:MAX_AREAMI": 4, "numnum:sum:MAX_AREAMI": 252, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 137, "numnum:min:MIN_PERKM": 18, "numnum:sum:MIN_PERKM": 470, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 18, "numnum:sum:MAX_PERKM": 611, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 85, "numnum:min:MIN_PERMI": 11, "numnum:sum:MIN_PERMI": 291, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 172, "numnum:min:MAX_PERMI": 11, "numnum:sum:MAX_PERMI": 378, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -58.2, "numnum:min:MIN_BBXMIN": -67.133333, "numnum:sum:MIN_BBXMIN": -369.50833299999996, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -58.2, "numnum:min:MAX_BBXMIN": -66.993057, "numnum:sum:MAX_BBXMIN": -369.36805699999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -58.116667, "numnum:min:MIN_BBXMAX": -66.725, "numnum:sum:MIN_BBXMAX": -368.475, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": -58.116667, "numnum:min:MAX_BBXMAX": -66.725, "numnum:sum:MAX_BBXMAX": -368.475, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 13.125, "numnum:min:MIN_BBYMIN": 6.75, "numnum:sum:MIN_BBYMIN": 65.858333, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 13.125, "numnum:min:MAX_BBYMIN": 6.75, "numnum:sum:MAX_BBYMIN": 65.941666, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 6.833333, "numnum:sum:MIN_BBYMAX": 66.54200499999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 6.833333, "numnum:sum:MAX_BBYMAX": 66.550001, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -58.153788, "numnum:min:MEAN_BBXC": -66.917919, "numnum:sum:MEAN_BBXC": -368.992819, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 13.145833, "numnum:min:MEAN_BBYC": 6.797348, "numnum:sum:MEAN_BBYC": 66.20897000000001, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 53, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1815679, "numnum:min:GN_POP": 1662, "numnum:sum:GN_POP": 2112486, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 5, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 5, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 920, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8899, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 582, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 582, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 10.49, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 10.49, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -66.89, "numnum:sum:UN_LONG": -66.89, "numnum:count:POP1950": 6, "numnum:max:POP1950": 694, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 694, "numnum:count:POP1955": 6, "numnum:max:POP1955": 955, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 955, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1316, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1316, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1657, "numnum:count:POP1970": 6, "numnum:max:POP1970": 2060, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2060, "numnum:count:POP1975": 6, "numnum:max:POP1975": 2342, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2342, "numnum:count:POP1980": 6, "numnum:max:POP1980": 2575, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2575, "numnum:count:POP1985": 6, "numnum:max:POP1985": 2693, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2693, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2767, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2767, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2816, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2816, "numnum:count:POP2000": 6, "numnum:max:POP2000": 2864, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2864, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2930, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2930, "numnum:count:POP2010": 6, "numnum:max:POP2010": 2985, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2985, "numnum:count:POP2015": 6, "numnum:max:POP2015": 3098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3098, "numnum:count:POP2020": 6, "numnum:max:POP2020": 3306, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3306, "numnum:count:POP2025": 6, "numnum:max:POP2025": 3482, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3482, "numnum:count:POP2050": 6, "numnum:max:POP2050": 3619, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3619, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -61.171875, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1180, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 34, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 64.150024, "numnum:min:LATITUDE": 5.83503, "numnum:sum:LATITUDE": 216.88478999999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -0.116722, "numnum:min:LONGITUDE": -55.167031, "numnum:sum:LONGITUDE": -120.199368, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 8567000, "numnum:min:POP_MAX": 113364, "numnum:sum:POP_MAX": 10347829, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 7421209, "numnum:min:POP_MIN": 88859, "numnum:sum:POP_MIN": 8993072, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 326670, "numnum:min:POP_OTHER": 22478, "numnum:sum:POP_OTHER": 1022995, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 62, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 60, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3413829, "numnum:min:GEONAMEID": 2462881, "numnum:sum:GEONAMEID": 18242690, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 7721282, "numnum:min:MAX_POP10": 88859, "numnum:sum:MAX_POP10": 9375863, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 8370578, "numnum:min:MAX_POP20": 88859, "numnum:sum:MAX_POP20": 10025159, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 10011551, "numnum:min:MAX_POP50": 88859, "numnum:sum:MAX_POP50": 11666132, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 10011551, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 11489767, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 10011551, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10980527, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 950, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1914, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 2502, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 3198, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 3787, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 739, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 965, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1235, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 1461, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 994, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 1512, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 2440, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 2960, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 618, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 939, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 1516, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 1839, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -1.091667, "numnum:min:MIN_BBXMIN": -55.283333, "numnum:sum:MIN_BBXMIN": -121.68333299999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -0.546866, "numnum:min:MAX_BBXMIN": -55.283333, "numnum:sum:MAX_BBXMIN": -121.13853199999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 0.307108, "numnum:min:MIN_BBXMAX": -55.107566, "numnum:sum:MIN_BBXMAX": -119.233791, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 0.816667, "numnum:min:MAX_BBXMAX": -55.1, "numnum:sum:MAX_BBXMAX": -118.716666, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 64.05, "numnum:min:MIN_BBYMIN": 5.766667, "numnum:sum:MIN_BBYMIN": 216.15, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 64.05, "numnum:min:MAX_BBYMIN": 5.766667, "numnum:sum:MAX_BBYMIN": 216.225, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 64.166667, "numnum:min:MIN_BBYMAX": 5.866667, "numnum:sum:MIN_BBYMAX": 217.45000000000003, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 64.166667, "numnum:min:MAX_BBYMAX": 5.866667, "numnum:sum:MAX_BBYMAX": 217.45000000000003, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -0.169651, "numnum:min:MEAN_BBXC": -55.188737, "numnum:sum:MEAN_BBXC": -120.22942099999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 64.116125, "numnum:min:MEAN_BBYC": 5.826428, "numnum:sum:MEAN_BBYC": 216.846081, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 39, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 62, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7421209, "numnum:min:GN_POP": 113364, "numnum:sum:GN_POP": 9084347, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 72, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9878, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 519, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 821, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 53.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 104.82, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -6.25, "numnum:sum:UN_LONG": -6.42, "numnum:count:POP1950": 6, "numnum:max:POP1950": 8361, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8987, "numnum:count:POP1955": 6, "numnum:max:POP1955": 8278, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8925, "numnum:count:POP1960": 6, "numnum:max:POP1960": 8196, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8857, "numnum:count:POP1965": 6, "numnum:max:POP1965": 7869, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8592, "numnum:count:POP1970": 6, "numnum:max:POP1970": 7509, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8280, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7546, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8379, "numnum:count:POP1980": 6, "numnum:max:POP1980": 7660, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8563, "numnum:count:POP1985": 6, "numnum:max:POP1985": 7667, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8587, "numnum:count:POP1990": 6, "numnum:max:POP1990": 7654, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8570, "numnum:count:POP1995": 6, "numnum:max:POP1995": 7908, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8854, "numnum:count:POP2000": 6, "numnum:max:POP2000": 8225, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9214, "numnum:count:POP2005": 6, "numnum:max:POP2005": 8505, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9542, "numnum:count:POP2010": 6, "numnum:max:POP2010": 8567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9626, "numnum:count:POP2015": 6, "numnum:max:POP2015": 8607, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9705, "numnum:count:POP2020": 6, "numnum:max:POP2020": 8618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9795, "numnum:count:POP2025": 6, "numnum:max:POP2025": 8618, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9875, "numnum:count:POP2050": 6, "numnum:max:POP2050": 8618, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9950, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -55.195312, 5.790897 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 38.722723, "numnum:min:LATITUDE": 33.599976, "numnum:sum:LATITUDE": 106.34799799999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -6.836131, "numnum:min:LONGITUDE": -9.144866, "numnum:sum:LONGITUDE": -23.597364, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3181000, "numnum:min:POP_MAX": 1705000, "numnum:sum:POP_MAX": 7698000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3144909, "numnum:min:POP_MIN": 517802, "numnum:sum:POP_MIN": 5318464, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3718797, "numnum:min:POP_OTHER": 1795582, "numnum:sum:POP_OTHER": 7543728, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2553604, "numnum:min:GEONAMEID": 2267057, "numnum:sum:GEONAMEID": 7359136, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3796279, "numnum:min:MAX_POP10": 1832316, "numnum:sum:MAX_POP10": 7665719, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3796279, "numnum:min:MAX_POP20": 1831921, "numnum:sum:MAX_POP20": 7665324, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3796279, "numnum:min:MAX_POP50": 1831921, "numnum:sum:MAX_POP50": 7665324, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3796279, "numnum:min:MAX_POP300": 1831921, "numnum:sum:MAX_POP300": 7665324, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 506, "numnum:min:MIN_AREAKM": 428, "numnum:sum:MIN_AREAKM": 1370, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 508, "numnum:min:MAX_AREAKM": 428, "numnum:sum:MAX_AREAKM": 1372, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 196, "numnum:min:MIN_AREAMI": 165, "numnum:sum:MIN_AREAMI": 529, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 196, "numnum:min:MAX_AREAMI": 165, "numnum:sum:MAX_AREAMI": 529, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 475, "numnum:min:MIN_PERKM": 261, "numnum:sum:MIN_PERKM": 1091, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 475, "numnum:min:MAX_PERKM": 261, "numnum:sum:MAX_PERKM": 1096, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 295, "numnum:min:MIN_PERMI": 162, "numnum:sum:MIN_PERMI": 678, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 295, "numnum:min:MAX_PERMI": 162, "numnum:sum:MAX_PERMI": 681, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -7.116667, "numnum:min:MIN_BBXMIN": -9.466667, "numnum:sum:MIN_BBXMIN": -24.283334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -7.116667, "numnum:min:MAX_BBXMIN": -9.466667, "numnum:sum:MAX_BBXMIN": -24.283334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -6.725, "numnum:min:MIN_BBXMAX": -8.958333, "numnum:sum:MIN_BBXMAX": -23.008333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -6.725, "numnum:min:MAX_BBXMAX": -8.958333, "numnum:sum:MAX_BBXMAX": -23.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.675, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 105.808334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.675, "numnum:min:MAX_BBYMIN": 33.391667, "numnum:sum:MAX_BBYMIN": 105.808334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.008333, "numnum:min:MIN_BBYMAX": 33.733333, "numnum:sum:MIN_BBYMAX": 106.86666600000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 39.008333, "numnum:min:MAX_BBYMAX": 33.733333, "numnum:sum:MAX_BBYMAX": 106.86666600000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -6.87491, "numnum:min:MEAN_BBXC": -9.232769, "numnum:sum:MEAN_BBXC": -23.62619, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.783256, "numnum:min:MEAN_BBYC": 33.557664, "numnum:sum:MEAN_BBYC": 106.25376700000001, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 49, "numnum:min:ADMIN1_COD": 14, "numnum:sum:ADMIN1_COD": 108, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3144909, "numnum:min:GN_POP": 517802, "numnum:sum:GN_POP": 5318464, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 56, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 127, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 419, "numnum:min:UN_FID": 372, "numnum:sum:UN_FID": 1166, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 38.72, "numnum:min:UN_LAT": 33.6, "numnum:sum:UN_LAT": 106.32999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -6.83, "numnum:min:UN_LONG": -9.12, "numnum:sum:UN_LONG": -23.58, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1304, "numnum:min:POP1950": 145, "numnum:sum:POP1950": 2074, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1405, "numnum:min:POP1955": 184, "numnum:sum:POP1955": 2367, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1514, "numnum:min:POP1960": 233, "numnum:sum:POP1960": 2714, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 339, "numnum:sum:POP1965": 3202, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1817, "numnum:min:POP1970": 494, "numnum:sum:POP1970": 3816, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2103, "numnum:min:POP1975": 641, "numnum:sum:POP1975": 4537, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2449, "numnum:min:POP1980": 808, "numnum:sum:POP1980": 5366, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2518, "numnum:min:POP1985": 986, "numnum:sum:POP1985": 5910, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2682, "numnum:min:POP1990": 1174, "numnum:sum:POP1990": 6393, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2951, "numnum:min:POP1995": 1379, "numnum:sum:POP1995": 6930, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3043, "numnum:min:POP2000": 1507, "numnum:sum:POP2000": 7222, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3138, "numnum:min:POP2005": 1647, "numnum:sum:POP2005": 7547, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3181, "numnum:min:POP2010": 1705, "numnum:sum:POP2010": 7698, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3267, "numnum:min:POP2015": 1793, "numnum:sum:POP2015": 7950, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3475, "numnum:min:POP2020": 1938, "numnum:sum:POP2020": 8409, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3716, "numnum:min:POP2025": 2083, "numnum:sum:POP2025": 8857, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3949, "numnum:min:POP2050": 2222, "numnum:sum:POP2050": 9257, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.754083 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 30, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1340, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 64, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 9, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 40.400026, "numnum:min:LATITUDE": 8.470011, "numnum:sum:LATITUDE": 167.662217, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": -1.524724, "numnum:min:LONGITUDE": -17.47313, "numnum:sum:LONGITUDE": -115.41362000000001, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 5567000, "numnum:min:POP_MAX": 500, "numnum:sum:POP_MAX": 14324077, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 200, "numnum:sum:POP_MIN": 7251560, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 3673427, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 12458291, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 102, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 1, "numnum:sum:RANK_MIN": 90, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 3675707, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 22744040, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 2, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 11, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 3767139, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 12321504, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 3767139, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 12321147, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 3767139, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 12346879, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 3767139, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 12346879, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 3767139, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3767139, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 1100, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 690, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 1791, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 690, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 1836, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 266, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 691, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 266, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 709, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 558, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 1394, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 1460, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 347, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 866, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 907, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": 0, "numnum:min:MIN_BBXMIN": -17.533333, "numnum:sum:MIN_BBXMIN": -106.53333300000002, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": 0, "numnum:min:MAX_BBXMIN": -17.533333, "numnum:sum:MAX_BBXMIN": -106.53333300000002, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": 0, "numnum:min:MIN_BBXMAX": -17.2, "numnum:sum:MIN_BBXMAX": -104.61666600000001, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": 0, "numnum:min:MAX_BBXMAX": -17.125, "numnum:sum:MAX_BBXMAX": -104.541666, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 40.225, "numnum:min:MIN_BBYMIN": 0, "numnum:sum:MIN_BBYMIN": 140.883333, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 40.225, "numnum:min:MAX_BBYMIN": 0, "numnum:sum:MAX_BBYMIN": 140.883333, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 40.616667, "numnum:min:MIN_BBYMAX": 0, "numnum:sum:MIN_BBYMAX": 142.466667, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 40.616667, "numnum:min:MAX_BBYMAX": 0, "numnum:sum:MAX_BBYMAX": 142.466667, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": 0, "numnum:min:MEAN_BBXC": -17.343779, "numnum:sum:MEAN_BBXC": -105.57515899999999, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 40.425498, "numnum:min:MEAN_BBYC": 0, "numnum:sum:MEAN_BBYC": 141.67497899999999, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 53, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 114, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 7775608, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 2400, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -16672, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 578, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2494, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 40.44, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 98.27000000000001, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -57.69000000000001, "numnum:count:POP1950": 10, "numnum:max:POP1950": 1700, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2156, "numnum:count:POP1955": 10, "numnum:max:POP1955": 2018, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2573, "numnum:count:POP1960": 10, "numnum:max:POP1960": 2392, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3171, "numnum:count:POP1965": 10, "numnum:max:POP1965": 2898, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3967, "numnum:count:POP1970": 10, "numnum:max:POP1970": 3521, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5058, "numnum:count:POP1975": 10, "numnum:max:POP1975": 3890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5998, "numnum:count:POP1980": 10, "numnum:max:POP1980": 4253, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 6975, "numnum:count:POP1985": 10, "numnum:max:POP1985": 4355, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7775, "numnum:count:POP1990": 10, "numnum:max:POP1990": 4414, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8526, "numnum:count:POP1995": 10, "numnum:max:POP1995": 4701, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9614, "numnum:count:POP2000": 10, "numnum:max:POP2000": 5045, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10919, "numnum:count:POP2005": 10, "numnum:max:POP2005": 5414, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 12454, "numnum:count:POP2010": 10, "numnum:max:POP2010": 5567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 13135, "numnum:count:POP2015": 10, "numnum:max:POP2015": 5764, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 14191, "numnum:count:POP2020": 10, "numnum:max:POP2020": 5918, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 16012, "numnum:count:POP2025": 10, "numnum:max:POP2025": 5934, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 17997, "numnum:count:POP2050": 10, "numnum:max:POP2050": 5935, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 20268, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 15, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 930, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 30, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 6.818381, "numnum:min:LATITUDE": -21.138512, "numnum:sum:LATITUDE": -10.981086999999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": -0.216716, "numnum:min:LONGITUDE": -175.220564, "numnum:sum:LONGITUDE": -367.296225, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 22, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 42620, "numnum:sum:POP_MAX": 7275035, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 23658, "numnum:sum:POP_MIN": 6195217, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 6571543, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 61, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 58, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 4032402, "numnum:min:GEONAMEID": 2274895, "numnum:sum:GEONAMEID": 16876487, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 42620, "numnum:sum:MAX_POP10": 6646211, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 42620, "numnum:sum:MAX_POP20": 7223770, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 42620, "numnum:sum:MAX_POP50": 7223770, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7017271, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 1171, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 636, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 1375, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 452, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 245, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 531, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 27, "numnum:sum:MIN_PERKM": 842, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 345, "numnum:min:MAX_PERKM": 27, "numnum:sum:MAX_PERKM": 963, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 17, "numnum:sum:MIN_PERMI": 524, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 214, "numnum:min:MAX_PERMI": 17, "numnum:sum:MAX_PERMI": 599, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": -0.35, "numnum:min:MIN_BBXMIN": -175.233333, "numnum:sum:MIN_BBXMIN": -367.72499999999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": -0.35, "numnum:min:MAX_BBXMIN": -175.233333, "numnum:sum:MAX_BBXMIN": -367.72499999999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": -0.098725, "numnum:min:MIN_BBXMAX": -175.166667, "numnum:sum:MIN_BBXMAX": -366.723726, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 0.033333, "numnum:min:MAX_BBXMAX": -175.166667, "numnum:sum:MAX_BBXMAX": -366.591668, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 6.783333, "numnum:min:MIN_BBYMIN": -21.166667, "numnum:sum:MIN_BBYMIN": -11.266667000000002, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 6.783333, "numnum:min:MAX_BBYMIN": -21.166667, "numnum:sum:MAX_BBYMIN": -11.266667000000002, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 6.891667, "numnum:min:MIN_BBYMAX": -21.125, "numnum:sum:MIN_BBYMAX": -10.308333000000001, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 6.891667, "numnum:min:MAX_BBYMAX": -21.125, "numnum:sum:MAX_BBYMAX": -10.308333000000001, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": -0.188893, "numnum:min:MEAN_BBXC": -175.206798, "numnum:sum:MEAN_BBXC": -367.195285, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 6.831582, "numnum:min:MEAN_BBYC": -21.142325, "numnum:sum:MEAN_BBYC": -10.819466, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 204, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 6940, "numnum:sum:GN_POP": 6803773, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1561, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8010, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 342, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 848, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 6.3, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 17.17, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -10.79, "numnum:sum:UN_LONG": -15.009999999999998, "numnum:count:POP1950": 6, "numnum:max:POP1950": 177, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 257, "numnum:count:POP1955": 6, "numnum:max:POP1955": 265, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 424, "numnum:count:POP1960": 6, "numnum:max:POP1960": 393, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 660, "numnum:count:POP1965": 6, "numnum:max:POP1965": 499, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 930, "numnum:count:POP1970": 6, "numnum:max:POP1970": 631, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1343, "numnum:count:POP1975": 6, "numnum:max:POP1975": 966, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1930, "numnum:count:POP1980": 6, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2572, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3243, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4341, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4414, "numnum:count:POP2000": 6, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5542, "numnum:count:POP2005": 6, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6688, "numnum:count:POP2010": 6, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6964, "numnum:count:POP2015": 6, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7692, "numnum:count:POP2020": 6, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8955, "numnum:count:POP2025": 6, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10226, "numnum:count:POP2050": 6, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11496, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -0.214988, "numnum:min:LATITUDE": -16.497974, "numnum:sum:LATITUDE": -28.760975, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -68.149985, "numnum:min:LONGITUDE": -78.500051, "numnum:sum:LONGITUDE": -223.70009800000003, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 8012000, "numnum:min:POP_MAX": 1590000, "numnum:sum:POP_MAX": 11303000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 6758234, "numnum:min:POP_MIN": 812799, "numnum:sum:POP_MIN": 8970847, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 6068380, "numnum:min:POP_OTHER": 4400, "numnum:sum:POP_OTHER": 7508308, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 37, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 36, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3936456, "numnum:min:GEONAMEID": 3652462, "numnum:sum:GEONAMEID": 11500843, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 6758234, "numnum:min:MAX_POP10": 1472051, "numnum:sum:MAX_POP10": 9820767, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 7092933, "numnum:min:MAX_POP20": 1590482, "numnum:sum:MAX_POP20": 10575701, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 7115614, "numnum:min:MAX_POP50": 1590482, "numnum:sum:MAX_POP50": 10598382, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7115806, "numnum:min:MAX_POP300": 1590482, "numnum:sum:MAX_POP300": 10598574, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 724, "numnum:min:MIN_AREAKM": 181, "numnum:sum:MIN_AREAKM": 1239, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 790, "numnum:min:MAX_AREAKM": 181, "numnum:sum:MAX_AREAKM": 1467, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 279, "numnum:min:MIN_AREAMI": 70, "numnum:sum:MIN_AREAMI": 478, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 305, "numnum:min:MAX_AREAMI": 70, "numnum:sum:MAX_AREAMI": 566, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 315, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 669, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 384, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 864, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 196, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 416, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 239, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 537, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -68.258333, "numnum:min:MIN_BBXMIN": -78.591667, "numnum:sum:MIN_BBXMIN": -224.01666699999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -68.258333, "numnum:min:MAX_BBXMIN": -78.591667, "numnum:sum:MAX_BBXMIN": -224.00316099999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -68.05, "numnum:min:MIN_BBXMAX": -78.291667, "numnum:sum:MIN_BBXMAX": -223.191667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -68.05, "numnum:min:MAX_BBXMAX": -78.291667, "numnum:sum:MAX_BBXMAX": -223.175, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -0.391667, "numnum:min:MIN_BBYMIN": -16.575, "numnum:sum:MIN_BBYMIN": -29.283334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -0.30257, "numnum:min:MAX_BBYMIN": -16.575, "numnum:sum:MAX_BBYMIN": -29.159371, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 0.025, "numnum:min:MIN_BBYMAX": -16.433333, "numnum:sum:MIN_BBYMAX": -28.216666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 0.025, "numnum:min:MAX_BBYMAX": -16.433333, "numnum:sum:MAX_BBYMAX": -28.216666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -68.157765, "numnum:min:MEAN_BBXC": -78.460061, "numnum:sum:MEAN_BBXC": -223.62802499999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -0.198438, "numnum:min:MEAN_BBYC": -16.506439, "numnum:sum:MEAN_BBYC": -28.746350999999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 37, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7737002, "numnum:min:GN_POP": 812799, "numnum:sum:GN_POP": 9949615, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 3829, "numnum:min:GTOPO30": 108, "numnum:sum:GTOPO30": 6701, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 440, "numnum:min:UN_FID": 178, "numnum:sum:UN_FID": 1029, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 24.15, "numnum:min:UN_LAT": -12.08, "numnum:sum:UN_LAT": 11.849999999999998, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -77.04, "numnum:min:UN_LONG": -110.3, "numnum:sum:UN_LONG": -265.86, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1066, "numnum:min:POP1950": 206, "numnum:sum:POP1950": 1591, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1368, "numnum:min:POP1955": 257, "numnum:sum:POP1955": 1999, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1756, "numnum:min:POP1960": 319, "numnum:sum:POP1960": 2513, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2284, "numnum:min:POP1965": 399, "numnum:sum:POP1965": 3195, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2980, "numnum:min:POP1970": 501, "numnum:sum:POP1970": 4081, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3696, "numnum:min:POP1975": 628, "numnum:sum:POP1975": 5027, "numnum:count:POP1980": 3, "numnum:max:POP1980": 4438, "numnum:min:POP1980": 780, "numnum:sum:POP1980": 6027, "numnum:count:POP1985": 3, "numnum:max:POP1985": 5116, "numnum:min:POP1985": 927, "numnum:sum:POP1985": 6979, "numnum:count:POP1990": 3, "numnum:max:POP1990": 5837, "numnum:min:POP1990": 1062, "numnum:sum:POP1990": 7987, "numnum:count:POP1995": 3, "numnum:max:POP1995": 6537, "numnum:min:POP1995": 1217, "numnum:sum:POP1995": 9021, "numnum:count:POP2000": 3, "numnum:max:POP2000": 7116, "numnum:min:POP2000": 1357, "numnum:sum:POP2000": 9863, "numnum:count:POP2005": 3, "numnum:max:POP2005": 7747, "numnum:min:POP2005": 1527, "numnum:sum:POP2005": 10867, "numnum:count:POP2010": 3, "numnum:max:POP2010": 8012, "numnum:min:POP2010": 1590, "numnum:sum:POP2010": 11303, "numnum:count:POP2015": 3, "numnum:max:POP2015": 8375, "numnum:min:POP2015": 1692, "numnum:sum:POP2015": 11913, "numnum:count:POP2020": 3, "numnum:max:POP2020": 8857, "numnum:min:POP2020": 1864, "numnum:sum:POP2020": 12756, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9251, "numnum:min:POP2025": 2027, "numnum:sum:POP2025": 13467, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 2178, "numnum:sum:POP2050": 14094, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.175781 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -19.040971, "numnum:min:LATITUDE": -33.450014, "numnum:sum:LATITUDE": -85.53874900000001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -65.259516, "numnum:min:LONGITUDE": -71.621014, "numnum:sum:LONGITUDE": -207.547571, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5720000, "numnum:min:POP_MAX": 224838, "numnum:sum:POP_MAX": 6798838, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 221736, "numnum:min:POP_MIN": 15938, "numnum:sum:POP_MIN": 284285, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3066651, "numnum:min:POP_OTHER": 130815, "numnum:sum:POP_OTHER": 3419202, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3903987, "numnum:min:GEONAMEID": 3445575, "numnum:sum:GEONAMEID": 10799303, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3540014, "numnum:min:MAX_POP10": 144390, "numnum:sum:MAX_POP10": 3906140, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 5157058, "numnum:min:MAX_POP20": 221736, "numnum:sum:MAX_POP20": 6016654, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5157058, "numnum:min:MAX_POP50": 221736, "numnum:sum:MAX_POP50": 6016654, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5157058, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5378794, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 570, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 638, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 903, "numnum:min:MAX_AREAKM": 34, "numnum:sum:MAX_AREAKM": 1121, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 220, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 246, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 349, "numnum:min:MAX_AREAMI": 13, "numnum:sum:MAX_AREAMI": 433, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 310, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 375, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 741, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 193, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 234, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 461, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -65.3, "numnum:min:MIN_BBXMIN": -71.658333, "numnum:sum:MIN_BBXMIN": -207.91666600000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -65.3, "numnum:min:MAX_BBXMIN": -71.658333, "numnum:sum:MAX_BBXMIN": -207.758333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -65.225, "numnum:min:MIN_BBXMAX": -71.57441, "numnum:sum:MIN_BBXMAX": -207.25774299999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -65.225, "numnum:min:MAX_BBXMAX": -71.325, "numnum:sum:MAX_BBXMAX": -207.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -19.066667, "numnum:min:MIN_BBYMIN": -33.7, "numnum:sum:MIN_BBYMIN": -85.841667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -19.066667, "numnum:min:MAX_BBYMIN": -33.556142, "numnum:sum:MAX_BBYMIN": -85.697809, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -18.991667, "numnum:min:MIN_BBYMAX": -33.175, "numnum:sum:MIN_BBYMAX": -85.183334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -18.991667, "numnum:min:MAX_BBYMAX": -33.175, "numnum:sum:MAX_BBYMAX": -85.08333400000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -65.260317, "numnum:min:MEAN_BBXC": -71.541251, "numnum:sum:MEAN_BBXC": -207.46283799999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -19.030556, "numnum:min:MEAN_BBYC": -33.461735, "numnum:sum:MEAN_BBYC": -85.526939, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 51, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 224838, "numnum:min:GN_POP": 15938, "numnum:sum:GN_POP": 287387, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2759, "numnum:min:GTOPO30": 405, "numnum:sum:GTOPO30": 3605, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 18, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 35, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 8.1, "numnum:min:UN_LAT": -33.02, "numnum:sum:UN_LAT": -24.92, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -80.96, "numnum:sum:UN_LONG": -152.51, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1322, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1650, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1618, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1995, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1980, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2413, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2294, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2775, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2647, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3179, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3138, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3719, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3721, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4356, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4201, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4886, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4616, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5349, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4964, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5735, "numnum:count:POP2000": 3, "numnum:max:POP2000": 5275, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6078, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5599, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6437, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5720, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6574, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5879, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6759, "numnum:count:POP2020": 3, "numnum:max:POP2020": 6084, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7006, "numnum:count:POP2025": 3, "numnum:max:POP2025": 6224, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7180, "numnum:count:POP2050": 3, "numnum:max:POP2050": 6310, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7292, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum2": 1, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 2770, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 51, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 6, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 9, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 59.91669, "numnum:min:LATITUDE": -34.858042, "numnum:sum:LATITUDE": 66.673466, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": 18.097335, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -271.942266, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 835000, "numnum:sum:POP_MAX": 55023996, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 5324, "numnum:sum:POP_MIN": 28617266, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 29654359, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 125, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 108, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 5038018, "numnum:min:GEONAMEID": 1730025, "numnum:sum:GEONAMEID": 31896781, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 10, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 708489, "numnum:sum:MAX_POP10": 33250830, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 708489, "numnum:sum:MAX_POP20": 45434309, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 762374, "numnum:sum:MAX_POP50": 50586721, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 48273854, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 42149756, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1950, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 5806, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 300, "numnum:sum:MAX_AREAKM": 10089, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 2242, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 116, "numnum:sum:MAX_AREAMI": 3895, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 629, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 3424, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 266, "numnum:sum:MAX_PERKM": 5882, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 391, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 2126, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 165, "numnum:sum:MAX_PERMI": 3655, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": 17.775, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -274.96666700000005, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": 17.775, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -274.31517700000009, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": 18.408333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -269.83566499999997, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": 18.408333, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -268.667526, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 59.708333, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": 64.45000000000002, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 59.708333, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": 64.791002, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 60.066667, "numnum:min:MIN_BBYMAX": -34.65, "numnum:sum:MIN_BBYMAX": 68.162104, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 60.066667, "numnum:min:MAX_BBYMAX": -34.65, "numnum:sum:MAX_BBYMAX": 68.68333200000001, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": 18.044982, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -272.1681740000001, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 59.906118, "numnum:min:MEAN_BBYC": -34.828337, "numnum:sum:MEAN_BBYC": 66.54800400000002, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 142, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 5324, "numnum:sum:GN_POP": 34395266, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 284, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 284, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 1092, "numnum:min:GTOPO30": -2, "numnum:sum:GTOPO30": 2114, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 579, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 3884, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 59.93, "numnum:min:UN_LAT": -34.92, "numnum:sum:UN_LAT": 14.699999999999996, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 17.99, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -276.59000000000006, "numnum:count:POP1950": 10, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 13948, "numnum:count:POP1955": 10, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 16243, "numnum:count:POP1960": 10, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 19024, "numnum:count:POP1965": 10, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 22805, "numnum:count:POP1970": 10, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 27406, "numnum:count:POP1975": 10, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 31437, "numnum:count:POP1980": 10, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 36187, "numnum:count:POP1985": 10, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 39002, "numnum:count:POP1990": 10, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 42042, "numnum:count:POP1995": 10, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 45259, "numnum:count:POP2000": 10, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 48548, "numnum:count:POP2005": 10, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 52070, "numnum:count:POP2010": 10, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 53500, "numnum:count:POP2015": 10, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 55501, "numnum:count:POP2020": 10, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 58075, "numnum:count:POP2025": 10, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 59753, "numnum:count:POP2050": 10, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 60790, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 860, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 19, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 50.833317, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 191.811671, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 6.130003, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 14.313141, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 11808258, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 1019022, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 1129139, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 8792498, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 42, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 2800866, "numnum:sum:GEONAMEID": 15833802, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 9375270, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 10006208, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 13698319, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 13537061, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 13537061, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 2104, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 4842, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 812, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 1869, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 997, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 1659, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 2982, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 4993, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 620, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 1032, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 1853, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 3103, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 6.041667, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 12.758333, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 6.041667, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 13.661283000000001, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 6.183333, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 15.100003000000001, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 6.183333, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 15.700000000000001, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 50.6, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 191.133333, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 50.65, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 191.28333300000004, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 51.016667, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 192.45833299999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 51.408333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 192.84999900000003, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 6.125273, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 14.342182000000001, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 50.919556, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 191.89754699999998, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 63, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 1019022, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 1114773, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 48, "numnum:sum:GTOPO30": 1222, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 384, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 573, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 50.83, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 99.71000000000001, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 4.36, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 6.790000000000001, "numnum:count:POP1950": 4, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 7937, "numnum:count:POP1955": 4, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8245, "numnum:count:POP1960": 4, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8896, "numnum:count:POP1965": 4, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 9493, "numnum:count:POP1970": 4, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 9918, "numnum:count:POP1975": 4, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 10168, "numnum:count:POP1980": 4, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 10323, "numnum:count:POP1985": 4, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 10610, "numnum:count:POP1990": 4, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 11010, "numnum:count:POP1995": 4, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 11225, "numnum:count:POP2000": 4, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 11425, "numnum:count:POP2005": 4, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11594, "numnum:count:POP2010": 4, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11647, "numnum:count:POP2015": 4, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11702, "numnum:count:POP2020": 4, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11751, "numnum:count:POP2025": 4, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 11775, "numnum:count:POP2050": 4, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11780, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 370, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 47.133724, "numnum:min:LATITUDE": 46.210008, "numnum:sum:LATITUDE": 140.260415, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 9.516669, "numnum:min:LONGITUDE": 6.140028, "numnum:sum:LONGITUDE": 23.123672, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1240000, "numnum:min:POP_MAX": 36281, "numnum:sum:POP_MAX": 1551610, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 192385, "numnum:min:POP_MIN": 5342, "numnum:sum:POP_MIN": 319358, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 508284, "numnum:min:POP_OTHER": 33009, "numnum:sum:POP_OTHER": 809107, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 29, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3042030, "numnum:min:GEONAMEID": 2660646, "numnum:sum:GEONAMEID": 8364228, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 530422, "numnum:min:MAX_POP10": 45442, "numnum:sum:MAX_POP10": 851193, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 530422, "numnum:min:MAX_POP20": 45442, "numnum:sum:MAX_POP20": 851193, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 530422, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 805751, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 275329, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 275329, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 170, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 179, "numnum:min:MIN_AREAKM": 45, "numnum:sum:MIN_AREAKM": 302, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 179, "numnum:min:MAX_AREAKM": 45, "numnum:sum:MAX_AREAKM": 302, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 69, "numnum:min:MIN_AREAMI": 17, "numnum:sum:MIN_AREAMI": 116, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 69, "numnum:min:MAX_AREAMI": 17, "numnum:sum:MAX_AREAMI": 116, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 215, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 390, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 215, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 390, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 134, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 243, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 134, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 243, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 9.433333, "numnum:min:MIN_BBXMIN": 5.966667, "numnum:sum:MIN_BBXMIN": 22.775, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 9.433333, "numnum:min:MAX_BBXMIN": 5.966667, "numnum:sum:MAX_BBXMIN": 22.775, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 9.558333, "numnum:min:MIN_BBXMAX": 6.325, "numnum:sum:MIN_BBXMAX": 23.416666, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 9.558333, "numnum:min:MAX_BBXMAX": 6.325, "numnum:sum:MAX_BBXMAX": 23.416666, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 47.091667, "numnum:min:MIN_BBYMIN": 46.133333, "numnum:sum:MIN_BBYMIN": 140.125, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 47.091667, "numnum:min:MAX_BBYMIN": 46.133333, "numnum:sum:MAX_BBYMIN": 140.125, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 47.233333, "numnum:min:MIN_BBYMAX": 46.291667, "numnum:sum:MIN_BBYMAX": 140.566667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 47.233333, "numnum:min:MAX_BBYMAX": 46.291667, "numnum:sum:MAX_BBYMAX": 140.566667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 9.503734, "numnum:min:MEAN_BBXC": 6.1424, "numnum:sum:MEAN_BBXC": 23.099361000000003, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 47.167478, "numnum:min:MEAN_BBYC": 46.209427, "numnum:sum:MEAN_BBYC": 140.335144, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 183981, "numnum:min:GN_POP": 5197, "numnum:sum:GN_POP": 310809, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 711, "numnum:min:GTOPO30": 375, "numnum:sum:GTOPO30": 1613, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 21, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1390, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 46, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 8, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 5, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 55.678564, "numnum:min:LATITUDE": 43.739646, "numnum:sum:LATITUDE": 394.328677, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": 21, "numnum:min:LONGITUDE": 7.406913, "numnum:sum:LONGITUDE": 115.719531, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 16, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 3406000, "numnum:min:POP_MAX": 36371, "numnum:sum:POP_MAX": 10833704, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 3094014, "numnum:min:POP_MIN": 2087, "numnum:sum:POP_MIN": 8604692, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 3013258, "numnum:min:POP_OTHER": 102371, "numnum:sum:POP_OTHER": 9682230, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 88, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 80, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 4548393, "numnum:min:GEONAMEID": 756135, "numnum:sum:GEONAMEID": 23011184, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 3094014, "numnum:min:MAX_POP10": 108543, "numnum:sum:MAX_POP10": 10170482, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 3093307, "numnum:min:MAX_POP20": 108543, "numnum:sum:MAX_POP20": 10324455, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 3503466, "numnum:min:MAX_POP50": 108543, "numnum:sum:MAX_POP50": 10761531, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 3503466, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 10652988, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 3503466, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6370721, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1350, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 811, "numnum:min:MIN_AREAKM": 36, "numnum:sum:MIN_AREAKM": 3281, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 1021, "numnum:min:MAX_AREAKM": 36, "numnum:sum:MAX_AREAKM": 3675, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 313, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 1267, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 394, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 1419, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 759, "numnum:min:MIN_PERKM": 57, "numnum:sum:MIN_PERKM": 2770, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 759, "numnum:min:MAX_PERKM": 57, "numnum:sum:MAX_PERKM": 3244, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 471, "numnum:min:MIN_PERMI": 35, "numnum:sum:MIN_PERMI": 1720, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 471, "numnum:min:MAX_PERMI": 35, "numnum:sum:MAX_PERMI": 2015, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": 20.666667, "numnum:min:MIN_BBXMIN": 7.35, "numnum:sum:MIN_BBXMIN": 113.75000000000002, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": 20.666667, "numnum:min:MAX_BBXMIN": 7.35, "numnum:sum:MAX_BBXMIN": 114.18551000000001, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": 21.358333, "numnum:min:MIN_BBXMAX": 7.533333, "numnum:sum:MIN_BBXMAX": 117.499999, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": 21.358333, "numnum:min:MAX_BBXMAX": 7.533333, "numnum:sum:MAX_BBXMAX": 117.499999, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 55.4, "numnum:min:MIN_BBYMIN": 43.716667, "numnum:sum:MIN_BBYMIN": 392.975, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 55.583333, "numnum:min:MAX_BBYMIN": 43.716667, "numnum:sum:MAX_BBYMIN": 393.24999900000008, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 55.927962, "numnum:min:MIN_BBYMAX": 43.8, "numnum:sum:MIN_BBYMAX": 395.58629400000009, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 56.008333, "numnum:min:MAX_BBYMAX": 43.8, "numnum:sum:MAX_BBYMAX": 395.6666650000001, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": 21.031458, "numnum:min:MEAN_BBXC": 7.442529, "numnum:sum:MEAN_BBXC": 115.67317100000001, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 55.716213, "numnum:min:MEAN_BBYC": 43.754167, "numnum:sum:MEAN_BBYC": 394.35613800000007, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 78, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 202, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 3426354, "numnum:min:GN_POP": 1020, "numnum:sum:GN_POP": 8930764, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 308, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 553, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 306, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8981, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 418, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1279, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 55.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 258.76, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 21.01, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 77.64000000000002, "numnum:count:POP1950": 8, "numnum:max:POP1950": 3352, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8357, "numnum:count:POP1955": 8, "numnum:max:POP1955": 3299, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8522, "numnum:count:POP1960": 8, "numnum:max:POP1960": 3260, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8753, "numnum:count:POP1965": 8, "numnum:max:POP1965": 3232, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8935, "numnum:count:POP1970": 8, "numnum:max:POP1970": 3206, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 9032, "numnum:count:POP1975": 8, "numnum:max:POP1975": 3130, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8931, "numnum:count:POP1980": 8, "numnum:max:POP1980": 3056, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8945, "numnum:count:POP1985": 8, "numnum:max:POP1985": 3060, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8978, "numnum:count:POP1990": 8, "numnum:max:POP1990": 3422, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9393, "numnum:count:POP1995": 8, "numnum:max:POP1995": 3471, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9492, "numnum:count:POP2000": 8, "numnum:max:POP2000": 3384, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9457, "numnum:count:POP2005": 8, "numnum:max:POP2005": 3391, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9597, "numnum:count:POP2010": 8, "numnum:max:POP2010": 3406, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9675, "numnum:count:POP2015": 8, "numnum:max:POP2015": 3423, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9779, "numnum:count:POP2020": 8, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9871, "numnum:count:POP2025": 8, "numnum:max:POP2025": 3436, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9902, "numnum:count:POP2050": 8, "numnum:max:POP2050": 3436, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9923, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 7.382812, 43.707594 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 8, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 28, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 10, "numnum:sum:NATSCALE": 1040, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 35, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 41.895956, "numnum:sum:LATITUDE": 309.679137, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 19.266307, "numnum:min:LONGITUDE": 12.447808, "numnum:sum:LONGITUDE": 111.247347, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 16, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 832, "numnum:sum:POP_MAX": 6314729, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 1679000, "numnum:min:POP_MIN": 832, "numnum:sum:POP_MIN": 2883346, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5320091, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 63, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 2, "numnum:sum:RANK_MIN": 58, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 6691831, "numnum:min:GEONAMEID": 3054643, "numnum:sum:GEONAMEID": 26579603, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 29088, "numnum:sum:MAX_POP10": 5746209, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 29579, "numnum:sum:MAX_POP20": 5746700, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 5602787, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5602787, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 740, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 556, "numnum:min:MIN_AREAKM": 30, "numnum:sum:MIN_AREAKM": 1526, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 30, "numnum:sum:MAX_AREAKM": 1704, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 215, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 588, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 657, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 460, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 1342, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 1460, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 286, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 834, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 907, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 19.208333, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 110.35000000000001, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 19.208333, "numnum:min:MAX_BBXMIN": 12.333333, "numnum:sum:MAX_BBXMIN": 110.46716099999999, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 19.416667, "numnum:min:MIN_BBXMAX": 12.481009, "numnum:sum:MIN_BBXMAX": 112.222677, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 19.416667, "numnum:min:MAX_BBXMAX": 12.481009, "numnum:sum:MAX_BBXMAX": 112.222677, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 41.666667, "numnum:sum:MIN_BBYMIN": 308.9666669999999, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 41.666667, "numnum:sum:MAX_BBYMIN": 308.9666669999999, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 42.033333, "numnum:sum:MIN_BBYMAX": 310.341666, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 310.358333, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 19.263397, "numnum:min:MEAN_BBXC": 12.419907, "numnum:sum:MEAN_BBXC": 111.296301, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 41.864442, "numnum:sum:MEAN_BBYC": 309.647602, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 1696128, "numnum:min:GN_POP": 826, "numnum:sum:GN_POP": 3018347, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 545, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 1412, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 519, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 47.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 89.38, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 19.09, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 31.6, "numnum:count:POP1950": 7, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3502, "numnum:count:POP1955": 7, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3857, "numnum:count:POP1960": 7, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4267, "numnum:count:POP1965": 7, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4658, "numnum:count:POP1970": 7, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5081, "numnum:count:POP1975": 7, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5305, "numnum:count:POP1980": 7, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5447, "numnum:count:POP1985": 7, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5465, "numnum:count:POP1990": 7, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5455, "numnum:count:POP1995": 7, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5318, "numnum:count:POP2000": 7, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5172, "numnum:count:POP2005": 7, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5041, "numnum:count:POP2010": 7, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5018, "numnum:count:POP2015": 7, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4997, "numnum:count:POP2020": 7, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4985, "numnum:count:POP2025": 7, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4985, "numnum:count:POP2050": 7, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4985, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 43.961191 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 47, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 60.175563, "numnum:min:LATITUDE": 41.327541, "numnum:sum:LATITUDE": 290.422342, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 24.934126, "numnum:min:LONGITUDE": 19.818883, "numnum:sum:LONGITUDE": 132.548486, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1115000, "numnum:min:POP_MAX": 394024, "numnum:sum:POP_MAX": 4462647, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1099000, "numnum:min:POP_MIN": 198214, "numnum:sum:POP_MIN": 3091873, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 1271541, "numnum:min:POP_OTHER": 261783, "numnum:sum:POP_OTHER": 3623913, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 65, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 62, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3183875, "numnum:min:GEONAMEID": 588409, "numnum:sum:GEONAMEID": 6795745, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 1291613, "numnum:min:MAX_POP10": 265361, "numnum:sum:MAX_POP10": 3773562, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 1291613, "numnum:min:MAX_POP20": 265361, "numnum:sum:MAX_POP20": 3773562, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 1291613, "numnum:min:MAX_POP50": 265361, "numnum:sum:MAX_POP50": 3773562, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 1291613, "numnum:min:MAX_POP300": 265361, "numnum:sum:MAX_POP300": 3773562, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 513, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 1081, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 513, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 1081, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 198, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 417, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 198, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 417, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 550, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 1145, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 550, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 1145, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 342, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 712, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 342, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 712, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 24.591667, "numnum:min:MIN_BBXMIN": 19.733333, "numnum:sum:MIN_BBXMIN": 131.566667, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 24.591667, "numnum:min:MAX_BBXMIN": 19.733333, "numnum:sum:MAX_BBXMIN": 131.566667, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 25.191667, "numnum:min:MIN_BBXMAX": 19.875, "numnum:sum:MIN_BBXMAX": 133.29999999999999, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 25.191667, "numnum:min:MAX_BBXMAX": 19.875, "numnum:sum:MAX_BBXMAX": 133.29999999999999, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 60.116667, "numnum:min:MIN_BBYMIN": 41.275, "numnum:sum:MIN_BBYMIN": 289.991667, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 60.116667, "numnum:min:MAX_BBYMIN": 41.275, "numnum:sum:MAX_BBYMIN": 289.991667, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 60.433333, "numnum:min:MIN_BBYMAX": 41.4, "numnum:sum:MIN_BBYMAX": 291.058333, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 60.433333, "numnum:min:MAX_BBYMAX": 41.4, "numnum:sum:MAX_BBYMAX": 291.058333, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 24.910042, "numnum:min:MEAN_BBXC": 19.805556, "numnum:sum:MEAN_BBXC": 132.488339, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 60.254779, "numnum:min:MEAN_BBYC": 41.339474, "numnum:sum:MEAN_BBYC": 290.489433, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 50, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 65, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1273651, "numnum:min:GN_POP": 374801, "numnum:sum:GN_POP": 3625822, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 668, "numnum:min:GTOPO30": 22, "numnum:sum:GTOPO30": 1152, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 448, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 631, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 60.19, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 104.97999999999999, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 24.97, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 45.379999999999998, "numnum:count:POP1950": 6, "numnum:max:POP1950": 411, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 777, "numnum:count:POP1955": 6, "numnum:max:POP1955": 501, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 906, "numnum:count:POP1960": 6, "numnum:max:POP1960": 576, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1024, "numnum:count:POP1965": 6, "numnum:max:POP1965": 649, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1127, "numnum:count:POP1970": 6, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1236, "numnum:count:POP1975": 6, "numnum:max:POP1975": 873, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1455, "numnum:count:POP1980": 6, "numnum:max:POP1980": 1057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1731, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1121, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1845, "numnum:count:POP1990": 6, "numnum:max:POP1990": 1162, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2034, "numnum:count:POP1995": 6, "numnum:max:POP1995": 1149, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2092, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1127, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2146, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1106, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2200, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1115, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2214, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1139, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2235, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1169, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2277, "numnum:count:POP2025": 6, "numnum:max:POP2025": 1195, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2327, "numnum:count:POP2050": 6, "numnum:max:POP2050": 1220, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2383, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.840291 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 56.950024, "numnum:min:LATITUDE": 53.899977, "numnum:sum:LATITUDE": 165.533367, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 27.566627, "numnum:min:LONGITUDE": 24.099965, "numnum:sum:LONGITUDE": 76.983227, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1805000, "numnum:min:POP_MAX": 542366, "numnum:sum:POP_MAX": 3089938, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1577138, "numnum:min:POP_MIN": 507029, "numnum:sum:POP_MIN": 2789200, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1557919, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2052275, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 625144, "numnum:min:GEONAMEID": 456172, "numnum:sum:GEONAMEID": 1674432, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1577138, "numnum:min:MAX_POP10": 507029, "numnum:sum:MAX_POP10": 2789200, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1577138, "numnum:min:MAX_POP20": 507029, "numnum:sum:MAX_POP20": 2789200, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1577138, "numnum:min:MAX_POP50": 507029, "numnum:sum:MAX_POP50": 2789200, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1577138, "numnum:min:MAX_POP300": 507029, "numnum:sum:MAX_POP300": 2789200, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 211, "numnum:min:MIN_AREAKM": 126, "numnum:sum:MIN_AREAKM": 508, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 211, "numnum:min:MAX_AREAKM": 126, "numnum:sum:MAX_AREAKM": 508, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 82, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 197, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 82, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 197, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 196, "numnum:min:MIN_PERKM": 162, "numnum:sum:MIN_PERKM": 531, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 196, "numnum:min:MAX_PERKM": 162, "numnum:sum:MAX_PERKM": 531, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 122, "numnum:min:MIN_PERMI": 101, "numnum:sum:MIN_PERMI": 331, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 122, "numnum:min:MAX_PERMI": 101, "numnum:sum:MAX_PERMI": 331, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 27.408333, "numnum:min:MIN_BBXMIN": 23.975, "numnum:sum:MIN_BBXMIN": 76.55, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 27.408333, "numnum:min:MAX_BBXMIN": 23.975, "numnum:sum:MAX_BBXMIN": 76.55, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 27.716667, "numnum:min:MIN_BBXMAX": 24.266667, "numnum:sum:MIN_BBXMAX": 77.375001, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 27.716667, "numnum:min:MAX_BBXMAX": 24.266667, "numnum:sum:MAX_BBXMAX": 77.375001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 56.875, "numnum:min:MIN_BBYMIN": 53.8, "numnum:sum:MIN_BBYMIN": 165.25, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 56.875, "numnum:min:MAX_BBYMIN": 53.8, "numnum:sum:MAX_BBYMIN": 165.25, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 57.083333, "numnum:min:MIN_BBYMAX": 53.983333, "numnum:sum:MIN_BBYMAX": 165.841666, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 57.083333, "numnum:min:MAX_BBYMAX": 53.983333, "numnum:sum:MAX_BBYMAX": 165.841666, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 27.562159, "numnum:min:MEAN_BBXC": 24.127656, "numnum:sum:MEAN_BBXC": 76.94943800000002, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 56.953571, "numnum:min:MEAN_BBYC": 53.893169, "numnum:sum:MEAN_BBYC": 165.538803, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 65, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 95, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1742124, "numnum:min:GN_POP": 542366, "numnum:sum:GN_POP": 3027062, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 199, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 333, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 4, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 4, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 53.89, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 53.89, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 27.57, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 27.57, "numnum:count:POP1950": 3, "numnum:max:POP1950": 284, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 284, "numnum:count:POP1955": 3, "numnum:max:POP1955": 414, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 414, "numnum:count:POP1960": 3, "numnum:max:POP1960": 551, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 551, "numnum:count:POP1965": 3, "numnum:max:POP1965": 719, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 719, "numnum:count:POP1970": 3, "numnum:max:POP1970": 932, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 932, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1120, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1120, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1318, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1318, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1474, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1474, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1607, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1607, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1649, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1649, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1700, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1700, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1775, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1775, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1805, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1805, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1846, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1846, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1879, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1879, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1883, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1883, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1883, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1883, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 24.082031, 56.944974 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1920, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 33, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 55.752164, "numnum:min:LATITUDE": 41.104996, "numnum:sum:LATITUDE": 281.412272, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 37.615523, "numnum:min:LONGITUDE": 23.316654, "numnum:sum:LONGITUDE": 175.416465, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 10452000, "numnum:min:POP_MAX": 688134, "numnum:sum:POP_MAX": 27037134, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 10452000, "numnum:min:POP_MIN": 635994, "numnum:sum:POP_MIN": 25313133, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 10585385, "numnum:min:POP_OTHER": 664472, "numnum:sum:POP_OTHER": 25021346, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 75, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 73, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 745044, "numnum:min:GEONAMEID": 524901, "numnum:sum:GEONAMEID": 4002336, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 11029015, "numnum:min:MAX_POP10": 688134, "numnum:sum:MAX_POP10": 25942288, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 11030955, "numnum:min:MAX_POP20": 688134, "numnum:sum:MAX_POP20": 25943861, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 11547877, "numnum:min:MAX_POP50": 688134, "numnum:sum:MAX_POP50": 26656490, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 11547877, "numnum:min:MAX_POP300": 688134, "numnum:sum:MAX_POP300": 26656490, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 11547877, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21688827, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 109, "numnum:sum:MIN_AREAKM": 3571, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 1639, "numnum:min:MAX_AREAKM": 109, "numnum:sum:MAX_AREAKM": 3854, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 42, "numnum:sum:MIN_AREAMI": 1379, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 633, "numnum:min:MAX_AREAMI": 42, "numnum:sum:MAX_AREAMI": 1488, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 875, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 2463, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 1135, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 2797, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 544, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 1531, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 705, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 1738, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 37.233333, "numnum:min:MIN_BBXMIN": 23.208333, "numnum:sum:MIN_BBXMIN": 173.575, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 37.233333, "numnum:min:MAX_BBXMIN": 23.208333, "numnum:sum:MAX_BBXMIN": 173.632268, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 38.075401, "numnum:min:MIN_BBXMAX": 23.45, "numnum:sum:MIN_BBXMAX": 176.725401, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 38.3, "numnum:min:MAX_BBXMAX": 23.45, "numnum:sum:MAX_BBXMAX": 177.058333, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 55.341667, "numnum:min:MIN_BBYMIN": 40.75, "numnum:sum:MIN_BBYMIN": 280.30000099999998, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 55.533007, "numnum:min:MAX_BBYMIN": 40.75, "numnum:sum:MAX_BBYMIN": 280.491341, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 56.075, "numnum:min:MIN_BBYMAX": 41.258333, "numnum:sum:MIN_BBYMAX": 282.391667, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 56.075, "numnum:min:MAX_BBYMAX": 41.258333, "numnum:sum:MAX_BBYMAX": 282.391667, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 37.643636, "numnum:min:MEAN_BBXC": 23.328319, "numnum:sum:MEAN_BBXC": 175.355957, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 55.754996, "numnum:min:MEAN_BBYC": 41.004964, "numnum:sum:MEAN_BBYC": 281.35468899999997, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 57, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 155, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 11174257, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 17354189, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 558, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 878, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 511, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1863, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 55.74, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 234.37, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 37.7, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 146.65, "numnum:count:POP1950": 6, "numnum:max:POP1950": 5356, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8312, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5749, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9444, "numnum:count:POP1960": 6, "numnum:max:POP1960": 6170, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 10496, "numnum:count:POP1965": 6, "numnum:max:POP1965": 6622, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 11972, "numnum:count:POP1970": 6, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 13817, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7623, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 15828, "numnum:count:POP1980": 6, "numnum:max:POP1980": 8136, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 17673, "numnum:count:POP1985": 6, "numnum:max:POP1985": 8580, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 19528, "numnum:count:POP1990": 6, "numnum:max:POP1990": 8987, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 21344, "numnum:count:POP1995": 6, "numnum:max:POP1995": 9201, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 22642, "numnum:count:POP2000": 6, "numnum:max:POP2000": 10016, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 24443, "numnum:count:POP2005": 6, "numnum:max:POP2005": 10416, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 25899, "numnum:count:POP2010": 6, "numnum:max:POP2010": 10452, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 26349, "numnum:count:POP2015": 6, "numnum:max:POP2015": 10530, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 26932, "numnum:count:POP2020": 6, "numnum:max:POP2020": 11177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 27653, "numnum:count:POP2025": 6, "numnum:max:POP2025": 11695, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 28178, "numnum:count:POP2050": 6, "numnum:max:POP2050": 12102, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 28585, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.457504 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 41.72501, "numnum:min:LATITUDE": 36.763065, "numnum:sum:LATITUDE": 115.290853, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.790795, "numnum:min:LONGITUDE": 3.050553, "numnum:sum:LONGITUDE": 58.021026000000009, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3354000, "numnum:min:POP_MAX": 1100000, "numnum:sum:POP_MAX": 6866500, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1977663, "numnum:min:POP_MIN": 728453, "numnum:sum:POP_MIN": 3711373, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3332619, "numnum:min:POP_OTHER": 977179, "numnum:sum:POP_OTHER": 5984915, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2507480, "numnum:min:GEONAMEID": 611717, "numnum:sum:GEONAMEID": 5583667, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3368320, "numnum:min:MAX_POP10": 1005257, "numnum:sum:MAX_POP10": 6204753, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3698473, "numnum:min:MAX_POP20": 1005257, "numnum:sum:MAX_POP20": 6534906, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 4203253, "numnum:min:MAX_POP50": 1007529, "numnum:sum:MAX_POP50": 7049754, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 4203253, "numnum:min:MAX_POP300": 1007529, "numnum:sum:MAX_POP300": 7049754, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 886, "numnum:min:MIN_AREAKM": 131, "numnum:sum:MIN_AREAKM": 1497, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1275, "numnum:min:MAX_AREAKM": 135, "numnum:sum:MAX_AREAKM": 1912, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 342, "numnum:min:MIN_AREAMI": 51, "numnum:sum:MIN_AREAMI": 578, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 492, "numnum:min:MAX_AREAMI": 52, "numnum:sum:MAX_AREAMI": 738, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 798, "numnum:min:MIN_PERKM": 128, "numnum:sum:MIN_PERKM": 1411, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1192, "numnum:min:MAX_PERKM": 133, "numnum:sum:MAX_PERKM": 1849, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 496, "numnum:min:MIN_PERMI": 80, "numnum:sum:MIN_PERMI": 878, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 741, "numnum:min:MAX_PERMI": 83, "numnum:sum:MAX_PERMI": 1150, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.708333, "numnum:min:MIN_BBXMIN": 2.641667, "numnum:sum:MIN_BBXMIN": 57.3, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.708333, "numnum:min:MAX_BBXMIN": 2.808333, "numnum:sum:MAX_BBXMIN": 57.466666000000007, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.933333, "numnum:min:MIN_BBXMAX": 3.548211, "numnum:sum:MIN_BBXMAX": 58.979129, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.933333, "numnum:min:MAX_BBXMAX": 3.741667, "numnum:sum:MAX_BBXMAX": 59.25, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 41.616667, "numnum:min:MIN_BBYMIN": 36.45, "numnum:sum:MIN_BBYMIN": 114.69999999999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 41.627355, "numnum:min:MAX_BBYMIN": 36.508333, "numnum:sum:MAX_BBYMIN": 114.76902100000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 41.825, "numnum:min:MIN_BBYMAX": 36.816667, "numnum:sum:MIN_BBYMAX": 115.60833400000002, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 41.825, "numnum:min:MAX_BBYMAX": 36.816667, "numnum:sum:MAX_BBYMAX": 115.60833400000002, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.822812, "numnum:min:MEAN_BBXC": 3.101671, "numnum:sum:MEAN_BBXC": 58.126524, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 41.722167, "numnum:min:MEAN_BBYC": 36.673641, "numnum:sum:MEAN_BBYC": 115.198782, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 38, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 39, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1977663, "numnum:min:GN_POP": 693210, "numnum:sum:GN_POP": 3720371, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 420, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 434, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 191, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 197, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 41.72, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 78.5, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.78, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 47.83, "numnum:count:POP1950": 3, "numnum:max:POP1950": 612, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1128, "numnum:count:POP1955": 3, "numnum:max:POP1955": 659, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1282, "numnum:count:POP1960": 3, "numnum:max:POP1960": 872, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1590, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1049, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1852, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1254, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2151, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1499, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2491, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1621, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2711, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1672, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2849, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1908, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3132, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2295, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3455, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2754, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3854, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3199, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4292, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3354, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4454, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3574, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4682, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3922, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5035, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4235, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5349, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4499, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5613, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 44.824219, 41.705729 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1290, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 39, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 2, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 35.899732, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 107.767457, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 14.514711, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 39.562284000000008, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 9466000, "numnum:min:POP_MAX": 300000, "numnum:sum:POP_MAX": 15452250, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 1536, "numnum:sum:POP_MIN": 2655143, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 6567892, "numnum:min:POP_OTHER": 336174, "numnum:sum:POP_OTHER": 11893672, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 79, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 61, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 2562305, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 12890459, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 7147910, "numnum:min:MAX_POP10": 336921, "numnum:sum:MAX_POP10": 11915837, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 7105663, "numnum:min:MAX_POP20": 336921, "numnum:sum:MAX_POP20": 11846571, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 7411389, "numnum:min:MAX_POP50": 336921, "numnum:sum:MAX_POP50": 12152741, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 7453740, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 11773896, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1035, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 2271, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 1332, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 2775, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 400, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 877, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 514, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 1070, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 638, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 1750, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 882, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 2226, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 397, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 1088, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 548, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 1384, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 14.408333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 38.058744, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 14.408333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 38.225796, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 14.55, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 40.64962400000001, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 14.55, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 40.87499900000001, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 35.816667, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 107.30833400000002, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 35.816667, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 107.30833400000002, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 35.941667, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 108.76753599999999, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 35.941667, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 109.07499999999999, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 14.483034, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 39.323606000000008, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 35.881672, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 107.94327200000001, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 71, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 1536, "numnum:sum:GN_POP": 2686415, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 31, "numnum:sum:GTOPO30": 569, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1792, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 34.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 66.75, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 36, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 45.05, "numnum:count:POP1950": 7, "numnum:max:POP1950": 305, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 488, "numnum:count:POP1955": 7, "numnum:max:POP1955": 468, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 724, "numnum:count:POP1960": 7, "numnum:max:POP1960": 762, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1162, "numnum:count:POP1965": 7, "numnum:max:POP1965": 1135, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1704, "numnum:count:POP1970": 7, "numnum:max:POP1970": 1414, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2296, "numnum:count:POP1975": 7, "numnum:max:POP1975": 1890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3196, "numnum:count:POP1980": 7, "numnum:max:POP1980": 2572, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4324, "numnum:count:POP1985": 7, "numnum:max:POP1985": 3500, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5778, "numnum:count:POP1990": 7, "numnum:max:POP1990": 4764, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 7819, "numnum:count:POP1995": 7, "numnum:max:POP1995": 5966, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9559, "numnum:count:POP2000": 7, "numnum:max:POP2000": 7233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 11455, "numnum:count:POP2005": 7, "numnum:max:POP2005": 8767, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 13746, "numnum:count:POP2010": 7, "numnum:max:POP2010": 9466, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 14784, "numnum:count:POP2015": 7, "numnum:max:POP2015": 10572, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 16431, "numnum:count:POP2020": 7, "numnum:max:POP2020": 12403, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 19235, "numnum:count:POP2025": 7, "numnum:max:POP2025": 14134, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22033, "numnum:count:POP2050": 7, "numnum:max:POP2050": 15796, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 24881, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.916485 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 660, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 30, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 12.113097, "numnum:min:LATITUDE": 0.333402, "numnum:sum:LATITUDE": 29.531937, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 15.049148, "numnum:min:LONGITUDE": 6.733325, "numnum:sum:LONGITUDE": 59.073695, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1611000, "numnum:min:POP_MAX": 88219, "numnum:sum:POP_MAX": 4998338, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1060587, "numnum:min:POP_MIN": 56166, "numnum:sum:POP_MIN": 2599593, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 1060747, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2318835, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 63, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 59, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3388092, "numnum:min:GEONAMEID": 2220957, "numnum:sum:GEONAMEID": 15068190, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 1060587, "numnum:min:MAX_POP10": 314, "numnum:sum:MAX_POP10": 2969120, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 1060587, "numnum:min:MAX_POP20": 314, "numnum:sum:MAX_POP20": 2969120, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 1060587, "numnum:min:MAX_POP50": 314, "numnum:sum:MAX_POP50": 2969120, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 1060587, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 2313862, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 197, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 591, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 197, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 591, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 76, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 227, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 76, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 227, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 162, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 490, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 162, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 490, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 101, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 305, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 101, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 305, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 15.025, "numnum:min:MIN_BBXMIN": 6.691667, "numnum:sum:MIN_BBXMIN": 58.583332999999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 15.025, "numnum:min:MAX_BBXMIN": 6.691667, "numnum:sum:MAX_BBXMIN": 58.583332999999999, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 15.133333, "numnum:min:MIN_BBXMAX": 6.75, "numnum:sum:MIN_BBXMAX": 59.266667000000008, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 15.133333, "numnum:min:MAX_BBXMAX": 6.75, "numnum:sum:MAX_BBXMAX": 59.266667000000008, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 12.066667, "numnum:min:MIN_BBYMIN": 0.283333, "numnum:sum:MIN_BBYMIN": 28.758333, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 12.066667, "numnum:min:MAX_BBYMIN": 0.283333, "numnum:sum:MAX_BBYMIN": 28.758333, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 12.183333, "numnum:min:MIN_BBYMAX": 0.391667, "numnum:sum:MIN_BBYMAX": 29.566665999999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 12.183333, "numnum:min:MAX_BBYMAX": 0.391667, "numnum:sum:MAX_BBYMAX": 29.566665999999999, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 15.079167, "numnum:min:MEAN_BBXC": 6.719032, "numnum:sum:MEAN_BBXC": 58.936707999999999, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 12.120479, "numnum:min:MEAN_BBYC": 0.338176, "numnum:sum:MEAN_BBYC": 29.136887, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 22, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 42, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1299369, "numnum:min:GN_POP": 6137, "numnum:sum:GN_POP": 2922841, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 733, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8375, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 386, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 411, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 12.1, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 25.009999999999999, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 15.24, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 34, "numnum:count:POP1950": 6, "numnum:max:POP1950": 32, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 72, "numnum:count:POP1955": 6, "numnum:max:POP1955": 49, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 110, "numnum:count:POP1960": 6, "numnum:max:POP1960": 75, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 169, "numnum:count:POP1965": 6, "numnum:max:POP1965": 112, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 250, "numnum:count:POP1970": 6, "numnum:max:POP1970": 183, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 386, "numnum:count:POP1975": 6, "numnum:max:POP1975": 292, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 600, "numnum:count:POP1980": 6, "numnum:max:POP1980": 415, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 864, "numnum:count:POP1985": 6, "numnum:max:POP1985": 578, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1175, "numnum:count:POP1990": 6, "numnum:max:POP1990": 754, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1561, "numnum:count:POP1995": 6, "numnum:max:POP1995": 948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2053, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1192, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2735, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1489, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3706, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1611, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4176, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1994, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4908, "numnum:count:POP2020": 6, "numnum:max:POP2020": 2558, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6021, "numnum:count:POP2025": 6, "numnum:max:POP2025": 2971, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7036, "numnum:count:POP2050": 6, "numnum:max:POP2050": 3358, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8079, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.102097 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 11, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1520, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 4.366644, "numnum:sum:LATITUDE": 179.573836, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 34.770012, "numnum:min:LONGITUDE": 18.558288, "numnum:sum:LONGITUDE": 174.542616, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 13, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 11893000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 23019225, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 7734614, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 12972711, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 13720557, "numnum:min:POP_OTHER": 112572, "numnum:sum:POP_OTHER": 20412815, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 71, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2389853, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 3778302, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 14936123, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 23938090, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 15091561, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 24750227, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 29872827, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 39570532, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 30682197, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 38055334, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 30696820, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30696820, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 750, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1479, "numnum:min:MIN_AREAKM": 90, "numnum:sum:MIN_AREAKM": 3004, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 4900, "numnum:min:MAX_AREAKM": 103, "numnum:sum:MAX_AREAKM": 6610, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 571, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 1159, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 1892, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 2551, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1365, "numnum:min:MIN_PERKM": 91, "numnum:sum:MIN_PERKM": 2505, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 5010, "numnum:min:MAX_PERKM": 107, "numnum:sum:MAX_PERKM": 6273, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 848, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 1558, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 3113, "numnum:min:MAX_PERMI": 67, "numnum:sum:MAX_PERMI": 3899, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 34.716667, "numnum:min:MIN_BBXMIN": 18.491667, "numnum:sum:MIN_BBXMIN": 173.033334, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 34.716667, "numnum:min:MAX_BBXMIN": 18.491667, "numnum:sum:MAX_BBXMIN": 173.491694, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 34.958333, "numnum:min:MIN_BBXMAX": 18.614651, "numnum:sum:MIN_BBXMAX": 175.59508, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 34.958333, "numnum:min:MAX_BBXMAX": 18.625, "numnum:sum:MAX_BBXMAX": 175.66666600000003, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 4.316667, "numnum:sum:MIN_BBYMIN": 178.250001, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 4.316667, "numnum:sum:MAX_BBYMIN": 178.758334, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 4.483333, "numnum:sum:MIN_BBYMAX": 180.72302, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 4.483333, "numnum:sum:MAX_BBYMAX": 181.349999, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 34.836735, "numnum:min:MEAN_BBXC": 18.546436, "numnum:sum:MEAN_BBXC": 174.504652, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 4.388157, "numnum:sum:MEAN_BBYC": 179.91195799999998, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 106, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7734614, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 13102136, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8476, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 515, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1517, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 139.97, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 34.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 122.50999999999999, "numnum:count:POP1950": 6, "numnum:max:POP1950": 2494, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 4540, "numnum:count:POP1955": 6, "numnum:max:POP1955": 3029, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 5587, "numnum:count:POP1960": 6, "numnum:max:POP1960": 3680, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 6867, "numnum:count:POP1965": 6, "numnum:max:POP1965": 4738, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8695, "numnum:count:POP1970": 6, "numnum:max:POP1970": 5585, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 10440, "numnum:count:POP1975": 6, "numnum:max:POP1975": 6450, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 12103, "numnum:count:POP1980": 6, "numnum:max:POP1980": 7349, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 13643, "numnum:count:POP1985": 6, "numnum:max:POP1985": 8328, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 15269, "numnum:count:POP1990": 6, "numnum:max:POP1990": 9061, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 16718, "numnum:count:POP1995": 6, "numnum:max:POP1995": 9707, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 18113, "numnum:count:POP2000": 6, "numnum:max:POP2000": 10534, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 19644, "numnum:count:POP2005": 6, "numnum:max:POP2005": 11487, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 21301, "numnum:count:POP2010": 6, "numnum:max:POP2010": 11893, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 21963, "numnum:count:POP2015": 6, "numnum:max:POP2015": 12503, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 22923, "numnum:count:POP2020": 6, "numnum:max:POP2020": 13465, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 24374, "numnum:count:POP2025": 6, "numnum:max:POP2025": 14451, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 25754, "numnum:count:POP2050": 6, "numnum:max:POP2050": 15561, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 27202, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.390229 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.181151, "numnum:min:LATITUDE": 33.500034, "numnum:sum:LATITUDE": 107.55315999999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.513551, "numnum:min:LONGITUDE": 35.509708, "numnum:sum:LONGITUDE": 116.32325500000002, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2466000, "numnum:min:POP_MAX": 1102000, "numnum:sum:POP_MAX": 5414000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2466000, "numnum:min:POP_MIN": 1093485, "numnum:sum:POP_MIN": 5271610, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3344577, "numnum:min:POP_OTHER": 1154748, "numnum:sum:POP_OTHER": 6161305, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 36, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 616052, "numnum:min:GEONAMEID": 170654, "numnum:sum:GEONAMEID": 1063487, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3398649, "numnum:min:MAX_POP10": 1200842, "numnum:sum:MAX_POP10": 6311616, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3865606, "numnum:min:MAX_POP20": 1200842, "numnum:sum:MAX_POP20": 6778916, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3865606, "numnum:min:MAX_POP50": 1200842, "numnum:sum:MAX_POP50": 6807140, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3865606, "numnum:min:MAX_POP300": 1200842, "numnum:sum:MAX_POP300": 6807140, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 532, "numnum:min:MIN_AREAKM": 191, "numnum:sum:MIN_AREAKM": 1152, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 705, "numnum:min:MAX_AREAKM": 191, "numnum:sum:MAX_AREAKM": 1367, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 445, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 272, "numnum:min:MAX_AREAMI": 74, "numnum:sum:MAX_AREAMI": 528, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 608, "numnum:min:MIN_PERKM": 166, "numnum:sum:MIN_PERKM": 1177, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 768, "numnum:min:MAX_PERKM": 166, "numnum:sum:MAX_PERKM": 1391, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 378, "numnum:min:MIN_PERMI": 103, "numnum:sum:MIN_PERMI": 732, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 477, "numnum:min:MAX_PERMI": 103, "numnum:sum:MAX_PERMI": 864, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.391667, "numnum:min:MIN_BBXMIN": 35.441667, "numnum:sum:MIN_BBXMIN": 115.883334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.391667, "numnum:min:MAX_BBXMIN": 35.441667, "numnum:sum:MAX_BBXMIN": 115.883334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.6, "numnum:min:MIN_BBXMAX": 35.718541, "numnum:sum:MIN_BBXMAX": 116.793464, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.6, "numnum:min:MAX_BBXMAX": 35.758333, "numnum:sum:MAX_BBXMAX": 116.908333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 39.925, "numnum:min:MIN_BBYMIN": 33.283333, "numnum:sum:MIN_BBYMIN": 106.908333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.925, "numnum:min:MAX_BBYMIN": 33.283333, "numnum:sum:MAX_BBYMIN": 106.908333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.241667, "numnum:min:MIN_BBYMAX": 33.611711, "numnum:sum:MIN_BBYMAX": 108.02004500000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.241667, "numnum:min:MAX_BBYMAX": 33.625, "numnum:sum:MAX_BBYMAX": 108.033334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.506293, "numnum:min:MEAN_BBXC": 35.600789, "numnum:sum:MEAN_BBXC": 116.382201, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.127356, "numnum:min:MEAN_BBYC": 33.474283, "numnum:sum:MEAN_BBYC": 107.49444599999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1916100, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 3009585, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1002, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 1058, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 493, "numnum:min:UN_FID": 341, "numnum:sum:UN_FID": 1211, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.2, "numnum:min:UN_LAT": 33.49, "numnum:sum:UN_LAT": 107.57000000000001, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.53, "numnum:min:UN_LONG": 35.49, "numnum:sum:UN_LONG": 116.31, "numnum:count:POP1950": 3, "numnum:max:POP1950": 367, "numnum:min:POP1950": 322, "numnum:sum:POP1950": 1030, "numnum:count:POP1955": 3, "numnum:max:POP1955": 461, "numnum:min:POP1955": 425, "numnum:sum:POP1955": 1317, "numnum:count:POP1960": 3, "numnum:max:POP1960": 579, "numnum:min:POP1960": 538, "numnum:sum:POP1960": 1678, "numnum:count:POP1965": 3, "numnum:max:POP1965": 733, "numnum:min:POP1965": 648, "numnum:sum:POP1965": 2108, "numnum:count:POP1970": 3, "numnum:max:POP1970": 923, "numnum:min:POP1970": 778, "numnum:sum:POP1970": 2615, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1500, "numnum:min:POP1975": 911, "numnum:sum:POP1975": 3533, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1623, "numnum:min:POP1980": 1042, "numnum:sum:POP1980": 4041, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1585, "numnum:min:POP1985": 1123, "numnum:sum:POP1985": 4254, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1691, "numnum:min:POP1990": 1175, "numnum:sum:POP1990": 4159, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1849, "numnum:min:POP1995": 1142, "numnum:sum:POP1995": 4259, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2044, "numnum:min:POP2000": 1111, "numnum:sum:POP2000": 4642, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2330, "numnum:min:POP2005": 1103, "numnum:sum:POP2005": 5210, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2466, "numnum:min:POP2010": 1102, "numnum:sum:POP2010": 5414, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2675, "numnum:min:POP2015": 1102, "numnum:sum:POP2015": 5718, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2981, "numnum:min:POP2020": 1102, "numnum:sum:POP2020": 6134, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3293, "numnum:min:POP2025": 1102, "numnum:sum:POP2025": 6514, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3605, "numnum:min:POP2050": 1102, "numnum:sum:POP2050": 6880, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 26, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1540, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 53, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 9, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 33.338648, "numnum:min:LATITUDE": 0.316659, "numnum:sum:LATITUDE": 169.118189, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": 44.393869, "numnum:min:LONGITUDE": 31.580026, "numnum:sum:LONGITUDE": 377.219247, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 20, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 44, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 5054000, "numnum:min:POP_MAX": 111975, "numnum:sum:POP_MAX": 20081077, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 5054000, "numnum:min:POP_MIN": 111975, "numnum:sum:POP_MIN": 16116336, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 4959534, "numnum:min:POP_OTHER": 111975, "numnum:sum:POP_OTHER": 18935693, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 116, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 115, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 379252, "numnum:min:GEONAMEID": 71137, "numnum:sum:GEONAMEID": 2598017, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 10, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 5298025, "numnum:min:MAX_POP10": 111975, "numnum:sum:MAX_POP10": 19535564, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 5298025, "numnum:min:MAX_POP20": 111975, "numnum:sum:MAX_POP20": 20685411, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 5298025, "numnum:min:MAX_POP50": 111975, "numnum:sum:MAX_POP50": 21170401, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 5298025, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 23164075, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 950, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 587, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 2764, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 1182, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 3968, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 227, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 1067, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 457, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 1533, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 397, "numnum:min:MIN_PERKM": 30, "numnum:sum:MIN_PERKM": 2186, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 1325, "numnum:min:MAX_PERKM": 30, "numnum:sum:MAX_PERKM": 3483, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 247, "numnum:min:MIN_PERMI": 18, "numnum:sum:MIN_PERMI": 1358, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 823, "numnum:min:MAX_PERMI": 18, "numnum:sum:MAX_PERMI": 2163, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": 44.241667, "numnum:min:MIN_BBXMIN": 31.575, "numnum:sum:MIN_BBXMIN": 376.133334, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": 44.241667, "numnum:min:MAX_BBXMIN": 31.575, "numnum:sum:MAX_BBXMIN": 376.29999999999998, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": 44.575, "numnum:min:MIN_BBXMAX": 31.625, "numnum:sum:MIN_BBXMAX": 378.4166680000001, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": 44.575, "numnum:min:MAX_BBXMAX": 31.625, "numnum:sum:MAX_BBXMAX": 379.05000000000009, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 33.141667, "numnum:min:MIN_BBYMIN": 0.033333, "numnum:sum:MIN_BBYMIN": 166.841666, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 33.141667, "numnum:min:MAX_BBYMIN": 0.166719, "numnum:sum:MAX_BBYMIN": 167.61349900000003, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 33.575, "numnum:min:MIN_BBYMAX": 0.475, "numnum:sum:MIN_BBYMAX": 170.37442099999999, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 33.575, "numnum:min:MAX_BBYMAX": 0.475, "numnum:sum:MAX_BBYMAX": 170.58333299999999, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": 44.401776, "numnum:min:MEAN_BBXC": 31.6015, "numnum:sum:MEAN_BBXC": 377.489905, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 33.332697, "numnum:min:MEAN_BBYC": 0.323809, "numnum:sum:MEAN_BBYC": 168.91988999999999, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 166, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 5672513, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 14935756, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 2363, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 8460, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 587, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2362, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 33.33, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 105.51999999999998, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 44.39, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 228.31, "numnum:count:POP1950": 10, "numnum:max:POP1950": 579, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1385, "numnum:count:POP1955": 10, "numnum:max:POP1955": 719, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1730, "numnum:count:POP1960": 10, "numnum:max:POP1960": 1019, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2312, "numnum:count:POP1965": 10, "numnum:max:POP1965": 1614, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3298, "numnum:count:POP1970": 10, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4295, "numnum:count:POP1975": 10, "numnum:max:POP1975": 2620, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5471, "numnum:count:POP1980": 10, "numnum:max:POP1980": 3145, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 6827, "numnum:count:POP1985": 10, "numnum:max:POP1985": 3607, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8427, "numnum:count:POP1990": 10, "numnum:max:POP1990": 4092, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10502, "numnum:count:POP1995": 10, "numnum:max:POP1995": 4598, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12916, "numnum:count:POP2000": 10, "numnum:max:POP2000": 5200, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 15111, "numnum:count:POP2005": 10, "numnum:max:POP2005": 5327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 16908, "numnum:count:POP2010": 10, "numnum:max:POP2010": 5054, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 17396, "numnum:count:POP2015": 10, "numnum:max:POP2015": 5891, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 19577, "numnum:count:POP2020": 10, "numnum:max:POP2020": 6618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 22998, "numnum:count:POP2025": 10, "numnum:max:POP2025": 7345, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 26855, "numnum:count:POP2050": 10, "numnum:max:POP2050": 8060, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 31092, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.358062 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1040, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 51.181125, "numnum:min:LATITUDE": 9.560022, "numnum:sum:LATITUDE": 229.126212, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 87.575006, "numnum:min:LONGITUDE": 44.06531, "numnum:sum:LONGITUDE": 396.81044399999998, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 2184000, "numnum:min:POP_MAX": 345604, "numnum:sum:POP_MAX": 8117780, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 1978028, "numnum:min:POP_MIN": 247018, "numnum:sum:POP_MIN": 6754504, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 2806287, "numnum:min:POP_OTHER": 247018, "numnum:sum:POP_OTHER": 7715666, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 67, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 1529102, "numnum:min:GEONAMEID": 57289, "numnum:sum:GEONAMEID": 6740992, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 2865234, "numnum:min:MAX_POP10": 247018, "numnum:sum:MAX_POP10": 7888618, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 2865890, "numnum:min:MAX_POP20": 247018, "numnum:sum:MAX_POP20": 7889662, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 2865890, "numnum:min:MAX_POP50": 247018, "numnum:sum:MAX_POP50": 7889662, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 2865890, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 7642644, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 639, "numnum:min:MIN_AREAKM": 40, "numnum:sum:MIN_AREAKM": 1635, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 643, "numnum:min:MAX_AREAKM": 40, "numnum:sum:MAX_AREAKM": 1642, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 247, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 630, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 248, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 632, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 377, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 1197, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 383, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 1208, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 234, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 744, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 238, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 751, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 87.358333, "numnum:min:MIN_BBXMIN": 44.025, "numnum:sum:MIN_BBXMIN": 395.883333, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 87.358333, "numnum:min:MAX_BBXMIN": 44.025, "numnum:sum:MAX_BBXMIN": 395.9, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 87.725, "numnum:min:MIN_BBXMAX": 44.1, "numnum:sum:MIN_BBXMAX": 397.61146699999997, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 87.725, "numnum:min:MAX_BBXMAX": 44.1, "numnum:sum:MAX_BBXMAX": 397.625, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 51.1, "numnum:min:MIN_BBYMIN": 9.516667, "numnum:sum:MIN_BBYMIN": 228.48333499999996, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 51.1, "numnum:min:MAX_BBYMIN": 9.516667, "numnum:sum:MAX_BBYMIN": 228.48333499999996, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 51.225, "numnum:min:MIN_BBYMAX": 9.591667, "numnum:sum:MIN_BBYMAX": 229.816667, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 51.225, "numnum:min:MAX_BBYMAX": 9.591667, "numnum:sum:MAX_BBYMAX": 229.816667, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 87.578494, "numnum:min:MEAN_BBXC": 44.06445, "numnum:sum:MEAN_BBXC": 396.817607, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 51.164443, "numnum:min:MEAN_BBYC": 9.557004, "numnum:sum:MEAN_BBYC": 229.184125, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 61, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 1978028, "numnum:min:GN_POP": 345604, "numnum:sum:GN_POP": 6326246, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1247, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 3763, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 580, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1238, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 43.78, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 168.21, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 87.58, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 281.5, "numnum:count:POP1950": 6, "numnum:max:POP1950": 897, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2055, "numnum:count:POP1955": 6, "numnum:max:POP1955": 940, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2281, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1005, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2589, "numnum:count:POP1965": 6, "numnum:max:POP1965": 1165, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3091, "numnum:count:POP1970": 6, "numnum:max:POP1970": 1403, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3691, "numnum:count:POP1975": 6, "numnum:max:POP1975": 1612, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4241, "numnum:count:POP1980": 6, "numnum:max:POP1980": 1818, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4811, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1958, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5230, "numnum:count:POP1990": 6, "numnum:max:POP1990": 2100, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5629, "numnum:count:POP1995": 6, "numnum:max:POP1995": 2116, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6002, "numnum:count:POP2000": 6, "numnum:max:POP2000": 2135, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6441, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2158, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6867, "numnum:count:POP2010": 6, "numnum:max:POP2010": 2184, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 7064, "numnum:count:POP2015": 6, "numnum:max:POP2015": 2340, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7387, "numnum:count:POP2020": 6, "numnum:max:POP2020": 2620, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7976, "numnum:count:POP2025": 6, "numnum:max:POP2025": 2851, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8595, "numnum:count:POP2050": 6, "numnum:max:POP2050": 3038, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9213, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 44.033203, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1500, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 34, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 35.671943, "numnum:min:LATITUDE": 24.640833, "numnum:sum:LATITUDE": 166.435182, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 55.279974, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 303.571381, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 1, "numnum:sum:CHANGED": 23, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 7873000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 17793920, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 7153309, "numnum:min:POP_MIN": 60064, "numnum:sum:POP_MIN": 13445465, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 8209012, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 16771302, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 72, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 65, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 292223, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 1379721, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 8258981, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 17803167, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 8258981, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 19264495, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 8258981, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 19264495, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 8258981, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 19264495, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 2244726, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2244726, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 854, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 2249, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 854, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 2571, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 330, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 868, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 330, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 992, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 459, "numnum:min:MIN_PERKM": 158, "numnum:sum:MIN_PERKM": 1413, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 459, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 1620, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 285, "numnum:min:MIN_PERMI": 98, "numnum:sum:MIN_PERMI": 878, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 285, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 1007, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 55.175, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 302.508334, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 55.175, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 302.52938600000007, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 55.437142, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 304.287141, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 55.533333, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 304.433332, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 35.55, "numnum:min:MIN_BBYMIN": 24.516667, "numnum:sum:MIN_BBYMIN": 165.44166699999998, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 35.55, "numnum:min:MAX_BBYMIN": 24.516667, "numnum:sum:MAX_BBYMIN": 165.6, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 35.825, "numnum:min:MIN_BBYMAX": 24.833333, "numnum:sum:MIN_BBYMAX": 167.016666, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 35.825, "numnum:min:MAX_BBYMAX": 24.833333, "numnum:sum:MAX_BBYMAX": 167.141666, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 55.361736, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 303.523998, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 35.709171, "numnum:min:MEAN_BBYC": 24.678984, "numnum:sum:MEAN_BBYC": 166.36985700000003, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 42, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 7153309, "numnum:min:GN_POP": 60064, "numnum:sum:GN_POP": 13048694, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1149, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8190, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 498, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1578, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 35.77, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 115.07000000000001, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 55.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 201.5, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1041, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1235, "numnum:count:POP1955": 6, "numnum:max:POP1955": 1396, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1661, "numnum:count:POP1960": 6, "numnum:max:POP1960": 1873, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2248, "numnum:count:POP1965": 6, "numnum:max:POP1965": 2511, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3092, "numnum:count:POP1970": 6, "numnum:max:POP1970": 3290, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4331, "numnum:count:POP1975": 6, "numnum:max:POP1975": 4273, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5838, "numnum:count:POP1980": 6, "numnum:max:POP1980": 5079, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7279, "numnum:count:POP1985": 6, "numnum:max:POP1985": 5839, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8872, "numnum:count:POP1990": 6, "numnum:max:POP1990": 6365, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10555, "numnum:count:POP1995": 6, "numnum:max:POP1995": 6687, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 11562, "numnum:count:POP2000": 6, "numnum:max:POP2000": 7128, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 13132, "numnum:count:POP2005": 6, "numnum:max:POP2005": 7653, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 15006, "numnum:count:POP2010": 6, "numnum:max:POP2010": 7873, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 15780, "numnum:count:POP2015": 6, "numnum:max:POP2015": 8221, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 16898, "numnum:count:POP2020": 6, "numnum:max:POP2020": 8832, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 18538, "numnum:count:POP2025": 6, "numnum:max:POP2025": 9404, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 19954, "numnum:count:POP2050": 6, "numnum:max:POP2050": 9814, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 21122, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 850, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 45, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 38.560035, "numnum:min:LATITUDE": 2.066681, "numnum:sum:LATITUDE": 161.17341, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 69.18326, "numnum:min:LONGITUDE": 45.366678, "numnum:sum:LONGITUDE": 354.66702100000006, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 3277000, "numnum:min:POP_MAX": 603492, "numnum:sum:POP_MAX": 7529133, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 3043532, "numnum:min:POP_MIN": 560230, "numnum:sum:POP_MIN": 6323393, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3475519, "numnum:min:POP_OTHER": 556048, "numnum:sum:POP_OTHER": 7109411, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 69, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 1221874, "numnum:min:GEONAMEID": 53654, "numnum:sum:GEONAMEID": 3156923, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3720671, "numnum:min:MAX_POP10": 560230, "numnum:sum:MAX_POP10": 7407376, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3720671, "numnum:min:MAX_POP20": 560230, "numnum:sum:MAX_POP20": 7418718, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 4803365, "numnum:min:MAX_POP50": 560230, "numnum:sum:MAX_POP50": 8501412, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 4793793, "numnum:min:MAX_POP300": 560230, "numnum:sum:MAX_POP300": 8491840, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 594, "numnum:min:MIN_AREAKM": 96, "numnum:sum:MIN_AREAKM": 1416, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 1471, "numnum:min:MAX_AREAKM": 96, "numnum:sum:MAX_AREAKM": 2313, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 229, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 546, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 568, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 892, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 411, "numnum:min:MIN_PERKM": 68, "numnum:sum:MIN_PERKM": 1205, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 1100, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 1931, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 255, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 749, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 683, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 1200, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 68.866667, "numnum:min:MIN_BBXMIN": 45.25, "numnum:sum:MIN_BBXMIN": 353.608334, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 68.866667, "numnum:min:MAX_BBXMIN": 45.25, "numnum:sum:MAX_BBXMIN": 353.694704, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 69.308333, "numnum:min:MIN_BBXMAX": 45.416667, "numnum:sum:MIN_BBXMAX": 355.48333299999998, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 69.783333, "numnum:min:MAX_BBXMAX": 45.416667, "numnum:sum:MAX_BBXMAX": 355.9583329999999, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 38.416667, "numnum:min:MIN_BBYMIN": 2, "numnum:sum:MIN_BBYMIN": 160.66666700000003, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 38.416667, "numnum:min:MAX_BBYMIN": 2, "numnum:sum:MAX_BBYMIN": 160.66666700000003, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 38.675, "numnum:min:MIN_BBYMAX": 2.116667, "numnum:sum:MIN_BBYMAX": 161.74381400000002, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 38.675, "numnum:min:MAX_BBYMAX": 2.116667, "numnum:sum:MAX_BBYMAX": 162.141668, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 69.144173, "numnum:min:MEAN_BBXC": 45.331178, "numnum:sum:MEAN_BBXC": 354.59688600000006, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 38.542754, "numnum:min:MEAN_BBYC": 2.054239, "numnum:sum:MEAN_BBYC": 161.27533, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 23, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 3043532, "numnum:min:GN_POP": 543107, "numnum:sum:GN_POP": 8302014, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1808, "numnum:min:GTOPO30": 14, "numnum:sum:GTOPO30": 2957, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 454, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 774, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 34.53, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 36.57, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 69.13, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 114.47, "numnum:count:POP1950": 6, "numnum:max:POP1950": 129, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 198, "numnum:count:POP1955": 6, "numnum:max:POP1955": 184, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 257, "numnum:count:POP1960": 6, "numnum:max:POP1960": 263, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 357, "numnum:count:POP1965": 6, "numnum:max:POP1965": 369, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 515, "numnum:count:POP1970": 6, "numnum:max:POP1970": 472, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 744, "numnum:count:POP1975": 6, "numnum:max:POP1975": 674, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1119, "numnum:count:POP1980": 6, "numnum:max:POP1980": 978, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1529, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1160, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1907, "numnum:count:POP1990": 6, "numnum:max:POP1990": 1306, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2341, "numnum:count:POP1995": 6, "numnum:max:POP1995": 1616, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2763, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1963, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3164, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2994, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4409, "numnum:count:POP2010": 6, "numnum:max:POP2010": 3277, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4377, "numnum:count:POP2015": 6, "numnum:max:POP2015": 3768, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5268, "numnum:count:POP2020": 6, "numnum:max:POP2020": 4730, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6524, "numnum:count:POP2025": 6, "numnum:max:POP2025": 5836, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7978, "numnum:count:POP2050": 6, "numnum:max:POP2050": 7175, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9704, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 54.404297, 24.447150 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 520, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 33.699996, "numnum:min:LATITUDE": 27.716692, "numnum:sum:LATITUDE": 90.016711, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 85.316642, "numnum:min:LONGITUDE": 73.166634, "numnum:sum:LONGITUDE": 235.683256, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 895000, "numnum:min:POP_MAX": 317797, "numnum:sum:POP_MAX": 1992797, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 895000, "numnum:min:POP_MIN": 317797, "numnum:sum:POP_MIN": 1814397, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 8060107, "numnum:min:POP_OTHER": 893673, "numnum:sum:POP_OTHER": 10053390, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1283240, "numnum:min:GEONAMEID": 1176615, "numnum:sum:GEONAMEID": 3721336, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 8761047, "numnum:min:MAX_POP10": 742356, "numnum:sum:MAX_POP10": 10657625, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 13414375, "numnum:min:MAX_POP20": 742356, "numnum:sum:MAX_POP20": 16454361, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 32426336, "numnum:min:MAX_POP50": 2297630, "numnum:sum:MAX_POP50": 42206001, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 32424761, "numnum:min:MAX_POP300": 2297630, "numnum:sum:MAX_POP300": 42205360, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 224908923, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 224908923, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 864, "numnum:min:MIN_AREAKM": 233, "numnum:sum:MIN_AREAKM": 1869, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 186559, "numnum:min:MAX_AREAKM": 580, "numnum:sum:MAX_AREAKM": 192602, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 334, "numnum:min:MIN_AREAMI": 90, "numnum:sum:MIN_AREAMI": 722, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 72030, "numnum:min:MAX_AREAMI": 224, "numnum:sum:MAX_AREAMI": 74363, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 545, "numnum:min:MIN_PERKM": 228, "numnum:sum:MIN_PERKM": 1017, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 130296, "numnum:min:MAX_PERKM": 511, "numnum:sum:MAX_PERKM": 134961, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 142, "numnum:sum:MIN_PERMI": 633, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 80962, "numnum:min:MAX_PERMI": 318, "numnum:sum:MAX_PERMI": 83861, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 85.108333, "numnum:min:MIN_BBXMIN": 71.033333, "numnum:sum:MIN_BBXMIN": 228.42813, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 85.108333, "numnum:min:MAX_BBXMIN": 73.033333, "numnum:sum:MAX_BBXMIN": 235.08495499999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 85.450066, "numnum:min:MIN_BBXMAX": 73.516667, "numnum:sum:MIN_BBXMAX": 236.39856300000003, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 85.675, "numnum:min:MAX_BBXMAX": 73.816667, "numnum:sum:MAX_BBXMAX": 242.058334, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 32.7, "numnum:min:MIN_BBYMIN": 24, "numnum:sum:MIN_BBYMIN": 84.241667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 33.258333, "numnum:min:MAX_BBYMIN": 27.669456, "numnum:sum:MAX_BBYMIN": 89.079796, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 33.766667, "numnum:min:MIN_BBYMAX": 27.85, "numnum:sum:MIN_BBYMAX": 90.35529600000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 34.533333, "numnum:min:MAX_BBYMAX": 27.85, "numnum:sum:MAX_BBYMAX": 95.85, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 85.356097, "numnum:min:MEAN_BBXC": 73.182617, "numnum:sum:MEAN_BBXC": 235.811659, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 33.557939, "numnum:min:MEAN_BBYC": 27.697735, "numnum:sum:MEAN_BBYC": 89.638211, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1442271, "numnum:min:GN_POP": 317797, "numnum:sum:GN_POP": 2361668, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 1317, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 1317, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1304, "numnum:min:GTOPO30": 205, "numnum:sum:GTOPO30": 2006, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 401, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 779, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 33.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 61.42, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 85.31, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 158.37, "numnum:count:POP1950": 3, "numnum:max:POP1950": 104, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 140, "numnum:count:POP1955": 3, "numnum:max:POP1955": 110, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 151, "numnum:count:POP1960": 3, "numnum:max:POP1960": 119, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 164, "numnum:count:POP1965": 3, "numnum:max:POP1965": 132, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 188, "numnum:count:POP1970": 3, "numnum:max:POP1970": 147, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 217, "numnum:count:POP1975": 3, "numnum:max:POP1975": 180, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 287, "numnum:count:POP1980": 3, "numnum:max:POP1980": 225, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 414, "numnum:count:POP1985": 3, "numnum:max:POP1985": 297, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 557, "numnum:count:POP1990": 3, "numnum:max:POP1990": 398, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 741, "numnum:count:POP1995": 3, "numnum:max:POP1995": 509, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 961, "numnum:count:POP2000": 3, "numnum:max:POP2000": 644, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1238, "numnum:count:POP2005": 3, "numnum:max:POP2005": 815, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1547, "numnum:count:POP2010": 3, "numnum:max:POP2010": 895, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1675, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1029, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1880, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1284, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2272, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1578, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2726, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1907, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3227, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 73.212891, 33.724340 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1830, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 27.472986, "numnum:min:LATITUDE": 4.166708, "numnum:sum:LATITUDE": 93.05361400000001, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 89.639014, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 481.738387, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 11, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 2, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 98676, "numnum:sum:POP_MAX": 40980603, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 79185, "numnum:sum:POP_MIN": 22827153, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 30803487, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 68, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 66, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 3465927, "numnum:min:GEONAMEID": 1252416, "numnum:sum:GEONAMEID": 11720205, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 112927, "numnum:sum:MAX_POP10": 32191049, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 112927, "numnum:sum:MAX_POP20": 50038388, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 48715672, "numnum:min:MAX_POP50": 112927, "numnum:sum:MAX_POP50": 80550674, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 87652060, "numnum:min:MAX_POP300": 112927, "numnum:sum:MAX_POP300": 126503914, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 20149761, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2490, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 6469, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 53331, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 63925, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 962, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 2498, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 20591, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 24681, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1908, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 3071, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 35493, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 44344, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 1186, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 1909, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 22054, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 27554, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 89.591667, "numnum:min:MIN_BBXMIN": 72.758333, "numnum:sum:MIN_BBXMIN": 478.408333, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 89.591667, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 480.656111, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 89.675, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 483.11904699999999, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 89.683333, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 484.905426, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 27.408333, "numnum:min:MIN_BBYMIN": 4.166667, "numnum:sum:MIN_BBYMIN": 88.57500100000002, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 27.408333, "numnum:min:MAX_BBYMIN": 4.166667, "numnum:sum:MAX_BBYMIN": 91.70296300000001, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 27.558333, "numnum:min:MIN_BBYMAX": 4.183333, "numnum:sum:MIN_BBYMAX": 94.59215600000002, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 27.558333, "numnum:min:MAX_BBYMAX": 4.183333, "numnum:sum:MAX_BBYMAX": 97.626627, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 89.637539, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 481.845914, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 27.477943, "numnum:min:MEAN_BBYC": 4.175, "numnum:sum:MEAN_BBYC": 93.523138, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 2, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 28, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 118, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 2138, "numnum:sum:GN_POP": 22745089, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 2320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 3240, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 2737, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 5278, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 253, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 717, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 22.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 54.58, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 88.33, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 238.72999999999997, "numnum:count:POP1950": 6, "numnum:max:POP1950": 4513, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8116, "numnum:count:POP1955": 6, "numnum:max:POP1955": 5055, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 9426, "numnum:count:POP1960": 6, "numnum:max:POP1960": 5652, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 10878, "numnum:count:POP1965": 6, "numnum:max:POP1965": 6261, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 12492, "numnum:count:POP1970": 6, "numnum:max:POP1970": 6926, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 14352, "numnum:count:POP1975": 6, "numnum:max:POP1975": 7888, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 17081, "numnum:count:POP1980": 6, "numnum:max:POP1980": 9030, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 20500, "numnum:count:POP1985": 6, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 23682, "numnum:count:POP1990": 6, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 27234, "numnum:count:POP1995": 6, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 30779, "numnum:count:POP2000": 6, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 34711, "numnum:count:POP2005": 6, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 38949, "numnum:count:POP2010": 6, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 40552, "numnum:count:POP2015": 6, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 42878, "numnum:count:POP2020": 6, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 46952, "numnum:count:POP2025": 6, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 51553, "numnum:count:POP2050": 6, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 56664, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 660, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 47.916673, "numnum:min:LATITUDE": 6.900004, "numnum:sum:LATITUDE": 109.209737, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 106.916616, "numnum:min:LONGITUDE": 79.949993, "numnum:sum:LONGITUDE": 381.345207, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 12797394, "numnum:min:POP_MAX": 115826, "numnum:sum:POP_MAX": 17921220, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 7000940, "numnum:min:POP_MIN": 115826, "numnum:sum:POP_MIN": 11836815, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 14995538, "numnum:min:POP_OTHER": 765359, "numnum:sum:POP_OTHER": 29840118, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 46, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 45, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2028462, "numnum:min:GEONAMEID": 1185241, "numnum:sum:GEONAMEID": 6267981, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 14548962, "numnum:min:MAX_POP10": 769612, "numnum:sum:MAX_POP10": 27462767, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 21394172, "numnum:min:MAX_POP20": 769612, "numnum:sum:MAX_POP20": 36962642, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 53845691, "numnum:min:MAX_POP50": 769612, "numnum:sum:MAX_POP50": 83679315, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 78549234, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 79318846, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 5912, "numnum:min:MIN_AREAKM": 143, "numnum:sum:MIN_AREAKM": 10848, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 49912, "numnum:min:MAX_AREAKM": 143, "numnum:sum:MAX_AREAKM": 77142, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 2283, "numnum:min:MIN_AREAMI": 55, "numnum:sum:MIN_AREAMI": 4188, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 19271, "numnum:min:MAX_AREAMI": 55, "numnum:sum:MAX_AREAMI": 29785, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 2296, "numnum:min:MIN_PERKM": 144, "numnum:sum:MIN_PERKM": 5027, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 19314, "numnum:min:MAX_PERKM": 144, "numnum:sum:MAX_PERKM": 33746, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 1427, "numnum:min:MIN_PERMI": 89, "numnum:sum:MIN_PERMI": 3123, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 12001, "numnum:min:MAX_PERMI": 89, "numnum:sum:MAX_PERMI": 20968, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 106.725, "numnum:min:MIN_BBXMIN": 79.866667, "numnum:sum:MIN_BBXMIN": 377.850458, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 106.725, "numnum:min:MAX_BBXMIN": 79.883827, "numnum:sum:MAX_BBXMIN": 379.89216, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 107.041667, "numnum:min:MIN_BBXMAX": 80.366283, "numnum:sum:MIN_BBXMAX": 382.65806000000006, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 107.041667, "numnum:min:MAX_BBXMAX": 80.733333, "numnum:sum:MAX_BBXMAX": 386.058333, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 47.883333, "numnum:min:MIN_BBYMIN": 5.916667, "numnum:sum:MIN_BBYMIN": 105.39710099999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 47.883333, "numnum:min:MAX_BBYMIN": 6.708333, "numnum:sum:MAX_BBYMIN": 108.140058, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 48.016667, "numnum:min:MIN_BBYMAX": 7.34579, "numnum:sum:MIN_BBYMAX": 110.693197, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 48.016667, "numnum:min:MAX_BBYMAX": 7.34579, "numnum:sum:MAX_BBYMAX": 112.287457, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 106.883013, "numnum:min:MEAN_BBXC": 80.0976, "numnum:sum:MEAN_BBXC": 381.42053400000006, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 47.932237, "numnum:min:MEAN_BBYC": 6.842005, "numnum:sum:MEAN_BBYC": 109.365792, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 20, "numnum:sum:ADMIN1_COD": 169, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 10356500, "numnum:min:GN_POP": 115826, "numnum:sum:GN_POP": 15267581, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1299, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 1867, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 369, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 767, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 47.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 102.29, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 106.91, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 301.38, "numnum:count:POP1950": 4, "numnum:max:POP1950": 768, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1174, "numnum:count:POP1955": 4, "numnum:max:POP1955": 922, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1443, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1106, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1793, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1327, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2396, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1592, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3264, "numnum:count:POP1975": 4, "numnum:max:POP1975": 2221, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4488, "numnum:count:POP1980": 4, "numnum:max:POP1980": 3266, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5982, "numnum:count:POP1985": 4, "numnum:max:POP1985": 4660, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7791, "numnum:count:POP1990": 4, "numnum:max:POP1990": 6621, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10148, "numnum:count:POP1995": 4, "numnum:max:POP1995": 8332, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 12396, "numnum:count:POP2000": 4, "numnum:max:POP2000": 10285, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14967, "numnum:count:POP2005": 4, "numnum:max:POP2005": 12576, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 17497, "numnum:count:POP2010": 4, "numnum:max:POP2010": 13485, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 18493, "numnum:count:POP2015": 4, "numnum:max:POP2015": 14796, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 19981, "numnum:count:POP2020": 4, "numnum:max:POP2020": 17015, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 22627, "numnum:count:POP2025": 4, "numnum:max:POP2025": 19422, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 25480, "numnum:count:POP2050": 4, "numnum:max:POP2050": 22015, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 28447, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 79.980469, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 14, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1030, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 36, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": 21.033327, "numnum:min:LATITUDE": 11.55003, "numnum:sum:LATITUDE": 100.84996000000001, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 105.850014, "numnum:min:LONGITUDE": 96.118619, "numnum:sum:LONGITUDE": 606.16857, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 18320000, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 194824, "numnum:sum:POP_MIN": 12068738, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 5466347, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 15747092, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 71, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 69, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 6611854, "numnum:min:GEONAMEID": 1298824, "numnum:sum:GEONAMEID": 14574408, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 5620806, "numnum:min:MAX_POP10": 194824, "numnum:sum:MAX_POP10": 16464954, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 194824, "numnum:sum:MAX_POP20": 21690309, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 16406759, "numnum:min:MAX_POP50": 194824, "numnum:sum:MAX_POP50": 31236667, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 23700631, "numnum:min:MAX_POP300": 194824, "numnum:sum:MAX_POP300": 38525846, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 2512, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 4391, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 14049, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 17540, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 970, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 1695, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 5424, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 6772, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1175, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 2676, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 10267, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 12955, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 730, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 1663, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 6380, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 8050, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 104.975, "numnum:min:MIN_BBXMIN": 96.025, "numnum:sum:MIN_BBXMIN": 604.0666679999999, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 105.616287, "numnum:min:MAX_BBXMIN": 96.025, "numnum:sum:MAX_BBXMIN": 604.932955, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 106.2294, "numnum:min:MIN_BBXMAX": 96.266667, "numnum:sum:MIN_BBXMAX": 607.3403599999999, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 106.808333, "numnum:min:MAX_BBXMAX": 96.266667, "numnum:sum:MAX_BBXMAX": 608.1833340000001, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 19.633333, "numnum:min:MIN_BBYMIN": 11.291667, "numnum:sum:MIN_BBYMIN": 98.22500000000001, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 20.620237, "numnum:min:MAX_BBYMIN": 11.291667, "numnum:sum:MAX_BBYMIN": 99.65357100000002, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 21.319209, "numnum:min:MIN_BBYMAX": 11.691667, "numnum:sum:MIN_BBYMAX": 101.77483699999999, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 21.783333, "numnum:min:MAX_BBYMAX": 11.691667, "numnum:sum:MAX_BBYMAX": 102.524999, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 105.892881, "numnum:min:MEAN_BBXC": 96.144646, "numnum:sum:MEAN_BBXC": 606.222231, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 20.873406, "numnum:min:MEAN_BBYC": 11.488418, "numnum:sum:MEAN_BBYC": 100.669211, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 136, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 12783659, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 339, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 957, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 21.03, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 82.96000000000001, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 105.82, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 503.46000000000006, "numnum:count:POP1950": 6, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3306, "numnum:count:POP1955": 6, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3953, "numnum:count:POP1960": 6, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 4776, "numnum:count:POP1965": 6, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 5697, "numnum:count:POP1970": 6, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7263, "numnum:count:POP1975": 6, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7977, "numnum:count:POP1980": 6, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 9945, "numnum:count:POP1985": 6, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 11189, "numnum:count:POP1990": 6, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 12536, "numnum:count:POP1995": 6, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 13579, "numnum:count:POP2000": 6, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 14797, "numnum:count:POP2005": 6, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 16100, "numnum:count:POP2010": 6, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 17566, "numnum:count:POP2015": 6, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 18664, "numnum:count:POP2020": 6, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 20735, "numnum:count:POP2025": 6, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22982, "numnum:count:POP2050": 6, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 25327, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 96.152344, 19.725342 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 850, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 3.166666, "numnum:min:LATITUDE": 1.293033, "numnum:sum:LATITUDE": 7.373719, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 103.855821, "numnum:min:LONGITUDE": 101.699983, "numnum:sum:LONGITUDE": 307.257751, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5183700, "numnum:min:POP_MAX": 67964, "numnum:sum:POP_MAX": 6699664, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3289529, "numnum:min:POP_MIN": 50000, "numnum:sum:POP_MIN": 4787529, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3314179, "numnum:min:POP_OTHER": 956431, "numnum:sum:POP_OTHER": 6938600, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 6697380, "numnum:min:GEONAMEID": 1735161, "numnum:sum:GEONAMEID": 10312793, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3289529, "numnum:min:MAX_POP10": 955607, "numnum:sum:MAX_POP10": 6995891, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 4207001, "numnum:min:MAX_POP20": 964830, "numnum:sum:MAX_POP20": 7922586, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 4207001, "numnum:min:MAX_POP50": 1651113, "numnum:sum:MAX_POP50": 9326903, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 4983714, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9190715, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 4983714, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9190715, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 666, "numnum:min:MIN_AREAKM": 305, "numnum:sum:MIN_AREAKM": 1457, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1700, "numnum:min:MAX_AREAKM": 456, "numnum:sum:MAX_AREAKM": 2961, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 257, "numnum:min:MIN_AREAMI": 118, "numnum:sum:MIN_AREAMI": 563, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 657, "numnum:min:MAX_AREAMI": 176, "numnum:sum:MAX_AREAMI": 1144, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 467, "numnum:min:MIN_PERKM": 173, "numnum:sum:MIN_PERKM": 990, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1111, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 2136, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 290, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 615, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 690, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 1327, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 103.633333, "numnum:min:MIN_BBXMIN": 101.358333, "numnum:sum:MIN_BBXMIN": 306.349999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 103.658333, "numnum:min:MAX_BBXMIN": 101.491667, "numnum:sum:MAX_BBXMIN": 306.725, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 104, "numnum:min:MIN_BBXMAX": 101.841667, "numnum:sum:MIN_BBXMAX": 307.733334, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 104, "numnum:min:MAX_BBXMAX": 101.891667, "numnum:sum:MAX_BBXMAX": 307.78333399999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 2.7, "numnum:min:MIN_BBYMIN": 1.25, "numnum:sum:MIN_BBYMIN": 6.65, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 3.040173, "numnum:min:MAX_BBYMIN": 1.25, "numnum:sum:MAX_BBYMIN": 6.998506, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 3.475, "numnum:min:MIN_BBYMAX": 1.425, "numnum:sum:MIN_BBYMAX": 7.941194, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 3.475, "numnum:min:MAX_BBYMAX": 1.475, "numnum:sum:MAX_BBYMAX": 7.991194, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 103.821508, "numnum:min:MEAN_BBXC": 101.644598, "numnum:sum:MEAN_BBXC": 307.182723, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 3.131431, "numnum:min:MEAN_BBYC": 1.352586, "numnum:sum:MEAN_BBYC": 7.399926000000001, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 31, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3547809, "numnum:min:GN_POP": 50000, "numnum:sum:GN_POP": 5051784, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 62, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 93, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 450, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 798, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 3.14, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 4.4, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 103.83, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 205.53, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1016, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1224, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1306, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1587, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1634, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1978, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1880, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2274, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2075, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2526, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2263, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2908, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2415, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3336, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2709, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3725, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3016, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4136, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3478, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4691, "numnum:count:POP2000": 3, "numnum:max:POP2000": 4017, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5323, "numnum:count:POP2005": 3, "numnum:max:POP2005": 4327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5732, "numnum:count:POP2010": 3, "numnum:max:POP2010": 4436, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5884, "numnum:count:POP2015": 3, "numnum:max:POP2015": 4592, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6111, "numnum:count:POP2020": 3, "numnum:max:POP2020": 4809, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6479, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4965, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 6785, "numnum:count:POP2050": 3, "numnum:max:POP2050": 5104, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7042, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 0, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 0, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 600, "numnum:sum:NATSCALE": 1800, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 39.928892, "numnum:min:LATITUDE": 22.304981, "numnum:sum:LATITUDE": 93.450325, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 121.436505, "numnum:min:LONGITUDE": 114.185009, "numnum:sum:LONGITUDE": 352.0098, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 14987000, "numnum:min:POP_MAX": 7206000, "numnum:sum:POP_MAX": 33299000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 14608512, "numnum:min:POP_MIN": 4551579, "numnum:sum:POP_MIN": 26640692, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 16803572, "numnum:min:POP_OTHER": 4549026, "numnum:sum:POP_OTHER": 30385829, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 41, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 39, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1819729, "numnum:min:GEONAMEID": 1796236, "numnum:sum:GEONAMEID": 5432635, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 16172884, "numnum:min:MAX_POP10": 4551579, "numnum:sum:MAX_POP10": 30915324, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 16172884, "numnum:min:MAX_POP20": 11120470, "numnum:sum:MAX_POP20": 43072933, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 26630672, "numnum:min:MAX_POP50": 16510327, "numnum:sum:MAX_POP50": 59859428, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 26631586, "numnum:min:MAX_POP300": 16718429, "numnum:sum:MAX_POP300": 66997959, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 137121250, "numnum:min:MAX_POP310": 40576904, "numnum:sum:MAX_POP310": 220292748, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 3792, "numnum:min:MIN_AREAKM": 202, "numnum:sum:MIN_AREAKM": 6506, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 118844, "numnum:min:MAX_AREAKM": 10661, "numnum:sum:MAX_AREAKM": 145905, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 1464, "numnum:min:MIN_AREAMI": 78, "numnum:sum:MIN_AREAMI": 2512, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 45886, "numnum:min:MAX_AREAMI": 4116, "numnum:sum:MAX_AREAMI": 56334, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 2219, "numnum:min:MIN_PERKM": 219, "numnum:sum:MIN_PERKM": 4275, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 93615, "numnum:min:MAX_PERKM": 7493, "numnum:sum:MAX_PERKM": 113450, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 1379, "numnum:min:MIN_PERMI": 136, "numnum:sum:MIN_PERMI": 2656, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 58169, "numnum:min:MAX_PERMI": 4656, "numnum:sum:MAX_PERMI": 70494, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 119.016667, "numnum:min:MIN_BBXMIN": 111.441667, "numnum:sum:MIN_BBXMIN": 342.991667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 121.013757, "numnum:min:MAX_BBXMIN": 113.983333, "numnum:sum:MAX_BBXMIN": 351.055423, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 121.9, "numnum:min:MIN_BBXMAX": 114.3, "numnum:sum:MIN_BBXMAX": 353.40833299999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 121.9, "numnum:min:MAX_BBXMAX": 114.775, "numnum:sum:MAX_BBXMAX": 354, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 31.883333, "numnum:min:MIN_BBYMIN": 21.925, "numnum:sum:MIN_BBYMIN": 84, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.658333, "numnum:min:MAX_BBYMIN": 22.2, "numnum:sum:MAX_BBYMIN": 92.558333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.433333, "numnum:min:MIN_BBYMAX": 22.4, "numnum:sum:MIN_BBYMAX": 94.48333299999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.466667, "numnum:min:MAX_BBYMAX": 24.033333, "numnum:sum:MAX_BBYMAX": 96.808333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 121.053901, "numnum:min:MEAN_BBXC": 114.035195, "numnum:sum:MEAN_BBXC": 351.018617, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.837783, "numnum:min:MEAN_BBYC": 22.679605, "numnum:sum:MEAN_BBYC": 92.77067699999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 45, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 14608512, "numnum:min:GN_POP": 7012738, "numnum:sum:GN_POP": 29101851, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9930, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 210, "numnum:min:UN_FID": 24, "numnum:sum:UN_FID": 332, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 39.9, "numnum:min:UN_LAT": 22.27, "numnum:sum:UN_LAT": 93.41, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 121.47, "numnum:min:UN_LONG": 114.17, "numnum:sum:UN_LONG": 352.02, "numnum:count:POP1950": 3, "numnum:max:POP1950": 6066, "numnum:min:POP1950": 1682, "numnum:sum:POP1950": 12079, "numnum:count:POP1955": 3, "numnum:max:POP1955": 6299, "numnum:min:POP1955": 2121, "numnum:sum:POP1955": 13048, "numnum:count:POP1960": 3, "numnum:max:POP1960": 6542, "numnum:min:POP1960": 2620, "numnum:sum:POP1960": 14107, "numnum:count:POP1965": 3, "numnum:max:POP1965": 6793, "numnum:min:POP1965": 3191, "numnum:sum:POP1965": 15268, "numnum:count:POP1970": 3, "numnum:max:POP1970": 7055, "numnum:min:POP1970": 3458, "numnum:sum:POP1970": 16159, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7326, "numnum:min:POP1975": 3943, "numnum:sum:POP1975": 17303, "numnum:count:POP1980": 3, "numnum:max:POP1980": 7608, "numnum:min:POP1980": 4609, "numnum:sum:POP1980": 18665, "numnum:count:POP1985": 3, "numnum:max:POP1985": 7901, "numnum:min:POP1985": 5070, "numnum:sum:POP1985": 19861, "numnum:count:POP1990": 3, "numnum:max:POP1990": 8205, "numnum:min:POP1990": 5677, "numnum:sum:POP1990": 21244, "numnum:count:POP1995": 3, "numnum:max:POP1995": 10423, "numnum:min:POP1995": 6206, "numnum:sum:POP1995": 25115, "numnum:count:POP2000": 3, "numnum:max:POP2000": 13243, "numnum:min:POP2000": 6662, "numnum:sum:POP2000": 29687, "numnum:count:POP2005": 3, "numnum:max:POP2005": 14503, "numnum:min:POP2005": 7057, "numnum:sum:POP2005": 32277, "numnum:count:POP2010": 3, "numnum:max:POP2010": 14987, "numnum:min:POP2010": 7206, "numnum:sum:POP2010": 33299, "numnum:count:POP2015": 3, "numnum:max:POP2015": 15789, "numnum:min:POP2015": 7419, "numnum:sum:POP2015": 34949, "numnum:count:POP2020": 3, "numnum:max:POP2020": 17214, "numnum:min:POP2020": 7744, "numnum:sum:POP2020": 37800, "numnum:count:POP2025": 3, "numnum:max:POP2025": 18466, "numnum:min:POP2025": 8040, "numnum:sum:POP2025": 40313, "numnum:count:POP2050": 3, "numnum:max:POP2050": 19412, "numnum:min:POP2050": 8305, "numnum:sum:POP2050": 42262, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 116.367188, 39.909736 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum2": 1, "numnum:count:SCALERANK": 10, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 23, "numnum:count:NATSCALE": 10, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 2240, "numnum:count:LABELRANK": 10, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 41, "numnum:count:DIFFASCII": 10, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 10, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 10, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 10, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 5, "numnum:count:MEGACITY": 10, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 7, "numnum:count:LATITUDE": 10, "numnum:max:LATITUDE": 39.019439, "numnum:min:LATITUDE": 4.883331, "numnum:sum:LATITUDE": 250.49154199999999, "numnum:count:LONGITUDE": 10, "numnum:max:LONGITUDE": 139.751407, "numnum:min:LONGITUDE": 114.933284, "numnum:sum:LONGITUDE": 1276.396297, "numnum:count:CHANGED": 10, "numnum:max:CHANGED": 40, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 54, "numnum:count:NAMEDIFF": 10, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 10, "numnum:max:POP_MAX": 35676000, "numnum:min:POP_MAX": 7026, "numnum:sum:POP_MAX": 80622623, "numnum:count:POP_MIN": 10, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 7026, "numnum:sum:POP_MIN": 30799536, "numnum:count:POP_OTHER": 10, "numnum:max:POP_OTHER": 12945252, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 47371587, "numnum:count:RANK_MAX": 10, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 117, "numnum:count:RANK_MIN": 10, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 110, "numnum:count:GEONAMEID": 10, "numnum:max:GEONAMEID": 1871859, "numnum:min:GEONAMEID": 1559804, "numnum:sum:GEONAMEID": 17749322, "numnum:count:LS_MATCH": 10, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 10, "numnum:count:CHECKME": 10, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 10, "numnum:max:MAX_POP10": 13762740, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 50365982, "numnum:count:MAX_POP20": 10, "numnum:max:MAX_POP20": 24218878, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 64662327, "numnum:count:MAX_POP50": 10, "numnum:max:MAX_POP50": 31303497, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 83396378, "numnum:count:MAX_POP300": 10, "numnum:max:MAX_POP300": 31303497, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 104693165, "numnum:count:MAX_POP310": 10, "numnum:max:MAX_POP310": 31303497, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 104902352, "numnum:count:MAX_NATSCA": 10, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 1950, "numnum:count:MIN_AREAKM": 10, "numnum:max:MIN_AREAKM": 2130, "numnum:min:MIN_AREAKM": 6, "numnum:sum:MIN_AREAKM": 6291, "numnum:count:MAX_AREAKM": 10, "numnum:max:MAX_AREAKM": 8820, "numnum:min:MAX_AREAKM": 6, "numnum:sum:MAX_AREAKM": 23030, "numnum:count:MIN_AREAMI": 10, "numnum:max:MIN_AREAMI": 823, "numnum:min:MIN_AREAMI": 2, "numnum:sum:MIN_AREAMI": 2429, "numnum:count:MAX_AREAMI": 10, "numnum:max:MAX_AREAMI": 3405, "numnum:min:MAX_AREAMI": 2, "numnum:sum:MAX_AREAMI": 8892, "numnum:count:MIN_PERKM": 10, "numnum:max:MIN_PERKM": 838, "numnum:min:MIN_PERKM": 15, "numnum:sum:MIN_PERKM": 3152, "numnum:count:MAX_PERKM": 10, "numnum:max:MAX_PERKM": 5298, "numnum:min:MAX_PERKM": 15, "numnum:sum:MAX_PERKM": 12749, "numnum:count:MIN_PERMI": 10, "numnum:max:MIN_PERMI": 521, "numnum:min:MIN_PERMI": 9, "numnum:sum:MIN_PERMI": 1959, "numnum:count:MAX_PERMI": 10, "numnum:max:MAX_PERMI": 3292, "numnum:min:MAX_PERMI": 9, "numnum:sum:MAX_PERMI": 7920, "numnum:count:MIN_BBXMIN": 10, "numnum:max:MIN_BBXMIN": 139.166667, "numnum:min:MIN_BBXMIN": 114.825, "numnum:sum:MIN_BBXMIN": 1272.16153, "numnum:count:MAX_BBXMIN": 10, "numnum:max:MAX_BBXMIN": 139.536465, "numnum:min:MAX_BBXMIN": 114.825, "numnum:sum:MAX_BBXMIN": 1274.911444, "numnum:count:MIN_BBXMAX": 10, "numnum:max:MIN_BBXMAX": 140.433333, "numnum:min:MIN_BBXMAX": 114.991667, "numnum:sum:MIN_BBXMAX": 1278.086469, "numnum:count:MAX_BBXMAX": 10, "numnum:max:MAX_BBXMAX": 140.433333, "numnum:min:MAX_BBXMAX": 114.991667, "numnum:sum:MAX_BBXMAX": 1278.683333, "numnum:count:MIN_BBYMIN": 10, "numnum:max:MIN_BBYMIN": 38.825, "numnum:min:MIN_BBYMIN": 4.816667, "numnum:sum:MIN_BBYMIN": 246.703394, "numnum:count:MAX_BBYMIN": 10, "numnum:max:MAX_BBYMIN": 38.825, "numnum:min:MAX_BBYMIN": 4.816667, "numnum:sum:MAX_BBYMIN": 248.88674899999999, "numnum:count:MIN_BBYMAX": 10, "numnum:max:MIN_BBYMAX": 39.191667, "numnum:min:MIN_BBYMAX": 5.008333, "numnum:sum:MIN_BBYMAX": 251.82787599999996, "numnum:count:MAX_BBYMAX": 10, "numnum:max:MAX_BBYMAX": 39.191667, "numnum:min:MAX_BBYMAX": 5.008333, "numnum:sum:MAX_BBYMAX": 253.99999999999998, "numnum:count:MEAN_BBXC": 10, "numnum:max:MEAN_BBXC": 139.75102, "numnum:min:MEAN_BBXC": 114.908824, "numnum:sum:MEAN_BBXC": 1275.8799259999999, "numnum:count:MEAN_BBYC": 10, "numnum:max:MEAN_BBYC": 38.996997, "numnum:min:MEAN_BBYC": 4.910245, "numnum:sum:MEAN_BBYC": 250.27570599999999, "numnum:count:COMPARE": 10, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 10, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 120, "numnum:count:GN_POP": 10, "numnum:max:GN_POP": 10444527, "numnum:min:GN_POP": 217, "numnum:sum:GN_POP": 44613731, "numnum:count:ELEVATION": 10, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 10, "numnum:max:GTOPO30": 1448, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 1653, "numnum:count:UN_FID": 10, "numnum:max:UN_FID": 414, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 2134, "numnum:count:UN_LAT": 10, "numnum:max:UN_LAT": 39.02, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 221.51000000000003, "numnum:count:UN_LONG": 10, "numnum:max:UN_LONG": 139.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 906.2, "numnum:count:POP1950": 10, "numnum:max:POP1950": 11275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 20109, "numnum:count:POP1955": 10, "numnum:max:POP1955": 13713, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 24686, "numnum:count:POP1960": 10, "numnum:max:POP1960": 16679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 30307, "numnum:count:POP1965": 10, "numnum:max:POP1965": 20284, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 37447, "numnum:count:POP1970": 10, "numnum:max:POP1970": 23298, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 45578, "numnum:count:POP1975": 10, "numnum:max:POP1975": 26615, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 53259, "numnum:count:POP1980": 10, "numnum:max:POP1980": 28549, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 58512, "numnum:count:POP1985": 10, "numnum:max:POP1985": 30304, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 63444, "numnum:count:POP1990": 10, "numnum:max:POP1990": 32530, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 69079, "numnum:count:POP1995": 10, "numnum:max:POP1995": 33587, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 71614, "numnum:count:POP2000": 10, "numnum:max:POP2000": 34450, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 73053, "numnum:count:POP2005": 10, "numnum:max:POP2005": 35327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 74847, "numnum:count:POP2010": 10, "numnum:max:POP2010": 35676, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 75574, "numnum:count:POP2015": 10, "numnum:max:POP2015": 36094, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 76656, "numnum:count:POP2020": 10, "numnum:max:POP2020": 36371, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 78362, "numnum:count:POP2025": 10, "numnum:max:POP2025": 36399, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 79842, "numnum:count:POP2050": 10, "numnum:max:POP2050": 36400, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 81053, "accum": 10, "numnum:count:accum2": 10, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 10, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.005973 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 9, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 31, "numnum:count:NATSCALE": 9, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 1460, "numnum:count:LABELRANK": 9, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 25, "numnum:count:DIFFASCII": 9, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 9, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 9, "numnum:count:CAPALT": 9, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 9, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 9, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 5, "numnum:count:LATITUDE": 9, "numnum:max:LATITUDE": 7.103004, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -60.512966999999999, "numnum:count:LONGITUDE": 9, "numnum:max:LONGITUDE": 173.017571, "numnum:min:LONGITUDE": 13.234427, "numnum:sum:LONGITUDE": 611.9606989999999, "numnum:count:CHANGED": 9, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 30, "numnum:count:NAMEDIFF": 9, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 9, "numnum:max:POP_MAX": 7843000, "numnum:min:POP_MAX": 4645, "numnum:sum:POP_MAX": 18772879, "numnum:count:POP_MIN": 9, "numnum:max:POP_MIN": 5565703, "numnum:min:POP_MIN": 4645, "numnum:sum:POP_MIN": 12169459, "numnum:count:POP_OTHER": 9, "numnum:max:POP_OTHER": 4738154, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 11681222, "numnum:count:RANK_MAX": 9, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 89, "numnum:count:RANK_MIN": 9, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 88, "numnum:count:GEONAMEID": 9, "numnum:max:GEONAMEID": 3369157, "numnum:min:GEONAMEID": 202061, "numnum:sum:GEONAMEID": 20044484, "numnum:count:LS_MATCH": 9, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 9, "numnum:count:CHECKME": 9, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 9, "numnum:max:MAX_POP10": 5565703, "numnum:min:MAX_POP10": 412, "numnum:sum:MAX_POP10": 12448336, "numnum:count:MAX_POP20": 9, "numnum:max:MAX_POP20": 5567255, "numnum:min:MAX_POP20": 412, "numnum:sum:MAX_POP20": 13677747, "numnum:count:MAX_POP50": 9, "numnum:max:MAX_POP50": 5567255, "numnum:min:MAX_POP50": 412, "numnum:sum:MAX_POP50": 16479501, "numnum:count:MAX_POP300": 9, "numnum:max:MAX_POP300": 7102391, "numnum:min:MAX_POP300": 412, "numnum:sum:MAX_POP300": 18516239, "numnum:count:MAX_POP310": 9, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 9, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 9, "numnum:max:MIN_AREAKM": 601, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 1971, "numnum:count:MAX_AREAKM": 9, "numnum:max:MAX_AREAKM": 8753, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 10142, "numnum:count:MIN_AREAMI": 9, "numnum:max:MIN_AREAMI": 232, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 761, "numnum:count:MAX_AREAMI": 9, "numnum:max:MAX_AREAMI": 3380, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 3916, "numnum:count:MIN_PERKM": 9, "numnum:max:MIN_PERKM": 735, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 1584, "numnum:count:MAX_PERKM": 9, "numnum:max:MAX_PERKM": 9184, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 10056, "numnum:count:MIN_PERMI": 9, "numnum:max:MIN_PERMI": 457, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 984, "numnum:count:MAX_PERMI": 9, "numnum:max:MAX_PERMI": 5707, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 6249, "numnum:count:MIN_BBXMIN": 9, "numnum:max:MIN_BBXMIN": 172.966667, "numnum:min:MIN_BBXMIN": 13.166667, "numnum:sum:MIN_BBXMIN": 610.5416669999999, "numnum:count:MAX_BBXMIN": 9, "numnum:max:MAX_BBXMIN": 172.966667, "numnum:min:MAX_BBXMIN": 13.166667, "numnum:sum:MAX_BBXMIN": 611.2083329999999, "numnum:count:MIN_BBXMAX": 9, "numnum:max:MIN_BBXMAX": 173.058333, "numnum:min:MIN_BBXMAX": 13.4, "numnum:sum:MIN_BBXMAX": 612.9164109999999, "numnum:count:MAX_BBXMAX": 9, "numnum:max:MAX_BBXMAX": 173.058333, "numnum:min:MAX_BBXMAX": 13.4, "numnum:sum:MAX_BBXMAX": 613.175, "numnum:count:MIN_BBYMIN": 9, "numnum:max:MIN_BBYMIN": 7.091667, "numnum:min:MIN_BBYMIN": -34.108333, "numnum:sum:MIN_BBYMIN": -62.166666, "numnum:count:MAX_BBYMIN": 9, "numnum:max:MAX_BBYMIN": 7.091667, "numnum:min:MAX_BBYMIN": -34.108333, "numnum:sum:MAX_BBYMIN": -61.228677000000008, "numnum:count:MIN_BBYMAX": 9, "numnum:max:MIN_BBYMAX": 7.116667, "numnum:min:MIN_BBYMAX": -33.808333, "numnum:sum:MIN_BBYMAX": -59.883297, "numnum:count:MAX_BBYMAX": 9, "numnum:max:MAX_BBYMAX": 7.116667, "numnum:min:MAX_BBYMAX": -33.808333, "numnum:sum:MAX_BBYMAX": -59.191667, "numnum:count:MEAN_BBXC": 9, "numnum:max:MEAN_BBXC": 173.015476, "numnum:min:MEAN_BBXC": 13.28253, "numnum:sum:MEAN_BBXC": 611.945473, "numnum:count:MEAN_BBYC": 9, "numnum:max:MEAN_BBYC": 7.104167, "numnum:min:MEAN_BBYC": -33.954979, "numnum:sum:MEAN_BBYC": -60.67291600000001, "numnum:count:COMPARE": 9, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 9, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 71, "numnum:count:GN_POP": 9, "numnum:max:GN_POP": 7785965, "numnum:min:GN_POP": 4645, "numnum:sum:GN_POP": 16347523, "numnum:count:ELEVATION": 9, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 9, "numnum:max:GTOPO30": 1722, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 3844, "numnum:count:UN_FID": 9, "numnum:max:UN_FID": 455, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1410, "numnum:count:UN_LAT": 9, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.97, "numnum:sum:UN_LAT": -53.330000000000008, "numnum:count:UN_LONG": 9, "numnum:max:UN_LONG": 30.05, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 92.33, "numnum:count:POP1950": 9, "numnum:max:POP1950": 618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1059, "numnum:count:POP1955": 9, "numnum:max:POP1955": 705, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1288, "numnum:count:POP1960": 9, "numnum:max:POP1960": 803, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1623, "numnum:count:POP1965": 9, "numnum:max:POP1965": 945, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2194, "numnum:count:POP1970": 9, "numnum:max:POP1970": 1114, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2940, "numnum:count:POP1975": 9, "numnum:max:POP1975": 1482, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3905, "numnum:count:POP1980": 9, "numnum:max:POP1980": 2053, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5198, "numnum:count:POP1985": 9, "numnum:max:POP1985": 2793, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6777, "numnum:count:POP1990": 9, "numnum:max:POP1990": 3448, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8094, "numnum:count:POP1995": 9, "numnum:max:POP1995": 4447, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9913, "numnum:count:POP2000": 9, "numnum:max:POP2000": 5485, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 12274, "numnum:count:POP2005": 9, "numnum:max:POP2005": 7108, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 15719, "numnum:count:POP2010": 9, "numnum:max:POP2010": 7843, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 17273, "numnum:count:POP2015": 9, "numnum:max:POP2015": 9052, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 19636, "numnum:count:POP2020": 9, "numnum:max:POP2020": 11313, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 23734, "numnum:count:POP2025": 9, "numnum:max:POP2025": 13875, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 28006, "numnum:count:POP2050": 9, "numnum:max:POP2050": 16762, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 32607, "accum": 9, "numnum:count:accum2": 9, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 9, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 158.115234, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 16, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1120, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 35, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -1.283347, "numnum:min:LATITUDE": -17.81779, "numnum:sum:LATITUDE": -50.877187, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 39.268342, "numnum:min:LONGITUDE": 28.283328, "numnum:sum:LONGITUDE": 200.52304599999997, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 17, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 3010000, "numnum:min:POP_MAX": 218269, "numnum:sum:POP_MAX": 9389969, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 2750547, "numnum:min:POP_MIN": 180541, "numnum:sum:POP_MIN": 8771693, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 3400962, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 10439593, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 68, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 67, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 909137, "numnum:min:GEONAMEID": 160196, "numnum:sum:GEONAMEID": 2730018, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 6, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 3401842, "numnum:min:MAX_POP10": 218269, "numnum:sum:MAX_POP10": 10624356, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 3401842, "numnum:min:MAX_POP20": 218269, "numnum:sum:MAX_POP20": 11641119, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 3536914, "numnum:min:MAX_POP50": 218269, "numnum:sum:MAX_POP50": 13054227, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 3539151, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 12844219, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 550, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 1093, "numnum:min:MIN_AREAKM": 55, "numnum:sum:MIN_AREAKM": 2550, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 5563, "numnum:min:MAX_AREAKM": 55, "numnum:sum:MAX_AREAKM": 7057, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 422, "numnum:min:MIN_AREAMI": 21, "numnum:sum:MIN_AREAMI": 984, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 2148, "numnum:min:MAX_AREAMI": 21, "numnum:sum:MAX_AREAMI": 2724, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 1180, "numnum:min:MIN_PERKM": 61, "numnum:sum:MIN_PERKM": 2256, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 5081, "numnum:min:MAX_PERKM": 61, "numnum:sum:MAX_PERKM": 6198, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 733, "numnum:min:MIN_PERMI": 38, "numnum:sum:MIN_PERMI": 1401, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 3157, "numnum:min:MAX_PERMI": 38, "numnum:sum:MAX_PERMI": 3851, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 39.15, "numnum:min:MIN_BBXMIN": 28.225, "numnum:sum:MIN_BBXMIN": 199.837669, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 39.15, "numnum:min:MAX_BBXMIN": 28.225, "numnum:sum:MAX_BBXMIN": 199.841666, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 39.325, "numnum:min:MIN_BBXMAX": 28.416667, "numnum:sum:MIN_BBXMAX": 201.432297, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 39.325, "numnum:min:MAX_BBXMAX": 28.416667, "numnum:sum:MAX_BBXMAX": 202.080757, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": -1.433333, "numnum:min:MIN_BBYMIN": -17.925, "numnum:sum:MIN_BBYMIN": -51.824999, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": -1.433333, "numnum:min:MAX_BBYMIN": -17.925, "numnum:sum:MAX_BBYMIN": -51.658331999999997, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": -1.083333, "numnum:min:MIN_BBYMAX": -17.725, "numnum:sum:MIN_BBYMAX": -49.933333000000008, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": -1.083333, "numnum:min:MAX_BBYMAX": -17.725, "numnum:sum:MAX_BBYMAX": -49.528195000000007, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 39.23918, "numnum:min:MEAN_BBXC": 28.308596, "numnum:sum:MEAN_BBXC": 200.794711, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": -1.249679, "numnum:min:MEAN_BBYC": -17.832399, "numnum:sum:MEAN_BBYC": -50.709543999999997, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 52, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 2750547, "numnum:min:GN_POP": 180541, "numnum:sum:GN_POP": 8771693, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 1724, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -3593, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 589, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1898, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -17.82, "numnum:sum:UN_LAT": -41.31, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 39.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 135.24, "numnum:count:POP1950": 6, "numnum:max:POP1950": 143, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 378, "numnum:count:POP1955": 6, "numnum:max:POP1955": 201, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 556, "numnum:count:POP1960": 6, "numnum:max:POP1960": 293, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 794, "numnum:count:POP1965": 6, "numnum:max:POP1965": 404, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1116, "numnum:count:POP1970": 6, "numnum:max:POP1970": 531, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1583, "numnum:count:POP1975": 6, "numnum:max:POP1975": 677, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2166, "numnum:count:POP1980": 6, "numnum:max:POP1980": 862, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2847, "numnum:count:POP1985": 6, "numnum:max:POP1985": 1090, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3550, "numnum:count:POP1990": 6, "numnum:max:POP1990": 1380, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4500, "numnum:count:POP1995": 6, "numnum:max:POP1995": 1755, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5580, "numnum:count:POP2000": 6, "numnum:max:POP2000": 2233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6801, "numnum:count:POP2005": 6, "numnum:max:POP2005": 2787, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8242, "numnum:count:POP2010": 6, "numnum:max:POP2010": 3010, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8840, "numnum:count:POP2015": 6, "numnum:max:POP2015": 3363, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9766, "numnum:count:POP2020": 6, "numnum:max:POP2020": 4052, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 11498, "numnum:count:POP2025": 6, "numnum:max:POP2025": 4881, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 13519, "numnum:count:POP2050": 6, "numnum:max:POP2050": 5871, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15853, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.337954 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 22, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 880, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 32, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": -11.704158, "numnum:min:LATITUDE": -29.316674, "numnum:sum:LATITUDE": -160.6474, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 43.240244, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 212.908119, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 128698, "numnum:sum:POP_MAX": 6581247, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 42872, "numnum:sum:POP_MIN": 4788358, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 7328352, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 74, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 70, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 1018725, "numnum:min:GEONAMEID": 921772, "numnum:sum:GEONAMEID": 6692679, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 128698, "numnum:sum:MAX_POP10": 7403215, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 128698, "numnum:sum:MAX_POP20": 8876953, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 128698, "numnum:sum:MAX_POP50": 8953902, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 8497233, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 850, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 3104, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 3867, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 1198, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 1492, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 1360, "numnum:min:MIN_PERKM": 59, "numnum:sum:MIN_PERKM": 2525, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 1658, "numnum:min:MAX_PERKM": 59, "numnum:sum:MAX_PERKM": 3154, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 845, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 1569, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 1030, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 1959, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 43.225, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 211.99166599999999, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 43.225, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 211.99166599999999, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 43.291667, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 213.98144900000004, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 43.291667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 214.70000100000005, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": -11.758333, "numnum:min:MIN_BBYMIN": -29.525, "numnum:sum:MIN_BBYMIN": -161.908333, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": -11.758333, "numnum:min:MAX_BBYMIN": -29.525, "numnum:sum:MAX_BBYMIN": -161.883333, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": -11.475, "numnum:min:MIN_BBYMAX": -29.241667, "numnum:sum:MIN_BBYMAX": -159.70000100000002, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": -11.475, "numnum:min:MAX_BBYMAX": -29.241667, "numnum:sum:MAX_BBYMAX": -159.60000100000003, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 43.264352, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 213.118946, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": -11.639931, "numnum:min:MEAN_BBYC": -29.350222, "numnum:sum:MEAN_BBYC": -160.74624200000003, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 51, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 42872, "numnum:sum:GN_POP": 5125359, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 8003, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 460, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 918, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -51.900000000000009, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 28.21, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 56.21, "numnum:count:POP1950": 7, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1175, "numnum:count:POP1955": 7, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1356, "numnum:count:POP1960": 7, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1566, "numnum:count:POP1965": 7, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1776, "numnum:count:POP1970": 7, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2009, "numnum:count:POP1975": 7, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2171, "numnum:count:POP1980": 7, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2344, "numnum:count:POP1985": 7, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2536, "numnum:count:POP1990": 7, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2809, "numnum:count:POP1995": 7, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3216, "numnum:count:POP2000": 7, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3816, "numnum:count:POP2005": 7, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4531, "numnum:count:POP2010": 7, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4773, "numnum:count:POP2015": 7, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5027, "numnum:count:POP2020": 7, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5267, "numnum:count:POP2025": 7, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5460, "numnum:count:POP2050": 7, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5645, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 33.750000, -14.008696 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 80, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -26.316651, "numnum:min:LATITUDE": -26.466667, "numnum:sum:LATITUDE": -52.783318, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 31.199997, "numnum:min:LONGITUDE": 31.133335, "numnum:sum:LONGITUDE": 62.333332, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 90138, "numnum:min:POP_MAX": 9782, "numnum:sum:POP_MAX": 99920, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 76218, "numnum:min:POP_MIN": 4557, "numnum:sum:POP_MIN": 80775, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 89979, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 89979, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 8, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 13, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 12, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 935048, "numnum:min:GEONAMEID": 934985, "numnum:sum:GEONAMEID": 1870033, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 90138, "numnum:min:MAX_POP10": 9782, "numnum:sum:MAX_POP10": 99920, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 90138, "numnum:min:MAX_POP20": 9782, "numnum:sum:MAX_POP20": 99920, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 90138, "numnum:min:MAX_POP50": 9782, "numnum:sum:MAX_POP50": 99920, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 90138, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 90138, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 28, "numnum:min:MIN_AREAKM": 18, "numnum:sum:MIN_AREAKM": 46, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 28, "numnum:min:MAX_AREAKM": 18, "numnum:sum:MAX_AREAKM": 46, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 11, "numnum:min:MIN_AREAMI": 7, "numnum:sum:MIN_AREAMI": 18, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 11, "numnum:min:MAX_AREAMI": 7, "numnum:sum:MAX_AREAMI": 18, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 37, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 69, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 37, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 69, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 23, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 43, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 23, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 43, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 31.183333, "numnum:min:MIN_BBXMIN": 31.1, "numnum:sum:MIN_BBXMIN": 62.283333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 31.183333, "numnum:min:MAX_BBXMIN": 31.1, "numnum:sum:MAX_BBXMIN": 62.283333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 31.233333, "numnum:min:MIN_BBXMAX": 31.158333, "numnum:sum:MIN_BBXMAX": 62.391666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 31.233333, "numnum:min:MAX_BBXMAX": 31.158333, "numnum:sum:MAX_BBXMAX": 62.391666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -26.35, "numnum:min:MIN_BBYMIN": -26.458333, "numnum:sum:MIN_BBYMIN": -52.808333000000008, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -26.35, "numnum:min:MAX_BBYMIN": -26.458333, "numnum:sum:MAX_BBYMIN": -52.808333000000008, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -26.283333, "numnum:min:MIN_BBYMAX": -26.391667, "numnum:sum:MIN_BBYMAX": -52.675, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -26.283333, "numnum:min:MAX_BBYMAX": -26.391667, "numnum:sum:MAX_BBYMAX": -52.675, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 31.201993, "numnum:min:MEAN_BBXC": 31.129842, "numnum:sum:MEAN_BBXC": 62.331835, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -26.315428, "numnum:min:MEAN_BBYC": -26.430254, "numnum:sum:MEAN_BBYC": -52.745682, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 76218, "numnum:min:GN_POP": 4557, "numnum:sum:GN_POP": 80775, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1156, "numnum:min:GTOPO30": 651, "numnum:sum:GTOPO30": 1807, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.113281, -26.352498 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 29, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": -4.616632, "numnum:min:LATITUDE": -25.955277, "numnum:sum:LATITUDE": -93.853699, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 147.192504, "numnum:min:LONGITUDE": 32.589163, "numnum:sum:LONGITUDE": 572.657169, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 9125000, "numnum:min:POP_MAX": 33576, "numnum:sum:POP_MAX": 13415131, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 8540121, "numnum:min:POP_MIN": 22881, "numnum:sum:POP_MIN": 11739163, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 9129613, "numnum:min:POP_OTHER": 33737, "numnum:sum:POP_OTHER": 12984533, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 75, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 72, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 2088122, "numnum:min:GEONAMEID": 241131, "numnum:sum:GEONAMEID": 8663367, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 9664972, "numnum:min:MAX_POP10": 33576, "numnum:sum:MAX_POP10": 13393842, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 15074060, "numnum:min:MAX_POP20": 33576, "numnum:sum:MAX_POP20": 19560800, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 22017580, "numnum:min:MAX_POP50": 33576, "numnum:sum:MAX_POP50": 26503078, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 22031364, "numnum:min:MAX_POP300": 33576, "numnum:sum:MAX_POP300": 26518104, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 44354170, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 44354170, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 900, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 1303, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 2391, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 19435, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 20731, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 503, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 923, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 7504, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 8005, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 699, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 1411, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 10224, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 11460, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 434, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 876, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 6353, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 7120, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 147.141667, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 571.050001, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 147.141667, "numnum:min:MAX_BBXMIN": 32.506986, "numnum:sum:MAX_BBXMIN": 571.7141740000001, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 147.241667, "numnum:min:MIN_BBXMAX": 32.65, "numnum:sum:MIN_BBXMAX": 573.074173, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 147.241667, "numnum:min:MAX_BBXMAX": 32.65, "numnum:sum:MAX_BBXMAX": 575.983333, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": -4.65, "numnum:min:MIN_BBYMIN": -25.991667, "numnum:sum:MIN_BBYMIN": -95.94999999999999, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": -4.65, "numnum:min:MAX_BBYMIN": -25.983333, "numnum:sum:MAX_BBYMIN": -94.522866, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": -4.6, "numnum:min:MIN_BBYMAX": -25.75, "numnum:sum:MIN_BBYMAX": -93, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": -4.6, "numnum:min:MAX_BBYMAX": -25.75, "numnum:sum:MAX_BBYMAX": -92.858333, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 147.185377, "numnum:min:MEAN_BBXC": 32.543778, "numnum:sum:MEAN_BBXC": 572.7019760000001, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": -4.626389, "numnum:min:MEAN_BBYC": -25.880831, "numnum:sum:MEAN_BBYC": -93.91095600000002, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 58, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 8540121, "numnum:min:GN_POP": 22881, "numnum:sum:GN_POP": 11735007, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1289, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8469, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 376, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1001, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.96, "numnum:sum:UN_LAT": -51.019999999999999, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 106.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 186.89, "numnum:count:POP1950": 7, "numnum:max:POP1950": 1452, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1721, "numnum:count:POP1955": 7, "numnum:max:POP1955": 1972, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2290, "numnum:count:POP1960": 7, "numnum:max:POP1960": 2679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3112, "numnum:count:POP1965": 7, "numnum:max:POP1965": 3297, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3854, "numnum:count:POP1970": 7, "numnum:max:POP1970": 3915, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4649, "numnum:count:POP1975": 7, "numnum:max:POP1975": 4813, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5723, "numnum:count:POP1980": 7, "numnum:max:POP1980": 5984, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7114, "numnum:count:POP1985": 7, "numnum:max:POP1985": 7009, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8404, "numnum:count:POP1990": 7, "numnum:max:POP1990": 8175, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9899, "numnum:count:POP1995": 7, "numnum:max:POP1995": 8322, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 10412, "numnum:count:POP2000": 7, "numnum:max:POP2000": 8390, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 10847, "numnum:count:POP2005": 7, "numnum:max:POP2005": 8843, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 11767, "numnum:count:POP2010": 7, "numnum:max:POP2010": 9125, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 12268, "numnum:count:POP2015": 7, "numnum:max:POP2015": 9703, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 13201, "numnum:count:POP2020": 7, "numnum:max:POP2020": 10792, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 14942, "numnum:count:POP2025": 7, "numnum:max:POP2025": 11689, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 16566, "numnum:count:POP2050": 7, "numnum:max:POP2050": 12363, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 18041, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1010, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -33.920011, "numnum:min:LATITUDE": -37.820031, "numnum:sum:LATITUDE": -107.023071, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 151.18518, "numnum:min:LONGITUDE": 144.975016, "numnum:sum:LONGITUDE": 445.28922200000008, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 4630000, "numnum:min:POP_MAX": 327700, "numnum:sum:POP_MAX": 9127700, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3641422, "numnum:min:POP_MIN": 93625, "numnum:sum:POP_MIN": 3969079, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2669348, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 4474701, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 30, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2172517, "numnum:min:GEONAMEID": 2147714, "numnum:sum:GEONAMEID": 6478408, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2731457, "numnum:min:MAX_POP10": 234032, "numnum:sum:MAX_POP10": 4869866, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2731457, "numnum:min:MAX_POP20": 244896, "numnum:sum:MAX_POP20": 5521388, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3164008, "numnum:min:MAX_POP50": 244896, "numnum:sum:MAX_POP50": 5973092, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3164008, "numnum:min:MAX_POP300": 244896, "numnum:sum:MAX_POP300": 5973092, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 3164008, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3164008, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1078, "numnum:min:MIN_AREAKM": 226, "numnum:sum:MIN_AREAKM": 2314, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1554, "numnum:min:MAX_AREAKM": 251, "numnum:sum:MAX_AREAKM": 3214, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 416, "numnum:min:MIN_AREAMI": 87, "numnum:sum:MIN_AREAMI": 893, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 600, "numnum:min:MAX_AREAMI": 97, "numnum:sum:MAX_AREAMI": 1241, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 468, "numnum:min:MIN_PERKM": 175, "numnum:sum:MIN_PERKM": 1003, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 843, "numnum:min:MAX_PERKM": 202, "numnum:sum:MAX_PERKM": 1762, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 291, "numnum:min:MIN_PERMI": 109, "numnum:sum:MIN_PERMI": 624, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 524, "numnum:min:MAX_PERMI": 126, "numnum:sum:MAX_PERMI": 1095, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 150.533333, "numnum:min:MIN_BBXMIN": 144.608333, "numnum:sum:MIN_BBXMIN": 444.141666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 150.831963, "numnum:min:MAX_BBXMIN": 144.728637, "numnum:sum:MAX_BBXMIN": 444.5606, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 151.308333, "numnum:min:MIN_BBXMAX": 145.327432, "numnum:sum:MIN_BBXMAX": 445.835765, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 151.341667, "numnum:min:MAX_BBXMAX": 145.4, "numnum:sum:MAX_BBXMAX": 445.941667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -34.091667, "numnum:min:MIN_BBYMIN": -38.208333, "numnum:sum:MIN_BBYMIN": -107.78333300000002, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -34.091667, "numnum:min:MAX_BBYMIN": -38.0105, "numnum:sum:MAX_BBYMIN": -107.55793100000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -33.641667, "numnum:min:MIN_BBYMAX": -37.589905, "numnum:sum:MIN_BBYMAX": -106.414905, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -33.6, "numnum:min:MAX_BBYMAX": -37.566667, "numnum:sum:MAX_BBYMAX": -106.35, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 151.051024, "numnum:min:MEAN_BBXC": 145.053821, "numnum:sum:MEAN_BBXC": 445.198952, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -33.846724, "numnum:min:MEAN_BBYC": -37.835257, "numnum:sum:MEAN_BBYC": -106.99160800000002, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 4394576, "numnum:min:GN_POP": 327700, "numnum:sum:GN_POP": 8452482, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 609, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 609, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 276, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 550, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -37.85, "numnum:sum:UN_LAT": -71.73, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 151.02, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 296.09000000000006, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1690, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 3022, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1906, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3480, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2135, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3986, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2390, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4458, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2667, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5001, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2960, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5521, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3227, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5992, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3432, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6367, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3632, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 6749, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3839, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7096, "numnum:count:POP2000": 3, "numnum:max:POP2000": 4078, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7511, "numnum:count:POP2005": 3, "numnum:max:POP2005": 4260, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 7901, "numnum:count:POP2010": 3, "numnum:max:POP2010": 4327, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8055, "numnum:count:POP2015": 3, "numnum:max:POP2015": 4427, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8278, "numnum:count:POP2020": 3, "numnum:max:POP2020": 4582, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8595, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4716, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8853, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4826, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9064, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 770, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -8.516652, "numnum:min:LATITUDE": -41.299974, "numnum:sum:LATITUDE": -131.97099899999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 179.216647, "numnum:min:LONGITUDE": 159.949766, "numnum:sum:LONGITUDE": 1035.473016, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1245000, "numnum:min:POP_MAX": 4749, "numnum:sum:POP_MAX": 1938916, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 274020, "numnum:min:POP_MIN": 4749, "numnum:sum:POP_MIN": 658439, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 243794, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 468418, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 50, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2198148, "numnum:min:GEONAMEID": 2108502, "numnum:sum:GEONAMEID": 12890116, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 0, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 274020, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 645444, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 354233, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 725657, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 350364, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 721788, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 638000, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1009424, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 169, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 324, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 399, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 554, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 65, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 125, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 154, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 214, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 105, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 289, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 266, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 450, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 65, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 180, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 166, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 281, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 178.425, "numnum:min:MIN_BBXMIN": 0, "numnum:sum:MIN_BBXMIN": 855.95, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 178.425, "numnum:min:MAX_BBXMIN": 0, "numnum:sum:MAX_BBXMIN": 856.0241500000001, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 178.533333, "numnum:min:MIN_BBXMAX": 0, "numnum:sum:MIN_BBXMAX": 856.6, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 178.533333, "numnum:min:MAX_BBXMAX": 0, "numnum:sum:MAX_BBXMAX": 856.7, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 0, "numnum:min:MIN_BBYMIN": -41.35, "numnum:sum:MIN_BBYMIN": -123.808334, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 0, "numnum:min:MAX_BBYMIN": -41.35, "numnum:sum:MAX_BBYMIN": -123.681625, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 0, "numnum:min:MIN_BBYMAX": -41.2, "numnum:sum:MIN_BBYMAX": -123.166666, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 0, "numnum:min:MAX_BBYMAX": -41.2, "numnum:sum:MAX_BBYMAX": -123.141666, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 178.472885, "numnum:min:MEAN_BBXC": 0, "numnum:sum:MEAN_BBXC": 856.295215, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 0, "numnum:min:MEAN_BBYC": -41.285539, "numnum:sum:MEAN_BBYC": -123.44717299999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 417910, "numnum:min:GN_POP": 4749, "numnum:sum:GN_POP": 597652, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 304, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19649, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 381, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 381, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -36.9, "numnum:sum:UN_LAT": -36.9, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 174.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 174.76, "numnum:count:POP1950": 6, "numnum:max:POP1950": 319, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 319, "numnum:count:POP1955": 6, "numnum:max:POP1955": 387, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 387, "numnum:count:POP1960": 6, "numnum:max:POP1960": 440, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 440, "numnum:count:POP1965": 6, "numnum:max:POP1965": 532, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 532, "numnum:count:POP1970": 6, "numnum:max:POP1970": 635, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 635, "numnum:count:POP1975": 6, "numnum:max:POP1975": 729, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 729, "numnum:count:POP1980": 6, "numnum:max:POP1980": 774, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 774, "numnum:count:POP1985": 6, "numnum:max:POP1985": 812, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 812, "numnum:count:POP1990": 6, "numnum:max:POP1990": 870, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 870, "numnum:count:POP1995": 6, "numnum:max:POP1995": 976, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 976, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1063, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1063, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1189, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1245, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1245, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1321, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1321, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1398, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1398, "numnum:count:POP2025": 6, "numnum:max:POP2025": 1441, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1441, "numnum:count:POP2050": 6, "numnum:max:POP2050": 1475, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1475, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -13.841545, "numnum:min:LATITUDE": -21.138512, "numnum:sum:LATITUDE": -34.980057, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -171.738642, "numnum:min:LONGITUDE": -175.220564, "numnum:sum:LONGITUDE": -346.959206, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 61916, "numnum:min:POP_MAX": 42620, "numnum:sum:POP_MAX": 104536, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 37708, "numnum:min:POP_MIN": 23658, "numnum:sum:POP_MIN": 61366, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 42620, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 42620, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 8, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 15, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 14, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4032402, "numnum:min:GEONAMEID": 3689793, "numnum:sum:GEONAMEID": 7722195, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 61916, "numnum:min:MAX_POP10": 42620, "numnum:sum:MAX_POP10": 104536, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 61916, "numnum:min:MAX_POP20": 42620, "numnum:sum:MAX_POP20": 104536, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 61916, "numnum:min:MAX_POP50": 42620, "numnum:sum:MAX_POP50": 104536, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 61916, "numnum:min:MAX_POP300": 42620, "numnum:sum:MAX_POP300": 104536, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 39, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 54, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 39, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 54, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 15, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 21, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 15, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 21, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 51, "numnum:min:MIN_PERKM": 27, "numnum:sum:MIN_PERKM": 78, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 51, "numnum:min:MAX_PERKM": 27, "numnum:sum:MAX_PERKM": 78, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 32, "numnum:min:MIN_PERMI": 17, "numnum:sum:MIN_PERMI": 49, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 32, "numnum:min:MAX_PERMI": 17, "numnum:sum:MAX_PERMI": 49, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -171.825, "numnum:min:MIN_BBXMIN": -175.233333, "numnum:sum:MIN_BBXMIN": -347.05833299999997, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -171.825, "numnum:min:MAX_BBXMIN": -175.233333, "numnum:sum:MAX_BBXMIN": -347.05833299999997, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -171.716667, "numnum:min:MIN_BBXMAX": -175.166667, "numnum:sum:MIN_BBXMAX": -346.883334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -171.716667, "numnum:min:MAX_BBXMAX": -175.166667, "numnum:sum:MAX_BBXMAX": -346.883334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -13.866667, "numnum:min:MIN_BBYMIN": -21.166667, "numnum:sum:MIN_BBYMIN": -35.033333999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -13.866667, "numnum:min:MAX_BBYMIN": -21.166667, "numnum:sum:MAX_BBYMIN": -35.033333999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -13.8, "numnum:min:MIN_BBYMAX": -21.125, "numnum:sum:MIN_BBYMAX": -34.925, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -13.8, "numnum:min:MAX_BBYMAX": -21.125, "numnum:sum:MAX_BBYMAX": -34.925, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -171.781117, "numnum:min:MEAN_BBXC": -175.206798, "numnum:sum:MEAN_BBXC": -346.987915, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -13.837855, "numnum:min:MEAN_BBYC": -21.142325, "numnum:sum:MEAN_BBYC": -34.98018, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 22400, "numnum:min:GN_POP": 6940, "numnum:sum:GN_POP": 29340, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1561, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8438, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -12.048013, "numnum:min:LATITUDE": -16.497974, "numnum:sum:LATITUDE": -28.545986999999998, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -68.149985, "numnum:min:LONGITUDE": -77.050062, "numnum:sum:LONGITUDE": -145.20004699999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 8012000, "numnum:min:POP_MAX": 1590000, "numnum:sum:POP_MAX": 9602000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 6758234, "numnum:min:POP_MIN": 812799, "numnum:sum:POP_MIN": 7571033, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 6068380, "numnum:min:POP_OTHER": 4400, "numnum:sum:POP_OTHER": 6072780, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3936456, "numnum:min:GEONAMEID": 3911925, "numnum:sum:GEONAMEID": 7848381, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 6758234, "numnum:min:MAX_POP10": 1590482, "numnum:sum:MAX_POP10": 8348716, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7092933, "numnum:min:MAX_POP20": 1590482, "numnum:sum:MAX_POP20": 8683415, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 7115614, "numnum:min:MAX_POP50": 1590482, "numnum:sum:MAX_POP50": 8706096, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 7115806, "numnum:min:MAX_POP300": 1590482, "numnum:sum:MAX_POP300": 8706288, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 724, "numnum:min:MIN_AREAKM": 181, "numnum:sum:MIN_AREAKM": 905, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 790, "numnum:min:MAX_AREAKM": 181, "numnum:sum:MAX_AREAKM": 971, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 279, "numnum:min:MIN_AREAMI": 70, "numnum:sum:MIN_AREAMI": 349, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 305, "numnum:min:MAX_AREAMI": 70, "numnum:sum:MAX_AREAMI": 375, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 315, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 436, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 384, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 505, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 196, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 271, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 239, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 314, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -68.258333, "numnum:min:MIN_BBXMIN": -77.166667, "numnum:sum:MIN_BBXMIN": -145.425, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -68.258333, "numnum:min:MAX_BBXMIN": -77.153161, "numnum:sum:MAX_BBXMIN": -145.411494, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -68.05, "numnum:min:MIN_BBXMAX": -76.85, "numnum:sum:MIN_BBXMAX": -144.89999999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -68.05, "numnum:min:MAX_BBXMAX": -76.833333, "numnum:sum:MAX_BBXMAX": -144.883333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -12.316667, "numnum:min:MIN_BBYMIN": -16.575, "numnum:sum:MIN_BBYMIN": -28.891666999999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -12.281801, "numnum:min:MAX_BBYMIN": -16.575, "numnum:sum:MAX_BBYMIN": -28.856800999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -11.808333, "numnum:min:MIN_BBYMAX": -16.433333, "numnum:sum:MIN_BBYMAX": -28.241666000000003, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -11.808333, "numnum:min:MAX_BBYMAX": -16.433333, "numnum:sum:MAX_BBYMAX": -28.241666000000003, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -68.157765, "numnum:min:MEAN_BBXC": -77.010199, "numnum:sum:MEAN_BBXC": -145.16796399999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -12.041474, "numnum:min:MEAN_BBYC": -16.506439, "numnum:sum:MEAN_BBYC": -28.547913, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 15, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7737002, "numnum:min:GN_POP": 812799, "numnum:sum:GN_POP": 8549801, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 3829, "numnum:min:GTOPO30": 108, "numnum:sum:GTOPO30": 3937, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 440, "numnum:min:UN_FID": 411, "numnum:sum:UN_FID": 851, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 24.15, "numnum:min:UN_LAT": -12.08, "numnum:sum:UN_LAT": 12.069999999999999, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -77.04, "numnum:min:UN_LONG": -110.3, "numnum:sum:UN_LONG": -187.34, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1066, "numnum:min:POP1950": 319, "numnum:sum:POP1950": 1385, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1368, "numnum:min:POP1955": 374, "numnum:sum:POP1955": 1742, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1756, "numnum:min:POP1960": 438, "numnum:sum:POP1960": 2194, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2284, "numnum:min:POP1965": 512, "numnum:sum:POP1965": 2796, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2980, "numnum:min:POP1970": 600, "numnum:sum:POP1970": 3580, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3696, "numnum:min:POP1975": 703, "numnum:sum:POP1975": 4399, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4438, "numnum:min:POP1980": 809, "numnum:sum:POP1980": 5247, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5116, "numnum:min:POP1985": 927, "numnum:sum:POP1985": 6043, "numnum:count:POP1990": 2, "numnum:max:POP1990": 5837, "numnum:min:POP1990": 1062, "numnum:sum:POP1990": 6899, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6537, "numnum:min:POP1995": 1267, "numnum:sum:POP1995": 7804, "numnum:count:POP2000": 2, "numnum:max:POP2000": 7116, "numnum:min:POP2000": 1390, "numnum:sum:POP2000": 8506, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7747, "numnum:min:POP2005": 1527, "numnum:sum:POP2005": 9274, "numnum:count:POP2010": 2, "numnum:max:POP2010": 8012, "numnum:min:POP2010": 1590, "numnum:sum:POP2010": 9602, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8375, "numnum:min:POP2015": 1692, "numnum:sum:POP2015": 10067, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8857, "numnum:min:POP2020": 1864, "numnum:sum:POP2020": 10721, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9251, "numnum:min:POP2025": 2027, "numnum:sum:POP2025": 11278, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 2178, "numnum:sum:POP2050": 11778, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -19.040971, "numnum:min:LATITUDE": -33.450014, "numnum:sum:LATITUDE": -85.53874900000001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -65.259516, "numnum:min:LONGITUDE": -71.621014, "numnum:sum:LONGITUDE": -207.547571, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 5720000, "numnum:min:POP_MAX": 224838, "numnum:sum:POP_MAX": 6798838, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 221736, "numnum:min:POP_MIN": 15938, "numnum:sum:POP_MIN": 284285, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3066651, "numnum:min:POP_OTHER": 130815, "numnum:sum:POP_OTHER": 3419202, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3903987, "numnum:min:GEONAMEID": 3445575, "numnum:sum:GEONAMEID": 10799303, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3540014, "numnum:min:MAX_POP10": 144390, "numnum:sum:MAX_POP10": 3906140, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 5157058, "numnum:min:MAX_POP20": 221736, "numnum:sum:MAX_POP20": 6016654, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5157058, "numnum:min:MAX_POP50": 221736, "numnum:sum:MAX_POP50": 6016654, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 5157058, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 5378794, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 570, "numnum:min:MIN_AREAKM": 34, "numnum:sum:MIN_AREAKM": 638, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 903, "numnum:min:MAX_AREAKM": 34, "numnum:sum:MAX_AREAKM": 1121, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 220, "numnum:min:MIN_AREAMI": 13, "numnum:sum:MIN_AREAMI": 246, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 349, "numnum:min:MAX_AREAMI": 13, "numnum:sum:MAX_AREAMI": 433, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 310, "numnum:min:MIN_PERKM": 32, "numnum:sum:MIN_PERKM": 375, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 558, "numnum:min:MAX_PERKM": 32, "numnum:sum:MAX_PERKM": 741, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 193, "numnum:min:MIN_PERMI": 20, "numnum:sum:MIN_PERMI": 234, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 347, "numnum:min:MAX_PERMI": 20, "numnum:sum:MAX_PERMI": 461, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -65.3, "numnum:min:MIN_BBXMIN": -71.658333, "numnum:sum:MIN_BBXMIN": -207.91666600000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -65.3, "numnum:min:MAX_BBXMIN": -71.658333, "numnum:sum:MAX_BBXMIN": -207.758333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -65.225, "numnum:min:MIN_BBXMAX": -71.57441, "numnum:sum:MIN_BBXMAX": -207.25774299999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -65.225, "numnum:min:MAX_BBXMAX": -71.325, "numnum:sum:MAX_BBXMAX": -207.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -19.066667, "numnum:min:MIN_BBYMIN": -33.7, "numnum:sum:MIN_BBYMIN": -85.841667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -19.066667, "numnum:min:MAX_BBYMIN": -33.556142, "numnum:sum:MAX_BBYMIN": -85.697809, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -18.991667, "numnum:min:MIN_BBYMAX": -33.175, "numnum:sum:MIN_BBYMAX": -85.183334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -18.991667, "numnum:min:MAX_BBYMAX": -33.175, "numnum:sum:MAX_BBYMAX": -85.08333400000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -65.260317, "numnum:min:MEAN_BBXC": -71.541251, "numnum:sum:MEAN_BBXC": -207.46283799999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -19.030556, "numnum:min:MEAN_BBYC": -33.461735, "numnum:sum:MEAN_BBYC": -85.526939, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 51, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 224838, "numnum:min:GN_POP": 15938, "numnum:sum:GN_POP": 287387, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 2759, "numnum:min:GTOPO30": 405, "numnum:sum:GTOPO30": 3605, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 18, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 35, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 8.1, "numnum:min:UN_LAT": -33.02, "numnum:sum:UN_LAT": -24.92, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -80.96, "numnum:sum:UN_LONG": -152.51, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1322, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1650, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1618, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1995, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1980, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2413, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2294, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2775, "numnum:count:POP1970": 3, "numnum:max:POP1970": 2647, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3179, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3138, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3719, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3721, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4356, "numnum:count:POP1985": 3, "numnum:max:POP1985": 4201, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4886, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4616, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5349, "numnum:count:POP1995": 3, "numnum:max:POP1995": 4964, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5735, "numnum:count:POP2000": 3, "numnum:max:POP2000": 5275, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6078, "numnum:count:POP2005": 3, "numnum:max:POP2005": 5599, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6437, "numnum:count:POP2010": 3, "numnum:max:POP2010": 5720, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6574, "numnum:count:POP2015": 3, "numnum:max:POP2015": 5879, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6759, "numnum:count:POP2020": 3, "numnum:max:POP2020": 6084, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7006, "numnum:count:POP2025": 3, "numnum:max:POP2025": 6224, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7180, "numnum:count:POP2050": 3, "numnum:max:POP2050": 6310, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7292, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -71.630859, -33.063924 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1210, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -15.78334, "numnum:min:LATITUDE": -34.602502, "numnum:sum:LATITUDE": -99.24092499999999, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -46.62502, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -210.580108, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 1870000, "numnum:sum:POP_MAX": 37226996, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 11693, "numnum:sum:POP_MIN": 23525097, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 636771, "numnum:sum:POP_OTHER": 24203851, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 52, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 3469058, "numnum:min:GEONAMEID": 1730025, "numnum:sum:GEONAMEID": 12083432, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 745924, "numnum:sum:MAX_POP10": 26008876, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 1829910, "numnum:sum:MAX_POP20": 32083839, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 1838722, "numnum:sum:MAX_POP50": 34795190, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 1838722, "numnum:sum:MAX_POP300": 34795190, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30815213, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 3650, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 439, "numnum:sum:MAX_AREAKM": 6204, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 1410, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 169, "numnum:sum:MAX_AREAMI": 2395, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 570, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 1476, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 318, "numnum:sum:MAX_PERKM": 2799, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 354, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 916, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 197, "numnum:sum:MAX_PERMI": 1739, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -47.058333, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -211.908333, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -47.056372, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -211.647436, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -46.383333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -209.885665, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": -46.108333, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -209.02499999999999, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -15.941667, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": -100.333334, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -15.941667, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": -100.183998, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -15.7, "numnum:min:MIN_BBYMAX": -34.375, "numnum:sum:MIN_BBYMAX": -98.641666, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -15.7, "numnum:min:MAX_BBYMAX": -34.366667, "numnum:sum:MAX_BBYMAX": -98.408334, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -46.651489, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -210.66672400000003, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -15.824583, "numnum:min:MEAN_BBYC": -34.681331, "numnum:sum:MEAN_BBYC": -99.372337, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 65, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 11693, "numnum:sum:GN_POP": 25317006, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1092, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 1760, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 491, "numnum:min:UN_FID": 201, "numnum:sum:UN_FID": 1573, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": -15.79, "numnum:min:UN_LAT": -34.62, "numnum:sum:UN_LAT": -99.29, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": -46.62, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -210.57, "numnum:count:POP1950": 4, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 36, "numnum:sum:POP1950": 7726, "numnum:count:POP1955": 4, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 70, "numnum:sum:POP1955": 9227, "numnum:count:POP1960": 4, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 137, "numnum:sum:POP1960": 11087, "numnum:count:POP1965": 4, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 268, "numnum:sum:POP1965": 13540, "numnum:count:POP1970": 4, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 525, "numnum:sum:POP1970": 16802, "numnum:count:POP1975": 4, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 654, "numnum:sum:POP1975": 19840, "numnum:count:POP1980": 4, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 770, "numnum:sum:POP1980": 23574, "numnum:count:POP1985": 4, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 914, "numnum:sum:POP1985": 25827, "numnum:count:POP1990": 4, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 1091, "numnum:sum:POP1990": 28243, "numnum:count:POP1995": 4, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 1287, "numnum:sum:POP1995": 30646, "numnum:count:POP2000": 4, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 1507, "numnum:sum:POP2000": 33199, "numnum:count:POP2005": 4, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 1762, "numnum:sum:POP2005": 35989, "numnum:count:POP2010": 4, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 1870, "numnum:sum:POP2010": 37109, "numnum:count:POP2015": 4, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 2030, "numnum:sum:POP2015": 38639, "numnum:count:POP2020": 4, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 2277, "numnum:sum:POP2020": 40537, "numnum:count:POP2025": 4, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 2506, "numnum:sum:POP2025": 41746, "numnum:count:POP2050": 4, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 2715, "numnum:sum:POP2050": 42489, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -47.900391, -15.792254 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -22.925023, "numnum:min:LATITUDE": -34.858042, "numnum:sum:LATITUDE": -57.78306499999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -43.225021, "numnum:min:LONGITUDE": -56.171052, "numnum:sum:LONGITUDE": -99.396073, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 11748000, "numnum:min:POP_MAX": 1513000, "numnum:sum:POP_MAX": 13261000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2010175, "numnum:min:POP_MIN": 5324, "numnum:sum:POP_MIN": 2015499, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1821489, "numnum:min:POP_OTHER": 1276128, "numnum:sum:POP_OTHER": 3097617, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 5038018, "numnum:min:GEONAMEID": 3451190, "numnum:sum:GEONAMEID": 8489208, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2010175, "numnum:min:MAX_POP10": 1381747, "numnum:sum:MAX_POP10": 3391922, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8118691, "numnum:min:MAX_POP20": 1381747, "numnum:sum:MAX_POP20": 9500438, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 8889292, "numnum:min:MAX_POP50": 1381747, "numnum:sum:MAX_POP50": 10271039, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 8889292, "numnum:min:MAX_POP300": 1381747, "numnum:sum:MAX_POP300": 10271039, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 8889292, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 8889292, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 347, "numnum:min:MIN_AREAKM": 316, "numnum:sum:MIN_AREAKM": 663, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1472, "numnum:min:MAX_AREAKM": 347, "numnum:sum:MAX_AREAKM": 1819, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 134, "numnum:min:MIN_AREAMI": 122, "numnum:sum:MIN_AREAMI": 256, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 568, "numnum:min:MAX_AREAMI": 134, "numnum:sum:MAX_AREAMI": 702, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 266, "numnum:min:MIN_PERKM": 203, "numnum:sum:MIN_PERKM": 469, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 691, "numnum:min:MAX_PERKM": 266, "numnum:sum:MAX_PERKM": 957, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 165, "numnum:min:MIN_PERMI": 126, "numnum:sum:MIN_PERMI": 291, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 429, "numnum:min:MAX_PERMI": 165, "numnum:sum:MAX_PERMI": 594, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -43.75, "numnum:min:MIN_BBXMIN": -56.291667, "numnum:sum:MIN_BBXMIN": -100.04166699999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -43.499182, "numnum:min:MAX_BBXMIN": -56.291667, "numnum:sum:MAX_BBXMIN": -99.790849, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -43.158333, "numnum:min:MIN_BBXMAX": -55.8, "numnum:sum:MIN_BBXMAX": -98.958333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -43.15, "numnum:min:MAX_BBXMAX": -55.8, "numnum:sum:MAX_BBXMAX": -98.94999999999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -23.033333, "numnum:min:MIN_BBYMIN": -34.933333, "numnum:sum:MIN_BBYMIN": -57.966666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -23.033333, "numnum:min:MAX_BBYMIN": -34.933333, "numnum:sum:MAX_BBYMIN": -57.966666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -22.837896, "numnum:min:MIN_BBYMAX": -34.65, "numnum:sum:MIN_BBYMAX": -57.487896, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -22.575, "numnum:min:MAX_BBYMAX": -34.65, "numnum:sum:MAX_BBYMAX": -57.224999999999997, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -43.407551, "numnum:min:MEAN_BBXC": -56.12273, "numnum:sum:MEAN_BBXC": -99.530281, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -22.856463, "numnum:min:MEAN_BBYC": -34.828337, "numnum:sum:MEAN_BBYC": -57.684799999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 6023699, "numnum:min:GN_POP": 5324, "numnum:sum:GN_POP": 6029023, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 284, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 284, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 305, "numnum:min:GTOPO30": 19, "numnum:sum:GTOPO30": 324, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 579, "numnum:min:UN_FID": 489, "numnum:sum:UN_FID": 1068, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -22.72, "numnum:min:UN_LAT": -34.92, "numnum:sum:UN_LAT": -57.64, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -43.45, "numnum:min:UN_LONG": -56.16, "numnum:sum:UN_LONG": -99.61, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2950, "numnum:min:POP1950": 1212, "numnum:sum:POP1950": 4162, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3592, "numnum:min:POP1955": 1248, "numnum:sum:POP1955": 4840, "numnum:count:POP1960": 2, "numnum:max:POP1960": 4374, "numnum:min:POP1960": 1285, "numnum:sum:POP1960": 5659, "numnum:count:POP1965": 2, "numnum:max:POP1965": 5387, "numnum:min:POP1965": 1323, "numnum:sum:POP1965": 6710, "numnum:count:POP1970": 2, "numnum:max:POP1970": 6637, "numnum:min:POP1970": 1362, "numnum:sum:POP1970": 7999, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7557, "numnum:min:POP1975": 1403, "numnum:sum:POP1975": 8960, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8583, "numnum:min:POP1980": 1454, "numnum:sum:POP1980": 10037, "numnum:count:POP1985": 2, "numnum:max:POP1985": 9086, "numnum:min:POP1985": 1508, "numnum:sum:POP1985": 10594, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9595, "numnum:min:POP1990": 1546, "numnum:sum:POP1990": 11141, "numnum:count:POP1995": 2, "numnum:max:POP1995": 10174, "numnum:min:POP1995": 1584, "numnum:sum:POP1995": 11758, "numnum:count:POP2000": 2, "numnum:max:POP2000": 10803, "numnum:min:POP2000": 1561, "numnum:sum:POP2000": 12364, "numnum:count:POP2005": 2, "numnum:max:POP2005": 11469, "numnum:min:POP2005": 1525, "numnum:sum:POP2005": 12994, "numnum:count:POP2010": 2, "numnum:max:POP2010": 11748, "numnum:min:POP2010": 1513, "numnum:sum:POP2010": 13261, "numnum:count:POP2015": 2, "numnum:max:POP2015": 12171, "numnum:min:POP2015": 1504, "numnum:sum:POP2015": 13675, "numnum:count:POP2020": 2, "numnum:max:POP2020": 12775, "numnum:min:POP2020": 1506, "numnum:sum:POP2020": 14281, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13179, "numnum:min:POP2025": 1515, "numnum:sum:POP2025": 14694, "numnum:count:POP2050": 2, "numnum:max:POP2050": 13413, "numnum:min:POP2050": 1520, "numnum:sum:POP2050": 14933, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.849875 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 49.273417, "numnum:min:LATITUDE": 37.740008, "numnum:sum:LATITUDE": 87.01342500000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -122.459978, "numnum:min:LONGITUDE": -123.121644, "numnum:sum:LONGITUDE": -245.581622, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3450000, "numnum:min:POP_MAX": 2313328, "numnum:sum:POP_MAX": 5763328, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 732072, "numnum:min:POP_MIN": 603502, "numnum:sum:POP_MIN": 1335574, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 482002, "numnum:min:POP_OTHER": 27400, "numnum:sum:POP_OTHER": 509402, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6173331, "numnum:min:GEONAMEID": 5391959, "numnum:sum:GEONAMEID": 11565290, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1590116, "numnum:min:MAX_POP10": 988636, "numnum:sum:MAX_POP10": 2578752, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1588839, "numnum:min:MAX_POP20": 1130999, "numnum:sum:MAX_POP20": 2719838, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1590116, "numnum:min:MAX_POP50": 1371285, "numnum:sum:MAX_POP50": 2961401, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4561697, "numnum:min:MAX_POP300": 1590116, "numnum:sum:MAX_POP300": 6151813, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 4561697, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 4561697, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 706, "numnum:min:MIN_AREAKM": 218, "numnum:sum:MIN_AREAKM": 924, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1748, "numnum:min:MAX_AREAKM": 708, "numnum:sum:MAX_AREAKM": 2456, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 273, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 357, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 675, "numnum:min:MAX_AREAMI": 273, "numnum:sum:MAX_AREAMI": 948, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 398, "numnum:min:MIN_PERKM": 126, "numnum:sum:MIN_PERKM": 524, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 755, "numnum:min:MAX_PERKM": 405, "numnum:sum:MAX_PERKM": 1160, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 248, "numnum:min:MIN_PERMI": 78, "numnum:sum:MIN_PERMI": 326, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 469, "numnum:min:MAX_PERMI": 251, "numnum:sum:MAX_PERMI": 720, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -122.516667, "numnum:min:MIN_BBXMIN": -123.283333, "numnum:sum:MIN_BBXMIN": -245.8, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -122.516667, "numnum:min:MAX_BBXMIN": -123.283333, "numnum:sum:MAX_BBXMIN": -245.8, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -122.358333, "numnum:min:MIN_BBXMAX": -122.708333, "numnum:sum:MIN_BBXMAX": -245.066666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -121.733333, "numnum:min:MAX_BBXMAX": -122.708333, "numnum:sum:MAX_BBXMAX": -244.441666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 49.1, "numnum:min:MIN_BBYMIN": 37.191667, "numnum:sum:MIN_BBYMIN": 86.291667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 49.1, "numnum:min:MAX_BBYMIN": 37.575, "numnum:sum:MAX_BBYMIN": 86.67500000000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.383333, "numnum:min:MIN_BBYMAX": 37.816667, "numnum:sum:MIN_BBYMAX": 87.2, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.383333, "numnum:min:MAX_BBYMAX": 38.041667, "numnum:sum:MAX_BBYMAX": 87.425, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -122.301354, "numnum:min:MEAN_BBXC": -122.982768, "numnum:sum:MEAN_BBXC": -245.284122, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 49.228888, "numnum:min:MEAN_BBYC": 37.622288, "numnum:sum:MEAN_BBYC": 86.851176, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1837969, "numnum:min:GN_POP": 732072, "numnum:sum:GN_POP": 2570041, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 16, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 16, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": 60, "numnum:sum:GTOPO30": 123, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 570, "numnum:min:UN_FID": 15, "numnum:sum:UN_FID": 585, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 49.27, "numnum:min:UN_LAT": 37.79, "numnum:sum:UN_LAT": 87.06, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -122.38, "numnum:min:UN_LONG": -122.96, "numnum:sum:UN_LONG": -245.33999999999998, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1855, "numnum:min:POP1950": 556, "numnum:sum:POP1950": 2411, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2021, "numnum:min:POP1955": 588, "numnum:sum:POP1955": 2609, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2200, "numnum:min:POP1960": 620, "numnum:sum:POP1960": 2820, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2361, "numnum:min:POP1965": 836, "numnum:sum:POP1965": 3197, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2529, "numnum:min:POP1970": 1045, "numnum:sum:POP1970": 3574, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 1150, "numnum:sum:POP1975": 3740, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2656, "numnum:min:POP1980": 1247, "numnum:sum:POP1980": 3903, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2805, "numnum:min:POP1985": 1359, "numnum:sum:POP1985": 4164, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2961, "numnum:min:POP1990": 1559, "numnum:sum:POP1990": 4520, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3095, "numnum:min:POP1995": 1789, "numnum:sum:POP1995": 4884, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3236, "numnum:min:POP2000": 1959, "numnum:sum:POP2000": 5195, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3387, "numnum:min:POP2005": 2093, "numnum:sum:POP2005": 5480, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3450, "numnum:min:POP2010": 2146, "numnum:sum:POP2010": 5596, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3544, "numnum:min:POP2015": 2219, "numnum:sum:POP2015": 5763, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3684, "numnum:min:POP2020": 2310, "numnum:sum:POP2020": 5994, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3803, "numnum:min:POP2025": 2380, "numnum:sum:POP2025": 6183, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3898, "numnum:min:POP2050": 2444, "numnum:sum:POP2050": 6342, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.739188, "numnum:min:LATITUDE": 33.989978, "numnum:sum:LATITUDE": 73.72916599999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -104.984016, "numnum:min:LONGITUDE": -118.179981, "numnum:sum:LONGITUDE": -223.163997, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 12500000, "numnum:min:POP_MAX": 2313000, "numnum:sum:POP_MAX": 14813000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3694820, "numnum:min:POP_MIN": 1548599, "numnum:sum:POP_MIN": 5243419, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1521278, "numnum:min:POP_OTHER": 142265, "numnum:sum:POP_OTHER": 1663543, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 5419384, "numnum:min:GEONAMEID": 5368361, "numnum:sum:GEONAMEID": 10787745, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 4976870, "numnum:min:MAX_POP10": 1548599, "numnum:sum:MAX_POP10": 6525469, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 6558538, "numnum:min:MAX_POP20": 2100407, "numnum:sum:MAX_POP20": 8658945, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 14868745, "numnum:min:MAX_POP50": 2174327, "numnum:sum:MAX_POP50": 17043072, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 14870543, "numnum:min:MAX_POP300": 2174327, "numnum:sum:MAX_POP300": 17044870, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 14903021, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 14903021, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1338, "numnum:min:MIN_AREAKM": 909, "numnum:sum:MIN_AREAKM": 2247, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 5803, "numnum:min:MAX_AREAKM": 1345, "numnum:sum:MAX_AREAKM": 7148, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 517, "numnum:min:MIN_AREAMI": 351, "numnum:sum:MIN_AREAMI": 868, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 2241, "numnum:min:MAX_AREAMI": 519, "numnum:sum:MAX_AREAMI": 2760, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 534, "numnum:min:MIN_PERKM": 371, "numnum:sum:MIN_PERKM": 905, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2202, "numnum:min:MAX_PERKM": 606, "numnum:sum:MAX_PERKM": 2808, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 332, "numnum:min:MIN_PERMI": 231, "numnum:sum:MIN_PERMI": 563, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1369, "numnum:min:MAX_PERMI": 376, "numnum:sum:MAX_PERMI": 1745, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -105.241667, "numnum:min:MIN_BBXMIN": -118.991667, "numnum:sum:MIN_BBXMIN": -224.233334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -105.241667, "numnum:min:MAX_BBXMIN": -118.966667, "numnum:sum:MAX_BBXMIN": -224.208334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -104.866667, "numnum:min:MIN_BBXMAX": -117.857183, "numnum:sum:MIN_BBXMAX": -222.72385000000004, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -104.708333, "numnum:min:MAX_BBXMAX": -117.008333, "numnum:sum:MAX_BBXMAX": -221.71666599999998, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 39.5, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 72.891667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 39.5, "numnum:min:MAX_BBYMIN": 33.862631, "numnum:sum:MAX_BBYMIN": 73.362631, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 39.958333, "numnum:min:MIN_BBYMAX": 34.241667, "numnum:sum:MIN_BBYMAX": 74.2, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 40.025, "numnum:min:MAX_BBYMAX": 34.333333, "numnum:sum:MAX_BBYMAX": 74.358333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -104.993967, "numnum:min:MEAN_BBXC": -118.107478, "numnum:sum:MEAN_BBXC": -223.101445, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 39.72985, "numnum:min:MEAN_BBYC": 33.980609, "numnum:sum:MEAN_BBYC": 73.710459, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3694820, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 3694820, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 89, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 89, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 115, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 115, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 547, "numnum:min:UN_FID": 537, "numnum:sum:UN_FID": 1084, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.57, "numnum:min:UN_LAT": 34, "numnum:sum:UN_LAT": 73.57, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -105.07, "numnum:min:UN_LONG": -118.25, "numnum:sum:UN_LONG": -223.32, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4046, "numnum:min:POP1950": 505, "numnum:sum:POP1950": 4551, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5154, "numnum:min:POP1955": 641, "numnum:sum:POP1955": 5795, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6530, "numnum:min:POP1960": 809, "numnum:sum:POP1960": 7339, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7408, "numnum:min:POP1965": 923, "numnum:sum:POP1965": 8331, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8378, "numnum:min:POP1970": 1054, "numnum:sum:POP1970": 9432, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8926, "numnum:min:POP1975": 1198, "numnum:sum:POP1975": 10124, "numnum:count:POP1980": 2, "numnum:max:POP1980": 9512, "numnum:min:POP1980": 1356, "numnum:sum:POP1980": 10868, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10181, "numnum:min:POP1985": 1437, "numnum:sum:POP1985": 11618, "numnum:count:POP1990": 2, "numnum:max:POP1990": 10883, "numnum:min:POP1990": 1528, "numnum:sum:POP1990": 12411, "numnum:count:POP1995": 2, "numnum:max:POP1995": 11339, "numnum:min:POP1995": 1747, "numnum:sum:POP1995": 13086, "numnum:count:POP2000": 2, "numnum:max:POP2000": 11814, "numnum:min:POP2000": 1998, "numnum:sum:POP2000": 13812, "numnum:count:POP2005": 2, "numnum:max:POP2005": 12307, "numnum:min:POP2005": 2241, "numnum:sum:POP2005": 14548, "numnum:count:POP2010": 2, "numnum:max:POP2010": 12500, "numnum:min:POP2010": 2313, "numnum:sum:POP2010": 14813, "numnum:count:POP2015": 2, "numnum:max:POP2015": 12773, "numnum:min:POP2015": 2396, "numnum:sum:POP2015": 15169, "numnum:count:POP2020": 2, "numnum:max:POP2020": 13160, "numnum:min:POP2020": 2502, "numnum:sum:POP2020": 15662, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13461, "numnum:min:POP2025": 2590, "numnum:sum:POP2025": 16051, "numnum:count:POP2050": 2, "numnum:max:POP2050": 13672, "numnum:min:POP2050": 2661, "numnum:sum:POP2050": 16333, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 29.819974, "numnum:min:LATITUDE": 25.669995, "numnum:sum:LATITUDE": 55.489969, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -95.339979, "numnum:min:LONGITUDE": -100.329985, "numnum:sum:LONGITUDE": -195.669964, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4459000, "numnum:min:POP_MAX": 3712000, "numnum:sum:POP_MAX": 8171000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3647574, "numnum:min:POP_MIN": 1122874, "numnum:sum:POP_MIN": 4770448, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3607616, "numnum:min:POP_OTHER": 3225636, "numnum:sum:POP_OTHER": 6833252, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4699066, "numnum:min:GEONAMEID": 3995465, "numnum:sum:GEONAMEID": 8694531, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3647574, "numnum:min:MAX_POP10": 3296184, "numnum:sum:MAX_POP10": 6943758, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 4287078, "numnum:min:MAX_POP20": 3296184, "numnum:sum:MAX_POP20": 7583262, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 4352341, "numnum:min:MAX_POP50": 3296184, "numnum:sum:MAX_POP50": 7648525, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 4352341, "numnum:min:MAX_POP300": 3296184, "numnum:sum:MAX_POP300": 7648525, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2388, "numnum:min:MIN_AREAKM": 594, "numnum:sum:MIN_AREAKM": 2982, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 3041, "numnum:min:MAX_AREAKM": 594, "numnum:sum:MAX_AREAKM": 3635, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 922, "numnum:min:MIN_AREAMI": 229, "numnum:sum:MIN_AREAMI": 1151, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1174, "numnum:min:MAX_AREAMI": 229, "numnum:sum:MAX_AREAMI": 1403, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1257, "numnum:min:MIN_PERKM": 208, "numnum:sum:MIN_PERKM": 1465, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1773, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 1981, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 781, "numnum:min:MIN_PERMI": 130, "numnum:sum:MIN_PERMI": 911, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1101, "numnum:min:MAX_PERMI": 130, "numnum:sum:MAX_PERMI": 1231, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -95.841667, "numnum:min:MIN_BBXMIN": -100.5, "numnum:sum:MIN_BBXMIN": -196.341667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -95.841667, "numnum:min:MAX_BBXMIN": -100.5, "numnum:sum:MAX_BBXMIN": -196.341667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -95.133333, "numnum:min:MIN_BBXMAX": -100.125, "numnum:sum:MIN_BBXMAX": -195.258333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -95, "numnum:min:MAX_BBXMAX": -100.125, "numnum:sum:MAX_BBXMAX": -195.125, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 29.475, "numnum:min:MIN_BBYMIN": 25.575, "numnum:sum:MIN_BBYMIN": 55.05, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 29.491667, "numnum:min:MAX_BBYMIN": 25.575, "numnum:sum:MAX_BBYMIN": 55.066666999999998, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 30.258915, "numnum:min:MIN_BBYMAX": 25.85, "numnum:sum:MIN_BBYMAX": 56.108914999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 30.266667, "numnum:min:MAX_BBYMAX": 25.85, "numnum:sum:MAX_BBYMAX": 56.11666700000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -95.431928, "numnum:min:MEAN_BBXC": -100.290632, "numnum:sum:MEAN_BBXC": -195.72256, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 29.810477, "numnum:min:MEAN_BBYC": 25.71613, "numnum:sum:MEAN_BBYC": 55.526607, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 19, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1122874, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 1122874, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 563, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 563, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 542, "numnum:min:UN_FID": 359, "numnum:sum:UN_FID": 901, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 29.77, "numnum:min:UN_LAT": 25.67, "numnum:sum:UN_LAT": 55.44, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -95.4, "numnum:min:UN_LONG": -100.31, "numnum:sum:UN_LONG": -195.71, "numnum:count:POP1950": 2, "numnum:max:POP1950": 709, "numnum:min:POP1950": 356, "numnum:sum:POP1950": 1065, "numnum:count:POP1955": 2, "numnum:max:POP1955": 904, "numnum:min:POP1955": 498, "numnum:sum:POP1955": 1402, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1151, "numnum:min:POP1960": 698, "numnum:sum:POP1960": 1849, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1396, "numnum:min:POP1965": 943, "numnum:sum:POP1965": 2339, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1693, "numnum:min:POP1970": 1267, "numnum:sum:POP1970": 2960, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2030, "numnum:min:POP1975": 1589, "numnum:sum:POP1975": 3619, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2424, "numnum:min:POP1980": 1992, "numnum:sum:POP1980": 4416, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2658, "numnum:min:POP1985": 2273, "numnum:sum:POP1985": 4931, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2922, "numnum:min:POP1990": 2594, "numnum:sum:POP1990": 5516, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3353, "numnum:min:POP1995": 2961, "numnum:sum:POP1995": 6314, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3849, "numnum:min:POP2000": 3266, "numnum:sum:POP2000": 7115, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4324, "numnum:min:POP2005": 3579, "numnum:sum:POP2005": 7903, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4459, "numnum:min:POP2010": 3712, "numnum:sum:POP2010": 8171, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4609, "numnum:min:POP2015": 3901, "numnum:sum:POP2015": 8510, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4790, "numnum:min:POP2020": 4140, "numnum:sum:POP2020": 8930, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4936, "numnum:min:POP2025": 4298, "numnum:sum:POP2025": 9234, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5049, "numnum:min:POP2050": 4413, "numnum:sum:POP2050": 9462, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.681137 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1310, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 43.69998, "numnum:min:LATITUDE": 14.621135, "numnum:sum:LATITUDE": 119.593548, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -79.420021, "numnum:min:LONGITUDE": -99.130988, "numnum:sum:LONGITUDE": -356.82803, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 19028000, "numnum:min:POP_MAX": 1024000, "numnum:sum:POP_MAX": 34255000, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 10811002, "numnum:min:POP_MIN": 994938, "numnum:sum:POP_MIN": 18582313, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 10018444, "numnum:min:POP_OTHER": 2391150, "numnum:sum:POP_OTHER": 19793924, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 52, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 49, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6167865, "numnum:min:GEONAMEID": 3530597, "numnum:sum:GEONAMEID": 18183992, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 10811002, "numnum:min:MAX_POP10": 2420941, "numnum:sum:MAX_POP10": 20914162, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 17250245, "numnum:min:MAX_POP20": 2417882, "numnum:sum:MAX_POP20": 29115469, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 18948089, "numnum:min:MAX_POP50": 2419489, "numnum:sum:MAX_POP50": 34974993, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 18948089, "numnum:min:MAX_POP300": 2419489, "numnum:sum:MAX_POP300": 34974993, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 18948089, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 32589133, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 1000, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1432, "numnum:min:MIN_AREAKM": 410, "numnum:sum:MIN_AREAKM": 4082, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 4804, "numnum:min:MAX_AREAKM": 419, "numnum:sum:MAX_AREAKM": 9589, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 553, "numnum:min:MIN_AREAMI": 158, "numnum:sum:MIN_AREAMI": 1575, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 1855, "numnum:min:MAX_AREAMI": 162, "numnum:sum:MAX_AREAMI": 3703, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 471, "numnum:min:MIN_PERKM": 256, "numnum:sum:MIN_PERKM": 1465, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 2946, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 5284, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 293, "numnum:min:MIN_PERMI": 159, "numnum:sum:MIN_PERMI": 911, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 1830, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 3282, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -80.008333, "numnum:min:MIN_BBXMIN": -99.366667, "numnum:sum:MIN_BBXMIN": -358.441666, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -79.806554, "numnum:min:MAX_BBXMIN": -99.366667, "numnum:sum:MAX_BBXMIN": -357.867844, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -79.130272, "numnum:min:MIN_BBXMAX": -99.018165, "numnum:sum:MIN_BBXMAX": -356.10157499999999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": -78.608333, "numnum:min:MAX_BBXMAX": -98.808333, "numnum:sum:MAX_BBXMAX": -354.96666600000006, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 43.141667, "numnum:min:MIN_BBYMIN": 14.433333, "numnum:sum:MIN_BBYMIN": 118.166667, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 43.475, "numnum:min:MAX_BBYMIN": 14.441667, "numnum:sum:MAX_BBYMIN": 118.60833299999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 44.090162, "numnum:min:MIN_BBYMAX": 14.783333, "numnum:sum:MIN_BBYMAX": 120.514782, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 44.125, "numnum:min:MAX_BBYMAX": 14.783333, "numnum:sum:MAX_BBYMAX": 121.308333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -79.464213, "numnum:min:MEAN_BBXC": -99.116655, "numnum:sum:MEAN_BBXC": -356.983798, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 43.712937, "numnum:min:MEAN_BBYC": 14.603015, "numnum:sum:MEAN_BBYC": 119.622419, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 24, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 11285654, "numnum:min:GN_POP": 994938, "numnum:sum:GN_POP": 19734735, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 179, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 179, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 2216, "numnum:min:GTOPO30": 173, "numnum:sum:GTOPO30": 4103, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 531, "numnum:min:UN_FID": 14, "numnum:sum:UN_FID": 1103, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 43.72, "numnum:min:UN_LAT": 14.61, "numnum:sum:UN_LAT": 119.57, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": -79.41, "numnum:min:UN_LONG": -99.12, "numnum:sum:UN_LONG": -356.68999999999996, "numnum:count:POP1950": 4, "numnum:max:POP1950": 4999, "numnum:min:POP1950": 287, "numnum:sum:POP1950": 9237, "numnum:count:POP1955": 4, "numnum:max:POP1955": 5565, "numnum:min:POP1955": 370, "numnum:sum:POP1955": 11101, "numnum:count:POP1960": 4, "numnum:max:POP1960": 6183, "numnum:min:POP1960": 476, "numnum:sum:POP1960": 13415, "numnum:count:POP1965": 4, "numnum:max:POP1965": 6653, "numnum:min:POP1965": 592, "numnum:sum:POP1965": 15977, "numnum:count:POP1970": 4, "numnum:max:POP1970": 8769, "numnum:min:POP1970": 660, "numnum:sum:POP1970": 19070, "numnum:count:POP1975": 4, "numnum:max:POP1975": 10690, "numnum:min:POP1975": 715, "numnum:sum:POP1975": 21335, "numnum:count:POP1980": 4, "numnum:max:POP1980": 13010, "numnum:min:POP1980": 749, "numnum:sum:POP1980": 23983, "numnum:count:POP1985": 4, "numnum:max:POP1985": 14109, "numnum:min:POP1985": 776, "numnum:sum:POP1985": 25525, "numnum:count:POP1990": 4, "numnum:max:POP1990": 15312, "numnum:min:POP1990": 803, "numnum:sum:POP1990": 27296, "numnum:count:POP1995": 4, "numnum:max:POP1995": 16811, "numnum:min:POP1995": 839, "numnum:sum:POP1995": 29686, "numnum:count:POP2000": 4, "numnum:max:POP2000": 18022, "numnum:min:POP2000": 908, "numnum:sum:POP2000": 31870, "numnum:count:POP2005": 4, "numnum:max:POP2005": 18735, "numnum:min:POP2005": 984, "numnum:sum:POP2005": 33574, "numnum:count:POP2010": 4, "numnum:max:POP2010": 19028, "numnum:min:POP2010": 1024, "numnum:sum:POP2010": 34255, "numnum:count:POP2015": 4, "numnum:max:POP2015": 19485, "numnum:min:POP2015": 1104, "numnum:sum:POP2015": 35247, "numnum:count:POP2020": 4, "numnum:max:POP2020": 20189, "numnum:min:POP2020": 1281, "numnum:sum:POP2020": 36673, "numnum:count:POP2025": 4, "numnum:max:POP2025": 20695, "numnum:min:POP2025": 1481, "numnum:sum:POP2025": 37759, "numnum:count:POP2050": 4, "numnum:max:POP2050": 21009, "numnum:min:POP2050": 1690, "numnum:sum:POP2050": 38577, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 45.416697, "numnum:min:LATITUDE": 33.830014, "numnum:sum:LATITUDE": 79.246711, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -75.700015, "numnum:min:LONGITUDE": -84.399949, "numnum:sum:LONGITUDE": -160.099964, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4506000, "numnum:min:POP_MAX": 1145000, "numnum:sum:POP_MAX": 5651000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 812129, "numnum:min:POP_MIN": 422908, "numnum:sum:POP_MIN": 1235037, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2874096, "numnum:min:POP_OTHER": 872781, "numnum:sum:POP_OTHER": 3746877, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6094817, "numnum:min:GEONAMEID": 4180439, "numnum:sum:GEONAMEID": 10275256, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2928128, "numnum:min:MAX_POP10": 885780, "numnum:sum:MAX_POP10": 3813908, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3896411, "numnum:min:MAX_POP20": 885780, "numnum:sum:MAX_POP20": 4782191, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3910939, "numnum:min:MAX_POP50": 885780, "numnum:sum:MAX_POP50": 4796719, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3910939, "numnum:min:MAX_POP300": 885780, "numnum:sum:MAX_POP300": 4796719, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3910939, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3910939, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2761, "numnum:min:MIN_AREAKM": 504, "numnum:sum:MIN_AREAKM": 3265, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 4086, "numnum:min:MAX_AREAKM": 504, "numnum:sum:MAX_AREAKM": 4590, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 1066, "numnum:min:MIN_AREAMI": 195, "numnum:sum:MIN_AREAMI": 1261, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1578, "numnum:min:MAX_AREAMI": 195, "numnum:sum:MAX_AREAMI": 1773, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1494, "numnum:min:MIN_PERKM": 442, "numnum:sum:MIN_PERKM": 1936, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2459, "numnum:min:MAX_PERKM": 442, "numnum:sum:MAX_PERKM": 2901, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 929, "numnum:min:MIN_PERMI": 274, "numnum:sum:MIN_PERMI": 1203, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1528, "numnum:min:MAX_PERMI": 274, "numnum:sum:MAX_PERMI": 1802, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -75.983333, "numnum:min:MIN_BBXMIN": -84.875, "numnum:sum:MIN_BBXMIN": -160.85833300000003, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -75.983333, "numnum:min:MAX_BBXMIN": -84.608333, "numnum:sum:MAX_BBXMIN": -160.591666, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -75.45, "numnum:min:MIN_BBXMAX": -83.879976, "numnum:sum:MIN_BBXMAX": -159.329976, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -75.45, "numnum:min:MAX_BBXMAX": -83.858333, "numnum:sum:MAX_BBXMAX": -159.308333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 45.225, "numnum:min:MIN_BBYMIN": 33.383333, "numnum:sum:MIN_BBYMIN": 78.608333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 45.225, "numnum:min:MAX_BBYMIN": 33.383333, "numnum:sum:MAX_BBYMIN": 78.608333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 45.55, "numnum:min:MIN_BBYMAX": 34.202715, "numnum:sum:MIN_BBYMAX": 79.752715, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 45.55, "numnum:min:MAX_BBYMAX": 34.275, "numnum:sum:MAX_BBYMAX": 79.82499999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -75.717666, "numnum:min:MEAN_BBXC": -84.328739, "numnum:sum:MEAN_BBXC": -160.046405, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 45.405246, "numnum:min:MEAN_BBYC": 33.851552, "numnum:sum:MEAN_BBYC": 79.256798, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 812129, "numnum:min:GN_POP": 422908, "numnum:sum:GN_POP": 1235037, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 320, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 320, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 305, "numnum:min:GTOPO30": 61, "numnum:sum:GTOPO30": 366, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 524, "numnum:min:UN_FID": 13, "numnum:sum:UN_FID": 537, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 45.37, "numnum:min:UN_LAT": 33.79, "numnum:sum:UN_LAT": 79.16, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -75.65, "numnum:min:UN_LONG": -84.34, "numnum:sum:UN_LONG": -159.99, "numnum:count:POP1950": 2, "numnum:max:POP1950": 513, "numnum:min:POP1950": 282, "numnum:sum:POP1950": 795, "numnum:count:POP1955": 2, "numnum:max:POP1955": 631, "numnum:min:POP1955": 342, "numnum:sum:POP1955": 973, "numnum:count:POP1960": 2, "numnum:max:POP1960": 776, "numnum:min:POP1960": 415, "numnum:sum:POP1960": 1191, "numnum:count:POP1965": 2, "numnum:max:POP1965": 959, "numnum:min:POP1965": 482, "numnum:sum:POP1965": 1441, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1182, "numnum:min:POP1970": 581, "numnum:sum:POP1970": 1763, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1386, "numnum:min:POP1975": 676, "numnum:sum:POP1975": 2062, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1625, "numnum:min:POP1980": 729, "numnum:sum:POP1980": 2354, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1879, "numnum:min:POP1985": 803, "numnum:sum:POP1985": 2682, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2184, "numnum:min:POP1990": 918, "numnum:sum:POP1990": 3102, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2781, "numnum:min:POP1995": 988, "numnum:sum:POP1995": 3769, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3542, "numnum:min:POP2000": 1079, "numnum:sum:POP2000": 4621, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4307, "numnum:min:POP2005": 1119, "numnum:sum:POP2005": 5426, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4506, "numnum:min:POP2010": 1145, "numnum:sum:POP2010": 5651, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4695, "numnum:min:POP2015": 1182, "numnum:sum:POP2015": 5877, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4888, "numnum:min:POP2020": 1232, "numnum:sum:POP2020": 6120, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5035, "numnum:min:POP2025": 1274, "numnum:sum:POP2025": 6309, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5151, "numnum:min:POP2050": 1315, "numnum:sum:POP2050": 6466, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -75.717773, 45.429299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 7, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 25.787611, "numnum:min:LATITUDE": 23.131959, "numnum:sum:LATITUDE": 48.91956999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -80.224106, "numnum:min:LONGITUDE": -82.364182, "numnum:sum:LONGITUDE": -162.588288, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 5585000, "numnum:min:POP_MAX": 2174000, "numnum:sum:POP_MAX": 7759000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1990917, "numnum:min:POP_MIN": 382894, "numnum:sum:POP_MIN": 2373811, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1930305, "numnum:min:POP_OTHER": 1037811, "numnum:sum:POP_OTHER": 2968116, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4164138, "numnum:min:GEONAMEID": 3553478, "numnum:sum:GEONAMEID": 7717616, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1990917, "numnum:min:MAX_POP10": 1122682, "numnum:sum:MAX_POP10": 3113599, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2051170, "numnum:min:MAX_POP20": 1443206, "numnum:sum:MAX_POP20": 3494376, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5187749, "numnum:min:MAX_POP50": 2051170, "numnum:sum:MAX_POP50": 7238919, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5187749, "numnum:min:MAX_POP300": 2051170, "numnum:sum:MAX_POP300": 7238919, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 5187749, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5187749, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 380, "numnum:min:MIN_AREAKM": 323, "numnum:sum:MIN_AREAKM": 703, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2907, "numnum:min:MAX_AREAKM": 362, "numnum:sum:MAX_AREAKM": 3269, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 147, "numnum:min:MIN_AREAMI": 125, "numnum:sum:MIN_AREAMI": 272, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1122, "numnum:min:MAX_AREAMI": 140, "numnum:sum:MAX_AREAMI": 1262, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 240, "numnum:min:MIN_PERKM": 156, "numnum:sum:MIN_PERKM": 396, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 999, "numnum:min:MAX_PERKM": 286, "numnum:sum:MAX_PERKM": 1285, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 149, "numnum:min:MIN_PERMI": 97, "numnum:sum:MIN_PERMI": 246, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 620, "numnum:min:MAX_PERMI": 177, "numnum:sum:MAX_PERMI": 797, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -80.466667, "numnum:min:MIN_BBXMIN": -82.533333, "numnum:sum:MIN_BBXMIN": -163, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -80.441667, "numnum:min:MAX_BBXMIN": -82.533333, "numnum:sum:MAX_BBXMIN": -162.975, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -80.175719, "numnum:min:MIN_BBXMAX": -82.208333, "numnum:sum:MIN_BBXMAX": -162.384052, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -80.025, "numnum:min:MAX_BBXMAX": -82.208333, "numnum:sum:MAX_BBXMAX": -162.23333300000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 25.55, "numnum:min:MIN_BBYMIN": 22.916667, "numnum:sum:MIN_BBYMIN": 48.466667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 25.725, "numnum:min:MAX_BBYMIN": 22.975161, "numnum:sum:MAX_BBYMIN": 48.700161, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.01406, "numnum:min:MIN_BBYMAX": 23.183333, "numnum:sum:MIN_BBYMAX": 49.197393000000008, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.991667, "numnum:min:MAX_BBYMAX": 23.183333, "numnum:sum:MAX_BBYMAX": 50.175, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -80.236416, "numnum:min:MEAN_BBXC": -82.354344, "numnum:sum:MEAN_BBXC": -162.59076, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.067179, "numnum:min:MEAN_BBYC": 23.076845, "numnum:sum:MEAN_BBYC": 49.144024, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2163824, "numnum:min:GN_POP": 382894, "numnum:sum:GN_POP": 2546718, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 2, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 2, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 5, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 7, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 550, "numnum:min:UN_FID": 172, "numnum:sum:UN_FID": 722, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 25.83, "numnum:min:UN_LAT": 23.04, "numnum:sum:UN_LAT": 48.87, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -80.27, "numnum:min:UN_LONG": -82.41, "numnum:sum:UN_LONG": -162.68, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1116, "numnum:min:POP1950": 622, "numnum:sum:POP1950": 1738, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1289, "numnum:min:POP1955": 924, "numnum:sum:POP1955": 2213, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1436, "numnum:min:POP1960": 1361, "numnum:sum:POP1960": 2797, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1709, "numnum:min:POP1965": 1598, "numnum:sum:POP1965": 3307, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2141, "numnum:min:POP1970": 1779, "numnum:sum:POP1970": 3920, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2590, "numnum:min:POP1975": 1848, "numnum:sum:POP1975": 4438, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3122, "numnum:min:POP1980": 1913, "numnum:sum:POP1980": 5035, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3521, "numnum:min:POP1985": 2005, "numnum:sum:POP1985": 5526, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3969, "numnum:min:POP1990": 2108, "numnum:sum:POP1990": 6077, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4431, "numnum:min:POP1995": 2183, "numnum:sum:POP1995": 6614, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4946, "numnum:min:POP2000": 2187, "numnum:sum:POP2000": 7133, "numnum:count:POP2005": 2, "numnum:max:POP2005": 5438, "numnum:min:POP2005": 2189, "numnum:sum:POP2005": 7627, "numnum:count:POP2010": 2, "numnum:max:POP2010": 5585, "numnum:min:POP2010": 2174, "numnum:sum:POP2010": 7759, "numnum:count:POP2015": 2, "numnum:max:POP2015": 5755, "numnum:min:POP2015": 2159, "numnum:sum:POP2015": 7914, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5969, "numnum:min:POP2020": 2151, "numnum:sum:POP2020": 8120, "numnum:count:POP2025": 2, "numnum:max:POP2025": 6141, "numnum:min:POP2025": 2150, "numnum:sum:POP2025": 8291, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6272, "numnum:min:POP2050": 2150, "numnum:sum:POP2050": 8422, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -76.992188, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 8, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 24, "numnum:count:NATSCALE": 8, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 880, "numnum:count:LABELRANK": 8, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 64, "numnum:count:DIFFASCII": 8, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 8, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 8, "numnum:count:CAPALT": 8, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 8, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 8, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 6, "numnum:count:LATITUDE": 8, "numnum:max:LATITUDE": 18.541025, "numnum:min:LATITUDE": 8.968017, "numnum:sum:LATITUDE": 112.63822900000001, "numnum:count:LONGITUDE": 8, "numnum:max:LONGITUDE": -72.336035, "numnum:min:LONGITUDE": -89.203041, "numnum:sum:LONGITUDE": -664.176692, "numnum:count:CHANGED": 8, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 8, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 8, "numnum:max:POP_MAX": 1998000, "numnum:min:POP_MAX": 15220, "numnum:sum:POP_MAX": 8814920, "numnum:count:POP_MIN": 8, "numnum:max:POP_MIN": 1234742, "numnum:min:POP_MIN": 1724, "numnum:sum:POP_MIN": 4096643, "numnum:count:POP_OTHER": 8, "numnum:max:POP_OTHER": 2385397, "numnum:min:POP_OTHER": 15220, "numnum:sum:POP_OTHER": 9035521, "numnum:count:RANK_MAX": 8, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 6, "numnum:sum:RANK_MAX": 87, "numnum:count:RANK_MIN": 8, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 68, "numnum:count:GEONAMEID": 8, "numnum:max:GEONAMEID": 3718426, "numnum:min:GEONAMEID": 1690681, "numnum:sum:GEONAMEID": 27073411, "numnum:count:LS_MATCH": 8, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 8, "numnum:count:CHECKME": 8, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 8, "numnum:max:MAX_POP10": 2445384, "numnum:min:MAX_POP10": 15220, "numnum:sum:MAX_POP10": 9805628, "numnum:count:MAX_POP20": 8, "numnum:max:MAX_POP20": 2445384, "numnum:min:MAX_POP20": 15220, "numnum:sum:MAX_POP20": 10180760, "numnum:count:MAX_POP50": 8, "numnum:max:MAX_POP50": 2445384, "numnum:min:MAX_POP50": 15220, "numnum:sum:MAX_POP50": 10211797, "numnum:count:MAX_POP300": 8, "numnum:max:MAX_POP300": 2445384, "numnum:min:MAX_POP300": 15220, "numnum:sum:MAX_POP300": 10211797, "numnum:count:MAX_POP310": 8, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 8, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 800, "numnum:count:MIN_AREAKM": 8, "numnum:max:MIN_AREAKM": 379, "numnum:min:MIN_AREAKM": 9, "numnum:sum:MIN_AREAKM": 1515, "numnum:count:MAX_AREAKM": 8, "numnum:max:MAX_AREAKM": 431, "numnum:min:MAX_AREAKM": 9, "numnum:sum:MAX_AREAKM": 1698, "numnum:count:MIN_AREAMI": 8, "numnum:max:MIN_AREAMI": 146, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 583, "numnum:count:MAX_AREAMI": 8, "numnum:max:MAX_AREAMI": 166, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 654, "numnum:count:MIN_PERKM": 8, "numnum:max:MIN_PERKM": 347, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 1116, "numnum:count:MAX_PERKM": 8, "numnum:max:MAX_PERKM": 347, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 1259, "numnum:count:MIN_PERMI": 8, "numnum:max:MIN_PERMI": 215, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 693, "numnum:count:MAX_PERMI": 8, "numnum:max:MAX_PERMI": 215, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 782, "numnum:count:MIN_BBXMIN": 8, "numnum:max:MIN_BBXMIN": -72.441667, "numnum:min:MIN_BBXMIN": -89.316667, "numnum:sum:MIN_BBXMIN": -665.016668, "numnum:count:MAX_BBXMIN": 8, "numnum:max:MAX_BBXMIN": -72.441667, "numnum:min:MAX_BBXMIN": -89.316667, "numnum:sum:MAX_BBXMIN": -664.801316, "numnum:count:MIN_BBXMAX": 8, "numnum:max:MIN_BBXMAX": -72.033333, "numnum:min:MIN_BBXMAX": -88.966667, "numnum:sum:MIN_BBXMAX": -663.166666, "numnum:count:MAX_BBXMAX": 8, "numnum:max:MAX_BBXMAX": -72.033333, "numnum:min:MAX_BBXMAX": -88.966667, "numnum:sum:MAX_BBXMAX": -663.158333, "numnum:count:MIN_BBYMIN": 8, "numnum:max:MIN_BBYMIN": 18.491667, "numnum:min:MIN_BBYMIN": 8.933333, "numnum:sum:MIN_BBYMIN": 112.158333, "numnum:count:MAX_BBYMIN": 8, "numnum:max:MAX_BBYMIN": 18.491667, "numnum:min:MAX_BBYMIN": 8.943752, "numnum:sum:MAX_BBYMIN": 112.16875200000001, "numnum:count:MIN_BBYMAX": 8, "numnum:max:MIN_BBYMAX": 18.666667, "numnum:min:MIN_BBYMAX": 9.1, "numnum:sum:MIN_BBYMAX": 113.366667, "numnum:count:MAX_BBYMAX": 8, "numnum:max:MAX_BBYMAX": 18.666667, "numnum:min:MAX_BBYMAX": 9.1, "numnum:sum:MAX_BBYMAX": 113.375, "numnum:count:MEAN_BBXC": 8, "numnum:max:MEAN_BBXC": -72.222424, "numnum:min:MEAN_BBXC": -89.176042, "numnum:sum:MEAN_BBXC": -664.033442, "numnum:count:MEAN_BBYC": 8, "numnum:max:MEAN_BBYC": 18.56946, "numnum:min:MEAN_BBYC": 9.035936, "numnum:sum:MEAN_BBYC": 112.78749299999999, "numnum:count:COMPARE": 8, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 8, "numnum:max:ADMIN1_COD": 37, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 106, "numnum:count:GN_POP": 8, "numnum:max:GN_POP": 1234742, "numnum:min:GN_POP": 1724, "numnum:sum:GN_POP": 4422457, "numnum:count:ELEVATION": 8, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 8, "numnum:max:GTOPO30": 1468, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 2712, "numnum:count:UN_FID": 8, "numnum:max:UN_FID": 408, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1557, "numnum:count:UN_LAT": 8, "numnum:max:UN_LAT": 18.52, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 77.39, "numnum:count:UN_LONG": 8, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -89.2, "numnum:sum:UN_LONG": -498.59000000000006, "numnum:count:POP1950": 8, "numnum:max:POP1950": 194, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 829, "numnum:count:POP1955": 8, "numnum:max:POP1955": 246, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1076, "numnum:count:POP1960": 8, "numnum:max:POP1960": 311, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1398, "numnum:count:POP1965": 8, "numnum:max:POP1965": 394, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1816, "numnum:count:POP1970": 8, "numnum:max:POP1970": 500, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2363, "numnum:count:POP1975": 8, "numnum:max:POP1975": 596, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2874, "numnum:count:POP1980": 8, "numnum:max:POP1980": 701, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3437, "numnum:count:POP1985": 8, "numnum:max:POP1985": 881, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4146, "numnum:count:POP1990": 8, "numnum:max:POP1990": 1134, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5001, "numnum:count:POP1995": 8, "numnum:max:POP1995": 1427, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5896, "numnum:count:POP2000": 8, "numnum:max:POP2000": 1653, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6670, "numnum:count:POP2005": 8, "numnum:max:POP2005": 1885, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 7502, "numnum:count:POP2010": 8, "numnum:max:POP2010": 1998, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 7862, "numnum:count:POP2015": 8, "numnum:max:POP2015": 2209, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8448, "numnum:count:POP2020": 8, "numnum:max:POP2020": 2621, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9483, "numnum:count:POP2025": 8, "numnum:max:POP2025": 3012, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10489, "numnum:count:POP2050": 8, "numnum:max:POP2050": 3346, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11409, "accum": 8, "numnum:count:accum2": 8, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 8, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.266728 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 800, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 18.470073, "numnum:min:LATITUDE": 4.596424, "numnum:sum:LATITUDE": 23.066497, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -69.900085, "numnum:min:LONGITUDE": -74.083344, "numnum:sum:LONGITUDE": -143.983429, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7772000, "numnum:min:POP_MAX": 2154000, "numnum:sum:POP_MAX": 9926000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 6333661, "numnum:min:POP_MIN": 2873, "numnum:sum:POP_MIN": 6336534, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5754084, "numnum:min:POP_OTHER": 3322037, "numnum:sum:POP_OTHER": 9076121, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3688689, "numnum:min:GEONAMEID": 3668373, "numnum:sum:GEONAMEID": 7357062, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 6333661, "numnum:min:MAX_POP10": 3334413, "numnum:sum:MAX_POP10": 9668074, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 6333154, "numnum:min:MAX_POP20": 3334413, "numnum:sum:MAX_POP20": 9667567, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 6333154, "numnum:min:MAX_POP50": 3334413, "numnum:sum:MAX_POP50": 9667567, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 6333154, "numnum:min:MAX_POP300": 3334413, "numnum:sum:MAX_POP300": 9667567, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 6333154, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 6333154, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 523, "numnum:min:MIN_AREAKM": 451, "numnum:sum:MIN_AREAKM": 974, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 523, "numnum:min:MAX_AREAKM": 451, "numnum:sum:MAX_AREAKM": 974, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 202, "numnum:min:MIN_AREAMI": 174, "numnum:sum:MIN_AREAMI": 376, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 202, "numnum:min:MAX_AREAMI": 174, "numnum:sum:MAX_AREAMI": 376, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 309, "numnum:min:MIN_PERKM": 186, "numnum:sum:MIN_PERKM": 495, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 309, "numnum:min:MAX_PERKM": 186, "numnum:sum:MAX_PERKM": 495, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 192, "numnum:min:MIN_PERMI": 116, "numnum:sum:MIN_PERMI": 308, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 192, "numnum:min:MAX_PERMI": 116, "numnum:sum:MAX_PERMI": 308, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -70.208333, "numnum:min:MIN_BBXMIN": -74.266667, "numnum:sum:MIN_BBXMIN": -144.475, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -70.208333, "numnum:min:MAX_BBXMIN": -74.266667, "numnum:sum:MAX_BBXMIN": -144.475, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -69.766667, "numnum:min:MIN_BBXMAX": -74.008333, "numnum:sum:MIN_BBXMAX": -143.77499999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -69.766667, "numnum:min:MAX_BBXMAX": -74.008333, "numnum:sum:MAX_BBXMAX": -143.77499999999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 18.316667, "numnum:min:MIN_BBYMIN": 4.483333, "numnum:sum:MIN_BBYMIN": 22.799999999999998, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 18.316667, "numnum:min:MAX_BBYMIN": 4.483333, "numnum:sum:MAX_BBYMIN": 22.799999999999998, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 18.591667, "numnum:min:MIN_BBYMAX": 4.8, "numnum:sum:MIN_BBYMAX": 23.391667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 18.591667, "numnum:min:MAX_BBYMAX": 4.8, "numnum:sum:MAX_BBYMAX": 23.391667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -69.980546, "numnum:min:MEAN_BBXC": -74.116517, "numnum:sum:MEAN_BBXC": -144.097063, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 18.467176, "numnum:min:MEAN_BBYC": 4.643227, "numnum:sum:MEAN_BBYC": 23.110402999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 34, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 36, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7102602, "numnum:min:GN_POP": 2873, "numnum:sum:GN_POP": 7105475, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 2620, "numnum:min:GTOPO30": 2004, "numnum:sum:GTOPO30": 4624, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 176, "numnum:min:UN_FID": 161, "numnum:sum:UN_FID": 337, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 18.48, "numnum:min:UN_LAT": 4.63, "numnum:sum:UN_LAT": 23.11, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -69.89, "numnum:min:UN_LONG": -74.08, "numnum:sum:UN_LONG": -143.97, "numnum:count:POP1950": 2, "numnum:max:POP1950": 630, "numnum:min:POP1950": 219, "numnum:sum:POP1950": 849, "numnum:count:POP1955": 2, "numnum:max:POP1955": 894, "numnum:min:POP1955": 312, "numnum:sum:POP1955": 1206, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1269, "numnum:min:POP1960": 446, "numnum:sum:POP1960": 1715, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1780, "numnum:min:POP1965": 613, "numnum:sum:POP1965": 2393, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2383, "numnum:min:POP1970": 833, "numnum:sum:POP1970": 3216, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3040, "numnum:min:POP1975": 1016, "numnum:sum:POP1975": 4056, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3525, "numnum:min:POP1980": 1240, "numnum:sum:POP1980": 4765, "numnum:count:POP1985": 2, "numnum:max:POP1985": 4087, "numnum:min:POP1985": 1396, "numnum:sum:POP1985": 5483, "numnum:count:POP1990": 2, "numnum:max:POP1990": 4740, "numnum:min:POP1990": 1522, "numnum:sum:POP1990": 6262, "numnum:count:POP1995": 2, "numnum:max:POP1995": 5494, "numnum:min:POP1995": 1670, "numnum:sum:POP1995": 7164, "numnum:count:POP2000": 2, "numnum:max:POP2000": 6356, "numnum:min:POP2000": 1854, "numnum:sum:POP2000": 8210, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7353, "numnum:min:POP2005": 2062, "numnum:sum:POP2005": 9415, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7772, "numnum:min:POP2010": 2154, "numnum:sum:POP2010": 9926, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8320, "numnum:min:POP2015": 2298, "numnum:sum:POP2015": 10618, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8916, "numnum:min:POP2020": 2525, "numnum:sum:POP2020": 11441, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9299, "numnum:min:POP2025": 2722, "numnum:sum:POP2025": 12021, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9600, "numnum:min:POP2050": 2885, "numnum:sum:POP2050": 12485, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -69.916992, 18.479609 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 150, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 17.30203, "numnum:min:LATITUDE": 15.301016, "numnum:sum:LATITUDE": 49.72108300000001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -61.387013, "numnum:min:LONGITUDE": -62.717009, "numnum:sum:LONGITUDE": -185.954056, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 35499, "numnum:min:POP_MAX": 21887, "numnum:sum:POP_MAX": 80722, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 24226, "numnum:min:POP_MIN": 15500, "numnum:sum:POP_MIN": 56297, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 23336, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 45223, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3576022, "numnum:min:GEONAMEID": 3575551, "numnum:sum:GEONAMEID": 10727208, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 35499, "numnum:min:MAX_POP10": 21887, "numnum:sum:MAX_POP10": 80722, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 35499, "numnum:min:MAX_POP20": 21887, "numnum:sum:MAX_POP20": 80722, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 35499, "numnum:min:MAX_POP50": 21887, "numnum:sum:MAX_POP50": 80722, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 35499, "numnum:min:MAX_POP300": 21887, "numnum:sum:MAX_POP300": 80722, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 25, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 44, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 25, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 44, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 10, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 18, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 10, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 18, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 38, "numnum:min:MIN_PERKM": 16, "numnum:sum:MIN_PERKM": 79, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 38, "numnum:min:MAX_PERKM": 16, "numnum:sum:MAX_PERKM": 79, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 24, "numnum:min:MIN_PERMI": 10, "numnum:sum:MIN_PERMI": 50, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 24, "numnum:min:MAX_PERMI": 10, "numnum:sum:MAX_PERMI": 50, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -61.4, "numnum:min:MIN_BBXMIN": -62.741667, "numnum:sum:MIN_BBXMIN": -186, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -61.4, "numnum:min:MAX_BBXMIN": -62.741667, "numnum:sum:MAX_BBXMIN": -186, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -61.35, "numnum:min:MIN_BBXMAX": -62.708333, "numnum:sum:MIN_BBXMAX": -185.841666, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -61.35, "numnum:min:MAX_BBXMAX": -62.708333, "numnum:sum:MAX_BBXMAX": -185.841666, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 17.291667, "numnum:min:MIN_BBYMIN": 15.266667, "numnum:sum:MIN_BBYMIN": 49.650001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 17.291667, "numnum:min:MAX_BBYMIN": 15.266667, "numnum:sum:MAX_BBYMIN": 49.650001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 17.333333, "numnum:min:MIN_BBYMAX": 15.325, "numnum:sum:MIN_BBYMAX": 49.8, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 17.333333, "numnum:min:MAX_BBYMAX": 15.325, "numnum:sum:MAX_BBYMAX": 49.8, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -61.3775, "numnum:min:MEAN_BBXC": -62.726389, "numnum:sum:MEAN_BBXC": -185.927948, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 17.306019, "numnum:min:MEAN_BBYC": 15.298056, "numnum:sum:MEAN_BBYC": 49.72464, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 4, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 24226, "numnum:min:GN_POP": 12920, "numnum:sum:GN_POP": 53717, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9997, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 14.008696 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 12, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 150, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 13.148279, "numnum:min:LATITUDE": 12.052633, "numnum:sum:LATITUDE": 38.302915, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -59.616527, "numnum:min:LONGITUDE": -61.741643, "numnum:sum:LONGITUDE": -182.570232, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 191152, "numnum:min:POP_MAX": 33734, "numnum:sum:POP_MAX": 274371, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 96578, "numnum:min:POP_MIN": 24518, "numnum:sum:POP_MIN": 148439, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 191814, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 219157, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 9, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 8, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4359981, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 10015713, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 191152, "numnum:min:MAX_POP10": 27343, "numnum:sum:MAX_POP10": 267980, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 191152, "numnum:min:MAX_POP20": 27343, "numnum:sum:MAX_POP20": 267980, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 191152, "numnum:min:MAX_POP50": 27343, "numnum:sum:MAX_POP50": 267980, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 191152, "numnum:min:MAX_POP300": 27343, "numnum:sum:MAX_POP300": 267980, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 106, "numnum:min:MIN_AREAKM": 10, "numnum:sum:MIN_AREAKM": 133, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 106, "numnum:min:MAX_AREAKM": 10, "numnum:sum:MAX_AREAKM": 133, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 41, "numnum:min:MIN_AREAMI": 4, "numnum:sum:MIN_AREAMI": 52, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 41, "numnum:min:MAX_AREAMI": 4, "numnum:sum:MAX_AREAMI": 52, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 131, "numnum:min:MIN_PERKM": 18, "numnum:sum:MIN_PERKM": 180, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 131, "numnum:min:MAX_PERKM": 18, "numnum:sum:MAX_PERKM": 180, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 82, "numnum:min:MIN_PERMI": 11, "numnum:sum:MIN_PERMI": 112, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 82, "numnum:min:MAX_PERMI": 11, "numnum:sum:MAX_PERMI": 112, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -59.641667, "numnum:min:MIN_BBXMIN": -61.758333, "numnum:sum:MIN_BBXMIN": -182.64166699999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -59.641667, "numnum:min:MAX_BBXMIN": -61.758333, "numnum:sum:MAX_BBXMIN": -182.64166699999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -59.5, "numnum:min:MIN_BBXMAX": -61.725, "numnum:sum:MIN_BBXMAX": -182.383333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -59.5, "numnum:min:MAX_BBXMAX": -61.725, "numnum:sum:MAX_BBXMAX": -182.383333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 13.125, "numnum:min:MIN_BBYMIN": 12.025, "numnum:sum:MIN_BBYMIN": 38.2, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 13.125, "numnum:min:MAX_BBYMIN": 12.025, "numnum:sum:MAX_BBYMIN": 38.2, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 12.066667, "numnum:sum:MIN_BBYMAX": 38.508334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 12.066667, "numnum:sum:MAX_BBYMAX": 38.508334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -59.589731, "numnum:min:MEAN_BBXC": -61.745833, "numnum:sum:MEAN_BBXC": -182.537747, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 13.145833, "numnum:min:MEAN_BBYC": 12.046528, "numnum:sum:MEAN_BBYC": 38.321134, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 7500, "numnum:min:GN_POP": 1662, "numnum:sum:GN_POP": 12133, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 5, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 5, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 152, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 179, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -66.928711, 10.487812 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 160, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 10.651997, "numnum:min:LATITUDE": 6.801974, "numnum:sum:LATITUDE": 17.453971, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -58.167029, "numnum:min:LONGITUDE": -61.517031, "numnum:sum:LONGITUDE": -119.68406, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 294934, "numnum:min:POP_MAX": 264350, "numnum:sum:POP_MAX": 559284, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 235017, "numnum:min:POP_MIN": 49031, "numnum:sum:POP_MIN": 284048, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 419082, "numnum:min:POP_OTHER": 264350, "numnum:sum:POP_OTHER": 683432, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3573890, "numnum:min:GEONAMEID": 3378644, "numnum:sum:GEONAMEID": 6952534, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 294934, "numnum:min:MAX_POP10": 264350, "numnum:sum:MAX_POP10": 559284, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 294934, "numnum:min:MAX_POP20": 264350, "numnum:sum:MAX_POP20": 559284, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 294934, "numnum:min:MAX_POP50": 264350, "numnum:sum:MAX_POP50": 559284, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 294934, "numnum:min:MAX_POP300": 264350, "numnum:sum:MAX_POP300": 559284, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 112, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 149, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 112, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 149, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 43, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 57, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 43, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 57, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 109, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 153, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 109, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 153, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 67, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 94, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 67, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 94, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -58.2, "numnum:min:MIN_BBXMIN": -61.533333, "numnum:sum:MIN_BBXMIN": -119.733333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -58.2, "numnum:min:MAX_BBXMIN": -61.533333, "numnum:sum:MAX_BBXMIN": -119.733333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -58.116667, "numnum:min:MIN_BBXMAX": -61.25, "numnum:sum:MIN_BBXMAX": -119.366667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -58.116667, "numnum:min:MAX_BBXMAX": -61.25, "numnum:sum:MAX_BBXMAX": -119.366667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 10.583333, "numnum:min:MIN_BBYMIN": 6.75, "numnum:sum:MIN_BBYMIN": 17.333333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 10.583333, "numnum:min:MAX_BBYMIN": 6.75, "numnum:sum:MAX_BBYMIN": 17.333333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 10.666667, "numnum:min:MIN_BBYMAX": 6.833333, "numnum:sum:MIN_BBYMAX": 17.5, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 10.666667, "numnum:min:MAX_BBYMAX": 6.833333, "numnum:sum:MAX_BBYMAX": 17.5, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -58.153788, "numnum:min:MEAN_BBXC": -61.383365, "numnum:sum:MEAN_BBXC": -119.53715299999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 10.638816, "numnum:min:MEAN_BBYC": 6.797348, "numnum:sum:MEAN_BBYC": 17.436164, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 12, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 17, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 235017, "numnum:min:GN_POP": 49657, "numnum:sum:GN_POP": 284674, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9998, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -61.523438, 10.660608 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 64.150024, "numnum:min:LATITUDE": 5.83503, "numnum:sum:LATITUDE": 123.318115, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -6.248906, "numnum:min:LONGITUDE": -55.167031, "numnum:sum:LONGITUDE": -83.36595100000001, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1059000, "numnum:min:POP_MAX": 166212, "numnum:sum:POP_MAX": 1479381, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 968976, "numnum:min:POP_MIN": 113906, "numnum:sum:POP_MIN": 1306639, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 248161, "numnum:min:POP_OTHER": 22478, "numnum:sum:POP_OTHER": 430755, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 31, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 30, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3413829, "numnum:min:GEONAMEID": 2964574, "numnum:sum:GEONAMEID": 9761733, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 968976, "numnum:min:MAX_POP10": 166212, "numnum:sum:MAX_POP10": 1389357, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 968976, "numnum:min:MAX_POP20": 166212, "numnum:sum:MAX_POP20": 1389357, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 968976, "numnum:min:MAX_POP50": 166212, "numnum:sum:MAX_POP50": 1389357, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 968976, "numnum:min:MAX_POP300": 166212, "numnum:sum:MAX_POP300": 1389357, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 968976, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 968976, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 351, "numnum:min:MIN_AREAKM": 75, "numnum:sum:MIN_AREAKM": 530, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 351, "numnum:min:MAX_AREAKM": 75, "numnum:sum:MAX_AREAKM": 531, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 135, "numnum:min:MIN_AREAMI": 29, "numnum:sum:MIN_AREAMI": 204, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 135, "numnum:min:MAX_AREAMI": 29, "numnum:sum:MAX_AREAMI": 204, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 250, "numnum:min:MIN_PERKM": 83, "numnum:sum:MIN_PERKM": 452, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 250, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 454, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 155, "numnum:min:MIN_PERMI": 51, "numnum:sum:MIN_PERMI": 280, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 155, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 282, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -6.533333, "numnum:min:MIN_BBXMIN": -55.283333, "numnum:sum:MIN_BBXMIN": -83.82499899999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -6.533333, "numnum:min:MAX_BBXMIN": -55.283333, "numnum:sum:MAX_BBXMIN": -83.82499899999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -6.041667, "numnum:min:MIN_BBXMAX": -55.107566, "numnum:sum:MIN_BBXMAX": -82.899233, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -6.041667, "numnum:min:MAX_BBXMAX": -55.1, "numnum:sum:MAX_BBXMAX": -82.891667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 64.05, "numnum:min:MIN_BBYMIN": 5.766667, "numnum:sum:MIN_BBYMIN": 122.99166699999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 64.05, "numnum:min:MAX_BBYMIN": 5.766667, "numnum:sum:MAX_BBYMIN": 122.99166699999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 64.166667, "numnum:min:MIN_BBYMAX": 5.866667, "numnum:sum:MIN_BBYMAX": 123.466667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 64.166667, "numnum:min:MAX_BBYMAX": 5.866667, "numnum:sum:MAX_BBYMAX": 123.466667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -6.278983, "numnum:min:MEAN_BBXC": -55.188737, "numnum:sum:MEAN_BBXC": -83.35022, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 64.116125, "numnum:min:MEAN_BBYC": 5.826428, "numnum:sum:MEAN_BBYC": 123.27227, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 39, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 62, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1024027, "numnum:min:GN_POP": 113906, "numnum:sum:GN_POP": 1361690, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 16, "numnum:min:GTOPO30": 3, "numnum:sum:GTOPO30": 28, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 302, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 302, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 53.34, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 53.34, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -6.25, "numnum:sum:UN_LONG": -6.25, "numnum:count:POP1950": 3, "numnum:max:POP1950": 626, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 626, "numnum:count:POP1955": 3, "numnum:max:POP1955": 647, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 647, "numnum:count:POP1960": 3, "numnum:max:POP1960": 661, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 661, "numnum:count:POP1965": 3, "numnum:max:POP1965": 723, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 723, "numnum:count:POP1970": 3, "numnum:max:POP1970": 771, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 771, "numnum:count:POP1975": 3, "numnum:max:POP1975": 833, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 833, "numnum:count:POP1980": 3, "numnum:max:POP1980": 903, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 903, "numnum:count:POP1985": 3, "numnum:max:POP1985": 920, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 920, "numnum:count:POP1990": 3, "numnum:max:POP1990": 916, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 916, "numnum:count:POP1995": 3, "numnum:max:POP1995": 946, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 946, "numnum:count:POP2000": 3, "numnum:max:POP2000": 989, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 989, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1037, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1037, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1059, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1059, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1098, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1177, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1257, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1257, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1332, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 51.499995, "numnum:min:LATITUDE": 14.916698, "numnum:sum:LATITUDE": 66.416693, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -0.116722, "numnum:min:LONGITUDE": -23.516689, "numnum:sum:LONGITUDE": -23.633411, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 8567000, "numnum:min:POP_MAX": 113364, "numnum:sum:POP_MAX": 8680364, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7421209, "numnum:min:POP_MIN": 88859, "numnum:sum:POP_MIN": 7510068, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 326670, "numnum:min:POP_OTHER": 89205, "numnum:sum:POP_OTHER": 415875, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3374333, "numnum:min:GEONAMEID": 2643743, "numnum:sum:GEONAMEID": 6018076, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7721282, "numnum:min:MAX_POP10": 88859, "numnum:sum:MAX_POP10": 7810141, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8370578, "numnum:min:MAX_POP20": 88859, "numnum:sum:MAX_POP20": 8459437, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 10011551, "numnum:min:MAX_POP50": 88859, "numnum:sum:MAX_POP50": 10100410, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 10011551, "numnum:min:MAX_POP300": 88859, "numnum:sum:MAX_POP300": 10100410, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 10011551, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 10011551, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1914, "numnum:min:MIN_AREAKM": 37, "numnum:sum:MIN_AREAKM": 1951, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 3198, "numnum:min:MAX_AREAKM": 37, "numnum:sum:MAX_AREAKM": 3235, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 739, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 753, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1235, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 1249, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 994, "numnum:min:MIN_PERKM": 40, "numnum:sum:MIN_PERKM": 1034, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2440, "numnum:min:MAX_PERKM": 40, "numnum:sum:MAX_PERKM": 2480, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 618, "numnum:min:MIN_PERMI": 25, "numnum:sum:MIN_PERMI": 643, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1516, "numnum:min:MAX_PERMI": 25, "numnum:sum:MAX_PERMI": 1541, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -1.091667, "numnum:min:MIN_BBXMIN": -23.541667, "numnum:sum:MIN_BBXMIN": -24.633334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -0.546866, "numnum:min:MAX_BBXMIN": -23.541667, "numnum:sum:MAX_BBXMIN": -24.088533, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 0.307108, "numnum:min:MIN_BBXMAX": -23.483333, "numnum:sum:MIN_BBXMAX": -23.176225, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 0.816667, "numnum:min:MAX_BBXMAX": -23.483333, "numnum:sum:MAX_BBXMAX": -22.666666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 51.133333, "numnum:min:MIN_BBYMIN": 14.9, "numnum:sum:MIN_BBYMIN": 66.033333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 51.208333, "numnum:min:MAX_BBYMIN": 14.9, "numnum:sum:MAX_BBYMIN": 66.108333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 51.825, "numnum:min:MIN_BBYMAX": 14.983333, "numnum:sum:MIN_BBYMAX": 66.808333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 51.825, "numnum:min:MAX_BBYMAX": 14.983333, "numnum:sum:MAX_BBYMAX": 66.808333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -0.169651, "numnum:min:MEAN_BBXC": -23.514907, "numnum:sum:MEAN_BBXC": -23.684558000000004, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 51.489624, "numnum:min:MEAN_BBYC": 14.938056, "numnum:sum:MEAN_BBYC": 66.42768, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7421209, "numnum:min:GN_POP": 113364, "numnum:sum:GN_POP": 7534573, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 21, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9978, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 519, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 519, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 51.48, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 51.48, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -0.17, "numnum:sum:UN_LONG": -0.17, "numnum:count:POP1950": 2, "numnum:max:POP1950": 8361, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 8361, "numnum:count:POP1955": 2, "numnum:max:POP1955": 8278, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 8278, "numnum:count:POP1960": 2, "numnum:max:POP1960": 8196, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 8196, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7869, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7869, "numnum:count:POP1970": 2, "numnum:max:POP1970": 7509, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 7509, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7546, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 7546, "numnum:count:POP1980": 2, "numnum:max:POP1980": 7660, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7660, "numnum:count:POP1985": 2, "numnum:max:POP1985": 7667, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7667, "numnum:count:POP1990": 2, "numnum:max:POP1990": 7654, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 7654, "numnum:count:POP1995": 2, "numnum:max:POP1995": 7908, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7908, "numnum:count:POP2000": 2, "numnum:max:POP2000": 8225, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8225, "numnum:count:POP2005": 2, "numnum:max:POP2005": 8505, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8505, "numnum:count:POP2010": 2, "numnum:max:POP2010": 8567, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 8567, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8607, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 8607, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8618, "numnum:count:POP2025": 2, "numnum:max:POP2025": 8618, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8618, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8618, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8618, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 38.722723, "numnum:min:LATITUDE": 33.599976, "numnum:sum:LATITUDE": 106.34799799999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": -6.836131, "numnum:min:LONGITUDE": -9.144866, "numnum:sum:LONGITUDE": -23.597364, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3181000, "numnum:min:POP_MAX": 1705000, "numnum:sum:POP_MAX": 7698000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3144909, "numnum:min:POP_MIN": 517802, "numnum:sum:POP_MIN": 5318464, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3718797, "numnum:min:POP_OTHER": 1795582, "numnum:sum:POP_OTHER": 7543728, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2553604, "numnum:min:GEONAMEID": 2267057, "numnum:sum:GEONAMEID": 7359136, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3796279, "numnum:min:MAX_POP10": 1832316, "numnum:sum:MAX_POP10": 7665719, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3796279, "numnum:min:MAX_POP20": 1831921, "numnum:sum:MAX_POP20": 7665324, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3796279, "numnum:min:MAX_POP50": 1831921, "numnum:sum:MAX_POP50": 7665324, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3796279, "numnum:min:MAX_POP300": 1831921, "numnum:sum:MAX_POP300": 7665324, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 506, "numnum:min:MIN_AREAKM": 428, "numnum:sum:MIN_AREAKM": 1370, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 508, "numnum:min:MAX_AREAKM": 428, "numnum:sum:MAX_AREAKM": 1372, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 196, "numnum:min:MIN_AREAMI": 165, "numnum:sum:MIN_AREAMI": 529, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 196, "numnum:min:MAX_AREAMI": 165, "numnum:sum:MAX_AREAMI": 529, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 475, "numnum:min:MIN_PERKM": 261, "numnum:sum:MIN_PERKM": 1091, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 475, "numnum:min:MAX_PERKM": 261, "numnum:sum:MAX_PERKM": 1096, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 295, "numnum:min:MIN_PERMI": 162, "numnum:sum:MIN_PERMI": 678, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 295, "numnum:min:MAX_PERMI": 162, "numnum:sum:MAX_PERMI": 681, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": -7.116667, "numnum:min:MIN_BBXMIN": -9.466667, "numnum:sum:MIN_BBXMIN": -24.283334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": -7.116667, "numnum:min:MAX_BBXMIN": -9.466667, "numnum:sum:MAX_BBXMIN": -24.283334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": -6.725, "numnum:min:MIN_BBXMAX": -8.958333, "numnum:sum:MIN_BBXMAX": -23.008333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": -6.725, "numnum:min:MAX_BBXMAX": -8.958333, "numnum:sum:MAX_BBXMAX": -23.008333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.675, "numnum:min:MIN_BBYMIN": 33.391667, "numnum:sum:MIN_BBYMIN": 105.808334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.675, "numnum:min:MAX_BBYMIN": 33.391667, "numnum:sum:MAX_BBYMIN": 105.808334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.008333, "numnum:min:MIN_BBYMAX": 33.733333, "numnum:sum:MIN_BBYMAX": 106.86666600000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 39.008333, "numnum:min:MAX_BBYMAX": 33.733333, "numnum:sum:MAX_BBYMAX": 106.86666600000001, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": -6.87491, "numnum:min:MEAN_BBXC": -9.232769, "numnum:sum:MEAN_BBXC": -23.62619, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.783256, "numnum:min:MEAN_BBYC": 33.557664, "numnum:sum:MEAN_BBYC": 106.25376700000001, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 49, "numnum:min:ADMIN1_COD": 14, "numnum:sum:ADMIN1_COD": 108, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3144909, "numnum:min:GN_POP": 517802, "numnum:sum:GN_POP": 5318464, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 56, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 127, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 419, "numnum:min:UN_FID": 372, "numnum:sum:UN_FID": 1166, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 38.72, "numnum:min:UN_LAT": 33.6, "numnum:sum:UN_LAT": 106.32999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": -6.83, "numnum:min:UN_LONG": -9.12, "numnum:sum:UN_LONG": -23.58, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1304, "numnum:min:POP1950": 145, "numnum:sum:POP1950": 2074, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1405, "numnum:min:POP1955": 184, "numnum:sum:POP1955": 2367, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1514, "numnum:min:POP1960": 233, "numnum:sum:POP1960": 2714, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 339, "numnum:sum:POP1965": 3202, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1817, "numnum:min:POP1970": 494, "numnum:sum:POP1970": 3816, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2103, "numnum:min:POP1975": 641, "numnum:sum:POP1975": 4537, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2449, "numnum:min:POP1980": 808, "numnum:sum:POP1980": 5366, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2518, "numnum:min:POP1985": 986, "numnum:sum:POP1985": 5910, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2682, "numnum:min:POP1990": 1174, "numnum:sum:POP1990": 6393, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2951, "numnum:min:POP1995": 1379, "numnum:sum:POP1995": 6930, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3043, "numnum:min:POP2000": 1507, "numnum:sum:POP2000": 7222, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3138, "numnum:min:POP2005": 1647, "numnum:sum:POP2005": 7547, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3181, "numnum:min:POP2010": 1705, "numnum:sum:POP2010": 7698, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3267, "numnum:min:POP2015": 1793, "numnum:sum:POP2015": 7950, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3475, "numnum:min:POP2020": 1938, "numnum:sum:POP2020": 8409, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3716, "numnum:min:POP2025": 2083, "numnum:sum:POP2025": 8857, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3949, "numnum:min:POP2050": 2222, "numnum:sum:POP2050": 9257, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -3.691406, 40.413496 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 26.119167, "numnum:min:LATITUDE": 14.715832, "numnum:sum:LATITUDE": 40.834999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -9.652522, "numnum:min:LONGITUDE": -17.47313, "numnum:sum:LONGITUDE": -27.125652000000004, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2604000, "numnum:min:POP_MAX": 500, "numnum:sum:POP_MAX": 2604500, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 200, "numnum:sum:POP_MIN": 2476600, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2470140, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2470140, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 14, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 1, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2253354, "numnum:min:GEONAMEID": -1, "numnum:sum:GEONAMEID": 2253353, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 2, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2635239, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 2635239, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2634882, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 2634882, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2660614, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 2660614, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2660614, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 2660614, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 100, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 257, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 257, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 302, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 302, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 99, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 99, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 117, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 117, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 222, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 222, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 288, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 288, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 138, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 138, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 179, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 179, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 0, "numnum:min:MIN_BBXMIN": -17.533333, "numnum:sum:MIN_BBXMIN": -17.533333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 0, "numnum:min:MAX_BBXMIN": -17.533333, "numnum:sum:MAX_BBXMIN": -17.533333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 0, "numnum:min:MIN_BBXMAX": -17.2, "numnum:sum:MIN_BBXMAX": -17.2, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 0, "numnum:min:MAX_BBXMAX": -17.125, "numnum:sum:MAX_BBXMAX": -17.125, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 14.65, "numnum:min:MIN_BBYMIN": 0, "numnum:sum:MIN_BBYMIN": 14.65, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 14.65, "numnum:min:MAX_BBYMIN": 0, "numnum:sum:MAX_BBYMIN": 14.65, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 14.825, "numnum:min:MIN_BBYMAX": 0, "numnum:sum:MIN_BBYMAX": 14.825, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 14.825, "numnum:min:MAX_BBYMAX": 0, "numnum:sum:MAX_BBYMAX": 14.825, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 0, "numnum:min:MEAN_BBXC": -17.343779, "numnum:sum:MEAN_BBXC": -17.343779, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 14.742828, "numnum:min:MEAN_BBYC": 0, "numnum:sum:MEAN_BBYC": 14.742828, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 2476400, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 14, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 14, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 447, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 447, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 14.68, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 14.68, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -17.45, "numnum:count:POP1950": 2, "numnum:max:POP1950": 211, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 211, "numnum:count:POP1955": 2, "numnum:max:POP1955": 235, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 235, "numnum:count:POP1960": 2, "numnum:max:POP1960": 359, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 359, "numnum:count:POP1965": 2, "numnum:max:POP1965": 473, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 473, "numnum:count:POP1970": 2, "numnum:max:POP1970": 610, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 610, "numnum:count:POP1975": 2, "numnum:max:POP1975": 782, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 782, "numnum:count:POP1980": 2, "numnum:max:POP1980": 957, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 957, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1162, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1162, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1405, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1405, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1688, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1688, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2029, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2029, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2434, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2434, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2604, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2604, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3275, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3275, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3726, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3726, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4225, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4225, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.667969, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 22, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 53, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 7, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 18.086427, "numnum:min:LATITUDE": 8.470011, "numnum:sum:LATITUDE": 86.427192, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": -1.524724, "numnum:min:LONGITUDE": -16.591701, "numnum:sum:LONGITUDE": -84.60461600000001, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 1494000, "numnum:min:POP_MAX": 43094, "numnum:sum:POP_MAX": 6152577, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 1494000, "numnum:min:POP_MIN": 13768, "numnum:sum:POP_MIN": 4724523, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 1498020, "numnum:min:POP_OTHER": 403339, "numnum:sum:POP_OTHER": 6314724, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 75, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 69, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 2460596, "numnum:min:GEONAMEID": 2357048, "numnum:sum:GEONAMEID": 16814980, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 1504217, "numnum:min:MAX_POP10": 43094, "numnum:sum:MAX_POP10": 5919126, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 1504217, "numnum:min:MAX_POP20": 43094, "numnum:sum:MAX_POP20": 5919126, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 1504217, "numnum:min:MAX_POP50": 43094, "numnum:sum:MAX_POP50": 5919126, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 1504217, "numnum:min:MAX_POP300": 43094, "numnum:sum:MAX_POP300": 5919126, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 236, "numnum:min:MIN_AREAKM": 7, "numnum:sum:MIN_AREAKM": 844, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 236, "numnum:min:MAX_AREAKM": 7, "numnum:sum:MAX_AREAKM": 844, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 91, "numnum:min:MIN_AREAMI": 3, "numnum:sum:MIN_AREAMI": 326, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 91, "numnum:min:MAX_AREAMI": 3, "numnum:sum:MAX_AREAMI": 326, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 133, "numnum:min:MIN_PERKM": 13, "numnum:sum:MIN_PERKM": 614, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 133, "numnum:min:MAX_PERKM": 13, "numnum:sum:MAX_PERKM": 614, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 83, "numnum:min:MIN_PERMI": 8, "numnum:sum:MIN_PERMI": 381, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 83, "numnum:min:MAX_PERMI": 8, "numnum:sum:MAX_PERMI": 381, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": -1.616667, "numnum:min:MIN_BBXMIN": -16.6, "numnum:sum:MIN_BBXMIN": -84.97500000000002, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": -1.616667, "numnum:min:MAX_BBXMIN": -16.6, "numnum:sum:MAX_BBXMIN": -84.97500000000002, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": -1.433333, "numnum:min:MIN_BBXMAX": -16.566667, "numnum:sum:MIN_BBXMAX": -83.983333, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": -1.433333, "numnum:min:MAX_BBXMAX": -16.566667, "numnum:sum:MAX_BBXMAX": -83.983333, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 18.033333, "numnum:min:MIN_BBYMIN": 8.408333, "numnum:sum:MIN_BBYMIN": 86.00833300000001, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 18.033333, "numnum:min:MAX_BBYMIN": 8.408333, "numnum:sum:MAX_BBYMIN": 86.00833300000001, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 18.15, "numnum:min:MIN_BBYMAX": 8.5, "numnum:sum:MIN_BBYMAX": 87.02499999999999, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 18.15, "numnum:min:MAX_BBYMAX": 8.5, "numnum:sum:MAX_BBYMAX": 87.02499999999999, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": -1.521746, "numnum:min:MEAN_BBXC": -16.58125, "numnum:sum:MEAN_BBXC": -84.481981, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 18.092569, "numnum:min:MEAN_BBYC": 8.462592, "numnum:sum:MEAN_BBYC": 86.506653, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 53, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 80, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 1767200, "numnum:min:GN_POP": 13768, "numnum:sum:GN_POP": 5248771, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 350, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19086, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 578, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1583, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 12.65, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 43.150000000000009, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -13.67, "numnum:sum:UN_LONG": -36.55, "numnum:count:POP1950": 7, "numnum:max:POP1950": 92, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 245, "numnum:count:POP1955": 7, "numnum:max:POP1955": 111, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 320, "numnum:count:POP1960": 7, "numnum:max:POP1960": 130, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 420, "numnum:count:POP1965": 7, "numnum:max:POP1965": 208, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 596, "numnum:count:POP1970": 7, "numnum:max:POP1970": 388, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 927, "numnum:count:POP1975": 7, "numnum:max:POP1975": 530, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1326, "numnum:count:POP1980": 7, "numnum:max:POP1980": 658, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1765, "numnum:count:POP1985": 7, "numnum:max:POP1985": 766, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2258, "numnum:count:POP1990": 7, "numnum:max:POP1990": 895, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2707, "numnum:count:POP1995": 7, "numnum:max:POP1995": 1045, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3225, "numnum:count:POP2000": 7, "numnum:max:POP2000": 1219, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3845, "numnum:count:POP2005": 7, "numnum:max:POP2005": 1409, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4606, "numnum:count:POP2010": 7, "numnum:max:POP2010": 1494, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4964, "numnum:count:POP2015": 7, "numnum:max:POP2015": 1708, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5571, "numnum:count:POP2020": 7, "numnum:max:POP2020": 2130, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6819, "numnum:count:POP2025": 7, "numnum:max:POP2025": 2633, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 8337, "numnum:count:POP2050": 7, "numnum:max:POP2050": 3214, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10108, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -15.952148, 18.062312 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 30, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 6.818381, "numnum:min:LATITUDE": 5.319997, "numnum:sum:LATITUDE": 23.99897, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": -0.216716, "numnum:min:LONGITUDE": -10.804752, "numnum:sum:LONGITUDE": -20.337019, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 14, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 206499, "numnum:sum:POP_MAX": 7170499, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 194530, "numnum:sum:POP_MIN": 6133851, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 206499, "numnum:sum:POP_OTHER": 6528923, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 46, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 44, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2306104, "numnum:min:GEONAMEID": 2274895, "numnum:sum:GEONAMEID": 9154292, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 206499, "numnum:sum:MAX_POP10": 6541675, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 206499, "numnum:sum:MAX_POP20": 7119234, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 206499, "numnum:sum:MAX_POP50": 7119234, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 6912735, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 59, "numnum:sum:MIN_AREAKM": 1117, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 636, "numnum:min:MAX_AREAKM": 59, "numnum:sum:MAX_AREAKM": 1321, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 431, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 245, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 510, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 52, "numnum:sum:MIN_PERKM": 764, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 345, "numnum:min:MAX_PERKM": 52, "numnum:sum:MAX_PERKM": 885, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 32, "numnum:sum:MIN_PERMI": 475, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 214, "numnum:min:MAX_PERMI": 32, "numnum:sum:MAX_PERMI": 550, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": -0.35, "numnum:min:MIN_BBXMIN": -10.816667, "numnum:sum:MIN_BBXMIN": -20.666667, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": -0.35, "numnum:min:MAX_BBXMIN": -10.816667, "numnum:sum:MAX_BBXMIN": -20.666667, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": -0.098725, "numnum:min:MIN_BBXMAX": -10.658333, "numnum:sum:MIN_BBXMAX": -19.840392, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 0.033333, "numnum:min:MAX_BBXMAX": -10.658333, "numnum:sum:MAX_BBXMAX": -19.708334, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 6.783333, "numnum:min:MIN_BBYMIN": 5.241667, "numnum:sum:MIN_BBYMIN": 23.766666999999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 6.783333, "numnum:min:MAX_BBYMIN": 5.241667, "numnum:sum:MAX_BBYMIN": 23.766666999999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 6.891667, "numnum:min:MIN_BBYMAX": 5.55, "numnum:sum:MIN_BBYMAX": 24.616667, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 6.891667, "numnum:min:MAX_BBYMAX": 5.55, "numnum:sum:MAX_BBYMAX": 24.616667, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": -0.188893, "numnum:min:MEAN_BBXC": -10.734923, "numnum:sum:MEAN_BBXC": -20.20737, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 6.831582, "numnum:min:MEAN_BBYC": 5.3739, "numnum:sum:MEAN_BBYC": 24.160714, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 178, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 194530, "numnum:sum:GN_POP": 6774433, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 219, "numnum:min:GTOPO30": 30, "numnum:sum:GTOPO30": 428, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 342, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 848, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 6.3, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 17.17, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -10.79, "numnum:sum:UN_LONG": -15.009999999999998, "numnum:count:POP1950": 4, "numnum:max:POP1950": 177, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 257, "numnum:count:POP1955": 4, "numnum:max:POP1955": 265, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 424, "numnum:count:POP1960": 4, "numnum:max:POP1960": 393, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 660, "numnum:count:POP1965": 4, "numnum:max:POP1965": 499, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 930, "numnum:count:POP1970": 4, "numnum:max:POP1970": 631, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1343, "numnum:count:POP1975": 4, "numnum:max:POP1975": 966, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1930, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2572, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3243, "numnum:count:POP1990": 4, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4341, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4414, "numnum:count:POP2000": 4, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5542, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6688, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6964, "numnum:count:POP2015": 4, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7692, "numnum:count:POP2020": 4, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 8955, "numnum:count:POP2025": 4, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10226, "numnum:count:POP2050": 4, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 11496, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -10.810547, 6.315299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -4.329724, "numnum:min:LATITUDE": -8.838286, "numnum:sum:LATITUDE": -13.168009999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 15.314972, "numnum:min:LONGITUDE": 13.234427, "numnum:sum:LONGITUDE": 28.549399, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7843000, "numnum:min:POP_MAX": 5172900, "numnum:sum:POP_MAX": 13015900, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5565703, "numnum:min:POP_MIN": 1951272, "numnum:sum:POP_MIN": 7516975, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 4738154, "numnum:min:POP_OTHER": 1951272, "numnum:sum:POP_OTHER": 6689426, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 25, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2314302, "numnum:min:GEONAMEID": 2240449, "numnum:sum:GEONAMEID": 4554751, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5565703, "numnum:min:MAX_POP10": 1951272, "numnum:sum:MAX_POP10": 7516975, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5567255, "numnum:min:MAX_POP20": 1951272, "numnum:sum:MAX_POP20": 7518527, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5567255, "numnum:min:MAX_POP50": 1951272, "numnum:sum:MAX_POP50": 7518527, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5567255, "numnum:min:MAX_POP300": 1951272, "numnum:sum:MAX_POP300": 7518527, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 346, "numnum:min:MIN_AREAKM": 237, "numnum:sum:MIN_AREAKM": 583, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 357, "numnum:min:MAX_AREAKM": 237, "numnum:sum:MAX_AREAKM": 594, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 134, "numnum:min:MIN_AREAMI": 91, "numnum:sum:MIN_AREAMI": 225, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 138, "numnum:min:MAX_AREAMI": 91, "numnum:sum:MAX_AREAMI": 229, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 201, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 350, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 219, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 368, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 125, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 218, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 136, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 229, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 15.183333, "numnum:min:MIN_BBXMIN": 13.166667, "numnum:sum:MIN_BBXMIN": 28.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 15.183333, "numnum:min:MAX_BBXMIN": 13.166667, "numnum:sum:MAX_BBXMIN": 28.35, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 15.533333, "numnum:min:MIN_BBXMAX": 13.4, "numnum:sum:MIN_BBXMAX": 28.933333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 15.533333, "numnum:min:MAX_BBXMAX": 13.4, "numnum:sum:MAX_BBXMAX": 28.933333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -4.5, "numnum:min:MIN_BBYMIN": -8.933333, "numnum:sum:MIN_BBYMIN": -13.433333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -4.478678, "numnum:min:MAX_BBYMIN": -8.933333, "numnum:sum:MAX_BBYMIN": -13.412011, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -4.291667, "numnum:min:MIN_BBYMAX": -8.766667, "numnum:sum:MIN_BBYMAX": -13.058334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -4.291667, "numnum:min:MAX_BBYMAX": -8.766667, "numnum:sum:MAX_BBYMAX": -13.058334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 15.334415, "numnum:min:MEAN_BBXC": 13.28253, "numnum:sum:MEAN_BBXC": 28.616945, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -4.384467, "numnum:min:MEAN_BBYC": -8.851964, "numnum:sum:MEAN_BBYC": -13.236431, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7785965, "numnum:min:GN_POP": 2776168, "numnum:sum:GN_POP": 10562133, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 224, "numnum:min:GTOPO30": 6, "numnum:sum:GTOPO30": 230, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 182, "numnum:min:UN_FID": 168, "numnum:sum:UN_FID": 350, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -4.32, "numnum:min:UN_LAT": -8.81, "numnum:sum:UN_LAT": -13.13, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 15.29, "numnum:min:UN_LONG": 13.23, "numnum:sum:UN_LONG": 28.52, "numnum:count:POP1950": 2, "numnum:max:POP1950": 202, "numnum:min:POP1950": 138, "numnum:sum:POP1950": 340, "numnum:count:POP1955": 2, "numnum:max:POP1955": 292, "numnum:min:POP1955": 174, "numnum:sum:POP1955": 466, "numnum:count:POP1960": 2, "numnum:max:POP1960": 443, "numnum:min:POP1960": 219, "numnum:sum:POP1960": 662, "numnum:count:POP1965": 2, "numnum:max:POP1965": 717, "numnum:min:POP1965": 315, "numnum:sum:POP1965": 1032, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1070, "numnum:min:POP1970": 459, "numnum:sum:POP1970": 1529, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1482, "numnum:min:POP1975": 665, "numnum:sum:POP1975": 2147, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2053, "numnum:min:POP1980": 962, "numnum:sum:POP1980": 3015, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2793, "numnum:min:POP1985": 1295, "numnum:sum:POP1985": 4088, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3448, "numnum:min:POP1990": 1568, "numnum:sum:POP1990": 5016, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4447, "numnum:min:POP1995": 1953, "numnum:sum:POP1995": 6400, "numnum:count:POP2000": 2, "numnum:max:POP2000": 5485, "numnum:min:POP2000": 2591, "numnum:sum:POP2000": 8076, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7108, "numnum:min:POP2005": 3533, "numnum:sum:POP2005": 10641, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7843, "numnum:min:POP2010": 4000, "numnum:sum:POP2010": 11843, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9052, "numnum:min:POP2015": 4775, "numnum:sum:POP2015": 13827, "numnum:count:POP2020": 2, "numnum:max:POP2020": 11313, "numnum:min:POP2020": 6036, "numnum:sum:POP2020": 17349, "numnum:count:POP2025": 2, "numnum:max:POP2025": 13875, "numnum:min:POP2025": 7153, "numnum:sum:POP2025": 21028, "numnum:count:POP2050": 2, "numnum:max:POP2050": 16762, "numnum:min:POP2050": 8236, "numnum:sum:POP2050": 24998, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 9, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -1.95359, "numnum:min:LATITUDE": -33.920011, "numnum:sum:LATITUDE": -58.443607, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 30.060532, "numnum:min:LONGITUDE": 17.083546, "numnum:sum:LONGITUDE": 65.579066, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3215000, "numnum:min:POP_MAX": 268132, "numnum:sum:POP_MAX": 4343132, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2432858, "numnum:min:POP_MIN": 262796, "numnum:sum:POP_MIN": 3440915, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2401318, "numnum:min:POP_OTHER": 262796, "numnum:sum:POP_OTHER": 3817018, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3369157, "numnum:min:GEONAMEID": 202061, "numnum:sum:GEONAMEID": 6923354, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2432858, "numnum:min:MAX_POP10": 262796, "numnum:sum:MAX_POP10": 3742441, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2443605, "numnum:min:MAX_POP20": 262796, "numnum:sum:MAX_POP20": 4970300, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 5065653, "numnum:min:MAX_POP50": 262796, "numnum:sum:MAX_POP50": 7772054, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7102391, "numnum:min:MAX_POP300": 262796, "numnum:sum:MAX_POP300": 9808792, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 601, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 1224, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 8753, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 9384, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 232, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 473, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 3380, "numnum:min:MAX_AREAMI": 35, "numnum:sum:MAX_AREAMI": 3624, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 735, "numnum:min:MIN_PERKM": 60, "numnum:sum:MIN_PERKM": 1090, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 9184, "numnum:min:MAX_PERKM": 60, "numnum:sum:MAX_PERKM": 9544, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 457, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 677, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 5707, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 5931, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 29.166667, "numnum:min:MIN_BBXMIN": 17.008333, "numnum:sum:MIN_BBXMIN": 64.55, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 29.833333, "numnum:min:MAX_BBXMIN": 17.008333, "numnum:sum:MAX_BBXMIN": 65.216666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 30.233333, "numnum:min:MIN_BBXMAX": 17.116667, "numnum:sum:MIN_BBXMAX": 66.074745, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 30.475, "numnum:min:MAX_BBXMAX": 17.116667, "numnum:sum:MAX_BBXMAX": 66.33333400000001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -2.991667, "numnum:min:MIN_BBYMIN": -34.108333, "numnum:sum:MIN_BBYMIN": -59.725, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -2.075, "numnum:min:MAX_BBYMIN": -34.108333, "numnum:sum:MAX_BBYMIN": -58.808333000000008, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -1.76663, "numnum:min:MIN_BBYMAX": -33.808333, "numnum:sum:MIN_BBYMAX": -58.066629999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -1.075, "numnum:min:MAX_BBYMAX": -33.808333, "numnum:sum:MAX_BBYMAX": -57.375, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 29.913775, "numnum:min:MEAN_BBXC": 17.064196, "numnum:sum:MEAN_BBXC": 65.535179, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -2.034427, "numnum:min:MEAN_BBYC": -33.954979, "numnum:sum:MEAN_BBYC": -58.540549000000009, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 21, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 41, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3433441, "numnum:min:GN_POP": 268132, "numnum:sum:GN_POP": 4446834, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1722, "numnum:min:GTOPO30": 7, "numnum:sum:GTOPO30": 3297, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 455, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 894, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -33.97, "numnum:sum:UN_LAT": -35.92, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 30.05, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 48.53, "numnum:count:POP1950": 3, "numnum:max:POP1950": 618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 636, "numnum:count:POP1955": 3, "numnum:max:POP1955": 705, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 730, "numnum:count:POP1960": 3, "numnum:max:POP1960": 803, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 837, "numnum:count:POP1965": 3, "numnum:max:POP1965": 945, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 990, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1114, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1173, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1339, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1429, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1609, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1737, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1925, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2093, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2155, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2374, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2394, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2683, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2715, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3212, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3087, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3862, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3215, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4075, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3357, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4304, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3504, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4656, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3627, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5040, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5459, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.593726 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 270, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -3.376087, "numnum:min:LATITUDE": -17.81779, "numnum:sum:LATITUDE": -36.610521, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 31.044709, "numnum:min:LONGITUDE": 28.283328, "numnum:sum:LONGITUDE": 88.688043, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1572000, "numnum:min:POP_MAX": 331700, "numnum:sum:POP_MAX": 3231700, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1542813, "numnum:min:POP_MIN": 331700, "numnum:sum:POP_MIN": 3141953, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1831877, "numnum:min:POP_OTHER": 1208361, "numnum:sum:POP_OTHER": 4280796, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 34, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 909137, "numnum:min:GEONAMEID": 425378, "numnum:sum:GEONAMEID": 2224814, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1833439, "numnum:min:MAX_POP10": 1123733, "numnum:sum:MAX_POP10": 4246738, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2140496, "numnum:min:MAX_POP20": 1289566, "numnum:sum:MAX_POP20": 5263501, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3536914, "numnum:min:MAX_POP50": 1289566, "numnum:sum:MAX_POP50": 6659919, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3539151, "numnum:min:MAX_POP300": 1289566, "numnum:sum:MAX_POP300": 6668180, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1093, "numnum:min:MIN_AREAKM": 183, "numnum:sum:MIN_AREAKM": 1586, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 5563, "numnum:min:MAX_AREAKM": 183, "numnum:sum:MAX_AREAKM": 6072, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 422, "numnum:min:MIN_AREAMI": 71, "numnum:sum:MIN_AREAMI": 613, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 2148, "numnum:min:MAX_AREAMI": 71, "numnum:sum:MAX_AREAMI": 2345, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 1180, "numnum:min:MIN_PERKM": 122, "numnum:sum:MIN_PERKM": 1488, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 5081, "numnum:min:MAX_PERKM": 122, "numnum:sum:MAX_PERKM": 5413, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 733, "numnum:min:MIN_PERMI": 76, "numnum:sum:MIN_PERMI": 924, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 3157, "numnum:min:MAX_PERMI": 76, "numnum:sum:MAX_PERMI": 3363, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 30.908333, "numnum:min:MIN_BBXMIN": 28.225, "numnum:sum:MIN_BBXMIN": 88.387669, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 30.908333, "numnum:min:MAX_BBXMIN": 28.225, "numnum:sum:MAX_BBXMIN": 88.391666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 31.175, "numnum:min:MIN_BBXMAX": 28.416667, "numnum:sum:MIN_BBXMAX": 89.232297, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 31.191667, "numnum:min:MAX_BBXMAX": 28.416667, "numnum:sum:MAX_BBXMAX": 89.880757, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -3.841667, "numnum:min:MIN_BBYMIN": -17.925, "numnum:sum:MIN_BBYMIN": -37.25, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -3.675, "numnum:min:MAX_BBYMIN": -17.925, "numnum:sum:MAX_BBYMIN": -37.083332999999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -2.95, "numnum:min:MIN_BBYMAX": -17.725, "numnum:sum:MIN_BBYMAX": -36.008333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -2.544862, "numnum:min:MAX_BBYMAX": -17.725, "numnum:sum:MAX_BBYMAX": -35.603195, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 31.045288, "numnum:min:MEAN_BBXC": 28.308596, "numnum:sum:MEAN_BBXC": 89.003748, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -3.227847, "numnum:min:MEAN_BBYC": -17.832399, "numnum:sum:MEAN_BBYC": -36.464186999999999, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 21, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1542813, "numnum:min:GN_POP": 331700, "numnum:sum:GN_POP": 3141953, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1481, "numnum:min:GTOPO30": 795, "numnum:sum:GTOPO30": 3553, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 589, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1051, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -17.82, "numnum:sum:UN_LAT": -33.24, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 31.02, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 59.19, "numnum:count:POP1950": 3, "numnum:max:POP1950": 143, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 174, "numnum:count:POP1955": 3, "numnum:max:POP1955": 192, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 245, "numnum:count:POP1960": 3, "numnum:max:POP1960": 248, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 339, "numnum:count:POP1965": 3, "numnum:max:POP1965": 319, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 479, "numnum:count:POP1970": 3, "numnum:max:POP1970": 417, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 695, "numnum:count:POP1975": 3, "numnum:max:POP1975": 532, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 917, "numnum:count:POP1980": 3, "numnum:max:POP1980": 616, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1149, "numnum:count:POP1985": 3, "numnum:max:POP1985": 778, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1414, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1047, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1804, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1255, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2157, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1379, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2452, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1515, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2776, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1572, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2900, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1663, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3084, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1839, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3426, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2037, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3834, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2247, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4294, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -1.283347, "numnum:min:LATITUDE": -6.183306, "numnum:sum:LATITUDE": -7.466653, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 36.816657, "numnum:min:LONGITUDE": 35.750004, "numnum:sum:LONGITUDE": 72.566661, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3010000, "numnum:min:POP_MAX": 218269, "numnum:sum:POP_MAX": 3228269, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2750547, "numnum:min:POP_MIN": 180541, "numnum:sum:POP_MIN": 2931088, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3400962, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 3400962, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 184745, "numnum:min:GEONAMEID": 160196, "numnum:sum:GEONAMEID": 344941, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3401842, "numnum:min:MAX_POP10": 218269, "numnum:sum:MAX_POP10": 3620111, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3401842, "numnum:min:MAX_POP20": 218269, "numnum:sum:MAX_POP20": 3620111, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3418532, "numnum:min:MAX_POP50": 218269, "numnum:sum:MAX_POP50": 3636801, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3418532, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3418532, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 698, "numnum:min:MIN_AREAKM": 55, "numnum:sum:MIN_AREAKM": 753, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 719, "numnum:min:MAX_AREAKM": 55, "numnum:sum:MAX_AREAKM": 774, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 269, "numnum:min:MIN_AREAMI": 21, "numnum:sum:MIN_AREAMI": 290, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 277, "numnum:min:MAX_AREAMI": 21, "numnum:sum:MAX_AREAMI": 298, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 554, "numnum:min:MIN_PERKM": 61, "numnum:sum:MIN_PERKM": 615, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 571, "numnum:min:MAX_PERKM": 61, "numnum:sum:MAX_PERKM": 632, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 344, "numnum:min:MIN_PERMI": 38, "numnum:sum:MIN_PERMI": 382, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 355, "numnum:min:MAX_PERMI": 38, "numnum:sum:MAX_PERMI": 393, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 36.608333, "numnum:min:MIN_BBXMIN": 35.691667, "numnum:sum:MIN_BBXMIN": 72.30000000000001, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 36.608333, "numnum:min:MAX_BBXMIN": 35.691667, "numnum:sum:MAX_BBXMIN": 72.30000000000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 37.066667, "numnum:min:MIN_BBXMAX": 35.808333, "numnum:sum:MIN_BBXMAX": 72.875, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 37.066667, "numnum:min:MAX_BBXMAX": 35.808333, "numnum:sum:MAX_BBXMAX": 72.875, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -1.433333, "numnum:min:MIN_BBYMIN": -6.208333, "numnum:sum:MIN_BBYMIN": -7.641666, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -1.433333, "numnum:min:MAX_BBYMIN": -6.208333, "numnum:sum:MAX_BBYMIN": -7.641666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -1.083333, "numnum:min:MIN_BBYMAX": -6.116667, "numnum:sum:MIN_BBYMAX": -7.199999999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -1.083333, "numnum:min:MAX_BBYMAX": -6.116667, "numnum:sum:MAX_BBYMAX": -7.199999999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 36.804283, "numnum:min:MEAN_BBXC": 35.7475, "numnum:sum:MEAN_BBXC": 72.551783, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -1.249679, "numnum:min:MEAN_BBYC": -6.162244, "numnum:sum:MEAN_BBYC": -7.411923, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 5, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2750547, "numnum:min:GN_POP": 180541, "numnum:sum:GN_POP": 2931088, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1724, "numnum:min:GTOPO30": 1129, "numnum:sum:GTOPO30": 2853, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 324, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 324, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -1.26, "numnum:sum:UN_LAT": -1.26, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 36.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 36.8, "numnum:count:POP1950": 2, "numnum:max:POP1950": 137, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 137, "numnum:count:POP1955": 2, "numnum:max:POP1955": 201, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 201, "numnum:count:POP1960": 2, "numnum:max:POP1960": 293, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 293, "numnum:count:POP1965": 2, "numnum:max:POP1965": 404, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 404, "numnum:count:POP1970": 2, "numnum:max:POP1970": 531, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 531, "numnum:count:POP1975": 2, "numnum:max:POP1975": 677, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 677, "numnum:count:POP1980": 2, "numnum:max:POP1980": 862, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 862, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1090, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1090, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1380, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1380, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1755, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1755, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2233, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2787, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2787, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3010, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3010, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3363, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3363, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4052, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4052, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4881, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4881, "numnum:count:POP2050": 2, "numnum:max:POP2050": 5871, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5871, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.274309 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 39.287109, -6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 550, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -11.704158, "numnum:min:LATITUDE": -26.170044999999999, "numnum:sum:LATITUDE": -76.503811, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 43.240244, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 130.96550399999999, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 128698, "numnum:sum:POP_MAX": 4418859, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 42872, "numnum:sum:POP_MIN": 2875334, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 5072530, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 42, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 39, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 993800, "numnum:min:GEONAMEID": 921772, "numnum:sum:GEONAMEID": 3777312, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 128698, "numnum:sum:MAX_POP10": 5140273, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 128698, "numnum:sum:MAX_POP20": 6614011, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 128698, "numnum:sum:MAX_POP50": 6690960, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 128698, "numnum:sum:MAX_POP300": 6690960, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 2356, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 3119, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 910, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 1204, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 1360, "numnum:min:MIN_PERKM": 59, "numnum:sum:MIN_PERKM": 2014, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1658, "numnum:min:MAX_PERKM": 59, "numnum:sum:MAX_PERKM": 2643, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 845, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 1252, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 1030, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 1642, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 43.225, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 130.324999, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 43.225, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 130.324999, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 43.291667, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 131.664782, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 43.291667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 132.38333400000003, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -11.758333, "numnum:min:MIN_BBYMIN": -26.4, "numnum:sum:MIN_BBYMIN": -77.29166599999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -11.758333, "numnum:min:MAX_BBYMIN": -26.4, "numnum:sum:MAX_BBYMIN": -77.26666599999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -11.475, "numnum:min:MIN_BBYMAX": -25.991667, "numnum:sum:MIN_BBYMAX": -75.75833399999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -11.475, "numnum:min:MAX_BBYMAX": -25.941667, "numnum:sum:MAX_BBYMAX": -75.658334, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 43.264352, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 131.141854, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -11.639931, "numnum:min:MEAN_BBYC": -26.187259, "numnum:sum:MEAN_BBYC": -76.51214900000001, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 42872, "numnum:sum:GN_POP": 2924502, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 3841, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 458, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 458, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -26.17, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 28, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28, "numnum:count:POP1950": 4, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 900, "numnum:count:POP1955": 4, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1016, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1147, "numnum:count:POP1965": 4, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1288, "numnum:count:POP1970": 4, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1444, "numnum:count:POP1975": 4, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1547, "numnum:count:POP1980": 4, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1656, "numnum:count:POP1985": 4, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1773, "numnum:count:POP1990": 4, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1898, "numnum:count:POP1995": 4, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2265, "numnum:count:POP2000": 4, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2732, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3258, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3435, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3618, "numnum:count:POP2020": 4, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3785, "numnum:count:POP2025": 4, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3916, "numnum:count:POP2050": 4, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4041, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -14.008696 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -25.706921, "numnum:min:LATITUDE": -29.316674, "numnum:sum:LATITUDE": -84.14358899999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 28.229429, "numnum:min:LONGITUDE": 26.229913, "numnum:sum:LONGITUDE": 81.942615, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1338000, "numnum:min:POP_MAX": 361324, "numnum:sum:POP_MAX": 2162388, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1338000, "numnum:min:POP_MIN": 118355, "numnum:sum:POP_MIN": 1913024, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1443084, "numnum:min:POP_OTHER": 356225, "numnum:sum:POP_OTHER": 2255822, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 31, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1018725, "numnum:min:GEONAMEID": 932505, "numnum:sum:GEONAMEID": 2915367, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1444949, "numnum:min:MAX_POP10": 361324, "numnum:sum:MAX_POP10": 2262942, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1444949, "numnum:min:MAX_POP20": 361324, "numnum:sum:MAX_POP20": 2262942, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1444949, "numnum:min:MAX_POP50": 361324, "numnum:sum:MAX_POP50": 2262942, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1444949, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1806273, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 502, "numnum:min:MIN_AREAKM": 105, "numnum:sum:MIN_AREAKM": 748, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 502, "numnum:min:MAX_AREAKM": 105, "numnum:sum:MAX_AREAKM": 748, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 194, "numnum:min:MIN_AREAMI": 40, "numnum:sum:MIN_AREAMI": 288, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 194, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 288, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 256, "numnum:min:MIN_PERKM": 78, "numnum:sum:MIN_PERKM": 511, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 256, "numnum:min:MAX_PERKM": 78, "numnum:sum:MAX_PERKM": 511, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 159, "numnum:min:MIN_PERMI": 48, "numnum:sum:MIN_PERMI": 317, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 159, "numnum:min:MAX_PERMI": 48, "numnum:sum:MAX_PERMI": 317, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 28.041667, "numnum:min:MIN_BBXMIN": 26.166667, "numnum:sum:MIN_BBXMIN": 81.666667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 28.041667, "numnum:min:MAX_BBXMIN": 26.166667, "numnum:sum:MAX_BBXMIN": 81.666667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 28.4, "numnum:min:MIN_BBXMAX": 26.3, "numnum:sum:MIN_BBXMAX": 82.316667, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 28.4, "numnum:min:MAX_BBXMAX": 26.3, "numnum:sum:MAX_BBXMAX": 82.316667, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -25.891667, "numnum:min:MIN_BBYMIN": -29.525, "numnum:sum:MIN_BBYMIN": -84.61666699999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -25.891667, "numnum:min:MAX_BBYMIN": -29.525, "numnum:sum:MAX_BBYMIN": -84.61666699999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -25.641667, "numnum:min:MIN_BBYMAX": -29.241667, "numnum:sum:MIN_BBYMAX": -83.941667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -25.641667, "numnum:min:MAX_BBYMAX": -29.241667, "numnum:sum:MAX_BBYMAX": -83.941667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 28.214676, "numnum:min:MEAN_BBXC": 26.225714, "numnum:sum:MEAN_BBXC": 81.977092, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -25.755716, "numnum:min:MEAN_BBYC": -29.350222, "numnum:sum:MEAN_BBYC": -84.234093, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 14, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 23, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1619438, "numnum:min:GN_POP": 118355, "numnum:sum:GN_POP": 2200857, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1482, "numnum:min:GTOPO30": 1282, "numnum:sum:GTOPO30": 4162, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 460, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 460, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.73, "numnum:sum:UN_LAT": -25.73, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 28.21, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28.21, "numnum:count:POP1950": 3, "numnum:max:POP1950": 275, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 275, "numnum:count:POP1955": 3, "numnum:max:POP1955": 340, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 340, "numnum:count:POP1960": 3, "numnum:max:POP1960": 419, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 419, "numnum:count:POP1965": 3, "numnum:max:POP1965": 488, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 488, "numnum:count:POP1970": 3, "numnum:max:POP1970": 565, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 565, "numnum:count:POP1975": 3, "numnum:max:POP1975": 624, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 624, "numnum:count:POP1980": 3, "numnum:max:POP1980": 688, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 688, "numnum:count:POP1985": 3, "numnum:max:POP1985": 763, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 763, "numnum:count:POP1990": 3, "numnum:max:POP1990": 911, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 911, "numnum:count:POP1995": 3, "numnum:max:POP1995": 951, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 951, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1084, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1084, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1273, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1273, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1338, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1338, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1409, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1409, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1482, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1482, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1544, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1544, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1604, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1604, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.113775 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 31.157227, -26.313113 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative and", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782, "MAX_POP20": 9782, "MAX_POP50": 9782, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4557, "ELEVATION": 0, "GTOPO30": 651, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 13, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 380, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 12, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": -4.616632, "numnum:min:LATITUDE": -25.955277, "numnum:sum:LATITUDE": -69.655185, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 57.499994, "numnum:min:LONGITUDE": 32.589163, "numnum:sum:LONGITUDE": 193.055771, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 1697000, "numnum:min:POP_MAX": 33576, "numnum:sum:POP_MAX": 3772067, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 1391433, "numnum:min:POP_MIN": 22881, "numnum:sum:POP_MIN": 2754343, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 1844658, "numnum:min:POP_OTHER": 33737, "numnum:sum:POP_OTHER": 3548462, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 42, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 40, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 1070940, "numnum:min:GEONAMEID": 241131, "numnum:sum:GEONAMEID": 3286877, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 1727538, "numnum:min:MAX_POP10": 33576, "numnum:sum:MAX_POP10": 3422580, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 1823845, "numnum:min:MAX_POP20": 33576, "numnum:sum:MAX_POP20": 4180450, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 1822603, "numnum:min:MAX_POP50": 33576, "numnum:sum:MAX_POP50": 4179208, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 1823845, "numnum:min:MAX_POP300": 33576, "numnum:sum:MAX_POP300": 4180450, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 700, "numnum:min:MIN_AREAKM": 15, "numnum:sum:MIN_AREAKM": 972, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 700, "numnum:min:MAX_AREAKM": 15, "numnum:sum:MAX_AREAKM": 1180, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 270, "numnum:min:MIN_AREAMI": 6, "numnum:sum:MIN_AREAMI": 375, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 270, "numnum:min:MAX_AREAMI": 6, "numnum:sum:MAX_AREAMI": 456, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 699, "numnum:min:MIN_PERKM": 26, "numnum:sum:MIN_PERKM": 970, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 699, "numnum:min:MAX_PERKM": 26, "numnum:sum:MAX_PERKM": 1113, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 434, "numnum:min:MIN_PERMI": 16, "numnum:sum:MIN_PERMI": 603, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 434, "numnum:min:MAX_PERMI": 16, "numnum:sum:MAX_PERMI": 691, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 57.425, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 192.5, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 57.425, "numnum:min:MAX_BBXMIN": 32.506986, "numnum:sum:MAX_BBXMIN": 192.58198600000004, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 57.541667, "numnum:min:MIN_BBXMAX": 32.65, "numnum:sum:MIN_BBXMAX": 193.291667, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 57.575, "numnum:min:MAX_BBXMAX": 32.65, "numnum:sum:MAX_BBXMAX": 193.325, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": -4.65, "numnum:min:MIN_BBYMIN": -25.991667, "numnum:sum:MIN_BBYMIN": -70.141667, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": -4.65, "numnum:min:MAX_BBYMIN": -25.983333, "numnum:sum:MAX_BBYMIN": -70.048073, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": -4.6, "numnum:min:MIN_BBYMAX": -25.75, "numnum:sum:MIN_BBYMAX": -69.083333, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": -4.6, "numnum:min:MAX_BBYMAX": -25.75, "numnum:sum:MAX_BBYMAX": -69.083333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 57.491611, "numnum:min:MEAN_BBXC": 32.543778, "numnum:sum:MEAN_BBXC": 192.962096, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": -4.626389, "numnum:min:MEAN_BBYC": -25.880831, "numnum:sum:MEAN_BBYC": -69.604526, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 18, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 34, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 1391433, "numnum:min:GN_POP": 22881, "numnum:sum:GN_POP": 2761153, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 1289, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8530, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 376, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 721, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -25.96, "numnum:sum:UN_LAT": -44.86, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 47.52, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 80.09, "numnum:count:POP1950": 4, "numnum:max:POP1950": 177, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 269, "numnum:count:POP1955": 4, "numnum:max:POP1955": 189, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 318, "numnum:count:POP1960": 4, "numnum:max:POP1960": 252, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 433, "numnum:count:POP1965": 4, "numnum:max:POP1965": 298, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 557, "numnum:count:POP1970": 4, "numnum:max:POP1970": 371, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 734, "numnum:count:POP1975": 4, "numnum:max:POP1975": 456, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 910, "numnum:count:POP1980": 4, "numnum:max:POP1980": 580, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1130, "numnum:count:POP1985": 4, "numnum:max:POP1985": 742, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1395, "numnum:count:POP1990": 4, "numnum:max:POP1990": 948, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1724, "numnum:count:POP1995": 4, "numnum:max:POP1995": 1169, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2090, "numnum:count:POP2000": 4, "numnum:max:POP2000": 1361, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2457, "numnum:count:POP2005": 4, "numnum:max:POP2005": 1590, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2924, "numnum:count:POP2010": 4, "numnum:max:POP2010": 1697, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3143, "numnum:count:POP2015": 4, "numnum:max:POP2015": 1877, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3498, "numnum:count:POP2020": 4, "numnum:max:POP2020": 2229, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4150, "numnum:count:POP2025": 4, "numnum:max:POP2025": 2642, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4877, "numnum:count:POP2050": 4, "numnum:max:POP2050": 3118, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5678, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, -25.958045 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 820, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": -6.174418, "numnum:min:LATITUDE": -9.464708, "numnum:sum:LATITUDE": -24.198514000000004, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 147.192504, "numnum:min:LONGITUDE": 106.829438, "numnum:sum:LONGITUDE": 379.601398, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9125000, "numnum:min:POP_MAX": 234331, "numnum:sum:POP_MAX": 9643064, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 8540121, "numnum:min:POP_MIN": 193563, "numnum:sum:POP_MIN": 8984820, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 9129613, "numnum:min:POP_OTHER": 55154, "numnum:sum:POP_OTHER": 9436071, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2088122, "numnum:min:GEONAMEID": 1642911, "numnum:sum:GEONAMEID": 5376490, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 9664972, "numnum:min:MAX_POP10": 55154, "numnum:sum:MAX_POP10": 9971262, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 15074060, "numnum:min:MAX_POP20": 55154, "numnum:sum:MAX_POP20": 15380350, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 22017580, "numnum:min:MAX_POP50": 55154, "numnum:sum:MAX_POP50": 22323870, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 22031364, "numnum:min:MAX_POP300": 55154, "numnum:sum:MAX_POP300": 22337654, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 44354170, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 44354170, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1303, "numnum:min:MIN_AREAKM": 27, "numnum:sum:MIN_AREAKM": 1419, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 19435, "numnum:min:MAX_AREAKM": 27, "numnum:sum:MAX_AREAKM": 19551, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 503, "numnum:min:MIN_AREAMI": 10, "numnum:sum:MIN_AREAMI": 548, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 7504, "numnum:min:MAX_AREAMI": 10, "numnum:sum:MAX_AREAMI": 7549, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 318, "numnum:min:MIN_PERKM": 31, "numnum:sum:MIN_PERKM": 441, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 10224, "numnum:min:MAX_PERKM": 31, "numnum:sum:MAX_PERKM": 10347, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 197, "numnum:min:MIN_PERMI": 19, "numnum:sum:MIN_PERMI": 273, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 6353, "numnum:min:MAX_PERMI": 19, "numnum:sum:MAX_PERMI": 6429, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 147.141667, "numnum:min:MIN_BBXMIN": 105.891667, "numnum:sum:MIN_BBXMIN": 378.550001, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 147.141667, "numnum:min:MAX_BBXMIN": 106.473854, "numnum:sum:MAX_BBXMIN": 379.13218800000007, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 147.241667, "numnum:min:MIN_BBXMAX": 106.932506, "numnum:sum:MIN_BBXMAX": 379.782506, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 147.241667, "numnum:min:MAX_BBXMAX": 109.808333, "numnum:sum:MAX_BBXMAX": 382.658333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": -7.716667, "numnum:min:MIN_BBYMIN": -9.508333, "numnum:sum:MIN_BBYMIN": -25.808333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": -6.383127, "numnum:min:MAX_BBYMIN": -9.508333, "numnum:sum:MAX_BBYMIN": -24.474793, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": -6.016667, "numnum:min:MIN_BBYMAX": -9.358333, "numnum:sum:MIN_BBYMAX": -23.916667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": -5.875, "numnum:min:MAX_BBYMAX": -9.358333, "numnum:sum:MAX_BBYMAX": -23.775, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 147.185377, "numnum:min:MEAN_BBXC": 106.989399, "numnum:sum:MEAN_BBXC": 379.73987999999999, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": -6.313824, "numnum:min:MEAN_BBYC": -9.433491, "numnum:sum:MEAN_BBYC": -24.30643, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 24, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 8540121, "numnum:min:GN_POP": 150000, "numnum:sum:GN_POP": 8973854, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 50, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 61, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 280, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 280, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -6.16, "numnum:sum:UN_LAT": -6.16, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 106.8, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 106.8, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1452, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1452, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1972, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1972, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2679, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2679, "numnum:count:POP1965": 3, "numnum:max:POP1965": 3297, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3297, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3915, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3915, "numnum:count:POP1975": 3, "numnum:max:POP1975": 4813, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4813, "numnum:count:POP1980": 3, "numnum:max:POP1980": 5984, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5984, "numnum:count:POP1985": 3, "numnum:max:POP1985": 7009, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7009, "numnum:count:POP1990": 3, "numnum:max:POP1990": 8175, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8175, "numnum:count:POP1995": 3, "numnum:max:POP1995": 8322, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 8322, "numnum:count:POP2000": 3, "numnum:max:POP2000": 8390, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8390, "numnum:count:POP2005": 3, "numnum:max:POP2005": 8843, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 8843, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9125, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9125, "numnum:count:POP2015": 3, "numnum:max:POP2015": 9703, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9703, "numnum:count:POP2020": 3, "numnum:max:POP2020": 10792, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10792, "numnum:count:POP2025": 3, "numnum:max:POP2025": 11689, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 11689, "numnum:count:POP2050": 3, "numnum:max:POP2050": 12363, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 12363, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -33.920011, "numnum:min:LATITUDE": -37.820031, "numnum:sum:LATITUDE": -71.740042, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 151.18518, "numnum:min:LONGITUDE": 144.975016, "numnum:sum:LONGITUDE": 296.16019600000007, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4630000, "numnum:min:POP_MAX": 4170000, "numnum:sum:POP_MAX": 8800000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3641422, "numnum:min:POP_MIN": 93625, "numnum:sum:POP_MIN": 3735047, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2669348, "numnum:min:POP_OTHER": 1805353, "numnum:sum:POP_OTHER": 4474701, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2158177, "numnum:min:GEONAMEID": 2147714, "numnum:sum:GEONAMEID": 4305891, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2731457, "numnum:min:MAX_POP10": 1904377, "numnum:sum:MAX_POP10": 4635834, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2731457, "numnum:min:MAX_POP20": 2545035, "numnum:sum:MAX_POP20": 5276492, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3164008, "numnum:min:MAX_POP50": 2564188, "numnum:sum:MAX_POP50": 5728196, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3164008, "numnum:min:MAX_POP300": 2564188, "numnum:sum:MAX_POP300": 5728196, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3164008, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3164008, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1078, "numnum:min:MIN_AREAKM": 1010, "numnum:sum:MIN_AREAKM": 2088, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1554, "numnum:min:MAX_AREAKM": 1409, "numnum:sum:MAX_AREAKM": 2963, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 416, "numnum:min:MIN_AREAMI": 390, "numnum:sum:MIN_AREAMI": 806, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 600, "numnum:min:MAX_AREAMI": 544, "numnum:sum:MAX_AREAMI": 1144, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 468, "numnum:min:MIN_PERKM": 360, "numnum:sum:MIN_PERKM": 828, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 843, "numnum:min:MAX_PERKM": 717, "numnum:sum:MAX_PERKM": 1560, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 291, "numnum:min:MIN_PERMI": 224, "numnum:sum:MIN_PERMI": 515, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 524, "numnum:min:MAX_PERMI": 445, "numnum:sum:MAX_PERMI": 969, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 150.533333, "numnum:min:MIN_BBXMIN": 144.608333, "numnum:sum:MIN_BBXMIN": 295.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 150.831963, "numnum:min:MAX_BBXMIN": 144.728637, "numnum:sum:MAX_BBXMIN": 295.5606, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 151.308333, "numnum:min:MIN_BBXMAX": 145.327432, "numnum:sum:MIN_BBXMAX": 296.635765, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 151.341667, "numnum:min:MAX_BBXMAX": 145.4, "numnum:sum:MAX_BBXMAX": 296.741667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -34.091667, "numnum:min:MIN_BBYMIN": -38.208333, "numnum:sum:MIN_BBYMIN": -72.30000000000001, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -34.091667, "numnum:min:MAX_BBYMIN": -38.0105, "numnum:sum:MAX_BBYMIN": -72.10216700000001, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -33.641667, "numnum:min:MIN_BBYMAX": -37.589905, "numnum:sum:MIN_BBYMAX": -71.231572, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -33.6, "numnum:min:MAX_BBYMAX": -37.566667, "numnum:sum:MAX_BBYMAX": -71.166667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 151.051024, "numnum:min:MEAN_BBXC": 145.053821, "numnum:sum:MEAN_BBXC": 296.104845, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -33.846724, "numnum:min:MEAN_BBYC": -37.835257, "numnum:sum:MEAN_BBYC": -71.68198100000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4394576, "numnum:min:GN_POP": 3730206, "numnum:sum:GN_POP": 8124782, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 0, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 0, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 276, "numnum:min:UN_FID": 274, "numnum:sum:UN_FID": 550, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -33.88, "numnum:min:UN_LAT": -37.85, "numnum:sum:UN_LAT": -71.73, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 151.02, "numnum:min:UN_LONG": 145.07, "numnum:sum:UN_LONG": 296.09000000000006, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1690, "numnum:min:POP1950": 1332, "numnum:sum:POP1950": 3022, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1906, "numnum:min:POP1955": 1574, "numnum:sum:POP1955": 3480, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2135, "numnum:min:POP1960": 1851, "numnum:sum:POP1960": 3986, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2390, "numnum:min:POP1965": 2068, "numnum:sum:POP1965": 4458, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2667, "numnum:min:POP1970": 2334, "numnum:sum:POP1970": 5001, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2960, "numnum:min:POP1975": 2561, "numnum:sum:POP1975": 5521, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3227, "numnum:min:POP1980": 2765, "numnum:sum:POP1980": 5992, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3432, "numnum:min:POP1985": 2935, "numnum:sum:POP1985": 6367, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3632, "numnum:min:POP1990": 3117, "numnum:sum:POP1990": 6749, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3839, "numnum:min:POP1995": 3257, "numnum:sum:POP1995": 7096, "numnum:count:POP2000": 2, "numnum:max:POP2000": 4078, "numnum:min:POP2000": 3433, "numnum:sum:POP2000": 7511, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4260, "numnum:min:POP2005": 3641, "numnum:sum:POP2005": 7901, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4327, "numnum:min:POP2010": 3728, "numnum:sum:POP2010": 8055, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4427, "numnum:min:POP2015": 3851, "numnum:sum:POP2015": 8278, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4582, "numnum:min:POP2020": 4013, "numnum:sum:POP2020": 8595, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4716, "numnum:min:POP2025": 4137, "numnum:sum:POP2025": 8853, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4826, "numnum:min:POP2050": 4238, "numnum:sum:POP2050": 9064, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032, "MAX_POP20": 244896, "MAX_POP50": 244896, "MAX_POP300": 244896, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 226, "MAX_AREAKM": 251, "MIN_AREAMI": 87, "MAX_AREAMI": 97, "MIN_PERKM": 175, "MAX_PERKM": 202, "MIN_PERMI": 109, "MAX_PERMI": 126, "MIN_BBXMIN": 149, "MAX_BBXMIN": 149, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 327700, "ELEVATION": 0, "GTOPO30": 609, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 149.150391, -35.281501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 6, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 6, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 770, "numnum:count:LABELRANK": 6, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 6, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 6, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 5, "numnum:count:CAPALT": 6, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 6, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 6, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 6, "numnum:max:LATITUDE": -8.516652, "numnum:min:LATITUDE": -41.299974, "numnum:sum:LATITUDE": -131.97099899999999, "numnum:count:LONGITUDE": 6, "numnum:max:LONGITUDE": 179.216647, "numnum:min:LONGITUDE": 159.949766, "numnum:sum:LONGITUDE": 1035.473016, "numnum:count:CHANGED": 6, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 6, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 6, "numnum:max:POP_MAX": 1245000, "numnum:min:POP_MAX": 4749, "numnum:sum:POP_MAX": 1938916, "numnum:count:POP_MIN": 6, "numnum:max:POP_MIN": 274020, "numnum:min:POP_MIN": 4749, "numnum:sum:POP_MIN": 658439, "numnum:count:POP_OTHER": 6, "numnum:max:POP_OTHER": 243794, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 468418, "numnum:count:RANK_MAX": 6, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 50, "numnum:count:RANK_MIN": 6, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 46, "numnum:count:GEONAMEID": 6, "numnum:max:GEONAMEID": 2198148, "numnum:min:GEONAMEID": 2108502, "numnum:sum:GEONAMEID": 12890116, "numnum:count:LS_MATCH": 6, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 0, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 6, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 6, "numnum:max:MAX_POP10": 274020, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 645444, "numnum:count:MAX_POP20": 6, "numnum:max:MAX_POP20": 354233, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 725657, "numnum:count:MAX_POP50": 6, "numnum:max:MAX_POP50": 350364, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 721788, "numnum:count:MAX_POP300": 6, "numnum:max:MAX_POP300": 638000, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1009424, "numnum:count:MAX_POP310": 6, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 6, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 0, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 6, "numnum:max:MIN_AREAKM": 169, "numnum:min:MIN_AREAKM": 0, "numnum:sum:MIN_AREAKM": 324, "numnum:count:MAX_AREAKM": 6, "numnum:max:MAX_AREAKM": 399, "numnum:min:MAX_AREAKM": 0, "numnum:sum:MAX_AREAKM": 554, "numnum:count:MIN_AREAMI": 6, "numnum:max:MIN_AREAMI": 65, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 125, "numnum:count:MAX_AREAMI": 6, "numnum:max:MAX_AREAMI": 154, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 214, "numnum:count:MIN_PERKM": 6, "numnum:max:MIN_PERKM": 105, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 289, "numnum:count:MAX_PERKM": 6, "numnum:max:MAX_PERKM": 266, "numnum:min:MAX_PERKM": 0, "numnum:sum:MAX_PERKM": 450, "numnum:count:MIN_PERMI": 6, "numnum:max:MIN_PERMI": 65, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 180, "numnum:count:MAX_PERMI": 6, "numnum:max:MAX_PERMI": 166, "numnum:min:MAX_PERMI": 0, "numnum:sum:MAX_PERMI": 281, "numnum:count:MIN_BBXMIN": 6, "numnum:max:MIN_BBXMIN": 178.425, "numnum:min:MIN_BBXMIN": 0, "numnum:sum:MIN_BBXMIN": 855.95, "numnum:count:MAX_BBXMIN": 6, "numnum:max:MAX_BBXMIN": 178.425, "numnum:min:MAX_BBXMIN": 0, "numnum:sum:MAX_BBXMIN": 856.0241500000001, "numnum:count:MIN_BBXMAX": 6, "numnum:max:MIN_BBXMAX": 178.533333, "numnum:min:MIN_BBXMAX": 0, "numnum:sum:MIN_BBXMAX": 856.6, "numnum:count:MAX_BBXMAX": 6, "numnum:max:MAX_BBXMAX": 178.533333, "numnum:min:MAX_BBXMAX": 0, "numnum:sum:MAX_BBXMAX": 856.7, "numnum:count:MIN_BBYMIN": 6, "numnum:max:MIN_BBYMIN": 0, "numnum:min:MIN_BBYMIN": -41.35, "numnum:sum:MIN_BBYMIN": -123.808334, "numnum:count:MAX_BBYMIN": 6, "numnum:max:MAX_BBYMIN": 0, "numnum:min:MAX_BBYMIN": -41.35, "numnum:sum:MAX_BBYMIN": -123.681625, "numnum:count:MIN_BBYMAX": 6, "numnum:max:MIN_BBYMAX": 0, "numnum:min:MIN_BBYMAX": -41.2, "numnum:sum:MIN_BBYMAX": -123.166666, "numnum:count:MAX_BBYMAX": 6, "numnum:max:MAX_BBYMAX": 0, "numnum:min:MAX_BBYMAX": -41.2, "numnum:sum:MAX_BBYMAX": -123.141666, "numnum:count:MEAN_BBXC": 6, "numnum:max:MEAN_BBXC": 178.472885, "numnum:min:MEAN_BBXC": 0, "numnum:sum:MEAN_BBXC": 856.295215, "numnum:count:MEAN_BBYC": 6, "numnum:max:MEAN_BBYC": 0, "numnum:min:MEAN_BBYC": -41.285539, "numnum:sum:MEAN_BBYC": -123.44717299999999, "numnum:count:COMPARE": 6, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 6, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 6, "numnum:max:GN_POP": 417910, "numnum:min:GN_POP": 4749, "numnum:sum:GN_POP": 597652, "numnum:count:ELEVATION": 6, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 6, "numnum:max:GTOPO30": 304, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -19649, "numnum:count:UN_FID": 6, "numnum:max:UN_FID": 381, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 381, "numnum:count:UN_LAT": 6, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -36.9, "numnum:sum:UN_LAT": -36.9, "numnum:count:UN_LONG": 6, "numnum:max:UN_LONG": 174.76, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 174.76, "numnum:count:POP1950": 6, "numnum:max:POP1950": 319, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 319, "numnum:count:POP1955": 6, "numnum:max:POP1955": 387, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 387, "numnum:count:POP1960": 6, "numnum:max:POP1960": 440, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 440, "numnum:count:POP1965": 6, "numnum:max:POP1965": 532, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 532, "numnum:count:POP1970": 6, "numnum:max:POP1970": 635, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 635, "numnum:count:POP1975": 6, "numnum:max:POP1975": 729, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 729, "numnum:count:POP1980": 6, "numnum:max:POP1980": 774, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 774, "numnum:count:POP1985": 6, "numnum:max:POP1985": 812, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 812, "numnum:count:POP1990": 6, "numnum:max:POP1990": 870, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 870, "numnum:count:POP1995": 6, "numnum:max:POP1995": 976, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 976, "numnum:count:POP2000": 6, "numnum:max:POP2000": 1063, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1063, "numnum:count:POP2005": 6, "numnum:max:POP2005": 1189, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1189, "numnum:count:POP2010": 6, "numnum:max:POP2010": 1245, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1245, "numnum:count:POP2015": 6, "numnum:max:POP2015": 1321, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1321, "numnum:count:POP2020": 6, "numnum:max:POP2020": 1398, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1398, "numnum:count:POP2025": 6, "numnum:max:POP2025": 1441, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1441, "numnum:count:POP2050": 6, "numnum:max:POP2050": 1475, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1475, "accum": 6, "numnum:count:accum2": 6, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 6, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 10.766602, 59.910976 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 4.262695, 52.079506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 230, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 50.833317, "numnum:min:LATITUDE": 49.61166, "numnum:sum:LATITUDE": 100.444977, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 6.130003, "numnum:min:LONGITUDE": 4.333317, "numnum:sum:LONGITUDE": 10.46332, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1743000, "numnum:min:POP_MAX": 107260, "numnum:sum:POP_MAX": 1850260, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1019022, "numnum:min:POP_MIN": 76684, "numnum:sum:POP_MIN": 1095706, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1490164, "numnum:min:POP_OTHER": 106219, "numnum:sum:POP_OTHER": 1596383, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2960316, "numnum:min:GEONAMEID": 2800866, "numnum:sum:GEONAMEID": 5761182, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1759840, "numnum:min:MAX_POP10": 107260, "numnum:sum:MAX_POP10": 1867100, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1874437, "numnum:min:MAX_POP20": 107260, "numnum:sum:MAX_POP20": 1981697, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3576473, "numnum:min:MAX_POP50": 107260, "numnum:sum:MAX_POP50": 3683733, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3576473, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3576473, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 3576473, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3576473, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 900, "numnum:min:MIN_AREAKM": 60, "numnum:sum:MIN_AREAKM": 960, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2344, "numnum:min:MAX_AREAKM": 60, "numnum:sum:MAX_AREAKM": 2404, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 347, "numnum:min:MIN_AREAMI": 23, "numnum:sum:MIN_AREAMI": 370, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 905, "numnum:min:MAX_AREAMI": 23, "numnum:sum:MAX_AREAMI": 928, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 997, "numnum:min:MIN_PERKM": 71, "numnum:sum:MIN_PERKM": 1068, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2982, "numnum:min:MAX_PERKM": 71, "numnum:sum:MAX_PERKM": 3053, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 620, "numnum:min:MIN_PERMI": 44, "numnum:sum:MIN_PERMI": 664, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1853, "numnum:min:MAX_PERMI": 44, "numnum:sum:MAX_PERMI": 1897, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 6.041667, "numnum:min:MIN_BBXMIN": 3.575, "numnum:sum:MIN_BBXMIN": 9.616667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 6.041667, "numnum:min:MAX_BBXMIN": 3.983529, "numnum:sum:MAX_BBXMIN": 10.025196000000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 6.183333, "numnum:min:MIN_BBXMAX": 4.666667, "numnum:sum:MIN_BBXMAX": 10.850000000000002, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 6.183333, "numnum:min:MAX_BBXMAX": 5, "numnum:sum:MAX_BBXMAX": 11.183333000000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 50.6, "numnum:min:MIN_BBYMIN": 49.558333, "numnum:sum:MIN_BBYMIN": 100.158333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 50.65, "numnum:min:MAX_BBYMIN": 49.558333, "numnum:sum:MAX_BBYMIN": 100.208333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 51.016667, "numnum:min:MIN_BBYMAX": 49.708333, "numnum:sum:MIN_BBYMAX": 100.725, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 51.408333, "numnum:min:MAX_BBYMAX": 49.708333, "numnum:sum:MAX_BBYMAX": 101.11666600000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 6.125273, "numnum:min:MEAN_BBXC": 4.329159, "numnum:sum:MEAN_BBXC": 10.454432, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 50.919556, "numnum:min:MEAN_BBYC": 49.620833, "numnum:sum:MEAN_BBYC": 100.540389, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 3, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 3, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1019022, "numnum:min:GN_POP": 76684, "numnum:sum:GN_POP": 1095706, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 259, "numnum:min:GTOPO30": 48, "numnum:sum:GTOPO30": 307, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 384, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 384, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 50.83, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 50.83, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 4.36, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 4.36, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1415, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1415, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1449, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1449, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1485, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1485, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1525, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1525, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1568, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1568, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1610, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1610, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1654, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1654, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1654, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1654, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1680, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1680, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1715, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1715, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1733, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1733, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1742, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1742, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1743, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1743, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1744, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1744, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1744, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1744, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1744, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1744, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1744, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1744, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "รŽle-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.866693, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 91.366694, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 2.333335, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 3.849821, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 9957998, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 22256, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 33433, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 7196115, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 3130067, "numnum:sum:GEONAMEID": 10072620, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 7508170, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 8024511, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 10014586, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9960588, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9960588, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 1144, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 2438, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 442, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 941, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 542, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 591, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1891, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 1940, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 337, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 368, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1175, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 1206, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 1.658333, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 3.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 2.152754, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 3.636087, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 2.658336, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 4.2500029999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 2.925, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 4.516667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 48.491667, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 90.975, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.591667, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 91.075, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.183333, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 91.73333299999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.183333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 91.73333299999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 2.352277, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 3.88775, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.839027, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 91.357158, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 60, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 11177, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 19067, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 228, "numnum:sum:GTOPO30": 915, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 189, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 189, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 48.88, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.88, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.43, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.43, "numnum:count:POP1950": 2, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6522, "numnum:count:POP1955": 2, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6796, "numnum:count:POP1960": 2, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7411, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7968, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8350, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8558, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8669, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8956, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9330, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9510, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9692, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9852, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9904, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9958, "numnum:count:POP2020": 2, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10007, "numnum:count:POP2025": 2, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10031, "numnum:count:POP2050": 2, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10036, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 5, "numnum:max:SCALERANK": 7, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 20, "numnum:count:NATSCALE": 5, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 20, "numnum:sum:NATSCALE": 600, "numnum:count:LABELRANK": 5, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 5, "numnum:max:DIFFASCII": 1, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 1, "numnum:count:ADM0CAP": 5, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 5, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 5, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 5, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 5, "numnum:max:LATITUDE": 55.678564, "numnum:min:LATITUDE": 43.739646, "numnum:sum:LATITUDE": 239.67862499999999, "numnum:count:LONGITUDE": 5, "numnum:max:LONGITUDE": 12.563486, "numnum:min:LONGITUDE": 6.140028, "numnum:sum:LONGITUDE": 43.094071, "numnum:count:CHANGED": 5, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 5, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 5, "numnum:max:POP_MAX": 1240000, "numnum:min:POP_MAX": 36281, "numnum:sum:POP_MAX": 2672981, "numnum:count:POP_MIN": 5, "numnum:max:POP_MIN": 1085000, "numnum:min:POP_MIN": 5342, "numnum:sum:POP_MIN": 1440729, "numnum:count:POP_OTHER": 5, "numnum:max:POP_OTHER": 1038288, "numnum:min:POP_OTHER": 33009, "numnum:sum:POP_OTHER": 1949766, "numnum:count:RANK_MAX": 5, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 7, "numnum:sum:RANK_MAX": 48, "numnum:count:RANK_MIN": 5, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 42, "numnum:count:GEONAMEID": 5, "numnum:max:GEONAMEID": 3042030, "numnum:min:GEONAMEID": 2618425, "numnum:sum:GEONAMEID": 13976111, "numnum:count:LS_MATCH": 5, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 5, "numnum:count:CHECKME": 5, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 5, "numnum:max:MAX_POP10": 1124323, "numnum:min:MAX_POP10": 45442, "numnum:sum:MAX_POP10": 2084059, "numnum:count:MAX_POP20": 5, "numnum:max:MAX_POP20": 1230007, "numnum:min:MAX_POP20": 45442, "numnum:sum:MAX_POP20": 2189743, "numnum:count:MAX_POP50": 5, "numnum:max:MAX_POP50": 1256924, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 2171218, "numnum:count:MAX_POP300": 5, "numnum:max:MAX_POP300": 1256924, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 1532253, "numnum:count:MAX_POP310": 5, "numnum:max:MAX_POP310": 1256924, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1256924, "numnum:count:MAX_NATSCA": 5, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 520, "numnum:count:MIN_AREAKM": 5, "numnum:max:MIN_AREAKM": 438, "numnum:min:MIN_AREAKM": 36, "numnum:sum:MIN_AREAKM": 776, "numnum:count:MAX_AREAKM": 5, "numnum:max:MAX_AREAKM": 577, "numnum:min:MAX_AREAKM": 36, "numnum:sum:MAX_AREAKM": 915, "numnum:count:MIN_AREAMI": 5, "numnum:max:MIN_AREAMI": 169, "numnum:min:MIN_AREAMI": 14, "numnum:sum:MIN_AREAMI": 299, "numnum:count:MAX_AREAMI": 5, "numnum:max:MAX_AREAMI": 223, "numnum:min:MAX_AREAMI": 14, "numnum:sum:MAX_AREAMI": 353, "numnum:count:MIN_PERKM": 5, "numnum:max:MIN_PERKM": 348, "numnum:min:MIN_PERKM": 57, "numnum:sum:MIN_PERKM": 795, "numnum:count:MAX_PERKM": 5, "numnum:max:MAX_PERKM": 542, "numnum:min:MAX_PERKM": 57, "numnum:sum:MAX_PERKM": 989, "numnum:count:MIN_PERMI": 5, "numnum:max:MIN_PERMI": 216, "numnum:min:MIN_PERMI": 35, "numnum:sum:MIN_PERMI": 494, "numnum:count:MAX_PERMI": 5, "numnum:max:MAX_PERMI": 337, "numnum:min:MAX_PERMI": 35, "numnum:sum:MAX_PERMI": 615, "numnum:count:MIN_BBXMIN": 5, "numnum:max:MIN_BBXMIN": 12.116667, "numnum:min:MIN_BBXMIN": 5.966667, "numnum:sum:MIN_BBXMIN": 42.241667, "numnum:count:MAX_BBXMIN": 5, "numnum:max:MAX_BBXMIN": 12.316667, "numnum:min:MAX_BBXMIN": 5.966667, "numnum:sum:MAX_BBXMIN": 42.441667, "numnum:count:MIN_BBXMAX": 5, "numnum:max:MIN_BBXMAX": 12.658333, "numnum:min:MIN_BBXMAX": 6.325, "numnum:sum:MIN_BBXMAX": 43.608332, "numnum:count:MAX_BBXMAX": 5, "numnum:max:MAX_BBXMAX": 12.658333, "numnum:min:MAX_BBXMAX": 6.325, "numnum:sum:MAX_BBXMAX": 43.608332, "numnum:count:MIN_BBYMIN": 5, "numnum:max:MIN_BBYMIN": 55.4, "numnum:min:MIN_BBYMIN": 43.716667, "numnum:sum:MIN_BBYMIN": 239.241667, "numnum:count:MAX_BBYMIN": 5, "numnum:max:MAX_BBYMIN": 55.583333, "numnum:min:MAX_BBYMIN": 43.716667, "numnum:sum:MAX_BBYMIN": 239.425, "numnum:count:MIN_BBYMAX": 5, "numnum:max:MIN_BBYMAX": 55.927962, "numnum:min:MIN_BBYMAX": 43.8, "numnum:sum:MIN_BBYMAX": 240.29462900000002, "numnum:count:MAX_BBYMAX": 5, "numnum:max:MAX_BBYMAX": 56.008333, "numnum:min:MAX_BBYMAX": 43.8, "numnum:sum:MAX_BBYMAX": 240.375, "numnum:count:MEAN_BBXC": 5, "numnum:max:MEAN_BBXC": 12.437175, "numnum:min:MEAN_BBXC": 6.1424, "numnum:sum:MEAN_BBXC": 42.979065000000009, "numnum:count:MEAN_BBYC": 5, "numnum:max:MEAN_BBYC": 55.716213, "numnum:min:MEAN_BBYC": 43.754167, "numnum:sum:MEAN_BBYC": 239.80552400000003, "numnum:count:COMPARE": 5, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 5, "numnum:max:ADMIN1_COD": 17, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 28, "numnum:count:GN_POP": 5, "numnum:max:GN_POP": 1153615, "numnum:min:GN_POP": 1020, "numnum:sum:GN_POP": 1465444, "numnum:count:ELEVATION": 5, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 5, "numnum:max:GTOPO30": 711, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8382, "numnum:count:UN_FID": 5, "numnum:max:UN_FID": 175, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 175, "numnum:count:UN_LAT": 5, "numnum:max:UN_LAT": 55.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 55.71, "numnum:count:UN_LONG": 5, "numnum:max:UN_LONG": 12.54, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.54, "numnum:count:POP1950": 5, "numnum:max:POP1950": 1216, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1216, "numnum:count:POP1955": 5, "numnum:max:POP1955": 1227, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1227, "numnum:count:POP1960": 5, "numnum:max:POP1960": 1284, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1284, "numnum:count:POP1965": 5, "numnum:max:POP1965": 1373, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1373, "numnum:count:POP1970": 5, "numnum:max:POP1970": 1380, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1380, "numnum:count:POP1975": 5, "numnum:max:POP1975": 1172, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1172, "numnum:count:POP1980": 5, "numnum:max:POP1980": 1096, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1096, "numnum:count:POP1985": 5, "numnum:max:POP1985": 1056, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1056, "numnum:count:POP1990": 5, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1035, "numnum:count:POP1995": 5, "numnum:max:POP1995": 1048, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1048, "numnum:count:POP2000": 5, "numnum:max:POP2000": 1077, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1077, "numnum:count:POP2005": 5, "numnum:max:POP2005": 1085, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1085, "numnum:count:POP2010": 5, "numnum:max:POP2010": 1085, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1085, "numnum:count:POP2015": 5, "numnum:max:POP2015": 1087, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1087, "numnum:count:POP2020": 5, "numnum:max:POP2020": 1092, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1092, "numnum:count:POP2025": 5, "numnum:max:POP2025": 1095, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1095, "numnum:count:POP2050": 5, "numnum:max:POP2050": 1096, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1096, "accum": 5, "numnum:count:accum2": 5, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 5, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 700, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 3, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 52.521819, "numnum:min:LATITUDE": 50.083337, "numnum:sum:LATITUDE": 154.855157, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 21, "numnum:min:LONGITUDE": 13.401549, "numnum:sum:LONGITUDE": 48.867529, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3406000, "numnum:min:POP_MAX": 1162000, "numnum:sum:POP_MAX": 6275000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3094014, "numnum:min:POP_MIN": 2087, "numnum:sum:POP_MIN": 4798240, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3013258, "numnum:min:POP_OTHER": 1088042, "numnum:sum:POP_OTHER": 6113731, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 4548393, "numnum:min:GEONAMEID": 756135, "numnum:sum:GEONAMEID": 8254687, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3094014, "numnum:min:MAX_POP10": 1115771, "numnum:sum:MAX_POP10": 6338948, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3093307, "numnum:min:MAX_POP20": 1115771, "numnum:sum:MAX_POP20": 6338241, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3503466, "numnum:min:MAX_POP50": 1115771, "numnum:sum:MAX_POP50": 6748400, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3503466, "numnum:min:MAX_POP300": 1115771, "numnum:sum:MAX_POP300": 6748400, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 3503466, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 3503466, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 811, "numnum:min:MIN_AREAKM": 317, "numnum:sum:MIN_AREAKM": 1930, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1021, "numnum:min:MAX_AREAKM": 317, "numnum:sum:MAX_AREAKM": 2140, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 313, "numnum:min:MIN_AREAMI": 122, "numnum:sum:MIN_AREAMI": 745, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 394, "numnum:min:MAX_AREAMI": 122, "numnum:sum:MAX_AREAMI": 826, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 759, "numnum:min:MIN_PERKM": 249, "numnum:sum:MIN_PERKM": 1490, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 759, "numnum:min:MAX_PERKM": 249, "numnum:sum:MAX_PERKM": 1717, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 471, "numnum:min:MIN_PERMI": 155, "numnum:sum:MIN_PERMI": 926, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 471, "numnum:min:MAX_PERMI": 155, "numnum:sum:MAX_PERMI": 1067, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 20.666667, "numnum:min:MIN_BBXMIN": 12.958333, "numnum:sum:MIN_BBXMIN": 47.891667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 20.666667, "numnum:min:MAX_BBXMIN": 13.193843, "numnum:sum:MAX_BBXMIN": 48.127177, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 21.358333, "numnum:min:MIN_BBXMAX": 13.925, "numnum:sum:MIN_BBXMAX": 49.9, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 21.358333, "numnum:min:MAX_BBXMAX": 13.925, "numnum:sum:MAX_BBXMAX": 49.9, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 52.275, "numnum:min:MIN_BBYMIN": 49.95, "numnum:sum:MIN_BBYMIN": 154.258333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 52.275, "numnum:min:MAX_BBYMIN": 49.95, "numnum:sum:MAX_BBYMIN": 154.258333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 52.708333, "numnum:min:MIN_BBYMAX": 50.183333, "numnum:sum:MIN_BBYMAX": 155.324999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 52.708333, "numnum:min:MAX_BBYMAX": 50.183333, "numnum:sum:MAX_BBYMAX": 155.324999, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 21.031458, "numnum:min:MEAN_BBXC": 13.418329, "numnum:sum:MEAN_BBXC": 48.895344, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 52.503658, "numnum:min:MEAN_BBYC": 50.073451, "numnum:sum:MEAN_BBYC": 154.80802500000002, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 78, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 94, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 3426354, "numnum:min:GN_POP": 2087, "numnum:sum:GN_POP": 5130580, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 308, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 382, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 306, "numnum:min:GTOPO30": 35, "numnum:sum:GTOPO30": 435, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 418, "numnum:min:UN_FID": 173, "numnum:sum:UN_FID": 783, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 52.51, "numnum:min:UN_LAT": 50.1, "numnum:sum:UN_LAT": 154.85, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 21.01, "numnum:min:UN_LONG": 13.32, "numnum:sum:UN_LONG": 48.78, "numnum:count:POP1950": 3, "numnum:max:POP1950": 3352, "numnum:min:POP1950": 768, "numnum:sum:POP1950": 5055, "numnum:count:POP1955": 3, "numnum:max:POP1955": 3299, "numnum:min:POP1955": 942, "numnum:sum:POP1955": 5208, "numnum:count:POP1960": 3, "numnum:max:POP1960": 3260, "numnum:min:POP1960": 1001, "numnum:sum:POP1960": 5380, "numnum:count:POP1965": 3, "numnum:max:POP1965": 3232, "numnum:min:POP1965": 1038, "numnum:sum:POP1965": 5482, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3206, "numnum:min:POP1970": 1076, "numnum:sum:POP1970": 5582, "numnum:count:POP1975": 3, "numnum:max:POP1975": 3130, "numnum:min:POP1975": 1126, "numnum:sum:POP1975": 5700, "numnum:count:POP1980": 3, "numnum:max:POP1980": 3056, "numnum:min:POP1980": 1179, "numnum:sum:POP1980": 5800, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3060, "numnum:min:POP1985": 1197, "numnum:sum:POP1985": 5853, "numnum:count:POP1990": 3, "numnum:max:POP1990": 3422, "numnum:min:POP1990": 1212, "numnum:sum:POP1990": 6262, "numnum:count:POP1995": 3, "numnum:max:POP1995": 3471, "numnum:min:POP1995": 1194, "numnum:sum:POP1995": 6317, "numnum:count:POP2000": 3, "numnum:max:POP2000": 3384, "numnum:min:POP2000": 1172, "numnum:sum:POP2000": 6222, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3391, "numnum:min:POP2005": 1164, "numnum:sum:POP2005": 6248, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3406, "numnum:min:POP2010": 1162, "numnum:sum:POP2010": 6275, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3423, "numnum:min:POP2015": 1160, "numnum:sum:POP2015": 6307, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3434, "numnum:min:POP2020": 1159, "numnum:sum:POP2020": 6328, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3436, "numnum:min:POP2025": 1159, "numnum:sum:POP2025": 6331, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3436, "numnum:min:POP2050": 1159, "numnum:sum:POP2050": 6331, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.509535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.200015, "numnum:min:LATITUDE": 46.055288, "numnum:sum:LATITUDE": 94.255303, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 16.366639, "numnum:min:LONGITUDE": 14.514969, "numnum:sum:LONGITUDE": 30.881608, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2400000, "numnum:min:POP_MAX": 314807, "numnum:sum:POP_MAX": 2714807, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1731000, "numnum:min:POP_MIN": 255115, "numnum:sum:POP_MIN": 1986115, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1480886, "numnum:min:POP_OTHER": 256316, "numnum:sum:POP_OTHER": 1737202, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3196359, "numnum:min:GEONAMEID": 2761369, "numnum:sum:GEONAMEID": 5957728, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1561335, "numnum:min:MAX_POP10": 314807, "numnum:sum:MAX_POP10": 1876142, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1610331, "numnum:min:MAX_POP20": 314807, "numnum:sum:MAX_POP20": 1925138, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1610331, "numnum:min:MAX_POP50": 314807, "numnum:sum:MAX_POP50": 1925138, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1610331, "numnum:min:MAX_POP300": 314807, "numnum:sum:MAX_POP300": 1925138, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 1610331, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 1610331, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 488, "numnum:min:MIN_AREAKM": 145, "numnum:sum:MIN_AREAKM": 633, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 533, "numnum:min:MAX_AREAKM": 145, "numnum:sum:MAX_AREAKM": 678, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 189, "numnum:min:MIN_AREAMI": 56, "numnum:sum:MIN_AREAMI": 245, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 206, "numnum:min:MAX_AREAMI": 56, "numnum:sum:MAX_AREAMI": 262, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 444, "numnum:min:MIN_PERKM": 208, "numnum:sum:MIN_PERKM": 652, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 497, "numnum:min:MAX_PERKM": 208, "numnum:sum:MAX_PERKM": 705, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 276, "numnum:min:MIN_PERMI": 129, "numnum:sum:MIN_PERMI": 405, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 309, "numnum:min:MAX_PERMI": 129, "numnum:sum:MAX_PERMI": 438, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 16.133333, "numnum:min:MIN_BBXMIN": 14.433333, "numnum:sum:MIN_BBXMIN": 30.566665999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 16.133333, "numnum:min:MAX_BBXMIN": 14.433333, "numnum:sum:MAX_BBXMIN": 30.566665999999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 16.583333, "numnum:min:MIN_BBXMAX": 14.633333, "numnum:sum:MIN_BBXMAX": 31.216666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 16.583333, "numnum:min:MAX_BBXMAX": 14.633333, "numnum:sum:MAX_BBXMAX": 31.216666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 47.916667, "numnum:min:MIN_BBYMIN": 46, "numnum:sum:MIN_BBYMIN": 93.91666699999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.008333, "numnum:min:MAX_BBYMIN": 46, "numnum:sum:MAX_BBYMIN": 94.008333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 48.383333, "numnum:min:MIN_BBYMAX": 46.241667, "numnum:sum:MIN_BBYMAX": 94.625, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 48.383333, "numnum:min:MAX_BBYMAX": 46.241667, "numnum:sum:MAX_BBYMAX": 94.625, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 16.351672, "numnum:min:MEAN_BBXC": 14.541032, "numnum:sum:MEAN_BBXC": 30.892704000000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.18247, "numnum:min:MEAN_BBYC": 46.091958, "numnum:sum:MEAN_BBYC": 94.274428, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 61, "numnum:min:ADMIN1_COD": 9, "numnum:sum:ADMIN1_COD": 70, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1691468, "numnum:min:GN_POP": 255115, "numnum:sum:GN_POP": 1946583, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 171, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 171, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 284, "numnum:min:GTOPO30": 164, "numnum:sum:GTOPO30": 448, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 321, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 321, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 48.2, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.2, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 16.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 16.32, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2086, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2086, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2087, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2087, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2089, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2089, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2080, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2080, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2070, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2059, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2059, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2049, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2049, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2069, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2069, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2096, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2096, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2127, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2127, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2158, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2158, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2264, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2264, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2315, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2315, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2385, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2385, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2451, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2451, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2476, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2476, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2496, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2496, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ 16.391602, 48.195387 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 8, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 10, "numnum:sum:NATSCALE": 680, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 41.895956, "numnum:sum:LATITUDE": 175.863136, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 17.116981, "numnum:min:LONGITUDE": 12.447808, "numnum:sum:LONGITUDE": 54.514717000000008, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 832, "numnum:sum:POP_MAX": 3793148, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 373687, "numnum:min:POP_MIN": 832, "numnum:sum:POP_MIN": 438971, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2974131, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 2, "numnum:sum:RANK_MAX": 31, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 2, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6691831, "numnum:min:GEONAMEID": 3060972, "numnum:sum:GEONAMEID": 17140635, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 29088, "numnum:sum:MAX_POP10": 3183437, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 29579, "numnum:sum:MAX_POP20": 3183928, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 3040015, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 3040015, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 20, "numnum:sum:MAX_NATSCA": 440, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 505, "numnum:min:MIN_AREAKM": 30, "numnum:sum:MIN_AREAKM": 825, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 30, "numnum:sum:MAX_AREAKM": 1003, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 195, "numnum:min:MIN_AREAMI": 11, "numnum:sum:MIN_AREAMI": 317, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 11, "numnum:sum:MAX_AREAMI": 386, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 382, "numnum:min:MIN_PERKM": 63, "numnum:sum:MIN_PERKM": 726, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 63, "numnum:sum:MAX_PERKM": 844, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 238, "numnum:min:MIN_PERMI": 39, "numnum:sum:MIN_PERMI": 451, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 39, "numnum:sum:MAX_PERMI": 524, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 17.016667, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 54.075, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 17.016667, "numnum:min:MAX_BBXMIN": 12.333333, "numnum:sum:MAX_BBXMIN": 54.192161, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 17.233333, "numnum:min:MIN_BBXMAX": 12.481009, "numnum:sum:MIN_BBXMAX": 55.022676000000007, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 17.233333, "numnum:min:MAX_BBXMAX": 12.481009, "numnum:sum:MAX_BBXMAX": 55.022676000000007, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 41.666667, "numnum:sum:MIN_BBYMIN": 175.42500099999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 41.666667, "numnum:sum:MAX_BBYMIN": 175.42500099999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 42.033333, "numnum:sum:MIN_BBYMAX": 176.30833299999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 176.325, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 17.131335, "numnum:min:MEAN_BBXC": 12.419907, "numnum:sum:MEAN_BBXC": 54.574869, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 41.864442, "numnum:sum:MEAN_BBYC": 175.88070199999999, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 9, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 423737, "numnum:min:GN_POP": 826, "numnum:sum:GN_POP": 489015, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 377, "numnum:min:GTOPO30": 17, "numnum:sum:GTOPO30": 709, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 308, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 41.87, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 41.87, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 12.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.51, "numnum:count:POP1950": 4, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1884, "numnum:count:POP1955": 4, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2143, "numnum:count:POP1960": 4, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2456, "numnum:count:POP1965": 4, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2780, "numnum:count:POP1970": 4, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3135, "numnum:count:POP1975": 4, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3300, "numnum:count:POP1980": 4, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3390, "numnum:count:POP1985": 4, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3429, "numnum:count:POP1990": 4, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3450, "numnum:count:POP1995": 4, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3425, "numnum:count:POP2000": 4, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3385, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3348, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3339, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3333, "numnum:count:POP2020": 4, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3330, "numnum:count:POP2025": 4, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3330, "numnum:count:POP2050": 4, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3330, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 360, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 47.500006, "numnum:min:LATITUDE": 42.465973, "numnum:sum:LATITUDE": 133.816001, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 19.266307, "numnum:min:LONGITUDE": 18.383002, "numnum:sum:LONGITUDE": 56.73263, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1679000, "numnum:min:POP_MAX": 145850, "numnum:sum:POP_MAX": 2521581, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1679000, "numnum:min:POP_MIN": 136473, "numnum:sum:POP_MIN": 2444375, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1718895, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2345960, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 32, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 32, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 3193044, "numnum:min:GEONAMEID": 3054643, "numnum:sum:GEONAMEID": 9438968, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1788020, "numnum:min:MAX_POP10": 145850, "numnum:sum:MAX_POP10": 2562772, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1788020, "numnum:min:MAX_POP20": 145850, "numnum:sum:MAX_POP20": 2562772, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1788020, "numnum:min:MAX_POP50": 145850, "numnum:sum:MAX_POP50": 2562772, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1788020, "numnum:min:MAX_POP300": 145850, "numnum:sum:MAX_POP300": 2562772, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 556, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 701, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 556, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 701, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 215, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 271, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 215, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 271, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 460, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 616, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 460, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 616, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 286, "numnum:min:MIN_PERMI": 27, "numnum:sum:MIN_PERMI": 383, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 286, "numnum:min:MAX_PERMI": 27, "numnum:sum:MAX_PERMI": 383, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 19.208333, "numnum:min:MIN_BBXMIN": 18.216667, "numnum:sum:MIN_BBXMIN": 56.275000000000009, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 19.208333, "numnum:min:MAX_BBXMIN": 18.216667, "numnum:sum:MAX_BBXMIN": 56.275000000000009, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 19.416667, "numnum:min:MIN_BBXMAX": 18.466667, "numnum:sum:MIN_BBXMAX": 57.200001, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 19.416667, "numnum:min:MAX_BBXMAX": 18.466667, "numnum:sum:MAX_BBXMAX": 57.200001, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 47.35, "numnum:min:MIN_BBYMIN": 42.408333, "numnum:sum:MIN_BBYMIN": 133.541666, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 47.35, "numnum:min:MAX_BBYMIN": 42.408333, "numnum:sum:MAX_BBYMIN": 133.541666, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 47.658333, "numnum:min:MIN_BBYMAX": 42.475, "numnum:sum:MIN_BBYMAX": 134.033333, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 47.658333, "numnum:min:MAX_BBYMAX": 42.475, "numnum:sum:MAX_BBYMAX": 134.033333, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 19.263397, "numnum:min:MEAN_BBXC": 18.351272, "numnum:sum:MEAN_BBXC": 56.72143200000001, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 47.478602, "numnum:min:MEAN_BBYC": 42.442115, "numnum:sum:MEAN_BBYC": 133.76690000000003, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 5, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 6, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1696128, "numnum:min:GN_POP": 136473, "numnum:sum:GN_POP": 2529332, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 545, "numnum:min:GTOPO30": 58, "numnum:sum:GTOPO30": 703, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 211, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 211, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 47.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 47.51, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 19.09, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 19.09, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1618, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1618, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1714, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1714, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1811, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1811, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1878, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1878, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1946, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1946, "numnum:count:POP1975": 3, "numnum:max:POP1975": 2005, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2005, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2057, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2036, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2036, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2005, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2005, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1893, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1893, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1787, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1787, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1693, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1693, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1679, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1679, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1664, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1664, "numnum:count:POP2020": 3, "numnum:max:POP2020": 1655, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1655, "numnum:count:POP2025": 3, "numnum:max:POP2025": 1655, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1655, "numnum:count:POP2050": 3, "numnum:max:POP2050": 1655, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1655, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 19.072266, 47.487513 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 44.818645, "numnum:min:LATITUDE": 41.327541, "numnum:sum:LATITUDE": 86.146186, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 20.467991, "numnum:min:LONGITUDE": 19.818883, "numnum:sum:LONGITUDE": 40.286874, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1099000, "numnum:min:POP_MAX": 895350, "numnum:sum:POP_MAX": 1994350, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1099000, "numnum:min:POP_MIN": 421286, "numnum:sum:POP_MIN": 1520286, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1271541, "numnum:min:POP_OTHER": 517792, "numnum:sum:POP_OTHER": 1789333, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3183875, "numnum:min:GEONAMEID": 792680, "numnum:sum:GEONAMEID": 3976555, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1291613, "numnum:min:MAX_POP10": 530241, "numnum:sum:MAX_POP10": 1821854, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1291613, "numnum:min:MAX_POP20": 530241, "numnum:sum:MAX_POP20": 1821854, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1291613, "numnum:min:MAX_POP50": 530241, "numnum:sum:MAX_POP50": 1821854, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1291613, "numnum:min:MAX_POP300": 530241, "numnum:sum:MAX_POP300": 1821854, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 209, "numnum:min:MIN_AREAKM": 74, "numnum:sum:MIN_AREAKM": 283, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 209, "numnum:min:MAX_AREAKM": 74, "numnum:sum:MAX_AREAKM": 283, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 81, "numnum:min:MIN_AREAMI": 28, "numnum:sum:MIN_AREAMI": 109, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 81, "numnum:min:MAX_AREAMI": 28, "numnum:sum:MAX_AREAMI": 109, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 184, "numnum:min:MIN_PERKM": 80, "numnum:sum:MIN_PERKM": 264, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 184, "numnum:min:MAX_PERKM": 80, "numnum:sum:MAX_PERKM": 264, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 114, "numnum:min:MIN_PERMI": 50, "numnum:sum:MIN_PERMI": 164, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 114, "numnum:min:MAX_PERMI": 50, "numnum:sum:MAX_PERMI": 164, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 20.316667, "numnum:min:MIN_BBXMIN": 19.733333, "numnum:sum:MIN_BBXMIN": 40.05, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 20.316667, "numnum:min:MAX_BBXMIN": 19.733333, "numnum:sum:MAX_BBXMIN": 40.05, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 20.575, "numnum:min:MIN_BBXMAX": 19.875, "numnum:sum:MIN_BBXMAX": 40.45, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 20.575, "numnum:min:MAX_BBXMAX": 19.875, "numnum:sum:MAX_BBXMAX": 40.45, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 44.691667, "numnum:min:MIN_BBYMIN": 41.275, "numnum:sum:MIN_BBYMIN": 85.966667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 44.691667, "numnum:min:MAX_BBYMIN": 41.275, "numnum:sum:MAX_BBYMIN": 85.966667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 44.9, "numnum:min:MIN_BBYMAX": 41.4, "numnum:sum:MIN_BBYMAX": 86.3, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 44.9, "numnum:min:MAX_BBYMAX": 41.4, "numnum:sum:MAX_BBYMAX": 86.3, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 20.449561, "numnum:min:MEAN_BBXC": 19.805556, "numnum:sum:MEAN_BBXC": 40.255117, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 44.794615, "numnum:min:MEAN_BBYC": 41.339474, "numnum:sum:MEAN_BBYC": 86.134089, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 50, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 50, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1273651, "numnum:min:GN_POP": 374801, "numnum:sum:GN_POP": 1648452, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 103, "numnum:min:GTOPO30": 90, "numnum:sum:GTOPO30": 193, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 448, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 448, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 44.79, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 44.79, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 20.41, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 20.41, "numnum:count:POP1950": 2, "numnum:max:POP1950": 411, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 411, "numnum:count:POP1955": 2, "numnum:max:POP1955": 501, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 501, "numnum:count:POP1960": 2, "numnum:max:POP1960": 576, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 576, "numnum:count:POP1965": 2, "numnum:max:POP1965": 649, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 649, "numnum:count:POP1970": 2, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 729, "numnum:count:POP1975": 2, "numnum:max:POP1975": 873, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 873, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1057, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1057, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1121, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1121, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1162, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1162, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1149, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1149, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1127, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1127, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1106, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1106, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1099, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1099, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1096, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1096, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1108, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1108, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1132, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1132, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1163, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1163, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 4, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 50, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 100, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 42.66671, "numnum:min:LATITUDE": 42.000006, "numnum:sum:LATITUDE": 84.66671600000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 21.433461, "numnum:min:LONGITUDE": 21.165984, "numnum:sum:LONGITUDE": 42.599445, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 494087, "numnum:min:POP_MAX": 465186, "numnum:sum:POP_MAX": 959273, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 474889, "numnum:min:POP_MIN": 198214, "numnum:sum:POP_MIN": 673103, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 491890, "numnum:min:POP_OTHER": 261783, "numnum:sum:POP_OTHER": 753673, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 19, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 786714, "numnum:min:GEONAMEID": 785842, "numnum:sum:GEONAMEID": 1572556, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 494087, "numnum:min:MAX_POP10": 265361, "numnum:sum:MAX_POP10": 759448, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 494087, "numnum:min:MAX_POP20": 265361, "numnum:sum:MAX_POP20": 759448, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 494087, "numnum:min:MAX_POP50": 265361, "numnum:sum:MAX_POP50": 759448, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 494087, "numnum:min:MAX_POP300": 265361, "numnum:sum:MAX_POP300": 759448, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 114, "numnum:min:MIN_AREAKM": 41, "numnum:sum:MIN_AREAKM": 155, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 114, "numnum:min:MAX_AREAKM": 41, "numnum:sum:MAX_AREAKM": 155, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 44, "numnum:min:MIN_AREAMI": 16, "numnum:sum:MIN_AREAMI": 60, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 44, "numnum:min:MAX_AREAMI": 16, "numnum:sum:MAX_AREAMI": 60, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 98, "numnum:min:MIN_PERKM": 69, "numnum:sum:MIN_PERKM": 167, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 98, "numnum:min:MAX_PERKM": 69, "numnum:sum:MAX_PERKM": 167, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 61, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 104, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 61, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 104, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 21.3, "numnum:min:MIN_BBXMIN": 21.066667, "numnum:sum:MIN_BBXMIN": 42.366667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 21.3, "numnum:min:MAX_BBXMIN": 21.066667, "numnum:sum:MAX_BBXMIN": 42.366667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 21.533333, "numnum:min:MIN_BBXMAX": 21.208333, "numnum:sum:MIN_BBXMAX": 42.741665999999998, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 21.533333, "numnum:min:MAX_BBXMAX": 21.208333, "numnum:sum:MAX_BBXMAX": 42.741665999999998, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 42.625, "numnum:min:MIN_BBYMIN": 41.95, "numnum:sum:MIN_BBYMIN": 84.575, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 42.625, "numnum:min:MAX_BBYMIN": 41.95, "numnum:sum:MAX_BBYMIN": 84.575, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 42.733333, "numnum:min:MIN_BBYMAX": 42.066667, "numnum:sum:MIN_BBYMAX": 84.80000000000001, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 42.733333, "numnum:min:MAX_BBYMAX": 42.066667, "numnum:sum:MAX_BBYMAX": 84.80000000000001, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 21.430243, "numnum:min:MEAN_BBXC": 21.146346, "numnum:sum:MEAN_BBXC": 42.576589, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 42.666218, "numnum:min:MEAN_BBYC": 42.007257, "numnum:sum:MEAN_BBYC": 84.673475, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 1, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 1, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 550000, "numnum:min:GN_POP": 474889, "numnum:sum:GN_POP": 1024889, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 668, "numnum:min:GTOPO30": 246, "numnum:sum:GTOPO30": 914, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.650122 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 60.175563, "numnum:min:LATITUDE": 59.433877, "numnum:sum:LATITUDE": 119.60944, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 24.934126, "numnum:min:LONGITUDE": 24.728041, "numnum:sum:LONGITUDE": 49.662167, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1115000, "numnum:min:POP_MAX": 394024, "numnum:sum:POP_MAX": 1509024, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 558457, "numnum:min:POP_MIN": 340027, "numnum:sum:POP_MIN": 898484, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 762958, "numnum:min:POP_OTHER": 317949, "numnum:sum:POP_OTHER": 1080907, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 658225, "numnum:min:GEONAMEID": 588409, "numnum:sum:GEONAMEID": 1246634, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 852233, "numnum:min:MAX_POP10": 340027, "numnum:sum:MAX_POP10": 1192260, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 852233, "numnum:min:MAX_POP20": 340027, "numnum:sum:MAX_POP20": 1192260, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 852233, "numnum:min:MAX_POP50": 340027, "numnum:sum:MAX_POP50": 1192260, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 852233, "numnum:min:MAX_POP300": 340027, "numnum:sum:MAX_POP300": 1192260, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 513, "numnum:min:MIN_AREAKM": 130, "numnum:sum:MIN_AREAKM": 643, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 513, "numnum:min:MAX_AREAKM": 130, "numnum:sum:MAX_AREAKM": 643, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 198, "numnum:min:MIN_AREAMI": 50, "numnum:sum:MIN_AREAMI": 248, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 198, "numnum:min:MAX_AREAMI": 50, "numnum:sum:MAX_AREAMI": 248, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 550, "numnum:min:MIN_PERKM": 164, "numnum:sum:MIN_PERKM": 714, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 550, "numnum:min:MAX_PERKM": 164, "numnum:sum:MAX_PERKM": 714, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 342, "numnum:min:MIN_PERMI": 102, "numnum:sum:MIN_PERMI": 444, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 342, "numnum:min:MAX_PERMI": 102, "numnum:sum:MAX_PERMI": 444, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 24.591667, "numnum:min:MIN_BBXMIN": 24.558333, "numnum:sum:MIN_BBXMIN": 49.150000000000009, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 24.591667, "numnum:min:MAX_BBXMIN": 24.558333, "numnum:sum:MAX_BBXMIN": 49.150000000000009, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 25.191667, "numnum:min:MIN_BBXMAX": 24.916667, "numnum:sum:MIN_BBXMAX": 50.108334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 25.191667, "numnum:min:MAX_BBXMAX": 24.916667, "numnum:sum:MAX_BBXMAX": 50.108334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 60.116667, "numnum:min:MIN_BBYMIN": 59.333333, "numnum:sum:MIN_BBYMIN": 119.45, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 60.116667, "numnum:min:MAX_BBYMIN": 59.333333, "numnum:sum:MAX_BBYMIN": 119.45, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 60.433333, "numnum:min:MIN_BBYMAX": 59.525, "numnum:sum:MIN_BBYMAX": 119.958333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 60.433333, "numnum:min:MAX_BBYMAX": 59.525, "numnum:sum:MAX_BBYMAX": 119.958333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 24.910042, "numnum:min:MEAN_BBXC": 24.746591, "numnum:sum:MEAN_BBXC": 49.656633, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 60.254779, "numnum:min:MEAN_BBYC": 59.42709, "numnum:sum:MEAN_BBYC": 119.681869, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 14, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 558457, "numnum:min:GN_POP": 394024, "numnum:sum:GN_POP": 952481, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 23, "numnum:min:GTOPO30": 22, "numnum:sum:GTOPO30": 45, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 183, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 183, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 60.19, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 60.19, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 24.97, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 24.97, "numnum:count:POP1950": 2, "numnum:max:POP1950": 366, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 366, "numnum:count:POP1955": 2, "numnum:max:POP1955": 405, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 405, "numnum:count:POP1960": 2, "numnum:max:POP1960": 448, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 448, "numnum:count:POP1965": 2, "numnum:max:POP1965": 478, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 478, "numnum:count:POP1970": 2, "numnum:max:POP1970": 507, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 507, "numnum:count:POP1975": 2, "numnum:max:POP1975": 582, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 582, "numnum:count:POP1980": 2, "numnum:max:POP1980": 674, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 674, "numnum:count:POP1985": 2, "numnum:max:POP1985": 724, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 724, "numnum:count:POP1990": 2, "numnum:max:POP1990": 872, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 872, "numnum:count:POP1995": 2, "numnum:max:POP1995": 943, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 943, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1019, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1019, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1094, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1094, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1115, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1115, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1139, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1139, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1169, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1169, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1195, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1195, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1220, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1220, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 24.916992, 60.174306 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 56.950024, "numnum:min:LATITUDE": 54.683366, "numnum:sum:LATITUDE": 111.63338999999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 25.316635, "numnum:min:LONGITUDE": 24.099965, "numnum:sum:LONGITUDE": 49.4166, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 742572, "numnum:min:POP_MAX": 542366, "numnum:sum:POP_MAX": 1284938, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 705033, "numnum:min:POP_MIN": 507029, "numnum:sum:POP_MIN": 1212062, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 494356, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 494356, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 593116, "numnum:min:GEONAMEID": 456172, "numnum:sum:GEONAMEID": 1049288, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 705033, "numnum:min:MAX_POP10": 507029, "numnum:sum:MAX_POP10": 1212062, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 705033, "numnum:min:MAX_POP20": 507029, "numnum:sum:MAX_POP20": 1212062, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 705033, "numnum:min:MAX_POP50": 507029, "numnum:sum:MAX_POP50": 1212062, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 705033, "numnum:min:MAX_POP300": 507029, "numnum:sum:MAX_POP300": 1212062, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 171, "numnum:min:MIN_AREAKM": 126, "numnum:sum:MIN_AREAKM": 297, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 171, "numnum:min:MAX_AREAKM": 126, "numnum:sum:MAX_AREAKM": 297, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 66, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 115, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 66, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 115, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 173, "numnum:min:MIN_PERKM": 162, "numnum:sum:MIN_PERKM": 335, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 173, "numnum:min:MAX_PERKM": 162, "numnum:sum:MAX_PERKM": 335, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 108, "numnum:min:MIN_PERMI": 101, "numnum:sum:MIN_PERMI": 209, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 108, "numnum:min:MAX_PERMI": 101, "numnum:sum:MAX_PERMI": 209, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 25.166667, "numnum:min:MIN_BBXMIN": 23.975, "numnum:sum:MIN_BBXMIN": 49.141667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 25.166667, "numnum:min:MAX_BBXMIN": 23.975, "numnum:sum:MAX_BBXMIN": 49.141667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 25.391667, "numnum:min:MIN_BBXMAX": 24.266667, "numnum:sum:MIN_BBXMAX": 49.658334, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 25.391667, "numnum:min:MAX_BBXMAX": 24.266667, "numnum:sum:MAX_BBXMAX": 49.658334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 56.875, "numnum:min:MIN_BBYMIN": 54.575, "numnum:sum:MIN_BBYMIN": 111.45, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 56.875, "numnum:min:MAX_BBYMIN": 54.575, "numnum:sum:MAX_BBYMIN": 111.45, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 57.083333, "numnum:min:MIN_BBYMAX": 54.775, "numnum:sum:MIN_BBYMAX": 111.858333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 57.083333, "numnum:min:MAX_BBYMAX": 54.775, "numnum:sum:MAX_BBYMAX": 111.858333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 25.259623, "numnum:min:MEAN_BBXC": 24.127656, "numnum:sum:MEAN_BBXC": 49.38727900000001, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 56.953571, "numnum:min:MEAN_BBYC": 54.692063, "numnum:sum:MEAN_BBYC": 111.645634, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 65, "numnum:min:ADMIN1_COD": 25, "numnum:sum:ADMIN1_COD": 90, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 742572, "numnum:min:GN_POP": 542366, "numnum:sum:GN_POP": 1284938, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 125, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 134, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 24.125977, 56.944974 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 27.553711, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 610, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 50.433367, "numnum:min:LATITUDE": 42.683349, "numnum:sum:LATITUDE": 137.550088, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 30.516628, "numnum:min:LONGITUDE": 23.316654, "numnum:sum:LONGITUDE": 79.933229, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2709000, "numnum:min:POP_MAX": 1185000, "numnum:sum:POP_MAX": 5836000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1742194, "numnum:min:POP_MIN": 874827, "numnum:sum:POP_MIN": 4279529, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1636574, "numnum:min:POP_OTHER": 871735, "numnum:sum:POP_OTHER": 4120001, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 727011, "numnum:min:GEONAMEID": 683506, "numnum:sum:GEONAMEID": 2113965, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1742194, "numnum:min:MAX_POP10": 874827, "numnum:sum:MAX_POP10": 4279529, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1742194, "numnum:min:MAX_POP20": 874827, "numnum:sum:MAX_POP20": 4279529, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1742194, "numnum:min:MAX_POP50": 874827, "numnum:sum:MAX_POP50": 4279529, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1742194, "numnum:min:MAX_POP300": 874827, "numnum:sum:MAX_POP300": 4279529, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 345, "numnum:min:MIN_AREAKM": 217, "numnum:sum:MIN_AREAKM": 779, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 345, "numnum:min:MAX_AREAKM": 217, "numnum:sum:MAX_AREAKM": 779, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 84, "numnum:sum:MIN_AREAMI": 301, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 133, "numnum:min:MAX_AREAMI": 84, "numnum:sum:MAX_AREAMI": 301, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 357, "numnum:min:MIN_PERKM": 120, "numnum:sum:MIN_PERKM": 651, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 357, "numnum:min:MAX_PERKM": 120, "numnum:sum:MAX_PERKM": 651, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 222, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 405, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 222, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 405, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 30.325, "numnum:min:MIN_BBXMIN": 23.208333, "numnum:sum:MIN_BBXMIN": 79.4, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 30.325, "numnum:min:MAX_BBXMIN": 23.208333, "numnum:sum:MAX_BBXMIN": 79.4, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 30.575, "numnum:min:MIN_BBXMAX": 23.45, "numnum:sum:MIN_BBXMAX": 80.275, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 30.575, "numnum:min:MAX_BBXMAX": 23.45, "numnum:sum:MAX_BBXMAX": 80.275, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 50.366667, "numnum:min:MIN_BBYMIN": 42.575, "numnum:sum:MIN_BBYMIN": 137.258334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 50.366667, "numnum:min:MAX_BBYMIN": 42.575, "numnum:sum:MAX_BBYMIN": 137.258334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 50.541667, "numnum:min:MIN_BBYMAX": 42.8, "numnum:sum:MIN_BBYMAX": 137.983334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 50.541667, "numnum:min:MAX_BBYMAX": 42.8, "numnum:sum:MAX_BBYMAX": 137.983334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 30.45263, "numnum:min:MEAN_BBXC": 23.328319, "numnum:sum:MEAN_BBXC": 79.863131, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 50.451094, "numnum:min:MEAN_BBYC": 42.68234, "numnum:sum:MEAN_BBYC": 137.577544, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 42, "numnum:min:ADMIN1_COD": 10, "numnum:sum:ADMIN1_COD": 64, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 2514227, "numnum:min:GN_POP": 1152556, "numnum:sum:GN_POP": 5543938, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 558, "numnum:min:GTOPO30": 71, "numnum:sum:GTOPO30": 798, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 511, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 933, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 50.44, "numnum:min:UN_LAT": 42.7, "numnum:sum:UN_LAT": 137.57, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 30.5, "numnum:min:UN_LONG": 23.33, "numnum:sum:UN_LONG": 79.95, "numnum:count:POP1950": 3, "numnum:max:POP1950": 815, "numnum:min:POP1950": 522, "numnum:sum:POP1950": 1989, "numnum:count:POP1955": 3, "numnum:max:POP1955": 974, "numnum:min:POP1955": 616, "numnum:sum:POP1955": 2446, "numnum:count:POP1960": 3, "numnum:max:POP1960": 1163, "numnum:min:POP1960": 708, "numnum:sum:POP1960": 2873, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1389, "numnum:min:POP1965": 806, "numnum:sum:POP1965": 3349, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1655, "numnum:min:POP1970": 888, "numnum:sum:POP1970": 3939, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1926, "numnum:min:POP1975": 977, "numnum:sum:POP1975": 4605, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2201, "numnum:min:POP1980": 1074, "numnum:sum:POP1980": 5140, "numnum:count:POP1985": 3, "numnum:max:POP1985": 2410, "numnum:min:POP1985": 1181, "numnum:sum:POP1985": 5541, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2574, "numnum:min:POP1990": 1191, "numnum:sum:POP1990": 5805, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2590, "numnum:min:POP1995": 1168, "numnum:sum:POP1995": 5776, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2606, "numnum:min:POP2000": 1128, "numnum:sum:POP2000": 5683, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2672, "numnum:min:POP2005": 1166, "numnum:sum:POP2005": 5774, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2709, "numnum:min:POP2010": 1185, "numnum:sum:POP2010": 5836, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2748, "numnum:min:POP2015": 1212, "numnum:sum:POP2015": 5907, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2770, "numnum:min:POP2020": 1233, "numnum:sum:POP2020": 5952, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2772, "numnum:min:POP2025": 1236, "numnum:sum:POP2025": 5957, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2772, "numnum:min:POP2050": 1236, "numnum:sum:POP2050": 5957, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 30.541992, 50.429518 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 1310, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 55.752164, "numnum:min:LATITUDE": 41.104996, "numnum:sum:LATITUDE": 143.86218399999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 37.615523, "numnum:min:LONGITUDE": 28.857711, "numnum:sum:LONGITUDE": 95.483236, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 10452000, "numnum:min:POP_MAX": 688134, "numnum:sum:POP_MAX": 21201134, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 10452000, "numnum:min:POP_MIN": 635994, "numnum:sum:POP_MIN": 21033604, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 10585385, "numnum:min:POP_OTHER": 664472, "numnum:sum:POP_OTHER": 20901345, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 39, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 38, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 745044, "numnum:min:GEONAMEID": 524901, "numnum:sum:GEONAMEID": 1888371, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 11029015, "numnum:min:MAX_POP10": 688134, "numnum:sum:MAX_POP10": 21662759, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 11030955, "numnum:min:MAX_POP20": 688134, "numnum:sum:MAX_POP20": 21664332, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 11547877, "numnum:min:MAX_POP50": 688134, "numnum:sum:MAX_POP50": 22376961, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 11547877, "numnum:min:MAX_POP300": 688134, "numnum:sum:MAX_POP300": 22376961, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 11547877, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21688827, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1434, "numnum:min:MIN_AREAKM": 109, "numnum:sum:MIN_AREAKM": 2792, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1639, "numnum:min:MAX_AREAKM": 109, "numnum:sum:MAX_AREAKM": 3075, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 554, "numnum:min:MIN_AREAMI": 42, "numnum:sum:MIN_AREAMI": 1078, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 633, "numnum:min:MAX_AREAMI": 42, "numnum:sum:MAX_AREAMI": 1187, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 875, "numnum:min:MIN_PERKM": 85, "numnum:sum:MIN_PERKM": 1812, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1135, "numnum:min:MAX_PERKM": 85, "numnum:sum:MAX_PERKM": 2146, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 544, "numnum:min:MIN_PERMI": 53, "numnum:sum:MIN_PERMI": 1126, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 705, "numnum:min:MAX_PERMI": 53, "numnum:sum:MAX_PERMI": 1333, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 37.233333, "numnum:min:MIN_BBXMIN": 28.2, "numnum:sum:MIN_BBXMIN": 94.175, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 37.233333, "numnum:min:MAX_BBXMIN": 28.257268, "numnum:sum:MAX_BBXMIN": 94.232268, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 38.075401, "numnum:min:MIN_BBXMAX": 28.925, "numnum:sum:MIN_BBXMAX": 96.450401, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 38.3, "numnum:min:MAX_BBXMAX": 28.925, "numnum:sum:MAX_BBXMAX": 96.783333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 55.341667, "numnum:min:MIN_BBYMIN": 40.75, "numnum:sum:MIN_BBYMIN": 143.04166700000003, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 55.533007, "numnum:min:MAX_BBYMIN": 40.75, "numnum:sum:MAX_BBYMIN": 143.233007, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 56.075, "numnum:min:MIN_BBYMAX": 41.258333, "numnum:sum:MIN_BBYMAX": 144.40833300000004, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 56.075, "numnum:min:MAX_BBYMAX": 41.258333, "numnum:sum:MAX_BBYMAX": 144.40833300000004, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 37.643636, "numnum:min:MEAN_BBXC": 28.840203, "numnum:sum:MEAN_BBXC": 95.49282600000001, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 55.754996, "numnum:min:MEAN_BBYC": 41.004964, "numnum:sum:MEAN_BBYC": 143.777145, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 57, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 91, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 11174257, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 11810251, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 52, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 80, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 504, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 930, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 55.74, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 96.80000000000001, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 37.7, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 66.7, "numnum:count:POP1950": 3, "numnum:max:POP1950": 5356, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6323, "numnum:count:POP1955": 3, "numnum:max:POP1955": 5749, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6998, "numnum:count:POP1960": 3, "numnum:max:POP1960": 6170, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7623, "numnum:count:POP1965": 3, "numnum:max:POP1965": 6622, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 8623, "numnum:count:POP1970": 3, "numnum:max:POP1970": 7106, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 9878, "numnum:count:POP1975": 3, "numnum:max:POP1975": 7623, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 11223, "numnum:count:POP1980": 3, "numnum:max:POP1980": 8136, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 12533, "numnum:count:POP1985": 3, "numnum:max:POP1985": 8580, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 13987, "numnum:count:POP1990": 3, "numnum:max:POP1990": 8987, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 15539, "numnum:count:POP1995": 3, "numnum:max:POP1995": 9201, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 16866, "numnum:count:POP2000": 3, "numnum:max:POP2000": 10016, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 18760, "numnum:count:POP2005": 3, "numnum:max:POP2005": 10416, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 20125, "numnum:count:POP2010": 3, "numnum:max:POP2010": 10452, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 20513, "numnum:count:POP2015": 3, "numnum:max:POP2015": 10530, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 21025, "numnum:count:POP2020": 3, "numnum:max:POP2020": 11177, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 21701, "numnum:count:POP2025": 3, "numnum:max:POP2025": 11695, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 22221, "numnum:count:POP2050": 3, "numnum:max:POP2050": 12102, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 22628, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 41.72501, "numnum:min:LATITUDE": 36.763065, "numnum:sum:LATITUDE": 115.290853, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.790795, "numnum:min:LONGITUDE": 3.050553, "numnum:sum:LONGITUDE": 58.021026000000009, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 3354000, "numnum:min:POP_MAX": 1100000, "numnum:sum:POP_MAX": 6866500, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1977663, "numnum:min:POP_MIN": 728453, "numnum:sum:POP_MIN": 3711373, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3332619, "numnum:min:POP_OTHER": 977179, "numnum:sum:POP_OTHER": 5984915, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2507480, "numnum:min:GEONAMEID": 611717, "numnum:sum:GEONAMEID": 5583667, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3368320, "numnum:min:MAX_POP10": 1005257, "numnum:sum:MAX_POP10": 6204753, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3698473, "numnum:min:MAX_POP20": 1005257, "numnum:sum:MAX_POP20": 6534906, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 4203253, "numnum:min:MAX_POP50": 1007529, "numnum:sum:MAX_POP50": 7049754, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 4203253, "numnum:min:MAX_POP300": 1007529, "numnum:sum:MAX_POP300": 7049754, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 886, "numnum:min:MIN_AREAKM": 131, "numnum:sum:MIN_AREAKM": 1497, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1275, "numnum:min:MAX_AREAKM": 135, "numnum:sum:MAX_AREAKM": 1912, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 342, "numnum:min:MIN_AREAMI": 51, "numnum:sum:MIN_AREAMI": 578, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 492, "numnum:min:MAX_AREAMI": 52, "numnum:sum:MAX_AREAMI": 738, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 798, "numnum:min:MIN_PERKM": 128, "numnum:sum:MIN_PERKM": 1411, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1192, "numnum:min:MAX_PERKM": 133, "numnum:sum:MAX_PERKM": 1849, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 496, "numnum:min:MIN_PERMI": 80, "numnum:sum:MIN_PERMI": 878, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 741, "numnum:min:MAX_PERMI": 83, "numnum:sum:MAX_PERMI": 1150, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.708333, "numnum:min:MIN_BBXMIN": 2.641667, "numnum:sum:MIN_BBXMIN": 57.3, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.708333, "numnum:min:MAX_BBXMIN": 2.808333, "numnum:sum:MAX_BBXMIN": 57.466666000000007, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.933333, "numnum:min:MIN_BBXMAX": 3.548211, "numnum:sum:MIN_BBXMAX": 58.979129, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.933333, "numnum:min:MAX_BBXMAX": 3.741667, "numnum:sum:MAX_BBXMAX": 59.25, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 41.616667, "numnum:min:MIN_BBYMIN": 36.45, "numnum:sum:MIN_BBYMIN": 114.69999999999999, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 41.627355, "numnum:min:MAX_BBYMIN": 36.508333, "numnum:sum:MAX_BBYMIN": 114.76902100000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 41.825, "numnum:min:MIN_BBYMAX": 36.816667, "numnum:sum:MIN_BBYMAX": 115.60833400000002, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 41.825, "numnum:min:MAX_BBYMAX": 36.816667, "numnum:sum:MAX_BBYMAX": 115.60833400000002, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.822812, "numnum:min:MEAN_BBXC": 3.101671, "numnum:sum:MEAN_BBXC": 58.126524, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 41.722167, "numnum:min:MEAN_BBYC": 36.673641, "numnum:sum:MEAN_BBYC": 115.198782, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 38, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 39, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1977663, "numnum:min:GN_POP": 693210, "numnum:sum:GN_POP": 3720371, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 420, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 434, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 191, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 197, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 41.72, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 78.5, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.78, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 47.83, "numnum:count:POP1950": 3, "numnum:max:POP1950": 612, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1128, "numnum:count:POP1955": 3, "numnum:max:POP1955": 659, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1282, "numnum:count:POP1960": 3, "numnum:max:POP1960": 872, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1590, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1049, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1852, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1254, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2151, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1499, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2491, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1621, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2711, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1672, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2849, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1908, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3132, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2295, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3455, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2754, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3854, "numnum:count:POP2005": 3, "numnum:max:POP2005": 3199, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4292, "numnum:count:POP2010": 3, "numnum:max:POP2010": 3354, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4454, "numnum:count:POP2015": 3, "numnum:max:POP2015": 3574, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4682, "numnum:count:POP2020": 3, "numnum:max:POP2020": 3922, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5035, "numnum:count:POP2025": 3, "numnum:max:POP2025": 4235, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5349, "numnum:count:POP2050": 3, "numnum:max:POP2050": 4499, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 5613, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 44.780273, 41.738528 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 35.899732, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 55.548375, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 14.514711, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 17.854124000000004, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1452000, "numnum:min:POP_MAX": 368250, "numnum:sum:POP_MAX": 2735250, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 6966, "numnum:sum:POP_MIN": 1499457, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1256715, "numnum:min:POP_OTHER": 336174, "numnum:sum:POP_OTHER": 2308214, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 27, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2562305, "numnum:min:GEONAMEID": 2365267, "numnum:sum:GEONAMEID": 7368057, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 954448, "numnum:min:MAX_POP10": 336921, "numnum:sum:MAX_POP10": 2034160, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 953569, "numnum:min:MAX_POP20": 336921, "numnum:sum:MAX_POP20": 2033281, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 954013, "numnum:min:MAX_POP50": 336921, "numnum:sum:MAX_POP50": 2033725, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 953569, "numnum:min:MAX_POP300": 336921, "numnum:sum:MAX_POP300": 2033281, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 343, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 571, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 364, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 592, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 221, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 140, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 228, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 353, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 542, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 360, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 549, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 219, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 337, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 224, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 342, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 14.408333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 17.391666, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 14.408333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 17.391666, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 14.55, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 18.25, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 14.55, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 18.25, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 35.816667, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 55.308334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 35.816667, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 55.308334, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 35.941667, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 55.825, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 35.941667, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 55.825, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 14.483034, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 17.798988, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 35.881672, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 55.558187000000007, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 6794, "numnum:sum:GN_POP": 1530729, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 64, "numnum:sum:GTOPO30": 357, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 882, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 13.51, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 19.61, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 2.12, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 3.3200000000000005, "numnum:count:POP1950": 3, "numnum:max:POP1950": 33, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 57, "numnum:count:POP1955": 3, "numnum:max:POP1955": 56, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 93, "numnum:count:POP1960": 3, "numnum:max:POP1960": 95, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 153, "numnum:count:POP1965": 3, "numnum:max:POP1965": 138, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 223, "numnum:count:POP1970": 3, "numnum:max:POP1970": 192, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 321, "numnum:count:POP1975": 3, "numnum:max:POP1975": 257, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 455, "numnum:count:POP1980": 3, "numnum:max:POP1980": 344, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 618, "numnum:count:POP1985": 3, "numnum:max:POP1985": 466, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 810, "numnum:count:POP1990": 3, "numnum:max:POP1990": 619, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1051, "numnum:count:POP1995": 3, "numnum:max:POP1995": 796, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1338, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1023, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1703, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1315, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2161, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1452, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2367, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1669, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2696, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2038, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3296, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2410, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3990, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2791, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4819, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 14.501953, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 7, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 760, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 2, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 6.483311, "numnum:min:LATITUDE": 6.400009, "numnum:sum:LATITUDE": 19.326582, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 3.391531, "numnum:min:LONGITUDE": 2.519991, "numnum:sum:LONGITUDE": 8.528148, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9466000, "numnum:min:POP_MAX": 300000, "numnum:sum:POP_MAX": 10528000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 690584, "numnum:min:POP_MIN": 1536, "numnum:sum:POP_MIN": 926288, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 6567892, "numnum:min:POP_OTHER": 806945, "numnum:sum:POP_OTHER": 8435477, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 3, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2394819, "numnum:min:GEONAMEID": 735497, "numnum:sum:GEONAMEID": 5522403, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 7147910, "numnum:min:MAX_POP10": 517453, "numnum:sum:MAX_POP10": 8708291, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 7105663, "numnum:min:MAX_POP20": 457770, "numnum:sum:MAX_POP20": 8639904, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 7411389, "numnum:min:MAX_POP50": 457770, "numnum:sum:MAX_POP50": 8945630, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 7453740, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 8567229, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 250, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 1035, "numnum:min:MIN_AREAKM": 192, "numnum:sum:MIN_AREAKM": 1505, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 1332, "numnum:min:MAX_AREAKM": 319, "numnum:sum:MAX_AREAKM": 1988, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 400, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 581, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 514, "numnum:min:MAX_AREAMI": 123, "numnum:sum:MAX_AREAMI": 767, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 638, "numnum:min:MIN_PERKM": 177, "numnum:sum:MIN_PERKM": 1066, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 882, "numnum:min:MAX_PERKM": 312, "numnum:sum:MAX_PERKM": 1535, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 397, "numnum:min:MIN_PERMI": 110, "numnum:sum:MIN_PERMI": 663, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 548, "numnum:min:MAX_PERMI": 194, "numnum:sum:MAX_PERMI": 954, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 2.925412, "numnum:min:MIN_BBXMIN": 2.2, "numnum:sum:MIN_BBXMIN": 7.683745, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 2.996332, "numnum:min:MAX_BBXMIN": 2.296132, "numnum:sum:MAX_BBXMIN": 7.850797, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 3.475, "numnum:min:MIN_BBXMAX": 2.632958, "numnum:sum:MIN_BBXMAX": 8.991291, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 3.475, "numnum:min:MAX_BBXMAX": 2.858333, "numnum:sum:MAX_BBXMAX": 9.216666, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 6.45, "numnum:min:MIN_BBYMIN": 6.341667, "numnum:sum:MIN_BBYMIN": 19.191667000000004, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 6.45, "numnum:min:MAX_BBYMIN": 6.341667, "numnum:sum:MAX_BBYMIN": 19.191667000000004, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 6.80087, "numnum:min:MIN_BBYMAX": 6.583333, "numnum:sum:MIN_BBYMAX": 20.034202999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 6.966667, "numnum:min:MAX_BBYMAX": 6.641667, "numnum:sum:MAX_BBYMAX": 20.341667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 3.231132, "numnum:min:MEAN_BBXC": 2.392241, "numnum:sum:MEAN_BBXC": 8.331398, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 6.585848, "numnum:min:MEAN_BBYC": 6.416506, "numnum:sum:MEAN_BBYC": 19.523016, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 16, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 30, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 690584, "numnum:min:GN_POP": 1536, "numnum:sum:GN_POP": 926288, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 89, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 181, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 392, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 566, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 6.45, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 12.8, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 3.3, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 5.73, "numnum:count:POP1950": 3, "numnum:max:POP1950": 305, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 325, "numnum:count:POP1955": 3, "numnum:max:POP1955": 468, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 495, "numnum:count:POP1960": 3, "numnum:max:POP1960": 762, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 835, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1135, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1246, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1414, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1577, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1890, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2130, "numnum:count:POP1980": 3, "numnum:max:POP1980": 2572, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2909, "numnum:count:POP1985": 3, "numnum:max:POP1985": 3500, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3912, "numnum:count:POP1990": 3, "numnum:max:POP1990": 4764, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5268, "numnum:count:POP1995": 3, "numnum:max:POP1995": 5966, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6543, "numnum:count:POP2000": 3, "numnum:max:POP2000": 7233, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 7875, "numnum:count:POP2005": 3, "numnum:max:POP2005": 8767, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9487, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9466, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 10228, "numnum:count:POP2015": 3, "numnum:max:POP2015": 10572, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11413, "numnum:count:POP2020": 3, "numnum:max:POP2020": 12403, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 13407, "numnum:count:POP2025": 3, "numnum:max:POP2025": 14134, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 15330, "numnum:count:POP2050": 3, "numnum:max:POP2050": 15796, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 17207, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 2.504883, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 9.083333, "numnum:min:LATITUDE": 0.333402, "numnum:sum:LATITUDE": 9.416735, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 7.533328, "numnum:min:LONGITUDE": 6.733325, "numnum:sum:LONGITUDE": 14.266653, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1576000, "numnum:min:POP_MAX": 88219, "numnum:sum:POP_MAX": 1664219, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 162135, "numnum:min:POP_MIN": 56166, "numnum:sum:POP_MIN": 218301, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 88219, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 88219, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 9, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3388092, "numnum:min:GEONAMEID": 2322794, "numnum:sum:GEONAMEID": 5710886, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 655258, "numnum:min:MAX_POP10": 88219, "numnum:sum:MAX_POP10": 743477, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 655258, "numnum:min:MAX_POP20": 88219, "numnum:sum:MAX_POP20": 743477, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 655258, "numnum:min:MAX_POP50": 88219, "numnum:sum:MAX_POP50": 743477, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 88219, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 88219, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 174, "numnum:min:MIN_AREAKM": 32, "numnum:sum:MIN_AREAKM": 206, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 174, "numnum:min:MAX_AREAKM": 32, "numnum:sum:MAX_AREAKM": 206, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 67, "numnum:min:MIN_AREAMI": 12, "numnum:sum:MIN_AREAMI": 79, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 67, "numnum:min:MAX_AREAMI": 12, "numnum:sum:MAX_AREAMI": 79, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 162, "numnum:min:MIN_PERKM": 44, "numnum:sum:MIN_PERKM": 206, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 162, "numnum:min:MAX_PERKM": 44, "numnum:sum:MAX_PERKM": 206, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 101, "numnum:min:MIN_PERMI": 28, "numnum:sum:MIN_PERMI": 129, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 101, "numnum:min:MAX_PERMI": 28, "numnum:sum:MAX_PERMI": 129, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 7.375, "numnum:min:MIN_BBXMIN": 6.691667, "numnum:sum:MIN_BBXMIN": 14.066666999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 7.375, "numnum:min:MAX_BBXMIN": 6.691667, "numnum:sum:MAX_BBXMIN": 14.066666999999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 7.591667, "numnum:min:MIN_BBXMAX": 6.75, "numnum:sum:MIN_BBXMAX": 14.341667000000001, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 7.591667, "numnum:min:MAX_BBXMAX": 6.75, "numnum:sum:MAX_BBXMAX": 14.341667000000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 8.983333, "numnum:min:MIN_BBYMIN": 0.3, "numnum:sum:MIN_BBYMIN": 9.283333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 8.983333, "numnum:min:MAX_BBYMIN": 0.3, "numnum:sum:MAX_BBYMIN": 9.283333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 9.166667, "numnum:min:MIN_BBYMAX": 0.391667, "numnum:sum:MIN_BBYMAX": 9.558334, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 9.166667, "numnum:min:MAX_BBYMAX": 0.391667, "numnum:sum:MAX_BBYMAX": 9.558334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 7.484385, "numnum:min:MEAN_BBXC": 6.719032, "numnum:sum:MEAN_BBXC": 14.203417, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 9.063188, "numnum:min:MEAN_BBYC": 0.338176, "numnum:sum:MEAN_BBYC": 9.401364000000001, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 22, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 22, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 162135, "numnum:min:GN_POP": 6137, "numnum:sum:GN_POP": 168272, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 339, "numnum:min:GTOPO30": 151, "numnum:sum:GTOPO30": 490, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 386, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 386, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 9.05, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 9.05, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 7.25, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 7.25, "numnum:count:POP1950": 2, "numnum:max:POP1950": 18, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 18, "numnum:count:POP1955": 2, "numnum:max:POP1955": 21, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 21, "numnum:count:POP1960": 2, "numnum:max:POP1960": 23, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 23, "numnum:count:POP1965": 2, "numnum:max:POP1965": 29, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 29, "numnum:count:POP1970": 2, "numnum:max:POP1970": 48, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 48, "numnum:count:POP1975": 2, "numnum:max:POP1975": 77, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 77, "numnum:count:POP1980": 2, "numnum:max:POP1980": 125, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 125, "numnum:count:POP1985": 2, "numnum:max:POP1985": 204, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 204, "numnum:count:POP1990": 2, "numnum:max:POP1990": 330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 330, "numnum:count:POP1995": 2, "numnum:max:POP1995": 526, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 526, "numnum:count:POP2000": 2, "numnum:max:POP2000": 832, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 832, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1315, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1315, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1576, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1576, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1994, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1994, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2558, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 2558, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2971, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2971, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3358, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3358, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 9.058702 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 20, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 12.113097, "numnum:min:LATITUDE": 0.385389, "numnum:sum:LATITUDE": 16.365187, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 15.049148, "numnum:min:LONGITUDE": 9.457965, "numnum:sum:LONGITUDE": 36.023764, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 1611000, "numnum:min:POP_MAX": 578156, "numnum:sum:POP_MAX": 3178156, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1060587, "numnum:min:POP_MIN": 483355, "numnum:sum:POP_MIN": 2225329, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 1060747, "numnum:min:POP_OTHER": 483522, "numnum:sum:POP_OTHER": 2230616, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 34, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2427123, "numnum:min:GEONAMEID": 2220957, "numnum:sum:GEONAMEID": 7047777, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 1060587, "numnum:min:MAX_POP10": 483355, "numnum:sum:MAX_POP10": 2225329, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 1060587, "numnum:min:MAX_POP20": 483355, "numnum:sum:MAX_POP20": 2225329, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 1060587, "numnum:min:MAX_POP50": 483355, "numnum:sum:MAX_POP50": 2225329, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 1060587, "numnum:min:MAX_POP300": 483355, "numnum:sum:MAX_POP300": 2225329, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 197, "numnum:min:MIN_AREAKM": 79, "numnum:sum:MIN_AREAKM": 384, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 197, "numnum:min:MAX_AREAKM": 79, "numnum:sum:MAX_AREAKM": 384, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 76, "numnum:min:MIN_AREAMI": 30, "numnum:sum:MIN_AREAMI": 148, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 76, "numnum:min:MAX_AREAMI": 30, "numnum:sum:MAX_AREAMI": 148, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 116, "numnum:min:MIN_PERKM": 66, "numnum:sum:MIN_PERKM": 280, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 116, "numnum:min:MAX_PERKM": 66, "numnum:sum:MAX_PERKM": 280, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 72, "numnum:min:MIN_PERMI": 41, "numnum:sum:MIN_PERMI": 174, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 72, "numnum:min:MAX_PERMI": 41, "numnum:sum:MAX_PERMI": 174, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 15.025, "numnum:min:MIN_BBXMIN": 9.4, "numnum:sum:MIN_BBXMIN": 35.858333, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 15.025, "numnum:min:MAX_BBXMIN": 9.4, "numnum:sum:MAX_BBXMIN": 35.858333, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 15.133333, "numnum:min:MIN_BBXMAX": 9.525, "numnum:sum:MIN_BBXMAX": 36.258333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 15.133333, "numnum:min:MAX_BBXMAX": 9.525, "numnum:sum:MAX_BBXMAX": 36.258333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 12.066667, "numnum:min:MIN_BBYMIN": 0.283333, "numnum:sum:MIN_BBYMIN": 16.125, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 12.066667, "numnum:min:MAX_BBYMIN": 0.283333, "numnum:sum:MAX_BBYMIN": 16.125, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 12.183333, "numnum:min:MIN_BBYMAX": 0.483333, "numnum:sum:MIN_BBYMAX": 16.649999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 12.183333, "numnum:min:MAX_BBYMAX": 0.483333, "numnum:sum:MAX_BBYMAX": 16.649999, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 15.079167, "numnum:min:MEAN_BBXC": 9.47328, "numnum:sum:MEAN_BBXC": 36.070791, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 12.120479, "numnum:min:MEAN_BBYC": 0.395238, "numnum:sum:MEAN_BBYC": 16.381355999999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1299369, "numnum:min:GN_POP": 578156, "numnum:sum:GN_POP": 2598606, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 733, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -8976, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 16, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 25, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 12.1, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 15.959999999999999, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 15.24, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 26.75, "numnum:count:POP1950": 3, "numnum:max:POP1950": 32, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 54, "numnum:count:POP1955": 3, "numnum:max:POP1955": 49, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 89, "numnum:count:POP1960": 3, "numnum:max:POP1960": 75, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 146, "numnum:count:POP1965": 3, "numnum:max:POP1965": 112, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 221, "numnum:count:POP1970": 3, "numnum:max:POP1970": 183, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 338, "numnum:count:POP1975": 3, "numnum:max:POP1975": 292, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 523, "numnum:count:POP1980": 3, "numnum:max:POP1980": 415, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 739, "numnum:count:POP1985": 3, "numnum:max:POP1985": 578, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 971, "numnum:count:POP1990": 3, "numnum:max:POP1990": 754, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1231, "numnum:count:POP1995": 3, "numnum:max:POP1995": 948, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1527, "numnum:count:POP2000": 3, "numnum:max:POP2000": 1192, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1903, "numnum:count:POP2005": 3, "numnum:max:POP2005": 1489, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2391, "numnum:count:POP2010": 3, "numnum:max:POP2010": 1611, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2600, "numnum:count:POP2015": 3, "numnum:max:POP2015": 1787, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2914, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2058, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3463, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2312, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4065, "numnum:count:POP2050": 3, "numnum:max:POP2050": 2549, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4721, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 720, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 18, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 4.366644, "numnum:sum:LATITUDE": 117.443885, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 33.366635, "numnum:min:LONGITUDE": 18.558288, "numnum:sum:LONGITUDE": 108.522636, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 3716000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 8014225, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 3307379, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 4859739, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 3267576, "numnum:min:POP_OTHER": 112572, "numnum:sum:POP_OTHER": 4385407, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 45, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 44, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 2389853, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 3124278, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 3307379, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 6677399, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 3306823, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 7334098, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 3306823, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 7373137, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 3306823, "numnum:min:MAX_POP300": 224300, "numnum:sum:MAX_POP300": 7373137, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 531, "numnum:min:MIN_AREAKM": 90, "numnum:sum:MIN_AREAKM": 1089, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 534, "numnum:min:MAX_AREAKM": 103, "numnum:sum:MAX_AREAKM": 1274, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 35, "numnum:sum:MIN_AREAMI": 420, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 206, "numnum:min:MAX_AREAMI": 40, "numnum:sum:MAX_AREAMI": 491, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 355, "numnum:min:MIN_PERKM": 91, "numnum:sum:MIN_PERKM": 754, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 365, "numnum:min:MAX_PERKM": 107, "numnum:sum:MAX_PERKM": 877, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 221, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 470, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 227, "numnum:min:MAX_PERMI": 67, "numnum:sum:MAX_PERMI": 546, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 33.275, "numnum:min:MIN_BBXMIN": 18.491667, "numnum:sum:MIN_BBXMIN": 107.67499999999999, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 33.275, "numnum:min:MAX_BBXMIN": 18.491667, "numnum:sum:MAX_BBXMIN": 107.783334, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 33.425, "numnum:min:MIN_BBXMAX": 18.614651, "numnum:sum:MIN_BBXMAX": 108.96465099999999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 33.425, "numnum:min:MAX_BBXMAX": 18.625, "numnum:sum:MAX_BBXMAX": 108.97500000000001, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 4.316667, "numnum:sum:MIN_BBYMIN": 117.10000099999999, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 4.316667, "numnum:sum:MAX_BBYMIN": 117.10833399999999, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 4.483333, "numnum:sum:MIN_BBYMAX": 117.98333299999999, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 4.483333, "numnum:sum:MAX_BBYMAX": 117.98333299999999, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 33.352244, "numnum:min:MEAN_BBXC": 18.546436, "numnum:sum:MEAN_BBXC": 108.394072, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 4.388157, "numnum:sum:MEAN_BBYC": 117.52804499999999, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 90, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 3517182, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 4989164, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": 110, "numnum:sum:GTOPO30": 1500, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 500, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 698, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 77.86, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 32.85, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 56.5, "numnum:count:POP1950": 4, "numnum:max:POP1950": 1347, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1628, "numnum:count:POP1955": 4, "numnum:max:POP1955": 1563, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2002, "numnum:count:POP1960": 4, "numnum:max:POP1960": 1814, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2449, "numnum:count:POP1965": 4, "numnum:max:POP1965": 2121, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3075, "numnum:count:POP1970": 4, "numnum:max:POP1970": 2485, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3826, "numnum:count:POP1975": 4, "numnum:max:POP1975": 2738, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4447, "numnum:count:POP1980": 4, "numnum:max:POP1980": 2987, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4878, "numnum:count:POP1985": 4, "numnum:max:POP1985": 3047, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5260, "numnum:count:POP1990": 4, "numnum:max:POP1990": 3070, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5631, "numnum:count:POP1995": 4, "numnum:max:POP1995": 3122, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 5964, "numnum:count:POP2000": 4, "numnum:max:POP2000": 3179, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6358, "numnum:count:POP2005": 4, "numnum:max:POP2005": 3572, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6802, "numnum:count:POP2010": 4, "numnum:max:POP2010": 3716, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6958, "numnum:count:POP2015": 4, "numnum:max:POP2015": 3908, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 7164, "numnum:count:POP2020": 4, "numnum:max:POP2020": 4178, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7456, "numnum:count:POP2025": 4, "numnum:max:POP2025": 4403, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7703, "numnum:count:POP2050": 4, "numnum:max:POP2050": 4589, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 7915, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 18.544922, 4.346411 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 2, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 800, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 11, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 32.079991, "numnum:min:LATITUDE": 30.04996, "numnum:sum:LATITUDE": 62.129951, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 34.770012, "numnum:min:LONGITUDE": 31.249968, "numnum:sum:LONGITUDE": 66.01998, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 11893000, "numnum:min:POP_MAX": 3112000, "numnum:sum:POP_MAX": 15005000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7734614, "numnum:min:POP_MIN": 378358, "numnum:sum:POP_MIN": 8112972, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 13720557, "numnum:min:POP_OTHER": 2306851, "numnum:sum:POP_OTHER": 16027408, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 360630, "numnum:min:GEONAMEID": 293394, "numnum:sum:GEONAMEID": 654024, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 14936123, "numnum:min:MAX_POP10": 2324568, "numnum:sum:MAX_POP10": 17260691, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 15091561, "numnum:min:MAX_POP20": 2324568, "numnum:sum:MAX_POP20": 17416129, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 29872827, "numnum:min:MAX_POP50": 2324568, "numnum:sum:MAX_POP50": 32197395, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 30682197, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 30682197, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 30696820, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 30696820, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1479, "numnum:min:MIN_AREAKM": 436, "numnum:sum:MIN_AREAKM": 1915, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 4900, "numnum:min:MAX_AREAKM": 436, "numnum:sum:MAX_AREAKM": 5336, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 571, "numnum:min:MIN_AREAMI": 168, "numnum:sum:MIN_AREAMI": 739, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1892, "numnum:min:MAX_AREAMI": 168, "numnum:sum:MAX_AREAMI": 2060, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1365, "numnum:min:MIN_PERKM": 386, "numnum:sum:MIN_PERKM": 1751, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 5010, "numnum:min:MAX_PERKM": 386, "numnum:sum:MAX_PERKM": 5396, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 848, "numnum:min:MIN_PERMI": 240, "numnum:sum:MIN_PERMI": 1088, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 3113, "numnum:min:MAX_PERMI": 240, "numnum:sum:MAX_PERMI": 3353, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 34.716667, "numnum:min:MIN_BBXMIN": 30.641667, "numnum:sum:MIN_BBXMIN": 65.358334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 34.716667, "numnum:min:MAX_BBXMIN": 30.991693, "numnum:sum:MAX_BBXMIN": 65.70836, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 34.958333, "numnum:min:MIN_BBXMAX": 31.672096, "numnum:sum:MIN_BBXMAX": 66.630429, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 34.958333, "numnum:min:MAX_BBXMAX": 31.733333, "numnum:sum:MAX_BBXMAX": 66.691666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 31.85, "numnum:min:MIN_BBYMIN": 29.3, "numnum:sum:MIN_BBYMIN": 61.150000000000009, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 31.85, "numnum:min:MAX_BBYMIN": 29.8, "numnum:sum:MAX_BBYMIN": 61.650000000000009, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 32.208333, "numnum:min:MIN_BBYMAX": 30.531354, "numnum:sum:MIN_BBYMAX": 62.739687, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 32.208333, "numnum:min:MAX_BBYMAX": 31.158333, "numnum:sum:MAX_BBYMAX": 63.366666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 34.836735, "numnum:min:MEAN_BBXC": 31.273845, "numnum:sum:MEAN_BBXC": 66.11058, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 32.030266, "numnum:min:MEAN_BBYC": 30.353647, "numnum:sum:MEAN_BBYC": 62.38391299999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 16, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7734614, "numnum:min:GN_POP": 378358, "numnum:sum:GN_POP": 8112972, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 23, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9976, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 515, "numnum:min:UN_FID": 304, "numnum:sum:UN_FID": 819, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 32.04, "numnum:min:UN_LAT": 30.07, "numnum:sum:UN_LAT": 62.11, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 34.76, "numnum:min:UN_LONG": 31.25, "numnum:sum:UN_LONG": 66.00999999999999, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2494, "numnum:min:POP1950": 418, "numnum:sum:POP1950": 2912, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3029, "numnum:min:POP1955": 556, "numnum:sum:POP1955": 3585, "numnum:count:POP1960": 2, "numnum:max:POP1960": 3680, "numnum:min:POP1960": 738, "numnum:sum:POP1960": 4418, "numnum:count:POP1965": 2, "numnum:max:POP1965": 4738, "numnum:min:POP1965": 882, "numnum:sum:POP1965": 5620, "numnum:count:POP1970": 2, "numnum:max:POP1970": 5585, "numnum:min:POP1970": 1029, "numnum:sum:POP1970": 6614, "numnum:count:POP1975": 2, "numnum:max:POP1975": 6450, "numnum:min:POP1975": 1206, "numnum:sum:POP1975": 7656, "numnum:count:POP1980": 2, "numnum:max:POP1980": 7349, "numnum:min:POP1980": 1416, "numnum:sum:POP1980": 8765, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8328, "numnum:min:POP1985": 1681, "numnum:sum:POP1985": 10009, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9061, "numnum:min:POP1990": 2026, "numnum:sum:POP1990": 11087, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9707, "numnum:min:POP1995": 2442, "numnum:sum:POP1995": 12149, "numnum:count:POP2000": 2, "numnum:max:POP2000": 10534, "numnum:min:POP2000": 2752, "numnum:sum:POP2000": 13286, "numnum:count:POP2005": 2, "numnum:max:POP2005": 11487, "numnum:min:POP2005": 3012, "numnum:sum:POP2005": 14499, "numnum:count:POP2010": 2, "numnum:max:POP2010": 11893, "numnum:min:POP2010": 3112, "numnum:sum:POP2010": 15005, "numnum:count:POP2015": 2, "numnum:max:POP2015": 12503, "numnum:min:POP2015": 3256, "numnum:sum:POP2015": 15759, "numnum:count:POP2020": 2, "numnum:max:POP2020": 13465, "numnum:min:POP2020": 3453, "numnum:sum:POP2020": 16918, "numnum:count:POP2025": 2, "numnum:max:POP2025": 14451, "numnum:min:POP2025": 3600, "numnum:sum:POP2025": 18051, "numnum:count:POP2050": 2, "numnum:max:POP2050": 15561, "numnum:min:POP2050": 3726, "numnum:sum:POP2050": 19287, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.031055 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 8, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 420, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 22, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 40.181151, "numnum:min:LATITUDE": 33.500034, "numnum:sum:LATITUDE": 107.55315999999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 44.513551, "numnum:min:LONGITUDE": 35.509708, "numnum:sum:LONGITUDE": 116.32325500000002, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2466000, "numnum:min:POP_MAX": 1102000, "numnum:sum:POP_MAX": 5414000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 2466000, "numnum:min:POP_MIN": 1093485, "numnum:sum:POP_MIN": 5271610, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 3344577, "numnum:min:POP_OTHER": 1154748, "numnum:sum:POP_OTHER": 6161305, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 36, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 36, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 616052, "numnum:min:GEONAMEID": 170654, "numnum:sum:GEONAMEID": 1063487, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3398649, "numnum:min:MAX_POP10": 1200842, "numnum:sum:MAX_POP10": 6311616, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3865606, "numnum:min:MAX_POP20": 1200842, "numnum:sum:MAX_POP20": 6778916, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3865606, "numnum:min:MAX_POP50": 1200842, "numnum:sum:MAX_POP50": 6807140, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 3865606, "numnum:min:MAX_POP300": 1200842, "numnum:sum:MAX_POP300": 6807140, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 532, "numnum:min:MIN_AREAKM": 191, "numnum:sum:MIN_AREAKM": 1152, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 705, "numnum:min:MAX_AREAKM": 191, "numnum:sum:MAX_AREAKM": 1367, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 74, "numnum:sum:MIN_AREAMI": 445, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 272, "numnum:min:MAX_AREAMI": 74, "numnum:sum:MAX_AREAMI": 528, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 608, "numnum:min:MIN_PERKM": 166, "numnum:sum:MIN_PERKM": 1177, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 768, "numnum:min:MAX_PERKM": 166, "numnum:sum:MAX_PERKM": 1391, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 378, "numnum:min:MIN_PERMI": 103, "numnum:sum:MIN_PERMI": 732, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 477, "numnum:min:MAX_PERMI": 103, "numnum:sum:MAX_PERMI": 864, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 44.391667, "numnum:min:MIN_BBXMIN": 35.441667, "numnum:sum:MIN_BBXMIN": 115.883334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 44.391667, "numnum:min:MAX_BBXMIN": 35.441667, "numnum:sum:MAX_BBXMIN": 115.883334, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 44.6, "numnum:min:MIN_BBXMAX": 35.718541, "numnum:sum:MIN_BBXMAX": 116.793464, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 44.6, "numnum:min:MAX_BBXMAX": 35.758333, "numnum:sum:MAX_BBXMAX": 116.908333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 39.925, "numnum:min:MIN_BBYMIN": 33.283333, "numnum:sum:MIN_BBYMIN": 106.908333, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 39.925, "numnum:min:MAX_BBYMIN": 33.283333, "numnum:sum:MAX_BBYMIN": 106.908333, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 40.241667, "numnum:min:MIN_BBYMAX": 33.611711, "numnum:sum:MIN_BBYMAX": 108.02004500000001, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 40.241667, "numnum:min:MAX_BBYMAX": 33.625, "numnum:sum:MAX_BBYMAX": 108.033334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 44.506293, "numnum:min:MEAN_BBXC": 35.600789, "numnum:sum:MEAN_BBXC": 116.382201, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 40.127356, "numnum:min:MEAN_BBYC": 33.474283, "numnum:sum:MEAN_BBYC": 107.49444599999998, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1916100, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 3009585, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 1002, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 1058, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 493, "numnum:min:UN_FID": 341, "numnum:sum:UN_FID": 1211, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 40.2, "numnum:min:UN_LAT": 33.49, "numnum:sum:UN_LAT": 107.57000000000001, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 44.53, "numnum:min:UN_LONG": 35.49, "numnum:sum:UN_LONG": 116.31, "numnum:count:POP1950": 3, "numnum:max:POP1950": 367, "numnum:min:POP1950": 322, "numnum:sum:POP1950": 1030, "numnum:count:POP1955": 3, "numnum:max:POP1955": 461, "numnum:min:POP1955": 425, "numnum:sum:POP1955": 1317, "numnum:count:POP1960": 3, "numnum:max:POP1960": 579, "numnum:min:POP1960": 538, "numnum:sum:POP1960": 1678, "numnum:count:POP1965": 3, "numnum:max:POP1965": 733, "numnum:min:POP1965": 648, "numnum:sum:POP1965": 2108, "numnum:count:POP1970": 3, "numnum:max:POP1970": 923, "numnum:min:POP1970": 778, "numnum:sum:POP1970": 2615, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1500, "numnum:min:POP1975": 911, "numnum:sum:POP1975": 3533, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1623, "numnum:min:POP1980": 1042, "numnum:sum:POP1980": 4041, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1585, "numnum:min:POP1985": 1123, "numnum:sum:POP1985": 4254, "numnum:count:POP1990": 3, "numnum:max:POP1990": 1691, "numnum:min:POP1990": 1175, "numnum:sum:POP1990": 4159, "numnum:count:POP1995": 3, "numnum:max:POP1995": 1849, "numnum:min:POP1995": 1142, "numnum:sum:POP1995": 4259, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2044, "numnum:min:POP2000": 1111, "numnum:sum:POP2000": 4642, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2330, "numnum:min:POP2005": 1103, "numnum:sum:POP2005": 5210, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2466, "numnum:min:POP2010": 1102, "numnum:sum:POP2010": 5414, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2675, "numnum:min:POP2015": 1102, "numnum:sum:POP2015": 5718, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2981, "numnum:min:POP2020": 1102, "numnum:sum:POP2020": 6134, "numnum:count:POP2025": 3, "numnum:max:POP2025": 3293, "numnum:min:POP2025": 1102, "numnum:sum:POP2025": 6514, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3605, "numnum:min:POP2050": 1102, "numnum:sum:POP2050": 6880, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 33.338648, "numnum:min:LATITUDE": 31.778408, "numnum:sum:LATITUDE": 65.11705599999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 44.393869, "numnum:min:LONGITUDE": 35.206626, "numnum:sum:LONGITUDE": 79.600495, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 5054000, "numnum:min:POP_MAX": 1029300, "numnum:sum:POP_MAX": 6083300, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5054000, "numnum:min:POP_MIN": 801000, "numnum:sum:POP_MIN": 5855000, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 4959534, "numnum:min:POP_OTHER": 1072567, "numnum:sum:POP_OTHER": 6032101, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 281184, "numnum:min:GEONAMEID": 98182, "numnum:sum:GEONAMEID": 379366, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5298025, "numnum:min:MAX_POP10": 1073782, "numnum:sum:MAX_POP10": 6371807, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5298025, "numnum:min:MAX_POP20": 1073782, "numnum:sum:MAX_POP20": 6371807, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5298025, "numnum:min:MAX_POP50": 1073782, "numnum:sum:MAX_POP50": 6371807, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5298025, "numnum:min:MAX_POP300": 1073782, "numnum:sum:MAX_POP300": 6371807, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 587, "numnum:min:MIN_AREAKM": 246, "numnum:sum:MIN_AREAKM": 833, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 587, "numnum:min:MAX_AREAKM": 246, "numnum:sum:MAX_AREAKM": 833, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 227, "numnum:min:MIN_AREAMI": 95, "numnum:sum:MIN_AREAMI": 322, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 227, "numnum:min:MAX_AREAMI": 95, "numnum:sum:MAX_AREAMI": 322, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 365, "numnum:min:MIN_PERKM": 239, "numnum:sum:MIN_PERKM": 604, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 365, "numnum:min:MAX_PERKM": 239, "numnum:sum:MAX_PERKM": 604, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 227, "numnum:min:MIN_PERMI": 149, "numnum:sum:MIN_PERMI": 376, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 227, "numnum:min:MAX_PERMI": 149, "numnum:sum:MAX_PERMI": 376, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 44.241667, "numnum:min:MIN_BBXMIN": 35.1, "numnum:sum:MIN_BBXMIN": 79.341667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 44.241667, "numnum:min:MAX_BBXMIN": 35.1, "numnum:sum:MAX_BBXMIN": 79.341667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 44.575, "numnum:min:MIN_BBXMAX": 35.316667, "numnum:sum:MIN_BBXMAX": 79.89166700000001, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 44.575, "numnum:min:MAX_BBXMAX": 35.316667, "numnum:sum:MAX_BBXMAX": 79.89166700000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 33.141667, "numnum:min:MIN_BBYMIN": 31.683333, "numnum:sum:MIN_BBYMIN": 64.825, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 33.141667, "numnum:min:MAX_BBYMIN": 31.683333, "numnum:sum:MAX_BBYMIN": 64.825, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 33.575, "numnum:min:MIN_BBYMAX": 31.991667, "numnum:sum:MIN_BBYMAX": 65.566667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 33.575, "numnum:min:MAX_BBYMAX": 31.991667, "numnum:sum:MAX_BBYMAX": 65.566667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 44.401776, "numnum:min:MEAN_BBXC": 35.210651, "numnum:sum:MEAN_BBXC": 79.612427, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 33.332697, "numnum:min:MEAN_BBYC": 31.809862, "numnum:sum:MEAN_BBYC": 65.142559, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 7, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 13, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 5672513, "numnum:min:GN_POP": 714000, "numnum:sum:GN_POP": 6386513, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 795, "numnum:min:GTOPO30": 41, "numnum:sum:GTOPO30": 836, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 300, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 300, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 33.33, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 33.33, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 44.39, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 44.39, "numnum:count:POP1950": 2, "numnum:max:POP1950": 579, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 579, "numnum:count:POP1955": 2, "numnum:max:POP1955": 719, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 719, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1019, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1019, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1614, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1614, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2070, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2070, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2620, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2620, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3145, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3145, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3607, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3607, "numnum:count:POP1990": 2, "numnum:max:POP1990": 4092, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 4092, "numnum:count:POP1995": 2, "numnum:max:POP1995": 4598, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 4598, "numnum:count:POP2000": 2, "numnum:max:POP2000": 5200, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 5200, "numnum:count:POP2005": 2, "numnum:max:POP2005": 5327, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 5327, "numnum:count:POP2010": 2, "numnum:max:POP2010": 5054, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 5054, "numnum:count:POP2015": 2, "numnum:max:POP2015": 5891, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 5891, "numnum:count:POP2020": 2, "numnum:max:POP2020": 6618, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 6618, "numnum:count:POP2025": 2, "numnum:max:POP2025": 7345, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7345, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8060, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8060, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum", "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 19, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1020, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 40, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 6, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 15.588078, "numnum:min:LATITUDE": 0.316659, "numnum:sum:LATITUDE": 72.051108, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 44.206593, "numnum:min:LONGITUDE": 31.580026, "numnum:sum:LONGITUDE": 261.685452, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 20, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 39, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 4754000, "numnum:min:POP_MAX": 111975, "numnum:sum:POP_MAX": 12937777, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 2757729, "numnum:min:POP_MIN": 111975, "numnum:sum:POP_MIN": 9201336, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 3013653, "numnum:min:POP_OTHER": 111975, "numnum:sum:POP_OTHER": 10269863, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 79, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 79, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 379252, "numnum:min:GEONAMEID": 71137, "numnum:sum:GEONAMEID": 1968210, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 2984087, "numnum:min:MAX_POP10": 111975, "numnum:sum:MAX_POP10": 10438619, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 3176486, "numnum:min:MAX_POP20": 111975, "numnum:sum:MAX_POP20": 10628817, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 3491912, "numnum:min:MAX_POP50": 111975, "numnum:sum:MAX_POP50": 11113807, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 4542697, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 13107481, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 650, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 462, "numnum:min:MIN_AREAKM": 21, "numnum:sum:MIN_AREAKM": 1528, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 1182, "numnum:min:MAX_AREAKM": 21, "numnum:sum:MAX_AREAKM": 2590, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 178, "numnum:min:MIN_AREAMI": 8, "numnum:sum:MIN_AREAMI": 589, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 457, "numnum:min:MAX_AREAMI": 8, "numnum:sum:MAX_AREAMI": 1001, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 397, "numnum:min:MIN_PERKM": 30, "numnum:sum:MIN_PERKM": 1324, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 1325, "numnum:min:MAX_PERKM": 30, "numnum:sum:MAX_PERKM": 2518, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 247, "numnum:min:MIN_PERMI": 18, "numnum:sum:MIN_PERMI": 822, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 823, "numnum:min:MAX_PERMI": 18, "numnum:sum:MAX_PERMI": 1563, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 44.15, "numnum:min:MIN_BBXMIN": 31.575, "numnum:sum:MIN_BBXMIN": 261.01666700000006, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 44.15, "numnum:min:MAX_BBXMIN": 31.575, "numnum:sum:MAX_BBXMIN": 261.183333, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 44.258333, "numnum:min:MIN_BBXMAX": 31.625, "numnum:sum:MIN_BBXMAX": 262.483334, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 44.258333, "numnum:min:MAX_BBXMAX": 31.625, "numnum:sum:MAX_BBXMAX": 263, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 15.325, "numnum:min:MIN_BBYMIN": 0.033333, "numnum:sum:MIN_BBYMIN": 70.233333, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 15.325, "numnum:min:MAX_BBYMIN": 0.166719, "numnum:sum:MAX_BBYMIN": 71.005166, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 15.699422, "numnum:min:MIN_BBYMAX": 0.475, "numnum:sum:MIN_BBYMAX": 72.724421, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 15.825, "numnum:min:MAX_BBYMAX": 0.475, "numnum:sum:MAX_BBYMAX": 72.849999, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 44.206615, "numnum:min:MEAN_BBXC": 31.6015, "numnum:sum:MEAN_BBXC": 261.948767, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 15.559101, "numnum:min:MEAN_BBYC": 0.323809, "numnum:sum:MEAN_BBYC": 71.828725, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 44, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 142, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 2757729, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 7273386, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 2363, "numnum:min:GTOPO30": 0, "numnum:sum:GTOPO30": 6859, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 587, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 1740, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 15.55, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 40.25, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 44.2, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 147.99, "numnum:count:POP1950": 7, "numnum:max:POP1950": 392, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 716, "numnum:count:POP1955": 7, "numnum:max:POP1955": 451, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 871, "numnum:count:POP1960": 7, "numnum:max:POP1960": 519, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1075, "numnum:count:POP1965": 7, "numnum:max:POP1965": 597, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1385, "numnum:count:POP1970": 7, "numnum:max:POP1970": 729, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1837, "numnum:count:POP1975": 7, "numnum:max:POP1975": 926, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2351, "numnum:count:POP1980": 7, "numnum:max:POP1980": 1175, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3046, "numnum:count:POP1985": 7, "numnum:max:POP1985": 1611, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 4084, "numnum:count:POP1990": 7, "numnum:max:POP1990": 2360, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5559, "numnum:count:POP1995": 7, "numnum:max:POP1995": 3242, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 7345, "numnum:count:POP2000": 7, "numnum:max:POP2000": 3949, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 8904, "numnum:count:POP2005": 7, "numnum:max:POP2005": 4518, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10539, "numnum:count:POP2010": 7, "numnum:max:POP2010": 4754, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11282, "numnum:count:POP2015": 7, "numnum:max:POP2015": 5185, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12580, "numnum:count:POP2020": 7, "numnum:max:POP2020": 6077, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 15195, "numnum:count:POP2025": 7, "numnum:max:POP2025": 7017, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 18242, "numnum:count:POP2050": 7, "numnum:max:POP2050": 7937, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 21673, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 32.519531, 15.580711 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 6, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 6, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 51.181125, "numnum:min:LATITUDE": 9.560022, "numnum:sum:LATITUDE": 60.741147, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 71.427774, "numnum:min:LONGITUDE": 44.06531, "numnum:sum:LONGITUDE": 115.493084, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 477876, "numnum:min:POP_MAX": 345604, "numnum:sum:POP_MAX": 823480, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 325021, "numnum:min:POP_MIN": 247018, "numnum:sum:POP_MIN": 572039, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 317445, "numnum:min:POP_OTHER": 247018, "numnum:sum:POP_OTHER": 564463, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 10, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 20, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1526273, "numnum:min:GEONAMEID": 57289, "numnum:sum:GEONAMEID": 1583562, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 325021, "numnum:min:MAX_POP10": 247018, "numnum:sum:MAX_POP10": 572039, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 325021, "numnum:min:MAX_POP20": 247018, "numnum:sum:MAX_POP20": 572039, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 325021, "numnum:min:MAX_POP50": 247018, "numnum:sum:MAX_POP50": 572039, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 325021, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 325021, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 150, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 104, "numnum:min:MIN_AREAKM": 40, "numnum:sum:MIN_AREAKM": 144, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 104, "numnum:min:MAX_AREAKM": 40, "numnum:sum:MAX_AREAKM": 144, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 40, "numnum:min:MIN_AREAMI": 15, "numnum:sum:MIN_AREAMI": 55, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 40, "numnum:min:MAX_AREAMI": 15, "numnum:sum:MAX_AREAMI": 55, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 101, "numnum:min:MIN_PERKM": 37, "numnum:sum:MIN_PERKM": 138, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 101, "numnum:min:MAX_PERKM": 37, "numnum:sum:MAX_PERKM": 138, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 63, "numnum:min:MIN_PERMI": 23, "numnum:sum:MIN_PERMI": 86, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 63, "numnum:min:MAX_PERMI": 23, "numnum:sum:MAX_PERMI": 86, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 71.325, "numnum:min:MIN_BBXMIN": 44.025, "numnum:sum:MIN_BBXMIN": 115.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 71.325, "numnum:min:MAX_BBXMIN": 44.025, "numnum:sum:MAX_BBXMIN": 115.35, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 71.533333, "numnum:min:MIN_BBXMAX": 44.1, "numnum:sum:MIN_BBXMAX": 115.633333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 71.533333, "numnum:min:MAX_BBXMAX": 44.1, "numnum:sum:MAX_BBXMAX": 115.633333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 51.1, "numnum:min:MIN_BBYMIN": 9.516667, "numnum:sum:MIN_BBYMIN": 60.616667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 51.1, "numnum:min:MAX_BBYMIN": 9.516667, "numnum:sum:MAX_BBYMIN": 60.616667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 51.225, "numnum:min:MIN_BBYMAX": 9.591667, "numnum:sum:MIN_BBYMAX": 60.816667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 51.225, "numnum:min:MAX_BBYMAX": 9.591667, "numnum:sum:MAX_BBYMAX": 60.816667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 71.43275, "numnum:min:MEAN_BBXC": 44.06445, "numnum:sum:MEAN_BBXC": 115.49719999999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 51.164443, "numnum:min:MEAN_BBYC": 9.557004, "numnum:sum:MEAN_BBYC": 60.721447, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 20, "numnum:min:ADMIN1_COD": 5, "numnum:sum:ADMIN1_COD": 25, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 477876, "numnum:min:GN_POP": 345604, "numnum:sum:GN_POP": 823480, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1247, "numnum:min:GTOPO30": 339, "numnum:sum:GTOPO30": 1586, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 2, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 2, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 2, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 2, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 2, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 2, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 2, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 2, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 2, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 2, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 2, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 2, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 2, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 2, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 2, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 2, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 2, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 710, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 43.805012, "numnum:min:LATITUDE": 41.311702, "numnum:sum:LATITUDE": 127.98979299999999, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 87.575006, "numnum:min:LONGITUDE": 69.294933, "numnum:sum:LONGITUDE": 231.455143, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 2184000, "numnum:min:POP_MAX": 837000, "numnum:sum:POP_MAX": 5172000, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 1978028, "numnum:min:POP_MIN": 804212, "numnum:sum:POP_MIN": 4290465, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2806287, "numnum:min:POP_OTHER": 781714, "numnum:sum:POP_OTHER": 5632402, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 35, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 35, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1529102, "numnum:min:GEONAMEID": 1512569, "numnum:sum:GEONAMEID": 4570346, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 2865234, "numnum:min:MAX_POP10": 804212, "numnum:sum:MAX_POP10": 5735492, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 2865890, "numnum:min:MAX_POP20": 804212, "numnum:sum:MAX_POP20": 5736148, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 2865890, "numnum:min:MAX_POP50": 804212, "numnum:sum:MAX_POP50": 5736148, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 2865890, "numnum:min:MAX_POP300": 804212, "numnum:sum:MAX_POP300": 5736148, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 639, "numnum:min:MIN_AREAKM": 245, "numnum:sum:MIN_AREAKM": 1245, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 643, "numnum:min:MAX_AREAKM": 245, "numnum:sum:MAX_AREAKM": 1249, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 247, "numnum:min:MIN_AREAMI": 94, "numnum:sum:MIN_AREAMI": 480, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 248, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 481, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 377, "numnum:min:MIN_PERKM": 190, "numnum:sum:MIN_PERKM": 885, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 383, "numnum:min:MAX_PERKM": 190, "numnum:sum:MAX_PERKM": 891, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 234, "numnum:min:MIN_PERMI": 118, "numnum:sum:MIN_PERMI": 550, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 238, "numnum:min:MAX_PERMI": 118, "numnum:sum:MAX_PERMI": 554, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 87.358333, "numnum:min:MIN_BBXMIN": 69.05, "numnum:sum:MIN_BBXMIN": 230.83333299999999, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 87.358333, "numnum:min:MAX_BBXMIN": 69.05, "numnum:sum:MAX_BBXMIN": 230.83333299999999, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 87.725, "numnum:min:MIN_BBXMAX": 69.436467, "numnum:sum:MIN_BBXMAX": 231.961467, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 87.725, "numnum:min:MAX_BBXMAX": 69.45, "numnum:sum:MAX_BBXMAX": 231.975, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 43.641667, "numnum:min:MIN_BBYMIN": 41.141667, "numnum:sum:MIN_BBYMIN": 127.550001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 43.641667, "numnum:min:MAX_BBYMIN": 41.141667, "numnum:sum:MAX_BBYMIN": 127.550001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 44.016667, "numnum:min:MIN_BBYMAX": 41.483333, "numnum:sum:MIN_BBYMAX": 128.5, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 44.016667, "numnum:min:MAX_BBYMAX": 41.483333, "numnum:sum:MAX_BBYMAX": 128.5, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 87.578494, "numnum:min:MEAN_BBXC": 69.256717, "numnum:sum:MEAN_BBXC": 231.43903400000003, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 43.854525, "numnum:min:MEAN_BBYC": 41.318916, "numnum:sum:MEAN_BBYC": 128.046358, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 13, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 27, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 1978028, "numnum:min:GN_POP": 900000, "numnum:sum:GN_POP": 4386253, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 915, "numnum:min:GTOPO30": 460, "numnum:sum:GTOPO30": 2147, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 580, "numnum:min:UN_FID": 118, "numnum:sum:UN_FID": 1038, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 43.78, "numnum:min:UN_LAT": 41.24, "numnum:sum:UN_LAT": 127.89, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 87.58, "numnum:min:UN_LONG": 69.34, "numnum:sum:UN_LONG": 231.69, "numnum:count:POP1950": 3, "numnum:max:POP1950": 755, "numnum:min:POP1950": 150, "numnum:sum:POP1950": 1158, "numnum:count:POP1955": 3, "numnum:max:POP1955": 843, "numnum:min:POP1955": 186, "numnum:sum:POP1955": 1341, "numnum:count:POP1960": 3, "numnum:max:POP1960": 964, "numnum:min:POP1960": 236, "numnum:sum:POP1960": 1584, "numnum:count:POP1965": 3, "numnum:max:POP1965": 1165, "numnum:min:POP1965": 322, "numnum:sum:POP1965": 1959, "numnum:count:POP1970": 3, "numnum:max:POP1970": 1403, "numnum:min:POP1970": 433, "numnum:sum:POP1970": 2417, "numnum:count:POP1975": 3, "numnum:max:POP1975": 1612, "numnum:min:POP1975": 485, "numnum:sum:POP1975": 2812, "numnum:count:POP1980": 3, "numnum:max:POP1980": 1818, "numnum:min:POP1980": 538, "numnum:sum:POP1980": 3237, "numnum:count:POP1985": 3, "numnum:max:POP1985": 1958, "numnum:min:POP1985": 583, "numnum:sum:POP1985": 3570, "numnum:count:POP1990": 3, "numnum:max:POP1990": 2100, "numnum:min:POP1990": 635, "numnum:sum:POP1990": 3896, "numnum:count:POP1995": 3, "numnum:max:POP1995": 2116, "numnum:min:POP1995": 703, "numnum:sum:POP1995": 4236, "numnum:count:POP2000": 3, "numnum:max:POP2000": 2135, "numnum:min:POP2000": 770, "numnum:sum:POP2000": 4635, "numnum:count:POP2005": 3, "numnum:max:POP2005": 2158, "numnum:min:POP2005": 817, "numnum:sum:POP2005": 5000, "numnum:count:POP2010": 3, "numnum:max:POP2010": 2184, "numnum:min:POP2010": 837, "numnum:sum:POP2010": 5172, "numnum:count:POP2015": 3, "numnum:max:POP2015": 2340, "numnum:min:POP2015": 869, "numnum:sum:POP2015": 5456, "numnum:count:POP2020": 3, "numnum:max:POP2020": 2620, "numnum:min:POP2020": 934, "numnum:sum:POP2020": 5970, "numnum:count:POP2025": 3, "numnum:max:POP2025": 2851, "numnum:min:POP2025": 1011, "numnum:sum:POP2025": 6498, "numnum:count:POP2050": 3, "numnum:max:POP2050": 3038, "numnum:min:POP2050": 1096, "numnum:sum:POP2050": 7026, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 49.877930, 40.380028 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 3, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 500, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 35.671943, "numnum:min:LATITUDE": 29.369718, "numnum:sum:LATITUDE": 65.041661, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 51.424344, "numnum:min:LONGITUDE": 47.978301, "numnum:sum:LONGITUDE": 99.402645, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 7873000, "numnum:min:POP_MAX": 2063000, "numnum:sum:POP_MAX": 9936000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 7153309, "numnum:min:POP_MIN": 60064, "numnum:sum:POP_MIN": 7213373, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 8209012, "numnum:min:POP_OTHER": 1682968, "numnum:sum:POP_OTHER": 9891980, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 25, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 285787, "numnum:min:GEONAMEID": 112931, "numnum:sum:GEONAMEID": 398718, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 8258981, "numnum:min:MAX_POP10": 1732952, "numnum:sum:MAX_POP10": 9991933, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8258981, "numnum:min:MAX_POP20": 2142805, "numnum:sum:MAX_POP20": 10401786, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 8258981, "numnum:min:MAX_POP50": 2142805, "numnum:sum:MAX_POP50": 10401786, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 8258981, "numnum:min:MAX_POP300": 2142805, "numnum:sum:MAX_POP300": 10401786, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 496, "numnum:min:MIN_AREAKM": 264, "numnum:sum:MIN_AREAKM": 760, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 496, "numnum:min:MAX_AREAKM": 366, "numnum:sum:MAX_AREAKM": 862, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 191, "numnum:min:MIN_AREAMI": 102, "numnum:sum:MIN_AREAMI": 293, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 191, "numnum:min:MAX_AREAMI": 141, "numnum:sum:MAX_AREAMI": 332, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 245, "numnum:min:MIN_PERKM": 162, "numnum:sum:MIN_PERKM": 407, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 249, "numnum:min:MAX_PERKM": 245, "numnum:sum:MAX_PERKM": 494, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 152, "numnum:min:MIN_PERMI": 101, "numnum:sum:MIN_PERMI": 253, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 155, "numnum:min:MAX_PERMI": 152, "numnum:sum:MAX_PERMI": 307, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 51.216667, "numnum:min:MIN_BBXMIN": 47.8, "numnum:sum:MIN_BBXMIN": 99.016667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 51.216667, "numnum:min:MAX_BBXMIN": 47.821052, "numnum:sum:MAX_BBXMIN": 99.03771900000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 51.6, "numnum:min:MIN_BBXMAX": 48.1, "numnum:sum:MIN_BBXMAX": 99.7, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 51.6, "numnum:min:MAX_BBXMAX": 48.15, "numnum:sum:MAX_BBXMAX": 99.75, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 35.55, "numnum:min:MIN_BBYMIN": 29.066667, "numnum:sum:MIN_BBYMIN": 64.61666699999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 35.55, "numnum:min:MAX_BBYMIN": 29.225, "numnum:sum:MAX_BBYMIN": 64.775, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 35.825, "numnum:min:MIN_BBYMAX": 29.391667, "numnum:sum:MIN_BBYMAX": 65.216667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 35.825, "numnum:min:MAX_BBYMAX": 29.391667, "numnum:sum:MAX_BBYMAX": 65.216667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 51.416848, "numnum:min:MEAN_BBXC": 47.993999, "numnum:sum:MEAN_BBXC": 99.410847, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 35.709171, "numnum:min:MEAN_BBYC": 29.277119, "numnum:sum:MEAN_BBYC": 64.98629, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 26, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 7153309, "numnum:min:GN_POP": 60064, "numnum:sum:GN_POP": 7213373, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1149, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 1161, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 339, "numnum:min:UN_FID": 297, "numnum:sum:UN_FID": 636, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 35.77, "numnum:min:UN_LAT": 29.38, "numnum:sum:UN_LAT": 65.15, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 51.44, "numnum:min:UN_LONG": 47.97, "numnum:sum:UN_LONG": 99.41, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1041, "numnum:min:POP1950": 63, "numnum:sum:POP1950": 1104, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1396, "numnum:min:POP1955": 106, "numnum:sum:POP1955": 1502, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1873, "numnum:min:POP1960": 179, "numnum:sum:POP1960": 2052, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2511, "numnum:min:POP1965": 303, "numnum:sum:POP1965": 2814, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3290, "numnum:min:POP1970": 553, "numnum:sum:POP1970": 3843, "numnum:count:POP1975": 2, "numnum:max:POP1975": 4273, "numnum:min:POP1975": 688, "numnum:sum:POP1975": 4961, "numnum:count:POP1980": 2, "numnum:max:POP1980": 5079, "numnum:min:POP1980": 891, "numnum:sum:POP1980": 5970, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5839, "numnum:min:POP1985": 1122, "numnum:sum:POP1985": 6961, "numnum:count:POP1990": 2, "numnum:max:POP1990": 6365, "numnum:min:POP1990": 1392, "numnum:sum:POP1990": 7757, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6687, "numnum:min:POP1995": 1190, "numnum:sum:POP1995": 7877, "numnum:count:POP2000": 2, "numnum:max:POP2000": 7128, "numnum:min:POP2000": 1499, "numnum:sum:POP2000": 8627, "numnum:count:POP2005": 2, "numnum:max:POP2005": 7653, "numnum:min:POP2005": 1888, "numnum:sum:POP2005": 9541, "numnum:count:POP2010": 2, "numnum:max:POP2010": 7873, "numnum:min:POP2010": 2063, "numnum:sum:POP2010": 9936, "numnum:count:POP2015": 2, "numnum:max:POP2015": 8221, "numnum:min:POP2015": 2305, "numnum:sum:POP2015": 10526, "numnum:count:POP2020": 2, "numnum:max:POP2020": 8832, "numnum:min:POP2020": 2592, "numnum:sum:POP2020": 11424, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9404, "numnum:min:POP2025": 2790, "numnum:sum:POP2025": 12194, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9814, "numnum:min:POP2050": 2956, "numnum:sum:POP2050": 12770, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 26.236136, "numnum:min:LATITUDE": 24.640833, "numnum:sum:LATITUDE": 50.876969, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 50.583052, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 97.355794, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4465000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 5028920, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 4205961, "numnum:min:POP_MIN": 157474, "numnum:sum:POP_MIN": 4363435, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5148778, "numnum:min:POP_OTHER": 563666, "numnum:sum:POP_OTHER": 5712444, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 290340, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 398750, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5322753, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 5886673, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5322753, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 5886673, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5322753, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 5886673, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5322753, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 5886673, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 854, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 1032, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 854, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 1032, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 330, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 399, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 330, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 399, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 459, "numnum:min:MIN_PERKM": 184, "numnum:sum:MIN_PERKM": 643, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 459, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 643, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 285, "numnum:min:MIN_PERMI": 115, "numnum:sum:MIN_PERMI": 400, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 285, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 400, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 50.441667, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 96.95833400000001, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 50.441667, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 96.95833400000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 50.633333, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 97.566666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 50.633333, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 97.566666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 26.05, "numnum:min:MIN_BBYMIN": 24.516667, "numnum:sum:MIN_BBYMIN": 50.566667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 26.05, "numnum:min:MAX_BBYMIN": 24.516667, "numnum:sum:MAX_BBYMIN": 50.566667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.25, "numnum:min:MIN_BBYMAX": 24.833333, "numnum:sum:MIN_BBYMAX": 51.083332999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.25, "numnum:min:MAX_BBYMAX": 24.833333, "numnum:sum:MAX_BBYMAX": 51.083332999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 50.542529, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 97.282976, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.164763, "numnum:min:MEAN_BBYC": 24.678984, "numnum:sum:MEAN_BBYC": 50.843747, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 12, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4205961, "numnum:min:GN_POP": 147074, "numnum:sum:GN_POP": 4353035, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 618, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9381, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 444, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 444, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 24.65, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 24.65, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 46.77, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 46.77, "numnum:count:POP1950": 2, "numnum:max:POP1950": 111, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 111, "numnum:count:POP1955": 2, "numnum:max:POP1955": 131, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 131, "numnum:count:POP1960": 2, "numnum:max:POP1960": 156, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 156, "numnum:count:POP1965": 2, "numnum:max:POP1965": 227, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 227, "numnum:count:POP1970": 2, "numnum:max:POP1970": 408, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 408, "numnum:count:POP1975": 2, "numnum:max:POP1975": 710, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 710, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1055, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1055, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1566, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1566, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2325, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2325, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3035, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3035, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3567, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3567, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4193, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4193, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4465, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4465, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5405, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5405, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5866, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5866, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6275, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6275, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 46.757812, 24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 25.286556, "numnum:min:LATITUDE": 25.229996, "numnum:sum:LATITUDE": 50.516552000000007, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 55.279974, "numnum:min:LONGITUDE": 51.532968, "numnum:sum:LONGITUDE": 106.81294199999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 1, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1450000, "numnum:min:POP_MAX": 1379000, "numnum:sum:POP_MAX": 2829000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1137347, "numnum:min:POP_MIN": 731310, "numnum:sum:POP_MIN": 1868657, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1166878, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 1166878, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 292223, "numnum:min:GEONAMEID": 290030, "numnum:sum:GEONAMEID": 582253, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1193251, "numnum:min:MAX_POP10": 731310, "numnum:sum:MAX_POP10": 1924561, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2244726, "numnum:min:MAX_POP20": 731310, "numnum:sum:MAX_POP20": 2976036, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2244726, "numnum:min:MAX_POP50": 731310, "numnum:sum:MAX_POP50": 2976036, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2244726, "numnum:min:MAX_POP300": 731310, "numnum:sum:MAX_POP300": 2976036, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 2244726, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2244726, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 270, "numnum:min:MIN_AREAKM": 187, "numnum:sum:MIN_AREAKM": 457, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 407, "numnum:min:MAX_AREAKM": 270, "numnum:sum:MAX_AREAKM": 677, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 104, "numnum:min:MIN_AREAMI": 72, "numnum:sum:MIN_AREAMI": 176, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 157, "numnum:min:MAX_AREAMI": 104, "numnum:sum:MAX_AREAMI": 261, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 205, "numnum:min:MIN_PERKM": 158, "numnum:sum:MIN_PERKM": 363, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 205, "numnum:sum:MAX_PERKM": 483, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 127, "numnum:min:MIN_PERMI": 98, "numnum:sum:MIN_PERMI": 225, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 173, "numnum:min:MAX_PERMI": 127, "numnum:sum:MAX_PERMI": 300, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 55.175, "numnum:min:MIN_BBXMIN": 51.358333, "numnum:sum:MIN_BBXMIN": 106.533333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 55.175, "numnum:min:MAX_BBXMIN": 51.358333, "numnum:sum:MAX_BBXMIN": 106.533333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 55.437142, "numnum:min:MIN_BBXMAX": 51.583333, "numnum:sum:MIN_BBXMAX": 107.020475, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 55.533333, "numnum:min:MAX_BBXMAX": 51.583333, "numnum:sum:MAX_BBXMAX": 107.11666600000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 25.158333, "numnum:min:MIN_BBYMIN": 25.1, "numnum:sum:MIN_BBYMIN": 50.258333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 25.158333, "numnum:min:MAX_BBYMIN": 25.1, "numnum:sum:MAX_BBYMIN": 50.258333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 25.408333, "numnum:min:MIN_BBYMAX": 25.308333, "numnum:sum:MIN_BBYMAX": 50.716666000000007, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 25.433333, "numnum:min:MAX_BBYMAX": 25.408333, "numnum:sum:MAX_BBYMAX": 50.841666000000007, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 55.361736, "numnum:min:MEAN_BBXC": 51.468439, "numnum:sum:MEAN_BBXC": 106.830175, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 25.281154, "numnum:min:MEAN_BBYC": 25.258666, "numnum:sum:MEAN_BBYC": 50.539820000000009, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 3, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 4, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1137347, "numnum:min:GN_POP": 344939, "numnum:sum:GN_POP": 1482286, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 21, "numnum:min:GTOPO30": 9, "numnum:sum:GTOPO30": 30, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 498, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 498, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 25.27, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 25.27, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 55.32, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 55.32, "numnum:count:POP1950": 2, "numnum:max:POP1950": 20, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 20, "numnum:count:POP1955": 2, "numnum:max:POP1955": 28, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 28, "numnum:count:POP1960": 2, "numnum:max:POP1960": 40, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 40, "numnum:count:POP1965": 2, "numnum:max:POP1965": 51, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 51, "numnum:count:POP1970": 2, "numnum:max:POP1970": 80, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 80, "numnum:count:POP1975": 2, "numnum:max:POP1975": 167, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 167, "numnum:count:POP1980": 2, "numnum:max:POP1980": 254, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 254, "numnum:count:POP1985": 2, "numnum:max:POP1985": 345, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 345, "numnum:count:POP1990": 2, "numnum:max:POP1990": 473, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 473, "numnum:count:POP1995": 2, "numnum:max:POP1995": 650, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 650, "numnum:count:POP2000": 2, "numnum:max:POP2000": 938, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 938, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1272, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1272, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1379, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1379, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1516, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1516, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1709, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1709, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1894, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1894, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2077, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2077, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 51.547852, 25.284438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 330, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 24, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 37.949995, "numnum:min:LATITUDE": 23.613325, "numnum:sum:LATITUDE": 86.030004, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 58.593312, "numnum:min:LONGITUDE": 54.366593, "numnum:sum:LONGITUDE": 171.34320400000002, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 734697, "numnum:min:POP_MAX": 603492, "numnum:sum:POP_MAX": 2065889, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 586861, "numnum:min:POP_MIN": 560230, "numnum:sum:POP_MIN": 1725073, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 586861, "numnum:min:POP_OTHER": 556048, "numnum:sum:POP_OTHER": 1703139, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 33, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 33, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 292968, "numnum:min:GEONAMEID": 162183, "numnum:sum:GEONAMEID": 742437, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 586861, "numnum:min:MAX_POP10": 560230, "numnum:sum:MAX_POP10": 1725073, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 589324, "numnum:min:MAX_POP20": 560230, "numnum:sum:MAX_POP20": 1736415, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 589324, "numnum:min:MAX_POP50": 560230, "numnum:sum:MAX_POP50": 1736415, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 589324, "numnum:min:MAX_POP300": 560230, "numnum:sum:MAX_POP300": 1736415, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 108, "numnum:min:MIN_AREAKM": 96, "numnum:sum:MIN_AREAKM": 308, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 128, "numnum:min:MAX_AREAKM": 96, "numnum:sum:MAX_AREAKM": 328, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 42, "numnum:min:MIN_AREAMI": 37, "numnum:sum:MIN_AREAMI": 119, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 49, "numnum:min:MAX_AREAMI": 37, "numnum:sum:MAX_AREAMI": 126, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 121, "numnum:min:MIN_PERKM": 87, "numnum:sum:MIN_PERKM": 317, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 144, "numnum:min:MAX_PERKM": 87, "numnum:sum:MAX_PERKM": 352, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 75, "numnum:min:MIN_PERMI": 54, "numnum:sum:MIN_PERMI": 197, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 90, "numnum:min:MAX_PERMI": 54, "numnum:sum:MAX_PERMI": 219, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 58.333333, "numnum:min:MIN_BBXMIN": 54.316667, "numnum:sum:MIN_BBXMIN": 170.85000000000003, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 58.333333, "numnum:min:MAX_BBXMIN": 54.316667, "numnum:sum:MAX_BBXMIN": 170.93637, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 58.6, "numnum:min:MIN_BBXMAX": 54.525, "numnum:sum:MIN_BBXMAX": 171.608333, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 58.6, "numnum:min:MAX_BBXMAX": 54.525, "numnum:sum:MAX_BBXMAX": 171.608333, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 37.866667, "numnum:min:MIN_BBYMIN": 23.558333, "numnum:sum:MIN_BBYMIN": 85.81666700000001, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 37.866667, "numnum:min:MAX_BBYMIN": 23.558333, "numnum:sum:MAX_BBYMIN": 85.81666700000001, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 38.016667, "numnum:min:MIN_BBYMAX": 23.641667, "numnum:sum:MIN_BBYMAX": 86.183334, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 38.016667, "numnum:min:MAX_BBYMAX": 23.641667, "numnum:sum:MAX_BBYMAX": 86.183334, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 58.474684, "numnum:min:MEAN_BBXC": 54.410671, "numnum:sum:MEAN_BBXC": 171.256698, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 37.94619, "numnum:min:MEAN_BBYC": 23.599306, "numnum:sum:MEAN_BBYC": 85.989839, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 8, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 797000, "numnum:min:GN_POP": 603492, "numnum:sum:GN_POP": 2128192, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 219, "numnum:min:GTOPO30": 14, "numnum:sum:GTOPO30": 302, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.447150 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 8, "numnum:sum:LABELRANK": 16, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 38.560035, "numnum:min:LATITUDE": 2.066681, "numnum:sum:LATITUDE": 40.626716, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 68.773879, "numnum:min:LONGITUDE": 45.366678, "numnum:sum:LONGITUDE": 114.140557, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1100000, "numnum:min:POP_MAX": 1086244, "numnum:sum:POP_MAX": 2186244, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 875388, "numnum:min:POP_MIN": 679400, "numnum:sum:POP_MIN": 1554788, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1081361, "numnum:min:POP_OTHER": 849392, "numnum:sum:POP_OTHER": 1930753, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1221874, "numnum:min:GEONAMEID": 53654, "numnum:sum:GEONAMEID": 1275528, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 1086244, "numnum:min:MAX_POP10": 875388, "numnum:sum:MAX_POP10": 1961632, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 1086244, "numnum:min:MAX_POP20": 875388, "numnum:sum:MAX_POP20": 1961632, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 1086244, "numnum:min:MAX_POP50": 875388, "numnum:sum:MAX_POP50": 1961632, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 1086244, "numnum:min:MAX_POP300": 875388, "numnum:sum:MAX_POP300": 1961632, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 415, "numnum:min:MIN_AREAKM": 99, "numnum:sum:MIN_AREAKM": 514, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 415, "numnum:min:MAX_AREAKM": 99, "numnum:sum:MAX_AREAKM": 514, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 160, "numnum:min:MIN_AREAMI": 38, "numnum:sum:MIN_AREAMI": 198, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 160, "numnum:min:MAX_AREAMI": 38, "numnum:sum:MAX_AREAMI": 198, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 411, "numnum:min:MIN_PERKM": 68, "numnum:sum:MIN_PERKM": 479, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 411, "numnum:min:MAX_PERKM": 68, "numnum:sum:MAX_PERKM": 479, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 255, "numnum:min:MIN_PERMI": 43, "numnum:sum:MIN_PERMI": 298, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 255, "numnum:min:MAX_PERMI": 43, "numnum:sum:MAX_PERMI": 298, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 68.641667, "numnum:min:MIN_BBXMIN": 45.25, "numnum:sum:MIN_BBXMIN": 113.891667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 68.641667, "numnum:min:MAX_BBXMIN": 45.25, "numnum:sum:MAX_BBXMIN": 113.891667, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 69.15, "numnum:min:MIN_BBXMAX": 45.416667, "numnum:sum:MIN_BBXMAX": 114.566667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 69.15, "numnum:min:MAX_BBXMAX": 45.416667, "numnum:sum:MAX_BBXMAX": 114.566667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 38.416667, "numnum:min:MIN_BBYMIN": 2, "numnum:sum:MIN_BBYMIN": 40.416667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 38.416667, "numnum:min:MAX_BBYMIN": 2, "numnum:sum:MAX_BBYMIN": 40.416667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 38.675, "numnum:min:MIN_BBYMAX": 2.116667, "numnum:sum:MIN_BBYMAX": 40.791667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 38.675, "numnum:min:MAX_BBYMAX": 2.116667, "numnum:sum:MAX_BBYMAX": 40.791667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 68.864837, "numnum:min:MEAN_BBXC": 45.331178, "numnum:sum:MEAN_BBXC": 114.19601499999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 38.542754, "numnum:min:MEAN_BBYC": 2.054239, "numnum:sum:MEAN_BBYC": 40.596993000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2587183, "numnum:min:GN_POP": 543107, "numnum:sum:GN_POP": 3130290, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 808, "numnum:min:GTOPO30": 39, "numnum:sum:GTOPO30": 847, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 454, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 454, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 2.04, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 2.04, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 45.34, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 45.34, "numnum:count:POP1950": 2, "numnum:max:POP1950": 69, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 69, "numnum:count:POP1955": 2, "numnum:max:POP1955": 73, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 73, "numnum:count:POP1960": 2, "numnum:max:POP1960": 94, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 94, "numnum:count:POP1965": 2, "numnum:max:POP1965": 146, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 146, "numnum:count:POP1970": 2, "numnum:max:POP1970": 272, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 272, "numnum:count:POP1975": 2, "numnum:max:POP1975": 445, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 445, "numnum:count:POP1980": 2, "numnum:max:POP1980": 551, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 551, "numnum:count:POP1985": 2, "numnum:max:POP1985": 747, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 747, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1035, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1035, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1147, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1147, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1201, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 1201, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1415, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 1415, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 1100, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1500, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 1500, "numnum:count:POP2020": 2, "numnum:max:POP2020": 1794, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 1794, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2142, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 2142, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2529, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 2529, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 45.351562, 2.064982 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ 69.169922, 34.524661 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 33.699996, "numnum:min:LATITUDE": 28.600023, "numnum:sum:LATITUDE": 62.300019, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 77.19998, "numnum:min:LONGITUDE": 73.166634, "numnum:sum:LONGITUDE": 150.366614, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 780000, "numnum:min:POP_MAX": 317797, "numnum:sum:POP_MAX": 1097797, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 601600, "numnum:min:POP_MIN": 317797, "numnum:sum:POP_MIN": 919397, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 8060107, "numnum:min:POP_OTHER": 893673, "numnum:sum:POP_OTHER": 8953780, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 11, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1261481, "numnum:min:GEONAMEID": 1176615, "numnum:sum:GEONAMEID": 2438096, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 8761047, "numnum:min:MAX_POP10": 742356, "numnum:sum:MAX_POP10": 9503403, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 13414375, "numnum:min:MAX_POP20": 742356, "numnum:sum:MAX_POP20": 14156731, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 32426336, "numnum:min:MAX_POP50": 7482035, "numnum:sum:MAX_POP50": 39908371, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 32424761, "numnum:min:MAX_POP300": 7482969, "numnum:sum:MAX_POP300": 39907730, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 224908923, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 224908923, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 864, "numnum:min:MIN_AREAKM": 772, "numnum:sum:MIN_AREAKM": 1636, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 186559, "numnum:min:MAX_AREAKM": 5463, "numnum:sum:MAX_AREAKM": 192022, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 334, "numnum:min:MIN_AREAMI": 298, "numnum:sum:MIN_AREAMI": 632, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 72030, "numnum:min:MAX_AREAMI": 2109, "numnum:sum:MAX_AREAMI": 74139, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 545, "numnum:min:MIN_PERKM": 244, "numnum:sum:MIN_PERKM": 789, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 130296, "numnum:min:MAX_PERKM": 4154, "numnum:sum:MAX_PERKM": 134450, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 152, "numnum:sum:MIN_PERMI": 491, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 80962, "numnum:min:MAX_PERMI": 2581, "numnum:sum:MAX_PERMI": 83543, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 72.286464, "numnum:min:MIN_BBXMIN": 71.033333, "numnum:sum:MIN_BBXMIN": 143.319797, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 76.943289, "numnum:min:MAX_BBXMIN": 73.033333, "numnum:sum:MAX_BBXMIN": 149.976622, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 77.43183, "numnum:min:MIN_BBXMAX": 73.516667, "numnum:sum:MIN_BBXMAX": 150.948497, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 82.566667, "numnum:min:MAX_BBXMAX": 73.816667, "numnum:sum:MAX_BBXMAX": 156.383334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 32.7, "numnum:min:MIN_BBYMIN": 24, "numnum:sum:MIN_BBYMIN": 56.7, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 33.258333, "numnum:min:MAX_BBYMIN": 28.152007, "numnum:sum:MAX_BBYMIN": 61.410340000000008, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 33.766667, "numnum:min:MIN_BBYMAX": 28.738629, "numnum:sum:MIN_BBYMAX": 62.505296, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 34.533333, "numnum:min:MAX_BBYMAX": 33.466667, "numnum:sum:MAX_BBYMAX": 68, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 77.27294500000001, "numnum:min:MEAN_BBXC": 73.182617, "numnum:sum:MEAN_BBXC": 150.455562, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 33.557939, "numnum:min:MEAN_BBYC": 28.382537, "numnum:sum:MEAN_BBYC": 61.940476, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 8, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 601600, "numnum:min:GN_POP": 317797, "numnum:sum:GN_POP": 919397, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 497, "numnum:min:GTOPO30": 205, "numnum:sum:GTOPO30": 702, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 401, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 401, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 33.71, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 33.71, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 73.06, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 73.06, "numnum:count:POP1950": 2, "numnum:max:POP1950": 36, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 36, "numnum:count:POP1955": 2, "numnum:max:POP1955": 41, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 41, "numnum:count:POP1960": 2, "numnum:max:POP1960": 45, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 45, "numnum:count:POP1965": 2, "numnum:max:POP1965": 56, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 56, "numnum:count:POP1970": 2, "numnum:max:POP1970": 70, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 70, "numnum:count:POP1975": 2, "numnum:max:POP1975": 107, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 107, "numnum:count:POP1980": 2, "numnum:max:POP1980": 189, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 189, "numnum:count:POP1985": 2, "numnum:max:POP1985": 260, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 260, "numnum:count:POP1990": 2, "numnum:max:POP1990": 343, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 343, "numnum:count:POP1995": 2, "numnum:max:POP1995": 452, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 452, "numnum:count:POP2000": 2, "numnum:max:POP2000": 594, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 594, "numnum:count:POP2005": 2, "numnum:max:POP2005": 732, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 732, "numnum:count:POP2010": 2, "numnum:max:POP2010": 780, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 780, "numnum:count:POP2015": 2, "numnum:max:POP2015": 851, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 851, "numnum:count:POP2020": 2, "numnum:max:POP2020": 988, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 988, "numnum:count:POP2025": 2, "numnum:max:POP2025": 1148, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 1148, "numnum:count:POP2050": 2, "numnum:max:POP2050": 1320, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 1320, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.687782 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 85.341797, 27.722436 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.449790 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 0, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 0, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 600, "numnum:sum:NATSCALE": 1200, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 22.494969, "numnum:min:LATITUDE": 19.01699, "numnum:sum:LATITUDE": 41.511959000000008, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 88.324676, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 161.181665, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 14787000, "numnum:sum:POP_MAX": 33765000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 4631392, "numnum:sum:POP_MIN": 17323228, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 7783716, "numnum:sum:POP_OTHER": 20209801, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 14, "numnum:sum:RANK_MAX": 28, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1275339, "numnum:min:GEONAMEID": 1275004, "numnum:sum:GEONAMEID": 2550343, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 8143162, "numnum:sum:MAX_POP10": 20958070, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 18577087, "numnum:sum:MAX_POP20": 38726848, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 48715672, "numnum:min:MAX_POP50": 20149761, "numnum:sum:MAX_POP50": 68865433, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 87652060, "numnum:min:MAX_POP300": 20149761, "numnum:sum:MAX_POP300": 107801821, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 20149761, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2490, "numnum:min:MIN_AREAKM": 442, "numnum:sum:MIN_AREAKM": 2932, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 53331, "numnum:min:MAX_AREAKM": 1479, "numnum:sum:MAX_AREAKM": 54810, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 962, "numnum:min:MIN_AREAMI": 171, "numnum:sum:MIN_AREAMI": 1133, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 20591, "numnum:min:MAX_AREAMI": 571, "numnum:sum:MAX_AREAMI": 21162, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 244, "numnum:min:MIN_PERKM": 0, "numnum:sum:MIN_PERKM": 244, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 35493, "numnum:min:MAX_PERKM": 1021, "numnum:sum:MAX_PERKM": 36514, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 152, "numnum:min:MIN_PERMI": 0, "numnum:sum:MIN_PERMI": 152, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 22054, "numnum:min:MAX_PERMI": 634, "numnum:sum:MAX_PERMI": 22688, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 85.483333, "numnum:min:MIN_BBXMIN": 72.758333, "numnum:sum:MIN_BBXMIN": 158.241666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 87.714444, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 160.489444, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 88.85, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 161.83315399999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 89.455426, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 162.722093, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 19.866667, "numnum:min:MIN_BBYMIN": 18.891667, "numnum:sum:MIN_BBYMIN": 38.758334000000008, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 22.056849, "numnum:min:MAX_BBYMIN": 18.891667, "numnum:sum:MAX_BBYMIN": 40.948516, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 22.575491, "numnum:min:MIN_BBYMAX": 19.308333, "numnum:sum:MIN_BBYMAX": 41.883824000000007, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 25.259961, "numnum:min:MAX_BBYMAX": 19.491667, "numnum:sum:MAX_BBYMAX": 44.751628, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 88.040398, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 161.00017400000002, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 22.616509, "numnum:min:MEAN_BBYC": 19.189154, "numnum:sum:MEAN_BBYC": 41.805662999999999, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 28, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 44, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 4631392, "numnum:sum:GN_POP": 17323228, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 16, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 28, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 253, "numnum:min:UN_FID": 245, "numnum:sum:UN_FID": 498, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 22.54, "numnum:min:UN_LAT": 19.07, "numnum:sum:UN_LAT": 41.61, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 88.33, "numnum:min:UN_LONG": 72.82, "numnum:sum:UN_LONG": 161.14999999999999, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4513, "numnum:min:POP1950": 2857, "numnum:sum:POP1950": 7370, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5055, "numnum:min:POP1955": 3432, "numnum:sum:POP1955": 8487, "numnum:count:POP1960": 2, "numnum:max:POP1960": 5652, "numnum:min:POP1960": 4060, "numnum:sum:POP1960": 9712, "numnum:count:POP1965": 2, "numnum:max:POP1965": 6261, "numnum:min:POP1965": 4854, "numnum:sum:POP1965": 11115, "numnum:count:POP1970": 2, "numnum:max:POP1970": 6926, "numnum:min:POP1970": 5811, "numnum:sum:POP1970": 12737, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7888, "numnum:min:POP1975": 7082, "numnum:sum:POP1975": 14970, "numnum:count:POP1980": 2, "numnum:max:POP1980": 9030, "numnum:min:POP1980": 8658, "numnum:sum:POP1980": 17688, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 9946, "numnum:sum:POP1985": 20287, "numnum:count:POP1990": 2, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 10890, "numnum:sum:POP1990": 23198, "numnum:count:POP1995": 2, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 11924, "numnum:sum:POP1995": 26035, "numnum:count:POP2000": 2, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 13058, "numnum:sum:POP2000": 29144, "numnum:count:POP2005": 2, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 14282, "numnum:sum:POP2005": 32484, "numnum:count:POP2010": 2, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 14787, "numnum:sum:POP2010": 33765, "numnum:count:POP2015": 2, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 15577, "numnum:sum:POP2015": 35649, "numnum:count:POP2020": 2, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 17039, "numnum:sum:POP2020": 38985, "numnum:count:POP2025": 2, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 18707, "numnum:sum:POP2025": 42758, "numnum:count:POP2050": 2, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 20560, "numnum:sum:POP2050": 46945, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.471955 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719, "accum2": 1, "numnum:count:SCALERANK": 7, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 17, "numnum:count:NATSCALE": 7, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 1180, "numnum:count:LABELRANK": 7, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 23, "numnum:count:DIFFASCII": 7, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 7, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 4, "numnum:count:CAPALT": 7, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 7, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 7, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 7, "numnum:max:LATITUDE": 47.916673, "numnum:min:LATITUDE": 4.166708, "numnum:sum:LATITUDE": 133.27840600000003, "numnum:count:LONGITUDE": 7, "numnum:max:LONGITUDE": 106.916616, "numnum:min:LONGITUDE": 73.499947, "numnum:sum:LONGITUDE": 612.262915, "numnum:count:CHANGED": 7, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 17, "numnum:count:NAMEDIFF": 7, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 2, "numnum:count:POP_MAX": 7, "numnum:max:POP_MAX": 12797394, "numnum:min:POP_MAX": 112927, "numnum:sum:POP_MAX": 25038147, "numnum:count:POP_MIN": 7, "numnum:max:POP_MIN": 7000940, "numnum:min:POP_MIN": 103693, "numnum:sum:POP_MIN": 17261555, "numnum:count:POP_OTHER": 7, "numnum:max:POP_OTHER": 14995538, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 40433804, "numnum:count:RANK_MAX": 7, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 78, "numnum:count:RANK_MIN": 7, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 77, "numnum:count:GEONAMEID": 7, "numnum:max:GEONAMEID": 3465927, "numnum:min:GEONAMEID": 1185241, "numnum:sum:GEONAMEID": 14185427, "numnum:count:LS_MATCH": 7, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 7, "numnum:count:CHECKME": 7, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 10, "numnum:count:MAX_POP10": 7, "numnum:max:MAX_POP10": 14548962, "numnum:min:MAX_POP10": 112927, "numnum:sum:MAX_POP10": 38421208, "numnum:count:MAX_POP20": 7, "numnum:max:MAX_POP20": 21394172, "numnum:min:MAX_POP20": 112927, "numnum:sum:MAX_POP20": 47999644, "numnum:count:MAX_POP50": 7, "numnum:max:MAX_POP50": 53845691, "numnum:min:MAX_POP50": 112927, "numnum:sum:MAX_POP50": 95089174, "numnum:count:MAX_POP300": 7, "numnum:max:MAX_POP300": 78549234, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 97745557, "numnum:count:MAX_POP310": 7, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 7, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 7, "numnum:max:MIN_AREAKM": 5912, "numnum:min:MIN_AREAKM": 3, "numnum:sum:MIN_AREAKM": 14348, "numnum:count:MAX_AREAKM": 7, "numnum:max:MAX_AREAKM": 49912, "numnum:min:MAX_AREAKM": 3, "numnum:sum:MAX_AREAKM": 86219, "numnum:count:MIN_AREAMI": 7, "numnum:max:MIN_AREAMI": 2283, "numnum:min:MIN_AREAMI": 1, "numnum:sum:MIN_AREAMI": 5539, "numnum:count:MAX_AREAMI": 7, "numnum:max:MAX_AREAMI": 19271, "numnum:min:MAX_AREAMI": 1, "numnum:sum:MAX_AREAMI": 33289, "numnum:count:MIN_PERKM": 7, "numnum:max:MIN_PERKM": 2296, "numnum:min:MIN_PERKM": 7, "numnum:sum:MIN_PERKM": 7789, "numnum:count:MAX_PERKM": 7, "numnum:max:MAX_PERKM": 19314, "numnum:min:MAX_PERKM": 7, "numnum:sum:MAX_PERKM": 41508, "numnum:count:MIN_PERMI": 7, "numnum:max:MIN_PERMI": 1427, "numnum:min:MIN_PERMI": 5, "numnum:sum:MIN_PERMI": 4840, "numnum:count:MAX_PERMI": 7, "numnum:max:MAX_PERMI": 12001, "numnum:min:MAX_PERMI": 5, "numnum:sum:MAX_PERMI": 25792, "numnum:count:MIN_BBXMIN": 7, "numnum:max:MIN_BBXMIN": 106.725, "numnum:min:MIN_BBXMIN": 73.5, "numnum:sum:MIN_BBXMIN": 608.4254579999999, "numnum:count:MAX_BBXMIN": 7, "numnum:max:MAX_BBXMIN": 106.725, "numnum:min:MAX_BBXMIN": 73.5, "numnum:sum:MAX_BBXMIN": 610.4671599999999, "numnum:count:MIN_BBXMAX": 7, "numnum:max:MIN_BBXMAX": 107.041667, "numnum:min:MIN_BBXMAX": 73.516667, "numnum:sum:MIN_BBXMAX": 614.268953, "numnum:count:MAX_BBXMAX": 7, "numnum:max:MAX_BBXMAX": 107.041667, "numnum:min:MAX_BBXMAX": 73.516667, "numnum:sum:MAX_BBXMAX": 618.5583330000001, "numnum:count:MIN_BBYMIN": 7, "numnum:max:MIN_BBYMIN": 47.883333, "numnum:min:MIN_BBYMIN": 4.166667, "numnum:sum:MIN_BBYMIN": 127.80543500000002, "numnum:count:MAX_BBYMIN": 7, "numnum:max:MAX_BBYMIN": 47.883333, "numnum:min:MAX_BBYMIN": 4.166667, "numnum:sum:MAX_BBYMIN": 131.486172, "numnum:count:MIN_BBYMAX": 7, "numnum:max:MIN_BBYMAX": 48.016667, "numnum:min:MIN_BBYMAX": 4.183333, "numnum:sum:MIN_BBYMAX": 135.843196, "numnum:count:MAX_BBYMAX": 7, "numnum:max:MAX_BBYMAX": 48.016667, "numnum:min:MAX_BBYMAX": 4.183333, "numnum:sum:MAX_BBYMAX": 137.60412300000002, "numnum:count:MEAN_BBXC": 7, "numnum:max:MEAN_BBXC": 106.883013, "numnum:min:MEAN_BBXC": 73.508333, "numnum:sum:MEAN_BBXC": 612.628735, "numnum:count:MEAN_BBYC": 7, "numnum:max:MEAN_BBYC": 47.932237, "numnum:min:MEAN_BBYC": 4.175, "numnum:sum:MEAN_BBYC": 133.605324, "numnum:count:COMPARE": 7, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 2, "numnum:count:ADMIN1_COD": 7, "numnum:max:ADMIN1_COD": 81, "numnum:min:ADMIN1_COD": 17, "numnum:sum:ADMIN1_COD": 223, "numnum:count:GN_POP": 7, "numnum:max:GN_POP": 10356500, "numnum:min:GN_POP": 2138, "numnum:sum:GN_POP": 20590766, "numnum:count:ELEVATION": 7, "numnum:max:ELEVATION": 920, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 7, "numnum:max:GTOPO30": 1299, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 4380, "numnum:count:UN_FID": 7, "numnum:max:UN_FID": 369, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 986, "numnum:count:UN_LAT": 7, "numnum:max:UN_LAT": 47.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 115.26, "numnum:count:UN_LONG": 7, "numnum:max:UN_LONG": 106.91, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 378.96, "numnum:count:POP1950": 7, "numnum:max:POP1950": 768, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1920, "numnum:count:POP1955": 7, "numnum:max:POP1955": 939, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2382, "numnum:count:POP1960": 7, "numnum:max:POP1960": 1166, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2959, "numnum:count:POP1965": 7, "numnum:max:POP1965": 1377, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3773, "numnum:count:POP1970": 7, "numnum:max:POP1970": 1615, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 4879, "numnum:count:POP1975": 7, "numnum:max:POP1975": 2221, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 6599, "numnum:count:POP1980": 7, "numnum:max:POP1980": 3266, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8794, "numnum:count:POP1985": 7, "numnum:max:POP1985": 4660, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 11186, "numnum:count:POP1990": 7, "numnum:max:POP1990": 6621, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 14184, "numnum:count:POP1995": 7, "numnum:max:POP1995": 8332, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 17140, "numnum:count:POP2000": 7, "numnum:max:POP2000": 10285, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 20534, "numnum:count:POP2005": 7, "numnum:max:POP2005": 12576, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 23962, "numnum:count:POP2010": 7, "numnum:max:POP2010": 13485, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 25280, "numnum:count:POP2015": 7, "numnum:max:POP2015": 14796, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 27210, "numnum:count:POP2020": 7, "numnum:max:POP2020": 17015, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 30594, "numnum:count:POP2025": 7, "numnum:max:POP2025": 19422, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 34275, "numnum:count:POP2050": 7, "numnum:max:POP2050": 22015, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 38166, "accum": 7, "numnum:count:accum2": 7, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 7, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.983148 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 9, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 720, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 23, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 19.766557, "numnum:min:LATITUDE": 13.749999, "numnum:sum:LATITUDE": 68.266603, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 102.59998, "numnum:min:LONGITUDE": 96.118619, "numnum:sum:LONGITUDE": 395.401922, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 9, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 12476000, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 194824, "numnum:sum:POP_MIN": 9171468, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 5082758, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 8676659, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 47, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 45, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 6611854, "numnum:min:GEONAMEID": 1298824, "numnum:sum:GEONAMEID": 11171972, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 5323600, "numnum:min:MAX_POP10": 194824, "numnum:sum:MAX_POP10": 9292171, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 194824, "numnum:sum:MAX_POP20": 12792105, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 9210939, "numnum:min:MAX_POP50": 194824, "numnum:sum:MAX_POP50": 13277931, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 9206246, "numnum:min:MAX_POP300": 194824, "numnum:sum:MAX_POP300": 13273238, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 815, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 1415, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 2350, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 3027, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 315, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 546, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 908, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 1169, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 280, "numnum:min:MIN_PERKM": 149, "numnum:sum:MIN_PERKM": 798, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 1354, "numnum:min:MAX_PERKM": 149, "numnum:sum:MAX_PERKM": 1985, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 174, "numnum:min:MIN_PERMI": 93, "numnum:sum:MIN_PERMI": 496, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 841, "numnum:min:MAX_PERMI": 93, "numnum:sum:MAX_PERMI": 1233, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 102.491667, "numnum:min:MIN_BBXMIN": 96.025, "numnum:sum:MIN_BBXMIN": 394.65000100000005, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 102.491667, "numnum:min:MAX_BBXMIN": 96.025, "numnum:sum:MAX_BBXMIN": 394.875001, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 102.725, "numnum:min:MIN_BBXMAX": 96.266667, "numnum:sum:MIN_BBXMAX": 396.11096, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 102.816667, "numnum:min:MAX_BBXMAX": 96.266667, "numnum:sum:MAX_BBXMAX": 396.375001, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 19.633333, "numnum:min:MIN_BBYMIN": 13.5, "numnum:sum:MIN_BBYMIN": 67.65, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 19.633333, "numnum:min:MAX_BBYMIN": 13.516667, "numnum:sum:MAX_BBYMIN": 67.741667, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 19.783333, "numnum:min:MIN_BBYMAX": 13.872295, "numnum:sum:MIN_BBYMAX": 68.763961, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 19.783333, "numnum:min:MAX_BBYMAX": 14.158333, "numnum:sum:MAX_BBYMAX": 69.049999, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 102.648054, "numnum:min:MEAN_BBXC": 96.144646, "numnum:sum:MEAN_BBXC": 395.54358, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 19.720606, "numnum:min:MEAN_BBYC": 13.761017, "numnum:sum:MEAN_BBYC": 68.307387, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 92, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 0, "numnum:sum:GN_POP": 9778845, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 297, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 501, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 19.75, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 50.370000000000008, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 100.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 292.73, "numnum:count:POP1950": 4, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 2662, "numnum:count:POP1955": 4, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 3152, "numnum:count:POP1960": 4, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 3743, "numnum:count:POP1965": 4, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 4344, "numnum:count:POP1970": 4, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5056, "numnum:count:POP1975": 4, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 5993, "numnum:count:POP1980": 4, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 7101, "numnum:count:POP1985": 4, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 7908, "numnum:count:POP1990": 4, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 8795, "numnum:count:POP1995": 4, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9319, "numnum:count:POP2000": 4, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9885, "numnum:count:POP2005": 4, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10567, "numnum:count:POP2010": 4, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11722, "numnum:count:POP2015": 4, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 12290, "numnum:count:POP2020": 4, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 13350, "numnum:count:POP2025": 4, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 14489, "numnum:count:POP2050": 4, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 15662, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 96.108398, 19.766704 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hร  Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thรกi Nguyรชn", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hร  Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 105.864258, 21.043491 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pรฉnh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pรฉnh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 104.941406, 11.566144 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 2.899153 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum2": 1, "numnum:count:SCALERANK": 4, "numnum:max:SCALERANK": 0, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 0, "numnum:count:NATSCALE": 4, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 600, "numnum:sum:NATSCALE": 2400, "numnum:count:LABELRANK": 4, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 4, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 4, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 4, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 4, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 4, "numnum:count:MEGACITY": 4, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 4, "numnum:count:LATITUDE": 4, "numnum:max:LATITUDE": 39.928892, "numnum:min:LATITUDE": 1.293033, "numnum:sum:LATITUDE": 94.743358, "numnum:count:LONGITUDE": 4, "numnum:max:LONGITUDE": 121.436505, "numnum:min:LONGITUDE": 103.855821, "numnum:sum:LONGITUDE": 455.865621, "numnum:count:CHANGED": 4, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 4, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 4, "numnum:max:POP_MAX": 14987000, "numnum:min:POP_MAX": 5183700, "numnum:sum:POP_MAX": 38482700, "numnum:count:POP_MIN": 4, "numnum:max:POP_MIN": 14608512, "numnum:min:POP_MIN": 3289529, "numnum:sum:POP_MIN": 29930221, "numnum:count:POP_OTHER": 4, "numnum:max:POP_OTHER": 16803572, "numnum:min:POP_OTHER": 3314179, "numnum:sum:POP_OTHER": 33700008, "numnum:count:RANK_MAX": 4, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 54, "numnum:count:RANK_MIN": 4, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 51, "numnum:count:GEONAMEID": 4, "numnum:max:GEONAMEID": 1880252, "numnum:min:GEONAMEID": 1796236, "numnum:sum:GEONAMEID": 7312887, "numnum:count:LS_MATCH": 4, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 4, "numnum:count:CHECKME": 4, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 4, "numnum:max:MAX_POP10": 16172884, "numnum:min:MAX_POP10": 3289529, "numnum:sum:MAX_POP10": 34204853, "numnum:count:MAX_POP20": 4, "numnum:max:MAX_POP20": 16172884, "numnum:min:MAX_POP20": 4207001, "numnum:sum:MAX_POP20": 47279934, "numnum:count:MAX_POP50": 4, "numnum:max:MAX_POP50": 26630672, "numnum:min:MAX_POP50": 4207001, "numnum:sum:MAX_POP50": 64066429, "numnum:count:MAX_POP300": 4, "numnum:max:MAX_POP300": 26631586, "numnum:min:MAX_POP300": 4207001, "numnum:sum:MAX_POP300": 71204960, "numnum:count:MAX_POP310": 4, "numnum:max:MAX_POP310": 137121250, "numnum:min:MAX_POP310": 4207001, "numnum:sum:MAX_POP310": 224499749, "numnum:count:MAX_NATSCA": 4, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 1200, "numnum:count:MIN_AREAKM": 4, "numnum:max:MIN_AREAKM": 3792, "numnum:min:MIN_AREAKM": 202, "numnum:sum:MIN_AREAKM": 6811, "numnum:count:MAX_AREAKM": 4, "numnum:max:MAX_AREAKM": 118844, "numnum:min:MAX_AREAKM": 456, "numnum:sum:MAX_AREAKM": 146361, "numnum:count:MIN_AREAMI": 4, "numnum:max:MIN_AREAMI": 1464, "numnum:min:MIN_AREAMI": 78, "numnum:sum:MIN_AREAMI": 2630, "numnum:count:MAX_AREAMI": 4, "numnum:max:MAX_AREAMI": 45886, "numnum:min:MAX_AREAMI": 176, "numnum:sum:MAX_AREAMI": 56510, "numnum:count:MIN_PERKM": 4, "numnum:max:MIN_PERKM": 2219, "numnum:min:MIN_PERKM": 173, "numnum:sum:MIN_PERKM": 4448, "numnum:count:MAX_PERKM": 4, "numnum:max:MAX_PERKM": 93615, "numnum:min:MAX_PERKM": 288, "numnum:sum:MAX_PERKM": 113738, "numnum:count:MIN_PERMI": 4, "numnum:max:MIN_PERMI": 1379, "numnum:min:MIN_PERMI": 108, "numnum:sum:MIN_PERMI": 2764, "numnum:count:MAX_PERMI": 4, "numnum:max:MAX_PERMI": 58169, "numnum:min:MAX_PERMI": 179, "numnum:sum:MAX_PERMI": 70673, "numnum:count:MIN_BBXMIN": 4, "numnum:max:MIN_BBXMIN": 119.016667, "numnum:min:MIN_BBXMIN": 103.633333, "numnum:sum:MIN_BBXMIN": 446.625, "numnum:count:MAX_BBXMIN": 4, "numnum:max:MAX_BBXMIN": 121.013757, "numnum:min:MAX_BBXMIN": 103.658333, "numnum:sum:MAX_BBXMIN": 454.713756, "numnum:count:MIN_BBXMAX": 4, "numnum:max:MIN_BBXMAX": 121.9, "numnum:min:MIN_BBXMAX": 104, "numnum:sum:MIN_BBXMAX": 457.40833299999999, "numnum:count:MAX_BBXMAX": 4, "numnum:max:MAX_BBXMAX": 121.9, "numnum:min:MAX_BBXMAX": 104, "numnum:sum:MAX_BBXMAX": 458, "numnum:count:MIN_BBYMIN": 4, "numnum:max:MIN_BBYMIN": 31.883333, "numnum:min:MIN_BBYMIN": 1.25, "numnum:sum:MIN_BBYMIN": 85.25, "numnum:count:MAX_BBYMIN": 4, "numnum:max:MAX_BBYMIN": 39.658333, "numnum:min:MAX_BBYMIN": 1.25, "numnum:sum:MAX_BBYMIN": 93.808333, "numnum:count:MIN_BBYMAX": 4, "numnum:max:MIN_BBYMAX": 40.433333, "numnum:min:MIN_BBYMAX": 1.425, "numnum:sum:MIN_BBYMAX": 95.908333, "numnum:count:MAX_BBYMAX": 4, "numnum:max:MAX_BBYMAX": 40.466667, "numnum:min:MAX_BBYMAX": 1.475, "numnum:sum:MAX_BBYMAX": 98.283333, "numnum:count:MEAN_BBXC": 4, "numnum:max:MEAN_BBXC": 121.053901, "numnum:min:MEAN_BBXC": 103.821508, "numnum:sum:MEAN_BBXC": 454.840125, "numnum:count:MEAN_BBYC": 4, "numnum:max:MEAN_BBYC": 38.837783, "numnum:min:MEAN_BBYC": 1.352586, "numnum:sum:MEAN_BBYC": 94.123263, "numnum:count:COMPARE": 4, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 4, "numnum:max:ADMIN1_COD": 23, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 45, "numnum:count:GN_POP": 4, "numnum:max:GN_POP": 14608512, "numnum:min:GN_POP": 3547809, "numnum:sum:GN_POP": 32649660, "numnum:count:ELEVATION": 4, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 4, "numnum:max:GTOPO30": 63, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9929, "numnum:count:UN_FID": 4, "numnum:max:UN_FID": 450, "numnum:min:UN_FID": 24, "numnum:sum:UN_FID": 782, "numnum:count:UN_LAT": 4, "numnum:max:UN_LAT": 39.9, "numnum:min:UN_LAT": 1.26, "numnum:sum:UN_LAT": 94.66999999999999, "numnum:count:UN_LONG": 4, "numnum:max:UN_LONG": 121.47, "numnum:min:UN_LONG": 103.83, "numnum:sum:UN_LONG": 455.85, "numnum:count:POP1950": 4, "numnum:max:POP1950": 6066, "numnum:min:POP1950": 1016, "numnum:sum:POP1950": 13095, "numnum:count:POP1955": 4, "numnum:max:POP1955": 6299, "numnum:min:POP1955": 1306, "numnum:sum:POP1955": 14354, "numnum:count:POP1960": 4, "numnum:max:POP1960": 6542, "numnum:min:POP1960": 1634, "numnum:sum:POP1960": 15741, "numnum:count:POP1965": 4, "numnum:max:POP1965": 6793, "numnum:min:POP1965": 1880, "numnum:sum:POP1965": 17148, "numnum:count:POP1970": 4, "numnum:max:POP1970": 7055, "numnum:min:POP1970": 2075, "numnum:sum:POP1970": 18234, "numnum:count:POP1975": 4, "numnum:max:POP1975": 7326, "numnum:min:POP1975": 2263, "numnum:sum:POP1975": 19566, "numnum:count:POP1980": 4, "numnum:max:POP1980": 7608, "numnum:min:POP1980": 2415, "numnum:sum:POP1980": 21080, "numnum:count:POP1985": 4, "numnum:max:POP1985": 7901, "numnum:min:POP1985": 2709, "numnum:sum:POP1985": 22570, "numnum:count:POP1990": 4, "numnum:max:POP1990": 8205, "numnum:min:POP1990": 3016, "numnum:sum:POP1990": 24260, "numnum:count:POP1995": 4, "numnum:max:POP1995": 10423, "numnum:min:POP1995": 3478, "numnum:sum:POP1995": 28593, "numnum:count:POP2000": 4, "numnum:max:POP2000": 13243, "numnum:min:POP2000": 4017, "numnum:sum:POP2000": 33704, "numnum:count:POP2005": 4, "numnum:max:POP2005": 14503, "numnum:min:POP2005": 4327, "numnum:sum:POP2005": 36604, "numnum:count:POP2010": 4, "numnum:max:POP2010": 14987, "numnum:min:POP2010": 4436, "numnum:sum:POP2010": 37735, "numnum:count:POP2015": 4, "numnum:max:POP2015": 15789, "numnum:min:POP2015": 4592, "numnum:sum:POP2015": 39541, "numnum:count:POP2020": 4, "numnum:max:POP2020": 17214, "numnum:min:POP2020": 4809, "numnum:sum:POP2020": 42609, "numnum:count:POP2025": 4, "numnum:max:POP2025": 18466, "numnum:min:POP2025": 4965, "numnum:sum:POP2025": 45278, "numnum:count:POP2050": 4, "numnum:max:POP2050": 19412, "numnum:min:POP2050": 5104, "numnum:sum:POP2050": 47366, "accum": 4, "numnum:count:accum2": 4, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 4, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ 103.842773, 1.274309 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 800, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 17, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 3, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 39.019439, "numnum:min:LATITUDE": 25.035833, "numnum:sum:LATITUDE": 101.621621, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 126.999731, "numnum:min:LONGITUDE": 121.568333, "numnum:sum:LONGITUDE": 374.322755, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 6, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 9796000, "numnum:min:POP_MAX": 3300000, "numnum:sum:POP_MAX": 19996273, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 2498797, "numnum:sum:POP_MIN": 14913569, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 12018058, "numnum:min:POP_OTHER": 2483216, "numnum:sum:POP_OTHER": 20199515, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 38, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 37, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1871859, "numnum:min:GEONAMEID": 1668341, "numnum:sum:GEONAMEID": 5376048, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 12322855, "numnum:min:MAX_POP10": 2498797, "numnum:sum:MAX_POP10": 20742394, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 13143622, "numnum:min:MAX_POP20": 2498797, "numnum:sum:MAX_POP20": 23918115, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 21387676, "numnum:min:MAX_POP50": 2498797, "numnum:sum:MAX_POP50": 32534256, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 21991959, "numnum:min:MAX_POP300": 2498797, "numnum:sum:MAX_POP300": 33703001, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 21991959, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 31204204, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 700, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 971, "numnum:min:MIN_AREAKM": 446, "numnum:sum:MIN_AREAKM": 1953, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 2718, "numnum:min:MAX_AREAKM": 447, "numnum:sum:MAX_AREAKM": 4873, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 375, "numnum:min:MIN_AREAMI": 172, "numnum:sum:MIN_AREAMI": 754, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 1049, "numnum:min:MAX_AREAMI": 173, "numnum:sum:MAX_AREAMI": 1882, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 288, "numnum:sum:MIN_PERKM": 1344, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 1901, "numnum:min:MAX_PERKM": 511, "numnum:sum:MAX_PERKM": 3499, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 340, "numnum:min:MIN_PERMI": 179, "numnum:sum:MIN_PERMI": 836, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 1181, "numnum:min:MAX_PERMI": 318, "numnum:sum:MAX_PERMI": 2174, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 126.55, "numnum:min:MIN_BBXMIN": 120.741667, "numnum:sum:MIN_BBXMIN": 372.90000000000006, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 126.767185, "numnum:min:MAX_BBXMIN": 121.325, "numnum:sum:MAX_BBXMIN": 373.700518, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 127.266667, "numnum:min:MIN_BBXMAX": 121.622484, "numnum:sum:MIN_BBXMAX": 374.780818, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 127.325, "numnum:min:MAX_BBXMAX": 121.816667, "numnum:sum:MAX_BBXMAX": 375.03333399999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 38.825, "numnum:min:MIN_BBYMIN": 24.466667, "numnum:sum:MIN_BBYMIN": 100.041667, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 38.825, "numnum:min:MAX_BBYMIN": 24.9, "numnum:sum:MAX_BBYMIN": 101.137022, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 39.191667, "numnum:min:MIN_BBYMAX": 25.233333, "numnum:sum:MIN_BBYMAX": 102.216667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 39.191667, "numnum:min:MAX_BBYMAX": 25.233333, "numnum:sum:MAX_BBYMAX": 102.3, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 126.971295, "numnum:min:MEAN_BBXC": 121.292375, "numnum:sum:MEAN_BBXC": 374.006098, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 38.996997, "numnum:min:MEAN_BBYC": 24.965116, "numnum:sum:MEAN_BBYC": 101.448038, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 12, "numnum:min:ADMIN1_COD": 3, "numnum:sum:ADMIN1_COD": 26, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 10349312, "numnum:min:GN_POP": 3222000, "numnum:sum:GN_POP": 21443212, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 46, "numnum:min:GTOPO30": 10, "numnum:sum:GTOPO30": 69, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 336, "numnum:min:UN_FID": 111, "numnum:sum:UN_FID": 774, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 39.02, "numnum:min:UN_LAT": 25.03, "numnum:sum:UN_LAT": 101.59, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 126.93, "numnum:min:UN_LONG": 121.5, "numnum:sum:UN_LONG": 374.18, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1021, "numnum:min:POP1950": 516, "numnum:sum:POP1950": 2141, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1553, "numnum:min:POP1955": 577, "numnum:sum:POP1955": 2890, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2361, "numnum:min:POP1960": 646, "numnum:sum:POP1960": 3962, "numnum:count:POP1965": 3, "numnum:max:POP1965": 3452, "numnum:min:POP1965": 769, "numnum:sum:POP1965": 5451, "numnum:count:POP1970": 3, "numnum:max:POP1970": 5312, "numnum:min:POP1970": 987, "numnum:sum:POP1970": 8040, "numnum:count:POP1975": 3, "numnum:max:POP1975": 6808, "numnum:min:POP1975": 1348, "numnum:sum:POP1975": 10179, "numnum:count:POP1980": 3, "numnum:max:POP1980": 8258, "numnum:min:POP1980": 1842, "numnum:sum:POP1980": 12317, "numnum:count:POP1985": 3, "numnum:max:POP1985": 9547, "numnum:min:POP1985": 2195, "numnum:sum:POP1985": 14188, "numnum:count:POP1990": 3, "numnum:max:POP1990": 10544, "numnum:min:POP1990": 2526, "numnum:sum:POP1990": 15781, "numnum:count:POP1995": 3, "numnum:max:POP1995": 10256, "numnum:min:POP1995": 2676, "numnum:sum:POP1995": 15770, "numnum:count:POP2000": 3, "numnum:max:POP2000": 9917, "numnum:min:POP2000": 2640, "numnum:sum:POP2000": 15674, "numnum:count:POP2005": 3, "numnum:max:POP2005": 9825, "numnum:min:POP2005": 2606, "numnum:sum:POP2005": 15696, "numnum:count:POP2010": 3, "numnum:max:POP2010": 9796, "numnum:min:POP2010": 2603, "numnum:sum:POP2010": 15699, "numnum:count:POP2015": 3, "numnum:max:POP2015": 9762, "numnum:min:POP2015": 2651, "numnum:sum:POP2015": 15759, "numnum:count:POP2020": 3, "numnum:max:POP2020": 9740, "numnum:min:POP2020": 2862, "numnum:sum:POP2020": 16036, "numnum:count:POP2025": 3, "numnum:max:POP2025": 9738, "numnum:min:POP2025": 3104, "numnum:sum:POP2025": 16379, "numnum:count:POP2050": 3, "numnum:max:POP2050": 9738, "numnum:min:POP2050": 3305, "numnum:sum:POP2050": 16673, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 121.552734, 25.045792 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 120.585938, 16.425548 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum2": 1, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 10, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 440, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 14.604159, "numnum:min:LATITUDE": 4.883331, "numnum:sum:LATITUDE": 26.974886, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 134.626548, "numnum:min:LONGITUDE": 114.933284, "numnum:sum:LONGITUDE": 370.542049, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 11100000, "numnum:min:POP_MAX": 7026, "numnum:sum:POP_MAX": 11403526, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 3077575, "numnum:min:POP_MIN": 7026, "numnum:sum:POP_MIN": 3224601, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 2381280, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 2603793, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 5, "numnum:sum:RANK_MAX": 29, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 5, "numnum:sum:RANK_MIN": 26, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 1820906, "numnum:min:GEONAMEID": 1559804, "numnum:sum:GEONAMEID": 5082378, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 3077575, "numnum:min:MAX_POP10": 0, "numnum:sum:MAX_POP10": 3297249, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 3077575, "numnum:min:MAX_POP20": 0, "numnum:sum:MAX_POP20": 3297249, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 3077575, "numnum:min:MAX_POP50": 0, "numnum:sum:MAX_POP50": 3297249, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 23366503, "numnum:min:MAX_POP300": 7026, "numnum:sum:MAX_POP300": 23593203, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 26749011, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 26749011, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 500, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 145, "numnum:min:MIN_AREAKM": 6, "numnum:sum:MIN_AREAKM": 218, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 8820, "numnum:min:MAX_AREAKM": 6, "numnum:sum:MAX_AREAKM": 8971, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 56, "numnum:min:MIN_AREAMI": 2, "numnum:sum:MIN_AREAMI": 84, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 3405, "numnum:min:MAX_AREAMI": 2, "numnum:sum:MAX_AREAMI": 3463, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 155, "numnum:min:MIN_PERKM": 15, "numnum:sum:MIN_PERKM": 216, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 5298, "numnum:min:MAX_PERKM": 15, "numnum:sum:MAX_PERKM": 5468, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 96, "numnum:min:MIN_PERMI": 9, "numnum:sum:MIN_PERMI": 134, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 3292, "numnum:min:MAX_PERMI": 9, "numnum:sum:MAX_PERMI": 3397, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 134.466667, "numnum:min:MIN_BBXMIN": 114.825, "numnum:sum:MIN_BBXMIN": 369.433334, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 134.466667, "numnum:min:MAX_BBXMIN": 114.825, "numnum:sum:MAX_BBXMIN": 370.21666700000005, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 134.5, "numnum:min:MIN_BBXMAX": 114.991667, "numnum:sum:MIN_BBXMAX": 370.53065200000006, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 134.5, "numnum:min:MAX_BBXMAX": 114.991667, "numnum:sum:MAX_BBXMAX": 370.825, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 14.016667, "numnum:min:MIN_BBYMIN": 4.816667, "numnum:sum:MIN_BBYMIN": 26.158334, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 14.571814, "numnum:min:MAX_BBYMIN": 4.816667, "numnum:sum:MAX_BBYMIN": 26.713480999999999, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 14.702876, "numnum:min:MIN_BBYMAX": 5.008333, "numnum:sum:MIN_BBYMAX": 27.061208999999999, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 16.416667, "numnum:min:MAX_BBYMAX": 5.008333, "numnum:sum:MAX_BBYMAX": 28.775, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 134.481548, "numnum:min:MEAN_BBXC": 114.908824, "numnum:sum:MEAN_BBXC": 370.30541600000006, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 14.823118, "numnum:min:MEAN_BBYC": 4.910245, "numnum:sum:MEAN_BBYC": 27.073243999999997, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 0, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 0, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 10444527, "numnum:min:GN_POP": 217, "numnum:sum:GN_POP": 10509153, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 4, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 6, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 414, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 414, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 14.61, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 14.61, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 120.96, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 120.96, "numnum:count:POP1950": 3, "numnum:max:POP1950": 1544, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1544, "numnum:count:POP1955": 3, "numnum:max:POP1955": 1872, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1872, "numnum:count:POP1960": 3, "numnum:max:POP1960": 2274, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2274, "numnum:count:POP1965": 3, "numnum:max:POP1965": 2829, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2829, "numnum:count:POP1970": 3, "numnum:max:POP1970": 3534, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3534, "numnum:count:POP1975": 3, "numnum:max:POP1975": 4999, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 4999, "numnum:count:POP1980": 3, "numnum:max:POP1980": 5955, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 5955, "numnum:count:POP1985": 3, "numnum:max:POP1985": 6888, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 6888, "numnum:count:POP1990": 3, "numnum:max:POP1990": 7973, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 7973, "numnum:count:POP1995": 3, "numnum:max:POP1995": 9401, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9401, "numnum:count:POP2000": 3, "numnum:max:POP2000": 9958, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9958, "numnum:count:POP2005": 3, "numnum:max:POP2005": 10761, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 10761, "numnum:count:POP2010": 3, "numnum:max:POP2010": 11100, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 11100, "numnum:count:POP2015": 3, "numnum:max:POP2015": 11662, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 11662, "numnum:count:POP2020": 3, "numnum:max:POP2020": 12786, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 12786, "numnum:count:POP2025": 3, "numnum:max:POP2025": 13892, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 13892, "numnum:count:POP2050": 3, "numnum:max:POP2050": 14808, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 14808, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka", "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 2, "numnum:min:LABELRANK": 2, "numnum:sum:LABELRANK": 4, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 1, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 1, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 35.029992, "numnum:min:LATITUDE": 34.750035, "numnum:sum:LATITUDE": 69.78002699999999, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 135.749998, "numnum:min:LONGITUDE": 135.460145, "numnum:sum:LONGITUDE": 271.210143, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 11294000, "numnum:min:POP_MAX": 1805000, "numnum:sum:POP_MAX": 13099000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2592413, "numnum:min:POP_MIN": 1459640, "numnum:sum:POP_MIN": 4052053, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 9630783, "numnum:min:POP_OTHER": 1827367, "numnum:sum:POP_OTHER": 11458150, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 26, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1857910, "numnum:min:GEONAMEID": 1853909, "numnum:sum:GEONAMEID": 3711819, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 10169723, "numnum:min:MAX_POP10": 1946052, "numnum:sum:MAX_POP10": 12115775, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 10259448, "numnum:min:MAX_POP20": 2520813, "numnum:sum:MAX_POP20": 12780261, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 13292739, "numnum:min:MAX_POP50": 2520813, "numnum:sum:MAX_POP50": 15813552, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 15645640, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 15645640, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 15645640, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 15645640, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1561, "numnum:min:MIN_AREAKM": 340, "numnum:sum:MIN_AREAKM": 1901, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2861, "numnum:min:MAX_AREAKM": 486, "numnum:sum:MAX_AREAKM": 3347, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 603, "numnum:min:MIN_AREAMI": 131, "numnum:sum:MIN_AREAMI": 734, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1105, "numnum:min:MAX_AREAMI": 188, "numnum:sum:MAX_AREAMI": 1293, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 130, "numnum:sum:MIN_PERKM": 676, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1202, "numnum:min:MAX_PERKM": 218, "numnum:sum:MAX_PERKM": 1420, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 339, "numnum:min:MIN_PERMI": 81, "numnum:sum:MIN_PERMI": 420, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 747, "numnum:min:MAX_PERMI": 135, "numnum:sum:MAX_PERMI": 882, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 135.611529, "numnum:min:MIN_BBXMIN": 134.508333, "numnum:sum:MIN_BBXMIN": 270.119862, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 135.611529, "numnum:min:MAX_BBXMIN": 135.304598, "numnum:sum:MAX_BBXMIN": 270.91612699999998, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 135.883333, "numnum:min:MIN_BBXMAX": 135.808333, "numnum:sum:MIN_BBXMAX": 271.691666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 135.883333, "numnum:min:MAX_BBXMAX": 135.858333, "numnum:sum:MAX_BBXMAX": 271.741666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 34.64506, "numnum:min:MIN_BBYMIN": 34.325, "numnum:sum:MIN_BBYMIN": 68.97006, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 34.783333, "numnum:min:MAX_BBYMIN": 34.408333, "numnum:sum:MAX_BBYMIN": 69.191666, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 35.1, "numnum:min:MIN_BBYMAX": 34.916667, "numnum:sum:MIN_BBYMAX": 70.016667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 35.1, "numnum:min:MAX_BBYMAX": 35.1, "numnum:sum:MAX_BBYMAX": 70.2, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 135.743212, "numnum:min:MEAN_BBXC": 135.475415, "numnum:sum:MEAN_BBXC": 271.21862699999999, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 34.913171, "numnum:min:MEAN_BBYC": 34.676719, "numnum:sum:MEAN_BBYC": 69.58989, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 32, "numnum:min:ADMIN1_COD": 22, "numnum:sum:ADMIN1_COD": 54, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2592413, "numnum:min:GN_POP": 1459640, "numnum:sum:GN_POP": 4052053, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 86, "numnum:min:GTOPO30": 4, "numnum:sum:GTOPO30": 90, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 315, "numnum:min:UN_FID": 313, "numnum:sum:UN_FID": 628, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 35, "numnum:min:UN_LAT": 34.63, "numnum:sum:UN_LAT": 69.63, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 135.75, "numnum:min:UN_LONG": 135.51, "numnum:sum:UN_LONG": 271.26, "numnum:count:POP1950": 2, "numnum:max:POP1950": 4147, "numnum:min:POP1950": 1002, "numnum:sum:POP1950": 5149, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5120, "numnum:min:POP1955": 1091, "numnum:sum:POP1955": 6211, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6227, "numnum:min:POP1960": 1165, "numnum:sum:POP1960": 7392, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7654, "numnum:min:POP1965": 1229, "numnum:sum:POP1965": 8883, "numnum:count:POP1970": 2, "numnum:max:POP1970": 9408, "numnum:min:POP1970": 1298, "numnum:sum:POP1970": 10706, "numnum:count:POP1975": 2, "numnum:max:POP1975": 9844, "numnum:min:POP1975": 1622, "numnum:sum:POP1975": 11466, "numnum:count:POP1980": 2, "numnum:max:POP1980": 9990, "numnum:min:POP1980": 1701, "numnum:sum:POP1980": 11691, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10350, "numnum:min:POP1985": 1714, "numnum:sum:POP1985": 12064, "numnum:count:POP1990": 2, "numnum:max:POP1990": 11035, "numnum:min:POP1990": 1760, "numnum:sum:POP1990": 12795, "numnum:count:POP1995": 2, "numnum:max:POP1995": 11052, "numnum:min:POP1995": 1804, "numnum:sum:POP1995": 12856, "numnum:count:POP2000": 2, "numnum:max:POP2000": 11165, "numnum:min:POP2000": 1806, "numnum:sum:POP2000": 12971, "numnum:count:POP2005": 2, "numnum:max:POP2005": 11258, "numnum:min:POP2005": 1805, "numnum:sum:POP2005": 13063, "numnum:count:POP2010": 2, "numnum:max:POP2010": 11294, "numnum:min:POP2010": 1805, "numnum:sum:POP2010": 13099, "numnum:count:POP2015": 2, "numnum:max:POP2015": 11337, "numnum:min:POP2015": 1804, "numnum:sum:POP2015": 13141, "numnum:count:POP2020": 2, "numnum:max:POP2020": 11365, "numnum:min:POP2020": 1804, "numnum:sum:POP2020": 13169, "numnum:count:POP2025": 2, "numnum:max:POP2025": 11368, "numnum:min:POP2025": 1804, "numnum:sum:POP2025": 13172, "numnum:count:POP2050": 2, "numnum:max:POP2050": 11368, "numnum:min:POP2050": 1804, "numnum:sum:POP2050": 13172, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 135.483398, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "numnum:count:SCALERANK": 3, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 6, "numnum:sum:SCALERANK": 18, "numnum:count:NATSCALE": 3, "numnum:max:NATSCALE": 30, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 90, "numnum:count:LABELRANK": 3, "numnum:max:LABELRANK": 0, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 0, "numnum:count:DIFFASCII": 3, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 3, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 3, "numnum:count:CAPALT": 3, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 3, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 3, "numnum:max:MEGACITY": 0, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 0, "numnum:count:LATITUDE": 3, "numnum:max:LATITUDE": 7.103004, "numnum:min:LATITUDE": 1.338188, "numnum:sum:LATITUDE": 15.357836, "numnum:count:LONGITUDE": 3, "numnum:max:LONGITUDE": 173.017571, "numnum:min:LONGITUDE": 158.149974, "numnum:sum:LONGITUDE": 502.547545, "numnum:count:CHANGED": 3, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 12, "numnum:count:NAMEDIFF": 3, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 3, "numnum:max:POP_MAX": 28802, "numnum:min:POP_MAX": 4645, "numnum:sum:POP_MAX": 58847, "numnum:count:POP_MIN": 3, "numnum:max:POP_MIN": 22534, "numnum:min:POP_MIN": 4645, "numnum:sum:POP_MIN": 47679, "numnum:count:POP_OTHER": 3, "numnum:max:POP_OTHER": 0, "numnum:min:POP_OTHER": 0, "numnum:sum:POP_OTHER": 0, "numnum:count:RANK_MAX": 3, "numnum:max:RANK_MAX": 7, "numnum:min:RANK_MAX": 4, "numnum:sum:RANK_MAX": 18, "numnum:count:RANK_MIN": 3, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 4, "numnum:sum:RANK_MIN": 18, "numnum:count:GEONAMEID": 3, "numnum:max:GEONAMEID": 2113779, "numnum:min:GEONAMEID": 2081986, "numnum:sum:GEONAMEID": 6305844, "numnum:count:LS_MATCH": 3, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 3, "numnum:count:CHECKME": 3, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 5, "numnum:sum:CHECKME": 15, "numnum:count:MAX_POP10": 3, "numnum:max:MAX_POP10": 22534, "numnum:min:MAX_POP10": 412, "numnum:sum:MAX_POP10": 25030, "numnum:count:MAX_POP20": 3, "numnum:max:MAX_POP20": 22534, "numnum:min:MAX_POP20": 412, "numnum:sum:MAX_POP20": 25030, "numnum:count:MAX_POP50": 3, "numnum:max:MAX_POP50": 22534, "numnum:min:MAX_POP50": 412, "numnum:sum:MAX_POP50": 25030, "numnum:count:MAX_POP300": 3, "numnum:max:MAX_POP300": 22534, "numnum:min:MAX_POP300": 412, "numnum:sum:MAX_POP300": 25030, "numnum:count:MAX_POP310": 3, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 3, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 300, "numnum:count:MIN_AREAKM": 3, "numnum:max:MIN_AREAKM": 12, "numnum:min:MIN_AREAKM": 1, "numnum:sum:MIN_AREAKM": 16, "numnum:count:MAX_AREAKM": 3, "numnum:max:MAX_AREAKM": 12, "numnum:min:MAX_AREAKM": 1, "numnum:sum:MAX_AREAKM": 16, "numnum:count:MIN_AREAMI": 3, "numnum:max:MIN_AREAMI": 5, "numnum:min:MIN_AREAMI": 0, "numnum:sum:MIN_AREAMI": 6, "numnum:count:MAX_AREAMI": 3, "numnum:max:MAX_AREAMI": 5, "numnum:min:MAX_AREAMI": 0, "numnum:sum:MAX_AREAMI": 6, "numnum:count:MIN_PERKM": 3, "numnum:max:MIN_PERKM": 28, "numnum:min:MIN_PERKM": 4, "numnum:sum:MIN_PERKM": 39, "numnum:count:MAX_PERKM": 3, "numnum:max:MAX_PERKM": 28, "numnum:min:MAX_PERKM": 4, "numnum:sum:MAX_PERKM": 39, "numnum:count:MIN_PERMI": 3, "numnum:max:MIN_PERMI": 17, "numnum:min:MIN_PERMI": 2, "numnum:sum:MIN_PERMI": 24, "numnum:count:MAX_PERMI": 3, "numnum:max:MAX_PERMI": 17, "numnum:min:MAX_PERMI": 2, "numnum:sum:MAX_PERMI": 24, "numnum:count:MIN_BBXMIN": 3, "numnum:max:MIN_BBXMIN": 172.966667, "numnum:min:MIN_BBXMIN": 158.158333, "numnum:sum:MIN_BBXMIN": 502.491667, "numnum:count:MAX_BBXMIN": 3, "numnum:max:MAX_BBXMIN": 172.966667, "numnum:min:MAX_BBXMIN": 158.158333, "numnum:sum:MAX_BBXMIN": 502.491667, "numnum:count:MIN_BBXMAX": 3, "numnum:max:MIN_BBXMAX": 173.058333, "numnum:min:MIN_BBXMAX": 158.166667, "numnum:sum:MIN_BBXMAX": 502.59999999999999, "numnum:count:MAX_BBXMAX": 3, "numnum:max:MAX_BBXMAX": 173.058333, "numnum:min:MAX_BBXMAX": 158.166667, "numnum:sum:MAX_BBXMAX": 502.59999999999999, "numnum:count:MIN_BBYMIN": 3, "numnum:max:MIN_BBYMIN": 7.091667, "numnum:min:MIN_BBYMIN": 1.325, "numnum:sum:MIN_BBYMIN": 15.325, "numnum:count:MAX_BBYMIN": 3, "numnum:max:MAX_BBYMIN": 7.091667, "numnum:min:MAX_BBYMIN": 1.325, "numnum:sum:MAX_BBYMIN": 15.325, "numnum:count:MIN_BBYMAX": 3, "numnum:max:MIN_BBYMAX": 7.116667, "numnum:min:MIN_BBYMAX": 1.358333, "numnum:sum:MIN_BBYMAX": 15.391667, "numnum:count:MAX_BBYMAX": 3, "numnum:max:MAX_BBYMAX": 7.116667, "numnum:min:MAX_BBYMAX": 1.358333, "numnum:sum:MAX_BBYMAX": 15.391667, "numnum:count:MEAN_BBXC": 3, "numnum:max:MEAN_BBXC": 173.015476, "numnum:min:MEAN_BBXC": 158.1625, "numnum:sum:MEAN_BBXC": 502.548809, "numnum:count:MEAN_BBYC": 3, "numnum:max:MEAN_BBYC": 7.104167, "numnum:min:MEAN_BBYC": 1.33869, "numnum:sum:MEAN_BBYC": 15.355357, "numnum:count:COMPARE": 3, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 3, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 3, "numnum:max:GN_POP": 28802, "numnum:min:GN_POP": 4645, "numnum:sum:GN_POP": 53947, "numnum:count:ELEVATION": 3, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 3, "numnum:max:GTOPO30": 159, "numnum:min:GTOPO30": 1, "numnum:sum:GTOPO30": 161, "numnum:count:UN_FID": 3, "numnum:max:UN_FID": 0, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 0, "numnum:count:UN_LAT": 3, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 0, "numnum:count:UN_LONG": 3, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 0, "numnum:count:POP1950": 3, "numnum:max:POP1950": 0, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 0, "numnum:count:POP1955": 3, "numnum:max:POP1955": 0, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 0, "numnum:count:POP1960": 3, "numnum:max:POP1960": 0, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 0, "numnum:count:POP1965": 3, "numnum:max:POP1965": 0, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 0, "numnum:count:POP1970": 3, "numnum:max:POP1970": 0, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 0, "numnum:count:POP1975": 3, "numnum:max:POP1975": 0, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 0, "numnum:count:POP1980": 3, "numnum:max:POP1980": 0, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 0, "numnum:count:POP1985": 3, "numnum:max:POP1985": 0, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 0, "numnum:count:POP1990": 3, "numnum:max:POP1990": 0, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 0, "numnum:count:POP1995": 3, "numnum:max:POP1995": 0, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 0, "numnum:count:POP2000": 3, "numnum:max:POP2000": 0, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 0, "numnum:count:POP2005": 3, "numnum:max:POP2005": 0, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 0, "numnum:count:POP2010": 3, "numnum:max:POP2010": 0, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 0, "numnum:count:POP2015": 3, "numnum:max:POP2015": 0, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 0, "numnum:count:POP2020": 3, "numnum:max:POP2020": 0, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 0, "numnum:count:POP2025": 3, "numnum:max:POP2025": 0, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 0, "numnum:count:POP2050": 3, "numnum:max:POP2050": 0, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 0, "accum": 3, "numnum:count:accum2": 3, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 3, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.926427 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.661333 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -99.118652, 19.435514 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.060809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -68.137207, -16.509833 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -71.608887, -33.045508 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Santiago", "DIFFASCII": 0, "NAMEASCII": "Santiago", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, admin", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Regiรณn Metropolitana de Santiago", "ISO_A2": "CL", "LATITUDE": -33.450014, "LONGITUDE": -70.667041, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5720000, "POP_MIN": 46611, "POP_OTHER": 3066651, "RANK_MAX": 13, "RANK_MIN": 7, "GEONAMEID": 3449741, "MEGANAME": "Santiago", "LS_NAME": "Santiago3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3540014, "MAX_POP20": 5157058, "MAX_POP50": 5157058, "MAX_POP300": 5157058, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 570, "MAX_AREAKM": 903, "MIN_AREAMI": 220, "MAX_AREAMI": 349, "MIN_PERKM": 310, "MAX_PERKM": 558, "MIN_PERMI": 193, "MAX_PERMI": 347, "MIN_BBXMIN": -70.958333, "MAX_BBXMIN": -70.8, "MIN_BBXMAX": -70.458333, "MAX_BBXMAX": -70.458333, "MIN_BBYMIN": -33.7, "MAX_BBYMIN": -33.556142, "MIN_BBYMAX": -33.175, "MAX_BBYMAX": -33.175, "MEAN_BBXC": -70.66127, "MEAN_BBYC": -33.461735, "COMPARE": 0, "GN_ASCII": "Santiago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 23, "GN_POP": 46611, "ELEVATION": 0, "GTOPO30": 441, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 17, "UN_ADM0": "Chile", "UN_LAT": 8.1, "UN_LONG": -80.96, "POP1950": 1322, "POP1955": 1618, "POP1960": 1980, "POP1965": 2294, "POP1970": 2647, "POP1975": 3138, "POP1980": 3721, "POP1985": 4201, "POP1990": 4616, "POP1995": 4964, "POP2000": 5275, "POP2005": 5599, "POP2010": 5720, "POP2015": 5879, "POP2020": 6084, "POP2025": 6224, "POP2050": 6310, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.449777 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 4, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 1, "numnum:sum:WORLDCITY": 2, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -23.55868, "numnum:min:LATITUDE": -34.602502, "numnum:sum:LATITUDE": -58.161182, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -46.62502, "numnum:min:LONGITUDE": -58.397531, "numnum:sum:LONGITUDE": -105.02255099999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 18845000, "numnum:min:POP_MAX": 12795000, "numnum:sum:POP_MAX": 31640000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 10929146, "numnum:min:POP_MIN": 10021295, "numnum:sum:POP_MIN": 20950441, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 11522944, "numnum:min:POP_OTHER": 10271457, "numnum:sum:POP_OTHER": 21794401, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 14, "numnum:sum:RANK_MAX": 28, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 14, "numnum:sum:RANK_MIN": 28, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3448439, "numnum:min:GEONAMEID": 3435910, "numnum:sum:GEONAMEID": 6884349, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12495084, "numnum:min:MAX_POP10": 10929146, "numnum:sum:MAX_POP10": 23424230, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 17425624, "numnum:min:MAX_POP20": 10991915, "numnum:sum:MAX_POP20": 28417539, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 18203351, "numnum:min:MAX_POP50": 12611862, "numnum:sum:MAX_POP50": 30815213, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 18203351, "numnum:min:MAX_POP300": 12611862, "numnum:sum:MAX_POP300": 30815213, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 18203351, "numnum:min:MAX_POP310": 12611862, "numnum:sum:MAX_POP310": 30815213, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 300, "numnum:sum:MAX_NATSCA": 600, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1675, "numnum:min:MIN_AREAKM": 1434, "numnum:sum:MIN_AREAKM": 3109, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2667, "numnum:min:MAX_AREAKM": 2447, "numnum:sum:MAX_AREAKM": 5114, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 647, "numnum:min:MIN_AREAMI": 554, "numnum:sum:MIN_AREAMI": 1201, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1030, "numnum:min:MAX_AREAMI": 945, "numnum:sum:MAX_AREAMI": 1975, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 570, "numnum:min:MIN_PERKM": 532, "numnum:sum:MIN_PERKM": 1102, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1086, "numnum:min:MAX_PERKM": 1064, "numnum:sum:MAX_PERKM": 2150, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 354, "numnum:min:MIN_PERMI": 330, "numnum:sum:MIN_PERMI": 684, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 675, "numnum:min:MAX_PERMI": 661, "numnum:sum:MAX_PERMI": 1336, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -47.058333, "numnum:min:MIN_BBXMIN": -59.016667, "numnum:sum:MIN_BBXMIN": -106.07499999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -47.056372, "numnum:min:MAX_BBXMIN": -58.757731, "numnum:sum:MAX_BBXMIN": -105.814103, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -46.383333, "numnum:min:MIN_BBXMAX": -58.175, "numnum:sum:MIN_BBXMAX": -104.558333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -46.108333, "numnum:min:MAX_BBXMAX": -57.816667, "numnum:sum:MAX_BBXMAX": -103.92500000000001, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -23.891667, "numnum:min:MIN_BBYMIN": -35.008333, "numnum:sum:MIN_BBYMIN": -58.900000000000009, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -23.842331, "numnum:min:MAX_BBYMIN": -35.008333, "numnum:sum:MAX_BBYMIN": -58.850664, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -23.358333, "numnum:min:MIN_BBYMAX": -34.375, "numnum:sum:MIN_BBYMAX": -57.733333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -23.241667, "numnum:min:MAX_BBYMAX": -34.366667, "numnum:sum:MAX_BBYMAX": -57.608334, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -46.651489, "numnum:min:MEAN_BBXC": -58.50845, "numnum:sum:MEAN_BBXC": -105.15993900000001, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -23.558961, "numnum:min:MEAN_BBYC": -34.681331, "numnum:sum:MEAN_BBYC": -58.240292, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 27, "numnum:min:ADMIN1_COD": 7, "numnum:sum:ADMIN1_COD": 34, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 13076300, "numnum:min:GN_POP": 10021295, "numnum:sum:GN_POP": 23097595, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 631, "numnum:min:GTOPO30": 13, "numnum:sum:GTOPO30": 644, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 491, "numnum:min:UN_FID": 201, "numnum:sum:UN_FID": 692, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": -23.58, "numnum:min:UN_LAT": -34.62, "numnum:sum:UN_LAT": -58.199999999999999, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -46.62, "numnum:min:UN_LONG": -58.44, "numnum:sum:UN_LONG": -105.06, "numnum:count:POP1950": 2, "numnum:max:POP1950": 5098, "numnum:min:POP1950": 2334, "numnum:sum:POP1950": 7432, "numnum:count:POP1955": 2, "numnum:max:POP1955": 5799, "numnum:min:POP1955": 3044, "numnum:sum:POP1955": 8843, "numnum:count:POP1960": 2, "numnum:max:POP1960": 6598, "numnum:min:POP1960": 3970, "numnum:sum:POP1960": 10568, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7317, "numnum:min:POP1965": 5494, "numnum:sum:POP1965": 12811, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8105, "numnum:min:POP1970": 7620, "numnum:sum:POP1970": 15725, "numnum:count:POP1975": 2, "numnum:max:POP1975": 9614, "numnum:min:POP1975": 8745, "numnum:sum:POP1975": 18359, "numnum:count:POP1980": 2, "numnum:max:POP1980": 12089, "numnum:min:POP1980": 9422, "numnum:sum:POP1980": 21511, "numnum:count:POP1985": 2, "numnum:max:POP1985": 13395, "numnum:min:POP1985": 9959, "numnum:sum:POP1985": 23354, "numnum:count:POP1990": 2, "numnum:max:POP1990": 14776, "numnum:min:POP1990": 10513, "numnum:sum:POP1990": 25289, "numnum:count:POP1995": 2, "numnum:max:POP1995": 15948, "numnum:min:POP1995": 11154, "numnum:sum:POP1995": 27102, "numnum:count:POP2000": 2, "numnum:max:POP2000": 17099, "numnum:min:POP2000": 11847, "numnum:sum:POP2000": 28946, "numnum:count:POP2005": 2, "numnum:max:POP2005": 18333, "numnum:min:POP2005": 12553, "numnum:sum:POP2005": 30886, "numnum:count:POP2010": 2, "numnum:max:POP2010": 18845, "numnum:min:POP2010": 12795, "numnum:sum:POP2010": 31640, "numnum:count:POP2015": 2, "numnum:max:POP2015": 19582, "numnum:min:POP2015": 13089, "numnum:sum:POP2015": 32671, "numnum:count:POP2020": 2, "numnum:max:POP2020": 20544, "numnum:min:POP2020": 13432, "numnum:sum:POP2020": 33976, "numnum:count:POP2025": 2, "numnum:max:POP2025": 21124, "numnum:min:POP2025": 13653, "numnum:sum:POP2025": 34777, "numnum:count:POP2050": 2, "numnum:max:POP2050": 21428, "numnum:min:POP2050": 13768, "numnum:sum:POP2050": 35196, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -56.162109, -34.867905 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -43.220215, -22.938160 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ -87.736816, 41.820455 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ -79.409180, 43.691708 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.120154 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.780107 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.891033 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ -77.343750, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -87.209473, 14.093957 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.146746 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.925566 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamรก|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamรก (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -79.519043, 8.971897 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -76.772461, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.458768 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotรก", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotรก", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ -74.069824, 4.587376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.287709 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.987376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.132979 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 13.102003, "numnum:min:LATITUDE": 10.500999, "numnum:sum:LATITUDE": 23.603002, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -59.616527, "numnum:min:LONGITUDE": -66.917037, "numnum:sum:LONGITUDE": -126.53356399999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2985000, "numnum:min:POP_MAX": 191152, "numnum:sum:POP_MAX": 3176152, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 1815679, "numnum:min:POP_MIN": 96578, "numnum:sum:POP_MIN": 1912257, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2764555, "numnum:min:POP_OTHER": 191814, "numnum:sum:POP_OTHER": 2956369, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 9, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 8, "numnum:sum:RANK_MIN": 20, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 3646738, "numnum:min:GEONAMEID": 2075807, "numnum:sum:GEONAMEID": 5722545, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2818500, "numnum:min:MAX_POP10": 191152, "numnum:sum:MAX_POP10": 3009652, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3351058, "numnum:min:MAX_POP20": 191152, "numnum:sum:MAX_POP20": 3542210, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3351241, "numnum:min:MAX_POP50": 191152, "numnum:sum:MAX_POP50": 3542393, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3351241, "numnum:min:MAX_POP300": 191152, "numnum:sum:MAX_POP300": 3542393, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 224, "numnum:min:MIN_AREAKM": 106, "numnum:sum:MIN_AREAKM": 330, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 370, "numnum:min:MAX_AREAKM": 106, "numnum:sum:MAX_AREAKM": 476, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 86, "numnum:min:MIN_AREAMI": 41, "numnum:sum:MIN_AREAMI": 127, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 143, "numnum:min:MAX_AREAMI": 41, "numnum:sum:MAX_AREAMI": 184, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 137, "numnum:min:MIN_PERKM": 131, "numnum:sum:MIN_PERKM": 268, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 278, "numnum:min:MAX_PERKM": 131, "numnum:sum:MAX_PERKM": 409, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 85, "numnum:min:MIN_PERMI": 82, "numnum:sum:MIN_PERMI": 167, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 172, "numnum:min:MAX_PERMI": 82, "numnum:sum:MAX_PERMI": 254, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -59.641667, "numnum:min:MIN_BBXMIN": -67.133333, "numnum:sum:MIN_BBXMIN": -126.77499999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -59.641667, "numnum:min:MAX_BBXMIN": -66.993057, "numnum:sum:MAX_BBXMIN": -126.63472399999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -59.5, "numnum:min:MIN_BBXMAX": -66.725, "numnum:sum:MIN_BBXMAX": -126.225, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -59.5, "numnum:min:MAX_BBXMAX": -66.725, "numnum:sum:MAX_BBXMAX": -126.225, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 13.05, "numnum:min:MIN_BBYMIN": 10.325, "numnum:sum:MIN_BBYMIN": 23.375, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 13.05, "numnum:min:MAX_BBYMIN": 10.408333, "numnum:sum:MAX_BBYMIN": 23.458333000000004, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 13.266667, "numnum:min:MIN_BBYMAX": 10.533671, "numnum:sum:MIN_BBYMAX": 23.800338, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 13.266667, "numnum:min:MAX_BBYMAX": 10.541667, "numnum:sum:MAX_BBYMAX": 23.808334000000003, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -59.589731, "numnum:min:MEAN_BBXC": -66.917919, "numnum:sum:MEAN_BBXC": -126.50765, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 13.128773, "numnum:min:MEAN_BBYC": 10.451672, "numnum:sum:MEAN_BBYC": 23.580445, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 25, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 33, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 1815679, "numnum:min:GN_POP": 2971, "numnum:sum:GN_POP": 1818650, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 920, "numnum:min:GTOPO30": 152, "numnum:sum:GTOPO30": 1072, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 582, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 582, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 10.49, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 10.49, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -66.89, "numnum:sum:UN_LONG": -66.89, "numnum:count:POP1950": 2, "numnum:max:POP1950": 694, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 694, "numnum:count:POP1955": 2, "numnum:max:POP1955": 955, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 955, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1316, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1316, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1657, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1657, "numnum:count:POP1970": 2, "numnum:max:POP1970": 2060, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 2060, "numnum:count:POP1975": 2, "numnum:max:POP1975": 2342, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 2342, "numnum:count:POP1980": 2, "numnum:max:POP1980": 2575, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 2575, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2693, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2693, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2767, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2767, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2816, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2816, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2864, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2864, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2930, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2930, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2985, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2985, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3098, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3098, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3306, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3306, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3482, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3482, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3619, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3619, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.090179 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -61.501465, 10.639014 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -58.161621, 6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -55.151367, 5.834616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ -0.109863, 51.495065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ -23.510742, 14.902322 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -13.183594, 27.137368 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ -9.140625, 38.719805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ -7.602539, 33.596319 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salรฉ - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.016242 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ -3.669434, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 7, "numnum:sum:LABELRANK": 15, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 18.086427, "numnum:min:LATITUDE": 14.715832, "numnum:sum:LATITUDE": 32.802259, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -15.97534, "numnum:min:LONGITUDE": -17.47313, "numnum:sum:LONGITUDE": -33.44847, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 2604000, "numnum:min:POP_MAX": 742144, "numnum:sum:POP_MAX": 3346144, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2476400, "numnum:min:POP_MIN": 661400, "numnum:sum:POP_MIN": 3137800, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2470140, "numnum:min:POP_OTHER": 742144, "numnum:sum:POP_OTHER": 3212284, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2377450, "numnum:min:GEONAMEID": 2253354, "numnum:sum:GEONAMEID": 4630804, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2635239, "numnum:min:MAX_POP10": 742144, "numnum:sum:MAX_POP10": 3377383, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2634882, "numnum:min:MAX_POP20": 742144, "numnum:sum:MAX_POP20": 3377026, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2660614, "numnum:min:MAX_POP50": 742144, "numnum:sum:MAX_POP50": 3402758, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2660614, "numnum:min:MAX_POP300": 742144, "numnum:sum:MAX_POP300": 3402758, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 257, "numnum:min:MIN_AREAKM": 98, "numnum:sum:MIN_AREAKM": 355, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 302, "numnum:min:MAX_AREAKM": 98, "numnum:sum:MAX_AREAKM": 400, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 99, "numnum:min:MIN_AREAMI": 38, "numnum:sum:MIN_AREAMI": 137, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 117, "numnum:min:MAX_AREAMI": 38, "numnum:sum:MAX_AREAMI": 155, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 222, "numnum:min:MIN_PERKM": 92, "numnum:sum:MIN_PERKM": 314, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 288, "numnum:min:MAX_PERKM": 92, "numnum:sum:MAX_PERKM": 380, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 138, "numnum:min:MIN_PERMI": 57, "numnum:sum:MIN_PERMI": 195, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 179, "numnum:min:MAX_PERMI": 57, "numnum:sum:MAX_PERMI": 236, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -16.016667, "numnum:min:MIN_BBXMIN": -17.533333, "numnum:sum:MIN_BBXMIN": -33.55, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -16.016667, "numnum:min:MAX_BBXMIN": -17.533333, "numnum:sum:MAX_BBXMIN": -33.55, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -15.891667, "numnum:min:MIN_BBXMAX": -17.2, "numnum:sum:MIN_BBXMAX": -33.091667, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": -15.891667, "numnum:min:MAX_BBXMAX": -17.125, "numnum:sum:MAX_BBXMAX": -33.016667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 18.033333, "numnum:min:MIN_BBYMIN": 14.65, "numnum:sum:MIN_BBYMIN": 32.683333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 18.033333, "numnum:min:MAX_BBYMIN": 14.65, "numnum:sum:MAX_BBYMIN": 32.683333, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 18.15, "numnum:min:MIN_BBYMAX": 14.825, "numnum:sum:MIN_BBYMAX": 32.974999999999997, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 18.15, "numnum:min:MAX_BBYMAX": 14.825, "numnum:sum:MAX_BBYMAX": 32.974999999999997, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -15.960139, "numnum:min:MEAN_BBXC": -17.343779, "numnum:sum:MEAN_BBXC": -33.303918, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 18.092569, "numnum:min:MEAN_BBYC": 14.742828, "numnum:sum:MEAN_BBYC": 32.835397, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 6, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 7, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2476400, "numnum:min:GN_POP": 661400, "numnum:sum:GN_POP": 3137800, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 14, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9985, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 447, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 447, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 14.68, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 14.68, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 0, "numnum:min:UN_LONG": -17.45, "numnum:sum:UN_LONG": -17.45, "numnum:count:POP1950": 2, "numnum:max:POP1950": 211, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 211, "numnum:count:POP1955": 2, "numnum:max:POP1955": 235, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 235, "numnum:count:POP1960": 2, "numnum:max:POP1960": 359, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 359, "numnum:count:POP1965": 2, "numnum:max:POP1965": 473, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 473, "numnum:count:POP1970": 2, "numnum:max:POP1970": 610, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 610, "numnum:count:POP1975": 2, "numnum:max:POP1975": 782, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 782, "numnum:count:POP1980": 2, "numnum:max:POP1980": 957, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 957, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1162, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1162, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1405, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1405, "numnum:count:POP1995": 2, "numnum:max:POP1995": 1688, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 1688, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2029, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2029, "numnum:count:POP2005": 2, "numnum:max:POP2005": 2434, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 2434, "numnum:count:POP2010": 2, "numnum:max:POP2010": 2604, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 2604, "numnum:count:POP2015": 2, "numnum:max:POP2015": 2856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 2856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3275, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3275, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3726, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3726, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4225, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4225, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ -17.468262, 14.711135 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339, "MAX_POP20": 403339, "MAX_POP50": 403339, "MAX_POP300": 403339, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 70, "MIN_AREAMI": 27, "MAX_AREAMI": 27, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 388028, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -15.600586, 11.867351 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -13.227539, 8.472372 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.640338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ -1.516113, 12.361466 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Cรดte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 2, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 200, "numnum:sum:NATSCALE": 400, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 5.550035, "numnum:min:LATITUDE": 5.319997, "numnum:sum:LATITUDE": 10.870032, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": -0.216716, "numnum:min:LONGITUDE": -4.040048, "numnum:sum:LONGITUDE": -4.2567639999999999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 5, "numnum:sum:CHANGED": 10, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3802000, "numnum:min:POP_MAX": 2121000, "numnum:sum:POP_MAX": 5923000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3190395, "numnum:min:POP_MIN": 1963264, "numnum:sum:POP_MIN": 5153659, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3181637, "numnum:min:POP_OTHER": 2334371, "numnum:sum:POP_OTHER": 5516008, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 12, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 12, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2306104, "numnum:min:GEONAMEID": 2293538, "numnum:sum:GEONAMEID": 4599642, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3190395, "numnum:min:MAX_POP10": 2359119, "numnum:sum:MAX_POP10": 5549514, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3190395, "numnum:min:MAX_POP20": 2941045, "numnum:sum:MAX_POP20": 6131440, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3190395, "numnum:min:MAX_POP50": 2941045, "numnum:sum:MAX_POP50": 6131440, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3190395, "numnum:min:MAX_POP300": 2941045, "numnum:sum:MAX_POP300": 6131440, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 474, "numnum:min:MIN_AREAKM": 443, "numnum:sum:MIN_AREAKM": 917, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 636, "numnum:min:MAX_AREAKM": 474, "numnum:sum:MAX_AREAKM": 1110, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 183, "numnum:min:MIN_AREAMI": 171, "numnum:sum:MIN_AREAMI": 354, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 245, "numnum:min:MAX_AREAMI": 183, "numnum:sum:MAX_AREAMI": 428, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 304, "numnum:min:MIN_PERKM": 244, "numnum:sum:MIN_PERKM": 548, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 345, "numnum:min:MAX_PERKM": 304, "numnum:sum:MAX_PERKM": 649, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 189, "numnum:min:MIN_PERMI": 152, "numnum:sum:MIN_PERMI": 341, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 214, "numnum:min:MAX_PERMI": 189, "numnum:sum:MAX_PERMI": 403, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": -0.35, "numnum:min:MIN_BBXMIN": -4.191667, "numnum:sum:MIN_BBXMIN": -4.5416669999999998, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": -0.35, "numnum:min:MAX_BBXMIN": -4.191667, "numnum:sum:MAX_BBXMIN": -4.5416669999999998, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": -0.098725, "numnum:min:MIN_BBXMAX": -3.866667, "numnum:sum:MIN_BBXMAX": -3.965392, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 0.033333, "numnum:min:MAX_BBXMAX": -3.866667, "numnum:sum:MAX_BBXMAX": -3.8333340000000004, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 5.516667, "numnum:min:MIN_BBYMIN": 5.241667, "numnum:sum:MIN_BBYMIN": 10.758334, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 5.516667, "numnum:min:MAX_BBYMIN": 5.241667, "numnum:sum:MAX_BBYMIN": 10.758334, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 5.775, "numnum:min:MIN_BBYMAX": 5.55, "numnum:sum:MIN_BBYMAX": 11.325, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 5.775, "numnum:min:MAX_BBYMAX": 5.55, "numnum:sum:MAX_BBYMAX": 11.325, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": -0.188893, "numnum:min:MEAN_BBXC": -4.019846, "numnum:sum:MEAN_BBXC": -4.2087390000000008, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 5.637403, "numnum:min:MEAN_BBYC": 5.3739, "numnum:sum:MEAN_BBYC": 11.011303, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 82, "numnum:min:ADMIN1_COD": 1, "numnum:sum:ADMIN1_COD": 83, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3677115, "numnum:min:GN_POP": 1963264, "numnum:sum:GN_POP": 5640379, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 104, "numnum:min:GTOPO30": 75, "numnum:sum:GTOPO30": 179, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 310, "numnum:min:UN_FID": 196, "numnum:sum:UN_FID": 506, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 5.55, "numnum:min:UN_LAT": 5.32, "numnum:sum:UN_LAT": 10.870000000000001, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": -0.2, "numnum:min:UN_LONG": -4.02, "numnum:sum:UN_LONG": -4.22, "numnum:count:POP1950": 2, "numnum:max:POP1950": 177, "numnum:min:POP1950": 65, "numnum:sum:POP1950": 242, "numnum:count:POP1955": 2, "numnum:max:POP1955": 265, "numnum:min:POP1955": 125, "numnum:sum:POP1955": 390, "numnum:count:POP1960": 2, "numnum:max:POP1960": 393, "numnum:min:POP1960": 192, "numnum:sum:POP1960": 585, "numnum:count:POP1965": 2, "numnum:max:POP1965": 499, "numnum:min:POP1965": 310, "numnum:sum:POP1965": 809, "numnum:count:POP1970": 2, "numnum:max:POP1970": 631, "numnum:min:POP1970": 548, "numnum:sum:POP1970": 1179, "numnum:count:POP1975": 2, "numnum:max:POP1975": 966, "numnum:min:POP1975": 738, "numnum:sum:POP1975": 1704, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1384, "numnum:min:POP1980": 863, "numnum:sum:POP1980": 2247, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1716, "numnum:min:POP1985": 1013, "numnum:sum:POP1985": 2729, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2102, "numnum:min:POP1990": 1197, "numnum:sum:POP1990": 3299, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2535, "numnum:min:POP1995": 1415, "numnum:sum:POP1995": 3950, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3032, "numnum:min:POP2000": 1674, "numnum:sum:POP2000": 4706, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3564, "numnum:min:POP2005": 1984, "numnum:sum:POP2005": 5548, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3802, "numnum:min:POP2010": 2121, "numnum:sum:POP2010": 5923, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4175, "numnum:min:POP2015": 2332, "numnum:sum:POP2015": 6507, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4810, "numnum:min:POP2020": 2688, "numnum:sum:POP2020": 7498, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5432, "numnum:min:POP2025": 3041, "numnum:sum:POP2025": 8473, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6031, "numnum:min:POP2050": 3382, "numnum:sum:POP2050": 9413, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.309766 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272, "MAX_POP20": 1951272, "MAX_POP50": 1951272, "MAX_POP300": 1951272, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 237, "MAX_AREAKM": 237, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 2776168, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138, "POP1955": 174, "POP1960": 219, "POP1965": 315, "POP1970": 459, "POP1975": 665, "POP1980": 962, "POP1985": 1295, "POP1990": 1568, "POP1995": 1953, "POP2000": 2591, "POP2005": 3533, "POP2010": 4000, "POP2015": 4775, "POP2020": 6036, "POP2025": 7153, "POP2050": 8236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 13.227539, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 17.094727, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.925130 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566, "MAX_POP20": 1289566, "MAX_POP50": 1289566, "MAX_POP300": 1289566, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 183, "MAX_AREAKM": 183, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 122, "MAX_PERKM": 122, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1267440, "ELEVATION": 0, "GTOPO30": 1277, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31, "POP1955": 53, "POP1960": 91, "POP1965": 160, "POP1970": 278, "POP1975": 385, "POP1980": 533, "POP1985": 636, "POP1990": 757, "POP1995": 902, "POP2000": 1073, "POP2005": 1261, "POP2010": 1328, "POP2015": 1421, "POP2020": 1587, "POP2025": 1797, "POP2050": 2047, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.411319 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 36.826172, -1.296276 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Offical capital", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269, "MAX_POP20": 218269, "MAX_POP50": 218269, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 55, "MAX_AREAKM": 55, "MIN_AREAMI": 21, "MAX_AREAMI": 21, "MIN_PERKM": 61, "MAX_PERKM": 61, "MIN_PERMI": 38, "MAX_PERMI": 38, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 180541, "ELEVATION": 0, "GTOPO30": 1129, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": -24.646313, "numnum:min:LATITUDE": -26.170044999999999, "numnum:sum:LATITUDE": -50.816357999999997, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 28.03001, "numnum:min:LONGITUDE": 25.911948, "numnum:sum:LONGITUDE": 53.941958, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3435000, "numnum:min:POP_MAX": 208411, "numnum:sum:POP_MAX": 3643411, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 2026469, "numnum:min:POP_MIN": 159243, "numnum:sum:POP_MIN": 2185712, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3852246, "numnum:min:POP_OTHER": 158896, "numnum:sum:POP_OTHER": 4011142, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 993800, "numnum:min:GEONAMEID": 933773, "numnum:sum:GEONAMEID": 1927573, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3887168, "numnum:min:MAX_POP10": 159243, "numnum:sum:MAX_POP10": 4046411, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5413549, "numnum:min:MAX_POP20": 159243, "numnum:sum:MAX_POP20": 5572792, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5413549, "numnum:min:MAX_POP50": 159243, "numnum:sum:MAX_POP50": 5572792, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5413549, "numnum:min:MAX_POP300": 159243, "numnum:sum:MAX_POP300": 5572792, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 5451385, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 5451385, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1124, "numnum:min:MIN_AREAKM": 72, "numnum:sum:MIN_AREAKM": 1196, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 1614, "numnum:min:MAX_AREAKM": 72, "numnum:sum:MAX_AREAKM": 1686, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 434, "numnum:min:MIN_AREAMI": 28, "numnum:sum:MIN_AREAMI": 462, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 623, "numnum:min:MAX_AREAMI": 28, "numnum:sum:MAX_AREAMI": 651, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 497, "numnum:min:MIN_PERKM": 59, "numnum:sum:MIN_PERKM": 556, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 828, "numnum:min:MAX_PERKM": 59, "numnum:sum:MAX_PERKM": 887, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 309, "numnum:min:MIN_PERMI": 37, "numnum:sum:MIN_PERMI": 346, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 514, "numnum:min:MAX_PERMI": 37, "numnum:sum:MAX_PERMI": 551, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 27.733333, "numnum:min:MIN_BBXMIN": 25.858333, "numnum:sum:MIN_BBXMIN": 53.591666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 27.733333, "numnum:min:MAX_BBXMIN": 25.858333, "numnum:sum:MAX_BBXMIN": 53.591666, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 28.193693, "numnum:min:MIN_BBXMAX": 25.991667, "numnum:sum:MIN_BBXMAX": 54.18536, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 28.491667, "numnum:min:MAX_BBXMAX": 25.991667, "numnum:sum:MAX_BBXMAX": 54.483334, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": -24.7, "numnum:min:MIN_BBYMIN": -26.4, "numnum:sum:MIN_BBYMIN": -51.099999999999997, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": -24.7, "numnum:min:MAX_BBYMIN": -26.4, "numnum:sum:MAX_BBYMIN": -51.099999999999997, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": -24.6, "numnum:min:MIN_BBYMAX": -25.991667, "numnum:sum:MIN_BBYMAX": -50.591667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": -24.6, "numnum:min:MAX_BBYMAX": -25.941667, "numnum:sum:MAX_BBYMAX": -50.541667000000007, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 28.063712, "numnum:min:MEAN_BBXC": 25.925091, "numnum:sum:MEAN_BBXC": 53.988803, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": -24.656793, "numnum:min:MEAN_BBYC": -26.187259, "numnum:sum:MEAN_BBYC": -50.844052000000008, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 9, "numnum:min:ADMIN1_COD": 6, "numnum:sum:ADMIN1_COD": 15, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 2026469, "numnum:min:GN_POP": 208411, "numnum:sum:GN_POP": 2234880, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1775, "numnum:min:GTOPO30": 1006, "numnum:sum:GTOPO30": 2781, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 458, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 458, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 0, "numnum:min:UN_LAT": -26.17, "numnum:sum:UN_LAT": -26.17, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 28, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 28, "numnum:count:POP1950": 2, "numnum:max:POP1950": 900, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 900, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1016, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1016, "numnum:count:POP1960": 2, "numnum:max:POP1960": 1147, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 1147, "numnum:count:POP1965": 2, "numnum:max:POP1965": 1288, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 1288, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1444, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1444, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1547, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1547, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1656, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1656, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1773, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1773, "numnum:count:POP1990": 2, "numnum:max:POP1990": 1898, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 1898, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2265, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2265, "numnum:count:POP2000": 2, "numnum:max:POP2000": 2732, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 2732, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3258, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3258, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3435, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3435, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3618, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3618, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3785, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3785, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3916, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3916, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4041, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4041, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 25.927734, -24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.132970 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324, "MAX_POP20": 361324, "MAX_POP50": 361324, "MAX_POP300": 361324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 141, "MIN_AREAMI": 54, "MAX_AREAMI": 54, "MIN_PERKM": 177, "MAX_PERKM": 177, "MIN_PERMI": 110, "MAX_PERMI": 110, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 118355, "ELEVATION": 0, "GTOPO30": 1482, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.324720 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.700938 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative and", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782, "MAX_POP20": 9782, "MAX_POP50": 9782, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4557, "ELEVATION": 0, "GTOPO30": 651, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 55.458984, -4.631179 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 47.526855, -18.916680 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.179724 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 64 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.910976 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 78 }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.344395 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 4.284668, 52.079506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 79 }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 72 }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "รŽle-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 6, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 30, "numnum:sum:NATSCALE": 630, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 3, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 3, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.866693, "numnum:min:LATITUDE": 42.500001, "numnum:sum:LATITUDE": 91.366694, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 2.333335, "numnum:min:LONGITUDE": 1.516486, "numnum:sum:LONGITUDE": 3.849821, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9904000, "numnum:min:POP_MAX": 53998, "numnum:sum:POP_MAX": 9957998, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 22256, "numnum:min:POP_MIN": 11177, "numnum:sum:POP_MIN": 33433, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 7142744, "numnum:min:POP_OTHER": 53371, "numnum:sum:POP_OTHER": 7196115, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 8, "numnum:sum:RANK_MAX": 21, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 7, "numnum:min:RANK_MIN": 6, "numnum:sum:RANK_MIN": 13, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 6942553, "numnum:min:GEONAMEID": 3130067, "numnum:sum:GEONAMEID": 10072620, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 7454172, "numnum:min:MAX_POP10": 53998, "numnum:sum:MAX_POP10": 7508170, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 7970513, "numnum:min:MAX_POP20": 53998, "numnum:sum:MAX_POP20": 8024511, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9960588, "numnum:min:MAX_POP50": 53998, "numnum:sum:MAX_POP50": 10014586, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9960588, "numnum:min:MAX_POP300": 0, "numnum:sum:MAX_POP300": 9960588, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9960588, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9960588, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 50, "numnum:sum:MAX_NATSCA": 350, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 1121, "numnum:min:MIN_AREAKM": 23, "numnum:sum:MIN_AREAKM": 1144, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2415, "numnum:min:MAX_AREAKM": 23, "numnum:sum:MAX_AREAKM": 2438, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 433, "numnum:min:MIN_AREAMI": 9, "numnum:sum:MIN_AREAMI": 442, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 932, "numnum:min:MAX_AREAMI": 9, "numnum:sum:MAX_AREAMI": 941, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 542, "numnum:min:MIN_PERKM": 49, "numnum:sum:MIN_PERKM": 591, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1891, "numnum:min:MAX_PERKM": 49, "numnum:sum:MAX_PERKM": 1940, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 337, "numnum:min:MIN_PERMI": 31, "numnum:sum:MIN_PERMI": 368, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1175, "numnum:min:MAX_PERMI": 31, "numnum:sum:MAX_PERMI": 1206, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 1.658333, "numnum:min:MIN_BBXMIN": 1.483333, "numnum:sum:MIN_BBXMIN": 3.141666, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 2.152754, "numnum:min:MAX_BBXMIN": 1.483333, "numnum:sum:MAX_BBXMIN": 3.636087, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 2.658336, "numnum:min:MIN_BBXMAX": 1.591667, "numnum:sum:MIN_BBXMAX": 4.2500029999999999, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 2.925, "numnum:min:MAX_BBXMAX": 1.591667, "numnum:sum:MAX_BBXMAX": 4.516667, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 48.491667, "numnum:min:MIN_BBYMIN": 42.483333, "numnum:sum:MIN_BBYMIN": 90.975, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.591667, "numnum:min:MAX_BBYMIN": 42.483333, "numnum:sum:MAX_BBYMIN": 91.075, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 49.183333, "numnum:min:MIN_BBYMAX": 42.55, "numnum:sum:MIN_BBYMAX": 91.73333299999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 49.183333, "numnum:min:MAX_BBYMAX": 42.55, "numnum:sum:MAX_BBYMAX": 91.73333299999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 2.352277, "numnum:min:MEAN_BBXC": 1.535473, "numnum:sum:MEAN_BBXC": 3.88775, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.839027, "numnum:min:MEAN_BBYC": 42.518131, "numnum:sum:MEAN_BBYC": 91.357158, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 52, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 60, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 11177, "numnum:min:GN_POP": 7890, "numnum:sum:GN_POP": 19067, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 687, "numnum:min:GTOPO30": 228, "numnum:sum:GTOPO30": 915, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 189, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 189, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 48.88, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 48.88, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.43, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 2.43, "numnum:count:POP1950": 2, "numnum:max:POP1950": 6522, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 6522, "numnum:count:POP1955": 2, "numnum:max:POP1955": 6796, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 6796, "numnum:count:POP1960": 2, "numnum:max:POP1960": 7411, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 7411, "numnum:count:POP1965": 2, "numnum:max:POP1965": 7968, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 7968, "numnum:count:POP1970": 2, "numnum:max:POP1970": 8350, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 8350, "numnum:count:POP1975": 2, "numnum:max:POP1975": 8558, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 8558, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8669, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8669, "numnum:count:POP1985": 2, "numnum:max:POP1985": 8956, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 8956, "numnum:count:POP1990": 2, "numnum:max:POP1990": 9330, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 9330, "numnum:count:POP1995": 2, "numnum:max:POP1995": 9510, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 9510, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9692, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9692, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9852, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9852, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9904, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9904, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9958, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9958, "numnum:count:POP2020": 2, "numnum:max:POP2020": 10007, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 10007, "numnum:count:POP2025": 2, "numnum:max:POP2025": 10031, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 10031, "numnum:count:POP2050": 2, "numnum:max:POP2050": 10036, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 10036, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 96 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.864715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 77 }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kรธbenhavn", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "Kรธbenhavn", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 71 }, "geometry": { "type": "Point", "coordinates": [ 12.568359, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 80 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 66 }, "geometry": { "type": "Point", "coordinates": [ 14.479980, 50.078295 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 65 }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.254709 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 88 }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.195387 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 46.057985 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 7, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 10, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 48.150018, "numnum:min:LATITUDE": 41.895956, "numnum:sum:LATITUDE": 90.045974, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 17.116981, "numnum:min:LONGITUDE": 12.483258, "numnum:sum:LONGITUDE": 29.600239, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 4, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3339000, "numnum:min:POP_MAX": 423737, "numnum:sum:POP_MAX": 3762737, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 373687, "numnum:min:POP_MIN": 35452, "numnum:sum:POP_MIN": 409139, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 2050212, "numnum:min:POP_OTHER": 361489, "numnum:sum:POP_OTHER": 2411701, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 10, "numnum:min:RANK_MIN": 7, "numnum:sum:RANK_MIN": 17, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 4219762, "numnum:min:GEONAMEID": 3060972, "numnum:sum:GEONAMEID": 7280734, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 2143900, "numnum:min:MAX_POP10": 373687, "numnum:sum:MAX_POP10": 2517587, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 2143900, "numnum:min:MAX_POP20": 373687, "numnum:sum:MAX_POP20": 2517587, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 2666328, "numnum:min:MAX_POP50": 373687, "numnum:sum:MAX_POP50": 3040015, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 2666328, "numnum:min:MAX_POP300": 373687, "numnum:sum:MAX_POP300": 3040015, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 2666328, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 2666328, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 505, "numnum:min:MIN_AREAKM": 113, "numnum:sum:MIN_AREAKM": 618, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 683, "numnum:min:MAX_AREAKM": 113, "numnum:sum:MAX_AREAKM": 796, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 195, "numnum:min:MIN_AREAMI": 43, "numnum:sum:MIN_AREAMI": 238, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 264, "numnum:min:MAX_AREAMI": 43, "numnum:sum:MAX_AREAMI": 307, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 382, "numnum:min:MIN_PERKM": 121, "numnum:sum:MIN_PERKM": 503, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 500, "numnum:min:MAX_PERKM": 121, "numnum:sum:MAX_PERKM": 621, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 238, "numnum:min:MIN_PERMI": 75, "numnum:sum:MIN_PERMI": 313, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 311, "numnum:min:MAX_PERMI": 75, "numnum:sum:MAX_PERMI": 386, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 17.016667, "numnum:min:MIN_BBXMIN": 12.333333, "numnum:sum:MIN_BBXMIN": 29.35, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 17.016667, "numnum:min:MAX_BBXMIN": 12.450494, "numnum:sum:MAX_BBXMIN": 29.467161000000006, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 17.233333, "numnum:min:MIN_BBXMAX": 12.766667, "numnum:sum:MIN_BBXMAX": 30, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 17.233333, "numnum:min:MAX_BBXMAX": 12.766667, "numnum:sum:MAX_BBXMAX": 30, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 48.091667, "numnum:min:MIN_BBYMIN": 41.666667, "numnum:sum:MIN_BBYMIN": 89.75833399999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 48.091667, "numnum:min:MAX_BBYMIN": 41.666667, "numnum:sum:MAX_BBYMIN": 89.75833399999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 48.225, "numnum:min:MIN_BBYMAX": 42.033333, "numnum:sum:MIN_BBYMAX": 90.258333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 48.225, "numnum:min:MAX_BBYMAX": 42.05, "numnum:sum:MAX_BBYMAX": 90.275, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 17.131335, "numnum:min:MEAN_BBXC": 12.561474, "numnum:sum:MEAN_BBXC": 29.692809, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 48.159311, "numnum:min:MEAN_BBYC": 41.864442, "numnum:sum:MEAN_BBYC": 90.023753, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 2, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 2, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 423737, "numnum:min:GN_POP": 35452, "numnum:sum:GN_POP": 459189, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 187, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 187, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 183, "numnum:min:GTOPO30": 132, "numnum:sum:GTOPO30": 315, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 308, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 308, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 41.87, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 41.87, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 12.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 12.51, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1884, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1884, "numnum:count:POP1955": 2, "numnum:max:POP1955": 2143, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 2143, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2456, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2456, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2780, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2780, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3135, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3135, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3300, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3300, "numnum:count:POP1980": 2, "numnum:max:POP1980": 3390, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 3390, "numnum:count:POP1985": 2, "numnum:max:POP1985": 3429, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 3429, "numnum:count:POP1990": 2, "numnum:max:POP1990": 3450, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 3450, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3425, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3425, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3385, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3385, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3348, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3348, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3339, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3339, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3333, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3333, "numnum:count:POP2020": 2, "numnum:max:POP2020": 3330, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 3330, "numnum:count:POP2025": 2, "numnum:max:POP2025": 3330, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 3330, "numnum:count:POP2050": 2, "numnum:max:POP2050": 3330, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 3330, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 93 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.885921 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 59 }, "geometry": { "type": "Point", "coordinates": [ 19.094238, 47.502359 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 52 }, "geometry": { "type": "Point", "coordinates": [ 18.391113, 43.850374 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.455888 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 42 }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrรซs", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 45 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 21.181641, 42.666281 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 21.445312, 42.000325 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 70 }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 24.741211, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 50 }, "geometry": { "type": "Point", "coordinates": [ 27.575684, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 74 }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 49 }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 61 }, "geometry": { "type": "Point", "coordinates": [ 26.103516, 44.433780 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 46.995241 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 89 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.095912 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 91 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 44.802246, 41.722131 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 73 }, "geometry": { "type": "Point", "coordinates": [ 3.054199, 36.756490 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.791691 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 68 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.879587 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 55 }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 3, "numnum:sum:SCALERANK": 6, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 110, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 220, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 6, "numnum:sum:LABELRANK": 14, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 13.516706, "numnum:min:LATITUDE": 6.131937, "numnum:sum:LATITUDE": 19.648643, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 2.116656, "numnum:min:LONGITUDE": 1.222757, "numnum:sum:LONGITUDE": 3.339413, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 1452000, "numnum:min:POP_MAX": 915000, "numnum:sum:POP_MAX": 2367000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 749700, "numnum:min:POP_MIN": 742791, "numnum:sum:POP_MIN": 1492491, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 1256715, "numnum:min:POP_OTHER": 715325, "numnum:sum:POP_OTHER": 1972040, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 11, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 2440485, "numnum:min:GEONAMEID": 2365267, "numnum:sum:GEONAMEID": 4805752, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 954448, "numnum:min:MAX_POP10": 742791, "numnum:sum:MAX_POP10": 1697239, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 953569, "numnum:min:MAX_POP20": 742791, "numnum:sum:MAX_POP20": 1696360, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 954013, "numnum:min:MAX_POP50": 742791, "numnum:sum:MAX_POP50": 1696804, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 953569, "numnum:min:MAX_POP300": 742791, "numnum:sum:MAX_POP300": 1696360, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 343, "numnum:min:MIN_AREAKM": 122, "numnum:sum:MIN_AREAKM": 465, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 364, "numnum:min:MAX_AREAKM": 122, "numnum:sum:MAX_AREAKM": 486, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 133, "numnum:min:MIN_AREAMI": 47, "numnum:sum:MIN_AREAMI": 180, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 140, "numnum:min:MAX_AREAMI": 47, "numnum:sum:MAX_AREAMI": 187, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 353, "numnum:min:MIN_PERKM": 102, "numnum:sum:MIN_PERKM": 455, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 360, "numnum:min:MAX_PERKM": 102, "numnum:sum:MAX_PERKM": 462, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 219, "numnum:min:MIN_PERMI": 64, "numnum:sum:MIN_PERMI": 283, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 224, "numnum:min:MAX_PERMI": 64, "numnum:sum:MAX_PERMI": 288, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 2.033333, "numnum:min:MIN_BBXMIN": 0.95, "numnum:sum:MIN_BBXMIN": 2.983333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 2.033333, "numnum:min:MAX_BBXMIN": 0.95, "numnum:sum:MAX_BBXMIN": 2.983333, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 2.216667, "numnum:min:MIN_BBXMAX": 1.483333, "numnum:sum:MIN_BBXMAX": 3.7, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 2.216667, "numnum:min:MAX_BBXMAX": 1.483333, "numnum:sum:MAX_BBXMAX": 3.7, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 13.466667, "numnum:min:MIN_BBYMIN": 6.025, "numnum:sum:MIN_BBYMIN": 19.491667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 13.466667, "numnum:min:MAX_BBYMIN": 6.025, "numnum:sum:MAX_BBYMIN": 19.491667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 13.6, "numnum:min:MIN_BBYMAX": 6.283333, "numnum:sum:MIN_BBYMAX": 19.883333, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 13.6, "numnum:min:MAX_BBYMAX": 6.283333, "numnum:sum:MAX_BBYMAX": 19.883333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 2.125595, "numnum:min:MEAN_BBXC": 1.190359, "numnum:sum:MEAN_BBXC": 3.315954, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 13.522591, "numnum:min:MEAN_BBYC": 6.153924, "numnum:sum:MEAN_BBYC": 19.676515000000003, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 24, "numnum:min:ADMIN1_COD": 8, "numnum:sum:ADMIN1_COD": 32, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 774235, "numnum:min:GN_POP": 749700, "numnum:sum:GN_POP": 1523935, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 203, "numnum:min:GTOPO30": 64, "numnum:sum:GTOPO30": 267, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 497, "numnum:min:UN_FID": 385, "numnum:sum:UN_FID": 882, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 13.51, "numnum:min:UN_LAT": 6.1, "numnum:sum:UN_LAT": 19.61, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 2.12, "numnum:min:UN_LONG": 1.2, "numnum:sum:UN_LONG": 3.3200000000000005, "numnum:count:POP1950": 2, "numnum:max:POP1950": 33, "numnum:min:POP1950": 24, "numnum:sum:POP1950": 57, "numnum:count:POP1955": 2, "numnum:max:POP1955": 56, "numnum:min:POP1955": 37, "numnum:sum:POP1955": 93, "numnum:count:POP1960": 2, "numnum:max:POP1960": 95, "numnum:min:POP1960": 58, "numnum:sum:POP1960": 153, "numnum:count:POP1965": 2, "numnum:max:POP1965": 138, "numnum:min:POP1965": 85, "numnum:sum:POP1965": 223, "numnum:count:POP1970": 2, "numnum:max:POP1970": 192, "numnum:min:POP1970": 129, "numnum:sum:POP1970": 321, "numnum:count:POP1975": 2, "numnum:max:POP1975": 257, "numnum:min:POP1975": 198, "numnum:sum:POP1975": 455, "numnum:count:POP1980": 2, "numnum:max:POP1980": 344, "numnum:min:POP1980": 274, "numnum:sum:POP1980": 618, "numnum:count:POP1985": 2, "numnum:max:POP1985": 466, "numnum:min:POP1985": 344, "numnum:sum:POP1985": 810, "numnum:count:POP1990": 2, "numnum:max:POP1990": 619, "numnum:min:POP1990": 432, "numnum:sum:POP1990": 1051, "numnum:count:POP1995": 2, "numnum:max:POP1995": 796, "numnum:min:POP1995": 542, "numnum:sum:POP1995": 1338, "numnum:count:POP2000": 2, "numnum:max:POP2000": 1023, "numnum:min:POP2000": 680, "numnum:sum:POP2000": 1703, "numnum:count:POP2005": 2, "numnum:max:POP2005": 1315, "numnum:min:POP2005": 846, "numnum:sum:POP2005": 2161, "numnum:count:POP2010": 2, "numnum:max:POP2010": 1452, "numnum:min:POP2010": 915, "numnum:sum:POP2010": 2367, "numnum:count:POP2015": 2, "numnum:max:POP2015": 1669, "numnum:min:POP2015": 1027, "numnum:sum:POP2015": 2696, "numnum:count:POP2020": 2, "numnum:max:POP2020": 2038, "numnum:min:POP2020": 1258, "numnum:sum:POP2020": 3296, "numnum:count:POP2025": 2, "numnum:max:POP2025": 2410, "numnum:min:POP2025": 1580, "numnum:sum:POP2025": 3990, "numnum:count:POP2050": 2, "numnum:max:POP2050": 2791, "numnum:min:POP2050": 2028, "numnum:sum:POP2050": 4819, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 48 }, "geometry": { "type": "Point", "coordinates": [ 2.526855, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453, "MAX_POP20": 457770, "MAX_POP50": 457770, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 278, "MAX_AREAKM": 319, "MIN_AREAMI": 107, "MAX_AREAMI": 123, "MIN_PERKM": 251, "MAX_PERKM": 312, "MIN_PERMI": 156, "MAX_PERMI": 194, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 234168, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.468151 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 92 }, "geometry": { "type": "Point", "coordinates": [ 3.405762, 6.446318 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 54 }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.373533 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djamรฉna", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djamรฉna", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.103781 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundรฉ", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundรฉ", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 44 }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 43 }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 83 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379, "MAX_POP20": 3306823, "MAX_POP50": 3306823, "MAX_POP300": 3306823, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 531, "MAX_AREAKM": 534, "MIN_AREAMI": 205, "MAX_AREAMI": 206, "MIN_PERKM": 355, "MAX_PERKM": 365, "MIN_PERMI": 221, "MAX_PERMI": 227, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68, "GN_POP": 3517182, "ELEVATION": 850, "GTOPO30": 889, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281, "POP1955": 439, "POP1960": 635, "POP1965": 954, "POP1970": 1341, "POP1975": 1709, "POP1980": 1891, "POP1985": 2213, "POP1990": 2561, "POP1995": 2842, "POP2000": 3179, "POP2005": 3572, "POP2010": 3716, "POP2015": 3908, "POP2020": 4178, "POP2025": 4403, "POP2050": 4589, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 2, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 200, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 310, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 0, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 0, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 39.927239, "numnum:min:LATITUDE": 35.166676, "numnum:sum:LATITUDE": 75.09391500000001, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 33.366635, "numnum:min:LONGITUDE": 32.864392, "numnum:sum:LONGITUDE": 66.23102700000001, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 5, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 5, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 3716000, "numnum:min:POP_MAX": 224300, "numnum:sum:POP_MAX": 3940300, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 3307379, "numnum:min:POP_MIN": 200452, "numnum:sum:POP_MIN": 3507831, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 3267576, "numnum:min:POP_OTHER": 222985, "numnum:sum:POP_OTHER": 3490561, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 22, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 22, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 323786, "numnum:min:GEONAMEID": 146268, "numnum:sum:GEONAMEID": 470054, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 3307379, "numnum:min:MAX_POP10": 224300, "numnum:sum:MAX_POP10": 3531679, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 3306823, "numnum:min:MAX_POP20": 224300, "numnum:sum:MAX_POP20": 3531123, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 3306823, "numnum:min:MAX_POP50": 224300, "numnum:sum:MAX_POP50": 3531123, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 3306823, "numnum:min:MAX_POP300": 224300, "numnum:sum:MAX_POP300": 3531123, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 531, "numnum:min:MIN_AREAKM": 128, "numnum:sum:MIN_AREAKM": 659, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 534, "numnum:min:MAX_AREAKM": 128, "numnum:sum:MAX_AREAKM": 662, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 205, "numnum:min:MIN_AREAMI": 49, "numnum:sum:MIN_AREAMI": 254, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 206, "numnum:min:MAX_AREAMI": 49, "numnum:sum:MAX_AREAMI": 255, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 355, "numnum:min:MIN_PERKM": 109, "numnum:sum:MIN_PERKM": 464, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 365, "numnum:min:MAX_PERKM": 109, "numnum:sum:MAX_PERKM": 474, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 221, "numnum:min:MIN_PERMI": 68, "numnum:sum:MIN_PERMI": 289, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 227, "numnum:min:MAX_PERMI": 68, "numnum:sum:MAX_PERMI": 295, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 33.275, "numnum:min:MIN_BBXMIN": 32.425, "numnum:sum:MIN_BBXMIN": 65.69999999999999, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 33.275, "numnum:min:MAX_BBXMIN": 32.425, "numnum:sum:MAX_BBXMIN": 65.69999999999999, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 33.425, "numnum:min:MIN_BBXMAX": 33.008333, "numnum:sum:MIN_BBXMAX": 66.433333, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 33.425, "numnum:min:MAX_BBXMAX": 33.008333, "numnum:sum:MAX_BBXMAX": 66.433333, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 39.841667, "numnum:min:MIN_BBYMIN": 35.041667, "numnum:sum:MIN_BBYMIN": 74.88333399999999, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 39.841667, "numnum:min:MAX_BBYMIN": 35.041667, "numnum:sum:MAX_BBYMIN": 74.88333399999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 40.116667, "numnum:min:MIN_BBYMAX": 35.225, "numnum:sum:MIN_BBYMAX": 75.341667, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 40.116667, "numnum:min:MAX_BBYMAX": 35.225, "numnum:sum:MAX_BBYMAX": 75.341667, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 33.352244, "numnum:min:MEAN_BBXC": 32.753878, "numnum:sum:MEAN_BBXC": 66.106122, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 39.957843, "numnum:min:MEAN_BBYC": 35.15, "numnum:sum:MEAN_BBYC": 75.107843, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 68, "numnum:min:ADMIN1_COD": 4, "numnum:sum:ADMIN1_COD": 72, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 3517182, "numnum:min:GN_POP": 200452, "numnum:sum:GN_POP": 3717634, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 850, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 850, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 889, "numnum:min:GTOPO30": 128, "numnum:sum:GTOPO30": 1017, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 500, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 500, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 39.92, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 39.92, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 32.85, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 32.85, "numnum:count:POP1950": 2, "numnum:max:POP1950": 281, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 281, "numnum:count:POP1955": 2, "numnum:max:POP1955": 439, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 439, "numnum:count:POP1960": 2, "numnum:max:POP1960": 635, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 635, "numnum:count:POP1965": 2, "numnum:max:POP1965": 954, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 954, "numnum:count:POP1970": 2, "numnum:max:POP1970": 1341, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 1341, "numnum:count:POP1975": 2, "numnum:max:POP1975": 1709, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 1709, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1891, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1891, "numnum:count:POP1985": 2, "numnum:max:POP1985": 2213, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 2213, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2561, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2561, "numnum:count:POP1995": 2, "numnum:max:POP1995": 2842, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 2842, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3179, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3179, "numnum:count:POP2005": 2, "numnum:max:POP2005": 3572, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 3572, "numnum:count:POP2010": 2, "numnum:max:POP2010": 3716, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 3716, "numnum:count:POP2015": 2, "numnum:max:POP2015": 3908, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 3908, "numnum:count:POP2020": 2, "numnum:max:POP2020": 4178, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 4178, "numnum:count:POP2025": 2, "numnum:max:POP2025": 4403, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 4403, "numnum:count:POP2050": 2, "numnum:max:POP2050": 4589, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 4589, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 58 }, "geometry": { "type": "Point", "coordinates": [ 32.871094, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 94 }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 69 }, "geometry": { "type": "Point", "coordinates": [ 34.782715, 32.082575 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 62 }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 46 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 84 }, "geometry": { "type": "Point", "coordinates": [ 44.406738, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 57 }, "geometry": { "type": "Point", "coordinates": [ 35.222168, 31.765537 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 35.947266, 31.952162 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 63 }, "geometry": { "type": "Point", "coordinates": [ 32.541504, 15.580711 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.307616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.326572 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 60 }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.347762 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 43.154297, 11.587669 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 85 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 53 }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 76 }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212, "MAX_POP20": 804212, "MAX_POP50": 804212, "MAX_POP300": 804212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 245, "MAX_AREAKM": 245, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 190, "MAX_PERKM": 190, "MIN_PERMI": 118, "MAX_PERMI": 118, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43, "MAX_BBYMAX": 43, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 900000, "ELEVATION": 0, "GTOPO30": 772, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150, "POP1955": 186, "POP1960": 236, "POP1965": 322, "POP1970": 433, "POP1975": 485, "POP1980": 538, "POP1985": 583, "POP1990": 635, "POP1995": 703, "POP2000": 770, "POP2005": 817, "POP2010": 837, "POP2015": 869, "POP2020": 934, "POP2025": 1011, "POP2050": 1096, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 74.597168, 42.875964 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "รœrรผmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "รœrรผmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 81 }, "geometry": { "type": "Point", "coordinates": [ 87.583008, 43.802819 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 47 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 86 }, "geometry": { "type": "Point", "coordinates": [ 51.437988, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 67 }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 650, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 0, "numnum:sum:LABELRANK": 5, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 26.236136, "numnum:min:LATITUDE": 24.640833, "numnum:sum:LATITUDE": 50.876969, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 50.583052, "numnum:min:LONGITUDE": 46.772742, "numnum:sum:LONGITUDE": 97.355794, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 4, "numnum:min:CHANGED": 4, "numnum:sum:CHANGED": 8, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 4465000, "numnum:min:POP_MAX": 563920, "numnum:sum:POP_MAX": 5028920, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 4205961, "numnum:min:POP_MIN": 157474, "numnum:sum:POP_MIN": 4363435, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5148778, "numnum:min:POP_OTHER": 563666, "numnum:sum:POP_OTHER": 5712444, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 12, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 12, "numnum:min:RANK_MIN": 9, "numnum:sum:RANK_MIN": 21, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 290340, "numnum:min:GEONAMEID": 108410, "numnum:sum:GEONAMEID": 398750, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 5, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 5, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5322753, "numnum:min:MAX_POP10": 563920, "numnum:sum:MAX_POP10": 5886673, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 5322753, "numnum:min:MAX_POP20": 563920, "numnum:sum:MAX_POP20": 5886673, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 5322753, "numnum:min:MAX_POP50": 563920, "numnum:sum:MAX_POP50": 5886673, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 5322753, "numnum:min:MAX_POP300": 563920, "numnum:sum:MAX_POP300": 5886673, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 0, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 0, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 100, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 200, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 854, "numnum:min:MIN_AREAKM": 178, "numnum:sum:MIN_AREAKM": 1032, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 854, "numnum:min:MAX_AREAKM": 178, "numnum:sum:MAX_AREAKM": 1032, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 330, "numnum:min:MIN_AREAMI": 69, "numnum:sum:MIN_AREAMI": 399, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 330, "numnum:min:MAX_AREAMI": 69, "numnum:sum:MAX_AREAMI": 399, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 459, "numnum:min:MIN_PERKM": 184, "numnum:sum:MIN_PERKM": 643, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 459, "numnum:min:MAX_PERKM": 184, "numnum:sum:MAX_PERKM": 643, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 285, "numnum:min:MIN_PERMI": 115, "numnum:sum:MIN_PERMI": 400, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 285, "numnum:min:MAX_PERMI": 115, "numnum:sum:MAX_PERMI": 400, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 50.441667, "numnum:min:MIN_BBXMIN": 46.516667, "numnum:sum:MIN_BBXMIN": 96.95833400000001, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 50.441667, "numnum:min:MAX_BBXMIN": 46.516667, "numnum:sum:MAX_BBXMIN": 96.95833400000001, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 50.633333, "numnum:min:MIN_BBXMAX": 46.933333, "numnum:sum:MIN_BBXMAX": 97.566666, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 50.633333, "numnum:min:MAX_BBXMAX": 46.933333, "numnum:sum:MAX_BBXMAX": 97.566666, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 26.05, "numnum:min:MIN_BBYMIN": 24.516667, "numnum:sum:MIN_BBYMIN": 50.566667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 26.05, "numnum:min:MAX_BBYMIN": 24.516667, "numnum:sum:MAX_BBYMIN": 50.566667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 26.25, "numnum:min:MIN_BBYMAX": 24.833333, "numnum:sum:MIN_BBYMAX": 51.083332999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 26.25, "numnum:min:MAX_BBYMAX": 24.833333, "numnum:sum:MAX_BBYMAX": 51.083332999999999, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 50.542529, "numnum:min:MEAN_BBXC": 46.740447, "numnum:sum:MEAN_BBXC": 97.282976, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 26.164763, "numnum:min:MEAN_BBYC": 24.678984, "numnum:sum:MEAN_BBYC": 50.843747, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 10, "numnum:min:ADMIN1_COD": 2, "numnum:sum:ADMIN1_COD": 12, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 4205961, "numnum:min:GN_POP": 147074, "numnum:sum:GN_POP": 4353035, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 618, "numnum:min:GTOPO30": -9999, "numnum:sum:GTOPO30": -9381, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 444, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 444, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 24.65, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 24.65, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 46.77, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 46.77, "numnum:count:POP1950": 2, "numnum:max:POP1950": 111, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 111, "numnum:count:POP1955": 2, "numnum:max:POP1955": 131, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 131, "numnum:count:POP1960": 2, "numnum:max:POP1960": 156, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 156, "numnum:count:POP1965": 2, "numnum:max:POP1965": 227, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 227, "numnum:count:POP1970": 2, "numnum:max:POP1970": 408, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 408, "numnum:count:POP1975": 2, "numnum:max:POP1975": 710, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 710, "numnum:count:POP1980": 2, "numnum:max:POP1980": 1055, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 1055, "numnum:count:POP1985": 2, "numnum:max:POP1985": 1566, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 1566, "numnum:count:POP1990": 2, "numnum:max:POP1990": 2325, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 2325, "numnum:count:POP1995": 2, "numnum:max:POP1995": 3035, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 3035, "numnum:count:POP2000": 2, "numnum:max:POP2000": 3567, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 3567, "numnum:count:POP2005": 2, "numnum:max:POP2005": 4193, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 4193, "numnum:count:POP2010": 2, "numnum:max:POP2010": 4465, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 4465, "numnum:count:POP2015": 2, "numnum:max:POP2015": 4856, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 4856, "numnum:count:POP2020": 2, "numnum:max:POP2020": 5405, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 5405, "numnum:count:POP2025": 2, "numnum:max:POP2025": 5866, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 5866, "numnum:count:POP2050": 2, "numnum:max:POP2050": 6275, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 6275, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 90 }, "geometry": { "type": "Point", "coordinates": [ 46.779785, 24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 51.547852, 25.284438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251, "MAX_POP20": 2244726, "MAX_POP50": 2244726, "MAX_POP300": 2244726, "MAX_POP310": 2244726, "MAX_NATSCA": 300, "MIN_AREAKM": 187, "MAX_AREAKM": 407, "MIN_AREAMI": 72, "MAX_AREAMI": 157, "MIN_PERKM": 158, "MAX_PERKM": 278, "MIN_PERMI": 98, "MAX_PERMI": 173, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 1137347, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20, "POP1955": 28, "POP1960": 40, "POP1965": 51, "POP1970": 80, "POP1975": 167, "POP1980": 254, "POP1985": 345, "POP1990": 473, "POP1995": 650, "POP2000": 938, "POP2005": 1272, "POP2010": 1379, "POP2015": 1516, "POP2020": 1709, "POP2025": 1894, "POP2050": 2077, "CITYALT": "Dubai", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 75 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.224820 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 54.382324, 24.467151 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.944198 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.604262 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 45.373535, 2.064982 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.548165 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 87 }, "geometry": { "type": "Point", "coordinates": [ 69.191895, 34.506557 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 82 }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 51 }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 97 }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908, "MAX_POP20": 20149761, "MAX_POP50": 20149761, "MAX_POP300": 20149761, "MAX_POP310": 20149761, "MAX_NATSCA": 300, "MIN_AREAKM": 442, "MAX_AREAKM": 1479, "MIN_AREAMI": 171, "MAX_AREAMI": 571, "MIN_PERKM": 244, "MAX_PERKM": 1021, "MIN_PERMI": 152, "MAX_PERMI": 634, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16, "GN_POP": 12691836, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857, "POP1955": 3432, "POP1960": 4060, "POP1965": 4854, "POP1970": 5811, "POP1975": 7082, "POP1980": 8658, "POP1985": 10341, "POP1990": 12308, "POP1995": 14111, "POP2000": 16086, "POP2005": 18202, "POP2010": 18978, "POP2015": 20072, "POP2020": 21946, "POP2025": 24051, "POP2050": 26385, "CITYALT": "Bombay", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 1, "numnum:min:SCALERANK": 0, "numnum:sum:SCALERANK": 1, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 600, "numnum:min:NATSCALE": 300, "numnum:sum:NATSCALE": 900, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 1, "numnum:min:LABELRANK": 1, "numnum:sum:LABELRANK": 2, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 0, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 0, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 1, "numnum:sum:MEGACITY": 2, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 19.01699, "numnum:min:LATITUDE": 12.969995, "numnum:sum:LATITUDE": 31.986985, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 77.56001, "numnum:min:LONGITUDE": 72.856989, "numnum:sum:LONGITUDE": 150.416999, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 3, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 3, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 1, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 1, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 18978000, "numnum:min:POP_MAX": 6787000, "numnum:sum:POP_MAX": 25765000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 12691836, "numnum:min:POP_MIN": 5104047, "numnum:sum:POP_MIN": 17795883, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 12426085, "numnum:min:POP_OTHER": 8102712, "numnum:sum:POP_OTHER": 20528797, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 14, "numnum:min:RANK_MAX": 13, "numnum:sum:RANK_MAX": 27, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 14, "numnum:min:RANK_MIN": 13, "numnum:sum:RANK_MIN": 27, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1277333, "numnum:min:GEONAMEID": 1275339, "numnum:sum:GEONAMEID": 2552672, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12814908, "numnum:min:MAX_POP10": 8181096, "numnum:sum:MAX_POP10": 20996004, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 20149761, "numnum:min:MAX_POP20": 8181096, "numnum:sum:MAX_POP20": 28330857, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 20149761, "numnum:min:MAX_POP50": 8553953, "numnum:sum:MAX_POP50": 28703714, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 20149761, "numnum:min:MAX_POP300": 8553953, "numnum:sum:MAX_POP300": 28703714, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 20149761, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 20149761, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 2443, "numnum:min:MIN_AREAKM": 442, "numnum:sum:MIN_AREAKM": 2885, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2836, "numnum:min:MAX_AREAKM": 1479, "numnum:sum:MAX_AREAKM": 4315, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 943, "numnum:min:MIN_AREAMI": 171, "numnum:sum:MIN_AREAMI": 1114, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1095, "numnum:min:MAX_AREAMI": 571, "numnum:sum:MAX_AREAMI": 1666, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 1908, "numnum:min:MIN_PERKM": 244, "numnum:sum:MIN_PERKM": 2152, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 2412, "numnum:min:MAX_PERKM": 1021, "numnum:sum:MAX_PERKM": 3433, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 1186, "numnum:min:MIN_PERMI": 152, "numnum:sum:MIN_PERMI": 1338, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1499, "numnum:min:MAX_PERMI": 634, "numnum:sum:MAX_PERMI": 2133, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 77.275, "numnum:min:MIN_BBXMIN": 72.758333, "numnum:sum:MIN_BBXMIN": 150.033333, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 77.275, "numnum:min:MAX_BBXMIN": 72.775, "numnum:sum:MAX_BBXMIN": 150.05, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 77.996673, "numnum:min:MIN_BBXMAX": 72.983154, "numnum:sum:MIN_BBXMAX": 150.979827, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 78.15, "numnum:min:MAX_BBXMAX": 73.266667, "numnum:sum:MAX_BBXMAX": 151.41666700000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 18.891667, "numnum:min:MIN_BBYMIN": 12.325, "numnum:sum:MIN_BBYMIN": 31.216667, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 18.891667, "numnum:min:MAX_BBYMIN": 12.325, "numnum:sum:MAX_BBYMIN": 31.216667, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 19.308333, "numnum:min:MIN_BBYMAX": 13.333333, "numnum:sum:MIN_BBYMAX": 32.641666, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 19.491667, "numnum:min:MAX_BBYMAX": 13.333333, "numnum:sum:MAX_BBYMAX": 32.825, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 77.703019, "numnum:min:MEAN_BBXC": 72.959776, "numnum:sum:MEAN_BBXC": 150.66279500000003, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 19.189154, "numnum:min:MEAN_BBYC": 12.841733, "numnum:sum:MEAN_BBYC": 32.030887, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 1, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 1, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 19, "numnum:min:ADMIN1_COD": 16, "numnum:sum:ADMIN1_COD": 35, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 12691836, "numnum:min:GN_POP": 5104047, "numnum:sum:GN_POP": 17795883, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 920, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 920, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 914, "numnum:min:GTOPO30": 12, "numnum:sum:GTOPO30": 926, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 253, "numnum:min:UN_FID": 219, "numnum:sum:UN_FID": 472, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 19.07, "numnum:min:UN_LAT": 12.97, "numnum:sum:UN_LAT": 32.04, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 77.58, "numnum:min:UN_LONG": 72.82, "numnum:sum:UN_LONG": 150.39999999999999, "numnum:count:POP1950": 2, "numnum:max:POP1950": 2857, "numnum:min:POP1950": 746, "numnum:sum:POP1950": 3603, "numnum:count:POP1955": 2, "numnum:max:POP1955": 3432, "numnum:min:POP1955": 939, "numnum:sum:POP1955": 4371, "numnum:count:POP1960": 2, "numnum:max:POP1960": 4060, "numnum:min:POP1960": 1166, "numnum:sum:POP1960": 5226, "numnum:count:POP1965": 2, "numnum:max:POP1965": 4854, "numnum:min:POP1965": 1377, "numnum:sum:POP1965": 6231, "numnum:count:POP1970": 2, "numnum:max:POP1970": 5811, "numnum:min:POP1970": 1615, "numnum:sum:POP1970": 7426, "numnum:count:POP1975": 2, "numnum:max:POP1975": 7082, "numnum:min:POP1975": 2111, "numnum:sum:POP1975": 9193, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8658, "numnum:min:POP1980": 2812, "numnum:sum:POP1980": 11470, "numnum:count:POP1985": 2, "numnum:max:POP1985": 10341, "numnum:min:POP1985": 3395, "numnum:sum:POP1985": 13736, "numnum:count:POP1990": 2, "numnum:max:POP1990": 12308, "numnum:min:POP1990": 4036, "numnum:sum:POP1990": 16344, "numnum:count:POP1995": 2, "numnum:max:POP1995": 14111, "numnum:min:POP1995": 4744, "numnum:sum:POP1995": 18855, "numnum:count:POP2000": 2, "numnum:max:POP2000": 16086, "numnum:min:POP2000": 5567, "numnum:sum:POP2000": 21653, "numnum:count:POP2005": 2, "numnum:max:POP2005": 18202, "numnum:min:POP2005": 6465, "numnum:sum:POP2005": 24667, "numnum:count:POP2010": 2, "numnum:max:POP2010": 18978, "numnum:min:POP2010": 6787, "numnum:sum:POP2010": 25765, "numnum:count:POP2015": 2, "numnum:max:POP2015": 20072, "numnum:min:POP2015": 7229, "numnum:sum:POP2015": 27301, "numnum:count:POP2020": 2, "numnum:max:POP2020": 21946, "numnum:min:POP2020": 7967, "numnum:sum:POP2020": 29913, "numnum:count:POP2025": 2, "numnum:max:POP2025": 24051, "numnum:min:POP2025": 8795, "numnum:sum:POP2025": 32846, "numnum:count:POP2050": 2, "numnum:max:POP2050": 26385, "numnum:min:POP2050": 9719, "numnum:sum:POP2050": 36104, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 95 }, "geometry": { "type": "Point", "coordinates": [ 72.861328, 19.020577 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 56 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 79.870605, 6.926427 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 125.595703, -8.559294 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.470736 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 151.193848, -33.925130 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032, "MAX_POP20": 244896, "MAX_POP50": 244896, "MAX_POP300": 244896, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 226, "MAX_AREAKM": 251, "MIN_AREAMI": 87, "MAX_AREAMI": 97, "MIN_PERKM": 175, "MAX_PERKM": 202, "MIN_PERMI": 109, "MAX_PERMI": 126, "MIN_BBXMIN": 149, "MAX_BBXMIN": 149, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 327700, "ELEVATION": 0, "GTOPO30": 609, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 168.332520, -17.748687 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.230957, -8.515836 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.145852 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 174.770508, -36.844461 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 174.792480, -41.310824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 90.417480, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 104.084473, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok", "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 3, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 4, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 110, "numnum:sum:NATSCALE": 410, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 8, "numnum:min:LABELRANK": 5, "numnum:sum:LABELRANK": 13, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 1, "numnum:sum:ADM0CAP": 2, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 17.966693, "numnum:min:LATITUDE": 13.749999, "numnum:sum:LATITUDE": 31.716692000000003, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 102.59998, "numnum:min:LONGITUDE": 100.516645, "numnum:sum:LONGITUDE": 203.116625, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 0, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 0, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 6704000, "numnum:min:POP_MAX": 754000, "numnum:sum:POP_MAX": 7458000, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 5104476, "numnum:min:POP_MIN": 570348, "numnum:sum:POP_MIN": 5674824, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 5082758, "numnum:min:POP_OTHER": 469811, "numnum:sum:POP_OTHER": 5552569, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 11, "numnum:sum:RANK_MAX": 24, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 11, "numnum:sum:RANK_MIN": 24, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1651944, "numnum:min:GEONAMEID": 1609350, "numnum:sum:GEONAMEID": 3261294, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 5323600, "numnum:min:MAX_POP10": 471927, "numnum:sum:MAX_POP10": 5795527, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 8823534, "numnum:min:MAX_POP20": 471927, "numnum:sum:MAX_POP20": 9295461, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 9210939, "numnum:min:MAX_POP50": 570348, "numnum:sum:MAX_POP50": 9781287, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 9206246, "numnum:min:MAX_POP300": 570348, "numnum:sum:MAX_POP300": 9776594, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 9206246, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 9206246, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 815, "numnum:min:MIN_AREAKM": 166, "numnum:sum:MIN_AREAKM": 981, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2350, "numnum:min:MAX_AREAKM": 243, "numnum:sum:MAX_AREAKM": 2593, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 315, "numnum:min:MIN_AREAMI": 64, "numnum:sum:MIN_AREAMI": 379, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 908, "numnum:min:MAX_AREAMI": 94, "numnum:sum:MAX_AREAMI": 1002, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 280, "numnum:min:MIN_PERKM": 170, "numnum:sum:MIN_PERKM": 450, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1354, "numnum:min:MAX_PERKM": 283, "numnum:sum:MAX_PERKM": 1637, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 174, "numnum:min:MIN_PERMI": 106, "numnum:sum:MIN_PERMI": 280, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 841, "numnum:min:MAX_PERMI": 176, "numnum:sum:MAX_PERMI": 1017, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 102.491667, "numnum:min:MIN_BBXMIN": 99.991667, "numnum:sum:MIN_BBXMIN": 202.483334, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 102.491667, "numnum:min:MAX_BBXMIN": 100.216667, "numnum:sum:MAX_BBXMIN": 202.708334, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 102.725, "numnum:min:MIN_BBXMAX": 100.844293, "numnum:sum:MIN_BBXMAX": 203.569293, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 102.816667, "numnum:min:MAX_BBXMAX": 101.016667, "numnum:sum:MAX_BBXMAX": 203.83333399999999, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 17.8, "numnum:min:MIN_BBYMIN": 13.5, "numnum:sum:MIN_BBYMIN": 31.3, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 17.875, "numnum:min:MAX_BBYMIN": 13.516667, "numnum:sum:MAX_BBYMIN": 31.391666999999999, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 18.083333, "numnum:min:MIN_BBYMAX": 13.872295, "numnum:sum:MIN_BBYMAX": 31.955627999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 18.083333, "numnum:min:MAX_BBYMAX": 14.158333, "numnum:sum:MAX_BBYMAX": 32.241666, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 102.648054, "numnum:min:MEAN_BBXC": 100.545047, "numnum:sum:MEAN_BBXC": 203.193101, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 17.967124, "numnum:min:MEAN_BBYC": 13.761017, "numnum:sum:MEAN_BBYC": 31.728141, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 40, "numnum:min:ADMIN1_COD": 27, "numnum:sum:ADMIN1_COD": 67, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 5104476, "numnum:min:GN_POP": 196731, "numnum:sum:GN_POP": 5301207, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 174, "numnum:min:GTOPO30": 2, "numnum:sum:GTOPO30": 176, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 496, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 496, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 13.75, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 13.75, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 100.51, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 100.51, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1360, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1360, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1712, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1712, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2151, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2151, "numnum:count:POP1965": 2, "numnum:max:POP1965": 2584, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 2584, "numnum:count:POP1970": 2, "numnum:max:POP1970": 3110, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 3110, "numnum:count:POP1975": 2, "numnum:max:POP1975": 3842, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 3842, "numnum:count:POP1980": 2, "numnum:max:POP1980": 4723, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 4723, "numnum:count:POP1985": 2, "numnum:max:POP1985": 5279, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 5279, "numnum:count:POP1990": 2, "numnum:max:POP1990": 5888, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 5888, "numnum:count:POP1995": 2, "numnum:max:POP1995": 6106, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 6106, "numnum:count:POP2000": 2, "numnum:max:POP2000": 6332, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 6332, "numnum:count:POP2005": 2, "numnum:max:POP2005": 6582, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 6582, "numnum:count:POP2010": 2, "numnum:max:POP2010": 6704, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 6704, "numnum:count:POP2015": 2, "numnum:max:POP2015": 6918, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 6918, "numnum:count:POP2020": 2, "numnum:max:POP2020": 7332, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 7332, "numnum:count:POP2025": 2, "numnum:max:POP2025": 7807, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 7807, "numnum:count:POP2050": 2, "numnum:max:POP2050": 8332, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 8332, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 100.524902, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hร  Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thรกi Nguyรชn", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hร  Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 105.864258, 21.022983 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pรฉnh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pรฉnh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.544616 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 2.899153 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 114.191895, 22.309426 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 121.442871, 31.222197 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.010648 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855, "MAX_POP20": 13143622, "MAX_POP50": 21387676, "MAX_POP300": 21991959, "MAX_POP310": 21991959, "MAX_NATSCA": 300, "MIN_AREAKM": 971, "MAX_AREAKM": 2718, "MIN_AREAMI": 375, "MAX_AREAMI": 1049, "MIN_PERKM": 546, "MAX_PERKM": 1901, "MIN_PERMI": 340, "MAX_PERMI": 1181, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 10349312, "ELEVATION": 0, "GTOPO30": 46, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021, "POP1955": 1553, "POP1960": 2361, "POP1965": 3452, "POP1970": 5312, "POP1975": 6808, "POP1980": 8258, "POP1985": 9547, "POP1990": 10544, "POP1995": 10256, "POP2000": 9917, "POP2005": 9825, "POP2010": 9796, "POP2015": 9762, "POP2020": 9740, "POP2025": 9738, "POP2050": 9738, "accum2": 1, "numnum:count:SCALERANK": 2, "numnum:max:SCALERANK": 4, "numnum:min:SCALERANK": 1, "numnum:sum:SCALERANK": 5, "numnum:count:NATSCALE": 2, "numnum:max:NATSCALE": 300, "numnum:min:NATSCALE": 50, "numnum:sum:NATSCALE": 350, "numnum:count:LABELRANK": 2, "numnum:max:LABELRANK": 5, "numnum:min:LABELRANK": 3, "numnum:sum:LABELRANK": 8, "numnum:count:DIFFASCII": 2, "numnum:max:DIFFASCII": 0, "numnum:min:DIFFASCII": 0, "numnum:sum:DIFFASCII": 0, "numnum:count:ADM0CAP": 2, "numnum:max:ADM0CAP": 1, "numnum:min:ADM0CAP": 0, "numnum:sum:ADM0CAP": 1, "numnum:count:CAPALT": 2, "numnum:max:CAPALT": 0, "numnum:min:CAPALT": 0, "numnum:sum:CAPALT": 0, "numnum:count:WORLDCITY": 2, "numnum:max:WORLDCITY": 1, "numnum:min:WORLDCITY": 0, "numnum:sum:WORLDCITY": 1, "numnum:count:MEGACITY": 2, "numnum:max:MEGACITY": 1, "numnum:min:MEGACITY": 0, "numnum:sum:MEGACITY": 1, "numnum:count:LATITUDE": 2, "numnum:max:LATITUDE": 37.566349, "numnum:min:LATITUDE": 16.429991, "numnum:sum:LATITUDE": 53.996340000000007, "numnum:count:LONGITUDE": 2, "numnum:max:LONGITUDE": 126.999731, "numnum:min:LONGITUDE": 120.569943, "numnum:sum:LONGITUDE": 247.569674, "numnum:count:CHANGED": 2, "numnum:max:CHANGED": 40, "numnum:min:CHANGED": 0, "numnum:sum:CHANGED": 40, "numnum:count:NAMEDIFF": 2, "numnum:max:NAMEDIFF": 0, "numnum:min:NAMEDIFF": 0, "numnum:sum:NAMEDIFF": 0, "numnum:count:POP_MAX": 2, "numnum:max:POP_MAX": 9796000, "numnum:min:POP_MAX": 447824, "numnum:sum:POP_MAX": 10243824, "numnum:count:POP_MIN": 2, "numnum:max:POP_MIN": 9796000, "numnum:min:POP_MIN": 272714, "numnum:sum:POP_MIN": 10068714, "numnum:count:POP_OTHER": 2, "numnum:max:POP_OTHER": 12018058, "numnum:min:POP_OTHER": 164877, "numnum:sum:POP_OTHER": 12182935, "numnum:count:RANK_MAX": 2, "numnum:max:RANK_MAX": 13, "numnum:min:RANK_MAX": 10, "numnum:sum:RANK_MAX": 23, "numnum:count:RANK_MIN": 2, "numnum:max:RANK_MIN": 13, "numnum:min:RANK_MIN": 10, "numnum:sum:RANK_MIN": 23, "numnum:count:GEONAMEID": 2, "numnum:max:GEONAMEID": 1835848, "numnum:min:GEONAMEID": 1728930, "numnum:sum:GEONAMEID": 3564778, "numnum:count:LS_MATCH": 2, "numnum:max:LS_MATCH": 1, "numnum:min:LS_MATCH": 1, "numnum:sum:LS_MATCH": 2, "numnum:count:CHECKME": 2, "numnum:max:CHECKME": 0, "numnum:min:CHECKME": 0, "numnum:sum:CHECKME": 0, "numnum:count:MAX_POP10": 2, "numnum:max:MAX_POP10": 12322855, "numnum:min:MAX_POP10": 447824, "numnum:sum:MAX_POP10": 12770679, "numnum:count:MAX_POP20": 2, "numnum:max:MAX_POP20": 13143622, "numnum:min:MAX_POP20": 447824, "numnum:sum:MAX_POP20": 13591446, "numnum:count:MAX_POP50": 2, "numnum:max:MAX_POP50": 21387676, "numnum:min:MAX_POP50": 447824, "numnum:sum:MAX_POP50": 21835500, "numnum:count:MAX_POP300": 2, "numnum:max:MAX_POP300": 21991959, "numnum:min:MAX_POP300": 447824, "numnum:sum:MAX_POP300": 22439783, "numnum:count:MAX_POP310": 2, "numnum:max:MAX_POP310": 21991959, "numnum:min:MAX_POP310": 0, "numnum:sum:MAX_POP310": 21991959, "numnum:count:MAX_NATSCA": 2, "numnum:max:MAX_NATSCA": 300, "numnum:min:MAX_NATSCA": 100, "numnum:sum:MAX_NATSCA": 400, "numnum:count:MIN_AREAKM": 2, "numnum:max:MIN_AREAKM": 971, "numnum:min:MIN_AREAKM": 89, "numnum:sum:MIN_AREAKM": 1060, "numnum:count:MAX_AREAKM": 2, "numnum:max:MAX_AREAKM": 2718, "numnum:min:MAX_AREAKM": 89, "numnum:sum:MAX_AREAKM": 2807, "numnum:count:MIN_AREAMI": 2, "numnum:max:MIN_AREAMI": 375, "numnum:min:MIN_AREAMI": 34, "numnum:sum:MIN_AREAMI": 409, "numnum:count:MAX_AREAMI": 2, "numnum:max:MAX_AREAMI": 1049, "numnum:min:MAX_AREAMI": 34, "numnum:sum:MAX_AREAMI": 1083, "numnum:count:MIN_PERKM": 2, "numnum:max:MIN_PERKM": 546, "numnum:min:MIN_PERKM": 78, "numnum:sum:MIN_PERKM": 624, "numnum:count:MAX_PERKM": 2, "numnum:max:MAX_PERKM": 1901, "numnum:min:MAX_PERKM": 78, "numnum:sum:MAX_PERKM": 1979, "numnum:count:MIN_PERMI": 2, "numnum:max:MIN_PERMI": 340, "numnum:min:MIN_PERMI": 48, "numnum:sum:MIN_PERMI": 388, "numnum:count:MAX_PERMI": 2, "numnum:max:MAX_PERMI": 1181, "numnum:min:MAX_PERMI": 48, "numnum:sum:MAX_PERMI": 1229, "numnum:count:MIN_BBXMIN": 2, "numnum:max:MIN_BBXMIN": 126.55, "numnum:min:MIN_BBXMIN": 120.541667, "numnum:sum:MIN_BBXMIN": 247.091667, "numnum:count:MAX_BBXMIN": 2, "numnum:max:MAX_BBXMIN": 126.767185, "numnum:min:MAX_BBXMIN": 120.541667, "numnum:sum:MAX_BBXMIN": 247.308852, "numnum:count:MIN_BBXMAX": 2, "numnum:max:MIN_BBXMAX": 127.266667, "numnum:min:MIN_BBXMAX": 120.65, "numnum:sum:MIN_BBXMAX": 247.91666700000003, "numnum:count:MAX_BBXMAX": 2, "numnum:max:MAX_BBXMAX": 127.325, "numnum:min:MAX_BBXMAX": 120.65, "numnum:sum:MAX_BBXMAX": 247.97500000000003, "numnum:count:MIN_BBYMIN": 2, "numnum:max:MIN_BBYMIN": 36.75, "numnum:min:MIN_BBYMIN": 16.358333, "numnum:sum:MIN_BBYMIN": 53.108333, "numnum:count:MAX_BBYMIN": 2, "numnum:max:MAX_BBYMIN": 37.412022, "numnum:min:MAX_BBYMIN": 16.358333, "numnum:sum:MAX_BBYMIN": 53.770354999999998, "numnum:count:MIN_BBYMAX": 2, "numnum:max:MIN_BBYMAX": 37.791667, "numnum:min:MIN_BBYMAX": 16.483333, "numnum:sum:MIN_BBYMAX": 54.27499999999999, "numnum:count:MAX_BBYMAX": 2, "numnum:max:MAX_BBYMAX": 37.875, "numnum:min:MAX_BBYMAX": 16.483333, "numnum:sum:MAX_BBYMAX": 54.358333, "numnum:count:MEAN_BBXC": 2, "numnum:max:MEAN_BBXC": 126.971295, "numnum:min:MEAN_BBXC": 120.598765, "numnum:sum:MEAN_BBXC": 247.57006, "numnum:count:MEAN_BBYC": 2, "numnum:max:MEAN_BBYC": 37.485925, "numnum:min:MEAN_BBYC": 16.421065, "numnum:sum:MEAN_BBYC": 53.90699, "numnum:count:COMPARE": 2, "numnum:max:COMPARE": 0, "numnum:min:COMPARE": 0, "numnum:sum:COMPARE": 0, "numnum:count:ADMIN1_COD": 2, "numnum:max:ADMIN1_COD": 11, "numnum:min:ADMIN1_COD": 0, "numnum:sum:ADMIN1_COD": 11, "numnum:count:GN_POP": 2, "numnum:max:GN_POP": 10349312, "numnum:min:GN_POP": 272714, "numnum:sum:GN_POP": 10622026, "numnum:count:ELEVATION": 2, "numnum:max:ELEVATION": 0, "numnum:min:ELEVATION": 0, "numnum:sum:ELEVATION": 0, "numnum:count:GTOPO30": 2, "numnum:max:GTOPO30": 1448, "numnum:min:GTOPO30": 46, "numnum:sum:GTOPO30": 1494, "numnum:count:UN_FID": 2, "numnum:max:UN_FID": 336, "numnum:min:UN_FID": 0, "numnum:sum:UN_FID": 336, "numnum:count:UN_LAT": 2, "numnum:max:UN_LAT": 37.54, "numnum:min:UN_LAT": 0, "numnum:sum:UN_LAT": 37.54, "numnum:count:UN_LONG": 2, "numnum:max:UN_LONG": 126.93, "numnum:min:UN_LONG": 0, "numnum:sum:UN_LONG": 126.93, "numnum:count:POP1950": 2, "numnum:max:POP1950": 1021, "numnum:min:POP1950": 0, "numnum:sum:POP1950": 1021, "numnum:count:POP1955": 2, "numnum:max:POP1955": 1553, "numnum:min:POP1955": 0, "numnum:sum:POP1955": 1553, "numnum:count:POP1960": 2, "numnum:max:POP1960": 2361, "numnum:min:POP1960": 0, "numnum:sum:POP1960": 2361, "numnum:count:POP1965": 2, "numnum:max:POP1965": 3452, "numnum:min:POP1965": 0, "numnum:sum:POP1965": 3452, "numnum:count:POP1970": 2, "numnum:max:POP1970": 5312, "numnum:min:POP1970": 0, "numnum:sum:POP1970": 5312, "numnum:count:POP1975": 2, "numnum:max:POP1975": 6808, "numnum:min:POP1975": 0, "numnum:sum:POP1975": 6808, "numnum:count:POP1980": 2, "numnum:max:POP1980": 8258, "numnum:min:POP1980": 0, "numnum:sum:POP1980": 8258, "numnum:count:POP1985": 2, "numnum:max:POP1985": 9547, "numnum:min:POP1985": 0, "numnum:sum:POP1985": 9547, "numnum:count:POP1990": 2, "numnum:max:POP1990": 10544, "numnum:min:POP1990": 0, "numnum:sum:POP1990": 10544, "numnum:count:POP1995": 2, "numnum:max:POP1995": 10256, "numnum:min:POP1995": 0, "numnum:sum:POP1995": 10256, "numnum:count:POP2000": 2, "numnum:max:POP2000": 9917, "numnum:min:POP2000": 0, "numnum:sum:POP2000": 9917, "numnum:count:POP2005": 2, "numnum:max:POP2005": 9825, "numnum:min:POP2005": 0, "numnum:sum:POP2005": 9825, "numnum:count:POP2010": 2, "numnum:max:POP2010": 9796, "numnum:min:POP2010": 0, "numnum:sum:POP2010": 9796, "numnum:count:POP2015": 2, "numnum:max:POP2015": 9762, "numnum:min:POP2015": 0, "numnum:sum:POP2015": 9762, "numnum:count:POP2020": 2, "numnum:max:POP2020": 9740, "numnum:min:POP2020": 0, "numnum:sum:POP2020": 9740, "numnum:count:POP2025": 2, "numnum:max:POP2025": 9738, "numnum:min:POP2025": 0, "numnum:sum:POP2025": 9738, "numnum:count:POP2050": 2, "numnum:max:POP2050": 9738, "numnum:min:POP2050": 0, "numnum:sum:POP2050": 9738, "accum": 2, "numnum:count:accum2": 2, "numnum:max:accum2": 1, "numnum:min:accum2": 1, "numnum:sum:accum2": 2, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674, "MAX_POP20": 219674, "MAX_POP50": 219674, "MAX_POP300": 219674, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 155, "MAX_PERKM": 155, "MIN_PERMI": 96, "MAX_PERMI": 96, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 64409, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 114.938965, 4.872048 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.471411 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.741612 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052, "MAX_POP20": 2520813, "MAX_POP50": 2520813, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 340, "MAX_AREAKM": 486, "MIN_AREAMI": 131, "MAX_AREAMI": 188, "MIN_PERKM": 130, "MAX_PERKM": 218, "MIN_PERMI": 81, "MAX_PERMI": 135, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22, "GN_POP": 1459640, "ELEVATION": 0, "GTOPO30": 86, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35, "UN_LONG": 135.75, "POP1950": 1002, "POP1955": 1091, "POP1960": 1165, "POP1965": 1229, "POP1970": 1298, "POP1975": 1622, "POP1980": 1701, "POP1985": 1714, "POP1990": 1760, "POP1995": 1804, "POP2000": 1806, "POP2005": 1805, "POP2010": 1805, "POP2015": 1804, "POP2020": 1804, "POP2025": 1804, "POP2050": 1804, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.159180, 6.904614 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Leรณn", "ISO_A2": "MX", "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184, "MAX_POP20": 3296184, "MAX_POP50": 3296184, "MAX_POP300": 3296184, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 594, "MIN_AREAMI": 229, "MAX_AREAMI": 229, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 130, "MAX_PERMI": 130, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 1122874, "ELEVATION": 0, "GTOPO30": 563, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356, "POP1955": 498, "POP1960": 698, "POP1965": 943, "POP1970": 1267, "POP1975": 1589, "POP1980": 1992, "POP1985": 2273, "POP1990": 2594, "POP1995": 2961, "POP2000": 3266, "POP2005": 3579, "POP2010": 3712, "POP2015": 3901, "POP2020": 4140, "POP2025": 4298, "POP2050": 4413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574, "MAX_POP20": 4287078, "MAX_POP50": 4352341, "MAX_POP300": 4352341, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2388, "MAX_AREAKM": 3041, "MIN_AREAMI": 922, "MAX_AREAMI": 1174, "MIN_PERKM": 1257, "MAX_PERKM": 1773, "MIN_PERMI": 781, "MAX_PERMI": 1101, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709, "POP1955": 904, "POP1960": 1151, "POP1965": 1396, "POP1970": 1693, "POP1975": 2030, "POP1980": 2424, "POP1985": 2658, "POP1990": 2922, "POP1995": 3353, "POP2000": 3849, "POP2005": 4324, "POP2010": 4459, "POP2015": 4609, "POP2020": 4790, "POP2025": 4936, "POP2050": 5049, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEALT": "Ciudad de Mรฉxico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597, "MEGANAME": "Ciudad de Mรฉxico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002, "MAX_POP20": 17250245, "MAX_POP50": 18948089, "MAX_POP300": 18948089, "MAX_POP310": 18948089, "MAX_NATSCA": 300, "MIN_AREAKM": 895, "MAX_AREAKM": 2080, "MIN_AREAMI": 345, "MAX_AREAMI": 803, "MIN_PERKM": 256, "MAX_PERKM": 889, "MIN_PERMI": 159, "MAX_PERMI": 552, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 11285654, "ELEVATION": 0, "GTOPO30": 2216, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883, "POP1955": 3801, "POP1960": 5012, "POP1965": 6653, "POP1970": 8769, "POP1975": 10690, "POP1980": 13010, "POP1985": 14109, "POP1990": 15312, "POP1995": 16811, "POP2000": 18022, "POP2005": 18735, "POP2010": 19028, "POP2015": 19485, "POP2020": 20189, "POP2025": 20695, "POP2050": 21009, "CITYALT": "Mexico City", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.274973 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.208740 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -77.047119, -12.050065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEALT": "Valparaรญso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valparaรญso", "ISO_A2": "CL", "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575, "MEGANAME": "Valparaรญso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390, "MAX_POP20": 637860, "MAX_POP50": 637860, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 34, "MAX_AREAKM": 184, "MIN_AREAMI": 13, "MAX_AREAMI": 71, "MIN_PERKM": 33, "MAX_PERKM": 151, "MIN_PERMI": 21, "MAX_PERMI": 94, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27, "GN_POP": 15938, "ELEVATION": 0, "GTOPO30": 405, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328, "POP1955": 377, "POP1960": 433, "POP1965": 481, "POP1970": 532, "POP1975": 581, "POP1980": 635, "POP1985": 685, "POP1990": 733, "POP1995": 771, "POP2000": 803, "POP2005": 838, "POP2010": 854, "POP2015": 880, "POP2020": 922, "POP2025": 956, "POP2050": 982, "CITYALT": "Valparaiso", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Santiago", "DIFFASCII": 0, "NAMEASCII": "Santiago", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, admin", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Regiรณn Metropolitana de Santiago", "ISO_A2": "CL", "LATITUDE": -33.450014, "LONGITUDE": -70.667041, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5720000, "POP_MIN": 46611, "POP_OTHER": 3066651, "RANK_MAX": 13, "RANK_MIN": 7, "GEONAMEID": 3449741, "MEGANAME": "Santiago", "LS_NAME": "Santiago3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3540014, "MAX_POP20": 5157058, "MAX_POP50": 5157058, "MAX_POP300": 5157058, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 570, "MAX_AREAKM": 903, "MIN_AREAMI": 220, "MAX_AREAMI": 349, "MIN_PERKM": 310, "MAX_PERKM": 558, "MIN_PERMI": 193, "MAX_PERMI": 347, "MIN_BBXMIN": -70.958333, "MAX_BBXMIN": -70.8, "MIN_BBXMAX": -70.458333, "MAX_BBXMAX": -70.458333, "MIN_BBYMIN": -33.7, "MAX_BBYMIN": -33.556142, "MIN_BBYMAX": -33.175, "MAX_BBYMAX": -33.175, "MEAN_BBXC": -70.66127, "MEAN_BBYC": -33.461735, "COMPARE": 0, "GN_ASCII": "Santiago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 23, "GN_POP": 46611, "ELEVATION": 0, "GTOPO30": 441, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 17, "UN_ADM0": "Chile", "UN_LAT": 8.1, "UN_LONG": -80.96, "POP1950": 1322, "POP1955": 1618, "POP1960": 1980, "POP1965": 2294, "POP1970": 2647, "POP1975": 3138, "POP1980": 3721, "POP1985": 4201, "POP1990": 4616, "POP1995": 4964, "POP2000": 5275, "POP2005": 5599, "POP2010": 5720, "POP2015": 5879, "POP2020": 6084, "POP2025": 6224, "POP2050": 6310, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -70.664062, -33.449777 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official (const", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736, "MAX_POP20": 221736, "MAX_POP50": 221736, "MAX_POP300": 221736, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 34, "MAX_AREAKM": 34, "MIN_AREAMI": 13, "MAX_AREAMI": 13, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 224838, "ELEVATION": 0, "GTOPO30": 2759, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEALT": "Brasรญlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058, "MEGANAME": "Brasรญlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722, "MAX_POP20": 1836390, "MAX_POP50": 1838722, "MAX_POP300": 1838722, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 439, "MIN_AREAMI": 168, "MAX_AREAMI": 169, "MIN_PERKM": 311, "MAX_PERKM": 318, "MIN_PERMI": 193, "MAX_PERMI": 197, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 2207718, "ELEVATION": 0, "GTOPO30": 1092, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36, "POP1955": 70, "POP1960": 137, "POP1965": 268, "POP1970": 525, "POP1975": 827, "POP1980": 1293, "POP1985": 1559, "POP1990": 1863, "POP1995": 2257, "POP2000": 2746, "POP2005": 3341, "POP2010": 3599, "POP2015": 3938, "POP2020": 4284, "POP2025": 4463, "POP2050": 4578, "CITYALT": "Brasilia", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.781682 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEALT": "Asunciรณn", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunciรณn", "ISO_A2": "PY", "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025, "MEGANAME": "Asunciรณn", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924, "MAX_POP20": 1829910, "MAX_POP50": 2141255, "MAX_POP300": 2141255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 105, "MAX_AREAKM": 651, "MIN_AREAMI": 41, "MAX_AREAMI": 251, "MIN_PERKM": 63, "MAX_PERKM": 331, "MIN_PERMI": 39, "MAX_PERMI": 206, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 11693, "ELEVATION": 0, "GTOPO30": 24, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258, "POP1955": 314, "POP1960": 382, "POP1965": 461, "POP1970": 552, "POP1975": 654, "POP1980": 770, "POP1985": 914, "POP1990": 1091, "POP1995": 1287, "POP2000": 1507, "POP2005": 1762, "POP2010": 1870, "POP2015": 2030, "POP2020": 2277, "POP2025": 2506, "POP2050": 2715, "CITYALT": "Asuncion", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146, "MAX_POP20": 10991915, "MAX_POP50": 12611862, "MAX_POP300": 12611862, "MAX_POP310": 12611862, "MAX_NATSCA": 300, "MIN_AREAKM": 1675, "MAX_AREAKM": 2447, "MIN_AREAMI": 647, "MAX_AREAMI": 945, "MIN_PERKM": 570, "MAX_PERKM": 1064, "MIN_PERMI": 354, "MAX_PERMI": 661, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 13076300, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098, "POP1955": 5799, "POP1960": 6598, "POP1965": 7317, "POP1970": 8105, "POP1975": 8745, "POP1980": 9422, "POP1985": 9959, "POP1990": 10513, "POP1995": 11154, "POP2000": 11847, "POP2005": 12553, "POP2010": 12795, "POP2015": 13089, "POP2020": 13432, "POP2025": 13653, "POP2050": 13768, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -58.403320, -34.597042 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEALT": "Sao Paulo|Sรฃo Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Sรฃo Paulo", "ISO_A2": "BR", "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439, "MEGANAME": "Sรฃo Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084, "MAX_POP20": 17425624, "MAX_POP50": 18203351, "MAX_POP300": 18203351, "MAX_POP310": 18203351, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 2667, "MIN_AREAMI": 554, "MAX_AREAMI": 1030, "MIN_PERKM": 532, "MAX_PERKM": 1086, "MIN_PERMI": 330, "MAX_PERMI": 675, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27, "GN_POP": 10021295, "ELEVATION": 0, "GTOPO30": 631, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334, "POP1955": 3044, "POP1960": 3970, "POP1965": 5494, "POP1970": 7620, "POP1975": 9614, "POP1980": 12089, "POP1985": 13395, "POP1990": 14776, "POP1995": 15948, "POP2000": 17099, "POP2005": 18333, "POP2010": 18845, "POP2015": 19582, "POP2020": 20544, "POP2025": 21124, "POP2050": 21428, "CITYALT": "Sao Paulo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -46.625977, -23.553917 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747, "MAX_POP20": 1381747, "MAX_POP50": 1381747, "MAX_POP300": 1381747, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 347, "MAX_AREAKM": 347, "MIN_AREAMI": 134, "MAX_AREAMI": 134, "MIN_PERKM": 266, "MAX_PERKM": 266, "MIN_PERMI": 165, "MAX_PERMI": 165, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5324, "ELEVATION": 284, "GTOPO30": 305, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212, "POP1955": 1248, "POP1960": 1285, "POP1965": 1323, "POP1970": 1362, "POP1975": 1403, "POP1980": 1454, "POP1985": 1508, "POP1990": 1546, "POP1995": 1584, "POP2000": 1561, "POP2005": 1525, "POP2010": 1513, "POP2015": 1504, "POP2020": 1506, "POP2025": 1515, "POP2050": 1520, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682, "MAX_POP20": 1443206, "MAX_POP50": 5187749, "MAX_POP300": 5187749, "MAX_POP310": 5187749, "MAX_NATSCA": 300, "MIN_AREAKM": 380, "MAX_AREAKM": 2907, "MIN_AREAMI": 147, "MAX_AREAMI": 1122, "MIN_PERKM": 156, "MAX_PERKM": 999, "MIN_PERMI": 97, "MAX_PERMI": 620, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 382894, "ELEVATION": 2, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622, "POP1955": 924, "POP1960": 1361, "POP1965": 1709, "POP1970": 2141, "POP1975": 2590, "POP1980": 3122, "POP1985": 3521, "POP1990": 3969, "POP1995": 4431, "POP2000": 4946, "POP2005": 5438, "POP2010": 5585, "POP2015": 5755, "POP2020": 5969, "POP2025": 6141, "POP2050": 6272, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ -80.222168, 25.790000 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723, "MAX_POP20": 2240256, "MAX_POP50": 3764385, "MAX_POP300": 5678280, "MAX_POP310": 5678280, "MAX_NATSCA": 300, "MIN_AREAKM": 1114, "MAX_AREAKM": 3447, "MIN_AREAMI": 430, "MAX_AREAMI": 1331, "MIN_PERKM": 548, "MAX_PERKM": 1898, "MIN_PERMI": 341, "MAX_PERMI": 1179, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 552433, "ELEVATION": 7, "GTOPO30": 11, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298, "POP1955": 1539, "POP1960": 1823, "POP1965": 2135, "POP1970": 2488, "POP1975": 2626, "POP1980": 2777, "POP1985": 3063, "POP1990": 3376, "POP1995": 3651, "POP2000": 3949, "POP2005": 4241, "POP2010": 4338, "POP2015": 4464, "POP2020": 4636, "POP2025": 4778, "POP2050": 4889, "CITYALT": "Washington D.C.", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ -77.014160, 38.899583 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "UN Headquarters", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946, "MAX_POP20": 11947707, "MAX_POP50": 18788144, "MAX_POP300": 18788144, "MAX_POP310": 18924578, "MAX_NATSCA": 300, "MIN_AREAKM": 1137, "MAX_AREAKM": 8185, "MIN_AREAMI": 439, "MAX_AREAMI": 3160, "MIN_PERKM": 497, "MAX_PERKM": 4993, "MIN_PERMI": 309, "MAX_PERMI": 3102, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 8008278, "ELEVATION": 10, "GTOPO30": 2, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338, "POP1955": 13219, "POP1960": 14164, "POP1965": 15177, "POP1970": 16191, "POP1975": 15880, "POP1980": 15601, "POP1985": 15827, "POP1990": 16086, "POP1995": 16943, "POP2000": 17846, "POP2005": 18732, "POP2010": 19040, "POP2015": 19441, "POP2020": 19974, "POP2025": 20370, "POP2050": 20628, "CITYALT": "New York", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.755580 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ISO_A2": "BS", "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966, "MAX_POP20": 160966, "MAX_POP50": 160966, "MAX_POP300": 160966, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 84, "MAX_AREAKM": 84, "MIN_AREAMI": 32, "MAX_AREAMI": 32, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25, "MAX_BBYMIN": 25, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23, "GN_POP": 227940, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -77.354736, 25.085599 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220, "MAX_POP20": 15220, "MAX_POP50": 15220, "MAX_POP300": 15220, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 9, "MAX_AREAKM": 9, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 13381, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.256236 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Morazรกn", "ISO_A2": "HN", "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546, "MAX_POP20": 1014546, "MAX_POP50": 1014546, "MAX_POP300": 1014546, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 97, "MAX_AREAKM": 97, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 850848, "ELEVATION": 0, "GTOPO30": 997, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73, "POP1955": 96, "POP1960": 128, "POP1965": 169, "POP1970": 223, "POP1975": 292, "POP1980": 371, "POP1985": 471, "POP1990": 578, "POP1995": 677, "POP2000": 793, "POP2005": 901, "POP2010": 946, "POP2015": 1022, "POP2020": 1165, "POP2025": 1317, "POP2050": 1472, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -87.220459, 14.104613 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614, "MAX_POP20": 2150614, "MAX_POP50": 2150614, "MAX_POP300": 2150614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 379, "MAX_AREAKM": 379, "MIN_AREAMI": 146, "MAX_AREAMI": 146, "MIN_PERKM": 347, "MAX_PERKM": 347, "MIN_PERMI": 215, "MAX_PERMI": 215, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30, "GN_POP": 2807, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194, "POP1955": 246, "POP1960": 311, "POP1965": 394, "POP1970": 500, "POP1975": 596, "POP1980": 701, "POP1985": 825, "POP1990": 970, "POP1995": 1107, "POP2000": 1233, "POP2005": 1374, "POP2010": 1433, "POP2015": 1520, "POP2020": 1649, "POP2025": 1776, "POP2050": 1902, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973, "MAX_POP20": 1105973, "MAX_POP50": 1105973, "MAX_POP300": 1105973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 131, "MIN_AREAMI": 51, "MAX_AREAMI": 51, "MIN_PERKM": 97, "MAX_PERKM": 97, "MIN_PERMI": 60, "MAX_PERMI": 60, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 973087, "ELEVATION": 0, "GTOPO30": 59, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110, "POP1955": 148, "POP1960": 199, "POP1965": 269, "POP1970": 366, "POP1975": 443, "POP1980": 525, "POP1985": 621, "POP1990": 735, "POP1995": 865, "POP2000": 887, "POP2005": 909, "POP2010": 920, "POP2015": 944, "POP2020": 1015, "POP2025": 1104, "POP2050": 1193, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -86.275635, 12.157486 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEALT": "San Josรฉ", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Josรฉ", "ISO_A2": "CR", "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623, "MEGANAME": "San Josรฉ", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902, "MAX_POP20": 1826034, "MAX_POP50": 1826034, "MAX_POP300": 1826034, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 431, "MIN_AREAMI": 102, "MAX_AREAMI": 166, "MIN_PERKM": 136, "MAX_PERKM": 270, "MIN_PERMI": 84, "MAX_PERMI": 168, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37, "GN_POP": 1724, "ELEVATION": 0, "GTOPO30": 1468, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148, "POP1955": 184, "POP1960": 230, "POP1965": 287, "POP1970": 359, "POP1975": 440, "POP1980": 526, "POP1985": 627, "POP1990": 737, "POP1995": 867, "POP2000": 1032, "POP2005": 1217, "POP2010": 1284, "POP2015": 1374, "POP2020": 1506, "POP2025": 1627, "POP2050": 1737, "CITYALT": "San Jose", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -84.089355, 9.936388 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEALT": "Ciudad de Panamรก|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443, "MEGANAME": "Ciudad de Panamรก (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016, "MAX_POP20": 958016, "MAX_POP50": 989053, "MAX_POP300": 989053, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 157, "MIN_AREAMI": 54, "MAX_AREAMI": 61, "MIN_PERKM": 98, "MAX_PERKM": 107, "MIN_PERMI": 61, "MAX_PERMI": 66, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 408168, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9, "UN_LONG": -79.51, "POP1950": 171, "POP1955": 220, "POP1960": 283, "POP1965": 360, "POP1970": 455, "POP1975": 528, "POP1980": 613, "POP1985": 721, "POP1990": 847, "POP1995": 953, "POP2000": 1072, "POP2005": 1216, "POP2010": 1281, "POP2015": 1379, "POP2020": 1527, "POP2025": 1653, "POP2050": 1759, "CITYALT": "Panama", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973, "MAX_POP20": 664973, "MAX_POP50": 664973, "MAX_POP300": 664973, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 120, "MAX_AREAKM": 120, "MIN_AREAMI": 46, "MAX_AREAMI": 46, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 937700, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -76.772461, 17.978733 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384, "MAX_POP20": 2445384, "MAX_POP50": 2445384, "MAX_POP300": 2445384, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 374, "MAX_AREAKM": 374, "MIN_AREAMI": 144, "MAX_AREAMI": 144, "MIN_PERKM": 287, "MAX_PERKM": 287, "MIN_PERMI": 179, "MAX_PERMI": 179, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1234742, "ELEVATION": 0, "GTOPO30": 65, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133, "POP1955": 182, "POP1960": 247, "POP1965": 337, "POP1970": 460, "POP1975": 575, "POP1980": 701, "POP1985": 881, "POP1990": 1134, "POP1995": 1427, "POP2000": 1653, "POP2005": 1885, "POP2010": 1998, "POP2015": 2209, "POP2020": 2621, "POP2025": 3012, "POP2050": 3346, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413, "MAX_POP20": 3334413, "MAX_POP50": 3334413, "MAX_POP300": 3334413, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 451, "MAX_AREAKM": 451, "MIN_AREAMI": 174, "MAX_AREAMI": 174, "MIN_PERKM": 309, "MAX_PERKM": 309, "MIN_PERMI": 192, "MAX_PERMI": 192, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 2873, "ELEVATION": 0, "GTOPO30": 2004, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219, "POP1955": 312, "POP1960": 446, "POP1965": 613, "POP1970": 833, "POP1975": 1016, "POP1980": 1240, "POP1985": 1396, "POP1990": 1522, "POP1995": 1670, "POP2000": 1854, "POP2005": 2062, "POP2010": 2154, "POP2015": 2298, "POP2020": 2525, "POP2025": 2722, "POP2050": 2885, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ -69.906006, 18.469189 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEALT": "Bogotรก", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689, "MEGANAME": "Bogotรก", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661, "MAX_POP20": 6333154, "MAX_POP50": 6333154, "MAX_POP300": 6333154, "MAX_POP310": 6333154, "MAX_NATSCA": 300, "MIN_AREAKM": 523, "MAX_AREAKM": 523, "MIN_AREAMI": 202, "MAX_AREAMI": 202, "MIN_PERKM": 186, "MAX_PERKM": 186, "MIN_PERMI": 116, "MAX_PERMI": 116, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34, "GN_POP": 7102602, "ELEVATION": 0, "GTOPO30": 2620, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630, "POP1955": 894, "POP1960": 1269, "POP1965": 1780, "POP1970": 2383, "POP1975": 3040, "POP1980": 3525, "POP1985": 4087, "POP1990": 4740, "POP1995": 5494, "POP2000": 6356, "POP2005": 7353, "POP2010": 7772, "POP2015": 8320, "POP2020": 8916, "POP2025": 9299, "POP2050": 9600, "CITYALT": "Bogota", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ -74.080811, 4.598327 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ISO_A2": "KN", "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887, "MAX_POP20": 21887, "MAX_POP50": 21887, "MAX_POP300": 21887, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 12920, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -62.720947, 17.298199 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ISO_A2": "AG", "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499, "MAX_POP20": 35499, "MAX_POP50": 35499, "MAX_POP300": 35499, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 25, "MAX_AREAKM": 25, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 38, "MAX_PERKM": 38, "MIN_PERMI": 24, "MAX_PERMI": 24, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 24226, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -61.853027, 17.119793 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336, "MAX_POP20": 23336, "MAX_POP50": 23336, "MAX_POP300": 23336, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 25, "MAX_PERKM": 25, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 16571, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -61.391602, 15.305380 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ISO_A2": "LC", "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343, "MAX_POP20": 64343, "MAX_POP50": 64343, "MAX_POP300": 64343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 16, "MAX_AREAKM": 16, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 22, "MAX_PERKM": 22, "MIN_PERMI": 14, "MAX_PERMI": 14, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 5790, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ISO_A2": "VC", "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485, "MAX_POP20": 49485, "MAX_POP50": 49485, "MAX_POP300": 49485, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 17, "MAX_AREAKM": 17, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1662, "ELEVATION": 5, "GTOPO30": 1, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.143678 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ISO_A2": "GD", "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925, "LS_NAME": "Saint Georgeย‰?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343, "MAX_POP20": 27343, "MAX_POP50": 27343, "MAX_POP300": 27343, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 10, "MAX_AREAKM": 10, "MIN_AREAMI": 4, "MAX_AREAMI": 4, "MIN_PERKM": 18, "MAX_PERKM": 18, "MIN_PERMI": 11, "MAX_PERMI": 11, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7500, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152, "MAX_POP20": 191152, "MAX_POP50": 191152, "MAX_POP300": 191152, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 131, "MAX_PERKM": 131, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 2971, "ELEVATION": 0, "GTOPO30": 152, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -59.611816, 13.100880 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500, "MAX_POP20": 3351058, "MAX_POP50": 3351241, "MAX_POP300": 3351241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 224, "MAX_AREAKM": 370, "MIN_AREAMI": 86, "MAX_AREAMI": 143, "MIN_PERKM": 137, "MAX_PERKM": 278, "MIN_PERMI": 85, "MAX_PERMI": 172, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 1815679, "ELEVATION": 0, "GTOPO30": 920, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694, "POP1955": 955, "POP1960": 1316, "POP1965": 1657, "POP1970": 2060, "POP1975": 2342, "POP1980": 2575, "POP1985": 2693, "POP1990": 2767, "POP1995": 2816, "POP2000": 2864, "POP2005": 2930, "POP2010": 2985, "POP2015": 3098, "POP2020": 3306, "POP2025": 3482, "POP2050": 3619, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934, "MAX_POP20": 294934, "MAX_POP50": 294934, "MAX_POP300": 294934, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 112, "MAX_AREAKM": 112, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 67, "MAX_PERMI": 67, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 49657, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350, "MAX_POP20": 264350, "MAX_POP50": 264350, "MAX_POP300": 264350, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 235017, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -58.161621, 6.806444 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169, "MAX_POP20": 254169, "MAX_POP50": 254169, "MAX_POP300": 254169, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 83, "MAX_PERKM": 85, "MIN_PERMI": 51, "MAX_PERMI": 53, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 223757, "ELEVATION": 0, "GTOPO30": 3, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -75.706787, 45.421588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.928042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.912938 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ -9.151611, 38.728376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279, "MAX_POP20": 3796279, "MAX_POP50": 3796279, "MAX_POP300": 3796279, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 261, "MAX_PERKM": 261, "MIN_PERMI": 162, "MAX_PERMI": 162, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45, "GN_POP": 3144909, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625, "POP1955": 778, "POP1960": 967, "POP1965": 1206, "POP1970": 1505, "POP1975": 1793, "POP1980": 2109, "POP1985": 2406, "POP1990": 2682, "POP1995": 2951, "POP2000": 3043, "POP2005": 3138, "POP2010": 3181, "POP2015": 3267, "POP2020": 3475, "POP2025": 3716, "POP2050": 3949, "CITYALT": "Casablanca", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.605470 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Salรฉ - Zemmour - Zaer", "ISO_A2": "MA", "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124, "MAX_POP20": 2037124, "MAX_POP50": 2037124, "MAX_POP300": 2037124, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 428, "MAX_AREAKM": 428, "MIN_AREAMI": 165, "MAX_AREAMI": 165, "MIN_PERKM": 475, "MAX_PERKM": 475, "MIN_PERMI": 295, "MAX_PERMI": 295, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49, "GN_POP": 1655753, "ELEVATION": 0, "GTOPO30": 54, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145, "POP1955": 184, "POP1960": 233, "POP1965": 339, "POP1970": 494, "POP1975": 641, "POP1980": 808, "POP1985": 986, "POP1990": 1174, "POP1995": 1379, "POP2000": 1507, "POP2005": 1647, "POP2010": 1705, "POP2015": 1793, "POP2020": 1938, "POP2025": 2083, "POP2050": 2222, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139, "MAX_POP20": 3767139, "MAX_POP50": 3767139, "MAX_POP300": 3767139, "MAX_POP310": 3767139, "MAX_NATSCA": 300, "MIN_AREAKM": 690, "MAX_AREAKM": 690, "MIN_AREAMI": 266, "MAX_AREAMI": 266, "MIN_PERKM": 558, "MAX_PERKM": 558, "MIN_PERMI": 347, "MAX_PERMI": 347, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33, "GN_POP": 50437, "ELEVATION": 0, "GTOPO30": 2400, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700, "POP1955": 2018, "POP1960": 2392, "POP1965": 2898, "POP1970": 3521, "POP1975": 3890, "POP1980": 4253, "POP1985": 4355, "POP1990": 4414, "POP1995": 4701, "POP2000": 5045, "POP2005": 5414, "POP2010": 5567, "POP2015": 5764, "POP2020": 5918, "POP2025": 5934, "POP2050": 5935, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ -3.680420, 40.405131 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as inte", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ISO_A2": "EH", "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 1, "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -9.656982, 26.115986 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239, "MAX_POP20": 2634882, "MAX_POP50": 2660614, "MAX_POP300": 2660614, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 257, "MAX_AREAKM": 302, "MIN_AREAMI": 99, "MAX_AREAMI": 117, "MIN_PERKM": 222, "MAX_PERKM": 288, "MIN_PERMI": 138, "MAX_PERMI": 179, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 2476400, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211, "POP1955": 235, "POP1960": 359, "POP1965": 473, "POP1970": 610, "POP1975": 782, "POP1980": 957, "POP1985": 1162, "POP1990": 1405, "POP1995": 1688, "POP2000": 2029, "POP2005": 2434, "POP2010": 2604, "POP2015": 2856, "POP2020": 3275, "POP2025": 3726, "POP2050": 4225, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ -17.479248, 14.721761 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144, "MAX_POP20": 742144, "MAX_POP50": 742144, "MAX_POP300": 742144, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 98, "MAX_AREAKM": 98, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 661400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094, "MAX_POP20": 43094, "MAX_POP50": 43094, "MAX_POP300": 43094, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 13, "MAX_PERKM": 13, "MIN_PERMI": 8, "MAX_PERMI": 8, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 34589, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339, "MAX_POP20": 403339, "MAX_POP50": 403339, "MAX_POP300": 403339, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 70, "MIN_AREAMI": 27, "MAX_AREAMI": 27, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 388028, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ -15.600586, 11.867351 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217, "MAX_POP20": 1504217, "MAX_POP50": 1504217, "MAX_POP300": 1504217, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 184, "MAX_AREAKM": 184, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 123, "MAX_PERKM": 123, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1767200, "ELEVATION": 0, "GTOPO30": 235, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31, "POP1955": 59, "POP1960": 112, "POP1965": 208, "POP1970": 388, "POP1975": 530, "POP1980": 658, "POP1985": 766, "POP1990": 895, "POP1995": 1045, "POP2000": 1219, "POP2005": 1409, "POP2010": 1494, "POP2015": 1645, "POP2020": 1984, "POP2025": 2393, "POP2050": 2856, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311, "MAX_POP20": 1074311, "MAX_POP50": 1074311, "MAX_POP300": 1074311, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 81, "MAX_PERKM": 81, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4, "GN_POP": 13768, "ELEVATION": 0, "GTOPO30": 15, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92, "POP1955": 104, "POP1960": 119, "POP1965": 148, "POP1970": 206, "POP1975": 284, "POP1980": 361, "POP1985": 460, "POP1990": 529, "POP1995": 603, "POP2000": 688, "POP2005": 785, "POP2010": 827, "POP2015": 894, "POP2020": 1029, "POP2025": 1200, "POP2050": 1406, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ -13.238525, 8.472372 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564, "MAX_POP20": 1316564, "MAX_POP50": 1316564, "MAX_POP300": 1316564, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 172, "MAX_AREAKM": 172, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 106, "MAX_PERKM": 106, "MIN_PERMI": 66, "MAX_PERMI": 66, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1297281, "ELEVATION": 0, "GTOPO30": 350, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89, "POP1955": 111, "POP1960": 130, "POP1965": 158, "POP1970": 222, "POP1975": 363, "POP1980": 489, "POP1985": 608, "POP1990": 746, "POP1995": 910, "POP2000": 1110, "POP2005": 1368, "POP2010": 1494, "POP2015": 1708, "POP2020": 2130, "POP2025": 2633, "POP2050": 3214, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662, "MAX_POP20": 781295, "MAX_POP50": 781295, "MAX_POP300": 781295, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 152, "MIN_AREAMI": 54, "MAX_AREAMI": 59, "MIN_PERKM": 164, "MAX_PERKM": 184, "MIN_PERMI": 102, "MAX_PERMI": 115, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 939524, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15, "POP1955": 34, "POP1960": 75, "POP1965": 121, "POP1970": 164, "POP1975": 226, "POP1980": 325, "POP1985": 514, "POP1990": 1042, "POP1995": 464, "POP2000": 836, "POP2005": 1140, "POP2010": 1041, "POP2015": 1185, "POP2020": 1457, "POP2025": 1753, "POP2050": 2083, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499, "MAX_POP20": 206499, "MAX_POP50": 206499, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 59, "MAX_AREAKM": 59, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 52, "MAX_PERKM": 52, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 194530, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395, "MAX_POP20": 3190395, "MAX_POP50": 3190395, "MAX_POP300": 3190395, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 474, "MAX_AREAKM": 474, "MIN_AREAMI": 183, "MAX_AREAMI": 183, "MIN_PERKM": 304, "MAX_PERKM": 304, "MIN_PERMI": 189, "MAX_PERMI": 189, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82, "GN_POP": 3677115, "ELEVATION": 0, "GTOPO30": 75, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "Cรดte d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65, "POP1955": 125, "POP1960": 192, "POP1965": 310, "POP1970": 548, "POP1975": 966, "POP1980": 1384, "POP1985": 1716, "POP1990": 2102, "POP1995": 2535, "POP2000": 3032, "POP2005": 3564, "POP2010": 3802, "POP2015": 4175, "POP2020": 4810, "POP2025": 5432, "POP2050": 6031, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ -4.042969, 5.320705 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890, "MAX_POP20": 1163890, "MAX_POP50": 1163890, "MAX_POP300": 1163890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 148, "MAX_AREAKM": 148, "MIN_AREAMI": 57, "MAX_AREAMI": 57, "MIN_PERKM": 105, "MAX_PERKM": 105, "MIN_PERMI": 65, "MAX_PERMI": 65, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 1284609, "ELEVATION": 0, "GTOPO30": 156, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83, "POP1955": 92, "POP1960": 124, "POP1965": 172, "POP1970": 238, "POP1975": 329, "POP1980": 446, "POP1985": 596, "POP1990": 704, "POP1995": 830, "POP2000": 986, "POP2005": 1216, "POP2010": 1355, "POP2015": 1505, "POP2020": 1729, "POP2025": 1938, "POP2050": 2150, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703, "MAX_POP20": 5567255, "MAX_POP50": 5567255, "MAX_POP300": 5567255, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 346, "MAX_AREAKM": 357, "MIN_AREAMI": 134, "MAX_AREAMI": 138, "MIN_PERKM": 201, "MAX_PERKM": 219, "MIN_PERMI": 125, "MAX_PERMI": 136, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 7785965, "ELEVATION": 0, "GTOPO30": 224, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202, "POP1955": 292, "POP1960": 443, "POP1965": 717, "POP1970": 1070, "POP1975": 1482, "POP1980": 2053, "POP1985": 2793, "POP1990": 3448, "POP1995": 4447, "POP2000": 5485, "POP2005": 7108, "POP2010": 7843, "POP2015": 9052, "POP2020": 11313, "POP2025": 13875, "POP2050": 16762, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272, "MAX_POP20": 1951272, "MAX_POP50": 1951272, "MAX_POP300": 1951272, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 237, "MAX_AREAKM": 237, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 2776168, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138, "POP1955": 174, "POP1960": 219, "POP1965": 315, "POP1970": 459, "POP1975": 665, "POP1980": 962, "POP1985": 1295, "POP1990": 1568, "POP1995": 1953, "POP2000": 2591, "POP2005": 3533, "POP2010": 4000, "POP2015": 4775, "POP2020": 6036, "POP2025": 7153, "POP2050": 8236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 13.227539, -8.841651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796, "MAX_POP20": 262796, "MAX_POP50": 262796, "MAX_POP300": 262796, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 60, "MAX_PERKM": 60, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 268132, "ELEVATION": 0, "GTOPO30": 1722, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858, "MAX_POP20": 2443605, "MAX_POP50": 2443605, "MAX_POP300": 2443605, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 534, "MAX_AREAKM": 542, "MIN_AREAMI": 206, "MAX_AREAMI": 209, "MIN_PERKM": 295, "MAX_PERKM": 300, "MIN_PERMI": 183, "MAX_PERMI": 187, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11, "GN_POP": 3433441, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618, "POP1955": 705, "POP1960": 803, "POP1965": 945, "POP1970": 1114, "POP1975": 1339, "POP1980": 1609, "POP1985": 1925, "POP1990": 2155, "POP1995": 2394, "POP2000": 2715, "POP2005": 3087, "POP2010": 3215, "POP2015": 3357, "POP2020": 3504, "POP2025": 3627, "POP2050": 3744, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787, "MAX_POP20": 2263899, "MAX_POP50": 5065653, "MAX_POP300": 7102391, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 601, "MAX_AREAKM": 8753, "MIN_AREAMI": 232, "MAX_AREAMI": 3380, "MIN_PERKM": 735, "MAX_PERKM": 9184, "MIN_PERMI": 457, "MAX_PERMI": 5707, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 745261, "ELEVATION": 0, "GTOPO30": 1568, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18, "POP1955": 25, "POP1960": 34, "POP1965": 45, "POP1970": 59, "POP1975": 90, "POP1980": 128, "POP1985": 168, "POP1990": 219, "POP1995": 289, "POP2000": 497, "POP2005": 775, "POP2010": 860, "POP2015": 947, "POP2020": 1152, "POP2025": 1413, "POP2050": 1715, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 30.058594, -1.955187 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733, "MAX_POP20": 2140496, "MAX_POP50": 3536914, "MAX_POP300": 3539151, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1093, "MAX_AREAKM": 5563, "MIN_AREAMI": 422, "MAX_AREAMI": 2148, "MIN_PERKM": 1180, "MAX_PERKM": 5081, "MIN_PERMI": 733, "MAX_PERMI": 3157, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 331700, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.370856 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566, "MAX_POP20": 1289566, "MAX_POP50": 1289566, "MAX_POP300": 1289566, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 183, "MAX_AREAKM": 183, "MIN_AREAMI": 71, "MAX_AREAMI": 71, "MIN_PERKM": 122, "MAX_PERKM": 122, "MIN_PERMI": 76, "MAX_PERMI": 76, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1267440, "ELEVATION": 0, "GTOPO30": 1277, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31, "POP1955": 53, "POP1960": 91, "POP1965": 160, "POP1970": 278, "POP1975": 385, "POP1980": 533, "POP1985": 636, "POP1990": 757, "POP1995": 902, "POP2000": 1073, "POP2005": 1261, "POP2010": 1328, "POP2015": 1421, "POP2020": 1587, "POP2025": 1797, "POP2050": 2047, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 28.278809, -15.411319 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439, "MAX_POP20": 1833439, "MAX_POP50": 1833439, "MAX_POP300": 1839463, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 310, "MAX_AREAKM": 326, "MIN_AREAMI": 120, "MAX_AREAMI": 126, "MIN_PERKM": 186, "MAX_PERKM": 210, "MIN_PERMI": 115, "MAX_PERMI": 130, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1542813, "ELEVATION": 0, "GTOPO30": 1481, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143, "POP1955": 192, "POP1960": 248, "POP1965": 319, "POP1970": 417, "POP1975": 532, "POP1980": 616, "POP1985": 778, "POP1990": 1047, "POP1995": 1255, "POP2000": 1379, "POP2005": 1515, "POP2010": 1572, "POP2015": 1663, "POP2020": 1839, "POP2025": 2037, "POP2050": 2247, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.811456 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842, "MAX_POP20": 3401842, "MAX_POP50": 3418532, "MAX_POP300": 3418532, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 698, "MAX_AREAKM": 719, "MIN_AREAMI": 269, "MAX_AREAMI": 277, "MIN_PERKM": 554, "MAX_PERKM": 571, "MIN_PERMI": 344, "MAX_PERMI": 355, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 2750547, "ELEVATION": 0, "GTOPO30": 1724, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137, "POP1955": 201, "POP1960": 293, "POP1965": 404, "POP1970": 531, "POP1975": 677, "POP1980": 862, "POP1985": 1090, "POP1990": 1380, "POP1995": 1755, "POP2000": 2233, "POP2005": 2787, "POP2010": 3010, "POP2015": 3363, "POP2020": 4052, "POP2025": 4881, "POP2050": 5871, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Offical capital", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269, "MAX_POP20": 218269, "MAX_POP50": 218269, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 55, "MAX_AREAKM": 55, "MIN_AREAMI": 21, "MAX_AREAMI": 21, "MIN_PERKM": 61, "MAX_PERKM": 61, "MIN_PERMI": 38, "MAX_PERMI": 38, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 180541, "ELEVATION": 0, "GTOPO30": 1129, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 35.749512, -6.184246 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507, "MAX_POP20": 2757507, "MAX_POP50": 2757507, "MAX_POP300": 2757507, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 153, "MAX_PERKM": 153, "MIN_PERMI": 95, "MAX_PERMI": 95, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 2698652, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67, "POP1955": 110, "POP1960": 162, "POP1965": 233, "POP1970": 357, "POP1975": 572, "POP1980": 836, "POP1985": 1046, "POP1990": 1316, "POP1995": 1668, "POP2000": 2116, "POP2005": 2679, "POP2010": 2930, "POP2015": 3319, "POP2020": 4020, "POP2025": 4804, "POP2050": 5688, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164, "MAX_POP20": 912521, "MAX_POP50": 989470, "MAX_POP300": 989470, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1100, "MAX_AREAKM": 1373, "MIN_AREAMI": 425, "MAX_AREAMI": 530, "MIN_PERKM": 1360, "MAX_PERKM": 1658, "MIN_PERMI": 845, "MAX_PERMI": 1030, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 646750, "ELEVATION": 0, "GTOPO30": 1025, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ISO_A2": "KM", "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698, "MAX_POP20": 128698, "MAX_POP50": 128698, "MAX_POP300": 128698, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 42872, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243, "MAX_POP20": 159243, "MAX_POP50": 159243, "MAX_POP300": 159243, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 72, "MAX_AREAKM": 72, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 59, "MAX_PERKM": 59, "MIN_PERMI": 37, "MAX_PERMI": 37, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 208411, "ELEVATION": 0, "GTOPO30": 1006, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 25.916748, -24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -26.170044999999999, "LONGITUDE": 28.03001, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168, "MAX_POP20": 5413549, "MAX_POP50": 5413549, "MAX_POP300": 5413549, "MAX_POP310": 5451385, "MAX_NATSCA": 300, "MIN_AREAKM": 1124, "MAX_AREAKM": 1614, "MIN_AREAMI": 434, "MAX_AREAMI": 623, "MIN_PERKM": 497, "MAX_PERKM": 828, "MIN_PERMI": 309, "MAX_PERMI": 514, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6, "GN_POP": 2026469, "ELEVATION": 0, "GTOPO30": 1775, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28, "POP1950": 900, "POP1955": 1016, "POP1960": 1147, "POP1965": 1288, "POP1970": 1444, "POP1975": 1547, "POP1980": 1656, "POP1985": 1773, "POP1990": 1898, "POP1995": 2265, "POP2000": 2732, "POP2005": 3258, "POP2010": 3435, "POP2015": 3618, "POP2020": 3785, "POP2025": 3916, "POP2050": 4041, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 28.026123, -26.165299 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Judicial capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669, "MAX_POP20": 456669, "MAX_POP50": 456669, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 105, "MAX_AREAKM": 105, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 463064, "ELEVATION": 0, "GTOPO30": 1398, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324, "MAX_POP20": 361324, "MAX_POP50": 361324, "MAX_POP300": 361324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 141, "MAX_AREAKM": 141, "MIN_AREAMI": 54, "MAX_AREAMI": 54, "MIN_PERKM": 177, "MAX_PERKM": 177, "MIN_PERMI": 110, "MAX_PERMI": 110, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 118355, "ELEVATION": 0, "GTOPO30": 1482, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 27.487793, -29.315141 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949, "MAX_POP20": 1444949, "MAX_POP50": 1444949, "MAX_POP300": 1444949, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 502, "MAX_AREAKM": 502, "MIN_AREAMI": 194, "MAX_AREAMI": 194, "MIN_PERKM": 256, "MAX_PERKM": 256, "MIN_PERMI": 159, "MAX_PERMI": 159, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 1619438, "ELEVATION": 0, "GTOPO30": 1282, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275, "POP1955": 340, "POP1960": 419, "POP1965": 488, "POP1970": 565, "POP1975": 624, "POP1980": 688, "POP1985": 763, "POP1990": 911, "POP1995": 951, "POP2000": 1084, "POP2005": 1273, "POP2010": 1338, "POP2015": 1409, "POP2020": 1482, "POP2025": 1544, "POP2050": 1604, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 28.223877, -25.700938 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138, "MAX_POP20": 90138, "MAX_POP50": 90138, "MAX_POP300": 90138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 28, "MAX_AREAKM": 28, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 76218, "ELEVATION": 0, "GTOPO30": 1156, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative and", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782, "MAX_POP20": 9782, "MAX_POP50": 9782, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 32, "MAX_PERKM": 32, "MIN_PERMI": 20, "MAX_PERMI": 20, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4557, "ELEVATION": 0, "GTOPO30": 651, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.201172, -26.470573 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629, "MAX_POP20": 1823845, "MAX_POP50": 1822603, "MAX_POP300": 1823845, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 187, "MAX_AREAKM": 313, "MIN_AREAMI": 72, "MAX_AREAMI": 121, "MIN_PERKM": 160, "MAX_PERKM": 234, "MIN_PERMI": 100, "MAX_PERMI": 145, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1191613, "ELEVATION": 0, "GTOPO30": 47, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92, "POP1955": 129, "POP1960": 181, "POP1965": 259, "POP1970": 371, "POP1975": 456, "POP1980": 550, "POP1985": 653, "POP1990": 776, "POP1995": 921, "POP2000": 1096, "POP2005": 1334, "POP2010": 1446, "POP2015": 1621, "POP2020": 1921, "POP2025": 2235, "POP2050": 2560, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEALT": "El Djazaรฏr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480, "MEGANAME": "El Djazaรฏr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320, "MAX_POP20": 3698473, "MAX_POP50": 4203253, "MAX_POP300": 4203253, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 886, "MAX_AREAKM": 1275, "MIN_AREAMI": 342, "MAX_AREAMI": 492, "MIN_PERKM": 798, "MAX_PERKM": 1192, "MIN_PERMI": 496, "MAX_PERMI": 741, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1977663, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516, "POP1955": 623, "POP1960": 872, "POP1965": 1049, "POP1970": 1254, "POP1975": 1499, "POP1980": 1621, "POP1985": 1672, "POP1990": 1908, "POP1995": 2295, "POP2000": 2754, "POP2005": 3199, "POP2010": 3354, "POP2015": 3574, "POP2020": 3922, "POP2025": 4235, "POP2050": 4499, "CITYALT": "Algiers", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 3.043213, 36.765292 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176, "MAX_POP20": 1831176, "MAX_POP50": 1838972, "MAX_POP300": 1838972, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 480, "MAX_AREAKM": 502, "MIN_AREAMI": 185, "MAX_AREAMI": 194, "MIN_PERKM": 485, "MAX_PERKM": 524, "MIN_PERMI": 302, "MAX_PERMI": 326, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38, "GN_POP": 693210, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386, "MAX_POP20": 1173386, "MAX_POP50": 1173386, "MAX_POP300": 1173386, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 195, "MAX_AREAKM": 195, "MIN_AREAMI": 75, "MAX_AREAMI": 75, "MIN_PERKM": 142, "MAX_PERKM": 142, "MIN_PERMI": 88, "MAX_PERMI": 88, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "ADMIN1_COD": 9, "GN_POP": 229398, "ELEVATION": 0, "GTOPO30": 31, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36, "POP1950": 106, "POP1955": 136, "POP1960": 174, "POP1965": 235, "POP1970": 398, "POP1975": 611, "POP1980": 797, "POP1985": 1056, "POP1990": 1500, "POP1995": 1678, "POP2000": 1877, "POP2005": 2098, "POP2010": 2189, "POP2015": 2322, "POP2020": 2532, "POP2025": 2713, "POP2050": 2855, "CITYALT": "Tripoli", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 13.183594, 32.888813 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ISO_A2": "MT", "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921, "MAX_POP20": 336921, "MAX_POP50": 336921, "MAX_POP300": 336921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 106, "MAX_AREAKM": 106, "MIN_AREAMI": 41, "MAX_AREAMI": 41, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 6794, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791, "MAX_POP20": 742791, "MAX_POP50": 742791, "MAX_POP300": 742791, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 122, "MAX_AREAKM": 122, "MIN_AREAMI": 47, "MAX_AREAMI": 47, "MIN_PERKM": 102, "MAX_PERKM": 102, "MIN_PERMI": 64, "MAX_PERMI": 64, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 774235, "ELEVATION": 0, "GTOPO30": 203, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24, "POP1955": 37, "POP1960": 58, "POP1965": 85, "POP1970": 129, "POP1975": 198, "POP1980": 274, "POP1985": 344, "POP1990": 432, "POP1995": 542, "POP2000": 680, "POP2005": 846, "POP2010": 915, "POP2015": 1027, "POP2020": 1258, "POP2025": 1580, "POP2050": 2028, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 2.109375, 13.517838 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEALT": "Lomรฉ", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267, "MEGANAME": "Lomรฉ", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448, "MAX_POP20": 953569, "MAX_POP50": 954013, "MAX_POP300": 953569, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 343, "MAX_AREAKM": 364, "MIN_AREAMI": 133, "MAX_AREAMI": 140, "MIN_PERKM": 353, "MAX_PERKM": 360, "MIN_PERMI": 219, "MAX_PERMI": 224, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24, "GN_POP": 749700, "ELEVATION": 0, "GTOPO30": 64, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33, "POP1955": 56, "POP1960": 95, "POP1965": 138, "POP1970": 192, "POP1975": 257, "POP1980": 344, "POP1985": 466, "POP1990": 619, "POP1995": 796, "POP2000": 1023, "POP2005": 1315, "POP2010": 1452, "POP2015": 1669, "POP2020": 2038, "POP2025": 2410, "POP2050": 2791, "CITYALT": "Lome", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 1.219482, 6.129631 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928, "MAX_POP20": 1076471, "MAX_POP50": 1076471, "MAX_POP300": 1113489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 192, "MAX_AREAKM": 337, "MIN_AREAMI": 74, "MAX_AREAMI": 130, "MIN_PERKM": 177, "MAX_PERKM": 341, "MIN_PERMI": 110, "MAX_PERMI": 212, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14, "GN_POP": 690584, "ELEVATION": 0, "GTOPO30": 53, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20, "POP1955": 27, "POP1960": 73, "POP1965": 111, "POP1970": 163, "POP1975": 240, "POP1980": 337, "POP1985": 412, "POP1990": 504, "POP1995": 577, "POP2000": 642, "POP2005": 720, "POP2010": 762, "POP2015": 841, "POP2020": 1004, "POP2025": 1196, "POP2050": 1411, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ouรฉmรฉ", "ISO_A2": "BJ", "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453, "MAX_POP20": 457770, "MAX_POP50": 457770, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 278, "MAX_AREAKM": 319, "MIN_AREAMI": 107, "MAX_AREAMI": 123, "MIN_PERKM": 251, "MAX_PERKM": 312, "MIN_PERMI": 156, "MAX_PERMI": 194, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 234168, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 2.614746, 6.479067 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Former capital", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910, "MAX_POP20": 7105663, "MAX_POP50": 7411389, "MAX_POP300": 7453740, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1035, "MAX_AREAKM": 1332, "MIN_AREAMI": 400, "MAX_AREAMI": 514, "MIN_PERKM": 638, "MAX_PERKM": 882, "MIN_PERMI": 397, "MAX_PERMI": 548, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 1536, "ELEVATION": 0, "GTOPO30": 89, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305, "POP1955": 468, "POP1960": 762, "POP1965": 1135, "POP1970": 1414, "POP1975": 1890, "POP1980": 2572, "POP1985": 3500, "POP1990": 4764, "POP1995": 5966, "POP2000": 7233, "POP2005": 8767, "POP2010": 9466, "POP2015": 10572, "POP2020": 12403, "POP2025": 14134, "POP2050": 15796, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and ad", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258, "MAX_POP20": 655258, "MAX_POP50": 655258, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 174, "MAX_AREAKM": 174, "MIN_AREAMI": 67, "MAX_AREAMI": 67, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 162135, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18, "POP1955": 21, "POP1960": 23, "POP1965": 29, "POP1970": 48, "POP1975": 77, "POP1980": 125, "POP1985": 204, "POP1990": 330, "POP1995": 526, "POP2000": 832, "POP2005": 1315, "POP2010": 1576, "POP2015": 1994, "POP2020": 2558, "POP2025": 2971, "POP2050": 3358, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314, "MAX_POP20": 314, "MAX_POP50": 314, "MAX_POP300": 314, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 155963, "ELEVATION": 0, "GTOPO30": 111, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 8.778076, 3.754634 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEALT": "N'Djamรฉna", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123, "MEGANAME": "N'Djamรฉna", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387, "MAX_POP20": 681387, "MAX_POP50": 681387, "MAX_POP300": 681387, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 79, "MAX_AREAKM": 79, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 66, "MAX_PERKM": 66, "MIN_PERMI": 41, "MAX_PERMI": 41, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 721081, "ELEVATION": 0, "GTOPO30": 290, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22, "POP1955": 40, "POP1960": 71, "POP1965": 109, "POP1970": 155, "POP1975": 231, "POP1980": 324, "POP1985": 393, "POP1990": 477, "POP1995": 579, "POP2000": 711, "POP2005": 902, "POP2010": 989, "POP2015": 1127, "POP2020": 1405, "POP2025": 1753, "POP2050": 2172, "CITYALT": "Ndjamena", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEALT": "Yaoundรฉ", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957, "MEGANAME": "Yaoundรฉ", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587, "MAX_POP20": 1060587, "MAX_POP50": 1060587, "MAX_POP300": 1060587, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 197, "MAX_AREAKM": 197, "MIN_AREAMI": 76, "MAX_AREAMI": 76, "MIN_PERKM": 116, "MAX_PERKM": 116, "MIN_PERMI": 72, "MAX_PERMI": 72, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1299369, "ELEVATION": 0, "GTOPO30": 733, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32, "POP1955": 49, "POP1960": 75, "POP1965": 112, "POP1970": 183, "POP1975": 292, "POP1980": 415, "POP1985": 578, "POP1990": 754, "POP1995": 948, "POP2000": 1192, "POP2005": 1489, "POP2010": 1611, "POP2015": 1787, "POP2020": 2058, "POP2025": 2312, "POP2050": 2549, "CITYALT": "Yaounde", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886, "MAX_POP20": 792886, "MAX_POP50": 831925, "MAX_POP300": 831925, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 103, "MIN_AREAMI": 35, "MAX_AREAMI": 40, "MIN_PERKM": 91, "MAX_PERKM": 107, "MIN_PERMI": 57, "MAX_PERMI": 67, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 542393, "ELEVATION": 0, "GTOPO30": 373, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Athรญnai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371, "MEGANAME": "Athรญnai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834, "MAX_POP20": 3010089, "MAX_POP50": 3010089, "MAX_POP300": 3010089, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 340, "MAX_AREAKM": 509, "MIN_AREAMI": 131, "MAX_AREAMI": 196, "MIN_PERKM": 199, "MAX_PERKM": 296, "MIN_PERMI": 124, "MAX_PERMI": 184, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 729137, "ELEVATION": 70, "GTOPO30": 110, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347, "POP1955": 1563, "POP1960": 1814, "POP1965": 2121, "POP1970": 2485, "POP1975": 2738, "POP1980": 2987, "POP1985": 3047, "POP1990": 3070, "POP1995": 3122, "POP2000": 3179, "POP2005": 3230, "POP2010": 3242, "POP2015": 3256, "POP2020": 3278, "POP2025": 3300, "POP2050": 3326, "CITYALT": "Athens", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.987504 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379, "MAX_POP20": 3306823, "MAX_POP50": 3306823, "MAX_POP300": 3306823, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 531, "MAX_AREAKM": 534, "MIN_AREAMI": 205, "MAX_AREAMI": 206, "MIN_PERKM": 355, "MAX_PERKM": 365, "MIN_PERMI": 221, "MAX_PERMI": 227, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68, "GN_POP": 3517182, "ELEVATION": 850, "GTOPO30": 889, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281, "POP1955": 439, "POP1960": 635, "POP1965": 954, "POP1970": 1341, "POP1975": 1709, "POP1980": 1891, "POP1985": 2213, "POP1990": 2561, "POP1995": 2842, "POP2000": 3179, "POP2005": 3572, "POP2010": 3716, "POP2015": 3908, "POP2020": 4178, "POP2025": 4403, "POP2050": 4589, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 32.860107, 39.926588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Capital of both", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ISO_A2": "CY", "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300, "MAX_POP20": 224300, "MAX_POP50": 224300, "MAX_POP300": 224300, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 128, "MAX_AREAKM": 128, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 109, "MIN_PERMI": 68, "MAX_PERMI": 68, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 200452, "ELEVATION": 0, "GTOPO30": 128, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123, "MAX_POP20": 15091561, "MAX_POP50": 29872827, "MAX_POP300": 30682197, "MAX_POP310": 30696820, "MAX_NATSCA": 300, "MIN_AREAKM": 1479, "MAX_AREAKM": 4900, "MIN_AREAMI": 571, "MAX_AREAMI": 1892, "MIN_PERKM": 1365, "MAX_PERKM": 5010, "MIN_PERMI": 848, "MAX_PERMI": 3113, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 7734614, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494, "POP1955": 3029, "POP1960": 3680, "POP1965": 4738, "POP1970": 5585, "POP1975": 6450, "POP1980": 7349, "POP1985": 8328, "POP1990": 9061, "POP1995": 9707, "POP2000": 10534, "POP2005": 11487, "POP2010": 11893, "POP2015": 12503, "POP2020": 13465, "POP2025": 14451, "POP2050": 15561, "CITYALT": "Cairo", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 31.245117, 30.050077 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "While Jerulsale", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568, "MAX_POP20": 2324568, "MAX_POP50": 2324568, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 436, "MAX_AREAKM": 436, "MIN_AREAMI": 168, "MAX_AREAMI": 168, "MIN_PERKM": 386, "MAX_PERKM": 386, "MIN_PERMI": 240, "MAX_PERMI": 240, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5, "GN_POP": 378358, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418, "POP1955": 556, "POP1960": 738, "POP1965": 882, "POP1970": 1029, "POP1975": 1206, "POP1980": 1416, "POP1985": 1681, "POP1990": 2026, "POP1995": 2442, "POP2000": 2752, "POP2005": 3012, "POP2010": 3112, "POP2015": 3256, "POP2020": 3453, "POP2025": 3600, "POP2050": 3726, "CITYALT": "Tel Aviv-Jaffa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 34.771729, 32.082575 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125, "MAX_POP20": 1712468, "MAX_POP50": 1740692, "MAX_POP300": 1740692, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 429, "MAX_AREAKM": 471, "MIN_AREAMI": 166, "MAX_AREAMI": 182, "MIN_PERKM": 403, "MAX_PERKM": 457, "MIN_PERMI": 251, "MAX_PERMI": 284, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 1916100, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322, "POP1955": 425, "POP1960": 561, "POP1965": 733, "POP1970": 923, "POP1975": 1500, "POP1980": 1623, "POP1985": 1585, "POP1990": 1293, "POP1995": 1268, "POP2000": 1487, "POP2005": 1777, "POP2010": 1846, "POP2015": 1941, "POP2020": 2051, "POP2025": 2119, "POP2050": 2173, "CITYALT": "Beirut", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649, "MAX_POP20": 3865606, "MAX_POP50": 3865606, "MAX_POP300": 3865606, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 532, "MAX_AREAKM": 705, "MIN_AREAMI": 205, "MAX_AREAMI": 272, "MIN_PERKM": 608, "MAX_PERKM": 768, "MIN_PERMI": 378, "MAX_PERMI": 477, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367, "POP1955": 461, "POP1960": 579, "POP1965": 727, "POP1970": 914, "POP1975": 1122, "POP1980": 1376, "POP1985": 1546, "POP1990": 1691, "POP1995": 1849, "POP2000": 2044, "POP2005": 2330, "POP2010": 2466, "POP2015": 2675, "POP2020": 2981, "POP2025": 3293, "POP2050": 3605, "CITYALT": "Damascus", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 36.298828, 33.504759 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.187267 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782, "MAX_POP20": 1073782, "MAX_POP50": 1073782, "MAX_POP300": 1073782, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 246, "MIN_AREAMI": 95, "MAX_AREAMI": 95, "MIN_PERKM": 239, "MAX_PERKM": 239, "MIN_PERMI": 149, "MAX_PERMI": 149, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6, "GN_POP": 714000, "ELEVATION": 0, "GTOPO30": 795, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 35.211182, 31.774878 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138, "MAX_POP20": 3684787, "MAX_POP50": 3684787, "MAX_POP300": 3684787, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 403, "MAX_AREAKM": 545, "MIN_AREAMI": 156, "MAX_AREAMI": 210, "MIN_PERKM": 258, "MAX_PERKM": 361, "MIN_PERMI": 160, "MAX_PERMI": 224, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1275857, "ELEVATION": 0, "GTOPO30": 765, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90, "POP1955": 140, "POP1960": 218, "POP1965": 299, "POP1970": 388, "POP1975": 500, "POP1980": 636, "POP1985": 736, "POP1990": 851, "POP1995": 973, "POP2000": 1007, "POP2005": 1042, "POP2010": 1060, "POP2015": 1106, "POP2020": 1185, "POP2025": 1268, "POP2050": 1359, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309, "MAX_POP20": 2395309, "MAX_POP50": 2395309, "MAX_POP300": 4542697, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 348, "MAX_AREAKM": 630, "MIN_AREAMI": 134, "MAX_AREAMI": 243, "MIN_PERKM": 237, "MAX_PERKM": 424, "MIN_PERMI": 147, "MAX_PERMI": 263, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29, "GN_POP": 1974647, "ELEVATION": 0, "GTOPO30": 378, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183, "POP1955": 252, "POP1960": 347, "POP1965": 477, "POP1970": 657, "POP1975": 886, "POP1980": 1164, "POP1985": 1611, "POP1990": 2360, "POP1995": 3242, "POP2000": 3949, "POP2005": 4518, "POP2010": 4754, "POP2015": 5185, "POP2020": 6077, "POP2025": 7017, "POP2050": 7937, "CITYALT": "Khartoum", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 32.530518, 15.591293 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": 0, "CAPALT": 1, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975, "MAX_POP20": 111975, "MAX_POP50": 111975, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 30, "MAX_PERKM": 30, "MIN_PERMI": 18, "MAX_PERMI": 18, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 551, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802, "MAX_POP20": 620802, "MAX_POP50": 620802, "MAX_POP300": 620802, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 90, "MAX_AREAKM": 90, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 93, "MAX_PERKM": 93, "MIN_PERMI": 58, "MAX_PERMI": 58, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 563930, "ELEVATION": 0, "GTOPO30": 2360, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 38.935547, 15.337167 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001, "MAX_POP20": 335001, "MAX_POP50": 335001, "MAX_POP300": 335001, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 42, "MAX_AREAKM": 42, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 623891, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 43.143311, 11.598432 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087, "MAX_POP20": 3176486, "MAX_POP50": 3491912, "MAX_POP300": 3450173, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 462, "MAX_AREAKM": 1182, "MIN_AREAMI": 178, "MAX_AREAMI": 457, "MIN_PERKM": 397, "MAX_PERKM": 1325, "MIN_PERMI": 247, "MAX_PERMI": 823, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 2757729, "ELEVATION": 0, "GTOPO30": 2363, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392, "POP1955": 451, "POP1960": 519, "POP1965": 597, "POP1970": 729, "POP1975": 926, "POP1980": 1175, "POP1985": 1476, "POP1990": 1791, "POP1995": 2157, "POP2000": 2493, "POP2005": 2902, "POP2010": 3100, "POP2015": 3453, "POP2020": 4184, "POP2025": 5083, "POP2050": 6156, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 38.693848, 9.037003 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ISO_A2": "-99", "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018, "MAX_POP20": 247018, "MAX_POP50": 247018, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 40, "MAX_AREAKM": 40, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 37, "MAX_PERKM": 37, "MIN_PERMI": 23, "MAX_PERMI": 23, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20, "GN_POP": 477876, "ELEVATION": 0, "GTOPO30": 1247, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 26 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.916483 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 34 }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official, legis", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489, "MAX_POP20": 708489, "MAX_POP50": 2312867, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 195, "MAX_AREAKM": 710, "MIN_AREAMI": 75, "MAX_AREAMI": 274, "MIN_PERKM": 217, "MAX_PERKM": 764, "MIN_PERMI": 135, "MAX_PERMI": 475, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11, "GN_POP": 474292, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 4.273682, 52.079506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902, "MAX_POP20": 1072902, "MAX_POP50": 1108173, "MAX_POP300": 1108173, "MAX_POP310": 1108173, "MAX_NATSCA": 300, "MIN_AREAKM": 275, "MAX_AREAKM": 300, "MIN_AREAMI": 106, "MAX_AREAMI": 116, "MIN_PERKM": 293, "MAX_PERKM": 343, "MIN_PERMI": 182, "MAX_PERMI": 213, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 741636, "ELEVATION": 0, "GTOPO30": -2, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851, "POP1955": 871, "POP1960": 895, "POP1965": 942, "POP1970": 927, "POP1975": 978, "POP1980": 941, "POP1985": 907, "POP1990": 936, "POP1995": 988, "POP2000": 1005, "POP2005": 1023, "POP2010": 1031, "POP2015": 1044, "POP2020": 1064, "POP2025": 1078, "POP2050": 1089, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 35 }, "geometry": { "type": "Point", "coordinates": [ 4.910889, 52.348763 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840, "MAX_POP20": 1874437, "MAX_POP50": 3576473, "MAX_POP300": 3576473, "MAX_POP310": 3576473, "MAX_NATSCA": 300, "MIN_AREAKM": 900, "MAX_AREAKM": 2344, "MIN_AREAMI": 347, "MAX_AREAMI": 905, "MIN_PERKM": 997, "MAX_PERKM": 2982, "MIN_PERMI": 620, "MAX_PERMI": 1853, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1019022, "ELEVATION": 0, "GTOPO30": 48, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415, "POP1955": 1449, "POP1960": 1485, "POP1965": 1525, "POP1970": 1568, "POP1975": 1610, "POP1980": 1654, "POP1985": 1654, "POP1990": 1680, "POP1995": 1715, "POP2000": 1733, "POP2005": 1742, "POP2010": 1743, "POP2015": 1744, "POP2020": 1744, "POP2025": 1744, "POP2050": 1744, "CITYALT": "Brussels", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 31 }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260, "MAX_POP20": 107260, "MAX_POP50": 107260, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 60, "MAX_AREAKM": 60, "MIN_AREAMI": 23, "MAX_AREAMI": 23, "MIN_PERKM": 71, "MAX_PERKM": 71, "MIN_PERMI": 44, "MAX_PERMI": 44, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 76684, "ELEVATION": 0, "GTOPO30": 259, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "รŽle-de-France", "ISO_A2": "FR", "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172, "MAX_POP20": 7970513, "MAX_POP50": 9960588, "MAX_POP300": 9960588, "MAX_POP310": 9960588, "MAX_NATSCA": 300, "MIN_AREAKM": 1121, "MAX_AREAKM": 2415, "MIN_AREAMI": 433, "MAX_AREAMI": 932, "MIN_PERKM": 542, "MAX_PERKM": 1891, "MIN_PERMI": 337, "MAX_PERMI": 1175, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 11177, "ELEVATION": 0, "GTOPO30": 228, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522, "POP1955": 6796, "POP1960": 7411, "POP1965": 7968, "POP1970": 8350, "POP1975": 8558, "POP1980": 8669, "POP1985": 8956, "POP1990": 9330, "POP1995": 9510, "POP2000": 9692, "POP2005": 9852, "POP2010": 9904, "POP2015": 9958, "POP2020": 10007, "POP2025": 10031, "POP2050": 10036, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 41 }, "geometry": { "type": "Point", "coordinates": [ 2.329102, 48.871941 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ISO_A2": "AD", "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998, "MAX_POP20": 53998, "MAX_POP50": 53998, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 23, "MAX_AREAKM": 23, "MIN_AREAMI": 9, "MAX_AREAMI": 9, "MIN_PERKM": 49, "MAX_PERKM": 49, "MIN_PERMI": 31, "MAX_PERMI": 31, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52, "GN_POP": 7890, "ELEVATION": 0, "GTOPO30": 687, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 1.516113, 42.496403 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Genรจve", "ISO_A2": "CH", "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422, "MAX_POP20": 530422, "MAX_POP50": 530422, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 179, "MAX_AREAKM": 179, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 215, "MAX_PERKM": 215, "MIN_PERMI": 134, "MAX_PERMI": 134, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 183981, "ELEVATION": 0, "GTOPO30": 375, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 33 }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329, "MAX_POP20": 275329, "MAX_POP50": 275329, "MAX_POP300": 275329, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 78, "MAX_AREAKM": 78, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 121631, "ELEVATION": 0, "GTOPO30": 527, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ISO_A2": "LI", "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442, "MAX_POP20": 45442, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 45, "MAX_AREAKM": 45, "MIN_AREAMI": 17, "MAX_AREAMI": 17, "MIN_PERKM": 90, "MAX_PERKM": 90, "MIN_PERMI": 56, "MAX_PERMI": 56, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 5197, "ELEVATION": 0, "GTOPO30": 711, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.137425 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ISO_A2": "MC", "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543, "MAX_POP20": 108543, "MAX_POP50": 108543, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 36, "MAX_AREAKM": 36, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 57, "MAX_PERKM": 57, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1020, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kรธbenhavn", "NAMEPAR": "Copenhagen", "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425, "MEGANAME": "Kรธbenhavn", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323, "MAX_POP20": 1230007, "MAX_POP50": 1256924, "MAX_POP300": 1256924, "MAX_POP310": 1256924, "MAX_NATSCA": 300, "MIN_AREAKM": 438, "MAX_AREAKM": 577, "MIN_AREAMI": 169, "MAX_AREAMI": 223, "MIN_PERKM": 348, "MAX_PERKM": 542, "MIN_PERMI": 216, "MAX_PERMI": 337, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 1153615, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216, "POP1955": 1227, "POP1960": 1284, "POP1965": 1373, "POP1970": 1380, "POP1975": 1172, "POP1980": 1096, "POP1985": 1056, "POP1990": 1035, "POP1995": 1048, "POP2000": 1077, "POP2005": 1085, "POP2010": 1085, "POP2015": 1087, "POP2020": 1092, "POP2025": 1095, "POP2050": 1096, "CITYALT": "Copenhagen", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 30 }, "geometry": { "type": "Point", "coordinates": [ 12.557373, 55.677584 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014, "MAX_POP20": 3093307, "MAX_POP50": 3503466, "MAX_POP300": 3503466, "MAX_POP310": 3503466, "MAX_NATSCA": 300, "MIN_AREAKM": 811, "MAX_AREAKM": 1021, "MIN_AREAMI": 313, "MAX_AREAMI": 394, "MIN_PERKM": 482, "MAX_PERKM": 709, "MIN_PERMI": 300, "MAX_PERMI": 441, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16, "GN_POP": 3426354, "ELEVATION": 74, "GTOPO30": 35, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352, "POP1955": 3299, "POP1960": 3260, "POP1965": 3232, "POP1970": 3206, "POP1975": 3130, "POP1980": 3056, "POP1985": 3060, "POP1990": 3422, "POP1995": 3471, "POP2000": 3384, "POP2005": 3391, "POP2010": 3406, "POP2015": 3423, "POP2020": 3434, "POP2025": 3436, "POP2050": 3436, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 36 }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771, "MAX_POP20": 1115771, "MAX_POP50": 1115771, "MAX_POP300": 1115771, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 317, "MAX_AREAKM": 317, "MIN_AREAMI": 122, "MAX_AREAMI": 122, "MIN_PERKM": 249, "MAX_PERKM": 249, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2087, "ELEVATION": 308, "GTOPO30": 306, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935, "POP1955": 967, "POP1960": 1001, "POP1965": 1038, "POP1970": 1076, "POP1975": 1126, "POP1980": 1179, "POP1985": 1197, "POP1990": 1212, "POP1995": 1194, "POP2000": 1172, "POP2005": 1164, "POP2010": 1162, "POP2015": 1160, "POP2020": 1159, "POP2025": 1159, "POP2050": 1159, "CITYALT": "Prague", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 28 }, "geometry": { "type": "Point", "coordinates": [ 14.468994, 50.085344 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "LATITUDE": 52.250001, "LONGITUDE": 21, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163, "MAX_POP20": 2129163, "MAX_POP50": 2129163, "MAX_POP300": 2129163, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 802, "MAX_AREAKM": 802, "MIN_AREAMI": 310, "MAX_AREAMI": 310, "MIN_PERKM": 759, "MAX_PERKM": 759, "MIN_PERMI": 471, "MAX_PERMI": 471, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78, "GN_POP": 1702139, "ELEVATION": 0, "GTOPO30": 94, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768, "POP1955": 942, "POP1960": 1119, "POP1965": 1212, "POP1970": 1300, "POP1975": 1444, "POP1980": 1565, "POP1985": 1596, "POP1990": 1628, "POP1995": 1652, "POP2000": 1666, "POP2005": 1693, "POP2010": 1707, "POP2015": 1724, "POP2020": 1735, "POP2025": 1736, "POP2050": 1736, "CITYALT": "Warsaw", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 27 }, "geometry": { "type": "Point", "coordinates": [ 20.994873, 52.254709 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335, "MAX_POP20": 1610331, "MAX_POP50": 1610331, "MAX_POP300": 1610331, "MAX_POP310": 1610331, "MAX_NATSCA": 300, "MIN_AREAKM": 488, "MAX_AREAKM": 533, "MIN_AREAMI": 189, "MAX_AREAMI": 206, "MIN_PERKM": 444, "MAX_PERKM": 497, "MIN_PERMI": 276, "MAX_PERMI": 309, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1691468, "ELEVATION": 171, "GTOPO30": 164, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086, "POP1955": 2087, "POP1960": 2089, "POP1965": 2080, "POP1970": 2070, "POP1975": 2059, "POP1980": 2049, "POP1985": 2069, "POP1990": 2096, "POP1995": 2127, "POP2000": 2158, "POP2005": 2264, "POP2010": 2315, "POP2015": 2385, "POP2020": 2451, "POP2025": 2476, "POP2050": 2496, "CITYALT": "Vienna", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 37 }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807, "MAX_POP20": 314807, "MAX_POP50": 314807, "MAX_POP300": 314807, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 208, "MAX_PERKM": 208, "MIN_PERMI": 129, "MAX_PERMI": 129, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46, "MAX_BBYMIN": 46, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61, "GN_POP": 255115, "ELEVATION": 0, "GTOPO30": 284, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 46.057985 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526, "MAX_POP20": 722526, "MAX_POP50": 722526, "MAX_POP300": 722526, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 244, "MAX_AREAKM": 244, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 223, "MAX_PERKM": 223, "MIN_PERMI": 138, "MAX_PERMI": 138, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21, "GN_POP": 698966, "ELEVATION": 0, "GTOPO30": 131, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 15.996094, 45.798170 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ISO_A2": "SM", "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088, "MAX_POP20": 29579, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 30, "MAX_AREAKM": 30, "MIN_AREAMI": 11, "MAX_AREAMI": 11, "MIN_PERKM": 63, "MAX_PERKM": 63, "MIN_PERMI": 39, "MAX_PERMI": 39, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44, "MAX_BBYMAX": 44, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 29000, "ELEVATION": 0, "GTOPO30": 377, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.937462 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762, "MAX_POP20": 636762, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 20, "MIN_AREAKM": 177, "MAX_AREAKM": 177, "MIN_AREAMI": 68, "MAX_AREAMI": 68, "MIN_PERKM": 160, "MAX_PERKM": 160, "MIN_PERMI": 99, "MAX_PERMI": 99, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 826, "ELEVATION": 0, "GTOPO30": 17, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900, "MAX_POP20": 2143900, "MAX_POP50": 2666328, "MAX_POP300": 2666328, "MAX_POP310": 2666328, "MAX_NATSCA": 300, "MIN_AREAKM": 505, "MAX_AREAKM": 683, "MIN_AREAMI": 195, "MAX_AREAMI": 264, "MIN_PERKM": 382, "MAX_PERKM": 500, "MIN_PERMI": 238, "MAX_PERMI": 311, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 35452, "ELEVATION": 187, "GTOPO30": 183, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884, "POP1955": 2143, "POP1960": 2456, "POP1965": 2780, "POP1970": 3135, "POP1975": 3300, "POP1980": 3390, "POP1985": 3429, "POP1990": 3450, "POP1995": 3425, "POP2000": 3385, "POP2005": 3348, "POP2010": 3339, "POP2015": 3333, "POP2020": 3330, "POP2025": 3330, "POP2050": 3330, "CITYALT": "Rome", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 40 }, "geometry": { "type": "Point", "coordinates": [ 12.480469, 41.894100 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavskรฝ", "ISO_A2": "SK", "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687, "MAX_POP20": 373687, "MAX_POP50": 373687, "MAX_POP300": 373687, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 113, "MAX_AREAKM": 113, "MIN_AREAMI": 43, "MAX_AREAMI": 43, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 423737, "ELEVATION": 0, "GTOPO30": 132, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 17.116699, 48.151428 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020, "MAX_POP20": 1788020, "MAX_POP50": 1788020, "MAX_POP300": 1788020, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 556, "MAX_AREAKM": 556, "MIN_AREAMI": 215, "MAX_AREAMI": 215, "MIN_PERKM": 460, "MAX_PERKM": 460, "MIN_PERMI": 286, "MAX_PERMI": 286, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1696128, "ELEVATION": 0, "GTOPO30": 100, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618, "POP1955": 1714, "POP1960": 1811, "POP1965": 1878, "POP1970": 1946, "POP1975": 2005, "POP1980": 2057, "POP1985": 2036, "POP1990": 2005, "POP1995": 1893, "POP2000": 1787, "POP2005": 1693, "POP2010": 1679, "POP2015": 1664, "POP2020": 1655, "POP2025": 1655, "POP2050": 1655, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 24 }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902, "MAX_POP20": 628902, "MAX_POP50": 628902, "MAX_POP300": 628902, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 112, "MAX_PERKM": 112, "MIN_PERMI": 70, "MAX_PERMI": 70, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 696731, "ELEVATION": 0, "GTOPO30": 545, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 23 }, "geometry": { "type": "Point", "coordinates": [ 18.380127, 43.850374 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850, "MAX_POP20": 145850, "MAX_POP50": 145850, "MAX_POP300": 145850, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 27, "MAX_PERMI": 27, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 136473, "ELEVATION": 0, "GTOPO30": 58, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613, "MAX_POP20": 1291613, "MAX_POP50": 1291613, "MAX_POP300": 1291613, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 209, "MAX_AREAKM": 209, "MIN_AREAMI": 81, "MAX_AREAMI": 81, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 114, "MAX_PERMI": 114, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1273651, "ELEVATION": 0, "GTOPO30": 90, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411, "POP1955": 501, "POP1960": 576, "POP1965": 649, "POP1970": 729, "POP1975": 873, "POP1980": 1057, "POP1985": 1121, "POP1990": 1162, "POP1995": 1149, "POP2000": 1127, "POP2005": 1106, "POP2010": 1099, "POP2015": 1096, "POP2020": 1108, "POP2025": 1132, "POP2050": 1163, "CITYALT": "Belgrade", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrรซs", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361, "MAX_POP20": 265361, "MAX_POP50": 265361, "MAX_POP300": 265361, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 41, "MAX_AREAKM": 41, "MIN_AREAMI": 16, "MAX_AREAMI": 16, "MIN_PERKM": 69, "MAX_PERKM": 69, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1, "GN_POP": 550000, "ELEVATION": 0, "GTOPO30": 668, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087, "MAX_POP20": 494087, "MAX_POP50": 494087, "MAX_POP300": 494087, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 114, "MAX_AREAKM": 114, "MIN_AREAMI": 44, "MAX_AREAMI": 44, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 474889, "ELEVATION": 0, "GTOPO30": 246, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 21.434326, 42.000325 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233, "MAX_POP20": 852233, "MAX_POP50": 852233, "MAX_POP300": 852233, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 513, "MAX_AREAKM": 513, "MIN_AREAMI": 198, "MAX_AREAMI": 198, "MIN_PERKM": 550, "MAX_PERKM": 550, "MIN_PERMI": 342, "MAX_PERMI": 342, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 558457, "ELEVATION": 0, "GTOPO30": 23, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366, "POP1955": 405, "POP1960": 448, "POP1965": 478, "POP1970": 507, "POP1975": 582, "POP1980": 674, "POP1985": 724, "POP1990": 872, "POP1995": 943, "POP2000": 1019, "POP2005": 1094, "POP2010": 1115, "POP2015": 1139, "POP2020": 1169, "POP2025": 1195, "POP2050": 1220, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 29 }, "geometry": { "type": "Point", "coordinates": [ 24.927979, 60.179770 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027, "MAX_POP20": 340027, "MAX_POP50": 340027, "MAX_POP300": 340027, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 130, "MAX_AREAKM": 130, "MIN_AREAMI": 50, "MAX_AREAMI": 50, "MIN_PERKM": 164, "MAX_PERKM": 164, "MIN_PERMI": 102, "MAX_PERMI": 102, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 394024, "ELEVATION": 0, "GTOPO30": 22, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033, "MAX_POP20": 705033, "MAX_POP50": 705033, "MAX_POP300": 705033, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 171, "MAX_AREAKM": 171, "MIN_AREAMI": 66, "MAX_AREAMI": 66, "MIN_PERKM": 173, "MAX_PERKM": 173, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25, "GN_POP": 742572, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029, "MAX_POP20": 507029, "MAX_POP50": 507029, "MAX_POP300": 507029, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 126, "MAX_AREAKM": 126, "MIN_AREAMI": 49, "MAX_AREAMI": 49, "MIN_PERKM": 162, "MAX_PERKM": 162, "MIN_PERMI": 101, "MAX_PERMI": 101, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65, "GN_POP": 542366, "ELEVATION": 0, "GTOPO30": 125, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138, "MAX_POP20": 1577138, "MAX_POP50": 1577138, "MAX_POP300": 1577138, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 211, "MAX_AREAKM": 211, "MIN_AREAMI": 82, "MAX_AREAMI": 82, "MIN_PERKM": 196, "MAX_PERKM": 196, "MIN_PERMI": 122, "MAX_PERMI": 122, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1742124, "ELEVATION": 0, "GTOPO30": 199, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284, "POP1955": 414, "POP1960": 551, "POP1965": 719, "POP1970": 932, "POP1975": 1120, "POP1980": 1318, "POP1985": 1474, "POP1990": 1607, "POP1995": 1649, "POP2000": 1700, "POP2005": 1775, "POP2010": 1805, "POP2015": 1846, "POP2020": 1879, "POP2025": 1883, "POP2050": 1883, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 27.564697, 53.904338 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508, "MAX_POP20": 1662508, "MAX_POP50": 1662508, "MAX_POP300": 1662508, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 120, "MAX_PERKM": 120, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 2514227, "ELEVATION": 0, "GTOPO30": 169, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815, "POP1955": 974, "POP1960": 1163, "POP1965": 1389, "POP1970": 1655, "POP1975": 1926, "POP1980": 2201, "POP1985": 2410, "POP1990": 2574, "POP1995": 2590, "POP2000": 2606, "POP2005": 2672, "POP2010": 2709, "POP2015": 2748, "POP2020": 2770, "POP2025": 2772, "POP2050": 2772, "CITYALT": "Kiev", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 32 }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827, "MAX_POP20": 874827, "MAX_POP50": 874827, "MAX_POP300": 874827, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 217, "MAX_AREAKM": 217, "MIN_AREAMI": 84, "MAX_AREAMI": 84, "MIN_PERKM": 174, "MAX_PERKM": 174, "MIN_PERMI": 108, "MAX_PERMI": 108, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42, "GN_POP": 1152556, "ELEVATION": 0, "GTOPO30": 558, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522, "POP1955": 616, "POP1960": 708, "POP1965": 806, "POP1970": 888, "POP1975": 977, "POP1980": 1074, "POP1985": 1181, "POP1990": 1191, "POP1995": 1168, "POP2000": 1128, "POP2005": 1166, "POP2010": 1185, "POP2015": 1212, "POP2020": 1233, "POP2025": 1236, "POP2050": 1236, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 23.312988, 42.682435 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194, "MAX_POP20": 1742194, "MAX_POP50": 1742194, "MAX_POP300": 1742194, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 357, "MAX_PERKM": 357, "MIN_PERMI": 222, "MAX_PERMI": 222, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 1877155, "ELEVATION": 0, "GTOPO30": 71, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652, "POP1955": 856, "POP1960": 1002, "POP1965": 1154, "POP1970": 1396, "POP1975": 1702, "POP1980": 1865, "POP1985": 1950, "POP1990": 2040, "POP1995": 2018, "POP2000": 1949, "POP2005": 1936, "POP2010": 1942, "POP2015": 1947, "POP2020": 1949, "POP2025": 1949, "POP2050": 1949, "CITYALT": "Bucharest", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 25 }, "geometry": { "type": "Point", "coordinates": [ 26.092529, 44.433780 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134, "MAX_POP20": 688134, "MAX_POP50": 688134, "MAX_POP300": 688134, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 109, "MAX_AREAKM": 109, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 85, "MAX_PERKM": 85, "MIN_PERMI": 53, "MAX_PERMI": 53, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57, "GN_POP": 635994, "ELEVATION": 0, "GTOPO30": 52, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 38 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.104191 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015, "MAX_POP20": 11030955, "MAX_POP50": 11547877, "MAX_POP300": 11547877, "MAX_POP310": 11547877, "MAX_NATSCA": 300, "MIN_AREAKM": 1434, "MAX_AREAKM": 1639, "MIN_AREAMI": 554, "MAX_AREAMI": 633, "MIN_PERKM": 875, "MAX_PERKM": 1135, "MIN_PERMI": 544, "MAX_PERMI": 705, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356, "POP1955": 5749, "POP1960": 6170, "POP1965": 6622, "POP1970": 7106, "POP1975": 7623, "POP1980": 8136, "POP1985": 8580, "POP1990": 8987, "POP1995": 9201, "POP2000": 10016, "POP2005": 10416, "POP2010": 10452, "POP2015": 10495, "POP2020": 10524, "POP2025": 10526, "POP2050": 10526, "CITYALT": "Moscow", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 39 }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.730330 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087, "MAX_POP20": 1581475, "MAX_POP50": 1581475, "MAX_POP300": 1581475, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 246, "MAX_AREAKM": 249, "MIN_AREAMI": 95, "MAX_AREAMI": 96, "MIN_PERKM": 174, "MAX_PERKM": 179, "MIN_PERMI": 108, "MAX_PERMI": 111, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9, "GN_POP": 1116513, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897, "POP1955": 940, "POP1960": 1005, "POP1965": 1132, "POP1970": 1274, "POP1975": 1429, "POP1980": 1574, "POP1985": 1660, "POP1990": 1733, "POP1995": 1766, "POP2000": 1806, "POP2005": 1867, "POP2010": 1892, "POP2015": 1931, "POP2020": 2006, "POP2025": 2097, "POP2050": 2187, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 49.855957, 40.396764 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981, "MAX_POP20": 8258981, "MAX_POP50": 8258981, "MAX_POP300": 8258981, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 496, "MAX_AREAKM": 496, "MIN_AREAMI": 191, "MAX_AREAMI": 191, "MIN_PERKM": 245, "MAX_PERKM": 245, "MIN_PERMI": 152, "MAX_PERMI": 152, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 7153309, "ELEVATION": 0, "GTOPO30": 1149, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041, "POP1955": 1396, "POP1960": 1873, "POP1965": 2511, "POP1970": 3290, "POP1975": 4273, "POP1980": 5079, "POP1985": 5839, "POP1990": 6365, "POP1995": 6687, "POP2000": 7128, "POP2005": 7653, "POP2010": 7873, "POP2015": 8221, "POP2020": 8832, "POP2025": 9404, "POP2050": 9814, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952, "MAX_POP20": 2142805, "MAX_POP50": 2142805, "MAX_POP300": 2142805, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 264, "MAX_AREAKM": 366, "MIN_AREAMI": 102, "MAX_AREAMI": 141, "MIN_PERKM": 162, "MAX_PERKM": 249, "MIN_PERMI": 101, "MAX_PERMI": 155, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 60064, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63, "POP1955": 106, "POP1960": 179, "POP1965": 303, "POP1970": 553, "POP1975": 688, "POP1980": 891, "POP1985": 1122, "POP1990": 1392, "POP1995": 1190, "POP2000": 1499, "POP2005": 1888, "POP2010": 2063, "POP2015": 2305, "POP2020": 2592, "POP2025": 2790, "POP2050": 2956, "CITYALT": "Kuwait", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753, "MAX_POP20": 5322753, "MAX_POP50": 5322753, "MAX_POP300": 5322753, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 854, "MAX_AREAKM": 854, "MIN_AREAMI": 330, "MAX_AREAMI": 330, "MIN_PERKM": 459, "MAX_PERKM": 459, "MIN_PERMI": 285, "MAX_PERMI": 285, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10, "GN_POP": 4205961, "ELEVATION": 0, "GTOPO30": 618, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111, "POP1955": 131, "POP1960": 156, "POP1965": 227, "POP1970": 408, "POP1975": 710, "POP1980": 1055, "POP1985": 1566, "POP1990": 2325, "POP1995": 3035, "POP2000": 3567, "POP2005": 4193, "POP2010": 4465, "POP2015": 4856, "POP2020": 5405, "POP2025": 5866, "POP2050": 6275, "CITYALT": "Riyadh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 46.768799, 24.647017 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ISO_A2": "BH", "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920, "MAX_POP20": 563920, "MAX_POP50": 563920, "MAX_POP300": 563920, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 178, "MAX_AREAKM": 178, "MIN_AREAMI": 69, "MAX_AREAMI": 69, "MIN_PERKM": 184, "MAX_PERKM": 184, "MIN_PERMI": 115, "MAX_PERMI": 115, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 147074, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310, "MAX_POP20": 731310, "MAX_POP50": 731310, "MAX_POP300": 731310, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 270, "MAX_AREAKM": 270, "MIN_AREAMI": 104, "MAX_AREAMI": 104, "MIN_PERKM": 205, "MAX_PERKM": 205, "MIN_PERMI": 127, "MAX_PERMI": 127, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 344939, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251, "MAX_POP20": 2244726, "MAX_POP50": 2244726, "MAX_POP300": 2244726, "MAX_POP310": 2244726, "MAX_NATSCA": 300, "MIN_AREAKM": 187, "MAX_AREAKM": 407, "MIN_AREAMI": 72, "MAX_AREAMI": 157, "MIN_PERKM": 158, "MAX_PERKM": 278, "MIN_PERMI": 98, "MAX_PERMI": 173, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3, "GN_POP": 1137347, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20, "POP1955": 28, "POP1960": 40, "POP1965": 51, "POP1970": 80, "POP1975": 167, "POP1980": 254, "POP1985": 345, "POP1990": 473, "POP1995": 650, "POP2000": 938, "POP2005": 1272, "POP2010": 1379, "POP2015": 1516, "POP2020": 1709, "POP2025": 1894, "POP2050": 2077, "CITYALT": "Dubai", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 55.283203, 25.234758 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230, "MAX_POP20": 560230, "MAX_POP50": 560230, "MAX_POP300": 560230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 96, "MAX_AREAKM": 96, "MIN_AREAMI": 37, "MAX_AREAMI": 37, "MIN_PERKM": 87, "MAX_PERKM": 87, "MIN_PERMI": 54, "MAX_PERMI": 54, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 603492, "ELEVATION": 0, "GTOPO30": 14, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982, "MAX_POP20": 589324, "MAX_POP50": 589324, "MAX_POP300": 589324, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 128, "MIN_AREAMI": 42, "MAX_AREAMI": 49, "MIN_PERKM": 109, "MAX_PERKM": 144, "MIN_PERMI": 68, "MAX_PERMI": 90, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 727700, "ELEVATION": 0, "GTOPO30": 219, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 58.381348, 37.952861 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861, "MAX_POP20": 586861, "MAX_POP50": 586861, "MAX_POP300": 586861, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6, "GN_POP": 797000, "ELEVATION": 0, "GTOPO30": 69, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 58.590088, 23.614329 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388, "MAX_POP20": 875388, "MAX_POP50": 875388, "MAX_POP300": 875388, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 99, "MAX_AREAKM": 99, "MIN_AREAMI": 38, "MAX_AREAMI": 38, "MIN_PERKM": 68, "MAX_PERKM": 68, "MIN_PERMI": 43, "MAX_PERMI": 43, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2, "MAX_BBYMIN": 2, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2587183, "ELEVATION": 0, "GTOPO30": 39, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69, "POP1955": 73, "POP1960": 94, "POP1965": 146, "POP1970": 272, "POP1975": 445, "POP1980": 551, "POP1985": 747, "POP1990": 1035, "POP1995": 1147, "POP2000": 1201, "POP2005": 1415, "POP2010": 1100, "POP2015": 1500, "POP2020": 1794, "POP2025": 2142, "POP2050": 2529, "CITYALT": "Mogadishu", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244, "MAX_POP20": 1086244, "MAX_POP50": 1086244, "MAX_POP300": 1086244, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 415, "MAX_AREAKM": 415, "MIN_AREAMI": 160, "MAX_AREAMI": 160, "MIN_PERKM": 411, "MAX_PERKM": 411, "MIN_PERMI": 255, "MAX_PERMI": 255, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 543107, "ELEVATION": 0, "GTOPO30": 808, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 68.774414, 38.556757 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671, "MAX_POP20": 3720671, "MAX_POP50": 4803365, "MAX_POP300": 4793793, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 594, "MAX_AREAKM": 1471, "MIN_AREAMI": 229, "MAX_AREAMI": 568, "MIN_PERKM": 409, "MAX_PERKM": 1100, "MIN_PERMI": 254, "MAX_PERMI": 683, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 3043532, "ELEVATION": 0, "GTOPO30": 1808, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129, "POP1955": 184, "POP1960": 263, "POP1965": 369, "POP1970": 472, "POP1975": 674, "POP1980": 978, "POP1985": 1160, "POP1990": 1306, "POP1995": 1616, "POP2000": 1963, "POP2005": 2994, "POP2010": 3277, "POP2015": 3768, "POP2020": 4730, "POP2025": 5836, "POP2050": 7175, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356, "MAX_POP20": 742356, "MAX_POP50": 7482035, "MAX_POP300": 7482969, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 772, "MAX_AREAKM": 5463, "MIN_AREAMI": 298, "MAX_AREAMI": 2109, "MIN_PERKM": 545, "MAX_PERKM": 4154, "MIN_PERMI": 339, "MAX_PERMI": 2581, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 601600, "ELEVATION": 0, "GTOPO30": 497, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36, "POP1955": 41, "POP1960": 45, "POP1965": 56, "POP1970": 70, "POP1975": 107, "POP1980": 189, "POP1985": 260, "POP1990": 343, "POP1995": 452, "POP2000": 594, "POP2005": 732, "POP2010": 780, "POP2015": 851, "POP2020": 988, "POP2025": 1148, "POP2050": 1320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047, "MAX_POP20": 13414375, "MAX_POP50": 32426336, "MAX_POP300": 32424761, "MAX_POP310": 224908923, "MAX_NATSCA": 300, "MIN_AREAKM": 864, "MAX_AREAKM": 186559, "MIN_AREAMI": 334, "MAX_AREAMI": 72030, "MIN_PERKM": 244, "MAX_PERKM": 130296, "MIN_PERMI": 152, "MAX_PERMI": 80962, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.27294500000001, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 317797, "ELEVATION": 0, "GTOPO30": 205, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.603814 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222, "MAX_POP20": 2297630, "MAX_POP50": 2297630, "MAX_POP300": 2297630, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 233, "MAX_AREAKM": 580, "MIN_AREAMI": 90, "MAX_AREAMI": 224, "MIN_PERKM": 228, "MAX_PERKM": 511, "MIN_PERMI": 142, "MAX_PERMI": 318, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1442271, "ELEVATION": 1317, "GTOPO30": 1304, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104, "POP1955": 110, "POP1960": 119, "POP1965": 132, "POP1970": 147, "POP1975": 180, "POP1980": 225, "POP1985": 297, "POP1990": 398, "POP1995": 509, "POP2000": 644, "POP2005": 815, "POP2010": 895, "POP2015": 1029, "POP2020": 1284, "POP2025": 1578, "POP2050": 1907, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 85.319824, 27.722436 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 22 }, "geometry": { "type": "Point", "coordinates": [ 88.319092, 22.492257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908, "MAX_POP20": 20149761, "MAX_POP50": 20149761, "MAX_POP300": 20149761, "MAX_POP310": 20149761, "MAX_NATSCA": 300, "MIN_AREAKM": 442, "MAX_AREAKM": 1479, "MIN_AREAMI": 171, "MAX_AREAMI": 571, "MIN_PERKM": 244, "MAX_PERKM": 1021, "MIN_PERMI": 152, "MAX_PERMI": 634, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16, "GN_POP": 12691836, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857, "POP1955": 3432, "POP1960": 4060, "POP1965": 4854, "POP1970": 5811, "POP1975": 7082, "POP1980": 8658, "POP1985": 10341, "POP1990": 12308, "POP1995": 14111, "POP2000": 16086, "POP2005": 18202, "POP2010": 18978, "POP2015": 20072, "POP2020": 21946, "POP2025": 24051, "POP2050": 26385, "CITYALT": "Bombay", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 21 }, "geometry": { "type": "Point", "coordinates": [ 72.850342, 19.020577 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096, "MAX_POP20": 8181096, "MAX_POP50": 8553953, "MAX_POP300": 8553953, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2443, "MAX_AREAKM": 2836, "MIN_AREAMI": 943, "MAX_AREAMI": 1095, "MIN_PERKM": 1908, "MAX_PERKM": 2412, "MIN_PERMI": 1186, "MAX_PERMI": 1499, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19, "GN_POP": 5104047, "ELEVATION": 920, "GTOPO30": 914, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746, "POP1955": 939, "POP1960": 1166, "POP1965": 1377, "POP1970": 1615, "POP1975": 2111, "POP1980": 2812, "POP1985": 3395, "POP1990": 4036, "POP1995": 4744, "POP2000": 5567, "POP2005": 6465, "POP2010": 6787, "POP2015": 7229, "POP2020": 7967, "POP2025": 8795, "POP2050": 9719, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ISO_A2": "MV", "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927, "MAX_POP20": 112927, "MAX_POP50": 112927, "MAX_POP300": 112927, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17, "GN_POP": 2138, "ELEVATION": 0, "GTOPO30": 672, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.171115 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto, admin", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418, "MAX_POP20": 2742979, "MAX_POP50": 2742979, "MAX_POP300": 9759831, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1054, "MAX_AREAKM": 6238, "MIN_AREAMI": 407, "MAX_AREAMI": 2408, "MIN_PERKM": 847, "MAX_PERKM": 5343, "MIN_PERMI": 526, "MAX_PERMI": 3320, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18, "GN_POP": 217000, "ELEVATION": 0, "GTOPO30": 927, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 79.859619, 6.937333 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Legislative cap", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383, "MAX_POP20": 3439184, "MAX_POP50": 4689795, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 1265, "MAX_AREAKM": 2843, "MIN_AREAMI": 488, "MAX_AREAMI": 1098, "MIN_PERKM": 1148, "MAX_PERKM": 2388, "MIN_PERMI": 713, "MAX_PERMI": 1484, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36, "GN_POP": 115826, "ELEVATION": 0, "GTOPO30": 35, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.904614 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212, "MAX_POP20": 804212, "MAX_POP50": 804212, "MAX_POP300": 804212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 245, "MAX_AREAKM": 245, "MIN_AREAMI": 94, "MAX_AREAMI": 94, "MIN_PERKM": 190, "MAX_PERKM": 190, "MIN_PERMI": 118, "MAX_PERMI": 118, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43, "MAX_BBYMAX": 43, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 900000, "ELEVATION": 0, "GTOPO30": 772, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150, "POP1955": 186, "POP1960": 236, "POP1965": 322, "POP1970": 433, "POP1975": 485, "POP1980": 538, "POP1985": 583, "POP1990": 635, "POP1995": 703, "POP2000": 770, "POP2005": 817, "POP2010": 837, "POP2015": 869, "POP2020": 934, "POP2025": 1011, "POP2050": 1096, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 74.586182, 42.875964 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEALT": "รœrรผmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102, "MEGANAME": "รœrรผmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046, "MAX_POP20": 2066046, "MAX_POP50": 2066046, "MAX_POP300": 2066046, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 361, "MAX_AREAKM": 361, "MIN_AREAMI": 139, "MAX_AREAMI": 139, "MIN_PERKM": 318, "MAX_PERKM": 318, "MIN_PERMI": 198, "MAX_PERMI": 198, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13, "GN_POP": 1508225, "ELEVATION": 0, "GTOPO30": 915, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253, "POP1955": 312, "POP1960": 384, "POP1965": 472, "POP1970": 581, "POP1975": 715, "POP1980": 881, "POP1985": 1029, "POP1990": 1161, "POP1995": 1417, "POP2000": 1730, "POP2005": 2025, "POP2010": 2151, "POP2015": 2340, "POP2020": 2620, "POP2025": 2851, "POP2050": 3038, "CITYALT": "Urumqi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.810747 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 10 }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 15 }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.675715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824, "MAX_POP20": 194824, "MAX_POP50": 194824, "MAX_POP300": 194824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 149, "MAX_PERKM": 149, "MIN_PERMI": 93, "MAX_PERMI": 93, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 57, "POP2010": 930, "POP2015": 1024, "POP2020": 1177, "POP2025": 1321, "POP2050": 1461, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": 0, "CAPALT": 0, "CAPIN": "Former capital", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820, "MAX_POP20": 3301820, "MAX_POP50": 3301820, "MAX_POP300": 3301820, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 345, "MAX_AREAKM": 345, "MIN_AREAMI": 133, "MAX_AREAMI": 133, "MIN_PERKM": 199, "MAX_PERKM": 199, "MIN_PERMI": 123, "MAX_PERMI": 123, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17, "GN_POP": 4477638, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302, "POP1955": 1440, "POP1960": 1592, "POP1965": 1760, "POP1970": 1946, "POP1975": 2151, "POP1980": 2378, "POP1985": 2629, "POP1990": 2907, "POP1995": 3213, "POP2000": 3553, "POP2005": 3928, "POP2010": 4088, "POP2015": 4348, "POP2020": 4841, "POP2025": 5361, "POP2050": 5869, "CITYALT": "Rangoon", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 11 }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600, "MAX_POP20": 8823534, "MAX_POP50": 9210939, "MAX_POP300": 9206246, "MAX_POP310": 9206246, "MAX_NATSCA": 300, "MIN_AREAKM": 815, "MAX_AREAKM": 2350, "MIN_AREAMI": 315, "MAX_AREAMI": 908, "MIN_PERKM": 280, "MAX_PERKM": 1354, "MIN_PERMI": 174, "MAX_PERMI": 841, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 5104476, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360, "POP1955": 1712, "POP1960": 2151, "POP1965": 2584, "POP1970": 3110, "POP1975": 3842, "POP1980": 4723, "POP1985": 5279, "POP1990": 5888, "POP1995": 6106, "POP2000": 6332, "POP2005": 6582, "POP2010": 6704, "POP2015": 6918, "POP2020": 7332, "POP2025": 7807, "POP2050": 8332, "CITYALT": "Bangkok", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 12 }, "geometry": { "type": "Point", "coordinates": [ 100.513916, 13.752725 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927, "MAX_POP20": 471927, "MAX_POP50": 570348, "MAX_POP300": 570348, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 166, "MAX_AREAKM": 243, "MIN_AREAMI": 64, "MAX_AREAMI": 94, "MIN_PERKM": 170, "MAX_PERKM": 283, "MIN_PERMI": 106, "MAX_PERMI": 176, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27, "GN_POP": 196731, "ELEVATION": 0, "GTOPO30": 174, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEALT": "Hร  Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Thรกi Nguyรชn", "ISO_A2": "VN", "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130, "MEGANAME": "Hร  Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806, "MAX_POP20": 7346227, "MAX_POP50": 16406759, "MAX_POP300": 23700631, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2512, "MAX_AREAKM": 14049, "MIN_AREAMI": 970, "MAX_AREAMI": 5424, "MIN_PERKM": 1175, "MAX_PERKM": 10267, "MIN_PERMI": 730, "MAX_PERMI": 6380, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44, "GN_POP": 1431270, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280, "POP1955": 425, "POP1960": 644, "POP1965": 917, "POP1970": 1307, "POP1975": 1884, "POP1980": 2606, "POP1985": 2854, "POP1990": 3126, "POP1995": 3424, "POP2000": 3752, "POP2005": 4170, "POP2010": 4378, "POP2015": 4723, "POP2020": 5357, "POP2025": 6036, "POP2050": 6754, "CITYALT": "Hanoi", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEALT": "Phnum Pรฉnh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306, "MEGANAME": "Phnum Pรฉnh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977, "MAX_POP20": 1551977, "MAX_POP50": 1551977, "MAX_POP300": 1551977, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 464, "MAX_AREAKM": 464, "MIN_AREAMI": 179, "MAX_AREAMI": 179, "MIN_PERKM": 703, "MAX_PERKM": 703, "MIN_PERMI": 437, "MAX_PERMI": 437, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105, "MAX_BBXMAX": 105, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1573544, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364, "POP1955": 376, "POP1960": 389, "POP1965": 436, "POP1970": 900, "POP1975": 100, "POP1980": 238, "POP1985": 427, "POP1990": 615, "POP1995": 836, "POP2000": 1160, "POP2005": 1363, "POP2010": 1466, "POP2015": 1651, "POP2020": 2028, "POP2025": 2457, "POP2050": 2911, "CITYALT": "Phnom Penh", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 104.919434, 11.555380 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official and le", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755, "MAX_POP20": 2750755, "MAX_POP50": 3468789, "MAX_POP300": 4983714, "MAX_POP310": 4983714, "MAX_NATSCA": 300, "MIN_AREAKM": 666, "MAX_AREAKM": 1700, "MIN_AREAMI": 257, "MAX_AREAMI": 657, "MIN_PERKM": 350, "MAX_PERKM": 1111, "MIN_PERMI": 217, "MAX_PERMI": 690, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 1453975, "ELEVATION": 0, "GTOPO30": 62, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208, "POP1955": 281, "POP1960": 344, "POP1965": 394, "POP1970": 451, "POP1975": 645, "POP1980": 921, "POP1985": 1016, "POP1990": 1120, "POP1995": 1213, "POP2000": 1306, "POP2005": 1405, "POP2010": 1448, "POP2015": 1519, "POP2020": 1670, "POP2025": 1820, "POP2050": 1938, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 9 }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.173425 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607, "MAX_POP20": 964830, "MAX_POP50": 1651113, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 486, "MAX_AREAKM": 805, "MIN_AREAMI": 188, "MAX_AREAMI": 311, "MIN_PERKM": 467, "MAX_PERKM": 737, "MIN_PERMI": 290, "MAX_PERMI": 458, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17, "GN_POP": 50000, "ELEVATION": 0, "GTOPO30": 30, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 2.910125 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 19 }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861, "MAX_POP20": 11120470, "MAX_POP50": 16510327, "MAX_POP300": 23647944, "MAX_POP310": 137121250, "MAX_NATSCA": 300, "MIN_AREAKM": 2512, "MAX_AREAKM": 118844, "MIN_AREAMI": 970, "MAX_AREAMI": 45886, "MIN_PERKM": 1837, "MAX_PERKM": 93615, "MIN_PERMI": 1141, "MAX_PERMI": 58169, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22, "GN_POP": 7480601, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331, "POP1955": 4628, "POP1960": 4945, "POP1965": 5284, "POP1970": 5646, "POP1975": 6034, "POP1980": 6448, "POP1985": 6890, "POP1990": 7362, "POP1995": 8486, "POP2000": 9782, "POP2005": 10717, "POP2010": 11106, "POP2015": 11741, "POP2020": 12842, "POP2025": 13807, "POP2050": 14545, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 17 }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.935013 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ISO_A2": "HK", "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579, "MAX_POP20": 15779579, "MAX_POP50": 16718429, "MAX_POP300": 16718429, "MAX_POP310": 42594594, "MAX_NATSCA": 300, "MIN_AREAKM": 202, "MAX_AREAKM": 10661, "MIN_AREAMI": 78, "MAX_AREAMI": 4116, "MIN_PERKM": 219, "MAX_PERKM": 7493, "MIN_PERMI": 136, "MAX_PERMI": 4656, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7012738, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682, "POP1955": 2121, "POP1960": 2620, "POP1965": 3191, "POP1970": 3458, "POP1975": 3943, "POP1980": 4609, "POP1985": 5070, "POP1990": 5677, "POP1995": 6206, "POP2000": 6662, "POP2005": 7057, "POP2010": 7206, "POP2015": 7419, "POP2020": 7744, "POP2025": 8040, "POP2050": 8305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 20 }, "geometry": { "type": "Point", "coordinates": [ 114.180908, 22.309426 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884, "MAX_POP20": 16172884, "MAX_POP50": 26630672, "MAX_POP300": 26631586, "MAX_POP310": 40576904, "MAX_NATSCA": 300, "MIN_AREAKM": 3792, "MAX_AREAKM": 16400, "MIN_AREAMI": 1464, "MAX_AREAMI": 6332, "MIN_PERKM": 2219, "MAX_PERKM": 12342, "MIN_PERMI": 1379, "MAX_PERMI": 7669, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23, "GN_POP": 14608512, "ELEVATION": 0, "GTOPO30": 6, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066, "POP1955": 6299, "POP1960": 6542, "POP1965": 6793, "POP1970": 7055, "POP1975": 7326, "POP1980": 7608, "POP1985": 7901, "POP1990": 8205, "POP1995": 10423, "POP2000": 13243, "POP2005": 14503, "POP2010": 14987, "POP2015": 15789, "POP2020": 17214, "POP2025": 18466, "POP2050": 19412, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 18 }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.222197 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742, "MAX_POP20": 8275696, "MAX_POP50": 8647783, "MAX_POP300": 9212245, "MAX_POP310": 9212245, "MAX_NATSCA": 300, "MIN_AREAKM": 536, "MAX_AREAKM": 1708, "MIN_AREAMI": 207, "MAX_AREAMI": 660, "MIN_PERKM": 288, "MAX_PERKM": 1087, "MIN_PERMI": 179, "MAX_PERMI": 675, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3, "GN_POP": 7871900, "ELEVATION": 0, "GTOPO30": 10, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604, "POP1955": 760, "POP1960": 955, "POP1965": 1230, "POP1970": 1741, "POP1975": 2023, "POP1980": 2217, "POP1985": 2446, "POP1990": 2711, "POP1995": 2676, "POP2000": 2640, "POP2005": 2606, "POP2010": 2603, "POP2015": 2651, "POP2020": 2862, "POP2025": 3104, "POP2050": 3305, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 16 }, "geometry": { "type": "Point", "coordinates": [ 121.563721, 25.035839 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797, "MAX_POP20": 2498797, "MAX_POP50": 2498797, "MAX_POP300": 2498797, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 446, "MAX_AREAKM": 447, "MIN_AREAMI": 172, "MAX_AREAMI": 173, "MIN_PERKM": 510, "MAX_PERKM": 511, "MIN_PERMI": 317, "MAX_PERMI": 318, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 3222000, "ELEVATION": 0, "GTOPO30": 13, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516, "POP1955": 577, "POP1960": 646, "POP1965": 769, "POP1970": 987, "POP1975": 1348, "POP1980": 1842, "POP1985": 2195, "POP1990": 2526, "POP1995": 2838, "POP2000": 3117, "POP2005": 3265, "POP2010": 3300, "POP2015": 3346, "POP2020": 3434, "POP2025": 3537, "POP2050": 3630, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.019184 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855, "MAX_POP20": 13143622, "MAX_POP50": 21387676, "MAX_POP300": 21991959, "MAX_POP310": 21991959, "MAX_NATSCA": 300, "MIN_AREAKM": 971, "MAX_AREAKM": 2718, "MIN_AREAMI": 375, "MAX_AREAMI": 1049, "MIN_PERKM": 546, "MAX_PERKM": 1901, "MIN_PERMI": 340, "MAX_PERMI": 1181, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 10349312, "ELEVATION": 0, "GTOPO30": 46, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021, "POP1955": 1553, "POP1960": 2361, "POP1965": 3452, "POP1970": 5312, "POP1975": 6808, "POP1980": 8258, "POP1985": 9547, "POP1990": 10544, "POP1995": 10256, "POP2000": 9917, "POP2005": 9825, "POP2010": 9796, "POP2015": 9762, "POP2020": 9740, "POP2025": 9738, "POP2050": 9738, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 13 }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.570705 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824, "MAX_POP20": 447824, "MAX_POP50": 447824, "MAX_POP300": 447824, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 34, "MAX_AREAMI": 34, "MIN_PERKM": 78, "MAX_PERKM": 78, "MIN_PERMI": 48, "MAX_PERMI": 48, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 272714, "ELEVATION": 0, "GTOPO30": 1448, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 120.574951, 16.425548 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Official, de fa", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575, "MAX_POP20": 3077575, "MAX_POP50": 3077575, "MAX_POP300": 23366503, "MAX_POP310": 26749011, "MAX_NATSCA": 300, "MIN_AREAKM": 67, "MAX_AREAKM": 8820, "MIN_AREAMI": 26, "MAX_AREAMI": 3405, "MIN_PERKM": 46, "MAX_PERKM": 5298, "MIN_PERMI": 29, "MAX_PERMI": 3292, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 10444527, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544, "POP1955": 1872, "POP1960": 2274, "POP1965": 2829, "POP1970": 3534, "POP1975": 4999, "POP1980": 5955, "POP1985": 6888, "POP1990": 7973, "POP1995": 9401, "POP2000": 9958, "POP2005": 10761, "POP2010": 11100, "POP2015": 11662, "POP2020": 12786, "POP2025": 13892, "POP2050": 14808, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 14 }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674, "MAX_POP20": 219674, "MAX_POP50": 219674, "MAX_POP300": 219674, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 145, "MAX_AREAKM": 145, "MIN_AREAMI": 56, "MAX_AREAMI": 56, "MIN_PERKM": 155, "MAX_PERKM": 155, "MIN_PERMI": 96, "MAX_PERMI": 96, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 64409, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 114.927979, 4.882994 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.459899 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 7 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.814124 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 8 }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032, "MAX_POP20": 244896, "MAX_POP50": 244896, "MAX_POP300": 244896, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 226, "MAX_AREAKM": 251, "MIN_AREAMI": 87, "MAX_AREAMI": 97, "MIN_PERKM": 175, "MAX_PERKM": 202, "MIN_PERMI": 109, "MAX_PERMI": 126, "MIN_BBXMIN": 149, "MAX_BBXMIN": 149, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 327700, "ELEVATION": 0, "GTOPO30": 609, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 149.128418, -35.281501 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328, "MAX_POP20": 76328, "MAX_POP50": 76328, "MAX_POP300": 76328, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 18, "MAX_AREAKM": 18, "MIN_AREAMI": 7, "MAX_AREAMI": 7, "MIN_PERKM": 33, "MAX_PERKM": 33, "MIN_PERMI": 21, "MAX_PERMI": 21, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 56298, "ELEVATION": 0, "GTOPO30": 12, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702, "MAX_POP20": 7702, "MAX_POP50": 7702, "MAX_POP300": 7702, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 7, "MAX_AREAKM": 7, "MIN_AREAMI": 3, "MAX_AREAMI": 3, "MIN_PERKM": 16, "MAX_PERKM": 16, "MIN_PERMI": 10, "MAX_PERMI": 10, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 35901, "ELEVATION": 0, "GTOPO30": 7, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 168.321533, -17.738223 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230, "MAX_POP20": 143230, "MAX_POP50": 143230, "MAX_POP300": 143230, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 53, "MAX_AREAKM": 53, "MIN_AREAMI": 20, "MAX_AREAMI": 20, "MIN_PERKM": 56, "MAX_PERKM": 56, "MIN_PERMI": 35, "MAX_PERMI": 35, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 77366, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020, "MAX_POP20": 354233, "MAX_POP50": 350364, "MAX_POP300": 638000, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 169, "MAX_AREAKM": 399, "MIN_AREAMI": 65, "MAX_AREAMI": 154, "MIN_PERKM": 105, "MAX_PERKM": 266, "MIN_PERMI": 65, "MAX_PERMI": 166, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 417910, "ELEVATION": 0, "GTOPO30": 26, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319, "POP1955": 387, "POP1960": 440, "POP1965": 532, "POP1970": 635, "POP1975": 729, "POP1980": 774, "POP1985": 812, "POP1990": 870, "POP1995": 976, "POP2000": 1063, "POP2005": 1189, "POP2010": 1245, "POP2015": 1321, "POP2020": 1398, "POP2025": 1441, "POP2050": 1475, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 6 }, "geometry": { "type": "Point", "coordinates": [ 174.759521, -36.844461 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka", "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 4 }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052, "MAX_POP20": 2520813, "MAX_POP50": 2520813, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 340, "MAX_AREAKM": 486, "MIN_AREAMI": 131, "MAX_AREAMI": 188, "MIN_PERKM": 130, "MAX_PERKM": 218, "MIN_PERMI": 81, "MAX_PERMI": 135, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22, "GN_POP": 1459640, "ELEVATION": 0, "GTOPO30": 86, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35, "UN_LONG": 135.75, "POP1950": 1002, "POP1955": 1091, "POP1960": 1165, "POP1965": 1229, "POP1970": 1298, "POP1975": 1622, "POP1980": 1701, "POP1985": 1714, "POP1990": 1760, "POP1995": 1804, "POP2000": 1806, "POP2005": 1805, "POP2010": 1805, "POP2015": 1804, "POP2020": 1804, "POP2025": 1804, "POP2050": 1804, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 3 }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.029996 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "De facto capita", "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740, "MAX_POP20": 24218878, "MAX_POP50": 31303497, "MAX_POP300": 31303497, "MAX_POP310": 31303497, "MAX_NATSCA": 300, "MIN_AREAKM": 2130, "MAX_AREAKM": 5750, "MIN_AREAMI": 823, "MAX_AREAMI": 2220, "MIN_PERKM": 838, "MAX_PERKM": 2284, "MIN_PERMI": 521, "MAX_PERMI": 1419, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40, "GN_POP": 8336599, "ELEVATION": 0, "GTOPO30": 40, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275, "POP1955": 13713, "POP1960": 16679, "POP1965": 20284, "POP1970": 23298, "POP1975": 26615, "POP1980": 28549, "POP1985": 30304, "POP1990": 32530, "POP1995": 33587, "POP2000": 34450, "POP2005": 35327, "POP2010": 35676, "POP2015": 36094, "POP2020": 36371, "POP2025": 36399, "POP2050": 36400, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 5 }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.684072 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ISO_A2": "FM", "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412, "MAX_POP20": 412, "MAX_POP50": 412, "MAX_POP300": 412, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1, "MAX_AREAKM": 1, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 4, "MAX_PERKM": 4, "MIN_PERMI": 2, "MAX_PERMI": 2, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 4645, "ELEVATION": 0, "GTOPO30": 159, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 0 }, "geometry": { "type": "Point", "coordinates": [ 158.148193, 6.915521 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ISO_A2": "MH", "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084, "MAX_POP20": 2084, "MAX_POP50": 2084, "MAX_POP300": 2084, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3, "MAX_AREAKM": 3, "MIN_AREAMI": 1, "MAX_AREAMI": 1, "MIN_PERKM": 7, "MAX_PERKM": 7, "MIN_PERMI": 5, "MAX_PERMI": 5, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 20500, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 1 }, "geometry": { "type": "Point", "coordinates": [ 171.375732, 7.100893 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0, "accum": 1, "accum2": 1, "tippecanoe:retain_points_multiplier_first": true, "tippecanoe:retain_points_multiplier_sequence": 2 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } +] } +] } +] } diff --git a/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--maximum-tile-features_10_--drop-densest-as-needed.json b/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--maximum-tile-features_10_--drop-densest-as-needed.json new file mode 100644 index 000000000..b616b12c0 --- /dev/null +++ b/tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--maximum-tile-features_10_--drop-densest-as-needed.json @@ -0,0 +1,337 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-175.220564,-41.299973,179.216647,64.150023", +"bounds": "-175.220564,-41.299973,179.216647,64.150023", +"center": "-157.500000,-20.489949,3", +"description": "tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--maximum-tile-features_10_--drop-densest-as-needed.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--maximum-tile-features_10_--drop-densest-as-needed.json.check.mbtiles -z3 -r1 --limit-tile-feature-count 3 --maximum-tile-features 10 --drop-densest-as-needed tests/ne_110m_populated_places/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":3,\"fields\":{\"ADM0CAP\":\"Number\",\"ADM0NAME\":\"String\",\"ADM0_A3\":\"String\",\"ADM1NAME\":\"String\",\"ADMIN1_COD\":\"Number\",\"CAPALT\":\"Number\",\"CAPIN\":\"String\",\"CHANGED\":\"Number\",\"CHECKME\":\"Number\",\"CITYALT\":\"String\",\"COMPARE\":\"Number\",\"DIFFASCII\":\"Number\",\"DIFFNOTE\":\"String\",\"ELEVATION\":\"Number\",\"FEATURECLA\":\"String\",\"FEATURE_CL\":\"String\",\"FEATURE_CO\":\"String\",\"GEONAMEID\":\"Number\",\"GEONAMESNO\":\"String\",\"GN_ASCII\":\"String\",\"GN_POP\":\"Number\",\"GTOPO30\":\"Number\",\"ISO_A2\":\"String\",\"LABELRANK\":\"Number\",\"LATITUDE\":\"Number\",\"LONGITUDE\":\"Number\",\"LS_MATCH\":\"Number\",\"LS_NAME\":\"String\",\"MAX_AREAKM\":\"Number\",\"MAX_AREAMI\":\"Number\",\"MAX_BBXMAX\":\"Number\",\"MAX_BBXMIN\":\"Number\",\"MAX_BBYMAX\":\"Number\",\"MAX_BBYMIN\":\"Number\",\"MAX_NATSCA\":\"Number\",\"MAX_PERKM\":\"Number\",\"MAX_PERMI\":\"Number\",\"MAX_POP10\":\"Number\",\"MAX_POP20\":\"Number\",\"MAX_POP300\":\"Number\",\"MAX_POP310\":\"Number\",\"MAX_POP50\":\"Number\",\"MEAN_BBXC\":\"Number\",\"MEAN_BBYC\":\"Number\",\"MEGACITY\":\"Number\",\"MEGANAME\":\"String\",\"MIN_AREAKM\":\"Number\",\"MIN_AREAMI\":\"Number\",\"MIN_BBXMAX\":\"Number\",\"MIN_BBXMIN\":\"Number\",\"MIN_BBYMAX\":\"Number\",\"MIN_BBYMIN\":\"Number\",\"MIN_PERKM\":\"Number\",\"MIN_PERMI\":\"Number\",\"NAME\":\"String\",\"NAMEALT\":\"String\",\"NAMEASCII\":\"String\",\"NAMEDIFF\":\"Number\",\"NAMEPAR\":\"String\",\"NATSCALE\":\"Number\",\"POP1950\":\"Number\",\"POP1955\":\"Number\",\"POP1960\":\"Number\",\"POP1965\":\"Number\",\"POP1970\":\"Number\",\"POP1975\":\"Number\",\"POP1980\":\"Number\",\"POP1985\":\"Number\",\"POP1990\":\"Number\",\"POP1995\":\"Number\",\"POP2000\":\"Number\",\"POP2005\":\"Number\",\"POP2010\":\"Number\",\"POP2015\":\"Number\",\"POP2020\":\"Number\",\"POP2025\":\"Number\",\"POP2050\":\"Number\",\"POP_MAX\":\"Number\",\"POP_MIN\":\"Number\",\"POP_OTHER\":\"Number\",\"RANK_MAX\":\"Number\",\"RANK_MIN\":\"Number\",\"SCALERANK\":\"Number\",\"SOV0NAME\":\"String\",\"SOV_A3\":\"String\",\"TIMEZONE\":\"String\",\"UN_ADM0\":\"String\",\"UN_FID\":\"Number\",\"UN_LAT\":\"Number\",\"UN_LONG\":\"Number\",\"WORLDCITY\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":243,\"geometry\":\"Point\",\"attributeCount\":91,\"attributes\":[{\"attribute\":\"ADM0CAP\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"ADM0NAME\",\"count\":198,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"France\",\"Gabon\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hong Kong S.A.R.\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kiribati\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\",\"Lebanon\",\"Lesotho\",\"Liberia\",\"Libya\",\"Liechtenstein\",\"Lithuania\"]},{\"attribute\":\"ADM0_A3\",\"count\":198,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HKG\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\"]},{\"attribute\":\"ADM1NAME\",\"count\":204,\"type\":\"string\",\"values\":[\"Abu Dhabi\",\"Ad Dawhah\",\"Addis Ababa\",\"Ahal\",\"Al Kuwayt\",\"Al Qahirah\",\"Alger\",\"Amanat Al Asimah\",\"Amman\",\"Ankara\",\"Anseba\",\"Antananarivo\",\"Aqmola\",\"Ar Riyad\",\"Asunciรณn\",\"Attiki\",\"Auckland\",\"Australian Capital Territory\",\"Baghdad\",\"Baki\",\"Bamako\",\"Banaadir\",\"Bangkok Metropolis\",\"Bangui\",\"Banjul\",\"Beijing\",\"Beirut\",\"Benguet\",\"Berlin\",\"Bern\",\"Bhaktapur\",\"Bioko Norte\",\"Bishkek\",\"Bissau\",\"Bogota\",\"Bratislavskรฝ\",\"British Columbia\",\"Brunei and Muara\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Bujumbura Mairie\",\"California\",\"Cayo\",\"Centar\",\"Central\",\"Central Equatoria\",\"Centre\",\"Chisinau\",\"Chuquisaca\",\"Ciudad de Buenos Aires\",\"Ciudad de la Habana\",\"Colombo\",\"Colorado\",\"Comunidad de Madrid\",\"Conakry\",\"Dakar\",\"Damascus\",\"Dar-Es-Salaam\",\"Delhi\",\"Dhaka\",\"Dili\",\"District of Columbia\",\"Distrito Capital\",\"Distrito Federal\",\"Distrito Nacional\",\"Djibouti\",\"Dodoma\",\"Dubay\",\"Dublin\",\"Durrรซs\",\"East Berbice-Corentyne\",\"Erevan\",\"Estuaire\",\"F.C.T.\",\"Federal Capital Territory\",\"Florida\",\"Francisco Morazรกn\",\"Gauteng\",\"Genรจve\",\"Georgia\",\"Grad Beograd\",\"Grad Sofiya\",\"Grad Zagreb\",\"Grand Casablanca\",\"Greater Accra\",\"Guadalcanal\",\"Guatemala\",\"Hadjer-Lamis\",\"Harare\",\"Harju\",\"Hhohho\",\"Hovedstaden\",\"Illinois\",\"Istanbul\",\"Jakarta Raya\",\"Jerusalem\",\"Kabul\",\"Kadiogo\",\"Kampala\"]},{\"attribute\":\"ADMIN1_COD\",\"count\":53,\"type\":\"number\",\"values\":[0,1,10,11,12,13,14,15,16,17,18,19,2,20,21,22,23,24,25,26,27,28,29,3,30,32,33,34,36,37,38,39,4,40,42,44,45,49,5,50,52,53,57,6,61,65,68,7,78,8,81,82,9],\"min\":0,\"max\":82},{\"attribute\":\"CAPALT\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"CAPIN\",\"count\":20,\"type\":\"string\",\"values\":[\"Administrative\",\"Capital of both\",\"Claimed as capi\",\"Claimed as inte\",\"De facto capita\",\"De facto, admin\",\"Former capital\",\"Judicial capita\",\"Legislative and\",\"Legislative cap\",\"Offical capital\",\"Official (const\",\"Official and ad\",\"Official and le\",\"Official capita\",\"Official, admin\",\"Official, de fa\",\"Official, legis\",\"UN Headquarters\",\"While Jerulsale\"]},{\"attribute\":\"CHANGED\",\"count\":7,\"type\":\"number\",\"values\":[0,1,20,3,4,40,5],\"min\":0,\"max\":40},{\"attribute\":\"CHECKME\",\"count\":2,\"type\":\"number\",\"values\":[0,5],\"min\":0,\"max\":5},{\"attribute\":\"CITYALT\",\"count\":53,\"type\":\"string\",\"values\":[\"Algiers\",\"Asuncion\",\"Athens\",\"Bangkok\",\"Beirut\",\"Belgrade\",\"Bogota\",\"Bombay\",\"Brasilia\",\"Brussels\",\"Bucharest\",\"Cairo\",\"Calcutta\",\"Casablanca\",\"Copenhagen\",\"Damascus\",\"Denver\",\"Dubai\",\"Guatemala\",\"Hanoi\",\"Havana\",\"Khartoum\",\"Kiev\",\"Kuwait\",\"Lisbon\",\"Lome\",\"Los Angeles\",\"Mexico City\",\"Mogadishu\",\"Moscow\",\"Ndjamena\",\"New York\",\"Osaka\",\"Ottawa\",\"Panama\",\"Phnom Penh\",\"Prague\",\"Rangoon\",\"Riyadh\",\"Rome\",\"San Francisco\",\"San Jose\",\"Sanaa\",\"Sao Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Tripoli\",\"Urumqi\",\"Valparaiso\",\"Vienna\",\"Warsaw\",\"Washington D.C.\",\"Yaounde\"]},{\"attribute\":\"COMPARE\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFASCII\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"DIFFNOTE\",\"count\":12,\"type\":\"string\",\"values\":[\"Added place.\",\"Changed country.\",\"Changed feature class.\",\"Changed feature class. Changed scale rank.\",\"Changed feature to Admin-0 region capital.\",\"Changed scale rank.\",\"Corrected coordinates.\",\"Location adjusted.\",\"Location adjusted. Changed scale rank.\",\"Name changed.\",\"Name changed. Changed scale rank.\",\"Population from GeoNames. Changed scale rank.\"]},{\"attribute\":\"ELEVATION\",\"count\":19,\"type\":\"number\",\"values\":[0,10,1317,16,171,179,187,2,2320,284,308,320,5,7,70,74,850,89,920],\"min\":0,\"max\":2320},{\"attribute\":\"FEATURECLA\",\"count\":6,\"type\":\"string\",\"values\":[\"Admin-0 capital\",\"Admin-0 capital alt\",\"Admin-0 region capital\",\"Admin-1 capital\",\"Admin-1 region capital\",\"Populated place\"]},{\"attribute\":\"FEATURE_CL\",\"count\":1,\"type\":\"string\",\"values\":[\"P\"]},{\"attribute\":\"FEATURE_CO\",\"count\":4,\"type\":\"string\",\"values\":[\"PPL\",\"PPLA\",\"PPLC\",\"PPLG\"]},{\"attribute\":\"GEONAMEID\",\"count\":242,\"type\":\"number\",\"values\":[-1,1018725,1040652,1070940,108410,112931,1138958,1176615,1185241,1221874,1238992,1252416,1261481,1275004,1275339,1277333,1283240,1298824,146268,1512569,1526273,1528675,1529102,1559804,1581130,160196,160263,1609350,162183,1642911,1645457,1651944,1668341,1690681,1701668,170654,1728930,1730025,1735161,1796236,1815286,1816670,1819729,1820906,1821306,1835848,184745,1850147,1853909,1857910,1871859,1880252,202061,2028462,2075807,2081986,2088122,2108502,2110079,2110394,2113779,2135171,2144168,2147714,2158177,2172517,2193733,2198148,2220957,223817,2240449,2253354,2260535,2267057,2274895,2279755,2293538,2306104,2309527,2314302,2322794,232422,2357048,2365267,2374775,2377450,2389853,2392087,2394819,2399697,2408770,241131,2413876,2422465,2427123,2440485,2460596,2462881,2464470,250441],\"min\":-1,\"max\":6942553},{\"attribute\":\"GEONAMESNO\",\"count\":8,\"type\":\"string\",\"values\":[\"GeoNames match general + researched.\",\"GeoNames match general.\",\"GeoNames match with ascii name + lat + long whole numbers.\",\"GeoNames rough area, rough name, requires further research.\",\"GeoNames rough area, rough name.\",\"GeoNames spatial join with similar names only.\",\"Geonames ascii name + lat.d + long.d matching.\",\"No GeoNames match due to small population, not in GeoNames, or poor NEV placement.\"]},{\"attribute\":\"GN_ASCII\",\"count\":239,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Bengaluru\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Den Haag\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Ejbei Uad el Aabd\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneve\",\"Georgetown\",\"Guatemala City\",\"Ha Noi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\"]},{\"attribute\":\"GN_POP\",\"count\":236,\"type\":\"number\",\"values\":[0,10021295,1019022,1020,1024027,10349312,10356500,10444527,1049498,1086505,1093485,1116513,11174257,11177,1122874,11285654,113364,1137347,113906,1152556,1153615,115826,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1273651,1275857,1284609,12920,1297281,1299369,13076300,13381,1353189,136473,13768,1391433,1399814,1431270,1442271,1453975,1459640,14608512,147074,150000,1508225,1536,1542813,155226,155963,1573544,15938,1619438,162135,1655753,16571,1662,1691468,1696128,1702139,1724,1742124,1767200,180541,1815679,1837969,183981,1877155,188084,1916100,194530,1963264,196731,1974647,1977663,1978028,200452,2026469,20500,208411,2087,2138,2163824,217,217000,2207718,223757,22400,224838,227940,22881,229398,234168,235017,24226],\"min\":0,\"max\":14608512},{\"attribute\":\"GTOPO30\",\"count\":166,\"type\":\"number\",\"values\":[-2,-9999,0,1,10,100,1002,1006,1025,103,104,108,1092,11,110,111,1129,1149,115,1156,12,1206,1247,125,1277,128,1282,1289,1299,13,1304,131,132,133,1398,14,1448,1468,1481,1482,15,151,152,1533,156,1561,1568,159,16,164,169,17,1722,1724,173,174,1775,1808,181,183,19,199,2,20,2004,203,205,21,219,22,2216,224,228,23,235,2360,2363,24,2400,246,259,26,2620,2737,2759,2764,28,284,290,3,30,304,305,306,307,31,339,35,350,373],\"min\":-9999,\"max\":3829},{\"attribute\":\"ISO_A2\",\"count\":196,\"type\":\"string\",\"values\":[\"-99\",\"AD\",\"AE\",\"AF\",\"AG\",\"AL\",\"AM\",\"AO\",\"AR\",\"AT\",\"AU\",\"AZ\",\"BA\",\"BB\",\"BD\",\"BE\",\"BF\",\"BG\",\"BH\",\"BI\",\"BJ\",\"BN\",\"BO\",\"BR\",\"BS\",\"BT\",\"BW\",\"BY\",\"BZ\",\"CA\",\"CD\",\"CF\",\"CG\",\"CH\",\"CI\",\"CL\",\"CM\",\"CN\",\"CO\",\"CR\",\"CU\",\"CV\",\"CY\",\"CZ\",\"DE\",\"DJ\",\"DK\",\"DM\",\"DO\",\"DZ\",\"EC\",\"EE\",\"EG\",\"EH\",\"ER\",\"ES\",\"ET\",\"FI\",\"FJ\",\"FM\",\"FR\",\"GA\",\"GB\",\"GD\",\"GE\",\"GH\",\"GM\",\"GN\",\"GQ\",\"GR\",\"GT\",\"GW\",\"GY\",\"HK\",\"HN\",\"HR\",\"HT\",\"HU\",\"ID\",\"IE\",\"IL\",\"IN\",\"IQ\",\"IR\",\"IS\",\"IT\",\"JM\",\"JO\",\"JP\",\"KE\",\"KG\",\"KH\",\"KI\",\"KM\",\"KN\",\"KP\",\"KR\",\"KW\",\"KZ\",\"LA\"]},{\"attribute\":\"LABELRANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,5,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"LATITUDE\",\"count\":242,\"type\":\"number\",\"values\":[-0.214988,-1.283347,-1.95359,-11.704158,-12.048013,-13.841545,-13.983295,-15.416644,-15.78334,-16.497974,-17.73335,-17.81779,-18.133016,-18.916637,-19.040971,-20.166639,-21.138512,-22.570006,-22.925023,-23.55868,-24.646313,-25.296403,-25.706921,-25.955277,-26.170044999999999,-26.316651,-26.466667,-29.119994,-29.316674,-3.376087,-33.047764,-33.450014,-33.920011,-34.602502,-34.858042,-35.283029,-36.850013,-37.820031,-4.259186,-4.329724,-4.616632,-41.299974,-6.174418,-6.183306,-6.800013,-8.516652,-8.559388,-8.838286,-9.437994,-9.464708,0.316659,0.333402,0.385389,1.293033,1.338188,10.500999,10.651997,11.55003,11.595014,11.865024,12.052633,12.113097,12.153017,12.370316,12.650015,12.969995,13.102003,13.148279,13.453876,13.516706,13.710002,13.749999,14.001973,14.102045,14.604159,14.621135,14.715832,14.916698,15.301016,15.333339,15.354733,15.588078,16.429991,16.783354,17.118037,17.252034,17.30203,17.966693,17.977077,18.086427,18.470073,18.541025,19.01699,19.442442,19.766557,2.066681,2.91402,21.033327,22.304981,22.494969],\"min\":-41.299974,\"max\":64.150024},{\"attribute\":\"LONGITUDE\",\"count\":243,\"type\":\"number\",\"values\":[-0.116722,-0.216716,-1.524724,-10.804752,-100.329985,-104.984016,-118.179981,-122.459978,-123.121644,-13.200006,-13.234216,-13.680235,-15.598361,-15.97534,-16.591701,-17.47313,-171.738642,-175.220564,-21.950014,-23.516689,-3.683352,-4.040048,-43.225021,-46.62502,-47.916052,-5.275503,-55.167031,-56.171052,-57.641505,-58.167029,-58.397531,-59.616527,-6.248906,-6.836131,-61.000008,-61.212062,-61.387013,-61.517031,-61.741643,-61.850034,-62.717009,-65.259516,-66.917037,-68.149985,-69.900085,-7.616367,-70.667041,-71.621014,-72.336035,-73.980017,-74.083344,-75.700015,-76.767434,-77.009419,-77.050062,-77.350044,-78.500051,-79.420021,-79.533037,-8.000039,-80.224106,-82.364182,-84.084051,-84.399949,-86.268492,-87.217529,-87.750055,-88.767073,-89.203041,-9.144866,-9.652522,-90.526966,-95.339979,-99.130988,1.222757,1.516486,10.179678,10.749979,100.516645,101.699983,101.701947,102.59998,103.855821,104.070019,104.916634,105.850014,106.829438,106.916616,11.516651,114.185009,114.933284,116.388286,12.447808,12.46667,12.483258,12.563486,120.569943,120.982217,121.436505,121.568333],\"min\":-175.220564,\"max\":179.216647},{\"attribute\":\"LS_MATCH\",\"count\":3,\"type\":\"number\",\"values\":[0,1,2],\"min\":0,\"max\":2},{\"attribute\":\"LS_NAME\",\"count\":242,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens2\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Calcutta\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Copenhagen\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubayy\",\"Dublin2\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown1\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\"]},{\"attribute\":\"MAX_AREAKM\",\"count\":212,\"type\":\"number\",\"values\":[0,1,10,1021,103,104,105,106,10661,108,109,112,113,114,1182,118844,12,120,122,126,1275,128,130,131,1327,1332,1345,135,1373,14049,1409,141,143,145,1471,1472,1479,148,15,152,1554,157,16,160,1614,1639,16400,17,1700,1708,171,172,174,1748,177,178,179,18,181,183,184,186559,191,19435,195,197,2080,209,21,211,217,2286,23,2344,2350,236,237,2415,24244,243,244,2447,245,246,249,25,251,2667,27,270,2718,28,2836,2843,2861,2907,3,30,300,302],\"min\":0,\"max\":186559},{\"attribute\":\"MAX_AREAMI\",\"count\":181,\"type\":\"number\",\"values\":[0,1,10,1030,104,1049,1095,1098,11,1105,1122,116,117,1174,12,121,122,123,1235,126,13,130,133,1331,134,135,138,139,14,140,141,143,144,146,15,154,157,1578,16,160,162,165,166,168,169,17,173,174,176,179,180,182,183,1855,188,1892,191,19271,194,195,196,198,2,20,202,20591,206,209,21,210,2109,2148,215,2220,223,224,2241,227,229,23,2408,243,245,248,251,264,266,268,27,270,272,273,274,277,28,29,3,30,305,310],\"min\":0,\"max\":72030},{\"attribute\":\"MAX_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-1.433333,-10.658333,-100.125,-104.708333,-117.008333,-121.733333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.125,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.15,-46.108333,-47.783333,-5.216667,-55.1,-55.8,-57.316667,-57.816667,-58.116667,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.325,-72.033333,-72.716667,-74.008333,-75.45,-76.4,-76.733333,-76.833333,-77.258333,-78.291667,-78.608333,-79.4,-8.958333,-80.025,-82.208333,-83.858333,-83.975,-86.158333,-87.125,-87.141667,-88.75,-88.966667,-90.425,-95,-98.808333,0,0.033333,0.816667,1.483333,1.591667,10.575,101.016667,101.891667,102.816667,104,105,105.375,106.808333,107.041667,109.808333,11.091667,11.6,114.775,114.991667,117.325,12.481009,12.541667,12.658333,12.766667,120.65,121.333333,121.816667,121.9,125.608333],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MAX_BBXMIN\",\"count\":241,\"type\":\"number\",\"values\":[-0.35,-0.546866,-1.616667,-10.816667,-100.5,-105.241667,-118.966667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.499182,-47.056372,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-58.757731,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-66.993057,-68.258333,-7.116667,-7.7,-70.208333,-70.8,-71.658333,-72.441667,-74.091431,-74.266667,-75.983333,-76.866667,-77.153161,-77.308333,-77.4,-78.591667,-79.576315,-79.806554,-8.058333,-80.441667,-82.533333,-84.166667,-84.608333,-86.383333,-87.266667,-88.03629,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,10.440355,100.216667,101.491667,101.575,102.491667,103.383333,103.658333,104.441667,105.616287,106.473854,106.725,11.433333,113.983333,114.825,116.058333,12.316667,12.333333,12.391667,12.450494,12.983333,120.541667,120.925,121.013757,121.325],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MAX_BBYMAX\",\"count\":239,\"type\":\"number\",\"values\":[-1.075,-1.083333,-11.475,-11.808333,-13.641667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.544862,-20.108333,-21.125,-22.491667,-22.575,-23.241667,-24.6,-25.1,-25.641667,-25.75,-25.941667,-26.283333,-26.391667,-29.058333,-29.241667,-32.916667,-33.175,-33.6,-33.808333,-34.366667,-34.65,-35.183333,-36.8,-37.566667,-4.15,-4.291667,-4.6,-41.2,-5.875,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.475,10.05,10.541667,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.9,14.025,14.133333,14.158333,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.825,16.416667,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.491667,19.783333,19.908333,2.116667,21.783333,23.183333,23.641667],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MAX_BBYMIN\",\"count\":240,\"type\":\"number\",\"values\":[-0.30257,-1.433333,-11.758333,-12.281801,-13.866667,-14.408333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.075,-20.248073,-21.166667,-22.625,-23.033333,-23.842331,-24.7,-25.391667,-25.891667,-25.983333,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.675,-33.075,-33.556142,-34.091667,-34.108333,-34.933333,-35.008333,-35.455764,-36.964958,-38.0105,-4.333333,-4.478678,-4.65,-41.35,-6.208333,-6.383127,-6.933333,-8.583333,-8.933333,-9.441667,-9.508333,0,0.166719,0.283333,0.3,1.25,1.325,10.408333,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.516667,13.591667,13.975,14.033333,14.441667,14.571814,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.875,17.958333,18.033333,18.316667,18.491667,18.891667,19.233333,19.633333,2,2.708333,20.620237,22.056849,22.2],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MAX_NATSCA\",\"count\":5,\"type\":\"number\",\"values\":[0,100,20,300,50],\"min\":0,\"max\":300},{\"attribute\":\"MAX_PERKM\",\"count\":198,\"type\":\"number\",\"values\":[0,101,102,1021,10224,10267,105,106,1064,107,1086,1087,109,1100,1111,112,1135,116,1161,119,11900,1192,120,1202,121,122,123,12342,13,130296,131,132,1325,133,1354,142,144,149,15,151,153,154,155,16,160,162,164,1658,166,173,174,177,1773,179,18,184,186,1891,1898,190,1901,19314,196,199,202,205,208,210,215,218,219,22,2202,223,2284,234,2388,239,2412,2440,245,2459,249,25,250,256,26,261,266,27,270,278,28,283,286,287,288,2946,296,2982],\"min\":0,\"max\":130296},{\"attribute\":\"MAX_PERMI\",\"count\":189,\"type\":\"number\",\"values\":[0,10,101,102,103,1030,108,11,110,1101,111,114,115,116,1175,1179,118,1181,12001,122,123,126,127,129,130,134,135,136,1369,138,14,1419,145,1484,149,1499,1516,152,1528,155,159,16,162,165,166,168,17,172,173,176,177,179,18,1830,184,1853,187,189,19,192,194,197,198,2,20,206,21,212,213,214,215,22054,222,223,224,227,23,238,239,24,240,243,25,251,255,2581,263,27,274,28,284,285,286,292,295,309,31,3102,311,3113],\"min\":0,\"max\":80962},{\"attribute\":\"MAX_POP10\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10169723,10190861,1042928,1046787,1060587,107260,1072902,1073782,1074311,10811002,108543,1086244,10929146,11029015,1105973,1115771,111975,1122682,1123733,1124323,112927,1154222,1163890,1173386,1193251,1200842,12322855,12495084,12814908,128698,1289566,1291613,1316564,1337078,1369629,13762740,1381747,143230,144164,144390,1444949,1450902,14548962,145850,1472051,14936123,1504217,15220,1548599,1551977,1561335,1577138,1581087,1590116,1590482,159243,160966,16172884,166212,1662508,1712125,1727538,1732952,1742194,1759840,176365,1788020,1831176,1832316,1833439,1835853,1838722,1904377,191152,1946052,194824,1951272,1990917,2010175,2037124,206499,2066046,2084,2129163,2143900,2150614,2155592,218269,2182723,21887,2189383,219674,221736,224300,22534,2324568,23336],\"min\":0,\"max\":16172884},{\"attribute\":\"MAX_POP20\",\"count\":241,\"type\":\"number\",\"values\":[0,1005257,1014546,10259448,1060587,107260,1072902,1073782,1074311,1076471,108543,1086244,10991915,11030955,1105973,11120470,1115771,111975,112927,1130999,11359674,1163890,1173386,11947707,1200842,1230007,128698,1289566,1291613,13143622,1316564,1337078,13414375,1381747,143230,144164,1443206,1444949,145850,1504217,15074060,15091561,15220,1551977,1577138,15779579,1581475,1588839,1590482,159243,160966,1610331,16172884,166212,1662508,1712468,17250245,1727538,1742194,17425624,176365,1788020,1823845,1826034,1829910,1831176,1831921,1833439,1835853,1836390,18577087,1874437,1892286,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2100407,2129163,21394172,2140496,2142805,2143900,2150614,2153391,218269,21887,219674,221736,2240256,224300,2244726,22534,2263899,2297630],\"min\":0,\"max\":24218878},{\"attribute\":\"MAX_POP300\",\"count\":219,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,1073782,1074311,1086244,1105973,1108173,1113489,1115771,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,1337078,1381747,143230,144164,1444949,145850,14870543,1504217,15220,1551977,15645640,1577138,1581475,1590116,1590482,159243,160966,1610331,166212,1662508,16718429,1727538,1740692,1742194,1788020,18203351,1823845,1826034,1831921,1835853,1838722,1838972,1839463,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,2066046,2084,2129163,2141255,2142805,2150614,2174327,21887,219674,21991959,22031364,221736,224300,2244726,22534,2297630,2322955,23336,23366503,23647944,23700631,2419489,2443605,2445384,244896,2498797,251136,254169,2564188,262796,264350,265361,2660614,26631586],\"min\":0,\"max\":87652060},{\"attribute\":\"MAX_POP310\",\"count\":45,\"type\":\"number\",\"values\":[0,10011551,10140950,1108173,11547877,1256924,12611862,1337078,137121250,14903021,15645640,1610331,18203351,18924578,18948089,20149761,21991959,2244726,224908923,2666328,26749011,30696820,31303497,3164008,3503466,3576473,3767139,3910939,40576904,4207001,42594594,44354170,4561697,4983714,5187749,5190755,5451385,5678280,6333154,8450289,8889292,9206246,9212245,968976,9960588],\"min\":0,\"max\":224908923},{\"attribute\":\"MAX_POP50\",\"count\":238,\"type\":\"number\",\"values\":[0,10011551,1007529,10140950,1014546,1060587,107260,1073782,1074311,1076471,108543,1086244,1105973,1108173,1115771,111975,112927,11547877,1163890,1173386,1200842,1256924,12611862,128698,1289566,1291613,1316564,13292739,1337078,1371285,1381747,143230,144164,1444949,145850,14868745,1504217,15220,1551977,1577138,1581475,1590116,1590482,159243,160966,1610331,16406759,16510327,1651113,166212,1662508,16718429,1727538,1740692,1742194,176365,1788020,18203351,1822603,1826034,1831921,1833439,1835853,1838722,1838972,18788144,1892286,18948089,191152,194824,1951272,20149761,2037124,2051170,206499,2066046,2084,2129163,21387676,2141255,2142805,2150614,2174327,218269,21887,219674,22017580,221736,224300,2244726,22534,2297630,2312867,2322955,2324568,23336,2395309,2419489,24374217,2443605],\"min\":0,\"max\":53845691},{\"attribute\":\"MEAN_BBXC\",\"count\":242,\"type\":\"number\",\"values\":[-0.169651,-0.188893,-1.521746,-10.734923,-100.290632,-104.993967,-118.107478,-122.301354,-122.982768,-13.194643,-13.230082,-13.588647,-15.612698,-15.960139,-16.58125,-17.343779,-171.781117,-175.206798,-21.8825,-23.514907,-3.749399,-4.019846,-43.407551,-46.651489,-47.9714,-5.263708,-55.188737,-56.12273,-57.535385,-58.153788,-58.50845,-59.589731,-6.278983,-6.87491,-60.988377,-61.202183,-61.3775,-61.383365,-61.745833,-61.824059,-62.726389,-65.260317,-66.917919,-68.157765,-69.980546,-7.518511,-7.987419,-70.66127,-71.541251,-72.222424,-73.815782,-74.116517,-75.717666,-76.798044,-77.002668,-77.010199,-77.335571,-78.460061,-79.464213,-79.494919,-80.236416,-82.354344,-84.111698,-84.328739,-86.263402,-87.19911,-87.85874,-88.767803,-89.176042,-9.232769,-90.54419,-95.431928,-99.116655,0,1.190359,1.535473,10.202041,10.756508,100.545047,101.644598,101.716617,102.648054,103.821508,104.039242,104.78577,105.892881,106.883013,106.989399,11.518344,114.035195,114.908824,115.929521,12.419907,12.437175,12.462153,12.561474,120.598765,120.915044,121.053901,121.292375],\"min\":-175.206798,\"max\":178.472885},{\"attribute\":\"MEAN_BBYC\",\"count\":242,\"type\":\"number\",\"values\":[-0.198438,-1.249679,-11.639931,-12.041474,-13.837855,-14.028166,-15.403941,-15.824583,-16.506439,-17.728125,-17.832399,-18.106731,-18.875473,-19.030556,-2.034427,-20.221833,-21.142325,-22.551143,-22.856463,-23.558961,-24.656793,-25.307462,-25.755716,-25.880831,-26.187259,-26.315428,-26.430254,-29.128155,-29.350222,-3.227847,-33.034648,-33.461735,-33.846724,-33.954979,-34.681331,-34.828337,-35.309627,-36.896818,-37.835257,-4.251293,-4.384467,-4.626389,-41.285539,-6.162244,-6.313824,-6.833434,-8.559115,-8.851964,-9.42996,-9.433491,0,0.323809,0.338176,0.395238,1.33869,1.352586,10.451672,10.638816,11.488418,11.5715,11.871032,12.046528,12.120479,12.13336,12.365975,12.626173,12.841733,13.128773,13.145833,13.455208,13.522591,13.738798,13.761017,14.005921,14.083298,14.603015,14.742828,14.823118,14.938056,15.298056,15.327408,15.376031,15.559101,16.421065,16.85864,17.120565,17.248864,17.306019,17.967124,18.018509,18.092569,18.467176,18.56946,19.189154,19.473748,19.720606,2.054239,2.915909,20.873406,22.616509],\"min\":-41.285539,\"max\":64.116125},{\"attribute\":\"MEGACITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"MEGANAME\",\"count\":145,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Al Kuwayt (Kuwait City)\",\"Al-Khartum\",\"Al-Qahirah\",\"Amman\",\"Amsterdam\",\"Ankara\",\"Antananarivo\",\"Ar-Riyadh\",\"Asunciรณn\",\"Athรญnai\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baku\",\"Bamako\",\"Bangalore\",\"Bayrut\",\"Beijing\",\"Beograd\",\"Berlin\",\"Bishkek\",\"Bogotรก\",\"Brasรญlia\",\"Brazzaville\",\"Bruxelles-Brussel\",\"Bucuresti\",\"Budapest\",\"Buenos Aires\",\"Cape Town\",\"Caracas\",\"Chengdu\",\"Chicago\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de Mรฉxico\",\"Ciudad de Panamรก (Panama City)\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Dar es Salaam\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dhaka\",\"Dimashq\",\"Dubayy\",\"Dublin\",\"El Djazaรฏr\",\"Freetown\",\"Harare\",\"Helsinki\",\"Hong Kong\",\"Houston\",\"Hร  Noi\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Johannesburg\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Kigali\",\"Kinshasa\",\"Kolkata\",\"Krung Thep\",\"Kuala Lumpur\",\"Kyiv\",\"Kyoto\",\"Kรธbenhavn\",\"La Habana\",\"La Paz\",\"Lagos\",\"Lima\",\"Lisboa\",\"Lomรฉ\",\"London\",\"Los Angeles-Long Beach-Santa Ana\",\"Luanda\",\"Lusaka\",\"Madrid\",\"Managua\",\"Manila\",\"Maputo\",\"Melbourne\",\"Miami\",\"Minsk\",\"Monrovia\",\"Monterrey\",\"Montevideo\",\"Moskva\",\"Mumbai\",\"Muqdisho\",\"N'Djamรฉna\",\"Nairobi\",\"Nay Pyi Taw\",\"New York-Newark\",\"Niamey\",\"Osaka-Kobe\"]},{\"attribute\":\"MIN_AREAKM\",\"count\":200,\"type\":\"number\",\"values\":[0,1,10,1010,1035,104,105,1054,106,1078,108,109,1093,1100,1114,112,1121,1124,113,1137,114,12,120,122,1249,126,1265,128,130,1303,131,1338,1345,141,143,1432,1434,145,1479,148,15,1561,16,160,166,1675,169,17,171,172,174,177,178,179,18,181,183,184,187,191,1914,192,195,197,202,209,21,211,2130,217,218,224,226,23,233,236,237,2388,244,2443,245,246,2490,25,2512,257,264,27,270,275,2761,278,28,3,30,305,310,316,317,32],\"min\":0,\"max\":5912},{\"attribute\":\"MIN_AREAMI\",\"count\":166,\"type\":\"number\",\"values\":[0,1,10,102,104,106,1066,107,11,118,12,120,122,125,127,129,13,131,133,134,135,1362,139,14,144,146,1464,147,15,156,158,16,160,165,166,168,169,17,171,172,174,178,179,183,185,188,189,191,194,195,196,198,2,20,202,205,206,207,21,215,220,227,2283,229,23,232,247,257,26,266,268,269,27,270,273,279,28,29,298,3,30,310,313,315,32,330,334,34,342,345,347,35,351,37,375,38,390,4,40,400],\"min\":0,\"max\":2283},{\"attribute\":\"MIN_BBXMAX\",\"count\":240,\"type\":\"number\",\"values\":[-0.098725,-1.433333,-10.658333,-100.125,-104.866667,-117.857183,-122.358333,-122.708333,-13.15,-13.158333,-13.475,-15.558333,-15.891667,-16.566667,-17.2,-171.716667,-175.166667,-21.75,-23.483333,-3.433333,-3.866667,-43.158333,-46.383333,-47.783333,-5.216667,-55.107566,-55.8,-57.543999,-58.116667,-58.175,-59.5,-6.041667,-6.725,-60.966667,-61.158333,-61.25,-61.35,-61.725,-61.783333,-62.708333,-65.225,-66.725,-68.05,-69.766667,-7.325,-7.908333,-70.458333,-71.57441,-72.033333,-73.574946,-74.008333,-75.45,-76.733333,-76.752653,-76.85,-77.258333,-78.291667,-79.130272,-79.4,-8.958333,-80.175719,-82.208333,-83.879976,-83.983333,-86.158333,-87.141667,-87.528138,-88.75,-88.966667,-90.425,-95.133333,-99.018165,0,0.307108,1.483333,1.591667,10.497585,100.844293,101.841667,101.891667,102.725,104,104.433333,105,106.2294,106.932506,107.041667,11.091667,11.6,114.3,114.991667,117.208333,12.481009,12.541667,12.658333,12.766667,120.65,121.038985,121.622484,121.9],\"min\":-175.166667,\"max\":178.533333},{\"attribute\":\"MIN_BBXMIN\",\"count\":238,\"type\":\"number\",\"values\":[-0.35,-1.091667,-1.616667,-10.816667,-100.5,-105.241667,-118.991667,-122.516667,-123.283333,-13.225,-13.3,-13.725,-15.658333,-16.016667,-16.6,-17.533333,-171.825,-175.233333,-22.008333,-23.541667,-4.025,-4.191667,-43.75,-47.058333,-48.158333,-5.308333,-55.283333,-56.291667,-57.675,-58.2,-59.016667,-59.641667,-6.533333,-61.008333,-61.241667,-61.4,-61.533333,-61.758333,-61.858333,-62.741667,-65.3,-67.133333,-68.258333,-7.116667,-7.7,-70.208333,-70.958333,-71.658333,-72.441667,-74.266667,-74.75,-75.983333,-76.866667,-77.166667,-77.4,-77.533333,-78.591667,-79.591667,-8.058333,-80.008333,-80.466667,-82.533333,-84.366667,-84.875,-86.383333,-87.266667,-88.408333,-88.783333,-89.316667,-9.466667,-90.658333,-95.841667,-99.366667,0,0.95,1.483333,1.658333,10.333333,101.358333,102.491667,103.125,103.633333,104.441667,104.975,105.891667,106.725,11.433333,111.441667,112.533333,114.825,119.016667,12.116667,12.333333,12.391667,12.958333,12.983333,120.141667,120.541667,120.741667,125.516667],\"min\":-175.233333,\"max\":178.425},{\"attribute\":\"MIN_BBYMAX\",\"count\":241,\"type\":\"number\",\"values\":[-1.083333,-1.76663,-11.475,-11.808333,-13.691667,-13.8,-15.333333,-15.7,-16.433333,-17.708333,-17.725,-18.025,-18.625,-18.991667,-2.95,-20.108333,-21.125,-22.491667,-22.837896,-23.358333,-24.6,-25.208333,-25.641667,-25.75,-25.991667,-26.283333,-26.391667,-29.058333,-29.241667,-33.016667,-33.175,-33.641667,-33.808333,-34.375,-34.65,-35.183333,-36.825,-37.589905,-4.15,-4.291667,-4.6,-41.2,-6.016667,-6.116667,-6.725,-8.541667,-8.766667,-9.358333,-9.408333,0,0.025,0.391667,0.475,0.483333,1.358333,1.425,10.041667,10.533671,10.666667,11.625,11.691667,11.933333,12.066667,12.175,12.183333,12.483333,12.716667,13.175,13.266667,13.333333,13.466667,13.6,13.872295,13.9,14.025,14.133333,14.702876,14.783333,14.825,14.983333,15.325,15.408333,15.508333,15.699422,16.483333,17.025,17.141667,17.266667,17.333333,18.083333,18.15,18.591667,18.666667,19.308333,19.640315,19.783333,2.116667,21.319209,22.4,22.575491],\"min\":-41.2,\"max\":64.166667},{\"attribute\":\"MIN_BBYMIN\",\"count\":237,\"type\":\"number\",\"values\":[-0.391667,-1.433333,-11.758333,-12.316667,-13.866667,-14.433333,-15.483333,-15.941667,-16.575,-17.758333,-17.925,-18.166667,-19.066667,-19.166667,-2.991667,-20.333333,-21.166667,-22.625,-23.033333,-23.891667,-24.7,-25.491667,-25.891667,-25.991667,-26.35,-26.4,-26.458333,-29.2,-29.525,-3.841667,-33.075,-33.7,-34.091667,-34.108333,-34.933333,-35.008333,-35.483333,-37.091667,-38.208333,-4.333333,-4.5,-4.65,-41.35,-6.208333,-6.933333,-7.716667,-8.583333,-8.933333,-9.441667,-9.508333,0,0.033333,0.283333,0.3,1.25,1.325,10.325,10.583333,11.291667,11.533333,11.808333,12.025,12.066667,12.075,12.275,12.325,12.541667,13.05,13.125,13.441667,13.466667,13.5,13.591667,13.975,14.016667,14.033333,14.433333,14.65,14.9,15.225,15.266667,15.325,16.358333,16.716667,17.091667,17.233333,17.291667,17.8,17.958333,18.033333,18.316667,18.491667,18.891667,19.2,19.283333,19.633333,19.866667,2,2.7,21.925],\"min\":-41.35,\"max\":64.05},{\"attribute\":\"MIN_PERKM\",\"count\":192,\"type\":\"number\",\"values\":[0,101,102,105,106,109,112,1148,116,1175,1180,119,120,121,122,123,1257,126,128,13,130,131,132,133,136,1360,1365,137,142,1439,144,149,1494,15,153,155,156,158,16,160,162,164,166,170,173,174,175,177,18,1837,184,186,190,1908,196,199,201,203,205,208,215,217,219,22,2219,222,223,228,2296,233,237,239,240,244,245,249,25,250,251,256,258,26,261,266,27,274,28,280,287,288,293,295,30,304,309,31,310,311,315,318],\"min\":0,\"max\":2296},{\"attribute\":\"MIN_PERMI\",\"count\":181,\"type\":\"number\",\"values\":[0,10,100,101,102,103,106,108,109,11,110,114,1141,115,116,118,1186,122,123,124,125,126,127,129,130,134,135,136,1379,138,14,142,1427,145,147,149,152,155,156,159,16,160,162,165,17,170,174,179,18,182,183,189,19,192,193,196,197,198,2,20,21,211,215,216,217,219,221,222,224,227,23,231,234,238,24,240,243,247,248,25,251,254,255,27,274,276,28,285,286,289,29,290,291,293,295,300,302,309,31,317],\"min\":0,\"max\":1427},{\"attribute\":\"NAME\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEALT\",\"count\":43,\"type\":\"string\",\"values\":[\"Al Kuwayt|Kuwait City\",\"Al-Khartum\",\"Al-Qahirah\",\"Ar-Riyadh\",\"Asunciรณn\",\"Athinai\",\"Bayrut\",\"Bengaluru\",\"Bogotรก\",\"Brasรญlia\",\"Bruxelles-Brussel\",\"Ciudad de Guatemala (Guatemala City)\",\"Ciudad de Mรฉxico\",\"Ciudad de Panamรก|Panama City|Panama\",\"Dar-el-Beida\",\"Denver-Aurora\",\"Dimashq\",\"El Djazaรฏr\",\"Hร  Noi\",\"Krung Thep\",\"Kyiv\",\"La Habana\",\"Lomรฉ\",\"Los Angeles-Long Beach-Santa Ana\",\"Muqdisho\",\"N'Djamรฉna\",\"Nay Pyi Taw\",\"New York-Newark\",\"Osaka-Kobe\",\"Ottawa-Gatineau\",\"P'yongyang\",\"Phnum Pรฉnh\",\"San Francisco-Oakland\",\"San Josรฉ\",\"Sana'a'\",\"Sao Paulo|Sรฃo Paulo\",\"T'Bilisi\",\"Tel Aviv-Jaffa\",\"Valparaรญso\",\"Washington D.C.\",\"Yangon\",\"Yaoundรฉ\",\"รœrรผmqi|Wulumqi\"]},{\"attribute\":\"NAMEASCII\",\"count\":243,\"type\":\"string\",\"values\":[\"Abidjan\",\"Abu Dhabi\",\"Abuja\",\"Accra\",\"Addis Ababa\",\"Algiers\",\"Amman\",\"Amsterdam\",\"Andorra\",\"Ankara\",\"Antananarivo\",\"Apia\",\"Ashgabat\",\"Asmara\",\"Astana\",\"Asuncion\",\"Athens\",\"Atlanta\",\"Auckland\",\"Baghdad\",\"Baguio City\",\"Baku\",\"Bamako\",\"Bandar Seri Begawan\",\"Bangalore\",\"Bangkok\",\"Bangui\",\"Banjul\",\"Basseterre\",\"Beijing\",\"Beirut\",\"Belgrade\",\"Belmopan\",\"Berlin\",\"Bern\",\"Bir Lehlou\",\"Bishkek\",\"Bissau\",\"Bloemfontein\",\"Bogota\",\"Brasilia\",\"Bratislava\",\"Brazzaville\",\"Bridgetown\",\"Brussels\",\"Bucharest\",\"Budapest\",\"Buenos Aires\",\"Bujumbura\",\"Cairo\",\"Canberra\",\"Cape Town\",\"Caracas\",\"Casablanca\",\"Castries\",\"Chengdu\",\"Chicago\",\"Chisinau\",\"Colombo\",\"Conakry\",\"Cotonou\",\"Dakar\",\"Damascus\",\"Dar es Salaam\",\"Denver\",\"Dhaka\",\"Dili\",\"Djibouti\",\"Dodoma\",\"Doha\",\"Dubai\",\"Dublin\",\"Dushanbe\",\"Freetown\",\"Funafuti\",\"Gaborone\",\"Geneva\",\"Georgetown\",\"Guatemala\",\"Hanoi\",\"Harare\",\"Hargeysa\",\"Havana\",\"Helsinki\",\"Hong Kong\",\"Honiara\",\"Houston\",\"Islamabad\",\"Istanbul\",\"Jakarta\",\"Jerusalem\",\"Johannesburg\",\"Juba\",\"Kabul\",\"Kampala\",\"Kathmandu\",\"Khartoum\",\"Kiev\",\"Kigali\",\"Kingston\"]},{\"attribute\":\"NAMEDIFF\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1},{\"attribute\":\"NAMEPAR\",\"count\":12,\"type\":\"string\",\"values\":[\"Athรญnai\",\"Beograd\",\"Bombay\",\"Bucuresti\",\"Calcutta\",\"Copenhagen\",\"Dubayy\",\"Lisboa\",\"Moskva\",\"Praha\",\"Warszawa\",\"Wien\"]},{\"attribute\":\"NATSCALE\",\"count\":8,\"type\":\"number\",\"values\":[10,110,20,200,30,300,50,600],\"min\":10,\"max\":600},{\"attribute\":\"POP1950\",\"count\":135,\"type\":\"number\",\"values\":[0,1002,1016,1021,104,1041,106,1066,1068,110,111,1116,11275,1212,1216,12338,129,1298,1302,1304,1322,133,1332,1347,1360,137,138,1415,143,145,1452,148,15,150,1544,1618,1682,1690,1700,171,177,18,183,1855,1884,194,20,202,206,208,2086,211,219,22,2334,24,2494,253,258,275,280,281,282,284,2857,287,2883,2950,305,31,319,32,322,328,33,3352,336,341,356,36,364,366,367,392,4046,411,4147,418,4331,4513,46,468,4999,505,5098,513,516,522,5356,556],\"min\":0,\"max\":12338},{\"attribute\":\"POP1955\",\"count\":139,\"type\":\"number\",\"values\":[0,1016,104,106,1091,110,111,112,1227,1248,1249,125,1289,129,1306,131,13219,136,1365,1368,13713,1396,140,1405,1440,1449,148,1539,1553,1563,1574,1618,1712,1714,174,182,184,186,1872,189,1906,192,1972,201,2018,2021,2087,21,2121,2143,220,235,246,25,252,257,265,27,28,281,292,3029,3044,312,314,3299,34,340,342,3432,3592,37,370,374,376,377,3801,387,40,405,409,41,414,425,431,439,451,46,461,4628,468,49,498,501,5055,5120,5154,53,533,556],\"min\":0,\"max\":13713},{\"attribute\":\"POP1960\",\"count\":141,\"type\":\"number\",\"values\":[0,1001,1002,1005,1019,1106,1119,112,1147,1151,1163,1165,1166,119,124,1269,128,1284,1285,130,1316,1361,137,14164,1436,1453,1485,1514,156,1592,162,1634,16679,174,1744,1756,179,181,1811,1814,1823,1851,1873,192,1980,199,2089,2135,2151,218,219,2200,2274,23,230,233,236,2361,2392,2456,247,248,252,2620,263,2679,283,293,311,319,3260,34,344,347,359,3680,382,384,389,393,3970,40,4060,415,419,433,4374,438,440,443,446,448,45,476,4945,5012,508,519,538,551],\"min\":0,\"max\":16679},{\"attribute\":\"POP1965\",\"count\":143,\"type\":\"number\",\"values\":[0,1003,1038,1049,109,111,112,1132,1135,1154,1165,1206,121,1212,1229,1230,1288,132,1323,1327,1373,1377,138,1389,1396,146,148,15177,1525,158,1598,160,1614,1657,169,1709,172,1760,1780,1878,1880,2001,20284,2068,208,2080,2093,2121,2135,222,227,2284,2294,233,235,2361,2390,248,2511,2584,259,268,269,2780,2829,287,2898,29,298,299,303,310,315,319,3191,322,3232,3297,337,339,3452,360,369,394,399,404,436,45,461,472,473,4738,477,478,481,482,4854,488,499,51],\"min\":0,\"max\":20284},{\"attribute\":\"POP1970\",\"count\":138,\"type\":\"number\",\"values\":[0,1029,1035,1045,1054,1070,1076,111,1114,1182,1254,1267,1274,129,1298,1300,1307,1341,1362,1374,1380,1396,1403,1414,1444,147,1505,155,1568,1592,1615,16191,163,164,1655,1693,1741,1779,1817,183,192,1946,206,2060,2070,2075,2141,222,223,23298,2334,238,2383,2485,2488,2529,2535,2647,2667,272,2772,278,298,2980,3110,3135,3206,3290,340,3458,3521,3534,357,359,363,366,371,388,3915,398,408,417,433,451,455,459,460,472,48,494,500,501,507,525,531,5312,532,548,552,553],\"min\":0,\"max\":23298},{\"attribute\":\"POP1975\",\"count\":142,\"type\":\"number\",\"values\":[0,100,1015,1016,10690,107,1120,1122,1126,1150,1172,1198,1206,1339,1348,1386,1403,141,1429,1444,1482,149,1499,1500,1547,15880,1589,1610,1612,1622,167,1702,1709,1793,180,1848,1884,1890,1911,1926,198,2005,2023,2030,2059,2103,2111,2151,2221,226,2263,231,2342,240,2561,257,2590,2620,2626,26615,2738,2770,284,292,2960,3040,3130,3138,329,3300,356,3600,363,3696,3842,385,3890,3943,398,4273,440,443,445,454,456,4813,485,4999,500,528,530,532,572,575,581,582,596,6034,611,624],\"min\":0,\"max\":26615},{\"attribute\":\"POP1980\",\"count\":143,\"type\":\"number\",\"values\":[0,1042,1055,1057,1074,1090,1096,1164,1175,1179,12089,1240,1247,125,128,1293,13010,1318,1356,1376,1384,1416,1454,15601,1565,1574,1609,1621,1623,1625,1654,1656,1701,1818,1842,1865,189,1891,1913,1992,2049,2053,2057,2109,2201,2217,225,2293,2378,238,2415,2424,2449,254,257,2572,2575,2606,2656,274,2765,2777,2812,28549,2987,3008,3056,3122,3145,3227,324,325,3266,337,3390,344,3525,361,371,3721,415,423,4253,4397,4438,446,4609,469,4723,489,5079,525,526,533,538,550,551,580,5955,5984],\"min\":0,\"max\":28549},{\"attribute\":\"POP1985\",\"count\":144,\"type\":\"number\",\"values\":[0,1012,1013,1016,10181,1029,10341,10350,1046,1056,1090,1121,1122,1123,1160,1162,1177,1181,1197,1295,13395,1359,1396,14109,1437,1474,1476,1508,1546,1559,1566,15827,1585,1596,1611,1654,1660,1672,168,1681,1714,1716,1773,1879,1925,1950,1958,2005,2036,204,2069,2195,2213,2273,2406,2410,2446,2518,260,2629,2639,2658,2693,2709,2793,2805,2854,2935,297,30304,3047,3060,3063,3355,3395,3429,3432,344,345,3500,3521,3607,393,402,4087,412,4201,424,427,4355,460,466,4660,471,492,5070,5116,514,5279,5407],\"min\":0,\"max\":30304},{\"attribute\":\"POP1990\",\"count\":144,\"type\":\"number\",\"values\":[0,1035,1038,1042,1047,10513,10544,1062,1088,10883,10890,1091,11035,1120,1134,1161,1162,1174,1175,1191,1197,1212,1224,12308,1293,1306,1316,1380,1392,1405,14776,1500,1522,1528,15312,1546,1559,1568,1607,16086,1628,1680,1691,1733,1760,1791,1863,1898,1908,2005,2026,2040,2096,2100,2102,2108,2155,2184,219,2325,2360,2526,2537,2561,2574,2594,2682,2711,2767,2907,2922,2955,2961,3016,3070,3117,3126,32530,330,3376,3422,343,3448,3450,3632,3807,3969,398,4036,4092,432,4414,4616,473,4740,4764,477,504,529,537],\"min\":0,\"max\":32530},{\"attribute\":\"POP1995\",\"count\":144,\"type\":\"number\",\"values\":[0,10174,10256,1034,10423,1045,1048,11052,1107,11154,11339,1138,1142,1147,1149,1160,1168,1169,1190,11924,1194,1213,1217,1255,1267,1268,1287,1379,14111,1415,1417,1427,1584,15948,1616,1649,1652,1668,1670,1678,16811,1688,16943,1715,1747,1755,1766,1789,1804,1849,1893,1953,2018,2116,2127,2157,2183,2257,2265,2295,2394,2442,2535,2590,2600,2676,2781,2816,2838,2842,289,2951,2961,3035,3095,3122,3213,3242,3257,3353,33587,3403,3424,3425,3471,3478,3651,3839,4197,4431,4447,452,4598,464,4701,4744,4964,509,526,542],\"min\":0,\"max\":33587},{\"attribute\":\"POP2000\",\"count\":141,\"type\":\"number\",\"values\":[0,10016,1005,1007,1019,1023,10285,1032,10534,1063,1072,1073,1077,1079,10803,1084,1096,1097,1100,1110,1111,11165,1127,1128,1160,1172,11814,11847,1192,1201,1206,1219,1233,13058,1306,13243,1357,1361,1365,1379,1390,1487,1499,1507,1561,16086,1653,1666,1674,1700,17099,1730,1733,17846,1787,18022,1806,1854,1877,1949,1959,1963,1998,2029,2044,2116,2135,2158,2187,2233,2493,2591,2606,2640,2672,2715,2732,2746,2752,2754,2864,3032,3043,3117,3179,3236,3266,3384,3385,3433,34450,3542,3553,3567,3752,3849,3919,3949,4017,4078],\"min\":0,\"max\":34450},{\"attribute\":\"POP2005\",\"count\":143,\"type\":\"number\",\"values\":[0,1023,1037,10416,1042,1044,10717,10761,1085,1093,1094,1103,1106,1119,11258,1140,11469,11487,1164,1166,1189,1216,1217,12307,1248,12553,12576,1261,1272,1273,1315,1318,1334,1363,1368,1374,1405,1409,1415,14282,14503,1489,1515,1525,1527,1590,1593,1647,1693,1742,1762,1775,1777,1801,1805,18202,18333,1867,18732,18735,1885,1888,1936,1984,2025,2062,2093,2098,2158,2189,2241,2264,2330,2434,2606,2672,2679,2762,2787,2902,2930,2994,3012,3087,3138,3199,3230,3258,3265,3341,3348,3387,3391,35327,3533,3564,3572,3579,3641,3928],\"min\":0,\"max\":35327},{\"attribute\":\"POP2010\",\"count\":143,\"type\":\"number\",\"values\":[0,10061,1024,1031,1041,10452,1059,1060,1085,1099,1100,1102,11100,11106,1115,11294,1145,1149,1162,11748,1185,11893,1245,12500,1264,12795,1281,1284,1328,1338,13485,1355,1379,1420,1433,1446,1448,1452,1466,14787,1494,14987,1513,1572,1576,1590,1611,1679,1697,1701,1705,1707,1743,1805,1846,1870,18845,1892,18978,19028,19040,1942,1998,2008,2063,2121,2146,2151,2154,2174,2184,2189,2313,2315,2466,2603,2604,2709,2812,2930,2985,3010,3100,3112,3181,3215,3242,3277,3300,3339,3354,3406,3435,3450,35676,3599,3712,3716,3728,3802],\"min\":0,\"max\":35676},{\"attribute\":\"POP2015\",\"count\":144,\"type\":\"number\",\"values\":[0,1022,1024,1027,1029,1044,10495,10530,10572,1087,1096,1098,1102,1104,1106,1108,1127,11337,1139,1160,11662,11741,1182,1185,1212,12171,12503,12773,1285,13089,1321,1324,1374,1379,1409,1421,14796,1500,1504,1505,1516,1519,1520,15577,15789,1597,1621,1645,1651,1663,1664,1669,1692,1708,1724,1744,1787,1793,1804,1846,1877,1931,1941,19441,1947,19485,19582,1994,20072,2030,2159,2209,2219,2247,2298,2305,2322,2332,2340,2345,2385,2396,2651,2675,2748,2856,2890,3098,3256,3267,3319,3333,3346,3357,3363,3423,3453,3544,3574,36094],\"min\":0,\"max\":36094},{\"attribute\":\"POP2020\",\"count\":143,\"type\":\"number\",\"values\":[0,10007,1004,1015,1029,10524,1064,10792,1092,1102,1108,1113,11177,11313,11365,1152,1159,1165,1169,1177,1185,1232,1233,12403,1258,12775,12786,1281,1284,12842,1308,13160,13432,13465,1398,1405,1457,1482,1506,1527,1587,1649,1655,1670,1676,17015,17039,1709,17214,1729,1735,1744,1794,1804,1839,1864,1879,1921,1938,1949,1979,1984,19974,2006,20189,2028,2035,2038,2051,20544,2058,2130,2151,21946,2229,2277,2310,2416,2451,2502,2525,2532,2558,2592,2620,2621,2688,2770,2862,2955,2981,2996,3275,3278,3306,3330,3434,3453,3475,3504],\"min\":0,\"max\":36371},{\"attribute\":\"POP2025\",\"count\":144,\"type\":\"number\",\"values\":[0,10031,1011,1044,10526,1078,1095,1102,1104,1114,1132,11368,1148,1159,11689,11695,1195,1196,1200,1236,1257,1268,1274,1317,13179,1321,1326,13461,13653,13807,13875,13892,1413,14134,1441,14451,1481,1515,1544,1578,1580,1627,1653,1655,1736,1744,1753,1776,1797,1804,1820,18466,18707,1883,1894,1938,19422,1949,2027,2037,20370,20695,2083,2097,2111,21124,2119,2142,2150,2189,2235,2312,2380,2393,24051,2410,2457,2476,2506,2590,2633,2636,2642,2713,2722,2772,2790,2851,2971,3012,3041,3058,3104,3293,3300,3330,3436,3482,3537,3600],\"min\":0,\"max\":36399},{\"attribute\":\"POP2050\",\"count\":143,\"type\":\"number\",\"values\":[0,10036,10526,1089,1096,1102,1112,1114,11368,1159,1163,1193,12102,1220,1236,12363,1315,1320,1332,13413,1343,1359,13672,13768,1406,1411,14545,1461,1472,1475,14808,1520,15561,15796,1604,1655,16762,1690,1715,1736,1737,1744,1759,1804,1883,1902,1907,1938,19412,1949,2028,2047,20560,20628,2077,2083,21009,21428,2150,2172,2173,2178,2187,22015,2222,2247,2316,2444,2496,2529,2549,2560,2632,26385,2661,2715,2772,2791,2855,2856,2885,2892,2911,2956,3038,3086,3118,3198,3214,3305,3326,3330,3346,3358,3382,3436,3605,3619,3630,36400],\"min\":0,\"max\":36400},{\"attribute\":\"POP_MAX\",\"count\":240,\"type\":\"number\",\"values\":[10061000,1024000,1029300,1031000,1041000,10452000,1059000,1060000,107260,1085000,1086244,1099000,1100000,1102000,11100000,11106000,1115000,111975,112927,11294000,113364,1145000,1149000,115826,1162000,11748000,1185000,11893000,1240000,1245000,12500000,1264000,12795000,12797394,1281000,1284000,128698,1328000,1338000,1355000,1379000,1406000,1420000,1433000,1446000,1448000,1450000,1452000,145850,1466000,14787000,1494000,14987000,1513000,15220,155963,1572000,1576000,1590000,1611000,166212,1679000,1697000,1701000,1705000,1707000,1743000,175399,1805000,1846000,1870000,188084,18845000,18978000,19028000,19040000,191152,1942000,1998000,2008000,2063000,206499,208411,2121000,2122300,2151000,2154000,217000,2174000,218269,2184000,21887,2189000,224300,224838,227940,2313000,2313328,23336,234331],\"min\":500,\"max\":35676000},{\"attribute\":\"POP_MIN\",\"count\":243,\"type\":\"number\",\"values\":[10021295,1005257,1019022,103693,10452000,1060000,1060587,10634,10811002,1085000,10929146,1093485,1099000,11177,111975,1122874,1137347,113906,115826,1163890,11693,118355,1191613,121631,1234742,1253309,1267440,12691836,1297281,1338000,13381,1353189,136473,13768,1391433,1399814,140000,1431270,1448000,1459640,14608512,1466000,148416,1494000,1508225,1536,1542813,1548599,15500,155963,157474,1577138,159243,15938,160966,162135,1655753,16571,1662508,1679000,1702139,1712125,1724,1731000,1742194,176365,180541,1815679,1835853,1892000,192385,193563,194530,194824,1951272,1963264,1974647,1977663,1978028,198214,1990917,199200,200,200452,2010175,2026469,20500,2087,217000,221736,22256,223757,22534,22881,229398,234032,234168,235017,23658,24226],\"min\":200,\"max\":14608512},{\"attribute\":\"POP_OTHER\",\"count\":218,\"type\":\"number\",\"values\":[0,10018444,1014546,102371,10271457,1037811,1038288,10585385,1060640,1060747,1061388,106219,1072567,1074640,1081361,1088042,1088194,1099610,111975,112572,1149981,11522944,1152904,1154748,11622929,1166878,1174778,12018058,1208361,1240558,12426085,1256715,1271541,1276128,12945252,1301407,130815,1365454,13720557,140594,142265,1434681,1435528,1443084,1480886,1490164,1498020,14995538,1518801,1521278,15220,1557919,158896,160116,1604086,1611692,1636574,164877,1661980,1675117,16803572,1682968,1718895,1742507,176365,1772679,1795582,1805353,18171,1821489,1827367,1831877,1844658,191814,1930305,1951272,2012431,2029349,2044401,2050212,206499,2139587,2153702,2175991,21887,221736,222513,222985,22478,2306851,2325931,23336,2334371,2381280,2385397,2391150,2401318,243794,2456292,2470140],\"min\":0,\"max\":16803572},{\"attribute\":\"RANK_MAX\",\"count\":12,\"type\":\"number\",\"values\":[10,11,12,13,14,2,4,5,6,7,8,9],\"min\":2,\"max\":14},{\"attribute\":\"RANK_MIN\",\"count\":14,\"type\":\"number\",\"values\":[1,10,11,12,13,14,2,3,4,5,6,7,8,9],\"min\":1,\"max\":14},{\"attribute\":\"SCALERANK\",\"count\":8,\"type\":\"number\",\"values\":[0,1,2,3,4,6,7,8],\"min\":0,\"max\":8},{\"attribute\":\"SOV0NAME\",\"count\":197,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Albania\",\"Algeria\",\"Andorra\",\"Angola\",\"Antigua and Barbuda\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bahamas, The\",\"Bahrain\",\"Bangladesh\",\"Barbados\",\"Belarus\",\"Belgium\",\"Belize\",\"Benin\",\"Bhutan\",\"Bolivia\",\"Bosnia and Herzegovina\",\"Botswana\",\"Brazil\",\"Brunei\",\"Bulgaria\",\"Burkina Faso\",\"Burundi\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Cape Verde\",\"Central African Republic\",\"Chad\",\"Chile\",\"China\",\"Colombia\",\"Comoros\",\"Congo (Brazzaville)\",\"Congo (Kinshasa)\",\"Costa Rica\",\"Croatia\",\"Cuba\",\"Cyprus\",\"Czech Republic\",\"Denmark\",\"Djibouti\",\"Dominica\",\"Dominican Republic\",\"East Timor\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Equatorial Guinea\",\"Eritrea\",\"Estonia\",\"Ethiopia\",\"Federated States of Micronesia\",\"Fiji\",\"Finland\",\"French Republic\",\"Gabon\",\"Gambia, The\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Grenada\",\"Guatemala\",\"Guinea\",\"Guinea Bissau\",\"Guyana\",\"Haiti\",\"Honduras\",\"Hungary\",\"Iceland\",\"India\",\"Indonesia\",\"Iran\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Ivory Coast\",\"Jamaica\",\"Japan\",\"Jordan\",\"Kazakhstan\",\"Kenya\",\"Kingdom of Norway\",\"Kingdom of Spain\",\"Kingdom of the Netherlands\",\"Kiribati\",\"Korea, North\",\"Korea, South\",\"Kosovo\",\"Kuwait\",\"Kyrgyzstan\",\"Laos\",\"Latvia\"]},{\"attribute\":\"SOV_A3\",\"count\":197,\"type\":\"string\",\"values\":[\"AFG\",\"AGO\",\"ALB\",\"AND\",\"ARE\",\"ARG\",\"ARM\",\"ATG\",\"AUS\",\"AUT\",\"AZE\",\"BDI\",\"BEL\",\"BEN\",\"BFA\",\"BGD\",\"BGR\",\"BHR\",\"BHS\",\"BIH\",\"BLR\",\"BLZ\",\"BOL\",\"BRA\",\"BRB\",\"BRN\",\"BTN\",\"BWA\",\"CAF\",\"CAN\",\"CHE\",\"CHL\",\"CHN\",\"CIV\",\"CMR\",\"COD\",\"COG\",\"COL\",\"COM\",\"CPV\",\"CRI\",\"CUB\",\"CYP\",\"CZE\",\"DEU\",\"DJI\",\"DMA\",\"DNK\",\"DOM\",\"DZA\",\"ECU\",\"EGY\",\"ERI\",\"ESP\",\"EST\",\"ETH\",\"FIN\",\"FJI\",\"FRA\",\"FSM\",\"GAB\",\"GBR\",\"GEO\",\"GHA\",\"GIN\",\"GMB\",\"GNB\",\"GNQ\",\"GRC\",\"GRD\",\"GTM\",\"GUY\",\"HND\",\"HRV\",\"HTI\",\"HUN\",\"IDN\",\"IND\",\"IRL\",\"IRN\",\"IRQ\",\"ISL\",\"ISR\",\"ITA\",\"JAM\",\"JOR\",\"JPN\",\"KAZ\",\"KEN\",\"KGZ\",\"KHM\",\"KIR\",\"KNA\",\"KOR\",\"KOS\",\"KWT\",\"LAO\",\"LBN\",\"LBR\",\"LBY\"]},{\"attribute\":\"TIMEZONE\",\"count\":187,\"type\":\"string\",\"values\":[\"Africa/Abidjan\",\"Africa/Accra\",\"Africa/Addis_Ababa\",\"Africa/Algiers\",\"Africa/Asmara\",\"Africa/Bamako\",\"Africa/Bangui\",\"Africa/Banjul\",\"Africa/Bissau\",\"Africa/Blantyre\",\"Africa/Brazzaville\",\"Africa/Bujumbura\",\"Africa/Cairo\",\"Africa/Casablanca\",\"Africa/Conakry\",\"Africa/Dakar\",\"Africa/Dar_es_Salaam\",\"Africa/Djibouti\",\"Africa/Douala\",\"Africa/El_Aaiun\",\"Africa/Freetown\",\"Africa/Gaborone\",\"Africa/Harare\",\"Africa/Johannesburg\",\"Africa/Kampala\",\"Africa/Khartoum\",\"Africa/Kigali\",\"Africa/Kinshasa\",\"Africa/Lagos\",\"Africa/Libreville\",\"Africa/Lome\",\"Africa/Luanda\",\"Africa/Lusaka\",\"Africa/Malabo\",\"Africa/Maputo\",\"Africa/Maseru\",\"Africa/Mbabane\",\"Africa/Mogadishu\",\"Africa/Monrovia\",\"Africa/Nairobi\",\"Africa/Ndjamena\",\"Africa/Niamey\",\"Africa/Nouakchott\",\"Africa/Ouagadougou\",\"Africa/Porto-Novo\",\"Africa/Tunis\",\"Africa/Windhoek\",\"America/Antigua\",\"America/Argentina/Buenos_Aires\",\"America/Belize\",\"America/Bogota\",\"America/Caracas\",\"America/Chicago\",\"America/Dominica\",\"America/Fortaleza\",\"America/Grenada\",\"America/Guatemala\",\"America/Guayaquil\",\"America/Guyana\",\"America/Havana\",\"America/Jamaica\",\"America/La_Paz\",\"America/Lima\",\"America/Los_Angeles\",\"America/Managua\",\"America/Mexico_City\",\"America/Monterrey\",\"America/Montreal\",\"America/Nassau\",\"America/New_York\",\"America/Panama\",\"America/Paramaribo\",\"America/Port-au-Prince\",\"America/Port_of_Spain\",\"America/Sao_Paulo\",\"America/St_Kitts\",\"America/Tegucigalpa\",\"America/Toronto\",\"America/Vancouver\",\"Asia/Amman\",\"Asia/Ashgabat\",\"Asia/Baghdad\",\"Asia/Bahrain\",\"Asia/Baku\",\"Asia/Bangkok\",\"Asia/Beirut\",\"Asia/Bishkek\",\"Asia/Brunei\",\"Asia/Chongqing\",\"Asia/Colombo\",\"Asia/Dhaka\",\"Asia/Dili\",\"Asia/Dubai\",\"Asia/Dushanbe\",\"Asia/Harbin\",\"Asia/Ho_Chi_Minh\",\"Asia/Hong_Kong\",\"Asia/Jakarta\",\"Asia/Jerusalem\",\"Asia/Kabul\"]},{\"attribute\":\"UN_ADM0\",\"count\":116,\"type\":\"string\",\"values\":[\"Afghanistan\",\"Algeria\",\"Angola\",\"Argentina\",\"Armenia\",\"Australia\",\"Austria\",\"Azerbaijan\",\"Bangladesh\",\"Belarus\",\"Belgium\",\"Benin\",\"Bolivia\",\"Brazil\",\"Bulgaria\",\"Burkina Faso\",\"Cambodia\",\"Cameroon\",\"Canada\",\"Chad\",\"Chile\",\"China\",\"China, Hong Kong Special Administrative Region\",\"Colombia\",\"Congo\",\"Costa Rica\",\"Cuba\",\"Czech Republic\",\"Cรดte d'Ivoire\",\"Democratic People's Republic of Korea\",\"Democratic Republic of the Congo\",\"Denmark\",\"Dominican Republic\",\"Ecuador\",\"Egypt\",\"El Salvador\",\"Ethiopia\",\"Finland\",\"France\",\"Georgia\",\"Germany\",\"Ghana\",\"Greece\",\"Guatemala\",\"Guinea\",\"Haiti\",\"Honduras\",\"Hungary\",\"India\",\"Indonesia\",\"Iran (Islamic Republic of)\",\"Iraq\",\"Ireland\",\"Israel\",\"Italy\",\"Japan\",\"Jordan\",\"Kenya\",\"Kuwait\",\"Kyrgyzstan\",\"Lebanon\",\"Liberia\",\"Libyan Arab Jamahiriya\",\"Madagascar\",\"Malaysia\",\"Mali\",\"Mexico\",\"Mongolia\",\"Morocco\",\"Mozambique\",\"Myanmar\",\"Nepal\",\"Netherlands\",\"New Zealand\",\"Nicaragua\",\"Niger\",\"Nigeria\",\"Norway\",\"Pakistan\",\"Panama\",\"Paraguay\",\"Peru\",\"Philippines\",\"Poland\",\"Portugal\",\"Republic of Korea\",\"Romania\",\"Russian Federation\",\"Rwanda\",\"Saudi Arabia\",\"Senegal\",\"Serbia\",\"Sierra Leone\",\"Singapore\",\"Somalia\",\"South Africa\",\"Spain\",\"Sudan\",\"Sweden\",\"Syrian Arab Republic\"]},{\"attribute\":\"UN_FID\",\"count\":145,\"type\":\"number\",\"values\":[0,111,118,13,14,15,16,161,166,168,17,171,172,173,174,175,176,178,179,18,180,182,183,189,191,192,196,198,2,200,201,206,207,208,209,210,211,219,24,245,253,274,276,280,297,3,300,302,304,308,31,310,313,315,318,320,321,322,324,327,336,339,340,341,342,344,345,348,349,352,359,367,369,372,375,376,377,378,379,381,382,384,385,386,392,397,4,401,408,409,411,414,418,419,422,426,439,440,444,447],\"min\":0,\"max\":589},{\"attribute\":\"UN_LAT\",\"count\":145,\"type\":\"number\",\"values\":[-0.22,-1.26,-1.95,-12.08,-15.42,-15.79,-17.82,-18.9,-22.72,-23.58,-25.3,-25.73,-25.96,-26.17,-33.02,-33.88,-33.97,-34.62,-34.92,-36.9,-37.85,-4.28,-4.32,-6.16,-6.81,-8.81,0,0.32,1.26,10.49,11.56,12.1,12.15,12.48,12.65,12.97,13.51,13.7,13.75,14.09,14.61,14.68,15.36,15.55,16.87,18.48,18.52,19.07,19.42,19.75,2.04,21.03,22.27,22.54,23.04,23.7,24.15,24.65,25.03,25.27,25.67,25.83,27.71,29.38,29.77,3.14,3.86,30.07,30.67,31.24,31.94,32.04,33.33,33.49,33.6,33.71,33.79,33.88,34,34.01,34.34,34.53,34.63,35,35.68,35.77,36.78,37.54,37.79,37.94,38.72,38.89,39.02,39.57,39.9,39.92,4.63,40.2,40.32,40.44],\"min\":-37.85,\"max\":60.19},{\"attribute\":\"UN_LONG\",\"count\":144,\"type\":\"number\",\"values\":[-0.17,-0.2,-1.67,-10.79,-100.31,-105.07,-110.3,-118.25,-122.38,-122.96,-13.23,-13.67,-17.45,-3.69,-4.02,-43.45,-46.62,-47.89,-56.16,-57.62,-58.44,-6.25,-6.83,-66.89,-69.89,-7.63,-7.98,-71.55,-72.34,-73.9,-74.08,-75.65,-76.95,-77.04,-78.52,-79.41,-79.51,-80.27,-80.96,-82.41,-84.07,-84.34,-86.27,-87.2,-87.64,-89.2,-9.12,-90.52,-95.4,-99.12,0,1.2,10.71,100.51,101.7,103.83,104.07,104.91,105.82,106.8,106.91,11.51,114.17,116.38,12.51,12.54,120.96,121.47,121.5,125.75,126.93,13.23,13.32,135.51,135.75,139.8,14.45,145.07,15.24,15.28,15.29,151.02,16.32,17.99,174.76,18.48,19.09,2.12,2.43,20.41,21.01,23.33,23.65,24.97,26.12,27.57,28,28.17,28.21,29],\"min\":-122.96,\"max\":174.76},{\"attribute\":\"WORLDCITY\",\"count\":2,\"type\":\"number\",\"values\":[0,1],\"min\":0,\"max\":1}]}]}}", +"maxzoom": "3", +"minzoom": "0", +"name": "tests/ne_110m_populated_places/out/-z3_-r1_--limit-tile-feature-count_3_--maximum-tile-features_10_--drop-densest-as-needed.json.check.mbtiles", +"tippecanoe_decisions": "{\"basezoom\":3,\"droprate\":1,\"retain_points_multiplier\":1}", +"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": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.212891, 34.016242 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.125498 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.753344 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.723633, 0.351560 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.448242, 0.395505 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.607422, 0.307616 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.538086, 12.382928 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.528511 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.209961, -21.145992 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.168945, 33.979809 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600 }, "geometry": { "type": "Point", "coordinates": [ -77.036133, -12.060809 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178 }, "geometry": { "type": "Point", "coordinates": [ -68.137207, -16.509833 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 1, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.736816, 41.820455 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.409180, 43.691708 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.470215, 0.395505 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.329588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 2, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457, "MAX_POP20": 835457, "MAX_POP50": 835457, "MAX_POP300": 835457, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 236, "MAX_AREAKM": 236, "MIN_AREAMI": 91, "MAX_AREAMI": 91, "MIN_PERKM": 133, "MAX_PERKM": 133, "MIN_PERMI": 83, "MAX_PERMI": 83, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53, "GN_POP": 1086505, "ELEVATION": 0, "GTOPO30": 307, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33, "POP1955": 46, "POP1960": 59, "POP1965": 82, "POP1970": 111, "POP1975": 149, "POP1980": 257, "POP1985": 424, "POP1990": 537, "POP1995": 667, "POP2000": 828, "POP2005": 1044, "POP2010": 1149, "POP2015": 1324, "POP2020": 1676, "POP2025": 2111, "POP2050": 2632 }, "geometry": { "type": "Point", "coordinates": [ -1.538086, 12.361466 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ISO_A2": "SG", "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529, "MAX_POP20": 4207001, "MAX_POP50": 4207001, "MAX_POP300": 4207001, "MAX_POP310": 4207001, "MAX_NATSCA": 300, "MIN_AREAKM": 305, "MAX_AREAKM": 456, "MIN_AREAMI": 118, "MAX_AREAMI": 176, "MIN_PERKM": 173, "MAX_PERKM": 288, "MIN_PERMI": 108, "MAX_PERMI": 179, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104, "MAX_BBXMAX": 104, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 3547809, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016, "POP1955": 1306, "POP1960": 1634, "POP1965": 1880, "POP1970": 2075, "POP1975": 2263, "POP1980": 2415, "POP1985": 2709, "POP1990": 3016, "POP1995": 3478, "POP2000": 4017, "POP2005": 4327, "POP2010": 4436, "POP2015": 4592, "POP2020": 4809, "POP2025": 4965, "POP2050": 5104 }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ISO_A2": "KI", "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534, "MAX_POP20": 22534, "MAX_POP50": 22534, "MAX_POP300": 22534, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 12, "MAX_AREAKM": 12, "MIN_AREAMI": 5, "MAX_AREAMI": 5, "MIN_PERKM": 28, "MAX_PERKM": 28, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 28802, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 173.012695, 1.340210 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 3, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162, "MAX_POP20": 18577087, "MAX_POP50": 48715672, "MAX_POP300": 87652060, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 2490, "MAX_AREAKM": 53331, "MIN_AREAMI": 962, "MAX_AREAMI": 20591, "MIN_PERKM": 0, "MAX_PERKM": 35493, "MIN_PERMI": 0, "MAX_PERMI": 22054, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28, "GN_POP": 4631392, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513, "POP1955": 5055, "POP1960": 5652, "POP1965": 6261, "POP1970": 6926, "POP1975": 7888, "POP1980": 9030, "POP1985": 9946, "POP1990": 10890, "POP1995": 11924, "POP2000": 13058, "POP2005": 14282, "POP2010": 14787, "POP2015": 15577, "POP2020": 17039, "POP2025": 18707, "POP2050": 20560, "CITYALT": "Calcutta" }, "geometry": { "type": "Point", "coordinates": [ 88.308105, 22.492257 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ISO_A2": "TO", "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620, "MAX_POP20": 42620, "MAX_POP50": 42620, "MAX_POP300": 42620, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 27, "MAX_PERKM": 27, "MIN_PERMI": 17, "MAX_PERMI": 17, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 22400, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.135745 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ISO_A2": "WS", "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916, "MAX_POP20": 61916, "MAX_POP50": 61916, "MAX_POP300": 61916, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 39, "MAX_AREAKM": 39, "MIN_AREAMI": 15, "MAX_AREAMI": 15, "MIN_PERKM": 51, "MAX_PERKM": 51, "MIN_PERMI": 32, "MAX_PERMI": 32, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24, "GN_POP": 6940, "ELEVATION": 0, "GTOPO30": 1561, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -171.738281, -13.838080 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ISO_A2": "TV", "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 0, "MIN_AREAKM": 0, "MAX_AREAKM": 0, "MIN_AREAMI": 0, "MAX_AREAMI": 0, "MIN_PERKM": 0, "MAX_PERKM": 0, "MIN_PERMI": 0, "MAX_PERMI": 0, "MIN_BBXMIN": 0, "MAX_BBXMIN": 0, "MIN_BBXMAX": 0, "MAX_BBXMAX": 0, "MIN_BBYMIN": 0, "MAX_BBYMIN": 0, "MIN_BBYMAX": 0, "MAX_BBYMAX": 0, "MEAN_BBXC": 0, "MEAN_BBYC": 0, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 4749, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -180.780029, -8.515836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 732072, "ELEVATION": 16, "GTOPO30": 60, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "CITYALT": "San Francisco" }, "geometry": { "type": "Point", "coordinates": [ -122.420654, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870, "MAX_POP20": 6558538, "MAX_POP50": 14868745, "MAX_POP300": 14870543, "MAX_POP310": 14903021, "MAX_NATSCA": 300, "MIN_AREAKM": 1338, "MAX_AREAKM": 5803, "MIN_AREAMI": 517, "MAX_AREAMI": 2241, "MIN_PERKM": 534, "MAX_PERKM": 2202, "MIN_PERMI": 332, "MAX_PERMI": 1369, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 3694820, "ELEVATION": 89, "GTOPO30": 115, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34, "UN_LONG": -118.25, "POP1950": 4046, "POP1955": 5154, "POP1960": 6530, "POP1965": 7408, "POP1970": 8378, "POP1975": 8926, "POP1980": 9512, "POP1985": 10181, "POP1990": 10883, "POP1995": 11339, "POP2000": 11814, "POP2005": 12307, "POP2010": 12500, "POP2015": 12773, "POP2020": 13160, "POP2025": 13461, "POP2050": 13672, "CITYALT": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599, "MAX_POP20": 2100407, "MAX_POP50": 2174327, "MAX_POP300": 2174327, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 909, "MAX_AREAKM": 1345, "MIN_AREAMI": 351, "MAX_AREAMI": 519, "MIN_PERKM": 371, "MAX_PERKM": 606, "MIN_PERMI": 231, "MAX_PERMI": 376, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505, "POP1955": 641, "POP1960": 809, "POP1965": 923, "POP1970": 1054, "POP1975": 1198, "POP1980": 1356, "POP1985": 1437, "POP1990": 1528, "POP1995": 1747, "POP2000": 1998, "POP2005": 2241, "POP2010": 2313, "POP2015": 2396, "POP2020": 2502, "POP2025": 2590, "POP2050": 2661, "CITYALT": "Denver" }, "geometry": { "type": "Point", "coordinates": [ -104.985352, 39.740986 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116, "MAX_POP20": 1588839, "MAX_POP50": 1590116, "MAX_POP300": 1590116, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 706, "MAX_AREAKM": 708, "MIN_AREAMI": 273, "MAX_AREAMI": 273, "MIN_PERKM": 398, "MAX_PERKM": 405, "MIN_PERMI": 248, "MAX_PERMI": 251, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 1837969, "ELEVATION": 0, "GTOPO30": 63, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556, "POP1955": 588, "POP1960": 620, "POP1965": 836, "POP1970": 1045, "POP1975": 1150, "POP1980": 1247, "POP1985": 1359, "POP1990": 1559, "POP1995": 1789, "POP2000": 1959, "POP2005": 2093, "POP2010": 2146, "POP2015": 2219, "POP2020": 2310, "POP2025": 2380, "POP2050": 2444 }, "geometry": { "type": "Point", "coordinates": [ -123.123779, 49.274973 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051, "MAX_POP20": 1892286, "MAX_POP50": 1892286, "MAX_POP300": 1892286, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 334, "MAX_AREAKM": 496, "MIN_AREAMI": 129, "MAX_AREAMI": 191, "MIN_PERKM": 233, "MAX_PERKM": 359, "MIN_PERMI": 145, "MAX_PERMI": 223, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1399814, "ELEVATION": 0, "GTOPO30": 2764, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206, "POP1955": 257, "POP1960": 319, "POP1965": 399, "POP1970": 501, "POP1975": 628, "POP1980": 780, "POP1985": 936, "POP1990": 1088, "POP1995": 1217, "POP2000": 1357, "POP2005": 1593, "POP2010": 1701, "POP2015": 1846, "POP2020": 2035, "POP2025": 2189, "POP2050": 2316 }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.208740 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234, "MAX_POP20": 7092933, "MAX_POP50": 7115614, "MAX_POP300": 7115806, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 724, "MAX_AREAKM": 790, "MIN_AREAMI": 279, "MAX_AREAMI": 305, "MIN_PERKM": 315, "MAX_PERKM": 384, "MIN_PERMI": 196, "MAX_PERMI": 239, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15, "GN_POP": 7737002, "ELEVATION": 0, "GTOPO30": 108, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066, "POP1955": 1368, "POP1960": 1756, "POP1965": 2284, "POP1970": 2980, "POP1975": 3696, "POP1980": 4438, "POP1985": 5116, "POP1990": 5837, "POP1995": 6537, "POP2000": 7116, "POP2005": 7747, "POP2010": 8012, "POP2015": 8375, "POP2020": 8857, "POP2025": 9251, "POP2050": 9600 }, "geometry": { "type": "Point", "coordinates": [ -77.047119, -12.050065 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1, "CAPALT": 0, "CAPIN": "Administrative", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482, "MAX_POP20": 1590482, "MAX_POP50": 1590482, "MAX_POP300": 1590482, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 181, "MAX_AREAKM": 181, "MIN_AREAMI": 70, "MAX_AREAMI": 70, "MIN_PERKM": 121, "MAX_PERKM": 121, "MIN_PERMI": 75, "MAX_PERMI": 75, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 812799, "ELEVATION": 0, "GTOPO30": 3829, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319, "POP1955": 374, "POP1960": 438, "POP1965": 512, "POP1970": 600, "POP1975": 703, "POP1980": 809, "POP1985": 927, "POP1990": 1062, "POP1995": 1267, "POP2000": 1390, "POP2005": 1527, "POP2010": 1590, "POP2015": 1692, "POP2020": 1864, "POP2025": 2027, "POP2050": 2178 }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941, "MAX_POP20": 2417882, "MAX_POP50": 2419489, "MAX_POP300": 2419489, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 410, "MAX_AREAKM": 419, "MIN_AREAMI": 158, "MAX_AREAMI": 162, "MIN_PERKM": 274, "MAX_PERKM": 288, "MIN_PERMI": 170, "MAX_PERMI": 179, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 994938, "ELEVATION": 0, "GTOPO30": 1533, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287, "POP1955": 370, "POP1960": 476, "POP1965": 592, "POP1970": 660, "POP1975": 715, "POP1980": 749, "POP1985": 776, "POP1990": 803, "POP1995": 839, "POP2000": 908, "POP2005": 984, "POP2010": 1024, "POP2015": 1104, "POP2020": 1281, "POP2025": 1481, "POP2050": 1690, "CITYALT": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128, "MAX_POP20": 3896411, "MAX_POP50": 3910939, "MAX_POP300": 3910939, "MAX_POP310": 3910939, "MAX_NATSCA": 300, "MIN_AREAKM": 2761, "MAX_AREAKM": 4086, "MIN_AREAMI": 1066, "MAX_AREAMI": 1578, "MIN_PERKM": 1494, "MAX_PERKM": 2459, "MIN_PERMI": 929, "MAX_PERMI": 1528, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 0, "GN_POP": 422908, "ELEVATION": 320, "GTOPO30": 305, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513, "POP1955": 631, "POP1960": 776, "POP1965": 959, "POP1970": 1182, "POP1975": 1386, "POP1980": 1625, "POP1985": 1879, "POP1990": 2184, "POP1995": 2781, "POP2000": 3542, "POP2005": 4307, "POP2010": 4506, "POP2015": 4695, "POP2020": 4888, "POP2025": 5035, "POP2050": 5151 }, "geometry": { "type": "Point", "coordinates": [ -84.396973, 33.833920 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917, "MAX_POP20": 2051170, "MAX_POP50": 2051170, "MAX_POP300": 2051170, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 323, "MAX_AREAKM": 362, "MIN_AREAMI": 125, "MAX_AREAMI": 140, "MIN_PERKM": 240, "MAX_PERKM": 286, "MIN_PERMI": 149, "MAX_PERMI": 177, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2, "GN_POP": 2163824, "ELEVATION": 0, "GTOPO30": 5, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116, "POP1955": 1289, "POP1960": 1436, "POP1965": 1598, "POP1970": 1779, "POP1975": 1848, "POP1980": 1913, "POP1985": 2005, "POP1990": 2108, "POP1995": 2183, "POP2000": 2187, "POP2005": 2189, "POP2010": 2174, "POP2015": 2159, "POP2020": 2151, "POP2025": 2150, "POP2050": 2150, "CITYALT": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 2, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798, "MAX_POP20": 5069998, "MAX_POP50": 8416660, "MAX_POP300": 8416660, "MAX_POP310": 8450289, "MAX_NATSCA": 300, "MIN_AREAKM": 1345, "MAX_AREAKM": 4804, "MIN_AREAMI": 519, "MAX_AREAMI": 1855, "MIN_PERKM": 471, "MAX_PERKM": 2946, "MIN_PERMI": 293, "MAX_PERMI": 1830, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 2841952, "ELEVATION": 179, "GTOPO30": 181, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999, "POP1955": 5565, "POP1960": 6183, "POP1965": 6639, "POP1970": 7106, "POP1975": 7160, "POP1980": 7216, "POP1985": 7285, "POP1990": 7374, "POP1995": 7839, "POP2000": 8333, "POP2005": 8820, "POP2010": 8990, "POP2015": 9211, "POP2020": 9516, "POP2025": 9756, "POP2050": 9932 }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421, "MAX_POP20": 4377344, "MAX_POP50": 5190755, "MAX_POP300": 5190755, "MAX_POP310": 5190755, "MAX_NATSCA": 300, "MIN_AREAKM": 1432, "MAX_AREAKM": 2286, "MIN_AREAMI": 553, "MAX_AREAMI": 883, "MIN_PERKM": 464, "MAX_PERKM": 1161, "MIN_PERMI": 289, "MAX_PERMI": 721, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8, "GN_POP": 4612191, "ELEVATION": 0, "GTOPO30": 173, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068, "POP1955": 1365, "POP1960": 1744, "POP1965": 2093, "POP1970": 2535, "POP1975": 2770, "POP1980": 3008, "POP1985": 3355, "POP1990": 3807, "POP1995": 4197, "POP2000": 4607, "POP2005": 5035, "POP2010": 5213, "POP2015": 5447, "POP2020": 5687, "POP2025": 5827, "POP2050": 5946 }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780, "MAX_POP20": 885780, "MAX_POP50": 885780, "MAX_POP300": 885780, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 504, "MAX_AREAKM": 504, "MIN_AREAMI": 195, "MAX_AREAMI": 195, "MIN_PERKM": 442, "MAX_PERKM": 442, "MIN_PERMI": 274, "MAX_PERMI": 274, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8, "GN_POP": 812129, "ELEVATION": 0, "GTOPO30": 61, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282, "POP1955": 342, "POP1960": 415, "POP1965": 482, "POP1970": 581, "POP1975": 676, "POP1980": 729, "POP1985": 803, "POP1990": 918, "POP1995": 988, "POP2000": 1079, "POP2005": 1119, "POP2010": 1145, "POP2015": 1182, "POP2020": 1232, "POP2025": 1274, "POP2050": 1315, "CITYALT": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.706787, 45.421588 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175, "MAX_POP20": 8118691, "MAX_POP50": 8889292, "MAX_POP300": 8889292, "MAX_POP310": 8889292, "MAX_NATSCA": 300, "MIN_AREAKM": 316, "MAX_AREAKM": 1472, "MIN_AREAMI": 122, "MAX_AREAMI": 568, "MIN_PERKM": 203, "MAX_PERKM": 691, "MIN_PERMI": 126, "MAX_PERMI": 429, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21, "GN_POP": 6023699, "ELEVATION": 0, "GTOPO30": 19, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950, "POP1955": 3592, "POP1960": 4374, "POP1965": 5387, "POP1970": 6637, "POP1975": 7557, "POP1980": 8583, "POP1985": 9086, "POP1990": 9595, "POP1995": 10174, "POP2000": 10803, "POP2005": 11469, "POP2010": 11748, "POP2015": 12171, "POP2020": 12775, "POP2025": 13179, "POP2050": 13413 }, "geometry": { "type": "Point", "coordinates": [ -43.231201, -22.928042 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ISO_A2": "CV", "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859, "MAX_POP20": 88859, "MAX_POP50": 88859, "MAX_POP300": 88859, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 37, "MIN_AREAMI": 14, "MAX_AREAMI": 14, "MIN_PERKM": 40, "MAX_PERKM": 40, "MIN_PERMI": 25, "MAX_PERMI": 25, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 113364, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -23.521729, 14.912938 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Claimed as capi", "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Laรขyoune - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365, "MAX_POP20": 176365, "MAX_POP50": 176365, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 21, "MAX_AREAKM": 21, "MIN_AREAMI": 8, "MAX_AREAMI": 8, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 0, "GN_POP": 188084, "ELEVATION": 0, "GTOPO30": 72, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316, "MAX_POP20": 1831921, "MAX_POP50": 1831921, "MAX_POP300": 1831921, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 506, "MAX_AREAKM": 508, "MIN_AREAMI": 196, "MAX_AREAMI": 196, "MIN_PERKM": 355, "MAX_PERKM": 360, "MIN_PERMI": 221, "MAX_PERMI": 224, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14, "GN_POP": 517802, "ELEVATION": 0, "GTOPO30": 56, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304, "POP1955": 1405, "POP1960": 1514, "POP1965": 1657, "POP1970": 1817, "POP1975": 2103, "POP1980": 2449, "POP1985": 2518, "POP1990": 2537, "POP1995": 2600, "POP2000": 2672, "POP2005": 2762, "POP2010": 2812, "POP2015": 2890, "POP2020": 2996, "POP2025": 3058, "POP2050": 3086, "CITYALT": "Lisbon" }, "geometry": { "type": "Point", "coordinates": [ -9.151611, 38.728376 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 3, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjavรญk", "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Suรฐurnes", "ISO_A2": "IS", "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212, "MAX_POP20": 166212, "MAX_POP50": 166212, "MAX_POP300": 166212, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 75, "MAX_AREAKM": 75, "MIN_AREAMI": 29, "MAX_AREAMI": 29, "MIN_PERKM": 119, "MAX_PERKM": 119, "MIN_PERMI": 74, "MAX_PERMI": 74, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39, "GN_POP": 113906, "ELEVATION": 0, "GTOPO30": 16, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ -21.950684, 64.148952 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976, "MAX_POP20": 968976, "MAX_POP50": 968976, "MAX_POP300": 968976, "MAX_POP310": 968976, "MAX_NATSCA": 300, "MIN_AREAKM": 351, "MAX_AREAKM": 351, "MIN_AREAMI": 135, "MAX_AREAMI": 135, "MIN_PERKM": 250, "MAX_PERKM": 250, "MIN_PERMI": 155, "MAX_PERMI": 155, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 1024027, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626, "POP1955": 647, "POP1960": 661, "POP1965": 723, "POP1970": 771, "POP1975": 833, "POP1980": 903, "POP1985": 920, "POP1990": 916, "POP1995": 946, "POP2000": 989, "POP2005": 1037, "POP2010": 1059, "POP2015": 1098, "POP2020": 1177, "POP2025": 1257, "POP2050": 1332 }, "geometry": { "type": "Point", "coordinates": [ -6.251221, 53.337433 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ISO_A2": "ST", "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219, "MAX_POP20": 88219, "MAX_POP50": 88219, "MAX_POP300": 88219, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 32, "MAX_AREAKM": 32, "MIN_AREAMI": 12, "MAX_AREAMI": 12, "MIN_PERKM": 44, "MAX_PERKM": 44, "MIN_PERMI": 28, "MAX_PERMI": 28, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22, "GN_POP": 6137, "ELEVATION": 0, "GTOPO30": 151, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.329588 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355, "MAX_POP20": 483355, "MAX_POP50": 483355, "MAX_POP300": 483355, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 108, "MAX_AREAKM": 108, "MIN_AREAMI": 42, "MAX_AREAMI": 42, "MIN_PERKM": 98, "MAX_PERKM": 98, "MIN_PERMI": 61, "MAX_PERMI": 61, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 578156, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 9.459229, 0.384519 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592, "MAX_POP20": 2153391, "MAX_POP50": 2322955, "MAX_POP300": 2322955, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 405, "MAX_AREAKM": 465, "MIN_AREAMI": 156, "MAX_AREAMI": 180, "MIN_PERKM": 391, "MAX_PERKM": 470, "MIN_PERMI": 243, "MAX_PERMI": 292, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 1353189, "ELEVATION": 0, "GTOPO30": 1206, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95, "POP1955": 110, "POP1960": 137, "POP1965": 222, "POP1970": 340, "POP1975": 398, "POP1980": 469, "POP1985": 595, "POP1990": 755, "POP1995": 912, "POP2000": 1097, "POP2005": 1318, "POP2010": 1420, "POP2015": 1597, "POP2020": 1979, "POP2025": 2506, "POP2050": 3198 }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119, "MAX_POP20": 2941045, "MAX_POP50": 2941045, "MAX_POP300": 2941045, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 443, "MAX_AREAKM": 636, "MIN_AREAMI": 171, "MAX_AREAMI": 245, "MIN_PERKM": 244, "MAX_PERKM": 345, "MIN_PERMI": 152, "MAX_PERMI": 214, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1, "GN_POP": 1963264, "ELEVATION": 0, "GTOPO30": 104, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177, "POP1955": 265, "POP1960": 393, "POP1965": 499, "POP1970": 631, "POP1975": 738, "POP1980": 863, "POP1985": 1013, "POP1990": 1197, "POP1995": 1415, "POP2000": 1674, "POP2005": 1984, "POP2010": 2121, "POP2015": 2332, "POP2020": 2688, "POP2025": 3041, "POP2050": 3382 }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durrรซs", "ISO_A2": "AL", "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241, "MAX_POP20": 530241, "MAX_POP50": 530241, "MAX_POP300": 530241, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 74, "MAX_AREAKM": 74, "MIN_AREAMI": 28, "MAX_AREAMI": 28, "MIN_PERKM": 80, "MAX_PERKM": 80, "MIN_PERMI": 50, "MAX_PERMI": 50, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50, "GN_POP": 374801, "ELEVATION": 0, "GTOPO30": 103, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 19.819336, 41.327326 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610, "MAX_POP20": 9945243, "MAX_POP50": 10140950, "MAX_POP300": 10140950, "MAX_POP310": 10140950, "MAX_NATSCA": 300, "MIN_AREAKM": 1249, "MAX_AREAKM": 1327, "MIN_AREAMI": 482, "MAX_AREAMI": 512, "MIN_PERKM": 852, "MAX_PERKM": 926, "MIN_PERMI": 529, "MAX_PERMI": 575, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34, "GN_POP": 11174257, "ELEVATION": 0, "GTOPO30": 28, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29, "POP1950": 967, "POP1955": 1249, "POP1960": 1453, "POP1965": 2001, "POP1970": 2772, "POP1975": 3600, "POP1980": 4397, "POP1985": 5407, "POP1990": 6552, "POP1995": 7665, "POP2000": 8744, "POP2005": 9709, "POP2010": 10061, "POP2015": 10530, "POP2020": 11177, "POP2025": 11695, "POP2050": 12102 }, "geometry": { "type": "Point", "coordinates": [ 29.003906, 41.104191 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 4, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282, "MAX_POP20": 8370578, "MAX_POP50": 10011551, "MAX_POP300": 10011551, "MAX_POP310": 10011551, "MAX_NATSCA": 300, "MIN_AREAKM": 1914, "MAX_AREAKM": 3198, "MIN_AREAMI": 739, "MAX_AREAMI": 1235, "MIN_PERKM": 994, "MAX_PERKM": 2440, "MIN_PERMI": 618, "MAX_PERMI": 1516, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 7421209, "ELEVATION": 0, "GTOPO30": 21, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361, "POP1955": 8278, "POP1960": 8196, "POP1965": 7869, "POP1970": 7509, "POP1975": 7546, "POP1980": 7660, "POP1985": 7667, "POP1990": 7654, "POP1995": 7908, "POP2000": 8225, "POP2005": 8505, "POP2010": 8567, "POP2015": 8607, "POP2020": 8618, "POP2025": 8618, "POP2050": 8618 }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563, "MAX_POP20": 731563, "MAX_POP50": 762374, "MAX_POP300": 762374, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 329, "MAX_AREAKM": 362, "MIN_AREAMI": 127, "MAX_AREAMI": 140, "MIN_PERKM": 340, "MAX_PERKM": 390, "MIN_PERMI": 211, "MAX_PERMI": 243, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12, "GN_POP": 580000, "ELEVATION": 0, "GTOPO30": 11, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468, "POP1955": 533, "POP1960": 578, "POP1965": 610, "POP1970": 643, "POP1975": 644, "POP1980": 643, "POP1985": 662, "POP1990": 684, "POP1995": 729, "POP2000": 774, "POP2005": 816, "POP2010": 835, "POP2015": 858, "POP2020": 885, "POP2025": 909, "POP2050": 936 }, "geometry": { "type": "Point", "coordinates": [ 10.744629, 59.916483 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078, "MAX_POP20": 1337078, "MAX_POP50": 1337078, "MAX_POP300": 1337078, "MAX_POP310": 1337078, "MAX_NATSCA": 300, "MIN_AREAKM": 694, "MAX_AREAKM": 694, "MIN_AREAMI": 268, "MAX_AREAMI": 268, "MIN_PERKM": 629, "MAX_PERKM": 629, "MIN_PERMI": 391, "MAX_PERMI": 391, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26, "GN_POP": 1253309, "ELEVATION": 0, "GTOPO30": 20, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741, "POP1955": 772, "POP1960": 805, "POP1965": 1003, "POP1970": 1035, "POP1975": 1015, "POP1980": 992, "POP1985": 1012, "POP1990": 1038, "POP1995": 1138, "POP2000": 1206, "POP2005": 1248, "POP2010": 1264, "POP2015": 1285, "POP2020": 1308, "POP2025": 1326, "POP2050": 1343 }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ISO_A2": "SC", "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576, "MAX_POP20": 33576, "MAX_POP50": 33576, "MAX_POP300": 33576, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 15, "MAX_AREAKM": 15, "MIN_AREAMI": 6, "MAX_AREAMI": 6, "MIN_PERKM": 26, "MAX_PERKM": 26, "MIN_PERMI": 16, "MAX_PERMI": 16, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 22881, "ELEVATION": 0, "GTOPO30": -9999, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538, "MAX_POP20": 1727538, "MAX_POP50": 1727538, "MAX_POP300": 1727538, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 700, "MAX_AREAKM": 700, "MIN_AREAMI": 270, "MAX_AREAMI": 270, "MIN_PERKM": 699, "MAX_PERKM": 699, "MIN_PERMI": 434, "MAX_PERMI": 434, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 1391433, "ELEVATION": 0, "GTOPO30": 1289, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177, "POP1955": 189, "POP1960": 252, "POP1965": 298, "POP1970": 363, "POP1975": 454, "POP1980": 580, "POP1985": 742, "POP1990": 948, "POP1995": 1169, "POP2000": 1361, "POP2005": 1590, "POP2010": 1697, "POP2015": 1877, "POP2020": 2229, "POP2025": 2642, "POP2050": 3118 }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ISO_A2": "MU", "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837, "MAX_POP20": 595491, "MAX_POP50": 595491, "MAX_POP300": 595491, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 70, "MAX_AREAKM": 152, "MIN_AREAMI": 27, "MAX_AREAMI": 59, "MIN_PERKM": 85, "MAX_PERKM": 154, "MIN_PERMI": 53, "MAX_PERMI": 96, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18, "GN_POP": 155226, "ELEVATION": 0, "GTOPO30": 133, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842, "MAX_POP20": 1200842, "MAX_POP50": 1200842, "MAX_POP300": 1200842, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 191, "MAX_AREAKM": 191, "MIN_AREAMI": 74, "MAX_AREAMI": 74, "MIN_PERKM": 166, "MAX_PERKM": 166, "MIN_PERMI": 103, "MAX_PERMI": 103, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11, "GN_POP": 1093485, "ELEVATION": 0, "GTOPO30": 1002, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341, "POP1955": 431, "POP1960": 538, "POP1965": 648, "POP1970": 778, "POP1975": 911, "POP1980": 1042, "POP1985": 1123, "POP1990": 1175, "POP1995": 1142, "POP2000": 1111, "POP2005": 1103, "POP2010": 1102, "POP2015": 1102, "POP2020": 1102, "POP2025": 1102, "POP2050": 1102 }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.187267 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025, "MAX_POP20": 5298025, "MAX_POP50": 5298025, "MAX_POP300": 5298025, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 587, "MAX_AREAKM": 587, "MIN_AREAMI": 227, "MAX_AREAMI": 227, "MIN_PERKM": 365, "MAX_PERKM": 365, "MIN_PERMI": 227, "MAX_PERMI": 227, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7, "GN_POP": 5672513, "ELEVATION": 0, "GTOPO30": 41, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579, "POP1955": 719, "POP1960": 1019, "POP1965": 1614, "POP1970": 2070, "POP1975": 2620, "POP1980": 3145, "POP1985": 3607, "POP1990": 4092, "POP1995": 4598, "POP2000": 5200, "POP2005": 5327, "POP2010": 5054, "POP2015": 5891, "POP2020": 6618, "POP2025": 7345, "POP2050": 8060 }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853, "MAX_POP20": 1835853, "MAX_POP50": 1835853, "MAX_POP300": 1835853, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 160, "MAX_AREAKM": 160, "MIN_AREAMI": 62, "MAX_AREAMI": 62, "MIN_PERKM": 132, "MAX_PERKM": 132, "MIN_PERMI": 82, "MAX_PERMI": 82, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "ADMIN1_COD": 0, "GN_POP": 0, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46, "POP1955": 58, "POP1960": 72, "POP1965": 89, "POP1970": 111, "POP1975": 141, "POP1980": 238, "POP1985": 402, "POP1990": 653, "POP1995": 1034, "POP2000": 1365, "POP2005": 1801, "POP2010": 2008, "POP2015": 2345, "POP2020": 2955, "POP2025": 3636, "POP2050": 4382, "CITYALT": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 5, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257, "MAX_POP20": 1005257, "MAX_POP50": 1007529, "MAX_POP300": 1007529, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 131, "MAX_AREAKM": 135, "MIN_AREAMI": 51, "MAX_AREAMI": 52, "MIN_PERKM": 128, "MAX_PERKM": 133, "MIN_PERMI": 80, "MAX_PERMI": 83, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 1049498, "ELEVATION": 0, "GTOPO30": 420, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612, "POP1955": 659, "POP1960": 718, "POP1965": 803, "POP1970": 897, "POP1975": 992, "POP1980": 1090, "POP1985": 1177, "POP1990": 1224, "POP1995": 1160, "POP2000": 1100, "POP2005": 1093, "POP2010": 1100, "POP2015": 1108, "POP2020": 1113, "POP2025": 1114, "POP2050": 1114, "CITYALT": "T'Bilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.730330 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021, "MAX_POP20": 325021, "MAX_POP50": 325021, "MAX_POP300": 325021, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 104, "MAX_AREAKM": 104, "MIN_AREAMI": 40, "MAX_AREAMI": 40, "MIN_PERKM": 101, "MAX_PERKM": 101, "MIN_PERMI": 63, "MAX_PERMI": 63, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5, "GN_POP": 345604, "ELEVATION": 0, "GTOPO30": 339, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 71.433105, 51.179343 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234, "MAX_POP20": 2865890, "MAX_POP50": 2865890, "MAX_POP300": 2865890, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 639, "MAX_AREAKM": 643, "MIN_AREAMI": 247, "MAX_AREAMI": 248, "MIN_PERKM": 377, "MAX_PERKM": 383, "MIN_PERMI": 234, "MAX_PERMI": 238, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13, "GN_POP": 1978028, "ELEVATION": 0, "GTOPO30": 460, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755, "POP1955": 843, "POP1960": 964, "POP1965": 1165, "POP1970": 1403, "POP1975": 1612, "POP1980": 1818, "POP1985": 1958, "POP1990": 2100, "POP1995": 2116, "POP2000": 2135, "POP2005": 2158, "POP2010": 2184, "POP2015": 2247, "POP2020": 2416, "POP2025": 2636, "POP2050": 2892 }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972, "MAX_POP20": 15074060, "MAX_POP50": 22017580, "MAX_POP300": 22031364, "MAX_POP310": 44354170, "MAX_NATSCA": 300, "MIN_AREAKM": 1303, "MAX_AREAKM": 19435, "MIN_AREAMI": 503, "MAX_AREAMI": 7504, "MIN_PERKM": 318, "MAX_PERKM": 10224, "MIN_PERMI": 197, "MAX_PERMI": 6353, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4, "GN_POP": 8540121, "ELEVATION": 0, "GTOPO30": 2, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452, "POP1955": 1972, "POP1960": 2679, "POP1965": 3297, "POP1970": 3915, "POP1975": 4813, "POP1980": 5984, "POP1985": 7009, "POP1990": 8175, "POP1995": 8322, "POP2000": 8390, "POP2005": 8843, "POP2010": 9125, "POP2015": 9703, "POP2020": 10792, "POP2025": 11689, "POP2050": 12363 }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154, "MAX_POP20": 55154, "MAX_POP50": 55154, "MAX_POP300": 55154, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 27, "MAX_AREAKM": 27, "MIN_AREAMI": 10, "MAX_AREAMI": 10, "MIN_PERKM": 31, "MAX_PERKM": 31, "MIN_PERMI": 19, "MAX_PERMI": 19, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 150000, "ELEVATION": 0, "GTOPO30": 9, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538, "MAX_POP20": 274538, "MAX_POP50": 275382, "MAX_POP300": 275382, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 37, "MAX_AREAKM": 38, "MIN_AREAMI": 14, "MAX_AREAMI": 15, "MIN_PERKM": 65, "MAX_PERKM": 68, "MIN_PERMI": 40, "MAX_PERMI": 42, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 98676, "ELEVATION": 2320, "GTOPO30": 2737, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962, "MAX_POP20": 21394172, "MAX_POP50": 53845691, "MAX_POP300": 78549234, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 3528, "MAX_AREAKM": 49912, "MIN_AREAMI": 1362, "MAX_AREAMI": 19271, "MIN_PERKM": 1439, "MAX_PERKM": 19314, "MIN_PERMI": 894, "MAX_PERMI": 12001, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81, "GN_POP": 10356500, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336, "POP1955": 409, "POP1960": 508, "POP1965": 821, "POP1970": 1374, "POP1975": 2221, "POP1980": 3266, "POP1985": 4660, "POP1990": 6621, "POP1995": 8332, "POP2000": 10285, "POP2005": 12576, "POP2010": 13485, "POP2015": 14796, "POP2020": 17015, "POP2025": 19422, "POP2050": 22015 }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810, "MAX_POP20": 11359674, "MAX_POP50": 24374217, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 5912, "MAX_AREAKM": 24244, "MIN_AREAMI": 2283, "MAX_AREAMI": 9361, "MIN_PERKM": 2296, "MAX_PERKM": 11900, "MIN_PERMI": 1427, "MAX_PERMI": 7394, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 3950437, "ELEVATION": 0, "GTOPO30": 529, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768, "POP1955": 922, "POP1960": 1106, "POP1965": 1327, "POP1970": 1592, "POP1975": 1911, "POP1980": 2293, "POP1985": 2639, "POP1990": 2955, "POP1995": 3403, "POP2000": 3919, "POP2005": 4065, "POP2010": 4123, "POP2015": 4266, "POP2020": 4634, "POP2025": 5014, "POP2050": 5320 }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.675715 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612, "MAX_POP20": 769612, "MAX_POP50": 769612, "MAX_POP300": 769612, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 143, "MAX_AREAKM": 143, "MIN_AREAMI": 55, "MAX_AREAMI": 55, "MIN_PERKM": 144, "MAX_PERKM": 144, "MIN_PERMI": 89, "MAX_PERMI": 89, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 844818, "ELEVATION": 0, "GTOPO30": 1299, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70, "POP1955": 112, "POP1960": 179, "POP1965": 248, "POP1970": 298, "POP1975": 356, "POP1980": 423, "POP1985": 492, "POP1990": 572, "POP1995": 661, "POP2000": 763, "POP2005": 856, "POP2010": 885, "POP2015": 919, "POP2020": 978, "POP2025": 1044, "POP2050": 1112 }, "geometry": { "type": "Point", "coordinates": [ 106.918945, 47.916342 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 5 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164, "MAX_POP20": 144164, "MAX_POP50": 144164, "MAX_POP300": 144164, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 77, "MAX_AREAKM": 77, "MIN_AREAMI": 30, "MAX_AREAMI": 30, "MIN_PERKM": 79, "MAX_PERKM": 79, "MIN_PERMI": 49, "MAX_PERMI": 49, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2, "GN_POP": 5428, "ELEVATION": 0, "GTOPO30": 304, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 4 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136, "MAX_POP20": 251136, "MAX_POP50": 251136, "MAX_POP300": 251136, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 89, "MAX_AREAKM": 89, "MIN_AREAMI": 35, "MAX_AREAMI": 35, "MIN_PERKM": 92, "MAX_PERKM": 92, "MIN_PERMI": 57, "MAX_PERMI": 57, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20, "GN_POP": 283733, "ELEVATION": 0, "GTOPO30": 50, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 147.194824, -9.459899 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377, "MAX_POP20": 2545035, "MAX_POP50": 2564188, "MAX_POP300": 2564188, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 1010, "MAX_AREAKM": 1554, "MIN_AREAMI": 390, "MAX_AREAMI": 600, "MIN_PERKM": 360, "MAX_PERKM": 843, "MIN_PERMI": 224, "MAX_PERMI": 524, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 3730206, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332, "POP1955": 1574, "POP1960": 1851, "POP1965": 2068, "POP1970": 2334, "POP1975": 2561, "POP1980": 2765, "POP1985": 2935, "POP1990": 3117, "POP1995": 3257, "POP2000": 3433, "POP2005": 3641, "POP2010": 3728, "POP2015": 3851, "POP2020": 4013, "POP2025": 4137, "POP2050": 4238 }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.814124 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457, "MAX_POP20": 2731457, "MAX_POP50": 3164008, "MAX_POP300": 3164008, "MAX_POP310": 3164008, "MAX_NATSCA": 300, "MIN_AREAKM": 1078, "MAX_AREAKM": 1409, "MIN_AREAMI": 416, "MAX_AREAMI": 544, "MIN_PERKM": 468, "MAX_PERKM": 717, "MIN_PERMI": 291, "MAX_PERMI": 445, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "ADMIN1_COD": 0, "GN_POP": 4394576, "ELEVATION": 0, "GTOPO30": 0, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690, "POP1955": 1906, "POP1960": 2135, "POP1965": 2390, "POP1970": 2667, "POP1975": 2960, "POP1980": 3227, "POP1985": 3432, "POP1990": 3632, "POP1995": 3839, "POP2000": 4078, "POP2005": 4260, "POP2010": 4327, "POP2015": 4427, "POP2020": 4582, "POP2025": 4716, "POP2050": 4826 }, "geometry": { "type": "Point", "coordinates": [ 151.182861, -33.916013 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 7, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1, "CAPALT": 0, "WORLDCITY": 0, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ISO_A2": "PW", "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 0, "MAX_POP20": 0, "MAX_POP50": 0, "MAX_POP300": 7026, "MAX_POP310": 0, "MAX_NATSCA": 100, "MIN_AREAKM": 6, "MAX_AREAKM": 6, "MIN_AREAMI": 2, "MAX_AREAMI": 2, "MIN_PERKM": 15, "MAX_PERKM": 15, "MIN_PERMI": 9, "MAX_PERMI": 9, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 0, "GN_POP": 217, "ELEVATION": 0, "GTOPO30": 1, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_LAT": 0, "UN_LONG": 0, "POP1950": 0, "POP1955": 0, "POP1960": 0, "POP1965": 0, "POP1970": 0, "POP1975": 0, "POP1980": 0, "POP1985": 0, "POP1990": 0, "POP1995": 0, "POP2000": 0, "POP2005": 0, "POP2010": 0, "POP2015": 0, "POP2020": 0, "POP2025": 0, "POP2050": 0 }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": 0, "CAPALT": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723, "MAX_POP20": 10259448, "MAX_POP50": 13292739, "MAX_POP300": 15645640, "MAX_POP310": 15645640, "MAX_NATSCA": 300, "MIN_AREAKM": 1561, "MAX_AREAKM": 2861, "MIN_AREAMI": 603, "MAX_AREAMI": 1105, "MIN_PERKM": 546, "MAX_PERKM": 1202, "MIN_PERMI": 339, "MAX_PERMI": 747, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32, "GN_POP": 2592413, "ELEVATION": 0, "GTOPO30": 4, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147, "POP1955": 5120, "POP1960": 6227, "POP1965": 7654, "POP1970": 9408, "POP1975": 9844, "POP1980": 9990, "POP1985": 10350, "POP1990": 11035, "POP1995": 11052, "POP2000": 11165, "POP2005": 11258, "POP2010": 11294, "POP2015": 11337, "POP2020": 11365, "POP2025": 11368, "POP2050": 11368, "CITYALT": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, +{ "type": "Feature", "properties": { "SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": 0, "CAPALT": 1, "CAPIN": "Official capita", "WORLDCITY": 0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": 0, "NAMEDIFF": 0, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052, "MAX_POP20": 2520813, "MAX_POP50": 2520813, "MAX_POP300": 0, "MAX_POP310": 0, "MAX_NATSCA": 50, "MIN_AREAKM": 340, "MAX_AREAKM": 486, "MIN_AREAMI": 131, "MAX_AREAMI": 188, "MIN_PERKM": 130, "MAX_PERKM": 218, "MIN_PERMI": 81, "MAX_PERMI": 135, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22, "GN_POP": 1459640, "ELEVATION": 0, "GTOPO30": 86, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35, "UN_LONG": 135.75, "POP1950": 1002, "POP1955": 1091, "POP1960": 1165, "POP1965": 1229, "POP1970": 1298, "POP1975": 1622, "POP1980": 1701, "POP1985": 1714, "POP1990": 1760, "POP1995": 1804, "POP2000": 1806, "POP2005": 1805, "POP2010": 1805, "POP2015": 1804, "POP2020": 1804, "POP2025": 1804, "POP2050": 1804 }, "geometry": { "type": "Point", "coordinates": [ 135.747070, 35.029996 ] } } +] } +] } +] } diff --git a/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json b/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json index f00dd5850..5a1e7ef45 100644 --- a/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json +++ b/tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/ne_110m_populated_places/out/-z4_-yNAME_-c.%2ftests%2ffilter%2fremove.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":251},{\"dropped_by_rate\":216},{\"dropped_by_rate\":146},{}]", +"strategies": "[{\"dropped_by_rate\":236},{\"dropped_by_rate\":251},{\"dropped_by_rate\":217},{\"dropped_by_rate\":145},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -17,17 +17,17 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.710938, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.306641, 50.847573 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.776559 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.302591 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 145.019531, -37.788081 ] } } ] } ] } , @@ -43,11 +43,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.134766, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.959961, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.666992, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.486328, -0.219726 ] } } ] } @@ -59,11 +59,9 @@ , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.336914, -4.346411 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.966054 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.695273 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -71,21 +69,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.508742 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.350586, 50.819818 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.872070, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.498047, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.732708 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.195312, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.596680, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.321349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.382175 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.936523, 6.882800 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.488781 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.689453, 3.162456 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.579413 ] } } ] } ] } , @@ -99,9 +99,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Vancouver" }, "geometry": { "type": "Point", "coordinates": [ -123.112793, 49.267805 ] } } , -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.626109 ] } } -, -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.140625, 19.435514 ] } } ] } ] } , @@ -109,7 +107,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.634277, -25.304304 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.922363, -15.792254 ] } } ] } ] } , @@ -119,19 +117,19 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.353516, 23.140360 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.208984, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.308688 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.479609 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.039321 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.215820, 13.154376 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.173340, 5.834616 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.624512, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Dublin" }, "geometry": { "type": "Point", "coordinates": [ -6.240234, 53.330873 ] } } , -{ "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.688965, 9.535749 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.788574, 6.315299 ] } } , { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.508301, -0.219726 ] } } ] } @@ -141,13 +139,13 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.745605, 0.329588 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.324501 ] } } +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.292969, -4.258768 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.355469, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.716788 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.793945, -13.987376 ] } } , -{ "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.313113 ] } } ] } ] } , @@ -155,39 +153,39 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.131836, 51.495065 ] } } , -{ "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.105469, 59.355596 ] } } , -{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.210250 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.328613, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.436523, 43.929550 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.159668, 42.666281 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.824708 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.312500, 54.686534 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.944974 ] } } , -{ "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.850098, 47.010226 ] } } +{ "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.429518 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.523926, 35.889050 ] } } +{ "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.173340, 36.809285 ] } } , -{ "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.754634 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.566895, 4.368320 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.574707, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.301758, 41.310824 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.077148, 9.557417 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.988281, 29.363027 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.416016, 35.675147 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.360352, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.211914, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.706063 ] } } , -{ "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.958496, 6.904614 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.648438, 27.469287 ] } } ] } ] } , @@ -195,9 +193,9 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.864746, 1.296276 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.573730, -8.559294 ] } } +{ "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.184246 ] } } , -{ "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.960938, -9.449062 ] } } +{ "type": "Feature", "properties": { "NAME": "Melbourne" }, "geometry": { "type": "Point", "coordinates": [ 144.975586, -37.822802 ] } } ] } ] } , @@ -205,21 +203,19 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.626465, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.174316, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.130371, 19.766704 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.711426, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.749512, 39.027719 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.025884 ] } } , -{ "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.746094, 35.692995 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 0, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Nukualofa" }, "geometry": { "type": "Point", "coordinates": [ -175.220947, -21.145992 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ -180.791016, -8.515836 ] } } ] } ] } , @@ -229,11 +225,9 @@ , { "type": "Feature", "properties": { "NAME": "Los Angeles" }, "geometry": { "type": "Point", "coordinates": [ -118.179932, 33.988918 ] } } , -{ "type": "Feature", "properties": { "NAME": "Monterrey" }, "geometry": { "type": "Point", "coordinates": [ -100.327148, 25.671236 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Guatemala" }, "geometry": { "type": "Point", "coordinates": [ -90.527344, 14.615478 ] } } +{ "type": "Feature", "properties": { "NAME": "Houston" }, "geometry": { "type": "Point", "coordinates": [ -95.339355, 29.821583 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Mexico City" }, "geometry": { "type": "Point", "coordinates": [ -99.129639, 19.445874 ] } } ] } ] } , @@ -247,11 +241,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Quito" }, "geometry": { "type": "Point", "coordinates": [ -78.497314, -0.219726 ] } } , -{ "type": "Feature", "properties": { "NAME": "La Paz" }, "geometry": { "type": "Point", "coordinates": [ -68.148193, -16.499299 ] } } +{ "type": "Feature", "properties": { "NAME": "Valparaiso" }, "geometry": { "type": "Point", "coordinates": [ -71.619873, -33.045508 ] } } , { "type": "Feature", "properties": { "NAME": "Sucre" }, "geometry": { "type": "Point", "coordinates": [ -65.258789, -19.041349 ] } } , -{ "type": "Feature", "properties": { "NAME": "Asuncion" }, "geometry": { "type": "Point", "coordinates": [ -57.645264, -25.294371 ] } } +{ "type": "Feature", "properties": { "NAME": "Brasilia" }, "geometry": { "type": "Point", "coordinates": [ -47.911377, -15.781682 ] } } , { "type": "Feature", "properties": { "NAME": "Montevideo" }, "geometry": { "type": "Point", "coordinates": [ -56.173096, -34.858890 ] } } ] } @@ -263,23 +257,23 @@ , { "type": "Feature", "properties": { "NAME": "Havana" }, "geometry": { "type": "Point", "coordinates": [ -82.364502, 23.130257 ] } } , -{ "type": "Feature", "properties": { "NAME": "Washington, D.C." }, "geometry": { "type": "Point", "coordinates": [ -77.003174, 38.899583 ] } } +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } , { "type": "Feature", "properties": { "NAME": "Belmopan" }, "geometry": { "type": "Point", "coordinates": [ -88.769531, 17.245744 ] } } , -{ "type": "Feature", "properties": { "NAME": "San Salvador" }, "geometry": { "type": "Point", "coordinates": [ -89.197998, 13.710035 ] } } +{ "type": "Feature", "properties": { "NAME": "Managua" }, "geometry": { "type": "Point", "coordinates": [ -86.264648, 12.157486 ] } } , { "type": "Feature", "properties": { "NAME": "Panama City" }, "geometry": { "type": "Point", "coordinates": [ -79.530029, 8.971897 ] } } , -{ "type": "Feature", "properties": { "NAME": "Port-au-Prince" }, "geometry": { "type": "Point", "coordinates": [ -72.333984, 18.542117 ] } } +{ "type": "Feature", "properties": { "NAME": "Santo Domingo" }, "geometry": { "type": "Point", "coordinates": [ -69.895020, 18.469189 ] } } , { "type": "Feature", "properties": { "NAME": "Basseterre" }, "geometry": { "type": "Point", "coordinates": [ -62.709961, 17.298199 ] } } , -{ "type": "Feature", "properties": { "NAME": "Roseau" }, "geometry": { "type": "Point", "coordinates": [ -61.380615, 15.294783 ] } } +{ "type": "Feature", "properties": { "NAME": "Castries" }, "geometry": { "type": "Point", "coordinates": [ -60.996094, 13.998037 ] } } , -{ "type": "Feature", "properties": { "NAME": "Saint George's" }, "geometry": { "type": "Point", "coordinates": [ -61.743164, 12.050065 ] } } +{ "type": "Feature", "properties": { "NAME": "Kingstown" }, "geometry": { "type": "Point", "coordinates": [ -61.204834, 13.143678 ] } } , -{ "type": "Feature", "properties": { "NAME": "Caracas" }, "geometry": { "type": "Point", "coordinates": [ -66.917725, 10.498614 ] } } +{ "type": "Feature", "properties": { "NAME": "Port-of-Spain" }, "geometry": { "type": "Point", "coordinates": [ -61.512451, 10.649811 ] } } , { "type": "Feature", "properties": { "NAME": "Paramaribo" }, "geometry": { "type": "Point", "coordinates": [ -55.162354, 5.834616 ] } } , @@ -291,7 +285,9 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Chicago" }, "geometry": { "type": "Point", "coordinates": [ -87.747803, 41.828642 ] } } , -{ "type": "Feature", "properties": { "NAME": "Toronto" }, "geometry": { "type": "Point", "coordinates": [ -79.420166, 43.699651 ] } } +{ "type": "Feature", "properties": { "NAME": "Ottawa" }, "geometry": { "type": "Point", "coordinates": [ -75.695801, 45.413876 ] } } +, +{ "type": "Feature", "properties": { "NAME": "New York" }, "geometry": { "type": "Point", "coordinates": [ -73.981934, 40.747257 ] } } ] } ] } , @@ -307,19 +303,17 @@ , { "type": "Feature", "properties": { "NAME": "Laayoune" }, "geometry": { "type": "Point", "coordinates": [ -13.194580, 27.147145 ] } } , -{ "type": "Feature", "properties": { "NAME": "Casablanca" }, "geometry": { "type": "Point", "coordinates": [ -7.613525, 33.596319 ] } } +{ "type": "Feature", "properties": { "NAME": "Rabat" }, "geometry": { "type": "Point", "coordinates": [ -6.833496, 34.025348 ] } } , { "type": "Feature", "properties": { "NAME": "Bir Lehlou" }, "geometry": { "type": "Point", "coordinates": [ -9.645996, 26.115986 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nouakchott" }, "geometry": { "type": "Point", "coordinates": [ -15.974121, 18.083201 ] } } +{ "type": "Feature", "properties": { "NAME": "Banjul" }, "geometry": { "type": "Point", "coordinates": [ -16.589355, 13.453737 ] } } , { "type": "Feature", "properties": { "NAME": "Conakry" }, "geometry": { "type": "Point", "coordinates": [ -13.677979, 9.535749 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bamako" }, "geometry": { "type": "Point", "coordinates": [ -7.998047, 12.651058 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Yamoussoukro" }, "geometry": { "type": "Point", "coordinates": [ -5.273438, 6.817353 ] } } +{ "type": "Feature", "properties": { "NAME": "Ouagadougou" }, "geometry": { "type": "Point", "coordinates": [ -1.527100, 12.372197 ] } } , -{ "type": "Feature", "properties": { "NAME": "Accra" }, "geometry": { "type": "Point", "coordinates": [ -0.219727, 5.550381 ] } } +{ "type": "Feature", "properties": { "NAME": "Monrovia" }, "geometry": { "type": "Point", "coordinates": [ -10.799561, 6.315299 ] } } ] } ] } , @@ -335,21 +329,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Sao Tome" }, "geometry": { "type": "Point", "coordinates": [ 6.734619, 0.340574 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kinshasa" }, "geometry": { "type": "Point", "coordinates": [ 15.314941, -4.335456 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brazzaville" }, "geometry": { "type": "Point", "coordinates": [ 15.281982, -4.258768 ] } } , -{ "type": "Feature", "properties": { "NAME": "Windhoek" }, "geometry": { "type": "Point", "coordinates": [ 17.083740, -22.573438 ] } } +{ "type": "Feature", "properties": { "NAME": "Cape Town" }, "geometry": { "type": "Point", "coordinates": [ 18.435059, -33.916013 ] } } , { "type": "Feature", "properties": { "NAME": "Bujumbura" }, "geometry": { "type": "Point", "coordinates": [ 29.366455, -3.381824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Harare" }, "geometry": { "type": "Point", "coordinates": [ 31.047363, -17.821916 ] } } +{ "type": "Feature", "properties": { "NAME": "Nairobi" }, "geometry": { "type": "Point", "coordinates": [ 36.815186, -1.285293 ] } } , { "type": "Feature", "properties": { "NAME": "Dar es Salaam" }, "geometry": { "type": "Point", "coordinates": [ 39.265137, -6.795535 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moroni" }, "geometry": { "type": "Point", "coordinates": [ 43.242188, -11.706031 ] } } +{ "type": "Feature", "properties": { "NAME": "Lilongwe" }, "geometry": { "type": "Point", "coordinates": [ 33.782959, -13.987376 ] } } , { "type": "Feature", "properties": { "NAME": "Bloemfontein" }, "geometry": { "type": "Point", "coordinates": [ 26.235352, -29.123373 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pretoria" }, "geometry": { "type": "Point", "coordinates": [ 28.234863, -25.710837 ] } } +{ "type": "Feature", "properties": { "NAME": "Mbabane" }, "geometry": { "type": "Point", "coordinates": [ 31.135254, -26.322960 ] } } , { "type": "Feature", "properties": { "NAME": "Maputo" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, -25.958045 ] } } ] } @@ -361,31 +357,33 @@ , { "type": "Feature", "properties": { "NAME": "Tunis" }, "geometry": { "type": "Point", "coordinates": [ 10.184326, 36.800488 ] } } , -{ "type": "Feature", "properties": { "NAME": "Valletta" }, "geometry": { "type": "Point", "coordinates": [ 14.512939, 35.897950 ] } } +{ "type": "Feature", "properties": { "NAME": "Niamey" }, "geometry": { "type": "Point", "coordinates": [ 2.120361, 13.517838 ] } } , { "type": "Feature", "properties": { "NAME": "Cotonou" }, "geometry": { "type": "Point", "coordinates": [ 2.515869, 6.402648 ] } } , -{ "type": "Feature", "properties": { "NAME": "Lagos" }, "geometry": { "type": "Point", "coordinates": [ 3.394775, 6.446318 ] } } +{ "type": "Feature", "properties": { "NAME": "Abuja" }, "geometry": { "type": "Point", "coordinates": [ 7.536621, 9.080400 ] } } , { "type": "Feature", "properties": { "NAME": "Malabo" }, "geometry": { "type": "Point", "coordinates": [ 8.789062, 3.743671 ] } } , -{ "type": "Feature", "properties": { "NAME": "Ndjamena" }, "geometry": { "type": "Point", "coordinates": [ 15.051270, 12.114523 ] } } +{ "type": "Feature", "properties": { "NAME": "Yaounde" }, "geometry": { "type": "Point", "coordinates": [ 11.513672, 3.864255 ] } } , -{ "type": "Feature", "properties": { "NAME": "Athens" }, "geometry": { "type": "Point", "coordinates": [ 23.730469, 37.978845 ] } } +{ "type": "Feature", "properties": { "NAME": "Bangui" }, "geometry": { "type": "Point", "coordinates": [ 18.555908, 4.368320 ] } } , -{ "type": "Feature", "properties": { "NAME": "Nicosia" }, "geometry": { "type": "Point", "coordinates": [ 33.365479, 35.164828 ] } } +{ "type": "Feature", "properties": { "NAME": "Cairo" }, "geometry": { "type": "Point", "coordinates": [ 31.256104, 30.050077 ] } } , { "type": "Feature", "properties": { "NAME": "Beirut" }, "geometry": { "type": "Point", "coordinates": [ 35.507812, 33.870416 ] } } , -{ "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.516602, 40.178873 ] } } +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.395752, 33.339707 ] } } , { "type": "Feature", "properties": { "NAME": "Amman" }, "geometry": { "type": "Point", "coordinates": [ 35.936279, 31.952162 ] } } , -{ "type": "Feature", "properties": { "NAME": "Juba" }, "geometry": { "type": "Point", "coordinates": [ 31.585693, 4.828260 ] } } +{ "type": "Feature", "properties": { "NAME": "Kampala" }, "geometry": { "type": "Point", "coordinates": [ 32.585449, 0.318602 ] } } , { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.208984, 15.358356 ] } } , -{ "type": "Feature", "properties": { "NAME": "Addis Ababa" }, "geometry": { "type": "Point", "coordinates": [ 38.704834, 9.037003 ] } } +{ "type": "Feature", "properties": { "NAME": "Hargeysa" }, "geometry": { "type": "Point", "coordinates": [ 44.066162, 9.557417 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } ] } ] } , @@ -393,39 +391,39 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "London" }, "geometry": { "type": "Point", "coordinates": [ -0.120850, 51.501904 ] } } , -{ "type": "Feature", "properties": { "NAME": "Oslo" }, "geometry": { "type": "Point", "coordinates": [ 10.755615, 59.916483 ] } } +{ "type": "Feature", "properties": { "NAME": "Stockholm" }, "geometry": { "type": "Point", "coordinates": [ 18.094482, 59.349996 ] } } , { "type": "Feature", "properties": { "NAME": "Amsterdam" }, "geometry": { "type": "Point", "coordinates": [ 4.921875, 52.348763 ] } } , -{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.130371, 49.610710 ] } } +{ "type": "Feature", "properties": { "NAME": "Brussels" }, "geometry": { "type": "Point", "coordinates": [ 4.339600, 50.833698 ] } } , { "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.141357, 46.210250 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.514160, 47.129951 ] } } +{ "type": "Feature", "properties": { "NAME": "Monaco" }, "geometry": { "type": "Point", "coordinates": [ 7.404785, 43.739352 ] } } , { "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.522906 ] } } , -{ "type": "Feature", "properties": { "NAME": "Warsaw" }, "geometry": { "type": "Point", "coordinates": [ 21.005859, 52.247983 ] } } +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.369629, 48.202710 ] } } , { "type": "Feature", "properties": { "NAME": "Zagreb" }, "geometry": { "type": "Point", "coordinates": [ 16.007080, 45.798170 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vatican City" }, "geometry": { "type": "Point", "coordinates": [ 12.458496, 41.902277 ] } } +{ "type": "Feature", "properties": { "NAME": "San Marino" }, "geometry": { "type": "Point", "coordinates": [ 12.447510, 43.937462 ] } } , { "type": "Feature", "properties": { "NAME": "Budapest" }, "geometry": { "type": "Point", "coordinates": [ 19.083252, 47.502359 ] } } , -{ "type": "Feature", "properties": { "NAME": "Podgorica" }, "geometry": { "type": "Point", "coordinates": [ 19.270020, 42.463993 ] } } +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.467529, 44.816916 ] } } , { "type": "Feature", "properties": { "NAME": "Pristina" }, "geometry": { "type": "Point", "coordinates": [ 21.170654, 42.666281 ] } } , -{ "type": "Feature", "properties": { "NAME": "Helsinki" }, "geometry": { "type": "Point", "coordinates": [ 24.938965, 60.174306 ] } } +{ "type": "Feature", "properties": { "NAME": "Tallinn" }, "geometry": { "type": "Point", "coordinates": [ 24.730225, 59.433903 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vilnius" }, "geometry": { "type": "Point", "coordinates": [ 25.323486, 54.680183 ] } } +{ "type": "Feature", "properties": { "NAME": "Riga" }, "geometry": { "type": "Point", "coordinates": [ 24.104004, 56.950966 ] } } , { "type": "Feature", "properties": { "NAME": "Kiev" }, "geometry": { "type": "Point", "coordinates": [ 30.520020, 50.436516 ] } } , { "type": "Feature", "properties": { "NAME": "Chisinau" }, "geometry": { "type": "Point", "coordinates": [ 28.861084, 47.002734 ] } } , -{ "type": "Feature", "properties": { "NAME": "Moscow" }, "geometry": { "type": "Point", "coordinates": [ 37.617188, 55.751849 ] } } +{ "type": "Feature", "properties": { "NAME": "Tbilisi" }, "geometry": { "type": "Point", "coordinates": [ 44.791260, 41.722131 ] } } ] } ] } , @@ -433,7 +431,7 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Victoria" }, "geometry": { "type": "Point", "coordinates": [ 55.447998, -4.620229 ] } } , -{ "type": "Feature", "properties": { "NAME": "Antananarivo" }, "geometry": { "type": "Point", "coordinates": [ 47.515869, -18.916680 ] } } +{ "type": "Feature", "properties": { "NAME": "Port Louis" }, "geometry": { "type": "Point", "coordinates": [ 57.502441, -20.169411 ] } } ] } ] } , @@ -441,29 +439,31 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Yerevan" }, "geometry": { "type": "Point", "coordinates": [ 44.505615, 40.178873 ] } } , +{ "type": "Feature", "properties": { "NAME": "Baghdad" }, "geometry": { "type": "Point", "coordinates": [ 44.384766, 33.339707 ] } } +, { "type": "Feature", "properties": { "NAME": "Sanaa" }, "geometry": { "type": "Point", "coordinates": [ 44.197998, 15.358356 ] } } , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.319076 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kuwait" }, "geometry": { "type": "Point", "coordinates": [ 47.977295, 29.372602 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manama" }, "geometry": { "type": "Point", "coordinates": [ 50.581055, 26.234302 ] } } +{ "type": "Feature", "properties": { "NAME": "Tehran" }, "geometry": { "type": "Point", "coordinates": [ 51.427002, 35.675147 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Doha" }, "geometry": { "type": "Point", "coordinates": [ 51.536865, 25.284438 ] } } , { "type": "Feature", "properties": { "NAME": "Abu Dhabi" }, "geometry": { "type": "Point", "coordinates": [ 54.371338, 24.467151 ] } } , -{ "type": "Feature", "properties": { "NAME": "Muscat" }, "geometry": { "type": "Point", "coordinates": [ 58.601074, 23.614329 ] } } +{ "type": "Feature", "properties": { "NAME": "Mogadishu" }, "geometry": { "type": "Point", "coordinates": [ 45.362549, 2.064982 ] } } , { "type": "Feature", "properties": { "NAME": "Kabul" }, "geometry": { "type": "Point", "coordinates": [ 69.180908, 34.515610 ] } } , -{ "type": "Feature", "properties": { "NAME": "New Delhi" }, "geometry": { "type": "Point", "coordinates": [ 77.200928, 28.594169 ] } } +{ "type": "Feature", "properties": { "NAME": "Islamabad" }, "geometry": { "type": "Point", "coordinates": [ 73.168945, 33.696923 ] } } , -{ "type": "Feature", "properties": { "NAME": "Kolkata" }, "geometry": { "type": "Point", "coordinates": [ 88.330078, 22.492257 ] } } +{ "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Bangalore" }, "geometry": { "type": "Point", "coordinates": [ 77.563477, 12.972442 ] } } +{ "type": "Feature", "properties": { "NAME": "Male" }, "geometry": { "type": "Point", "coordinates": [ 73.498535, 4.160158 ] } } , { "type": "Feature", "properties": { "NAME": "Sri Jawewardenepura Kotte" }, "geometry": { "type": "Point", "coordinates": [ 79.947510, 6.893707 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } ] } ] } , @@ -473,15 +473,13 @@ , { "type": "Feature", "properties": { "NAME": "Tashkent" }, "geometry": { "type": "Point", "coordinates": [ 69.290771, 41.310824 ] } } , -{ "type": "Feature", "properties": { "NAME": "Urumqi" }, "geometry": { "type": "Point", "coordinates": [ 87.572021, 43.802819 ] } } +{ "type": "Feature", "properties": { "NAME": "Baku" }, "geometry": { "type": "Point", "coordinates": [ 49.866943, 40.396764 ] } } ] } ] } , { "type": "FeatureCollection", "properties": { "zoom": 3, "x": 6, "y": 4 }, "features": [ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Jakarta" }, "geometry": { "type": "Point", "coordinates": [ 106.831055, -6.173324 ] } } -, -{ "type": "Feature", "properties": { "NAME": "Dili" }, "geometry": { "type": "Point", "coordinates": [ 125.584717, -8.559294 ] } } ] } ] } , @@ -489,23 +487,23 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Thimphu" }, "geometry": { "type": "Point", "coordinates": [ 89.637451, 27.469287 ] } } , -{ "type": "Feature", "properties": { "NAME": "Dhaka" }, "geometry": { "type": "Point", "coordinates": [ 90.406494, 23.725012 ] } } +{ "type": "Feature", "properties": { "NAME": "Chengdu" }, "geometry": { "type": "Point", "coordinates": [ 104.073486, 30.666266 ] } } , -{ "type": "Feature", "properties": { "NAME": "Rangoon" }, "geometry": { "type": "Point", "coordinates": [ 96.163330, 16.783506 ] } } +{ "type": "Feature", "properties": { "NAME": "Naypyidaw" }, "geometry": { "type": "Point", "coordinates": [ 96.119385, 19.766704 ] } } , -{ "type": "Feature", "properties": { "NAME": "Vientiane" }, "geometry": { "type": "Point", "coordinates": [ 102.601318, 17.968283 ] } } +{ "type": "Feature", "properties": { "NAME": "Hanoi" }, "geometry": { "type": "Point", "coordinates": [ 105.853271, 21.033237 ] } } , { "type": "Feature", "properties": { "NAME": "Kuala Lumpur" }, "geometry": { "type": "Point", "coordinates": [ 101.700439, 3.162456 ] } } , -{ "type": "Feature", "properties": { "NAME": "Singapore" }, "geometry": { "type": "Point", "coordinates": [ 103.853760, 1.296276 ] } } +{ "type": "Feature", "properties": { "NAME": "Beijing" }, "geometry": { "type": "Point", "coordinates": [ 116.389160, 39.926588 ] } } , { "type": "Feature", "properties": { "NAME": "Shanghai" }, "geometry": { "type": "Point", "coordinates": [ 121.431885, 31.212801 ] } } , -{ "type": "Feature", "properties": { "NAME": "Pyongyang" }, "geometry": { "type": "Point", "coordinates": [ 125.760498, 39.019184 ] } } +{ "type": "Feature", "properties": { "NAME": "Taipei" }, "geometry": { "type": "Point", "coordinates": [ 121.574707, 25.035839 ] } } , -{ "type": "Feature", "properties": { "NAME": "Manila" }, "geometry": { "type": "Point", "coordinates": [ 120.981445, 14.604847 ] } } +{ "type": "Feature", "properties": { "NAME": "Seoul" }, "geometry": { "type": "Point", "coordinates": [ 127.001953, 37.561997 ] } } , -{ "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } ] } ] } , @@ -529,7 +527,7 @@ , { "type": "Feature", "properties": { "NAME": "Honiara" }, "geometry": { "type": "Point", "coordinates": [ 159.949951, -9.438224 ] } } , -{ "type": "Feature", "properties": { "NAME": "Funafuti" }, "geometry": { "type": "Point", "coordinates": [ 179.219971, -8.515836 ] } } +{ "type": "Feature", "properties": { "NAME": "Suva" }, "geometry": { "type": "Point", "coordinates": [ 178.439941, -18.135412 ] } } , { "type": "Feature", "properties": { "NAME": "Wellington" }, "geometry": { "type": "Point", "coordinates": [ 174.781494, -41.302571 ] } } ] } @@ -539,9 +537,11 @@ { "type": "FeatureCollection", "properties": { "layer": "unknown", "version": 2, "extent": 4096 }, "features": [ { "type": "Feature", "properties": { "NAME": "Melekeok" }, "geometry": { "type": "Point", "coordinates": [ 134.626465, 7.482304 ] } } , +{ "type": "Feature", "properties": { "NAME": "Osaka" }, "geometry": { "type": "Point", "coordinates": [ 135.461426, 34.750640 ] } } +, { "type": "Feature", "properties": { "NAME": "Tokyo" }, "geometry": { "type": "Point", "coordinates": [ 139.757080, 35.684072 ] } } , -{ "type": "Feature", "properties": { "NAME": "Majuro" }, "geometry": { "type": "Point", "coordinates": [ 171.386719, 7.100893 ] } } +{ "type": "Feature", "properties": { "NAME": "Tarawa" }, "geometry": { "type": "Point", "coordinates": [ 173.023682, 1.340210 ] } } ] } ] } , diff --git a/tests/ne_110m_populated_places_nulls/in.json b/tests/ne_110m_populated_places_nulls/in.json new file mode 100644 index 000000000..a98b2e062 --- /dev/null +++ b/tests/ne_110m_populated_places_nulls/in.json @@ -0,0 +1,243 @@ +{"type": "Feature", "properties": {"SCALERANK": 8, "NATSCALE": 10, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Vatican City", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vatican City", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 0, "SOV0NAME": "Vatican (Holy Sea)", "SOV_A3": "VAT", "ADM0NAME": "Vatican (Holy Sea)", "ADM0_A3": "VAT", "ADM1NAME": "Lazio", "ISO_A2": "VA", "NOTE": null, "LATITUDE": 41.900012, "LONGITUDE": 12.447808, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 832, "POP_MIN": 832, "POP_OTHER": 562430, "RANK_MAX": 2, "RANK_MIN": 2, "GEONAMEID": 6691831.0, "MEGANAME": null, "LS_NAME": "Vatican City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 636762.0, "MAX_POP20": 636762.0, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 20.0, "MIN_AREAKM": 177.0, "MAX_AREAKM": 177.0, "MIN_AREAMI": 68.0, "MAX_AREAMI": 68.0, "MIN_PERKM": 160.0, "MAX_PERKM": 160.0, "MIN_PERMI": 99.0, "MAX_PERMI": 99.0, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.333333, "MIN_BBXMAX": 12.481009, "MAX_BBXMAX": 12.481009, "MIN_BBYMIN": 41.766667, "MAX_BBYMIN": 41.766667, "MIN_BBYMAX": 42.05, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.419907, "MEAN_BBYC": 41.903477, "COMPARE": 0, "GN_ASCII": "Vatican City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 826.0, "ELEVATION": null, "GTOPO30": 17.0, "TIMEZONE": "Europe/Vatican", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.3821250590959411}, "geometry": {"type": "Point", "coordinates": [12.453386, 41.903282]}} +{"type": "Feature", "properties": {"SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "San Marino", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "San Marino", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "San Marino", "SOV_A3": "SMR", "ADM0NAME": "San Marino", "ADM0_A3": "SMR", "ADM1NAME": null, "ISO_A2": "SM", "NOTE": null, "LATITUDE": 43.91715, "LONGITUDE": 12.46667, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 29579, "POP_MIN": 29000, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3168070.0, "MEGANAME": null, "LS_NAME": "San Marino", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 29088.0, "MAX_POP20": 29579.0, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 20.0, "MIN_AREAKM": 30.0, "MAX_AREAKM": 30.0, "MIN_AREAMI": 11.0, "MAX_AREAMI": 11.0, "MIN_PERKM": 63.0, "MAX_PERKM": 63.0, "MIN_PERMI": 39.0, "MAX_PERMI": 39.0, "MIN_BBXMIN": 12.391667, "MAX_BBXMIN": 12.391667, "MIN_BBXMAX": 12.541667, "MAX_BBXMAX": 12.541667, "MIN_BBYMIN": 43.9, "MAX_BBYMIN": 43.9, "MIN_BBYMAX": 44.0, "MAX_BBYMAX": 44.0, "MEAN_BBXC": 12.462153, "MEAN_BBYC": 43.953472, "COMPARE": 0, "GN_ASCII": "San Marino", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 29000.0, "ELEVATION": null, "GTOPO30": 377.0, "TIMEZONE": "Europe/San_Marino", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [12.44177, 43.936095]}} +{"type": "Feature", "properties": {"SCALERANK": 7, "NATSCALE": 20, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Vaduz", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vaduz", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Liechtenstein", "SOV_A3": "LIE", "ADM0NAME": "Liechtenstein", "ADM0_A3": "LIE", "ADM1NAME": null, "ISO_A2": "LI", "NOTE": null, "LATITUDE": 47.133724, "LONGITUDE": 9.516669, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 36281, "POP_MIN": 5342, "POP_OTHER": 33009, "RANK_MAX": 7, "RANK_MIN": 5, "GEONAMEID": 3042030.0, "MEGANAME": null, "LS_NAME": "Vaduz", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 45442.0, "MAX_POP20": 45442.0, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 20.0, "MIN_AREAKM": 45.0, "MAX_AREAKM": 45.0, "MIN_AREAMI": 17.0, "MAX_AREAMI": 17.0, "MIN_PERKM": 90.0, "MAX_PERKM": 90.0, "MIN_PERMI": 56.0, "MAX_PERMI": 56.0, "MIN_BBXMIN": 9.433333, "MAX_BBXMIN": 9.433333, "MIN_BBXMAX": 9.558333, "MAX_BBXMAX": 9.558333, "MIN_BBYMIN": 47.091667, "MAX_BBYMIN": 47.091667, "MIN_BBYMAX": 47.233333, "MAX_BBYMAX": 47.233333, "MEAN_BBXC": 9.503734, "MEAN_BBYC": 47.167478, "COMPARE": 0, "GN_ASCII": "Vaduz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 5197.0, "ELEVATION": null, "GTOPO30": 711.0, "TIMEZONE": "Europe/Vaduz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9259765121606202}, "geometry": {"type": "Point", "coordinates": [9.516669, 47.133723]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lobamba", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lobamba", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Legislative and", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Manzini", "ISO_A2": "SZ", "NOTE": null, "LATITUDE": -26.466667, "LONGITUDE": 31.199997, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 9782, "POP_MIN": 4557, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 4, "GEONAMEID": 935048.0, "MEGANAME": null, "LS_NAME": "Lobamba", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 9782.0, "MAX_POP20": 9782.0, "MAX_POP50": 9782.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 18.0, "MAX_AREAKM": 18.0, "MIN_AREAMI": 7.0, "MAX_AREAMI": 7.0, "MIN_PERKM": 32.0, "MAX_PERKM": 32.0, "MIN_PERMI": 20.0, "MAX_PERMI": 20.0, "MIN_BBXMIN": 31.183333, "MAX_BBXMIN": 31.183333, "MIN_BBXMAX": 31.233333, "MAX_BBXMAX": 31.233333, "MIN_BBYMIN": -26.458333, "MAX_BBYMIN": -26.458333, "MIN_BBYMAX": -26.391667, "MAX_BBYMAX": -26.391667, "MEAN_BBXC": 31.201993, "MEAN_BBYC": -26.430254, "COMPARE": 0, "GN_ASCII": "Lobamba", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 4557.0, "ELEVATION": null, "GTOPO30": 651.0, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [31.199997, -26.466667]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Luxembourg", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Luxembourg", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Luxembourg", "SOV_A3": "LUX", "ADM0NAME": "Luxembourg", "ADM0_A3": "LUX", "ADM1NAME": "Luxembourg", "ISO_A2": "LU", "NOTE": null, "LATITUDE": 49.61166, "LONGITUDE": 6.130003, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 107260, "POP_MIN": 76684, "POP_OTHER": 106219, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2960316.0, "MEGANAME": null, "LS_NAME": "Luxembourg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 107260.0, "MAX_POP20": 107260.0, "MAX_POP50": 107260.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 60.0, "MAX_AREAKM": 60.0, "MIN_AREAMI": 23.0, "MAX_AREAMI": 23.0, "MIN_PERKM": 71.0, "MAX_PERKM": 71.0, "MIN_PERMI": 44.0, "MAX_PERMI": 44.0, "MIN_BBXMIN": 6.041667, "MAX_BBXMIN": 6.041667, "MIN_BBXMAX": 6.183333, "MAX_BBXMAX": 6.183333, "MIN_BBYMIN": 49.558333, "MAX_BBYMIN": 49.558333, "MIN_BBYMAX": 49.708333, "MAX_BBYMAX": 49.708333, "MEAN_BBXC": 6.125273, "MEAN_BBYC": 49.620833, "COMPARE": 0, "GN_ASCII": "Luxembourg", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 76684.0, "ELEVATION": null, "GTOPO30": 259.0, "TIMEZONE": "Europe/Luxembourg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [6.130002, 49.61166]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Palikir", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Palikir", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Federated States of Micronesia", "SOV_A3": "FSM", "ADM0NAME": "Federated States of Micronesia", "ADM0_A3": "FSM", "ADM1NAME": null, "ISO_A2": "FM", "NOTE": null, "LATITUDE": 6.916644, "LONGITUDE": 158.149974, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4645, "POP_MIN": 4645, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2081986.0, "MEGANAME": null, "LS_NAME": "Palikir", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 412.0, "MAX_POP20": 412.0, "MAX_POP50": 412.0, "MAX_POP300": 412.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1.0, "MAX_AREAKM": 1.0, "MIN_AREAMI": null, "MAX_AREAMI": null, "MIN_PERKM": 4.0, "MAX_PERKM": 4.0, "MIN_PERMI": 2.0, "MAX_PERMI": 2.0, "MIN_BBXMIN": 158.158333, "MAX_BBXMIN": 158.158333, "MIN_BBXMAX": 158.166667, "MAX_BBXMAX": 158.166667, "MIN_BBYMIN": 6.908333, "MAX_BBYMIN": 6.908333, "MIN_BBYMAX": 6.916667, "MAX_BBYMAX": 6.916667, "MEAN_BBXC": 158.1625, "MEAN_BBYC": 6.9125, "COMPARE": 0, "GN_ASCII": "Palikir", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 4645.0, "ELEVATION": null, "GTOPO30": 159.0, "TIMEZONE": "Pacific/Ponape", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [158.149974, 6.916643]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Majuro", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Majuro", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Marshall Islands", "SOV_A3": "MHL", "ADM0NAME": "Marshall Islands", "ADM0_A3": "MHL", "ADM1NAME": null, "ISO_A2": "MH", "NOTE": null, "LATITUDE": 7.103004, "LONGITUDE": 171.38, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 25400, "POP_MIN": 20500, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2113779.0, "MEGANAME": null, "LS_NAME": "Majuro", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2084.0, "MAX_POP20": 2084.0, "MAX_POP50": 2084.0, "MAX_POP300": 2084.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 3.0, "MAX_AREAKM": 3.0, "MIN_AREAMI": 1.0, "MAX_AREAMI": 1.0, "MIN_PERKM": 7.0, "MAX_PERKM": 7.0, "MIN_PERMI": 5.0, "MAX_PERMI": 5.0, "MIN_BBXMIN": 171.366667, "MAX_BBXMIN": 171.366667, "MIN_BBXMAX": 171.375, "MAX_BBXMAX": 171.375, "MIN_BBYMIN": 7.091667, "MAX_BBYMIN": 7.091667, "MIN_BBYMAX": 7.116667, "MAX_BBYMAX": 7.116667, "MEAN_BBXC": 171.370833, "MEAN_BBYC": 7.104167, "COMPARE": 0, "GN_ASCII": "Majuro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 20500.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Pacific/Majuro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.08258941986642843}, "geometry": {"type": "Point", "coordinates": [171.38, 7.103004]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Funafuti", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Funafuti", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Tuvalu", "SOV_A3": "TUV", "ADM0NAME": "Tuvalu", "ADM0_A3": "TUV", "ADM1NAME": null, "ISO_A2": "TV", "NOTE": null, "LATITUDE": -8.516652, "LONGITUDE": 179.216647, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Population from GeoNames. Changed scale rank.", "POP_MAX": 4749, "POP_MIN": 4749, "POP_OTHER": 0, "RANK_MAX": 4, "RANK_MIN": 4, "GEONAMEID": 2110394.0, "MEGANAME": null, "LS_NAME": "Funafuti", "LS_MATCH": 0, "CHECKME": 5, "MAX_POP10": null, "MAX_POP20": null, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": null, "MIN_AREAKM": null, "MAX_AREAKM": null, "MIN_AREAMI": null, "MAX_AREAMI": null, "MIN_PERKM": null, "MAX_PERKM": null, "MIN_PERMI": null, "MAX_PERMI": null, "MIN_BBXMIN": null, "MAX_BBXMIN": null, "MIN_BBXMAX": null, "MAX_BBXMAX": null, "MIN_BBYMIN": null, "MAX_BBYMIN": null, "MIN_BBYMAX": null, "MAX_BBYMAX": null, "MEAN_BBXC": null, "MEAN_BBYC": null, "COMPARE": 0, "GN_ASCII": "Funafuti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 4749.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Pacific/Funafuti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8592190305879225}, "geometry": {"type": "Point", "coordinates": [179.216647, -8.516651]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Melekeok", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Melekeok", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Palau", "SOV_A3": "PLW", "ADM0NAME": "Palau", "ADM0_A3": "PLW", "ADM1NAME": null, "ISO_A2": "PW", "NOTE": null, "LATITUDE": 7.487396, "LONGITUDE": 134.626548, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 7026, "POP_MIN": 7026, "POP_OTHER": 0, "RANK_MAX": 5, "RANK_MIN": 5, "GEONAMEID": 1559804.0, "MEGANAME": null, "LS_NAME": "Melekeok", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": null, "MAX_POP20": null, "MAX_POP50": null, "MAX_POP300": 7026.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 6.0, "MAX_AREAKM": 6.0, "MIN_AREAMI": 2.0, "MAX_AREAMI": 2.0, "MIN_PERKM": 15.0, "MAX_PERKM": 15.0, "MIN_PERMI": 9.0, "MAX_PERMI": 9.0, "MIN_BBXMIN": 134.466667, "MAX_BBXMIN": 134.466667, "MIN_BBXMAX": 134.5, "MAX_BBXMAX": 134.5, "MIN_BBYMIN": 7.325, "MAX_BBYMIN": 7.325, "MIN_BBYMAX": 7.35, "MAX_BBYMAX": 7.35, "MEAN_BBXC": 134.481548, "MEAN_BBYC": 7.339881, "COMPARE": 0, "GN_ASCII": "Melekeok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 217.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Pacific/Palau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [134.626548, 7.487396]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital alt", "NAME": "Bir Lehlou", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bir Lehlou", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Claimed as inte", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Western Sahara", "SOV_A3": "SAH", "ADM0NAME": "Western Sahara", "ADM0_A3": "SAH", "ADM1NAME": null, "ISO_A2": "EH", "NOTE": null, "LATITUDE": 26.119167, "LONGITUDE": -9.652522, "CHANGED": 4.0, "NAMEDIFF": 1, "DIFFNOTE": "Added place.", "POP_MAX": 500, "POP_MIN": 200, "POP_OTHER": 0, "RANK_MAX": 2, "RANK_MIN": 1, "GEONAMEID": -1.0, "MEGANAME": null, "LS_NAME": null, "LS_MATCH": 2, "CHECKME": 0, "MAX_POP10": null, "MAX_POP20": null, "MAX_POP50": null, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": null, "MIN_AREAKM": null, "MAX_AREAKM": null, "MIN_AREAMI": null, "MAX_AREAMI": null, "MIN_PERKM": null, "MAX_PERKM": null, "MIN_PERMI": null, "MAX_PERMI": null, "MIN_BBXMIN": null, "MAX_BBXMIN": null, "MIN_BBXMAX": null, "MAX_BBXMAX": null, "MIN_BBYMIN": null, "MAX_BBYMIN": null, "MIN_BBYMAX": null, "MAX_BBYMAX": null, "MEAN_BBXC": null, "MEAN_BBYC": null, "COMPARE": 1, "GN_ASCII": null, "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "No GeoNames match due to small population, not in GeoNames, or poor NEV placement.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.15806529688561577}, "geometry": {"type": "Point", "coordinates": [-9.652522, 26.119166]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Monaco", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Monaco", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Monaco", "SOV_A3": "MCO", "ADM0NAME": "Monaco", "ADM0_A3": "MCO", "ADM1NAME": null, "ISO_A2": "MC", "NOTE": null, "LATITUDE": 43.739646, "LONGITUDE": 7.406913, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 36371, "POP_MIN": 36371, "POP_OTHER": 102371, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2993458.0, "MEGANAME": null, "LS_NAME": "Monaco", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 108543.0, "MAX_POP20": 108543.0, "MAX_POP50": 108543.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 36.0, "MAX_AREAKM": 36.0, "MIN_AREAMI": 14.0, "MAX_AREAMI": 14.0, "MIN_PERKM": 57.0, "MAX_PERKM": 57.0, "MIN_PERMI": 35.0, "MAX_PERMI": 35.0, "MIN_BBXMIN": 7.35, "MAX_BBXMIN": 7.35, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 43.716667, "MAX_BBYMIN": 43.716667, "MIN_BBYMAX": 43.8, "MAX_BBYMAX": 43.8, "MEAN_BBXC": 7.442529, "MEAN_BBYC": 43.754167, "COMPARE": 0, "GN_ASCII": "Monaco", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1020.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Europe/Monaco", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5821154343333123}, "geometry": {"type": "Point", "coordinates": [7.406913, 43.739645]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Tarawa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tarawa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Kiribati", "SOV_A3": "KIR", "ADM0NAME": "Kiribati", "ADM0_A3": "KIR", "ADM1NAME": null, "ISO_A2": "KI", "NOTE": null, "LATITUDE": 1.338188, "LONGITUDE": 173.017571, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 28802, "POP_MIN": 22534, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2110079.0, "MEGANAME": null, "LS_NAME": "Tarawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 22534.0, "MAX_POP20": 22534.0, "MAX_POP50": 22534.0, "MAX_POP300": 22534.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 12.0, "MAX_AREAKM": 12.0, "MIN_AREAMI": 5.0, "MAX_AREAMI": 5.0, "MIN_PERKM": 28.0, "MAX_PERKM": 28.0, "MIN_PERMI": 17.0, "MAX_PERMI": 17.0, "MIN_BBXMIN": 172.966667, "MAX_BBXMIN": 172.966667, "MIN_BBXMAX": 173.058333, "MAX_BBXMAX": 173.058333, "MIN_BBYMIN": 1.325, "MAX_BBYMIN": 1.325, "MIN_BBYMAX": 1.358333, "MAX_BBYMAX": 1.358333, "MEAN_BBXC": 173.015476, "MEAN_BBYC": 1.33869, "COMPARE": 0, "GN_ASCII": "Tarawa", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 28802.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Pacific/Tarawa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.10965614720271688}, "geometry": {"type": "Point", "coordinates": [173.01757, 1.338187]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Moroni", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Moroni", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Comoros", "SOV_A3": "COM", "ADM0NAME": "Comoros", "ADM0_A3": "COM", "ADM1NAME": null, "ISO_A2": "KM", "NOTE": null, "LATITUDE": -11.704158, "LONGITUDE": 43.240244, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 128698, "POP_MIN": 42872, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 7, "GEONAMEID": 921772.0, "MEGANAME": null, "LS_NAME": "Moroni", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 128698.0, "MAX_POP20": 128698.0, "MAX_POP50": 128698.0, "MAX_POP300": 128698.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 60.0, "MAX_AREAKM": 60.0, "MIN_AREAMI": 23.0, "MAX_AREAMI": 23.0, "MIN_PERKM": 98.0, "MAX_PERKM": 98.0, "MIN_PERMI": 61.0, "MAX_PERMI": 61.0, "MIN_BBXMIN": 43.225, "MAX_BBXMIN": 43.225, "MIN_BBXMAX": 43.291667, "MAX_BBXMAX": 43.291667, "MIN_BBYMIN": -11.758333, "MAX_BBYMIN": -11.758333, "MIN_BBYMAX": -11.475, "MAX_BBYMAX": -11.475, "MEAN_BBXC": 43.264352, "MEAN_BBYC": -11.639931, "COMPARE": 0, "GN_ASCII": "Moroni", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 42872.0, "ELEVATION": null, "GTOPO30": 35.0, "TIMEZONE": "Indian/Comoro", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.3811511676834858}, "geometry": {"type": "Point", "coordinates": [43.240244, -11.704157]}} +{"type": "Feature", "properties": {"SCALERANK": 6, "NATSCALE": 30, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Andorra", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Andorra", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Andorra", "SOV_A3": "AND", "ADM0NAME": "Andorra", "ADM0_A3": "AND", "ADM1NAME": null, "ISO_A2": "AD", "NOTE": null, "LATITUDE": 42.500001, "LONGITUDE": 1.516486, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 53998, "POP_MIN": 22256, "POP_OTHER": 53371, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3130067.0, "MEGANAME": null, "LS_NAME": "Andorra", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 53998.0, "MAX_POP20": 53998.0, "MAX_POP50": 53998.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 23.0, "MAX_AREAKM": 23.0, "MIN_AREAMI": 9.0, "MAX_AREAMI": 9.0, "MIN_PERKM": 49.0, "MAX_PERKM": 49.0, "MIN_PERMI": 31.0, "MAX_PERMI": 31.0, "MIN_BBXMIN": 1.483333, "MAX_BBXMIN": 1.483333, "MIN_BBXMAX": 1.591667, "MAX_BBXMAX": 1.591667, "MIN_BBYMIN": 42.483333, "MAX_BBYMIN": 42.483333, "MIN_BBYMAX": 42.55, "MAX_BBYMAX": 42.55, "MEAN_BBXC": 1.535473, "MEAN_BBYC": 42.518131, "COMPARE": 0, "GN_ASCII": "Andorra", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 52.0, "GN_POP": 7890.0, "ELEVATION": null, "GTOPO30": 687.0, "TIMEZONE": "Europe/Madrid", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.46232183476123834}, "geometry": {"type": "Point", "coordinates": [1.516485, 42.500001]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-of-Spain", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port-of-Spain", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Trinidad and Tobago", "SOV_A3": "TTO", "ADM0NAME": "Trinidad and Tobago", "ADM0_A3": "TTO", "ADM1NAME": "Port of Spain", "ISO_A2": "TT", "NOTE": null, "LATITUDE": 10.651997, "LONGITUDE": -61.517031, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 294934, "POP_MIN": 49031, "POP_OTHER": 419082, "RANK_MAX": 10, "RANK_MIN": 7, "GEONAMEID": 3573890.0, "MEGANAME": null, "LS_NAME": "Port-of-Spain", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 294934.0, "MAX_POP20": 294934.0, "MAX_POP50": 294934.0, "MAX_POP300": 294934.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 112.0, "MAX_AREAKM": 112.0, "MIN_AREAMI": 43.0, "MAX_AREAMI": 43.0, "MIN_PERKM": 109.0, "MAX_PERKM": 109.0, "MIN_PERMI": 67.0, "MAX_PERMI": 67.0, "MIN_BBXMIN": -61.533333, "MAX_BBXMIN": -61.533333, "MIN_BBXMAX": -61.25, "MAX_BBXMAX": -61.25, "MIN_BBYMIN": 10.583333, "MAX_BBYMIN": 10.583333, "MIN_BBYMAX": 10.666667, "MAX_BBYMAX": 10.666667, "MEAN_BBXC": -61.383365, "MEAN_BBYC": 10.638816, "COMPARE": 0, "GN_ASCII": "Port-of-Spain", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 49657.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "America/Port_of_Spain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.4343173903940538}, "geometry": {"type": "Point", "coordinates": [-61.51703, 10.651997]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kigali", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kigali", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Rwanda", "SOV_A3": "RWA", "ADM0NAME": "Rwanda", "ADM0_A3": "RWA", "ADM1NAME": "Kigali City", "ISO_A2": "RW", "NOTE": null, "LATITUDE": -1.95359, "LONGITUDE": 30.060532, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 860000, "POP_MIN": 745261, "POP_OTHER": 1152904, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 202061.0, "MEGANAME": "Kigali", "LS_NAME": "Kigali", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1046787.0, "MAX_POP20": 2263899.0, "MAX_POP50": 5065653.0, "MAX_POP300": 7102391.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 601.0, "MAX_AREAKM": 8753.0, "MIN_AREAMI": 232.0, "MAX_AREAMI": 3380.0, "MIN_PERKM": 735.0, "MAX_PERKM": 9184.0, "MIN_PERMI": 457.0, "MAX_PERMI": 5707.0, "MIN_BBXMIN": 29.166667, "MAX_BBXMIN": 29.833333, "MIN_BBXMAX": 30.233333, "MAX_BBXMAX": 30.475, "MIN_BBYMIN": -2.991667, "MAX_BBYMIN": -2.075, "MIN_BBYMAX": -1.76663, "MAX_BBYMAX": -1.075, "MEAN_BBXC": 29.913775, "MEAN_BBYC": -2.034427, "COMPARE": 0, "GN_ASCII": "Kigali", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 745261.0, "ELEVATION": null, "GTOPO30": 1568.0, "TIMEZONE": "Africa/Kigali", "GEONAMESNO": "GeoNames match general.", "UN_FID": 439, "UN_ADM0": "Rwanda", "UN_LAT": -1.95, "UN_LONG": 30.05, "POP1950": 18.0, "POP1955": 25.0, "POP1960": 34.0, "POP1965": 45.0, "POP1970": 59.0, "POP1975": 90.0, "POP1980": 128.0, "POP1985": 168.0, "POP1990": 219.0, "POP1995": 289.0, "POP2000": 497.0, "POP2005": 775.0, "POP2010": 860.0, "POP2015": 947.0, "POP2020": 1152.0, "POP2025": 1413.0, "POP2050": 1715.0, "CITYALT": null, "clustered:unrelated": 0.30404902033045367}, "geometry": {"type": "Point", "coordinates": [30.058585, -1.951644]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mbabane", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Mbabane", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Administrative", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Swaziland", "SOV_A3": "SWZ", "ADM0NAME": "Swaziland", "ADM0_A3": "SWZ", "ADM1NAME": "Hhohho", "ISO_A2": "SZ", "NOTE": null, "LATITUDE": -26.316651, "LONGITUDE": 31.133335, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 90138, "POP_MIN": 76218, "POP_OTHER": 89979, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 934985.0, "MEGANAME": null, "LS_NAME": "Mbabane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 90138.0, "MAX_POP20": 90138.0, "MAX_POP50": 90138.0, "MAX_POP300": 90138.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 28.0, "MAX_AREAKM": 28.0, "MIN_AREAMI": 11.0, "MAX_AREAMI": 11.0, "MIN_PERKM": 37.0, "MAX_PERKM": 37.0, "MIN_PERMI": 23.0, "MAX_PERMI": 23.0, "MIN_BBXMIN": 31.1, "MAX_BBXMIN": 31.1, "MIN_BBXMAX": 31.158333, "MAX_BBXMAX": 31.158333, "MIN_BBYMIN": -26.35, "MAX_BBYMIN": -26.35, "MIN_BBYMAX": -26.283333, "MAX_BBYMAX": -26.283333, "MEAN_BBXC": 31.129842, "MEAN_BBYC": -26.315428, "COMPARE": 0, "GN_ASCII": "Mbabane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 76218.0, "ELEVATION": null, "GTOPO30": 1156.0, "TIMEZONE": "Africa/Mbabane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.14114859599150942}, "geometry": {"type": "Point", "coordinates": [31.133334, -26.31665]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Juba", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Juba", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "South Sudan", "SOV_A3": "SSD", "ADM0NAME": "South Sudan", "ADM0_A3": "SSD", "ADM1NAME": "Central Equatoria", "ISO_A2": "SS", "NOTE": null, "LATITUDE": 4.829975, "LONGITUDE": 31.580026, "CHANGED": 20.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed country.", "POP_MAX": 111975, "POP_MIN": 111975, "POP_OTHER": 111975, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 373303.0, "MEGANAME": null, "LS_NAME": "Juba", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 111975.0, "MAX_POP20": 111975.0, "MAX_POP50": 111975.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 21.0, "MAX_AREAKM": 21.0, "MIN_AREAMI": 8.0, "MAX_AREAMI": 8.0, "MIN_PERKM": 30.0, "MAX_PERKM": 30.0, "MIN_PERMI": 18.0, "MAX_PERMI": 18.0, "MIN_BBXMIN": 31.575, "MAX_BBXMIN": 31.575, "MIN_BBXMAX": 31.625, "MAX_BBXMAX": 31.625, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 4.883333, "MAX_BBYMAX": 4.883333, "MEAN_BBXC": 31.6015, "MEAN_BBYC": 4.845167, "COMPARE": 0, "GN_ASCII": "Juba", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 44.0, "GN_POP": null, "ELEVATION": null, "GTOPO30": 551.0, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [31.580025, 4.829975]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "The Hague", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "The Hague", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Official, legis", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Zuid-Holland", "ISO_A2": "NL", "NOTE": null, "LATITUDE": 52.080037, "LONGITUDE": 4.269961, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1406000, "POP_MIN": 501725, "POP_OTHER": 688599, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2747373.0, "MEGANAME": null, "LS_NAME": "The Hague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 708489.0, "MAX_POP20": 708489.0, "MAX_POP50": 2312867.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 195.0, "MAX_AREAKM": 710.0, "MIN_AREAMI": 75.0, "MAX_AREAMI": 274.0, "MIN_PERKM": 217.0, "MAX_PERKM": 764.0, "MIN_PERMI": 135.0, "MAX_PERMI": 475.0, "MIN_BBXMIN": 4.15, "MAX_BBXMIN": 4.15, "MIN_BBXMAX": 4.45, "MAX_BBXMAX": 4.749141, "MIN_BBYMIN": 51.766667, "MAX_BBYMIN": 51.958333, "MIN_BBYMAX": 52.158333, "MAX_BBYMAX": 52.158333, "MEAN_BBXC": 4.355912, "MEAN_BBYC": 52.021475, "COMPARE": 0, "GN_ASCII": "Den Haag", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 11.0, "GN_POP": 474292.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.45457533553780116}, "geometry": {"type": "Point", "coordinates": [4.269961, 52.080036]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ljubljana", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ljubljana", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Slovenia", "SOV_A3": "SVN", "ADM0NAME": "Slovenia", "ADM0_A3": "SVN", "ADM1NAME": "Osrednjeslovenska", "ISO_A2": "SI", "NOTE": null, "LATITUDE": 46.055288, "LONGITUDE": 14.514969, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 314807, "POP_MIN": 255115, "POP_OTHER": 256316, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3196359.0, "MEGANAME": null, "LS_NAME": "Ljubljana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314807.0, "MAX_POP20": 314807.0, "MAX_POP50": 314807.0, "MAX_POP300": 314807.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 145.0, "MAX_AREAKM": 145.0, "MIN_AREAMI": 56.0, "MAX_AREAMI": 56.0, "MIN_PERKM": 208.0, "MAX_PERKM": 208.0, "MIN_PERMI": 129.0, "MAX_PERMI": 129.0, "MIN_BBXMIN": 14.433333, "MAX_BBXMIN": 14.433333, "MIN_BBXMAX": 14.633333, "MAX_BBXMAX": 14.633333, "MIN_BBYMIN": 46.0, "MAX_BBYMIN": 46.0, "MIN_BBYMAX": 46.241667, "MAX_BBYMAX": 46.241667, "MEAN_BBXC": 14.541032, "MEAN_BBYC": 46.091958, "COMPARE": 0, "GN_ASCII": "Ljubljana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 61.0, "GN_POP": 255115.0, "ELEVATION": null, "GTOPO30": 284.0, "TIMEZONE": "Europe/Ljubljana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [14.514969, 46.055288]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bratislava", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bratislava", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Slovakia", "SOV_A3": "SVK", "ADM0NAME": "Slovakia", "ADM0_A3": "SVK", "ADM1NAME": "Bratislavsk\u00fd", "ISO_A2": "SK", "NOTE": null, "LATITUDE": 48.150018, "LONGITUDE": 17.116981, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 423737, "POP_MIN": 373687, "POP_OTHER": 361489, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3060972.0, "MEGANAME": null, "LS_NAME": "Bratislava", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 373687.0, "MAX_POP20": 373687.0, "MAX_POP50": 373687.0, "MAX_POP300": 373687.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 113.0, "MAX_AREAKM": 113.0, "MIN_AREAMI": 43.0, "MAX_AREAMI": 43.0, "MIN_PERKM": 121.0, "MAX_PERKM": 121.0, "MIN_PERMI": 75.0, "MAX_PERMI": 75.0, "MIN_BBXMIN": 17.016667, "MAX_BBXMIN": 17.016667, "MIN_BBXMAX": 17.233333, "MAX_BBXMAX": 17.233333, "MIN_BBYMIN": 48.091667, "MAX_BBYMIN": 48.091667, "MIN_BBYMAX": 48.225, "MAX_BBYMAX": 48.225, "MEAN_BBXC": 17.131335, "MEAN_BBYC": 48.159311, "COMPARE": 0, "GN_ASCII": "Bratislava", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 423737.0, "ELEVATION": null, "GTOPO30": 132.0, "TIMEZONE": "Europe/Bratislava", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [17.11698, 48.150018]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Doha", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Doha", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Qatar", "SOV_A3": "QAT", "ADM0NAME": "Qatar", "ADM0_A3": "QAT", "ADM1NAME": "Ad Dawhah", "ISO_A2": "QA", "NOTE": null, "LATITUDE": 25.286556, "LONGITUDE": 51.532968, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 1450000, "POP_MIN": 731310, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 290030.0, "MEGANAME": null, "LS_NAME": "Doha", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 731310.0, "MAX_POP20": 731310.0, "MAX_POP50": 731310.0, "MAX_POP300": 731310.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 270.0, "MAX_AREAKM": 270.0, "MIN_AREAMI": 104.0, "MAX_AREAMI": 104.0, "MIN_PERKM": 205.0, "MAX_PERKM": 205.0, "MIN_PERMI": 127.0, "MAX_PERMI": 127.0, "MIN_BBXMIN": 51.358333, "MAX_BBXMIN": 51.358333, "MIN_BBXMAX": 51.583333, "MAX_BBXMAX": 51.583333, "MIN_BBYMIN": 25.158333, "MAX_BBYMIN": 25.158333, "MIN_BBYMAX": 25.408333, "MAX_BBYMAX": 25.408333, "MEAN_BBXC": 51.468439, "MEAN_BBYC": 25.281154, "COMPARE": 0, "GN_ASCII": "Doha", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 344939.0, "ELEVATION": null, "GTOPO30": 21.0, "TIMEZONE": "Asia/Qatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.21110334739147696}, "geometry": {"type": "Point", "coordinates": [51.532967, 25.286556]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Podgorica", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Podgorica", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Montenegro", "SOV_A3": "MNE", "ADM0NAME": "Montenegro", "ADM0_A3": "MNE", "ADM1NAME": "Podgorica", "ISO_A2": "ME", "NOTE": null, "LATITUDE": 42.465973, "LONGITUDE": 19.266307, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 145850, "POP_MIN": 136473, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3193044.0, "MEGANAME": null, "LS_NAME": "Podgorica", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 145850.0, "MAX_POP20": 145850.0, "MAX_POP50": 145850.0, "MAX_POP300": 145850.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 41.0, "MAX_AREAKM": 41.0, "MIN_AREAMI": 16.0, "MAX_AREAMI": 16.0, "MIN_PERKM": 44.0, "MAX_PERKM": 44.0, "MIN_PERMI": 27.0, "MAX_PERMI": 27.0, "MIN_BBXMIN": 19.208333, "MAX_BBXMIN": 19.208333, "MIN_BBXMAX": 19.316667, "MAX_BBXMAX": 19.316667, "MIN_BBYMIN": 42.408333, "MAX_BBYMIN": 42.408333, "MIN_BBYMAX": 42.475, "MAX_BBYMAX": 42.475, "MEAN_BBXC": 19.263397, "MEAN_BBYC": 42.442115, "COMPARE": 0, "GN_ASCII": "Podgorica", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 136473.0, "ELEVATION": null, "GTOPO30": 58.0, "TIMEZONE": "Europe/Podgorica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.17320081367150342}, "geometry": {"type": "Point", "coordinates": [19.266306, 42.465972]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Sri Jawewardenepura Kotte", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sri Jawewardenepura Kotte", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Legislative cap", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "NOTE": null, "LATITUDE": 6.900004, "LONGITUDE": 79.949993, "CHANGED": 4.0, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 115826, "POP_MIN": 115826, "POP_OTHER": 2456292, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 1238992.0, "MEGANAME": null, "LS_NAME": "Kotte", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2189383.0, "MAX_POP20": 3439184.0, "MAX_POP50": 4689795.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 1265.0, "MAX_AREAKM": 2843.0, "MIN_AREAMI": 488.0, "MAX_AREAMI": 1098.0, "MIN_PERKM": 1148.0, "MAX_PERKM": 2388.0, "MIN_PERMI": 713.0, "MAX_PERMI": 1484.0, "MIN_BBXMIN": 79.866667, "MAX_BBXMIN": 79.883827, "MIN_BBXMAX": 80.366283, "MAX_BBXMAX": 80.733333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.708333, "MIN_BBYMAX": 7.34579, "MAX_BBYMAX": 7.34579, "MEAN_BBXC": 80.0976, "MEAN_BBYC": 6.842005, "COMPARE": 1, "GN_ASCII": "Sri Jayewardenepura Kotte", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 36.0, "GN_POP": 115826.0, "ELEVATION": null, "GTOPO30": 35.0, "TIMEZONE": "Asia/Colombo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.6363525996535283}, "geometry": {"type": "Point", "coordinates": [79.949993, 6.900003]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Baguio City", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Baguio City", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Benguet", "ISO_A2": "PH", "NOTE": null, "LATITUDE": 16.429991, "LONGITUDE": 120.569943, "CHANGED": 40.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 447824, "POP_MIN": 272714, "POP_OTHER": 164877, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1728930.0, "MEGANAME": null, "LS_NAME": "Baguio City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 447824.0, "MAX_POP20": 447824.0, "MAX_POP50": 447824.0, "MAX_POP300": 447824.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 89.0, "MAX_AREAKM": 89.0, "MIN_AREAMI": 34.0, "MAX_AREAMI": 34.0, "MIN_PERKM": 78.0, "MAX_PERKM": 78.0, "MIN_PERMI": 48.0, "MAX_PERMI": 48.0, "MIN_BBXMIN": 120.541667, "MAX_BBXMIN": 120.541667, "MIN_BBXMAX": 120.65, "MAX_BBXMAX": 120.65, "MIN_BBYMIN": 16.358333, "MAX_BBYMIN": 16.358333, "MIN_BBYMAX": 16.483333, "MAX_BBYMAX": 16.483333, "MEAN_BBXC": 120.598765, "MEAN_BBYC": 16.421065, "COMPARE": 0, "GN_ASCII": "Baguio", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 272714.0, "ELEVATION": null, "GTOPO30": 1448.0, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5511636601842002}, "geometry": {"type": "Point", "coordinates": [120.569942, 16.42999]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Dodoma", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dodoma", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Offical capital", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dodoma", "ISO_A2": "TZ", "NOTE": null, "LATITUDE": -6.183306, "LONGITUDE": 35.750004, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 218269, "POP_MIN": 180541, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 160196.0, "MEGANAME": null, "LS_NAME": "Dodoma", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 218269.0, "MAX_POP20": 218269.0, "MAX_POP50": 218269.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 55.0, "MAX_AREAKM": 55.0, "MIN_AREAMI": 21.0, "MAX_AREAMI": 21.0, "MIN_PERKM": 61.0, "MAX_PERKM": 61.0, "MIN_PERMI": 38.0, "MAX_PERMI": 38.0, "MIN_BBXMIN": 35.691667, "MAX_BBXMIN": 35.691667, "MIN_BBXMAX": 35.808333, "MAX_BBXMAX": 35.808333, "MIN_BBYMIN": -6.208333, "MAX_BBYMIN": -6.208333, "MIN_BBYMAX": -6.116667, "MAX_BBYMAX": -6.116667, "MEAN_BBXC": 35.7475, "MEAN_BBYC": -6.162244, "COMPARE": 0, "GN_ASCII": "Dodoma", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 180541.0, "ELEVATION": null, "GTOPO30": 1129.0, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [35.750003, -6.183306]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bern", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bern", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Bern", "ISO_A2": "CH", "NOTE": null, "LATITUDE": 46.916683, "LONGITUDE": 7.466975, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 275329, "POP_MIN": 121631, "POP_OTHER": 267814, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2661552.0, "MEGANAME": null, "LS_NAME": "Bern", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 275329.0, "MAX_POP20": 275329.0, "MAX_POP50": 275329.0, "MAX_POP300": 275329.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 78.0, "MAX_AREAKM": 78.0, "MIN_AREAMI": 30.0, "MAX_AREAMI": 30.0, "MIN_PERKM": 85.0, "MAX_PERKM": 85.0, "MIN_PERMI": 53.0, "MAX_PERMI": 53.0, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.533333, "MAX_BBXMAX": 7.533333, "MIN_BBYMIN": 46.9, "MAX_BBYMIN": 46.9, "MIN_BBYMAX": 47.041667, "MAX_BBYMAX": 47.041667, "MEAN_BBXC": 7.453227, "MEAN_BBYC": 46.958239, "COMPARE": 0, "GN_ASCII": "Bern", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 121631.0, "ELEVATION": null, "GTOPO30": 527.0, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [7.466975, 46.916682]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital alt", "NAME": "Laayoune", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Laayoune", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Claimed as capi", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "La\u00e2youne - Boujdour - Sakia El Hamra", "ISO_A2": "MA", "NOTE": null, "LATITUDE": 27.149982, "LONGITUDE": -13.200006, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 188084, "POP_MIN": 176365, "POP_OTHER": 176365, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2462881.0, "MEGANAME": null, "LS_NAME": "Laayoune", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 176365.0, "MAX_POP20": 176365.0, "MAX_POP50": 176365.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 21.0, "MAX_AREAKM": 21.0, "MIN_AREAMI": 8.0, "MAX_AREAMI": 8.0, "MIN_PERKM": 26.0, "MAX_PERKM": 26.0, "MIN_PERMI": 16.0, "MAX_PERMI": 16.0, "MIN_BBXMIN": -13.225, "MAX_BBXMIN": -13.225, "MIN_BBXMAX": -13.158333, "MAX_BBXMAX": -13.158333, "MIN_BBYMIN": 27.125, "MAX_BBYMIN": 27.125, "MIN_BBYMAX": 27.175, "MAX_BBYMAX": 27.175, "MEAN_BBXC": -13.194643, "MEAN_BBYC": 27.146131, "COMPARE": 0, "GN_ASCII": "Ejbei Uad el Aabd", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 188084.0, "ELEVATION": null, "GTOPO30": 72.0, "TIMEZONE": "Africa/El_Aaiun", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5583897479368138}, "geometry": {"type": "Point", "coordinates": [-13.200005, 27.149982]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Pristina", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Pristina", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Kosovo", "SOV_A3": "KOS", "ADM0NAME": "Kosovo", "ADM0_A3": "KOS", "ADM1NAME": "Pristina", "ISO_A2": "-99", "NOTE": null, "LATITUDE": 42.66671, "LONGITUDE": 21.165984, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 465186, "POP_MIN": 198214, "POP_OTHER": 261783, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 786714.0, "MEGANAME": null, "LS_NAME": "Pristina", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 265361.0, "MAX_POP20": 265361.0, "MAX_POP50": 265361.0, "MAX_POP300": 265361.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 41.0, "MAX_AREAKM": 41.0, "MIN_AREAMI": 16.0, "MAX_AREAMI": 16.0, "MIN_PERKM": 69.0, "MAX_PERKM": 69.0, "MIN_PERMI": 43.0, "MAX_PERMI": 43.0, "MIN_BBXMIN": 21.066667, "MAX_BBXMIN": 21.066667, "MIN_BBXMAX": 21.208333, "MAX_BBXMAX": 21.208333, "MIN_BBYMIN": 42.625, "MAX_BBYMIN": 42.625, "MIN_BBYMAX": 42.733333, "MAX_BBYMAX": 42.733333, "MEAN_BBXC": 21.146346, "MEAN_BBYC": 42.666218, "COMPARE": 0, "GN_ASCII": "Pristina", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 1.0, "GN_POP": 550000.0, "ELEVATION": null, "GTOPO30": 668.0, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8758713459685084}, "geometry": {"type": "Point", "coordinates": [21.165984, 42.666709]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Roseau", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Roseau", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Dominica", "SOV_A3": "DMA", "ADM0NAME": "Dominica", "ADM0_A3": "DMA", "ADM1NAME": "Saint George", "ISO_A2": "DM", "NOTE": null, "LATITUDE": 15.301016, "LONGITUDE": -61.387013, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 23336, "POP_MIN": 16571, "POP_OTHER": 23336, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575635.0, "MEGANAME": null, "LS_NAME": "Roseau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 23336.0, "MAX_POP20": 23336.0, "MAX_POP50": 23336.0, "MAX_POP300": 23336.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 12.0, "MAX_AREAKM": 12.0, "MIN_AREAMI": 5.0, "MAX_AREAMI": 5.0, "MIN_PERKM": 25.0, "MAX_PERKM": 25.0, "MIN_PERMI": 16.0, "MAX_PERMI": 16.0, "MIN_BBXMIN": -61.4, "MAX_BBXMIN": -61.4, "MIN_BBXMAX": -61.35, "MAX_BBXMAX": -61.35, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.325, "MAX_BBYMAX": 15.325, "MEAN_BBXC": -61.3775, "MEAN_BBYC": 15.298056, "COMPARE": 0, "GN_ASCII": "Roseau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 16571.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "America/Dominica", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8904016691576551}, "geometry": {"type": "Point", "coordinates": [-61.387012, 15.301015]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Djibouti", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Djibouti", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Djibouti", "SOV_A3": "DJI", "ADM0NAME": "Djibouti", "ADM0_A3": "DJI", "ADM1NAME": "Djibouti", "ISO_A2": "DJ", "NOTE": null, "LATITUDE": 11.595014, "LONGITUDE": 43.148002, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 923000, "POP_MIN": 604013, "POP_OTHER": 335001, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 223817.0, "MEGANAME": null, "LS_NAME": "Djibouti", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 335001.0, "MAX_POP20": 335001.0, "MAX_POP50": 335001.0, "MAX_POP300": 335001.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 42.0, "MAX_AREAKM": 42.0, "MIN_AREAMI": 16.0, "MAX_AREAMI": 16.0, "MIN_PERKM": 44.0, "MAX_PERKM": 44.0, "MIN_PERMI": 27.0, "MAX_PERMI": 27.0, "MIN_BBXMIN": 43.066667, "MAX_BBXMIN": 43.066667, "MIN_BBXMAX": 43.166667, "MAX_BBXMAX": 43.166667, "MIN_BBYMIN": 11.533333, "MAX_BBYMIN": 11.533333, "MIN_BBYMAX": 11.625, "MAX_BBYMAX": 11.625, "MEAN_BBXC": 43.129167, "MEAN_BBYC": 11.5715, "COMPARE": 0, "GN_ASCII": "Djibouti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 623891.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Africa/Djibouti", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [43.148001, 11.595014]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital alt", "NAME": "Putrajaya", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Putrajaya", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Administrative", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "NOTE": null, "LATITUDE": 2.91402, "LONGITUDE": 101.701947, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 67964, "POP_MIN": 50000, "POP_OTHER": 956431, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 6697380.0, "MEGANAME": null, "LS_NAME": "Putrajaya", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 955607.0, "MAX_POP20": 964830.0, "MAX_POP50": 1651113.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 486.0, "MAX_AREAKM": 805.0, "MIN_AREAMI": 188.0, "MAX_AREAMI": 311.0, "MIN_PERKM": 467.0, "MAX_PERKM": 737.0, "MIN_PERMI": 290.0, "MAX_PERMI": 458.0, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.575, "MIN_BBXMAX": 101.891667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 2.708333, "MIN_BBYMAX": 3.041194, "MAX_BBYMAX": 3.041194, "MEAN_BBXC": 101.716617, "MEAN_BBYC": 2.915909, "COMPARE": 0, "GN_ASCII": "Putrajaya", "FEATURE_CL": "P", "FEATURE_CO": "PPLG", "ADMIN1_COD": 17.0, "GN_POP": 50000.0, "ELEVATION": null, "GTOPO30": 30.0, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [101.701946, 2.914019]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Kyoto", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kyoto", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Official capita", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Kyoto", "ISO_A2": "JP", "NOTE": null, "LATITUDE": 35.029992, "LONGITUDE": 135.749998, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1805000, "POP_MIN": 1459640, "POP_OTHER": 1827367, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1857910.0, "MEGANAME": "Kyoto", "LS_NAME": "Kyoto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1946052.0, "MAX_POP20": 2520813.0, "MAX_POP50": 2520813.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 340.0, "MAX_AREAKM": 486.0, "MIN_AREAMI": 131.0, "MAX_AREAMI": 188.0, "MIN_PERKM": 130.0, "MAX_PERKM": 218.0, "MIN_PERMI": 81.0, "MAX_PERMI": 135.0, "MIN_BBXMIN": 135.611529, "MAX_BBXMIN": 135.611529, "MIN_BBXMAX": 135.808333, "MAX_BBXMAX": 135.858333, "MIN_BBYMIN": 34.64506, "MAX_BBYMIN": 34.783333, "MIN_BBYMAX": 35.1, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.743212, "MEAN_BBYC": 34.913171, "COMPARE": 0, "GN_ASCII": "Kyoto", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 22.0, "GN_POP": 1459640.0, "ELEVATION": null, "GTOPO30": 86.0, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 313, "UN_ADM0": "Japan", "UN_LAT": 35.0, "UN_LONG": 135.75, "POP1950": 1002.0, "POP1955": 1091.0, "POP1960": 1165.0, "POP1965": 1229.0, "POP1970": 1298.0, "POP1975": 1622.0, "POP1980": 1701.0, "POP1985": 1714.0, "POP1990": 1760.0, "POP1995": 1804.0, "POP2000": 1806.0, "POP2005": 1805.0, "POP2010": 1805.0, "POP2015": 1804.0, "POP2020": 1804.0, "POP2025": 1804.0, "POP2050": 1804.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [135.748052, 35.031938]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Banjul", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Banjul", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Gambia, The", "SOV_A3": "GMB", "ADM0NAME": "The Gambia", "ADM0_A3": "GMB", "ADM1NAME": "Banjul", "ISO_A2": "GM", "NOTE": null, "LATITUDE": 13.453876, "LONGITUDE": -16.591701, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 43094, "POP_MIN": 34589, "POP_OTHER": 581300, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2413876.0, "MEGANAME": null, "LS_NAME": "Banjul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 43094.0, "MAX_POP20": 43094.0, "MAX_POP50": 43094.0, "MAX_POP300": 43094.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 7.0, "MAX_AREAKM": 7.0, "MIN_AREAMI": 3.0, "MAX_AREAMI": 3.0, "MIN_PERKM": 13.0, "MAX_PERKM": 13.0, "MIN_PERMI": 8.0, "MAX_PERMI": 8.0, "MIN_BBXMIN": -16.6, "MAX_BBXMIN": -16.6, "MIN_BBXMAX": -16.566667, "MAX_BBXMAX": -16.566667, "MIN_BBYMIN": 13.441667, "MAX_BBYMIN": 13.441667, "MIN_BBYMAX": 13.466667, "MAX_BBYMAX": 13.466667, "MEAN_BBXC": -16.58125, "MEAN_BBYC": 13.455208, "COMPARE": 0, "GN_ASCII": "Banjul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 34589.0, "ELEVATION": null, "GTOPO30": 5.0, "TIMEZONE": "Africa/Banjul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8483929511358556}, "geometry": {"type": "Point", "coordinates": [-16.591701, 13.453876]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Skopje", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Skopje", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Macedonia", "SOV_A3": "MKD", "ADM0NAME": "Macedonia", "ADM0_A3": "MKD", "ADM1NAME": "Centar", "ISO_A2": "MK", "NOTE": null, "LATITUDE": 42.000006, "LONGITUDE": 21.433461, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 494087, "POP_MIN": 474889, "POP_OTHER": 491890, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 785842.0, "MEGANAME": null, "LS_NAME": "Skopje", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 494087.0, "MAX_POP20": 494087.0, "MAX_POP50": 494087.0, "MAX_POP300": 494087.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 114.0, "MAX_AREAKM": 114.0, "MIN_AREAMI": 44.0, "MAX_AREAMI": 44.0, "MIN_PERKM": 98.0, "MAX_PERKM": 98.0, "MIN_PERMI": 61.0, "MAX_PERMI": 61.0, "MIN_BBXMIN": 21.3, "MAX_BBXMIN": 21.3, "MIN_BBXMAX": 21.533333, "MAX_BBXMAX": 21.533333, "MIN_BBYMIN": 41.95, "MAX_BBYMIN": 41.95, "MIN_BBYMAX": 42.066667, "MAX_BBYMAX": 42.066667, "MEAN_BBXC": 21.430243, "MEAN_BBYC": 42.007257, "COMPARE": 0, "GN_ASCII": "Skopje", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 474889.0, "ELEVATION": null, "GTOPO30": 246.0, "TIMEZONE": "Europe/Skopje", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [21.433461, 42.000006]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bridgetown", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bridgetown", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Barbados", "SOV_A3": "BRB", "ADM0NAME": "Barbados", "ADM0_A3": "BRB", "ADM1NAME": "Saint Michael", "ISO_A2": "BB", "NOTE": null, "LATITUDE": 13.102003, "LONGITUDE": -59.616527, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 191152, "POP_MIN": 96578, "POP_OTHER": 191814, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2075807.0, "MEGANAME": null, "LS_NAME": "Bridgetown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 191152.0, "MAX_POP20": 191152.0, "MAX_POP50": 191152.0, "MAX_POP300": 191152.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 106.0, "MAX_AREAKM": 106.0, "MIN_AREAMI": 41.0, "MAX_AREAMI": 41.0, "MIN_PERKM": 131.0, "MAX_PERKM": 131.0, "MIN_PERMI": 82.0, "MAX_PERMI": 82.0, "MIN_BBXMIN": -59.641667, "MAX_BBXMIN": -59.641667, "MIN_BBXMAX": -59.5, "MAX_BBXMAX": -59.5, "MIN_BBYMIN": 13.05, "MAX_BBYMIN": 13.05, "MIN_BBYMAX": 13.266667, "MAX_BBYMAX": 13.266667, "MEAN_BBXC": -59.589731, "MEAN_BBYC": 13.128773, "COMPARE": 0, "GN_ASCII": "Bridgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8.0, "GN_POP": 2971.0, "ELEVATION": null, "GTOPO30": 152.0, "TIMEZONE": "Australia/Perth", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-59.616526, 13.102002]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Porto-Novo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Porto-Novo", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Official capita", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ou\u00e9m\u00e9", "ISO_A2": "BJ", "NOTE": null, "LATITUDE": 6.483311, "LONGITUDE": 2.616626, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 300000, "POP_MIN": 234168, "POP_OTHER": 806945, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2392087.0, "MEGANAME": null, "LS_NAME": "Porto-Novo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 517453.0, "MAX_POP20": 457770.0, "MAX_POP50": 457770.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 278.0, "MAX_AREAKM": 319.0, "MIN_AREAMI": 107.0, "MAX_AREAMI": 123.0, "MIN_PERKM": 251.0, "MAX_PERKM": 312.0, "MIN_PERMI": 156.0, "MAX_PERMI": 194.0, "MIN_BBXMIN": 2.558333, "MAX_BBXMIN": 2.558333, "MIN_BBXMAX": 2.883333, "MAX_BBXMAX": 2.883333, "MIN_BBYMIN": 6.45, "MAX_BBYMIN": 6.45, "MIN_BBYMAX": 6.65, "MAX_BBYMAX": 6.733333, "MEAN_BBXC": 2.708025, "MEAN_BBYC": 6.520662, "COMPARE": 0, "GN_ASCII": "Porto-Novo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16.0, "GN_POP": 234168.0, "ELEVATION": null, "GTOPO30": 39.0, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [2.616625, 6.48331]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bujumbura", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bujumbura", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Burundi", "SOV_A3": "BDI", "ADM0NAME": "Burundi", "ADM0_A3": "BDI", "ADM1NAME": "Bujumbura Mairie", "ISO_A2": "BI", "NOTE": null, "LATITUDE": -3.376087, "LONGITUDE": 29.360006, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 331700, "POP_MIN": 331700, "POP_OTHER": 1208361, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 425378.0, "MEGANAME": null, "LS_NAME": "Bujumbura", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1123733.0, "MAX_POP20": 2140496.0, "MAX_POP50": 3536914.0, "MAX_POP300": 3539151.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1093.0, "MAX_AREAKM": 5563.0, "MIN_AREAMI": 422.0, "MAX_AREAMI": 2148.0, "MIN_PERKM": 1180.0, "MAX_PERKM": 5081.0, "MIN_PERMI": 733.0, "MAX_PERMI": 3157.0, "MIN_BBXMIN": 29.254336, "MAX_BBXMIN": 29.258333, "MIN_BBXMAX": 29.64063, "MAX_BBXMAX": 30.272423, "MIN_BBYMIN": -3.841667, "MAX_BBYMIN": -3.675, "MIN_BBYMAX": -2.95, "MAX_BBYMAX": -2.544862, "MEAN_BBXC": 29.649864, "MEAN_BBYC": -3.227847, "COMPARE": 0, "GN_ASCII": "Bujumbura", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 331700.0, "ELEVATION": null, "GTOPO30": 795.0, "TIMEZONE": "Africa/Bujumbura", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.4987856057522808}, "geometry": {"type": "Point", "coordinates": [29.360006, -3.376087]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Kingstown", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kingstown", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Saint Vincent and the Grenadines", "SOV_A3": "VCT", "ADM0NAME": "Saint Vincent and the Grenadines", "ADM0_A3": "VCT", "ADM1NAME": null, "ISO_A2": "VC", "NOTE": null, "LATITUDE": 13.148279, "LONGITUDE": -61.212062, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 49485, "POP_MIN": 24518, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4359981.0, "MEGANAME": null, "LS_NAME": "Kingstown", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 49485.0, "MAX_POP20": 49485.0, "MAX_POP50": 49485.0, "MAX_POP300": 49485.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 17.0, "MAX_AREAKM": 17.0, "MIN_AREAMI": 7.0, "MAX_AREAMI": 7.0, "MIN_PERKM": 31.0, "MAX_PERKM": 31.0, "MIN_PERMI": 19.0, "MAX_PERMI": 19.0, "MIN_BBXMIN": -61.241667, "MAX_BBXMIN": -61.241667, "MIN_BBXMAX": -61.158333, "MAX_BBXMAX": -61.158333, "MIN_BBYMIN": 13.125, "MAX_BBYMIN": 13.125, "MIN_BBYMAX": 13.175, "MAX_BBYMAX": 13.175, "MEAN_BBXC": -61.202183, "MEAN_BBYC": 13.145833, "COMPARE": 0, "GN_ASCII": "Kingstown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 1662.0, "ELEVATION": 5.0, "GTOPO30": 1.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.706046585298036}, "geometry": {"type": "Point", "coordinates": [-61.212062, 13.148278]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Castries", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Castries", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Saint Lucia", "SOV_A3": "LCA", "ADM0NAME": "Saint Lucia", "ADM0_A3": "LCA", "ADM1NAME": null, "ISO_A2": "LC", "NOTE": null, "LATITUDE": 14.001973, "LONGITUDE": -61.000008, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 37963, "POP_MIN": 10634, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3028258.0, "MEGANAME": null, "LS_NAME": "Castries", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 64343.0, "MAX_POP20": 64343.0, "MAX_POP50": 64343.0, "MAX_POP300": 64343.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 16.0, "MAX_AREAKM": 16.0, "MIN_AREAMI": 6.0, "MAX_AREAMI": 6.0, "MIN_PERKM": 22.0, "MAX_PERKM": 22.0, "MIN_PERMI": 14.0, "MAX_PERMI": 14.0, "MIN_BBXMIN": -61.008333, "MAX_BBXMIN": -61.008333, "MIN_BBXMAX": -60.966667, "MAX_BBXMAX": -60.966667, "MIN_BBYMIN": 13.975, "MAX_BBYMIN": 13.975, "MIN_BBYMAX": 14.025, "MAX_BBYMAX": 14.025, "MEAN_BBXC": -60.988377, "MEAN_BBYC": 14.005921, "COMPARE": 0, "GN_ASCII": "Castries", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 5790.0, "ELEVATION": null, "GTOPO30": 47.0, "TIMEZONE": "Europe/Paris", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-61.000008, 14.001973]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Basseterre", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Basseterre", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Saint Kitts and Nevis", "SOV_A3": "KNA", "ADM0NAME": "Saint Kitts and Nevis", "ADM0_A3": "KNA", "ADM1NAME": null, "ISO_A2": "KN", "NOTE": null, "LATITUDE": 17.30203, "LONGITUDE": -62.717009, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 21887, "POP_MIN": 15500, "POP_OTHER": 21887, "RANK_MAX": 7, "RANK_MIN": 6, "GEONAMEID": 3575551.0, "MEGANAME": null, "LS_NAME": "Basseterre", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 21887.0, "MAX_POP20": 21887.0, "MAX_POP50": 21887.0, "MAX_POP300": 21887.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 7.0, "MAX_AREAKM": 7.0, "MIN_AREAMI": 3.0, "MAX_AREAMI": 3.0, "MIN_PERKM": 16.0, "MAX_PERKM": 16.0, "MIN_PERMI": 10.0, "MAX_PERMI": 10.0, "MIN_BBXMIN": -62.741667, "MAX_BBXMIN": -62.741667, "MIN_BBXMAX": -62.708333, "MAX_BBXMAX": -62.708333, "MIN_BBYMIN": 17.291667, "MAX_BBYMIN": 17.291667, "MIN_BBYMAX": 17.333333, "MAX_BBYMAX": 17.333333, "MEAN_BBXC": -62.726389, "MEAN_BBYC": 17.306019, "COMPARE": 0, "GN_ASCII": "Basseterre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 12920.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "America/St_Kitts", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.944181010635272}, "geometry": {"type": "Point", "coordinates": [-62.717009, 17.30203]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Port Louis", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port Louis", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Mauritius", "SOV_A3": "MUS", "ADM0NAME": "Mauritius", "ADM0_A3": "MUS", "ADM1NAME": null, "ISO_A2": "MU", "NOTE": null, "LATITUDE": -20.166639, "LONGITUDE": 57.499994, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 595491, "POP_MIN": 148416, "POP_OTHER": 304613, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 934154.0, "MEGANAME": null, "LS_NAME": "Port Louis", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 291837.0, "MAX_POP20": 595491.0, "MAX_POP50": 595491.0, "MAX_POP300": 595491.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 70.0, "MAX_AREAKM": 152.0, "MIN_AREAMI": 27.0, "MAX_AREAMI": 59.0, "MIN_PERKM": 85.0, "MAX_PERKM": 154.0, "MIN_PERMI": 53.0, "MAX_PERMI": 96.0, "MIN_BBXMIN": 57.425, "MAX_BBXMIN": 57.425, "MIN_BBXMAX": 57.541667, "MAX_BBXMAX": 57.575, "MIN_BBYMIN": -20.333333, "MAX_BBYMIN": -20.248073, "MIN_BBYMAX": -20.108333, "MAX_BBYMAX": -20.108333, "MEAN_BBXC": 57.491611, "MEAN_BBYC": -20.221833, "COMPARE": 0, "GN_ASCII": "Port Louis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18.0, "GN_POP": 155226.0, "ELEVATION": null, "GTOPO30": 133.0, "TIMEZONE": "Indian/Mauritius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8575940031796684}, "geometry": {"type": "Point", "coordinates": [57.499993, -20.166638]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint George's", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Saint George's", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Grenada", "SOV_A3": "GRD", "ADM0NAME": "Grenada", "ADM0_A3": "GRD", "ADM1NAME": null, "ISO_A2": "GD", "NOTE": null, "LATITUDE": 12.052633, "LONGITUDE": -61.741643, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 33734, "POP_MIN": 27343, "POP_OTHER": 27343, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3579925.0, "MEGANAME": null, "LS_NAME": "Saint George\u0089?s", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 27343.0, "MAX_POP20": 27343.0, "MAX_POP50": 27343.0, "MAX_POP300": 27343.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 10.0, "MAX_AREAKM": 10.0, "MIN_AREAMI": 4.0, "MAX_AREAMI": 4.0, "MIN_PERKM": 18.0, "MAX_PERKM": 18.0, "MIN_PERMI": 11.0, "MAX_PERMI": 11.0, "MIN_BBXMIN": -61.758333, "MAX_BBXMIN": -61.758333, "MIN_BBXMAX": -61.725, "MAX_BBXMAX": -61.725, "MIN_BBYMIN": 12.025, "MAX_BBYMIN": 12.025, "MIN_BBYMAX": 12.066667, "MAX_BBYMAX": 12.066667, "MEAN_BBXC": -61.745833, "MEAN_BBYC": 12.046528, "COMPARE": 0, "GN_ASCII": "Saint George's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 7500.0, "ELEVATION": null, "GTOPO30": 26.0, "TIMEZONE": "America/Grenada", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.25335728175301775}, "geometry": {"type": "Point", "coordinates": [-61.741643, 12.052633]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Manama", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Manama", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bahrain", "SOV_A3": "BHR", "ADM0NAME": "Bahrain", "ADM0_A3": "BHR", "ADM1NAME": null, "ISO_A2": "BH", "NOTE": null, "LATITUDE": 26.236136, "LONGITUDE": 50.583052, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 563920, "POP_MIN": 157474, "POP_OTHER": 563666, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 290340.0, "MEGANAME": null, "LS_NAME": "Manama", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 563920.0, "MAX_POP20": 563920.0, "MAX_POP50": 563920.0, "MAX_POP300": 563920.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 178.0, "MAX_AREAKM": 178.0, "MIN_AREAMI": 69.0, "MAX_AREAMI": 69.0, "MIN_PERKM": 184.0, "MAX_PERKM": 184.0, "MIN_PERMI": 115.0, "MAX_PERMI": 115.0, "MIN_BBXMIN": 50.441667, "MAX_BBXMIN": 50.441667, "MIN_BBXMAX": 50.633333, "MAX_BBXMAX": 50.633333, "MIN_BBYMIN": 26.05, "MAX_BBYMIN": 26.05, "MIN_BBYMAX": 26.25, "MAX_BBYMAX": 26.25, "MEAN_BBXC": 50.542529, "MEAN_BBYC": 26.164763, "COMPARE": 0, "GN_ASCII": "Manama", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 147074.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Asia/Bahrain", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [50.583051, 26.236136]}} +{"type": "Feature", "properties": {"SCALERANK": 4, "NATSCALE": 50, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Saint John's", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Saint John's", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Antigua and Barbuda", "SOV_A3": "ATG", "ADM0NAME": "Antigua and Barbuda", "ADM0_A3": "ATG", "ADM1NAME": null, "ISO_A2": "AG", "NOTE": null, "LATITUDE": 17.118037, "LONGITUDE": -61.850034, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 35499, "POP_MIN": 24226, "POP_OTHER": 0, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 3576022.0, "MEGANAME": null, "LS_NAME": "Saint John's", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 35499.0, "MAX_POP20": 35499.0, "MAX_POP50": 35499.0, "MAX_POP300": 35499.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 25.0, "MAX_AREAKM": 25.0, "MIN_AREAMI": 10.0, "MAX_AREAMI": 10.0, "MIN_PERKM": 38.0, "MAX_PERKM": 38.0, "MIN_PERMI": 24.0, "MAX_PERMI": 24.0, "MIN_BBXMIN": -61.858333, "MAX_BBXMIN": -61.858333, "MIN_BBXMAX": -61.783333, "MAX_BBXMAX": -61.783333, "MIN_BBYMIN": 17.091667, "MAX_BBYMIN": 17.091667, "MIN_BBYMAX": 17.141667, "MAX_BBYMAX": 17.141667, "MEAN_BBXC": -61.824059, "MEAN_BBYC": 17.120565, "COMPARE": 0, "GN_ASCII": "Saint John's", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 24226.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "America/Antigua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9362616214832521}, "geometry": {"type": "Point", "coordinates": [-61.850033, 17.118036]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Montevideo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Montevideo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Uruguay", "SOV_A3": "URY", "ADM0NAME": "Uruguay", "ADM0_A3": "URY", "ADM1NAME": "Montevideo", "ISO_A2": "UY", "NOTE": null, "LATITUDE": -34.858042, "LONGITUDE": -56.171052, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1513000, "POP_MIN": 5324, "POP_OTHER": 1276128, "RANK_MAX": 12, "RANK_MIN": 5, "GEONAMEID": 5038018.0, "MEGANAME": "Montevideo", "LS_NAME": "Montevideo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1381747.0, "MAX_POP20": 1381747.0, "MAX_POP50": 1381747.0, "MAX_POP300": 1381747.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 347.0, "MAX_AREAKM": 347.0, "MIN_AREAMI": 134.0, "MAX_AREAMI": 134.0, "MIN_PERKM": 266.0, "MAX_PERKM": 266.0, "MIN_PERMI": 165.0, "MAX_PERMI": 165.0, "MIN_BBXMIN": -56.291667, "MAX_BBXMIN": -56.291667, "MIN_BBXMAX": -55.8, "MAX_BBXMAX": -55.8, "MIN_BBYMIN": -34.933333, "MAX_BBYMIN": -34.933333, "MIN_BBYMAX": -34.65, "MAX_BBYMAX": -34.65, "MEAN_BBXC": -56.12273, "MEAN_BBYC": -34.828337, "COMPARE": 0, "GN_ASCII": "Montevideo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 5324.0, "ELEVATION": 284.0, "GTOPO30": 305.0, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 579, "UN_ADM0": "Uruguay", "UN_LAT": -34.92, "UN_LONG": -56.16, "POP1950": 1212.0, "POP1955": 1248.0, "POP1960": 1285.0, "POP1965": 1323.0, "POP1970": 1362.0, "POP1975": 1403.0, "POP1980": 1454.0, "POP1985": 1508.0, "POP1990": 1546.0, "POP1995": 1584.0, "POP2000": 1561.0, "POP2005": 1525.0, "POP2010": 1513.0, "POP2015": 1504.0, "POP2020": 1506.0, "POP2025": 1515.0, "POP2050": 1520.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-56.172998, -34.856095]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lome", "NAMEPAR": null, "NAMEALT": "Lom\u00e9", "DIFFASCII": 0, "NAMEASCII": "Lome", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Togo", "SOV_A3": "TGO", "ADM0NAME": "Togo", "ADM0_A3": "TGO", "ADM1NAME": "Maritime", "ISO_A2": "TG", "NOTE": null, "LATITUDE": 6.131937, "LONGITUDE": 1.222757, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1452000, "POP_MIN": 749700, "POP_OTHER": 1256715, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2365267.0, "MEGANAME": "Lom\u00e9", "LS_NAME": "Lome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 954448.0, "MAX_POP20": 953569.0, "MAX_POP50": 954013.0, "MAX_POP300": 953569.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 343.0, "MAX_AREAKM": 364.0, "MIN_AREAMI": 133.0, "MAX_AREAMI": 140.0, "MIN_PERKM": 353.0, "MAX_PERKM": 360.0, "MIN_PERMI": 219.0, "MAX_PERMI": 224.0, "MIN_BBXMIN": 0.95, "MAX_BBXMIN": 0.95, "MIN_BBXMAX": 1.483333, "MAX_BBXMAX": 1.483333, "MIN_BBYMIN": 6.025, "MAX_BBYMIN": 6.025, "MIN_BBYMAX": 6.283333, "MAX_BBYMAX": 6.283333, "MEAN_BBXC": 1.190359, "MEAN_BBYC": 6.153924, "COMPARE": 0, "GN_ASCII": "Lome", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 24.0, "GN_POP": 749700.0, "ELEVATION": null, "GTOPO30": 64.0, "TIMEZONE": "Africa/Lome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 497, "UN_ADM0": "Togo", "UN_LAT": 6.1, "UN_LONG": 1.2, "POP1950": 33.0, "POP1955": 56.0, "POP1960": 95.0, "POP1965": 138.0, "POP1970": 192.0, "POP1975": 257.0, "POP1980": 344.0, "POP1985": 466.0, "POP1990": 619.0, "POP1995": 796.0, "POP2000": 1023.0, "POP2005": 1315.0, "POP2010": 1452.0, "POP2015": 1669.0, "POP2020": 2038.0, "POP2025": 2410.0, "POP2050": 2791.0, "CITYALT": "Lome", "clustered:unrelated": 0.7946123503365328}, "geometry": {"type": "Point", "coordinates": [1.220811, 6.133882]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tunis", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tunis", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Tunisia", "SOV_A3": "TUN", "ADM0NAME": "Tunisia", "ADM0_A3": "TUN", "ADM1NAME": "Tunis", "ISO_A2": "TN", "NOTE": null, "LATITUDE": 36.802778, "LONGITUDE": 10.179678, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 2412500, "POP_MIN": 728453, "POP_OTHER": 1675117, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2464470.0, "MEGANAME": null, "LS_NAME": "Tunis", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1831176.0, "MAX_POP20": 1831176.0, "MAX_POP50": 1838972.0, "MAX_POP300": 1838972.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 480.0, "MAX_AREAKM": 502.0, "MIN_AREAMI": 185.0, "MAX_AREAMI": 194.0, "MIN_PERKM": 485.0, "MAX_PERKM": 524.0, "MIN_PERMI": 302.0, "MAX_PERMI": 326.0, "MIN_BBXMIN": 9.95, "MAX_BBXMIN": 9.95, "MIN_BBXMAX": 10.497585, "MAX_BBXMAX": 10.575, "MIN_BBYMIN": 36.633333, "MAX_BBYMIN": 36.633333, "MIN_BBYMAX": 36.966667, "MAX_BBYMAX": 36.966667, "MEAN_BBXC": 10.202041, "MEAN_BBYC": 36.802974, "COMPARE": 0, "GN_ASCII": "Tunis", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 38.0, "GN_POP": 693210.0, "ELEVATION": null, "GTOPO30": 13.0, "TIMEZONE": "Africa/Tunis", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8738036978713968}, "geometry": {"type": "Point", "coordinates": [10.179678, 36.802778]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abu Dhabi", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Abu Dhabi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Abu Dhabi", "ISO_A2": "AE", "NOTE": null, "LATITUDE": 24.466684, "LONGITUDE": 54.366593, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 603492, "POP_MIN": 560230, "POP_OTHER": 560230, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 292968.0, "MEGANAME": null, "LS_NAME": "Abu Dhabi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 560230.0, "MAX_POP20": 560230.0, "MAX_POP50": 560230.0, "MAX_POP300": 560230.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 96.0, "MAX_AREAKM": 96.0, "MIN_AREAMI": 37.0, "MAX_AREAMI": 37.0, "MIN_PERKM": 87.0, "MAX_PERKM": 87.0, "MIN_PERMI": 54.0, "MAX_PERMI": 54.0, "MIN_BBXMIN": 54.316667, "MAX_BBXMIN": 54.316667, "MIN_BBXMAX": 54.525, "MAX_BBXMAX": 54.525, "MIN_BBYMIN": 24.391667, "MAX_BBYMIN": 24.391667, "MIN_BBYMAX": 24.525, "MAX_BBYMAX": 24.525, "MEAN_BBXC": 54.410671, "MEAN_BBYC": 24.444343, "COMPARE": 0, "GN_ASCII": "Abu Dhabi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 603492.0, "ELEVATION": null, "GTOPO30": 14.0, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [54.366593, 24.466683]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ashgabat", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ashgabat", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Turkmenistan", "SOV_A3": "TKM", "ADM0NAME": "Turkmenistan", "ADM0_A3": "TKM", "ADM1NAME": "Ahal", "ISO_A2": "TM", "NOTE": null, "LATITUDE": 37.949995, "LONGITUDE": 58.383299, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 727700, "POP_MIN": 577982, "POP_OTHER": 556048, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 162183.0, "MEGANAME": null, "LS_NAME": "Ashgabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 577982.0, "MAX_POP20": 589324.0, "MAX_POP50": 589324.0, "MAX_POP300": 589324.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 108.0, "MAX_AREAKM": 128.0, "MIN_AREAMI": 42.0, "MAX_AREAMI": 49.0, "MIN_PERKM": 109.0, "MAX_PERKM": 144.0, "MIN_PERMI": 68.0, "MAX_PERMI": 90.0, "MIN_BBXMIN": 58.2, "MAX_BBXMIN": 58.28637, "MIN_BBXMAX": 58.483333, "MAX_BBXMAX": 58.483333, "MIN_BBYMIN": 37.866667, "MAX_BBYMIN": 37.866667, "MIN_BBYMAX": 38.016667, "MAX_BBYMAX": 38.016667, "MEAN_BBXC": 58.371343, "MEAN_BBYC": 37.94619, "COMPARE": 0, "GN_ASCII": "Ashgabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 727700.0, "ELEVATION": null, "GTOPO30": 219.0, "TIMEZONE": "Asia/Ashgabat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [58.383299, 37.949994]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lusaka", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lusaka", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Zambia", "SOV_A3": "ZMB", "ADM0NAME": "Zambia", "ADM0_A3": "ZMB", "ADM1NAME": "Lusaka", "ISO_A2": "ZM", "NOTE": null, "LATITUDE": -15.416644, "LONGITUDE": 28.283328, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1328000, "POP_MIN": 1267440, "POP_OTHER": 1240558, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 909137.0, "MEGANAME": "Lusaka", "LS_NAME": "Lusaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1289566.0, "MAX_POP20": 1289566.0, "MAX_POP50": 1289566.0, "MAX_POP300": 1289566.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 183.0, "MAX_AREAKM": 183.0, "MIN_AREAMI": 71.0, "MAX_AREAMI": 71.0, "MIN_PERKM": 122.0, "MAX_PERKM": 122.0, "MIN_PERMI": 76.0, "MAX_PERMI": 76.0, "MIN_BBXMIN": 28.225, "MAX_BBXMIN": 28.225, "MIN_BBXMAX": 28.416667, "MAX_BBXMAX": 28.416667, "MIN_BBYMIN": -15.483333, "MAX_BBYMIN": -15.483333, "MIN_BBYMAX": -15.333333, "MAX_BBYMAX": -15.333333, "MEAN_BBXC": 28.308596, "MEAN_BBYC": -15.403941, "COMPARE": 0, "GN_ASCII": "Lusaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 1267440.0, "ELEVATION": null, "GTOPO30": 1277.0, "TIMEZONE": "Africa/Lusaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 589, "UN_ADM0": "Zambia", "UN_LAT": -15.42, "UN_LONG": 28.17, "POP1950": 31.0, "POP1955": 53.0, "POP1960": 91.0, "POP1965": 160.0, "POP1970": 278.0, "POP1975": 385.0, "POP1980": 533.0, "POP1985": 636.0, "POP1990": 757.0, "POP1995": 902.0, "POP2000": 1073.0, "POP2005": 1261.0, "POP2010": 1328.0, "POP2015": 1421.0, "POP2020": 1587.0, "POP2025": 1797.0, "POP2050": 2047.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [28.281381, -15.414698]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Harare", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Harare", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Zimbabwe", "SOV_A3": "ZWE", "ADM0NAME": "Zimbabwe", "ADM0_A3": "ZWE", "ADM1NAME": "Harare", "ISO_A2": "ZW", "NOTE": null, "LATITUDE": -17.81779, "LONGITUDE": 31.044709, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1572000, "POP_MIN": 1542813, "POP_OTHER": 1831877, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 890299.0, "MEGANAME": "Harare", "LS_NAME": "Harare", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1833439.0, "MAX_POP20": 1833439.0, "MAX_POP50": 1833439.0, "MAX_POP300": 1839463.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 310.0, "MAX_AREAKM": 326.0, "MIN_AREAMI": 120.0, "MAX_AREAMI": 126.0, "MIN_PERKM": 186.0, "MAX_PERKM": 210.0, "MIN_PERMI": 115.0, "MAX_PERMI": 130.0, "MIN_BBXMIN": 30.908333, "MAX_BBXMIN": 30.908333, "MIN_BBXMAX": 31.175, "MAX_BBXMAX": 31.191667, "MIN_BBYMIN": -17.925, "MAX_BBYMIN": -17.925, "MIN_BBYMAX": -17.725, "MAX_BBYMAX": -17.725, "MEAN_BBXC": 31.045288, "MEAN_BBYC": -17.832399, "COMPARE": 0, "GN_ASCII": "Harare", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 1542813.0, "ELEVATION": null, "GTOPO30": 1481.0, "TIMEZONE": "Africa/Harare", "GEONAMESNO": "GeoNames match general.", "UN_FID": 462, "UN_ADM0": "Zimbabwe", "UN_LAT": -17.82, "UN_LONG": 31.02, "POP1950": 143.0, "POP1955": 192.0, "POP1960": 248.0, "POP1965": 319.0, "POP1970": 417.0, "POP1975": 532.0, "POP1980": 616.0, "POP1985": 778.0, "POP1990": 1047.0, "POP1995": 1255.0, "POP2000": 1379.0, "POP2005": 1515.0, "POP2010": 1572.0, "POP2015": 1663.0, "POP2020": 1839.0, "POP2025": 2037.0, "POP2050": 2247.0, "CITYALT": null, "clustered:unrelated": 0.39035109734227}, "geometry": {"type": "Point", "coordinates": [31.042763, -17.815843]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dili", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dili", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "East Timor", "SOV_A3": "TLS", "ADM0NAME": "East Timor", "ADM0_A3": "TLS", "ADM1NAME": "Dili", "ISO_A2": "TL", "NOTE": null, "LATITUDE": -8.559388, "LONGITUDE": 125.579456, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 234331, "POP_MIN": 193563, "POP_OTHER": 55154, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1645457.0, "MEGANAME": null, "LS_NAME": "Dili", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 55154.0, "MAX_POP20": 55154.0, "MAX_POP50": 55154.0, "MAX_POP300": 55154.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 27.0, "MAX_AREAKM": 27.0, "MIN_AREAMI": 10.0, "MAX_AREAMI": 10.0, "MIN_PERKM": 31.0, "MAX_PERKM": 31.0, "MIN_PERMI": 19.0, "MAX_PERMI": 19.0, "MIN_BBXMIN": 125.516667, "MAX_BBXMIN": 125.516667, "MIN_BBXMAX": 125.608333, "MAX_BBXMAX": 125.608333, "MIN_BBYMIN": -8.583333, "MAX_BBYMIN": -8.583333, "MIN_BBYMAX": -8.541667, "MAX_BBYMAX": -8.541667, "MEAN_BBXC": 125.565104, "MEAN_BBYC": -8.559115, "COMPARE": 0, "GN_ASCII": "Dili", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 150000.0, "ELEVATION": null, "GTOPO30": 9.0, "TIMEZONE": "Asia/Dili", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [125.579455, -8.559388]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Vila", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port-Vila", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Vanuatu", "SOV_A3": "VUT", "ADM0NAME": "Vanuatu", "ADM0_A3": "VUT", "ADM1NAME": "Shefa", "ISO_A2": "VU", "NOTE": null, "LATITUDE": -17.73335, "LONGITUDE": 168.316641, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 44040, "POP_MIN": 35901, "POP_OTHER": 7702, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 2135171.0, "MEGANAME": null, "LS_NAME": "Port-Vila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7702.0, "MAX_POP20": 7702.0, "MAX_POP50": 7702.0, "MAX_POP300": 7702.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 7.0, "MAX_AREAKM": 7.0, "MIN_AREAMI": 3.0, "MAX_AREAMI": 3.0, "MIN_PERKM": 16.0, "MAX_PERKM": 16.0, "MIN_PERMI": 10.0, "MAX_PERMI": 10.0, "MIN_BBXMIN": 168.3, "MAX_BBXMIN": 168.3, "MIN_BBXMAX": 168.325, "MAX_BBXMAX": 168.325, "MIN_BBYMIN": -17.758333, "MAX_BBYMIN": -17.758333, "MIN_BBYMAX": -17.708333, "MAX_BBYMAX": -17.708333, "MEAN_BBXC": 168.3125, "MEAN_BBYC": -17.728125, "COMPARE": 0, "GN_ASCII": "Port-Vila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 35901.0, "ELEVATION": null, "GTOPO30": 7.0, "TIMEZONE": "Pacific/Efate", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [168.31664, -17.73335]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tegucigalpa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tegucigalpa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Honduras", "SOV_A3": "HND", "ADM0NAME": "Honduras", "ADM0_A3": "HND", "ADM1NAME": "Francisco Moraz\u00e1n", "ISO_A2": "HN", "NOTE": null, "LATITUDE": 14.102045, "LONGITUDE": -87.217529, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 946000, "POP_MIN": 850848, "POP_OTHER": 1014546, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3600949.0, "MEGANAME": "Tegucigalpa", "LS_NAME": "Tegucigalpa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1014546.0, "MAX_POP20": 1014546.0, "MAX_POP50": 1014546.0, "MAX_POP300": 1014546.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 97.0, "MAX_AREAKM": 97.0, "MIN_AREAMI": 37.0, "MAX_AREAMI": 37.0, "MIN_PERKM": 66.0, "MAX_PERKM": 66.0, "MIN_PERMI": 41.0, "MAX_PERMI": 41.0, "MIN_BBXMIN": -87.266667, "MAX_BBXMIN": -87.266667, "MIN_BBXMAX": -87.141667, "MAX_BBXMAX": -87.141667, "MIN_BBYMIN": 14.033333, "MAX_BBYMIN": 14.033333, "MIN_BBYMAX": 14.133333, "MAX_BBYMAX": 14.133333, "MEAN_BBXC": -87.19911, "MEAN_BBYC": 14.083298, "COMPARE": 0, "GN_ASCII": "Tegucigalpa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 850848.0, "ELEVATION": null, "GTOPO30": 997.0, "TIMEZONE": "America/Tegucigalpa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 209, "UN_ADM0": "Honduras", "UN_LAT": 14.09, "UN_LONG": -87.2, "POP1950": 73.0, "POP1955": 96.0, "POP1960": 128.0, "POP1965": 169.0, "POP1970": 223.0, "POP1975": 292.0, "POP1980": 371.0, "POP1985": 471.0, "POP1990": 578.0, "POP1995": 677.0, "POP2000": 793.0, "POP2005": 901.0, "POP2010": 946.0, "POP2015": 1022.0, "POP2020": 1165.0, "POP2025": 1317.0, "POP2050": 1472.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-87.219475, 14.10399]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Georgetown", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Georgetown", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Guyana", "SOV_A3": "GUY", "ADM0NAME": "Guyana", "ADM0_A3": "GUY", "ADM1NAME": "East Berbice-Corentyne", "ISO_A2": "GY", "NOTE": null, "LATITUDE": 6.801974, "LONGITUDE": -58.167029, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 264350, "POP_MIN": 235017, "POP_OTHER": 264350, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3378644.0, "MEGANAME": null, "LS_NAME": "Georgetown1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 264350.0, "MAX_POP20": 264350.0, "MAX_POP50": 264350.0, "MAX_POP300": 264350.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 37.0, "MAX_AREAKM": 37.0, "MIN_AREAMI": 14.0, "MAX_AREAMI": 14.0, "MIN_PERKM": 44.0, "MAX_PERKM": 44.0, "MIN_PERMI": 27.0, "MAX_PERMI": 27.0, "MIN_BBXMIN": -58.2, "MAX_BBXMIN": -58.2, "MIN_BBXMAX": -58.116667, "MAX_BBXMAX": -58.116667, "MIN_BBYMIN": 6.75, "MAX_BBYMIN": 6.75, "MIN_BBYMAX": 6.833333, "MAX_BBYMAX": 6.833333, "MEAN_BBXC": -58.153788, "MEAN_BBYC": 6.797348, "COMPARE": 0, "GN_ASCII": "Georgetown", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 235017.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "America/Guyana", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.6684481876044531}, "geometry": {"type": "Point", "coordinates": [-58.167028, 6.801973]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Reykjav\u00edk", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 1, "NAMEASCII": "Reykjavik", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Iceland", "SOV_A3": "ISL", "ADM0NAME": "Iceland", "ADM0_A3": "ISL", "ADM1NAME": "Su\u00f0urnes", "ISO_A2": "IS", "NOTE": null, "LATITUDE": 64.150024, "LONGITUDE": -21.950014, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 166212, "POP_MIN": 113906, "POP_OTHER": 160116, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3413829.0, "MEGANAME": null, "LS_NAME": "Reykjavik", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 166212.0, "MAX_POP20": 166212.0, "MAX_POP50": 166212.0, "MAX_POP300": 166212.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 75.0, "MAX_AREAKM": 75.0, "MIN_AREAMI": 29.0, "MAX_AREAMI": 29.0, "MIN_PERKM": 119.0, "MAX_PERKM": 119.0, "MIN_PERMI": 74.0, "MAX_PERMI": 74.0, "MIN_BBXMIN": -22.008333, "MAX_BBXMIN": -22.008333, "MIN_BBXMAX": -21.75, "MAX_BBXMAX": -21.75, "MIN_BBYMIN": 64.05, "MAX_BBYMIN": 64.05, "MIN_BBYMAX": 64.166667, "MAX_BBYMAX": 64.166667, "MEAN_BBXC": -21.8825, "MEAN_BBYC": 64.116125, "COMPARE": 0, "GN_ASCII": "Reykjavik", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 39.0, "GN_POP": 113906.0, "ELEVATION": null, "GTOPO30": 16.0, "TIMEZONE": "Atlantic/Reykjavik", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9671239682298457}, "geometry": {"type": "Point", "coordinates": [-21.950014, 64.150023]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port-au-Prince", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port-au-Prince", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Haiti", "SOV_A3": "HTI", "ADM0NAME": "Haiti", "ADM0_A3": "HTI", "ADM1NAME": "Ouest", "ISO_A2": "HT", "NOTE": null, "LATITUDE": 18.541025, "LONGITUDE": -72.336035, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1998000, "POP_MIN": 1234742, "POP_OTHER": 2385397, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3718426.0, "MEGANAME": "Port-au-Prince", "LS_NAME": "Port-au-Prince", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2445384.0, "MAX_POP20": 2445384.0, "MAX_POP50": 2445384.0, "MAX_POP300": 2445384.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 374.0, "MAX_AREAKM": 374.0, "MIN_AREAMI": 144.0, "MAX_AREAMI": 144.0, "MIN_PERKM": 287.0, "MAX_PERKM": 287.0, "MIN_PERMI": 179.0, "MAX_PERMI": 179.0, "MIN_BBXMIN": -72.441667, "MAX_BBXMIN": -72.441667, "MIN_BBXMAX": -72.033333, "MAX_BBXMAX": -72.033333, "MIN_BBYMIN": 18.491667, "MAX_BBYMIN": 18.491667, "MIN_BBYMAX": 18.666667, "MAX_BBYMAX": 18.666667, "MEAN_BBXC": -72.222424, "MEAN_BBYC": 18.56946, "COMPARE": 0, "GN_ASCII": "Port-au-Prince", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1234742.0, "ELEVATION": null, "GTOPO30": 65.0, "TIMEZONE": "America/Port-au-Prince", "GEONAMESNO": "GeoNames match general.", "UN_FID": 208, "UN_ADM0": "Haiti", "UN_LAT": 18.52, "UN_LONG": -72.34, "POP1950": 133.0, "POP1955": 182.0, "POP1960": 247.0, "POP1965": 337.0, "POP1970": 460.0, "POP1975": 575.0, "POP1980": 701.0, "POP1985": 881.0, "POP1990": 1134.0, "POP1995": 1427.0, "POP2000": 1653.0, "POP2005": 1885.0, "POP2010": 1998.0, "POP2015": 2209.0, "POP2020": 2621.0, "POP2025": 3012.0, "POP2050": 3346.0, "CITYALT": null, "clustered:unrelated": 0.9627137257878754}, "geometry": {"type": "Point", "coordinates": [-72.33798, 18.54297]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kampala", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kampala", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Uganda", "SOV_A3": "UGA", "ADM0NAME": "Uganda", "ADM0_A3": "UGA", "ADM1NAME": "Kampala", "ISO_A2": "UG", "NOTE": null, "LATITUDE": 0.316659, "LONGITUDE": 32.583324, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1420000, "POP_MIN": 1353189, "POP_OTHER": 2153702, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 232422.0, "MEGANAME": "Kampala", "LS_NAME": "Kampala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2155592.0, "MAX_POP20": 2153391.0, "MAX_POP50": 2322955.0, "MAX_POP300": 2322955.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 405.0, "MAX_AREAKM": 465.0, "MIN_AREAMI": 156.0, "MAX_AREAMI": 180.0, "MIN_PERKM": 391.0, "MAX_PERKM": 470.0, "MIN_PERMI": 243.0, "MAX_PERMI": 292.0, "MIN_BBXMIN": 32.45, "MAX_BBXMIN": 32.5, "MIN_BBXMAX": 32.8, "MAX_BBXMAX": 32.8, "MIN_BBYMIN": 0.033333, "MAX_BBYMIN": 0.166719, "MIN_BBYMAX": 0.475, "MAX_BBYMAX": 0.475, "MEAN_BBXC": 32.614686, "MEAN_BBYC": 0.323809, "COMPARE": 0, "GN_ASCII": "Kampala", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18.0, "GN_POP": 1353189.0, "ELEVATION": null, "GTOPO30": 1206.0, "TIMEZONE": "Africa/Kampala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 507, "UN_ADM0": "Uganda", "UN_LAT": 0.32, "UN_LONG": 32.57, "POP1950": 95.0, "POP1955": 110.0, "POP1960": 137.0, "POP1965": 222.0, "POP1970": 340.0, "POP1975": 398.0, "POP1980": 469.0, "POP1985": 595.0, "POP1990": 755.0, "POP1995": 912.0, "POP2000": 1097.0, "POP2005": 1318.0, "POP2010": 1420.0, "POP2015": 1597.0, "POP2020": 1979.0, "POP2025": 2506.0, "POP2050": 3198.0, "CITYALT": null, "clustered:unrelated": 0.726699721025253}, "geometry": {"type": "Point", "coordinates": [32.581377, 0.318604]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Paramaribo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Paramaribo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Suriname", "SOV_A3": "SUR", "ADM0NAME": "Suriname", "ADM0_A3": "SUR", "ADM1NAME": "Paramaribo", "ISO_A2": "SR", "NOTE": null, "LATITUDE": 5.83503, "LONGITUDE": -55.167031, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 254169, "POP_MIN": 223757, "POP_OTHER": 248161, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3383330.0, "MEGANAME": null, "LS_NAME": "Paramaribo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 254169.0, "MAX_POP20": 254169.0, "MAX_POP50": 254169.0, "MAX_POP300": 254169.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 104.0, "MAX_AREAKM": 105.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 83.0, "MAX_PERKM": 85.0, "MIN_PERMI": 51.0, "MAX_PERMI": 53.0, "MIN_BBXMIN": -55.283333, "MAX_BBXMIN": -55.283333, "MIN_BBXMAX": -55.107566, "MAX_BBXMAX": -55.1, "MIN_BBYMIN": 5.766667, "MAX_BBYMIN": 5.766667, "MIN_BBYMAX": 5.866667, "MAX_BBYMAX": 5.866667, "MEAN_BBXC": -55.188737, "MEAN_BBYC": 5.826428, "COMPARE": 0, "GN_ASCII": "Paramaribo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16.0, "GN_POP": 223757.0, "ELEVATION": null, "GTOPO30": 3.0, "TIMEZONE": "America/Paramaribo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-55.16703, 5.83503]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Niamey", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Niamey", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Niger", "SOV_A3": "NER", "ADM0NAME": "Niger", "ADM0_A3": "NER", "ADM1NAME": "Niamey", "ISO_A2": "NE", "NOTE": null, "LATITUDE": 13.516706, "LONGITUDE": 2.116656, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 915000, "POP_MIN": 742791, "POP_OTHER": 715325, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2440485.0, "MEGANAME": "Niamey", "LS_NAME": "Niamey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742791.0, "MAX_POP20": 742791.0, "MAX_POP50": 742791.0, "MAX_POP300": 742791.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 122.0, "MAX_AREAKM": 122.0, "MIN_AREAMI": 47.0, "MAX_AREAMI": 47.0, "MIN_PERKM": 102.0, "MAX_PERKM": 102.0, "MIN_PERMI": 64.0, "MAX_PERMI": 64.0, "MIN_BBXMIN": 2.033333, "MAX_BBXMIN": 2.033333, "MIN_BBXMAX": 2.216667, "MAX_BBXMAX": 2.216667, "MIN_BBYMIN": 13.466667, "MAX_BBYMIN": 13.466667, "MIN_BBYMAX": 13.6, "MAX_BBYMAX": 13.6, "MEAN_BBXC": 2.125595, "MEAN_BBYC": 13.522591, "COMPARE": 0, "GN_ASCII": "Niamey", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 774235.0, "ELEVATION": null, "GTOPO30": 203.0, "TIMEZONE": "Africa/Niamey", "GEONAMESNO": "GeoNames match general.", "UN_FID": 385, "UN_ADM0": "Niger", "UN_LAT": 13.51, "UN_LONG": 2.12, "POP1950": 24.0, "POP1955": 37.0, "POP1960": 58.0, "POP1965": 85.0, "POP1970": 129.0, "POP1975": 198.0, "POP1980": 274.0, "POP1985": 344.0, "POP1990": 432.0, "POP1995": 542.0, "POP2000": 680.0, "POP2005": 846.0, "POP2010": 915.0, "POP2015": 1027.0, "POP2020": 1258.0, "POP2025": 1580.0, "POP2050": 2028.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [2.11471, 13.518651]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dushanbe", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dushanbe", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Tajikistan", "SOV_A3": "TJK", "ADM0NAME": "Tajikistan", "ADM0_A3": "TJK", "ADM1NAME": "Tadzhikistan Territories", "ISO_A2": "TJ", "NOTE": null, "LATITUDE": 38.560035, "LONGITUDE": 68.773879, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1086244, "POP_MIN": 679400, "POP_OTHER": 1081361, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 1221874.0, "MEGANAME": null, "LS_NAME": "Dushanbe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1086244.0, "MAX_POP20": 1086244.0, "MAX_POP50": 1086244.0, "MAX_POP300": 1086244.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 415.0, "MAX_AREAKM": 415.0, "MIN_AREAMI": 160.0, "MAX_AREAMI": 160.0, "MIN_PERKM": 411.0, "MAX_PERKM": 411.0, "MIN_PERMI": 255.0, "MAX_PERMI": 255.0, "MIN_BBXMIN": 68.641667, "MAX_BBXMIN": 68.641667, "MIN_BBXMAX": 69.15, "MAX_BBXMAX": 69.15, "MIN_BBYMIN": 38.416667, "MAX_BBYMIN": 38.416667, "MIN_BBYMAX": 38.675, "MAX_BBYMAX": 38.675, "MEAN_BBXC": 68.864837, "MEAN_BBYC": 38.542754, "COMPARE": 0, "GN_ASCII": "Dushanbe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 543107.0, "ELEVATION": null, "GTOPO30": 808.0, "TIMEZONE": "Asia/Dushanbe", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [68.773879, 38.560035]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Asuncion", "NAMEPAR": null, "NAMEALT": "Asunci\u00f3n", "DIFFASCII": 0, "NAMEASCII": "Asuncion", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Paraguay", "SOV_A3": "PRY", "ADM0NAME": "Paraguay", "ADM0_A3": "PRY", "ADM1NAME": "Asunci\u00f3n", "ISO_A2": "PY", "NOTE": null, "LATITUDE": -25.296403, "LONGITUDE": -57.641505, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1870000, "POP_MIN": 11693, "POP_OTHER": 636771, "RANK_MAX": 12, "RANK_MIN": 6, "GEONAMEID": 1730025.0, "MEGANAME": "Asunci\u00f3n", "LS_NAME": "Asuncion", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 745924.0, "MAX_POP20": 1829910.0, "MAX_POP50": 2141255.0, "MAX_POP300": 2141255.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 105.0, "MAX_AREAKM": 651.0, "MIN_AREAMI": 41.0, "MAX_AREAMI": 251.0, "MIN_PERKM": 63.0, "MAX_PERKM": 331.0, "MIN_PERMI": 39.0, "MAX_PERMI": 206.0, "MIN_BBXMIN": -57.675, "MAX_BBXMIN": -57.675, "MIN_BBXMAX": -57.543999, "MAX_BBXMAX": -57.316667, "MIN_BBYMIN": -25.491667, "MAX_BBYMIN": -25.391667, "MIN_BBYMAX": -25.208333, "MAX_BBYMAX": -25.1, "MEAN_BBXC": -57.535385, "MEAN_BBYC": -25.307462, "COMPARE": 0, "GN_ASCII": "Asuncion", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24.0, "GN_POP": 11693.0, "ELEVATION": null, "GTOPO30": 24.0, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 409, "UN_ADM0": "Paraguay", "UN_LAT": -25.3, "UN_LONG": -57.62, "POP1950": 258.0, "POP1955": 314.0, "POP1960": 382.0, "POP1965": 461.0, "POP1970": 552.0, "POP1975": 654.0, "POP1980": 770.0, "POP1985": 914.0, "POP1990": 1091.0, "POP1995": 1287.0, "POP2000": 1507.0, "POP2005": 1762.0, "POP2010": 1870.0, "POP2015": 2030.0, "POP2020": 2277.0, "POP2025": 2506.0, "POP2050": 2715.0, "CITYALT": "Asuncion", "clustered:unrelated": 0.36447252964767995}, "geometry": {"type": "Point", "coordinates": [-57.643451, -25.294457]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Managua", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Managua", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Nicaragua", "SOV_A3": "NIC", "ADM0NAME": "Nicaragua", "ADM0_A3": "NIC", "ADM1NAME": "Managua", "ISO_A2": "NI", "NOTE": null, "LATITUDE": 12.153017, "LONGITUDE": -86.268492, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 920000, "POP_MIN": 920000, "POP_OTHER": 1088194, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3617763.0, "MEGANAME": "Managua", "LS_NAME": "Managua", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1105973.0, "MAX_POP20": 1105973.0, "MAX_POP50": 1105973.0, "MAX_POP300": 1105973.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 131.0, "MAX_AREAKM": 131.0, "MIN_AREAMI": 51.0, "MAX_AREAMI": 51.0, "MIN_PERKM": 97.0, "MAX_PERKM": 97.0, "MIN_PERMI": 60.0, "MAX_PERMI": 60.0, "MIN_BBXMIN": -86.383333, "MAX_BBXMIN": -86.383333, "MIN_BBXMAX": -86.158333, "MAX_BBXMAX": -86.158333, "MIN_BBYMIN": 12.075, "MAX_BBYMIN": 12.075, "MIN_BBYMAX": 12.175, "MAX_BBYMAX": 12.175, "MEAN_BBXC": -86.263402, "MEAN_BBYC": 12.13336, "COMPARE": 0, "GN_ASCII": "Managua", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 973087.0, "ELEVATION": null, "GTOPO30": 59.0, "TIMEZONE": "America/Managua", "GEONAMESNO": "GeoNames match general.", "UN_FID": 382, "UN_ADM0": "Nicaragua", "UN_LAT": 12.15, "UN_LONG": -86.27, "POP1950": 110.0, "POP1955": 148.0, "POP1960": 199.0, "POP1965": 269.0, "POP1970": 366.0, "POP1975": 443.0, "POP1980": 525.0, "POP1985": 621.0, "POP1990": 735.0, "POP1995": 865.0, "POP2000": 887.0, "POP2005": 909.0, "POP2010": 920.0, "POP2015": 944.0, "POP2020": 1015.0, "POP2025": 1104.0, "POP2050": 1193.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-86.270437, 12.154962]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Freetown", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Freetown", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Sierra Leone", "SOV_A3": "SLE", "ADM0NAME": "Sierra Leone", "ADM0_A3": "SLE", "ADM1NAME": "Western", "ISO_A2": "SL", "NOTE": null, "LATITUDE": 8.470011, "LONGITUDE": -13.234216, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 827000, "POP_MIN": 13768, "POP_OTHER": 1074640, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 2408770.0, "MEGANAME": "Freetown", "LS_NAME": "Freetown", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1074311.0, "MAX_POP20": 1074311.0, "MAX_POP50": 1074311.0, "MAX_POP300": 1074311.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 77.0, "MAX_AREAKM": 77.0, "MIN_AREAMI": 30.0, "MAX_AREAMI": 30.0, "MIN_PERKM": 81.0, "MAX_PERKM": 81.0, "MIN_PERMI": 50.0, "MAX_PERMI": 50.0, "MIN_BBXMIN": -13.3, "MAX_BBXMIN": -13.3, "MIN_BBXMAX": -13.15, "MAX_BBXMAX": -13.15, "MIN_BBYMIN": 8.408333, "MAX_BBYMIN": 8.408333, "MIN_BBYMAX": 8.5, "MAX_BBYMAX": 8.5, "MEAN_BBXC": -13.230082, "MEAN_BBYC": 8.462592, "COMPARE": 0, "GN_ASCII": "Freetown", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 4.0, "GN_POP": 13768.0, "ELEVATION": null, "GTOPO30": 15.0, "TIMEZONE": "Africa/Freetown", "GEONAMESNO": "GeoNames match general.", "UN_FID": 449, "UN_ADM0": "Sierra Leone", "UN_LAT": 8.48, "UN_LONG": -13.23, "POP1950": 92.0, "POP1955": 104.0, "POP1960": 119.0, "POP1965": 148.0, "POP1970": 206.0, "POP1975": 284.0, "POP1980": 361.0, "POP1985": 460.0, "POP1990": 529.0, "POP1995": 603.0, "POP2000": 688.0, "POP2005": 785.0, "POP2010": 827.0, "POP2015": 894.0, "POP2020": 1029.0, "POP2025": 1200.0, "POP2050": 1406.0, "CITYALT": null, "clustered:unrelated": 0.52734451306556}, "geometry": {"type": "Point", "coordinates": [-13.236161, 8.471957]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Islamabad", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Islamabad", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Pakistan", "SOV_A3": "PAK", "ADM0NAME": "Pakistan", "ADM0_A3": "PAK", "ADM1NAME": "F.C.T.", "ISO_A2": "PK", "NOTE": null, "LATITUDE": 33.699996, "LONGITUDE": 73.166634, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 780000, "POP_MIN": 601600, "POP_OTHER": 893673, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1176615.0, "MEGANAME": "Islamabad", "LS_NAME": "Islamabad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742356.0, "MAX_POP20": 742356.0, "MAX_POP50": 7482035.0, "MAX_POP300": 7482969.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 772.0, "MAX_AREAKM": 5463.0, "MIN_AREAMI": 298.0, "MAX_AREAMI": 2109.0, "MIN_PERKM": 545.0, "MAX_PERKM": 4154.0, "MIN_PERMI": 339.0, "MAX_PERMI": 2581.0, "MIN_BBXMIN": 72.286464, "MAX_BBXMIN": 73.033333, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.816667, "MIN_BBYMIN": 32.7, "MAX_BBYMIN": 33.258333, "MIN_BBYMAX": 33.766667, "MAX_BBYMAX": 34.533333, "MEAN_BBXC": 73.182617, "MEAN_BBYC": 33.557939, "COMPARE": 0, "GN_ASCII": "Islamabad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 601600.0, "ELEVATION": null, "GTOPO30": 497.0, "TIMEZONE": "Asia/Karachi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 401, "UN_ADM0": "Pakistan", "UN_LAT": 33.71, "UN_LONG": 73.06, "POP1950": 36.0, "POP1955": 41.0, "POP1960": 45.0, "POP1965": 56.0, "POP1970": 70.0, "POP1975": 107.0, "POP1980": 189.0, "POP1985": 260.0, "POP1990": 343.0, "POP1995": 452.0, "POP2000": 594.0, "POP2005": 732.0, "POP2010": 780.0, "POP2015": 851.0, "POP2020": 988.0, "POP2025": 1148.0, "POP2050": 1320.0, "CITYALT": null, "clustered:unrelated": 0.4632515655175451}, "geometry": {"type": "Point", "coordinates": [73.164688, 33.701941]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kathmandu", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kathmandu", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Nepal", "SOV_A3": "NPL", "ADM0NAME": "Nepal", "ADM0_A3": "NPL", "ADM1NAME": "Bhaktapur", "ISO_A2": "NP", "NOTE": null, "LATITUDE": 27.716692, "LONGITUDE": 85.316642, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 895000, "POP_MIN": 895000, "POP_OTHER": 1099610, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1283240.0, "MEGANAME": "Kathmandu", "LS_NAME": "Kathmandu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1154222.0, "MAX_POP20": 2297630.0, "MAX_POP50": 2297630.0, "MAX_POP300": 2297630.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 233.0, "MAX_AREAKM": 580.0, "MIN_AREAMI": 90.0, "MAX_AREAMI": 224.0, "MIN_PERKM": 228.0, "MAX_PERKM": 511.0, "MIN_PERMI": 142.0, "MAX_PERMI": 318.0, "MIN_BBXMIN": 85.108333, "MAX_BBXMIN": 85.108333, "MIN_BBXMAX": 85.450066, "MAX_BBXMAX": 85.675, "MIN_BBYMIN": 27.541667, "MAX_BBYMIN": 27.669456, "MIN_BBYMAX": 27.85, "MAX_BBYMAX": 27.85, "MEAN_BBXC": 85.356097, "MEAN_BBYC": 27.697735, "COMPARE": 0, "GN_ASCII": "Kathmandu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1442271.0, "ELEVATION": 1317.0, "GTOPO30": 1304.0, "TIMEZONE": "Asia/Kathmandu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 378, "UN_ADM0": "Nepal", "UN_LAT": 27.71, "UN_LONG": 85.31, "POP1950": 104.0, "POP1955": 110.0, "POP1960": 119.0, "POP1965": 132.0, "POP1970": 147.0, "POP1975": 180.0, "POP1980": 225.0, "POP1985": 297.0, "POP1990": 398.0, "POP1995": 509.0, "POP2000": 644.0, "POP2005": 815.0, "POP2010": 895.0, "POP2015": 1029.0, "POP2020": 1284.0, "POP2025": 1578.0, "POP2050": 1907.0, "CITYALT": null, "clustered:unrelated": 0.3839615118791385}, "geometry": {"type": "Point", "coordinates": [85.314696, 27.718637]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Bloemfontein", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bloemfontein", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Judicial capita", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Orange Free State", "ISO_A2": "ZA", "NOTE": null, "LATITUDE": -29.119994, "LONGITUDE": 26.229913, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 463064, "POP_MIN": 456669, "POP_OTHER": 456513, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1018725.0, "MEGANAME": null, "LS_NAME": "Bloemfontein", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 456669.0, "MAX_POP20": 456669.0, "MAX_POP50": 456669.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 105.0, "MAX_AREAKM": 105.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 78.0, "MAX_PERKM": 78.0, "MIN_PERMI": 48.0, "MAX_PERMI": 48.0, "MIN_BBXMIN": 26.166667, "MAX_BBXMIN": 26.166667, "MIN_BBXMAX": 26.3, "MAX_BBXMAX": 26.3, "MIN_BBYMIN": -29.2, "MAX_BBYMIN": -29.2, "MIN_BBYMAX": -29.058333, "MAX_BBYMAX": -29.058333, "MEAN_BBXC": 26.225714, "MEAN_BBYC": -29.128155, "COMPARE": 0, "GN_ASCII": "Bloemfontein", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3.0, "GN_POP": 463064.0, "ELEVATION": null, "GTOPO30": 1398.0, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.828314783938137}, "geometry": {"type": "Point", "coordinates": [26.229912, -29.119993]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Pretoria", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Pretoria", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Administrative", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "NOTE": null, "LATITUDE": -25.706921, "LONGITUDE": 28.229429, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1338000, "POP_MIN": 1338000, "POP_OTHER": 1443084, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 964137.0, "MEGANAME": "Pretoria", "LS_NAME": "Pretoria", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1444949.0, "MAX_POP20": 1444949.0, "MAX_POP50": 1444949.0, "MAX_POP300": 1444949.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 502.0, "MAX_AREAKM": 502.0, "MIN_AREAMI": 194.0, "MAX_AREAMI": 194.0, "MIN_PERKM": 256.0, "MAX_PERKM": 256.0, "MIN_PERMI": 159.0, "MAX_PERMI": 159.0, "MIN_BBXMIN": 28.041667, "MAX_BBXMIN": 28.041667, "MIN_BBXMAX": 28.4, "MAX_BBXMAX": 28.4, "MIN_BBYMIN": -25.891667, "MAX_BBYMIN": -25.891667, "MIN_BBYMAX": -25.641667, "MAX_BBYMAX": -25.641667, "MEAN_BBXC": 28.214676, "MEAN_BBYC": -25.755716, "COMPARE": 0, "GN_ASCII": "Pretoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6.0, "GN_POP": 1619438.0, "ELEVATION": null, "GTOPO30": 1282.0, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 460, "UN_ADM0": "South Africa", "UN_LAT": -25.73, "UN_LONG": 28.21, "POP1950": 275.0, "POP1955": 340.0, "POP1960": 419.0, "POP1965": 488.0, "POP1970": 565.0, "POP1975": 624.0, "POP1980": 688.0, "POP1985": 763.0, "POP1990": 911.0, "POP1995": 951.0, "POP2000": 1084.0, "POP2005": 1273.0, "POP2010": 1338.0, "POP2015": 1409.0, "POP2020": 1482.0, "POP2025": 1544.0, "POP2050": 1604.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [28.227483, -25.704974]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Port Moresby", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Port Moresby", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Papua New Guinea", "SOV_A3": "PNG", "ADM0NAME": "Papua New Guinea", "ADM0_A3": "PNG", "ADM1NAME": "Central", "ISO_A2": "PG", "NOTE": null, "LATITUDE": -9.464708, "LONGITUDE": 147.192504, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 283733, "POP_MIN": 251136, "POP_OTHER": 251304, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2088122.0, "MEGANAME": null, "LS_NAME": "Port Moresby", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 251136.0, "MAX_POP20": 251136.0, "MAX_POP50": 251136.0, "MAX_POP300": 251136.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 89.0, "MAX_AREAKM": 89.0, "MIN_AREAMI": 35.0, "MAX_AREAMI": 35.0, "MIN_PERKM": 92.0, "MAX_PERKM": 92.0, "MIN_PERMI": 57.0, "MAX_PERMI": 57.0, "MIN_BBXMIN": 147.141667, "MAX_BBXMIN": 147.141667, "MIN_BBXMAX": 147.241667, "MAX_BBXMAX": 147.241667, "MIN_BBYMIN": -9.508333, "MAX_BBYMIN": -9.508333, "MIN_BBYMAX": -9.358333, "MAX_BBYMAX": -9.358333, "MEAN_BBXC": 147.185377, "MEAN_BBYC": -9.433491, "COMPARE": 0, "GN_ASCII": "Port Moresby", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20.0, "GN_POP": 283733.0, "ELEVATION": null, "GTOPO30": 50.0, "TIMEZONE": "Pacific/Port_Moresby", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [147.192503, -9.464707]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Honiara", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Honiara", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Solomon Islands", "SOV_A3": "SLB", "ADM0NAME": "Solomon Islands", "ADM0_A3": "SLB", "ADM1NAME": "Guadalcanal", "ISO_A2": "SB", "NOTE": null, "LATITUDE": -9.437994, "LONGITUDE": 159.949766, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 76328, "POP_MIN": 56298, "POP_OTHER": 76328, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 2108502.0, "MEGANAME": null, "LS_NAME": "Honiara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 76328.0, "MAX_POP20": 76328.0, "MAX_POP50": 76328.0, "MAX_POP300": 76328.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 18.0, "MAX_AREAKM": 18.0, "MIN_AREAMI": 7.0, "MAX_AREAMI": 7.0, "MIN_PERKM": 33.0, "MAX_PERKM": 33.0, "MIN_PERMI": 21.0, "MAX_PERMI": 21.0, "MIN_BBXMIN": 159.916667, "MAX_BBXMIN": 159.916667, "MIN_BBXMAX": 160.016667, "MAX_BBXMAX": 160.016667, "MIN_BBYMIN": -9.441667, "MAX_BBYMIN": -9.441667, "MIN_BBYMAX": -9.408333, "MAX_BBYMAX": -9.408333, "MEAN_BBXC": 159.966865, "MEAN_BBYC": -9.42996, "COMPARE": 0, "GN_ASCII": "Honiara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 56298.0, "ELEVATION": null, "GTOPO30": 12.0, "TIMEZONE": "Pacific/Guadalcanal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [159.949765, -9.437994]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Panama City", "NAMEPAR": null, "NAMEALT": "Ciudad de Panam\u00e1|Panama City|Panama", "DIFFASCII": 0, "NAMEASCII": "Panama City", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Panama", "SOV_A3": "PAN", "ADM0NAME": "Panama", "ADM0_A3": "PAN", "ADM1NAME": "Panama", "ISO_A2": "PA", "NOTE": null, "LATITUDE": 8.968017, "LONGITUDE": -79.533037, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1281000, "POP_MIN": 408168, "POP_OTHER": 939725, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 3703443.0, "MEGANAME": "Ciudad de Panam\u00e1 (Panama City)", "LS_NAME": "Panama City1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 958016.0, "MAX_POP20": 958016.0, "MAX_POP50": 989053.0, "MAX_POP300": 989053.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 141.0, "MAX_AREAKM": 157.0, "MIN_AREAMI": 54.0, "MAX_AREAMI": 61.0, "MIN_PERKM": 98.0, "MAX_PERKM": 107.0, "MIN_PERMI": 61.0, "MAX_PERMI": 66.0, "MIN_BBXMIN": -79.591667, "MAX_BBXMIN": -79.576315, "MIN_BBXMAX": -79.4, "MAX_BBXMAX": -79.4, "MIN_BBYMIN": 8.933333, "MAX_BBYMIN": 8.943752, "MIN_BBYMAX": 9.1, "MAX_BBYMAX": 9.1, "MEAN_BBXC": -79.494919, "MEAN_BBYC": 9.035936, "COMPARE": 0, "GN_ASCII": "Panama City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 408168.0, "ELEVATION": null, "GTOPO30": 2.0, "TIMEZONE": "America/Panama", "GEONAMESNO": "GeoNames match general.", "UN_FID": 408, "UN_ADM0": "Panama", "UN_LAT": 9.0, "UN_LONG": -79.51, "POP1950": 171.0, "POP1955": 220.0, "POP1960": 283.0, "POP1965": 360.0, "POP1970": 455.0, "POP1975": 528.0, "POP1980": 613.0, "POP1985": 721.0, "POP1990": 847.0, "POP1995": 953.0, "POP2000": 1072.0, "POP2005": 1216.0, "POP2010": 1281.0, "POP2015": 1379.0, "POP2020": 1527.0, "POP2025": 1653.0, "POP2050": 1759.0, "CITYALT": "Panama"}, "geometry": {"type": "Point", "coordinates": [-79.534983, 8.969963]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rabat", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Rabat", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Rabat - Sal\u00e9 - Zemmour - Zaer", "ISO_A2": "MA", "NOTE": null, "LATITUDE": 34.025299, "LONGITUDE": -6.836131, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1705000, "POP_MIN": 1655753, "POP_OTHER": 2029349, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2538475.0, "MEGANAME": "Rabat", "LS_NAME": "Rabat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2037124.0, "MAX_POP20": 2037124.0, "MAX_POP50": 2037124.0, "MAX_POP300": 2037124.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 428.0, "MAX_AREAKM": 428.0, "MIN_AREAMI": 165.0, "MAX_AREAMI": 165.0, "MIN_PERKM": 475.0, "MAX_PERKM": 475.0, "MIN_PERMI": 295.0, "MAX_PERMI": 295.0, "MIN_BBXMIN": -7.116667, "MAX_BBXMIN": -7.116667, "MIN_BBXMAX": -6.725, "MAX_BBXMAX": -6.725, "MIN_BBYMIN": 33.741667, "MAX_BBYMIN": 33.741667, "MIN_BBYMAX": 34.125, "MAX_BBYMAX": 34.125, "MEAN_BBXC": -6.87491, "MEAN_BBYC": 33.912847, "COMPARE": 0, "GN_ASCII": "Rabat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 49.0, "GN_POP": 1655753.0, "ELEVATION": null, "GTOPO30": 54.0, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 375, "UN_ADM0": "Morocco", "UN_LAT": 34.01, "UN_LONG": -6.83, "POP1950": 145.0, "POP1955": 184.0, "POP1960": 233.0, "POP1965": 339.0, "POP1970": 494.0, "POP1975": 641.0, "POP1980": 808.0, "POP1985": 986.0, "POP1990": 1174.0, "POP1995": 1379.0, "POP2000": 1507.0, "POP2005": 1647.0, "POP2010": 1705.0, "POP2015": 1793.0, "POP2020": 1938.0, "POP2025": 2083.0, "POP2050": 2222.0, "CITYALT": null, "clustered:unrelated": 0.15142896193684685}, "geometry": {"type": "Point", "coordinates": [-6.836408, 34.025307]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Chisinau", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Chisinau", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Moldova", "SOV_A3": "MDA", "ADM0NAME": "Moldova", "ADM0_A3": "MDA", "ADM1NAME": "Chisinau", "ISO_A2": "MD", "NOTE": null, "LATITUDE": 47.005024, "LONGITUDE": 28.857711, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 688134, "POP_MIN": 635994, "POP_OTHER": 664472, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 618426.0, "MEGANAME": null, "LS_NAME": "Chisinau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 688134.0, "MAX_POP20": 688134.0, "MAX_POP50": 688134.0, "MAX_POP300": 688134.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 109.0, "MAX_AREAKM": 109.0, "MIN_AREAMI": 42.0, "MAX_AREAMI": 42.0, "MIN_PERKM": 85.0, "MAX_PERKM": 85.0, "MIN_PERMI": 53.0, "MAX_PERMI": 53.0, "MIN_BBXMIN": 28.741667, "MAX_BBXMIN": 28.741667, "MIN_BBXMAX": 28.925, "MAX_BBXMAX": 28.925, "MIN_BBYMIN": 46.95, "MAX_BBYMIN": 46.95, "MIN_BBYMAX": 47.075, "MAX_BBYMAX": 47.075, "MEAN_BBXC": 28.840203, "MEAN_BBYC": 47.017185, "COMPARE": 0, "GN_ASCII": "Chisinau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 57.0, "GN_POP": 635994.0, "ELEVATION": null, "GTOPO30": 52.0, "TIMEZONE": "Europe/Chisinau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.1820751208164918}, "geometry": {"type": "Point", "coordinates": [28.857711, 47.005023]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Maputo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Maputo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Mozambique", "SOV_A3": "MOZ", "ADM0NAME": "Mozambique", "ADM0_A3": "MOZ", "ADM1NAME": "Maputo", "ISO_A2": "MZ", "NOTE": null, "LATITUDE": -25.955277, "LONGITUDE": 32.589163, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1446000, "POP_MIN": 1191613, "POP_OTHER": 1365454, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1040652.0, "MEGANAME": "Maputo", "LS_NAME": "Maputo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1369629.0, "MAX_POP20": 1823845.0, "MAX_POP50": 1822603.0, "MAX_POP300": 1823845.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 187.0, "MAX_AREAKM": 313.0, "MIN_AREAMI": 72.0, "MAX_AREAMI": 121.0, "MIN_PERKM": 160.0, "MAX_PERKM": 234.0, "MIN_PERMI": 100.0, "MAX_PERMI": 145.0, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.506986, "MIN_BBXMAX": 32.65, "MAX_BBXMAX": 32.65, "MIN_BBYMIN": -25.991667, "MAX_BBYMIN": -25.983333, "MIN_BBYMAX": -25.75, "MAX_BBYMAX": -25.75, "MEAN_BBXC": 32.543778, "MEAN_BBYC": -25.880831, "COMPARE": 0, "GN_ASCII": "Maputo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1191613.0, "ELEVATION": null, "GTOPO30": 47.0, "TIMEZONE": "Africa/Maputo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 376, "UN_ADM0": "Mozambique", "UN_LAT": -25.96, "UN_LONG": 32.57, "POP1950": 92.0, "POP1955": 129.0, "POP1960": 181.0, "POP1965": 259.0, "POP1970": 371.0, "POP1975": 456.0, "POP1980": 550.0, "POP1985": 653.0, "POP1990": 776.0, "POP1995": 921.0, "POP2000": 1096.0, "POP2005": 1334.0, "POP2010": 1446.0, "POP2015": 1621.0, "POP2020": 1921.0, "POP2025": 2235.0, "POP2050": 2560.0, "CITYALT": null, "clustered:unrelated": 0.5689907542791324}, "geometry": {"type": "Point", "coordinates": [32.587217, -25.953331]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Mogadishu", "NAMEPAR": null, "NAMEALT": "Muqdisho", "DIFFASCII": 0, "NAMEASCII": "Mogadishu", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Somalia", "SOV_A3": "SOM", "ADM0NAME": "Somalia", "ADM0_A3": "SOM", "ADM1NAME": "Banaadir", "ISO_A2": "SO", "NOTE": null, "LATITUDE": 2.066681, "LONGITUDE": 45.366678, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1100000, "POP_MIN": 875388, "POP_OTHER": 849392, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 53654.0, "MEGANAME": "Muqdisho", "LS_NAME": "Mogadishu", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 875388.0, "MAX_POP20": 875388.0, "MAX_POP50": 875388.0, "MAX_POP300": 875388.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 99.0, "MAX_AREAKM": 99.0, "MIN_AREAMI": 38.0, "MAX_AREAMI": 38.0, "MIN_PERKM": 68.0, "MAX_PERKM": 68.0, "MIN_PERMI": 43.0, "MAX_PERMI": 43.0, "MIN_BBXMIN": 45.25, "MAX_BBXMIN": 45.25, "MIN_BBXMAX": 45.416667, "MAX_BBXMAX": 45.416667, "MIN_BBYMIN": 2.0, "MAX_BBYMIN": 2.0, "MIN_BBYMAX": 2.116667, "MAX_BBYMAX": 2.116667, "MEAN_BBXC": 45.331178, "MEAN_BBYC": 2.054239, "COMPARE": 0, "GN_ASCII": "Mogadishu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 2587183.0, "ELEVATION": null, "GTOPO30": 39.0, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 454, "UN_ADM0": "Somalia", "UN_LAT": 2.04, "UN_LONG": 45.34, "POP1950": 69.0, "POP1955": 73.0, "POP1960": 94.0, "POP1965": 146.0, "POP1970": 272.0, "POP1975": 445.0, "POP1980": 551.0, "POP1985": 747.0, "POP1990": 1035.0, "POP1995": 1147.0, "POP2000": 1201.0, "POP2005": 1415.0, "POP2010": 1100.0, "POP2015": 1500.0, "POP2020": 1794.0, "POP2025": 2142.0, "POP2050": 2529.0, "CITYALT": "Mogadishu", "clustered:unrelated": 0.06428336674211432}, "geometry": {"type": "Point", "coordinates": [45.364731, 2.068627]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Muscat", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Muscat", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Oman", "SOV_A3": "OMN", "ADM0NAME": "Oman", "ADM0_A3": "OMN", "ADM1NAME": "Muscat", "ISO_A2": "OM", "NOTE": null, "LATITUDE": 23.613325, "LONGITUDE": 58.593312, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 734697, "POP_MIN": 586861, "POP_OTHER": 586861, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 287286.0, "MEGANAME": null, "LS_NAME": "Muscat", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 586861.0, "MAX_POP20": 586861.0, "MAX_POP50": 586861.0, "MAX_POP300": 586861.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 104.0, "MAX_AREAKM": 104.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 121.0, "MAX_PERKM": 121.0, "MIN_PERMI": 75.0, "MAX_PERMI": 75.0, "MIN_BBXMIN": 58.333333, "MAX_BBXMIN": 58.333333, "MIN_BBXMAX": 58.6, "MAX_BBXMAX": 58.6, "MIN_BBYMIN": 23.558333, "MAX_BBYMIN": 23.558333, "MIN_BBYMAX": 23.641667, "MAX_BBYMAX": 23.641667, "MEAN_BBXC": 58.474684, "MEAN_BBYC": 23.599306, "COMPARE": 0, "GN_ASCII": "Muscat", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6.0, "GN_POP": 797000.0, "ELEVATION": null, "GTOPO30": 69.0, "TIMEZONE": "Asia/Muscat", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [58.593312, 23.613324]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Colombo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Colombo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto, admin", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Sri Lanka", "SOV_A3": "LKA", "ADM0NAME": "Sri Lanka", "ADM0_A3": "LKA", "ADM1NAME": "Colombo", "ISO_A2": "LK", "NOTE": null, "LATITUDE": 6.931966, "LONGITUDE": 79.857751, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 217000, "POP_MIN": 217000, "POP_OTHER": 2490974, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3465927.0, "MEGANAME": null, "LS_NAME": "Colombo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2664418.0, "MAX_POP20": 2742979.0, "MAX_POP50": 2742979.0, "MAX_POP300": 9759831.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1054.0, "MAX_AREAKM": 6238.0, "MIN_AREAMI": 407.0, "MAX_AREAMI": 2408.0, "MIN_PERKM": 847.0, "MAX_PERKM": 5343.0, "MIN_PERMI": 526.0, "MAX_PERMI": 3320.0, "MIN_BBXMIN": 79.8, "MAX_BBXMIN": 79.8, "MIN_BBXMAX": 80.097553, "MAX_BBXMAX": 80.833333, "MIN_BBYMIN": 5.916667, "MAX_BBYMIN": 6.854447, "MIN_BBYMAX": 7.633333, "MAX_BBYMAX": 7.8, "MEAN_BBXC": 79.996849, "MEAN_BBYC": 7.222799, "COMPARE": 0, "GN_ASCII": "Colombo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 18.0, "GN_POP": 217000.0, "ELEVATION": null, "GTOPO30": 927.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.8767430596115461}, "geometry": {"type": "Point", "coordinates": [79.85775, 6.931965]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ulaanbaatar", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ulaanbaatar", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Mongolia", "SOV_A3": "MNG", "ADM0NAME": "Mongolia", "ADM0_A3": "MNG", "ADM1NAME": "Ulaanbaatar", "ISO_A2": "MN", "NOTE": null, "LATITUDE": 47.916673, "LONGITUDE": 106.916616, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 885000, "POP_MIN": 769612, "POP_OTHER": 765359, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2028462.0, "MEGANAME": "Ulaanbaatar", "LS_NAME": "Ulaanbaatar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 769612.0, "MAX_POP20": 769612.0, "MAX_POP50": 769612.0, "MAX_POP300": 769612.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 143.0, "MAX_AREAKM": 143.0, "MIN_AREAMI": 55.0, "MAX_AREAMI": 55.0, "MIN_PERKM": 144.0, "MAX_PERKM": 144.0, "MIN_PERMI": 89.0, "MAX_PERMI": 89.0, "MIN_BBXMIN": 106.725, "MAX_BBXMIN": 106.725, "MIN_BBXMAX": 107.041667, "MAX_BBXMAX": 107.041667, "MIN_BBYMIN": 47.883333, "MAX_BBYMIN": 47.883333, "MIN_BBYMAX": 48.016667, "MAX_BBYMAX": 48.016667, "MEAN_BBXC": 106.883013, "MEAN_BBYC": 47.932237, "COMPARE": 0, "GN_ASCII": "Ulaanbaatar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20.0, "GN_POP": 844818.0, "ELEVATION": null, "GTOPO30": 1299.0, "TIMEZONE": "Asia/Ulaanbaatar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 367, "UN_ADM0": "Mongolia", "UN_LAT": 47.92, "UN_LONG": 106.91, "POP1950": 70.0, "POP1955": 112.0, "POP1960": 179.0, "POP1965": 248.0, "POP1970": 298.0, "POP1975": 356.0, "POP1980": 423.0, "POP1985": 492.0, "POP1990": 572.0, "POP1995": 661.0, "POP2000": 763.0, "POP2005": 856.0, "POP2010": 885.0, "POP2015": 919.0, "POP2020": 978.0, "POP2025": 1044.0, "POP2050": 1112.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [106.914669, 47.918619]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Wellington", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Wellington", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Manawatu-Wanganui", "ISO_A2": "NZ", "NOTE": null, "LATITUDE": -41.299974, "LONGITUDE": 174.783274, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 393400, "POP_MIN": 199200, "POP_OTHER": 140594, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2144168.0, "MEGANAME": null, "LS_NAME": "Wellington", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144164.0, "MAX_POP20": 144164.0, "MAX_POP50": 144164.0, "MAX_POP300": 144164.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 77.0, "MAX_AREAKM": 77.0, "MIN_AREAMI": 30.0, "MAX_AREAMI": 30.0, "MIN_PERKM": 79.0, "MAX_PERKM": 79.0, "MIN_PERMI": 49.0, "MAX_PERMI": 49.0, "MIN_BBXMIN": 174.725, "MAX_BBXMIN": 174.725, "MIN_BBXMAX": 174.841667, "MAX_BBXMAX": 174.841667, "MIN_BBYMIN": -41.35, "MAX_BBYMIN": -41.35, "MIN_BBYMAX": -41.2, "MAX_BBYMAX": -41.2, "MEAN_BBXC": 174.78792, "MEAN_BBYC": -41.285539, "COMPARE": 0, "GN_ASCII": "Wellington", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2.0, "GN_POP": 5428.0, "ELEVATION": null, "GTOPO30": 304.0, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [174.783274, -41.299973]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Windhoek", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Windhoek", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Namibia", "SOV_A3": "NAM", "ADM0NAME": "Namibia", "ADM0_A3": "NAM", "ADM1NAME": "Khomas", "ISO_A2": "NA", "NOTE": null, "LATITUDE": -22.570006, "LONGITUDE": 17.083546, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 268132, "POP_MIN": 262796, "POP_OTHER": 262796, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3352136.0, "MEGANAME": null, "LS_NAME": "Windhoek", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 262796.0, "MAX_POP20": 262796.0, "MAX_POP50": 262796.0, "MAX_POP300": 262796.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 89.0, "MAX_AREAKM": 89.0, "MIN_AREAMI": 35.0, "MAX_AREAMI": 35.0, "MIN_PERKM": 60.0, "MAX_PERKM": 60.0, "MIN_PERMI": 37.0, "MAX_PERMI": 37.0, "MIN_BBXMIN": 17.008333, "MAX_BBXMIN": 17.008333, "MIN_BBXMAX": 17.116667, "MAX_BBXMAX": 17.116667, "MIN_BBYMIN": -22.625, "MAX_BBYMIN": -22.625, "MIN_BBYMAX": -22.491667, "MAX_BBYMAX": -22.491667, "MEAN_BBXC": 17.064196, "MEAN_BBYC": -22.551143, "COMPARE": 0, "GN_ASCII": "Windhoek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21.0, "GN_POP": 268132.0, "ELEVATION": null, "GTOPO30": 1722.0, "TIMEZONE": "Africa/Windhoek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5515023043452999}, "geometry": {"type": "Point", "coordinates": [17.083546, -22.570006]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Abuja", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Abuja", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official and ad", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Federal Capital Territory", "ISO_A2": "NG", "NOTE": null, "LATITUDE": 9.083333, "LONGITUDE": 7.533328, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1576000, "POP_MIN": 162135, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2322794.0, "MEGANAME": "Abuja", "LS_NAME": "Abuja", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 655258.0, "MAX_POP20": 655258.0, "MAX_POP50": 655258.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 174.0, "MAX_AREAKM": 174.0, "MIN_AREAMI": 67.0, "MAX_AREAMI": 67.0, "MIN_PERKM": 162.0, "MAX_PERKM": 162.0, "MIN_PERMI": 101.0, "MAX_PERMI": 101.0, "MIN_BBXMIN": 7.375, "MAX_BBXMIN": 7.375, "MIN_BBXMAX": 7.591667, "MAX_BBXMAX": 7.591667, "MIN_BBYMIN": 8.983333, "MAX_BBYMIN": 8.983333, "MIN_BBYMAX": 9.166667, "MAX_BBYMAX": 9.166667, "MEAN_BBXC": 7.484385, "MEAN_BBYC": 9.063188, "COMPARE": 0, "GN_ASCII": "Abuja", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 162135.0, "ELEVATION": null, "GTOPO30": 339.0, "TIMEZONE": "Africa/Lagos", "GEONAMESNO": "GeoNames match general.", "UN_FID": 386, "UN_ADM0": "Nigeria", "UN_LAT": 9.05, "UN_LONG": 7.25, "POP1950": 18.0, "POP1955": 21.0, "POP1960": 23.0, "POP1965": 29.0, "POP1970": 48.0, "POP1975": 77.0, "POP1980": 125.0, "POP1985": 204.0, "POP1990": 330.0, "POP1995": 526.0, "POP2000": 832.0, "POP2005": 1315.0, "POP2010": 1576.0, "POP2015": 1994.0, "POP2020": 2558.0, "POP2025": 2971.0, "POP2050": 3358.0, "CITYALT": null, "clustered:unrelated": 0.8874586090818559}, "geometry": {"type": "Point", "coordinates": [7.531382, 9.085279]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bissau", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bissau", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Guinea Bissau", "SOV_A3": "GNB", "ADM0NAME": "Guinea Bissau", "ADM0_A3": "GNB", "ADM1NAME": "Bissau", "ISO_A2": "GW", "NOTE": null, "LATITUDE": 11.865024, "LONGITUDE": -15.598361, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 403339, "POP_MIN": 388028, "POP_OTHER": 403339, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2374775.0, "MEGANAME": null, "LS_NAME": "Bissau", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 403339.0, "MAX_POP20": 403339.0, "MAX_POP50": 403339.0, "MAX_POP300": 403339.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 70.0, "MAX_AREAKM": 70.0, "MIN_AREAMI": 27.0, "MAX_AREAMI": 27.0, "MIN_PERKM": 66.0, "MAX_PERKM": 66.0, "MIN_PERMI": 41.0, "MAX_PERMI": 41.0, "MIN_BBXMIN": -15.658333, "MAX_BBXMIN": -15.658333, "MIN_BBXMAX": -15.558333, "MAX_BBXMAX": -15.558333, "MIN_BBYMIN": 11.808333, "MAX_BBYMIN": 11.808333, "MIN_BBYMAX": 11.933333, "MAX_BBYMAX": 11.933333, "MEAN_BBXC": -15.612698, "MEAN_BBYC": 11.871032, "COMPARE": 0, "GN_ASCII": "Bissau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 388028.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Africa/Bissau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.3123377764548536}, "geometry": {"type": "Point", "coordinates": [-15.59836, 11.865023]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amman", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Amman", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Jordan", "SOV_A3": "JOR", "ADM0NAME": "Jordan", "ADM0_A3": "JOR", "ADM1NAME": "Amman", "ISO_A2": "JO", "NOTE": null, "LATITUDE": 31.950025, "LONGITUDE": 35.9333, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1060000, "POP_MIN": 1060000, "POP_OTHER": 2633729, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 250441.0, "MEGANAME": "Amman", "LS_NAME": "Amman", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2725138.0, "MAX_POP20": 3684787.0, "MAX_POP50": 3684787.0, "MAX_POP300": 3684787.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 403.0, "MAX_AREAKM": 545.0, "MIN_AREAMI": 156.0, "MAX_AREAMI": 210.0, "MIN_PERKM": 258.0, "MAX_PERKM": 361.0, "MIN_PERMI": 160.0, "MAX_PERMI": 224.0, "MIN_BBXMIN": 35.775, "MAX_BBXMIN": 35.775, "MIN_BBXMAX": 36.041667, "MAX_BBXMAX": 36.158333, "MIN_BBYMIN": 31.783333, "MAX_BBYMIN": 31.783333, "MIN_BBYMAX": 32.083333, "MAX_BBYMAX": 32.166667, "MEAN_BBXC": 35.928711, "MEAN_BBYC": 31.948606, "COMPARE": 0, "GN_ASCII": "Amman", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1275857.0, "ELEVATION": null, "GTOPO30": 765.0, "TIMEZONE": "Asia/Amman", "GEONAMESNO": "GeoNames match general.", "UN_FID": 322, "UN_ADM0": "Jordan", "UN_LAT": 31.94, "UN_LONG": 35.93, "POP1950": 90.0, "POP1955": 140.0, "POP1960": 218.0, "POP1965": 299.0, "POP1970": 388.0, "POP1975": 500.0, "POP1980": 636.0, "POP1985": 736.0, "POP1990": 851.0, "POP1995": 973.0, "POP2000": 1007.0, "POP2005": 1042.0, "POP2010": 1060.0, "POP2015": 1106.0, "POP2020": 1185.0, "POP2025": 1268.0, "POP2050": 1359.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [35.931354, 31.951971]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vilnius", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vilnius", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Lithuania", "SOV_A3": "LTU", "ADM0NAME": "Lithuania", "ADM0_A3": "LTU", "ADM1NAME": "Vilniaus", "ISO_A2": "LT", "NOTE": null, "LATITUDE": 54.683366, "LONGITUDE": 25.316635, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 542366, "POP_MIN": 507029, "POP_OTHER": 494356, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 593116.0, "MEGANAME": null, "LS_NAME": "Vilnius", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 507029.0, "MAX_POP20": 507029.0, "MAX_POP50": 507029.0, "MAX_POP300": 507029.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 126.0, "MAX_AREAKM": 126.0, "MIN_AREAMI": 49.0, "MAX_AREAMI": 49.0, "MIN_PERKM": 162.0, "MAX_PERKM": 162.0, "MIN_PERMI": 101.0, "MAX_PERMI": 101.0, "MIN_BBXMIN": 25.166667, "MAX_BBXMIN": 25.166667, "MIN_BBXMAX": 25.391667, "MAX_BBXMAX": 25.391667, "MIN_BBYMIN": 54.575, "MAX_BBYMIN": 54.575, "MIN_BBYMAX": 54.775, "MAX_BBYMAX": 54.775, "MEAN_BBXC": 25.259623, "MEAN_BBYC": 54.692063, "COMPARE": 0, "GN_ASCII": "Vilnius", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 65.0, "GN_POP": 542366.0, "ELEVATION": null, "GTOPO30": 125.0, "TIMEZONE": "Europe/Vilnius", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [25.316635, 54.683366]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Riga", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Riga", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Latvia", "SOV_A3": "LVA", "ADM0NAME": "Latvia", "ADM0_A3": "LVA", "ADM1NAME": "Riga", "ISO_A2": "LV", "NOTE": null, "LATITUDE": 56.950024, "LONGITUDE": 24.099965, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 742572, "POP_MIN": 705033, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 456172.0, "MEGANAME": null, "LS_NAME": "Riga", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 705033.0, "MAX_POP20": 705033.0, "MAX_POP50": 705033.0, "MAX_POP300": 705033.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 171.0, "MAX_AREAKM": 171.0, "MIN_AREAMI": 66.0, "MAX_AREAMI": 66.0, "MIN_PERKM": 173.0, "MAX_PERKM": 173.0, "MIN_PERMI": 108.0, "MAX_PERMI": 108.0, "MIN_BBXMIN": 23.975, "MAX_BBXMIN": 23.975, "MIN_BBXMAX": 24.266667, "MAX_BBXMAX": 24.266667, "MIN_BBYMIN": 56.875, "MAX_BBYMIN": 56.875, "MIN_BBYMAX": 57.083333, "MAX_BBYMAX": 57.083333, "MEAN_BBXC": 24.127656, "MEAN_BBYC": 56.953571, "COMPARE": 0, "GN_ASCII": "Riga", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25.0, "GN_POP": 742572.0, "ELEVATION": null, "GTOPO30": 9.0, "TIMEZONE": "Europe/Riga", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [24.099965, 56.950023]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bishkek", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bishkek", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Kyrgyzstan", "SOV_A3": "KGZ", "ADM0NAME": "Kyrgyzstan", "ADM0_A3": "KGZ", "ADM1NAME": "Bishkek", "ISO_A2": "KG", "NOTE": null, "LATITUDE": 42.873079, "LONGITUDE": 74.585204, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 837000, "POP_MIN": 804212, "POP_OTHER": 781714, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1528675.0, "MEGANAME": "Bishkek", "LS_NAME": "Bishkek", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 804212.0, "MAX_POP20": 804212.0, "MAX_POP50": 804212.0, "MAX_POP300": 804212.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 245.0, "MAX_AREAKM": 245.0, "MIN_AREAMI": 94.0, "MAX_AREAMI": 94.0, "MIN_PERKM": 190.0, "MAX_PERKM": 190.0, "MIN_PERMI": 118.0, "MAX_PERMI": 118.0, "MIN_BBXMIN": 74.425, "MAX_BBXMIN": 74.425, "MIN_BBXMAX": 74.8, "MAX_BBXMAX": 74.8, "MIN_BBYMIN": 42.766667, "MAX_BBYMIN": 42.766667, "MIN_BBYMAX": 43.0, "MAX_BBYMAX": 43.0, "MEAN_BBXC": 74.603823, "MEAN_BBYC": 42.872917, "COMPARE": 0, "GN_ASCII": "Bishkek", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 900000.0, "ELEVATION": null, "GTOPO30": 772.0, "TIMEZONE": "Asia/Bishkek", "GEONAMESNO": "GeoNames match general.", "UN_FID": 340, "UN_ADM0": "Kyrgyzstan", "UN_LAT": 42.87, "UN_LONG": 74.77, "POP1950": 150.0, "POP1955": 186.0, "POP1960": 236.0, "POP1965": 322.0, "POP1970": 433.0, "POP1975": 485.0, "POP1980": 538.0, "POP1985": 583.0, "POP1990": 635.0, "POP1995": 703.0, "POP2000": 770.0, "POP2005": 817.0, "POP2010": 837.0, "POP2015": 869.0, "POP2020": 934.0, "POP2025": 1011.0, "POP2050": 1096.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [74.583258, 42.875025]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Maseru", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Maseru", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Lesotho", "SOV_A3": "LSO", "ADM0NAME": "Lesotho", "ADM0_A3": "LSO", "ADM1NAME": "Maseru", "ISO_A2": "LS", "NOTE": null, "LATITUDE": -29.316674, "LONGITUDE": 27.483273, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 361324, "POP_MIN": 118355, "POP_OTHER": 356225, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 932505.0, "MEGANAME": null, "LS_NAME": "Maseru", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 361324.0, "MAX_POP20": 361324.0, "MAX_POP50": 361324.0, "MAX_POP300": 361324.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 141.0, "MAX_AREAKM": 141.0, "MIN_AREAMI": 54.0, "MAX_AREAMI": 54.0, "MIN_PERKM": 177.0, "MAX_PERKM": 177.0, "MIN_PERMI": 110.0, "MAX_PERMI": 110.0, "MIN_BBXMIN": 27.458333, "MAX_BBXMIN": 27.458333, "MIN_BBXMAX": 27.616667, "MAX_BBXMAX": 27.616667, "MIN_BBYMIN": -29.525, "MAX_BBYMIN": -29.525, "MIN_BBYMAX": -29.241667, "MAX_BBYMAX": -29.241667, "MEAN_BBXC": 27.536702, "MEAN_BBYC": -29.350222, "COMPARE": 0, "GN_ASCII": "Maseru", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14.0, "GN_POP": 118355.0, "ELEVATION": null, "GTOPO30": 1482.0, "TIMEZONE": "Africa/Maseru", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [27.483273, -29.316674]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Antananarivo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Antananarivo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Madagascar", "SOV_A3": "MDG", "ADM0NAME": "Madagascar", "ADM0_A3": "MDG", "ADM1NAME": "Antananarivo", "ISO_A2": "MG", "NOTE": null, "LATITUDE": -18.916637, "LONGITUDE": 47.516624, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1697000, "POP_MIN": 1391433, "POP_OTHER": 1844658, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1070940.0, "MEGANAME": "Antananarivo", "LS_NAME": "Antananarivo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1727538.0, "MAX_POP20": 1727538.0, "MAX_POP50": 1727538.0, "MAX_POP300": 1727538.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 700.0, "MAX_AREAKM": 700.0, "MIN_AREAMI": 270.0, "MAX_AREAMI": 270.0, "MIN_PERKM": 699.0, "MAX_PERKM": 699.0, "MIN_PERMI": 434.0, "MAX_PERMI": 434.0, "MIN_BBXMIN": 47.233333, "MAX_BBXMIN": 47.233333, "MIN_BBXMAX": 47.625, "MAX_BBXMAX": 47.625, "MIN_BBYMIN": -19.166667, "MAX_BBYMIN": -19.166667, "MIN_BBYMAX": -18.625, "MAX_BBYMAX": -18.625, "MEAN_BBXC": 47.476707, "MEAN_BBYC": -18.875473, "COMPARE": 0, "GN_ASCII": "Antananarivo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 1391433.0, "ELEVATION": null, "GTOPO30": 1289.0, "TIMEZONE": "Indian/Antananarivo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 345, "UN_ADM0": "Madagascar", "UN_LAT": -18.9, "UN_LONG": 47.52, "POP1950": 177.0, "POP1955": 189.0, "POP1960": 252.0, "POP1965": 298.0, "POP1970": 363.0, "POP1975": 454.0, "POP1980": 580.0, "POP1985": 742.0, "POP1990": 948.0, "POP1995": 1169.0, "POP2000": 1361.0, "POP2005": 1590.0, "POP2010": 1697.0, "POP2015": 1877.0, "POP2020": 2229.0, "POP2025": 2642.0, "POP2050": 3118.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [47.514678, -18.914691]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Quito", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Quito", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ecuador", "SOV_A3": "ECU", "ADM0NAME": "Ecuador", "ADM0_A3": "ECU", "ADM1NAME": "Pichincha", "ISO_A2": "EC", "NOTE": null, "LATITUDE": -0.214988, "LONGITUDE": -78.500051, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1701000, "POP_MIN": 1399814, "POP_OTHER": 1435528, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3652462.0, "MEGANAME": "Quito", "LS_NAME": "Quito", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1472051.0, "MAX_POP20": 1892286.0, "MAX_POP50": 1892286.0, "MAX_POP300": 1892286.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 334.0, "MAX_AREAKM": 496.0, "MIN_AREAMI": 129.0, "MAX_AREAMI": 191.0, "MIN_PERKM": 233.0, "MAX_PERKM": 359.0, "MIN_PERMI": 145.0, "MAX_PERMI": 223.0, "MIN_BBXMIN": -78.591667, "MAX_BBXMIN": -78.591667, "MIN_BBXMAX": -78.291667, "MAX_BBXMAX": -78.291667, "MIN_BBYMIN": -0.391667, "MAX_BBYMIN": -0.30257, "MIN_BBYMAX": 0.025, "MAX_BBYMAX": 0.025, "MEAN_BBXC": -78.460061, "MEAN_BBYC": -0.198438, "COMPARE": 0, "GN_ASCII": "Quito", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18.0, "GN_POP": 1399814.0, "ELEVATION": null, "GTOPO30": 2764.0, "TIMEZONE": "America/Guayaquil", "GEONAMESNO": "GeoNames match general.", "UN_FID": 178, "UN_ADM0": "Ecuador", "UN_LAT": -0.22, "UN_LONG": -78.52, "POP1950": 206.0, "POP1955": 257.0, "POP1960": 319.0, "POP1965": 399.0, "POP1970": 501.0, "POP1975": 628.0, "POP1980": 780.0, "POP1985": 936.0, "POP1990": 1088.0, "POP1995": 1217.0, "POP2000": 1357.0, "POP2005": 1593.0, "POP2010": 1701.0, "POP2015": 1846.0, "POP2020": 2035.0, "POP2025": 2189.0, "POP2050": 2316.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-78.501996, -0.213042]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Jose", "NAMEPAR": null, "NAMEALT": "San Jos\u00e9", "DIFFASCII": 0, "NAMEASCII": "San Jose", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Costa Rica", "SOV_A3": "CRI", "ADM0NAME": "Costa Rica", "ADM0_A3": "CRI", "ADM1NAME": "San Jos\u00e9", "ISO_A2": "CR", "NOTE": null, "LATITUDE": 9.935012, "LONGITUDE": -84.084051, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1284000, "POP_MIN": 1724, "POP_OTHER": 1434681, "RANK_MAX": 12, "RANK_MIN": 3, "GEONAMEID": 3669623.0, "MEGANAME": "San Jos\u00e9", "LS_NAME": "San Jose1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1450902.0, "MAX_POP20": 1826034.0, "MAX_POP50": 1826034.0, "MAX_POP300": 1826034.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 264.0, "MAX_AREAKM": 431.0, "MIN_AREAMI": 102.0, "MAX_AREAMI": 166.0, "MIN_PERKM": 136.0, "MAX_PERKM": 270.0, "MIN_PERMI": 84.0, "MAX_PERMI": 168.0, "MIN_BBXMIN": -84.366667, "MAX_BBXMIN": -84.166667, "MIN_BBXMAX": -83.983333, "MAX_BBXMAX": -83.975, "MIN_BBYMIN": 9.841667, "MAX_BBYMIN": 9.841667, "MIN_BBYMAX": 10.041667, "MAX_BBYMAX": 10.05, "MEAN_BBXC": -84.111698, "MEAN_BBYC": 9.959268, "COMPARE": 0, "GN_ASCII": "San Jose", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 37.0, "GN_POP": 1724.0, "ELEVATION": null, "GTOPO30": 1468.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 171, "UN_ADM0": "Costa Rica", "UN_LAT": 9.93, "UN_LONG": -84.07, "POP1950": 148.0, "POP1955": 184.0, "POP1960": 230.0, "POP1965": 287.0, "POP1970": 359.0, "POP1975": 440.0, "POP1980": 526.0, "POP1985": 627.0, "POP1990": 737.0, "POP1995": 867.0, "POP2000": 1032.0, "POP2005": 1217.0, "POP2010": 1284.0, "POP2015": 1374.0, "POP2020": 1506.0, "POP2025": 1627.0, "POP2050": 1737.0, "CITYALT": "San Jose"}, "geometry": {"type": "Point", "coordinates": [-84.085997, 9.936958]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "San Salvador", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "San Salvador", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "El Salvador", "SOV_A3": "SLV", "ADM0NAME": "El Salvador", "ADM0_A3": "SLV", "ADM1NAME": "San Salvador", "ISO_A2": "SV", "NOTE": null, "LATITUDE": 13.710002, "LONGITUDE": -89.203041, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1433000, "POP_MIN": 2807, "POP_OTHER": 2139587, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 1690681.0, "MEGANAME": "San Salvador", "LS_NAME": "San Salvador", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2150614.0, "MAX_POP20": 2150614.0, "MAX_POP50": 2150614.0, "MAX_POP300": 2150614.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 379.0, "MAX_AREAKM": 379.0, "MIN_AREAMI": 146.0, "MAX_AREAMI": 146.0, "MIN_PERKM": 347.0, "MAX_PERKM": 347.0, "MIN_PERMI": 215.0, "MAX_PERMI": 215.0, "MIN_BBXMIN": -89.316667, "MAX_BBXMIN": -89.316667, "MIN_BBXMAX": -88.966667, "MAX_BBXMAX": -88.966667, "MIN_BBYMIN": 13.591667, "MAX_BBYMIN": 13.591667, "MIN_BBYMAX": 13.9, "MAX_BBYMAX": 13.9, "MEAN_BBXC": -89.176042, "MEAN_BBYC": 13.738798, "COMPARE": 0, "GN_ASCII": "San Salvador", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 30.0, "GN_POP": 2807.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 179, "UN_ADM0": "El Salvador", "UN_LAT": 13.7, "UN_LONG": -89.2, "POP1950": 194.0, "POP1955": 246.0, "POP1960": 311.0, "POP1965": 394.0, "POP1970": 500.0, "POP1975": 596.0, "POP1980": 701.0, "POP1985": 825.0, "POP1990": 970.0, "POP1995": 1107.0, "POP2000": 1233.0, "POP2005": 1374.0, "POP2010": 1433.0, "POP2015": 1520.0, "POP2020": 1649.0, "POP2025": 1776.0, "POP2050": 1902.0, "CITYALT": null, "clustered:unrelated": 0.03946175694603782}, "geometry": {"type": "Point", "coordinates": [-89.204987, 13.711947]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kingston", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kingston", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Jamaica", "SOV_A3": "JAM", "ADM0NAME": "Jamaica", "ADM0_A3": "JAM", "ADM1NAME": "Kingston", "ISO_A2": "JM", "NOTE": null, "LATITUDE": 17.977077, "LONGITUDE": -76.767434, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 937700, "POP_MIN": 664973, "POP_OTHER": 18171, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3489854.0, "MEGANAME": null, "LS_NAME": "Kingston1", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 664973.0, "MAX_POP20": 664973.0, "MAX_POP50": 664973.0, "MAX_POP300": 664973.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 120.0, "MAX_AREAKM": 120.0, "MIN_AREAMI": 46.0, "MAX_AREAMI": 46.0, "MIN_PERKM": 69.0, "MAX_PERKM": 69.0, "MIN_PERMI": 43.0, "MAX_PERMI": 43.0, "MIN_BBXMIN": -76.866667, "MAX_BBXMIN": -76.866667, "MIN_BBXMAX": -76.733333, "MAX_BBXMAX": -76.733333, "MIN_BBYMIN": 17.958333, "MAX_BBYMIN": 17.958333, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": -76.798044, "MEAN_BBYC": 18.018509, "COMPARE": 0, "GN_ASCII": "Kingston", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 937700.0, "ELEVATION": null, "GTOPO30": 54.0, "TIMEZONE": "America/Jamaica", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5585395725842648}, "geometry": {"type": "Point", "coordinates": [-76.767433, 17.977076]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Ndjamena", "NAMEPAR": null, "NAMEALT": "N'Djam\u00e9na", "DIFFASCII": 0, "NAMEASCII": "Ndjamena", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Chad", "SOV_A3": "TCD", "ADM0NAME": "Chad", "ADM0_A3": "TCD", "ADM1NAME": "Hadjer-Lamis", "ISO_A2": "TD", "NOTE": null, "LATITUDE": 12.113097, "LONGITUDE": 15.049148, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 989000, "POP_MIN": 681387, "POP_OTHER": 686347, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2427123.0, "MEGANAME": "N'Djam\u00e9na", "LS_NAME": "Ndjamena", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 681387.0, "MAX_POP20": 681387.0, "MAX_POP50": 681387.0, "MAX_POP300": 681387.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 79.0, "MAX_AREAKM": 79.0, "MIN_AREAMI": 30.0, "MAX_AREAMI": 30.0, "MIN_PERKM": 66.0, "MAX_PERKM": 66.0, "MIN_PERMI": 41.0, "MAX_PERMI": 41.0, "MIN_BBXMIN": 15.025, "MAX_BBXMIN": 15.025, "MIN_BBXMAX": 15.133333, "MAX_BBXMAX": 15.133333, "MIN_BBYMIN": 12.066667, "MAX_BBYMIN": 12.066667, "MIN_BBYMAX": 12.183333, "MAX_BBYMAX": 12.183333, "MEAN_BBXC": 15.079167, "MEAN_BBYC": 12.120479, "COMPARE": 0, "GN_ASCII": "N'Djamena", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 721081.0, "ELEVATION": null, "GTOPO30": 290.0, "TIMEZONE": "Africa/Ndjamena", "GEONAMESNO": "GeoNames match general.", "UN_FID": 16, "UN_ADM0": "Chad", "UN_LAT": 12.1, "UN_LONG": 15.24, "POP1950": 22.0, "POP1955": 40.0, "POP1960": 71.0, "POP1965": 109.0, "POP1970": 155.0, "POP1975": 231.0, "POP1980": 324.0, "POP1985": 393.0, "POP1990": 477.0, "POP1995": 579.0, "POP2000": 711.0, "POP2005": 902.0, "POP2010": 989.0, "POP2015": 1127.0, "POP2020": 1405.0, "POP2025": 1753.0, "POP2050": 2172.0, "CITYALT": "Ndjamena", "clustered:unrelated": 0.8133859444247767}, "geometry": {"type": "Point", "coordinates": [15.047202, 12.115042]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Malabo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Malabo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Equatorial Guinea", "SOV_A3": "GNQ", "ADM0NAME": "Equatorial Guinea", "ADM0_A3": "GNQ", "ADM1NAME": "Bioko Norte", "ISO_A2": "GQ", "NOTE": null, "LATITUDE": 3.750015, "LONGITUDE": 8.783278, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 155963, "POP_MIN": 155963, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 2309527.0, "MEGANAME": null, "LS_NAME": "Malabo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 314.0, "MAX_POP20": 314.0, "MAX_POP50": 314.0, "MAX_POP300": 314.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1.0, "MAX_AREAKM": 1.0, "MIN_AREAMI": null, "MAX_AREAMI": null, "MIN_PERKM": 4.0, "MAX_PERKM": 4.0, "MIN_PERMI": 2.0, "MAX_PERMI": 2.0, "MIN_BBXMIN": 8.658333, "MAX_BBXMIN": 8.658333, "MIN_BBXMAX": 8.666667, "MAX_BBXMAX": 8.666667, "MIN_BBYMIN": 3.35, "MAX_BBYMIN": 3.35, "MIN_BBYMAX": 3.358333, "MAX_BBYMAX": 3.358333, "MEAN_BBXC": 8.6625, "MEAN_BBYC": 3.354167, "COMPARE": 0, "GN_ASCII": "Malabo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 155963.0, "ELEVATION": null, "GTOPO30": 111.0, "TIMEZONE": "Africa/Malabo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9392969426264304}, "geometry": {"type": "Point", "coordinates": [8.783277, 3.750015]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Asmara", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Asmara", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Eritrea", "SOV_A3": "ERI", "ADM0NAME": "Eritrea", "ADM0_A3": "ERI", "ADM1NAME": "Anseba", "ISO_A2": "ER", "NOTE": null, "LATITUDE": 15.333339, "LONGITUDE": 38.933324, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 620802, "POP_MIN": 563930, "POP_OTHER": 587094, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 343300.0, "MEGANAME": null, "LS_NAME": "Asmara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 620802.0, "MAX_POP20": 620802.0, "MAX_POP50": 620802.0, "MAX_POP300": 620802.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 90.0, "MAX_AREAKM": 90.0, "MIN_AREAMI": 35.0, "MAX_AREAMI": 35.0, "MIN_PERKM": 93.0, "MAX_PERKM": 93.0, "MIN_PERMI": 58.0, "MAX_PERMI": 58.0, "MIN_BBXMIN": 38.858333, "MAX_BBXMIN": 38.858333, "MIN_BBXMAX": 38.975, "MAX_BBXMAX": 38.975, "MIN_BBYMIN": 15.225, "MAX_BBYMIN": 15.225, "MIN_BBYMAX": 15.408333, "MAX_BBYMAX": 15.408333, "MEAN_BBXC": 38.926873, "MEAN_BBYC": 15.327408, "COMPARE": 0, "GN_ASCII": "Asmara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 563930.0, "ELEVATION": null, "GTOPO30": 2360.0, "TIMEZONE": "Africa/Asmara", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.10955268512327665}, "geometry": {"type": "Point", "coordinates": [38.933323, 15.333339]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Zagreb", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Zagreb", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Croatia", "SOV_A3": "HRV", "ADM0NAME": "Croatia", "ADM0_A3": "HRV", "ADM1NAME": "Grad Zagreb", "ISO_A2": "HR", "NOTE": null, "LATITUDE": 45.800007, "LONGITUDE": 15.999995, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 722526, "POP_MIN": 698966, "POP_OTHER": 690638, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3186886.0, "MEGANAME": null, "LS_NAME": "Zagreb", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 722526.0, "MAX_POP20": 722526.0, "MAX_POP50": 722526.0, "MAX_POP300": 722526.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 244.0, "MAX_AREAKM": 244.0, "MIN_AREAMI": 94.0, "MAX_AREAMI": 94.0, "MIN_PERKM": 223.0, "MAX_PERKM": 223.0, "MIN_PERMI": 138.0, "MAX_PERMI": 138.0, "MIN_BBXMIN": 15.825, "MAX_BBXMIN": 15.825, "MIN_BBXMAX": 16.191667, "MAX_BBXMAX": 16.191667, "MIN_BBYMIN": 45.683333, "MAX_BBYMIN": 45.683333, "MIN_BBYMAX": 45.908333, "MAX_BBYMAX": 45.908333, "MEAN_BBXC": 16.005419, "MEAN_BBYC": 45.803305, "COMPARE": 0, "GN_ASCII": "Zagreb", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 21.0, "GN_POP": 698966.0, "ELEVATION": null, "GTOPO30": 131.0, "TIMEZONE": "Europe/Zagreb", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [15.999994, 45.800006]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tallinn", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tallinn", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Estonia", "SOV_A3": "EST", "ADM0NAME": "Estonia", "ADM0_A3": "EST", "ADM1NAME": "Harju", "ISO_A2": "EE", "NOTE": null, "LATITUDE": 59.433877, "LONGITUDE": 24.728041, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 394024, "POP_MIN": 340027, "POP_OTHER": 317949, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 588409.0, "MEGANAME": null, "LS_NAME": "Tallinn", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 340027.0, "MAX_POP20": 340027.0, "MAX_POP50": 340027.0, "MAX_POP300": 340027.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 130.0, "MAX_AREAKM": 130.0, "MIN_AREAMI": 50.0, "MAX_AREAMI": 50.0, "MIN_PERKM": 164.0, "MAX_PERKM": 164.0, "MIN_PERMI": 102.0, "MAX_PERMI": 102.0, "MIN_BBXMIN": 24.591667, "MAX_BBXMIN": 24.591667, "MIN_BBXMAX": 24.916667, "MAX_BBXMAX": 24.916667, "MIN_BBYMIN": 59.333333, "MAX_BBYMIN": 59.333333, "MIN_BBYMAX": 59.525, "MAX_BBYMAX": 59.525, "MEAN_BBXC": 24.746591, "MEAN_BBYC": 59.42709, "COMPARE": 0, "GN_ASCII": "Tallinn", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 394024.0, "ELEVATION": null, "GTOPO30": 22.0, "TIMEZONE": "Europe/Tallinn", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [24.72804, 59.433877]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Lilongwe", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lilongwe", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Malawi", "SOV_A3": "MWI", "ADM0NAME": "Malawi", "ADM0_A3": "MWI", "ADM1NAME": "Lilongwe", "ISO_A2": "MW", "NOTE": null, "LATITUDE": -13.983295, "LONGITUDE": 33.783302, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 646750, "POP_MIN": 646750, "POP_OTHER": 1061388, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 927967.0, "MEGANAME": null, "LS_NAME": "Lilongwe", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 965164.0, "MAX_POP20": 912521.0, "MAX_POP50": 989470.0, "MAX_POP300": 989470.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1100.0, "MAX_AREAKM": 1373.0, "MIN_AREAMI": 425.0, "MAX_AREAMI": 530.0, "MIN_PERKM": 1360.0, "MAX_PERKM": 1658.0, "MIN_PERMI": 845.0, "MAX_PERMI": 1030.0, "MIN_BBXMIN": 33.508333, "MAX_BBXMIN": 33.508333, "MIN_BBXMAX": 34.187755, "MAX_BBXMAX": 34.608333, "MIN_BBYMIN": -14.433333, "MAX_BBYMIN": -14.408333, "MIN_BBYMAX": -13.691667, "MAX_BBYMAX": -13.641667, "MEAN_BBXC": 33.888699, "MEAN_BBYC": -14.028166, "COMPARE": 0, "GN_ASCII": "Lilongwe", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 646750.0, "ELEVATION": null, "GTOPO30": 1025.0, "TIMEZONE": "Africa/Blantyre", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [33.783301, -13.983295]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Guatemala", "NAMEPAR": null, "NAMEALT": "Ciudad de Guatemala (Guatemala City)", "DIFFASCII": 0, "NAMEASCII": "Guatemala", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Guatemala", "SOV_A3": "GTM", "ADM0NAME": "Guatemala", "ADM0_A3": "GTM", "ADM1NAME": "Guatemala", "ISO_A2": "GT", "NOTE": null, "LATITUDE": 14.621135, "LONGITUDE": -90.526966, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1024000, "POP_MIN": 994938, "POP_OTHER": 2391150, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3598132.0, "MEGANAME": "Ciudad de Guatemala (Guatemala City)", "LS_NAME": "Guatemala", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2420941.0, "MAX_POP20": 2417882.0, "MAX_POP50": 2419489.0, "MAX_POP300": 2419489.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 410.0, "MAX_AREAKM": 419.0, "MIN_AREAMI": 158.0, "MAX_AREAMI": 162.0, "MIN_PERKM": 274.0, "MAX_PERKM": 288.0, "MIN_PERMI": 170.0, "MAX_PERMI": 179.0, "MIN_BBXMIN": -90.658333, "MAX_BBXMIN": -90.658333, "MIN_BBXMAX": -90.425, "MAX_BBXMAX": -90.425, "MIN_BBYMIN": 14.433333, "MAX_BBYMIN": 14.441667, "MIN_BBYMAX": 14.783333, "MAX_BBYMAX": 14.783333, "MEAN_BBXC": -90.54419, "MEAN_BBYC": 14.603015, "COMPARE": 0, "GN_ASCII": "Guatemala City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 994938.0, "ELEVATION": null, "GTOPO30": 1533.0, "TIMEZONE": "America/Guatemala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 206, "UN_ADM0": "Guatemala", "UN_LAT": 14.61, "UN_LONG": -90.52, "POP1950": 287.0, "POP1955": 370.0, "POP1960": 476.0, "POP1965": 592.0, "POP1970": 660.0, "POP1975": 715.0, "POP1980": 749.0, "POP1985": 776.0, "POP1990": 803.0, "POP1995": 839.0, "POP2000": 908.0, "POP2005": 984.0, "POP2010": 1024.0, "POP2015": 1104.0, "POP2020": 1281.0, "POP2025": 1481.0, "POP2050": 1690.0, "CITYALT": "Guatemala"}, "geometry": {"type": "Point", "coordinates": [-90.528911, 14.62308]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Libreville", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Libreville", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Gabon", "SOV_A3": "GAB", "ADM0NAME": "Gabon", "ADM0_A3": "GAB", "ADM1NAME": "Estuaire", "ISO_A2": "GA", "NOTE": null, "LATITUDE": 0.385389, "LONGITUDE": 9.457965, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 578156, "POP_MIN": 483355, "POP_OTHER": 483522, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 2399697.0, "MEGANAME": null, "LS_NAME": "Libreville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 483355.0, "MAX_POP20": 483355.0, "MAX_POP50": 483355.0, "MAX_POP300": 483355.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 108.0, "MAX_AREAKM": 108.0, "MIN_AREAMI": 42.0, "MAX_AREAMI": 42.0, "MIN_PERKM": 98.0, "MAX_PERKM": 98.0, "MIN_PERMI": 61.0, "MAX_PERMI": 61.0, "MIN_BBXMIN": 9.4, "MAX_BBXMIN": 9.4, "MIN_BBXMAX": 9.525, "MAX_BBXMAX": 9.525, "MIN_BBYMIN": 0.283333, "MAX_BBYMIN": 0.283333, "MIN_BBYMAX": 0.483333, "MAX_BBYMAX": 0.483333, "MEAN_BBXC": 9.47328, "MEAN_BBYC": 0.395238, "COMPARE": 0, "GN_ASCII": "Libreville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 578156.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Africa/Libreville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.060328296634250655}, "geometry": {"type": "Point", "coordinates": [9.457965, 0.385388]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Suva", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Suva", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Fiji", "SOV_A3": "FJI", "ADM0NAME": "Fiji", "ADM0_A3": "FJI", "ADM1NAME": "Central", "ISO_A2": "FJ", "NOTE": null, "LATITUDE": -18.133016, "LONGITUDE": 178.441707, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 175399, "POP_MIN": 88271, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 2198148.0, "MEGANAME": null, "LS_NAME": "Suva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 143230.0, "MAX_POP20": 143230.0, "MAX_POP50": 143230.0, "MAX_POP300": 143230.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 53.0, "MAX_AREAKM": 53.0, "MIN_AREAMI": 20.0, "MAX_AREAMI": 20.0, "MIN_PERKM": 56.0, "MAX_PERKM": 56.0, "MIN_PERMI": 35.0, "MAX_PERMI": 35.0, "MIN_BBXMIN": 178.425, "MAX_BBXMIN": 178.425, "MIN_BBXMAX": 178.533333, "MAX_BBXMAX": 178.533333, "MIN_BBYMIN": -18.166667, "MAX_BBYMIN": -18.166667, "MIN_BBYMAX": -18.025, "MAX_BBYMAX": -18.025, "MEAN_BBXC": 178.472885, "MEAN_BBYC": -18.106731, "COMPARE": 0, "GN_ASCII": "Suva", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 77366.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Pacific/Fiji", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [178.441707, -18.133015]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital alt", "NAME": "Valparaiso", "NAMEPAR": null, "NAMEALT": "Valpara\u00edso", "DIFFASCII": 0, "NAMEASCII": "Valparaiso", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Legislative cap", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Valpara\u00edso", "ISO_A2": "CL", "NOTE": null, "LATITUDE": -33.047764, "LONGITUDE": -71.621014, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 854000, "POP_MIN": 15938, "POP_OTHER": 130815, "RANK_MAX": 11, "RANK_MIN": 6, "GEONAMEID": 3445575.0, "MEGANAME": "Valpara\u00edso", "LS_NAME": "Valparaiso2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 144390.0, "MAX_POP20": 637860.0, "MAX_POP50": 637860.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 34.0, "MAX_AREAKM": 184.0, "MIN_AREAMI": 13.0, "MAX_AREAMI": 71.0, "MIN_PERKM": 33.0, "MAX_PERKM": 151.0, "MIN_PERMI": 21.0, "MAX_PERMI": 94.0, "MIN_BBXMIN": -71.658333, "MAX_BBXMIN": -71.658333, "MIN_BBXMAX": -71.57441, "MAX_BBXMAX": -71.325, "MIN_BBYMIN": -33.075, "MAX_BBYMIN": -33.075, "MIN_BBYMAX": -33.016667, "MAX_BBYMAX": -32.916667, "MEAN_BBXC": -71.541251, "MEAN_BBYC": -33.034648, "COMPARE": 0, "GN_ASCII": "Valparaiso", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 27.0, "GN_POP": 15938.0, "ELEVATION": null, "GTOPO30": 405.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 18, "UN_ADM0": "Chile", "UN_LAT": -33.02, "UN_LONG": -71.55, "POP1950": 328.0, "POP1955": 377.0, "POP1960": 433.0, "POP1965": 481.0, "POP1970": 532.0, "POP1975": 581.0, "POP1980": 635.0, "POP1985": 685.0, "POP1990": 733.0, "POP1995": 771.0, "POP2000": 803.0, "POP2005": 838.0, "POP2010": 854.0, "POP2015": 880.0, "POP2020": 922.0, "POP2025": 956.0, "POP2050": 982.0, "CITYALT": "Valparaiso"}, "geometry": {"type": "Point", "coordinates": [-71.622959, -33.045818]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Nouakchott", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nouakchott", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Mauritania", "SOV_A3": "MRT", "ADM0NAME": "Mauritania", "ADM0_A3": "MRT", "ADM1NAME": "Nouakchott", "ISO_A2": "MR", "NOTE": null, "LATITUDE": 18.086427, "LONGITUDE": -15.97534, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 742144, "POP_MIN": 661400, "POP_OTHER": 742144, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2377450.0, "MEGANAME": null, "LS_NAME": "Nouakchott", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 742144.0, "MAX_POP20": 742144.0, "MAX_POP50": 742144.0, "MAX_POP300": 742144.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 98.0, "MAX_AREAKM": 98.0, "MIN_AREAMI": 38.0, "MAX_AREAMI": 38.0, "MIN_PERKM": 92.0, "MAX_PERKM": 92.0, "MIN_PERMI": 57.0, "MAX_PERMI": 57.0, "MIN_BBXMIN": -16.016667, "MAX_BBXMIN": -16.016667, "MIN_BBXMAX": -15.891667, "MAX_BBXMAX": -15.891667, "MIN_BBYMIN": 18.033333, "MAX_BBYMIN": 18.033333, "MIN_BBYMAX": 18.15, "MAX_BBYMAX": 18.15, "MEAN_BBXC": -15.960139, "MEAN_BBYC": 18.092569, "COMPARE": 0, "GN_ASCII": "Nouakchott", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6.0, "GN_POP": 661400.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Africa/Nouakchott", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.21574236803042446}, "geometry": {"type": "Point", "coordinates": [-15.97534, 18.086427]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bamako", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bamako", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Mali", "SOV_A3": "MLI", "ADM0NAME": "Mali", "ADM0_A3": "MLI", "ADM1NAME": "Bamako", "ISO_A2": "ML", "NOTE": null, "LATITUDE": 12.650015, "LONGITUDE": -8.000039, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1494000, "POP_MIN": 1297281, "POP_OTHER": 1301407, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2460596.0, "MEGANAME": "Bamako", "LS_NAME": "Bamako", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1316564.0, "MAX_POP20": 1316564.0, "MAX_POP50": 1316564.0, "MAX_POP300": 1316564.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 172.0, "MAX_AREAKM": 172.0, "MIN_AREAMI": 66.0, "MAX_AREAMI": 66.0, "MIN_PERKM": 106.0, "MAX_PERKM": 106.0, "MIN_PERMI": 66.0, "MAX_PERMI": 66.0, "MIN_BBXMIN": -8.058333, "MAX_BBXMIN": -8.058333, "MIN_BBXMAX": -7.908333, "MAX_BBXMAX": -7.908333, "MIN_BBYMIN": 12.541667, "MAX_BBYMIN": 12.541667, "MIN_BBYMAX": 12.716667, "MAX_BBYMAX": 12.716667, "MEAN_BBXC": -7.987419, "MEAN_BBYC": 12.626173, "COMPARE": 0, "GN_ASCII": "Bamako", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 1297281.0, "ELEVATION": null, "GTOPO30": 350.0, "TIMEZONE": "Africa/Bamako", "GEONAMESNO": "GeoNames match general.", "UN_FID": 349, "UN_ADM0": "Mali", "UN_LAT": 12.65, "UN_LONG": -7.98, "POP1950": 89.0, "POP1955": 111.0, "POP1960": 130.0, "POP1965": 158.0, "POP1970": 222.0, "POP1975": 363.0, "POP1980": 489.0, "POP1985": 608.0, "POP1990": 746.0, "POP1995": 910.0, "POP2000": 1110.0, "POP2005": 1368.0, "POP2010": 1494.0, "POP2015": 1708.0, "POP2020": 2130.0, "POP2025": 2633.0, "POP2050": 3214.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-8.001984, 12.65196]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Beirut", "NAMEPAR": null, "NAMEALT": "Bayrut", "DIFFASCII": 0, "NAMEASCII": "Beirut", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Lebanon", "SOV_A3": "LBN", "ADM0NAME": "Lebanon", "ADM0_A3": "LBN", "ADM1NAME": "Beirut", "ISO_A2": "LB", "NOTE": null, "LATITUDE": 33.871975, "LONGITUDE": 35.509708, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1846000, "POP_MIN": 1712125, "POP_OTHER": 1661980, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 276781.0, "MEGANAME": "Bayrut", "LS_NAME": "Beirut", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1712125.0, "MAX_POP20": 1712468.0, "MAX_POP50": 1740692.0, "MAX_POP300": 1740692.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 429.0, "MAX_AREAKM": 471.0, "MIN_AREAMI": 166.0, "MAX_AREAMI": 182.0, "MIN_PERKM": 403.0, "MAX_PERKM": 457.0, "MIN_PERMI": 251.0, "MAX_PERMI": 284.0, "MIN_BBXMIN": 35.441667, "MAX_BBXMIN": 35.441667, "MIN_BBXMAX": 35.718541, "MAX_BBXMAX": 35.758333, "MIN_BBYMIN": 33.7, "MAX_BBYMIN": 33.7, "MIN_BBYMAX": 34.166667, "MAX_BBYMAX": 34.166667, "MEAN_BBXC": 35.600789, "MEAN_BBYC": 33.892807, "COMPARE": 0, "GN_ASCII": "Beirut", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 1916100.0, "ELEVATION": null, "GTOPO30": 56.0, "TIMEZONE": "Asia/Beirut", "GEONAMESNO": "GeoNames match general.", "UN_FID": 341, "UN_ADM0": "Lebanon", "UN_LAT": 33.88, "UN_LONG": 35.49, "POP1950": 322.0, "POP1955": 425.0, "POP1960": 561.0, "POP1965": 733.0, "POP1970": 923.0, "POP1975": 1500.0, "POP1980": 1623.0, "POP1985": 1585.0, "POP1990": 1293.0, "POP1995": 1268.0, "POP2000": 1487.0, "POP2005": 1777.0, "POP2010": 1846.0, "POP2015": 1941.0, "POP2020": 2051.0, "POP2025": 2119.0, "POP2050": 2173.0, "CITYALT": "Beirut"}, "geometry": {"type": "Point", "coordinates": [35.507762, 33.87392]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tbilisi", "NAMEPAR": null, "NAMEALT": "T'Bilisi", "DIFFASCII": 0, "NAMEASCII": "Tbilisi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Georgia", "SOV_A3": "GEO", "ADM0NAME": "Georgia", "ADM0_A3": "GEO", "ADM1NAME": "Tbilisi", "ISO_A2": "GE", "NOTE": null, "LATITUDE": 41.72501, "LONGITUDE": 44.790795, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1100000, "POP_MIN": 1005257, "POP_OTHER": 977179, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 611717.0, "MEGANAME": "Tbilisi", "LS_NAME": "Tbilisi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1005257.0, "MAX_POP20": 1005257.0, "MAX_POP50": 1007529.0, "MAX_POP300": 1007529.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 131.0, "MAX_AREAKM": 135.0, "MIN_AREAMI": 51.0, "MAX_AREAMI": 52.0, "MIN_PERKM": 128.0, "MAX_PERKM": 133.0, "MIN_PERMI": 80.0, "MAX_PERMI": 83.0, "MIN_BBXMIN": 44.708333, "MAX_BBXMIN": 44.708333, "MIN_BBXMAX": 44.933333, "MAX_BBXMAX": 44.933333, "MIN_BBYMIN": 41.616667, "MAX_BBYMIN": 41.627355, "MIN_BBYMAX": 41.825, "MAX_BBYMAX": 41.825, "MEAN_BBXC": 44.822812, "MEAN_BBYC": 41.722167, "COMPARE": 0, "GN_ASCII": "Tbilisi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1049498.0, "ELEVATION": null, "GTOPO30": 420.0, "TIMEZONE": "Asia/Tbilisi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 191, "UN_ADM0": "Georgia", "UN_LAT": 41.72, "UN_LONG": 44.78, "POP1950": 612.0, "POP1955": 659.0, "POP1960": 718.0, "POP1965": 803.0, "POP1970": 897.0, "POP1975": 992.0, "POP1980": 1090.0, "POP1985": 1177.0, "POP1990": 1224.0, "POP1995": 1160.0, "POP2000": 1100.0, "POP2005": 1093.0, "POP2010": 1100.0, "POP2015": 1108.0, "POP2020": 1113.0, "POP2025": 1114.0, "POP2050": 1114.0, "CITYALT": "T'Bilisi"}, "geometry": {"type": "Point", "coordinates": [44.788849, 41.726955]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Astana", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Astana", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Kazakhstan", "SOV_A3": "KAZ", "ADM0NAME": "Kazakhstan", "ADM0_A3": "KAZ", "ADM1NAME": "Aqmola", "ISO_A2": "KZ", "NOTE": null, "LATITUDE": 51.181125, "LONGITUDE": 71.427774, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 345604, "POP_MIN": 325021, "POP_OTHER": 317445, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1526273.0, "MEGANAME": null, "LS_NAME": "Astana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 325021.0, "MAX_POP20": 325021.0, "MAX_POP50": 325021.0, "MAX_POP300": 325021.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 104.0, "MAX_AREAKM": 104.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 101.0, "MAX_PERKM": 101.0, "MIN_PERMI": 63.0, "MAX_PERMI": 63.0, "MIN_BBXMIN": 71.325, "MAX_BBXMIN": 71.325, "MIN_BBXMAX": 71.533333, "MAX_BBXMAX": 71.533333, "MIN_BBYMIN": 51.1, "MAX_BBYMIN": 51.1, "MIN_BBYMAX": 51.225, "MAX_BBYMAX": 51.225, "MEAN_BBXC": 71.43275, "MEAN_BBYC": 51.164443, "COMPARE": 0, "GN_ASCII": "Astana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 345604.0, "ELEVATION": null, "GTOPO30": 339.0, "TIMEZONE": "Asia/Qyzylorda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9086639898550785}, "geometry": {"type": "Point", "coordinates": [71.427774, 51.181125]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Vientiane", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vientiane", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Laos", "SOV_A3": "LAO", "ADM0NAME": "Laos", "ADM0_A3": "LAO", "ADM1NAME": "Vientiane [prefecture]", "ISO_A2": "LA", "NOTE": null, "LATITUDE": 17.966693, "LONGITUDE": 102.59998, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 754000, "POP_MIN": 570348, "POP_OTHER": 469811, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 1651944.0, "MEGANAME": null, "LS_NAME": "Vientiane", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 471927.0, "MAX_POP20": 471927.0, "MAX_POP50": 570348.0, "MAX_POP300": 570348.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 166.0, "MAX_AREAKM": 243.0, "MIN_AREAMI": 64.0, "MAX_AREAMI": 94.0, "MIN_PERKM": 170.0, "MAX_PERKM": 283.0, "MIN_PERMI": 106.0, "MAX_PERMI": 176.0, "MIN_BBXMIN": 102.491667, "MAX_BBXMIN": 102.491667, "MIN_BBXMAX": 102.725, "MAX_BBXMAX": 102.816667, "MIN_BBYMIN": 17.8, "MAX_BBYMIN": 17.875, "MIN_BBYMAX": 18.083333, "MAX_BBYMAX": 18.083333, "MEAN_BBXC": 102.648054, "MEAN_BBYC": 17.967124, "COMPARE": 0, "GN_ASCII": "Vientiane", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 27.0, "GN_POP": 196731.0, "ELEVATION": null, "GTOPO30": 174.0, "TIMEZONE": "Asia/Vientiane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.7798759681661608}, "geometry": {"type": "Point", "coordinates": [102.59998, 17.966692]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Brazzaville", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Brazzaville", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Congo (Brazzaville)", "SOV_A3": "COG", "ADM0NAME": "Congo (Brazzaville)", "ADM0_A3": "COG", "ADM1NAME": "Pool", "ISO_A2": "CG", "NOTE": null, "LATITUDE": -4.259186, "LONGITUDE": 15.284689, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1355000, "POP_MIN": 1163890, "POP_OTHER": 1174778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2260535.0, "MEGANAME": "Brazzaville", "LS_NAME": "Brazzaville", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1163890.0, "MAX_POP20": 1163890.0, "MAX_POP50": 1163890.0, "MAX_POP300": 1163890.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 148.0, "MAX_AREAKM": 148.0, "MIN_AREAMI": 57.0, "MAX_AREAMI": 57.0, "MIN_PERKM": 105.0, "MAX_PERKM": 105.0, "MIN_PERMI": 65.0, "MAX_PERMI": 65.0, "MIN_BBXMIN": 15.15, "MAX_BBXMIN": 15.15, "MIN_BBXMAX": 15.308333, "MAX_BBXMAX": 15.308333, "MIN_BBYMIN": -4.333333, "MAX_BBYMIN": -4.333333, "MIN_BBYMAX": -4.15, "MAX_BBYMAX": -4.15, "MEAN_BBXC": 15.24454, "MEAN_BBYC": -4.251293, "COMPARE": 0, "GN_ASCII": "Brazzaville", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 1284609.0, "ELEVATION": null, "GTOPO30": 156.0, "TIMEZONE": "Africa/Brazzaville", "GEONAMESNO": "GeoNames match general.", "UN_FID": 166, "UN_ADM0": "Congo", "UN_LAT": -4.28, "UN_LONG": 15.28, "POP1950": 83.0, "POP1955": 92.0, "POP1960": 124.0, "POP1965": 172.0, "POP1970": 238.0, "POP1975": 329.0, "POP1980": 446.0, "POP1985": 596.0, "POP1990": 704.0, "POP1995": 830.0, "POP2000": 986.0, "POP2005": 1216.0, "POP2010": 1355.0, "POP2015": 1505.0, "POP2020": 1729.0, "POP2025": 1938.0, "POP2050": 2150.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [15.282743, -4.257239]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Conakry", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Conakry", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Guinea", "SOV_A3": "GIN", "ADM0NAME": "Guinea", "ADM0_A3": "GIN", "ADM1NAME": "Conakry", "ISO_A2": "GN", "NOTE": null, "LATITUDE": 9.531523, "LONGITUDE": -13.680235, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1494000, "POP_MIN": 1494000, "POP_OTHER": 1498020, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2422465.0, "MEGANAME": "Conakry", "LS_NAME": "Conakry", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1504217.0, "MAX_POP20": 1504217.0, "MAX_POP50": 1504217.0, "MAX_POP300": 1504217.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 184.0, "MAX_AREAKM": 184.0, "MIN_AREAMI": 71.0, "MAX_AREAMI": 71.0, "MIN_PERKM": 123.0, "MAX_PERKM": 123.0, "MIN_PERMI": 76.0, "MAX_PERMI": 76.0, "MIN_BBXMIN": -13.725, "MAX_BBXMIN": -13.725, "MIN_BBXMAX": -13.475, "MAX_BBXMAX": -13.475, "MIN_BBYMIN": 9.5, "MAX_BBYMIN": 9.5, "MIN_BBYMAX": 9.775, "MAX_BBYMAX": 9.775, "MEAN_BBXC": -13.588647, "MEAN_BBYC": 9.633104, "COMPARE": 0, "GN_ASCII": "Conakry", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 1767200.0, "ELEVATION": null, "GTOPO30": 235.0, "TIMEZONE": "Africa/Conakry", "GEONAMESNO": "GeoNames match general.", "UN_FID": 207, "UN_ADM0": "Guinea", "UN_LAT": 9.54, "UN_LONG": -13.67, "POP1950": 31.0, "POP1955": 59.0, "POP1960": 112.0, "POP1965": 208.0, "POP1970": 388.0, "POP1975": 530.0, "POP1980": 658.0, "POP1985": 766.0, "POP1990": 895.0, "POP1995": 1045.0, "POP2000": 1219.0, "POP2005": 1409.0, "POP2010": 1494.0, "POP2015": 1645.0, "POP2020": 1984.0, "POP2025": 2393.0, "POP2050": 2856.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-13.68218, 9.533468]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yamoussoukro", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Yamoussoukro", "ADM0CAP": 1.0, "CAPALT": 1.0, "CAPIN": "Official capita", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lacs", "ISO_A2": "CI", "NOTE": null, "LATITUDE": 6.818381, "LONGITUDE": -5.275503, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 206499, "POP_MIN": 194530, "POP_OTHER": 206499, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 2279755.0, "MEGANAME": null, "LS_NAME": "Yamoussoukro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 206499.0, "MAX_POP20": 206499.0, "MAX_POP50": 206499.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 59.0, "MAX_AREAKM": 59.0, "MIN_AREAMI": 23.0, "MAX_AREAMI": 23.0, "MIN_PERKM": 52.0, "MAX_PERKM": 52.0, "MIN_PERMI": 32.0, "MAX_PERMI": 32.0, "MIN_BBXMIN": -5.308333, "MAX_BBXMIN": -5.308333, "MIN_BBXMAX": -5.216667, "MAX_BBXMAX": -5.216667, "MIN_BBYMIN": 6.783333, "MAX_BBYMIN": 6.783333, "MIN_BBYMAX": 6.891667, "MAX_BBYMAX": 6.891667, "MEAN_BBXC": -5.263708, "MEAN_BBYC": 6.831582, "COMPARE": 0, "GN_ASCII": "Yamoussoukro", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81.0, "GN_POP": 194530.0, "ELEVATION": null, "GTOPO30": 219.0, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.47300906120050235}, "geometry": {"type": "Point", "coordinates": [-5.275502, 6.81838]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Ottawa", "NAMEPAR": null, "NAMEALT": "Ottawa-Gatineau", "DIFFASCII": 0, "NAMEASCII": "Ottawa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "NOTE": null, "LATITUDE": 45.416697, "LONGITUDE": -75.700015, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1145000, "POP_MIN": 812129, "POP_OTHER": 872781, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6094817.0, "MEGANAME": "Ottawa-Gatineau", "LS_NAME": "Ottawa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 885780.0, "MAX_POP20": 885780.0, "MAX_POP50": 885780.0, "MAX_POP300": 885780.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 504.0, "MAX_AREAKM": 504.0, "MIN_AREAMI": 195.0, "MAX_AREAMI": 195.0, "MIN_PERKM": 442.0, "MAX_PERKM": 442.0, "MIN_PERMI": 274.0, "MAX_PERMI": 274.0, "MIN_BBXMIN": -75.983333, "MAX_BBXMIN": -75.983333, "MIN_BBXMAX": -75.45, "MAX_BBXMAX": -75.45, "MIN_BBYMIN": 45.225, "MAX_BBYMIN": 45.225, "MIN_BBYMAX": 45.55, "MAX_BBYMAX": 45.55, "MEAN_BBXC": -75.717666, "MEAN_BBYC": 45.405246, "COMPARE": 0, "GN_ASCII": "Ottawa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": 812129.0, "ELEVATION": null, "GTOPO30": 61.0, "TIMEZONE": "America/Montreal", "GEONAMESNO": "GeoNames match general.", "UN_FID": 13, "UN_ADM0": "Canada", "UN_LAT": 45.37, "UN_LONG": -75.65, "POP1950": 282.0, "POP1955": 342.0, "POP1960": 415.0, "POP1965": 482.0, "POP1970": 581.0, "POP1975": 676.0, "POP1980": 729.0, "POP1985": 803.0, "POP1990": 918.0, "POP1995": 988.0, "POP2000": 1079.0, "POP2005": 1119.0, "POP2010": 1145.0, "POP2015": 1182.0, "POP2020": 1232.0, "POP2025": 1274.0, "POP2050": 1315.0, "CITYALT": "Ottawa", "clustered:unrelated": 0.3627839742211745}, "geometry": {"type": "Point", "coordinates": [-75.701961, 45.418642]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belgrade", "NAMEPAR": "Beograd", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Belgrade", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Republic of Serbia", "SOV_A3": "SRB", "ADM0NAME": "Serbia", "ADM0_A3": "SRB", "ADM1NAME": "Grad Beograd", "ISO_A2": "RS", "NOTE": null, "LATITUDE": 44.818645, "LONGITUDE": 20.467991, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1099000, "POP_MIN": 1099000, "POP_OTHER": 1271541, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 792680.0, "MEGANAME": "Beograd", "LS_NAME": "Belgrade", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1291613.0, "MAX_POP20": 1291613.0, "MAX_POP50": 1291613.0, "MAX_POP300": 1291613.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 209.0, "MAX_AREAKM": 209.0, "MIN_AREAMI": 81.0, "MAX_AREAMI": 81.0, "MIN_PERKM": 184.0, "MAX_PERKM": 184.0, "MIN_PERMI": 114.0, "MAX_PERMI": 114.0, "MIN_BBXMIN": 20.316667, "MAX_BBXMIN": 20.316667, "MIN_BBXMAX": 20.575, "MAX_BBXMAX": 20.575, "MIN_BBYMIN": 44.691667, "MAX_BBYMIN": 44.691667, "MIN_BBYMAX": 44.9, "MAX_BBYMAX": 44.9, "MEAN_BBXC": 20.449561, "MEAN_BBYC": 44.794615, "COMPARE": 0, "GN_ASCII": "Belgrade", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1273651.0, "ELEVATION": null, "GTOPO30": 90.0, "TIMEZONE": "Europe/Belgrade", "GEONAMESNO": "GeoNames match general.", "UN_FID": 448, "UN_ADM0": "Serbia", "UN_LAT": 44.79, "UN_LONG": 20.41, "POP1950": 411.0, "POP1955": 501.0, "POP1960": 576.0, "POP1965": 649.0, "POP1970": 729.0, "POP1975": 873.0, "POP1980": 1057.0, "POP1985": 1121.0, "POP1990": 1162.0, "POP1995": 1149.0, "POP2000": 1127.0, "POP2005": 1106.0, "POP2010": 1099.0, "POP2015": 1096.0, "POP2020": 1108.0, "POP2025": 1132.0, "POP2050": 1163.0, "CITYALT": "Belgrade", "clustered:unrelated": 0.05764985684359614}, "geometry": {"type": "Point", "coordinates": [20.466044, 44.820591]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Bandar Seri Begawan", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bandar Seri Begawan", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Brunei", "SOV_A3": "BRN", "ADM0NAME": "Brunei", "ADM0_A3": "BRN", "ADM1NAME": "Brunei and Muara", "ISO_A2": "BN", "NOTE": null, "LATITUDE": 4.883331, "LONGITUDE": 114.933284, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 296500, "POP_MIN": 140000, "POP_OTHER": 222513, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 1820906.0, "MEGANAME": null, "LS_NAME": "Bandar Seri Begawan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 219674.0, "MAX_POP20": 219674.0, "MAX_POP50": 219674.0, "MAX_POP300": 219674.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 145.0, "MAX_AREAKM": 145.0, "MIN_AREAMI": 56.0, "MAX_AREAMI": 56.0, "MIN_PERKM": 155.0, "MAX_PERKM": 155.0, "MIN_PERMI": 96.0, "MAX_PERMI": 96.0, "MIN_BBXMIN": 114.825, "MAX_BBXMIN": 114.825, "MIN_BBXMAX": 114.991667, "MAX_BBXMAX": 114.991667, "MIN_BBYMIN": 4.816667, "MAX_BBYMIN": 4.816667, "MIN_BBYMAX": 5.008333, "MAX_BBYMAX": 5.008333, "MEAN_BBXC": 114.908824, "MEAN_BBYC": 4.910245, "COMPARE": 0, "GN_ASCII": "Bandar Seri Begawan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 64409.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Asia/Brunei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.9058855585384573}, "geometry": {"type": "Point", "coordinates": [114.933284, 4.883331]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sucre", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sucre", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official (const", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "Chuquisaca", "ISO_A2": "BO", "NOTE": null, "LATITUDE": -19.040971, "LONGITUDE": -65.259516, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 224838, "POP_MIN": 221736, "POP_OTHER": 221736, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 3903987.0, "MEGANAME": null, "LS_NAME": "Sucre", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 221736.0, "MAX_POP20": 221736.0, "MAX_POP50": 221736.0, "MAX_POP300": 221736.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 34.0, "MAX_AREAKM": 34.0, "MIN_AREAMI": 13.0, "MAX_AREAMI": 13.0, "MIN_PERKM": 32.0, "MAX_PERKM": 32.0, "MIN_PERMI": 20.0, "MAX_PERMI": 20.0, "MIN_BBXMIN": -65.3, "MAX_BBXMIN": -65.3, "MIN_BBXMAX": -65.225, "MAX_BBXMAX": -65.225, "MIN_BBYMIN": -19.066667, "MAX_BBYMIN": -19.066667, "MIN_BBYMAX": -18.991667, "MAX_BBYMAX": -18.991667, "MEAN_BBXC": -65.260317, "MEAN_BBYC": -19.030556, "COMPARE": 0, "GN_ASCII": "Sucre", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 224838.0, "ELEVATION": null, "GTOPO30": 2759.0, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.14649540424089302}, "geometry": {"type": "Point", "coordinates": [-65.259515, -19.04097]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Belmopan", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Belmopan", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Belize", "SOV_A3": "BLZ", "ADM0NAME": "Belize", "ADM0_A3": "BLZ", "ADM1NAME": "Cayo", "ISO_A2": "BZ", "NOTE": null, "LATITUDE": 17.252034, "LONGITUDE": -88.767073, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 15220, "POP_MIN": 13381, "POP_OTHER": 15220, "RANK_MAX": 6, "RANK_MIN": 6, "GEONAMEID": 3582672.0, "MEGANAME": null, "LS_NAME": "Belmopan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 15220.0, "MAX_POP20": 15220.0, "MAX_POP50": 15220.0, "MAX_POP300": 15220.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 9.0, "MAX_AREAKM": 9.0, "MIN_AREAMI": 3.0, "MAX_AREAMI": 3.0, "MIN_PERKM": 16.0, "MAX_PERKM": 16.0, "MIN_PERMI": 10.0, "MAX_PERMI": 10.0, "MIN_BBXMIN": -88.783333, "MAX_BBXMIN": -88.783333, "MIN_BBXMAX": -88.75, "MAX_BBXMAX": -88.75, "MIN_BBYMIN": 17.233333, "MAX_BBYMIN": 17.233333, "MIN_BBYMAX": 17.266667, "MAX_BBYMAX": 17.266667, "MEAN_BBXC": -88.767803, "MEAN_BBYC": 17.248864, "COMPARE": 0, "GN_ASCII": "Belmopan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 13381.0, "ELEVATION": null, "GTOPO30": 63.0, "TIMEZONE": "America/Belize", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.46083371088339664}, "geometry": {"type": "Point", "coordinates": [-88.767072, 17.252033]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Bangui", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bangui", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Central African Republic", "SOV_A3": "CAF", "ADM0NAME": "Central African Republic", "ADM0_A3": "CAF", "ADM1NAME": "Bangui", "ISO_A2": "CF", "NOTE": null, "LATITUDE": 4.366644, "LONGITUDE": 18.558288, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 831925, "POP_MIN": 622771, "POP_OTHER": 782274, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2389853.0, "MEGANAME": null, "LS_NAME": "Bangui", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 792886.0, "MAX_POP20": 792886.0, "MAX_POP50": 831925.0, "MAX_POP300": 831925.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 90.0, "MAX_AREAKM": 103.0, "MIN_AREAMI": 35.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 91.0, "MAX_PERKM": 107.0, "MIN_PERMI": 57.0, "MAX_PERMI": 67.0, "MIN_BBXMIN": 18.491667, "MAX_BBXMIN": 18.491667, "MIN_BBXMAX": 18.614651, "MAX_BBXMAX": 18.625, "MIN_BBYMIN": 4.316667, "MAX_BBYMIN": 4.316667, "MIN_BBYMAX": 4.483333, "MAX_BBYMAX": 4.483333, "MEAN_BBXC": 18.546436, "MEAN_BBYC": 4.388157, "COMPARE": 0, "GN_ASCII": "Bangui", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 18.0, "GN_POP": 542393.0, "ELEVATION": null, "GTOPO30": 373.0, "TIMEZONE": "Africa/Bangui", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.537638595860987}, "geometry": {"type": "Point", "coordinates": [18.558288, 4.366644]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Yaounde", "NAMEPAR": null, "NAMEALT": "Yaound\u00e9", "DIFFASCII": 0, "NAMEASCII": "Yaounde", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Cameroon", "SOV_A3": "CMR", "ADM0NAME": "Cameroon", "ADM0_A3": "CMR", "ADM1NAME": "Centre", "ISO_A2": "CM", "NOTE": null, "LATITUDE": 3.866701, "LONGITUDE": 11.516651, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1611000, "POP_MIN": 1060587, "POP_OTHER": 1060747, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2220957.0, "MEGANAME": "Yaound\u00e9", "LS_NAME": "Yaounde", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1060587.0, "MAX_POP20": 1060587.0, "MAX_POP50": 1060587.0, "MAX_POP300": 1060587.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 197.0, "MAX_AREAKM": 197.0, "MIN_AREAMI": 76.0, "MAX_AREAMI": 76.0, "MIN_PERKM": 116.0, "MAX_PERKM": 116.0, "MIN_PERMI": 72.0, "MAX_PERMI": 72.0, "MIN_BBXMIN": 11.433333, "MAX_BBXMIN": 11.433333, "MIN_BBXMAX": 11.6, "MAX_BBXMAX": 11.6, "MIN_BBYMIN": 3.775, "MAX_BBYMIN": 3.775, "MIN_BBYMAX": 3.983333, "MAX_BBYMAX": 3.983333, "MEAN_BBXC": 11.518344, "MEAN_BBYC": 3.865639, "COMPARE": 0, "GN_ASCII": "Yaounde", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1299369.0, "ELEVATION": null, "GTOPO30": 733.0, "TIMEZONE": "Africa/Douala", "GEONAMESNO": "GeoNames match general.", "UN_FID": 9, "UN_ADM0": "Cameroon", "UN_LAT": 3.86, "UN_LONG": 11.51, "POP1950": 32.0, "POP1955": 49.0, "POP1960": 75.0, "POP1965": 112.0, "POP1970": 183.0, "POP1975": 292.0, "POP1980": 415.0, "POP1985": 578.0, "POP1990": 754.0, "POP1995": 948.0, "POP2000": 1192.0, "POP2005": 1489.0, "POP2010": 1611.0, "POP2015": 1787.0, "POP2020": 2058.0, "POP2025": 2312.0, "POP2050": 2549.0, "CITYALT": "Yaounde", "clustered:unrelated": 0.338663465619539}, "geometry": {"type": "Point", "coordinates": [11.514704, 3.868646]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Tirana", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tirana", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Albania", "SOV_A3": "ALB", "ADM0NAME": "Albania", "ADM0_A3": "ALB", "ADM1NAME": "Durr\u00ebs", "ISO_A2": "AL", "NOTE": null, "LATITUDE": 41.327541, "LONGITUDE": 19.818883, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 895350, "POP_MIN": 421286, "POP_OTHER": 517792, "RANK_MAX": 11, "RANK_MIN": 10, "GEONAMEID": 3183875.0, "MEGANAME": null, "LS_NAME": "Tirana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530241.0, "MAX_POP20": 530241.0, "MAX_POP50": 530241.0, "MAX_POP300": 530241.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 74.0, "MAX_AREAKM": 74.0, "MIN_AREAMI": 28.0, "MAX_AREAMI": 28.0, "MIN_PERKM": 80.0, "MAX_PERKM": 80.0, "MIN_PERMI": 50.0, "MAX_PERMI": 50.0, "MIN_BBXMIN": 19.733333, "MAX_BBXMIN": 19.733333, "MIN_BBXMAX": 19.875, "MAX_BBXMAX": 19.875, "MIN_BBYMIN": 41.275, "MAX_BBYMIN": 41.275, "MIN_BBYMAX": 41.4, "MAX_BBYMAX": 41.4, "MEAN_BBXC": 19.805556, "MEAN_BBYC": 41.339474, "COMPARE": 0, "GN_ASCII": "Tirana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 50.0, "GN_POP": 374801.0, "ELEVATION": null, "GTOPO30": 103.0, "TIMEZONE": "Europe/Tirane", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [19.818883, 41.32754]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Yerevan", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Yerevan", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Armenia", "SOV_A3": "ARM", "ADM0NAME": "Armenia", "ADM0_A3": "ARM", "ADM1NAME": "Erevan", "ISO_A2": "AM", "NOTE": null, "LATITUDE": 40.181151, "LONGITUDE": 44.513551, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1102000, "POP_MIN": 1093485, "POP_OTHER": 1154748, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 616052.0, "MEGANAME": "Yerevan", "LS_NAME": "Yerevan", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1200842.0, "MAX_POP20": 1200842.0, "MAX_POP50": 1200842.0, "MAX_POP300": 1200842.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 191.0, "MAX_AREAKM": 191.0, "MIN_AREAMI": 74.0, "MAX_AREAMI": 74.0, "MIN_PERKM": 166.0, "MAX_PERKM": 166.0, "MIN_PERMI": 103.0, "MAX_PERMI": 103.0, "MIN_BBXMIN": 44.391667, "MAX_BBXMIN": 44.391667, "MIN_BBXMAX": 44.6, "MAX_BBXMAX": 44.6, "MIN_BBYMIN": 39.925, "MAX_BBYMIN": 39.925, "MIN_BBYMAX": 40.241667, "MAX_BBYMAX": 40.241667, "MEAN_BBXC": 44.506293, "MEAN_BBYC": 40.127356, "COMPARE": 0, "GN_ASCII": "Yerevan", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 1093485.0, "ELEVATION": null, "GTOPO30": 1002.0, "TIMEZONE": "Asia/Yerevan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 377, "UN_ADM0": "Armenia", "UN_LAT": 40.2, "UN_LONG": 44.53, "POP1950": 341.0, "POP1955": 431.0, "POP1960": 538.0, "POP1965": 648.0, "POP1970": 778.0, "POP1975": 911.0, "POP1980": 1042.0, "POP1985": 1123.0, "POP1990": 1175.0, "POP1995": 1142.0, "POP2000": 1111.0, "POP2005": 1103.0, "POP2010": 1102.0, "POP2015": 1102.0, "POP2020": 1102.0, "POP2025": 1102.0, "POP2050": 1102.0, "CITYALT": null, "clustered:unrelated": 0.15540886158997858}, "geometry": {"type": "Point", "coordinates": [44.511605, 40.183096]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Baku", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Baku", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Azerbaijan", "SOV_A3": "AZE", "ADM0NAME": "Azerbaijan", "ADM0_A3": "AZE", "ADM1NAME": "Baki", "ISO_A2": "AZ", "NOTE": null, "LATITUDE": 40.395272, "LONGITUDE": 49.862217, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 2122300, "POP_MIN": 1892000, "POP_OTHER": 1518801, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 587084.0, "MEGANAME": "Baku", "LS_NAME": "Baku", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1581087.0, "MAX_POP20": 1581475.0, "MAX_POP50": 1581475.0, "MAX_POP300": 1581475.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 246.0, "MAX_AREAKM": 249.0, "MIN_AREAMI": 95.0, "MAX_AREAMI": 96.0, "MIN_PERKM": 174.0, "MAX_PERKM": 179.0, "MIN_PERMI": 108.0, "MAX_PERMI": 111.0, "MIN_BBXMIN": 49.7, "MAX_BBXMIN": 49.716667, "MIN_BBXMAX": 50.016667, "MAX_BBXMAX": 50.016667, "MIN_BBYMIN": 40.316667, "MAX_BBYMIN": 40.316667, "MIN_BBYMAX": 40.5, "MAX_BBYMAX": 40.5, "MEAN_BBXC": 49.881373, "MEAN_BBYC": 40.41632, "COMPARE": 0, "GN_ASCII": "Baku", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 1116513.0, "ELEVATION": null, "GTOPO30": 30.0, "TIMEZONE": "Asia/Baku", "GEONAMESNO": "GeoNames match general.", "UN_FID": 200, "UN_ADM0": "Azerbaijan", "UN_LAT": 40.32, "UN_LONG": 49.81, "POP1950": 897.0, "POP1955": 940.0, "POP1960": 1005.0, "POP1965": 1132.0, "POP1970": 1274.0, "POP1975": 1429.0, "POP1980": 1574.0, "POP1985": 1660.0, "POP1990": 1733.0, "POP1995": 1766.0, "POP2000": 1806.0, "POP2005": 1867.0, "POP2010": 1892.0, "POP2015": 1931.0, "POP2020": 2006.0, "POP2025": 2097.0, "POP2050": 2187.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [49.860271, 40.397217]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Phnom Penh", "NAMEPAR": null, "NAMEALT": "Phnum P\u00e9nh", "DIFFASCII": 0, "NAMEASCII": "Phnom Penh", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Cambodia", "SOV_A3": "KHM", "ADM0NAME": "Cambodia", "ADM0_A3": "KHM", "ADM1NAME": "Phnom Penh", "ISO_A2": "KH", "NOTE": null, "LATITUDE": 11.55003, "LONGITUDE": 104.916634, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1466000, "POP_MIN": 1466000, "POP_OTHER": 1604086, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1821306.0, "MEGANAME": "Phnum P\u00e9nh", "LS_NAME": "Phnom Penh", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1551977.0, "MAX_POP20": 1551977.0, "MAX_POP50": 1551977.0, "MAX_POP300": 1551977.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 464.0, "MAX_AREAKM": 464.0, "MIN_AREAMI": 179.0, "MAX_AREAMI": 179.0, "MIN_PERKM": 703.0, "MAX_PERKM": 703.0, "MIN_PERMI": 437.0, "MAX_PERMI": 437.0, "MIN_BBXMIN": 104.441667, "MAX_BBXMIN": 104.441667, "MIN_BBXMAX": 105.0, "MAX_BBXMAX": 105.0, "MIN_BBYMIN": 11.291667, "MAX_BBYMIN": 11.291667, "MIN_BBYMAX": 11.691667, "MAX_BBYMAX": 11.691667, "MEAN_BBXC": 104.78577, "MEAN_BBYC": 11.488418, "COMPARE": 0, "GN_ASCII": "Phnom Penh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1573544.0, "ELEVATION": null, "GTOPO30": 16.0, "TIMEZONE": "Asia/Phnom_Penh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 5, "UN_ADM0": "Cambodia", "UN_LAT": 11.56, "UN_LONG": 104.91, "POP1950": 364.0, "POP1955": 376.0, "POP1960": 389.0, "POP1965": 436.0, "POP1970": 900.0, "POP1975": 100.0, "POP1980": 238.0, "POP1985": 427.0, "POP1990": 615.0, "POP1995": 836.0, "POP2000": 1160.0, "POP2005": 1363.0, "POP2010": 1466.0, "POP2015": 1651.0, "POP2020": 2028.0, "POP2025": 2457.0, "POP2050": 2911.0, "CITYALT": "Phnom Penh"}, "geometry": {"type": "Point", "coordinates": [104.914688, 11.551975]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "La Paz", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "La Paz", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Administrative", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Bolivia", "SOV_A3": "BOL", "ADM0NAME": "Bolivia", "ADM0_A3": "BOL", "ADM1NAME": "La Paz", "ISO_A2": "BO", "NOTE": null, "LATITUDE": -16.497974, "LONGITUDE": -68.149985, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1590000, "POP_MIN": 812799, "POP_OTHER": 4400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 3911925.0, "MEGANAME": "La Paz", "LS_NAME": "La Paz3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590482.0, "MAX_POP20": 1590482.0, "MAX_POP50": 1590482.0, "MAX_POP300": 1590482.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 181.0, "MAX_AREAKM": 181.0, "MIN_AREAMI": 70.0, "MAX_AREAMI": 70.0, "MIN_PERKM": 121.0, "MAX_PERKM": 121.0, "MIN_PERMI": 75.0, "MAX_PERMI": 75.0, "MIN_BBXMIN": -68.258333, "MAX_BBXMIN": -68.258333, "MIN_BBXMAX": -68.05, "MAX_BBXMAX": -68.05, "MIN_BBYMIN": -16.575, "MAX_BBYMIN": -16.575, "MIN_BBYMAX": -16.433333, "MAX_BBYMAX": -16.433333, "MEAN_BBXC": -68.157765, "MEAN_BBYC": -16.506439, "COMPARE": 0, "GN_ASCII": "La Paz", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 812799.0, "ELEVATION": null, "GTOPO30": 3829.0, "TIMEZONE": "America/La_Paz", "GEONAMESNO": "GeoNames match general.", "UN_FID": 440, "UN_ADM0": "Bolivia", "UN_LAT": 24.15, "UN_LONG": -110.3, "POP1950": 319.0, "POP1955": 374.0, "POP1960": 438.0, "POP1965": 512.0, "POP1970": 600.0, "POP1975": 703.0, "POP1980": 809.0, "POP1985": 927.0, "POP1990": 1062.0, "POP1995": 1267.0, "POP2000": 1390.0, "POP2005": 1527.0, "POP2010": 1590.0, "POP2015": 1692.0, "POP2020": 1864.0, "POP2025": 2027.0, "POP2050": 2178.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-68.151931, -16.496027]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Cotonou", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Cotonou", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto, admin", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Benin", "SOV_A3": "BEN", "ADM0NAME": "Benin", "ADM0_A3": "BEN", "ADM1NAME": "Ou\u00e9m\u00e9", "ISO_A2": "BJ", "NOTE": null, "LATITUDE": 6.400009, "LONGITUDE": 2.519991, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 762000, "POP_MIN": 690584, "POP_OTHER": 1060640, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 2394819.0, "MEGANAME": "Cotonou", "LS_NAME": "Cotonou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1042928.0, "MAX_POP20": 1076471.0, "MAX_POP50": 1076471.0, "MAX_POP300": 1113489.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 192.0, "MAX_AREAKM": 337.0, "MIN_AREAMI": 74.0, "MAX_AREAMI": 130.0, "MIN_PERKM": 177.0, "MAX_PERKM": 341.0, "MIN_PERMI": 110.0, "MAX_PERMI": 212.0, "MIN_BBXMIN": 2.2, "MAX_BBXMIN": 2.296132, "MIN_BBXMAX": 2.632958, "MAX_BBXMAX": 2.858333, "MIN_BBYMIN": 6.341667, "MAX_BBYMIN": 6.341667, "MIN_BBYMAX": 6.583333, "MAX_BBYMAX": 6.641667, "MEAN_BBXC": 2.392241, "MEAN_BBYC": 6.416506, "COMPARE": 0, "GN_ASCII": "Cotonou", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 14.0, "GN_POP": 690584.0, "ELEVATION": null, "GTOPO30": 53.0, "TIMEZONE": "Africa/Porto-Novo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 174, "UN_ADM0": "Benin", "UN_LAT": 6.35, "UN_LONG": 2.43, "POP1950": 20.0, "POP1955": 27.0, "POP1960": 73.0, "POP1965": 111.0, "POP1970": 163.0, "POP1975": 240.0, "POP1980": 337.0, "POP1985": 412.0, "POP1990": 504.0, "POP1995": 577.0, "POP2000": 642.0, "POP2005": 720.0, "POP2010": 762.0, "POP2015": 841.0, "POP2020": 1004.0, "POP2025": 1196.0, "POP2050": 1411.0, "CITYALT": null, "clustered:unrelated": 0.5916508907218972}, "geometry": {"type": "Point", "coordinates": [2.518044, 6.401954]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Sofia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sofia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Bulgaria", "SOV_A3": "BGR", "ADM0NAME": "Bulgaria", "ADM0_A3": "BGR", "ADM1NAME": "Grad Sofiya", "ISO_A2": "BG", "NOTE": null, "LATITUDE": 42.683349, "LONGITUDE": 23.316654, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1185000, "POP_MIN": 874827, "POP_OTHER": 871735, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 727011.0, "MEGANAME": "Sofia", "LS_NAME": "Sofia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 874827.0, "MAX_POP20": 874827.0, "MAX_POP50": 874827.0, "MAX_POP300": 874827.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 217.0, "MAX_AREAKM": 217.0, "MIN_AREAMI": 84.0, "MAX_AREAMI": 84.0, "MIN_PERKM": 174.0, "MAX_PERKM": 174.0, "MIN_PERMI": 108.0, "MAX_PERMI": 108.0, "MIN_BBXMIN": 23.208333, "MAX_BBXMIN": 23.208333, "MIN_BBXMAX": 23.45, "MAX_BBXMAX": 23.45, "MIN_BBYMIN": 42.575, "MAX_BBYMIN": 42.575, "MIN_BBYMAX": 42.8, "MAX_BBYMAX": 42.8, "MEAN_BBXC": 23.328319, "MEAN_BBYC": 42.68234, "COMPARE": 0, "GN_ASCII": "Sofia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 42.0, "GN_POP": 1152556.0, "ELEVATION": null, "GTOPO30": 558.0, "TIMEZONE": "Europe/Sofia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": "Bulgaria", "UN_LAT": 42.7, "UN_LONG": 23.33, "POP1950": 522.0, "POP1955": 616.0, "POP1960": 708.0, "POP1965": 806.0, "POP1970": 888.0, "POP1975": 977.0, "POP1980": 1074.0, "POP1985": 1181.0, "POP1990": 1191.0, "POP1995": 1168.0, "POP2000": 1128.0, "POP2005": 1166.0, "POP2010": 1185.0, "POP2015": 1212.0, "POP2020": 1233.0, "POP2025": 1236.0, "POP2050": 1236.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [23.314708, 42.685295]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Minsk", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Minsk", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Belarus", "SOV_A3": "BLR", "ADM0NAME": "Belarus", "ADM0_A3": "BLR", "ADM1NAME": "Minsk", "ISO_A2": "BY", "NOTE": null, "LATITUDE": 53.899977, "LONGITUDE": 27.566627, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1805000, "POP_MIN": 1577138, "POP_OTHER": 1557919, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 625144.0, "MEGANAME": "Minsk", "LS_NAME": "Minsk", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1577138.0, "MAX_POP20": 1577138.0, "MAX_POP50": 1577138.0, "MAX_POP300": 1577138.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 211.0, "MAX_AREAKM": 211.0, "MIN_AREAMI": 82.0, "MAX_AREAMI": 82.0, "MIN_PERKM": 196.0, "MAX_PERKM": 196.0, "MIN_PERMI": 122.0, "MAX_PERMI": 122.0, "MIN_BBXMIN": 27.408333, "MAX_BBXMIN": 27.408333, "MIN_BBXMAX": 27.716667, "MAX_BBXMAX": 27.716667, "MIN_BBYMIN": 53.8, "MAX_BBYMIN": 53.8, "MIN_BBYMAX": 53.983333, "MAX_BBYMAX": 53.983333, "MEAN_BBXC": 27.562159, "MEAN_BBYC": 53.893169, "COMPARE": 0, "GN_ASCII": "Minsk", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 1742124.0, "ELEVATION": null, "GTOPO30": 199.0, "TIMEZONE": "Europe/Minsk", "GEONAMESNO": "GeoNames match general.", "UN_FID": 4, "UN_ADM0": "Belarus", "UN_LAT": 53.89, "UN_LONG": 27.57, "POP1950": 284.0, "POP1955": 414.0, "POP1960": 551.0, "POP1965": 719.0, "POP1970": 932.0, "POP1975": 1120.0, "POP1980": 1318.0, "POP1985": 1474.0, "POP1990": 1607.0, "POP1995": 1649.0, "POP2000": 1700.0, "POP2005": 1775.0, "POP2010": 1805.0, "POP2015": 1846.0, "POP2020": 1879.0, "POP2025": 1883.0, "POP2050": 1883.0, "CITYALT": null, "clustered:unrelated": 0.31017571790239495}, "geometry": {"type": "Point", "coordinates": [27.564681, 53.901923]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Thimphu", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Thimphu", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bhutan", "SOV_A3": "BTN", "ADM0NAME": "Bhutan", "ADM0_A3": "BTN", "ADM1NAME": "Thimphu", "ISO_A2": "BT", "NOTE": null, "LATITUDE": 27.472986, "LONGITUDE": 89.639014, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 98676, "POP_MIN": 79185, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 1252416.0, "MEGANAME": null, "LS_NAME": "Thimphu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274538.0, "MAX_POP20": 274538.0, "MAX_POP50": 275382.0, "MAX_POP300": 275382.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 37.0, "MAX_AREAKM": 38.0, "MIN_AREAMI": 14.0, "MAX_AREAMI": 15.0, "MIN_PERKM": 65.0, "MAX_PERKM": 68.0, "MIN_PERMI": 40.0, "MAX_PERMI": 42.0, "MIN_BBXMIN": 89.591667, "MAX_BBXMIN": 89.591667, "MIN_BBXMAX": 89.675, "MAX_BBXMAX": 89.683333, "MIN_BBYMIN": 27.408333, "MAX_BBYMIN": 27.408333, "MIN_BBYMAX": 27.558333, "MAX_BBYMAX": 27.558333, "MEAN_BBXC": 89.637539, "MEAN_BBYC": 27.477943, "COMPARE": 0, "GN_ASCII": "Thimphu", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 20.0, "GN_POP": 98676.0, "ELEVATION": 2320.0, "GTOPO30": 2737.0, "TIMEZONE": "Asia/Thimphu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [89.639014, 27.472985]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Gaborone", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Gaborone", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Botswana", "SOV_A3": "BWA", "ADM0NAME": "Botswana", "ADM0_A3": "BWA", "ADM1NAME": "South-East", "ISO_A2": "BW", "NOTE": null, "LATITUDE": -24.646313, "LONGITUDE": 25.911948, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 208411, "POP_MIN": 159243, "POP_OTHER": 158896, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 933773.0, "MEGANAME": null, "LS_NAME": "Gaborone", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 159243.0, "MAX_POP20": 159243.0, "MAX_POP50": 159243.0, "MAX_POP300": 159243.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 72.0, "MAX_AREAKM": 72.0, "MIN_AREAMI": 28.0, "MAX_AREAMI": 28.0, "MIN_PERKM": 59.0, "MAX_PERKM": 59.0, "MIN_PERMI": 37.0, "MAX_PERMI": 37.0, "MIN_BBXMIN": 25.858333, "MAX_BBXMIN": 25.858333, "MIN_BBXMAX": 25.991667, "MAX_BBXMAX": 25.991667, "MIN_BBYMIN": -24.7, "MAX_BBYMIN": -24.7, "MIN_BBYMAX": -24.6, "MAX_BBYMAX": -24.6, "MEAN_BBXC": 25.925091, "MEAN_BBYC": -24.656793, "COMPARE": 0, "GN_ASCII": "Gaborone", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 208411.0, "ELEVATION": null, "GTOPO30": 1006.0, "TIMEZONE": "Africa/Gaborone", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5188528922848672}, "geometry": {"type": "Point", "coordinates": [25.911947, -24.646313]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Canberra", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Canberra", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Australian Capital Territory", "ISO_A2": "AU", "NOTE": null, "LATITUDE": -35.283029, "LONGITUDE": 149.129026, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 327700, "POP_MIN": 234032, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 2172517.0, "MEGANAME": null, "LS_NAME": "Canberra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 234032.0, "MAX_POP20": 244896.0, "MAX_POP50": 244896.0, "MAX_POP300": 244896.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 226.0, "MAX_AREAKM": 251.0, "MIN_AREAMI": 87.0, "MAX_AREAMI": 97.0, "MIN_PERKM": 175.0, "MAX_PERKM": 202.0, "MIN_PERMI": 109.0, "MAX_PERMI": 126.0, "MIN_BBXMIN": 149.0, "MAX_BBXMIN": 149.0, "MIN_BBXMAX": 149.2, "MAX_BBXMAX": 149.2, "MIN_BBYMIN": -35.483333, "MAX_BBYMIN": -35.455764, "MIN_BBYMAX": -35.183333, "MAX_BBYMAX": -35.183333, "MEAN_BBXC": 149.094107, "MEAN_BBYC": -35.309627, "COMPARE": 0, "GN_ASCII": "Canberra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 327700.0, "ELEVATION": null, "GTOPO30": 609.0, "TIMEZONE": "Australia/Sydney", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5086808177811907}, "geometry": {"type": "Point", "coordinates": [149.129026, -35.283028]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Ouagadougou", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ouagadougou", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Burkina Faso", "SOV_A3": "BFA", "ADM0NAME": "Burkina Faso", "ADM0_A3": "BFA", "ADM1NAME": "Kadiogo", "ISO_A2": "BF", "NOTE": null, "LATITUDE": 12.370316, "LONGITUDE": -1.524724, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1149000, "POP_MIN": 835457, "POP_OTHER": 713874, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2357048.0, "MEGANAME": "Ouagadougou", "LS_NAME": "Ouagadougou", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 835457.0, "MAX_POP20": 835457.0, "MAX_POP50": 835457.0, "MAX_POP300": 835457.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 236.0, "MAX_AREAKM": 236.0, "MIN_AREAMI": 91.0, "MAX_AREAMI": 91.0, "MIN_PERKM": 133.0, "MAX_PERKM": 133.0, "MIN_PERMI": 83.0, "MAX_PERMI": 83.0, "MIN_BBXMIN": -1.616667, "MAX_BBXMIN": -1.616667, "MIN_BBXMAX": -1.433333, "MAX_BBXMAX": -1.433333, "MIN_BBYMIN": 12.275, "MAX_BBYMIN": 12.275, "MIN_BBYMAX": 12.483333, "MAX_BBYMAX": 12.483333, "MEAN_BBXC": -1.521746, "MEAN_BBYC": 12.365975, "COMPARE": 0, "GN_ASCII": "Ouagadougou", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 53.0, "GN_POP": 1086505.0, "ELEVATION": null, "GTOPO30": 307.0, "TIMEZONE": "Africa/Ouagadougou", "GEONAMESNO": "GeoNames match general.", "UN_FID": 578, "UN_ADM0": "Burkina Faso", "UN_LAT": 12.48, "UN_LONG": -1.67, "POP1950": 33.0, "POP1955": 46.0, "POP1960": 59.0, "POP1965": 82.0, "POP1970": 111.0, "POP1975": 149.0, "POP1980": 257.0, "POP1985": 424.0, "POP1990": 537.0, "POP1995": 667.0, "POP2000": 828.0, "POP2005": 1044.0, "POP2010": 1149.0, "POP2015": 1324.0, "POP2020": 1676.0, "POP2025": 2111.0, "POP2050": 2632.0, "CITYALT": null, "clustered:unrelated": 0.2733558486312637}, "geometry": {"type": "Point", "coordinates": [-1.526669, 12.372261]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Sarajevo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sarajevo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bosnia and Herzegovina", "SOV_A3": "BIH", "ADM0NAME": "Bosnia and Herzegovina", "ADM0_A3": "BIH", "ADM1NAME": "Sarajevo", "ISO_A2": "BA", "NOTE": null, "LATITUDE": 43.850022, "LONGITUDE": 18.383002, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 696731, "POP_MIN": 628902, "POP_OTHER": 627065, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3191281.0, "MEGANAME": null, "LS_NAME": "Sarajevo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 628902.0, "MAX_POP20": 628902.0, "MAX_POP50": 628902.0, "MAX_POP300": 628902.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 104.0, "MAX_AREAKM": 104.0, "MIN_AREAMI": 40.0, "MAX_AREAMI": 40.0, "MIN_PERKM": 112.0, "MAX_PERKM": 112.0, "MIN_PERMI": 70.0, "MAX_PERMI": 70.0, "MIN_BBXMIN": 18.216667, "MAX_BBXMIN": 18.216667, "MIN_BBXMAX": 18.466667, "MAX_BBXMAX": 18.466667, "MIN_BBYMIN": 43.783333, "MAX_BBYMIN": 43.783333, "MIN_BBYMAX": 43.9, "MAX_BBYMAX": 43.9, "MEAN_BBXC": 18.351272, "MEAN_BBYC": 43.846183, "COMPARE": 0, "GN_ASCII": "Sarajevo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 696731.0, "ELEVATION": null, "GTOPO30": 545.0, "TIMEZONE": "Europe/Sarajevo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.2678933673892613}, "geometry": {"type": "Point", "coordinates": [18.383001, 43.850022]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Naypyidaw", "NAMEPAR": null, "NAMEALT": "Nay Pyi Taw", "DIFFASCII": 0, "NAMEASCII": "Naypyidaw", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Mandalay", "ISO_A2": "MM", "NOTE": null, "LATITUDE": 19.766557, "LONGITUDE": 96.118619, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 930000, "POP_MIN": 194824, "POP_OTHER": 0, "RANK_MAX": 11, "RANK_MIN": 9, "GEONAMEID": 6611854.0, "MEGANAME": "Nay Pyi Taw", "LS_NAME": "Naypyidaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 194824.0, "MAX_POP20": 194824.0, "MAX_POP50": 194824.0, "MAX_POP300": 194824.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 89.0, "MAX_AREAKM": 89.0, "MIN_AREAMI": 34.0, "MAX_AREAMI": 34.0, "MIN_PERKM": 149.0, "MAX_PERKM": 149.0, "MIN_PERMI": 93.0, "MAX_PERMI": 93.0, "MIN_BBXMIN": 96.141667, "MAX_BBXMIN": 96.141667, "MIN_BBXMAX": 96.275, "MAX_BBXMAX": 96.275, "MIN_BBYMIN": 19.633333, "MAX_BBYMIN": 19.633333, "MIN_BBYMAX": 19.783333, "MAX_BBYMAX": 19.783333, "MEAN_BBXC": 96.205833, "MEAN_BBYC": 19.720606, "COMPARE": 0, "GN_ASCII": "Nay Pyi Taw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 8.0, "GN_POP": null, "ELEVATION": null, "GTOPO30": 108.0, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 2, "UN_ADM0": "Myanmar", "UN_LAT": 19.75, "UN_LONG": 96.1, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": 57.0, "POP2010": 930.0, "POP2015": 1024.0, "POP2020": 1177.0, "POP2025": 1321.0, "POP2050": 1461.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [96.116672, 19.768502]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nukualofa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nukualofa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Tonga", "SOV_A3": "TON", "ADM0NAME": "Tonga", "ADM0_A3": "TON", "ADM1NAME": null, "ISO_A2": "TO", "NOTE": null, "LATITUDE": -21.138512, "LONGITUDE": -175.220564, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 42620, "POP_MIN": 23658, "POP_OTHER": 42620, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 4032402.0, "MEGANAME": null, "LS_NAME": "Nukualofa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 42620.0, "MAX_POP20": 42620.0, "MAX_POP50": 42620.0, "MAX_POP300": 42620.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 15.0, "MAX_AREAKM": 15.0, "MIN_AREAMI": 6.0, "MAX_AREAMI": 6.0, "MIN_PERKM": 27.0, "MAX_PERKM": 27.0, "MIN_PERMI": 17.0, "MAX_PERMI": 17.0, "MIN_BBXMIN": -175.233333, "MAX_BBXMIN": -175.233333, "MIN_BBXMAX": -175.166667, "MAX_BBXMAX": -175.166667, "MIN_BBYMIN": -21.166667, "MAX_BBYMIN": -21.166667, "MIN_BBYMAX": -21.125, "MAX_BBYMAX": -21.125, "MEAN_BBXC": -175.206798, "MEAN_BBYC": -21.142325, "COMPARE": 0, "GN_ASCII": "Nuku`alofa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 22400.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Pacific/Tongatapu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-175.220564, -21.138512]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Hargeysa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Hargeysa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Somaliland", "SOV_A3": "SOL", "ADM0NAME": "Somaliland", "ADM0_A3": "SOL", "ADM1NAME": null, "ISO_A2": "-99", "NOTE": null, "LATITUDE": 9.560022, "LONGITUDE": 44.06531, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 477876, "POP_MIN": 247018, "POP_OTHER": 247018, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 57289.0, "MEGANAME": null, "LS_NAME": "Hargeysa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 247018.0, "MAX_POP20": 247018.0, "MAX_POP50": 247018.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 40.0, "MAX_AREAKM": 40.0, "MIN_AREAMI": 15.0, "MAX_AREAMI": 15.0, "MIN_PERKM": 37.0, "MAX_PERKM": 37.0, "MIN_PERMI": 23.0, "MAX_PERMI": 23.0, "MIN_BBXMIN": 44.025, "MAX_BBXMIN": 44.025, "MIN_BBXMAX": 44.1, "MAX_BBXMAX": 44.1, "MIN_BBYMIN": 9.516667, "MAX_BBYMIN": 9.516667, "MIN_BBYMAX": 9.591667, "MAX_BBYMAX": 9.591667, "MEAN_BBXC": 44.06445, "MEAN_BBYC": 9.557004, "COMPARE": 0, "GN_ASCII": "Hargeysa", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 20.0, "GN_POP": 477876.0, "ELEVATION": null, "GTOPO30": 1247.0, "TIMEZONE": "Africa/Mogadishu", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [44.06531, 9.560022]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Victoria", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Victoria", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Seychelles", "SOV_A3": "SYC", "ADM0NAME": "Seychelles", "ADM0_A3": "SYC", "ADM1NAME": null, "ISO_A2": "SC", "NOTE": null, "LATITUDE": -4.616632, "LONGITUDE": 55.44999, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 33576, "POP_MIN": 22881, "POP_OTHER": 33737, "RANK_MAX": 7, "RANK_MIN": 7, "GEONAMEID": 241131.0, "MEGANAME": null, "LS_NAME": "Victoria4", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 33576.0, "MAX_POP20": 33576.0, "MAX_POP50": 33576.0, "MAX_POP300": 33576.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 15.0, "MAX_AREAKM": 15.0, "MIN_AREAMI": 6.0, "MAX_AREAMI": 6.0, "MIN_PERKM": 26.0, "MAX_PERKM": 26.0, "MIN_PERMI": 16.0, "MAX_PERMI": 16.0, "MIN_BBXMIN": 55.416667, "MAX_BBXMIN": 55.416667, "MIN_BBXMAX": 55.475, "MAX_BBXMAX": 55.475, "MIN_BBYMIN": -4.65, "MAX_BBYMIN": -4.65, "MIN_BBYMAX": -4.6, "MAX_BBYMAX": -4.6, "MEAN_BBXC": 55.45, "MEAN_BBYC": -4.626389, "COMPARE": 0, "GN_ASCII": "Victoria", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 22881.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Indian/Mahe", "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.7522979971549657}, "geometry": {"type": "Point", "coordinates": [55.449989, -4.616631]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Sao Tome", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sao Tome", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Sao Tome and Principe", "SOV_A3": "STP", "ADM0NAME": "Sao Tome and Principe", "ADM0_A3": "STP", "ADM1NAME": null, "ISO_A2": "ST", "NOTE": null, "LATITUDE": 0.333402, "LONGITUDE": 6.733325, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 88219, "POP_MIN": 56166, "POP_OTHER": 88219, "RANK_MAX": 8, "RANK_MIN": 8, "GEONAMEID": 3388092.0, "MEGANAME": null, "LS_NAME": "Sao Tome", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88219.0, "MAX_POP20": 88219.0, "MAX_POP50": 88219.0, "MAX_POP300": 88219.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 32.0, "MAX_AREAKM": 32.0, "MIN_AREAMI": 12.0, "MAX_AREAMI": 12.0, "MIN_PERKM": 44.0, "MAX_PERKM": 44.0, "MIN_PERMI": 28.0, "MAX_PERMI": 28.0, "MIN_BBXMIN": 6.691667, "MAX_BBXMIN": 6.691667, "MIN_BBXMAX": 6.75, "MAX_BBXMAX": 6.75, "MIN_BBYMIN": 0.3, "MAX_BBYMIN": 0.3, "MIN_BBYMAX": 0.391667, "MAX_BBYMAX": 0.391667, "MEAN_BBXC": 6.719032, "MEAN_BBYC": 0.338176, "COMPARE": 0, "GN_ASCII": "Sao Tome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 22.0, "GN_POP": 6137.0, "ELEVATION": null, "GTOPO30": 151.0, "TIMEZONE": "America/Fortaleza", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [6.733325, 0.333402]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Apia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Apia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Samoa", "SOV_A3": "WSM", "ADM0NAME": "Samoa", "ADM0_A3": "WSM", "ADM1NAME": null, "ISO_A2": "WS", "NOTE": null, "LATITUDE": -13.841545, "LONGITUDE": -171.738642, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 61916, "POP_MIN": 37708, "POP_OTHER": 0, "RANK_MAX": 8, "RANK_MIN": 7, "GEONAMEID": 3689793.0, "MEGANAME": null, "LS_NAME": "Apia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 61916.0, "MAX_POP20": 61916.0, "MAX_POP50": 61916.0, "MAX_POP300": 61916.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 39.0, "MAX_AREAKM": 39.0, "MIN_AREAMI": 15.0, "MAX_AREAMI": 15.0, "MIN_PERKM": 51.0, "MAX_PERKM": 51.0, "MIN_PERMI": 32.0, "MAX_PERMI": 32.0, "MIN_BBXMIN": -171.825, "MAX_BBXMIN": -171.825, "MIN_BBXMAX": -171.716667, "MAX_BBXMAX": -171.716667, "MIN_BBYMIN": -13.866667, "MAX_BBYMIN": -13.866667, "MIN_BBYMAX": -13.8, "MAX_BBYMAX": -13.8, "MEAN_BBXC": -171.781117, "MEAN_BBYC": -13.837855, "COMPARE": 0, "GN_ASCII": "Apia", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 24.0, "GN_POP": 6940.0, "ELEVATION": null, "GTOPO30": 1561.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-171.738641, -13.841545]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Valletta", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Valletta", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Malta", "SOV_A3": "MLT", "ADM0NAME": "Malta", "ADM0_A3": "MLT", "ADM1NAME": null, "ISO_A2": "MT", "NOTE": null, "LATITUDE": 35.899732, "LONGITUDE": 14.514711, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 368250, "POP_MIN": 6966, "POP_OTHER": 336174, "RANK_MAX": 10, "RANK_MIN": 5, "GEONAMEID": 2562305.0, "MEGANAME": null, "LS_NAME": "Valletta", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 336921.0, "MAX_POP20": 336921.0, "MAX_POP50": 336921.0, "MAX_POP300": 336921.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 106.0, "MAX_AREAKM": 106.0, "MIN_AREAMI": 41.0, "MAX_AREAMI": 41.0, "MIN_PERKM": 87.0, "MAX_PERKM": 87.0, "MIN_PERMI": 54.0, "MAX_PERMI": 54.0, "MIN_BBXMIN": 14.408333, "MAX_BBXMIN": 14.408333, "MIN_BBXMAX": 14.55, "MAX_BBXMAX": 14.55, "MIN_BBYMIN": 35.816667, "MAX_BBYMIN": 35.816667, "MIN_BBYMAX": 35.941667, "MAX_BBYMAX": 35.941667, "MEAN_BBXC": 14.483034, "MEAN_BBYC": 35.881672, "COMPARE": 0, "GN_ASCII": "Valletta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 6794.0, "ELEVATION": null, "GTOPO30": 90.0, "TIMEZONE": "Europe/Malta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [14.51471, 35.899732]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Male", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Male", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Maldives", "SOV_A3": "MDV", "ADM0NAME": "Maldives", "ADM0_A3": "MDV", "ADM1NAME": null, "ISO_A2": "MV", "NOTE": null, "LATITUDE": 4.166708, "LONGITUDE": 73.499947, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 112927, "POP_MIN": 103693, "POP_OTHER": 0, "RANK_MAX": 9, "RANK_MIN": 9, "GEONAMEID": 3174186.0, "MEGANAME": null, "LS_NAME": "Male", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 112927.0, "MAX_POP20": 112927.0, "MAX_POP50": 112927.0, "MAX_POP300": 112927.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 3.0, "MAX_AREAKM": 3.0, "MIN_AREAMI": 1.0, "MAX_AREAMI": 1.0, "MIN_PERKM": 7.0, "MAX_PERKM": 7.0, "MIN_PERMI": 5.0, "MAX_PERMI": 5.0, "MIN_BBXMIN": 73.5, "MAX_BBXMIN": 73.5, "MIN_BBXMAX": 73.516667, "MAX_BBXMAX": 73.516667, "MIN_BBYMIN": 4.166667, "MAX_BBYMIN": 4.166667, "MIN_BBYMAX": 4.183333, "MAX_BBYMAX": 4.183333, "MEAN_BBXC": 73.508333, "MEAN_BBYC": 4.175, "COMPARE": 0, "GN_ASCII": "Male", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 17.0, "GN_POP": 2138.0, "ELEVATION": null, "GTOPO30": 672.0, "TIMEZONE": "Europe/Rome", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.5279082893192222}, "geometry": {"type": "Point", "coordinates": [73.499947, 4.166708]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Jerusalem", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Jerusalem", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto capita", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Jerusalem", "ISO_A2": "IL", "NOTE": null, "LATITUDE": 31.778408, "LONGITUDE": 35.206626, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1029300, "POP_MIN": 801000, "POP_OTHER": 1072567, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 281184.0, "MEGANAME": null, "LS_NAME": "Jerusalem", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1073782.0, "MAX_POP20": 1073782.0, "MAX_POP50": 1073782.0, "MAX_POP300": 1073782.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 246.0, "MAX_AREAKM": 246.0, "MIN_AREAMI": 95.0, "MAX_AREAMI": 95.0, "MIN_PERKM": 239.0, "MAX_PERKM": 239.0, "MIN_PERMI": 149.0, "MAX_PERMI": 149.0, "MIN_BBXMIN": 35.1, "MAX_BBXMIN": 35.1, "MIN_BBXMAX": 35.316667, "MAX_BBXMAX": 35.316667, "MIN_BBYMIN": 31.683333, "MAX_BBYMIN": 31.683333, "MIN_BBYMAX": 31.991667, "MAX_BBYMAX": 31.991667, "MEAN_BBXC": 35.210651, "MEAN_BBYC": 31.809862, "COMPARE": 0, "GN_ASCII": "Jerusalem", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 6.0, "GN_POP": 714000.0, "ELEVATION": null, "GTOPO30": 795.0, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [35.206625, 31.778407]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Praia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Praia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Cape Verde", "SOV_A3": "CPV", "ADM0NAME": "Cape Verde", "ADM0_A3": "CPV", "ADM1NAME": null, "ISO_A2": "CV", "NOTE": null, "LATITUDE": 14.916698, "LONGITUDE": -23.516689, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 113364, "POP_MIN": 88859, "POP_OTHER": 89205, "RANK_MAX": 9, "RANK_MIN": 8, "GEONAMEID": 3374333.0, "MEGANAME": null, "LS_NAME": "Praia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 88859.0, "MAX_POP20": 88859.0, "MAX_POP50": 88859.0, "MAX_POP300": 88859.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 37.0, "MAX_AREAKM": 37.0, "MIN_AREAMI": 14.0, "MAX_AREAMI": 14.0, "MIN_PERKM": 40.0, "MAX_PERKM": 40.0, "MIN_PERMI": 25.0, "MAX_PERMI": 25.0, "MIN_BBXMIN": -23.541667, "MAX_BBXMIN": -23.541667, "MIN_BBXMAX": -23.483333, "MAX_BBXMAX": -23.483333, "MIN_BBYMIN": 14.9, "MAX_BBYMIN": 14.9, "MIN_BBYMAX": 14.983333, "MAX_BBYMAX": 14.983333, "MEAN_BBXC": -23.514907, "MEAN_BBYC": 14.938056, "COMPARE": 0, "GN_ASCII": "Praia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 113364.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Atlantic/Cape_Verde", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-23.516688, 14.916698]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nassau", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nassau", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Bahamas, The", "SOV_A3": "BHS", "ADM0NAME": "The Bahamas", "ADM0_A3": "BHS", "ADM1NAME": null, "ISO_A2": "BS", "NOTE": null, "LATITUDE": 25.08339, "LONGITUDE": -77.350044, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 227940, "POP_MIN": 160966, "POP_OTHER": 0, "RANK_MAX": 10, "RANK_MIN": 9, "GEONAMEID": 3571824.0, "MEGANAME": null, "LS_NAME": "Nassau", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 160966.0, "MAX_POP20": 160966.0, "MAX_POP50": 160966.0, "MAX_POP300": 160966.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 84.0, "MAX_AREAKM": 84.0, "MIN_AREAMI": 32.0, "MAX_AREAMI": 32.0, "MIN_PERKM": 66.0, "MAX_PERKM": 66.0, "MIN_PERMI": 41.0, "MAX_PERMI": 41.0, "MIN_BBXMIN": -77.4, "MAX_BBXMIN": -77.4, "MIN_BBXMAX": -77.258333, "MAX_BBXMAX": -77.258333, "MIN_BBYMIN": 25.0, "MAX_BBYMIN": 25.0, "MIN_BBYMAX": 25.091667, "MAX_BBYMAX": 25.091667, "MEAN_BBXC": -77.335571, "MEAN_BBYC": 25.04483, "COMPARE": 0, "GN_ASCII": "Nassau", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 23.0, "GN_POP": 227940.0, "ELEVATION": null, "GTOPO30": 3.0, "TIMEZONE": "America/Nassau", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-77.350043, 25.08339]}} +{"type": "Feature", "properties": {"SCALERANK": 3, "NATSCALE": 110, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Nicosia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nicosia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Capital of both", "WORLDCITY": null, "MEGACITY": 0, "SOV0NAME": "Cyprus", "SOV_A3": "CYP", "ADM0NAME": "Cyprus", "ADM0_A3": "CYP", "ADM1NAME": null, "ISO_A2": "CY", "NOTE": null, "LATITUDE": 35.166676, "LONGITUDE": 33.366635, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 224300, "POP_MIN": 200452, "POP_OTHER": 222985, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 146268.0, "MEGANAME": null, "LS_NAME": "Nicosia", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 224300.0, "MAX_POP20": 224300.0, "MAX_POP50": 224300.0, "MAX_POP300": 224300.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 128.0, "MAX_AREAKM": 128.0, "MIN_AREAMI": 49.0, "MAX_AREAMI": 49.0, "MIN_PERKM": 109.0, "MAX_PERKM": 109.0, "MIN_PERMI": 68.0, "MAX_PERMI": 68.0, "MIN_BBXMIN": 33.275, "MAX_BBXMIN": 33.275, "MIN_BBXMAX": 33.425, "MAX_BBXMAX": 33.425, "MIN_BBYMIN": 35.041667, "MAX_BBYMIN": 35.041667, "MIN_BBYMAX": 35.225, "MAX_BBYMAX": 35.225, "MEAN_BBXC": 33.352244, "MEAN_BBYC": 35.15, "COMPARE": 0, "GN_ASCII": "Nicosia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 200452.0, "ELEVATION": null, "GTOPO30": 128.0, "TIMEZONE": "Asia/Nicosia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [33.366634, 35.166676]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Hanoi", "NAMEPAR": null, "NAMEALT": "H\u00e0 Noi", "DIFFASCII": 0, "NAMEASCII": "Hanoi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Vietnam", "SOV_A3": "VNM", "ADM0NAME": "Vietnam", "ADM0_A3": "VNM", "ADM1NAME": "Th\u00e1i Nguy\u00ean", "ISO_A2": "VN", "NOTE": null, "LATITUDE": 21.033327, "LONGITUDE": 105.850014, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4378000, "POP_MIN": 1431270, "POP_OTHER": 5466347, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1581130.0, "MEGANAME": "H\u00e0 Noi", "LS_NAME": "Hanoi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5620806.0, "MAX_POP20": 7346227.0, "MAX_POP50": 16406759.0, "MAX_POP300": 23700631.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 2512.0, "MAX_AREAKM": 14049.0, "MIN_AREAMI": 970.0, "MAX_AREAMI": 5424.0, "MIN_PERKM": 1175.0, "MAX_PERKM": 10267.0, "MIN_PERMI": 730.0, "MAX_PERMI": 6380.0, "MIN_BBXMIN": 104.975, "MAX_BBXMIN": 105.616287, "MIN_BBXMAX": 106.2294, "MAX_BBXMAX": 106.808333, "MIN_BBYMIN": 19.283333, "MAX_BBYMIN": 20.620237, "MIN_BBYMAX": 21.319209, "MAX_BBYMAX": 21.783333, "MEAN_BBXC": 105.892881, "MEAN_BBYC": 20.873406, "COMPARE": 0, "GN_ASCII": "Ha Noi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44.0, "GN_POP": 1431270.0, "ELEVATION": null, "GTOPO30": 26.0, "TIMEZONE": "Asia/Ho_Chi_Minh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 451, "UN_ADM0": "Viet Nam", "UN_LAT": 21.03, "UN_LONG": 105.82, "POP1950": 280.0, "POP1955": 425.0, "POP1960": 644.0, "POP1965": 917.0, "POP1970": 1307.0, "POP1975": 1884.0, "POP1980": 2606.0, "POP1985": 2854.0, "POP1990": 3126.0, "POP1995": 3424.0, "POP2000": 3752.0, "POP2005": 4170.0, "POP2010": 4378.0, "POP2015": 4723.0, "POP2020": 5357.0, "POP2025": 6036.0, "POP2050": 6754.0, "CITYALT": "Hanoi"}, "geometry": {"type": "Point", "coordinates": [105.848068, 21.035273]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Ankara", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Ankara", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Ankara", "ISO_A2": "TR", "NOTE": null, "LATITUDE": 39.927239, "LONGITUDE": 32.864392, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716000, "POP_MIN": 3307379, "POP_OTHER": 3267576, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 323786.0, "MEGANAME": "Ankara", "LS_NAME": "Ankara", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3307379.0, "MAX_POP20": 3306823.0, "MAX_POP50": 3306823.0, "MAX_POP300": 3306823.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 531.0, "MAX_AREAKM": 534.0, "MIN_AREAMI": 205.0, "MAX_AREAMI": 206.0, "MIN_PERKM": 355.0, "MAX_PERKM": 365.0, "MIN_PERMI": 221.0, "MAX_PERMI": 227.0, "MIN_BBXMIN": 32.425, "MAX_BBXMIN": 32.425, "MIN_BBXMAX": 33.008333, "MAX_BBXMAX": 33.008333, "MIN_BBYMIN": 39.841667, "MAX_BBYMIN": 39.841667, "MIN_BBYMAX": 40.116667, "MAX_BBYMAX": 40.116667, "MEAN_BBXC": 32.753878, "MEAN_BBYC": 39.957843, "COMPARE": 0, "GN_ASCII": "Ankara", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 68.0, "GN_POP": 3517182.0, "ELEVATION": 850.0, "GTOPO30": 889.0, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 500, "UN_ADM0": "Turkey", "UN_LAT": 39.92, "UN_LONG": 32.85, "POP1950": 281.0, "POP1955": 439.0, "POP1960": 635.0, "POP1965": 954.0, "POP1970": 1341.0, "POP1975": 1709.0, "POP1980": 1891.0, "POP1985": 2213.0, "POP1990": 2561.0, "POP1995": 2842.0, "POP2000": 3179.0, "POP2005": 3572.0, "POP2010": 3716.0, "POP2015": 3908.0, "POP2020": 4178.0, "POP2025": 4403.0, "POP2050": 4589.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [32.862445, 39.929184]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Budapest", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Budapest", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Hungary", "SOV_A3": "HUN", "ADM0NAME": "Hungary", "ADM0_A3": "HUN", "ADM1NAME": "Budapest", "ISO_A2": "HU", "NOTE": null, "LATITUDE": 47.500006, "LONGITUDE": 19.083321, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1679000, "POP_MIN": 1679000, "POP_OTHER": 1718895, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3054643.0, "MEGANAME": "Budapest", "LS_NAME": "Budapest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1788020.0, "MAX_POP20": 1788020.0, "MAX_POP50": 1788020.0, "MAX_POP300": 1788020.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 556.0, "MAX_AREAKM": 556.0, "MIN_AREAMI": 215.0, "MAX_AREAMI": 215.0, "MIN_PERKM": 460.0, "MAX_PERKM": 460.0, "MIN_PERMI": 286.0, "MAX_PERMI": 286.0, "MIN_BBXMIN": 18.85, "MAX_BBXMIN": 18.85, "MIN_BBXMAX": 19.416667, "MAX_BBXMAX": 19.416667, "MIN_BBYMIN": 47.35, "MAX_BBYMIN": 47.35, "MIN_BBYMAX": 47.658333, "MAX_BBYMAX": 47.658333, "MEAN_BBXC": 19.106763, "MEAN_BBYC": 47.478602, "COMPARE": 0, "GN_ASCII": "Budapest", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 1696128.0, "ELEVATION": null, "GTOPO30": 100.0, "TIMEZONE": "Europe/Budapest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 211, "UN_ADM0": "Hungary", "UN_LAT": 47.51, "UN_LONG": 19.09, "POP1950": 1618.0, "POP1955": 1714.0, "POP1960": 1811.0, "POP1965": 1878.0, "POP1970": 1946.0, "POP1975": 2005.0, "POP1980": 2057.0, "POP1985": 2036.0, "POP1990": 2005.0, "POP1995": 1893.0, "POP2000": 1787.0, "POP2005": 1693.0, "POP2010": 1679.0, "POP2015": 1664.0, "POP2020": 1655.0, "POP2025": 1655.0, "POP2050": 1655.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [19.081374, 47.501952]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Sanaa", "NAMEPAR": null, "NAMEALT": "Sana'a'", "DIFFASCII": 0, "NAMEASCII": "Sanaa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Yemen", "SOV_A3": "YEM", "ADM0NAME": "Yemen", "ADM0_A3": "YEM", "ADM1NAME": "Amanat Al Asimah", "ISO_A2": "YE", "NOTE": null, "LATITUDE": 15.354733, "LONGITUDE": 44.206593, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2008000, "POP_MIN": 1835853, "POP_OTHER": 1742507, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 71137.0, "MEGANAME": "Sana'a'", "LS_NAME": "Sanaa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1835853.0, "MAX_POP20": 1835853.0, "MAX_POP50": 1835853.0, "MAX_POP300": 1835853.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 160.0, "MAX_AREAKM": 160.0, "MIN_AREAMI": 62.0, "MAX_AREAMI": 62.0, "MIN_PERKM": 132.0, "MAX_PERKM": 132.0, "MIN_PERMI": 82.0, "MAX_PERMI": 82.0, "MIN_BBXMIN": 44.15, "MAX_BBXMIN": 44.15, "MIN_BBXMAX": 44.258333, "MAX_BBXMAX": 44.258333, "MIN_BBYMIN": 15.266667, "MAX_BBYMIN": 15.266667, "MIN_BBYMAX": 15.508333, "MAX_BBYMAX": 15.508333, "MEAN_BBXC": 44.206615, "MEAN_BBYC": 15.376031, "COMPARE": 0, "GN_ASCII": "Sanaa", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 587, "UN_ADM0": "Yemen", "UN_LAT": 15.36, "UN_LONG": 44.2, "POP1950": 46.0, "POP1955": 58.0, "POP1960": 72.0, "POP1965": 89.0, "POP1970": 111.0, "POP1975": 141.0, "POP1980": 238.0, "POP1985": 402.0, "POP1990": 653.0, "POP1995": 1034.0, "POP2000": 1365.0, "POP2005": 1801.0, "POP2010": 2008.0, "POP2015": 2345.0, "POP2020": 2955.0, "POP2025": 3636.0, "POP2050": 4382.0, "CITYALT": "Sanaa"}, "geometry": {"type": "Point", "coordinates": [44.204647, 15.356679]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Bucharest", "NAMEPAR": "Bucuresti", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Bucharest", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Romania", "SOV_A3": "ROU", "ADM0NAME": "Romania", "ADM0_A3": "ROU", "ADM1NAME": "Bucharest", "ISO_A2": "RO", "NOTE": null, "LATITUDE": 44.433372, "LONGITUDE": 26.099947, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1942000, "POP_MIN": 1742194, "POP_OTHER": 1636574, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 683506.0, "MEGANAME": "Bucuresti", "LS_NAME": "Bucharest", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1742194.0, "MAX_POP20": 1742194.0, "MAX_POP50": 1742194.0, "MAX_POP300": 1742194.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 345.0, "MAX_AREAKM": 345.0, "MIN_AREAMI": 133.0, "MAX_AREAMI": 133.0, "MIN_PERKM": 357.0, "MAX_PERKM": 357.0, "MIN_PERMI": 222.0, "MAX_PERMI": 222.0, "MIN_BBXMIN": 25.866667, "MAX_BBXMIN": 25.866667, "MIN_BBXMAX": 26.25, "MAX_BBXMAX": 26.25, "MIN_BBYMIN": 44.316667, "MAX_BBYMIN": 44.316667, "MIN_BBYMAX": 44.641667, "MAX_BBYMAX": 44.641667, "MEAN_BBXC": 26.082182, "MEAN_BBYC": 44.44411, "COMPARE": 0, "GN_ASCII": "Bucuresti", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 1877155.0, "ELEVATION": null, "GTOPO30": 71.0, "TIMEZONE": "Europe/Bucharest", "GEONAMESNO": "GeoNames match general.", "UN_FID": 422, "UN_ADM0": "Romania", "UN_LAT": 44.43, "UN_LONG": 26.12, "POP1950": 652.0, "POP1955": 856.0, "POP1960": 1002.0, "POP1965": 1154.0, "POP1970": 1396.0, "POP1975": 1702.0, "POP1980": 1865.0, "POP1985": 1950.0, "POP1990": 2040.0, "POP1995": 2018.0, "POP2000": 1949.0, "POP2005": 1936.0, "POP2010": 1942.0, "POP2015": 1947.0, "POP2020": 1949.0, "POP2025": 1949.0, "POP2050": 1949.0, "CITYALT": "Bucharest"}, "geometry": {"type": "Point", "coordinates": [26.098, 44.435317]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Damascus", "NAMEPAR": null, "NAMEALT": "Dimashq", "DIFFASCII": 0, "NAMEASCII": "Damascus", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Syria", "SOV_A3": "SYR", "ADM0NAME": "Syria", "ADM0_A3": "SYR", "ADM1NAME": "Damascus", "ISO_A2": "SY", "NOTE": null, "LATITUDE": 33.500034, "LONGITUDE": 36.299996, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2466000, "POP_MIN": 2466000, "POP_OTHER": 3344577, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 170654.0, "MEGANAME": "Dimashq", "LS_NAME": "Damascus", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3398649.0, "MAX_POP20": 3865606.0, "MAX_POP50": 3865606.0, "MAX_POP300": 3865606.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 532.0, "MAX_AREAKM": 705.0, "MIN_AREAMI": 205.0, "MAX_AREAMI": 272.0, "MIN_PERKM": 608.0, "MAX_PERKM": 768.0, "MIN_PERMI": 378.0, "MAX_PERMI": 477.0, "MIN_BBXMIN": 36.05, "MAX_BBXMIN": 36.05, "MIN_BBXMAX": 36.474923, "MAX_BBXMAX": 36.55, "MIN_BBYMIN": 33.283333, "MAX_BBYMIN": 33.283333, "MIN_BBYMAX": 33.611711, "MAX_BBYMAX": 33.625, "MEAN_BBXC": 36.275119, "MEAN_BBYC": 33.474283, "COMPARE": 0, "GN_ASCII": "Damascus", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 493, "UN_ADM0": "Syrian Arab Republic", "UN_LAT": 33.49, "UN_LONG": 36.29, "POP1950": 367.0, "POP1955": 461.0, "POP1960": 579.0, "POP1965": 727.0, "POP1970": 914.0, "POP1975": 1122.0, "POP1980": 1376.0, "POP1985": 1546.0, "POP1990": 1691.0, "POP1995": 1849.0, "POP2000": 2044.0, "POP2005": 2330.0, "POP2010": 2466.0, "POP2015": 2675.0, "POP2020": 2981.0, "POP2025": 3293.0, "POP2050": 3605.0, "CITYALT": "Damascus", "clustered:unrelated": 0.6714069495836904}, "geometry": {"type": "Point", "coordinates": [36.29805, 33.501979]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Lisbon", "NAMEPAR": "Lisboa", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lisbon", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Portugal", "SOV_A3": "PRT", "ADM0NAME": "Portugal", "ADM0_A3": "PRT", "ADM1NAME": "Lisboa", "ISO_A2": "PT", "NOTE": null, "LATITUDE": 38.722723, "LONGITUDE": -9.144866, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 2812000, "POP_MIN": 517802, "POP_OTHER": 1795582, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2267057.0, "MEGANAME": "Lisboa", "LS_NAME": "Lisbon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1832316.0, "MAX_POP20": 1831921.0, "MAX_POP50": 1831921.0, "MAX_POP300": 1831921.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 506.0, "MAX_AREAKM": 508.0, "MIN_AREAMI": 196.0, "MAX_AREAMI": 196.0, "MIN_PERKM": 355.0, "MAX_PERKM": 360.0, "MIN_PERMI": 221.0, "MAX_PERMI": 224.0, "MIN_BBXMIN": -9.466667, "MAX_BBXMIN": -9.466667, "MIN_BBXMAX": -8.958333, "MAX_BBXMAX": -8.958333, "MIN_BBYMIN": 38.675, "MAX_BBYMIN": 38.675, "MIN_BBYMAX": 39.008333, "MAX_BBYMAX": 39.008333, "MEAN_BBXC": -9.232769, "MEAN_BBYC": 38.783256, "COMPARE": 0, "GN_ASCII": "Lisbon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14.0, "GN_POP": 517802.0, "ELEVATION": null, "GTOPO30": 56.0, "TIMEZONE": "Europe/Lisbon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 419, "UN_ADM0": "Portugal", "UN_LAT": 38.72, "UN_LONG": -9.12, "POP1950": 1304.0, "POP1955": 1405.0, "POP1960": 1514.0, "POP1965": 1657.0, "POP1970": 1817.0, "POP1975": 2103.0, "POP1980": 2449.0, "POP1985": 2518.0, "POP1990": 2537.0, "POP1995": 2600.0, "POP2000": 2672.0, "POP2005": 2762.0, "POP2010": 2812.0, "POP2015": 2890.0, "POP2020": 2996.0, "POP2025": 3058.0, "POP2050": 3086.0, "CITYALT": "Lisbon"}, "geometry": {"type": "Point", "coordinates": [-9.146812, 38.724668]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Khartoum", "NAMEPAR": null, "NAMEALT": "Al-Khartum", "DIFFASCII": 0, "NAMEASCII": "Khartoum", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Sudan", "SOV_A3": "SDN", "ADM0NAME": "Sudan", "ADM0_A3": "SDN", "ADM1NAME": "Khartoum", "ISO_A2": "SD", "NOTE": null, "LATITUDE": 15.588078, "LONGITUDE": 32.534179, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4754000, "POP_MIN": 1974647, "POP_OTHER": 2325931, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 379252.0, "MEGANAME": "Al-Khartum", "LS_NAME": "Khartoum", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2395309.0, "MAX_POP20": 2395309.0, "MAX_POP50": 2395309.0, "MAX_POP300": 4542697.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 348.0, "MAX_AREAKM": 630.0, "MIN_AREAMI": 134.0, "MAX_AREAMI": 243.0, "MIN_PERKM": 237.0, "MAX_PERKM": 424.0, "MIN_PERMI": 147.0, "MAX_PERMI": 263.0, "MIN_BBXMIN": 32.341667, "MAX_BBXMIN": 32.458333, "MIN_BBXMAX": 32.691667, "MAX_BBXMAX": 32.691667, "MIN_BBYMIN": 15.325, "MAX_BBYMIN": 15.325, "MIN_BBYMAX": 15.699422, "MAX_BBYMAX": 15.825, "MEAN_BBXC": 32.550462, "MEAN_BBYC": 15.559101, "COMPARE": 0, "GN_ASCII": "Khartoum", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 29.0, "GN_POP": 1974647.0, "ELEVATION": null, "GTOPO30": 378.0, "TIMEZONE": "Africa/Khartoum", "GEONAMESNO": "GeoNames match general.", "UN_FID": 466, "UN_ADM0": "Sudan", "UN_LAT": 15.55, "UN_LONG": 32.52, "POP1950": 183.0, "POP1955": 252.0, "POP1960": 347.0, "POP1965": 477.0, "POP1970": 657.0, "POP1975": 886.0, "POP1980": 1164.0, "POP1985": 1611.0, "POP1990": 2360.0, "POP1995": 3242.0, "POP2000": 3949.0, "POP2005": 4518.0, "POP2010": 4754.0, "POP2015": 5185.0, "POP2020": 6077.0, "POP2025": 7017.0, "POP2050": 7937.0, "CITYALT": "Khartoum", "clustered:unrelated": 0.08339976996617526}, "geometry": {"type": "Point", "coordinates": [32.532233, 15.590024]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Oslo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Oslo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Kingdom of Norway", "SOV_A3": "NOR", "ADM0NAME": "Norway", "ADM0_A3": "NOR", "ADM1NAME": "Oslo", "ISO_A2": "NO", "NOTE": null, "LATITUDE": 59.91669, "LONGITUDE": 10.749979, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 835000, "POP_MIN": 580000, "POP_OTHER": 701804, "RANK_MAX": 11, "RANK_MIN": 11, "GEONAMEID": 3143244.0, "MEGANAME": "Oslo", "LS_NAME": "Oslo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 731563.0, "MAX_POP20": 731563.0, "MAX_POP50": 762374.0, "MAX_POP300": 762374.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 329.0, "MAX_AREAKM": 362.0, "MIN_AREAMI": 127.0, "MAX_AREAMI": 140.0, "MIN_PERKM": 340.0, "MAX_PERKM": 390.0, "MIN_PERMI": 211.0, "MAX_PERMI": 243.0, "MIN_BBXMIN": 10.333333, "MAX_BBXMIN": 10.440355, "MIN_BBXMAX": 11.091667, "MAX_BBXMAX": 11.091667, "MIN_BBYMIN": 59.708333, "MAX_BBYMIN": 59.708333, "MIN_BBYMAX": 60.066667, "MAX_BBYMAX": 60.066667, "MEAN_BBXC": 10.756508, "MEAN_BBYC": 59.906118, "COMPARE": 0, "GN_ASCII": "Oslo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 580000.0, "ELEVATION": null, "GTOPO30": 11.0, "TIMEZONE": "Europe/Oslo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 397, "UN_ADM0": "Norway", "UN_LAT": 59.93, "UN_LONG": 10.71, "POP1950": 468.0, "POP1955": 533.0, "POP1960": 578.0, "POP1965": 610.0, "POP1970": 643.0, "POP1975": 644.0, "POP1980": 643.0, "POP1985": 662.0, "POP1990": 684.0, "POP1995": 729.0, "POP2000": 774.0, "POP2005": 816.0, "POP2010": 835.0, "POP2015": 858.0, "POP2020": 885.0, "POP2025": 909.0, "POP2050": 936.0, "CITYALT": null, "clustered:unrelated": 0.8057100835357961}, "geometry": {"type": "Point", "coordinates": [10.748033, 59.918636]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Warsaw", "NAMEPAR": "Warszawa", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Warsaw", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Poland", "SOV_A3": "POL", "ADM0NAME": "Poland", "ADM0_A3": "POL", "ADM1NAME": "Masovian", "ISO_A2": "PL", "NOTE": null, "LATITUDE": 52.250001, "LONGITUDE": 21.0, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1707000, "POP_MIN": 1702139, "POP_OTHER": 2012431, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 756135.0, "MEGANAME": "Warszawa", "LS_NAME": "Warsaw", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2129163.0, "MAX_POP20": 2129163.0, "MAX_POP50": 2129163.0, "MAX_POP300": 2129163.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 802.0, "MAX_AREAKM": 802.0, "MIN_AREAMI": 310.0, "MAX_AREAMI": 310.0, "MIN_PERKM": 759.0, "MAX_PERKM": 759.0, "MIN_PERMI": 471.0, "MAX_PERMI": 471.0, "MIN_BBXMIN": 20.666667, "MAX_BBXMIN": 20.666667, "MIN_BBXMAX": 21.358333, "MAX_BBXMAX": 21.358333, "MIN_BBYMIN": 52.033333, "MAX_BBYMIN": 52.033333, "MIN_BBYMAX": 52.433333, "MAX_BBYMAX": 52.433333, "MEAN_BBXC": 21.031458, "MEAN_BBYC": 52.230916, "COMPARE": 0, "GN_ASCII": "Warsaw", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 78.0, "GN_POP": 1702139.0, "ELEVATION": null, "GTOPO30": 94.0, "TIMEZONE": "Europe/Warsaw", "GEONAMESNO": "GeoNames match general.", "UN_FID": 418, "UN_ADM0": "Poland", "UN_LAT": 52.24, "UN_LONG": 21.01, "POP1950": 768.0, "POP1955": 942.0, "POP1960": 1119.0, "POP1965": 1212.0, "POP1970": 1300.0, "POP1975": 1444.0, "POP1980": 1565.0, "POP1985": 1596.0, "POP1990": 1628.0, "POP1995": 1652.0, "POP2000": 1666.0, "POP2005": 1693.0, "POP2010": 1707.0, "POP2015": 1724.0, "POP2020": 1735.0, "POP2025": 1736.0, "POP2050": 1736.0, "CITYALT": "Warsaw", "clustered:unrelated": 0.8426418369173254}, "geometry": {"type": "Point", "coordinates": [20.998053, 52.251946]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Pyongyang", "NAMEPAR": null, "NAMEALT": "P'yongyang", "DIFFASCII": 0, "NAMEASCII": "Pyongyang", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Korea, North", "SOV_A3": "PRK", "ADM0NAME": "North Korea", "ADM0_A3": "PRK", "ADM1NAME": "P'yongyang", "ISO_A2": "KP", "NOTE": null, "LATITUDE": 39.019439, "LONGITUDE": 125.754691, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3300000, "POP_MIN": 2498797, "POP_OTHER": 2483216, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1871859.0, "MEGANAME": "P'yongyang", "LS_NAME": "Pyongyang", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2498797.0, "MAX_POP20": 2498797.0, "MAX_POP50": 2498797.0, "MAX_POP300": 2498797.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 446.0, "MAX_AREAKM": 447.0, "MIN_AREAMI": 172.0, "MAX_AREAMI": 173.0, "MIN_PERKM": 510.0, "MAX_PERKM": 511.0, "MIN_PERMI": 317.0, "MAX_PERMI": 318.0, "MIN_BBXMIN": 125.608333, "MAX_BBXMIN": 125.608333, "MIN_BBXMAX": 125.891667, "MAX_BBXMAX": 125.891667, "MIN_BBYMIN": 38.825, "MAX_BBYMIN": 38.825, "MIN_BBYMAX": 39.191667, "MAX_BBYMAX": 39.191667, "MEAN_BBXC": 125.742428, "MEAN_BBYC": 38.996997, "COMPARE": 0, "GN_ASCII": "Pyongyang", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 3222000.0, "ELEVATION": null, "GTOPO30": 13.0, "TIMEZONE": "Asia/Pyongyang", "GEONAMESNO": "GeoNames match general.", "UN_FID": 327, "UN_ADM0": "Democratic People's Republic of Korea", "UN_LAT": 39.02, "UN_LONG": 125.75, "POP1950": 516.0, "POP1955": 577.0, "POP1960": 646.0, "POP1965": 769.0, "POP1970": 987.0, "POP1975": 1348.0, "POP1980": 1842.0, "POP1985": 2195.0, "POP1990": 2526.0, "POP1995": 2838.0, "POP2000": 3117.0, "POP2005": 3265.0, "POP2010": 3300.0, "POP2015": 3346.0, "POP2020": 3434.0, "POP2025": 3537.0, "POP2050": 3630.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [125.752744, 39.021384]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Dar es Salaam", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dar es Salaam", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto capita", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "United Republic of Tanzania", "SOV_A3": "TZA", "ADM0NAME": "Tanzania", "ADM0_A3": "TZA", "ADM1NAME": "Dar-Es-Salaam", "ISO_A2": "TZ", "NOTE": null, "LATITUDE": -6.800013, "LONGITUDE": 39.268342, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2930000, "POP_MIN": 2698652, "POP_OTHER": 2757835, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 160263.0, "MEGANAME": "Dar es Salaam", "LS_NAME": "Dar es Salaam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2757507.0, "MAX_POP20": 2757507.0, "MAX_POP50": 2757507.0, "MAX_POP300": 2757507.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 211.0, "MAX_AREAKM": 211.0, "MIN_AREAMI": 81.0, "MAX_AREAMI": 81.0, "MIN_PERKM": 153.0, "MAX_PERKM": 153.0, "MIN_PERMI": 95.0, "MAX_PERMI": 95.0, "MIN_BBXMIN": 39.15, "MAX_BBXMIN": 39.15, "MIN_BBXMAX": 39.325, "MAX_BBXMAX": 39.325, "MIN_BBYMIN": -6.933333, "MAX_BBYMIN": -6.933333, "MIN_BBYMAX": -6.725, "MAX_BBYMAX": -6.725, "MEAN_BBXC": 39.23918, "MEAN_BBYC": -6.833434, "COMPARE": 0, "GN_ASCII": "Dar es Salaam", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23.0, "GN_POP": 2698652.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Africa/Dar_es_Salaam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 523, "UN_ADM0": "United Republic of Tanzania", "UN_LAT": -6.81, "UN_LONG": 39.25, "POP1950": 67.0, "POP1955": 110.0, "POP1960": 162.0, "POP1965": 233.0, "POP1970": 357.0, "POP1975": 572.0, "POP1980": 836.0, "POP1985": 1046.0, "POP1990": 1316.0, "POP1995": 1668.0, "POP2000": 2116.0, "POP2005": 2679.0, "POP2010": 2930.0, "POP2015": 3319.0, "POP2020": 4020.0, "POP2025": 4804.0, "POP2050": 5688.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [39.266395, -6.798066]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dublin", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dublin", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Ireland", "SOV_A3": "IRL", "ADM0NAME": "Ireland", "ADM0_A3": "IRL", "ADM1NAME": "Dublin", "ISO_A2": "IE", "NOTE": null, "LATITUDE": 53.333061, "LONGITUDE": -6.248906, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1059000, "POP_MIN": 968976, "POP_OTHER": 22478, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2964574.0, "MEGANAME": "Dublin", "LS_NAME": "Dublin2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 968976.0, "MAX_POP20": 968976.0, "MAX_POP50": 968976.0, "MAX_POP300": 968976.0, "MAX_POP310": 968976.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 351.0, "MAX_AREAKM": 351.0, "MIN_AREAMI": 135.0, "MAX_AREAMI": 135.0, "MIN_PERKM": 250.0, "MAX_PERKM": 250.0, "MIN_PERMI": 155.0, "MAX_PERMI": 155.0, "MIN_BBXMIN": -6.533333, "MAX_BBXMIN": -6.533333, "MIN_BBXMAX": -6.041667, "MAX_BBXMAX": -6.041667, "MIN_BBYMIN": 53.175, "MAX_BBYMIN": 53.175, "MIN_BBYMAX": 53.433333, "MAX_BBYMAX": 53.433333, "MEAN_BBXC": -6.278983, "MEAN_BBYC": 53.329717, "COMPARE": 0, "GN_ASCII": "Dublin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 1024027.0, "ELEVATION": null, "GTOPO30": 9.0, "TIMEZONE": "Europe/Dublin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 302, "UN_ADM0": "Ireland", "UN_LAT": 53.34, "UN_LONG": -6.25, "POP1950": 626.0, "POP1955": 647.0, "POP1960": 661.0, "POP1965": 723.0, "POP1970": 771.0, "POP1975": 833.0, "POP1980": 903.0, "POP1985": 920.0, "POP1990": 916.0, "POP1995": 946.0, "POP2000": 989.0, "POP2005": 1037.0, "POP2010": 1059.0, "POP2015": 1098.0, "POP2020": 1177.0, "POP2025": 1257.0, "POP2050": 1332.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-6.250851, 53.335006]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Monrovia", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Monrovia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Liberia", "SOV_A3": "LBR", "ADM0NAME": "Liberia", "ADM0_A3": "LBR", "ADM1NAME": "Montserrado", "ISO_A2": "LR", "NOTE": null, "LATITUDE": 6.310557, "LONGITUDE": -10.804752, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1041000, "POP_MIN": 785662, "POP_OTHER": 806416, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2274895.0, "MEGANAME": "Monrovia", "LS_NAME": "Monrovia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 785662.0, "MAX_POP20": 781295.0, "MAX_POP50": 781295.0, "MAX_POP300": 781295.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 141.0, "MAX_AREAKM": 152.0, "MIN_AREAMI": 54.0, "MAX_AREAMI": 59.0, "MIN_PERKM": 164.0, "MAX_PERKM": 184.0, "MIN_PERMI": 102.0, "MAX_PERMI": 115.0, "MIN_BBXMIN": -10.816667, "MAX_BBXMIN": -10.816667, "MIN_BBXMAX": -10.658333, "MAX_BBXMAX": -10.658333, "MIN_BBYMIN": 6.225, "MAX_BBYMIN": 6.225, "MIN_BBYMAX": 6.4, "MAX_BBYMAX": 6.4, "MEAN_BBXC": -10.734923, "MEAN_BBYC": 6.317829, "COMPARE": 0, "GN_ASCII": "Monrovia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14.0, "GN_POP": 939524.0, "ELEVATION": null, "GTOPO30": 30.0, "TIMEZONE": "Africa/Monrovia", "GEONAMESNO": "GeoNames match general.", "UN_FID": 342, "UN_ADM0": "Liberia", "UN_LAT": 6.3, "UN_LONG": -10.79, "POP1950": 15.0, "POP1955": 34.0, "POP1960": 75.0, "POP1965": 121.0, "POP1970": 164.0, "POP1975": 226.0, "POP1980": 325.0, "POP1985": 514.0, "POP1990": 1042.0, "POP1995": 464.0, "POP2000": 836.0, "POP2005": 1140.0, "POP2010": 1041.0, "POP2015": 1185.0, "POP2020": 1457.0, "POP2025": 1753.0, "POP2050": 2083.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-10.79966, 6.314581]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Kuala Lumpur", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kuala Lumpur", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official and le", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Malaysia", "SOV_A3": "MYS", "ADM0NAME": "Malaysia", "ADM0_A3": "MYS", "ADM1NAME": "Selangor", "ISO_A2": "MY", "NOTE": null, "LATITUDE": 3.166666, "LONGITUDE": 101.699983, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1448000, "POP_MIN": 1448000, "POP_OTHER": 2667990, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1735161.0, "MEGANAME": "Kuala Lumpur", "LS_NAME": "Kuala Lumpur", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2750755.0, "MAX_POP20": 2750755.0, "MAX_POP50": 3468789.0, "MAX_POP300": 4983714.0, "MAX_POP310": 4983714.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 666.0, "MAX_AREAKM": 1700.0, "MIN_AREAMI": 257.0, "MAX_AREAMI": 657.0, "MIN_PERKM": 350.0, "MAX_PERKM": 1111.0, "MIN_PERMI": 217.0, "MAX_PERMI": 690.0, "MIN_BBXMIN": 101.358333, "MAX_BBXMIN": 101.491667, "MIN_BBXMAX": 101.841667, "MAX_BBXMAX": 101.891667, "MIN_BBYMIN": 2.7, "MAX_BBYMIN": 3.040173, "MIN_BBYMAX": 3.475, "MAX_BBYMAX": 3.475, "MEAN_BBXC": 101.644598, "MEAN_BBYC": 3.131431, "COMPARE": 0, "GN_ASCII": "Kuala Lumpur", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 14.0, "GN_POP": 1453975.0, "ELEVATION": null, "GTOPO30": 62.0, "TIMEZONE": "Asia/Kuala_Lumpur", "GEONAMESNO": "GeoNames match general.", "UN_FID": 348, "UN_ADM0": "Malaysia", "UN_LAT": 3.14, "UN_LONG": 101.7, "POP1950": 208.0, "POP1955": 281.0, "POP1960": 344.0, "POP1965": 394.0, "POP1970": 451.0, "POP1975": 645.0, "POP1980": 921.0, "POP1985": 1016.0, "POP1990": 1120.0, "POP1995": 1213.0, "POP2000": 1306.0, "POP2005": 1405.0, "POP2010": 1448.0, "POP2015": 1519.0, "POP2020": 1670.0, "POP2025": 1820.0, "POP2050": 1938.0, "CITYALT": null, "clustered:unrelated": 0.7679892194503055}, "geometry": {"type": "Point", "coordinates": [101.698037, 3.168611]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Havana", "NAMEPAR": null, "NAMEALT": "La Habana", "DIFFASCII": 0, "NAMEASCII": "Havana", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Cuba", "SOV_A3": "CUB", "ADM0NAME": "Cuba", "ADM0_A3": "CUB", "ADM1NAME": "Ciudad de la Habana", "ISO_A2": "CU", "NOTE": null, "LATITUDE": 23.131959, "LONGITUDE": -82.364182, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2174000, "POP_MIN": 1990917, "POP_OTHER": 1930305, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3553478.0, "MEGANAME": "La Habana", "LS_NAME": "Havana", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1990917.0, "MAX_POP20": 2051170.0, "MAX_POP50": 2051170.0, "MAX_POP300": 2051170.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 323.0, "MAX_AREAKM": 362.0, "MIN_AREAMI": 125.0, "MAX_AREAMI": 140.0, "MIN_PERKM": 240.0, "MAX_PERKM": 286.0, "MIN_PERMI": 149.0, "MAX_PERMI": 177.0, "MIN_BBXMIN": -82.533333, "MAX_BBXMIN": -82.533333, "MIN_BBXMAX": -82.208333, "MAX_BBXMAX": -82.208333, "MIN_BBYMIN": 22.916667, "MAX_BBYMIN": 22.975161, "MIN_BBYMAX": 23.183333, "MAX_BBYMAX": 23.183333, "MEAN_BBXC": -82.354344, "MEAN_BBYC": 23.076845, "COMPARE": 0, "GN_ASCII": "Havana", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 2.0, "GN_POP": 2163824.0, "ELEVATION": null, "GTOPO30": 5.0, "TIMEZONE": "America/Havana", "GEONAMESNO": "GeoNames match general.", "UN_FID": 172, "UN_ADM0": "Cuba", "UN_LAT": 23.04, "UN_LONG": -82.41, "POP1950": 1116.0, "POP1955": 1289.0, "POP1960": 1436.0, "POP1965": 1598.0, "POP1970": 1779.0, "POP1975": 1848.0, "POP1980": 1913.0, "POP1985": 2005.0, "POP1990": 2108.0, "POP1995": 2183.0, "POP2000": 2187.0, "POP2005": 2189.0, "POP2010": 2174.0, "POP2015": 2159.0, "POP2020": 2151.0, "POP2025": 2150.0, "POP2050": 2150.0, "CITYALT": "Havana", "clustered:unrelated": 0.45468816190343486}, "geometry": {"type": "Point", "coordinates": [-82.366128, 23.133904]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Prague", "NAMEPAR": "Praha", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Prague", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Czech Republic", "SOV_A3": "CZE", "ADM0NAME": "Czech Republic", "ADM0_A3": "CZE", "ADM1NAME": "Prague", "ISO_A2": "CZ", "NOTE": null, "LATITUDE": 50.083337, "LONGITUDE": 14.46598, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1162000, "POP_MIN": 2087, "POP_OTHER": 1088042, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 4548393.0, "MEGANAME": "Praha", "LS_NAME": "Prague", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1115771.0, "MAX_POP20": 1115771.0, "MAX_POP50": 1115771.0, "MAX_POP300": 1115771.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 317.0, "MAX_AREAKM": 317.0, "MIN_AREAMI": 122.0, "MAX_AREAMI": 122.0, "MIN_PERKM": 249.0, "MAX_PERKM": 249.0, "MIN_PERMI": 155.0, "MAX_PERMI": 155.0, "MIN_BBXMIN": 14.266667, "MAX_BBXMIN": 14.266667, "MIN_BBXMAX": 14.616667, "MAX_BBXMAX": 14.616667, "MIN_BBYMIN": 49.95, "MAX_BBYMIN": 49.95, "MIN_BBYMAX": 50.183333, "MAX_BBYMAX": 50.183333, "MEAN_BBXC": 14.445557, "MEAN_BBYC": 50.073451, "COMPARE": 0, "GN_ASCII": "Prague", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 2087.0, "ELEVATION": 308.0, "GTOPO30": 306.0, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match general.", "UN_FID": 173, "UN_ADM0": "Czech Republic", "UN_LAT": 50.1, "UN_LONG": 14.45, "POP1950": 935.0, "POP1955": 967.0, "POP1960": 1001.0, "POP1965": 1038.0, "POP1970": 1076.0, "POP1975": 1126.0, "POP1980": 1179.0, "POP1985": 1197.0, "POP1990": 1212.0, "POP1995": 1194.0, "POP2000": 1172.0, "POP2005": 1164.0, "POP2010": 1162.0, "POP2015": 1160.0, "POP2020": 1159.0, "POP2025": 1159.0, "POP2050": 1159.0, "CITYALT": "Prague", "clustered:unrelated": 0.7448784087504705}, "geometry": {"type": "Point", "coordinates": [14.464033, 50.085282]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Kuwait", "NAMEPAR": null, "NAMEALT": "Al Kuwayt|Kuwait City", "DIFFASCII": 0, "NAMEASCII": "Kuwait", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Kuwait", "SOV_A3": "KWT", "ADM0NAME": "Kuwait", "ADM0_A3": "KWT", "ADM1NAME": "Al Kuwayt", "ISO_A2": "KW", "NOTE": null, "LATITUDE": 29.369718, "LONGITUDE": 47.978301, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2063000, "POP_MIN": 60064, "POP_OTHER": 1682968, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 285787.0, "MEGANAME": "Al Kuwayt (Kuwait City)", "LS_NAME": "Kuwait", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1732952.0, "MAX_POP20": 2142805.0, "MAX_POP50": 2142805.0, "MAX_POP300": 2142805.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 264.0, "MAX_AREAKM": 366.0, "MIN_AREAMI": 102.0, "MAX_AREAMI": 141.0, "MIN_PERKM": 162.0, "MAX_PERKM": 249.0, "MIN_PERMI": 101.0, "MAX_PERMI": 155.0, "MIN_BBXMIN": 47.8, "MAX_BBXMIN": 47.821052, "MIN_BBXMAX": 48.1, "MAX_BBXMAX": 48.15, "MIN_BBYMIN": 29.066667, "MAX_BBYMIN": 29.225, "MIN_BBYMAX": 29.391667, "MAX_BBYMAX": 29.391667, "MEAN_BBXC": 47.993999, "MEAN_BBYC": 29.277119, "COMPARE": 0, "GN_ASCII": "Kuwait", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 60064.0, "ELEVATION": null, "GTOPO30": 12.0, "TIMEZONE": "Asia/Kuwait", "GEONAMESNO": "GeoNames match general.", "UN_FID": 339, "UN_ADM0": "Kuwait", "UN_LAT": 29.38, "UN_LONG": 47.97, "POP1950": 63.0, "POP1955": 106.0, "POP1960": 179.0, "POP1965": 303.0, "POP1970": 553.0, "POP1975": 688.0, "POP1980": 891.0, "POP1985": 1122.0, "POP1990": 1392.0, "POP1995": 1190.0, "POP2000": 1499.0, "POP2005": 1888.0, "POP2010": 2063.0, "POP2015": 2305.0, "POP2020": 2592.0, "POP2025": 2790.0, "POP2050": 2956.0, "CITYALT": "Kuwait"}, "geometry": {"type": "Point", "coordinates": [47.976355, 29.371663]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Santo Domingo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Santo Domingo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Dominican Republic", "SOV_A3": "DOM", "ADM0NAME": "Dominican Republic", "ADM0_A3": "DOM", "ADM1NAME": "Distrito Nacional", "ISO_A2": "DO", "NOTE": null, "LATITUDE": 18.470073, "LONGITUDE": -69.900085, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2154000, "POP_MIN": 2873, "POP_OTHER": 3322037, "RANK_MAX": 12, "RANK_MIN": 4, "GEONAMEID": 3668373.0, "MEGANAME": "Santo Domingo", "LS_NAME": "Santo Domingo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3334413.0, "MAX_POP20": 3334413.0, "MAX_POP50": 3334413.0, "MAX_POP300": 3334413.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 451.0, "MAX_AREAKM": 451.0, "MIN_AREAMI": 174.0, "MAX_AREAMI": 174.0, "MIN_PERKM": 309.0, "MAX_PERKM": 309.0, "MIN_PERMI": 192.0, "MAX_PERMI": 192.0, "MIN_BBXMIN": -70.208333, "MAX_BBXMIN": -70.208333, "MIN_BBXMAX": -69.766667, "MAX_BBXMAX": -69.766667, "MIN_BBYMIN": 18.316667, "MAX_BBYMIN": 18.316667, "MIN_BBYMAX": 18.591667, "MAX_BBYMAX": 18.591667, "MEAN_BBXC": -69.980546, "MEAN_BBYC": 18.467176, "COMPARE": 0, "GN_ASCII": "Santo Domingo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2.0, "GN_POP": 2873.0, "ELEVATION": null, "GTOPO30": 2004.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 176, "UN_ADM0": "Dominican Republic", "UN_LAT": 18.48, "UN_LONG": -69.89, "POP1950": 219.0, "POP1955": 312.0, "POP1960": 446.0, "POP1965": 613.0, "POP1970": 833.0, "POP1975": 1016.0, "POP1980": 1240.0, "POP1985": 1396.0, "POP1990": 1522.0, "POP1995": 1670.0, "POP2000": 1854.0, "POP2005": 2062.0, "POP2010": 2154.0, "POP2015": 2298.0, "POP2020": 2525.0, "POP2025": 2722.0, "POP2050": 2885.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-69.90203, 18.472018]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Accra", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Accra", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ghana", "SOV_A3": "GHA", "ADM0NAME": "Ghana", "ADM0_A3": "GHA", "ADM1NAME": "Greater Accra", "ISO_A2": "GH", "NOTE": null, "LATITUDE": 5.550035, "LONGITUDE": -0.216716, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2121000, "POP_MIN": 1963264, "POP_OTHER": 2334371, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2306104.0, "MEGANAME": "Accra", "LS_NAME": "Accra", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2359119.0, "MAX_POP20": 2941045.0, "MAX_POP50": 2941045.0, "MAX_POP300": 2941045.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 443.0, "MAX_AREAKM": 636.0, "MIN_AREAMI": 171.0, "MAX_AREAMI": 245.0, "MIN_PERKM": 244.0, "MAX_PERKM": 345.0, "MIN_PERMI": 152.0, "MAX_PERMI": 214.0, "MIN_BBXMIN": -0.35, "MAX_BBXMIN": -0.35, "MIN_BBXMAX": -0.098725, "MAX_BBXMAX": 0.033333, "MIN_BBYMIN": 5.516667, "MAX_BBYMIN": 5.516667, "MIN_BBYMAX": 5.775, "MAX_BBYMAX": 5.775, "MEAN_BBXC": -0.188893, "MEAN_BBYC": 5.637403, "COMPARE": 0, "GN_ASCII": "Accra", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 1963264.0, "ELEVATION": null, "GTOPO30": 104.0, "TIMEZONE": "Africa/Accra", "GEONAMESNO": "GeoNames match general.", "UN_FID": 196, "UN_ADM0": "Ghana", "UN_LAT": 5.55, "UN_LONG": -0.2, "POP1950": 177.0, "POP1955": 265.0, "POP1960": 393.0, "POP1965": 499.0, "POP1970": 631.0, "POP1975": 738.0, "POP1980": 863.0, "POP1985": 1013.0, "POP1990": 1197.0, "POP1995": 1415.0, "POP2000": 1674.0, "POP2005": 1984.0, "POP2010": 2121.0, "POP2015": 2332.0, "POP2020": 2688.0, "POP2025": 3041.0, "POP2050": 3382.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-0.218661, 5.55198]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Tripoli", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tripoli", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Libya", "SOV_A3": "LBY", "ADM0NAME": "Libya", "ADM0_A3": "LBY", "ADM1NAME": "Tajura' wa an Nawahi al Arba", "ISO_A2": "LY", "NOTE": null, "LATITUDE": 32.8925, "LONGITUDE": 13.180012, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2189000, "POP_MIN": 229398, "POP_OTHER": 1149981, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": -1.0, "MEGANAME": "Tarabulus", "LS_NAME": "Tripoli1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1173386.0, "MAX_POP20": 1173386.0, "MAX_POP50": 1173386.0, "MAX_POP300": 1173386.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 195.0, "MAX_AREAKM": 195.0, "MIN_AREAMI": 75.0, "MAX_AREAMI": 75.0, "MIN_PERKM": 142.0, "MAX_PERKM": 142.0, "MIN_PERMI": 88.0, "MAX_PERMI": 88.0, "MIN_BBXMIN": 12.983333, "MAX_BBXMIN": 12.983333, "MIN_BBXMAX": 13.408333, "MAX_BBXMAX": 13.408333, "MIN_BBYMIN": 32.808333, "MAX_BBYMIN": 32.808333, "MIN_BBYMAX": 32.908333, "MAX_BBYMAX": 32.908333, "MEAN_BBXC": 13.19322, "MEAN_BBYC": 32.862069, "COMPARE": 0, "GN_ASCII": null, "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": 9.0, "GN_POP": 229398.0, "ELEVATION": null, "GTOPO30": 31.0, "TIMEZONE": null, "GEONAMESNO": null, "UN_FID": 344, "UN_ADM0": "Libyan Arab Jamahiriya", "UN_LAT": 34.34, "UN_LONG": 36.0, "POP1950": 106.0, "POP1955": 136.0, "POP1960": 174.0, "POP1965": 235.0, "POP1970": 398.0, "POP1975": 611.0, "POP1980": 797.0, "POP1985": 1056.0, "POP1990": 1500.0, "POP1995": 1678.0, "POP2000": 1877.0, "POP2005": 2098.0, "POP2010": 2189.0, "POP2015": 2322.0, "POP2020": 2532.0, "POP2025": 2713.0, "POP2050": 2855.0, "CITYALT": "Tripoli"}, "geometry": {"type": "Point", "coordinates": [13.180011, 32.8925]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital alt", "NAME": "Tel Aviv-Yafo", "NAMEPAR": null, "NAMEALT": "Tel Aviv-Jaffa", "DIFFASCII": 0, "NAMEASCII": "Tel Aviv-Yafo", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "While Jerulsale", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Israel", "SOV_A3": "ISR", "ADM0NAME": "Israel", "ADM0_A3": "ISR", "ADM1NAME": "Tel Aviv", "ISO_A2": "IL", "NOTE": null, "LATITUDE": 32.079991, "LONGITUDE": 34.770012, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3112000, "POP_MIN": 378358, "POP_OTHER": 2306851, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 293394.0, "MEGANAME": "Tel Aviv-Yafo", "LS_NAME": "Tel Aviv-Yafo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2324568.0, "MAX_POP20": 2324568.0, "MAX_POP50": 2324568.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 436.0, "MAX_AREAKM": 436.0, "MIN_AREAMI": 168.0, "MAX_AREAMI": 168.0, "MIN_PERKM": 386.0, "MAX_PERKM": 386.0, "MIN_PERMI": 240.0, "MAX_PERMI": 240.0, "MIN_BBXMIN": 34.716667, "MAX_BBXMIN": 34.716667, "MIN_BBXMAX": 34.958333, "MAX_BBXMAX": 34.958333, "MIN_BBYMIN": 31.85, "MAX_BBYMIN": 31.85, "MIN_BBYMAX": 32.208333, "MAX_BBYMAX": 32.208333, "MEAN_BBXC": 34.836735, "MEAN_BBYC": 32.030266, "COMPARE": 0, "GN_ASCII": "Tel Aviv-Yafo", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 5.0, "GN_POP": 378358.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Asia/Jerusalem", "GEONAMESNO": "GeoNames match general.", "UN_FID": 304, "UN_ADM0": "Israel", "UN_LAT": 32.04, "UN_LONG": 34.76, "POP1950": 418.0, "POP1955": 556.0, "POP1960": 738.0, "POP1965": 882.0, "POP1970": 1029.0, "POP1975": 1206.0, "POP1980": 1416.0, "POP1985": 1681.0, "POP1990": 2026.0, "POP1995": 2442.0, "POP2000": 2752.0, "POP2005": 3012.0, "POP2010": 3112.0, "POP2015": 3256.0, "POP2020": 3453.0, "POP2025": 3600.0, "POP2050": 3726.0, "CITYALT": "Tel Aviv-Jaffa", "clustered:unrelated": 0.8501483241836331}, "geometry": {"type": "Point", "coordinates": [34.768065, 32.081937]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Helsinki", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Helsinki", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Finland", "SOV_A3": "FIN", "ADM0NAME": "Finland", "ADM0_A3": "FIN", "ADM1NAME": "Southern Finland", "ISO_A2": "FI", "NOTE": null, "LATITUDE": 60.175563, "LONGITUDE": 24.934126, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1115000, "POP_MIN": 558457, "POP_OTHER": 762958, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 658225.0, "MEGANAME": "Helsinki", "LS_NAME": "Helsinki", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 852233.0, "MAX_POP20": 852233.0, "MAX_POP50": 852233.0, "MAX_POP300": 852233.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 513.0, "MAX_AREAKM": 513.0, "MIN_AREAMI": 198.0, "MAX_AREAMI": 198.0, "MIN_PERKM": 550.0, "MAX_PERKM": 550.0, "MIN_PERMI": 342.0, "MAX_PERMI": 342.0, "MIN_BBXMIN": 24.558333, "MAX_BBXMIN": 24.558333, "MIN_BBXMAX": 25.191667, "MAX_BBXMAX": 25.191667, "MIN_BBYMIN": 60.116667, "MAX_BBYMIN": 60.116667, "MIN_BBYMAX": 60.433333, "MAX_BBYMAX": 60.433333, "MEAN_BBXC": 24.910042, "MEAN_BBYC": 60.254779, "COMPARE": 0, "GN_ASCII": "Helsinki", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13.0, "GN_POP": 558457.0, "ELEVATION": null, "GTOPO30": 23.0, "TIMEZONE": "Europe/Helsinki", "GEONAMESNO": "GeoNames match general.", "UN_FID": 183, "UN_ADM0": "Finland", "UN_LAT": 60.19, "UN_LONG": 24.97, "POP1950": 366.0, "POP1955": 405.0, "POP1960": 448.0, "POP1965": 478.0, "POP1970": 507.0, "POP1975": 582.0, "POP1980": 674.0, "POP1985": 724.0, "POP1990": 872.0, "POP1995": 943.0, "POP2000": 1019.0, "POP2005": 1094.0, "POP2010": 1115.0, "POP2015": 1139.0, "POP2020": 1169.0, "POP2025": 1195.0, "POP2050": 1220.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [24.93218, 60.177509]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "K\u00f8benhavn", "NAMEPAR": "Copenhagen", "NAMEALT": null, "DIFFASCII": 1, "NAMEASCII": "Kobenhavn", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Denmark", "SOV_A3": "DNK", "ADM0NAME": "Denmark", "ADM0_A3": "DNK", "ADM1NAME": "Hovedstaden", "ISO_A2": "DK", "NOTE": null, "LATITUDE": 55.678564, "LONGITUDE": 12.563486, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1085000, "POP_MIN": 1085000, "POP_OTHER": 1038288, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2618425.0, "MEGANAME": "K\u00f8benhavn", "LS_NAME": "Copenhagen", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1124323.0, "MAX_POP20": 1230007.0, "MAX_POP50": 1256924.0, "MAX_POP300": 1256924.0, "MAX_POP310": 1256924.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 438.0, "MAX_AREAKM": 577.0, "MIN_AREAMI": 169.0, "MAX_AREAMI": 223.0, "MIN_PERKM": 348.0, "MAX_PERKM": 542.0, "MIN_PERMI": 216.0, "MAX_PERMI": 337.0, "MIN_BBXMIN": 12.116667, "MAX_BBXMIN": 12.316667, "MIN_BBXMAX": 12.658333, "MAX_BBXMAX": 12.658333, "MIN_BBYMIN": 55.4, "MAX_BBYMIN": 55.583333, "MIN_BBYMAX": 55.927962, "MAX_BBYMAX": 56.008333, "MEAN_BBXC": 12.437175, "MEAN_BBYC": 55.716213, "COMPARE": 0, "GN_ASCII": "Copenhagen", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17.0, "GN_POP": 1153615.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Europe/Copenhagen", "GEONAMESNO": "GeoNames match general.", "UN_FID": 175, "UN_ADM0": "Denmark", "UN_LAT": 55.71, "UN_LONG": 12.54, "POP1950": 1216.0, "POP1955": 1227.0, "POP1960": 1284.0, "POP1965": 1373.0, "POP1970": 1380.0, "POP1975": 1172.0, "POP1980": 1096.0, "POP1985": 1056.0, "POP1990": 1035.0, "POP1995": 1048.0, "POP2000": 1077.0, "POP2005": 1085.0, "POP2010": 1085.0, "POP2015": 1087.0, "POP2020": 1092.0, "POP2025": 1095.0, "POP2050": 1096.0, "CITYALT": "Copenhagen", "clustered:unrelated": 0.8441115108294452}, "geometry": {"type": "Point", "coordinates": [12.561539, 55.68051]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Abidjan", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Abidjan", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto, admin", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ivory Coast", "SOV_A3": "CIV", "ADM0NAME": "Ivory Coast", "ADM0_A3": "CIV", "ADM1NAME": "Lagunes", "ISO_A2": "CI", "NOTE": null, "LATITUDE": 5.319997, "LONGITUDE": -4.040048, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3802000, "POP_MIN": 3190395, "POP_OTHER": 3181637, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2293538.0, "MEGANAME": "Abidjan", "LS_NAME": "Abidjan", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3190395.0, "MAX_POP20": 3190395.0, "MAX_POP50": 3190395.0, "MAX_POP300": 3190395.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 474.0, "MAX_AREAKM": 474.0, "MIN_AREAMI": 183.0, "MAX_AREAMI": 183.0, "MIN_PERKM": 304.0, "MAX_PERKM": 304.0, "MIN_PERMI": 189.0, "MAX_PERMI": 189.0, "MIN_BBXMIN": -4.191667, "MAX_BBXMIN": -4.191667, "MIN_BBXMAX": -3.866667, "MAX_BBXMAX": -3.866667, "MIN_BBYMIN": 5.241667, "MAX_BBYMIN": 5.241667, "MIN_BBYMAX": 5.55, "MAX_BBYMAX": 5.55, "MEAN_BBXC": -4.019846, "MEAN_BBYC": 5.3739, "COMPARE": 0, "GN_ASCII": "Abidjan", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 82.0, "GN_POP": 3677115.0, "ELEVATION": null, "GTOPO30": 75.0, "TIMEZONE": "Africa/Abidjan", "GEONAMESNO": "GeoNames match general.", "UN_FID": 310, "UN_ADM0": "C\u00f4te d'Ivoire", "UN_LAT": 5.32, "UN_LONG": -4.02, "POP1950": 65.0, "POP1955": 125.0, "POP1960": 192.0, "POP1965": 310.0, "POP1970": 548.0, "POP1975": 966.0, "POP1980": 1384.0, "POP1985": 1716.0, "POP1990": 2102.0, "POP1995": 2535.0, "POP2000": 3032.0, "POP2005": 3564.0, "POP2010": 3802.0, "POP2015": 4175.0, "POP2020": 4810.0, "POP2025": 5432.0, "POP2050": 6031.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-4.041994, 5.321942]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Brasilia", "NAMEPAR": null, "NAMEALT": "Bras\u00edlia", "DIFFASCII": 0, "NAMEASCII": "Brasilia", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Distrito Federal", "ISO_A2": "BR", "NOTE": null, "LATITUDE": -15.78334, "LONGITUDE": -47.916052, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3716996, "POP_MIN": 2562963, "POP_OTHER": 1772679, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3469058.0, "MEGANAME": "Bras\u00edlia", "LS_NAME": "Brasilia", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1838722.0, "MAX_POP20": 1836390.0, "MAX_POP50": 1838722.0, "MAX_POP300": 1838722.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 436.0, "MAX_AREAKM": 439.0, "MIN_AREAMI": 168.0, "MAX_AREAMI": 169.0, "MIN_PERKM": 311.0, "MAX_PERKM": 318.0, "MIN_PERMI": 193.0, "MAX_PERMI": 197.0, "MIN_BBXMIN": -48.158333, "MAX_BBXMIN": -48.158333, "MIN_BBXMAX": -47.783333, "MAX_BBXMAX": -47.783333, "MIN_BBYMIN": -15.941667, "MAX_BBYMIN": -15.941667, "MIN_BBYMAX": -15.7, "MAX_BBYMAX": -15.7, "MEAN_BBXC": -47.9714, "MEAN_BBYC": -15.824583, "COMPARE": 0, "GN_ASCII": "Brasilia", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 2207718.0, "ELEVATION": null, "GTOPO30": 1092.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 472, "UN_ADM0": "Brazil", "UN_LAT": -15.79, "UN_LONG": -47.89, "POP1950": 36.0, "POP1955": 70.0, "POP1960": 137.0, "POP1965": 268.0, "POP1970": 525.0, "POP1975": 827.0, "POP1980": 1293.0, "POP1985": 1559.0, "POP1990": 1863.0, "POP1995": 2257.0, "POP2000": 2746.0, "POP2005": 3341.0, "POP2010": 3599.0, "POP2015": 3938.0, "POP2020": 4284.0, "POP2025": 4463.0, "POP2050": 4578.0, "CITYALT": "Brasilia", "clustered:unrelated": 0.38296011551972664}, "geometry": {"type": "Point", "coordinates": [-47.917998, -15.781394]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Brussels", "NAMEPAR": null, "NAMEALT": "Bruxelles-Brussel", "DIFFASCII": 0, "NAMEASCII": "Brussels", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Belgium", "SOV_A3": "BEL", "ADM0NAME": "Belgium", "ADM0_A3": "BEL", "ADM1NAME": "Brussels", "ISO_A2": "BE", "NOTE": null, "LATITUDE": 50.833317, "LONGITUDE": 4.333317, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1743000, "POP_MIN": 1019022, "POP_OTHER": 1490164, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2800866.0, "MEGANAME": "Bruxelles-Brussel", "LS_NAME": "Brussels", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 1759840.0, "MAX_POP20": 1874437.0, "MAX_POP50": 3576473.0, "MAX_POP300": 3576473.0, "MAX_POP310": 3576473.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 900.0, "MAX_AREAKM": 2344.0, "MIN_AREAMI": 347.0, "MAX_AREAMI": 905.0, "MIN_PERKM": 997.0, "MAX_PERKM": 2982.0, "MIN_PERMI": 620.0, "MAX_PERMI": 1853.0, "MIN_BBXMIN": 3.575, "MAX_BBXMIN": 3.983529, "MIN_BBXMAX": 4.666667, "MAX_BBXMAX": 5.0, "MIN_BBYMIN": 50.6, "MAX_BBYMIN": 50.65, "MIN_BBYMAX": 51.016667, "MAX_BBYMAX": 51.408333, "MEAN_BBXC": 4.329159, "MEAN_BBYC": 50.919556, "COMPARE": 0, "GN_ASCII": "Brussels", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 1019022.0, "ELEVATION": null, "GTOPO30": 48.0, "TIMEZONE": "Europe/Brussels", "GEONAMESNO": "GeoNames match general.", "UN_FID": 384, "UN_ADM0": "Belgium", "UN_LAT": 50.83, "UN_LONG": 4.36, "POP1950": 1415.0, "POP1955": 1449.0, "POP1960": 1485.0, "POP1965": 1525.0, "POP1970": 1568.0, "POP1975": 1610.0, "POP1980": 1654.0, "POP1985": 1654.0, "POP1990": 1680.0, "POP1995": 1715.0, "POP2000": 1733.0, "POP2005": 1742.0, "POP2010": 1743.0, "POP2015": 1744.0, "POP2020": 1744.0, "POP2025": 1744.0, "POP2050": 1744.0, "CITYALT": "Brussels"}, "geometry": {"type": "Point", "coordinates": [4.33137, 50.835262]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Dhaka", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dhaka", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Bangladesh", "SOV_A3": "BGD", "ADM0NAME": "Bangladesh", "ADM0_A3": "BGD", "ADM1NAME": "Dhaka", "ISO_A2": "BD", "NOTE": null, "LATITUDE": 23.72306, "LONGITUDE": 90.408579, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 12797394, "POP_MIN": 7000940, "POP_OTHER": 14995538, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1185241.0, "MEGANAME": "Dhaka", "LS_NAME": "Dhaka", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 14548962.0, "MAX_POP20": 21394172.0, "MAX_POP50": 53845691.0, "MAX_POP300": 78549234.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 3528.0, "MAX_AREAKM": 49912.0, "MIN_AREAMI": 1362.0, "MAX_AREAMI": 19271.0, "MIN_PERKM": 1439.0, "MAX_PERKM": 19314.0, "MIN_PERMI": 894.0, "MAX_PERMI": 12001.0, "MIN_BBXMIN": 88.133791, "MAX_BBXMIN": 89.9, "MIN_BBXMAX": 90.816777, "MAX_BBXMAX": 92.908333, "MIN_BBYMIN": 22.858333, "MAX_BBYMIN": 23.482936, "MIN_BBYMAX": 24.247407, "MAX_BBYMAX": 25.583333, "MEAN_BBXC": 90.400679, "MEAN_BBYC": 24.105092, "COMPARE": 0, "GN_ASCII": "Dhaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 81.0, "GN_POP": 10356500.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Asia/Dhaka", "GEONAMESNO": "GeoNames match general.", "UN_FID": 369, "UN_ADM0": "Bangladesh", "UN_LAT": 23.7, "UN_LONG": 90.4, "POP1950": 336.0, "POP1955": 409.0, "POP1960": 508.0, "POP1965": 821.0, "POP1970": 1374.0, "POP1975": 2221.0, "POP1980": 3266.0, "POP1985": 4660.0, "POP1990": 6621.0, "POP1995": 8332.0, "POP2000": 10285.0, "POP2005": 12576.0, "POP2010": 13485.0, "POP2015": 14796.0, "POP2020": 17015.0, "POP2025": 19422.0, "POP2050": 22015.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [90.406633, 23.725005]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Luanda", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Luanda", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Angola", "SOV_A3": "AGO", "ADM0NAME": "Angola", "ADM0_A3": "AGO", "ADM1NAME": "Luanda", "ISO_A2": "AO", "NOTE": null, "LATITUDE": -8.838286, "LONGITUDE": 13.234427, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5172900, "POP_MIN": 1951272, "POP_OTHER": 1951272, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 2240449.0, "MEGANAME": "Luanda", "LS_NAME": "Luanda", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1951272.0, "MAX_POP20": 1951272.0, "MAX_POP50": 1951272.0, "MAX_POP300": 1951272.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 237.0, "MAX_AREAKM": 237.0, "MIN_AREAMI": 91.0, "MAX_AREAMI": 91.0, "MIN_PERKM": 149.0, "MAX_PERKM": 149.0, "MIN_PERMI": 93.0, "MAX_PERMI": 93.0, "MIN_BBXMIN": 13.166667, "MAX_BBXMIN": 13.166667, "MIN_BBXMAX": 13.4, "MAX_BBXMAX": 13.4, "MIN_BBYMIN": -8.933333, "MAX_BBYMIN": -8.933333, "MIN_BBYMAX": -8.766667, "MAX_BBYMAX": -8.766667, "MEAN_BBXC": 13.28253, "MEAN_BBYC": -8.851964, "COMPARE": 0, "GN_ASCII": "Luanda", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 2776168.0, "ELEVATION": null, "GTOPO30": 6.0, "TIMEZONE": "Africa/Luanda", "GEONAMESNO": "GeoNames match general.", "UN_FID": 182, "UN_ADM0": "Angola", "UN_LAT": -8.81, "UN_LONG": 13.23, "POP1950": 138.0, "POP1955": 174.0, "POP1960": 219.0, "POP1965": 315.0, "POP1970": 459.0, "POP1975": 665.0, "POP1980": 962.0, "POP1985": 1295.0, "POP1990": 1568.0, "POP1995": 1953.0, "POP2000": 2591.0, "POP2005": 3533.0, "POP2010": 4000.0, "POP2015": 4775.0, "POP2020": 6036.0, "POP2025": 7153.0, "POP2050": 8236.0, "CITYALT": null, "clustered:unrelated": 0.5051873052292913}, "geometry": {"type": "Point", "coordinates": [13.232481, -8.83634]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Algiers", "NAMEPAR": null, "NAMEALT": "El Djaza\u00efr", "DIFFASCII": 0, "NAMEASCII": "Algiers", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Algeria", "SOV_A3": "DZA", "ADM0NAME": "Algeria", "ADM0_A3": "DZA", "ADM1NAME": "Alger", "ISO_A2": "DZ", "NOTE": null, "LATITUDE": 36.763065, "LONGITUDE": 3.050553, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3354000, "POP_MIN": 1977663, "POP_OTHER": 3332619, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2507480.0, "MEGANAME": "El Djaza\u00efr", "LS_NAME": "Algiers", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3368320.0, "MAX_POP20": 3698473.0, "MAX_POP50": 4203253.0, "MAX_POP300": 4203253.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 886.0, "MAX_AREAKM": 1275.0, "MIN_AREAMI": 342.0, "MAX_AREAMI": 492.0, "MIN_PERKM": 798.0, "MAX_PERKM": 1192.0, "MIN_PERMI": 496.0, "MAX_PERMI": 741.0, "MIN_BBXMIN": 2.641667, "MAX_BBXMIN": 2.808333, "MIN_BBXMAX": 3.548211, "MAX_BBXMAX": 3.741667, "MIN_BBYMIN": 36.45, "MAX_BBYMIN": 36.508333, "MIN_BBYMAX": 36.816667, "MAX_BBYMAX": 36.816667, "MEAN_BBXC": 3.101671, "MEAN_BBYC": 36.673641, "COMPARE": 0, "GN_ASCII": "Algiers", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 1977663.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Africa/Algiers", "GEONAMESNO": "GeoNames match general.", "UN_FID": 6, "UN_ADM0": "Algeria", "UN_LAT": 36.78, "UN_LONG": 3.05, "POP1950": 516.0, "POP1955": 623.0, "POP1960": 872.0, "POP1965": 1049.0, "POP1970": 1254.0, "POP1975": 1499.0, "POP1980": 1621.0, "POP1985": 1672.0, "POP1990": 1908.0, "POP1995": 2295.0, "POP2000": 2754.0, "POP2005": 3199.0, "POP2010": 3354.0, "POP2015": 3574.0, "POP2020": 3922.0, "POP2025": 4235.0, "POP2050": 4499.0, "CITYALT": "Algiers"}, "geometry": {"type": "Point", "coordinates": [3.048606, 36.76501]}} +{"type": "Feature", "properties": {"SCALERANK": 2, "NATSCALE": 200, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Rangoon", "NAMEPAR": null, "NAMEALT": "Yangon", "DIFFASCII": 0, "NAMEASCII": "Rangoon", "ADM0CAP": null, "CAPALT": null, "CAPIN": "Former capital", "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Myanmar", "SOV_A3": "MMR", "ADM0NAME": "Myanmar", "ADM0_A3": "MMR", "ADM1NAME": "Yangon", "ISO_A2": "MM", "NOTE": null, "LATITUDE": 16.783354, "LONGITUDE": 96.166678, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4088000, "POP_MIN": 3301820, "POP_OTHER": 3124090, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1298824.0, "MEGANAME": "Yangon", "LS_NAME": "Rangoon", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3301820.0, "MAX_POP20": 3301820.0, "MAX_POP50": 3301820.0, "MAX_POP300": 3301820.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 345.0, "MAX_AREAKM": 345.0, "MIN_AREAMI": 133.0, "MAX_AREAMI": 133.0, "MIN_PERKM": 199.0, "MAX_PERKM": 199.0, "MIN_PERMI": 123.0, "MAX_PERMI": 123.0, "MIN_BBXMIN": 96.025, "MAX_BBXMIN": 96.025, "MIN_BBXMAX": 96.266667, "MAX_BBXMAX": 96.266667, "MIN_BBYMIN": 16.716667, "MAX_BBYMIN": 16.716667, "MIN_BBYMAX": 17.025, "MAX_BBYMAX": 17.025, "MEAN_BBXC": 96.144646, "MEAN_BBYC": 16.85864, "COMPARE": 0, "GN_ASCII": "Rangoon", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 17.0, "GN_POP": 4477638.0, "ELEVATION": null, "GTOPO30": 13.0, "TIMEZONE": "Asia/Rangoon", "GEONAMESNO": "GeoNames match general.", "UN_FID": 3, "UN_ADM0": "Myanmar", "UN_LAT": 16.87, "UN_LONG": 96.12, "POP1950": 1302.0, "POP1955": 1440.0, "POP1960": 1592.0, "POP1965": 1760.0, "POP1970": 1946.0, "POP1975": 2151.0, "POP1980": 2378.0, "POP1985": 2629.0, "POP1990": 2907.0, "POP1995": 3213.0, "POP2000": 3553.0, "POP2005": 3928.0, "POP2010": 4088.0, "POP2015": 4348.0, "POP2020": 4841.0, "POP2025": 5361.0, "POP2050": 5869.0, "CITYALT": "Rangoon"}, "geometry": {"type": "Point", "coordinates": [96.164731, 16.785299]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEPAR": null, "NAMEALT": "San Francisco-Oakland", "DIFFASCII": 0, "NAMEASCII": "San Francisco", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "NOTE": null, "LATITUDE": 37.740008, "LONGITUDE": -122.459978, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 5391959.0, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 988636.0, "MAX_POP20": 1130999.0, "MAX_POP50": 1371285.0, "MAX_POP300": 4561697.0, "MAX_POP310": 4561697.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 218.0, "MAX_AREAKM": 1748.0, "MIN_AREAMI": 84.0, "MAX_AREAMI": 675.0, "MIN_PERKM": 126.0, "MAX_PERKM": 755.0, "MIN_PERMI": 78.0, "MAX_PERMI": 469.0, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "COMPARE": 0, "GN_ASCII": "San Francisco", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 732072.0, "ELEVATION": 16.0, "GTOPO30": 60.0, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 570, "UN_ADM0": "United States of America", "UN_LAT": 37.79, "UN_LONG": -122.38, "POP1950": 1855.0, "POP1955": 2021.0, "POP1960": 2200.0, "POP1965": 2361.0, "POP1970": 2529.0, "POP1975": 2590.0, "POP1980": 2656.0, "POP1985": 2805.0, "POP1990": 2961.0, "POP1995": 3095.0, "POP2000": 3236.0, "POP2005": 3387.0, "POP2010": 3450.0, "POP2015": 3544.0, "POP2020": 3684.0, "POP2025": 3803.0, "POP2050": 3898.0, "CITYALT": "San Francisco"}, "geometry": {"type": "Point", "coordinates": [-122.417168, 37.769195]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Denver", "NAMEPAR": null, "NAMEALT": "Denver-Aurora", "DIFFASCII": 0, "NAMEASCII": "Denver", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Colorado", "ISO_A2": "US", "NOTE": null, "LATITUDE": 39.739188, "LONGITUDE": -104.984016, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313000, "POP_MIN": 1548599, "POP_OTHER": 1521278, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 5419384.0, "MEGANAME": "Denver-Aurora", "LS_NAME": "Denver", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1548599.0, "MAX_POP20": 2100407.0, "MAX_POP50": 2174327.0, "MAX_POP300": 2174327.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 909.0, "MAX_AREAKM": 1345.0, "MIN_AREAMI": 351.0, "MAX_AREAMI": 519.0, "MIN_PERKM": 371.0, "MAX_PERKM": 606.0, "MIN_PERMI": 231.0, "MAX_PERMI": 376.0, "MIN_BBXMIN": -105.241667, "MAX_BBXMIN": -105.241667, "MIN_BBXMAX": -104.866667, "MAX_BBXMAX": -104.708333, "MIN_BBYMIN": 39.5, "MAX_BBYMIN": 39.5, "MIN_BBYMAX": 39.958333, "MAX_BBYMAX": 40.025, "MEAN_BBXC": -104.993967, "MEAN_BBYC": 39.72985, "COMPARE": 0, "GN_ASCII": "Denver", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 537, "UN_ADM0": "United States of America", "UN_LAT": 39.57, "UN_LONG": -105.07, "POP1950": 505.0, "POP1955": 641.0, "POP1960": 809.0, "POP1965": 923.0, "POP1970": 1054.0, "POP1975": 1198.0, "POP1980": 1356.0, "POP1985": 1437.0, "POP1990": 1528.0, "POP1995": 1747.0, "POP2000": 1998.0, "POP2005": 2241.0, "POP2010": 2313.0, "POP2015": 2396.0, "POP2020": 2502.0, "POP2025": 2590.0, "POP2050": 2661.0, "CITYALT": "Denver", "clustered:unrelated": 0.40483957882568933}, "geometry": {"type": "Point", "coordinates": [-104.985961, 39.741133]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Houston", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Houston", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Texas", "ISO_A2": "US", "NOTE": null, "LATITUDE": 29.819974, "LONGITUDE": -95.339979, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4459000, "POP_MIN": 3647574, "POP_OTHER": 3607616, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 4699066.0, "MEGANAME": "Houston", "LS_NAME": "Houston", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3647574.0, "MAX_POP20": 4287078.0, "MAX_POP50": 4352341.0, "MAX_POP300": 4352341.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 2388.0, "MAX_AREAKM": 3041.0, "MIN_AREAMI": 922.0, "MAX_AREAMI": 1174.0, "MIN_PERKM": 1257.0, "MAX_PERKM": 1773.0, "MIN_PERMI": 781.0, "MAX_PERMI": 1101.0, "MIN_BBXMIN": -95.841667, "MAX_BBXMIN": -95.841667, "MIN_BBXMAX": -95.133333, "MAX_BBXMAX": -95.0, "MIN_BBYMIN": 29.475, "MAX_BBYMIN": 29.491667, "MIN_BBYMAX": 30.258915, "MAX_BBYMAX": 30.266667, "MEAN_BBXC": -95.431928, "MEAN_BBYC": 29.810477, "COMPARE": 0, "GN_ASCII": "Houston", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 542, "UN_ADM0": "United States of America", "UN_LAT": 29.77, "UN_LONG": -95.4, "POP1950": 709.0, "POP1955": 904.0, "POP1960": 1151.0, "POP1965": 1396.0, "POP1970": 1693.0, "POP1975": 2030.0, "POP1980": 2424.0, "POP1985": 2658.0, "POP1990": 2922.0, "POP1995": 3353.0, "POP2000": 3849.0, "POP2005": 4324.0, "POP2010": 4459.0, "POP2015": 4609.0, "POP2020": 4790.0, "POP2025": 4936.0, "POP2050": 5049.0, "CITYALT": null, "clustered:unrelated": 0.14753782862635878}, "geometry": {"type": "Point", "coordinates": [-95.341925, 29.82192]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Miami", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Miami", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Florida", "ISO_A2": "US", "NOTE": null, "LATITUDE": 25.787611, "LONGITUDE": -80.224106, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 5585000, "POP_MIN": 382894, "POP_OTHER": 1037811, "RANK_MAX": 13, "RANK_MIN": 10, "GEONAMEID": 4164138.0, "MEGANAME": "Miami", "LS_NAME": "Miami", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1122682.0, "MAX_POP20": 1443206.0, "MAX_POP50": 5187749.0, "MAX_POP300": 5187749.0, "MAX_POP310": 5187749.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 380.0, "MAX_AREAKM": 2907.0, "MIN_AREAMI": 147.0, "MAX_AREAMI": 1122.0, "MIN_PERKM": 156.0, "MAX_PERKM": 999.0, "MIN_PERMI": 97.0, "MAX_PERMI": 620.0, "MIN_BBXMIN": -80.466667, "MAX_BBXMIN": -80.441667, "MIN_BBXMAX": -80.175719, "MAX_BBXMAX": -80.025, "MIN_BBYMIN": 25.55, "MAX_BBYMIN": 25.725, "MIN_BBYMAX": 26.01406, "MAX_BBYMAX": 26.991667, "MEAN_BBXC": -80.236416, "MEAN_BBYC": 26.067179, "COMPARE": 0, "GN_ASCII": "Miami", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 382894.0, "ELEVATION": 2.0, "GTOPO30": 2.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 550, "UN_ADM0": "United States of America", "UN_LAT": 25.83, "UN_LONG": -80.27, "POP1950": 622.0, "POP1955": 924.0, "POP1960": 1361.0, "POP1965": 1709.0, "POP1970": 2141.0, "POP1975": 2590.0, "POP1980": 3122.0, "POP1985": 3521.0, "POP1990": 3969.0, "POP1995": 4431.0, "POP2000": 4946.0, "POP2005": 5438.0, "POP2010": 5585.0, "POP2015": 5755.0, "POP2020": 5969.0, "POP2025": 6141.0, "POP2050": 6272.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-80.226051, 25.789556]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Atlanta", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Atlanta", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Georgia", "ISO_A2": "US", "NOTE": null, "LATITUDE": 33.830014, "LONGITUDE": -84.399949, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 4506000, "POP_MIN": 422908, "POP_OTHER": 2874096, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 4180439.0, "MEGANAME": "Atlanta", "LS_NAME": "Atlanta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2928128.0, "MAX_POP20": 3896411.0, "MAX_POP50": 3910939.0, "MAX_POP300": 3910939.0, "MAX_POP310": 3910939.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 2761.0, "MAX_AREAKM": 4086.0, "MIN_AREAMI": 1066.0, "MAX_AREAMI": 1578.0, "MIN_PERKM": 1494.0, "MAX_PERKM": 2459.0, "MIN_PERMI": 929.0, "MAX_PERMI": 1528.0, "MIN_BBXMIN": -84.875, "MAX_BBXMIN": -84.608333, "MIN_BBXMAX": -83.879976, "MAX_BBXMAX": -83.858333, "MIN_BBYMIN": 33.383333, "MAX_BBYMIN": 33.383333, "MIN_BBYMAX": 34.202715, "MAX_BBYMAX": 34.275, "MEAN_BBXC": -84.328739, "MEAN_BBYC": 33.851552, "COMPARE": 0, "GN_ASCII": "Atlanta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": null, "GN_POP": 422908.0, "ELEVATION": 320.0, "GTOPO30": 305.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 524, "UN_ADM0": "United States of America", "UN_LAT": 33.79, "UN_LONG": -84.34, "POP1950": 513.0, "POP1955": 631.0, "POP1960": 776.0, "POP1965": 959.0, "POP1970": 1182.0, "POP1975": 1386.0, "POP1980": 1625.0, "POP1985": 1879.0, "POP1990": 2184.0, "POP1995": 2781.0, "POP2000": 3542.0, "POP2005": 4307.0, "POP2010": 4506.0, "POP2015": 4695.0, "POP2020": 4888.0, "POP2025": 5035.0, "POP2050": 5151.0, "CITYALT": null, "clustered:unrelated": 0.7967172359016994}, "geometry": {"type": "Point", "coordinates": [-84.401895, 33.831959]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Chicago", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Chicago", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "Illinois", "ISO_A2": "US", "NOTE": null, "LATITUDE": 41.829991, "LONGITUDE": -87.750055, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 8990000, "POP_MIN": 2841952, "POP_OTHER": 3635101, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 4887398.0, "MEGANAME": "Chicago", "LS_NAME": "Chicago", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3747798.0, "MAX_POP20": 5069998.0, "MAX_POP50": 8416660.0, "MAX_POP300": 8416660.0, "MAX_POP310": 8450289.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1345.0, "MAX_AREAKM": 4804.0, "MIN_AREAMI": 519.0, "MAX_AREAMI": 1855.0, "MIN_PERKM": 471.0, "MAX_PERKM": 2946.0, "MIN_PERMI": 293.0, "MAX_PERMI": 1830.0, "MIN_BBXMIN": -88.408333, "MAX_BBXMIN": -88.03629, "MIN_BBXMAX": -87.528138, "MAX_BBXMAX": -87.125, "MIN_BBYMIN": 41.391667, "MAX_BBYMIN": 41.458333, "MIN_BBYMAX": 42.000972, "MAX_BBYMAX": 42.491667, "MEAN_BBXC": -87.85874, "MEAN_BBYC": 41.832719, "COMPARE": 0, "GN_ASCII": "Chicago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 2841952.0, "ELEVATION": 179.0, "GTOPO30": 181.0, "TIMEZONE": "America/Chicago", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 531, "UN_ADM0": "United States of America", "UN_LAT": 41.82, "UN_LONG": -87.64, "POP1950": 4999.0, "POP1955": 5565.0, "POP1960": 6183.0, "POP1965": 6639.0, "POP1970": 7106.0, "POP1975": 7160.0, "POP1980": 7216.0, "POP1985": 7285.0, "POP1990": 7374.0, "POP1995": 7839.0, "POP2000": 8333.0, "POP2005": 8820.0, "POP2010": 8990.0, "POP2015": 9211.0, "POP2020": 9516.0, "POP2025": 9756.0, "POP2050": 9932.0, "CITYALT": null, "clustered:unrelated": 0.7321529007319287}, "geometry": {"type": "Point", "coordinates": [-87.752, 41.831936]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Caracas", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Caracas", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Venezuela", "SOV_A3": "VEN", "ADM0NAME": "Venezuela", "ADM0_A3": "VEN", "ADM1NAME": "Distrito Capital", "ISO_A2": "VE", "NOTE": null, "LATITUDE": 10.500999, "LONGITUDE": -66.917037, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2985000, "POP_MIN": 1815679, "POP_OTHER": 2764555, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3646738.0, "MEGANAME": "Caracas", "LS_NAME": "Caracas", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2818500.0, "MAX_POP20": 3351058.0, "MAX_POP50": 3351241.0, "MAX_POP300": 3351241.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 224.0, "MAX_AREAKM": 370.0, "MIN_AREAMI": 86.0, "MAX_AREAMI": 143.0, "MIN_PERKM": 137.0, "MAX_PERKM": 278.0, "MIN_PERMI": 85.0, "MAX_PERMI": 172.0, "MIN_BBXMIN": -67.133333, "MAX_BBXMIN": -66.993057, "MIN_BBXMAX": -66.725, "MAX_BBXMAX": -66.725, "MIN_BBYMIN": 10.325, "MAX_BBYMIN": 10.408333, "MIN_BBYMAX": 10.533671, "MAX_BBYMAX": 10.541667, "MEAN_BBXC": -66.917919, "MEAN_BBYC": 10.451672, "COMPARE": 0, "GN_ASCII": "Caracas", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 25.0, "GN_POP": 1815679.0, "ELEVATION": null, "GTOPO30": 920.0, "TIMEZONE": "America/Caracas", "GEONAMESNO": "GeoNames match general.", "UN_FID": 582, "UN_ADM0": "Venezuela (Bolivarian Republic of)", "UN_LAT": 10.49, "UN_LONG": -66.89, "POP1950": 694.0, "POP1955": 955.0, "POP1960": 1316.0, "POP1965": 1657.0, "POP1970": 2060.0, "POP1975": 2342.0, "POP1980": 2575.0, "POP1985": 2693.0, "POP1990": 2767.0, "POP1995": 2816.0, "POP2000": 2864.0, "POP2005": 2930.0, "POP2010": 2985.0, "POP2015": 3098.0, "POP2020": 3306.0, "POP2025": 3482.0, "POP2050": 3619.0, "CITYALT": null, "clustered:unrelated": 0.11984743635308526}, "geometry": {"type": "Point", "coordinates": [-66.918983, 10.502944]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kiev", "NAMEPAR": null, "NAMEALT": "Kyiv", "DIFFASCII": 0, "NAMEASCII": "Kiev", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ukraine", "SOV_A3": "UKR", "ADM0NAME": "Ukraine", "ADM0_A3": "UKR", "ADM1NAME": "Kiev", "ISO_A2": "UA", "NOTE": null, "LATITUDE": 50.433367, "LONGITUDE": 30.516628, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2709000, "POP_MIN": 1662508, "POP_OTHER": 1611692, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 703448.0, "MEGANAME": "Kyiv", "LS_NAME": "Kiev", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1662508.0, "MAX_POP20": 1662508.0, "MAX_POP50": 1662508.0, "MAX_POP300": 1662508.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 217.0, "MAX_AREAKM": 217.0, "MIN_AREAMI": 84.0, "MAX_AREAMI": 84.0, "MIN_PERKM": 120.0, "MAX_PERKM": 120.0, "MIN_PERMI": 75.0, "MAX_PERMI": 75.0, "MIN_BBXMIN": 30.325, "MAX_BBXMIN": 30.325, "MIN_BBXMAX": 30.575, "MAX_BBXMAX": 30.575, "MIN_BBYMIN": 50.366667, "MAX_BBYMIN": 50.366667, "MIN_BBYMAX": 50.541667, "MAX_BBYMAX": 50.541667, "MEAN_BBXC": 30.45263, "MEAN_BBYC": 50.451094, "COMPARE": 0, "GN_ASCII": "Kiev", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 12.0, "GN_POP": 2514227.0, "ELEVATION": null, "GTOPO30": 169.0, "TIMEZONE": "Europe/Kiev", "GEONAMESNO": "GeoNames match general.", "UN_FID": 511, "UN_ADM0": "Ukraine", "UN_LAT": 50.44, "UN_LONG": 30.5, "POP1950": 815.0, "POP1955": 974.0, "POP1960": 1163.0, "POP1965": 1389.0, "POP1970": 1655.0, "POP1975": 1926.0, "POP1980": 2201.0, "POP1985": 2410.0, "POP1990": 2574.0, "POP1995": 2590.0, "POP2000": 2606.0, "POP2005": 2672.0, "POP2010": 2709.0, "POP2015": 2748.0, "POP2020": 2770.0, "POP2025": 2772.0, "POP2050": 2772.0, "CITYALT": "Kiev", "clustered:unrelated": 0.8957030085960925}, "geometry": {"type": "Point", "coordinates": [30.514682, 50.435313]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Dubai", "NAMEPAR": "Dubayy", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dubai", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United Arab Emirates", "SOV_A3": "ARE", "ADM0NAME": "United Arab Emirates", "ADM0_A3": "ARE", "ADM1NAME": "Dubay", "ISO_A2": "AE", "NOTE": null, "LATITUDE": 25.229996, "LONGITUDE": 55.279974, "CHANGED": 1.0, "NAMEDIFF": 1, "DIFFNOTE": "Name changed.", "POP_MAX": 1379000, "POP_MIN": 1137347, "POP_OTHER": 1166878, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 292223.0, "MEGANAME": "Dubayy", "LS_NAME": "Dubayy", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1193251.0, "MAX_POP20": 2244726.0, "MAX_POP50": 2244726.0, "MAX_POP300": 2244726.0, "MAX_POP310": 2244726.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 187.0, "MAX_AREAKM": 407.0, "MIN_AREAMI": 72.0, "MAX_AREAMI": 157.0, "MIN_PERKM": 158.0, "MAX_PERKM": 278.0, "MIN_PERMI": 98.0, "MAX_PERMI": 173.0, "MIN_BBXMIN": 55.175, "MAX_BBXMIN": 55.175, "MIN_BBXMAX": 55.437142, "MAX_BBXMAX": 55.533333, "MIN_BBYMIN": 25.1, "MAX_BBYMIN": 25.1, "MIN_BBYMAX": 25.308333, "MAX_BBYMAX": 25.433333, "MEAN_BBXC": 55.361736, "MEAN_BBYC": 25.258666, "COMPARE": 1, "GN_ASCII": "Dubai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 3.0, "GN_POP": 1137347.0, "ELEVATION": null, "GTOPO30": 9.0, "TIMEZONE": "Asia/Dubai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 498, "UN_ADM0": "United Arab Emirates", "UN_LAT": 25.27, "UN_LONG": 55.32, "POP1950": 20.0, "POP1955": 28.0, "POP1960": 40.0, "POP1965": 51.0, "POP1970": 80.0, "POP1975": 167.0, "POP1980": 254.0, "POP1985": 345.0, "POP1990": 473.0, "POP1995": 650.0, "POP2000": 938.0, "POP2005": 1272.0, "POP2010": 1379.0, "POP2015": 1516.0, "POP2020": 1709.0, "POP2025": 1894.0, "POP2050": 2077.0, "CITYALT": "Dubai"}, "geometry": {"type": "Point", "coordinates": [55.278028, 25.231942]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Tashkent", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tashkent", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Uzbekistan", "SOV_A3": "UZB", "ADM0NAME": "Uzbekistan", "ADM0_A3": "UZB", "ADM1NAME": "Tashkent", "ISO_A2": "UZ", "NOTE": null, "LATITUDE": 41.311702, "LONGITUDE": 69.294933, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2184000, "POP_MIN": 1978028, "POP_OTHER": 2806287, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1512569.0, "MEGANAME": "Tashkent", "LS_NAME": "Tashkent", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2865234.0, "MAX_POP20": 2865890.0, "MAX_POP50": 2865890.0, "MAX_POP300": 2865890.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 639.0, "MAX_AREAKM": 643.0, "MIN_AREAMI": 247.0, "MAX_AREAMI": 248.0, "MIN_PERKM": 377.0, "MAX_PERKM": 383.0, "MIN_PERMI": 234.0, "MAX_PERMI": 238.0, "MIN_BBXMIN": 69.05, "MAX_BBXMIN": 69.05, "MIN_BBXMAX": 69.436467, "MAX_BBXMAX": 69.45, "MIN_BBYMIN": 41.141667, "MAX_BBYMIN": 41.141667, "MIN_BBYMAX": 41.483333, "MAX_BBYMAX": 41.483333, "MEAN_BBXC": 69.256717, "MEAN_BBYC": 41.318916, "COMPARE": 0, "GN_ASCII": "Tashkent", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13.0, "GN_POP": 1978028.0, "ELEVATION": null, "GTOPO30": 460.0, "TIMEZONE": "Asia/Tashkent", "GEONAMESNO": "GeoNames match general.", "UN_FID": 580, "UN_ADM0": "Uzbekistan", "UN_LAT": 41.24, "UN_LONG": 69.34, "POP1950": 755.0, "POP1955": 843.0, "POP1960": 964.0, "POP1965": 1165.0, "POP1970": 1403.0, "POP1975": 1612.0, "POP1980": 1818.0, "POP1985": 1958.0, "POP1990": 2100.0, "POP1995": 2116.0, "POP2000": 2135.0, "POP2005": 2158.0, "POP2010": 2184.0, "POP2015": 2247.0, "POP2020": 2416.0, "POP2025": 2636.0, "POP2050": 2892.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [69.292986, 41.313647]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Madrid", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Madrid", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Kingdom of Spain", "SOV_A3": "ESP", "ADM0NAME": "Spain", "ADM0_A3": "ESP", "ADM1NAME": "Comunidad de Madrid", "ISO_A2": "ES", "NOTE": null, "LATITUDE": 40.400026, "LONGITUDE": -3.683352, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 5567000, "POP_MIN": 50437, "POP_OTHER": 3673427, "RANK_MAX": 13, "RANK_MIN": 8, "GEONAMEID": 3675707.0, "MEGANAME": "Madrid", "LS_NAME": "Madrid", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3767139.0, "MAX_POP20": 3767139.0, "MAX_POP50": 3767139.0, "MAX_POP300": 3767139.0, "MAX_POP310": 3767139.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 690.0, "MAX_AREAKM": 690.0, "MIN_AREAMI": 266.0, "MAX_AREAMI": 266.0, "MIN_PERKM": 558.0, "MAX_PERKM": 558.0, "MIN_PERMI": 347.0, "MAX_PERMI": 347.0, "MIN_BBXMIN": -4.025, "MAX_BBXMIN": -4.025, "MIN_BBXMAX": -3.433333, "MAX_BBXMAX": -3.433333, "MIN_BBYMIN": 40.225, "MAX_BBYMIN": 40.225, "MIN_BBYMAX": 40.616667, "MAX_BBYMAX": 40.616667, "MEAN_BBXC": -3.749399, "MEAN_BBYC": 40.425498, "COMPARE": 0, "GN_ASCII": "Madrid", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 33.0, "GN_POP": 50437.0, "ELEVATION": null, "GTOPO30": 2400.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 464, "UN_ADM0": "Spain", "UN_LAT": 40.44, "UN_LONG": -3.69, "POP1950": 1700.0, "POP1955": 2018.0, "POP1960": 2392.0, "POP1965": 2898.0, "POP1970": 3521.0, "POP1975": 3890.0, "POP1980": 4253.0, "POP1985": 4355.0, "POP1990": 4414.0, "POP1995": 4701.0, "POP2000": 5045.0, "POP2005": 5414.0, "POP2010": 5567.0, "POP2015": 5764.0, "POP2020": 5918.0, "POP2025": 5934.0, "POP2050": 5935.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-3.685297, 40.401972]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-1 capital", "NAME": "Geneva", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Geneva", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 0, "SOV0NAME": "Switzerland", "SOV_A3": "CHE", "ADM0NAME": "Switzerland", "ADM0_A3": "CHE", "ADM1NAME": "Gen\u00e8ve", "ISO_A2": "CH", "NOTE": null, "LATITUDE": 46.210008, "LONGITUDE": 6.140028, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1240000, "POP_MIN": 192385, "POP_OTHER": 508284, "RANK_MAX": 12, "RANK_MIN": 9, "GEONAMEID": 2660646.0, "MEGANAME": null, "LS_NAME": "Geneva", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 530422.0, "MAX_POP20": 530422.0, "MAX_POP50": 530422.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 179.0, "MAX_AREAKM": 179.0, "MIN_AREAMI": 69.0, "MAX_AREAMI": 69.0, "MIN_PERKM": 215.0, "MAX_PERKM": 215.0, "MIN_PERMI": 134.0, "MAX_PERMI": 134.0, "MIN_BBXMIN": 5.966667, "MAX_BBXMIN": 5.966667, "MIN_BBXMAX": 6.325, "MAX_BBXMAX": 6.325, "MIN_BBYMIN": 46.133333, "MAX_BBYMIN": 46.133333, "MIN_BBYMAX": 46.291667, "MAX_BBYMAX": 46.291667, "MEAN_BBXC": 6.1424, "MEAN_BBYC": 46.209427, "COMPARE": 0, "GN_ASCII": "Geneve", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": null, "GN_POP": 183981.0, "ELEVATION": null, "GTOPO30": 375.0, "TIMEZONE": "Europe/Zurich", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null, "clustered:unrelated": 0.981928064727675}, "geometry": {"type": "Point", "coordinates": [6.140028, 46.210007]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Stockholm", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Stockholm", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Sweden", "SOV_A3": "SWE", "ADM0NAME": "Sweden", "ADM0_A3": "SWE", "ADM1NAME": "Stockholm", "ISO_A2": "SE", "NOTE": null, "LATITUDE": 59.35076, "LONGITUDE": 18.097335, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted.", "POP_MAX": 1264000, "POP_MIN": 1253309, "POP_OTHER": 0, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2673730.0, "MEGANAME": "Stockholm", "LS_NAME": "Stockholm", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1337078.0, "MAX_POP20": 1337078.0, "MAX_POP50": 1337078.0, "MAX_POP300": 1337078.0, "MAX_POP310": 1337078.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 694.0, "MAX_AREAKM": 694.0, "MIN_AREAMI": 268.0, "MAX_AREAMI": 268.0, "MIN_PERKM": 629.0, "MAX_PERKM": 629.0, "MIN_PERMI": 391.0, "MAX_PERMI": 391.0, "MIN_BBXMIN": 17.775, "MAX_BBXMIN": 17.775, "MIN_BBXMAX": 18.408333, "MAX_BBXMAX": 18.408333, "MIN_BBYMIN": 59.091667, "MAX_BBYMIN": 59.091667, "MIN_BBYMAX": 59.558333, "MAX_BBYMAX": 59.558333, "MEAN_BBXC": 18.044982, "MEAN_BBYC": 59.32868, "COMPARE": 0, "GN_ASCII": "Stockholm", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26.0, "GN_POP": 1253309.0, "ELEVATION": null, "GTOPO30": 20.0, "TIMEZONE": "Europe/Stockholm", "GEONAMESNO": "GeoNames match general.", "UN_FID": 467, "UN_ADM0": "Sweden", "UN_LAT": 59.33, "UN_LONG": 17.99, "POP1950": 741.0, "POP1955": 772.0, "POP1960": 805.0, "POP1965": 1003.0, "POP1970": 1035.0, "POP1975": 1015.0, "POP1980": 992.0, "POP1985": 1012.0, "POP1990": 1038.0, "POP1995": 1138.0, "POP2000": 1206.0, "POP2005": 1248.0, "POP2010": 1264.0, "POP2015": 1285.0, "POP2020": 1308.0, "POP2025": 1326.0, "POP2050": 1343.0, "CITYALT": null, "clustered:unrelated": 0.4519973954659141}, "geometry": {"type": "Point", "coordinates": [18.095388, 59.352705]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bangkok", "NAMEPAR": null, "NAMEALT": "Krung Thep", "DIFFASCII": 0, "NAMEASCII": "Bangkok", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Thailand", "SOV_A3": "THA", "ADM0NAME": "Thailand", "ADM0_A3": "THA", "ADM1NAME": "Bangkok Metropolis", "ISO_A2": "TH", "NOTE": null, "LATITUDE": 13.749999, "LONGITUDE": 100.516645, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 6704000, "POP_MIN": 5104476, "POP_OTHER": 5082758, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1609350.0, "MEGANAME": "Krung Thep", "LS_NAME": "Bangkok", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5323600.0, "MAX_POP20": 8823534.0, "MAX_POP50": 9210939.0, "MAX_POP300": 9206246.0, "MAX_POP310": 9206246.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 815.0, "MAX_AREAKM": 2350.0, "MIN_AREAMI": 315.0, "MAX_AREAMI": 908.0, "MIN_PERKM": 280.0, "MAX_PERKM": 1354.0, "MIN_PERMI": 174.0, "MAX_PERMI": 841.0, "MIN_BBXMIN": 99.991667, "MAX_BBXMIN": 100.216667, "MIN_BBXMAX": 100.844293, "MAX_BBXMAX": 101.016667, "MIN_BBYMIN": 13.5, "MAX_BBYMIN": 13.516667, "MIN_BBYMAX": 13.872295, "MAX_BBYMAX": 14.158333, "MEAN_BBXC": 100.545047, "MEAN_BBYC": 13.761017, "COMPARE": 0, "GN_ASCII": "Bangkok", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40.0, "GN_POP": 5104476.0, "ELEVATION": null, "GTOPO30": 2.0, "TIMEZONE": "Asia/Bangkok", "GEONAMESNO": "GeoNames match general.", "UN_FID": 496, "UN_ADM0": "Thailand", "UN_LAT": 13.75, "UN_LONG": 100.51, "POP1950": 1360.0, "POP1955": 1712.0, "POP1960": 2151.0, "POP1965": 2584.0, "POP1970": 3110.0, "POP1975": 3842.0, "POP1980": 4723.0, "POP1985": 5279.0, "POP1990": 5888.0, "POP1995": 6106.0, "POP2000": 6332.0, "POP2005": 6582.0, "POP2010": 6704.0, "POP2015": 6918.0, "POP2020": 7332.0, "POP2025": 7807.0, "POP2050": 8332.0, "CITYALT": "Bangkok", "clustered:unrelated": 0.9833111168476758}, "geometry": {"type": "Point", "coordinates": [100.514698, 13.751945]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Lima", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lima", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Peru", "SOV_A3": "PER", "ADM0NAME": "Peru", "ADM0_A3": "PER", "ADM1NAME": "Lima", "ISO_A2": "PE", "NOTE": null, "LATITUDE": -12.048013, "LONGITUDE": -77.050062, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 8012000, "POP_MIN": 6758234, "POP_OTHER": 6068380, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3936456.0, "MEGANAME": "Lima", "LS_NAME": "Lima2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6758234.0, "MAX_POP20": 7092933.0, "MAX_POP50": 7115614.0, "MAX_POP300": 7115806.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 724.0, "MAX_AREAKM": 790.0, "MIN_AREAMI": 279.0, "MAX_AREAMI": 305.0, "MIN_PERKM": 315.0, "MAX_PERKM": 384.0, "MIN_PERMI": 196.0, "MAX_PERMI": 239.0, "MIN_BBXMIN": -77.166667, "MAX_BBXMIN": -77.153161, "MIN_BBXMAX": -76.85, "MAX_BBXMAX": -76.833333, "MIN_BBYMIN": -12.316667, "MAX_BBYMIN": -12.281801, "MIN_BBYMAX": -11.808333, "MAX_BBYMAX": -11.808333, "MEAN_BBXC": -77.010199, "MEAN_BBYC": -12.041474, "COMPARE": 0, "GN_ASCII": "Lima", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 15.0, "GN_POP": 7737002.0, "ELEVATION": null, "GTOPO30": 108.0, "TIMEZONE": "America/Lima", "GEONAMESNO": "GeoNames match general.", "UN_FID": 411, "UN_ADM0": "Peru", "UN_LAT": -12.08, "UN_LONG": -77.04, "POP1950": 1066.0, "POP1955": 1368.0, "POP1960": 1756.0, "POP1965": 2284.0, "POP1970": 2980.0, "POP1975": 3696.0, "POP1980": 4438.0, "POP1985": 5116.0, "POP1990": 5837.0, "POP1995": 6537.0, "POP2000": 7116.0, "POP2005": 7747.0, "POP2010": 8012.0, "POP2015": 8375.0, "POP2020": 8857.0, "POP2025": 9251.0, "POP2050": 9600.0, "CITYALT": null, "clustered:unrelated": 0.9204042560921434}, "geometry": {"type": "Point", "coordinates": [-77.052007, -12.046066]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Dakar", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Dakar", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Senegal", "SOV_A3": "SEN", "ADM0NAME": "Senegal", "ADM0_A3": "SEN", "ADM1NAME": "Dakar", "ISO_A2": "SM", "NOTE": null, "LATITUDE": 14.715832, "LONGITUDE": -17.47313, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2604000, "POP_MIN": 2476400, "POP_OTHER": 2470140, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2253354.0, "MEGANAME": "Dakar", "LS_NAME": "Dakar", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2635239.0, "MAX_POP20": 2634882.0, "MAX_POP50": 2660614.0, "MAX_POP300": 2660614.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 257.0, "MAX_AREAKM": 302.0, "MIN_AREAMI": 99.0, "MAX_AREAMI": 117.0, "MIN_PERKM": 222.0, "MAX_PERKM": 288.0, "MIN_PERMI": 138.0, "MAX_PERMI": 179.0, "MIN_BBXMIN": -17.533333, "MAX_BBXMIN": -17.533333, "MIN_BBXMAX": -17.2, "MAX_BBXMAX": -17.125, "MIN_BBYMIN": 14.65, "MAX_BBYMIN": 14.65, "MIN_BBYMAX": 14.825, "MAX_BBYMAX": 14.825, "MEAN_BBXC": -17.343779, "MEAN_BBYC": 14.742828, "COMPARE": 0, "GN_ASCII": "Dakar", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 1.0, "GN_POP": 2476400.0, "ELEVATION": null, "GTOPO30": 14.0, "TIMEZONE": "Africa/Dakar", "GEONAMESNO": "GeoNames match general.", "UN_FID": 447, "UN_ADM0": "Senegal", "UN_LAT": 14.68, "UN_LONG": -17.45, "POP1950": 211.0, "POP1955": 235.0, "POP1960": 359.0, "POP1965": 473.0, "POP1970": 610.0, "POP1975": 782.0, "POP1980": 957.0, "POP1985": 1162.0, "POP1990": 1405.0, "POP1995": 1688.0, "POP2000": 2029.0, "POP2005": 2434.0, "POP2010": 2604.0, "POP2015": 2856.0, "POP2020": 3275.0, "POP2025": 3726.0, "POP2050": 4225.0, "CITYALT": null, "clustered:unrelated": 0.4258410501668334}, "geometry": {"type": "Point", "coordinates": [-17.475075, 14.717777]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Johannesburg", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Johannesburg", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Gauteng", "ISO_A2": "ZA", "NOTE": null, "LATITUDE": -26.170045, "LONGITUDE": 28.03001, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 3435000, "POP_MIN": 2026469, "POP_OTHER": 3852246, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 993800.0, "MEGANAME": "Johannesburg", "LS_NAME": "Johannesburg", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3887168.0, "MAX_POP20": 5413549.0, "MAX_POP50": 5413549.0, "MAX_POP300": 5413549.0, "MAX_POP310": 5451385.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1124.0, "MAX_AREAKM": 1614.0, "MIN_AREAMI": 434.0, "MAX_AREAMI": 623.0, "MIN_PERKM": 497.0, "MAX_PERKM": 828.0, "MIN_PERMI": 309.0, "MAX_PERMI": 514.0, "MIN_BBXMIN": 27.733333, "MAX_BBXMIN": 27.733333, "MIN_BBXMAX": 28.193693, "MAX_BBXMAX": 28.491667, "MIN_BBYMIN": -26.4, "MAX_BBYMIN": -26.4, "MIN_BBYMAX": -25.991667, "MAX_BBYMAX": -25.941667, "MEAN_BBXC": 28.063712, "MEAN_BBYC": -26.187259, "COMPARE": 0, "GN_ASCII": "Johannesburg", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 6.0, "GN_POP": 2026469.0, "ELEVATION": null, "GTOPO30": 1775.0, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 458, "UN_ADM0": "South Africa", "UN_LAT": -26.17, "UN_LONG": 28.0, "POP1950": 900.0, "POP1955": 1016.0, "POP1960": 1147.0, "POP1965": 1288.0, "POP1970": 1444.0, "POP1975": 1547.0, "POP1980": 1656.0, "POP1985": 1773.0, "POP1990": 1898.0, "POP1995": 2265.0, "POP2000": 2732.0, "POP2005": 3258.0, "POP2010": 3435.0, "POP2015": 3618.0, "POP2020": 3785.0, "POP2025": 3916.0, "POP2050": 4041.0, "CITYALT": null, "clustered:unrelated": 0.6067174231689986}, "geometry": {"type": "Point", "coordinates": [28.028063, -26.168098]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Amsterdam", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Amsterdam", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto capita", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Kingdom of the Netherlands", "SOV_A3": "NLD", "ADM0NAME": "Netherlands", "ADM0_A3": "NLD", "ADM1NAME": "Noord-Holland", "ISO_A2": "NL", "NOTE": null, "LATITUDE": 52.349969, "LONGITUDE": 4.91664, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 1031000, "POP_MIN": 741636, "POP_OTHER": 962488, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 2759794.0, "MEGANAME": "Amsterdam", "LS_NAME": "Amsterdam", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1072902.0, "MAX_POP20": 1072902.0, "MAX_POP50": 1108173.0, "MAX_POP300": 1108173.0, "MAX_POP310": 1108173.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 275.0, "MAX_AREAKM": 300.0, "MIN_AREAMI": 106.0, "MAX_AREAMI": 116.0, "MIN_PERKM": 293.0, "MAX_PERKM": 343.0, "MIN_PERMI": 182.0, "MAX_PERMI": 213.0, "MIN_BBXMIN": 4.725, "MAX_BBXMIN": 4.757753, "MIN_BBXMAX": 5.058333, "MAX_BBXMAX": 5.058333, "MIN_BBYMIN": 52.183333, "MAX_BBYMIN": 52.183333, "MIN_BBYMAX": 52.508333, "MAX_BBYMAX": 52.533333, "MEAN_BBXC": 4.871429, "MEAN_BBYC": 52.348868, "COMPARE": 0, "GN_ASCII": "Amsterdam", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 741636.0, "ELEVATION": null, "GTOPO30": -2.0, "TIMEZONE": "Europe/Amsterdam", "GEONAMESNO": "GeoNames match general.", "UN_FID": 379, "UN_ADM0": "Netherlands", "UN_LAT": 52.37, "UN_LONG": 4.89, "POP1950": 851.0, "POP1955": 871.0, "POP1960": 895.0, "POP1965": 942.0, "POP1970": 927.0, "POP1975": 978.0, "POP1980": 941.0, "POP1985": 907.0, "POP1990": 936.0, "POP1995": 988.0, "POP2000": 1005.0, "POP2005": 1023.0, "POP2010": 1031.0, "POP2015": 1044.0, "POP2020": 1064.0, "POP2025": 1078.0, "POP2050": 1089.0, "CITYALT": null, "clustered:unrelated": 0.018255858877186504}, "geometry": {"type": "Point", "coordinates": [4.914694, 52.351914]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Casablanca", "NAMEPAR": null, "NAMEALT": "Dar-el-Beida", "DIFFASCII": 0, "NAMEASCII": "Casablanca", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Morocco", "SOV_A3": "MAR", "ADM0NAME": "Morocco", "ADM0_A3": "MAR", "ADM1NAME": "Grand Casablanca", "ISO_A2": "MA", "NOTE": null, "LATITUDE": 33.599976, "LONGITUDE": -7.616367, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3181000, "POP_MIN": 3144909, "POP_OTHER": 3718797, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2553604.0, "MEGANAME": "Dar-el-Beida", "LS_NAME": "Casablanca", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3796279.0, "MAX_POP20": 3796279.0, "MAX_POP50": 3796279.0, "MAX_POP300": 3796279.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 436.0, "MAX_AREAKM": 436.0, "MIN_AREAMI": 168.0, "MAX_AREAMI": 168.0, "MIN_PERKM": 261.0, "MAX_PERKM": 261.0, "MIN_PERMI": 162.0, "MAX_PERMI": 162.0, "MIN_BBXMIN": -7.7, "MAX_BBXMIN": -7.7, "MIN_BBXMAX": -7.325, "MAX_BBXMAX": -7.325, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.391667, "MIN_BBYMAX": 33.733333, "MAX_BBYMAX": 33.733333, "MEAN_BBXC": -7.518511, "MEAN_BBYC": 33.557664, "COMPARE": 0, "GN_ASCII": "Casablanca", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 45.0, "GN_POP": 3144909.0, "ELEVATION": null, "GTOPO30": 17.0, "TIMEZONE": "Africa/Casablanca", "GEONAMESNO": "GeoNames match general.", "UN_FID": 372, "UN_ADM0": "Morocco", "UN_LAT": 33.6, "UN_LONG": -7.63, "POP1950": 625.0, "POP1955": 778.0, "POP1960": 967.0, "POP1965": 1206.0, "POP1970": 1505.0, "POP1975": 1793.0, "POP1980": 2109.0, "POP1985": 2406.0, "POP1990": 2682.0, "POP1995": 2951.0, "POP2000": 3043.0, "POP2005": 3138.0, "POP2010": 3181.0, "POP2015": 3267.0, "POP2020": 3475.0, "POP2025": 3716.0, "POP2050": 3949.0, "CITYALT": "Casablanca"}, "geometry": {"type": "Point", "coordinates": [-7.618313, 33.601922]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Seoul", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Seoul", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Korea, South", "SOV_A3": "KOR", "ADM0NAME": "South Korea", "ADM0_A3": "KOR", "ADM1NAME": "Seoul", "ISO_A2": "KR", "NOTE": null, "LATITUDE": 37.566349, "LONGITUDE": 126.999731, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 9796000, "POP_MIN": 9796000, "POP_OTHER": 12018058, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1835848.0, "MEGANAME": "Seoul", "LS_NAME": "Seoul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12322855.0, "MAX_POP20": 13143622.0, "MAX_POP50": 21387676.0, "MAX_POP300": 21991959.0, "MAX_POP310": 21991959.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 971.0, "MAX_AREAKM": 2718.0, "MIN_AREAMI": 375.0, "MAX_AREAMI": 1049.0, "MIN_PERKM": 546.0, "MAX_PERKM": 1901.0, "MIN_PERMI": 340.0, "MAX_PERMI": 1181.0, "MIN_BBXMIN": 126.55, "MAX_BBXMIN": 126.767185, "MIN_BBXMAX": 127.266667, "MAX_BBXMAX": 127.325, "MIN_BBYMIN": 36.75, "MAX_BBYMIN": 37.412022, "MIN_BBYMAX": 37.791667, "MAX_BBYMAX": 37.875, "MEAN_BBXC": 126.971295, "MEAN_BBYC": 37.485925, "COMPARE": 0, "GN_ASCII": "Seoul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 10349312.0, "ELEVATION": null, "GTOPO30": 46.0, "TIMEZONE": "Asia/Seoul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 336, "UN_ADM0": "Republic of Korea", "UN_LAT": 37.54, "UN_LONG": 126.93, "POP1950": 1021.0, "POP1955": 1553.0, "POP1960": 2361.0, "POP1965": 3452.0, "POP1970": 5312.0, "POP1975": 6808.0, "POP1980": 8258.0, "POP1985": 9547.0, "POP1990": 10544.0, "POP1995": 10256.0, "POP2000": 9917.0, "POP2005": 9825.0, "POP2010": 9796.0, "POP2015": 9762.0, "POP2020": 9740.0, "POP2025": 9738.0, "POP2050": 9738.0, "CITYALT": null, "clustered:unrelated": 0.5771516549050235}, "geometry": {"type": "Point", "coordinates": [126.997785, 37.568294]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Manila", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Manila", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official, de fa", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Philippines", "SOV_A3": "PHL", "ADM0NAME": "Philippines", "ADM0_A3": "PHL", "ADM1NAME": "Metropolitan Manila", "ISO_A2": "PH", "NOTE": null, "LATITUDE": 14.604159, "LONGITUDE": 120.982217, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 11100000, "POP_MIN": 3077575, "POP_OTHER": 2381280, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1701668.0, "MEGANAME": "Manila", "LS_NAME": "Manila", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3077575.0, "MAX_POP20": 3077575.0, "MAX_POP50": 3077575.0, "MAX_POP300": 23366503.0, "MAX_POP310": 26749011.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 67.0, "MAX_AREAKM": 8820.0, "MIN_AREAMI": 26.0, "MAX_AREAMI": 3405.0, "MIN_PERKM": 46.0, "MAX_PERKM": 5298.0, "MIN_PERMI": 29.0, "MAX_PERMI": 3292.0, "MIN_BBXMIN": 120.141667, "MAX_BBXMIN": 120.925, "MIN_BBXMAX": 121.038985, "MAX_BBXMAX": 121.333333, "MIN_BBYMIN": 14.016667, "MAX_BBYMIN": 14.571814, "MIN_BBYMAX": 14.702876, "MAX_BBYMAX": 16.416667, "MEAN_BBXC": 120.915044, "MEAN_BBYC": 14.823118, "COMPARE": 0, "GN_ASCII": "Manila", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 10444527.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Asia/Manila", "GEONAMESNO": "GeoNames match general.", "UN_FID": 414, "UN_ADM0": "Philippines", "UN_LAT": 14.61, "UN_LONG": 120.96, "POP1950": 1544.0, "POP1955": 1872.0, "POP1960": 2274.0, "POP1965": 2829.0, "POP1970": 3534.0, "POP1975": 4999.0, "POP1980": 5955.0, "POP1985": 6888.0, "POP1990": 7973.0, "POP1995": 9401.0, "POP2000": 9958.0, "POP2005": 10761.0, "POP2010": 11100.0, "POP2015": 11662.0, "POP2020": 12786.0, "POP2025": 13892.0, "POP2050": 14808.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [120.980271, 14.606104]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Monterrey", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Monterrey", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Nuevo Le\u00f3n", "ISO_A2": "MX", "NOTE": null, "LATITUDE": 25.669995, "LONGITUDE": -100.329985, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3712000, "POP_MIN": 1122874, "POP_OTHER": 3225636, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3995465.0, "MEGANAME": "Monterrey", "LS_NAME": "Monterrey", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3296184.0, "MAX_POP20": 3296184.0, "MAX_POP50": 3296184.0, "MAX_POP300": 3296184.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 594.0, "MAX_AREAKM": 594.0, "MIN_AREAMI": 229.0, "MAX_AREAMI": 229.0, "MIN_PERKM": 208.0, "MAX_PERKM": 208.0, "MIN_PERMI": 130.0, "MAX_PERMI": 130.0, "MIN_BBXMIN": -100.5, "MAX_BBXMIN": -100.5, "MIN_BBXMAX": -100.125, "MAX_BBXMAX": -100.125, "MIN_BBYMIN": 25.575, "MAX_BBYMIN": 25.575, "MIN_BBYMAX": 25.85, "MAX_BBYMAX": 25.85, "MEAN_BBXC": -100.290632, "MEAN_BBYC": 25.71613, "COMPARE": 0, "GN_ASCII": "Monterrey", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19.0, "GN_POP": 1122874.0, "ELEVATION": null, "GTOPO30": 563.0, "TIMEZONE": "America/Monterrey", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 359, "UN_ADM0": "Mexico", "UN_LAT": 25.67, "UN_LONG": -100.31, "POP1950": 356.0, "POP1955": 498.0, "POP1960": 698.0, "POP1965": 943.0, "POP1970": 1267.0, "POP1975": 1589.0, "POP1980": 1992.0, "POP1985": 2273.0, "POP1990": 2594.0, "POP1995": 2961.0, "POP2000": 3266.0, "POP2005": 3579.0, "POP2010": 3712.0, "POP2015": 3901.0, "POP2020": 4140.0, "POP2025": 4298.0, "POP2050": 4413.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-100.33193, 25.67194]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-1 capital", "NAME": "Auckland", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Auckland", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "New Zealand", "SOV_A3": "NZL", "ADM0NAME": "New Zealand", "ADM0_A3": "NZL", "ADM1NAME": "Auckland", "ISO_A2": "NZ", "NOTE": null, "LATITUDE": -36.850013, "LONGITUDE": 174.764981, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 1245000, "POP_MIN": 274020, "POP_OTHER": 243794, "RANK_MAX": 12, "RANK_MIN": 10, "GEONAMEID": 2193733.0, "MEGANAME": "Auckland", "LS_NAME": "Auckland", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 274020.0, "MAX_POP20": 354233.0, "MAX_POP50": 350364.0, "MAX_POP300": 638000.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 169.0, "MAX_AREAKM": 399.0, "MIN_AREAMI": 65.0, "MAX_AREAMI": 154.0, "MIN_PERKM": 105.0, "MAX_PERKM": 266.0, "MIN_PERMI": 65.0, "MAX_PERMI": 166.0, "MIN_BBXMIN": 174.583333, "MAX_BBXMIN": 174.657483, "MIN_BBXMAX": 174.883333, "MAX_BBXMAX": 174.983333, "MIN_BBYMIN": -37.091667, "MAX_BBYMIN": -36.964958, "MIN_BBYMAX": -36.825, "MAX_BBYMAX": -36.8, "MEAN_BBXC": 174.755045, "MEAN_BBYC": -36.896818, "COMPARE": 0, "GN_ASCII": "Auckland", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 417910.0, "ELEVATION": null, "GTOPO30": 26.0, "TIMEZONE": "Pacific/Auckland", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 381, "UN_ADM0": "New Zealand", "UN_LAT": -36.9, "UN_LONG": 174.76, "POP1950": 319.0, "POP1955": 387.0, "POP1960": 440.0, "POP1965": 532.0, "POP1970": 635.0, "POP1975": 729.0, "POP1980": 774.0, "POP1985": 812.0, "POP1990": 870.0, "POP1995": 976.0, "POP2000": 1063.0, "POP2005": 1189.0, "POP2010": 1245.0, "POP2015": 1321.0, "POP2020": 1398.0, "POP2025": 1441.0, "POP2050": 1475.0, "CITYALT": null, "clustered:unrelated": 0.09318218563663516}, "geometry": {"type": "Point", "coordinates": [174.763034, -36.848067]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Berlin", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Berlin", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Germany", "SOV_A3": "DEU", "ADM0NAME": "Germany", "ADM0_A3": "DEU", "ADM1NAME": "Berlin", "ISO_A2": "DE", "NOTE": null, "LATITUDE": 52.521819, "LONGITUDE": 13.401549, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 3406000, "POP_MIN": 3094014, "POP_OTHER": 3013258, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2950159.0, "MEGANAME": "Berlin", "LS_NAME": "Berlin", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3094014.0, "MAX_POP20": 3093307.0, "MAX_POP50": 3503466.0, "MAX_POP300": 3503466.0, "MAX_POP310": 3503466.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 811.0, "MAX_AREAKM": 1021.0, "MIN_AREAMI": 313.0, "MAX_AREAMI": 394.0, "MIN_PERKM": 482.0, "MAX_PERKM": 709.0, "MIN_PERMI": 300.0, "MAX_PERMI": 441.0, "MIN_BBXMIN": 12.958333, "MAX_BBXMIN": 13.193843, "MIN_BBXMAX": 13.925, "MAX_BBXMAX": 13.925, "MIN_BBYMIN": 52.275, "MAX_BBYMIN": 52.275, "MIN_BBYMAX": 52.708333, "MAX_BBYMAX": 52.708333, "MEAN_BBXC": 13.418329, "MEAN_BBYC": 52.503658, "COMPARE": 0, "GN_ASCII": "Berlin", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 16.0, "GN_POP": 3426354.0, "ELEVATION": 74.0, "GTOPO30": 35.0, "TIMEZONE": "Europe/Berlin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 192, "UN_ADM0": "Germany", "UN_LAT": 52.51, "UN_LONG": 13.32, "POP1950": 3352.0, "POP1955": 3299.0, "POP1960": 3260.0, "POP1965": 3232.0, "POP1970": 3206.0, "POP1975": 3130.0, "POP1980": 3056.0, "POP1985": 3060.0, "POP1990": 3422.0, "POP1995": 3471.0, "POP2000": 3384.0, "POP2005": 3391.0, "POP2010": 3406.0, "POP2015": 3423.0, "POP2020": 3434.0, "POP2025": 3436.0, "POP2050": 3436.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [13.399602, 52.523764]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Urumqi", "NAMEPAR": null, "NAMEALT": "\u00dcr\u00fcmqi|Wulumqi", "DIFFASCII": 0, "NAMEASCII": "Urumqi", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Xinjiang Uygur", "ISO_A2": "CN", "NOTE": null, "LATITUDE": 43.805012, "LONGITUDE": 87.575006, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2151000, "POP_MIN": 1508225, "POP_OTHER": 2044401, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1529102.0, "MEGANAME": "\u00dcr\u00fcmqi (Wulumqi)", "LS_NAME": "Urumqi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2066046.0, "MAX_POP20": 2066046.0, "MAX_POP50": 2066046.0, "MAX_POP300": 2066046.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 361.0, "MAX_AREAKM": 361.0, "MIN_AREAMI": 139.0, "MAX_AREAMI": 139.0, "MIN_PERKM": 318.0, "MAX_PERKM": 318.0, "MIN_PERMI": 198.0, "MAX_PERMI": 198.0, "MIN_BBXMIN": 87.358333, "MAX_BBXMIN": 87.358333, "MIN_BBXMAX": 87.725, "MAX_BBXMAX": 87.725, "MIN_BBYMIN": 43.641667, "MAX_BBYMIN": 43.641667, "MIN_BBYMAX": 44.016667, "MAX_BBYMAX": 44.016667, "MEAN_BBXC": 87.578494, "MEAN_BBYC": 43.854525, "COMPARE": 0, "GN_ASCII": "Urumqi", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 13.0, "GN_POP": 1508225.0, "ELEVATION": null, "GTOPO30": 915.0, "TIMEZONE": "Asia/Urumqi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 118, "UN_ADM0": "China", "UN_LAT": 43.78, "UN_LONG": 87.58, "POP1950": 253.0, "POP1955": 312.0, "POP1960": 384.0, "POP1965": 472.0, "POP1970": 581.0, "POP1975": 715.0, "POP1980": 881.0, "POP1985": 1029.0, "POP1990": 1161.0, "POP1995": 1417.0, "POP2000": 1730.0, "POP2005": 2025.0, "POP2010": 2151.0, "POP2015": 2340.0, "POP2020": 2620.0, "POP2025": 2851.0, "POP2050": 3038.0, "CITYALT": "Urumqi"}, "geometry": {"type": "Point", "coordinates": [87.573059, 43.806958]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Chengdu", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Chengdu", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Sichuan", "ISO_A2": "CN", "NOTE": null, "LATITUDE": 30.67, "LONGITUDE": 104.070019, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4123000, "POP_MIN": 3950437, "POP_OTHER": 11622929, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1815286.0, "MEGANAME": "Chengdu", "LS_NAME": "Chengdu", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9954810.0, "MAX_POP20": 11359674.0, "MAX_POP50": 24374217.0, "MAX_POP300": null, "MAX_POP310": null, "MAX_NATSCA": 50.0, "MIN_AREAKM": 5912.0, "MAX_AREAKM": 24244.0, "MIN_AREAMI": 2283.0, "MAX_AREAMI": 9361.0, "MIN_PERKM": 2296.0, "MAX_PERKM": 11900.0, "MIN_PERMI": 1427.0, "MAX_PERMI": 7394.0, "MIN_BBXMIN": 103.125, "MAX_BBXMIN": 103.383333, "MIN_BBXMAX": 104.433333, "MAX_BBXMAX": 105.375, "MIN_BBYMIN": 28.738768, "MAX_BBYMIN": 30.065456, "MIN_BBYMAX": 31.083333, "MAX_BBYMAX": 31.341667, "MEAN_BBXC": 104.039242, "MEAN_BBYC": 30.486458, "COMPARE": 0, "GN_ASCII": "Chengdu", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32.0, "GN_POP": 3950437.0, "ELEVATION": null, "GTOPO30": 529.0, "TIMEZONE": "Asia/Chongqing", "GEONAMESNO": "GeoNames match general.", "UN_FID": 31, "UN_ADM0": "China", "UN_LAT": 30.67, "UN_LONG": 104.07, "POP1950": 768.0, "POP1955": 922.0, "POP1960": 1106.0, "POP1965": 1327.0, "POP1970": 1592.0, "POP1975": 1911.0, "POP1980": 2293.0, "POP1985": 2639.0, "POP1990": 2955.0, "POP1995": 3403.0, "POP2000": 3919.0, "POP2005": 4065.0, "POP2010": 4123.0, "POP2015": 4266.0, "POP2020": 4634.0, "POP2025": 5014.0, "POP2050": 5320.0, "CITYALT": null, "clustered:unrelated": 0.7550443462925647}, "geometry": {"type": "Point", "coordinates": [104.068073, 30.671945]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 region capital", "NAME": "Osaka", "NAMEPAR": null, "NAMEALT": "Osaka-Kobe", "DIFFASCII": 0, "NAMEASCII": "Osaka", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Osaka", "ISO_A2": "JP", "NOTE": null, "LATITUDE": 34.750035, "LONGITUDE": 135.460145, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature to Admin-0 region capital.", "POP_MAX": 11294000, "POP_MIN": 2592413, "POP_OTHER": 9630783, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1853909.0, "MEGANAME": "Osaka-Kobe", "LS_NAME": "Osaka", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 10169723.0, "MAX_POP20": 10259448.0, "MAX_POP50": 13292739.0, "MAX_POP300": 15645640.0, "MAX_POP310": 15645640.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1561.0, "MAX_AREAKM": 2861.0, "MIN_AREAMI": 603.0, "MAX_AREAMI": 1105.0, "MIN_PERKM": 546.0, "MAX_PERKM": 1202.0, "MIN_PERMI": 339.0, "MAX_PERMI": 747.0, "MIN_BBXMIN": 134.508333, "MAX_BBXMIN": 135.304598, "MIN_BBXMAX": 135.883333, "MAX_BBXMAX": 135.883333, "MIN_BBYMIN": 34.325, "MAX_BBYMIN": 34.408333, "MIN_BBYMAX": 34.916667, "MAX_BBYMAX": 35.1, "MEAN_BBXC": 135.475415, "MEAN_BBYC": 34.676719, "COMPARE": 0, "GN_ASCII": "Osaka", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 32.0, "GN_POP": 2592413.0, "ELEVATION": null, "GTOPO30": 4.0, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames rough area, rough name.", "UN_FID": 315, "UN_ADM0": "Japan", "UN_LAT": 34.63, "UN_LONG": 135.51, "POP1950": 4147.0, "POP1955": 5120.0, "POP1960": 6227.0, "POP1965": 7654.0, "POP1970": 9408.0, "POP1975": 9844.0, "POP1980": 9990.0, "POP1985": 10350.0, "POP1990": 11035.0, "POP1995": 11052.0, "POP2000": 11165.0, "POP2005": 11258.0, "POP2010": 11294.0, "POP2015": 11337.0, "POP2020": 11365.0, "POP2025": 11368.0, "POP2050": 11368.0, "CITYALT": "Osaka"}, "geometry": {"type": "Point", "coordinates": [135.458198, 34.751981]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Kinshasa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kinshasa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Congo (Kinshasa)", "SOV_A3": "COD", "ADM0NAME": "Congo (Kinshasa)", "ADM0_A3": "COD", "ADM1NAME": "Kinshasa City", "ISO_A2": "CD", "NOTE": null, "LATITUDE": -4.329724, "LONGITUDE": 15.314972, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7843000, "POP_MIN": 5565703, "POP_OTHER": 4738154, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2314302.0, "MEGANAME": "Kinshasa", "LS_NAME": "Kinshasa", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5565703.0, "MAX_POP20": 5567255.0, "MAX_POP50": 5567255.0, "MAX_POP300": 5567255.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 346.0, "MAX_AREAKM": 357.0, "MIN_AREAMI": 134.0, "MAX_AREAMI": 138.0, "MIN_PERKM": 201.0, "MAX_PERKM": 219.0, "MIN_PERMI": 125.0, "MAX_PERMI": 136.0, "MIN_BBXMIN": 15.183333, "MAX_BBXMIN": 15.183333, "MIN_BBXMAX": 15.533333, "MAX_BBXMAX": 15.533333, "MIN_BBYMIN": -4.5, "MAX_BBYMIN": -4.478678, "MIN_BBYMAX": -4.291667, "MAX_BBYMAX": -4.291667, "MEAN_BBXC": 15.334415, "MEAN_BBYC": -4.384467, "COMPARE": 0, "GN_ASCII": "Kinshasa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 6.0, "GN_POP": 7785965.0, "ELEVATION": null, "GTOPO30": 224.0, "TIMEZONE": "Africa/Kinshasa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 168, "UN_ADM0": "Democratic Republic of the Congo", "UN_LAT": -4.32, "UN_LONG": 15.29, "POP1950": 202.0, "POP1955": 292.0, "POP1960": 443.0, "POP1965": 717.0, "POP1970": 1070.0, "POP1975": 1482.0, "POP1980": 2053.0, "POP1985": 2793.0, "POP1990": 3448.0, "POP1995": 4447.0, "POP2000": 5485.0, "POP2005": 7108.0, "POP2010": 7843.0, "POP2015": 9052.0, "POP2020": 11313.0, "POP2025": 13875.0, "POP2050": 16762.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [15.313026, -4.327778]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "New Delhi", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "New Delhi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 0, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Delhi", "ISO_A2": "IN", "NOTE": null, "LATITUDE": 28.600023, "LONGITUDE": 77.19998, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 317797, "POP_MIN": 317797, "POP_OTHER": 8060107, "RANK_MAX": 10, "RANK_MIN": 10, "GEONAMEID": 1261481.0, "MEGANAME": null, "LS_NAME": "New Delhi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8761047.0, "MAX_POP20": 13414375.0, "MAX_POP50": 32426336.0, "MAX_POP300": 32424761.0, "MAX_POP310": 224908923.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 864.0, "MAX_AREAKM": 186559.0, "MIN_AREAMI": 334.0, "MAX_AREAMI": 72030.0, "MIN_PERKM": 244.0, "MAX_PERKM": 130296.0, "MIN_PERMI": 152.0, "MAX_PERMI": 80962.0, "MIN_BBXMIN": 71.033333, "MAX_BBXMIN": 76.943289, "MIN_BBXMAX": 77.43183, "MAX_BBXMAX": 82.566667, "MIN_BBYMIN": 24.0, "MAX_BBYMIN": 28.152007, "MIN_BBYMAX": 28.738629, "MAX_BBYMAX": 33.466667, "MEAN_BBXC": 77.272945, "MEAN_BBYC": 28.382537, "COMPARE": 0, "GN_ASCII": "New Delhi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 317797.0, "ELEVATION": null, "GTOPO30": 205.0, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 0, "UN_ADM0": null, "UN_LAT": null, "UN_LONG": null, "POP1950": null, "POP1955": null, "POP1960": null, "POP1965": null, "POP1970": null, "POP1975": null, "POP1980": null, "POP1985": null, "POP1990": null, "POP1995": null, "POP2000": null, "POP2005": null, "POP2010": null, "POP2015": null, "POP2020": null, "POP2025": null, "POP2050": null, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [77.19998, 28.600023]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Bangalore", "NAMEPAR": null, "NAMEALT": "Bengaluru", "DIFFASCII": 0, "NAMEASCII": "Bangalore", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Karnataka", "ISO_A2": "IN", "NOTE": null, "LATITUDE": 12.969995, "LONGITUDE": 77.56001, "CHANGED": 3.0, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 6787000, "POP_MIN": 5104047, "POP_OTHER": 8102712, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1277333.0, "MEGANAME": "Bangalore", "LS_NAME": "Bangalore", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8181096.0, "MAX_POP20": 8181096.0, "MAX_POP50": 8553953.0, "MAX_POP300": 8553953.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 2443.0, "MAX_AREAKM": 2836.0, "MIN_AREAMI": 943.0, "MAX_AREAMI": 1095.0, "MIN_PERKM": 1908.0, "MAX_PERKM": 2412.0, "MIN_PERMI": 1186.0, "MAX_PERMI": 1499.0, "MIN_BBXMIN": 77.275, "MAX_BBXMIN": 77.275, "MIN_BBXMAX": 77.996673, "MAX_BBXMAX": 78.15, "MIN_BBYMIN": 12.325, "MAX_BBYMIN": 12.325, "MIN_BBYMAX": 13.333333, "MAX_BBYMAX": 13.333333, "MEAN_BBXC": 77.703019, "MEAN_BBYC": 12.841733, "COMPARE": 1, "GN_ASCII": "Bengaluru", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 19.0, "GN_POP": 5104047.0, "ELEVATION": 920.0, "GTOPO30": 914.0, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 219, "UN_ADM0": "India", "UN_LAT": 12.97, "UN_LONG": 77.58, "POP1950": 746.0, "POP1955": 939.0, "POP1960": 1166.0, "POP1965": 1377.0, "POP1970": 1615.0, "POP1975": 2111.0, "POP1980": 2812.0, "POP1985": 3395.0, "POP1990": 4036.0, "POP1995": 4744.0, "POP2000": 5567.0, "POP2005": 6465.0, "POP2010": 6787.0, "POP2015": 7229.0, "POP2020": 7967.0, "POP2025": 8795.0, "POP2050": 9719.0, "CITYALT": null, "clustered:unrelated": 0.635061073570494}, "geometry": {"type": "Point", "coordinates": [77.558063, 12.97194]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 6, "FEATURECLA": "Admin-0 capital", "NAME": "Athens", "NAMEPAR": "Ath\u00ednai", "NAMEALT": "Athinai", "DIFFASCII": 0, "NAMEASCII": "Athens", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Greece", "SOV_A3": "GRC", "ADM0NAME": "Greece", "ADM0_A3": "GRC", "ADM1NAME": "Attiki", "ISO_A2": "GR", "NOTE": null, "LATITUDE": 37.983326, "LONGITUDE": 23.733321, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3242000, "POP_MIN": 729137, "POP_OTHER": 112572, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 264371.0, "MEGANAME": "Ath\u00ednai", "LS_NAME": "Athens2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2352834.0, "MAX_POP20": 3010089.0, "MAX_POP50": 3010089.0, "MAX_POP300": 3010089.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 340.0, "MAX_AREAKM": 509.0, "MIN_AREAMI": 131.0, "MAX_AREAMI": 196.0, "MIN_PERKM": 199.0, "MAX_PERKM": 296.0, "MIN_PERMI": 124.0, "MAX_PERMI": 184.0, "MIN_BBXMIN": 23.483333, "MAX_BBXMIN": 23.591667, "MIN_BBXMAX": 23.916667, "MAX_BBXMAX": 23.916667, "MIN_BBYMIN": 37.9, "MAX_BBYMIN": 37.908333, "MIN_BBYMAX": 38.158333, "MAX_BBYMAX": 38.158333, "MEAN_BBXC": 23.741514, "MEAN_BBYC": 38.032045, "COMPARE": 0, "GN_ASCII": "Athens", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 729137.0, "ELEVATION": 70.0, "GTOPO30": 110.0, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 198, "UN_ADM0": "Greece", "UN_LAT": 37.94, "UN_LONG": 23.65, "POP1950": 1347.0, "POP1955": 1563.0, "POP1960": 1814.0, "POP1965": 2121.0, "POP1970": 2485.0, "POP1975": 2738.0, "POP1980": 2987.0, "POP1985": 3047.0, "POP1990": 3070.0, "POP1995": 3122.0, "POP2000": 3179.0, "POP2005": 3230.0, "POP2010": 3242.0, "POP2015": 3256.0, "POP2020": 3278.0, "POP2025": 3300.0, "POP2050": 3326.0, "CITYALT": "Athens", "clustered:unrelated": 0.6512125479170522}, "geometry": {"type": "Point", "coordinates": [23.731375, 37.985272]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Baghdad", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Baghdad", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Iraq", "SOV_A3": "IRQ", "ADM0NAME": "Iraq", "ADM0_A3": "IRQ", "ADM1NAME": "Baghdad", "ISO_A2": "IQ", "NOTE": null, "LATITUDE": 33.338648, "LONGITUDE": 44.393869, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5054000, "POP_MIN": 5054000, "POP_OTHER": 4959534, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 98182.0, "MEGANAME": "Baghdad", "LS_NAME": "Baghdad", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5298025.0, "MAX_POP20": 5298025.0, "MAX_POP50": 5298025.0, "MAX_POP300": 5298025.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 587.0, "MAX_AREAKM": 587.0, "MIN_AREAMI": 227.0, "MAX_AREAMI": 227.0, "MIN_PERKM": 365.0, "MAX_PERKM": 365.0, "MIN_PERMI": 227.0, "MAX_PERMI": 227.0, "MIN_BBXMIN": 44.241667, "MAX_BBXMIN": 44.241667, "MIN_BBXMAX": 44.575, "MAX_BBXMAX": 44.575, "MIN_BBYMIN": 33.141667, "MAX_BBYMIN": 33.141667, "MIN_BBYMAX": 33.575, "MAX_BBYMAX": 33.575, "MEAN_BBXC": 44.401776, "MEAN_BBYC": 33.332697, "COMPARE": 0, "GN_ASCII": "Baghdad", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 5672513.0, "ELEVATION": null, "GTOPO30": 41.0, "TIMEZONE": "Asia/Baghdad", "GEONAMESNO": "GeoNames match general.", "UN_FID": 300, "UN_ADM0": "Iraq", "UN_LAT": 33.33, "UN_LONG": 44.39, "POP1950": 579.0, "POP1955": 719.0, "POP1960": 1019.0, "POP1965": 1614.0, "POP1970": 2070.0, "POP1975": 2620.0, "POP1980": 3145.0, "POP1985": 3607.0, "POP1990": 4092.0, "POP1995": 4598.0, "POP2000": 5200.0, "POP2005": 5327.0, "POP2010": 5054.0, "POP2015": 5891.0, "POP2020": 6618.0, "POP2025": 7345.0, "POP2050": 8060.0, "CITYALT": null, "clustered:unrelated": 0.20045103340183945}, "geometry": {"type": "Point", "coordinates": [44.391922, 33.340594]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Addis Ababa", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Addis Ababa", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Ethiopia", "SOV_A3": "ETH", "ADM0NAME": "Ethiopia", "ADM0_A3": "ETH", "ADM1NAME": "Addis Ababa", "ISO_A2": "ET", "NOTE": null, "LATITUDE": 9.03331, "LONGITUDE": 38.700004, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3100000, "POP_MIN": 2757729, "POP_OTHER": 3013653, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 344979.0, "MEGANAME": "Addis Ababa", "LS_NAME": "Addis Ababa", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2984087.0, "MAX_POP20": 3176486.0, "MAX_POP50": 3491912.0, "MAX_POP300": 3450173.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 462.0, "MAX_AREAKM": 1182.0, "MIN_AREAMI": 178.0, "MAX_AREAMI": 457.0, "MIN_PERKM": 397.0, "MAX_PERKM": 1325.0, "MIN_PERMI": 247.0, "MAX_PERMI": 823.0, "MIN_BBXMIN": 38.575, "MAX_BBXMIN": 38.575, "MIN_BBXMAX": 38.966667, "MAX_BBXMAX": 39.483333, "MIN_BBYMIN": 8.033333, "MAX_BBYMIN": 8.67178, "MIN_BBYMAX": 9.125, "MAX_BBYMAX": 9.125, "MEAN_BBXC": 38.919464, "MEAN_BBYC": 8.825709, "COMPARE": 0, "GN_ASCII": "Addis Ababa", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 44.0, "GN_POP": 2757729.0, "ELEVATION": null, "GTOPO30": 2363.0, "TIMEZONE": "Africa/Addis_Ababa", "GEONAMESNO": "GeoNames match general.", "UN_FID": 180, "UN_ADM0": "Ethiopia", "UN_LAT": 9.02, "UN_LONG": 38.7, "POP1950": 392.0, "POP1955": 451.0, "POP1960": 519.0, "POP1965": 597.0, "POP1970": 729.0, "POP1975": 926.0, "POP1980": 1175.0, "POP1985": 1476.0, "POP1990": 1791.0, "POP1995": 2157.0, "POP2000": 2493.0, "POP2005": 2902.0, "POP2010": 3100.0, "POP2015": 3453.0, "POP2020": 4184.0, "POP2025": 5083.0, "POP2050": 6156.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [38.698058, 9.035256]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Tehran", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tehran", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Iran", "SOV_A3": "IRN", "ADM0NAME": "Iran", "ADM0_A3": "IRN", "ADM1NAME": "Tehran", "ISO_A2": "IR", "NOTE": null, "LATITUDE": 35.671943, "LONGITUDE": 51.424344, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 7873000, "POP_MIN": 7153309, "POP_OTHER": 8209012, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 112931.0, "MEGANAME": "Tehran", "LS_NAME": "Tehran", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8258981.0, "MAX_POP20": 8258981.0, "MAX_POP50": 8258981.0, "MAX_POP300": 8258981.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 496.0, "MAX_AREAKM": 496.0, "MIN_AREAMI": 191.0, "MAX_AREAMI": 191.0, "MIN_PERKM": 245.0, "MAX_PERKM": 245.0, "MIN_PERMI": 152.0, "MAX_PERMI": 152.0, "MIN_BBXMIN": 51.216667, "MAX_BBXMIN": 51.216667, "MIN_BBXMAX": 51.6, "MAX_BBXMAX": 51.6, "MIN_BBYMIN": 35.55, "MAX_BBYMIN": 35.55, "MIN_BBYMAX": 35.825, "MAX_BBYMAX": 35.825, "MEAN_BBXC": 51.416848, "MEAN_BBYC": 35.709171, "COMPARE": 0, "GN_ASCII": "Tehran", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 26.0, "GN_POP": 7153309.0, "ELEVATION": null, "GTOPO30": 1149.0, "TIMEZONE": "Asia/Tehran", "GEONAMESNO": "GeoNames match general.", "UN_FID": 297, "UN_ADM0": "Iran (Islamic Republic of)", "UN_LAT": 35.77, "UN_LONG": 51.44, "POP1950": 1041.0, "POP1955": 1396.0, "POP1960": 1873.0, "POP1965": 2511.0, "POP1970": 3290.0, "POP1975": 4273.0, "POP1980": 5079.0, "POP1985": 5839.0, "POP1990": 6365.0, "POP1995": 6687.0, "POP2000": 7128.0, "POP2005": 7653.0, "POP2010": 7873.0, "POP2015": 8221.0, "POP2020": 8832.0, "POP2025": 9404.0, "POP2050": 9814.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [51.422398, 35.673888]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Populated place", "NAME": "Vancouver", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vancouver", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "British Columbia", "ISO_A2": "CA", "NOTE": null, "LATITUDE": 49.273417, "LONGITUDE": -123.121644, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 2313328, "POP_MIN": 603502, "POP_OTHER": 482002, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 6173331.0, "MEGANAME": "Vancouver", "LS_NAME": "Vancouver2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1590116.0, "MAX_POP20": 1588839.0, "MAX_POP50": 1590116.0, "MAX_POP300": 1590116.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 706.0, "MAX_AREAKM": 708.0, "MIN_AREAMI": 273.0, "MAX_AREAMI": 273.0, "MIN_PERKM": 398.0, "MAX_PERKM": 405.0, "MIN_PERMI": 248.0, "MAX_PERMI": 251.0, "MIN_BBXMIN": -123.283333, "MAX_BBXMIN": -123.283333, "MIN_BBXMAX": -122.708333, "MAX_BBXMAX": -122.708333, "MIN_BBYMIN": 49.1, "MAX_BBYMIN": 49.1, "MIN_BBYMAX": 49.383333, "MAX_BBYMAX": 49.383333, "MEAN_BBXC": -122.982768, "MEAN_BBYC": 49.228888, "COMPARE": 0, "GN_ASCII": "Vancouver", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 2.0, "GN_POP": 1837969.0, "ELEVATION": null, "GTOPO30": 63.0, "TIMEZONE": "America/Vancouver", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 15, "UN_ADM0": "Canada", "UN_LAT": 49.27, "UN_LONG": -122.96, "POP1950": 556.0, "POP1955": 588.0, "POP1960": 620.0, "POP1965": 836.0, "POP1970": 1045.0, "POP1975": 1150.0, "POP1980": 1247.0, "POP1985": 1359.0, "POP1990": 1559.0, "POP1995": 1789.0, "POP2000": 1959.0, "POP2005": 2093.0, "POP2010": 2146.0, "POP2015": 2219.0, "POP2020": 2310.0, "POP2025": 2380.0, "POP2050": 2444.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-123.12359, 49.275362]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 2, "FEATURECLA": "Admin-1 capital", "NAME": "Toronto", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Toronto", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Canada", "SOV_A3": "CAN", "ADM0NAME": "Canada", "ADM0_A3": "CAN", "ADM1NAME": "Ontario", "ISO_A2": "CA", "NOTE": null, "LATITUDE": 43.69998, "LONGITUDE": -79.420021, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 5213000, "POP_MIN": 3934421, "POP_OTHER": 3749229, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 6167865.0, "MEGANAME": "Toronto", "LS_NAME": "Toronto", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3934421.0, "MAX_POP20": 4377344.0, "MAX_POP50": 5190755.0, "MAX_POP300": 5190755.0, "MAX_POP310": 5190755.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1432.0, "MAX_AREAKM": 2286.0, "MIN_AREAMI": 553.0, "MAX_AREAMI": 883.0, "MIN_PERKM": 464.0, "MAX_PERKM": 1161.0, "MIN_PERMI": 289.0, "MAX_PERMI": 721.0, "MIN_BBXMIN": -80.008333, "MAX_BBXMIN": -79.806554, "MIN_BBXMAX": -79.130272, "MAX_BBXMAX": -78.608333, "MIN_BBYMIN": 43.141667, "MAX_BBYMIN": 43.475, "MIN_BBYMAX": 44.090162, "MAX_BBYMAX": 44.125, "MEAN_BBXC": -79.464213, "MEAN_BBYC": 43.712937, "COMPARE": 0, "GN_ASCII": "Toronto", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8.0, "GN_POP": 4612191.0, "ELEVATION": null, "GTOPO30": 173.0, "TIMEZONE": "America/Toronto", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 14, "UN_ADM0": "Canada", "UN_LAT": 43.72, "UN_LONG": -79.41, "POP1950": 1068.0, "POP1955": 1365.0, "POP1960": 1744.0, "POP1965": 2093.0, "POP1970": 2535.0, "POP1975": 2770.0, "POP1980": 3008.0, "POP1985": 3355.0, "POP1990": 3807.0, "POP1995": 4197.0, "POP2000": 4607.0, "POP2005": 5035.0, "POP2010": 5213.0, "POP2015": 5447.0, "POP2020": 5687.0, "POP2025": 5827.0, "POP2050": 5946.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-79.421966, 43.701925]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Buenos Aires", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Buenos Aires", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Argentina", "SOV_A3": "ARG", "ADM0NAME": "Argentina", "ADM0_A3": "ARG", "ADM1NAME": "Ciudad de Buenos Aires", "ISO_A2": "AR", "NOTE": null, "LATITUDE": -34.602502, "LONGITUDE": -58.397531, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 12795000, "POP_MIN": 10929146, "POP_OTHER": 10271457, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3435910.0, "MEGANAME": "Buenos Aires", "LS_NAME": "Buenos Aires", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10929146.0, "MAX_POP20": 10991915.0, "MAX_POP50": 12611862.0, "MAX_POP300": 12611862.0, "MAX_POP310": 12611862.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1675.0, "MAX_AREAKM": 2447.0, "MIN_AREAMI": 647.0, "MAX_AREAMI": 945.0, "MIN_PERKM": 570.0, "MAX_PERKM": 1064.0, "MIN_PERMI": 354.0, "MAX_PERMI": 661.0, "MIN_BBXMIN": -59.016667, "MAX_BBXMIN": -58.757731, "MIN_BBXMAX": -58.175, "MAX_BBXMAX": -57.816667, "MIN_BBYMIN": -35.008333, "MAX_BBYMIN": -35.008333, "MIN_BBYMAX": -34.375, "MAX_BBYMAX": -34.366667, "MEAN_BBXC": -58.50845, "MEAN_BBYC": -34.681331, "COMPARE": 0, "GN_ASCII": "Buenos Aires", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 7.0, "GN_POP": 13076300.0, "ELEVATION": null, "GTOPO30": 13.0, "TIMEZONE": "America/Argentina/Buenos_Aires", "GEONAMESNO": "GeoNames match general.", "UN_FID": 201, "UN_ADM0": "Argentina", "UN_LAT": -34.62, "UN_LONG": -58.44, "POP1950": 5098.0, "POP1955": 5799.0, "POP1960": 6598.0, "POP1965": 7317.0, "POP1970": 8105.0, "POP1975": 8745.0, "POP1980": 9422.0, "POP1985": 9959.0, "POP1990": 10513.0, "POP1995": 11154.0, "POP2000": 11847.0, "POP2005": 12553.0, "POP2010": 12795.0, "POP2015": 13089.0, "POP2020": 13432.0, "POP2025": 13653.0, "POP2050": 13768.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-58.399477, -34.600555]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Kabul", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kabul", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "Afghanistan", "SOV_A3": "AFG", "ADM0NAME": "Afghanistan", "ADM0_A3": "AFG", "ADM1NAME": "Kabul", "ISO_A2": "AF", "NOTE": null, "LATITUDE": 34.51669, "LONGITUDE": 69.18326, "CHANGED": 5.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3277000, "POP_MIN": 3043532, "POP_OTHER": 3475519, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 1138958.0, "MEGANAME": "Kabul", "LS_NAME": "Kabul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3720671.0, "MAX_POP20": 3720671.0, "MAX_POP50": 4803365.0, "MAX_POP300": 4793793.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 594.0, "MAX_AREAKM": 1471.0, "MIN_AREAMI": 229.0, "MAX_AREAMI": 568.0, "MIN_PERKM": 409.0, "MAX_PERKM": 1100.0, "MIN_PERMI": 254.0, "MAX_PERMI": 683.0, "MIN_BBXMIN": 68.866667, "MAX_BBXMIN": 68.866667, "MIN_BBXMAX": 69.308333, "MAX_BBXMAX": 69.783333, "MIN_BBYMIN": 34.433333, "MAX_BBYMIN": 34.433333, "MIN_BBYMAX": 34.768813, "MAX_BBYMAX": 35.166667, "MEAN_BBXC": 69.144173, "MEAN_BBYC": 34.688498, "COMPARE": 0, "GN_ASCII": "Kabul", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 13.0, "GN_POP": 3043532.0, "ELEVATION": null, "GTOPO30": 1808.0, "TIMEZONE": "Asia/Kabul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 320, "UN_ADM0": "Afghanistan", "UN_LAT": 34.53, "UN_LONG": 69.13, "POP1950": 129.0, "POP1955": 184.0, "POP1960": 263.0, "POP1965": 369.0, "POP1970": 472.0, "POP1975": 674.0, "POP1980": 978.0, "POP1985": 1160.0, "POP1990": 1306.0, "POP1995": 1616.0, "POP2000": 1963.0, "POP2005": 2994.0, "POP2010": 3277.0, "POP2015": 3768.0, "POP2020": 4730.0, "POP2025": 5836.0, "POP2050": 7175.0, "CITYALT": null, "clustered:unrelated": 0.026652256104289895}, "geometry": {"type": "Point", "coordinates": [69.181314, 34.518636]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 7, "FEATURECLA": "Admin-0 capital", "NAME": "Vienna", "NAMEPAR": "Wien", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Vienna", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Austria", "SOV_A3": "AUT", "ADM0NAME": "Austria", "ADM0_A3": "AUT", "ADM1NAME": "Wien", "ISO_A2": "AT", "NOTE": null, "LATITUDE": 48.200015, "LONGITUDE": 16.366639, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 2400000, "POP_MIN": 1731000, "POP_OTHER": 1480886, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2761369.0, "MEGANAME": "Wien", "LS_NAME": "Vienna", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1561335.0, "MAX_POP20": 1610331.0, "MAX_POP50": 1610331.0, "MAX_POP300": 1610331.0, "MAX_POP310": 1610331.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 488.0, "MAX_AREAKM": 533.0, "MIN_AREAMI": 189.0, "MAX_AREAMI": 206.0, "MIN_PERKM": 444.0, "MAX_PERKM": 497.0, "MIN_PERMI": 276.0, "MAX_PERMI": 309.0, "MIN_BBXMIN": 16.133333, "MAX_BBXMIN": 16.133333, "MIN_BBXMAX": 16.583333, "MAX_BBXMAX": 16.583333, "MIN_BBYMIN": 47.916667, "MAX_BBYMIN": 48.008333, "MIN_BBYMAX": 48.383333, "MAX_BBYMAX": 48.383333, "MEAN_BBXC": 16.351672, "MEAN_BBYC": 48.18247, "COMPARE": 0, "GN_ASCII": "Vienna", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 1691468.0, "ELEVATION": 171.0, "GTOPO30": 164.0, "TIMEZONE": "Europe/Vienna", "GEONAMESNO": "GeoNames match general.", "UN_FID": 321, "UN_ADM0": "Austria", "UN_LAT": 48.2, "UN_LONG": 16.32, "POP1950": 2086.0, "POP1955": 2087.0, "POP1960": 2089.0, "POP1965": 2080.0, "POP1970": 2070.0, "POP1975": 2059.0, "POP1980": 2049.0, "POP1985": 2069.0, "POP1990": 2096.0, "POP1995": 2127.0, "POP2000": 2158.0, "POP2005": 2264.0, "POP2010": 2315.0, "POP2015": 2385.0, "POP2020": 2451.0, "POP2025": 2476.0, "POP2050": 2496.0, "CITYALT": "Vienna", "clustered:unrelated": 0.8531217419718522}, "geometry": {"type": "Point", "coordinates": [16.364693, 48.201961]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Melbourne", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Melbourne", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "Victoria", "ISO_A2": "AU", "NOTE": null, "LATITUDE": -37.820031, "LONGITUDE": 144.975016, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class. Changed scale rank.", "POP_MAX": 4170000, "POP_MIN": 93625, "POP_OTHER": 1805353, "RANK_MAX": 12, "RANK_MIN": 8, "GEONAMEID": 2158177.0, "MEGANAME": "Melbourne", "LS_NAME": "Melbourne2", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 1904377.0, "MAX_POP20": 2545035.0, "MAX_POP50": 2564188.0, "MAX_POP300": 2564188.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1010.0, "MAX_AREAKM": 1554.0, "MIN_AREAMI": 390.0, "MAX_AREAMI": 600.0, "MIN_PERKM": 360.0, "MAX_PERKM": 843.0, "MIN_PERMI": 224.0, "MAX_PERMI": 524.0, "MIN_BBXMIN": 144.608333, "MAX_BBXMIN": 144.728637, "MIN_BBXMAX": 145.327432, "MAX_BBXMAX": 145.4, "MIN_BBYMIN": -38.208333, "MAX_BBYMIN": -38.0105, "MIN_BBYMAX": -37.589905, "MAX_BBYMAX": -37.566667, "MEAN_BBXC": 145.053821, "MEAN_BBYC": -37.835257, "COMPARE": 0, "GN_ASCII": null, "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": 3730206.0, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 274, "UN_ADM0": "Australia", "UN_LAT": -37.85, "UN_LONG": 145.07, "POP1950": 1332.0, "POP1955": 1574.0, "POP1960": 1851.0, "POP1965": 2068.0, "POP1970": 2334.0, "POP1975": 2561.0, "POP1980": 2765.0, "POP1985": 2935.0, "POP1990": 3117.0, "POP1995": 3257.0, "POP2000": 3433.0, "POP2005": 3641.0, "POP2010": 3728.0, "POP2015": 3851.0, "POP2020": 4013.0, "POP2025": 4137.0, "POP2050": 4238.0, "CITYALT": null, "clustered:unrelated": 0.20540003994444933}, "geometry": {"type": "Point", "coordinates": [144.97307, -37.818085]}} +{"type": "Feature", "properties": {"SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 8, "FEATURECLA": "Admin-0 capital", "NAME": "Taipei", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Taipei", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Taiwan", "SOV_A3": "TWN", "ADM0NAME": "Taiwan", "ADM0_A3": "TWN", "ADM1NAME": "Taipei City", "ISO_A2": "TW", "NOTE": null, "LATITUDE": 25.035833, "LONGITUDE": 121.568333, "CHANGED": 1.0, "NAMEDIFF": 0, "DIFFNOTE": "Corrected coordinates.", "POP_MAX": 6900273, "POP_MIN": 2618772, "POP_OTHER": 5698241, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1668341.0, "MEGANAME": "Taipei", "LS_NAME": "Taipei", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5920742.0, "MAX_POP20": 8275696.0, "MAX_POP50": 8647783.0, "MAX_POP300": 9212245.0, "MAX_POP310": 9212245.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 536.0, "MAX_AREAKM": 1708.0, "MIN_AREAMI": 207.0, "MAX_AREAMI": 660.0, "MIN_PERKM": 288.0, "MAX_PERKM": 1087.0, "MIN_PERMI": 179.0, "MAX_PERMI": 675.0, "MIN_BBXMIN": 120.741667, "MAX_BBXMIN": 121.325, "MIN_BBXMAX": 121.622484, "MAX_BBXMAX": 121.816667, "MIN_BBYMIN": 24.466667, "MAX_BBYMIN": 24.9, "MIN_BBYMAX": 25.233333, "MAX_BBYMAX": 25.233333, "MEAN_BBXC": 121.292375, "MEAN_BBYC": 24.965116, "COMPARE": 0, "GN_ASCII": "Taipei", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 3.0, "GN_POP": 7871900.0, "ELEVATION": null, "GTOPO30": 10.0, "TIMEZONE": "Asia/Taipei", "GEONAMESNO": "GeoNames match general.", "UN_FID": 111, "UN_ADM0": "China", "UN_LAT": 25.03, "UN_LONG": 121.5, "POP1950": 604.0, "POP1955": 760.0, "POP1960": 955.0, "POP1965": 1230.0, "POP1970": 1741.0, "POP1975": 2023.0, "POP1980": 2217.0, "POP1985": 2446.0, "POP1990": 2711.0, "POP1995": 2676.0, "POP2000": 2640.0, "POP2005": 2606.0, "POP2010": 2603.0, "POP2015": 2651.0, "POP2020": 2862.0, "POP2025": 3104.0, "POP2050": 3305.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [121.568333, 25.035833]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Los Angeles", "NAMEPAR": null, "NAMEALT": "Los Angeles-Long Beach-Santa Ana", "DIFFASCII": 0, "NAMEASCII": "Los Angeles", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "NOTE": null, "LATITUDE": 33.989978, "LONGITUDE": -118.179981, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 12500000, "POP_MIN": 3694820, "POP_OTHER": 142265, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 5368361.0, "MEGANAME": "Los Angeles-Long Beach-Santa Ana", "LS_NAME": "Los Angeles1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4976870.0, "MAX_POP20": 6558538.0, "MAX_POP50": 14868745.0, "MAX_POP300": 14870543.0, "MAX_POP310": 14903021.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1338.0, "MAX_AREAKM": 5803.0, "MIN_AREAMI": 517.0, "MAX_AREAMI": 2241.0, "MIN_PERKM": 534.0, "MAX_PERKM": 2202.0, "MIN_PERMI": 332.0, "MAX_PERMI": 1369.0, "MIN_BBXMIN": -118.991667, "MAX_BBXMIN": -118.966667, "MIN_BBXMAX": -117.857183, "MAX_BBXMAX": -117.008333, "MIN_BBYMIN": 33.391667, "MAX_BBYMIN": 33.862631, "MIN_BBYMAX": 34.241667, "MAX_BBYMAX": 34.333333, "MEAN_BBXC": -118.107478, "MEAN_BBYC": 33.980609, "COMPARE": 0, "GN_ASCII": "Los Angeles", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 3694820.0, "ELEVATION": 89.0, "GTOPO30": 115.0, "TIMEZONE": "America/Los_Angeles", "GEONAMESNO": "GeoNames match with ascii name + lat + long whole numbers.", "UN_FID": 547, "UN_ADM0": "United States of America", "UN_LAT": 34.0, "UN_LONG": -118.25, "POP1950": 4046.0, "POP1955": 5154.0, "POP1960": 6530.0, "POP1965": 7408.0, "POP1970": 8378.0, "POP1975": 8926.0, "POP1980": 9512.0, "POP1985": 10181.0, "POP1990": 10883.0, "POP1995": 11339.0, "POP2000": 11814.0, "POP2005": 12307.0, "POP2010": 12500.0, "POP2015": 12773.0, "POP2020": 13160.0, "POP2025": 13461.0, "POP2050": 13672.0, "CITYALT": "Los Angeles", "clustered:unrelated": 0.09618518946921106}, "geometry": {"type": "Point", "coordinates": [-118.181926, 33.991924]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Washington, D.C.", "NAMEPAR": null, "NAMEALT": "Washington D.C.", "DIFFASCII": 0, "NAMEASCII": "Washington, D.C.", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "District of Columbia", "ISO_A2": "US", "NOTE": null, "LATITUDE": 38.899549, "LONGITUDE": -77.009419, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 4338000, "POP_MIN": 552433, "POP_OTHER": 2175991, "RANK_MAX": 12, "RANK_MIN": 11, "GEONAMEID": 4140963.0, "MEGANAME": "Washington, D.C.", "LS_NAME": "Washington, D.C.", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 2182723.0, "MAX_POP20": 2240256.0, "MAX_POP50": 3764385.0, "MAX_POP300": 5678280.0, "MAX_POP310": 5678280.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1114.0, "MAX_AREAKM": 3447.0, "MIN_AREAMI": 430.0, "MAX_AREAMI": 1331.0, "MIN_PERKM": 548.0, "MAX_PERKM": 1898.0, "MIN_PERMI": 341.0, "MAX_PERMI": 1179.0, "MIN_BBXMIN": -77.533333, "MAX_BBXMIN": -77.308333, "MIN_BBXMAX": -76.752653, "MAX_BBXMAX": -76.4, "MIN_BBYMIN": 38.666667, "MAX_BBYMIN": 38.754222, "MIN_BBYMAX": 39.241667, "MAX_BBYMAX": 39.533333, "MEAN_BBXC": -77.002668, "MEAN_BBYC": 39.007587, "COMPARE": 0, "GN_ASCII": "Washington", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 552433.0, "ELEVATION": 7.0, "GTOPO30": 11.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 577, "UN_ADM0": "United States of America", "UN_LAT": 38.89, "UN_LONG": -76.95, "POP1950": 1298.0, "POP1955": 1539.0, "POP1960": 1823.0, "POP1965": 2135.0, "POP1970": 2488.0, "POP1975": 2626.0, "POP1980": 2777.0, "POP1985": 3063.0, "POP1990": 3376.0, "POP1995": 3651.0, "POP2000": 3949.0, "POP2005": 4241.0, "POP2010": 4338.0, "POP2015": 4464.0, "POP2020": 4636.0, "POP2025": 4778.0, "POP2050": 4889.0, "CITYALT": "Washington D.C."}, "geometry": {"type": "Point", "coordinates": [-77.011364, 38.901495]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "New York", "NAMEPAR": null, "NAMEALT": "New York-Newark", "DIFFASCII": 0, "NAMEASCII": "New York", "ADM0CAP": null, "CAPALT": null, "CAPIN": "UN Headquarters", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "New York", "ISO_A2": "US", "NOTE": null, "LATITUDE": 40.749979, "LONGITUDE": -73.980017, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 19040000, "POP_MIN": 8008278, "POP_OTHER": 9292603, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 5128581.0, "MEGANAME": "New York-Newark", "LS_NAME": "New York", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9376946.0, "MAX_POP20": 11947707.0, "MAX_POP50": 18788144.0, "MAX_POP300": 18788144.0, "MAX_POP310": 18924578.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1137.0, "MAX_AREAKM": 8185.0, "MIN_AREAMI": 439.0, "MAX_AREAMI": 3160.0, "MIN_PERKM": 497.0, "MAX_PERKM": 4993.0, "MIN_PERMI": 309.0, "MAX_PERMI": 3102.0, "MIN_BBXMIN": -74.75, "MAX_BBXMIN": -74.091431, "MIN_BBXMAX": -73.574946, "MAX_BBXMAX": -72.716667, "MIN_BBYMIN": 39.808333, "MAX_BBYMIN": 40.566667, "MIN_BBYMAX": 41.057237, "MAX_BBYMAX": 41.941667, "MEAN_BBXC": -73.815782, "MEAN_BBYC": 40.813006, "COMPARE": 0, "GN_ASCII": "New York City", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 8008278.0, "ELEVATION": 10.0, "GTOPO30": 2.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames spatial join with similar names only.", "UN_FID": 555, "UN_ADM0": "United States of America", "UN_LAT": 40.7, "UN_LONG": -73.9, "POP1950": 12338.0, "POP1955": 13219.0, "POP1960": 14164.0, "POP1965": 15177.0, "POP1970": 16191.0, "POP1975": 15880.0, "POP1980": 15601.0, "POP1985": 15827.0, "POP1990": 16086.0, "POP1995": 16943.0, "POP2000": 17846.0, "POP2005": 18732.0, "POP2010": 19040.0, "POP2015": 19441.0, "POP2020": 19974.0, "POP2025": 20370.0, "POP2050": 20628.0, "CITYALT": "New York"}, "geometry": {"type": "Point", "coordinates": [-73.981962, 40.751924]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "London", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "London", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "United Kingdom", "SOV_A3": "GBR", "ADM0NAME": "United Kingdom", "ADM0_A3": "GBR", "ADM1NAME": "Westminster", "ISO_A2": "GB", "NOTE": null, "LATITUDE": 51.499995, "LONGITUDE": -0.116722, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 8567000, "POP_MIN": 7421209, "POP_OTHER": 326670, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 2643743.0, "MEGANAME": "London", "LS_NAME": "London2", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 7721282.0, "MAX_POP20": 8370578.0, "MAX_POP50": 10011551.0, "MAX_POP300": 10011551.0, "MAX_POP310": 10011551.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1914.0, "MAX_AREAKM": 3198.0, "MIN_AREAMI": 739.0, "MAX_AREAMI": 1235.0, "MIN_PERKM": 994.0, "MAX_PERKM": 2440.0, "MIN_PERMI": 618.0, "MAX_PERMI": 1516.0, "MIN_BBXMIN": -1.091667, "MAX_BBXMIN": -0.546866, "MIN_BBXMAX": 0.307108, "MAX_BBXMAX": 0.816667, "MIN_BBYMIN": 51.133333, "MAX_BBYMIN": 51.208333, "MIN_BBYMAX": 51.825, "MAX_BBYMAX": 51.825, "MEAN_BBXC": -0.169651, "MEAN_BBYC": 51.489624, "COMPARE": 0, "GN_ASCII": "London", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 7421209.0, "ELEVATION": null, "GTOPO30": 21.0, "TIMEZONE": "Europe/London", "GEONAMESNO": "GeoNames match general.", "UN_FID": 519, "UN_ADM0": "United Kingdom", "UN_LAT": 51.48, "UN_LONG": -0.17, "POP1950": 8361.0, "POP1955": 8278.0, "POP1960": 8196.0, "POP1965": 7869.0, "POP1970": 7509.0, "POP1975": 7546.0, "POP1980": 7660.0, "POP1985": 7667.0, "POP1990": 7654.0, "POP1995": 7908.0, "POP2000": 8225.0, "POP2005": 8505.0, "POP2010": 8567.0, "POP2015": 8607.0, "POP2020": 8618.0, "POP2025": 8618.0, "POP2050": 8618.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [-0.118667, 51.50194]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-1 capital", "NAME": "Istanbul", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Istanbul", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Turkey", "SOV_A3": "TUR", "ADM0NAME": "Turkey", "ADM0_A3": "TUR", "ADM1NAME": "Istanbul", "ISO_A2": "TR", "NOTE": null, "LATITUDE": 41.104996, "LONGITUDE": 29.010002, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 10061000, "POP_MIN": 9945610, "POP_OTHER": 9651488, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 745044.0, "MEGANAME": "Istanbul", "LS_NAME": "Istanbul", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9945610.0, "MAX_POP20": 9945243.0, "MAX_POP50": 10140950.0, "MAX_POP300": 10140950.0, "MAX_POP310": 10140950.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1249.0, "MAX_AREAKM": 1327.0, "MIN_AREAMI": 482.0, "MAX_AREAMI": 512.0, "MIN_PERKM": 852.0, "MAX_PERKM": 926.0, "MIN_PERMI": 529.0, "MAX_PERMI": 575.0, "MIN_BBXMIN": 28.2, "MAX_BBXMIN": 28.257268, "MIN_BBXMAX": 29.45, "MAX_BBXMAX": 29.558333, "MIN_BBYMIN": 40.75, "MAX_BBYMIN": 40.75, "MIN_BBYMAX": 41.258333, "MAX_BBYMAX": 41.258333, "MEAN_BBXC": 29.008987, "MEAN_BBYC": 41.004964, "COMPARE": 0, "GN_ASCII": "Istanbul", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 34.0, "GN_POP": 11174257.0, "ELEVATION": null, "GTOPO30": 28.0, "TIMEZONE": "Europe/Istanbul", "GEONAMESNO": "GeoNames match general.", "UN_FID": 504, "UN_ADM0": "Turkey", "UN_LAT": 41.06, "UN_LONG": 29.0, "POP1950": 967.0, "POP1955": 1249.0, "POP1960": 1453.0, "POP1965": 2001.0, "POP1970": 2772.0, "POP1975": 3600.0, "POP1980": 4397.0, "POP1985": 5407.0, "POP1990": 6552.0, "POP1995": 7665.0, "POP2000": 8744.0, "POP2005": 9709.0, "POP2010": 10061.0, "POP2015": 10530.0, "POP2020": 11177.0, "POP2025": 11695.0, "POP2050": 12102.0, "CITYALT": null, "clustered:unrelated": 0.7174818555528036}, "geometry": {"type": "Point", "coordinates": [29.008055, 41.106942]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Riyadh", "NAMEPAR": null, "NAMEALT": "Ar-Riyadh", "DIFFASCII": 0, "NAMEASCII": "Riyadh", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Saudi Arabia", "SOV_A3": "SAU", "ADM0NAME": "Saudi Arabia", "ADM0_A3": "SAU", "ADM1NAME": "Ar Riyad", "ISO_A2": "SA", "NOTE": null, "LATITUDE": 24.640833, "LONGITUDE": 46.772742, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 4465000, "POP_MIN": 4205961, "POP_OTHER": 5148778, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 108410.0, "MEGANAME": "Ar-Riyadh", "LS_NAME": "Riyadh", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 5322753.0, "MAX_POP20": 5322753.0, "MAX_POP50": 5322753.0, "MAX_POP300": 5322753.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 854.0, "MAX_AREAKM": 854.0, "MIN_AREAMI": 330.0, "MAX_AREAMI": 330.0, "MIN_PERKM": 459.0, "MAX_PERKM": 459.0, "MIN_PERMI": 285.0, "MAX_PERMI": 285.0, "MIN_BBXMIN": 46.516667, "MAX_BBXMIN": 46.516667, "MIN_BBXMAX": 46.933333, "MAX_BBXMAX": 46.933333, "MIN_BBYMIN": 24.516667, "MAX_BBYMIN": 24.516667, "MIN_BBYMAX": 24.833333, "MAX_BBYMAX": 24.833333, "MEAN_BBXC": 46.740447, "MEAN_BBYC": 24.678984, "COMPARE": 0, "GN_ASCII": "Riyadh", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 10.0, "GN_POP": 4205961.0, "ELEVATION": null, "GTOPO30": 618.0, "TIMEZONE": "Asia/Riyadh", "GEONAMESNO": "GeoNames match general.", "UN_FID": 444, "UN_ADM0": "Saudi Arabia", "UN_LAT": 24.65, "UN_LONG": 46.77, "POP1950": 111.0, "POP1955": 131.0, "POP1960": 156.0, "POP1965": 227.0, "POP1970": 408.0, "POP1975": 710.0, "POP1980": 1055.0, "POP1985": 1566.0, "POP1990": 2325.0, "POP1995": 3035.0, "POP2000": 3567.0, "POP2005": 4193.0, "POP2010": 4465.0, "POP2015": 4856.0, "POP2020": 5405.0, "POP2025": 5866.0, "POP2050": 6275.0, "CITYALT": "Riyadh"}, "geometry": {"type": "Point", "coordinates": [46.770795, 24.642779]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cape Town", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Cape Town", "ADM0CAP": 1.0, "CAPALT": 1.0, "CAPIN": "Legislative cap", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "South Africa", "SOV_A3": "ZAF", "ADM0NAME": "South Africa", "ADM0_A3": "ZAF", "ADM1NAME": "Western Cape", "ISO_A2": "ZA", "NOTE": null, "LATITUDE": -33.920011, "LONGITUDE": 18.434988, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3215000, "POP_MIN": 2432858, "POP_OTHER": 2401318, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 3369157.0, "MEGANAME": "Cape Town", "LS_NAME": "Cape Town", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2432858.0, "MAX_POP20": 2443605.0, "MAX_POP50": 2443605.0, "MAX_POP300": 2443605.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 534.0, "MAX_AREAKM": 542.0, "MIN_AREAMI": 206.0, "MAX_AREAMI": 209.0, "MIN_PERKM": 295.0, "MAX_PERKM": 300.0, "MIN_PERMI": 183.0, "MAX_PERMI": 187.0, "MIN_BBXMIN": 18.375, "MAX_BBXMIN": 18.375, "MIN_BBXMAX": 18.724745, "MAX_BBXMAX": 18.741667, "MIN_BBYMIN": -34.108333, "MAX_BBYMIN": -34.108333, "MIN_BBYMAX": -33.808333, "MAX_BBYMAX": -33.808333, "MEAN_BBXC": 18.557208, "MEAN_BBYC": -33.954979, "COMPARE": 0, "GN_ASCII": "Cape Town", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 11.0, "GN_POP": 3433441.0, "ELEVATION": null, "GTOPO30": 7.0, "TIMEZONE": "Africa/Johannesburg", "GEONAMESNO": "GeoNames match general.", "UN_FID": 455, "UN_ADM0": "South Africa", "UN_LAT": -33.97, "UN_LONG": 18.48, "POP1950": 618.0, "POP1955": 705.0, "POP1960": 803.0, "POP1965": 945.0, "POP1970": 1114.0, "POP1975": 1339.0, "POP1980": 1609.0, "POP1985": 1925.0, "POP1990": 2155.0, "POP1995": 2394.0, "POP2000": 2715.0, "POP2005": 3087.0, "POP2010": 3215.0, "POP2015": 3357.0, "POP2020": 3504.0, "POP2025": 3627.0, "POP2050": 3744.0, "CITYALT": null, "clustered:unrelated": 0.23060651059459725}, "geometry": {"type": "Point", "coordinates": [18.433042, -33.918065]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Moscow", "NAMEPAR": "Moskva", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Moscow", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Russia", "SOV_A3": "RUS", "ADM0NAME": "Russia", "ADM0_A3": "RUS", "ADM1NAME": "Moskva", "ISO_A2": "RU", "NOTE": null, "LATITUDE": 55.752164, "LONGITUDE": 37.615523, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 10452000, "POP_MIN": 10452000, "POP_OTHER": 10585385, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 524901.0, "MEGANAME": "Moskva", "LS_NAME": "Moscow", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 11029015.0, "MAX_POP20": 11030955.0, "MAX_POP50": 11547877.0, "MAX_POP300": 11547877.0, "MAX_POP310": 11547877.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1434.0, "MAX_AREAKM": 1639.0, "MIN_AREAMI": 554.0, "MAX_AREAMI": 633.0, "MIN_PERKM": 875.0, "MAX_PERKM": 1135.0, "MIN_PERMI": 544.0, "MAX_PERMI": 705.0, "MIN_BBXMIN": 37.233333, "MAX_BBXMIN": 37.233333, "MIN_BBXMAX": 38.075401, "MAX_BBXMAX": 38.3, "MIN_BBYMIN": 55.341667, "MAX_BBYMIN": 55.533007, "MIN_BBYMAX": 56.075, "MAX_BBYMAX": 56.075, "MEAN_BBXC": 37.643636, "MEAN_BBYC": 55.754996, "COMPARE": 0, "GN_ASCII": "Moscow", "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": null, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames match general + researched.", "UN_FID": 426, "UN_ADM0": "Russian Federation", "UN_LAT": 55.74, "UN_LONG": 37.7, "POP1950": 5356.0, "POP1955": 5749.0, "POP1960": 6170.0, "POP1965": 6622.0, "POP1970": 7106.0, "POP1975": 7623.0, "POP1980": 8136.0, "POP1985": 8580.0, "POP1990": 8987.0, "POP1995": 9201.0, "POP2000": 10016.0, "POP2005": 10416.0, "POP2010": 10452.0, "POP2015": 10495.0, "POP2020": 10524.0, "POP2025": 10526.0, "POP2050": 10526.0, "CITYALT": "Moscow"}, "geometry": {"type": "Point", "coordinates": [37.613576, 55.754109]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Mexico City", "NAMEPAR": null, "NAMEALT": "Ciudad de M\u00e9xico", "DIFFASCII": 0, "NAMEASCII": "Mexico City", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Mexico", "SOV_A3": "MEX", "ADM0NAME": "Mexico", "ADM0_A3": "MEX", "ADM1NAME": "Distrito Federal", "ISO_A2": "MX", "NOTE": null, "LATITUDE": 19.442442, "LONGITUDE": -99.130988, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 19028000, "POP_MIN": 10811002, "POP_OTHER": 10018444, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3530597.0, "MEGANAME": "Ciudad de M\u00e9xico", "LS_NAME": "Mexico City", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10811002.0, "MAX_POP20": 17250245.0, "MAX_POP50": 18948089.0, "MAX_POP300": 18948089.0, "MAX_POP310": 18948089.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 895.0, "MAX_AREAKM": 2080.0, "MIN_AREAMI": 345.0, "MAX_AREAMI": 803.0, "MIN_PERKM": 256.0, "MAX_PERKM": 889.0, "MIN_PERMI": 159.0, "MAX_PERMI": 552.0, "MIN_BBXMIN": -99.366667, "MAX_BBXMIN": -99.366667, "MIN_BBXMAX": -99.018165, "MAX_BBXMAX": -98.808333, "MIN_BBYMIN": 19.2, "MAX_BBYMIN": 19.233333, "MIN_BBYMAX": 19.640315, "MAX_BBYMAX": 19.908333, "MEAN_BBXC": -99.116655, "MEAN_BBYC": 19.473748, "COMPARE": 0, "GN_ASCII": "Mexico City", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 9.0, "GN_POP": 11285654.0, "ELEVATION": null, "GTOPO30": 2216.0, "TIMEZONE": "America/Mexico_City", "GEONAMESNO": "GeoNames match general.", "UN_FID": 352, "UN_ADM0": "Mexico", "UN_LAT": 19.42, "UN_LONG": -99.12, "POP1950": 2883.0, "POP1955": 3801.0, "POP1960": 5012.0, "POP1965": 6653.0, "POP1970": 8769.0, "POP1975": 10690.0, "POP1980": 13010.0, "POP1985": 14109.0, "POP1990": 15312.0, "POP1995": 16811.0, "POP2000": 18022.0, "POP2005": 18735.0, "POP2010": 19028.0, "POP2015": 19485.0, "POP2020": 20189.0, "POP2025": 20695.0, "POP2050": 21009.0, "CITYALT": "Mexico City", "clustered:unrelated": 0.7947836398745314}, "geometry": {"type": "Point", "coordinates": [-99.132934, 19.444388]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital alt", "NAME": "Lagos", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Lagos", "ADM0CAP": null, "CAPALT": 1.0, "CAPIN": "Former capital", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Nigeria", "SOV_A3": "NGA", "ADM0NAME": "Nigeria", "ADM0_A3": "NGA", "ADM1NAME": "Lagos", "ISO_A2": "NG", "NOTE": null, "LATITUDE": 6.443262, "LONGITUDE": 3.391531, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Location adjusted. Changed scale rank.", "POP_MAX": 9466000, "POP_MIN": 1536, "POP_OTHER": 6567892, "RANK_MAX": 13, "RANK_MIN": 3, "GEONAMEID": 735497.0, "MEGANAME": "Lagos", "LS_NAME": "Lagos", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7147910.0, "MAX_POP20": 7105663.0, "MAX_POP50": 7411389.0, "MAX_POP300": 7453740.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 1035.0, "MAX_AREAKM": 1332.0, "MIN_AREAMI": 400.0, "MAX_AREAMI": 514.0, "MIN_PERKM": 638.0, "MAX_PERKM": 882.0, "MIN_PERMI": 397.0, "MAX_PERMI": 548.0, "MIN_BBXMIN": 2.925412, "MAX_BBXMIN": 2.996332, "MIN_BBXMAX": 3.475, "MAX_BBXMAX": 3.475, "MIN_BBYMIN": 6.4, "MAX_BBYMIN": 6.4, "MIN_BBYMAX": 6.80087, "MAX_BBYMAX": 6.966667, "MEAN_BBXC": 3.231132, "MEAN_BBYC": 6.585848, "COMPARE": 0, "GN_ASCII": "Lagos", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 1536.0, "ELEVATION": null, "GTOPO30": 89.0, "TIMEZONE": "Europe/Athens", "GEONAMESNO": "GeoNames match general.", "UN_FID": 392, "UN_ADM0": "Nigeria", "UN_LAT": 6.45, "UN_LONG": 3.3, "POP1950": 305.0, "POP1955": 468.0, "POP1960": 762.0, "POP1965": 1135.0, "POP1970": 1414.0, "POP1975": 1890.0, "POP1980": 2572.0, "POP1985": 3500.0, "POP1990": 4764.0, "POP1995": 5966.0, "POP2000": 7233.0, "POP2005": 8767.0, "POP2010": 9466.0, "POP2015": 10572.0, "POP2020": 12403.0, "POP2025": 14134.0, "POP2050": 15796.0, "CITYALT": null, "clustered:unrelated": 0.003996449237175459}, "geometry": {"type": "Point", "coordinates": [3.389585, 6.445207]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Rome", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Rome", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Italy", "SOV_A3": "ITA", "ADM0NAME": "Italy", "ADM0_A3": "ITA", "ADM1NAME": "Lazio", "ISO_A2": "IT", "NOTE": null, "LATITUDE": 41.895956, "LONGITUDE": 12.483258, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 3339000, "POP_MIN": 35452, "POP_OTHER": 2050212, "RANK_MAX": 12, "RANK_MIN": 7, "GEONAMEID": 4219762.0, "MEGANAME": "Rome", "LS_NAME": "Rome", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2143900.0, "MAX_POP20": 2143900.0, "MAX_POP50": 2666328.0, "MAX_POP300": 2666328.0, "MAX_POP310": 2666328.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 505.0, "MAX_AREAKM": 683.0, "MIN_AREAMI": 195.0, "MAX_AREAMI": 264.0, "MIN_PERKM": 382.0, "MAX_PERKM": 500.0, "MIN_PERMI": 238.0, "MAX_PERMI": 311.0, "MIN_BBXMIN": 12.333333, "MAX_BBXMIN": 12.450494, "MIN_BBXMAX": 12.766667, "MAX_BBXMAX": 12.766667, "MIN_BBYMIN": 41.666667, "MAX_BBYMIN": 41.666667, "MIN_BBYMAX": 42.033333, "MAX_BBYMAX": 42.05, "MEAN_BBXC": 12.561474, "MEAN_BBYC": 41.864442, "COMPARE": 0, "GN_ASCII": "Rome", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": null, "GN_POP": 35452.0, "ELEVATION": 187.0, "GTOPO30": 183.0, "TIMEZONE": "America/New_York", "GEONAMESNO": "GeoNames match general.", "UN_FID": 308, "UN_ADM0": "Italy", "UN_LAT": 41.87, "UN_LONG": 12.51, "POP1950": 1884.0, "POP1955": 2143.0, "POP1960": 2456.0, "POP1965": 2780.0, "POP1970": 3135.0, "POP1975": 3300.0, "POP1980": 3390.0, "POP1985": 3429.0, "POP1990": 3450.0, "POP1995": 3425.0, "POP2000": 3385.0, "POP2005": 3348.0, "POP2010": 3339.0, "POP2015": 3333.0, "POP2020": 3330.0, "POP2025": 3330.0, "POP2050": 3330.0, "CITYALT": "Rome"}, "geometry": {"type": "Point", "coordinates": [12.481312, 41.897901]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Beijing", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Beijing", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Beijing", "ISO_A2": "CN", "NOTE": null, "LATITUDE": 39.928892, "LONGITUDE": 116.388286, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 11106000, "POP_MIN": 7480601, "POP_OTHER": 9033231, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1816670.0, "MEGANAME": "Beijing", "LS_NAME": "Beijing", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 10190861.0, "MAX_POP20": 11120470.0, "MAX_POP50": 16510327.0, "MAX_POP300": 23647944.0, "MAX_POP310": 137121250.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 2512.0, "MAX_AREAKM": 118844.0, "MIN_AREAMI": 970.0, "MAX_AREAMI": 45886.0, "MIN_PERKM": 1837.0, "MAX_PERKM": 93615.0, "MIN_PERMI": 1141.0, "MAX_PERMI": 58169.0, "MIN_BBXMIN": 111.441667, "MAX_BBXMIN": 116.058333, "MIN_BBXMAX": 117.208333, "MAX_BBXMAX": 117.325, "MIN_BBYMIN": 31.883333, "MAX_BBYMIN": 39.658333, "MIN_BBYMAX": 40.433333, "MAX_BBYMAX": 40.466667, "MEAN_BBXC": 115.929521, "MEAN_BBYC": 38.837783, "COMPARE": 0, "GN_ASCII": "Beijing", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 22.0, "GN_POP": 7480601.0, "ELEVATION": null, "GTOPO30": 63.0, "TIMEZONE": "Asia/Harbin", "GEONAMESNO": "GeoNames match general.", "UN_FID": 24, "UN_ADM0": "China", "UN_LAT": 39.9, "UN_LONG": 116.38, "POP1950": 4331.0, "POP1955": 4628.0, "POP1960": 4945.0, "POP1965": 5284.0, "POP1970": 5646.0, "POP1975": 6034.0, "POP1980": 6448.0, "POP1985": 6890.0, "POP1990": 7362.0, "POP1995": 8486.0, "POP2000": 9782.0, "POP2005": 10717.0, "POP2010": 11106.0, "POP2015": 11741.0, "POP2020": 12842.0, "POP2025": 13807.0, "POP2050": 14545.0, "CITYALT": null, "clustered:unrelated": 0.6514532359087705}, "geometry": {"type": "Point", "coordinates": [116.386339, 39.930838]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Nairobi", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Nairobi", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Kenya", "SOV_A3": "KEN", "ADM0NAME": "Kenya", "ADM0_A3": "KEN", "ADM1NAME": "Nairobi", "ISO_A2": "KE", "NOTE": null, "LATITUDE": -1.283347, "LONGITUDE": 36.816657, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 3010000, "POP_MIN": 2750547, "POP_OTHER": 3400962, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 184745.0, "MEGANAME": "Nairobi", "LS_NAME": "Nairobi", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3401842.0, "MAX_POP20": 3401842.0, "MAX_POP50": 3418532.0, "MAX_POP300": 3418532.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 698.0, "MAX_AREAKM": 719.0, "MIN_AREAMI": 269.0, "MAX_AREAMI": 277.0, "MIN_PERKM": 554.0, "MAX_PERKM": 571.0, "MIN_PERMI": 344.0, "MAX_PERMI": 355.0, "MIN_BBXMIN": 36.608333, "MAX_BBXMIN": 36.608333, "MIN_BBXMAX": 37.066667, "MAX_BBXMAX": 37.066667, "MIN_BBYMIN": -1.433333, "MAX_BBYMIN": -1.433333, "MIN_BBYMAX": -1.083333, "MAX_BBYMAX": -1.083333, "MEAN_BBXC": 36.804283, "MEAN_BBYC": -1.249679, "COMPARE": 0, "GN_ASCII": "Nairobi", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 5.0, "GN_POP": 2750547.0, "ELEVATION": null, "GTOPO30": 1724.0, "TIMEZONE": "Africa/Nairobi", "GEONAMESNO": "GeoNames match general.", "UN_FID": 324, "UN_ADM0": "Kenya", "UN_LAT": -1.26, "UN_LONG": 36.8, "POP1950": 137.0, "POP1955": 201.0, "POP1960": 293.0, "POP1965": 404.0, "POP1970": 531.0, "POP1975": 677.0, "POP1980": 862.0, "POP1985": 1090.0, "POP1990": 1380.0, "POP1995": 1755.0, "POP2000": 2233.0, "POP2005": 2787.0, "POP2010": 3010.0, "POP2015": 3363.0, "POP2020": 4052.0, "POP2025": 4881.0, "POP2050": 5871.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [36.814711, -1.2814]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-0 capital", "NAME": "Jakarta", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Jakarta", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Indonesia", "SOV_A3": "IDN", "ADM0NAME": "Indonesia", "ADM0_A3": "IDN", "ADM1NAME": "Jakarta Raya", "ISO_A2": "ID", "NOTE": null, "LATITUDE": -6.174418, "LONGITUDE": 106.829438, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 9125000, "POP_MIN": 8540121, "POP_OTHER": 9129613, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 1642911.0, "MEGANAME": "Jakarta", "LS_NAME": "Jakarta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 9664972.0, "MAX_POP20": 15074060.0, "MAX_POP50": 22017580.0, "MAX_POP300": 22031364.0, "MAX_POP310": 44354170.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1303.0, "MAX_AREAKM": 19435.0, "MIN_AREAMI": 503.0, "MAX_AREAMI": 7504.0, "MIN_PERKM": 318.0, "MAX_PERKM": 10224.0, "MIN_PERMI": 197.0, "MAX_PERMI": 6353.0, "MIN_BBXMIN": 105.891667, "MAX_BBXMIN": 106.473854, "MIN_BBXMAX": 106.932506, "MAX_BBXMAX": 109.808333, "MIN_BBYMIN": -7.716667, "MAX_BBYMIN": -6.383127, "MIN_BBYMAX": -6.016667, "MAX_BBYMAX": -5.875, "MEAN_BBXC": 106.989399, "MEAN_BBYC": -6.313824, "COMPARE": 0, "GN_ASCII": "Jakarta", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 4.0, "GN_POP": 8540121.0, "ELEVATION": null, "GTOPO30": 2.0, "TIMEZONE": "Asia/Jakarta", "GEONAMESNO": "GeoNames match general.", "UN_FID": 280, "UN_ADM0": "Indonesia", "UN_LAT": -6.16, "UN_LONG": 106.8, "POP1950": 1452.0, "POP1955": 1972.0, "POP1960": 2679.0, "POP1965": 3297.0, "POP1970": 3915.0, "POP1975": 4813.0, "POP1980": 5984.0, "POP1985": 7009.0, "POP1990": 8175.0, "POP1995": 8322.0, "POP2000": 8390.0, "POP2005": 8843.0, "POP2010": 9125.0, "POP2015": 9703.0, "POP2020": 10792.0, "POP2025": 11689.0, "POP2050": 12363.0, "CITYALT": null, "clustered:unrelated": 0.7074838752698291}, "geometry": {"type": "Point", "coordinates": [106.827491, -6.172471]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 5, "FEATURECLA": "Admin-0 capital", "NAME": "Bogota", "NAMEPAR": null, "NAMEALT": "Bogot\u00e1", "DIFFASCII": 0, "NAMEASCII": "Bogota", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Colombia", "SOV_A3": "COL", "ADM0NAME": "Colombia", "ADM0_A3": "COL", "ADM1NAME": "Bogota", "ISO_A2": "CO", "NOTE": null, "LATITUDE": 4.596424, "LONGITUDE": -74.083344, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 7772000, "POP_MIN": 6333661, "POP_OTHER": 5754084, "RANK_MAX": 13, "RANK_MIN": 13, "GEONAMEID": 3688689.0, "MEGANAME": "Bogot\u00e1", "LS_NAME": "Bogota", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 6333661.0, "MAX_POP20": 6333154.0, "MAX_POP50": 6333154.0, "MAX_POP300": 6333154.0, "MAX_POP310": 6333154.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 523.0, "MAX_AREAKM": 523.0, "MIN_AREAMI": 202.0, "MAX_AREAMI": 202.0, "MIN_PERKM": 186.0, "MAX_PERKM": 186.0, "MIN_PERMI": 116.0, "MAX_PERMI": 116.0, "MIN_BBXMIN": -74.266667, "MAX_BBXMIN": -74.266667, "MIN_BBXMAX": -74.008333, "MAX_BBXMAX": -74.008333, "MIN_BBYMIN": 4.483333, "MAX_BBYMIN": 4.483333, "MIN_BBYMAX": 4.8, "MAX_BBYMAX": 4.8, "MEAN_BBXC": -74.116517, "MEAN_BBYC": 4.643227, "COMPARE": 0, "GN_ASCII": "Bogota", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 34.0, "GN_POP": 7102602.0, "ELEVATION": null, "GTOPO30": 2620.0, "TIMEZONE": "America/Bogota", "GEONAMESNO": "GeoNames match general.", "UN_FID": 161, "UN_ADM0": "Colombia", "UN_LAT": 4.63, "UN_LONG": -74.08, "POP1950": 630.0, "POP1955": 894.0, "POP1960": 1269.0, "POP1965": 1780.0, "POP1970": 2383.0, "POP1975": 3040.0, "POP1980": 3525.0, "POP1985": 4087.0, "POP1990": 4740.0, "POP1995": 5494.0, "POP2000": 6356.0, "POP2005": 7353.0, "POP2010": 7772.0, "POP2015": 8320.0, "POP2020": 8916.0, "POP2025": 9299.0, "POP2050": 9600.0, "CITYALT": "Bogota"}, "geometry": {"type": "Point", "coordinates": [-74.085289, 4.598369]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Cairo", "NAMEPAR": null, "NAMEALT": "Al-Qahirah", "DIFFASCII": 0, "NAMEASCII": "Cairo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Egypt", "SOV_A3": "EGY", "ADM0NAME": "Egypt", "ADM0_A3": "EGY", "ADM1NAME": "Al Qahirah", "ISO_A2": "EG", "NOTE": null, "LATITUDE": 30.04996, "LONGITUDE": 31.249968, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 11893000, "POP_MIN": 7734614, "POP_OTHER": 13720557, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 360630.0, "MEGANAME": "Al-Qahirah", "LS_NAME": "Cairo", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 14936123.0, "MAX_POP20": 15091561.0, "MAX_POP50": 29872827.0, "MAX_POP300": 30682197.0, "MAX_POP310": 30696820.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1479.0, "MAX_AREAKM": 4900.0, "MIN_AREAMI": 571.0, "MAX_AREAMI": 1892.0, "MIN_PERKM": 1365.0, "MAX_PERKM": 5010.0, "MIN_PERMI": 848.0, "MAX_PERMI": 3113.0, "MIN_BBXMIN": 30.641667, "MAX_BBXMIN": 30.991693, "MIN_BBXMAX": 31.672096, "MAX_BBXMAX": 31.733333, "MIN_BBYMIN": 29.3, "MAX_BBYMIN": 29.8, "MIN_BBYMAX": 30.531354, "MAX_BBYMAX": 31.158333, "MEAN_BBXC": 31.273845, "MEAN_BBYC": 30.353647, "COMPARE": 0, "GN_ASCII": "Cairo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 11.0, "GN_POP": 7734614.0, "ELEVATION": null, "GTOPO30": 23.0, "TIMEZONE": "Africa/Cairo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 515, "UN_ADM0": "Egypt", "UN_LAT": 30.07, "UN_LONG": 31.25, "POP1950": 2494.0, "POP1955": 3029.0, "POP1960": 3680.0, "POP1965": 4738.0, "POP1970": 5585.0, "POP1975": 6450.0, "POP1980": 7349.0, "POP1985": 8328.0, "POP1990": 9061.0, "POP1995": 9707.0, "POP2000": 10534.0, "POP2005": 11487.0, "POP2010": 11893.0, "POP2015": 12503.0, "POP2020": 13465.0, "POP2025": 14451.0, "POP2050": 15561.0, "CITYALT": "Cairo"}, "geometry": {"type": "Point", "coordinates": [31.248022, 30.051906]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Shanghai", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Shanghai", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "China", "ADM0_A3": "CHN", "ADM1NAME": "Shanghai", "ISO_A2": "CN", "NOTE": null, "LATITUDE": 31.216452, "LONGITUDE": 121.436505, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 14987000, "POP_MIN": 14608512, "POP_OTHER": 16803572, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1796236.0, "MEGANAME": "Shanghai", "LS_NAME": "Shanghai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 16172884.0, "MAX_POP20": 16172884.0, "MAX_POP50": 26630672.0, "MAX_POP300": 26631586.0, "MAX_POP310": 40576904.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 3792.0, "MAX_AREAKM": 16400.0, "MIN_AREAMI": 1464.0, "MAX_AREAMI": 6332.0, "MIN_PERKM": 2219.0, "MAX_PERKM": 12342.0, "MIN_PERMI": 1379.0, "MAX_PERMI": 7669.0, "MIN_BBXMIN": 119.016667, "MAX_BBXMIN": 121.013757, "MIN_BBXMAX": 121.9, "MAX_BBXMAX": 121.9, "MIN_BBYMIN": 30.191667, "MAX_BBYMIN": 30.7, "MIN_BBYMAX": 31.65, "MAX_BBYMAX": 32.308333, "MEAN_BBXC": 121.053901, "MEAN_BBYC": 31.253289, "COMPARE": 0, "GN_ASCII": "Shanghai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 23.0, "GN_POP": 14608512.0, "ELEVATION": null, "GTOPO30": 6.0, "TIMEZONE": "Asia/Shanghai", "GEONAMESNO": "GeoNames match general.", "UN_FID": 98, "UN_ADM0": "China", "UN_LAT": 31.24, "UN_LONG": 121.47, "POP1950": 6066.0, "POP1955": 6299.0, "POP1960": 6542.0, "POP1965": 6793.0, "POP1970": 7055.0, "POP1975": 7326.0, "POP1980": 7608.0, "POP1985": 7901.0, "POP1990": 8205.0, "POP1995": 10423.0, "POP2000": 13243.0, "POP2005": 14503.0, "POP2010": 14987.0, "POP2015": 15789.0, "POP2020": 17214.0, "POP2025": 18466.0, "POP2050": 19412.0, "CITYALT": null, "clustered:unrelated": 0.059566147667819425}, "geometry": {"type": "Point", "coordinates": [121.434558, 31.218398]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 2, "FEATURECLA": "Admin-0 capital", "NAME": "Tokyo", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Tokyo", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "De facto capita", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Japan", "SOV_A3": "JPN", "ADM0NAME": "Japan", "ADM0_A3": "JPN", "ADM1NAME": "Tokyo", "ISO_A2": "JP", "NOTE": null, "LATITUDE": 35.685017, "LONGITUDE": 139.751407, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 35676000, "POP_MIN": 8336599, "POP_OTHER": 12945252, "RANK_MAX": 14, "RANK_MIN": 13, "GEONAMEID": 1850147.0, "MEGANAME": "Tokyo", "LS_NAME": "Tokyo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 13762740.0, "MAX_POP20": 24218878.0, "MAX_POP50": 31303497.0, "MAX_POP300": 31303497.0, "MAX_POP310": 31303497.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 2130.0, "MAX_AREAKM": 5750.0, "MIN_AREAMI": 823.0, "MAX_AREAMI": 2220.0, "MIN_PERKM": 838.0, "MAX_PERKM": 2284.0, "MIN_PERMI": 521.0, "MAX_PERMI": 1419.0, "MIN_BBXMIN": 139.166667, "MAX_BBXMIN": 139.536465, "MIN_BBXMAX": 140.433333, "MAX_BBXMAX": 140.433333, "MIN_BBYMIN": 35.175, "MAX_BBYMIN": 35.486247, "MIN_BBYMAX": 36.05, "MAX_BBYMAX": 36.241667, "MEAN_BBXC": 139.75102, "MEAN_BBYC": 35.743469, "COMPARE": 0, "GN_ASCII": "Tokyo", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": 40.0, "GN_POP": 8336599.0, "ELEVATION": null, "GTOPO30": 40.0, "TIMEZONE": "Asia/Tokyo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 318, "UN_ADM0": "Japan", "UN_LAT": 35.68, "UN_LONG": 139.8, "POP1950": 11275.0, "POP1955": 13713.0, "POP1960": 16679.0, "POP1965": 20284.0, "POP1970": 23298.0, "POP1975": 26615.0, "POP1980": 28549.0, "POP1985": 30304.0, "POP1990": 32530.0, "POP1995": 33587.0, "POP2000": 34450.0, "POP2005": 35327.0, "POP2010": 35676.0, "POP2015": 36094.0, "POP2020": 36371.0, "POP2025": 36399.0, "POP2050": 36400.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [139.749461, 35.686962]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Mumbai", "NAMEPAR": "Bombay", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Mumbai", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "Maharashtra", "ISO_A2": "IN", "NOTE": null, "LATITUDE": 19.01699, "LONGITUDE": 72.856989, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 18978000, "POP_MIN": 12691836, "POP_OTHER": 12426085, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 1275339.0, "MEGANAME": "Mumbai", "LS_NAME": "Mumbai", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12814908.0, "MAX_POP20": 20149761.0, "MAX_POP50": 20149761.0, "MAX_POP300": 20149761.0, "MAX_POP310": 20149761.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 442.0, "MAX_AREAKM": 1479.0, "MIN_AREAMI": 171.0, "MAX_AREAMI": 571.0, "MIN_PERKM": 244.0, "MAX_PERKM": 1021.0, "MIN_PERMI": 152.0, "MAX_PERMI": 634.0, "MIN_BBXMIN": 72.758333, "MAX_BBXMIN": 72.775, "MIN_BBXMAX": 72.983154, "MAX_BBXMAX": 73.266667, "MIN_BBYMIN": 18.891667, "MAX_BBYMIN": 18.891667, "MIN_BBYMAX": 19.308333, "MAX_BBYMAX": 19.491667, "MEAN_BBXC": 72.959776, "MEAN_BBYC": 19.189154, "COMPARE": 0, "GN_ASCII": "Mumbai", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 16.0, "GN_POP": 12691836.0, "ELEVATION": null, "GTOPO30": 12.0, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 253, "UN_ADM0": "India", "UN_LAT": 19.07, "UN_LONG": 72.82, "POP1950": 2857.0, "POP1955": 3432.0, "POP1960": 4060.0, "POP1965": 4854.0, "POP1970": 5811.0, "POP1975": 7082.0, "POP1980": 8658.0, "POP1985": 10341.0, "POP1990": 12308.0, "POP1995": 14111.0, "POP2000": 16086.0, "POP2005": 18202.0, "POP2010": 18978.0, "POP2015": 20072.0, "POP2020": 21946.0, "POP2025": 24051.0, "POP2050": 26385.0, "CITYALT": "Bombay", "clustered:unrelated": 0.7452571428136238}, "geometry": {"type": "Point", "coordinates": [72.855043, 19.018936]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Paris", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Paris", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "French Republic", "SOV_A3": "FRA", "ADM0NAME": "France", "ADM0_A3": "FRA", "ADM1NAME": "\u00cele-de-France", "ISO_A2": "FR", "NOTE": null, "LATITUDE": 48.866693, "LONGITUDE": 2.333335, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 9904000, "POP_MIN": 11177, "POP_OTHER": 7142744, "RANK_MAX": 13, "RANK_MIN": 6, "GEONAMEID": 6942553.0, "MEGANAME": "Paris", "LS_NAME": "Paris", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 7454172.0, "MAX_POP20": 7970513.0, "MAX_POP50": 9960588.0, "MAX_POP300": 9960588.0, "MAX_POP310": 9960588.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1121.0, "MAX_AREAKM": 2415.0, "MIN_AREAMI": 433.0, "MAX_AREAMI": 932.0, "MIN_PERKM": 542.0, "MAX_PERKM": 1891.0, "MIN_PERMI": 337.0, "MAX_PERMI": 1175.0, "MIN_BBXMIN": 1.658333, "MAX_BBXMIN": 2.152754, "MIN_BBXMAX": 2.658336, "MAX_BBXMAX": 2.925, "MIN_BBYMIN": 48.491667, "MAX_BBYMIN": 48.591667, "MIN_BBYMAX": 49.183333, "MAX_BBYMAX": 49.183333, "MEAN_BBXC": 2.352277, "MEAN_BBYC": 48.839027, "COMPARE": 0, "GN_ASCII": "Paris", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 8.0, "GN_POP": 11177.0, "ELEVATION": null, "GTOPO30": 228.0, "TIMEZONE": "America/Toronto", "GEONAMESNO": "GeoNames match general.", "UN_FID": 189, "UN_ADM0": "France", "UN_LAT": 48.88, "UN_LONG": 2.43, "POP1950": 6522.0, "POP1955": 6796.0, "POP1960": 7411.0, "POP1965": 7968.0, "POP1970": 8350.0, "POP1975": 8558.0, "POP1980": 8669.0, "POP1985": 8956.0, "POP1990": 9330.0, "POP1995": 9510.0, "POP2000": 9692.0, "POP2005": 9852.0, "POP2010": 9904.0, "POP2015": 9958.0, "POP2020": 10007.0, "POP2025": 10031.0, "POP2050": 10036.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [2.331389, 48.868638]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-0 capital", "NAME": "Santiago", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Santiago", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": "Official, admin", "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Chile", "SOV_A3": "CHL", "ADM0NAME": "Chile", "ADM0_A3": "CHL", "ADM1NAME": "Regi\u00f3n Metropolitana de Santiago", "ISO_A2": "CL", "NOTE": null, "LATITUDE": -33.450014, "LONGITUDE": -70.667041, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed scale rank.", "POP_MAX": 5720000, "POP_MIN": 46611, "POP_OTHER": 3066651, "RANK_MAX": 13, "RANK_MIN": 7, "GEONAMEID": 3449741.0, "MEGANAME": "Santiago", "LS_NAME": "Santiago3", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 3540014.0, "MAX_POP20": 5157058.0, "MAX_POP50": 5157058.0, "MAX_POP300": 5157058.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 570.0, "MAX_AREAKM": 903.0, "MIN_AREAMI": 220.0, "MAX_AREAMI": 349.0, "MIN_PERKM": 310.0, "MAX_PERKM": 558.0, "MIN_PERMI": 193.0, "MAX_PERMI": 347.0, "MIN_BBXMIN": -70.958333, "MAX_BBXMIN": -70.8, "MIN_BBXMAX": -70.458333, "MAX_BBXMAX": -70.458333, "MIN_BBYMIN": -33.7, "MAX_BBYMIN": -33.556142, "MIN_BBYMAX": -33.175, "MAX_BBYMAX": -33.175, "MEAN_BBXC": -70.66127, "MEAN_BBYC": -33.461735, "COMPARE": 0, "GN_ASCII": "Santiago", "FEATURE_CL": "P", "FEATURE_CO": "PPL", "ADMIN1_COD": 23.0, "GN_POP": 46611.0, "ELEVATION": null, "GTOPO30": 441.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 17, "UN_ADM0": "Chile", "UN_LAT": 8.1, "UN_LONG": -80.96, "POP1950": 1322.0, "POP1955": 1618.0, "POP1960": 1980.0, "POP1965": 2294.0, "POP1970": 2647.0, "POP1975": 3138.0, "POP1980": 3721.0, "POP1985": 4201.0, "POP1990": 4616.0, "POP1995": 4964.0, "POP2000": 5275.0, "POP2005": 5599.0, "POP2010": 5720.0, "POP2015": 5879.0, "POP2020": 6084.0, "POP2025": 6224.0, "POP2050": 6310.0, "CITYALT": null, "clustered:unrelated": 0.917251483319913}, "geometry": {"type": "Point", "coordinates": [-70.668986, -33.448067]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Kolkata", "NAMEPAR": "Calcutta", "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Kolkata", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": null, "MEGACITY": 1, "SOV0NAME": "India", "SOV_A3": "IND", "ADM0NAME": "India", "ADM0_A3": "IND", "ADM1NAME": "West Bengal", "ISO_A2": "IN", "NOTE": null, "LATITUDE": 22.494969, "LONGITUDE": 88.324676, "CHANGED": 4.0, "NAMEDIFF": 1, "DIFFNOTE": "Name changed. Changed scale rank.", "POP_MAX": 14787000, "POP_MIN": 4631392, "POP_OTHER": 7783716, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 1275004.0, "MEGANAME": "Kolkata", "LS_NAME": "Calcutta", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 8143162.0, "MAX_POP20": 18577087.0, "MAX_POP50": 48715672.0, "MAX_POP300": 87652060.0, "MAX_POP310": null, "MAX_NATSCA": 100.0, "MIN_AREAKM": 2490.0, "MAX_AREAKM": 53331.0, "MIN_AREAMI": 962.0, "MAX_AREAMI": 20591.0, "MIN_PERKM": null, "MAX_PERKM": 35493.0, "MIN_PERMI": null, "MAX_PERMI": 22054.0, "MIN_BBXMIN": 85.483333, "MAX_BBXMIN": 87.714444, "MIN_BBXMAX": 88.85, "MAX_BBXMAX": 89.455426, "MIN_BBYMIN": 19.866667, "MAX_BBYMIN": 22.056849, "MIN_BBYMAX": 22.575491, "MAX_BBYMAX": 25.259961, "MEAN_BBXC": 88.040398, "MEAN_BBYC": 22.616509, "COMPARE": 1, "GN_ASCII": "Calcutta", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 28.0, "GN_POP": 4631392.0, "ELEVATION": null, "GTOPO30": 16.0, "TIMEZONE": "Asia/Kolkata", "GEONAMESNO": "GeoNames match general.", "UN_FID": 245, "UN_ADM0": "India", "UN_LAT": 22.54, "UN_LONG": 88.33, "POP1950": 4513.0, "POP1955": 5055.0, "POP1960": 5652.0, "POP1965": 6261.0, "POP1970": 6926.0, "POP1975": 7888.0, "POP1980": 9030.0, "POP1985": 9946.0, "POP1990": 10890.0, "POP1995": 11924.0, "POP2000": 13058.0, "POP2005": 14282.0, "POP2010": 14787.0, "POP2015": 15577.0, "POP2020": 17039.0, "POP2025": 18707.0, "POP2050": 20560.0, "CITYALT": "Calcutta"}, "geometry": {"type": "Point", "coordinates": [88.322729, 22.496915]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "Rio de Janeiro", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Rio de Janeiro", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "Rio de Janeiro", "ISO_A2": "BR", "NOTE": null, "LATITUDE": -22.925023, "LONGITUDE": -43.225021, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 11748000, "POP_MIN": 2010175, "POP_OTHER": 1821489, "RANK_MAX": 14, "RANK_MIN": 12, "GEONAMEID": 3451190.0, "MEGANAME": "Rio de Janeiro", "LS_NAME": "Rio de Janeiro", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2010175.0, "MAX_POP20": 8118691.0, "MAX_POP50": 8889292.0, "MAX_POP300": 8889292.0, "MAX_POP310": 8889292.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 316.0, "MAX_AREAKM": 1472.0, "MIN_AREAMI": 122.0, "MAX_AREAMI": 568.0, "MIN_PERKM": 203.0, "MAX_PERKM": 691.0, "MIN_PERMI": 126.0, "MAX_PERMI": 429.0, "MIN_BBXMIN": -43.75, "MAX_BBXMIN": -43.499182, "MIN_BBXMAX": -43.158333, "MAX_BBXMAX": -43.15, "MIN_BBYMIN": -23.033333, "MAX_BBYMIN": -23.033333, "MIN_BBYMAX": -22.837896, "MAX_BBYMAX": -22.575, "MEAN_BBXC": -43.407551, "MEAN_BBYC": -22.856463, "COMPARE": 0, "GN_ASCII": "Rio de Janeiro", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 21.0, "GN_POP": 6023699.0, "ELEVATION": null, "GTOPO30": 19.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "Geonames ascii name + lat.d + long.d matching.", "UN_FID": 489, "UN_ADM0": "Brazil", "UN_LAT": -22.72, "UN_LONG": -43.45, "POP1950": 2950.0, "POP1955": 3592.0, "POP1960": 4374.0, "POP1965": 5387.0, "POP1970": 6637.0, "POP1975": 7557.0, "POP1980": 8583.0, "POP1985": 9086.0, "POP1990": 9595.0, "POP1995": 10174.0, "POP2000": 10803.0, "POP2005": 11469.0, "POP2010": 11748.0, "POP2015": 12171.0, "POP2020": 12775.0, "POP2025": 13179.0, "POP2050": 13413.0, "CITYALT": null, "clustered:unrelated": 0.4043426242306748}, "geometry": {"type": "Point", "coordinates": [-43.226966, -22.923077]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 1, "FEATURECLA": "Admin-1 capital", "NAME": "Sao Paulo", "NAMEPAR": null, "NAMEALT": "Sao Paulo|S\u00e3o Paulo", "DIFFASCII": 0, "NAMEASCII": "Sao Paulo", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Brazil", "SOV_A3": "BRA", "ADM0NAME": "Brazil", "ADM0_A3": "BRA", "ADM1NAME": "S\u00e3o Paulo", "ISO_A2": "BR", "NOTE": null, "LATITUDE": -23.55868, "LONGITUDE": -46.62502, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 18845000, "POP_MIN": 10021295, "POP_OTHER": 11522944, "RANK_MAX": 14, "RANK_MIN": 14, "GEONAMEID": 3448439.0, "MEGANAME": "S\u00e3o Paulo", "LS_NAME": "Sao Paolo", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 12495084.0, "MAX_POP20": 17425624.0, "MAX_POP50": 18203351.0, "MAX_POP300": 18203351.0, "MAX_POP310": 18203351.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1434.0, "MAX_AREAKM": 2667.0, "MIN_AREAMI": 554.0, "MAX_AREAMI": 1030.0, "MIN_PERKM": 532.0, "MAX_PERKM": 1086.0, "MIN_PERMI": 330.0, "MAX_PERMI": 675.0, "MIN_BBXMIN": -47.058333, "MAX_BBXMIN": -47.056372, "MIN_BBXMAX": -46.383333, "MAX_BBXMAX": -46.108333, "MIN_BBYMIN": -23.891667, "MAX_BBYMIN": -23.842331, "MIN_BBYMAX": -23.358333, "MAX_BBYMAX": -23.241667, "MEAN_BBXC": -46.651489, "MEAN_BBYC": -23.558961, "COMPARE": 0, "GN_ASCII": "Sao Paulo", "FEATURE_CL": "P", "FEATURE_CO": "PPLA", "ADMIN1_COD": 27.0, "GN_POP": 10021295.0, "ELEVATION": null, "GTOPO30": 631.0, "TIMEZONE": "America/Sao_Paulo", "GEONAMESNO": "GeoNames match general.", "UN_FID": 491, "UN_ADM0": "Brazil", "UN_LAT": -23.58, "UN_LONG": -46.62, "POP1950": 2334.0, "POP1955": 3044.0, "POP1960": 3970.0, "POP1965": 5494.0, "POP1970": 7620.0, "POP1975": 9614.0, "POP1980": 12089.0, "POP1985": 13395.0, "POP1990": 14776.0, "POP1995": 15948.0, "POP2000": 17099.0, "POP2005": 18333.0, "POP2010": 18845.0, "POP2015": 19582.0, "POP2020": 20544.0, "POP2025": 21124.0, "POP2050": 21428.0, "CITYALT": "Sao Paulo"}, "geometry": {"type": "Point", "coordinates": [-46.626965, -23.556733]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 3, "FEATURECLA": "Admin-1 capital", "NAME": "Sydney", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Sydney", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Australia", "SOV_A3": "AUS", "ADM0NAME": "Australia", "ADM0_A3": "AUS", "ADM1NAME": "New South Wales", "ISO_A2": "AU", "NOTE": null, "LATITUDE": -33.920011, "LONGITUDE": 151.18518, "CHANGED": 4.0, "NAMEDIFF": 0, "DIFFNOTE": "Changed feature class.", "POP_MAX": 4630000, "POP_MIN": 3641422, "POP_OTHER": 2669348, "RANK_MAX": 12, "RANK_MIN": 12, "GEONAMEID": 2147714.0, "MEGANAME": "Sydney", "LS_NAME": "Sydney1", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 2731457.0, "MAX_POP20": 2731457.0, "MAX_POP50": 3164008.0, "MAX_POP300": 3164008.0, "MAX_POP310": 3164008.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 1078.0, "MAX_AREAKM": 1409.0, "MIN_AREAMI": 416.0, "MAX_AREAMI": 544.0, "MIN_PERKM": 468.0, "MAX_PERKM": 717.0, "MIN_PERMI": 291.0, "MAX_PERMI": 445.0, "MIN_BBXMIN": 150.533333, "MAX_BBXMIN": 150.831963, "MIN_BBXMAX": 151.308333, "MAX_BBXMAX": 151.341667, "MIN_BBYMIN": -34.091667, "MAX_BBYMIN": -34.091667, "MIN_BBYMAX": -33.641667, "MAX_BBYMAX": -33.6, "MEAN_BBXC": 151.051024, "MEAN_BBYC": -33.846724, "COMPARE": 0, "GN_ASCII": null, "FEATURE_CL": null, "FEATURE_CO": null, "ADMIN1_COD": null, "GN_POP": 4394576.0, "ELEVATION": null, "GTOPO30": null, "TIMEZONE": null, "GEONAMESNO": "GeoNames rough area, rough name, requires further research.", "UN_FID": 276, "UN_ADM0": "Australia", "UN_LAT": -33.88, "UN_LONG": 151.02, "POP1950": 1690.0, "POP1955": 1906.0, "POP1960": 2135.0, "POP1965": 2390.0, "POP1970": 2667.0, "POP1975": 2960.0, "POP1980": 3227.0, "POP1985": 3432.0, "POP1990": 3632.0, "POP1995": 3839.0, "POP2000": 4078.0, "POP2005": 4260.0, "POP2010": 4327.0, "POP2015": 4427.0, "POP2020": 4582.0, "POP2025": 4716.0, "POP2050": 4826.0, "CITYALT": null}, "geometry": {"type": "Point", "coordinates": [151.183233, -33.918065]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 capital", "NAME": "Singapore", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Singapore", "ADM0CAP": 1.0, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "Singapore", "SOV_A3": "SGP", "ADM0NAME": "Singapore", "ADM0_A3": "SGP", "ADM1NAME": null, "ISO_A2": "SG", "NOTE": null, "LATITUDE": 1.293033, "LONGITUDE": 103.855821, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 5183700, "POP_MIN": 3289529, "POP_OTHER": 3314179, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1880252.0, "MEGANAME": "Singapore", "LS_NAME": "Singapore", "LS_MATCH": 1, "CHECKME": 5, "MAX_POP10": 3289529.0, "MAX_POP20": 4207001.0, "MAX_POP50": 4207001.0, "MAX_POP300": 4207001.0, "MAX_POP310": 4207001.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 305.0, "MAX_AREAKM": 456.0, "MIN_AREAMI": 118.0, "MAX_AREAMI": 176.0, "MIN_PERKM": 173.0, "MAX_PERKM": 288.0, "MIN_PERMI": 108.0, "MAX_PERMI": 179.0, "MIN_BBXMIN": 103.633333, "MAX_BBXMIN": 103.658333, "MIN_BBXMAX": 104.0, "MAX_BBXMAX": 104.0, "MIN_BBYMIN": 1.25, "MAX_BBYMIN": 1.25, "MIN_BBYMAX": 1.425, "MAX_BBYMAX": 1.475, "MEAN_BBXC": 103.821508, "MEAN_BBYC": 1.352586, "COMPARE": 0, "GN_ASCII": "Singapore", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 3547809.0, "ELEVATION": null, "GTOPO30": 1.0, "TIMEZONE": "Asia/Singapore", "GEONAMESNO": "GeoNames match general.", "UN_FID": 450, "UN_ADM0": "Singapore", "UN_LAT": 1.26, "UN_LONG": 103.83, "POP1950": 1016.0, "POP1955": 1306.0, "POP1960": 1634.0, "POP1965": 1880.0, "POP1970": 2075.0, "POP1975": 2263.0, "POP1980": 2415.0, "POP1985": 2709.0, "POP1990": 3016.0, "POP1995": 3478.0, "POP2000": 4017.0, "POP2005": 4327.0, "POP2010": 4436.0, "POP2015": 4592.0, "POP2020": 4809.0, "POP2025": 4965.0, "POP2050": 5104.0, "CITYALT": null, "clustered:unrelated": 0.7712475399221206}, "geometry": {"type": "Point", "coordinates": [103.853874, 1.294979]}} +{"type": "Feature", "properties": {"SCALERANK": 0, "NATSCALE": 600, "LABELRANK": 0, "FEATURECLA": "Admin-0 region capital", "NAME": "Hong Kong", "NAMEPAR": null, "NAMEALT": null, "DIFFASCII": 0, "NAMEASCII": "Hong Kong", "ADM0CAP": null, "CAPALT": null, "CAPIN": null, "WORLDCITY": 1.0, "MEGACITY": 1, "SOV0NAME": "China", "SOV_A3": "CHN", "ADM0NAME": "Hong Kong S.A.R.", "ADM0_A3": "HKG", "ADM1NAME": null, "ISO_A2": "HK", "NOTE": null, "LATITUDE": 22.304981, "LONGITUDE": 114.185009, "CHANGED": null, "NAMEDIFF": 0, "DIFFNOTE": null, "POP_MAX": 7206000, "POP_MIN": 4551579, "POP_OTHER": 4549026, "RANK_MAX": 13, "RANK_MIN": 12, "GEONAMEID": 1819729.0, "MEGANAME": "Hong Kong", "LS_NAME": "Hong Kong", "LS_MATCH": 1, "CHECKME": 0, "MAX_POP10": 4551579.0, "MAX_POP20": 15779579.0, "MAX_POP50": 16718429.0, "MAX_POP300": 16718429.0, "MAX_POP310": 42594594.0, "MAX_NATSCA": 300.0, "MIN_AREAKM": 202.0, "MAX_AREAKM": 10661.0, "MIN_AREAMI": 78.0, "MAX_AREAMI": 4116.0, "MIN_PERKM": 219.0, "MAX_PERKM": 7493.0, "MIN_PERMI": 136.0, "MAX_PERMI": 4656.0, "MIN_BBXMIN": 112.533333, "MAX_BBXMIN": 113.983333, "MIN_BBXMAX": 114.3, "MAX_BBXMAX": 114.775, "MIN_BBYMIN": 21.925, "MAX_BBYMIN": 22.2, "MIN_BBYMAX": 22.4, "MAX_BBYMAX": 24.033333, "MEAN_BBXC": 114.035195, "MEAN_BBYC": 22.679605, "COMPARE": 0, "GN_ASCII": "Hong Kong", "FEATURE_CL": "P", "FEATURE_CO": "PPLC", "ADMIN1_COD": null, "GN_POP": 7012738.0, "ELEVATION": null, "GTOPO30": -9999.0, "TIMEZONE": "Asia/Hong_Kong", "GEONAMESNO": "GeoNames match general.", "UN_FID": 210, "UN_ADM0": "China, Hong Kong Special Administrative Region", "UN_LAT": 22.27, "UN_LONG": 114.17, "POP1950": 1682.0, "POP1955": 2121.0, "POP1960": 2620.0, "POP1965": 3191.0, "POP1970": 3458.0, "POP1975": 3943.0, "POP1980": 4609.0, "POP1985": 5070.0, "POP1990": 5677.0, "POP1995": 6206.0, "POP2000": 6662.0, "POP2005": 7057.0, "POP2010": 7206.0, "POP2015": 7419.0, "POP2020": 7744.0, "POP2025": 8040.0, "POP2050": 8305.0, "CITYALT": null, "clustered:unrelated": 0.8053687125725494}, "geometry": {"type": "Point", "coordinates": [114.183063, 22.306926]}} diff --git a/tests/nullisland/out/-b0_-z4.json b/tests/nullisland/out/-b0_-z4.json index 77e26dcc0..068df9ebb 100644 --- a/tests/nullisland/out/-b0_-z4.json +++ b/tests/nullisland/out/-b0_-z4.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/nullisland/out/-b0_-z4.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":3},{}]", +"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":5},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -168,8 +168,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , @@ -184,8 +182,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , diff --git a/tests/nullisland/out/-b0_-z4_-ANullIsland.json b/tests/nullisland/out/-b0_-z4_-ANullIsland.json index 0cb05bc70..5a7fc41c9 100644 --- a/tests/nullisland/out/-b0_-z4_-ANullIsland.json +++ b/tests/nullisland/out/-b0_-z4_-ANullIsland.json @@ -10,7 +10,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/nullisland/out/-b0_-z4_-ANullIsland.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":3},{}]", +"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":5},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -169,8 +169,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , @@ -185,8 +183,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , diff --git a/tests/nullisland/out/-b0_-z4_-NNullIsland.json b/tests/nullisland/out/-b0_-z4_-NNullIsland.json index f089939dc..a00316121 100644 --- a/tests/nullisland/out/-b0_-z4_-NNullIsland.json +++ b/tests/nullisland/out/-b0_-z4_-NNullIsland.json @@ -9,7 +9,7 @@ "maxzoom": "4", "minzoom": "0", "name": "tests/nullisland/out/-b0_-z4_-NNullIsland.json.check.mbtiles", -"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":3},{}]", +"strategies": "[{\"dropped_by_rate\":4},{\"dropped_by_rate\":8},{\"dropped_by_rate\":8},{\"dropped_by_rate\":5},{}]", "type": "overlay", "version": "2" }, "features": [ @@ -168,8 +168,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, -0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , @@ -184,8 +182,6 @@ { "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0.000000, 0.000000 ], [ 0.000000, 0.999705 ] ] } } , { "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } -, -{ "type": "Feature", "properties": { }, "geometry": { "type": "Point", "coordinates": [ 0.999756, 0.000000 ] } } ] } ] } , diff --git a/tests/overture-235/in.json b/tests/overture-235/in.json new file mode 100644 index 000000000..53f0f4e3a --- /dev/null +++ b/tests/overture-235/in.json @@ -0,0 +1,8 @@ +{"type":"Feature","geometry":{"type":"Point","coordinates":[-73.8620223,-15.744153]},"properties":{"id":"0856c5143fffffff0138e27e7a03f7d8","@name":"Andenes","subtype":"locality","local_type":{"en":"hamlet"},"country":"PE","region":"PE-ARE","hierarchies":[[{"division_id":"085bc6b4ffffffff01fb3b67a2808435","subtype":"country","name":"Perรบ"},{"division_id":"08559acaffffffff01f27abb0a0cb14b","subtype":"region","name":"Arequipa"},{"division_id":"0856c834ffffffff01fd8ac1c98804cb","subtype":"county","name":"Caravelรญ"},{"division_id":"0856c53b7fffffff019e8d5b8b047485","subtype":"locality","name":"Chaparra"},{"division_id":"0856c5143fffffff0138e27e7a03f7d8","subtype":"locality","name":"Andenes"}]],"parent_division_id":"0856c53b7fffffff019e8d5b8b047485","perspectives":null,"norms":null,"population":null,"capital_division_id":null,"wikidata":null,"names":{"primary":"Andenes","common":{"en":"Andenes","es":"Andenes"},"rules":null},"version":0,"update_time":"2024-05-11T06:56:01Z","sources":[{"property":"","dataset":"OpenStreetMap","record_id":"N3522957503","confidence":null}]},"id":92526} +{"type":"Feature","geometry":{"type":"Point","coordinates":[-0.2216242,51.4948601]},"properties":{"id":"085070173fffffff014fa86038bb5217","@name":"Hammersmith And Fulham","subtype":"county","local_type":{"en":"county"},"country":"GB","region":"GB-ENG","hierarchies":[[{"division_id":"085eea613fffffff01a8a15aa3da4c44","subtype":"country","name":"United Kingdom"},{"division_id":"085255dd7fffffff011aba243af254bd","subtype":"region","name":"England"},{"division_id":"085070173fffffff014fa86038bb5217","subtype":"county","name":"Hammersmith And Fulham"}]],"parent_division_id":"085255dd7fffffff011aba243af254bd","perspectives":null,"norms":null,"population":null,"capital_division_id":null,"wikidata":null,"names":{"primary":"Hammersmith And Fulham","common":null,"rules":null},"version":0,"update_time":"2024-05-11T06:57:45Z","sources":[{"property":"","dataset":"geoBoundaries","record_id":"GBR9080712B6991151074246","confidence":null}]},"id":1096239} + + +{"type": "Feature", "properties": {"one": "Poull Bojer"}, "geometry": {"type":"Point","coordinates":[0,0]}} +{"type": "Feature", "properties": {"two": +"[[{\"division_id\":\"085ec5c23fffffff01339442745f3d55\",\"subtype\":\"country\",\"name\":\"Ecuador\"},{\"division_id\":\"085dac297fffffff0147c020488d610d\",\"subtype\":\"region\",\"name\":\"Cotopaxi\"},{\"division_id\":\"085bf1b2ffffffff012715ee575c3475\",\"subtype\":\"county\",\"name\":\"Sigchos\"},{\"division_id\":\"085bf010ffffffff014f248c7b4fe243\",\"subtype\":\"locality\",\"name\":\"Sigchos\"},{\"division_id\":\"085bf03a3fffffff01145a02d706b16f\",\"subtype\":\"locality\",\"name\":\"Tiliguila\"}]]" +}, "geometry": {"type":"Point","coordinates":[0,0]}} diff --git a/tests/overture-235/out/-z0.json b/tests/overture-235/out/-z0.json new file mode 100644 index 000000000..df00a650e --- /dev/null +++ b/tests/overture-235/out/-z0.json @@ -0,0 +1,26 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-73.862022,-15.744153,0.000000,51.494860", +"bounds": "-73.862022,-15.744153,0.000000,51.494860", +"center": "0.000000,0.000000,0", +"description": "tests/overture-235/out/-z0.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/overture-235/out/-z0.json.check.mbtiles -z0 tests/overture-235/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{\"@name\":\"String\",\"country\":\"String\",\"hierarchies\":\"String\",\"id\":\"String\",\"local_type\":\"String\",\"names\":\"String\",\"one\":\"String\",\"parent_division_id\":\"String\",\"region\":\"String\",\"sources\":\"String\",\"subtype\":\"String\",\"two\":\"String\",\"update_time\":\"String\",\"version\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":4,\"geometry\":\"Point\",\"attributeCount\":14,\"attributes\":[{\"attribute\":\"@name\",\"count\":2,\"type\":\"string\",\"values\":[\"Andenes\",\"Hammersmith And Fulham\"]},{\"attribute\":\"country\",\"count\":2,\"type\":\"string\",\"values\":[\"GB\",\"PE\"]},{\"attribute\":\"hierarchies\",\"count\":2,\"type\":\"string\",\"values\":[]},{\"attribute\":\"id\",\"count\":2,\"type\":\"string\",\"values\":[\"085070173fffffff014fa86038bb5217\",\"0856c5143fffffff0138e27e7a03f7d8\"]},{\"attribute\":\"local_type\",\"count\":2,\"type\":\"string\",\"values\":[\"{\\\"en\\\":\\\"county\\\"}\",\"{\\\"en\\\":\\\"hamlet\\\"}\"]},{\"attribute\":\"names\",\"count\":2,\"type\":\"string\",\"values\":[\"{\\\"primary\\\":\\\"Andenes\\\",\\\"common\\\":{\\\"en\\\":\\\"Andenes\\\",\\\"es\\\":\\\"Andenes\\\"},\\\"rules\\\":null}\",\"{\\\"primary\\\":\\\"Hammersmith And Fulham\\\",\\\"common\\\":null,\\\"rules\\\":null}\"]},{\"attribute\":\"one\",\"count\":1,\"type\":\"string\",\"values\":[\"Poull Bojer\"]},{\"attribute\":\"parent_division_id\",\"count\":2,\"type\":\"string\",\"values\":[\"085255dd7fffffff011aba243af254bd\",\"0856c53b7fffffff019e8d5b8b047485\"]},{\"attribute\":\"region\",\"count\":2,\"type\":\"string\",\"values\":[\"GB-ENG\",\"PE-ARE\"]},{\"attribute\":\"sources\",\"count\":2,\"type\":\"string\",\"values\":[\"[{\\\"property\\\":\\\"\\\",\\\"dataset\\\":\\\"OpenStreetMap\\\",\\\"record_id\\\":\\\"N3522957503\\\",\\\"confidence\\\":null}]\",\"[{\\\"property\\\":\\\"\\\",\\\"dataset\\\":\\\"geoBoundaries\\\",\\\"record_id\\\":\\\"GBR9080712B6991151074246\\\",\\\"confidence\\\":null}]\"]},{\"attribute\":\"subtype\",\"count\":2,\"type\":\"string\",\"values\":[\"county\",\"locality\"]},{\"attribute\":\"two\",\"count\":1,\"type\":\"string\",\"values\":[]},{\"attribute\":\"update_time\",\"count\":2,\"type\":\"string\",\"values\":[\"2024-05-11T06:56:01Z\",\"2024-05-11T06:57:45Z\"]},{\"attribute\":\"version\",\"count\":1,\"type\":\"number\",\"values\":[0],\"min\":0,\"max\":0}]}]}}", +"maxzoom": "0", +"minzoom": "0", +"name": "tests/overture-235/out/-z0.json.check.mbtiles", +"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", "id": 1096239, "properties": { "id": "085070173fffffff014fa86038bb5217", "@name": "Hammersmith And Fulham", "subtype": "county", "local_type": "{\"en\":\"county\"}", "country": "GB", "region": "GB-ENG", "hierarchies": "[[{\"division_id\":\"085eea613fffffff01a8a15aa3da4c44\",\"subtype\":\"country\",\"name\":\"United Kingdom\"},{\"division_id\":\"085255dd7fffffff011aba243af254bd\",\"subtype\":\"region\",\"name\":\"England\"},{\"division_id\":\"085070173fffffff014fa86038bb5217\",\"subtype\":\"county\",\"name\":\"Hammersmith And Fulham\"}]]", "parent_division_id": "085255dd7fffffff011aba243af254bd", "names": "{\"primary\":\"Hammersmith And Fulham\",\"common\":null,\"rules\":null}", "version": 0, "update_time": "2024-05-11T06:57:45Z", "sources": "[{\"property\":\"\",\"dataset\":\"geoBoundaries\",\"record_id\":\"GBR9080712B6991151074246\",\"confidence\":null}]" }, "geometry": { "type": "Point", "coordinates": [ -0.263672, 51.508742 ] } } +, +{ "type": "Feature", "id": 92526, "properties": { "id": "0856c5143fffffff0138e27e7a03f7d8", "@name": "Andenes", "subtype": "locality", "local_type": "{\"en\":\"hamlet\"}", "country": "PE", "region": "PE-ARE", "hierarchies": "[[{\"division_id\":\"085bc6b4ffffffff01fb3b67a2808435\",\"subtype\":\"country\",\"name\":\"Perรบ\"},{\"division_id\":\"08559acaffffffff01f27abb0a0cb14b\",\"subtype\":\"region\",\"name\":\"Arequipa\"},{\"division_id\":\"0856c834ffffffff01fd8ac1c98804cb\",\"subtype\":\"county\",\"name\":\"Caravelรญ\"},{\"division_id\":\"0856c53b7fffffff019e8d5b8b047485\",\"subtype\":\"locality\",\"name\":\"Chaparra\"},{\"division_id\":\"0856c5143fffffff0138e27e7a03f7d8\",\"subtype\":\"locality\",\"name\":\"Andenes\"}]]", "parent_division_id": "0856c53b7fffffff019e8d5b8b047485", "names": "{\"primary\":\"Andenes\",\"common\":{\"en\":\"Andenes\",\"es\":\"Andenes\"},\"rules\":null}", "version": 0, "update_time": "2024-05-11T06:56:01Z", "sources": "[{\"property\":\"\",\"dataset\":\"OpenStreetMap\",\"record_id\":\"N3522957503\",\"confidence\":null}]" }, "geometry": { "type": "Point", "coordinates": [ -73.828125, -15.707663 ] } } +, +{ "type": "Feature", "properties": { "one": "Poull Bojer" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } +, +{ "type": "Feature", "properties": { "two": "[[{\"division_id\":\"085ec5c23fffffff01339442745f3d55\",\"subtype\":\"country\",\"name\":\"Ecuador\"},{\"division_id\":\"085dac297fffffff0147c020488d610d\",\"subtype\":\"region\",\"name\":\"Cotopaxi\"},{\"division_id\":\"085bf1b2ffffffff012715ee575c3475\",\"subtype\":\"county\",\"name\":\"Sigchos\"},{\"division_id\":\"085bf010ffffffff014f248c7b4fe243\",\"subtype\":\"locality\",\"name\":\"Sigchos\"},{\"division_id\":\"085bf03a3fffffff01145a02d706b16f\",\"subtype\":\"locality\",\"name\":\"Tiliguila\"}]]" }, "geometry": { "type": "Point", "coordinates": [ 0.000000, 0.000000 ] } } +] } +] } +] } diff --git a/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json b/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json new file mode 100644 index 000000000..1cdd4c568 --- /dev/null +++ b/tests/pbf/0-0-0-pop-0-0-0.pbf.out.json @@ -0,0 +1,125 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 580331033233195007, "properties": { "bin": "80dbfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:sum:POP_EST": 30281307, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:sum:GDP_MD": 1603495, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424826, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 46849664, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 12.4, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 306.83672, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:sum:LABEL_Y": -63.888522, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 2318641490, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:mean:POP_EST": 15140653.5, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 801747.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 11712413, "tippecanoe:mean:WOE_ID_EH": 23424832, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.2, "tippecanoe:mean:LABEL_X": 153.41836, "tippecanoe:mean:LABEL_Y": -31.944261, "tippecanoe:mean:NE_ID": 1159320745, "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 167.607422, -40.847060 ], [ 182.021484, -45.213004 ], [ 185.537109, -55.727110 ], [ 169.541016, -63.114638 ], [ 150.117188, -58.031372 ], [ 152.490234, -46.739861 ], [ 167.607422, -40.847060 ] ] ], [ [ [ -187.031250, -42.488302 ], [ -177.978516, -45.213004 ], [ -174.462891, -55.727110 ], [ -187.031250, -61.648162 ], [ -187.031250, -42.488302 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8001fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 144373535, "tippecanoe:min:POP_EST": 144373535, "tippecanoe:sum:POP_EST": 144373535, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1699876, "tippecanoe:min:GDP_MD": 1699876, "tippecanoe:sum:GDP_MD": 1699876, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424936, "tippecanoe:min:WOE_ID": 23424936, "tippecanoe:sum:WOE_ID": 23424936, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424936, "tippecanoe:min:WOE_ID_EH": 23424936, "tippecanoe:sum:WOE_ID_EH": 23424936, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 18, "tippecanoe:min:LONG_LEN": 18, "tippecanoe:sum:LONG_LEN": 18, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.2, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:sum:MAX_LABEL": 5.2, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 44.686469, "tippecanoe:min:LABEL_X": 44.686469, "tippecanoe:sum:LABEL_X": 44.686469, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": 58.249357, "tippecanoe:sum:LABEL_Y": 58.249357, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321201, "tippecanoe:min:NE_ID": 1159321201, "tippecanoe:sum:NE_ID": 1159321201, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 144373535, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1699876, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936, "tippecanoe:mean:WOE_ID_EH": 23424936, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 18, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.2, "tippecanoe:mean:LABEL_X": 44.686469, "tippecanoe:mean:LABEL_Y": 58.249357, "tippecanoe:mean:NE_ID": 1159321201, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 129.814453, 85.622069 ], [ 94.130859, 76.163993 ], [ 62.314453, 69.380313 ], [ 31.816406, 68.942607 ], [ 0.351562, 73.302624 ], [ -34.716797, 81.268385 ], [ 69.257812, 85.622069 ], [ 129.814453, 85.622069 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80adfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2494530, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 12366, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424987, "tippecanoe:mean:WOE_ID_EH": 23424987, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 17.108166, "tippecanoe:mean:LABEL_Y": -20.575298, "tippecanoe:mean:NE_ID": 1159321085, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, -14.604847 ], [ 23.906250, -24.686952 ], [ 18.369141, -35.029996 ], [ 4.394531, -35.746512 ], [ -2.109375, -24.766785 ], [ 4.570312, -15.284185 ], [ 16.259766, -14.604847 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8095fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 270625568, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:sum:POP_EST": 271918687, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1119190, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:sum:GDP_MD": 1121207, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424846, "tippecanoe:sum:WOE_ID": 46849814, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424846, "tippecanoe:sum:WOE_ID_EH": 46849814, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 101.892949, "tippecanoe:sum:LABEL_X": 227.74762800000003, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -0.954404, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:sum:LABEL_Y": -9.758109000000001, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159320845, "tippecanoe:sum:NE_ID": 2318642158, "tippecanoe:mean:scalerank": 0.5, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 135959343.5, "tippecanoe:mean:POP_RANK": 14.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 560603.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424907, "tippecanoe:mean:WOE_ID_EH": 23424907, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:mean:LABEL_X": 113.87381400000001, "tippecanoe:mean:LABEL_Y": -4.8790545000000009, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.298828, 0.175781 ], [ 135.878906, -7.710992 ], [ 133.857422, -18.895893 ], [ 122.783203, -21.779905 ], [ 114.257812, -14.519780 ], [ 115.664062, -3.864255 ], [ 126.298828, 0.175781 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8039fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 17, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 37, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 43053054, "tippecanoe:min:POP_EST": 77142, "tippecanoe:sum:POP_EST": 98677389, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 76, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 171091, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 385739, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 12102, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:sum:WOE_ID": 140549216, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:sum:WOE_ID_EH": 140549216, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 47, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -490, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 22.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 52, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 18.011015, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": 11.548945999999999, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 42.547643, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 185.88957100000003, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:sum:NE_ID": 6955925494, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 2.8333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.166666666666667, "tippecanoe:mean:POP_EST": 16446231.5, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:mean:GDP_MD": 64289.833333333336, "tippecanoe:mean:GDP_YEAR": 2017, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7.833333333333333, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -81.66666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.7833333333333333, "tippecanoe:mean:MIN_LABEL": 3.6999999999999999, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 1.9248243333333333, "tippecanoe:mean:LABEL_Y": 30.98159516666667, "tippecanoe:mean:NE_ID": 1159320915.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.021484, 45.213004 ], [ 13.271484, 37.509726 ], [ 9.404297, 25.641526 ], [ -2.460938, 22.187405 ], [ -12.919922, 28.536275 ], [ -12.392578, 40.847060 ], [ 2.021484, 45.213004 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "808dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 5705956, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 4035, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 372097, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424858, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:sum:WOE_ID_EH": 46849817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 209.48951499999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": -9.124202, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 2318641610, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 2852978, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2017.5, "tippecanoe:mean:GDP_MD": 186048.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 11712429, "tippecanoe:mean:WOE_ID_EH": 23424908.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16.5, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 104.74475749999999, "tippecanoe:mean:LABEL_Y": -4.562101, "tippecanoe:mean:NE_ID": 1159320805, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 2.811371 ], [ 115.664062, -3.864255 ], [ 114.257812, -14.519780 ], [ 103.974609, -19.394068 ], [ 94.394531, -13.838080 ], [ 95.185547, -2.547988 ], [ 106.435547, 2.811371 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "806bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 23, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 19, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 164874917, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 50400, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 122404, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 117124163, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 117124163, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 60, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 100, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 19, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 32.948555, "tippecanoe:min:LABEL_X": 15.9005, "tippecanoe:sum:LABEL_X": 153.70882600000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:min:LABEL_Y": -1.897196, "tippecanoe:sum:LABEL_Y": 12.579715, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 6955925288, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.1666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 27479152.833333333, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20400.666666666668, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:mean:WOE_ID": 19520693.833333333, "tippecanoe:mean:WOE_ID_EH": 19520693.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 16.666666666666669, "tippecanoe:mean:ABBREV_LEN": 6.166666666666667, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:mean:LABEL_X": 25.61813766666667, "tippecanoe:mean:LABEL_Y": 2.0966191666666669, "tippecanoe:mean:NE_ID": 1159320881.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.201172, 18.229351 ], [ 37.880859, 8.928487 ], [ 33.662109, -1.669686 ], [ 21.357422, -3.337954 ], [ 14.589844, 5.790897 ], [ 18.369141, 16.467695 ], [ 31.201172, 18.229351 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "805ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 21, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 48, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 29, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 30, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 39, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 3513081, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 82, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 43581, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:sum:GDP_YEAR": 18158, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:sum:WOE_ID": 210823816, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:sum:WOE_ID_EH": 210823816, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 105, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 121, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 47, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -274, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -91, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 41, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 85, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:min:LABEL_X": -62.188252, "tippecanoe:sum:LABEL_X": -542.980765, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 17.352249, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:sum:LABEL_Y": 109.959432, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 10433887911, "tippecanoe:mean:scalerank": 2.3333333333333337, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:mean:ADM0_DIF": 0.1111111111111111, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.2222222222222225, "tippecanoe:mean:MAPCOLOR8": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:mean:POP_EST": 390342.3333333333, "tippecanoe:mean:POP_RANK": 9.11111111111111, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 4842.333333333333, "tippecanoe:mean:GDP_YEAR": 2017.5555555555557, "tippecanoe:mean:WOE_ID": 23424868.444444445, "tippecanoe:mean:WOE_ID_EH": 23424868.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11.666666666666666, "tippecanoe:mean:LONG_LEN": 13.444444444444445, "tippecanoe:mean:ABBREV_LEN": 5.222222222222222, "tippecanoe:mean:TINY": -30.444444444444444, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.555555555555555, "tippecanoe:mean:MAX_LABEL": 9.444444444444445, "tippecanoe:mean:LABEL_X": -60.33119611111111, "tippecanoe:mean:LABEL_Y": 12.217714666666668, "tippecanoe:mean:NE_ID": 1159320879, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.216797, 21.779905 ], [ -46.142578, 18.895893 ], [ -44.121094, 7.710992 ], [ -53.701172, -0.175781 ], [ -64.335938, 3.864255 ], [ -65.742188, 14.519780 ], [ -57.216797, 21.779905 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8045fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 11, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 16, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 35, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 16604026, "tippecanoe:min:POP_EST": 64948, "tippecanoe:sum:POP_EST": 41087206, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 71, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 100023, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:sum:GDP_MD": 225682, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 12112, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424858, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:sum:WOE_ID": 140548869, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424858, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:sum:WOE_ID_EH": 140548869, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 44, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 48, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 32, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -390, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 24.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 54, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": -77.318767, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:sum:LABEL_X": -502.63287199999999, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:min:LABEL_Y": 14.794801, "tippecanoe:sum:LABEL_Y": 105.77001200000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159320931, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:sum:NE_ID": 6955924238, "tippecanoe:mean:scalerank": 0.6666666666666666, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 1.8333333333333333, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:mean:MAPCOLOR9": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR13": 5.833333333333333, "tippecanoe:mean:POP_EST": 6847867.666666667, "tippecanoe:mean:POP_RANK": 11.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 37613.666666666664, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:mean:WOE_ID": 23424811.5, "tippecanoe:mean:WOE_ID_EH": 23424811.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.333333333333333, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -65, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.033333333333333, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -83.77214533333333, "tippecanoe:mean:LABEL_Y": 17.628335333333337, "tippecanoe:mean:NE_ID": 1159320706.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.550781, 37.090240 ], [ -74.619141, 30.221102 ], [ -76.025391, 19.394068 ], [ -85.605469, 13.838080 ], [ -96.064453, 19.228177 ], [ -96.679688, 31.653381 ], [ -84.550781, 37.090240 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80ddfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 30, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 30, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424955, "tippecanoe:sum:WOE_ID": 23424955, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424955, "tippecanoe:sum:WOE_ID_EH": 23424955, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 19, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -31.063179, "tippecanoe:sum:LABEL_X": -31.063179, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -55.683402, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -55.683402, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320731, "tippecanoe:sum:NE_ID": 1159320731, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 30, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424955, "tippecanoe:mean:WOE_ID_EH": 23424955, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 19, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -31.063179, "tippecanoe:mean:LABEL_Y": -55.683402, "tippecanoe:mean:NE_ID": 1159320731, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -21.621094, -43.897892 ], [ -4.394531, -46.195042 ], [ 4.218750, -56.218923 ], [ -7.119141, -66.196009 ], [ -34.628906, -62.512318 ], [ -34.628906, -51.124213 ], [ -21.621094, -43.897892 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8009fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 50, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 10285453, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 22558815, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 66, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 530883, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 1239665, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 12110, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 106277162, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 129702162, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 41, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 53, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -388, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 20, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:min:LABEL_X": -7.058429, "tippecanoe:sum:LABEL_X": 94.651842, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 58.724865, "tippecanoe:sum:LABEL_Y": 371.53556900000009, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320549, "tippecanoe:sum:NE_ID": 6955924804, "tippecanoe:mean:scalerank": 1.3333333333333333, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 3759802.5, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 206610.83333333335, "tippecanoe:mean:GDP_YEAR": 2018.3333333333333, "tippecanoe:mean:WOE_ID": 17712860.333333333, "tippecanoe:mean:WOE_ID_EH": 21617027, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.833333333333333, "tippecanoe:mean:LONG_LEN": 8.833333333333334, "tippecanoe:mean:ABBREV_LEN": 5.166666666666667, "tippecanoe:mean:TINY": -64.66666666666667, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.166666666666666, "tippecanoe:mean:LABEL_X": 15.775307, "tippecanoe:mean:LABEL_Y": 61.92259483333334, "tippecanoe:mean:NE_ID": 1159320800.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 73.302624 ], [ 31.816406, 68.942607 ], [ 25.048828, 58.401712 ], [ 5.537109, 55.727110 ], [ -10.458984, 63.114638 ], [ 0.351562, 73.302624 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "808ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 17373662, "tippecanoe:min:POP_EST": 17373662, "tippecanoe:sum:POP_EST": 17373662, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 107435, "tippecanoe:min:GDP_MD": 107435, "tippecanoe:sum:GDP_MD": 107435, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424801, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID": 23424801, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424801, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:sum:WOE_ID_EH": 23424801, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -78.188375, "tippecanoe:min:LABEL_X": -78.188375, "tippecanoe:sum:LABEL_X": -78.188375, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -1.259076, "tippecanoe:min:LABEL_Y": -1.259076, "tippecanoe:sum:LABEL_Y": -1.259076, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320567, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:sum:NE_ID": 1159320567, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 17373662, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 107435, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424801, "tippecanoe:mean:WOE_ID_EH": 23424801, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -78.188375, "tippecanoe:mean:LABEL_Y": -1.259076, "tippecanoe:mean:NE_ID": 1159320567, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -84.814453, 2.547988 ], [ -73.564453, -2.811371 ], [ -72.246094, -15.029686 ], [ -82.880859, -22.268764 ], [ -94.570312, -16.720385 ], [ -95.097656, -4.390229 ], [ -84.814453, 2.547988 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8073fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 18008, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 268, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424927, "tippecanoe:mean:WOE_ID_EH": 23424927, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 134.580157, "tippecanoe:mean:LABEL_Y": 7.518252, "tippecanoe:mean:NE_ID": 1159321171, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.185547, 16.804541 ], [ 149.765625, 8.667918 ], [ 147.480469, -3.425692 ], [ 135.878906, -7.710992 ], [ 126.298828, 0.175781 ], [ 128.232422, 12.382928 ], [ 140.185547, 16.804541 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8075fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:min:POP_EST": 25716544, "tippecanoe:sum:POP_EST": 25716544, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 58539, "tippecanoe:sum:GDP_MD": 58539, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424854, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID": 23424854, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424854, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:sum:WOE_ID_EH": 23424854, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -5.568618, "tippecanoe:sum:LABEL_X": -5.568618, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.49139, "tippecanoe:min:LABEL_Y": 7.49139, "tippecanoe:sum:LABEL_Y": 7.49139, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320507, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:sum:NE_ID": 1159320507, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 25716544, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 58539, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424854, "tippecanoe:mean:WOE_ID_EH": 23424854, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -5.568618, "tippecanoe:mean:LABEL_Y": 7.49139, "tippecanoe:mean:NE_ID": 1159320507, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.042969, 11.523088 ], [ 3.955078, 3.951941 ], [ -0.791016, -5.878332 ], [ -11.689453, -4.477856 ], [ -13.710938, 6.227934 ], [ -4.042969, 11.523088 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8013fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.748047, 69.380313 ], [ -100.810547, 67.542167 ], [ -98.525391, 55.229023 ], [ -112.763672, 47.989922 ], [ -128.935547, 50.176898 ], [ -139.658203, 59.175928 ], [ -131.748047, 69.380313 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8069fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 108116615, "tippecanoe:min:POP_EST": 433285, "tippecanoe:sum:POP_EST": 140499677, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 376795, "tippecanoe:min:GDP_MD": 13469, "tippecanoe:sum:GDP_MD": 754945, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424934, "tippecanoe:min:WOE_ID": 23424773, "tippecanoe:sum:WOE_ID": 70274608, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424934, "tippecanoe:min:WOE_ID_EH": 23424773, "tippecanoe:sum:WOE_ID_EH": 70274608, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 122.465, "tippecanoe:min:LABEL_X": 113.83708, "tippecanoe:sum:LABEL_X": 350.854023, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 11.198, "tippecanoe:min:LABEL_Y": 2.528667, "tippecanoe:sum:LABEL_Y": 18.174965, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321169, "tippecanoe:min:NE_ID": 1159320451, "tippecanoe:sum:NE_ID": 3477962703, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 46833225.666666667, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 251648.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.333333333333334, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 116.951341, "tippecanoe:mean:LABEL_Y": 6.058321666666667, "tippecanoe:mean:NE_ID": 1159320901, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.828125, 19.228177 ], [ 128.232422, 12.382928 ], [ 126.298828, 0.175781 ], [ 115.664062, -3.864255 ], [ 106.435547, 2.811371 ], [ 107.753906, 15.029686 ], [ 118.828125, 19.228177 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80f3fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": -99, "tippecanoe:mean:POP_EST": 4490, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 898, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 28289409, "tippecanoe:mean:WOE_ID_EH": 28289409, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 35.885455, "tippecanoe:mean:LABEL_Y": -79.843222, "tippecanoe:mean:NE_ID": 1159320335, "tippecanoe:count": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -148.183594, -68.942607 ], [ -117.685547, -69.380313 ], [ -85.869141, -76.163993 ], [ -50.185547, -85.622069 ], [ -110.742188, -85.622069 ], [ -187.031250, -82.732092 ], [ -187.031250, -75.430979 ], [ -179.648438, -73.302624 ], [ -148.183594, -68.942607 ] ] ], [ [ [ 187.031250, -72.448792 ], [ 187.031250, -83.379808 ], [ 145.283203, -81.268385 ], [ 180.351562, -73.302624 ], [ 187.031250, -72.448792 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8085fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 97625, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1703, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424941, "tippecanoe:mean:WOE_ID_EH": 23424941, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 55.480175, "tippecanoe:mean:LABEL_Y": -4.676659, "tippecanoe:mean:NE_ID": 1159321291, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 66.005859, 5.266008 ], [ 74.794922, -0.878872 ], [ 73.476562, -12.125264 ], [ 61.523438, -16.551962 ], [ 52.910156, -8.928487 ], [ 55.722656, 1.406109 ], [ 66.005859, 5.266008 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "807bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58005463, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:sum:POP_EST": 110579436, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 63177, "tippecanoe:sum:GDP_MD": 158680, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424973, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID": 46849836, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424973, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:sum:WOE_ID_EH": 46849836, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 4.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 14.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 34.959183, "tippecanoe:sum:LABEL_X": 72.866815, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:sum:LABEL_Y": -5.502823, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321337, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:sum:NE_ID": 2318642308, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:mean:POP_EST": 55289718, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 79340, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424918, "tippecanoe:mean:WOE_ID_EH": 23424918, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.35, "tippecanoe:mean:MAX_LABEL": 7.35, "tippecanoe:mean:LABEL_X": 36.4334075, "tippecanoe:mean:LABEL_Y": -2.7514115, "tippecanoe:mean:NE_ID": 1159321154, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.691406, 9.882275 ], [ 55.722656, 1.406109 ], [ 52.910156, -8.928487 ], [ 41.572266, -11.264612 ], [ 33.662109, -1.669686 ], [ 37.880859, 8.928487 ], [ 48.691406, 9.882275 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8059fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 19, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:sum:POP_EST": 277141352, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 573990, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424965, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:sum:WOE_ID": 117124246, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424965, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:sum:WOE_ID_EH": 117124246, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 16.4, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 41.7, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": 12.473488, "tippecanoe:min:LABEL_X": -1.036941, "tippecanoe:sum:LABEL_X": 22.349898, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 10.324775, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:sum:LABEL_Y": 40.874474000000009, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:sum:NE_ID": 5796604093, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.6, "tippecanoe:mean:MAPCOLOR8": 2.4, "tippecanoe:mean:MAPCOLOR9": 2.4, "tippecanoe:mean:MAPCOLOR13": 5.2, "tippecanoe:mean:POP_EST": 55428270.4, "tippecanoe:mean:POP_RANK": 14.8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 114798, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424849.2, "tippecanoe:mean:WOE_ID_EH": 23424849.2, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.8, "tippecanoe:mean:LONG_LEN": 5.8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.28, "tippecanoe:mean:MAX_LABEL": 8.34, "tippecanoe:mean:LABEL_X": 4.4699796, "tippecanoe:mean:LABEL_Y": 8.1748948, "tippecanoe:mean:NE_ID": 1159320818.6, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.404297, 25.641526 ], [ 18.369141, 16.467695 ], [ 14.589844, 5.790897 ], [ 3.955078, 3.951941 ], [ -4.042969, 11.523088 ], [ -2.460938, 22.187405 ], [ 9.404297, 25.641526 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8099fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -11.689453, -4.477856 ], [ -0.791016, -5.878332 ], [ 4.570312, -15.284185 ], [ -2.109375, -24.766785 ], [ -15.556641, -22.998852 ], [ -19.248047, -12.211180 ], [ -11.689453, -4.477856 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8077fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 13, "tippecanoe:mean:POP_EST": 113815, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 401, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424815, "tippecanoe:mean:WOE_ID_EH": 23424815, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 30, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 158.234019, "tippecanoe:mean:LABEL_Y": 6.887553, "tippecanoe:mean:NE_ID": 1159320691, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 160.751953, 12.211180 ], [ 168.310547, 4.477856 ], [ 166.289062, -6.227934 ], [ 156.357422, -10.660608 ], [ 147.480469, -3.425692 ], [ 149.765625, 8.667918 ], [ 160.751953, 12.211180 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8065fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 14, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 21, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 16486542, "tippecanoe:sum:POP_EST": 1506575298, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:sum:GDP_MD": 3515651, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424960, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:sum:WOE_ID": 93699347, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 93699347, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 20, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 10.4, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 104.50487, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 380.74066999999999, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:sum:LABEL_Y": 72.36803099999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:sum:NE_ID": 4637284198, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 376643824.5, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 878912.75, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424836.75, "tippecanoe:mean:WOE_ID_EH": 23424836.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.6, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": 95.18516749999999, "tippecanoe:mean:LABEL_Y": 18.092007749999998, "tippecanoe:mean:NE_ID": 1159321049.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.119141, 22.268764 ], [ 107.753906, 15.029686 ], [ 106.435547, 2.811371 ], [ 95.185547, -2.547988 ], [ 84.902344, 4.390229 ], [ 85.429688, 16.720385 ], [ 97.119141, 22.268764 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8019fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 20, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 62792, "tippecanoe:sum:POP_EST": 71923225, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 44, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 3465, "tippecanoe:sum:GDP_MD": 3228762, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 8071, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:sum:WOE_ID_EH": 93699452, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 40, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 40, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 34.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -2.116346, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:sum:LABEL_X": -17.006739, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 54.402739, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:sum:LABEL_Y": 211.16583099999998, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:min:NE_ID": 1159320713, "tippecanoe:sum:NE_ID": 4637283026, "tippecanoe:mean:scalerank": 2.75, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0.75, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 5.25, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 2.75, "tippecanoe:mean:POP_EST": 17980806.25, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 807190.5, "tippecanoe:mean:GDP_YEAR": 2017.75, "tippecanoe:mean:WOE_ID": 17568596.75, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.675, "tippecanoe:mean:LABEL_X": -4.25168475, "tippecanoe:mean:LABEL_Y": 52.79145774999999, "tippecanoe:mean:NE_ID": 1159320756.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -10.458984, 63.114638 ], [ 5.537109, 55.727110 ], [ 2.021484, 45.213004 ], [ -12.392578, 40.847060 ], [ -27.509766, 46.739861 ], [ -29.882812, 58.031372 ], [ -10.458984, 63.114638 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8083fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 16, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 35568916, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 49, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 117133, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 93699337, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 93699337, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 15, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 34, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 45.831388, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 2.333, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": -9.316601, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 4637283090, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 8892229, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 29283.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424834.25, "tippecanoe:mean:WOE_ID_EH": 23424834.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:mean:LONG_LEN": 12.25, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 11.457847, "tippecanoe:mean:LABEL_Y": -2.32915025, "tippecanoe:mean:NE_ID": 1159320772.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.589844, 5.790897 ], [ 21.357422, -3.337954 ], [ 16.259766, -14.604847 ], [ 4.570312, -15.284185 ], [ -0.791016, -5.878332 ], [ 3.955078, 3.951941 ], [ 14.589844, 5.790897 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8067fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 26, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 20, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 19, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 50339443, "tippecanoe:min:POP_EST": 157538, "tippecanoe:sum:POP_EST": 139648054, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 94, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 907050, "tippecanoe:min:GDP_MD": 3101, "tippecanoe:sum:GDP_MD": 2022293, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2014, "tippecanoe:sum:GDP_YEAR": 14128, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 117124347, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": 23424787, "tippecanoe:sum:WOE_ID_EH": 165099246, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 54, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 54, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 29, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -590, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 24.5, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 59.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 5.61144, "tippecanoe:min:LABEL_X": -85.069347, "tippecanoe:sum:LABEL_X": -439.40447900000006, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 52.422211, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:sum:LABEL_Y": 83.53883499999999, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320517, "tippecanoe:sum:NE_ID": 8115247543, "tippecanoe:mean:scalerank": 0.42857142857142857, "tippecanoe:mean:LABELRANK": 3.7142857142857146, "tippecanoe:mean:ADM0_DIF": 0.2857142857142857, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.857142857142857, "tippecanoe:mean:MAPCOLOR8": 2.857142857142857, "tippecanoe:mean:MAPCOLOR9": 2.7142857142857146, "tippecanoe:mean:MAPCOLOR13": 6.571428571428571, "tippecanoe:mean:POP_EST": 19949722, "tippecanoe:mean:POP_RANK": 13.428571428571429, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 288899, "tippecanoe:mean:GDP_YEAR": 2018.2857142857143, "tippecanoe:mean:WOE_ID": 16732049.57142857, "tippecanoe:mean:WOE_ID_EH": 23585606.57142857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.714285714285714, "tippecanoe:mean:LONG_LEN": 7.714285714285714, "tippecanoe:mean:ABBREV_LEN": 4.142857142857143, "tippecanoe:mean:TINY": -84.28571428571429, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -62.77206842857144, "tippecanoe:mean:LABEL_Y": 11.934119285714285, "tippecanoe:mean:NE_ID": 1159321077.5714286, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.025391, 19.394068 ], [ -65.742188, 14.519780 ], [ -64.335938, 3.864255 ], [ -73.564453, -2.811371 ], [ -84.814453, 2.547988 ], [ -85.605469, 13.838080 ], [ -76.025391, 19.394068 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "808bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 11513100, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40895, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424762, "tippecanoe:mean:WOE_ID_EH": 23424762, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": -64.593433, "tippecanoe:mean:LABEL_Y": -16.666015, "tippecanoe:mean:NE_ID": 1159320439, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -64.335938, 3.864255 ], [ -53.701172, -0.175781 ], [ -51.767578, -12.382928 ], [ -61.171875, -19.228177 ], [ -72.246094, -15.029686 ], [ -73.564453, -2.811371 ], [ -64.335938, 3.864255 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8007fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 361313, "tippecanoe:min:POP_EST": 56225, "tippecanoe:sum:POP_EST": 417538, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 18, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 24188, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 27239, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4037, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424828, "tippecanoe:sum:WOE_ID": 46849673, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424828, "tippecanoe:sum:WOE_ID_EH": 46849673, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -18.673711, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -58.008962, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 64.779286, "tippecanoe:sum:LABEL_Y": 139.09867300000003, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320551, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 10.5, "tippecanoe:mean:POP_EST": 208769, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13619.5, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424836.5, "tippecanoe:mean:WOE_ID_EH": 23424836.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:mean:LABEL_X": -29.004481, "tippecanoe:mean:LABEL_Y": 69.54933650000001, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -34.716797, 81.268385 ], [ 0.351562, 73.302624 ], [ -10.458984, 63.114638 ], [ -29.882812, 58.031372 ], [ -51.591797, 61.312452 ], [ -66.884766, 72.208678 ], [ -34.716797, 81.268385 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "809bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 22, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 28, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 20, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 26, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 889953, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 1322328, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 47, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 12112, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 7124, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 12095, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:sum:WOE_ID": 140549529, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:sum:WOE_ID_EH": 140549529, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 51, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -187, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -194, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 23.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 53, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:sum:LABEL_X": -675.010406, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 1.820437, "tippecanoe:min:LABEL_Y": -21.210026, "tippecanoe:sum:LABEL_Y": -84.18719800000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 6955926130, "tippecanoe:mean:scalerank": 3.6666666666666667, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.166666666666667, "tippecanoe:mean:MAPCOLOR8": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:mean:MAPCOLOR13": 7.166666666666667, "tippecanoe:mean:POP_EST": 220388, "tippecanoe:mean:POP_RANK": 7.833333333333333, "tippecanoe:mean:POP_YEAR": 2018.6666666666668, "tippecanoe:mean:GDP_MD": 1187.3333333333333, "tippecanoe:mean:GDP_YEAR": 2015.8333333333333, "tippecanoe:mean:WOE_ID": 23424921.5, "tippecanoe:mean:WOE_ID_EH": 23424921.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.833333333333333, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -31.166666666666669, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.9499999999999999, "tippecanoe:mean:MAX_LABEL": 8.833333333333334, "tippecanoe:mean:LABEL_X": -112.50173433333333, "tippecanoe:mean:LABEL_Y": -14.031199666666668, "tippecanoe:mean:NE_ID": 1159321021.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -176.044922, -3.951941 ], [ -165.410156, -5.790897 ], [ -161.630859, -16.467695 ], [ -170.595703, -25.641526 ], [ -182.460938, -22.187405 ], [ -184.042969, -11.523088 ], [ -176.044922, -3.951941 ] ] ], [ [ [ 183.955078, -3.951941 ], [ 187.031250, -4.477856 ], [ 187.031250, -24.926295 ], [ 177.539062, -22.187405 ], [ 175.957031, -11.523088 ], [ 183.955078, -3.951941 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8081fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 211049527, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1839758, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424768, "tippecanoe:mean:WOE_ID_EH": 23424768, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -49.55945, "tippecanoe:mean:LABEL_Y": -12.098687, "tippecanoe:mean:NE_ID": 1159320441, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -44.121094, 7.710992 ], [ -32.519531, 3.425692 ], [ -30.234375, -8.667918 ], [ -39.814453, -16.804541 ], [ -51.767578, -12.382928 ], [ -53.701172, -0.175781 ], [ -44.121094, 7.710992 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "806dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 6453553, "tippecanoe:min:POP_EST": 5047561, "tippecanoe:sum:POP_EST": 11501114, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 61801, "tippecanoe:min:GDP_MD": 27022, "tippecanoe:sum:GDP_MD": 88823, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424807, "tippecanoe:min:WOE_ID": 23424791, "tippecanoe:sum:WOE_ID": 46849598, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424807, "tippecanoe:min:WOE_ID_EH": 23424791, "tippecanoe:sum:WOE_ID_EH": 46849598, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 7.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -84.077922, "tippecanoe:min:LABEL_X": -88.890124, "tippecanoe:sum:LABEL_X": -172.96804600000002, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 13.685371, "tippecanoe:min:LABEL_Y": 10.0651, "tippecanoe:sum:LABEL_Y": 23.750470999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:min:NE_ID": 1159320525, "tippecanoe:sum:NE_ID": 2318641778, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 5750557, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 44411.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424799, "tippecanoe:mean:WOE_ID_EH": 23424799, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.5, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.75, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -86.48402300000001, "tippecanoe:mean:LABEL_Y": 11.875235499999999, "tippecanoe:mean:NE_ID": 1159320889, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -96.064453, 19.228177 ], [ -85.605469, 13.838080 ], [ -84.814453, 2.547988 ], [ -95.097656, -4.390229 ], [ -105.205078, 0.878872 ], [ -106.523438, 12.125264 ], [ -96.064453, 19.228177 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8061fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 28, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 31, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 37, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 39, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 61, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:min:POP_EST": 530953, "tippecanoe:sum:POP_EST": 642457399.3, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 134, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 4719, "tippecanoe:sum:GDP_MD": 26938742, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 18168, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 163974193, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 210824141, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 81, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 70, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 39, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -790, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 9, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 24.4, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 67.1, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": -102.289448, "tippecanoe:sum:LABEL_X": -4.682070999999951, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 46.696113, "tippecanoe:min:LABEL_Y": 3.568925, "tippecanoe:sum:LABEL_Y": 196.935757, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159320405, "tippecanoe:sum:NE_ID": 10433888455, "tippecanoe:mean:scalerank": 0.5555555555555556, "tippecanoe:mean:LABELRANK": 3.111111111111111, "tippecanoe:mean:ADM0_DIF": 0.2222222222222222, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.4444444444444448, "tippecanoe:mean:MAPCOLOR8": 4.111111111111111, "tippecanoe:mean:MAPCOLOR9": 4.333333333333333, "tippecanoe:mean:MAPCOLOR13": 6.777777777777778, "tippecanoe:mean:POP_EST": 71384155.47777778, "tippecanoe:mean:POP_RANK": 14.88888888888889, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 2993193.5555555557, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:mean:WOE_ID": 18219354.777777777, "tippecanoe:mean:WOE_ID_EH": 23424904.555555557, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 7.777777777777778, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -87.77777777777777, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.711111111111111, "tippecanoe:mean:MAX_LABEL": 7.455555555555555, "tippecanoe:mean:LABEL_X": -0.5202301111111056, "tippecanoe:mean:LABEL_Y": 21.88175077777778, "tippecanoe:mean:NE_ID": 1159320939.4444445, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.970703, 22.431340 ], [ 85.429688, 16.720385 ], [ 84.902344, 4.390229 ], [ 74.794922, -0.878872 ], [ 66.005859, 5.266008 ], [ 65.742188, 16.130262 ], [ 74.970703, 22.431340 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "802bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -63.193359, 50.792047 ], [ -54.843750, 40.979898 ], [ -62.050781, 31.877558 ], [ -74.619141, 30.221102 ], [ -84.550781, 37.090240 ], [ -81.914062, 48.283193 ], [ -63.193359, 50.792047 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8035fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 7, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 10269417, "tippecanoe:min:POP_EST": 10269417, "tippecanoe:sum:POP_EST": 10269417, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 238785, "tippecanoe:sum:GDP_MD": 238785, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424925, "tippecanoe:min:WOE_ID": 23424925, "tippecanoe:sum:WOE_ID": 23424925, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424925, "tippecanoe:min:WOE_ID_EH": 23424925, "tippecanoe:sum:WOE_ID_EH": 23424925, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -8.271754, "tippecanoe:sum:LABEL_X": -8.271754, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 39.606675, "tippecanoe:sum:LABEL_Y": 39.606675, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321187, "tippecanoe:min:NE_ID": 1159321187, "tippecanoe:sum:NE_ID": 1159321187, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 7, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 10269417, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 238785, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424925, "tippecanoe:mean:WOE_ID_EH": 23424925, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -8.271754, "tippecanoe:mean:LABEL_Y": 39.606675, "tippecanoe:mean:NE_ID": 1159321187, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -27.509766, 46.739861 ], [ -12.392578, 40.847060 ], [ -12.919922, 28.536275 ], [ -24.609375, 22.024546 ], [ -37.177734, 26.667096 ], [ -40.341797, 38.754083 ], [ -27.509766, 46.739861 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8057fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 549935, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1981, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424794, "tippecanoe:mean:WOE_ID_EH": 23424794, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 22, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -23.639434, "tippecanoe:mean:LABEL_Y": 15.074761, "tippecanoe:mean:NE_ID": 1159320523, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -37.177734, 26.667096 ], [ -24.609375, 22.024546 ], [ -23.642578, 10.660608 ], [ -32.519531, 3.425692 ], [ -44.121094, 7.710992 ], [ -46.142578, 18.895893 ], [ -37.177734, 26.667096 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "801bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 5997, "tippecanoe:min:POP_EST": 5997, "tippecanoe:sum:POP_EST": 5997, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 5, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 215, "tippecanoe:min:GDP_MD": 215, "tippecanoe:sum:GDP_MD": 215, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424939, "tippecanoe:sum:WOE_ID": 23424939, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424939, "tippecanoe:sum:WOE_ID_EH": 23424939, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 23, "tippecanoe:sum:NAME_LEN": 23, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 25, "tippecanoe:sum:LONG_LEN": 25, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_X": -56.332352, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 47.040344, "tippecanoe:sum:LABEL_Y": 47.040344, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320647, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:sum:NE_ID": 1159320647, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 5997, "tippecanoe:mean:POP_RANK": 5, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 215, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424939, "tippecanoe:mean:WOE_ID_EH": 23424939, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23, "tippecanoe:mean:LONG_LEN": 25, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -56.332352, "tippecanoe:mean:LABEL_Y": 47.040344, "tippecanoe:mean:NE_ID": 1159320647, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.591797, 61.312452 ], [ -29.882812, 58.031372 ], [ -27.509766, 46.739861 ], [ -40.341797, 38.754083 ], [ -54.843750, 40.979898 ], [ -63.193359, 50.792047 ], [ -51.591797, 61.312452 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "804dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 18, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 53, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 6, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 38, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 36, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 40, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 25804065, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 85, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 18170, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:min:GDP_MD": 240, "tippecanoe:sum:GDP_MD": 228193, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 18144, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 220016468, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 220016468, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 118, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 155, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 65, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -584, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -591, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 41.5, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 86, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": -63.049399, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:sum:LABEL_X": -625.840964, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:min:LABEL_Y": 17.746706, "tippecanoe:sum:LABEL_Y": 178.99401999999999, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:sum:NE_ID": 10433887195, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 5.888888888888889, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 4.222222222222222, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.444444444444445, "tippecanoe:mean:MAPCOLOR13": 3.7777777777777779, "tippecanoe:mean:POP_EST": 2867118.3333333337, "tippecanoe:mean:POP_RANK": 9.444444444444445, "tippecanoe:mean:POP_YEAR": 2018.888888888889, "tippecanoe:mean:GDP_MD": 25354.777777777777, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 24446274.222222225, "tippecanoe:mean:WOE_ID_EH": 24446274.222222225, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.11111111111111, "tippecanoe:mean:LONG_LEN": 17.22222222222222, "tippecanoe:mean:ABBREV_LEN": 7.222222222222222, "tippecanoe:mean:TINY": -64.88888888888889, "tippecanoe:mean:HOMEPART": -65.66666666666667, "tippecanoe:mean:MIN_ZOOM": 0.5555555555555556, "tippecanoe:mean:MIN_LABEL": 4.611111111111111, "tippecanoe:mean:MAX_LABEL": 9.555555555555556, "tippecanoe:mean:LABEL_X": -69.53788488888888, "tippecanoe:mean:LABEL_Y": 19.888224444444444, "tippecanoe:mean:NE_ID": 1159320799.4444445, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -62.050781, 31.877558 ], [ -57.216797, 21.779905 ], [ -65.742188, 14.519780 ], [ -76.025391, 19.394068 ], [ -74.619141, 30.221102 ], [ -62.050781, 31.877558 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8055fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 28, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 36, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:sum:POP_EST": 50612523, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 89, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 53830, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:sum:WOE_ID": 163974246, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:sum:WOE_ID_EH": 163974246, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 61, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 65, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 33, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -693, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 26.7, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 62, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": -9.460379, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:sum:LABEL_X": -85.281791, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:sum:LABEL_Y": 86.213762, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:sum:NE_ID": 8115246975, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.142857142857143, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5714285714285718, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:mean:MAPCOLOR13": 5.142857142857143, "tippecanoe:mean:POP_EST": 7230360.428571428, "tippecanoe:mean:POP_RANK": 12.714285714285714, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7690, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424892.285714289, "tippecanoe:mean:WOE_ID_EH": 23424892.285714289, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.714285714285714, "tippecanoe:mean:LONG_LEN": 9.285714285714287, "tippecanoe:mean:ABBREV_LEN": 4.714285714285714, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.814285714285714, "tippecanoe:mean:MAX_LABEL": 8.857142857142858, "tippecanoe:mean:LABEL_X": -12.183113, "tippecanoe:mean:LABEL_Y": 12.316251714285715, "tippecanoe:mean:NE_ID": 1159320996.4285715, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -12.919922, 28.536275 ], [ -2.460938, 22.187405 ], [ -4.042969, 11.523088 ], [ -13.710938, 6.227934 ], [ -23.642578, 10.660608 ], [ -24.609375, 22.024546 ], [ -12.919922, 28.536275 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80cffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 9, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -99, "tippecanoe:mean:WOE_ID_EH": -99, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 29, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 16, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 7, "tippecanoe:mean:MIN_LABEL": 7.7, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -73.31378, "tippecanoe:mean:LABEL_Y": -49.511034, "tippecanoe:mean:NE_ID": 1729635141, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -81.738281, -33.651208 ], [ -69.345703, -37.160317 ], [ -63.808594, -47.338823 ], [ -73.564453, -56.218923 ], [ -92.197266, -52.643063 ], [ -93.251953, -40.313043 ], [ -81.738281, -33.651208 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80a1fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.119141, -8.928487 ], [ -131.308594, -9.882275 ], [ -125.332031, -19.145168 ], [ -129.814453, -29.075375 ], [ -142.822266, -29.305561 ], [ -148.798828, -18.229351 ], [ -142.119141, -8.928487 ] ] ] } } +, +{ "type": "Feature", "id": 579451423930974207, "properties": { "bin": "80a9fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -51.767578, -12.382928 ], [ -39.814453, -16.804541 ], [ -37.529297, -27.916767 ], [ -47.724609, -34.307144 ], [ -59.501953, -29.916852 ], [ -61.171875, -19.228177 ], [ -51.767578, -12.382928 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80dffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 3398, "tippecanoe:sum:POP_EST": 63894148, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 33, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 6054, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 282, "tippecanoe:sum:GDP_MD": 728045, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 6050, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:min:WOE_ID": 23424747, "tippecanoe:sum:WOE_ID": 70274343, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:min:WOE_ID_EH": 23424747, "tippecanoe:sum:WOE_ID_EH": 70274343, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 41, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 8.2, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:min:LABEL_X": -72.318871, "tippecanoe:sum:LABEL_X": -195.23080400000004, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:sum:LABEL_Y": -123.261843, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 3477961535, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 4.666666666666667, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 21298049.333333333, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 242681.66666666667, "tippecanoe:mean:GDP_YEAR": 2016.6666666666668, "tippecanoe:mean:WOE_ID": 23424781, "tippecanoe:mean:WOE_ID_EH": 23424781, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:mean:LONG_LEN": 13.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.733333333333333, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": -65.07693466666668, "tippecanoe:mean:LABEL_Y": -41.087281, "tippecanoe:mean:NE_ID": 1159320511.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -48.251953, -45.274886 ], [ -34.628906, -51.124213 ], [ -34.628906, -62.512318 ], [ -62.226562, -66.196009 ], [ -73.564453, -56.218923 ], [ -63.808594, -47.338823 ], [ -48.251953, -45.274886 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8025fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 3225167, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13996, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887, "tippecanoe:mean:WOE_ID_EH": 23424887, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 104.150405, "tippecanoe:mean:LABEL_Y": 45.997488, "tippecanoe:mean:NE_ID": 1159321071, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.435547, 56.218923 ], [ 116.191406, 47.338823 ], [ 110.654297, 37.160317 ], [ 98.261719, 33.651208 ], [ 86.748047, 40.313043 ], [ 87.802734, 52.643063 ], [ 106.435547, 56.218923 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "803dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 16, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 30, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 763092, "tippecanoe:sum:POP_EST": 1590132963, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 61, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 2530, "tippecanoe:sum:GDP_MD": 14678645, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424911, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 93699221, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424911, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 93699221, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 11.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 106.337289, "tippecanoe:min:LABEL_X": 83.639914, "tippecanoe:sum:LABEL_X": 369.70246, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 32.498178, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:sum:LABEL_Y": 112.547744, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 4637282452, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.25, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 397533240.75, "tippecanoe:mean:POP_RANK": 15.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3669661.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424805.25, "tippecanoe:mean:WOE_ID_EH": 23424805.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.925, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": 92.425615, "tippecanoe:mean:LABEL_Y": 28.136936, "tippecanoe:mean:NE_ID": 1159320613, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.748047, 40.313043 ], [ 98.261719, 33.651208 ], [ 97.119141, 22.268764 ], [ 85.429688, 16.720385 ], [ 74.970703, 22.431340 ], [ 73.564453, 33.724340 ], [ 86.748047, 40.313043 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "802dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 16, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 16, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 72, "tippecanoe:count:ADM0_DIF": 16, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 16, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 32, "tippecanoe:count:GEOU_DIF": 16, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 16, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 16, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 16, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 53, "tippecanoe:count:MAPCOLOR8": 16, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 45, "tippecanoe:count:MAPCOLOR9": 16, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 55, "tippecanoe:count:MAPCOLOR13": 16, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 16, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 227966087, "tippecanoe:count:POP_RANK": 16, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 196, "tippecanoe:count:POP_YEAR": 16, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 32296, "tippecanoe:count:GDP_MD": 16, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2354758, "tippecanoe:count:GDP_YEAR": 16, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 32280, "tippecanoe:count:WOE_ID": 16, "tippecanoe:max:WOE_ID": 23424972, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 281097956, "tippecanoe:count:WOE_ID_EH": 16, "tippecanoe:max:WOE_ID_EH": 23424995, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 327948125, "tippecanoe:count:ADM0_A3_UN": 16, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1584, "tippecanoe:count:ADM0_A3_WB": 16, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1584, "tippecanoe:count:NAME_LEN": 16, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 132, "tippecanoe:count:LONG_LEN": 16, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 138, "tippecanoe:count:ABBREV_LEN": 16, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 68, "tippecanoe:count:TINY": 16, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1379, "tippecanoe:count:HOMEPART": 16, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -84, "tippecanoe:count:MIN_ZOOM": 16, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 16, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 66.9, "tippecanoe:count:MAX_LABEL": 16, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 142.7, "tippecanoe:count:LABEL_X": 16, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:min:LABEL_X": 33.084182, "tippecanoe:sum:LABEL_X": 663.980747, "tippecanoe:count:LABEL_Y": 16, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 552.20492, "tippecanoe:count:NE_ID": 16, "tippecanoe:max:NE_ID": 1159321309, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 18549133226, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0.125, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:mean:MAPCOLOR7": 3.3125, "tippecanoe:mean:MAPCOLOR8": 2.8125, "tippecanoe:mean:MAPCOLOR9": 3.4375, "tippecanoe:mean:MAPCOLOR13": 0.125, "tippecanoe:mean:POP_EST": 14247880.4375, "tippecanoe:mean:POP_RANK": 12.25, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:mean:GDP_MD": 147172.375, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568622.25, "tippecanoe:mean:WOE_ID_EH": 20496757.8125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 8.625, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:mean:TINY": -86.1875, "tippecanoe:mean:HOMEPART": -5.25, "tippecanoe:mean:MIN_ZOOM": 0.4375, "tippecanoe:mean:MIN_LABEL": 4.18125, "tippecanoe:mean:MAX_LABEL": 8.91875, "tippecanoe:mean:LABEL_X": 41.4987966875, "tippecanoe:mean:LABEL_Y": 34.5128075, "tippecanoe:mean:NE_ID": 1159320826.625, "tippecanoe:count": 16 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.123047, 49.781264 ], [ 53.701172, 49.382373 ], [ 59.150391, 37.649034 ], [ 50.185547, 29.075375 ], [ 37.177734, 29.305561 ], [ 28.828125, 39.639538 ], [ 36.123047, 49.781264 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "801ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 28, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 28, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:ADM0_DIF": 28, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 28, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 56, "tippecanoe:count:GEOU_DIF": 28, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 28, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 28, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 28, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 89, "tippecanoe:count:MAPCOLOR8": 28, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 97, "tippecanoe:count:MAPCOLOR9": 28, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 101, "tippecanoe:count:MAPCOLOR13": 28, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 196, "tippecanoe:count:POP_EST": 28, "tippecanoe:max:POP_EST": 83429615, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 437433879, "tippecanoe:count:POP_RANK": 28, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 361, "tippecanoe:count:POP_YEAR": 28, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 56532, "tippecanoe:count:GDP_MD": 28, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 5542, "tippecanoe:sum:GDP_MD": 10714600, "tippecanoe:count:GDP_YEAR": 28, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 56531, "tippecanoe:count:WOE_ID": 28, "tippecanoe:max:WOE_ID": 23424976, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 605691022, "tippecanoe:count:WOE_ID_EH": 28, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": 20069817, "tippecanoe:sum:WOE_ID_EH": 655150221, "tippecanoe:count:ADM0_A3_UN": 28, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2772, "tippecanoe:count:ADM0_A3_WB": 28, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2772, "tippecanoe:count:NAME_LEN": 28, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 227, "tippecanoe:count:LONG_LEN": 28, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 240, "tippecanoe:count:ABBREV_LEN": 28, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 126, "tippecanoe:count:TINY": 28, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2563, "tippecanoe:count:HOMEPART": 28, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 28, "tippecanoe:count:MIN_ZOOM": 28, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 28, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 108.10000000000001, "tippecanoe:count:MAX_LABEL": 28, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 241.5, "tippecanoe:count:LABEL_X": 28, "tippecanoe:max:LABEL_X": 34.508268, "tippecanoe:min:LABEL_X": 4.800448, "tippecanoe:sum:LABEL_X": 520.222516, "tippecanoe:count:LABEL_Y": 28, "tippecanoe:max:LABEL_Y": 57.066872, "tippecanoe:min:LABEL_Y": 39.345388, "tippecanoe:sum:LABEL_Y": 1329.7201530000003, "tippecanoe:count:NE_ID": 28, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 32460984236, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.535714285714286, "tippecanoe:mean:ADM0_DIF": 0.03571428571428571, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1785714285714286, "tippecanoe:mean:MAPCOLOR8": 3.4642857142857146, "tippecanoe:mean:MAPCOLOR9": 3.607142857142857, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 15622638.535714286, "tippecanoe:mean:POP_RANK": 12.892857142857143, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 382664.28571428576, "tippecanoe:mean:GDP_YEAR": 2018.9642857142858, "tippecanoe:mean:WOE_ID": 21631822.214285714, "tippecanoe:mean:WOE_ID_EH": 23398222.17857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.107142857142858, "tippecanoe:mean:LONG_LEN": 8.571428571428572, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -91.53571428571429, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.860714285714286, "tippecanoe:mean:MAX_LABEL": 8.625, "tippecanoe:mean:LABEL_X": 18.579375571428576, "tippecanoe:mean:LABEL_Y": 47.49000546428572, "tippecanoe:mean:NE_ID": 1159320865.5714286, "tippecanoe:count": 28 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, 58.401712 ], [ 36.123047, 49.781264 ], [ 28.828125, 39.639538 ], [ 13.271484, 37.509726 ], [ 2.021484, 45.213004 ], [ 5.537109, 55.727110 ], [ 25.048828, 58.401712 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8021fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 43, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -64, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 322521745, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 99, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 16136, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 554279, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 16140, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549214, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 184044442, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 82, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 93, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -688, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 10, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 30.9, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 65, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 77.129553, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:sum:LABEL_X": 555.3665579999999, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 315.427716, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 9274568056, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.25, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:mean:MAPCOLOR9": 5.375, "tippecanoe:mean:MAPCOLOR13": -8, "tippecanoe:mean:POP_EST": 40315218.125, "tippecanoe:mean:POP_RANK": 12.375, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 69284.875, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568651.75, "tippecanoe:mean:WOE_ID_EH": 23005555.25, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.25, "tippecanoe:mean:LONG_LEN": 11.625, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -86, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 1.25, "tippecanoe:mean:MIN_LABEL": 3.8625, "tippecanoe:mean:MAX_LABEL": 8.125, "tippecanoe:mean:LABEL_X": 69.42081974999999, "tippecanoe:mean:LABEL_Y": 39.4284645, "tippecanoe:mean:NE_ID": 1159321007, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 68.291016, 58.309489 ], [ 87.802734, 52.643063 ], [ 86.748047, 40.313043 ], [ 73.564453, 33.724340 ], [ 59.150391, 37.649034 ], [ 53.701172, 49.382373 ], [ 68.291016, 58.309489 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8053fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 39, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 23, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 26, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 73, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 168581128, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 108, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 18167, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 209852, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 565981, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 18157, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23425002, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 163973731, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23425002, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 163973731, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 65, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 65, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 47, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -790, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -91, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 11, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 35.2, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 77, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": 51.143509, "tippecanoe:min:LABEL_X": 21.72568, "tippecanoe:sum:LABEL_X": 369.57640200000005, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 39.492763, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 173.215214, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 11004201935, "tippecanoe:mean:scalerank": 0.5555555555555556, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 2.5555555555555555, "tippecanoe:mean:MAPCOLOR8": 2.888888888888889, "tippecanoe:mean:MAPCOLOR9": 2.4444444444444448, "tippecanoe:mean:MAPCOLOR13": 8.11111111111111, "tippecanoe:mean:POP_EST": 18731236.444444445, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2018.5555555555557, "tippecanoe:mean:GDP_MD": 62886.77777777778, "tippecanoe:mean:GDP_YEAR": 2017.4444444444444, "tippecanoe:mean:WOE_ID": 18219303.444444445, "tippecanoe:mean:WOE_ID_EH": 18219303.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.222222222222222, "tippecanoe:mean:LONG_LEN": 7.222222222222222, "tippecanoe:mean:ABBREV_LEN": 5.222222222222222, "tippecanoe:mean:TINY": -87.77777777777777, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 1.2222222222222224, "tippecanoe:mean:MIN_LABEL": 3.9111111111111116, "tippecanoe:mean:MAX_LABEL": 8.555555555555556, "tippecanoe:mean:LABEL_X": 41.06404466666667, "tippecanoe:mean:LABEL_Y": 19.24613488888889, "tippecanoe:mean:NE_ID": 1222689103.8888889, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.177734, 29.305561 ], [ 50.185547, 29.075375 ], [ 54.667969, 19.145168 ], [ 48.691406, 9.882275 ], [ 37.880859, 8.928487 ], [ 31.201172, 18.229351 ], [ 37.177734, 29.305561 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "803ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 20, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 187646861, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 84, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 303092, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 389095, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 12113, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 121988700, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 145413742, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 28, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -492, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -94, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 49.2, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 35.291341, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 136.580237, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 143.04638999999998, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159320575, "tippecanoe:sum:NE_ID": 6955926156, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4.666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 31274476.833333333, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 64849.166666666664, "tippecanoe:mean:GDP_YEAR": 2018.8333333333333, "tippecanoe:mean:WOE_ID": 20331450, "tippecanoe:mean:WOE_ID_EH": 24235623.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -15.666666666666666, "tippecanoe:mean:MIN_ZOOM": 1.1666666666666668, "tippecanoe:mean:MIN_LABEL": 3.1166666666666669, "tippecanoe:mean:MAX_LABEL": 8.200000000000001, "tippecanoe:mean:LABEL_X": 22.763372833333336, "tippecanoe:mean:LABEL_Y": 23.841064999999998, "tippecanoe:mean:NE_ID": 1159321026, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 39.639538 ], [ 37.177734, 29.305561 ], [ 31.201172, 18.229351 ], [ 18.369141, 16.467695 ], [ 9.404297, 25.641526 ], [ 13.271484, 37.509726 ], [ 28.828125, 39.639538 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8043fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.150391, 37.649034 ], [ 73.564453, 33.724340 ], [ 74.970703, 22.431340 ], [ 65.742188, 16.130262 ], [ 54.667969, 19.145168 ], [ 50.185547, 29.075375 ], [ 59.150391, 37.649034 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8031fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 14, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:sum:POP_EST": 77375259, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:sum:GDP_MD": 1686739, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424868, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:sum:WOE_ID": 46849733, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424868, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:sum:WOE_ID_EH": 46849733, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 5.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:sum:LABEL_X": 254.57402, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 36.384924, "tippecanoe:sum:LABEL_Y": 76.27017599999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:sum:NE_ID": 2318642166, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 38687629.5, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 843369.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424866.5, "tippecanoe:mean:WOE_ID_EH": 23424866.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.75, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 127.28701, "tippecanoe:mean:LABEL_Y": 38.135087999999999, "tippecanoe:mean:NE_ID": 1159321083, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.191406, 47.338823 ], [ 131.748047, 45.274886 ], [ 132.275391, 34.307144 ], [ 120.498047, 29.916852 ], [ 110.654297, 37.160317 ], [ 116.191406, 47.338823 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "804bfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 126264931, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:sum:POP_EST": 149833309, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5081769, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:sum:GDP_MD": 6208769, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:min:WOE_ID": 23424856, "tippecanoe:sum:WOE_ID": 46849827, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:min:WOE_ID_EH": 23424856, "tippecanoe:sum:WOE_ID_EH": 46849827, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 6.2, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:sum:LABEL_X": 259.310374, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 36.142538, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:sum:LABEL_Y": 59.794946, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:min:NE_ID": 1159320937, "tippecanoe:sum:NE_ID": 2318642272, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 74916654.5, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:mean:GDP_MD": 3104384.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424913.5, "tippecanoe:mean:WOE_ID_EH": 23424913.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 129.655187, "tippecanoe:mean:LABEL_Y": 29.897473, "tippecanoe:mean:NE_ID": 1159321136, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 132.275391, 34.307144 ], [ 142.470703, 27.916767 ], [ 140.185547, 16.804541 ], [ 128.232422, 12.382928 ], [ 118.828125, 19.228177 ], [ 120.498047, 29.916852 ], [ 132.275391, 34.307144 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8041fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 10, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 111138961, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 645805, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID": 71715554, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:sum:WOE_ID_EH": 71715554, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 10, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 322.01897299999998, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 63.59606600000001, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:sum:NE_ID": 3477962901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:mean:POP_EST": 37046320.333333339, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 215268.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23905184.666666669, "tippecanoe:mean:WOE_ID_EH": 23905184.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:mean:LONG_LEN": 7.666666666666667, "tippecanoe:mean:ABBREV_LEN": 4.333333333333333, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3333333333333337, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 107.33965766666666, "tippecanoe:mean:LABEL_Y": 21.19868866666667, "tippecanoe:mean:NE_ID": 1159320967, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 110.654297, 37.160317 ], [ 120.498047, 29.916852 ], [ 118.828125, 19.228177 ], [ 107.753906, 15.029686 ], [ 97.119141, 22.268764 ], [ 98.261719, 33.651208 ], [ 110.654297, 37.160317 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "804ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 57216, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 5, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 154.775391, 31.877558 ], [ 164.443359, 22.998852 ], [ 160.751953, 12.211180 ], [ 149.765625, 8.667918 ], [ 140.185547, 16.804541 ], [ 142.470703, 27.916767 ], [ 154.775391, 31.877558 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80e1fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 70, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 67.236328, -47.989922 ], [ 81.474609, -55.229023 ], [ 79.189453, -67.542167 ], [ 48.251953, -69.380313 ], [ 40.341797, -59.175928 ], [ 51.064453, -50.176898 ], [ 67.236328, -47.989922 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80a3fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:min:POP_EST": 850886, "tippecanoe:sum:POP_EST": 29085904, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 29327, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:sum:WOE_ID": 70274563, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:sum:WOE_ID_EH": 70274563, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -95, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:sum:LABEL_X": 147.58818300000002, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -50.655477000000008, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:sum:NE_ID": 3477962651, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 9695301.333333334, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 9775.666666666666, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424854.333333333, "tippecanoe:mean:WOE_ID_EH": 23424854.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.666666666666666, "tippecanoe:mean:LONG_LEN": 8.666666666666666, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -31.666666666666669, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 49.19606100000001, "tippecanoe:mean:LABEL_Y": -16.885159, "tippecanoe:mean:NE_ID": 1159320883.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.910156, -8.928487 ], [ 61.523438, -16.551962 ], [ 58.623047, -28.690588 ], [ 45.878906, -31.278551 ], [ 37.265625, -22.917923 ], [ 41.572266, -11.264612 ], [ 52.910156, -8.928487 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8097fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 25, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 25, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:sum:POP_EST": 95335558, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 83, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 23309, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:sum:GDP_MD": 89058, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 12114, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 140549327, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 140549327, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 45, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 45, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 20.5, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 51, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:sum:LABEL_X": 181.86301600000003, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:sum:LABEL_Y": -86.337881, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 6955925882, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR8": 4.166666666666667, "tippecanoe:mean:MAPCOLOR9": 4.166666666666667, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 15889259.666666666, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14843, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887.833333333, "tippecanoe:mean:WOE_ID_EH": 23424887.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4166666666666667, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 30.310502666666669, "tippecanoe:mean:LABEL_Y": -14.389646833333332, "tippecanoe:mean:NE_ID": 1159320980.3333333, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.662109, -1.669686 ], [ 41.572266, -11.264612 ], [ 37.265625, -22.917923 ], [ 23.906250, -24.686952 ], [ 16.259766, -14.604847 ], [ 21.357422, -3.337954 ], [ 33.662109, -1.669686 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80bdfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 2125268, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 3273398, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 24, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 4471, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 6847, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424880, "tippecanoe:sum:WOE_ID": 46849873, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424880, "tippecanoe:sum:WOE_ID_EH": 46849873, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 28.246639, "tippecanoe:sum:LABEL_X": 59.713903, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -56.013834, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321289, "tippecanoe:min:NE_ID": 1159321027, "tippecanoe:sum:NE_ID": 2318642316, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 1636699, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3423.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936.5, "tippecanoe:mean:WOE_ID_EH": 23424936.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 29.8569515, "tippecanoe:mean:LABEL_Y": -28.006917, "tippecanoe:mean:NE_ID": 1159321158, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.265625, -22.917923 ], [ 45.878906, -31.278551 ], [ 41.572266, -41.442726 ], [ 26.982422, -43.452919 ], [ 18.369141, -35.029996 ], [ 23.906250, -24.686952 ], [ 37.265625, -22.917923 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "80d7fffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 58558270, "tippecanoe:sum:POP_EST": 58558270, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 351431, "tippecanoe:sum:GDP_MD": 351431, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424942, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 23424942, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424942, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 23424942, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 23.665734, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 23.665734, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -29.708776, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -29.708776, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321431, "tippecanoe:sum:NE_ID": 1159321431, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 58558270, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 351431, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424942, "tippecanoe:mean:WOE_ID_EH": 23424942, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 23.665734, "tippecanoe:mean:LABEL_Y": -29.708776, "tippecanoe:mean:NE_ID": 1159321431, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.572266, -41.442726 ], [ 51.064453, -50.176898 ], [ 40.341797, -59.175928 ], [ 22.675781, -54.007769 ], [ 26.982422, -43.452919 ], [ 41.572266, -41.442726 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "809dfffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 147.480469, -3.425692 ], [ 156.357422, -10.660608 ], [ 155.390625, -22.024546 ], [ 142.822266, -26.667096 ], [ 133.857422, -18.895893 ], [ 135.878906, -7.710992 ], [ 147.480469, -3.425692 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "809ffffffffffff", "felt:h3_level": 0, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 17, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 669823, "tippecanoe:min:POP_EST": 287800, "tippecanoe:sum:POP_EST": 1257505, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 934, "tippecanoe:sum:GDP_MD": 13293, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 6054, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 70274576, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 70274576, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 11.6, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 25, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 166.908762, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:sum:LABEL_X": 491.163234, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:sum:LABEL_Y": -44.465775, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:sum:NE_ID": 3477963311, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3.3333333333333337, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.666666666666667, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 5.666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 419168.3333333333, "tippecanoe:mean:POP_RANK": 10.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 4431, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424858.666666669, "tippecanoe:mean:WOE_ID_EH": 23424858.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.333333333333334, "tippecanoe:mean:LONG_LEN": 11.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.8666666666666669, "tippecanoe:mean:MAX_LABEL": 8.333333333333334, "tippecanoe:mean:LABEL_X": 163.721078, "tippecanoe:mean:LABEL_Y": -14.821925, "tippecanoe:mean:NE_ID": 1159321103.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.289062, -6.227934 ], [ 175.957031, -11.523088 ], [ 177.539062, -22.187405 ], [ 167.080078, -28.536275 ], [ 155.390625, -22.024546 ], [ 156.357422, -10.660608 ], [ 166.289062, -6.227934 ] ] ] } } +] } +] } diff --git a/tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out.json b/tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out.json new file mode 100644 index 000000000..b49113b7a --- /dev/null +++ b/tests/pbf/0-0-0-pop-1-1-0-clip.pbf.out.json @@ -0,0 +1,53 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "bin": "820acffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 52573973, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:sum:POP_EST": 52573973, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 95503, "tippecanoe:sum:GDP_MD": 95503, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424863, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID": 23424863, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424863, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:sum:WOE_ID_EH": 23424863, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 37.907632, "tippecanoe:sum:LABEL_X": 37.907632, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": 0.549043, "tippecanoe:sum:LABEL_Y": 0.549043, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320971, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:sum:NE_ID": 1159320971, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 52573973, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 95503, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424863, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 37.907632, "tippecanoe:mean:LABEL_Y": 0.549043, "tippecanoe:mean:NE_ID": 1159320971, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.093750, 67.776025 ], [ 115.751953, 67.759398 ], [ 116.103516, 67.491751 ], [ 110.742188, 67.491751 ], [ 111.093750, 67.776025 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82009ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 31, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 48678, "tippecanoe:sum:POP_EST": 83455958, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 65, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 3116, "tippecanoe:sum:GDP_MD": 3764975, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 117123960, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:min:WOE_ID_EH": 23424757, "tippecanoe:sum:WOE_ID_EH": 140549025, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 57, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 61, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -492, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -294, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 22.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 52.7, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 4.800448, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:sum:LABEL_X": -19.26472, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 62.185604, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:sum:LABEL_Y": 324.136827, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:min:NE_ID": 1159320389, "tippecanoe:sum:NE_ID": 6955923964, "tippecanoe:mean:scalerank": 2.6666666666666667, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5.166666666666667, "tippecanoe:mean:POP_EST": 13909326.333333334, "tippecanoe:mean:POP_RANK": 10.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 627495.8333333334, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 19520660, "tippecanoe:mean:WOE_ID_EH": 23424837.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 10.166666666666666, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.783333333333333, "tippecanoe:mean:MAX_LABEL": 8.783333333333334, "tippecanoe:mean:LABEL_X": -3.210786666666667, "tippecanoe:mean:LABEL_Y": 54.0228045, "tippecanoe:mean:NE_ID": 1159320660.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.877930, 77.998190 ], [ 95.537109, 77.888038 ], [ 94.130859, 76.163993 ], [ 87.978516, 75.530136 ], [ 87.978516, 77.998190 ], [ 94.877930, 77.998190 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820aeffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 18, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 28, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 11062113, "tippecanoe:sum:POP_EST": 212754687, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 75, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 63177, "tippecanoe:min:GDP_MD": 10354, "tippecanoe:sum:GDP_MD": 171094, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 10091, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 93699565, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 93699565, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 14, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 39, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": 34.959183, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:sum:LABEL_X": 151.860612, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:sum:LABEL_Y": -0.6041630000000007, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:min:NE_ID": 1159320513, "tippecanoe:sum:NE_ID": 5796605647, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.8, "tippecanoe:mean:MAPCOLOR8": 3.6, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:mean:MAPCOLOR13": 5.6, "tippecanoe:mean:POP_EST": 42550937.4, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 34218.8, "tippecanoe:mean:GDP_YEAR": 2018.2, "tippecanoe:mean:WOE_ID": 18739913, "tippecanoe:mean:WOE_ID_EH": 18739913, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.6, "tippecanoe:mean:LONG_LEN": 12.6, "tippecanoe:mean:ABBREV_LEN": 5.2, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.8, "tippecanoe:mean:MAX_LABEL": 7.8, "tippecanoe:mean:LABEL_X": 30.372122400000003, "tippecanoe:mean:LABEL_Y": -0.12083260000000014, "tippecanoe:mean:NE_ID": 1159321129.4, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.413086, 69.224997 ], [ 111.093750, 67.776025 ], [ 110.742188, 67.491751 ], [ 102.216797, 67.491751 ], [ 103.579102, 69.021414 ], [ 108.413086, 69.224997 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820527fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5520314, "tippecanoe:min:POP_EST": 5347896, "tippecanoe:sum:POP_EST": 10868210, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 403336, "tippecanoe:min:GDP_MD": 269296, "tippecanoe:sum:GDP_MD": 672632, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424812, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424722, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424910, "tippecanoe:min:WOE_ID_EH": 23424812, "tippecanoe:sum:WOE_ID_EH": 46849722, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:min:LABEL_X": 9.679975, "tippecanoe:sum:LABEL_X": 36.956424, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 63.252361, "tippecanoe:min:LABEL_Y": 61.357092, "tippecanoe:sum:LABEL_Y": 124.609453, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321109, "tippecanoe:min:NE_ID": 1159320623, "tippecanoe:sum:NE_ID": 2318641732, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 5434105, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 336316, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 11712361, "tippecanoe:mean:WOE_ID_EH": 23424861, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 18.478212, "tippecanoe:mean:LABEL_Y": 62.3047265, "tippecanoe:mean:NE_ID": 1159320866, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.558594, 77.998190 ], [ 95.537109, 77.888038 ], [ 94.877930, 77.998190 ], [ 97.558594, 77.998190 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 22, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 204707220, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 51, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 476438, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424804, "tippecanoe:sum:WOE_ID": 93699500, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424804, "tippecanoe:sum:WOE_ID_EH": 93699500, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 50, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 24, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 13.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 33.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 11.835939, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 35.350359, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 9.439799, "tippecanoe:min:LABEL_Y": -0.437739, "tippecanoe:sum:LABEL_Y": 12.30596, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320693, "tippecanoe:sum:NE_ID": 4637283856, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:mean:POP_EST": 51176805, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 119109.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424875, "tippecanoe:mean:WOE_ID_EH": 23424875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.75, "tippecanoe:mean:LONG_LEN": 12.5, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 8.425, "tippecanoe:mean:LABEL_X": 8.83758975, "tippecanoe:mean:LABEL_Y": 3.07649, "tippecanoe:mean:NE_ID": 1159320964, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.526367, 68.236823 ], [ 96.635742, 67.491751 ], [ 90.307617, 67.491751 ], [ 90.351562, 67.676085 ], [ 94.526367, 68.236823 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a67fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 36471769, "tippecanoe:min:POP_EST": 603253, "tippecanoe:sum:POP_EST": 37075022, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 119700, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 120607, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 4026, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424893, "tippecanoe:sum:WOE_ID": 46849883, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424893, "tippecanoe:sum:WOE_ID_EH": 46849883, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 8.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 19, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -7.187296, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": -19.8176, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 31.650723, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 55.618314999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321223, "tippecanoe:min:NE_ID": 1159321035, "tippecanoe:sum:NE_ID": 2318642258, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 18537511, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 60303.5, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 23424941.5, "tippecanoe:mean:WOE_ID_EH": 23424941.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.35, "tippecanoe:mean:MIN_LABEL": 4.35, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": -9.9088, "tippecanoe:mean:LABEL_Y": 27.809157499999999, "tippecanoe:mean:NE_ID": 1159321129, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.978516, 73.640171 ], [ 92.197266, 72.724958 ], [ 91.450195, 71.031249 ], [ 87.978516, 70.524897 ], [ 87.978516, 73.640171 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 19, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:min:POP_EST": 4937374, "tippecanoe:sum:POP_EST": 38467133, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 40, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 3070, "tippecanoe:sum:GDP_MD": 65730, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID": 70274676, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:sum:WOE_ID_EH": 70274676, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 32, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 10.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -11.763677, "tippecanoe:sum:LABEL_X": -26.792673999999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 8.617449, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:sum:LABEL_Y": 22.556016, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:sum:NE_ID": 3477962773, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 12822377.666666666, "tippecanoe:mean:POP_RANK": 13.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 21910, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424892, "tippecanoe:mean:WOE_ID_EH": 23424892, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.666666666666666, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": -8.930891333333334, "tippecanoe:mean:LABEL_Y": 7.518672, "tippecanoe:mean:NE_ID": 1159320924.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.978516, 68.334376 ], [ 90.351562, 67.676085 ], [ 90.307617, 67.491751 ], [ 87.978516, 67.491751 ], [ 87.978516, 68.334376 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 41, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 32, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 33, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 60297396, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 129744004, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 108, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 2003576, "tippecanoe:min:GDP_MD": 3154, "tippecanoe:sum:GDP_MD": 3072017, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 18170, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424967, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:sum:WOE_ID": 210823727, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424967, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:sum:WOE_ID_EH": 210823727, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 84, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 90, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 41, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -578, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 9, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 36.7, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.8, "tippecanoe:sum:MAX_LABEL": 77.8, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": 18.06841, "tippecanoe:min:LABEL_X": 1.539409, "tippecanoe:sum:LABEL_X": 80.51718399999999, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 49.733732, "tippecanoe:min:LABEL_Y": 27.397406, "tippecanoe:sum:LABEL_Y": 382.08085600000006, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:sum:NE_ID": 10433887383, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.555555555555555, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.5555555555555555, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:mean:POP_EST": 14416000.444444444, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 341335.22222222227, "tippecanoe:mean:GDP_YEAR": 2018.888888888889, "tippecanoe:mean:WOE_ID": 23424858.555555557, "tippecanoe:mean:WOE_ID_EH": 23424858.555555557, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.333333333333334, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.555555555555555, "tippecanoe:mean:TINY": -64.22222222222223, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.077777777777778, "tippecanoe:mean:MAX_LABEL": 8.644444444444444, "tippecanoe:mean:LABEL_X": 8.946353777777777, "tippecanoe:mean:LABEL_Y": 42.45342844444445, "tippecanoe:mean:NE_ID": 1159320820.3333333, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.130859, 76.163993 ], [ 99.272461, 74.959392 ], [ 97.734375, 73.264704 ], [ 92.197266, 72.724958 ], [ 87.978516, 73.640171 ], [ 87.978516, 75.530136 ], [ 94.130859, 76.163993 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820487fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 5703569, "tippecanoe:sum:POP_EST": 5703569, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 372062, "tippecanoe:sum:GDP_MD": 372062, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424948, "tippecanoe:sum:WOE_ID": 23424948, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424948, "tippecanoe:sum:WOE_ID_EH": 23424948, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 103.816925, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 103.816925, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": 1.366587, "tippecanoe:sum:LABEL_Y": 1.366587, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159321247, "tippecanoe:sum:NE_ID": 1159321247, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 5703569, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 372062, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 103.816925, "tippecanoe:mean:LABEL_Y": 1.366587, "tippecanoe:mean:NE_ID": 1159321247, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.988281, 67.759398 ], [ 137.988281, 67.491751 ], [ 137.197266, 67.491751 ], [ 137.197266, 67.542167 ], [ 137.988281, 67.759398 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a77fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 32, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 30417856, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:sum:POP_EST": 70622751, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 57, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 66983, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 102853, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:sum:WOE_ID": 93699531, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:sum:WOE_ID_EH": 93699531, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 35, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 2.352018, "tippecanoe:min:LABEL_X": -1.36388, "tippecanoe:sum:LABEL_X": 1.0093100000000004, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 12.673048, "tippecanoe:min:LABEL_Y": 7.717639, "tippecanoe:sum:LABEL_Y": 39.522682, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:sum:NE_ID": 4637282900, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:mean:MAPCOLOR8": 1.75, "tippecanoe:mean:MAPCOLOR9": 2.75, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:mean:POP_EST": 17655687.75, "tippecanoe:mean:POP_RANK": 14.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 25713.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424882.75, "tippecanoe:mean:WOE_ID_EH": 23424882.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": 0.2523275000000001, "tippecanoe:mean:LABEL_Y": 9.8806705, "tippecanoe:mean:NE_ID": 1159320725, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.450195, 71.031249 ], [ 95.405273, 69.900118 ], [ 94.526367, 68.236823 ], [ 90.351562, 67.676085 ], [ 87.978516, 68.334376 ], [ 87.978516, 70.524897 ], [ 91.450195, 71.031249 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820417fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 7169455, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 7169455, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 18173, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 18173, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424872, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID": 23424872, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424872, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:sum:WOE_ID_EH": 23424872, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 102.533912, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 102.533912, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 19.431821, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 19.431821, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321011, "tippecanoe:min:NE_ID": 1159321011, "tippecanoe:sum:NE_ID": 1159321011, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 7169455, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 18173, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424872, "tippecanoe:mean:WOE_ID_EH": 23424872, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 102.533912, "tippecanoe:mean:LABEL_Y": 19.431821, "tippecanoe:mean:NE_ID": 1159321011, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.988281, 73.578167 ], [ 137.988281, 70.757966 ], [ 135.703125, 71.074056 ], [ 134.692383, 72.842021 ], [ 137.988281, 73.578167 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8204a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 54045420, "tippecanoe:sum:POP_EST": 1490088756, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 50, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:min:GDP_MD": 76085, "tippecanoe:sum:GDP_MD": 3488562, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424960, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:sum:WOE_ID": 70274571, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 70274571, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 7.4, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 101.073198, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 276.2358, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": 15.45974, "tippecanoe:sum:LABEL_Y": 59.72044699999999, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:sum:NE_ID": 3477963219, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:mean:POP_EST": 496696252, "tippecanoe:mean:POP_RANK": 16.666666666666669, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1162854, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424857, "tippecanoe:mean:WOE_ID_EH": 23424857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:mean:LONG_LEN": 6.666666666666667, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.466666666666667, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": 92.0786, "tippecanoe:mean:LABEL_Y": 19.906815666666664, "tippecanoe:mean:NE_ID": 1159321073, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, 71.074056 ], [ 137.988281, 70.757966 ], [ 137.988281, 67.759398 ], [ 137.197266, 67.542167 ], [ 132.758789, 68.155209 ], [ 131.660156, 69.900118 ], [ 135.703125, 71.074056 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820427fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 3225167, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13996, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887, "tippecanoe:mean:WOE_ID_EH": 23424887, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 104.150405, "tippecanoe:mean:LABEL_Y": 45.997488, "tippecanoe:mean:NE_ID": 1159321071, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.988281, 77.998190 ], [ 137.988281, 75.845169 ], [ 132.011719, 76.382969 ], [ 130.209961, 77.998190 ], [ 137.988281, 77.998190 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82058ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -65, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 1600424416, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 80, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 12108, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 15209543, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 140549103, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 140549103, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 47, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 32, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 20.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 47.2, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 106.337289, "tippecanoe:min:LABEL_X": 19.01705, "tippecanoe:sum:LABEL_X": 465.849063, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:sum:LABEL_Y": 213.74752999999999, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 6955924702, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR13": -10.833333333333334, "tippecanoe:mean:POP_EST": 266737402.66666667, "tippecanoe:mean:POP_RANK": 13.333333333333334, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 2534923.8333333337, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424850.5, "tippecanoe:mean:WOE_ID_EH": 23424850.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.833333333333333, "tippecanoe:mean:LONG_LEN": 7.833333333333333, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.8333333333333334, "tippecanoe:mean:MIN_LABEL": 3.3666666666666669, "tippecanoe:mean:MAX_LABEL": 7.866666666666667, "tippecanoe:mean:LABEL_X": 77.6415105, "tippecanoe:mean:LABEL_Y": 35.62458833333333, "tippecanoe:mean:NE_ID": 1159320783.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.803711, 73.378215 ], [ 134.692383, 72.842021 ], [ 135.703125, 71.074056 ], [ 131.660156, 69.900118 ], [ 126.562500, 70.348318 ], [ 124.760742, 72.046840 ], [ 128.803711, 73.378215 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820517fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 10023318, "tippecanoe:min:POP_EST": 2957731, "tippecanoe:sum:POP_EST": 16701431, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 48047, "tippecanoe:min:GDP_MD": 13672, "tippecanoe:sum:GDP_MD": 79196, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424823, "tippecanoe:min:WOE_ID": 23424741, "tippecanoe:sum:WOE_ID": 70274307, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424823, "tippecanoe:min:WOE_ID_EH": 23424741, "tippecanoe:sum:WOE_ID_EH": 70274307, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 28, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 47.210994, "tippecanoe:min:LABEL_X": 43.735724, "tippecanoe:sum:LABEL_X": 135.74728199999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 40.402387, "tippecanoe:sum:LABEL_Y": 122.731551, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320779, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 3477961493, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 5567143.666666667, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 26398.666666666668, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424769, "tippecanoe:mean:WOE_ID_EH": 23424769, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.333333333333333, "tippecanoe:mean:MAX_LABEL": 9.333333333333334, "tippecanoe:mean:LABEL_X": 45.24909399999999, "tippecanoe:mean:LABEL_Y": 40.910517, "tippecanoe:mean:NE_ID": 1159320497.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.630859, 76.980149 ], [ 119.926758, 75.375605 ], [ 116.235352, 73.885918 ], [ 109.863281, 73.861506 ], [ 105.952148, 75.297735 ], [ 108.808594, 76.930555 ], [ 116.630859, 76.980149 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8205affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 26, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 32, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 36175, "tippecanoe:sum:POP_EST": 309943904, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 93, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 14123, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 596, "tippecanoe:sum:GDP_MD": 413360, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 14126, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549348, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 160619615, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 80, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -589, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 24.7, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 56.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 74.532637, "tippecanoe:min:LABEL_X": 58.676647, "tippecanoe:sum:LABEL_X": 468.22810400000005, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 45.978332, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 270.888207, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 8115247435, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5714285714285718, "tippecanoe:mean:ADM0_DIF": 0.14285714285714286, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.14285714285714286, "tippecanoe:mean:MAPCOLOR7": 3.7142857142857146, "tippecanoe:mean:MAPCOLOR8": 3.857142857142857, "tippecanoe:mean:MAPCOLOR9": 4.571428571428571, "tippecanoe:mean:MAPCOLOR13": 6.142857142857143, "tippecanoe:mean:POP_EST": 44277700.571428578, "tippecanoe:mean:POP_RANK": 13.285714285714287, "tippecanoe:mean:POP_YEAR": 2017.5714285714287, "tippecanoe:mean:GDP_MD": 59051.42857142857, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 20078478.285714289, "tippecanoe:mean:WOE_ID_EH": 22945659.285714289, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.857142857142858, "tippecanoe:mean:LONG_LEN": 11.428571428571429, "tippecanoe:mean:ABBREV_LEN": 4.428571428571429, "tippecanoe:mean:TINY": -84.14285714285714, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0.7142857142857143, "tippecanoe:mean:MIN_LABEL": 3.5285714285714286, "tippecanoe:mean:MAX_LABEL": 8.071428571428572, "tippecanoe:mean:LABEL_X": 66.88972914285715, "tippecanoe:mean:LABEL_Y": 38.69831528571429, "tippecanoe:mean:NE_ID": 1159321062.142857, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.926758, 75.375605 ], [ 126.870117, 75.095633 ], [ 128.803711, 73.378215 ], [ 124.760742, 72.046840 ], [ 118.959961, 72.289067 ], [ 116.235352, 73.885918 ], [ 119.926758, 75.375605 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8205b7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 973560, "tippecanoe:sum:POP_EST": 147310371, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 56, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 8071, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 95912, "tippecanoe:min:GDP_MD": 3324, "tippecanoe:sum:GDP_MD": 139653, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 8070, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23425002, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 70274508, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23425002, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 70274508, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 46.731595, "tippecanoe:min:LABEL_X": 39.0886, "tippecanoe:sum:LABEL_X": 174.193403, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 44.781253, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321425, "tippecanoe:min:NE_ID": 1159320541, "tippecanoe:sum:NE_ID": 4637283842, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:mean:MAPCOLOR13": 8.5, "tippecanoe:mean:POP_EST": 36827592.75, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 34913.25, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568627, "tippecanoe:mean:WOE_ID_EH": 17568627, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.75, "tippecanoe:mean:LONG_LEN": 7.75, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 1, "tippecanoe:mean:MIN_LABEL": 3.375, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 43.54835075, "tippecanoe:mean:LABEL_Y": 11.19531325, "tippecanoe:mean:NE_ID": 1159320960.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.927734, 70.801366 ], [ 118.300781, 69.224997 ], [ 115.751953, 67.759398 ], [ 111.093750, 67.776025 ], [ 108.413086, 69.224997 ], [ 110.566406, 70.801366 ], [ 115.927734, 70.801366 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 18, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 18, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 86, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 18, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 65, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 52, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 74, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 18, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 286398180, "tippecanoe:count:POP_RANK": 18, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 218, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 36334, "tippecanoe:count:GDP_MD": 18, "tippecanoe:max:GDP_MD": 761425, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2142290, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 36323, "tippecanoe:count:WOE_ID": 18, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 282607218, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 378916586, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 151, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 157, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 80, "tippecanoe:count:TINY": 18, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1577, "tippecanoe:count:HOMEPART": 18, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -182, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 14, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 77.30000000000001, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 161.7, "tippecanoe:count:LABEL_X": 18, "tippecanoe:max:LABEL_X": 35.992892, "tippecanoe:min:LABEL_X": 16.37241, "tippecanoe:sum:LABEL_X": 501.7997449999999, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 26.186173, "tippecanoe:sum:LABEL_Y": 692.236434, "tippecanoe:count:NE_ID": 18, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 20867775124, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 4.777777777777778, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 3.611111111111111, "tippecanoe:mean:MAPCOLOR8": 2.888888888888889, "tippecanoe:mean:MAPCOLOR9": 4.111111111111111, "tippecanoe:mean:MAPCOLOR13": 0.5555555555555556, "tippecanoe:mean:POP_EST": 15911010, "tippecanoe:mean:POP_RANK": 12.11111111111111, "tippecanoe:mean:POP_YEAR": 2018.5555555555557, "tippecanoe:mean:GDP_MD": 119016.11111111111, "tippecanoe:mean:GDP_YEAR": 2017.9444444444444, "tippecanoe:mean:WOE_ID": 15700401, "tippecanoe:mean:WOE_ID_EH": 21050921.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.38888888888889, "tippecanoe:mean:LONG_LEN": 8.722222222222222, "tippecanoe:mean:ABBREV_LEN": 4.444444444444445, "tippecanoe:mean:TINY": -87.61111111111112, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 0.7777777777777778, "tippecanoe:mean:MIN_LABEL": 4.294444444444445, "tippecanoe:mean:MAX_LABEL": 8.983333333333333, "tippecanoe:mean:LABEL_X": 27.877763611111108, "tippecanoe:mean:LABEL_Y": 38.45757966666667, "tippecanoe:mean:NE_ID": 1159320840.2222224, "tippecanoe:count": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.952148, 75.297735 ], [ 109.863281, 73.861506 ], [ 107.402344, 72.248917 ], [ 101.777344, 71.992578 ], [ 97.734375, 73.264704 ], [ 99.272461, 74.959392 ], [ 105.952148, 75.297735 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8205a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 24, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 26, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 1641172, "tippecanoe:sum:POP_EST": 192344368, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 110, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 38574, "tippecanoe:sum:GDP_MD": 1973427, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 16147, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424956, "tippecanoe:min:WOE_ID": 23424753, "tippecanoe:sum:WOE_ID": 187399013, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424956, "tippecanoe:min:WOE_ID_EH": 23424753, "tippecanoe:sum:WOE_ID_EH": 187399013, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 49, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 27.2, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 66.2, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 54.931495, "tippecanoe:min:LABEL_X": 36.375991, "tippecanoe:sum:LABEL_X": 366.559003, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 35.006636, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 235.585807, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321295, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 9274567842, "tippecanoe:mean:scalerank": 0.625, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.75, "tippecanoe:mean:POP_EST": 24043046, "tippecanoe:mean:POP_RANK": 13.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 246678.375, "tippecanoe:mean:GDP_YEAR": 2018.375, "tippecanoe:mean:WOE_ID": 23424876.625, "tippecanoe:mean:WOE_ID_EH": 23424876.625, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.125, "tippecanoe:mean:LONG_LEN": 6.125, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4, "tippecanoe:mean:MAX_LABEL": 8.275, "tippecanoe:mean:LABEL_X": 45.819875375, "tippecanoe:mean:LABEL_Y": 29.448225875, "tippecanoe:mean:NE_ID": 1159320980.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.235352, 73.885918 ], [ 118.959961, 72.289067 ], [ 115.927734, 70.801366 ], [ 110.566406, 70.801366 ], [ 107.402344, 72.248917 ], [ 109.863281, 73.861506 ], [ 116.235352, 73.885918 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820537fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 15, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 15, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 67, "tippecanoe:count:ADM0_DIF": 15, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 15, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 29, "tippecanoe:count:GEOU_DIF": 15, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 15, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 15, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 15, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 47, "tippecanoe:count:MAPCOLOR8": 15, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 49, "tippecanoe:count:MAPCOLOR9": 15, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 51, "tippecanoe:count:MAPCOLOR13": 15, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 114, "tippecanoe:count:POP_EST": 15, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 217744098, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 193, "tippecanoe:count:POP_YEAR": 15, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 30285, "tippecanoe:count:GDP_MD": 15, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6399941, "tippecanoe:count:GDP_YEAR": 15, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 30282, "tippecanoe:count:WOE_ID": 15, "tippecanoe:max:WOE_ID": 23424933, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 317100741, "tippecanoe:count:WOE_ID_EH": 15, "tippecanoe:max:WOE_ID_EH": 23424933, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 340525702, "tippecanoe:count:ADM0_A3_UN": 15, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1485, "tippecanoe:count:ADM0_A3_WB": 15, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1485, "tippecanoe:count:NAME_LEN": 15, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 107, "tippecanoe:count:LONG_LEN": 15, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 122, "tippecanoe:count:ABBREV_LEN": 15, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 63, "tippecanoe:count:TINY": 15, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1381, "tippecanoe:count:HOMEPART": 15, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -85, "tippecanoe:count:MIN_ZOOM": 15, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 15, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 51.900000000000009, "tippecanoe:count:MAX_LABEL": 15, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 125.7, "tippecanoe:count:LABEL_X": 15, "tippecanoe:max:LABEL_X": 68.685548, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 352.04201299999996, "tippecanoe:count:LABEL_Y": 15, "tippecanoe:max:LABEL_Y": 60.156467, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 779.237302, "tippecanoe:count:NE_ID": 15, "tippecanoe:max:NE_ID": 1159321283, "tippecanoe:min:NE_ID": 1159320379, "tippecanoe:sum:NE_ID": 17389812239, "tippecanoe:mean:scalerank": 0.2, "tippecanoe:mean:LABELRANK": 4.466666666666667, "tippecanoe:mean:ADM0_DIF": 0.2, "tippecanoe:mean:LEVEL": 1.9333333333333334, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1333333333333335, "tippecanoe:mean:MAPCOLOR8": 3.2666666666666668, "tippecanoe:mean:MAPCOLOR9": 3.4, "tippecanoe:mean:MAPCOLOR13": 7.6, "tippecanoe:mean:POP_EST": 14516273.2, "tippecanoe:mean:POP_RANK": 12.866666666666668, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 426662.73333333336, "tippecanoe:mean:GDP_YEAR": 2018.8, "tippecanoe:mean:WOE_ID": 21140049.4, "tippecanoe:mean:WOE_ID_EH": 22701713.466666666, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.133333333333334, "tippecanoe:mean:LONG_LEN": 8.133333333333333, "tippecanoe:mean:ABBREV_LEN": 4.2, "tippecanoe:mean:TINY": -92.06666666666666, "tippecanoe:mean:HOMEPART": -5.666666666666667, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4600000000000006, "tippecanoe:mean:MAX_LABEL": 8.38, "tippecanoe:mean:LABEL_X": 23.46946753333333, "tippecanoe:mean:LABEL_Y": 51.949153466666668, "tippecanoe:mean:NE_ID": 1159320815.9333335, "tippecanoe:count": 15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.029297, 77.998190 ], [ 108.808594, 76.930555 ], [ 105.952148, 75.297735 ], [ 99.272461, 74.959392 ], [ 94.130859, 76.163993 ], [ 95.537109, 77.888038 ], [ 97.558594, 77.998190 ], [ 105.029297, 77.998190 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a47fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 23310715, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 46537696, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 53, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 52091, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 91305, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424906, "tippecanoe:min:WOE_ID": 23424777, "tippecanoe:sum:WOE_ID": 93699462, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424906, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 93699462, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -294, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 18.645041, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 60.593417, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 95.12098399999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159321017, "tippecanoe:sum:NE_ID": 4637284470, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 9.5, "tippecanoe:mean:POP_EST": 11634424, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 22826.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424865.5, "tippecanoe:mean:WOE_ID_EH": 23424865.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4.75, "tippecanoe:mean:LONG_LEN": 4.75, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -73.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 15.14835425, "tippecanoe:mean:LABEL_Y": 23.780245999999999, "tippecanoe:mean:NE_ID": 1159321117.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.734375, 73.264704 ], [ 101.777344, 71.992578 ], [ 100.239258, 70.333533 ], [ 95.405273, 69.900118 ], [ 91.450195, 71.031249 ], [ 92.197266, 72.724958 ], [ 97.734375, 73.264704 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 42813238, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 48894434, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6058, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 30513, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 32578, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 6049, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424806, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 23424617, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424952, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849659, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 38.285566, "tippecanoe:min:LABEL_X": 29.260657, "tippecanoe:sum:LABEL_X": 101.219651, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 21.860442, "tippecanoe:min:LABEL_Y": 15.787401, "tippecanoe:sum:LABEL_Y": 53.978589, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320581, "tippecanoe:sum:NE_ID": 4048276901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 16298144.666666666, "tippecanoe:mean:POP_RANK": 9.666666666666666, "tippecanoe:mean:POP_YEAR": 2019.3333333333333, "tippecanoe:mean:GDP_MD": 10859.333333333334, "tippecanoe:mean:GDP_YEAR": 2016.3333333333333, "tippecanoe:mean:WOE_ID": 7808205.666666667, "tippecanoe:mean:WOE_ID_EH": 15616553, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 33.739883666666667, "tippecanoe:mean:LABEL_Y": 17.992863, "tippecanoe:mean:NE_ID": 1349425633.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.402344, 72.248917 ], [ 110.566406, 70.801366 ], [ 108.413086, 69.224997 ], [ 103.579102, 69.021414 ], [ 100.239258, 70.333533 ], [ 101.777344, 71.992578 ], [ 107.402344, 72.248917 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a57fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 25876380, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 30621565, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 39007, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 41227, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424792, "tippecanoe:min:WOE_ID": 23424785, "tippecanoe:sum:WOE_ID": 46849577, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424792, "tippecanoe:min:WOE_ID_EH": 23424785, "tippecanoe:sum:WOE_ID_EH": 46849577, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:min:LABEL_X": 12.473488, "tippecanoe:sum:LABEL_X": 33.380385000000007, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 6.989681, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:sum:LABEL_Y": 11.574722000000002, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320509, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 2318640972, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 15310782.5, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20613.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424788.5, "tippecanoe:mean:WOE_ID_EH": 23424788.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 16.690192500000003, "tippecanoe:mean:LABEL_Y": 5.787361000000001, "tippecanoe:mean:NE_ID": 1159320486, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.239258, 70.333533 ], [ 103.579102, 69.021414 ], [ 102.216797, 67.491751 ], [ 96.635742, 67.491751 ], [ 94.526367, 68.236823 ], [ 95.405273, 69.900118 ], [ 100.239258, 70.333533 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82059ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:min:POP_EST": 21803000, "tippecanoe:sum:POP_EST": 21803000, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:min:GDP_MD": 84008, "tippecanoe:sum:GDP_MD": 84008, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424778, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:sum:WOE_ID": 23424778, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424778, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 23424778, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": 80.704823, "tippecanoe:sum:LABEL_X": 80.704823, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:min:LABEL_Y": 7.581097, "tippecanoe:sum:LABEL_Y": 7.581097, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321025, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:sum:NE_ID": 1159321025, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 21803000, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 84008, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424778, "tippecanoe:mean:WOE_ID_EH": 23424778, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 80.704823, "tippecanoe:mean:LABEL_Y": 7.581097, "tippecanoe:mean:NE_ID": 1159321025, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.562500, 70.348318 ], [ 131.660156, 69.900118 ], [ 132.758789, 68.155209 ], [ 130.869141, 67.491751 ], [ 124.804688, 67.491751 ], [ 123.266602, 69.005675 ], [ 126.562500, 70.348318 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820587fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.959961, 72.289067 ], [ 124.760742, 72.046840 ], [ 126.562500, 70.348318 ], [ 123.266602, 69.005675 ], [ 118.300781, 69.224997 ], [ 115.927734, 70.801366 ], [ 118.959961, 72.289067 ] ] ] } } +] } +] } diff --git a/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json b/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json new file mode 100644 index 000000000..bcb483ff9 --- /dev/null +++ b/tests/pbf/0-0-0-pop-1-1-0.pbf.out.json @@ -0,0 +1,157 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "bin": "82176ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 2, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 5, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 889953, "tippecanoe:min:POP_EST": 299882, "tippecanoe:sum:POP_EST": 1189835, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 21, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5496, "tippecanoe:min:GDP_MD": 934, "tippecanoe:sum:GDP_MD": 6430, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424907, "tippecanoe:min:WOE_ID": 23424813, "tippecanoe:sum:WOE_ID": 46849720, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424907, "tippecanoe:min:WOE_ID_EH": 23424813, "tippecanoe:sum:WOE_ID_EH": 46849720, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": 166.908762, "tippecanoe:sum:LABEL_X": 344.884189, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -15.37153, "tippecanoe:min:LABEL_Y": -17.826099, "tippecanoe:sum:LABEL_Y": -33.197629, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 2318642046, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 2.5, "tippecanoe:mean:POP_EST": 594917.5, "tippecanoe:mean:POP_RANK": 10.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3215, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424860, "tippecanoe:mean:WOE_ID_EH": 23424860, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.5, "tippecanoe:mean:LONG_LEN": 5.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 172.4420945, "tippecanoe:mean:LABEL_Y": -16.5988145, "tippecanoe:mean:NE_ID": 1159321023, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 179.165039, 64.774125 ], [ 180.878906, 63.292939 ], [ 178.857422, 61.876870 ], [ 175.209961, 61.835413 ], [ 173.232422, 63.233627 ], [ 175.078125, 64.755390 ], [ 179.165039, 64.774125 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82165ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 13, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 29, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -56, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 477768206, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 14132, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 60, "tippecanoe:sum:GDP_MD": 23341694, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 14124, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 23424867, "tippecanoe:sum:WOE_ID": 168839058, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 23424867, "tippecanoe:sum:WOE_ID_EH": 168839058, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 85, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 90, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -388, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 23.099999999999999, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:sum:MAX_LABEL": 54.60000000000001, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:sum:LABEL_X": -354.80870500000006, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -55.49038999999999, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 8115246989, "tippecanoe:mean:scalerank": 1.8571428571428573, "tippecanoe:mean:LABELRANK": 3.4285714285714286, "tippecanoe:mean:ADM0_DIF": 0.42857142857142857, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.857142857142857, "tippecanoe:mean:MAPCOLOR8": 4.428571428571429, "tippecanoe:mean:MAPCOLOR9": 4.142857142857143, "tippecanoe:mean:MAPCOLOR13": -8, "tippecanoe:mean:POP_EST": 68252600.85714285, "tippecanoe:mean:POP_RANK": 10.571428571428572, "tippecanoe:mean:POP_YEAR": 2018.857142857143, "tippecanoe:mean:GDP_MD": 3334527.714285714, "tippecanoe:mean:GDP_YEAR": 2017.7142857142858, "tippecanoe:mean:WOE_ID": 24119865.42857143, "tippecanoe:mean:WOE_ID_EH": 24119865.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12.142857142857143, "tippecanoe:mean:LONG_LEN": 12.857142857142858, "tippecanoe:mean:ABBREV_LEN": 4.428571428571429, "tippecanoe:mean:TINY": -55.42857142857143, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3, "tippecanoe:mean:MAX_LABEL": 7.800000000000002, "tippecanoe:mean:LABEL_X": -50.686957857142868, "tippecanoe:mean:LABEL_Y": -7.92719857142857, "tippecanoe:mean:NE_ID": 1159320998.4285715, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 178.681641, 53.540307 ], [ 180.219727, 52.133488 ], [ 178.989258, 50.708634 ], [ 176.308594, 50.652943 ], [ 174.726562, 51.998410 ], [ 175.869141, 53.488046 ], [ 178.681641, 53.540307 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821047fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 11513100, "tippecanoe:min:POP_EST": 11513100, "tippecanoe:sum:POP_EST": 11513100, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 14, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40895, "tippecanoe:min:GDP_MD": 40895, "tippecanoe:sum:GDP_MD": 40895, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424762, "tippecanoe:min:WOE_ID": 23424762, "tippecanoe:sum:WOE_ID": 23424762, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424762, "tippecanoe:min:WOE_ID_EH": 23424762, "tippecanoe:sum:WOE_ID_EH": 23424762, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.593433, "tippecanoe:min:LABEL_X": -64.593433, "tippecanoe:sum:LABEL_X": -64.593433, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -16.666015, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": -16.666015, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320439, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 1159320439, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 11513100, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40895, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424762, "tippecanoe:mean:WOE_ID_EH": 23424762, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": -64.593433, "tippecanoe:mean:LABEL_Y": -16.666015, "tippecanoe:mean:NE_ID": 1159320439, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.293945, 67.016009 ], [ 60.424805, 66.757250 ], [ 61.523438, 65.256706 ], [ 58.798828, 64.033744 ], [ 55.019531, 64.263684 ], [ 53.657227, 65.730626 ], [ 56.293945, 67.016009 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82008ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 21, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 361313, "tippecanoe:min:POP_EST": 56225, "tippecanoe:sum:POP_EST": 417538, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 18, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 24188, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 27239, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4037, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424828, "tippecanoe:sum:WOE_ID": 46849673, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424828, "tippecanoe:sum:WOE_ID_EH": 46849673, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -18.673711, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -58.008962, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 64.779286, "tippecanoe:sum:LABEL_Y": 139.09867300000003, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320551, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 10.5, "tippecanoe:mean:POP_EST": 208769, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13619.5, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424836.5, "tippecanoe:mean:WOE_ID_EH": 23424836.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:mean:LABEL_X": -29.004481, "tippecanoe:mean:LABEL_Y": 69.54933650000001, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 79.892578, 81.634149 ], [ 89.560547, 80.739423 ], [ 88.725586, 78.988187 ], [ 81.210938, 78.143526 ], [ 73.388672, 78.853070 ], [ 71.367188, 80.553733 ], [ 79.892578, 81.634149 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8204cffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 13, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 113815, "tippecanoe:min:POP_EST": 113815, "tippecanoe:sum:POP_EST": 113815, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 401, "tippecanoe:min:GDP_MD": 401, "tippecanoe:sum:GDP_MD": 401, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 2018, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424815, "tippecanoe:min:WOE_ID": 23424815, "tippecanoe:sum:WOE_ID": 23424815, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424815, "tippecanoe:min:WOE_ID_EH": 23424815, "tippecanoe:sum:WOE_ID_EH": 23424815, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 30, "tippecanoe:sum:LONG_LEN": 30, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 158.234019, "tippecanoe:sum:LABEL_X": 158.234019, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 6.887553, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 6.887553, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320691, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 1159320691, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 13, "tippecanoe:mean:POP_EST": 113815, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 401, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424815, "tippecanoe:mean:WOE_ID_EH": 23424815, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 30, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 158.234019, "tippecanoe:mean:LABEL_Y": 6.887553, "tippecanoe:mean:NE_ID": 1159320691, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.353516, 69.209404 ], [ 174.946289, 67.742759 ], [ 172.880859, 66.196009 ], [ 168.530273, 66.000150 ], [ 165.761719, 67.339861 ], [ 167.431641, 69.005675 ], [ 172.353516, 69.209404 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82114ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 24, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 9746117, "tippecanoe:min:POP_EST": 5047561, "tippecanoe:sum:POP_EST": 27792733, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 52, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 61801, "tippecanoe:min:GDP_MD": 12520, "tippecanoe:sum:GDP_MD": 126438, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424915, "tippecanoe:min:WOE_ID": 23424791, "tippecanoe:sum:WOE_ID": 93699354, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424915, "tippecanoe:min:WOE_ID_EH": 23424791, "tippecanoe:sum:WOE_ID_EH": 93699354, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 38, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 38, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 16, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 36.5, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -84.077922, "tippecanoe:min:LABEL_X": -88.890124, "tippecanoe:sum:LABEL_X": -344.924997, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 14.794801, "tippecanoe:min:LABEL_Y": 10.0651, "tippecanoe:sum:LABEL_Y": 51.215969, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:min:NE_ID": 1159320525, "tippecanoe:sum:NE_ID": 4637283696, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.75, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 6948183.25, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 31609.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424838.5, "tippecanoe:mean:WOE_ID_EH": 23424838.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 9.5, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9.125, "tippecanoe:mean:LABEL_X": -86.23124925, "tippecanoe:mean:LABEL_Y": 12.80399225, "tippecanoe:mean:NE_ID": 1159320924, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.735352, 69.854762 ], [ 50.537109, 68.528235 ], [ 48.076172, 67.187000 ], [ 44.077148, 67.118748 ], [ 42.099609, 68.382996 ], [ 44.252930, 69.778952 ], [ 48.735352, 69.854762 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820acffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 52573973, "tippecanoe:min:POP_EST": 52573973, "tippecanoe:sum:POP_EST": 52573973, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 16, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 95503, "tippecanoe:sum:GDP_MD": 95503, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424863, "tippecanoe:min:WOE_ID": 23424863, "tippecanoe:sum:WOE_ID": 23424863, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424863, "tippecanoe:min:WOE_ID_EH": 23424863, "tippecanoe:sum:WOE_ID_EH": 23424863, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 37.907632, "tippecanoe:min:LABEL_X": 37.907632, "tippecanoe:sum:LABEL_X": 37.907632, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 0.549043, "tippecanoe:min:LABEL_Y": 0.549043, "tippecanoe:sum:LABEL_Y": 0.549043, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320971, "tippecanoe:min:NE_ID": 1159320971, "tippecanoe:sum:NE_ID": 1159320971, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 52573973, "tippecanoe:mean:POP_RANK": 16, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 95503, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424863, "tippecanoe:mean:WOE_ID_EH": 23424863, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 37.907632, "tippecanoe:mean:LABEL_Y": 0.549043, "tippecanoe:mean:NE_ID": 1159320971, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.093750, 67.776025 ], [ 115.751953, 67.759398 ], [ 117.817383, 66.196009 ], [ 115.576172, 64.774125 ], [ 111.533203, 64.792848 ], [ 109.160156, 66.231457 ], [ 111.093750, 67.776025 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82009ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 31, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 48678, "tippecanoe:sum:POP_EST": 83455958, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 65, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 12114, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 3116, "tippecanoe:sum:GDP_MD": 3764975, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424847, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 117123960, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424975, "tippecanoe:min:WOE_ID_EH": 23424757, "tippecanoe:sum:WOE_ID_EH": 140549025, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 57, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 61, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -492, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -294, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 22.7, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 52.7, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 4.800448, "tippecanoe:min:LABEL_X": -7.798588, "tippecanoe:sum:LABEL_X": -19.26472, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 62.185604, "tippecanoe:min:LABEL_Y": 49.463533, "tippecanoe:sum:LABEL_Y": 324.136827, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159320877, "tippecanoe:min:NE_ID": 1159320389, "tippecanoe:sum:NE_ID": 6955923964, "tippecanoe:mean:scalerank": 2.6666666666666667, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0.6666666666666666, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5.166666666666667, "tippecanoe:mean:POP_EST": 13909326.333333334, "tippecanoe:mean:POP_RANK": 10.833333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 627495.8333333334, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 19520660, "tippecanoe:mean:WOE_ID_EH": 23424837.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 10.166666666666666, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.783333333333333, "tippecanoe:mean:MAX_LABEL": 8.783333333333334, "tippecanoe:mean:LABEL_X": -3.210786666666667, "tippecanoe:mean:LABEL_Y": 54.0228045, "tippecanoe:mean:NE_ID": 1159320660.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.725586, 78.988187 ], [ 95.537109, 77.888038 ], [ 94.130859, 76.163993 ], [ 87.714844, 75.497157 ], [ 81.650391, 76.413973 ], [ 81.210938, 78.143526 ], [ 88.725586, 78.988187 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820aeffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 19, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 18, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 28, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 11062113, "tippecanoe:sum:POP_EST": 212754687, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 75, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 63177, "tippecanoe:min:GDP_MD": 10354, "tippecanoe:sum:GDP_MD": 171094, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 10091, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424974, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 93699565, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424974, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 93699565, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 26, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 14, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 39, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": 34.959183, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:sum:LABEL_X": 151.860612, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 7.230477, "tippecanoe:min:LABEL_Y": -6.051866, "tippecanoe:sum:LABEL_Y": -0.6041630000000007, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321343, "tippecanoe:min:NE_ID": 1159320513, "tippecanoe:sum:NE_ID": 5796605647, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.8, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.8, "tippecanoe:mean:MAPCOLOR8": 3.6, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:mean:MAPCOLOR13": 5.6, "tippecanoe:mean:POP_EST": 42550937.4, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 34218.8, "tippecanoe:mean:GDP_YEAR": 2018.2, "tippecanoe:mean:WOE_ID": 18739913, "tippecanoe:mean:WOE_ID_EH": 18739913, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.6, "tippecanoe:mean:LONG_LEN": 12.6, "tippecanoe:mean:ABBREV_LEN": 5.2, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.8, "tippecanoe:mean:MAX_LABEL": 7.8, "tippecanoe:mean:LABEL_X": 30.372122400000003, "tippecanoe:mean:LABEL_Y": -0.12083260000000014, "tippecanoe:mean:NE_ID": 1159321129.4, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 108.413086, 69.224997 ], [ 111.093750, 67.776025 ], [ 109.160156, 66.231457 ], [ 104.941406, 66.071546 ], [ 102.128906, 67.407487 ], [ 103.579102, 69.021414 ], [ 108.413086, 69.224997 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820ae7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 31825295, "tippecanoe:min:POP_EST": 31825295, "tippecanoe:sum:POP_EST": 31825295, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 88815, "tippecanoe:min:GDP_MD": 88815, "tippecanoe:sum:GDP_MD": 88815, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424745, "tippecanoe:min:WOE_ID": 23424745, "tippecanoe:sum:WOE_ID": 23424745, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424745, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 23424745, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.984249, "tippecanoe:min:LABEL_X": 17.984249, "tippecanoe:sum:LABEL_X": 17.984249, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.182762, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": -12.182762, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320323, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 1159320323, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 31825295, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 88815, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424745, "tippecanoe:mean:WOE_ID_EH": 23424745, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 17.984249, "tippecanoe:mean:LABEL_Y": -12.182762, "tippecanoe:mean:NE_ID": 1159320323, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 67.407487 ], [ 104.941406, 66.071546 ], [ 103.579102, 64.510643 ], [ 99.755859, 64.225493 ], [ 96.899414, 65.440002 ], [ 97.866211, 67.050304 ], [ 102.128906, 67.407487 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820527fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 5520314, "tippecanoe:min:POP_EST": 5347896, "tippecanoe:sum:POP_EST": 10868210, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 403336, "tippecanoe:min:GDP_MD": 269296, "tippecanoe:sum:GDP_MD": 672632, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424812, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 23424722, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424910, "tippecanoe:min:WOE_ID_EH": 23424812, "tippecanoe:sum:WOE_ID_EH": 46849722, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 27.276449, "tippecanoe:min:LABEL_X": 9.679975, "tippecanoe:sum:LABEL_X": 36.956424, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 63.252361, "tippecanoe:min:LABEL_Y": 61.357092, "tippecanoe:sum:LABEL_Y": 124.609453, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321109, "tippecanoe:min:NE_ID": 1159320623, "tippecanoe:sum:NE_ID": 2318641732, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 5434105, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 336316, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 11712361, "tippecanoe:mean:WOE_ID_EH": 23424861, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 18.478212, "tippecanoe:mean:LABEL_Y": 62.3047265, "tippecanoe:mean:NE_ID": 1159320866, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.063477, 81.334844 ], [ 107.094727, 79.997168 ], [ 103.754883, 78.331648 ], [ 95.537109, 77.888038 ], [ 88.725586, 78.988187 ], [ 89.560547, 80.739423 ], [ 100.063477, 81.334844 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a0ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 14, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 22, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 204707220, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 51, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 448120, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 476438, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424966, "tippecanoe:min:WOE_ID": 23424804, "tippecanoe:sum:WOE_ID": 93699500, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424966, "tippecanoe:min:WOE_ID_EH": 23424804, "tippecanoe:sum:WOE_ID_EH": 93699500, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 50, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 24, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -192, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 13.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 33.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 11.835939, "tippecanoe:min:LABEL_X": 7.021, "tippecanoe:sum:LABEL_X": 35.350359, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 9.439799, "tippecanoe:min:LABEL_Y": -0.437739, "tippecanoe:sum:LABEL_Y": 12.30596, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321273, "tippecanoe:min:NE_ID": 1159320693, "tippecanoe:sum:NE_ID": 4637283856, "tippecanoe:mean:scalerank": 0.75, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.75, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 5.5, "tippecanoe:mean:POP_EST": 51176805, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 119109.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424875, "tippecanoe:mean:WOE_ID_EH": 23424875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.75, "tippecanoe:mean:LONG_LEN": 12.5, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 8.425, "tippecanoe:mean:LABEL_X": 8.83758975, "tippecanoe:mean:LABEL_Y": 3.07649, "tippecanoe:mean:NE_ID": 1159320964, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.526367, 68.236823 ], [ 97.866211, 67.050304 ], [ 96.899414, 65.440002 ], [ 93.120117, 64.979359 ], [ 89.956055, 66.053716 ], [ 90.351562, 67.676085 ], [ 94.526367, 68.236823 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a67fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 36471769, "tippecanoe:min:POP_EST": 603253, "tippecanoe:sum:POP_EST": 37075022, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 119700, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 120607, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 4026, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": 23424893, "tippecanoe:sum:WOE_ID": 46849883, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424990, "tippecanoe:min:WOE_ID_EH": 23424893, "tippecanoe:sum:WOE_ID_EH": 46849883, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 8.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 19, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -7.187296, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": -19.8176, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 31.650723, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 55.618314999999999, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321223, "tippecanoe:min:NE_ID": 1159321035, "tippecanoe:sum:NE_ID": 2318642258, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 18537511, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 60303.5, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 23424941.5, "tippecanoe:mean:WOE_ID_EH": 23424941.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 10.5, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.35, "tippecanoe:mean:MIN_LABEL": 4.35, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": -9.9088, "tippecanoe:mean:LABEL_Y": 27.809157499999999, "tippecanoe:mean:NE_ID": 1159321129, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.363281, 73.775780 ], [ 92.197266, 72.724958 ], [ 91.450195, 71.031249 ], [ 86.835938, 70.363091 ], [ 82.441406, 71.286699 ], [ 82.221680, 72.971189 ], [ 87.363281, 73.775780 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a2ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 19, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 25716544, "tippecanoe:min:POP_EST": 4937374, "tippecanoe:sum:POP_EST": 38467133, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 40, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 58539, "tippecanoe:min:GDP_MD": 3070, "tippecanoe:sum:GDP_MD": 65730, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424854, "tippecanoe:sum:WOE_ID": 70274676, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424854, "tippecanoe:sum:WOE_ID_EH": 70274676, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 32, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 10.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -5.568618, "tippecanoe:min:LABEL_X": -11.763677, "tippecanoe:sum:LABEL_X": -26.792673999999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 8.617449, "tippecanoe:min:LABEL_Y": 6.447177, "tippecanoe:sum:LABEL_Y": 22.556016, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320507, "tippecanoe:sum:NE_ID": 3477962773, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 12822377.666666666, "tippecanoe:mean:POP_RANK": 13.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 21910, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424892, "tippecanoe:mean:WOE_ID_EH": 23424892, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.666666666666666, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": -8.930891333333334, "tippecanoe:mean:LABEL_Y": 7.518672, "tippecanoe:mean:NE_ID": 1159320924.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 86.660156, 68.688521 ], [ 90.351562, 67.676085 ], [ 89.956055, 66.053716 ], [ 86.352539, 65.421730 ], [ 82.880859, 66.319861 ], [ 82.749023, 67.958148 ], [ 86.660156, 68.688521 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82156ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 530953, "tippecanoe:min:POP_EST": 530953, "tippecanoe:sum:POP_EST": 530953, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5642, "tippecanoe:min:GDP_MD": 5642, "tippecanoe:sum:GDP_MD": 5642, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424899, "tippecanoe:min:WOE_ID": 23424899, "tippecanoe:sum:WOE_ID": 23424899, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424899, "tippecanoe:min:WOE_ID_EH": 23424899, "tippecanoe:sum:WOE_ID_EH": 23424899, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 73.507554, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 73.507554, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 4.174441, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 4.174441, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321053, "tippecanoe:min:NE_ID": 1159321053, "tippecanoe:sum:NE_ID": 1159321053, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 530953, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5642, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424899, "tippecanoe:mean:WOE_ID_EH": 23424899, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 73.507554, "tippecanoe:mean:LABEL_Y": 4.174441, "tippecanoe:mean:NE_ID": 1159321053, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.936523, 67.356785 ], [ 129.375000, 66.947274 ], [ 130.517578, 65.256706 ], [ 127.617188, 64.014496 ], [ 123.662109, 64.377941 ], [ 122.124023, 66.000150 ], [ 124.936523, 67.356785 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8204d7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 12, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 18008, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 18008, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 6, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 6, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 268, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 268, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424927, "tippecanoe:sum:WOE_ID": 23424927, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424927, "tippecanoe:sum:WOE_ID_EH": 23424927, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.580157, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 134.580157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.518252, "tippecanoe:min:LABEL_Y": 7.518252, "tippecanoe:sum:LABEL_Y": 7.518252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321171, "tippecanoe:min:NE_ID": 1159321171, "tippecanoe:sum:NE_ID": 1159321171, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 12, "tippecanoe:mean:POP_EST": 18008, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 268, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424927, "tippecanoe:mean:WOE_ID_EH": 23424927, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 134.580157, "tippecanoe:mean:LABEL_Y": 7.518252, "tippecanoe:mean:NE_ID": 1159321171, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 157.939453, 68.155209 ], [ 161.279297, 66.947274 ], [ 160.180664, 65.238307 ], [ 156.181641, 64.699105 ], [ 152.885742, 65.784758 ], [ 153.457031, 67.542167 ], [ 157.939453, 68.155209 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a6ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 9, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 9, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 41, "tippecanoe:count:ADM0_DIF": 9, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 9, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 18, "tippecanoe:count:GEOU_DIF": 9, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 9, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 9, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 9, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 9, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 32, "tippecanoe:count:MAPCOLOR9": 9, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 33, "tippecanoe:count:MAPCOLOR13": 9, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 53, "tippecanoe:count:POP_EST": 9, "tippecanoe:max:POP_EST": 60297396, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 129744004, "tippecanoe:count:POP_RANK": 9, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 108, "tippecanoe:count:POP_YEAR": 9, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 18171, "tippecanoe:count:GDP_MD": 9, "tippecanoe:max:GDP_MD": 2003576, "tippecanoe:min:GDP_MD": 3154, "tippecanoe:sum:GDP_MD": 3072017, "tippecanoe:count:GDP_YEAR": 9, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 18170, "tippecanoe:count:WOE_ID": 9, "tippecanoe:max:WOE_ID": 23424967, "tippecanoe:min:WOE_ID": 23424740, "tippecanoe:sum:WOE_ID": 210823727, "tippecanoe:count:WOE_ID_EH": 9, "tippecanoe:max:WOE_ID_EH": 23424967, "tippecanoe:min:WOE_ID_EH": 23424740, "tippecanoe:sum:WOE_ID_EH": 210823727, "tippecanoe:count:ADM0_A3_UN": 9, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -891, "tippecanoe:count:ADM0_A3_WB": 9, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -891, "tippecanoe:count:NAME_LEN": 9, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 84, "tippecanoe:count:LONG_LEN": 9, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 90, "tippecanoe:count:ABBREV_LEN": 9, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 41, "tippecanoe:count:TINY": 9, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -578, "tippecanoe:count:HOMEPART": 9, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 9, "tippecanoe:count:MIN_ZOOM": 9, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 9, "tippecanoe:max:MIN_LABEL": 5.7, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 36.7, "tippecanoe:count:MAX_LABEL": 9, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.8, "tippecanoe:sum:MAX_LABEL": 77.8, "tippecanoe:count:LABEL_X": 9, "tippecanoe:max:LABEL_X": 18.06841, "tippecanoe:min:LABEL_X": 1.539409, "tippecanoe:sum:LABEL_X": 80.51718399999999, "tippecanoe:count:LABEL_Y": 9, "tippecanoe:max:LABEL_Y": 49.733732, "tippecanoe:min:LABEL_Y": 27.397406, "tippecanoe:sum:LABEL_Y": 382.08085600000006, "tippecanoe:count:NE_ID": 9, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320327, "tippecanoe:sum:NE_ID": 10433887383, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.555555555555555, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.5555555555555555, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 5.888888888888889, "tippecanoe:mean:POP_EST": 14416000.444444444, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 341335.22222222227, "tippecanoe:mean:GDP_YEAR": 2018.888888888889, "tippecanoe:mean:WOE_ID": 23424858.555555557, "tippecanoe:mean:WOE_ID_EH": 23424858.555555557, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.333333333333334, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4.555555555555555, "tippecanoe:mean:TINY": -64.22222222222223, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.077777777777778, "tippecanoe:mean:MAX_LABEL": 8.644444444444444, "tippecanoe:mean:LABEL_X": 8.946353777777777, "tippecanoe:mean:LABEL_Y": 42.45342844444445, "tippecanoe:mean:NE_ID": 1159320820.3333333, "tippecanoe:count": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.130859, 76.163993 ], [ 99.272461, 74.959392 ], [ 97.734375, 73.264704 ], [ 92.197266, 72.724958 ], [ 87.363281, 73.775780 ], [ 87.714844, 75.497157 ], [ 94.130859, 76.163993 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820487fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 7, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 5703569, "tippecanoe:min:POP_EST": 5703569, "tippecanoe:sum:POP_EST": 5703569, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 372062, "tippecanoe:min:GDP_MD": 372062, "tippecanoe:sum:GDP_MD": 372062, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424948, "tippecanoe:min:WOE_ID": 23424948, "tippecanoe:sum:WOE_ID": 23424948, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424948, "tippecanoe:min:WOE_ID_EH": 23424948, "tippecanoe:sum:WOE_ID_EH": 23424948, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 103.816925, "tippecanoe:min:LABEL_X": 103.816925, "tippecanoe:sum:LABEL_X": 103.816925, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 1.366587, "tippecanoe:min:LABEL_Y": 1.366587, "tippecanoe:sum:LABEL_Y": 1.366587, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321247, "tippecanoe:min:NE_ID": 1159321247, "tippecanoe:sum:NE_ID": 1159321247, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 7, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 5703569, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 372062, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 103.816925, "tippecanoe:mean:LABEL_Y": 1.366587, "tippecanoe:mean:NE_ID": 1159321247, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 141.064453, 68.576441 ], [ 145.327148, 67.742759 ], [ 145.327148, 65.982270 ], [ 141.679688, 65.053602 ], [ 137.812500, 65.784758 ], [ 137.197266, 67.542167 ], [ 141.064453, 68.576441 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82048ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 108116615, "tippecanoe:min:POP_EST": 433285, "tippecanoe:sum:POP_EST": 140499677, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 42, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 376795, "tippecanoe:min:GDP_MD": 13469, "tippecanoe:sum:GDP_MD": 754945, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424934, "tippecanoe:min:WOE_ID": 23424773, "tippecanoe:sum:WOE_ID": 70274608, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424934, "tippecanoe:min:WOE_ID_EH": 23424773, "tippecanoe:sum:WOE_ID_EH": 70274608, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 36, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 122.465, "tippecanoe:min:LABEL_X": 113.83708, "tippecanoe:sum:LABEL_X": 350.854023, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 11.198, "tippecanoe:min:LABEL_Y": 2.528667, "tippecanoe:sum:LABEL_Y": 18.174965, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321169, "tippecanoe:min:NE_ID": 1159320451, "tippecanoe:sum:NE_ID": 3477962703, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 46833225.666666667, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 251648.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424869.333333333, "tippecanoe:mean:WOE_ID_EH": 23424869.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.333333333333334, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1666666666666667, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 116.951341, "tippecanoe:mean:LABEL_Y": 6.058321666666667, "tippecanoe:mean:NE_ID": 1159320901, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 149.589844, 68.576441 ], [ 153.457031, 67.542167 ], [ 152.885742, 65.784758 ], [ 148.974609, 65.053602 ], [ 145.327148, 65.982270 ], [ 145.327148, 67.742759 ], [ 149.589844, 68.576441 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82104ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 211049527, "tippecanoe:sum:POP_EST": 211049527, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 1839758, "tippecanoe:sum:GDP_MD": 1839758, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424768, "tippecanoe:min:WOE_ID": 23424768, "tippecanoe:sum:WOE_ID": 23424768, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424768, "tippecanoe:min:WOE_ID_EH": 23424768, "tippecanoe:sum:WOE_ID_EH": 23424768, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -49.55945, "tippecanoe:min:LABEL_X": -49.55945, "tippecanoe:sum:LABEL_X": -49.55945, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -12.098687, "tippecanoe:min:LABEL_Y": -12.098687, "tippecanoe:sum:LABEL_Y": -12.098687, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320441, "tippecanoe:min:NE_ID": 1159320441, "tippecanoe:sum:NE_ID": 1159320441, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 211049527, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1839758, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424768, "tippecanoe:mean:WOE_ID_EH": 23424768, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -49.55945, "tippecanoe:mean:LABEL_Y": -12.098687, "tippecanoe:mean:NE_ID": 1159320441, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 63.457031, 67.925140 ], [ 67.675781, 67.491751 ], [ 68.422852, 65.946472 ], [ 65.390625, 64.848937 ], [ 61.523438, 65.256706 ], [ 60.424805, 66.757250 ], [ 63.457031, 67.925140 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821067fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 26, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 32510453, "tippecanoe:min:POP_EST": 4246439, "tippecanoe:sum:POP_EST": 54130554, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 41, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 226848, "tippecanoe:min:GDP_MD": 66800, "tippecanoe:sum:GDP_MD": 401083, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424924, "tippecanoe:min:WOE_ID": 23424801, "tippecanoe:sum:WOE_ID": 70274644, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424924, "tippecanoe:min:WOE_ID_EH": 23424801, "tippecanoe:sum:WOE_ID_EH": 70274644, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -72.90016, "tippecanoe:min:LABEL_X": -80.352106, "tippecanoe:sum:LABEL_X": -231.440641, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 8.72198, "tippecanoe:min:LABEL_Y": -12.976679, "tippecanoe:sum:LABEL_Y": -5.513775000000001, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321163, "tippecanoe:min:NE_ID": 1159320567, "tippecanoe:sum:NE_ID": 3477962891, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 8.666666666666666, "tippecanoe:mean:POP_EST": 18043518, "tippecanoe:mean:POP_RANK": 13.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 133694.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424881.333333333, "tippecanoe:mean:WOE_ID_EH": 23424881.333333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5.666666666666667, "tippecanoe:mean:LONG_LEN": 5.666666666666667, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -77.14688033333333, "tippecanoe:mean:LABEL_Y": -1.8379250000000003, "tippecanoe:mean:NE_ID": 1159320963.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.537109, 68.528235 ], [ 54.843750, 68.447662 ], [ 56.293945, 67.016009 ], [ 53.657227, 65.730626 ], [ 49.746094, 65.820782 ], [ 48.076172, 67.187000 ], [ 50.537109, 68.528235 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a77fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 17, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 32, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 30417856, "tippecanoe:min:POP_EST": 8082366, "tippecanoe:sum:POP_EST": 70622751, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 57, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 66983, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 102853, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": 23424764, "tippecanoe:sum:WOE_ID": 93699531, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424764, "tippecanoe:sum:WOE_ID_EH": 93699531, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 26, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 14.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 35, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 2.352018, "tippecanoe:min:LABEL_X": -1.36388, "tippecanoe:sum:LABEL_X": 1.0093100000000004, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 12.673048, "tippecanoe:min:LABEL_Y": 7.717639, "tippecanoe:sum:LABEL_Y": 39.522682, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320399, "tippecanoe:sum:NE_ID": 4637282900, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:mean:MAPCOLOR8": 1.75, "tippecanoe:mean:MAPCOLOR9": 2.75, "tippecanoe:mean:MAPCOLOR13": 8, "tippecanoe:mean:POP_EST": 17655687.75, "tippecanoe:mean:POP_RANK": 14.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 25713.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424882.75, "tippecanoe:mean:WOE_ID_EH": 23424882.75, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.675, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": 0.2523275000000001, "tippecanoe:mean:LABEL_Y": 9.8806705, "tippecanoe:mean:NE_ID": 1159320725, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 91.450195, 71.031249 ], [ 95.405273, 69.900118 ], [ 94.526367, 68.236823 ], [ 90.351562, 67.676085 ], [ 86.660156, 68.688521 ], [ 86.835938, 70.363091 ], [ 91.450195, 71.031249 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8201a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 5, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 17, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 16604026, "tippecanoe:min:POP_EST": 390353, "tippecanoe:sum:POP_EST": 28327862, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 100023, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:sum:GDP_MD": 178612, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 6056, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424834, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:sum:WOE_ID": 70274387, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424834, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:sum:WOE_ID_EH": 70274387, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -194, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -77.975855, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:sum:LABEL_X": -257.185951, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:min:LABEL_Y": 14.982133, "tippecanoe:sum:LABEL_Y": 53.518225, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320815, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:sum:NE_ID": 3477961773, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 1.6666666666666668, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 5.666666666666667, "tippecanoe:mean:POP_EST": 9442620.666666666, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 59537.333333333336, "tippecanoe:mean:GDP_YEAR": 2018.6666666666668, "tippecanoe:mean:WOE_ID": 23424795.666666669, "tippecanoe:mean:WOE_ID_EH": 23424795.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.333333333333333, "tippecanoe:mean:LONG_LEN": 6.333333333333333, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -64.66666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5666666666666666, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": -85.72865033333334, "tippecanoe:mean:LABEL_Y": 17.839408333333336, "tippecanoe:mean:NE_ID": 1159320591, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.636719, 72.501722 ], [ 50.625000, 71.173578 ], [ 48.735352, 69.854762 ], [ 44.252930, 69.778952 ], [ 41.088867, 70.959697 ], [ 42.451172, 72.369105 ], [ 47.636719, 72.501722 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8208dffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 10, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 10, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 30, "tippecanoe:count:ADM0_DIF": 10, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 10, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 20, "tippecanoe:count:GEOU_DIF": 10, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 10, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 10, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 10, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 40, "tippecanoe:count:MAPCOLOR8": 10, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR9": 10, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 44, "tippecanoe:count:MAPCOLOR13": 10, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 66, "tippecanoe:count:POP_EST": 10, "tippecanoe:max:POP_EST": 270625568, "tippecanoe:min:POP_EST": 5380508, "tippecanoe:sum:POP_EST": 652830176.3, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 151, "tippecanoe:count:POP_YEAR": 10, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 20190, "tippecanoe:count:GDP_MD": 10, "tippecanoe:max:GDP_MD": 2715518, "tippecanoe:min:GDP_MD": 4719, "tippecanoe:sum:GDP_MD": 9498423, "tippecanoe:count:GDP_YEAR": 10, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 20187, "tippecanoe:count:WOE_ID": 10, "tippecanoe:max:WOE_ID": 23424950, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 163973658, "tippecanoe:count:WOE_ID_EH": 10, "tippecanoe:max:WOE_ID_EH": 23424950, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 234248605, "tippecanoe:count:ADM0_A3_UN": 10, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -990, "tippecanoe:count:ADM0_A3_WB": 10, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -990, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 67, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 21, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 83, "tippecanoe:count:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 46, "tippecanoe:count:TINY": 10, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -990, "tippecanoe:count:HOMEPART": 10, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 10, "tippecanoe:count:MIN_ZOOM": 10, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 10, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 27.099999999999999, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 74.8, "tippecanoe:count:LABEL_X": 10, "tippecanoe:max:LABEL_X": 101.892949, "tippecanoe:min:LABEL_X": -102.289448, "tippecanoe:sum:LABEL_X": -111.72812399999997, "tippecanoe:count:LABEL_Y": 10, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": -0.954404, "tippecanoe:sum:LABEL_Y": 248.27622799999998, "tippecanoe:count:NE_ID": 10, "tippecanoe:max:NE_ID": 1159321261, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 11593208048, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.2, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.9, "tippecanoe:mean:MAPCOLOR9": 4.4, "tippecanoe:mean:MAPCOLOR13": 6.6, "tippecanoe:mean:POP_EST": 65283017.629999998, "tippecanoe:mean:POP_RANK": 15.1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 949842.3, "tippecanoe:mean:GDP_YEAR": 2018.7, "tippecanoe:mean:WOE_ID": 16397365.8, "tippecanoe:mean:WOE_ID_EH": 23424860.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.7, "tippecanoe:mean:LONG_LEN": 8.3, "tippecanoe:mean:ABBREV_LEN": 4.6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.71, "tippecanoe:mean:MAX_LABEL": 7.4799999999999999, "tippecanoe:mean:LABEL_X": -11.172812399999997, "tippecanoe:mean:LABEL_Y": 24.827622799999998, "tippecanoe:mean:NE_ID": 1159320804.8, "tippecanoe:count": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.498047, 67.458082 ], [ 32.783203, 66.372755 ], [ 31.508789, 64.867608 ], [ 28.300781, 64.453849 ], [ 26.103516, 65.494741 ], [ 27.026367, 66.998844 ], [ 30.498047, 67.458082 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8200a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 15, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 10269417, "tippecanoe:min:POP_EST": 5997, "tippecanoe:sum:POP_EST": 10275414, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 19, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 215, "tippecanoe:sum:GDP_MD": 239000, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424939, "tippecanoe:min:WOE_ID": 23424925, "tippecanoe:sum:WOE_ID": 46849864, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424939, "tippecanoe:min:WOE_ID_EH": 23424925, "tippecanoe:sum:WOE_ID_EH": 46849864, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 33, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -56.332352, "tippecanoe:sum:LABEL_X": -64.604106, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 39.606675, "tippecanoe:sum:LABEL_Y": 86.647019, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321187, "tippecanoe:min:NE_ID": 1159320647, "tippecanoe:sum:NE_ID": 2318641834, "tippecanoe:mean:scalerank": 1.5, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0.5, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 5137707, "tippecanoe:mean:POP_RANK": 9.5, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 119500, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424932, "tippecanoe:mean:WOE_ID_EH": 23424932, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 15.5, "tippecanoe:mean:LONG_LEN": 16.5, "tippecanoe:mean:ABBREV_LEN": 6.5, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -32.302053, "tippecanoe:mean:LABEL_Y": 43.3235095, "tippecanoe:mean:NE_ID": 1159320917, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.677734, 78.025574 ], [ 67.500000, 77.702234 ], [ 69.565430, 76.047916 ], [ 65.126953, 74.867889 ], [ 58.798828, 75.163300 ], [ 55.634766, 76.669656 ], [ 59.677734, 78.025574 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820197fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 30, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 4, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 25, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 24, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 27, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 23, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 106631, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 276430, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 35, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 3855, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 6622, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2006, "tippecanoe:sum:GDP_YEAR": 10075, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": 23424737, "tippecanoe:sum:WOE_ID": 149741898, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": 23424737, "tippecanoe:sum:WOE_ID_EH": 149741898, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 18, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 91, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 39, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 20, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -395, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 25, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 49, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": -61.790612, "tippecanoe:min:LABEL_X": -64.779172, "tippecanoe:sum:LABEL_X": -316.44404499999998, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 18.426606, "tippecanoe:min:LABEL_Y": 16.73717, "tippecanoe:sum:LABEL_Y": 88.344033, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 5796603821, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0.8, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 4.8, "tippecanoe:mean:MAPCOLOR9": 5.4, "tippecanoe:mean:MAPCOLOR13": 4.6, "tippecanoe:mean:POP_EST": 55286, "tippecanoe:mean:POP_RANK": 7, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1324.4, "tippecanoe:mean:GDP_YEAR": 2015, "tippecanoe:mean:WOE_ID": 29948379.6, "tippecanoe:mean:WOE_ID_EH": 29948379.6, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.8, "tippecanoe:mean:LONG_LEN": 18.2, "tippecanoe:mean:ABBREV_LEN": 7.8, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -79, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9.8, "tippecanoe:mean:LABEL_X": -63.28880899999999, "tippecanoe:mean:LABEL_Y": 17.6688066, "tippecanoe:mean:NE_ID": 1159320764.2, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.227539, 72.369105 ], [ 63.500977, 72.087432 ], [ 65.302734, 70.539543 ], [ 62.358398, 69.395783 ], [ 57.832031, 69.672358 ], [ 55.546875, 71.102543 ], [ 58.227539, 72.369105 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82106ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 36, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 21, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 22, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 28, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 1394973, "tippecanoe:min:POP_EST": 71808, "tippecanoe:sum:POP_EST": 3411314, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 70, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 14133, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 24269, "tippecanoe:min:GDP_MD": 582, "tippecanoe:sum:GDP_MD": 41876, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 14133, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424981, "tippecanoe:min:WOE_ID": 23424754, "tippecanoe:sum:WOE_ID": 163974191, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424981, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:sum:WOE_ID_EH": 163974191, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 78, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 92, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 35, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -284, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 7, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 31, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 65.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": -55.91094, "tippecanoe:min:LABEL_X": -61.344958, "tippecanoe:sum:LABEL_X": -419.001901, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 15.458829, "tippecanoe:min:LABEL_Y": 4.143987, "tippecanoe:sum:LABEL_Y": 75.87001300000002, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321409, "tippecanoe:min:NE_ID": 1159320449, "tippecanoe:sum:NE_ID": 8115246839, "tippecanoe:mean:scalerank": 2.142857142857143, "tippecanoe:mean:LABELRANK": 5.142857142857143, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.142857142857143, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6.428571428571429, "tippecanoe:mean:POP_EST": 487330.5714285714, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5982.285714285715, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424884.42857143, "tippecanoe:mean:WOE_ID_EH": 23424884.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11.142857142857143, "tippecanoe:mean:LONG_LEN": 13.142857142857143, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -40.57142857142857, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.428571428571429, "tippecanoe:mean:MAX_LABEL": 9.357142857142858, "tippecanoe:mean:LABEL_X": -59.857414428571427, "tippecanoe:mean:LABEL_Y": 10.838573285714288, "tippecanoe:mean:NE_ID": 1159320977, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 57.832031, 69.672358 ], [ 62.358398, 69.395783 ], [ 63.457031, 67.925140 ], [ 60.424805, 66.757250 ], [ 56.293945, 67.016009 ], [ 54.843750, 68.447662 ], [ 57.832031, 69.672358 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8201b7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 10, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 10, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 52, "tippecanoe:count:ADM0_DIF": 10, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 5, "tippecanoe:count:LEVEL": 10, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 20, "tippecanoe:count:GEOU_DIF": 10, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 10, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 10, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 10, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 33, "tippecanoe:count:MAPCOLOR8": 10, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 10, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 37, "tippecanoe:count:MAPCOLOR13": 10, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 45, "tippecanoe:count:POP_EST": 10, "tippecanoe:max:POP_EST": 28515829, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 57315996, "tippecanoe:count:POP_RANK": 10, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_YEAR": 10, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 20189, "tippecanoe:count:GDP_MD": 10, "tippecanoe:max:GDP_MD": 482359, "tippecanoe:min:GDP_MD": 240, "tippecanoe:sum:GDP_MD": 730711, "tippecanoe:count:GDP_YEAR": 10, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 20164, "tippecanoe:count:WOE_ID": 10, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 187398728, "tippecanoe:count:WOE_ID_EH": 10, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 211948628, "tippecanoe:count:ADM0_A3_UN": 10, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -990, "tippecanoe:count:ADM0_A3_WB": 10, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -990, "tippecanoe:count:NAME_LEN": 10, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 109, "tippecanoe:count:LONG_LEN": 10, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 130, "tippecanoe:count:ABBREV_LEN": 10, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 58, "tippecanoe:count:TINY": 10, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -786, "tippecanoe:count:HOMEPART": 10, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -490, "tippecanoe:count:MIN_ZOOM": 10, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 10, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 43, "tippecanoe:count:MAX_LABEL": 10, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 92.5, "tippecanoe:count:LABEL_X": 10, "tippecanoe:max:LABEL_X": -64.599381, "tippecanoe:min:LABEL_X": -81.24055, "tippecanoe:sum:LABEL_X": -725.4550589999999, "tippecanoe:count:LABEL_Y": 10, "tippecanoe:max:LABEL_Y": 26.401789, "tippecanoe:min:LABEL_Y": 7.182476, "tippecanoe:sum:LABEL_Y": 181.523907, "tippecanoe:count:NE_ID": 10, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320415, "tippecanoe:sum:NE_ID": 11593208594, "tippecanoe:mean:scalerank": 1.6, "tippecanoe:mean:LABELRANK": 5.2, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:mean:MAPCOLOR7": 3.3, "tippecanoe:mean:MAPCOLOR8": 3.3, "tippecanoe:mean:MAPCOLOR9": 3.7, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 5731599.6, "tippecanoe:mean:POP_RANK": 10.6, "tippecanoe:mean:POP_YEAR": 2018.9, "tippecanoe:mean:GDP_MD": 73071.1, "tippecanoe:mean:GDP_YEAR": 2016.4, "tippecanoe:mean:WOE_ID": 18739872.8, "tippecanoe:mean:WOE_ID_EH": 21194862.8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10.9, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 5.8, "tippecanoe:mean:TINY": -78.6, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0.5, "tippecanoe:mean:MIN_LABEL": 4.3, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": -72.5455059, "tippecanoe:mean:LABEL_Y": 18.1523907, "tippecanoe:mean:NE_ID": 1159320859.4, "tippecanoe:count": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 50.625000, 71.173578 ], [ 55.546875, 71.102543 ], [ 57.832031, 69.672358 ], [ 54.843750, 68.447662 ], [ 50.537109, 68.528235 ], [ 48.735352, 69.854762 ], [ 50.625000, 71.173578 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820187fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 63918, "tippecanoe:min:POP_EST": 63918, "tippecanoe:sum:POP_EST": 63918, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 7484, "tippecanoe:min:GDP_MD": 7484, "tippecanoe:sum:GDP_MD": 7484, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424756, "tippecanoe:min:WOE_ID": 23424756, "tippecanoe:sum:WOE_ID": 23424756, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424756, "tippecanoe:min:WOE_ID_EH": 23424756, "tippecanoe:sum:WOE_ID_EH": 23424756, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": 4, "tippecanoe:sum:TINY": 4, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -64.763573, "tippecanoe:min:LABEL_X": -64.763573, "tippecanoe:sum:LABEL_X": -64.763573, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 32.296592, "tippecanoe:min:LABEL_Y": 32.296592, "tippecanoe:sum:LABEL_Y": 32.296592, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320705, "tippecanoe:min:NE_ID": 1159320705, "tippecanoe:sum:NE_ID": 1159320705, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 63918, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7484, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424756, "tippecanoe:mean:WOE_ID_EH": 23424756, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 4, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -64.763573, "tippecanoe:mean:LABEL_Y": 32.296592, "tippecanoe:mean:NE_ID": 1159320705, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.790039, 73.898111 ], [ 55.590820, 73.849286 ], [ 58.227539, 72.369105 ], [ 55.546875, 71.102543 ], [ 50.625000, 71.173578 ], [ 47.636719, 72.501722 ], [ 49.790039, 73.898111 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820b5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 5, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 5, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 5, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 5, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 10, "tippecanoe:count:GEOU_DIF": 5, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 5, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 5, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 5, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 5, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 21, "tippecanoe:count:MAPCOLOR9": 5, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 18, "tippecanoe:count:MAPCOLOR13": 5, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 5, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 1920922, "tippecanoe:sum:POP_EST": 37861934, "tippecanoe:count:POP_RANK": 5, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 64, "tippecanoe:count:POP_YEAR": 5, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 10095, "tippecanoe:count:GDP_MD": 5, "tippecanoe:max:GDP_MD": 23578, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 46639, "tippecanoe:count:GDP_YEAR": 5, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 10095, "tippecanoe:count:WOE_ID": 5, "tippecanoe:max:WOE_ID": 23424943, "tippecanoe:min:WOE_ID": 23424821, "tippecanoe:sum:WOE_ID": 117124424, "tippecanoe:count:WOE_ID_EH": 5, "tippecanoe:max:WOE_ID_EH": 23424943, "tippecanoe:min:WOE_ID_EH": 23424821, "tippecanoe:sum:WOE_ID_EH": 117124424, "tippecanoe:count:ADM0_A3_UN": 5, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -495, "tippecanoe:count:ADM0_A3_WB": 5, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -495, "tippecanoe:count:NAME_LEN": 5, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 42, "tippecanoe:count:LONG_LEN": 5, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 46, "tippecanoe:count:ABBREV_LEN": 5, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 22, "tippecanoe:count:TINY": 5, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -495, "tippecanoe:count:HOMEPART": 5, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 5, "tippecanoe:count:MIN_ZOOM": 5, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 5, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 18.7, "tippecanoe:count:MAX_LABEL": 5, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 44, "tippecanoe:count:LABEL_X": 5, "tippecanoe:max:LABEL_X": -9.740299, "tippecanoe:min:LABEL_X": -14.998318, "tippecanoe:sum:LABEL_X": -64.057735, "tippecanoe:count:LABEL_Y": 5, "tippecanoe:max:LABEL_Y": 19.587062, "tippecanoe:min:LABEL_Y": 10.618516, "tippecanoe:sum:LABEL_Y": 71.149136, "tippecanoe:count:NE_ID": 5, "tippecanoe:max:NE_ID": 1159321243, "tippecanoe:min:NE_ID": 1159320795, "tippecanoe:sum:NE_ID": 5796604709, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.2, "tippecanoe:mean:MAPCOLOR9": 3.6, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 7572386.8, "tippecanoe:mean:POP_RANK": 12.8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 9327.8, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424884.8, "tippecanoe:mean:WOE_ID_EH": 23424884.8, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.4, "tippecanoe:mean:LONG_LEN": 9.2, "tippecanoe:mean:ABBREV_LEN": 4.4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7399999999999999, "tippecanoe:mean:MAX_LABEL": 8.8, "tippecanoe:mean:LABEL_X": -12.811547, "tippecanoe:mean:LABEL_Y": 14.229827199999999, "tippecanoe:mean:NE_ID": 1159320941.8, "tippecanoe:count": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.441406, 71.286699 ], [ 86.835938, 70.363091 ], [ 86.660156, 68.688521 ], [ 82.749023, 67.958148 ], [ 78.750000, 68.768235 ], [ 78.222656, 70.407348 ], [ 82.441406, 71.286699 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820b47fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 549935, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 549935, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1981, "tippecanoe:min:GDP_MD": 1981, "tippecanoe:sum:GDP_MD": 1981, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424794, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 23424794, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424794, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 23424794, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 22, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -23.639434, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -23.639434, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 15.074761, "tippecanoe:min:LABEL_Y": 15.074761, "tippecanoe:sum:LABEL_Y": 15.074761, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320523, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 1159320523, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 549935, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1981, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424794, "tippecanoe:mean:WOE_ID_EH": 23424794, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 22, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -23.639434, "tippecanoe:mean:LABEL_Y": 15.074761, "tippecanoe:mean:NE_ID": 1159320523, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 73.564453, 71.102543 ], [ 78.222656, 70.407348 ], [ 78.750000, 68.768235 ], [ 75.234375, 67.875541 ], [ 71.103516, 68.496040 ], [ 69.960938, 70.080562 ], [ 73.564453, 71.102543 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820837fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 197097, "tippecanoe:min:POP_EST": 197097, "tippecanoe:sum:POP_EST": 197097, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 9, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 852, "tippecanoe:min:GDP_MD": 852, "tippecanoe:sum:GDP_MD": 852, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424992, "tippecanoe:sum:WOE_ID": 23424992, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424992, "tippecanoe:sum:WOE_ID_EH": 23424992, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -172.438241, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:sum:LABEL_X": -172.438241, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:min:LABEL_Y": -13.639139, "tippecanoe:sum:LABEL_Y": -13.639139, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159321423, "tippecanoe:sum:NE_ID": 1159321423, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 197097, "tippecanoe:mean:POP_RANK": 9, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 852, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424992, "tippecanoe:mean:WOE_ID_EH": 23424992, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -172.438241, "tippecanoe:mean:LABEL_Y": -13.639139, "tippecanoe:mean:NE_ID": 1159321423, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.646484, 64.661517 ], [ 9.711914, 63.528971 ], [ 8.920898, 62.308794 ], [ 6.152344, 62.206512 ], [ 3.999023, 63.332413 ], [ 4.702148, 64.567319 ], [ 7.646484, 64.661517 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82088ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.412109, 63.470145 ], [ 24.521484, 62.471724 ], [ 23.818359, 60.973107 ], [ 21.269531, 60.457218 ], [ 19.291992, 61.417750 ], [ 19.731445, 62.915233 ], [ 22.412109, 63.470145 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8209affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1620, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 1620, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 3, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 3, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2018, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 2018, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 10, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 10, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2003, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 2003, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424904, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:sum:WOE_ID": 23424904, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424904, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:sum:WOE_ID_EH": 23424904, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 4, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 4, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:min:LABEL_X": -169.862565, "tippecanoe:sum:LABEL_X": -169.862565, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -19.045956, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:sum:LABEL_Y": -19.045956, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321133, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:sum:NE_ID": 1159321133, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 1620, "tippecanoe:mean:POP_RANK": 3, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 10, "tippecanoe:mean:GDP_YEAR": 2003, "tippecanoe:mean:WOE_ID": 23424904, "tippecanoe:mean:WOE_ID_EH": 23424904, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4, "tippecanoe:mean:LONG_LEN": 4, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -169.862565, "tippecanoe:mean:LABEL_Y": -19.045956, "tippecanoe:mean:NE_ID": 1159321133, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.999023, 63.332413 ], [ 6.152344, 62.206512 ], [ 5.493164, 60.930432 ], [ 2.768555, 60.737686 ], [ 0.527344, 61.835413 ], [ 1.098633, 63.134503 ], [ 3.999023, 63.332413 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8210effffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.897461, 62.492028 ], [ 63.457031, 62.124436 ], [ 64.291992, 60.500525 ], [ 61.787109, 59.288332 ], [ 58.491211, 59.645540 ], [ 57.436523, 61.206798 ], [ 59.897461, 62.492028 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8210cffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 22, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 18952038, "tippecanoe:sum:POP_EST": 63890750, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 282318, "tippecanoe:sum:GDP_MD": 727763, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424782, "tippecanoe:min:WOE_ID": 23424747, "tippecanoe:sum:WOE_ID": 46849529, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424782, "tippecanoe:min:WOE_ID_EH": 23424747, "tippecanoe:sum:WOE_ID_EH": 46849529, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 14, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 14, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 3.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 13.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -64.173331, "tippecanoe:min:LABEL_X": -72.318871, "tippecanoe:sum:LABEL_X": -136.49220200000003, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -38.151771, "tippecanoe:sum:LABEL_Y": -71.65293, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320493, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 2318640824, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 31945375, "tippecanoe:mean:POP_RANK": 14.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 363881.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424764.5, "tippecanoe:mean:WOE_ID_EH": 23424764.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.85, "tippecanoe:mean:MAX_LABEL": 6.85, "tippecanoe:mean:LABEL_X": -68.24610100000001, "tippecanoe:mean:LABEL_Y": -35.826465, "tippecanoe:mean:NE_ID": 1159320412, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 64.291992, 60.500525 ], [ 67.631836, 59.998986 ], [ 68.247070, 58.309489 ], [ 65.786133, 57.160078 ], [ 62.666016, 57.633640 ], [ 61.787109, 59.288332 ], [ 64.291992, 60.500525 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82109ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 9, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -99, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": -99, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": -99, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": -99, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 29, "tippecanoe:sum:NAME_LEN": 29, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 16, "tippecanoe:sum:ABBREV_LEN": 16, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 7, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 7.7, "tippecanoe:sum:MIN_LABEL": 7.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -73.31378, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -73.31378, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.511034, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -49.511034, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1729635141, "tippecanoe:sum:NE_ID": 1729635141, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 9, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -99, "tippecanoe:mean:WOE_ID_EH": -99, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 29, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 16, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 7, "tippecanoe:mean:MIN_LABEL": 7.7, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -73.31378, "tippecanoe:mean:LABEL_Y": -49.511034, "tippecanoe:mean:NE_ID": 1729635141, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.635742, 52.616390 ], [ 54.448242, 52.375599 ], [ 55.371094, 50.736455 ], [ 53.657227, 49.382373 ], [ 51.064453, 49.610710 ], [ 50.009766, 51.206883 ], [ 51.635742, 52.616390 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "822107fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 1, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3398, "tippecanoe:min:POP_EST": 3398, "tippecanoe:sum:POP_EST": 3398, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 282, "tippecanoe:min:GDP_MD": 282, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2012, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 2012, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424814, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID": 23424814, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424814, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:sum:WOE_ID_EH": 23424814, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 27, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:sum:LONG_LEN": 27, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -58.738602, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_X": -58.738602, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -51.608913, "tippecanoe:sum:LABEL_Y": -51.608913, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320711, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:sum:NE_ID": 1159320711, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 1, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 3398, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 282, "tippecanoe:mean:GDP_YEAR": 2012, "tippecanoe:mean:WOE_ID": 23424814, "tippecanoe:mean:WOE_ID_EH": 23424814, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 27, "tippecanoe:mean:ABBREV_LEN": 8, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -58.738602, "tippecanoe:mean:LABEL_Y": -51.608913, "tippecanoe:mean:NE_ID": 1159320711, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 59.985352, 51.727028 ], [ 62.753906, 51.289406 ], [ 63.413086, 49.582226 ], [ 61.479492, 48.312428 ], [ 58.886719, 48.719961 ], [ 58.095703, 50.429518 ], [ 59.985352, 51.727028 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a27fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 82.880859, 66.319861 ], [ 86.352539, 65.421730 ], [ 86.132812, 63.801894 ], [ 82.836914, 63.094758 ], [ 79.497070, 63.937372 ], [ 79.321289, 65.549367 ], [ 82.880859, 66.319861 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82204ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 30, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 30, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424955, "tippecanoe:sum:WOE_ID": 23424955, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424955, "tippecanoe:sum:WOE_ID_EH": 23424955, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 19, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 3, "tippecanoe:sum:TINY": 3, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -31.063179, "tippecanoe:sum:LABEL_X": -31.063179, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -55.683402, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -55.683402, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320731, "tippecanoe:sum:NE_ID": 1159320731, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 30, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424955, "tippecanoe:mean:WOE_ID_EH": 23424955, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 19, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:mean:TINY": 3, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -31.063179, "tippecanoe:mean:LABEL_Y": -55.683402, "tippecanoe:mean:NE_ID": 1159320731, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 87.583008, 50.903033 ], [ 89.824219, 49.894634 ], [ 89.560547, 48.136767 ], [ 87.275391, 47.368594 ], [ 85.078125, 48.341646 ], [ 85.166016, 50.120578 ], [ 87.583008, 50.903033 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820417fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 7169455, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 7169455, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 18173, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 18173, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424872, "tippecanoe:min:WOE_ID": 23424872, "tippecanoe:sum:WOE_ID": 23424872, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424872, "tippecanoe:min:WOE_ID_EH": 23424872, "tippecanoe:sum:WOE_ID_EH": 23424872, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 4, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 4, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 102.533912, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 102.533912, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 19.431821, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 19.431821, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321011, "tippecanoe:min:NE_ID": 1159321011, "tippecanoe:sum:NE_ID": 1159321011, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 7169455, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 18173, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424872, "tippecanoe:mean:WOE_ID_EH": 23424872, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 102.533912, "tippecanoe:mean:LABEL_Y": 19.431821, "tippecanoe:mean:NE_ID": 1159321011, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 139.702148, 73.946791 ], [ 145.371094, 73.124945 ], [ 145.327148, 71.328950 ], [ 140.712891, 70.363091 ], [ 135.703125, 71.074056 ], [ 134.692383, 72.842021 ], [ 139.702148, 73.946791 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8204a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 16, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 54045420, "tippecanoe:sum:POP_EST": 1490088756, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 16, "tippecanoe:sum:POP_RANK": 50, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:min:GDP_MD": 76085, "tippecanoe:sum:GDP_MD": 3488562, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424960, "tippecanoe:min:WOE_ID": 23424763, "tippecanoe:sum:WOE_ID": 70274571, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424960, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 70274571, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 20, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 15, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 7.4, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 101.073198, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 276.2358, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": 15.45974, "tippecanoe:sum:LABEL_Y": 59.72044699999999, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321305, "tippecanoe:min:NE_ID": 1159320847, "tippecanoe:sum:NE_ID": 3477963219, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.6666666666666667, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 5.333333333333333, "tippecanoe:mean:POP_EST": 496696252, "tippecanoe:mean:POP_RANK": 16.666666666666669, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1162854, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424857, "tippecanoe:mean:WOE_ID_EH": 23424857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.666666666666667, "tippecanoe:mean:LONG_LEN": 6.666666666666667, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.466666666666667, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": 92.0786, "tippecanoe:mean:LABEL_Y": 19.906815666666664, "tippecanoe:mean:NE_ID": 1159321073, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 135.703125, 71.074056 ], [ 140.712891, 70.363091 ], [ 141.064453, 68.576441 ], [ 137.197266, 67.542167 ], [ 132.758789, 68.155209 ], [ 131.660156, 69.900118 ], [ 135.703125, 71.074056 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820427fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 3225167, "tippecanoe:min:POP_EST": 3225167, "tippecanoe:sum:POP_EST": 3225167, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 13996, "tippecanoe:min:GDP_MD": 13996, "tippecanoe:sum:GDP_MD": 13996, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424887, "tippecanoe:min:WOE_ID": 23424887, "tippecanoe:sum:WOE_ID": 23424887, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424887, "tippecanoe:min:WOE_ID_EH": 23424887, "tippecanoe:sum:WOE_ID_EH": 23424887, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 8, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 8, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 104.150405, "tippecanoe:sum:LABEL_X": 104.150405, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 45.997488, "tippecanoe:min:LABEL_Y": 45.997488, "tippecanoe:sum:LABEL_Y": 45.997488, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321071, "tippecanoe:min:NE_ID": 1159321071, "tippecanoe:sum:NE_ID": 1159321071, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 3225167, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 13996, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424887, "tippecanoe:mean:WOE_ID_EH": 23424887, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 104.150405, "tippecanoe:mean:LABEL_Y": 45.997488, "tippecanoe:mean:NE_ID": 1159321071, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 136.933594, 79.318942 ], [ 145.371094, 78.534311 ], [ 145.371094, 76.730314 ], [ 138.999023, 75.748125 ], [ 132.011719, 76.382969 ], [ 130.034180, 78.125454 ], [ 136.933594, 79.318942 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82058ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 21, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 23, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -65, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 1600424416, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 80, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 12108, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 15209543, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 140549103, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 140549103, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 47, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 32, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -594, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 20.2, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 47.2, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 106.337289, "tippecanoe:min:LABEL_X": 19.01705, "tippecanoe:sum:LABEL_X": 465.849063, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 24.214956, "tippecanoe:sum:LABEL_Y": 213.74752999999999, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 6955924702, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.8333333333333337, "tippecanoe:mean:MAPCOLOR13": -10.833333333333334, "tippecanoe:mean:POP_EST": 266737402.66666667, "tippecanoe:mean:POP_RANK": 13.333333333333334, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 2534923.8333333337, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424850.5, "tippecanoe:mean:WOE_ID_EH": 23424850.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.833333333333333, "tippecanoe:mean:LONG_LEN": 7.833333333333333, "tippecanoe:mean:ABBREV_LEN": 5.333333333333333, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.8333333333333334, "tippecanoe:mean:MIN_LABEL": 3.3666666666666669, "tippecanoe:mean:MAX_LABEL": 7.866666666666667, "tippecanoe:mean:LABEL_X": 77.6415105, "tippecanoe:mean:LABEL_Y": 35.62458833333333, "tippecanoe:mean:NE_ID": 1159320783.6666668, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.803711, 73.378215 ], [ 134.692383, 72.842021 ], [ 135.703125, 71.074056 ], [ 131.660156, 69.900118 ], [ 126.562500, 70.348318 ], [ 124.760742, 72.046840 ], [ 128.803711, 73.378215 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820517fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 16, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 9, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 20, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 10023318, "tippecanoe:min:POP_EST": 2957731, "tippecanoe:sum:POP_EST": 16701431, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 38, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 48047, "tippecanoe:min:GDP_MD": 13672, "tippecanoe:sum:GDP_MD": 79196, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424823, "tippecanoe:min:WOE_ID": 23424741, "tippecanoe:sum:WOE_ID": 70274307, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424823, "tippecanoe:min:WOE_ID_EH": 23424741, "tippecanoe:sum:WOE_ID_EH": 70274307, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 28, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 47.210994, "tippecanoe:min:LABEL_X": 43.735724, "tippecanoe:sum:LABEL_X": 135.74728199999999, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 41.870087, "tippecanoe:min:LABEL_Y": 40.402387, "tippecanoe:sum:LABEL_Y": 122.731551, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159320779, "tippecanoe:min:NE_ID": 1159320333, "tippecanoe:sum:NE_ID": 3477961493, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 6.666666666666667, "tippecanoe:mean:POP_EST": 5567143.666666667, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 26398.666666666668, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424769, "tippecanoe:mean:WOE_ID_EH": 23424769, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.333333333333333, "tippecanoe:mean:MAX_LABEL": 9.333333333333334, "tippecanoe:mean:LABEL_X": 45.24909399999999, "tippecanoe:mean:LABEL_Y": 40.910517, "tippecanoe:mean:NE_ID": 1159320497.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.630859, 76.980149 ], [ 119.926758, 75.375605 ], [ 116.235352, 73.885918 ], [ 109.863281, 73.861506 ], [ 105.952148, 75.297735 ], [ 108.808594, 76.930555 ], [ 116.630859, 76.980149 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8205affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 7, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 7, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 25, "tippecanoe:count:ADM0_DIF": 7, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 7, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 14, "tippecanoe:count:GEOU_DIF": 7, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 7, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 7, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 7, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 26, "tippecanoe:count:MAPCOLOR8": 7, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 7, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 32, "tippecanoe:count:MAPCOLOR13": 7, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 43, "tippecanoe:count:POP_EST": 7, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 36175, "tippecanoe:sum:POP_EST": 309943904, "tippecanoe:count:POP_RANK": 7, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 93, "tippecanoe:count:POP_YEAR": 7, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 14123, "tippecanoe:count:GDP_MD": 7, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 596, "tippecanoe:sum:GDP_MD": 413360, "tippecanoe:count:GDP_YEAR": 7, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 14126, "tippecanoe:count:WOE_ID": 7, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549348, "tippecanoe:count:WOE_ID_EH": 7, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 160619615, "tippecanoe:count:ADM0_A3_UN": 7, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -693, "tippecanoe:count:ADM0_A3_WB": 7, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -693, "tippecanoe:count:NAME_LEN": 7, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 69, "tippecanoe:count:LONG_LEN": 7, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 80, "tippecanoe:count:ABBREV_LEN": 7, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 31, "tippecanoe:count:TINY": 7, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -589, "tippecanoe:count:HOMEPART": 7, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -93, "tippecanoe:count:MIN_ZOOM": 7, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 7, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 24.7, "tippecanoe:count:MAX_LABEL": 7, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 56.5, "tippecanoe:count:LABEL_X": 7, "tippecanoe:max:LABEL_X": 74.532637, "tippecanoe:min:LABEL_X": 58.676647, "tippecanoe:sum:LABEL_X": 468.22810400000005, "tippecanoe:count:LABEL_Y": 7, "tippecanoe:max:LABEL_Y": 45.978332, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 270.888207, "tippecanoe:count:NE_ID": 7, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 8115247435, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5714285714285718, "tippecanoe:mean:ADM0_DIF": 0.14285714285714286, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.14285714285714286, "tippecanoe:mean:MAPCOLOR7": 3.7142857142857146, "tippecanoe:mean:MAPCOLOR8": 3.857142857142857, "tippecanoe:mean:MAPCOLOR9": 4.571428571428571, "tippecanoe:mean:MAPCOLOR13": 6.142857142857143, "tippecanoe:mean:POP_EST": 44277700.571428578, "tippecanoe:mean:POP_RANK": 13.285714285714287, "tippecanoe:mean:POP_YEAR": 2017.5714285714287, "tippecanoe:mean:GDP_MD": 59051.42857142857, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 20078478.285714289, "tippecanoe:mean:WOE_ID_EH": 22945659.285714289, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.857142857142858, "tippecanoe:mean:LONG_LEN": 11.428571428571429, "tippecanoe:mean:ABBREV_LEN": 4.428571428571429, "tippecanoe:mean:TINY": -84.14285714285714, "tippecanoe:mean:HOMEPART": -13.285714285714287, "tippecanoe:mean:MIN_ZOOM": 0.7142857142857143, "tippecanoe:mean:MIN_LABEL": 3.5285714285714286, "tippecanoe:mean:MAX_LABEL": 8.071428571428572, "tippecanoe:mean:LABEL_X": 66.88972914285715, "tippecanoe:mean:LABEL_Y": 38.69831528571429, "tippecanoe:mean:NE_ID": 1159321062.142857, "tippecanoe:count": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 119.926758, 75.375605 ], [ 126.870117, 75.095633 ], [ 128.803711, 73.378215 ], [ 124.760742, 72.046840 ], [ 118.959961, 72.289067 ], [ 116.235352, 73.885918 ], [ 119.926758, 75.375605 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8205b7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 13, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 15, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 13, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 34, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 973560, "tippecanoe:sum:POP_EST": 147310371, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 56, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 8071, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 95912, "tippecanoe:min:GDP_MD": 3324, "tippecanoe:sum:GDP_MD": 139653, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 8070, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23425002, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 70274508, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23425002, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 70274508, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -396, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 46.731595, "tippecanoe:min:LABEL_X": 39.0886, "tippecanoe:sum:LABEL_X": 174.193403, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 44.781253, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321425, "tippecanoe:min:NE_ID": 1159320541, "tippecanoe:sum:NE_ID": 4637283842, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.25, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.25, "tippecanoe:mean:MAPCOLOR13": 8.5, "tippecanoe:mean:POP_EST": 36827592.75, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 34913.25, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 17568627, "tippecanoe:mean:WOE_ID_EH": 17568627, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.75, "tippecanoe:mean:LONG_LEN": 7.75, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 1, "tippecanoe:mean:MIN_LABEL": 3.375, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 43.54835075, "tippecanoe:mean:LABEL_Y": 11.19531325, "tippecanoe:mean:NE_ID": 1159320960.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 115.927734, 70.801366 ], [ 118.300781, 69.224997 ], [ 115.751953, 67.759398 ], [ 111.093750, 67.776025 ], [ 108.413086, 69.224997 ], [ 110.566406, 70.801366 ], [ 115.927734, 70.801366 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a4ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 18, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 6, "tippecanoe:count:LABELRANK": 18, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 86, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 18, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 2, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 65, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 52, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 74, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 18, "tippecanoe:max:POP_EST": 100388073, "tippecanoe:min:POP_EST": 7850, "tippecanoe:sum:POP_EST": 286398180, "tippecanoe:count:POP_RANK": 18, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 218, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 36334, "tippecanoe:count:GDP_MD": 18, "tippecanoe:max:GDP_MD": 761425, "tippecanoe:min:GDP_MD": 280, "tippecanoe:sum:GDP_MD": 2142290, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 36323, "tippecanoe:count:WOE_ID": 18, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 282607218, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 378916586, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 151, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 157, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 80, "tippecanoe:count:TINY": 18, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1577, "tippecanoe:count:HOMEPART": 18, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -182, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 14, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 77.30000000000001, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 161.7, "tippecanoe:count:LABEL_X": 18, "tippecanoe:max:LABEL_X": 35.992892, "tippecanoe:min:LABEL_X": 16.37241, "tippecanoe:sum:LABEL_X": 501.7997449999999, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 26.186173, "tippecanoe:sum:LABEL_Y": 692.236434, "tippecanoe:count:NE_ID": 18, "tippecanoe:max:NE_ID": 1159321345, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 20867775124, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 4.777777777777778, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1111111111111111, "tippecanoe:mean:MAPCOLOR7": 3.611111111111111, "tippecanoe:mean:MAPCOLOR8": 2.888888888888889, "tippecanoe:mean:MAPCOLOR9": 4.111111111111111, "tippecanoe:mean:MAPCOLOR13": 0.5555555555555556, "tippecanoe:mean:POP_EST": 15911010, "tippecanoe:mean:POP_RANK": 12.11111111111111, "tippecanoe:mean:POP_YEAR": 2018.5555555555557, "tippecanoe:mean:GDP_MD": 119016.11111111111, "tippecanoe:mean:GDP_YEAR": 2017.9444444444444, "tippecanoe:mean:WOE_ID": 15700401, "tippecanoe:mean:WOE_ID_EH": 21050921.444444445, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.38888888888889, "tippecanoe:mean:LONG_LEN": 8.722222222222222, "tippecanoe:mean:ABBREV_LEN": 4.444444444444445, "tippecanoe:mean:TINY": -87.61111111111112, "tippecanoe:mean:HOMEPART": -10.11111111111111, "tippecanoe:mean:MIN_ZOOM": 0.7777777777777778, "tippecanoe:mean:MIN_LABEL": 4.294444444444445, "tippecanoe:mean:MAX_LABEL": 8.983333333333333, "tippecanoe:mean:LABEL_X": 27.877763611111108, "tippecanoe:mean:LABEL_Y": 38.45757966666667, "tippecanoe:mean:NE_ID": 1159320840.2222224, "tippecanoe:count": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.952148, 75.297735 ], [ 109.863281, 73.861506 ], [ 107.402344, 72.248917 ], [ 101.777344, 71.992578 ], [ 97.734375, 73.264704 ], [ 99.272461, 74.959392 ], [ 105.952148, 75.297735 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8205a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 29, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 24, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 26, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 46, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 82913906, "tippecanoe:min:POP_EST": 1641172, "tippecanoe:sum:POP_EST": 192344368, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 110, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 38574, "tippecanoe:sum:GDP_MD": 1973427, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2015, "tippecanoe:sum:GDP_YEAR": 16147, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424956, "tippecanoe:min:WOE_ID": 23424753, "tippecanoe:sum:WOE_ID": 187399013, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424956, "tippecanoe:min:WOE_ID_EH": 23424753, "tippecanoe:sum:WOE_ID_EH": 187399013, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 49, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 49, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 27.2, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 66.2, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 54.931495, "tippecanoe:min:LABEL_X": 36.375991, "tippecanoe:sum:LABEL_X": 366.559003, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 35.006636, "tippecanoe:min:LABEL_Y": 23.806908, "tippecanoe:sum:LABEL_Y": 235.585807, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321295, "tippecanoe:min:NE_ID": 1159320413, "tippecanoe:sum:NE_ID": 9274567842, "tippecanoe:mean:scalerank": 0.625, "tippecanoe:mean:LABELRANK": 3.625, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.75, "tippecanoe:mean:POP_EST": 24043046, "tippecanoe:mean:POP_RANK": 13.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 246678.375, "tippecanoe:mean:GDP_YEAR": 2018.375, "tippecanoe:mean:WOE_ID": 23424876.625, "tippecanoe:mean:WOE_ID_EH": 23424876.625, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.125, "tippecanoe:mean:LONG_LEN": 6.125, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4, "tippecanoe:mean:MAX_LABEL": 8.275, "tippecanoe:mean:LABEL_X": 45.819875375, "tippecanoe:mean:LABEL_Y": 29.448225875, "tippecanoe:mean:NE_ID": 1159320980.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 116.235352, 73.885918 ], [ 118.959961, 72.289067 ], [ 115.927734, 70.801366 ], [ 110.566406, 70.801366 ], [ 107.402344, 72.248917 ], [ 109.863281, 73.861506 ], [ 116.235352, 73.885918 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820537fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 15, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 15, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 67, "tippecanoe:count:ADM0_DIF": 15, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 15, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 29, "tippecanoe:count:GEOU_DIF": 15, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 15, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 15, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 15, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 47, "tippecanoe:count:MAPCOLOR8": 15, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 49, "tippecanoe:count:MAPCOLOR9": 15, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 51, "tippecanoe:count:MAPCOLOR13": 15, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 114, "tippecanoe:count:POP_EST": 15, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 217744098, "tippecanoe:count:POP_RANK": 15, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 193, "tippecanoe:count:POP_YEAR": 15, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 30285, "tippecanoe:count:GDP_MD": 15, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6399941, "tippecanoe:count:GDP_YEAR": 15, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 30282, "tippecanoe:count:WOE_ID": 15, "tippecanoe:max:WOE_ID": 23424933, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 317100741, "tippecanoe:count:WOE_ID_EH": 15, "tippecanoe:max:WOE_ID_EH": 23424933, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 340525702, "tippecanoe:count:ADM0_A3_UN": 15, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1485, "tippecanoe:count:ADM0_A3_WB": 15, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1485, "tippecanoe:count:NAME_LEN": 15, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 107, "tippecanoe:count:LONG_LEN": 15, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 122, "tippecanoe:count:ABBREV_LEN": 15, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 63, "tippecanoe:count:TINY": 15, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1381, "tippecanoe:count:HOMEPART": 15, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -85, "tippecanoe:count:MIN_ZOOM": 15, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 15, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 51.900000000000009, "tippecanoe:count:MAX_LABEL": 15, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 125.7, "tippecanoe:count:LABEL_X": 15, "tippecanoe:max:LABEL_X": 68.685548, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 352.04201299999996, "tippecanoe:count:LABEL_Y": 15, "tippecanoe:max:LABEL_Y": 60.156467, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 779.237302, "tippecanoe:count:NE_ID": 15, "tippecanoe:max:NE_ID": 1159321283, "tippecanoe:min:NE_ID": 1159320379, "tippecanoe:sum:NE_ID": 17389812239, "tippecanoe:mean:scalerank": 0.2, "tippecanoe:mean:LABELRANK": 4.466666666666667, "tippecanoe:mean:ADM0_DIF": 0.2, "tippecanoe:mean:LEVEL": 1.9333333333333334, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1333333333333335, "tippecanoe:mean:MAPCOLOR8": 3.2666666666666668, "tippecanoe:mean:MAPCOLOR9": 3.4, "tippecanoe:mean:MAPCOLOR13": 7.6, "tippecanoe:mean:POP_EST": 14516273.2, "tippecanoe:mean:POP_RANK": 12.866666666666668, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 426662.73333333336, "tippecanoe:mean:GDP_YEAR": 2018.8, "tippecanoe:mean:WOE_ID": 21140049.4, "tippecanoe:mean:WOE_ID_EH": 22701713.466666666, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.133333333333334, "tippecanoe:mean:LONG_LEN": 8.133333333333333, "tippecanoe:mean:ABBREV_LEN": 4.2, "tippecanoe:mean:TINY": -92.06666666666666, "tippecanoe:mean:HOMEPART": -5.666666666666667, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.4600000000000006, "tippecanoe:mean:MAX_LABEL": 8.38, "tippecanoe:mean:LABEL_X": 23.46946753333333, "tippecanoe:mean:LABEL_Y": 51.949153466666668, "tippecanoe:mean:NE_ID": 1159320815.9333335, "tippecanoe:count": 15 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.754883, 78.331648 ], [ 108.808594, 76.930555 ], [ 105.952148, 75.297735 ], [ 99.272461, 74.959392 ], [ 94.130859, 76.163993 ], [ 95.537109, 77.888038 ], [ 103.754883, 78.331648 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a47fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 14, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 14, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 38, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 23310715, "tippecanoe:min:POP_EST": 502653, "tippecanoe:sum:POP_EST": 46537696, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 53, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 52091, "tippecanoe:min:GDP_MD": 11314, "tippecanoe:sum:GDP_MD": 91305, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 8076, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424906, "tippecanoe:min:WOE_ID": 23424777, "tippecanoe:sum:WOE_ID": 93699462, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424906, "tippecanoe:min:WOE_ID_EH": 23424777, "tippecanoe:sum:WOE_ID_EH": 93699462, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 19, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 19, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 19, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -294, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 4, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 13, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 33, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 18.645041, "tippecanoe:min:LABEL_X": 9.504356, "tippecanoe:sum:LABEL_X": 60.593417, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 35.892886, "tippecanoe:min:LABEL_Y": 15.142959, "tippecanoe:sum:LABEL_Y": 95.12098399999999, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321301, "tippecanoe:min:NE_ID": 1159321017, "tippecanoe:sum:NE_ID": 4637284470, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 9.5, "tippecanoe:mean:POP_EST": 11634424, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 22826.25, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424865.5, "tippecanoe:mean:WOE_ID_EH": 23424865.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4.75, "tippecanoe:mean:LONG_LEN": 4.75, "tippecanoe:mean:ABBREV_LEN": 4.75, "tippecanoe:mean:TINY": -73.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:mean:MAX_LABEL": 8.25, "tippecanoe:mean:LABEL_X": 15.14835425, "tippecanoe:mean:LABEL_Y": 23.780245999999999, "tippecanoe:mean:NE_ID": 1159321117.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.734375, 73.264704 ], [ 101.777344, 71.992578 ], [ 100.239258, 70.333533 ], [ 95.405273, 69.900118 ], [ 91.450195, 71.031249 ], [ 92.197266, 72.724958 ], [ 97.734375, 73.264704 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a5ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 8, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 42813238, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 48894434, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 29, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6058, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 30513, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 32578, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 6049, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424806, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 23424617, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424952, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849659, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 21, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 21, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 13.5, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 26, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 38.285566, "tippecanoe:min:LABEL_X": 29.260657, "tippecanoe:sum:LABEL_X": 101.219651, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 21.860442, "tippecanoe:min:LABEL_Y": 15.787401, "tippecanoe:sum:LABEL_Y": 53.978589, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320581, "tippecanoe:sum:NE_ID": 4048276901, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 2.6666666666666667, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 16298144.666666666, "tippecanoe:mean:POP_RANK": 9.666666666666666, "tippecanoe:mean:POP_YEAR": 2019.3333333333333, "tippecanoe:mean:GDP_MD": 10859.333333333334, "tippecanoe:mean:GDP_YEAR": 2016.3333333333333, "tippecanoe:mean:WOE_ID": 7808205.666666667, "tippecanoe:mean:WOE_ID_EH": 15616553, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 8.666666666666666, "tippecanoe:mean:LABEL_X": 33.739883666666667, "tippecanoe:mean:LABEL_Y": 17.992863, "tippecanoe:mean:NE_ID": 1349425633.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 107.402344, 72.248917 ], [ 110.566406, 70.801366 ], [ 108.413086, 69.224997 ], [ 103.579102, 69.021414 ], [ 100.239258, 70.333533 ], [ 101.777344, 71.992578 ], [ 107.402344, 72.248917 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a57fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 25876380, "tippecanoe:min:POP_EST": 4745185, "tippecanoe:sum:POP_EST": 30621565, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 27, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 39007, "tippecanoe:min:GDP_MD": 2220, "tippecanoe:sum:GDP_MD": 41227, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424792, "tippecanoe:min:WOE_ID": 23424785, "tippecanoe:sum:WOE_ID": 46849577, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424792, "tippecanoe:min:WOE_ID_EH": 23424785, "tippecanoe:sum:WOE_ID_EH": 46849577, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 28, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 32, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:min:LABEL_X": 12.473488, "tippecanoe:sum:LABEL_X": 33.380385000000007, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 6.989681, "tippecanoe:min:LABEL_Y": 4.585041, "tippecanoe:sum:LABEL_Y": 11.574722000000002, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320509, "tippecanoe:min:NE_ID": 1159320463, "tippecanoe:sum:NE_ID": 2318640972, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 15310782.5, "tippecanoe:mean:POP_RANK": 13.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 20613.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424788.5, "tippecanoe:mean:WOE_ID_EH": 23424788.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 16.690192500000003, "tippecanoe:mean:LABEL_Y": 5.787361000000001, "tippecanoe:mean:NE_ID": 1159320486, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.239258, 70.333533 ], [ 103.579102, 69.021414 ], [ 102.128906, 67.407487 ], [ 97.866211, 67.050304 ], [ 94.526367, 68.236823 ], [ 95.405273, 69.900118 ], [ 100.239258, 70.333533 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82059ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 21803000, "tippecanoe:min:POP_EST": 21803000, "tippecanoe:sum:POP_EST": 21803000, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 84008, "tippecanoe:min:GDP_MD": 84008, "tippecanoe:sum:GDP_MD": 84008, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424778, "tippecanoe:min:WOE_ID": 23424778, "tippecanoe:sum:WOE_ID": 23424778, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424778, "tippecanoe:min:WOE_ID_EH": 23424778, "tippecanoe:sum:WOE_ID_EH": 23424778, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 80.704823, "tippecanoe:min:LABEL_X": 80.704823, "tippecanoe:sum:LABEL_X": 80.704823, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 7.581097, "tippecanoe:min:LABEL_Y": 7.581097, "tippecanoe:sum:LABEL_Y": 7.581097, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321025, "tippecanoe:min:NE_ID": 1159321025, "tippecanoe:sum:NE_ID": 1159321025, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 21803000, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 84008, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424778, "tippecanoe:mean:WOE_ID_EH": 23424778, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 80.704823, "tippecanoe:mean:LABEL_Y": 7.581097, "tippecanoe:mean:NE_ID": 1159321025, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.562500, 70.348318 ], [ 131.660156, 69.900118 ], [ 132.758789, 68.155209 ], [ 129.375000, 66.947274 ], [ 124.936523, 67.356785 ], [ 123.266602, 69.005675 ], [ 126.562500, 70.348318 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820587fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 9770529, "tippecanoe:min:POP_EST": 4974986, "tippecanoe:sum:POP_EST": 14745515, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 421142, "tippecanoe:min:GDP_MD": 76331, "tippecanoe:sum:GDP_MD": 497473, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424898, "tippecanoe:min:WOE_ID": 23424738, "tippecanoe:sum:WOE_ID": 46849636, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424898, "tippecanoe:min:WOE_ID_EH": 23424738, "tippecanoe:sum:WOE_ID_EH": 46849636, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 20, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 20, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 57.336553, "tippecanoe:min:LABEL_X": 54.547256, "tippecanoe:sum:LABEL_X": 111.883809, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 23.466285, "tippecanoe:min:LABEL_Y": 22.120427, "tippecanoe:sum:LABEL_Y": 45.586712, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321151, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 2318641480, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 4.5, "tippecanoe:mean:POP_EST": 7372757.5, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 248736.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424818, "tippecanoe:mean:WOE_ID_EH": 23424818, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 55.9419045, "tippecanoe:mean:LABEL_Y": 22.793356, "tippecanoe:mean:NE_ID": 1159320740, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 118.959961, 72.289067 ], [ 124.760742, 72.046840 ], [ 126.562500, 70.348318 ], [ 123.266602, 69.005675 ], [ 118.300781, 69.224997 ], [ 115.927734, 70.801366 ], [ 118.959961, 72.289067 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82040ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 9, "tippecanoe:sum:MAPCOLOR13": 9, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25666161, "tippecanoe:min:POP_EST": 25666161, "tippecanoe:sum:POP_EST": 25666161, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 40000, "tippecanoe:min:GDP_MD": 40000, "tippecanoe:sum:GDP_MD": 40000, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424865, "tippecanoe:min:WOE_ID": 23424865, "tippecanoe:sum:WOE_ID": 23424865, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424865, "tippecanoe:min:WOE_ID_EH": 23424865, "tippecanoe:sum:WOE_ID_EH": 23424865, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 126.444516, "tippecanoe:min:LABEL_X": 126.444516, "tippecanoe:sum:LABEL_X": 126.444516, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 39.885252, "tippecanoe:sum:LABEL_Y": 39.885252, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321181, "tippecanoe:min:NE_ID": 1159321181, "tippecanoe:sum:NE_ID": 1159321181, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 25666161, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 40000, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424865, "tippecanoe:mean:WOE_ID_EH": 23424865, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 15, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 126.444516, "tippecanoe:mean:LABEL_Y": 39.885252, "tippecanoe:mean:NE_ID": 1159321181, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.730469, 76.372619 ], [ 163.828125, 75.084326 ], [ 161.894531, 73.365639 ], [ 156.005859, 72.842021 ], [ 150.996094, 73.946791 ], [ 151.699219, 75.748125 ], [ 158.730469, 76.372619 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820457fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 126264931, "tippecanoe:min:POP_EST": 126264931, "tippecanoe:sum:POP_EST": 126264931, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5081769, "tippecanoe:min:GDP_MD": 5081769, "tippecanoe:sum:GDP_MD": 5081769, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424856, "tippecanoe:min:WOE_ID": 23424856, "tippecanoe:sum:WOE_ID": 23424856, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424856, "tippecanoe:min:WOE_ID_EH": 23424856, "tippecanoe:sum:WOE_ID_EH": 23424856, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 5, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 5, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 138.44217, "tippecanoe:sum:LABEL_X": 138.44217, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 36.142538, "tippecanoe:min:LABEL_Y": 36.142538, "tippecanoe:sum:LABEL_Y": 36.142538, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320937, "tippecanoe:min:NE_ID": 1159320937, "tippecanoe:sum:NE_ID": 1159320937, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 126264931, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5081769, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424856, "tippecanoe:mean:WOE_ID_EH": 23424856, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 5, "tippecanoe:mean:LONG_LEN": 5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 7, "tippecanoe:mean:LABEL_X": 138.44217, "tippecanoe:mean:LABEL_Y": 36.142538, "tippecanoe:mean:NE_ID": 1159320937, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 170.771484, 75.364506 ], [ 174.462891, 73.873717 ], [ 171.694336, 72.275693 ], [ 165.937500, 72.033289 ], [ 161.894531, 73.365639 ], [ 163.828125, 75.084326 ], [ 170.771484, 75.364506 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82041ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 51709098, "tippecanoe:min:POP_EST": 23568378, "tippecanoe:sum:POP_EST": 75277476, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 31, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4039, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 1646739, "tippecanoe:min:GDP_MD": 1127000, "tippecanoe:sum:GDP_MD": 2773739, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4035, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424971, "tippecanoe:min:WOE_ID": 23424868, "tippecanoe:sum:WOE_ID": 46849839, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424971, "tippecanoe:min:WOE_ID_EH": 23424868, "tippecanoe:sum:WOE_ID_EH": 46849839, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 23, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 15, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 128.129504, "tippecanoe:min:LABEL_X": 120.868204, "tippecanoe:sum:LABEL_X": 248.997708, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 36.384924, "tippecanoe:min:LABEL_Y": 23.652408, "tippecanoe:sum:LABEL_Y": 60.037332, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321335, "tippecanoe:min:NE_ID": 1159320985, "tippecanoe:sum:NE_ID": 2318642320, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:mean:POP_EST": 37638738, "tippecanoe:mean:POP_RANK": 15.5, "tippecanoe:mean:POP_YEAR": 2019.5, "tippecanoe:mean:GDP_MD": 1386869.5, "tippecanoe:mean:GDP_YEAR": 2017.5, "tippecanoe:mean:WOE_ID": 23424919.5, "tippecanoe:mean:WOE_ID_EH": 23424919.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 11.5, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 124.498854, "tippecanoe:mean:LABEL_Y": 30.018666, "tippecanoe:mean:NE_ID": 1159321160, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 150.996094, 73.946791 ], [ 156.005859, 72.842021 ], [ 154.995117, 71.074056 ], [ 149.985352, 70.363091 ], [ 145.327148, 71.328950 ], [ 145.371094, 73.124945 ], [ 150.996094, 73.946791 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8204affffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 13, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 15, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 96462106, "tippecanoe:min:POP_EST": 7507400, "tippecanoe:sum:POP_EST": 120456048, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 43, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 365711, "tippecanoe:min:GDP_MD": 27089, "tippecanoe:sum:GDP_MD": 654721, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424776, "tippecanoe:sum:WOE_ID": 71715458, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424776, "tippecanoe:sum:WOE_ID_EH": 71715458, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 14, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -196, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -97, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 9, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 24, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 114.097769, "tippecanoe:min:LABEL_X": 104.50487, "tippecanoe:sum:LABEL_X": 323.98993099999998, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": 22.448829, "tippecanoe:min:LABEL_Y": 12.647584, "tippecanoe:sum:LABEL_Y": 56.811829, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320473, "tippecanoe:sum:NE_ID": 3477962869, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0.3333333333333333, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 4.333333333333333, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 40152016, "tippecanoe:mean:POP_RANK": 14.333333333333334, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 218240.33333333335, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23905152.666666669, "tippecanoe:mean:WOE_ID_EH": 23905152.666666669, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -65.33333333333333, "tippecanoe:mean:HOMEPART": -32.333333333333339, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 107.99664366666666, "tippecanoe:mean:LABEL_Y": 18.937276333333334, "tippecanoe:mean:NE_ID": 1159320956.3333333, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 71.328950 ], [ 149.985352, 70.363091 ], [ 149.589844, 68.576441 ], [ 145.327148, 67.742759 ], [ 141.064453, 68.576441 ], [ 140.712891, 70.363091 ], [ 145.327148, 71.328950 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8204c7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 10, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 57216, "tippecanoe:sum:POP_EST": 224510, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 1323, "tippecanoe:sum:GDP_MD": 7243, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2018, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 4036, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424832, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 46849620, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424832, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 46849620, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 28, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 5, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 20, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 145.734397, "tippecanoe:min:LABEL_X": 144.703614, "tippecanoe:sum:LABEL_X": 290.43801099999998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 13.354173, "tippecanoe:sum:LABEL_Y": 28.542361, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159321359, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 112255, "tippecanoe:mean:POP_RANK": 8.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3621.5, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424810, "tippecanoe:mean:WOE_ID_EH": 23424810, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 14, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": 2.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.21900549999999, "tippecanoe:mean:LABEL_Y": 14.2711805, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 164.135742, 70.348318 ], [ 167.431641, 69.005675 ], [ 165.761719, 67.339861 ], [ 161.279297, 66.947274 ], [ 157.939453, 68.155209 ], [ 159.038086, 69.900118 ], [ 164.135742, 70.348318 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820af7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 7, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 10, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 14645468, "tippecanoe:min:POP_EST": 2303697, "tippecanoe:sum:POP_EST": 16949165, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 21440, "tippecanoe:min:GDP_MD": 18340, "tippecanoe:sum:GDP_MD": 39780, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 46849759, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 46849759, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 6.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 29.925444, "tippecanoe:min:LABEL_X": 24.179216, "tippecanoe:sum:LABEL_X": 54.104659999999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -18.91164, "tippecanoe:min:LABEL_Y": -22.102634, "tippecanoe:sum:LABEL_Y": -41.014274, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320461, "tippecanoe:sum:NE_ID": 2318641902, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 8474582.5, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 19890, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424879.5, "tippecanoe:mean:WOE_ID_EH": 23424879.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8, "tippecanoe:mean:LONG_LEN": 8, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.25, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 27.052329999999999, "tippecanoe:mean:LABEL_Y": -20.507137, "tippecanoe:mean:NE_ID": 1159320951, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.579102, 64.510643 ], [ 106.040039, 63.194018 ], [ 104.721680, 61.669024 ], [ 101.250000, 61.438767 ], [ 98.789062, 62.674143 ], [ 99.755859, 64.225493 ], [ 103.579102, 64.510643 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820ad7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 30366036, "tippecanoe:min:POP_EST": 30366036, "tippecanoe:sum:POP_EST": 30366036, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 15291, "tippecanoe:min:GDP_MD": 15291, "tippecanoe:sum:GDP_MD": 15291, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424902, "tippecanoe:min:WOE_ID": 23424902, "tippecanoe:sum:WOE_ID": 23424902, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424902, "tippecanoe:min:WOE_ID_EH": 23424902, "tippecanoe:sum:WOE_ID_EH": 23424902, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 37.83789, "tippecanoe:min:LABEL_X": 37.83789, "tippecanoe:sum:LABEL_X": 37.83789, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -13.94323, "tippecanoe:min:LABEL_Y": -13.94323, "tippecanoe:sum:LABEL_Y": -13.94323, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321073, "tippecanoe:min:NE_ID": 1159321073, "tippecanoe:sum:NE_ID": 1159321073, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 30366036, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 15291, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424902, "tippecanoe:mean:WOE_ID_EH": 23424902, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 37.83789, "tippecanoe:mean:LABEL_Y": -13.94323, "tippecanoe:mean:NE_ID": 1159321073, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.775391, 63.312683 ], [ 111.840820, 61.876870 ], [ 110.258789, 60.435542 ], [ 106.875000, 60.348696 ], [ 104.721680, 61.669024 ], [ 106.040039, 63.194018 ], [ 109.775391, 63.312683 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a1ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 1, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 1, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2494530, "tippecanoe:sum:POP_EST": 2494530, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 12366, "tippecanoe:min:GDP_MD": 12366, "tippecanoe:sum:GDP_MD": 12366, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424987, "tippecanoe:sum:WOE_ID": 23424987, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424987, "tippecanoe:sum:WOE_ID_EH": 23424987, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 7, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 7, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 17.108166, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 17.108166, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -20.575298, "tippecanoe:sum:LABEL_Y": -20.575298, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159321085, "tippecanoe:sum:NE_ID": 1159321085, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 1, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2494530, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 12366, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424987, "tippecanoe:mean:WOE_ID_EH": 23424987, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7, "tippecanoe:mean:LONG_LEN": 7, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 17.108166, "tippecanoe:mean:LABEL_Y": -20.575298, "tippecanoe:mean:NE_ID": 1159321085, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 96.899414, 65.440002 ], [ 99.755859, 64.225493 ], [ 98.789062, 62.674143 ], [ 95.361328, 62.288365 ], [ 92.592773, 63.391522 ], [ 93.120117, 64.979359 ], [ 96.899414, 65.440002 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820adffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 26969307, "tippecanoe:min:POP_EST": 850886, "tippecanoe:sum:POP_EST": 27820193, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 26, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 14114, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 15279, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424883, "tippecanoe:min:WOE_ID": 23424786, "tippecanoe:sum:WOE_ID": 46849669, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424883, "tippecanoe:min:WOE_ID_EH": 23424786, "tippecanoe:sum:WOE_ID_EH": 46849669, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 17, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 6.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 46.704241, "tippecanoe:min:LABEL_X": 43.318094, "tippecanoe:sum:LABEL_X": 90.022335, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -11.727683, "tippecanoe:min:LABEL_Y": -18.628288, "tippecanoe:sum:LABEL_Y": -30.355971000000005, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321051, "tippecanoe:min:NE_ID": 1159320521, "tippecanoe:sum:NE_ID": 2318641572, "tippecanoe:mean:scalerank": 1.5, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 13910096.5, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 7639.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424834.5, "tippecanoe:mean:WOE_ID_EH": 23424834.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.5, "tippecanoe:mean:LONG_LEN": 8.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.35, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 45.0111675, "tippecanoe:mean:LABEL_Y": -15.177985500000002, "tippecanoe:mean:NE_ID": 1159320786, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 111.533203, 64.792848 ], [ 115.576172, 64.774125 ], [ 117.421875, 63.233627 ], [ 115.444336, 61.835413 ], [ 111.840820, 61.876870 ], [ 109.775391, 63.312683 ], [ 111.533203, 64.792848 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820a8ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 10, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 2125268, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 3273398, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 24, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 4471, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 6847, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424880, "tippecanoe:sum:WOE_ID": 46849873, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424880, "tippecanoe:sum:WOE_ID_EH": 46849873, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 26, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 28.246639, "tippecanoe:sum:LABEL_X": 59.713903, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -56.013834, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321289, "tippecanoe:min:NE_ID": 1159321027, "tippecanoe:sum:NE_ID": 2318642316, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 1636699, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 3423.5, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424936.5, "tippecanoe:mean:WOE_ID_EH": 23424936.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 29.8569515, "tippecanoe:mean:LABEL_Y": -28.006917, "tippecanoe:mean:NE_ID": 1159321158, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 104.721680, 61.669024 ], [ 106.875000, 60.348696 ], [ 105.644531, 58.904646 ], [ 102.524414, 58.722599 ], [ 100.327148, 59.933000 ], [ 101.250000, 61.438767 ], [ 104.721680, 61.669024 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "822ee7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 15, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 17861030, "tippecanoe:sum:POP_EST": 76419300, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 30, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 23309, "tippecanoe:sum:GDP_MD": 374740, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23425003, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 46849945, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23425003, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 46849945, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 18, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 18, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 11, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 4.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 14.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 26.395298, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 50.061032, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -14.660804, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -44.36958, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321439, "tippecanoe:min:NE_ID": 1159321431, "tippecanoe:sum:NE_ID": 2318642870, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 5.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 38209650, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 187370, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424972.5, "tippecanoe:mean:WOE_ID_EH": 23424972.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 5.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.35, "tippecanoe:mean:MAX_LABEL": 7.35, "tippecanoe:mean:LABEL_X": 25.030516, "tippecanoe:mean:LABEL_Y": -22.18479, "tippecanoe:mean:NE_ID": 1159321435, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 138.691406, 43.897892 ], [ 140.405273, 43.036776 ], [ 140.273438, 41.409776 ], [ 138.515625, 40.613952 ], [ 136.845703, 41.442726 ], [ 136.889648, 43.068888 ], [ 138.691406, 43.897892 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "820ac7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 12, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 5, "tippecanoe:sum:MAPCOLOR13": 13, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 18628747, "tippecanoe:min:POP_EST": 11530580, "tippecanoe:sum:POP_EST": 30159327, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 14, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 7666, "tippecanoe:min:GDP_MD": 3012, "tippecanoe:sum:GDP_MD": 10678, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424889, "tippecanoe:min:WOE_ID": 23424774, "tippecanoe:sum:WOE_ID": 46849663, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424889, "tippecanoe:min:WOE_ID_EH": 23424774, "tippecanoe:sum:WOE_ID_EH": 46849663, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 7, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 7, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 8, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 33.608082, "tippecanoe:min:LABEL_X": 29.917086, "tippecanoe:sum:LABEL_X": 63.52516800000001, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -3.332836, "tippecanoe:min:LABEL_Y": -13.386737, "tippecanoe:sum:LABEL_Y": -16.719573, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321081, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 2318641468, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4.5, "tippecanoe:mean:MAPCOLOR13": 6.5, "tippecanoe:mean:POP_EST": 15079663.5, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5339, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424831.5, "tippecanoe:mean:WOE_ID_EH": 23424831.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.5, "tippecanoe:mean:LONG_LEN": 6.5, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 31.762584000000005, "tippecanoe:mean:LABEL_Y": -8.3597865, "tippecanoe:mean:NE_ID": 1159320734, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 109.160156, 66.231457 ], [ 111.533203, 64.792848 ], [ 109.775391, 63.312683 ], [ 106.040039, 63.194018 ], [ 103.579102, 64.510643 ], [ 104.941406, 66.071546 ], [ 109.160156, 66.231457 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821577fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 1265711, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14048, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424894, "tippecanoe:mean:WOE_ID_EH": 23424894, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 57.565848, "tippecanoe:mean:LABEL_Y": -20.299506, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.421875, 63.233627 ], [ 121.245117, 63.054959 ], [ 122.695312, 61.480760 ], [ 120.541992, 60.174306 ], [ 117.114258, 60.348696 ], [ 115.444336, 61.835413 ], [ 117.421875, 63.233627 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821567fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 5, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 8, "tippecanoe:sum:MAPCOLOR8": 8, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 97625, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 97625, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 8, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 8, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1703, "tippecanoe:min:GDP_MD": 1703, "tippecanoe:sum:GDP_MD": 1703, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424941, "tippecanoe:min:WOE_ID": 23424941, "tippecanoe:sum:WOE_ID": 23424941, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424941, "tippecanoe:min:WOE_ID_EH": 23424941, "tippecanoe:sum:WOE_ID_EH": 23424941, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 55.480175, "tippecanoe:sum:LABEL_X": 55.480175, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -4.676659, "tippecanoe:min:LABEL_Y": -4.676659, "tippecanoe:sum:LABEL_Y": -4.676659, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321291, "tippecanoe:min:NE_ID": 1159321291, "tippecanoe:sum:NE_ID": 1159321291, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 5, "tippecanoe:mean:MAPCOLOR8": 8, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 97625, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1703, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424941, "tippecanoe:mean:WOE_ID_EH": 23424941, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 55.480175, "tippecanoe:mean:LABEL_Y": -4.676659, "tippecanoe:mean:NE_ID": 1159321291, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 117.817383, 66.196009 ], [ 122.124023, 66.000150 ], [ 123.662109, 64.377941 ], [ 121.245117, 63.054959 ], [ 117.421875, 63.233627 ], [ 115.576172, 64.774125 ], [ 117.817383, 66.196009 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8214a7fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 0, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 0, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 0, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 0, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289411, "tippecanoe:sum:WOE_ID": 28289411, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289411, "tippecanoe:sum:WOE_ID_EH": 28289411, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 25, "tippecanoe:sum:NAME_LEN": 25, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 29, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 7, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 4.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 73.50521, "tippecanoe:sum:LABEL_X": 73.50521, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -53.103462, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -53.103462, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320361, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 1159320361, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 0, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 0, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289411, "tippecanoe:mean:WOE_ID_EH": 28289411, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 25, "tippecanoe:mean:LONG_LEN": 29, "tippecanoe:mean:ABBREV_LEN": 7, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": 73.50521, "tippecanoe:mean:LABEL_Y": -53.103462, "tippecanoe:mean:NE_ID": 1159320361, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.365234, 51.536086 ], [ 126.914062, 51.206883 ], [ 127.661133, 49.781264 ], [ 126.035156, 48.748945 ], [ 123.618164, 49.066668 ], [ 122.739258, 50.429518 ], [ 124.365234, 51.536086 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821417fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 140, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 1, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 2017, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 16, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289406, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 28289406, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289406, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 28289406, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 22, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 35, "tippecanoe:sum:LONG_LEN": 35, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 10, "tippecanoe:sum:ABBREV_LEN": 10, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 69.122136, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 69.122136, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -49.303721, "tippecanoe:sum:LABEL_Y": -49.303721, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320631, "tippecanoe:sum:NE_ID": 1159320631, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 140, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2017, "tippecanoe:mean:GDP_MD": 16, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289406, "tippecanoe:mean:WOE_ID_EH": 28289406, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 22, "tippecanoe:mean:LONG_LEN": 35, "tippecanoe:mean:ABBREV_LEN": 10, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 69.122136, "tippecanoe:mean:LABEL_Y": -49.303721, "tippecanoe:mean:NE_ID": 1159320631, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, 54.110943 ], [ 127.924805, 53.748711 ], [ 128.715820, 52.268157 ], [ 126.914062, 51.206883 ], [ 124.365234, 51.536086 ], [ 123.398438, 52.961875 ], [ 125.156250, 54.110943 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "82049ffffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 2387, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 2387, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 35, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 35, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424869, "tippecanoe:min:WOE_ID_EH": 23424869, "tippecanoe:sum:WOE_ID_EH": 23424869, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 17, "tippecanoe:sum:NAME_LEN": 17, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 24, "tippecanoe:sum:LONG_LEN": 24, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 13, "tippecanoe:sum:ABBREV_LEN": 13, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9.5, "tippecanoe:sum:MAX_LABEL": 9.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 105.67259, "tippecanoe:min:LABEL_X": 105.67259, "tippecanoe:sum:LABEL_X": 105.67259, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -10.490789, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": -10.490789, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320363, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 1159320363, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 2387, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 35, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:mean:WOE_ID_EH": 23424869, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 17, "tippecanoe:mean:LONG_LEN": 24, "tippecanoe:mean:ABBREV_LEN": 13, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 9.5, "tippecanoe:mean:LABEL_X": 105.67259, "tippecanoe:mean:LABEL_Y": -10.490789, "tippecanoe:mean:NE_ID": 1159320363, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 145.327148, 65.982270 ], [ 148.974609, 65.053602 ], [ 148.754883, 63.312683 ], [ 145.327148, 62.492028 ], [ 141.943359, 63.312683 ], [ 141.679688, 65.053602 ], [ 145.327148, 65.982270 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821687fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 25364307, "tippecanoe:sum:POP_EST": 25364307, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 1396567, "tippecanoe:sum:GDP_MD": 1396567, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424748, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 23424748, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.04972, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 134.04972, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -24.129522, "tippecanoe:sum:LABEL_Y": -24.129522, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320355, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 1159320355, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 25364307, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1396567, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:mean:WOE_ID_EH": 23424748, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": 134.04972, "tippecanoe:mean:LABEL_Y": -24.129522, "tippecanoe:mean:NE_ID": 1159320355, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.510742, 50.064192 ], [ 160.356445, 48.922499 ], [ 159.653320, 47.279229 ], [ 157.236328, 46.769968 ], [ 155.390625, 47.901614 ], [ 156.005859, 49.553726 ], [ 158.510742, 50.064192 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821727fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 2, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 2, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1293119, "tippecanoe:min:POP_EST": 1293119, "tippecanoe:sum:POP_EST": 1293119, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 2017, "tippecanoe:min:GDP_MD": 2017, "tippecanoe:sum:GDP_MD": 2017, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": 23424968, "tippecanoe:sum:WOE_ID": 23424968, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424968, "tippecanoe:sum:WOE_ID_EH": 23424968, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 125.854679, "tippecanoe:sum:LABEL_X": 125.854679, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -8.803705, "tippecanoe:min:LABEL_Y": -8.803705, "tippecanoe:sum:LABEL_Y": -8.803705, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159321313, "tippecanoe:sum:NE_ID": 1159321313, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 1293119, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 2017, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424968, "tippecanoe:mean:WOE_ID_EH": 23424968, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 125.854679, "tippecanoe:mean:LABEL_Y": -8.803705, "tippecanoe:mean:NE_ID": 1159321313, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 152.885742, 65.784758 ], [ 156.181641, 64.699105 ], [ 155.478516, 62.995158 ], [ 151.918945, 62.329208 ], [ 148.754883, 63.312683 ], [ 148.974609, 65.053602 ], [ 152.885742, 65.784758 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821747fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 287800, "tippecanoe:min:POP_EST": 287800, "tippecanoe:sum:POP_EST": 287800, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 10770, "tippecanoe:min:GDP_MD": 10770, "tippecanoe:sum:GDP_MD": 10770, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424903, "tippecanoe:min:WOE_ID": 23424903, "tippecanoe:sum:WOE_ID": 23424903, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424903, "tippecanoe:min:WOE_ID_EH": 23424903, "tippecanoe:sum:WOE_ID_EH": 23424903, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4.6, "tippecanoe:min:MIN_LABEL": 4.6, "tippecanoe:sum:MIN_LABEL": 4.6, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 165.084004, "tippecanoe:min:LABEL_X": 165.084004, "tippecanoe:sum:LABEL_X": 165.084004, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -21.064697, "tippecanoe:min:LABEL_Y": -21.064697, "tippecanoe:sum:LABEL_Y": -21.064697, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320641, "tippecanoe:min:NE_ID": 1159320641, "tippecanoe:sum:NE_ID": 1159320641, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 287800, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 10770, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424903, "tippecanoe:mean:WOE_ID_EH": 23424903, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.6, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 165.084004, "tippecanoe:mean:LABEL_Y": -21.064697, "tippecanoe:mean:NE_ID": 1159320641, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 173.232422, 63.233627 ], [ 175.209961, 61.835413 ], [ 173.540039, 60.348696 ], [ 170.112305, 60.152442 ], [ 167.958984, 61.459771 ], [ 169.409180, 63.035039 ], [ 173.232422, 63.233627 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821777fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 166.992188, 64.377941 ], [ 169.409180, 63.035039 ], [ 167.958984, 61.459771 ], [ 164.443359, 61.143235 ], [ 161.938477, 62.369996 ], [ 163.037109, 64.014496 ], [ 166.992188, 64.377941 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "821767fffffffff", "felt:h3_level": 2, "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 1, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 1, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 3, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 3, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 4, "tippecanoe:sum:MAPCOLOR8": 4, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 6, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 669823, "tippecanoe:min:POP_EST": 669823, "tippecanoe:sum:POP_EST": 669823, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 11, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 11, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1589, "tippecanoe:min:GDP_MD": 1589, "tippecanoe:sum:GDP_MD": 1589, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424766, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 23424766, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424766, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 23424766, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 15, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 3, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 8, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 159.170468, "tippecanoe:min:LABEL_X": 159.170468, "tippecanoe:sum:LABEL_X": 159.170468, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -8.029548, "tippecanoe:min:LABEL_Y": -8.029548, "tippecanoe:sum:LABEL_Y": -8.029548, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321249, "tippecanoe:min:NE_ID": 1159321249, "tippecanoe:sum:NE_ID": 1159321249, "tippecanoe:mean:scalerank": 1, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 4, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 669823, "tippecanoe:mean:POP_RANK": 11, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1589, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424766, "tippecanoe:mean:WOE_ID_EH": 23424766, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 15, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": 159.170468, "tippecanoe:mean:LABEL_Y": -8.029548, "tippecanoe:mean:NE_ID": 1159321249, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 172.880859, 66.196009 ], [ 175.078125, 64.755390 ], [ 173.232422, 63.233627 ], [ 169.409180, 63.035039 ], [ 166.992188, 64.377941 ], [ 168.530273, 66.000150 ], [ 172.880859, 66.196009 ] ] ] } } +] } +] } diff --git a/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json b/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json new file mode 100644 index 000000000..cb5783607 --- /dev/null +++ b/tests/pbf/0-0-0-pop-2-0-1.pbf.out.json @@ -0,0 +1,67 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "bin": "81237ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 6, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 10, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 197097, "tippecanoe:min:POP_EST": 1620, "tippecanoe:sum:POP_EST": 198717, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 3, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 4037, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 852, "tippecanoe:min:GDP_MD": 10, "tippecanoe:sum:GDP_MD": 862, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2003, "tippecanoe:sum:GDP_YEAR": 4022, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424992, "tippecanoe:min:WOE_ID": 23424904, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424992, "tippecanoe:min:WOE_ID_EH": 23424904, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 5, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 5, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -98, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 17, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -169.862565, "tippecanoe:min:LABEL_X": -172.438241, "tippecanoe:sum:LABEL_X": -342.30080599999999, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -13.639139, "tippecanoe:min:LABEL_Y": -19.045956, "tippecanoe:sum:LABEL_Y": -32.685095000000007, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321423, "tippecanoe:min:NE_ID": 1159321133, "tippecanoe:sum:NE_ID": 2318642556, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 5, "tippecanoe:mean:POP_EST": 99358.5, "tippecanoe:mean:POP_RANK": 6, "tippecanoe:mean:POP_YEAR": 2018.5, "tippecanoe:mean:GDP_MD": 431, "tippecanoe:mean:GDP_YEAR": 2011, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 4.5, "tippecanoe:mean:LONG_LEN": 4.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -171.15040299999999, "tippecanoe:mean:LABEL_Y": -16.342547500000003, "tippecanoe:mean:NE_ID": 1159321278, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -173.254395, 44.746733 ], [ -168.881836, 41.541478 ], [ -170.266113, 37.142803 ], [ -175.561523, 35.746512 ], [ -180.043945, 38.736946 ], [ -179.165039, 43.341160 ], [ -173.254395, 44.746733 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81227ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 328239523, "tippecanoe:min:POP_EST": 328239523, "tippecanoe:sum:POP_EST": 328239523, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 17, "tippecanoe:sum:POP_RANK": 17, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 21433226, "tippecanoe:min:GDP_MD": 21433226, "tippecanoe:sum:GDP_MD": 21433226, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424977, "tippecanoe:min:WOE_ID": 23424977, "tippecanoe:sum:WOE_ID": 23424977, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424977, "tippecanoe:min:WOE_ID_EH": 23424977, "tippecanoe:sum:WOE_ID_EH": 23424977, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 24, "tippecanoe:min:NAME_LEN": 24, "tippecanoe:sum:NAME_LEN": 24, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 13, "tippecanoe:sum:LONG_LEN": 13, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -97.482602, "tippecanoe:min:LABEL_X": -97.482602, "tippecanoe:sum:LABEL_X": -97.482602, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 39.538479, "tippecanoe:min:LABEL_Y": 39.538479, "tippecanoe:sum:LABEL_Y": 39.538479, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321369, "tippecanoe:min:NE_ID": 1159321369, "tippecanoe:sum:NE_ID": 1159321369, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 328239523, "tippecanoe:mean:POP_RANK": 17, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 21433226, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424977, "tippecanoe:mean:WOE_ID_EH": 23424977, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 24, "tippecanoe:mean:LONG_LEN": 13, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -97.482602, "tippecanoe:mean:LABEL_Y": 39.538479, "tippecanoe:mean:NE_ID": 1159321369, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -177.055664, 52.119999 ], [ -171.870117, 49.052270 ], [ -173.254395, 44.746733 ], [ -179.165039, 43.341160 ], [ -181.757812, 44.777936 ], [ -181.757812, 51.069017 ], [ -177.055664, 52.119999 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8171bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 1, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 1, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": -99, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -99, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4490, "tippecanoe:min:POP_EST": 4490, "tippecanoe:sum:POP_EST": 4490, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 898, "tippecanoe:min:GDP_MD": 898, "tippecanoe:sum:GDP_MD": 898, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2013, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 2013, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 28289409, "tippecanoe:min:WOE_ID": 28289409, "tippecanoe:sum:WOE_ID": 28289409, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 28289409, "tippecanoe:min:WOE_ID_EH": 28289409, "tippecanoe:sum:WOE_ID_EH": 28289409, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 10, "tippecanoe:sum:NAME_LEN": 10, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 10, "tippecanoe:min:LONG_LEN": 10, "tippecanoe:sum:LONG_LEN": 10, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 35.885455, "tippecanoe:min:LABEL_X": 35.885455, "tippecanoe:sum:LABEL_X": 35.885455, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -79.843222, "tippecanoe:min:LABEL_Y": -79.843222, "tippecanoe:sum:LABEL_Y": -79.843222, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320335, "tippecanoe:min:NE_ID": 1159320335, "tippecanoe:sum:NE_ID": 1159320335, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 1, "tippecanoe:mean:MAPCOLOR13": -99, "tippecanoe:mean:POP_EST": 4490, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 898, "tippecanoe:mean:GDP_YEAR": 2013, "tippecanoe:mean:WOE_ID": 28289409, "tippecanoe:mean:WOE_ID_EH": 28289409, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 10, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 35.885455, "tippecanoe:mean:LABEL_Y": -79.843222, "tippecanoe:mean:NE_ID": 1159320335, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -176.352539, 11.049038 ], [ -173.386230, 7.972198 ], [ -174.309082, 3.820408 ], [ -178.022461, 2.899153 ], [ -180.791016, 5.900189 ], [ -180.219727, 9.622414 ], [ -178.242188, 10.466206 ], [ -176.352539, 11.049038 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81447ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 3, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 4, "tippecanoe:sum:MAPCOLOR9": 4, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 4, "tippecanoe:min:MAPCOLOR13": 4, "tippecanoe:sum:MAPCOLOR13": 4, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4917000, "tippecanoe:min:POP_EST": 4917000, "tippecanoe:sum:POP_EST": 4917000, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 206928, "tippecanoe:min:GDP_MD": 206928, "tippecanoe:sum:GDP_MD": 206928, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424916, "tippecanoe:min:WOE_ID": 23424916, "tippecanoe:sum:WOE_ID": 23424916, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424916, "tippecanoe:min:WOE_ID_EH": 23424916, "tippecanoe:sum:WOE_ID_EH": 23424916, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 11, "tippecanoe:sum:NAME_LEN": 11, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 11, "tippecanoe:min:LONG_LEN": 11, "tippecanoe:sum:LONG_LEN": 11, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2, "tippecanoe:min:MIN_LABEL": 2, "tippecanoe:sum:MIN_LABEL": 2, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 6.7, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 6.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 172.787, "tippecanoe:min:LABEL_X": 172.787, "tippecanoe:sum:LABEL_X": 172.787, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -39.759, "tippecanoe:min:LABEL_Y": -39.759, "tippecanoe:sum:LABEL_Y": -39.759, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321135, "tippecanoe:min:NE_ID": 1159321135, "tippecanoe:sum:NE_ID": 1159321135, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 4, "tippecanoe:mean:POP_EST": 4917000, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 206928, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424916, "tippecanoe:mean:WOE_ID_EH": 23424916, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 11, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2, "tippecanoe:mean:MAX_LABEL": 6.7, "tippecanoe:mean:LABEL_X": 172.787, "tippecanoe:mean:LABEL_Y": -39.759, "tippecanoe:mean:NE_ID": 1159321135, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -93.273926, 35.083956 ], [ -88.242188, 34.089061 ], [ -88.242188, 28.052591 ], [ -89.802246, 26.431228 ], [ -94.746094, 27.254630 ], [ -96.657715, 31.615966 ], [ -93.273926, 35.083956 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81267ffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 17, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 32, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 35, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 60, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 144373535, "tippecanoe:min:POP_EST": 11558, "tippecanoe:sum:POP_EST": 146754651, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 83, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2018, "tippecanoe:sum:POP_YEAR": 16151, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 1699876, "tippecanoe:min:GDP_MD": 60, "tippecanoe:sum:GDP_MD": 1719431, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424989, "tippecanoe:min:WOE_ID": 23424766, "tippecanoe:sum:WOE_ID": 187399145, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424989, "tippecanoe:min:WOE_ID_EH": 23424766, "tippecanoe:sum:WOE_ID_EH": 187399145, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 75, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 25, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 95, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -386, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -192, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 29.999999999999998, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.2, "tippecanoe:sum:MAX_LABEL": 66.2, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 177.975427, "tippecanoe:min:LABEL_X": -178.137436, "tippecanoe:sum:LABEL_X": 203.14010299999993, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 58.249357, "tippecanoe:min:LABEL_Y": -21.210026, "tippecanoe:sum:LABEL_Y": -37.718520999999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321421, "tippecanoe:min:NE_ID": 1159320625, "tippecanoe:sum:NE_ID": 9274568086, "tippecanoe:mean:scalerank": 2.125, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4.375, "tippecanoe:mean:MAPCOLOR8": 3.875, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 7.5, "tippecanoe:mean:POP_EST": 18344331.375, "tippecanoe:mean:POP_RANK": 10.375, "tippecanoe:mean:POP_YEAR": 2018.875, "tippecanoe:mean:GDP_MD": 214928.875, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23424893.125, "tippecanoe:mean:WOE_ID_EH": 23424893.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.375, "tippecanoe:mean:LONG_LEN": 11.875, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -48.25, "tippecanoe:mean:HOMEPART": -24, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7499999999999997, "tippecanoe:mean:MAX_LABEL": 8.275, "tippecanoe:mean:LABEL_X": 25.39251287499999, "tippecanoe:mean:LABEL_Y": -4.714815124999999, "tippecanoe:mean:NE_ID": 1159321010.75, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -91.472168, 42.439674 ], [ -88.242188, 41.722131 ], [ -88.242188, 34.089061 ], [ -93.273926, 35.083956 ], [ -95.251465, 39.334297 ], [ -92.812500, 41.459195 ], [ -91.472168, 42.439674 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81377ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 3, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 4534, "tippecanoe:min:POP_EST": 4534, "tippecanoe:sum:POP_EST": 4534, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 4, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2016, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 2016, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 31, "tippecanoe:min:GDP_MD": 31, "tippecanoe:sum:GDP_MD": 31, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2010, "tippecanoe:min:GDP_YEAR": 2010, "tippecanoe:sum:GDP_YEAR": 2010, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424944, "tippecanoe:min:WOE_ID": 23424944, "tippecanoe:sum:WOE_ID": 23424944, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424944, "tippecanoe:min:WOE_ID_EH": 23424944, "tippecanoe:sum:WOE_ID_EH": 23424944, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 12, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 12, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 12, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 5, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 5, "tippecanoe:sum:MIN_LABEL": 5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 10, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -5.71262, "tippecanoe:min:LABEL_X": -5.71262, "tippecanoe:sum:LABEL_X": -5.71262, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -15.950487, "tippecanoe:min:LABEL_Y": -15.950487, "tippecanoe:sum:LABEL_Y": -15.950487, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320733, "tippecanoe:min:NE_ID": 1159320733, "tippecanoe:sum:NE_ID": 1159320733, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 4534, "tippecanoe:mean:POP_RANK": 4, "tippecanoe:mean:POP_YEAR": 2016, "tippecanoe:mean:GDP_MD": 31, "tippecanoe:mean:GDP_YEAR": 2010, "tippecanoe:mean:WOE_ID": 23424944, "tippecanoe:mean:WOE_ID_EH": 23424944, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 12, "tippecanoe:mean:LONG_LEN": 12, "tippecanoe:mean:ABBREV_LEN": 5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": -5.71262, "tippecanoe:mean:LABEL_Y": -15.950487, "tippecanoe:mean:NE_ID": 1159320733, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -138.449707, 41.459195 ], [ -135.329590, 38.548165 ], [ -136.208496, 36.544949 ], [ -137.175293, 34.759666 ], [ -142.316895, 34.452218 ], [ -145.744629, 37.683820 ], [ -143.854980, 41.211722 ], [ -138.449707, 41.459195 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8123bffffffffff", "tippecanoe:count:scalerank": 12, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 12, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 51, "tippecanoe:count:ADM0_DIF": 12, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 12, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 23, "tippecanoe:count:GEOU_DIF": 12, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 12, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 12, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 12, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 28, "tippecanoe:count:MAPCOLOR8": 12, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 45, "tippecanoe:count:MAPCOLOR9": 12, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 45, "tippecanoe:count:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 70, "tippecanoe:count:POP_EST": 12, "tippecanoe:max:POP_EST": 50339443, "tippecanoe:min:POP_EST": 64948, "tippecanoe:sum:POP_EST": 131093366, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 152, "tippecanoe:count:POP_YEAR": 12, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 24228, "tippecanoe:count:GDP_MD": 12, "tippecanoe:max:GDP_MD": 323615, "tippecanoe:min:GDP_MD": 1879, "tippecanoe:sum:GDP_MD": 824875, "tippecanoe:count:GDP_YEAR": 12, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 24226, "tippecanoe:count:WOE_ID": 12, "tippecanoe:max:WOE_ID": 23424924, "tippecanoe:min:WOE_ID": 23424760, "tippecanoe:sum:WOE_ID": 281097894, "tippecanoe:count:WOE_ID_EH": 12, "tippecanoe:max:WOE_ID_EH": 23424924, "tippecanoe:min:WOE_ID_EH": 23424760, "tippecanoe:sum:WOE_ID_EH": 281097894, "tippecanoe:count:ADM0_A3_UN": 12, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1188, "tippecanoe:count:ADM0_A3_WB": 12, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1188, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 95, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 99, "tippecanoe:count:ABBREV_LEN": 12, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 58, "tippecanoe:count:TINY": 12, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -984, "tippecanoe:count:HOMEPART": 12, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -88, "tippecanoe:count:MIN_ZOOM": 12, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 12, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 45.7, "tippecanoe:count:MAX_LABEL": 12, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 105, "tippecanoe:count:LABEL_X": 12, "tippecanoe:max:LABEL_X": -73.174347, "tippecanoe:min:LABEL_X": -90.497134, "tippecanoe:sum:LABEL_X": -992.3850929999999, "tippecanoe:count:LABEL_Y": 12, "tippecanoe:max:LABEL_Y": 21.334024, "tippecanoe:min:LABEL_Y": -1.259076, "tippecanoe:sum:LABEL_Y": 153.027195, "tippecanoe:count:NE_ID": 12, "tippecanoe:max:NE_ID": 1159321253, "tippecanoe:min:NE_ID": 1159320431, "tippecanoe:sum:NE_ID": 13911849352, "tippecanoe:mean:scalerank": 0.3333333333333333, "tippecanoe:mean:LABELRANK": 4.25, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 1.9166666666666668, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.3333333333333337, "tippecanoe:mean:MAPCOLOR8": 3.75, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 5.833333333333333, "tippecanoe:mean:POP_EST": 10924447.166666666, "tippecanoe:mean:POP_RANK": 12.666666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 68739.58333333333, "tippecanoe:mean:GDP_YEAR": 2018.8333333333333, "tippecanoe:mean:WOE_ID": 23424824.5, "tippecanoe:mean:WOE_ID_EH": 23424824.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.916666666666667, "tippecanoe:mean:LONG_LEN": 8.25, "tippecanoe:mean:ABBREV_LEN": 4.833333333333333, "tippecanoe:mean:TINY": -82, "tippecanoe:mean:HOMEPART": -7.333333333333333, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.8083333333333337, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": -82.69875774999999, "tippecanoe:mean:LABEL_Y": 12.75226625, "tippecanoe:mean:NE_ID": 1159320779.3333333, "tippecanoe:count": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -156.027832, 46.905246 ], [ -153.039551, 43.436966 ], [ -154.775391, 39.909736 ], [ -157.478027, 39.419221 ], [ -159.938965, 39.095963 ], [ -163.388672, 42.455888 ], [ -161.564941, 46.513516 ], [ -156.027832, 46.905246 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81233ffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 4, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 7, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 5, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 9, "tippecanoe:sum:MAPCOLOR9": 9, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 11, "tippecanoe:sum:MAPCOLOR13": 11, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 279287, "tippecanoe:min:POP_EST": 279287, "tippecanoe:sum:POP_EST": 279287, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 10, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 10, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 5490, "tippecanoe:min:GDP_MD": 5490, "tippecanoe:sum:GDP_MD": 5490, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 2016, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424817, "tippecanoe:min:WOE_ID": 23424817, "tippecanoe:sum:WOE_ID": 23424817, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424817, "tippecanoe:min:WOE_ID_EH": 23424817, "tippecanoe:sum:WOE_ID_EH": 23424817, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 13, "tippecanoe:sum:NAME_LEN": 13, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 9, "tippecanoe:min:ABBREV_LEN": 9, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -99, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 3.5, "tippecanoe:min:MIN_LABEL": 3.5, "tippecanoe:sum:MIN_LABEL": 3.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 8.5, "tippecanoe:min:MAX_LABEL": 8.5, "tippecanoe:sum:MAX_LABEL": 8.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -149.46157, "tippecanoe:min:LABEL_X": -149.46157, "tippecanoe:sum:LABEL_X": -149.46157, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -17.628081, "tippecanoe:min:LABEL_Y": -17.628081, "tippecanoe:sum:LABEL_Y": -17.628081, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320643, "tippecanoe:min:NE_ID": 1159320643, "tippecanoe:sum:NE_ID": 1159320643, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 7, "tippecanoe:mean:MAPCOLOR8": 5, "tippecanoe:mean:MAPCOLOR9": 9, "tippecanoe:mean:MAPCOLOR13": 11, "tippecanoe:mean:POP_EST": 279287, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 5490, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 23424817, "tippecanoe:mean:WOE_ID_EH": 23424817, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.5, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": -149.46157, "tippecanoe:mean:LABEL_Y": -17.628081, "tippecanoe:mean:NE_ID": 1159320643, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -163.388672, 42.455888 ], [ -159.938965, 39.095963 ], [ -161.652832, 34.994004 ], [ -166.530762, 33.961586 ], [ -170.266113, 37.142803 ], [ -168.881836, 41.541478 ], [ -163.388672, 42.455888 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81297ffffffffff", "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 11, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 10, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 8, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 2494530, "tippecanoe:min:POP_EST": 2125268, "tippecanoe:sum:POP_EST": 6923495, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 36, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 18340, "tippecanoe:min:GDP_MD": 2376, "tippecanoe:sum:GDP_MD": 33082, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424987, "tippecanoe:min:WOE_ID": 23424755, "tippecanoe:sum:WOE_ID": 70274622, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424987, "tippecanoe:min:WOE_ID_EH": 23424755, "tippecanoe:sum:WOE_ID_EH": 70274622, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 22, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 22, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 12, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 11, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 25.5, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": 28.246639, "tippecanoe:min:LABEL_X": 17.108166, "tippecanoe:sum:LABEL_X": 69.534021, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -20.575298, "tippecanoe:min:LABEL_Y": -29.480158, "tippecanoe:sum:LABEL_Y": -72.15809, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1159321085, "tippecanoe:min:NE_ID": 1159320461, "tippecanoe:sum:NE_ID": 3477962573, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR8": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR9": 3.3333333333333337, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 2307831.6666666667, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 11027.333333333334, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424874, "tippecanoe:mean:WOE_ID_EH": 23424874, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.333333333333333, "tippecanoe:mean:LONG_LEN": 7.333333333333333, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.6666666666666667, "tippecanoe:mean:MAX_LABEL": 8.5, "tippecanoe:mean:LABEL_X": 23.178006999999999, "tippecanoe:mean:LABEL_Y": -24.052696666666667, "tippecanoe:mean:NE_ID": 1159320857.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -130.231934, 39.436193 ], [ -127.133789, 36.084621 ], [ -129.287109, 31.952162 ], [ -134.099121, 31.278551 ], [ -137.175293, 34.759666 ], [ -136.208496, 36.544949 ], [ -135.329590, 38.548165 ], [ -130.231934, 39.436193 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "811d3ffffffffff", "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 15, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 11, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 35, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 4941444, "tippecanoe:min:POP_EST": 48678, "tippecanoe:sum:POP_EST": 5407660, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 37, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 388698, "tippecanoe:min:GDP_MD": 3051, "tippecanoe:sum:GDP_MD": 419053, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 8074, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424845, "tippecanoe:min:WOE_ID": 23424803, "tippecanoe:sum:WOE_ID": 93699292, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424845, "tippecanoe:min:WOE_ID_EH": 23424803, "tippecanoe:sum:WOE_ID_EH": 93699292, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 10, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 14, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 37, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 27, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -294, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 10.7, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 30.7, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": -7.058429, "tippecanoe:min:LABEL_X": -39.335251, "tippecanoe:sum:LABEL_X": -72.865979, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 74.319387, "tippecanoe:min:LABEL_Y": 53.078726, "tippecanoe:sum:LABEL_Y": 254.36300300000006, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159320917, "tippecanoe:min:NE_ID": 1159320549, "tippecanoe:sum:NE_ID": 4637282894, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 3.75, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.75, "tippecanoe:mean:MAPCOLOR8": 2.25, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 8.75, "tippecanoe:mean:POP_EST": 1351915, "tippecanoe:mean:POP_RANK": 9.25, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 104763.25, "tippecanoe:mean:GDP_YEAR": 2018.5, "tippecanoe:mean:WOE_ID": 23424823, "tippecanoe:mean:WOE_ID_EH": 23424823, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 9.25, "tippecanoe:mean:ABBREV_LEN": 6.75, "tippecanoe:mean:TINY": -73.5, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.675, "tippecanoe:mean:MAX_LABEL": 7.675, "tippecanoe:mean:LABEL_X": -18.21649475, "tippecanoe:mean:LABEL_Y": 63.59075075000001, "tippecanoe:mean:NE_ID": 1159320723.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -139.680176, 59.164668 ], [ -133.527832, 56.764768 ], [ -133.857422, 52.842595 ], [ -138.999023, 51.522416 ], [ -142.448730, 52.975108 ], [ -144.426270, 53.212612 ], [ -145.612793, 56.571589 ], [ -139.680176, 59.164668 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8126bffffffffff", "tippecanoe:count:scalerank": 11, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 9, "tippecanoe:count:LABELRANK": 11, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 40, "tippecanoe:count:ADM0_DIF": 11, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 11, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 22, "tippecanoe:count:GEOU_DIF": 11, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 11, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 11, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 11, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 35, "tippecanoe:count:MAPCOLOR8": 11, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR9": 11, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 51, "tippecanoe:count:MAPCOLOR13": 11, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 71, "tippecanoe:count:POP_EST": 11, "tippecanoe:max:POP_EST": 1366417754, "tippecanoe:min:POP_EST": 2387, "tippecanoe:sum:POP_EST": 1924699618, "tippecanoe:count:POP_RANK": 11, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 152, "tippecanoe:count:POP_YEAR": 11, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 22206, "tippecanoe:count:GDP_MD": 11, "tippecanoe:max:GDP_MD": 2868929, "tippecanoe:min:GDP_MD": 35, "tippecanoe:sum:GDP_MD": 5763900, "tippecanoe:count:GDP_YEAR": 11, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 22206, "tippecanoe:count:WOE_ID": 11, "tippecanoe:max:WOE_ID": 23424968, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 234248627, "tippecanoe:count:WOE_ID_EH": 11, "tippecanoe:max:WOE_ID_EH": 23424968, "tippecanoe:min:WOE_ID_EH": 23424763, "tippecanoe:sum:WOE_ID_EH": 257673586, "tippecanoe:count:ADM0_A3_UN": 11, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1089, "tippecanoe:count:ADM0_A3_WB": 11, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1089, "tippecanoe:count:NAME_LEN": 11, "tippecanoe:max:NAME_LEN": 17, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 99, "tippecanoe:count:LONG_LEN": 11, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 117, "tippecanoe:count:ABBREV_LEN": 11, "tippecanoe:max:ABBREV_LEN": 13, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 64, "tippecanoe:count:TINY": 11, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -886, "tippecanoe:count:HOMEPART": 11, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -89, "tippecanoe:count:MIN_ZOOM": 11, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 11, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 34.6, "tippecanoe:count:MAX_LABEL": 11, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 88.9, "tippecanoe:count:LABEL_X": 11, "tippecanoe:max:LABEL_X": 125.854679, "tippecanoe:min:LABEL_X": 79.358105, "tippecanoe:sum:LABEL_X": 1168.831836, "tippecanoe:count:LABEL_Y": 11, "tippecanoe:max:LABEL_Y": 22.686852, "tippecanoe:min:LABEL_Y": -10.490789, "tippecanoe:sum:LABEL_Y": 71.66068499999997, "tippecanoe:count:NE_ID": 11, "tippecanoe:max:NE_ID": 1159321313, "tippecanoe:min:NE_ID": 1159320363, "tippecanoe:sum:NE_ID": 12752530669, "tippecanoe:mean:scalerank": 0.8181818181818182, "tippecanoe:mean:LABELRANK": 3.6363636363636364, "tippecanoe:mean:ADM0_DIF": 0.09090909090909091, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.1818181818181818, "tippecanoe:mean:MAPCOLOR8": 3.5454545454545456, "tippecanoe:mean:MAPCOLOR9": 4.636363636363637, "tippecanoe:mean:MAPCOLOR13": 6.454545454545454, "tippecanoe:mean:POP_EST": 174972692.54545454, "tippecanoe:mean:POP_RANK": 13.818181818181819, "tippecanoe:mean:POP_YEAR": 2018.7272727272728, "tippecanoe:mean:GDP_MD": 523990.9090909091, "tippecanoe:mean:GDP_YEAR": 2018.7272727272728, "tippecanoe:mean:WOE_ID": 21295329.727272728, "tippecanoe:mean:WOE_ID_EH": 23424871.454545455, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 10.636363636363637, "tippecanoe:mean:ABBREV_LEN": 5.818181818181818, "tippecanoe:mean:TINY": -80.54545454545455, "tippecanoe:mean:HOMEPART": -8.090909090909092, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1454545454545457, "tippecanoe:mean:MAX_LABEL": 8.081818181818182, "tippecanoe:mean:LABEL_X": 106.25743963636364, "tippecanoe:mean:LABEL_Y": 6.5146077272727249, "tippecanoe:mean:NE_ID": 1159320969.909091, "tippecanoe:count": 11 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.797363, 44.418088 ], [ -103.535156, 44.087585 ], [ -101.030273, 40.094882 ], [ -104.458008, 36.491973 ], [ -110.258789, 36.791691 ], [ -113.049316, 40.713956 ], [ -109.797363, 44.418088 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81263ffffffffff", "tippecanoe:count:scalerank": 4, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 5, "tippecanoe:sum:scalerank": 20, "tippecanoe:count:LABELRANK": 4, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 6, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:ADM0_DIF": 4, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 4, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 8, "tippecanoe:count:GEOU_DIF": 4, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 4, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 4, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 4, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 15, "tippecanoe:count:MAPCOLOR8": 4, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 17, "tippecanoe:count:MAPCOLOR9": 4, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 7, "tippecanoe:count:MAPCOLOR13": 4, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 27, "tippecanoe:count:POP_EST": 4, "tippecanoe:max:POP_EST": 167294, "tippecanoe:min:POP_EST": 18008, "tippecanoe:sum:POP_EST": 356333, "tippecanoe:count:POP_RANK": 4, "tippecanoe:max:POP_RANK": 9, "tippecanoe:min:POP_RANK": 6, "tippecanoe:sum:POP_RANK": 32, "tippecanoe:count:POP_YEAR": 4, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 8076, "tippecanoe:count:GDP_MD": 4, "tippecanoe:max:GDP_MD": 5920, "tippecanoe:min:GDP_MD": 268, "tippecanoe:sum:GDP_MD": 7912, "tippecanoe:count:GDP_YEAR": 4, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2018, "tippecanoe:sum:GDP_YEAR": 8073, "tippecanoe:count:WOE_ID": 4, "tippecanoe:max:WOE_ID": 23424927, "tippecanoe:min:WOE_ID": 23424788, "tippecanoe:sum:WOE_ID": 93699362, "tippecanoe:count:WOE_ID_EH": 4, "tippecanoe:max:WOE_ID_EH": 23424927, "tippecanoe:min:WOE_ID_EH": 23424788, "tippecanoe:sum:WOE_ID_EH": 93699362, "tippecanoe:count:ADM0_A3_UN": 4, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -396, "tippecanoe:count:ADM0_A3_WB": 4, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -396, "tippecanoe:count:NAME_LEN": 4, "tippecanoe:max:NAME_LEN": 14, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 33, "tippecanoe:count:LONG_LEN": 4, "tippecanoe:max:LONG_LEN": 30, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 63, "tippecanoe:count:ABBREV_LEN": 4, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 21, "tippecanoe:count:TINY": 4, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -92, "tippecanoe:count:HOMEPART": 4, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -196, "tippecanoe:count:MIN_ZOOM": 4, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 4, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 18, "tippecanoe:count:MAX_LABEL": 4, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 10, "tippecanoe:sum:MAX_LABEL": 40, "tippecanoe:count:LABEL_X": 4, "tippecanoe:max:LABEL_X": 158.234019, "tippecanoe:min:LABEL_X": 134.580157, "tippecanoe:sum:LABEL_X": 583.252187, "tippecanoe:count:LABEL_Y": 4, "tippecanoe:max:LABEL_Y": 15.188188, "tippecanoe:min:LABEL_Y": 6.887553, "tippecanoe:sum:LABEL_Y": 42.948166, "tippecanoe:count:NE_ID": 4, "tippecanoe:max:NE_ID": 1159321361, "tippecanoe:min:NE_ID": 1159320691, "tippecanoe:sum:NE_ID": 4637284582, "tippecanoe:mean:scalerank": 5, "tippecanoe:mean:LABELRANK": 6, "tippecanoe:mean:ADM0_DIF": 0.5, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.75, "tippecanoe:mean:MAPCOLOR8": 4.25, "tippecanoe:mean:MAPCOLOR9": 1.75, "tippecanoe:mean:MAPCOLOR13": 6.75, "tippecanoe:mean:POP_EST": 89083.25, "tippecanoe:mean:POP_RANK": 8, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1978, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23424840.5, "tippecanoe:mean:WOE_ID_EH": 23424840.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.25, "tippecanoe:mean:LONG_LEN": 15.75, "tippecanoe:mean:ABBREV_LEN": 5.25, "tippecanoe:mean:TINY": -23, "tippecanoe:mean:HOMEPART": -49, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.5, "tippecanoe:mean:MAX_LABEL": 10, "tippecanoe:mean:LABEL_X": 145.81304675, "tippecanoe:mean:LABEL_Y": 10.7370415, "tippecanoe:mean:NE_ID": 1159321145.5, "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -99.909668, 47.472663 ], [ -93.405762, 46.634351 ], [ -91.472168, 42.439674 ], [ -92.812500, 41.459195 ], [ -95.251465, 39.334297 ], [ -101.030273, 40.094882 ], [ -103.535156, 44.087585 ], [ -102.326660, 45.197522 ], [ -99.909668, 47.472663 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8122fffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 6, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 2, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 2, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 37589262, "tippecanoe:min:POP_EST": 37589262, "tippecanoe:sum:POP_EST": 37589262, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1736425, "tippecanoe:min:GDP_MD": 1736425, "tippecanoe:sum:GDP_MD": 1736425, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424775, "tippecanoe:min:WOE_ID": 23424775, "tippecanoe:sum:WOE_ID": 23424775, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424775, "tippecanoe:min:WOE_ID_EH": 23424775, "tippecanoe:sum:WOE_ID_EH": 23424775, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 6, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 6, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 6, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 6, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": -101.9107, "tippecanoe:min:LABEL_X": -101.9107, "tippecanoe:sum:LABEL_X": -101.9107, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": 60.324287, "tippecanoe:min:LABEL_Y": 60.324287, "tippecanoe:sum:LABEL_Y": 60.324287, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320467, "tippecanoe:min:NE_ID": 1159320467, "tippecanoe:sum:NE_ID": 1159320467, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 2, "tippecanoe:mean:POP_EST": 37589262, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1736425, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424775, "tippecanoe:mean:WOE_ID_EH": 23424775, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6, "tippecanoe:mean:LONG_LEN": 6, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": -101.9107, "tippecanoe:mean:LABEL_Y": 60.324287, "tippecanoe:mean:NE_ID": 1159320467, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -168.024902, 56.992883 ], [ -166.003418, 55.416544 ], [ -163.674316, 53.774689 ], [ -165.607910, 49.894634 ], [ -171.870117, 49.052270 ], [ -177.055664, 52.119999 ], [ -175.737305, 56.194481 ], [ -168.024902, 56.992883 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81283ffffffffff", "tippecanoe:count:scalerank": 18, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 18, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 71, "tippecanoe:count:ADM0_DIF": 18, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 18, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 36, "tippecanoe:count:GEOU_DIF": 18, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 18, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 18, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 18, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 61, "tippecanoe:count:MAPCOLOR8": 18, "tippecanoe:max:MAPCOLOR8": 8, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 73, "tippecanoe:count:MAPCOLOR9": 18, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 70, "tippecanoe:count:MAPCOLOR13": 18, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 112, "tippecanoe:count:POP_EST": 18, "tippecanoe:max:POP_EST": 86790567, "tippecanoe:min:POP_EST": 97625, "tippecanoe:sum:POP_EST": 431702297.3, "tippecanoe:count:POP_RANK": 18, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 8, "tippecanoe:sum:POP_RANK": 249, "tippecanoe:count:POP_YEAR": 18, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2014, "tippecanoe:sum:POP_YEAR": 36337, "tippecanoe:count:GDP_MD": 18, "tippecanoe:max:GDP_MD": 95503, "tippecanoe:min:GDP_MD": 1165, "tippecanoe:sum:GDP_MD": 402757, "tippecanoe:count:GDP_YEAR": 18, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 36329, "tippecanoe:count:WOE_ID": 18, "tippecanoe:max:WOE_ID": 23425004, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 351373220, "tippecanoe:count:WOE_ID_EH": 18, "tippecanoe:max:WOE_ID_EH": 23425004, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 374798259, "tippecanoe:count:ADM0_A3_UN": 18, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1782, "tippecanoe:count:ADM0_A3_WB": 18, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1782, "tippecanoe:count:NAME_LEN": 18, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 142, "tippecanoe:count:LONG_LEN": 18, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 162, "tippecanoe:count:ABBREV_LEN": 18, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 83, "tippecanoe:count:TINY": 18, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1580, "tippecanoe:count:HOMEPART": 18, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 18, "tippecanoe:count:MIN_ZOOM": 18, "tippecanoe:max:MIN_ZOOM": 4, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4, "tippecanoe:count:MIN_LABEL": 18, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 59.400000000000009, "tippecanoe:count:MAX_LABEL": 18, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 148.7, "tippecanoe:count:LABEL_X": 18, "tippecanoe:max:LABEL_X": 55.480175, "tippecanoe:min:LABEL_X": 23.458829, "tippecanoe:sum:LABEL_X": 673.251737, "tippecanoe:count:LABEL_Y": 18, "tippecanoe:max:LABEL_Y": 15.328226, "tippecanoe:min:LABEL_Y": -18.91164, "tippecanoe:sum:LABEL_Y": -59.005614, "tippecanoe:count:NE_ID": 18, "tippecanoe:max:NE_ID": 1159321441, "tippecanoe:min:NE_ID": 1159320387, "tippecanoe:sum:NE_ID": 20867779388, "tippecanoe:mean:scalerank": 0.4444444444444444, "tippecanoe:mean:LABELRANK": 3.9444444444444448, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.388888888888889, "tippecanoe:mean:MAPCOLOR8": 4.055555555555555, "tippecanoe:mean:MAPCOLOR9": 3.888888888888889, "tippecanoe:mean:MAPCOLOR13": 6.222222222222222, "tippecanoe:mean:POP_EST": 23983460.961111115, "tippecanoe:mean:POP_RANK": 13.833333333333334, "tippecanoe:mean:POP_YEAR": 2018.7222222222222, "tippecanoe:mean:GDP_MD": 22375.38888888889, "tippecanoe:mean:GDP_YEAR": 2018.2777777777779, "tippecanoe:mean:WOE_ID": 19520734.444444445, "tippecanoe:mean:WOE_ID_EH": 20822125.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.888888888888889, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4.611111111111111, "tippecanoe:mean:TINY": -87.77777777777777, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.2222222222222222, "tippecanoe:mean:MIN_LABEL": 3.3000000000000004, "tippecanoe:mean:MAX_LABEL": 8.261111111111111, "tippecanoe:mean:LABEL_X": 37.402874277777787, "tippecanoe:mean:LABEL_Y": -3.278089666666667, "tippecanoe:mean:NE_ID": 1159321077.1111112, "tippecanoe:count": 18 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.124023, 44.056012 ], [ -119.003906, 40.563895 ], [ -121.706543, 36.580247 ], [ -127.133789, 36.084621 ], [ -130.231934, 39.436193 ], [ -127.968750, 43.421009 ], [ -122.124023, 44.056012 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8128bffffffffff", "tippecanoe:count:scalerank": 6, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 5, "tippecanoe:count:LABELRANK": 6, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 3, "tippecanoe:sum:LABELRANK": 24, "tippecanoe:count:ADM0_DIF": 6, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 6, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 12, "tippecanoe:count:GEOU_DIF": 6, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 6, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 6, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 6, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 6, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 27, "tippecanoe:count:MAPCOLOR9": 6, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 22, "tippecanoe:count:MAPCOLOR13": 6, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": -56, "tippecanoe:count:POP_EST": 6, "tippecanoe:max:POP_EST": 163046161, "tippecanoe:min:POP_EST": 6000, "tippecanoe:sum:POP_EST": 214757916, "tippecanoe:count:POP_RANK": 6, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 5, "tippecanoe:sum:POP_RANK": 74, "tippecanoe:count:POP_YEAR": 6, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 12108, "tippecanoe:count:GDP_MD": 6, "tippecanoe:max:GDP_MD": 302571, "tippecanoe:min:GDP_MD": 15, "tippecanoe:sum:GDP_MD": 425407, "tippecanoe:count:GDP_YEAR": 6, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 12108, "tippecanoe:count:WOE_ID": 6, "tippecanoe:max:WOE_ID": 23424928, "tippecanoe:min:WOE_ID": 23424759, "tippecanoe:sum:WOE_ID": 140549045, "tippecanoe:count:WOE_ID_EH": 6, "tippecanoe:max:WOE_ID_EH": 23424928, "tippecanoe:min:WOE_ID_EH": 23424759, "tippecanoe:sum:WOE_ID_EH": 140549045, "tippecanoe:count:ADM0_A3_UN": 6, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -594, "tippecanoe:count:ADM0_A3_WB": 6, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -594, "tippecanoe:count:NAME_LEN": 6, "tippecanoe:max:NAME_LEN": 15, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 53, "tippecanoe:count:LONG_LEN": 6, "tippecanoe:max:LONG_LEN": 15, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 53, "tippecanoe:count:ABBREV_LEN": 6, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 5, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 6, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -493, "tippecanoe:count:HOMEPART": 6, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 6, "tippecanoe:count:MIN_ZOOM": 6, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 6, "tippecanoe:max:MIN_LABEL": 6.5, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 23.5, "tippecanoe:count:MAX_LABEL": 6, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 51.5, "tippecanoe:count:LABEL_X": 6, "tippecanoe:max:LABEL_X": 90.040294, "tippecanoe:min:LABEL_X": 73.507554, "tippecanoe:sum:LABEL_X": 494.7071010000001, "tippecanoe:count:LABEL_Y": 6, "tippecanoe:max:LABEL_Y": 35.340606, "tippecanoe:min:LABEL_Y": 4.174441, "tippecanoe:sum:LABEL_Y": 127.14571000000001, "tippecanoe:count:NE_ID": 6, "tippecanoe:max:NE_ID": 1159321121, "tippecanoe:min:NE_ID": 1159320407, "tippecanoe:sum:NE_ID": 6955925022, "tippecanoe:mean:scalerank": 0.8333333333333334, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.16666666666666667, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3.6666666666666667, "tippecanoe:mean:MAPCOLOR13": -9.333333333333334, "tippecanoe:mean:POP_EST": 35792986, "tippecanoe:mean:POP_RANK": 12.333333333333334, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 70901.16666666667, "tippecanoe:mean:GDP_YEAR": 2018, "tippecanoe:mean:WOE_ID": 23424840.833333333, "tippecanoe:mean:WOE_ID_EH": 23424840.833333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.833333333333334, "tippecanoe:mean:LONG_LEN": 8.833333333333334, "tippecanoe:mean:ABBREV_LEN": 5.666666666666667, "tippecanoe:mean:TINY": -82.16666666666667, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0.8333333333333334, "tippecanoe:mean:MIN_LABEL": 3.9166666666666667, "tippecanoe:mean:MAX_LABEL": 8.583333333333334, "tippecanoe:mean:LABEL_X": 82.45118350000002, "tippecanoe:mean:LABEL_Y": 21.190951666666668, "tippecanoe:mean:NE_ID": 1159320837, "tippecanoe:count": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.785645, 48.004625 ], [ -109.797363, 44.418088 ], [ -113.049316, 40.713956 ], [ -119.003906, 40.563895 ], [ -122.124023, 44.056012 ], [ -119.223633, 47.798397 ], [ -112.785645, 48.004625 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "811d7ffffffffff", "tippecanoe:count:scalerank": 25, "tippecanoe:max:scalerank": 6, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 16, "tippecanoe:count:LABELRANK": 25, "tippecanoe:max:LABELRANK": 7, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 117, "tippecanoe:count:ADM0_DIF": 25, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 25, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 50, "tippecanoe:count:GEOU_DIF": 25, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 25, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 25, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 25, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 79, "tippecanoe:count:MAPCOLOR8": 25, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 88, "tippecanoe:count:MAPCOLOR9": 25, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 83, "tippecanoe:count:MAPCOLOR13": 25, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 153, "tippecanoe:count:POP_EST": 25, "tippecanoe:max:POP_EST": 66834405, "tippecanoe:min:POP_EST": 38019, "tippecanoe:sum:POP_EST": 295370555, "tippecanoe:count:POP_RANK": 25, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 304, "tippecanoe:count:POP_YEAR": 25, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 50473, "tippecanoe:count:GDP_MD": 25, "tippecanoe:max:GDP_MD": 2829108, "tippecanoe:min:GDP_MD": 907, "tippecanoe:sum:GDP_MD": 7538152, "tippecanoe:count:GDP_YEAR": 25, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2007, "tippecanoe:sum:GDP_YEAR": 50457, "tippecanoe:count:WOE_ID": 25, "tippecanoe:max:WOE_ID": 23424990, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 511991283, "tippecanoe:count:WOE_ID_EH": 25, "tippecanoe:max:WOE_ID_EH": 29389201, "tippecanoe:min:WOE_ID_EH": 20069817, "tippecanoe:sum:WOE_ID_EH": 584875547, "tippecanoe:count:ADM0_A3_UN": 25, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2475, "tippecanoe:count:ADM0_A3_WB": 25, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2475, "tippecanoe:count:NAME_LEN": 25, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 208, "tippecanoe:count:LONG_LEN": 25, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 226, "tippecanoe:count:ABBREV_LEN": 25, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 117, "tippecanoe:count:TINY": 25, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2060, "tippecanoe:count:HOMEPART": 25, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -175, "tippecanoe:count:MIN_ZOOM": 25, "tippecanoe:max:MIN_ZOOM": 4.7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 4.7, "tippecanoe:count:MIN_LABEL": 25, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 102.1, "tippecanoe:count:MAX_LABEL": 25, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 221.5, "tippecanoe:count:LABEL_X": 25, "tippecanoe:max:LABEL_X": 25.15709, "tippecanoe:min:LABEL_X": -12.630304, "tippecanoe:sum:LABEL_X": 240.679746, "tippecanoe:count:LABEL_Y": 25, "tippecanoe:max:LABEL_Y": 54.402739, "tippecanoe:min:LABEL_Y": 23.967592, "tippecanoe:sum:LABEL_Y": 1065.060767, "tippecanoe:count:NE_ID": 25, "tippecanoe:max:NE_ID": 1159321327, "tippecanoe:min:NE_ID": 1159320325, "tippecanoe:sum:NE_ID": 28983020085, "tippecanoe:mean:scalerank": 0.64, "tippecanoe:mean:LABELRANK": 4.68, "tippecanoe:mean:ADM0_DIF": 0.12, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.04, "tippecanoe:mean:MAPCOLOR7": 3.16, "tippecanoe:mean:MAPCOLOR8": 3.52, "tippecanoe:mean:MAPCOLOR9": 3.32, "tippecanoe:mean:MAPCOLOR13": 6.12, "tippecanoe:mean:POP_EST": 11814822.2, "tippecanoe:mean:POP_RANK": 12.16, "tippecanoe:mean:POP_YEAR": 2018.92, "tippecanoe:mean:GDP_MD": 301526.08, "tippecanoe:mean:GDP_YEAR": 2018.28, "tippecanoe:mean:WOE_ID": 20479651.32, "tippecanoe:mean:WOE_ID_EH": 23395021.88, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.32, "tippecanoe:mean:LONG_LEN": 9.04, "tippecanoe:mean:ABBREV_LEN": 4.68, "tippecanoe:mean:TINY": -82.4, "tippecanoe:mean:HOMEPART": -7, "tippecanoe:mean:MIN_ZOOM": 0.188, "tippecanoe:mean:MIN_LABEL": 4.084, "tippecanoe:mean:MAX_LABEL": 8.86, "tippecanoe:mean:LABEL_X": 9.62718984, "tippecanoe:mean:LABEL_Y": 42.60243068, "tippecanoe:mean:NE_ID": 1159320803.4, "tippecanoe:count": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -133.857422, 52.842595 ], [ -128.913574, 50.148746 ], [ -131.286621, 46.422713 ], [ -136.691895, 45.336702 ], [ -140.053711, 47.857403 ], [ -138.911133, 50.317408 ], [ -138.999023, 51.522416 ], [ -133.857422, 52.842595 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81373ffffffffff", "tippecanoe:count:scalerank": 12, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 15, "tippecanoe:count:LABELRANK": 12, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 50, "tippecanoe:count:ADM0_DIF": 12, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 12, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 24, "tippecanoe:count:GEOU_DIF": 12, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 12, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 12, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 12, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 36, "tippecanoe:count:MAPCOLOR8": 12, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 39, "tippecanoe:count:MAPCOLOR9": 12, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 12, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 76, "tippecanoe:count:POP_EST": 12, "tippecanoe:max:POP_EST": 211049527, "tippecanoe:min:POP_EST": 110589, "tippecanoe:sum:POP_EST": 304418803, "tippecanoe:count:POP_RANK": 12, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 9, "tippecanoe:sum:POP_RANK": 146, "tippecanoe:count:POP_YEAR": 12, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 24228, "tippecanoe:count:GDP_MD": 12, "tippecanoe:max:GDP_MD": 1839758, "tippecanoe:min:GDP_MD": 824, "tippecanoe:sum:GDP_MD": 3541305, "tippecanoe:count:GDP_YEAR": 12, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2014, "tippecanoe:sum:GDP_YEAR": 24223, "tippecanoe:count:WOE_ID": 12, "tippecanoe:max:WOE_ID": 23424982, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 234248644, "tippecanoe:count:WOE_ID_EH": 12, "tippecanoe:max:WOE_ID_EH": 24549810, "tippecanoe:min:WOE_ID_EH": 23424754, "tippecanoe:sum:WOE_ID_EH": 282223543, "tippecanoe:count:ADM0_A3_UN": 12, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1188, "tippecanoe:count:ADM0_A3_WB": 12, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1188, "tippecanoe:count:NAME_LEN": 12, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 114, "tippecanoe:count:LONG_LEN": 12, "tippecanoe:max:LONG_LEN": 32, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 128, "tippecanoe:count:ABBREV_LEN": 12, "tippecanoe:max:ABBREV_LEN": 7, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 12, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -779, "tippecanoe:count:HOMEPART": 12, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -88, "tippecanoe:count:MIN_ZOOM": 12, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 12, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 45.2, "tippecanoe:count:MAX_LABEL": 12, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 104.2, "tippecanoe:count:LABEL_X": 12, "tippecanoe:max:LABEL_X": 5.61144, "tippecanoe:min:LABEL_X": -72.90016, "tippecanoe:sum:LABEL_X": -672.618505, "tippecanoe:count:LABEL_Y": 12, "tippecanoe:max:LABEL_Y": 52.422211, "tippecanoe:min:LABEL_Y": -16.666015, "tippecanoe:sum:LABEL_Y": 90.419529, "tippecanoe:count:NE_ID": 12, "tippecanoe:max:NE_ID": 1159321411, "tippecanoe:min:NE_ID": 1159320439, "tippecanoe:sum:NE_ID": 13911851950, "tippecanoe:mean:scalerank": 1.25, "tippecanoe:mean:LABELRANK": 4.166666666666667, "tippecanoe:mean:ADM0_DIF": 0.16666666666666667, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.25, "tippecanoe:mean:MAPCOLOR9": 3.5, "tippecanoe:mean:MAPCOLOR13": 6.333333333333333, "tippecanoe:mean:POP_EST": 25368233.583333333, "tippecanoe:mean:POP_RANK": 12.166666666666666, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 295108.75, "tippecanoe:mean:GDP_YEAR": 2018.5833333333333, "tippecanoe:mean:WOE_ID": 19520720.333333333, "tippecanoe:mean:WOE_ID_EH": 23518628.583333333, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.5, "tippecanoe:mean:LONG_LEN": 10.666666666666666, "tippecanoe:mean:ABBREV_LEN": 4.916666666666667, "tippecanoe:mean:TINY": -64.91666666666667, "tippecanoe:mean:HOMEPART": -7.333333333333333, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.766666666666667, "tippecanoe:mean:MAX_LABEL": 8.683333333333334, "tippecanoe:mean:LABEL_X": -56.05154208333334, "tippecanoe:mean:LABEL_Y": 7.53496075, "tippecanoe:mean:NE_ID": 1159320995.8333333, "tippecanoe:count": 12 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -147.458496, 44.087585 ], [ -143.854980, 41.211722 ], [ -145.744629, 37.683820 ], [ -151.127930, 37.037640 ], [ -154.775391, 39.909736 ], [ -153.039551, 43.436966 ], [ -147.458496, 44.087585 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81287ffffffffff", "tippecanoe:count:scalerank": 21, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 21, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 72, "tippecanoe:count:ADM0_DIF": 21, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 21, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 42, "tippecanoe:count:GEOU_DIF": 21, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 21, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 21, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 21, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 75, "tippecanoe:count:MAPCOLOR8": 21, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 64, "tippecanoe:count:MAPCOLOR9": 21, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 90, "tippecanoe:count:MAPCOLOR13": 21, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 146, "tippecanoe:count:POP_EST": 21, "tippecanoe:max:POP_EST": 200963599, "tippecanoe:min:POP_EST": 215056, "tippecanoe:sum:POP_EST": 679786972, "tippecanoe:count:POP_RANK": 21, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 10, "tippecanoe:sum:POP_RANK": 294, "tippecanoe:count:POP_YEAR": 21, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 42399, "tippecanoe:count:GDP_MD": 21, "tippecanoe:max:GDP_MD": 2715518, "tippecanoe:min:GDP_MD": 418, "tippecanoe:sum:GDP_MD": 6605927, "tippecanoe:count:GDP_YEAR": 21, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 42399, "tippecanoe:count:WOE_ID": 21, "tippecanoe:max:WOE_ID": 23424978, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 445072106, "tippecanoe:count:WOE_ID_EH": 21, "tippecanoe:max:WOE_ID_EH": 23424978, "tippecanoe:min:WOE_ID_EH": 23424745, "tippecanoe:sum:WOE_ID_EH": 491922015, "tippecanoe:count:ADM0_A3_UN": 21, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2079, "tippecanoe:count:ADM0_A3_WB": 21, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2079, "tippecanoe:count:NAME_LEN": 21, "tippecanoe:max:NAME_LEN": 21, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 164, "tippecanoe:count:LONG_LEN": 21, "tippecanoe:max:LONG_LEN": 24, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 191, "tippecanoe:count:ABBREV_LEN": 21, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 3, "tippecanoe:sum:ABBREV_LEN": 104, "tippecanoe:count:TINY": 21, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1875, "tippecanoe:count:HOMEPART": 21, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 21, "tippecanoe:count:MIN_ZOOM": 21, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 21, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 66.6, "tippecanoe:count:MAX_LABEL": 21, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 169.1, "tippecanoe:count:LABEL_X": 21, "tippecanoe:max:LABEL_X": 20.906897, "tippecanoe:min:LABEL_X": -102.289448, "tippecanoe:sum:LABEL_X": 21.184831999999994, "tippecanoe:count:LABEL_Y": 21, "tippecanoe:max:LABEL_Y": 61.357092, "tippecanoe:min:LABEL_Y": -12.182762, "tippecanoe:sum:LABEL_Y": 288.647513, "tippecanoe:count:NE_ID": 21, "tippecanoe:max:NE_ID": 1159321303, "tippecanoe:min:NE_ID": 1159320323, "tippecanoe:sum:NE_ID": 24345736927, "tippecanoe:mean:scalerank": 0.14285714285714286, "tippecanoe:mean:LABELRANK": 3.4285714285714286, "tippecanoe:mean:ADM0_DIF": 0.047619047619047619, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5714285714285718, "tippecanoe:mean:MAPCOLOR8": 3.0476190476190476, "tippecanoe:mean:MAPCOLOR9": 4.285714285714286, "tippecanoe:mean:MAPCOLOR13": 6.9523809523809529, "tippecanoe:mean:POP_EST": 32370808.19047619, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 314567.95238095239, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 21193909.80952381, "tippecanoe:mean:WOE_ID_EH": 23424857.85714286, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.809523809523809, "tippecanoe:mean:LONG_LEN": 9.095238095238095, "tippecanoe:mean:ABBREV_LEN": 4.9523809523809529, "tippecanoe:mean:TINY": -89.28571428571429, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.1714285714285714, "tippecanoe:mean:MAX_LABEL": 8.052380952380953, "tippecanoe:mean:LABEL_X": 1.0088015238095234, "tippecanoe:mean:LABEL_Y": 13.745119666666668, "tippecanoe:mean:NE_ID": 1159320806.047619, "tippecanoe:count": 21 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -131.286621, 46.422713 ], [ -127.968750, 43.421009 ], [ -130.231934, 39.436193 ], [ -135.329590, 38.548165 ], [ -138.449707, 41.459195 ], [ -136.691895, 45.336702 ], [ -131.286621, 46.422713 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "811cfffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 31, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 18, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 33, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 24, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 42, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 16296364, "tippecanoe:min:POP_EST": 549935, "tippecanoe:sum:POP_EST": 56494501, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 11, "tippecanoe:sum:POP_RANK": 102, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16152, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 238785, "tippecanoe:min:GDP_MD": 1339, "tippecanoe:sum:GDP_MD": 291526, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 16152, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424946, "tippecanoe:min:WOE_ID": 23424794, "tippecanoe:sum:WOE_ID": 187399089, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424946, "tippecanoe:min:WOE_ID_EH": 23424794, "tippecanoe:sum:WOE_ID_EH": 187399089, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 13, "tippecanoe:min:NAME_LEN": 6, "tippecanoe:sum:NAME_LEN": 72, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 22, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 88, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 36, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -792, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 8, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 29.7, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 70, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": -8.271754, "tippecanoe:min:LABEL_X": -23.639434, "tippecanoe:sum:LABEL_X": -107.7326, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 39.606675, "tippecanoe:min:LABEL_Y": 8.617449, "tippecanoe:sum:LABEL_Y": 134.44802099999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321251, "tippecanoe:min:NE_ID": 1159320523, "tippecanoe:sum:NE_ID": 9274567670, "tippecanoe:mean:scalerank": 0.375, "tippecanoe:mean:LABELRANK": 3.875, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0.125, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.25, "tippecanoe:mean:MAPCOLOR8": 4.125, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 5.25, "tippecanoe:mean:POP_EST": 7061812.625, "tippecanoe:mean:POP_RANK": 12.75, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 36440.75, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424886.125, "tippecanoe:mean:WOE_ID_EH": 23424886.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 11, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.7125, "tippecanoe:mean:MAX_LABEL": 8.75, "tippecanoe:mean:LABEL_X": -13.466575, "tippecanoe:mean:LABEL_Y": 16.806002624999999, "tippecanoe:mean:NE_ID": 1159320958.75, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -140.053711, 47.857403 ], [ -136.691895, 45.336702 ], [ -138.449707, 41.459195 ], [ -143.854980, 41.211722 ], [ -147.458496, 44.087585 ], [ -145.502930, 47.234490 ], [ -141.723633, 47.413220 ], [ -140.053711, 47.857403 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "811cbffffffffff", "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 35, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 10, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 81, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 9, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 63, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 60, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 68, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 12, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 68, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 11263077, "tippecanoe:min:POP_EST": 4649, "tippecanoe:sum:POP_EST": 26047555, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 14, "tippecanoe:min:POP_RANK": 4, "tippecanoe:sum:POP_RANK": 118, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 28263, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 104988, "tippecanoe:min:GDP_MD": 44, "tippecanoe:sum:GDP_MD": 238179, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 1999, "tippecanoe:sum:GDP_YEAR": 28223, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 56042305, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 337140586, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 56042305, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 337140586, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 183, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 28, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 224, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 11, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 96, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 6, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -563, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -886, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 64.5, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 133.5, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": -56.332352, "tippecanoe:min:LABEL_X": -77.146688, "tippecanoe:sum:LABEL_X": -932.2607110000001, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 47.040344, "tippecanoe:min:LABEL_Y": 15.458829, "tippecanoe:sum:LABEL_Y": 307.87920399999998, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321371, "tippecanoe:min:NE_ID": 1159320345, "tippecanoe:sum:NE_ID": 16230490162, "tippecanoe:mean:scalerank": 2.5, "tippecanoe:mean:LABELRANK": 5.785714285714286, "tippecanoe:mean:ADM0_DIF": 0.6428571428571429, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.07142857142857143, "tippecanoe:mean:MAPCOLOR7": 4.5, "tippecanoe:mean:MAPCOLOR8": 4.285714285714286, "tippecanoe:mean:MAPCOLOR9": 4.857142857142857, "tippecanoe:mean:MAPCOLOR13": 4.857142857142857, "tippecanoe:mean:POP_EST": 1860539.642857143, "tippecanoe:mean:POP_RANK": 8.428571428571429, "tippecanoe:mean:POP_YEAR": 2018.7857142857143, "tippecanoe:mean:GDP_MD": 17012.785714285714, "tippecanoe:mean:GDP_YEAR": 2015.9285714285714, "tippecanoe:mean:WOE_ID": 24081470.42857143, "tippecanoe:mean:WOE_ID_EH": 24081470.42857143, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 13.071428571428572, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6.857142857142857, "tippecanoe:mean:TINY": -40.214285714285718, "tippecanoe:mean:HOMEPART": -63.285714285714288, "tippecanoe:mean:MIN_ZOOM": 0.35714285714285717, "tippecanoe:mean:MIN_LABEL": 4.607142857142857, "tippecanoe:mean:MAX_LABEL": 9.535714285714287, "tippecanoe:mean:LABEL_X": -66.5900507857143, "tippecanoe:mean:LABEL_Y": 21.991371714285714, "tippecanoe:mean:NE_ID": 1159320725.857143, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -153.786621, 50.527397 ], [ -148.403320, 50.429518 ], [ -146.755371, 48.092757 ], [ -145.502930, 47.234490 ], [ -147.458496, 44.087585 ], [ -153.039551, 43.436966 ], [ -156.027832, 46.905246 ], [ -153.786621, 50.527397 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8136bffffffffff", "tippecanoe:count:scalerank": 3, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 3, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 13, "tippecanoe:count:ADM0_DIF": 3, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 3, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 6, "tippecanoe:count:GEOU_DIF": 3, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 3, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 3, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 3, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 3, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 3, "tippecanoe:max:MAPCOLOR8": 4, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 6, "tippecanoe:count:MAPCOLOR9": 3, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 3, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 25, "tippecanoe:count:POP_EST": 3, "tippecanoe:max:POP_EST": 44938712, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 63890750, "tippecanoe:count:POP_RANK": 3, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 30, "tippecanoe:count:POP_YEAR": 3, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 6057, "tippecanoe:count:GDP_MD": 3, "tippecanoe:max:GDP_MD": 445445, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 727763, "tippecanoe:count:GDP_YEAR": 3, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 6057, "tippecanoe:count:WOE_ID": 3, "tippecanoe:max:WOE_ID": 23424782, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 46849430, "tippecanoe:count:WOE_ID_EH": 3, "tippecanoe:max:WOE_ID_EH": 23424782, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 46849430, "tippecanoe:count:ADM0_A3_UN": 3, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -297, "tippecanoe:count:ADM0_A3_WB": 3, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -297, "tippecanoe:count:NAME_LEN": 3, "tippecanoe:max:NAME_LEN": 29, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 43, "tippecanoe:count:LONG_LEN": 3, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 43, "tippecanoe:count:ABBREV_LEN": 3, "tippecanoe:max:ABBREV_LEN": 16, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 25, "tippecanoe:count:TINY": 3, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -297, "tippecanoe:count:HOMEPART": 3, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 3, "tippecanoe:count:MIN_ZOOM": 3, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 7, "tippecanoe:count:MIN_LABEL": 3, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 11.4, "tippecanoe:count:MAX_LABEL": 3, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 22.7, "tippecanoe:count:LABEL_X": 3, "tippecanoe:max:LABEL_X": -64.173331, "tippecanoe:min:LABEL_X": -73.31378, "tippecanoe:sum:LABEL_X": -209.80598200000004, "tippecanoe:count:LABEL_Y": 3, "tippecanoe:max:LABEL_Y": -33.501159, "tippecanoe:min:LABEL_Y": -49.511034, "tippecanoe:sum:LABEL_Y": -121.16396399999999, "tippecanoe:count:NE_ID": 3, "tippecanoe:max:NE_ID": 1729635141, "tippecanoe:min:NE_ID": 1159320331, "tippecanoe:sum:NE_ID": 4048275965, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4.333333333333333, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.3333333333333333, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 8.333333333333334, "tippecanoe:mean:POP_EST": 21296916.666666669, "tippecanoe:mean:POP_RANK": 10, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 242587.66666666667, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 15616476.666666666, "tippecanoe:mean:WOE_ID_EH": 15616476.666666666, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 14.333333333333334, "tippecanoe:mean:LONG_LEN": 14.333333333333334, "tippecanoe:mean:ABBREV_LEN": 8.333333333333334, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 2.3333333333333337, "tippecanoe:mean:MIN_LABEL": 3.8000000000000004, "tippecanoe:mean:MAX_LABEL": 7.566666666666666, "tippecanoe:mean:LABEL_X": -69.93532733333335, "tippecanoe:mean:LABEL_Y": -40.387988, "tippecanoe:mean:NE_ID": 1349425321.6666668, "tippecanoe:count": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -152.841797, 33.119150 ], [ -149.348145, 29.897806 ], [ -151.040039, 25.661333 ], [ -156.093750, 24.686952 ], [ -159.565430, 27.916767 ], [ -158.049316, 32.119801 ], [ -152.841797, 33.119150 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81363ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 8, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 7, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 5, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 8, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 10, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 12, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 7044636, "tippecanoe:min:POP_EST": 3461734, "tippecanoe:sum:POP_EST": 10506370, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 25, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 56045, "tippecanoe:min:GDP_MD": 38145, "tippecanoe:sum:GDP_MD": 94190, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424979, "tippecanoe:min:WOE_ID": 23424917, "tippecanoe:sum:WOE_ID": 46849896, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424979, "tippecanoe:min:WOE_ID_EH": 23424917, "tippecanoe:sum:WOE_ID_EH": 46849896, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 8, "tippecanoe:min:NAME_LEN": 7, "tippecanoe:sum:NAME_LEN": 15, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 8, "tippecanoe:min:LONG_LEN": 7, "tippecanoe:sum:LONG_LEN": 15, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 3, "tippecanoe:min:MIN_LABEL": 3, "tippecanoe:sum:MIN_LABEL": 6, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 8, "tippecanoe:min:MAX_LABEL": 8, "tippecanoe:sum:MAX_LABEL": 16, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -55.966942, "tippecanoe:min:LABEL_X": -60.146394, "tippecanoe:sum:LABEL_X": -116.113336, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -21.674509, "tippecanoe:min:LABEL_Y": -32.961127, "tippecanoe:sum:LABEL_Y": -54.635636, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321353, "tippecanoe:min:NE_ID": 1159321195, "tippecanoe:sum:NE_ID": 2318642548, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 4, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.5, "tippecanoe:mean:MAPCOLOR8": 2.5, "tippecanoe:mean:MAPCOLOR9": 4, "tippecanoe:mean:MAPCOLOR13": 6, "tippecanoe:mean:POP_EST": 5253185, "tippecanoe:mean:POP_RANK": 12.5, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 47095, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424948, "tippecanoe:mean:WOE_ID_EH": 23424948, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.5, "tippecanoe:mean:LONG_LEN": 7.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3, "tippecanoe:mean:MAX_LABEL": 8, "tippecanoe:mean:LABEL_X": -58.056668, "tippecanoe:mean:LABEL_Y": -27.317818, "tippecanoe:mean:NE_ID": 1159321274, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -145.744629, 37.683820 ], [ -142.316895, 34.452218 ], [ -144.162598, 30.562261 ], [ -149.348145, 29.897806 ], [ -152.841797, 33.119150 ], [ -151.127930, 37.037640 ], [ -145.744629, 37.683820 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8136fffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 1, "tippecanoe:sum:scalerank": 4, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 4, "tippecanoe:sum:LABELRANK": 9, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 6, "tippecanoe:sum:MAPCOLOR7": 12, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 6, "tippecanoe:sum:MAPCOLOR8": 12, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 6, "tippecanoe:sum:MAPCOLOR9": 12, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 3, "tippecanoe:min:MAPCOLOR13": 3, "tippecanoe:sum:MAPCOLOR13": 6, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 3398, "tippecanoe:min:POP_EST": 30, "tippecanoe:sum:POP_EST": 3428, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 4, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 5, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2017, "tippecanoe:min:POP_YEAR": 2016, "tippecanoe:sum:POP_YEAR": 4033, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 282, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 282, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2012, "tippecanoe:sum:GDP_YEAR": 4028, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424955, "tippecanoe:min:WOE_ID": 23424814, "tippecanoe:sum:WOE_ID": 46849769, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424955, "tippecanoe:min:WOE_ID_EH": 23424814, "tippecanoe:sum:WOE_ID_EH": 46849769, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 19, "tippecanoe:min:NAME_LEN": 12, "tippecanoe:sum:NAME_LEN": 31, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 29, "tippecanoe:min:LONG_LEN": 27, "tippecanoe:sum:LONG_LEN": 56, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 8, "tippecanoe:sum:ABBREV_LEN": 18, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 3, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -96, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 4.5, "tippecanoe:sum:MIN_LABEL": 9.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": -31.063179, "tippecanoe:min:LABEL_X": -58.738602, "tippecanoe:sum:LABEL_X": -89.801781, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -51.608913, "tippecanoe:min:LABEL_Y": -55.683402, "tippecanoe:sum:LABEL_Y": -107.292315, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320731, "tippecanoe:min:NE_ID": 1159320711, "tippecanoe:sum:NE_ID": 2318641442, "tippecanoe:mean:scalerank": 2, "tippecanoe:mean:LABELRANK": 4.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.5, "tippecanoe:mean:MAPCOLOR7": 6, "tippecanoe:mean:MAPCOLOR8": 6, "tippecanoe:mean:MAPCOLOR9": 6, "tippecanoe:mean:MAPCOLOR13": 3, "tippecanoe:mean:POP_EST": 1714, "tippecanoe:mean:POP_RANK": 2.5, "tippecanoe:mean:POP_YEAR": 2016.5, "tippecanoe:mean:GDP_MD": 141, "tippecanoe:mean:GDP_YEAR": 2014, "tippecanoe:mean:WOE_ID": 23424884.5, "tippecanoe:mean:WOE_ID_EH": 23424884.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 15.5, "tippecanoe:mean:LONG_LEN": 28, "tippecanoe:mean:ABBREV_LEN": 9, "tippecanoe:mean:TINY": -48, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.75, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": -44.9008905, "tippecanoe:mean:LABEL_Y": -53.6461575, "tippecanoe:mean:NE_ID": 1159320721, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -144.162598, 30.562261 ], [ -140.910645, 27.059126 ], [ -142.712402, 22.877440 ], [ -147.700195, 22.167058 ], [ -151.040039, 25.661333 ], [ -149.348145, 29.897806 ], [ -144.162598, 30.562261 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8112fffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 27, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 1, "tippecanoe:sum:LEVEL": 15, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 1, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 32, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 31, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 42, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 41, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 216565318, "tippecanoe:min:POP_EST": 36175, "tippecanoe:sum:POP_EST": 325740912, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 106, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2009, "tippecanoe:sum:POP_YEAR": 16142, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 278221, "tippecanoe:min:GDP_MD": 596, "tippecanoe:sum:GDP_MD": 568260, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2013, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 23424980, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": 140549173, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 23424980, "tippecanoe:min:WOE_ID_EH": 20070177, "tippecanoe:sum:WOE_ID_EH": 184044401, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 75, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 8, "tippecanoe:sum:LONG_LEN": 86, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 34, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -688, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 5, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 5, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 6, "tippecanoe:min:MIN_LABEL": 2.7, "tippecanoe:sum:MIN_LABEL": 27.4, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 7, "tippecanoe:sum:MAX_LABEL": 62.5, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 104.150405, "tippecanoe:min:LABEL_X": 63.383897, "tippecanoe:sum:LABEL_X": 582.38741, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 49.054149, "tippecanoe:min:LABEL_Y": 29.328389, "tippecanoe:sum:LABEL_Y": 326.084598, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321405, "tippecanoe:min:NE_ID": 1159320319, "tippecanoe:sum:NE_ID": 9274568164, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3.375, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 1.875, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.125, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.875, "tippecanoe:mean:MAPCOLOR9": 5.25, "tippecanoe:mean:MAPCOLOR13": 5.125, "tippecanoe:mean:POP_EST": 40717614, "tippecanoe:mean:POP_RANK": 13.25, "tippecanoe:mean:POP_YEAR": 2017.75, "tippecanoe:mean:GDP_MD": 71032.5, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 17568646.625, "tippecanoe:mean:WOE_ID_EH": 23005550.125, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9.375, "tippecanoe:mean:LONG_LEN": 10.75, "tippecanoe:mean:ABBREV_LEN": 4.25, "tippecanoe:mean:TINY": -86, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 0.625, "tippecanoe:mean:MIN_LABEL": 3.425, "tippecanoe:mean:MAX_LABEL": 7.8125, "tippecanoe:mean:LABEL_X": 72.79842625, "tippecanoe:mean:LABEL_Y": 40.76057475, "tippecanoe:mean:NE_ID": 1159321020.5, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.235840, 55.478853 ], [ -109.995117, 51.754240 ], [ -112.785645, 48.004625 ], [ -119.223633, 47.798397 ], [ -120.915527, 49.396675 ], [ -123.112793, 50.986099 ], [ -121.442871, 54.914514 ], [ -114.235840, 55.478853 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8127bffffffffff", "tippecanoe:count:scalerank": 8, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 8, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 22, "tippecanoe:count:ADM0_DIF": 8, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 8, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 16, "tippecanoe:count:GEOU_DIF": 8, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 8, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 8, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 8, "tippecanoe:max:MAPCOLOR7": 5, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 27, "tippecanoe:count:MAPCOLOR8": 8, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 29, "tippecanoe:count:MAPCOLOR9": 8, "tippecanoe:max:MAPCOLOR9": 7, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 30, "tippecanoe:count:MAPCOLOR13": 8, "tippecanoe:max:MAPCOLOR13": 9, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 39, "tippecanoe:count:POP_EST": 8, "tippecanoe:max:POP_EST": 1397715000, "tippecanoe:min:POP_EST": 7169455, "tippecanoe:sum:POP_EST": 1736062529, "tippecanoe:count:POP_RANK": 8, "tippecanoe:max:POP_RANK": 18, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 123, "tippecanoe:count:POP_YEAR": 8, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 16153, "tippecanoe:count:GDP_MD": 8, "tippecanoe:max:GDP_MD": 14342903, "tippecanoe:min:GDP_MD": 18173, "tippecanoe:sum:GDP_MD": 22884216, "tippecanoe:count:GDP_YEAR": 8, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 16146, "tippecanoe:count:WOE_ID": 8, "tippecanoe:max:WOE_ID": 24865698, "tippecanoe:min:WOE_ID": 23424781, "tippecanoe:sum:WOE_ID": 188839895, "tippecanoe:count:WOE_ID_EH": 8, "tippecanoe:max:WOE_ID_EH": 24865698, "tippecanoe:min:WOE_ID_EH": 23424781, "tippecanoe:sum:WOE_ID_EH": 188839895, "tippecanoe:count:ADM0_A3_UN": 8, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -792, "tippecanoe:count:ADM0_A3_WB": 8, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -792, "tippecanoe:count:NAME_LEN": 8, "tippecanoe:max:NAME_LEN": 11, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 58, "tippecanoe:count:LONG_LEN": 8, "tippecanoe:max:LONG_LEN": 17, "tippecanoe:min:LONG_LEN": 5, "tippecanoe:sum:LONG_LEN": 71, "tippecanoe:count:ABBREV_LEN": 8, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 37, "tippecanoe:count:TINY": 8, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -691, "tippecanoe:count:HOMEPART": 8, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -92, "tippecanoe:count:MIN_ZOOM": 8, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 8, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 23.4, "tippecanoe:count:MAX_LABEL": 8, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 60.7, "tippecanoe:count:LABEL_X": 8, "tippecanoe:max:LABEL_X": 138.44217, "tippecanoe:min:LABEL_X": 102.533912, "tippecanoe:sum:LABEL_X": 942.240656, "tippecanoe:count:LABEL_Y": 8, "tippecanoe:max:LABEL_Y": 39.885252, "tippecanoe:min:LABEL_Y": 19.431821, "tippecanoe:sum:LABEL_Y": 232.15936599999999, "tippecanoe:count:NE_ID": 8, "tippecanoe:max:NE_ID": 1159321417, "tippecanoe:min:NE_ID": 1159320471, "tippecanoe:sum:NE_ID": 9274567810, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2.75, "tippecanoe:mean:ADM0_DIF": 0.25, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3.375, "tippecanoe:mean:MAPCOLOR8": 3.625, "tippecanoe:mean:MAPCOLOR9": 3.75, "tippecanoe:mean:MAPCOLOR13": 4.875, "tippecanoe:mean:POP_EST": 217007816.125, "tippecanoe:mean:POP_RANK": 15.375, "tippecanoe:mean:POP_YEAR": 2019.125, "tippecanoe:mean:GDP_MD": 2860527, "tippecanoe:mean:GDP_YEAR": 2018.25, "tippecanoe:mean:WOE_ID": 23604986.875, "tippecanoe:mean:WOE_ID_EH": 23604986.875, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 7.25, "tippecanoe:mean:LONG_LEN": 8.875, "tippecanoe:mean:ABBREV_LEN": 4.625, "tippecanoe:mean:TINY": -86.375, "tippecanoe:mean:HOMEPART": -11.5, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.925, "tippecanoe:mean:MAX_LABEL": 7.5875, "tippecanoe:mean:LABEL_X": 117.780082, "tippecanoe:mean:LABEL_Y": 29.019920749999998, "tippecanoe:mean:NE_ID": 1159320976.25, "tippecanoe:count": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -109.995117, 51.754240 ], [ -102.897949, 51.563412 ], [ -99.909668, 47.472663 ], [ -102.326660, 45.197522 ], [ -103.535156, 44.087585 ], [ -109.797363, 44.418088 ], [ -112.785645, 48.004625 ], [ -109.995117, 51.754240 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8112bffffffffff", "tippecanoe:count:scalerank": 14, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 14, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 61, "tippecanoe:count:ADM0_DIF": 14, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 14, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 28, "tippecanoe:count:GEOU_DIF": 14, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 14, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 14, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 14, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 42, "tippecanoe:count:MAPCOLOR8": 14, "tippecanoe:max:MAPCOLOR8": 7, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 51, "tippecanoe:count:MAPCOLOR9": 14, "tippecanoe:max:MAPCOLOR9": 6, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 46, "tippecanoe:count:MAPCOLOR13": 14, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 113, "tippecanoe:count:POP_EST": 14, "tippecanoe:max:POP_EST": 83132799, "tippecanoe:min:POP_EST": 29884, "tippecanoe:sum:POP_EST": 195489159, "tippecanoe:count:POP_RANK": 14, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 7, "tippecanoe:sum:POP_RANK": 179, "tippecanoe:count:POP_YEAR": 14, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 28266, "tippecanoe:count:GDP_MD": 14, "tippecanoe:max:GDP_MD": 3861123, "tippecanoe:min:GDP_MD": 1563, "tippecanoe:sum:GDP_MD": 6322700, "tippecanoe:count:GDP_YEAR": 14, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 28263, "tippecanoe:count:WOE_ID": 14, "tippecanoe:max:WOE_ID": 23424954, "tippecanoe:min:WOE_ID": 12577865, "tippecanoe:sum:WOE_ID": 317101037, "tippecanoe:count:WOE_ID_EH": 14, "tippecanoe:max:WOE_ID_EH": 23424954, "tippecanoe:min:WOE_ID_EH": 12577865, "tippecanoe:sum:WOE_ID_EH": 317101037, "tippecanoe:count:ADM0_A3_UN": 14, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -1386, "tippecanoe:count:ADM0_A3_WB": 14, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -1386, "tippecanoe:count:NAME_LEN": 14, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 5, "tippecanoe:sum:NAME_LEN": 96, "tippecanoe:count:LONG_LEN": 14, "tippecanoe:max:LONG_LEN": 13, "tippecanoe:min:LONG_LEN": 6, "tippecanoe:sum:LONG_LEN": 104, "tippecanoe:count:ABBREV_LEN": 14, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 59, "tippecanoe:count:TINY": 14, "tippecanoe:max:TINY": 5, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -1282, "tippecanoe:count:HOMEPART": 14, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -86, "tippecanoe:count:MIN_ZOOM": 14, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 14, "tippecanoe:max:MIN_LABEL": 5, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 47.2, "tippecanoe:count:MAX_LABEL": 14, "tippecanoe:max:MAX_LABEL": 10, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 116.7, "tippecanoe:count:LABEL_X": 14, "tippecanoe:max:LABEL_X": 28.487904, "tippecanoe:min:LABEL_X": 9.018163, "tippecanoe:sum:LABEL_X": 300.14189400000006, "tippecanoe:count:LABEL_Y": 14, "tippecanoe:max:LABEL_Y": 65.85918, "tippecanoe:min:LABEL_Y": 45.733237, "tippecanoe:sum:LABEL_Y": 761.8934709999999, "tippecanoe:count:NE_ID": 14, "tippecanoe:max:NE_ID": 1159321287, "tippecanoe:min:NE_ID": 1159320427, "tippecanoe:sum:NE_ID": 16230492268, "tippecanoe:mean:scalerank": 0.21428571428571428, "tippecanoe:mean:LABELRANK": 4.357142857142857, "tippecanoe:mean:ADM0_DIF": 0.21428571428571428, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 3, "tippecanoe:mean:MAPCOLOR8": 3.642857142857143, "tippecanoe:mean:MAPCOLOR9": 3.2857142857142858, "tippecanoe:mean:MAPCOLOR13": 8.071428571428572, "tippecanoe:mean:POP_EST": 13963511.357142857, "tippecanoe:mean:POP_RANK": 12.785714285714287, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 451621.4285714286, "tippecanoe:mean:GDP_YEAR": 2018.7857142857143, "tippecanoe:mean:WOE_ID": 22650074.07142857, "tippecanoe:mean:WOE_ID_EH": 22650074.07142857, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 6.857142857142857, "tippecanoe:mean:LONG_LEN": 7.428571428571429, "tippecanoe:mean:ABBREV_LEN": 4.214285714285714, "tippecanoe:mean:TINY": -91.57142857142857, "tippecanoe:mean:HOMEPART": -6.142857142857143, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 3.3714285714285716, "tippecanoe:mean:MAX_LABEL": 8.335714285714286, "tippecanoe:mean:LABEL_X": 21.43870671428572, "tippecanoe:mean:LABEL_Y": 54.4209622142857, "tippecanoe:mean:NE_ID": 1159320876.2857145, "tippecanoe:count": 14 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -126.848145, 58.043004 ], [ -121.442871, 54.914514 ], [ -123.112793, 50.986099 ], [ -128.913574, 50.148746 ], [ -133.857422, 52.842595 ], [ -133.527832, 56.764768 ], [ -126.848145, 58.043004 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8128fffffffffff", "tippecanoe:count:scalerank": 30, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 11, "tippecanoe:count:LABELRANK": 30, "tippecanoe:max:LABELRANK": 9, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 127, "tippecanoe:count:ADM0_DIF": 30, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 3, "tippecanoe:count:LEVEL": 30, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 60, "tippecanoe:count:GEOU_DIF": 30, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 30, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 30, "tippecanoe:max:BRK_DIFF": 1, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 3, "tippecanoe:count:MAPCOLOR7": 30, "tippecanoe:max:MAPCOLOR7": 6, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 95, "tippecanoe:count:MAPCOLOR8": 30, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 1, "tippecanoe:sum:MAPCOLOR8": 86, "tippecanoe:count:MAPCOLOR9": 30, "tippecanoe:max:MAPCOLOR9": 8, "tippecanoe:min:MAPCOLOR9": 1, "tippecanoe:sum:MAPCOLOR9": 106, "tippecanoe:count:MAPCOLOR13": 30, "tippecanoe:max:MAPCOLOR13": 13, "tippecanoe:min:MAPCOLOR13": -99, "tippecanoe:sum:MAPCOLOR13": 84, "tippecanoe:count:POP_EST": 30, "tippecanoe:max:POP_EST": 112078730, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 653845935, "tippecanoe:count:POP_RANK": 30, "tippecanoe:max:POP_RANK": 17, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 377, "tippecanoe:count:POP_YEAR": 30, "tippecanoe:max:POP_YEAR": 2020, "tippecanoe:min:POP_YEAR": 2013, "tippecanoe:sum:POP_YEAR": 60563, "tippecanoe:count:GDP_MD": 30, "tippecanoe:max:GDP_MD": 792966, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 4652105, "tippecanoe:count:GDP_YEAR": 30, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2011, "tippecanoe:sum:GDP_YEAR": 60537, "tippecanoe:count:WOE_ID": 30, "tippecanoe:max:WOE_ID": 28289408, "tippecanoe:min:WOE_ID": -99, "tippecanoe:sum:WOE_ID": 567060578, "tippecanoe:count:WOE_ID_EH": 30, "tippecanoe:max:WOE_ID_EH": 28289408, "tippecanoe:min:WOE_ID_EH": -99, "tippecanoe:sum:WOE_ID_EH": 637335789, "tippecanoe:count:ADM0_A3_UN": 30, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -2970, "tippecanoe:count:ADM0_A3_WB": 30, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -2970, "tippecanoe:count:NAME_LEN": 30, "tippecanoe:max:NAME_LEN": 23, "tippecanoe:min:NAME_LEN": 4, "tippecanoe:sum:NAME_LEN": 245, "tippecanoe:count:LONG_LEN": 30, "tippecanoe:max:LONG_LEN": 23, "tippecanoe:min:LONG_LEN": 4, "tippecanoe:sum:LONG_LEN": 251, "tippecanoe:count:ABBREV_LEN": 30, "tippecanoe:max:ABBREV_LEN": 8, "tippecanoe:min:ABBREV_LEN": 0, "tippecanoe:sum:ABBREV_LEN": 140, "tippecanoe:count:TINY": 30, "tippecanoe:max:TINY": 4, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -2664, "tippecanoe:count:HOMEPART": 30, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -270, "tippecanoe:count:MIN_ZOOM": 30, "tippecanoe:max:MIN_ZOOM": 7, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 21, "tippecanoe:count:MIN_LABEL": 30, "tippecanoe:max:MIN_LABEL": 7.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 117, "tippecanoe:count:MAX_LABEL": 30, "tippecanoe:max:MAX_LABEL": 11, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 259.9, "tippecanoe:count:LABEL_X": 30, "tippecanoe:max:LABEL_X": 58.676647, "tippecanoe:min:LABEL_X": 21.555839, "tippecanoe:sum:LABEL_X": 1192.538962, "tippecanoe:count:LABEL_Y": 30, "tippecanoe:max:LABEL_Y": 49.724739, "tippecanoe:min:LABEL_Y": 8.032795, "tippecanoe:sum:LABEL_Y": 939.4510879999998, "tippecanoe:count:NE_ID": 30, "tippecanoe:max:NE_ID": 1729635091, "tippecanoe:min:NE_ID": 1159320329, "tippecanoe:sum:NE_ID": 35349939856, "tippecanoe:mean:scalerank": 0.36666666666666666, "tippecanoe:mean:LABELRANK": 4.233333333333333, "tippecanoe:mean:ADM0_DIF": 0.1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0.1, "tippecanoe:mean:MAPCOLOR7": 3.1666666666666667, "tippecanoe:mean:MAPCOLOR8": 2.8666666666666669, "tippecanoe:mean:MAPCOLOR9": 3.533333333333333, "tippecanoe:mean:MAPCOLOR13": 2.8, "tippecanoe:mean:POP_EST": 21794864.5, "tippecanoe:mean:POP_RANK": 12.566666666666667, "tippecanoe:mean:POP_YEAR": 2018.7666666666667, "tippecanoe:mean:GDP_MD": 155070.16666666667, "tippecanoe:mean:GDP_YEAR": 2017.9, "tippecanoe:mean:WOE_ID": 18902019.266666667, "tippecanoe:mean:WOE_ID_EH": 21244526.3, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 8.166666666666666, "tippecanoe:mean:LONG_LEN": 8.366666666666668, "tippecanoe:mean:ABBREV_LEN": 4.666666666666667, "tippecanoe:mean:TINY": -88.8, "tippecanoe:mean:HOMEPART": -9, "tippecanoe:mean:MIN_ZOOM": 0.7, "tippecanoe:mean:MIN_LABEL": 3.9, "tippecanoe:mean:MAX_LABEL": 8.663333333333333, "tippecanoe:mean:LABEL_X": 39.751298733333339, "tippecanoe:mean:LABEL_Y": 31.31503626666666, "tippecanoe:mean:NE_ID": 1178331328.5333334, "tippecanoe:count": 30 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -123.112793, 50.986099 ], [ -120.915527, 49.396675 ], [ -119.223633, 47.798397 ], [ -122.124023, 44.056012 ], [ -127.968750, 43.421009 ], [ -131.286621, 46.422713 ], [ -128.913574, 50.148746 ], [ -123.112793, 50.986099 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81487ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 5, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 8, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 6, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 11, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 2, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 7, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 8, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 5, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 7, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 9, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 11, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 11, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 18, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 140, "tippecanoe:min:POP_EST": 0, "tippecanoe:sum:POP_EST": 140, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 1, "tippecanoe:min:POP_RANK": 1, "tippecanoe:sum:POP_RANK": 2, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2017, "tippecanoe:sum:POP_YEAR": 4036, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 16, "tippecanoe:min:GDP_MD": 0, "tippecanoe:sum:GDP_MD": 16, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2016, "tippecanoe:min:GDP_YEAR": 2016, "tippecanoe:sum:GDP_YEAR": 4032, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 28289411, "tippecanoe:min:WOE_ID": 28289406, "tippecanoe:sum:WOE_ID": 56578817, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 28289411, "tippecanoe:min:WOE_ID_EH": 28289406, "tippecanoe:sum:WOE_ID_EH": 56578817, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 25, "tippecanoe:min:NAME_LEN": 22, "tippecanoe:sum:NAME_LEN": 47, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 35, "tippecanoe:min:LONG_LEN": 29, "tippecanoe:sum:LONG_LEN": 64, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 10, "tippecanoe:min:ABBREV_LEN": 7, "tippecanoe:sum:ABBREV_LEN": 17, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -97, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": -99, "tippecanoe:min:HOMEPART": -99, "tippecanoe:sum:HOMEPART": -198, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4.5, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 8.5, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9.5, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 18.5, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 73.50521, "tippecanoe:min:LABEL_X": 69.122136, "tippecanoe:sum:LABEL_X": 142.627346, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -49.303721, "tippecanoe:min:LABEL_Y": -53.103462, "tippecanoe:sum:LABEL_Y": -102.407183, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159320631, "tippecanoe:min:NE_ID": 1159320361, "tippecanoe:sum:NE_ID": 2318640992, "tippecanoe:mean:scalerank": 4, "tippecanoe:mean:LABELRANK": 5.5, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 3.5, "tippecanoe:mean:MAPCOLOR9": 5.5, "tippecanoe:mean:MAPCOLOR13": 9, "tippecanoe:mean:POP_EST": 70, "tippecanoe:mean:POP_RANK": 1, "tippecanoe:mean:POP_YEAR": 2018, "tippecanoe:mean:GDP_MD": 8, "tippecanoe:mean:GDP_YEAR": 2016, "tippecanoe:mean:WOE_ID": 28289408.5, "tippecanoe:mean:WOE_ID_EH": 28289408.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 23.5, "tippecanoe:mean:LONG_LEN": 32, "tippecanoe:mean:ABBREV_LEN": 8.5, "tippecanoe:mean:TINY": -48.5, "tippecanoe:mean:HOMEPART": -99, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4.25, "tippecanoe:mean:MAX_LABEL": 9.25, "tippecanoe:mean:LABEL_X": 71.313673, "tippecanoe:mean:LABEL_Y": -51.2035915, "tippecanoe:mean:NE_ID": 1159320496, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.269043, 32.861132 ], [ -110.654297, 28.729130 ], [ -113.466797, 24.666986 ], [ -118.630371, 24.666986 ], [ -121.333008, 28.652031 ], [ -118.806152, 32.787275 ], [ -113.269043, 32.861132 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8129bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 3, "tippecanoe:min:scalerank": 3, "tippecanoe:sum:scalerank": 3, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 5, "tippecanoe:min:LABELRANK": 5, "tippecanoe:sum:LABELRANK": 5, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 3, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 3, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 5, "tippecanoe:min:MAPCOLOR9": 5, "tippecanoe:sum:MAPCOLOR9": 5, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 1265711, "tippecanoe:min:POP_EST": 1265711, "tippecanoe:sum:POP_EST": 1265711, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 12, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 12, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 14048, "tippecanoe:min:GDP_MD": 14048, "tippecanoe:sum:GDP_MD": 14048, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424894, "tippecanoe:min:WOE_ID": 23424894, "tippecanoe:sum:WOE_ID": 23424894, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424894, "tippecanoe:min:WOE_ID_EH": 23424894, "tippecanoe:sum:WOE_ID_EH": 23424894, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": 2, "tippecanoe:min:TINY": 2, "tippecanoe:sum:TINY": 2, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 4, "tippecanoe:sum:MIN_LABEL": 4, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 9, "tippecanoe:sum:MAX_LABEL": 9, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 57.565848, "tippecanoe:min:LABEL_X": 57.565848, "tippecanoe:sum:LABEL_X": 57.565848, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -20.299506, "tippecanoe:min:LABEL_Y": -20.299506, "tippecanoe:sum:LABEL_Y": -20.299506, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321079, "tippecanoe:min:NE_ID": 1159321079, "tippecanoe:sum:NE_ID": 1159321079, "tippecanoe:mean:scalerank": 3, "tippecanoe:mean:LABELRANK": 5, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 3, "tippecanoe:mean:MAPCOLOR9": 5, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 1265711, "tippecanoe:mean:POP_RANK": 12, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 14048, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424894, "tippecanoe:mean:WOE_ID_EH": 23424894, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": 2, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 4, "tippecanoe:mean:MAX_LABEL": 9, "tippecanoe:mean:LABEL_X": 57.565848, "tippecanoe:mean:LABEL_Y": -20.299506, "tippecanoe:mean:NE_ID": 1159321079, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -113.049316, 40.713956 ], [ -110.258789, 36.791691 ], [ -113.269043, 32.861132 ], [ -118.806152, 32.787275 ], [ -121.706543, 36.580247 ], [ -119.003906, 40.563895 ], [ -113.049316, 40.713956 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "81293ffffffffff", "tippecanoe:count:scalerank": 2, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 2, "tippecanoe:max:LABELRANK": 4, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 6, "tippecanoe:count:ADM0_DIF": 2, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 2, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 4, "tippecanoe:count:GEOU_DIF": 2, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 2, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 2, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 2, "tippecanoe:max:MAPCOLOR7": 3, "tippecanoe:min:MAPCOLOR7": 2, "tippecanoe:sum:MAPCOLOR7": 5, "tippecanoe:count:MAPCOLOR8": 2, "tippecanoe:max:MAPCOLOR8": 6, "tippecanoe:min:MAPCOLOR8": 3, "tippecanoe:sum:MAPCOLOR8": 9, "tippecanoe:count:MAPCOLOR9": 2, "tippecanoe:max:MAPCOLOR9": 4, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 6, "tippecanoe:count:MAPCOLOR13": 2, "tippecanoe:max:MAPCOLOR13": 5, "tippecanoe:min:MAPCOLOR13": 2, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 2, "tippecanoe:max:POP_EST": 58558270, "tippecanoe:min:POP_EST": 1148130, "tippecanoe:sum:POP_EST": 59706400, "tippecanoe:count:POP_RANK": 2, "tippecanoe:max:POP_RANK": 16, "tippecanoe:min:POP_RANK": 12, "tippecanoe:sum:POP_RANK": 28, "tippecanoe:count:POP_YEAR": 2, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 4038, "tippecanoe:count:GDP_MD": 2, "tippecanoe:max:GDP_MD": 351431, "tippecanoe:min:GDP_MD": 4471, "tippecanoe:sum:GDP_MD": 355902, "tippecanoe:count:GDP_YEAR": 2, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 4038, "tippecanoe:count:WOE_ID": 2, "tippecanoe:max:WOE_ID": 23424993, "tippecanoe:min:WOE_ID": 23424942, "tippecanoe:sum:WOE_ID": 46849935, "tippecanoe:count:WOE_ID_EH": 2, "tippecanoe:max:WOE_ID_EH": 23424993, "tippecanoe:min:WOE_ID_EH": 23424942, "tippecanoe:sum:WOE_ID_EH": 46849935, "tippecanoe:count:ADM0_A3_UN": 2, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -198, "tippecanoe:count:ADM0_A3_WB": 2, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -198, "tippecanoe:count:NAME_LEN": 2, "tippecanoe:max:NAME_LEN": 12, "tippecanoe:min:NAME_LEN": 8, "tippecanoe:sum:NAME_LEN": 20, "tippecanoe:count:LONG_LEN": 2, "tippecanoe:max:LONG_LEN": 19, "tippecanoe:min:LONG_LEN": 12, "tippecanoe:sum:LONG_LEN": 31, "tippecanoe:count:ABBREV_LEN": 2, "tippecanoe:max:ABBREV_LEN": 5, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 9, "tippecanoe:count:TINY": 2, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -198, "tippecanoe:count:HOMEPART": 2, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 2, "tippecanoe:count:MIN_ZOOM": 2, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 2, "tippecanoe:max:MIN_LABEL": 4, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 5.7, "tippecanoe:count:MAX_LABEL": 2, "tippecanoe:max:MAX_LABEL": 9, "tippecanoe:min:MAX_LABEL": 6.7, "tippecanoe:sum:MAX_LABEL": 15.7, "tippecanoe:count:LABEL_X": 2, "tippecanoe:max:LABEL_X": 31.467264, "tippecanoe:min:LABEL_X": 23.665734, "tippecanoe:sum:LABEL_X": 55.132998, "tippecanoe:count:LABEL_Y": 2, "tippecanoe:max:LABEL_Y": -26.533676, "tippecanoe:min:LABEL_Y": -29.708776, "tippecanoe:sum:LABEL_Y": -56.242452, "tippecanoe:count:NE_ID": 2, "tippecanoe:max:NE_ID": 1159321431, "tippecanoe:min:NE_ID": 1159321289, "tippecanoe:sum:NE_ID": 2318642720, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 3, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 2.5, "tippecanoe:mean:MAPCOLOR8": 4.5, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 3.5, "tippecanoe:mean:POP_EST": 29853200, "tippecanoe:mean:POP_RANK": 14, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 177951, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424967.5, "tippecanoe:mean:WOE_ID_EH": 23424967.5, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 10, "tippecanoe:mean:LONG_LEN": 15.5, "tippecanoe:mean:ABBREV_LEN": 4.5, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.85, "tippecanoe:mean:MAX_LABEL": 7.85, "tippecanoe:mean:LABEL_X": 27.566499, "tippecanoe:mean:LABEL_Y": -28.121226, "tippecanoe:mean:NE_ID": 1159321360, "tippecanoe:count": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -121.706543, 36.580247 ], [ -118.806152, 32.787275 ], [ -121.333008, 28.652031 ], [ -126.430664, 28.323725 ], [ -129.287109, 31.952162 ], [ -127.133789, 36.084621 ], [ -121.706543, 36.580247 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8126fffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 0, "tippecanoe:min:ADM0_DIF": 0, "tippecanoe:sum:ADM0_DIF": 0, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 1, "tippecanoe:min:SU_DIF": 1, "tippecanoe:sum:SU_DIF": 1, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 4, "tippecanoe:min:MAPCOLOR7": 4, "tippecanoe:sum:MAPCOLOR7": 4, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 3, "tippecanoe:min:MAPCOLOR9": 3, "tippecanoe:sum:MAPCOLOR9": 3, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 1, "tippecanoe:min:MAPCOLOR13": 1, "tippecanoe:sum:MAPCOLOR13": 1, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 8776109, "tippecanoe:min:POP_EST": 8776109, "tippecanoe:sum:POP_EST": 8776109, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 13, "tippecanoe:min:POP_RANK": 13, "tippecanoe:sum:POP_RANK": 13, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 24829, "tippecanoe:min:GDP_MD": 24829, "tippecanoe:sum:GDP_MD": 24829, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": 23424926, "tippecanoe:min:WOE_ID": 23424926, "tippecanoe:sum:WOE_ID": 23424926, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424926, "tippecanoe:min:WOE_ID_EH": 23424926, "tippecanoe:sum:WOE_ID_EH": 23424926, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 16, "tippecanoe:min:NAME_LEN": 16, "tippecanoe:sum:NAME_LEN": 16, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 16, "tippecanoe:min:LONG_LEN": 16, "tippecanoe:sum:LONG_LEN": 16, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 6, "tippecanoe:min:ABBREV_LEN": 6, "tippecanoe:sum:ABBREV_LEN": 6, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 2.5, "tippecanoe:min:MIN_LABEL": 2.5, "tippecanoe:sum:MIN_LABEL": 2.5, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 7.5, "tippecanoe:min:MAX_LABEL": 7.5, "tippecanoe:sum:MAX_LABEL": 7.5, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 143.910216, "tippecanoe:min:LABEL_X": 143.910216, "tippecanoe:sum:LABEL_X": 143.910216, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -5.695285, "tippecanoe:min:LABEL_Y": -5.695285, "tippecanoe:sum:LABEL_Y": -5.695285, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159321173, "tippecanoe:min:NE_ID": 1159321173, "tippecanoe:sum:NE_ID": 1159321173, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 0, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 1, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 4, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 3, "tippecanoe:mean:MAPCOLOR13": 1, "tippecanoe:mean:POP_EST": 8776109, "tippecanoe:mean:POP_RANK": 13, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 24829, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": 23424926, "tippecanoe:mean:WOE_ID_EH": 23424926, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 16, "tippecanoe:mean:LONG_LEN": 16, "tippecanoe:mean:ABBREV_LEN": 6, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 2.5, "tippecanoe:mean:MAX_LABEL": 7.5, "tippecanoe:mean:LABEL_X": 143.910216, "tippecanoe:mean:LABEL_Y": -5.695285, "tippecanoe:mean:NE_ID": 1159321173, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -101.030273, 40.094882 ], [ -95.251465, 39.334297 ], [ -93.273926, 35.083956 ], [ -96.657715, 31.615966 ], [ -102.084961, 32.268555 ], [ -104.458008, 36.491973 ], [ -101.030273, 40.094882 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin": "8148bffffffffff", "tippecanoe:count:scalerank": 1, "tippecanoe:max:scalerank": 0, "tippecanoe:min:scalerank": 0, "tippecanoe:sum:scalerank": 0, "tippecanoe:count:LABELRANK": 1, "tippecanoe:max:LABELRANK": 2, "tippecanoe:min:LABELRANK": 2, "tippecanoe:sum:LABELRANK": 2, "tippecanoe:count:ADM0_DIF": 1, "tippecanoe:max:ADM0_DIF": 1, "tippecanoe:min:ADM0_DIF": 1, "tippecanoe:sum:ADM0_DIF": 1, "tippecanoe:count:LEVEL": 1, "tippecanoe:max:LEVEL": 2, "tippecanoe:min:LEVEL": 2, "tippecanoe:sum:LEVEL": 2, "tippecanoe:count:GEOU_DIF": 1, "tippecanoe:max:GEOU_DIF": 0, "tippecanoe:min:GEOU_DIF": 0, "tippecanoe:sum:GEOU_DIF": 0, "tippecanoe:count:SU_DIF": 1, "tippecanoe:max:SU_DIF": 0, "tippecanoe:min:SU_DIF": 0, "tippecanoe:sum:SU_DIF": 0, "tippecanoe:count:BRK_DIFF": 1, "tippecanoe:max:BRK_DIFF": 0, "tippecanoe:min:BRK_DIFF": 0, "tippecanoe:sum:BRK_DIFF": 0, "tippecanoe:count:MAPCOLOR7": 1, "tippecanoe:max:MAPCOLOR7": 1, "tippecanoe:min:MAPCOLOR7": 1, "tippecanoe:sum:MAPCOLOR7": 1, "tippecanoe:count:MAPCOLOR8": 1, "tippecanoe:max:MAPCOLOR8": 2, "tippecanoe:min:MAPCOLOR8": 2, "tippecanoe:sum:MAPCOLOR8": 2, "tippecanoe:count:MAPCOLOR9": 1, "tippecanoe:max:MAPCOLOR9": 2, "tippecanoe:min:MAPCOLOR9": 2, "tippecanoe:sum:MAPCOLOR9": 2, "tippecanoe:count:MAPCOLOR13": 1, "tippecanoe:max:MAPCOLOR13": 7, "tippecanoe:min:MAPCOLOR13": 7, "tippecanoe:sum:MAPCOLOR13": 7, "tippecanoe:count:POP_EST": 1, "tippecanoe:max:POP_EST": 25364307, "tippecanoe:min:POP_EST": 25364307, "tippecanoe:sum:POP_EST": 25364307, "tippecanoe:count:POP_RANK": 1, "tippecanoe:max:POP_RANK": 15, "tippecanoe:min:POP_RANK": 15, "tippecanoe:sum:POP_RANK": 15, "tippecanoe:count:POP_YEAR": 1, "tippecanoe:max:POP_YEAR": 2019, "tippecanoe:min:POP_YEAR": 2019, "tippecanoe:sum:POP_YEAR": 2019, "tippecanoe:count:GDP_MD": 1, "tippecanoe:max:GDP_MD": 1396567, "tippecanoe:min:GDP_MD": 1396567, "tippecanoe:sum:GDP_MD": 1396567, "tippecanoe:count:GDP_YEAR": 1, "tippecanoe:max:GDP_YEAR": 2019, "tippecanoe:min:GDP_YEAR": 2019, "tippecanoe:sum:GDP_YEAR": 2019, "tippecanoe:count:WOE_ID": 1, "tippecanoe:max:WOE_ID": -90, "tippecanoe:min:WOE_ID": -90, "tippecanoe:sum:WOE_ID": -90, "tippecanoe:count:WOE_ID_EH": 1, "tippecanoe:max:WOE_ID_EH": 23424748, "tippecanoe:min:WOE_ID_EH": 23424748, "tippecanoe:sum:WOE_ID_EH": 23424748, "tippecanoe:count:ADM0_A3_UN": 1, "tippecanoe:max:ADM0_A3_UN": -99, "tippecanoe:min:ADM0_A3_UN": -99, "tippecanoe:sum:ADM0_A3_UN": -99, "tippecanoe:count:ADM0_A3_WB": 1, "tippecanoe:max:ADM0_A3_WB": -99, "tippecanoe:min:ADM0_A3_WB": -99, "tippecanoe:sum:ADM0_A3_WB": -99, "tippecanoe:count:NAME_LEN": 1, "tippecanoe:max:NAME_LEN": 9, "tippecanoe:min:NAME_LEN": 9, "tippecanoe:sum:NAME_LEN": 9, "tippecanoe:count:LONG_LEN": 1, "tippecanoe:max:LONG_LEN": 9, "tippecanoe:min:LONG_LEN": 9, "tippecanoe:sum:LONG_LEN": 9, "tippecanoe:count:ABBREV_LEN": 1, "tippecanoe:max:ABBREV_LEN": 4, "tippecanoe:min:ABBREV_LEN": 4, "tippecanoe:sum:ABBREV_LEN": 4, "tippecanoe:count:TINY": 1, "tippecanoe:max:TINY": -99, "tippecanoe:min:TINY": -99, "tippecanoe:sum:TINY": -99, "tippecanoe:count:HOMEPART": 1, "tippecanoe:max:HOMEPART": 1, "tippecanoe:min:HOMEPART": 1, "tippecanoe:sum:HOMEPART": 1, "tippecanoe:count:MIN_ZOOM": 1, "tippecanoe:max:MIN_ZOOM": 0, "tippecanoe:min:MIN_ZOOM": 0, "tippecanoe:sum:MIN_ZOOM": 0, "tippecanoe:count:MIN_LABEL": 1, "tippecanoe:max:MIN_LABEL": 1.7, "tippecanoe:min:MIN_LABEL": 1.7, "tippecanoe:sum:MIN_LABEL": 1.7, "tippecanoe:count:MAX_LABEL": 1, "tippecanoe:max:MAX_LABEL": 5.7, "tippecanoe:min:MAX_LABEL": 5.7, "tippecanoe:sum:MAX_LABEL": 5.7, "tippecanoe:count:LABEL_X": 1, "tippecanoe:max:LABEL_X": 134.04972, "tippecanoe:min:LABEL_X": 134.04972, "tippecanoe:sum:LABEL_X": 134.04972, "tippecanoe:count:LABEL_Y": 1, "tippecanoe:max:LABEL_Y": -24.129522, "tippecanoe:min:LABEL_Y": -24.129522, "tippecanoe:sum:LABEL_Y": -24.129522, "tippecanoe:count:NE_ID": 1, "tippecanoe:max:NE_ID": 1159320355, "tippecanoe:min:NE_ID": 1159320355, "tippecanoe:sum:NE_ID": 1159320355, "tippecanoe:mean:scalerank": 0, "tippecanoe:mean:LABELRANK": 2, "tippecanoe:mean:ADM0_DIF": 1, "tippecanoe:mean:LEVEL": 2, "tippecanoe:mean:GEOU_DIF": 0, "tippecanoe:mean:SU_DIF": 0, "tippecanoe:mean:BRK_DIFF": 0, "tippecanoe:mean:MAPCOLOR7": 1, "tippecanoe:mean:MAPCOLOR8": 2, "tippecanoe:mean:MAPCOLOR9": 2, "tippecanoe:mean:MAPCOLOR13": 7, "tippecanoe:mean:POP_EST": 25364307, "tippecanoe:mean:POP_RANK": 15, "tippecanoe:mean:POP_YEAR": 2019, "tippecanoe:mean:GDP_MD": 1396567, "tippecanoe:mean:GDP_YEAR": 2019, "tippecanoe:mean:WOE_ID": -90, "tippecanoe:mean:WOE_ID_EH": 23424748, "tippecanoe:mean:ADM0_A3_UN": -99, "tippecanoe:mean:ADM0_A3_WB": -99, "tippecanoe:mean:NAME_LEN": 9, "tippecanoe:mean:LONG_LEN": 9, "tippecanoe:mean:ABBREV_LEN": 4, "tippecanoe:mean:TINY": -99, "tippecanoe:mean:HOMEPART": 1, "tippecanoe:mean:MIN_ZOOM": 0, "tippecanoe:mean:MIN_LABEL": 1.7, "tippecanoe:mean:MAX_LABEL": 5.7, "tippecanoe:mean:LABEL_X": 134.04972, "tippecanoe:mean:LABEL_Y": -24.129522, "tippecanoe:mean:NE_ID": 1159320355, "tippecanoe:count": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -102.084961, 32.268555 ], [ -96.657715, 31.615966 ], [ -94.746094, 27.254630 ], [ -97.910156, 23.584126 ], [ -103.007812, 24.126702 ], [ -105.249023, 28.439714 ], [ -102.084961, 32.268555 ] ] ] } } +] } +] } diff --git a/tests/pbf/0-0-0.pbf b/tests/pbf/0-0-0.pbf new file mode 100644 index 000000000..cf7b426b8 Binary files /dev/null and b/tests/pbf/0-0-0.pbf differ diff --git a/tests/pbf/13-1310-3166-ne.pbf.json b/tests/pbf/13-1310-3166-ne.pbf.json new file mode 100644 index 000000000..943b310d5 --- /dev/null +++ b/tests/pbf/13-1310-3166-ne.pbf.json @@ -0,0 +1,21 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 1310, "y": 3166, "compressed": false }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_land", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "featurecla": "Land", "scalerank": 0, "min_zoom": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.387760, 37.788760 ], [ -122.387094, 37.778754 ], [ -122.386837, 37.778517 ], [ -122.386837, 37.752665 ], [ -122.432499, 37.752665 ], [ -122.432499, 37.788760 ], [ -122.387760, 37.788760 ] ] ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_populated_places", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "SCALERANK": 1, "NATSCALE": 300, "LABELRANK": 1, "FEATURECLA": "Populated place", "NAME": "San Francisco", "NAMEALT": "San Francisco-Oakland", "NAMEASCII": "San Francisco", "ADM0CAP": 0, "WORLDCITY": 1, "MEGACITY": 1, "SOV0NAME": "United States", "SOV_A3": "USA", "ADM0NAME": "United States of America", "ADM0_A3": "USA", "ADM1NAME": "California", "ISO_A2": "US", "LATITUDE": 37.769196, "LONGITUDE": -122.417169, "POP_MAX": 3450000, "POP_MIN": 732072, "POP_OTHER": 27400, "RANK_MAX": 12, "RANK_MIN": 11, "MEGANAME": "San Francisco-Oakland", "LS_NAME": "San Francisco1", "MAX_POP10": 988636, "MAX_POP20": 1130999, "MAX_POP50": 1371285, "MAX_POP300": 4561697, "MAX_POP310": 4561697, "MAX_NATSCA": 300, "MIN_AREAKM": 218, "MAX_AREAKM": 1748, "MIN_AREAMI": 84, "MAX_AREAMI": 675, "MIN_PERKM": 126, "MAX_PERKM": 755, "MIN_PERMI": 78, "MAX_PERMI": 469, "MIN_BBXMIN": -122.516667, "MAX_BBXMIN": -122.516667, "MIN_BBXMAX": -122.358333, "MAX_BBXMAX": -121.733333, "MIN_BBYMIN": 37.191667, "MAX_BBYMIN": 37.575, "MIN_BBYMAX": 37.816667, "MAX_BBYMAX": 38.041667, "MEAN_BBXC": -122.301354, "MEAN_BBYC": 37.622288, "TIMEZONE": "America/Los_Angeles", "UN_FID": 570, "POP1950": 1855, "POP1955": 2021, "POP1960": 2200, "POP1965": 2361, "POP1970": 2529, "POP1975": 2590, "POP1980": 2656, "POP1985": 2805, "POP1990": 2961, "POP1995": 3095, "POP2000": 3236, "POP2005": 3387, "POP2010": 3450, "POP2015": 3544, "POP2020": 3684, "POP2025": 3803, "POP2050": 3898, "MIN_ZOOM": 2.7, "WIKIDATAID": "Q62", "WOF_ID": 85922583, "CAPALT": 0, "NAME_EN": "San Francisco", "NAME_DE": "San Francisco", "NAME_ES": "San Francisco", "NAME_FR": "San Francisco", "NAME_PT": "Sรฃo Francisco", "NAME_RU": "ะกะฐะฝ-ะคั€ะฐะฝั†ะธัะบะพ", "NAME_ZH": "ๆ—ง้‡‘ๅฑฑ", "NAME_AR": "ุณุงู† ูุฑุงู†ุณูŠุณูƒูˆ", "NAME_BN": "เฆธเฆพเฆจ เฆซเงเฆฐเฆพเฆจเงเฆธเฆฟเฆธเงเฆ•เง‹", "NAME_EL": "ฮฃฮฑฮฝ ฮฆฯฮฑฮฝฯƒฮฏฯƒฮบฮฟ", "NAME_HI": "เคธเฅˆเคจ เคซเฅเคฐเคพเค‚เคธเคฟเคธเฅเค•เฅ‹", "NAME_HU": "San Francisco", "NAME_ID": "San Francisco", "NAME_IT": "San Francisco", "NAME_JA": "ใ‚ตใƒณใƒ•ใƒฉใƒณใ‚ทใ‚นใ‚ณ", "NAME_KO": "์ƒŒํ”„๋ž€์‹œ์Šค์ฝ”", "NAME_NL": "San Francisco", "NAME_PL": "San Francisco", "NAME_SV": "San Francisco", "NAME_TR": "San Francisco", "NAME_VI": "San Francisco", "NE_ID": 1159151479, "NAME_FA": "ุณุงู† ูุฑุงู†ุณŒุณฺฉูˆ", "NAME_HE": "ืกืŸ ืคืจื ืกื™ืกืงื•", "NAME_UK": "ะกะฐะฝ-ะคั€ะฐะฝั†ะธัะบะพ", "NAME_UR": "ุณุงู† ูุฑุงู†ุณุณฺฉูˆ", "NAME_ZHT": "่ˆŠ้‡‘ๅฑฑ", "GEONAMESID": 5391959 }, "geometry": { "type": "Point", "coordinates": [ -122.399583, 37.784249 ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_roads", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 4, "featurecla": "Road", "type": "Major Highway", "sov_a3": "USA", "edited": "New in version 2.0.0", "name": "101", "question": 0, "length_km": 11, "toll": 0, "ne_part": "ne_1d4_original", "labelrank": 0, "ignore": 0, "add": 0, "rwdb_rd_id": 0, "orig_fid": 0, "uident": 118705, "continent": "North America", "expressway": 1, "level": "Federal", "min_zoom": 4, "min_label": 7 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407351, 37.767933 ], [ -122.412586, 37.781841 ], [ -122.419496, 37.788760 ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 3, "featurecla": "Road", "type": "Major Highway", "sov_a3": "USA", "edited": "New in version 2.0.0", "name": "80", "question": 0, "length_km": 14, "toll": 1, "ne_part": "ne_1d4_original", "labelrank": 0, "ignore": 0, "add": 0, "rwdb_rd_id": 0, "orig_fid": 0, "uident": 311505, "continent": "North America", "expressway": 1, "level": "Interstate", "min_zoom": 3, "min_label": 6 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.407351, 37.767933 ], [ -122.388253, 37.785300 ], [ -122.386837, 37.786453 ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 4, "featurecla": "Road", "type": "Major Highway", "sov_a3": "USA", "edited": "New in version 2.0.0", "name": "280", "question": 0, "length_km": 52, "toll": 0, "ne_part": "ne_1d4_original", "labelrank": 0, "ignore": 0, "add": 0, "rwdb_rd_id": 0, "orig_fid": 0, "uident": 124805, "continent": "North America", "expressway": 1, "level": "Interstate", "min_zoom": 4, "min_label": 7 }, "geometry": { "type": "LineString", "coordinates": [ [ -122.405677, 37.752665 ], [ -122.407351, 37.767933 ] ] } } +] } +, +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "featurecla": "Admin-0 country", "scalerank": 0, "LABELRANK": 2, "SOVEREIGNT": "United States of America", "SOV_A3": "US1", "ADM0_DIF": 1, "LEVEL": 2, "TYPE": "Country", "TLC": "1", "ADMIN": "United States of America", "ADM0_A3": "USA", "GEOU_DIF": 0, "GEOUNIT": "United States of America", "GU_A3": "USA", "SU_DIF": 0, "SUBUNIT": "United States", "SU_A3": "USA", "BRK_DIFF": 0, "NAME": "United States of America", "NAME_LONG": "United States", "BRK_A3": "USA", "BRK_NAME": "United States", "ABBREV": "U.S.A.", "POSTAL": "US", "FORMAL_EN": "United States of America", "NAME_CIAWF": "United States", "NAME_SORT": "United States of America", "MAPCOLOR7": 4, "MAPCOLOR8": 5, "MAPCOLOR9": 1, "MAPCOLOR13": 1, "POP_EST": 328239523, "POP_RANK": 17, "POP_YEAR": 2019, "GDP_MD": 21433226, "GDP_YEAR": 2019, "ECONOMY": "1. Developed region: G7", "INCOME_GRP": "1. High income: OECD", "FIPS_10": "US", "ISO_A2": "US", "ISO_A2_EH": "US", "ISO_A3": "USA", "ISO_A3_EH": "USA", "ISO_N3": "840", "ISO_N3_EH": "840", "UN_A3": "840", "WB_A2": "US", "WB_A3": "USA", "WOE_ID": 23424977, "WOE_ID_EH": 23424977, "WOE_NOTE": "Exact WOE match as country", "ADM0_ISO": "USA", "ADM0_TLC": "USA", "ADM0_A3_US": "USA", "ADM0_A3_FR": "USA", "ADM0_A3_RU": "USA", "ADM0_A3_ES": "USA", "ADM0_A3_CN": "USA", "ADM0_A3_TW": "USA", "ADM0_A3_IN": "USA", "ADM0_A3_NP": "USA", "ADM0_A3_PK": "USA", "ADM0_A3_DE": "USA", "ADM0_A3_GB": "USA", "ADM0_A3_BR": "USA", "ADM0_A3_IL": "USA", "ADM0_A3_PS": "USA", "ADM0_A3_SA": "USA", "ADM0_A3_EG": "USA", "ADM0_A3_MA": "USA", "ADM0_A3_PT": "USA", "ADM0_A3_AR": "USA", "ADM0_A3_JP": "USA", "ADM0_A3_KO": "USA", "ADM0_A3_VN": "USA", "ADM0_A3_TR": "USA", "ADM0_A3_ID": "USA", "ADM0_A3_PL": "USA", "ADM0_A3_GR": "USA", "ADM0_A3_IT": "USA", "ADM0_A3_NL": "USA", "ADM0_A3_SE": "USA", "ADM0_A3_BD": "USA", "ADM0_A3_UA": "USA", "ADM0_A3_UN": -99, "ADM0_A3_WB": -99, "CONTINENT": "North America", "REGION_UN": "Americas", "SUBREGION": "Northern America", "REGION_WB": "North America", "NAME_LEN": 24, "LONG_LEN": 13, "ABBREV_LEN": 6, "TINY": -99, "HOMEPART": 1, "MIN_ZOOM": 0, "MIN_LABEL": 1.7, "MAX_LABEL": 5.7, "LABEL_X": -97.482602, "LABEL_Y": 39.538479, "NE_ID": 1159321369, "WIKIDATAID": "Q30", "NAME_AR": "ุงู„ูˆู„ุงูŠุงุช ุงู„ู…ุชุญุฏุฉ", "NAME_BN": "เฆฎเฆพเฆฐเงเฆ•เฆฟเฆจ เฆฏเงเฆ•เงเฆคเฆฐเฆพเฆทเงเฆŸเงเฆฐ", "NAME_DE": "Vereinigte Staaten", "NAME_EN": "United States of America", "NAME_ES": "Estados Unidos", "NAME_FA": "ุงŒุงู„ุงุช ู…ุชุญุฏู‡ ุขู…ุฑŒฺฉุง", "NAME_FR": "ร‰tats-Unis", "NAME_EL": "ฮ—ฮฝฯ‰ฮผฮญฮฝฮตฯ‚ ฮ ฮฟฮปฮนฯ„ฮตฮฏฮตฯ‚ ฮ‘ฮผฮตฯฮนฮบฮฎฯ‚", "NAME_HE": "ืืจืฆื•ืช ื”ื‘ืจื™ืช", "NAME_HI": "เคธเค‚เคฏเฅเค•เฅเคค เคฐเคพเคœเฅเคฏ เค…เคฎเฅ‡เคฐเคฟเค•เคพ", "NAME_HU": "Amerikai Egyesรผlt รllamok", "NAME_ID": "Amerika Serikat", "NAME_IT": "Stati Uniti d'America", "NAME_JA": "ใ‚ขใƒกใƒชใ‚ซๅˆ่ก†ๅ›ฝ", "NAME_KO": "๋ฏธ๊ตญ", "NAME_NL": "Verenigde Staten van Amerika", "NAME_PL": "Stany Zjednoczone", "NAME_PT": "Estados Unidos", "NAME_RU": "ะกะจะ", "NAME_SV": "USA", "NAME_TR": "Amerika BirleลŸik Devletleri", "NAME_UK": "ะกะฟะพะปัƒั‡ะตะฝั– ะจั‚ะฐั‚ะธ ะะผะตั€ะธะบะธ", "NAME_UR": "ุฑŒุงุณุชุงุฆ’ ู…ุชุญุฏ ุงู…ุฑŒฺฉุง", "NAME_VI": "Hoa Kแปณ", "NAME_ZH": "็พŽๅ›ฝ", "NAME_ZHT": "็พŽๅœ‹", "FCLASS_ISO": "Admin-0 country", "FCLASS_TLC": "Admin-0 country" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.432499, 37.788081 ], [ -122.386837, 37.788081 ], [ -122.386837, 37.752665 ], [ -122.432499, 37.752665 ], [ -122.432499, 37.788081 ] ] ] } } +] } +] } diff --git a/tests/pbf/bin-11-327-791-ids-clip.pbf.out.json b/tests/pbf/bin-11-327-791-ids-clip.pbf.out.json new file mode 100644 index 000000000..1fb063bd1 --- /dev/null +++ b/tests/pbf/bin-11-327-791-ids-clip.pbf.out.json @@ -0,0 +1,7 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "parsed", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "bin-ids": "236,237,510,514", "ZCTA5CE10": "94129", "GEOID10": "94129", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5968455, "AWATER10": 14697, "INTPTLAT10": "+37.7973402", "INTPTLON10": "-122.4644664", "tippecanoe:count": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.448120, 37.806936 ], [ -122.448120, 37.806393 ], [ -122.448463, 37.806122 ], [ -122.448292, 37.804766 ], [ -122.451553, 37.803409 ], [ -122.450180, 37.802867 ], [ -122.450008, 37.802460 ], [ -122.447605, 37.800697 ], [ -122.447262, 37.798527 ], [ -122.448120, 37.798255 ], [ -122.448292, 37.797848 ], [ -122.447948, 37.797441 ], [ -122.448635, 37.797441 ], [ -122.448635, 37.797034 ], [ -122.447948, 37.796899 ], [ -122.447948, 37.796492 ], [ -122.448978, 37.796356 ], [ -122.447433, 37.795814 ], [ -122.447433, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.448635, 37.795542 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.794728 ], [ -122.447948, 37.793101 ], [ -122.448463, 37.792829 ], [ -122.448635, 37.791880 ], [ -122.458334, 37.789879 ], [ -122.454300, 37.806495 ], [ -122.452412, 37.806258 ], [ -122.448120, 37.806936 ] ], [ [ -122.452583, 37.803274 ], [ -122.452412, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.451210, 37.803138 ], [ -122.452583, 37.803274 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin-ids": "529,531", "ZCTA5CE10": "94123", "GEOID10": "94123", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2646572, "AWATER10": 218721, "INTPTLAT10": "+37.8009336", "INTPTLON10": "-122.4383664", "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.447004, 37.808936 ], [ -122.428250, 37.796051 ], [ -122.433529, 37.795407 ], [ -122.433357, 37.794457 ], [ -122.434902, 37.794322 ], [ -122.435074, 37.795271 ], [ -122.436790, 37.795000 ], [ -122.436619, 37.794050 ], [ -122.440739, 37.793508 ], [ -122.440910, 37.794457 ], [ -122.441769, 37.794322 ], [ -122.441597, 37.793372 ], [ -122.446404, 37.792829 ], [ -122.446232, 37.791880 ], [ -122.447605, 37.791744 ], [ -122.448635, 37.794728 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.447433, 37.795542 ], [ -122.447433, 37.795814 ], [ -122.448978, 37.796356 ], [ -122.447948, 37.796492 ], [ -122.447948, 37.796899 ], [ -122.448635, 37.797034 ], [ -122.448635, 37.797441 ], [ -122.447948, 37.797441 ], [ -122.448292, 37.797848 ], [ -122.448120, 37.798255 ], [ -122.447262, 37.798527 ], [ -122.447605, 37.800697 ], [ -122.450008, 37.802460 ], [ -122.450180, 37.802867 ], [ -122.451553, 37.803409 ], [ -122.448292, 37.804766 ], [ -122.448463, 37.806122 ], [ -122.448120, 37.806393 ], [ -122.448120, 37.806936 ], [ -122.448635, 37.808563 ], [ -122.447004, 37.808936 ] ] ], [ [ [ -122.452583, 37.803274 ], [ -122.451210, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.452583, 37.803274 ] ] ] ] } } +] } +] } diff --git a/tests/pbf/bin-11-327-791-ids-zip.pbf.out.json b/tests/pbf/bin-11-327-791-ids-zip.pbf.out.json new file mode 100644 index 000000000..4845f4962 --- /dev/null +++ b/tests/pbf/bin-11-327-791-ids-zip.pbf.out.json @@ -0,0 +1,7 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "parsed", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "ZCTA5CE10": "94129", "tippecanoe:count": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.477818, 37.811005 ], [ -122.476444, 37.810869 ], [ -122.476101, 37.809648 ], [ -122.474728, 37.809241 ], [ -122.472668, 37.808970 ], [ -122.470608, 37.808563 ], [ -122.469234, 37.807750 ], [ -122.468719, 37.807071 ], [ -122.468376, 37.806800 ], [ -122.468204, 37.806936 ], [ -122.468204, 37.806665 ], [ -122.466660, 37.805851 ], [ -122.463570, 37.804901 ], [ -122.461681, 37.804901 ], [ -122.458420, 37.805444 ], [ -122.454472, 37.806529 ], [ -122.452412, 37.806258 ], [ -122.448120, 37.806936 ], [ -122.448120, 37.806393 ], [ -122.448463, 37.806122 ], [ -122.448292, 37.804766 ], [ -122.451553, 37.803409 ], [ -122.450180, 37.802867 ], [ -122.450008, 37.802460 ], [ -122.447605, 37.800697 ], [ -122.447262, 37.798527 ], [ -122.448120, 37.798255 ], [ -122.448292, 37.797848 ], [ -122.447948, 37.797441 ], [ -122.448635, 37.797441 ], [ -122.448635, 37.797034 ], [ -122.447948, 37.796899 ], [ -122.447948, 37.796492 ], [ -122.448978, 37.796356 ], [ -122.447433, 37.795814 ], [ -122.447433, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.448635, 37.795542 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.794728 ], [ -122.447948, 37.793101 ], [ -122.448463, 37.792829 ], [ -122.448635, 37.791880 ], [ -122.470951, 37.787267 ], [ -122.473354, 37.787132 ], [ -122.475586, 37.786725 ], [ -122.479877, 37.786860 ], [ -122.483826, 37.787674 ], [ -122.484512, 37.789167 ], [ -122.483997, 37.789709 ], [ -122.484341, 37.790116 ], [ -122.484341, 37.789709 ], [ -122.485027, 37.789574 ], [ -122.485886, 37.790795 ], [ -122.483654, 37.794050 ], [ -122.482109, 37.798527 ], [ -122.481766, 37.798527 ], [ -122.481937, 37.798798 ], [ -122.481594, 37.798798 ], [ -122.481766, 37.798933 ], [ -122.480221, 37.801375 ], [ -122.479877, 37.802867 ], [ -122.478676, 37.805444 ], [ -122.478333, 37.808156 ], [ -122.477818, 37.808428 ], [ -122.477989, 37.810598 ], [ -122.477646, 37.810598 ], [ -122.477818, 37.811005 ] ], [ [ -122.452583, 37.803274 ], [ -122.452412, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.451210, 37.803138 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.466145, 37.806393 ], [ -122.465973, 37.806258 ], [ -122.466660, 37.805851 ], [ -122.466145, 37.806393 ] ] ], [ [ [ -122.469921, 37.809377 ], [ -122.469406, 37.809106 ], [ -122.470093, 37.809241 ], [ -122.469921, 37.809377 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94123", "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.443142, 37.809784 ], [ -122.439537, 37.808835 ], [ -122.440910, 37.806936 ], [ -122.435760, 37.807614 ], [ -122.435589, 37.807207 ], [ -122.435589, 37.806936 ], [ -122.433014, 37.807343 ], [ -122.433014, 37.807071 ], [ -122.434387, 37.806936 ], [ -122.434044, 37.806800 ], [ -122.433014, 37.806936 ], [ -122.432842, 37.806800 ], [ -122.434044, 37.806665 ], [ -122.434044, 37.806393 ], [ -122.433872, 37.806122 ], [ -122.433872, 37.805851 ], [ -122.433701, 37.805580 ], [ -122.432671, 37.805715 ], [ -122.432327, 37.805986 ], [ -122.431641, 37.803274 ], [ -122.425289, 37.804088 ], [ -122.424946, 37.803138 ], [ -122.426491, 37.803003 ], [ -122.426319, 37.802053 ], [ -122.424774, 37.802324 ], [ -122.424603, 37.801239 ], [ -122.426147, 37.801104 ], [ -122.425976, 37.800154 ], [ -122.424431, 37.800426 ], [ -122.423744, 37.796628 ], [ -122.433529, 37.795407 ], [ -122.433357, 37.794457 ], [ -122.434902, 37.794322 ], [ -122.435074, 37.795271 ], [ -122.436790, 37.795000 ], [ -122.436619, 37.794050 ], [ -122.440739, 37.793508 ], [ -122.440910, 37.794457 ], [ -122.441769, 37.794322 ], [ -122.441597, 37.793372 ], [ -122.446404, 37.792829 ], [ -122.446232, 37.791880 ], [ -122.447605, 37.791744 ], [ -122.448635, 37.794728 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.447433, 37.795542 ], [ -122.447433, 37.795814 ], [ -122.448978, 37.796356 ], [ -122.447948, 37.796492 ], [ -122.447948, 37.796899 ], [ -122.448635, 37.797034 ], [ -122.448635, 37.797441 ], [ -122.447948, 37.797441 ], [ -122.448292, 37.797848 ], [ -122.448120, 37.798255 ], [ -122.447262, 37.798527 ], [ -122.447605, 37.800697 ], [ -122.450008, 37.802460 ], [ -122.450180, 37.802867 ], [ -122.451553, 37.803409 ], [ -122.448292, 37.804766 ], [ -122.448463, 37.806122 ], [ -122.448120, 37.806393 ], [ -122.448120, 37.806936 ], [ -122.448635, 37.808563 ], [ -122.443142, 37.809784 ] ] ], [ [ [ -122.432842, 37.805986 ], [ -122.432842, 37.805851 ], [ -122.433872, 37.805851 ], [ -122.432842, 37.805986 ] ] ], [ [ [ -122.433529, 37.807614 ], [ -122.433529, 37.807478 ], [ -122.435589, 37.807207 ], [ -122.433529, 37.807614 ] ] ], [ [ [ -122.452583, 37.803274 ], [ -122.451210, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.432842, 37.806393 ], [ -122.432842, 37.806122 ], [ -122.433872, 37.806122 ], [ -122.432842, 37.806393 ] ] ], [ [ [ -122.432842, 37.806665 ], [ -122.432842, 37.806529 ], [ -122.434044, 37.806393 ], [ -122.432842, 37.806665 ] ] ], [ [ [ -122.433701, 37.808156 ], [ -122.433701, 37.807885 ], [ -122.433872, 37.807885 ], [ -122.433701, 37.808156 ] ] ] ] } } +] } +] } diff --git a/tests/pbf/bin-11-327-791-ids.pbf.out.json b/tests/pbf/bin-11-327-791-ids.pbf.out.json new file mode 100644 index 000000000..f7b9c9b4b --- /dev/null +++ b/tests/pbf/bin-11-327-791-ids.pbf.out.json @@ -0,0 +1,7 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "parsed", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "bin-ids": "236,237,510,514", "ZCTA5CE10": "94129", "GEOID10": "94129", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5968455, "AWATER10": 14697, "INTPTLAT10": "+37.7973402", "INTPTLON10": "-122.4644664", "tippecanoe:count": 4 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.477818, 37.811005 ], [ -122.476444, 37.810869 ], [ -122.476101, 37.809648 ], [ -122.474728, 37.809241 ], [ -122.472668, 37.808970 ], [ -122.470608, 37.808563 ], [ -122.469234, 37.807750 ], [ -122.468719, 37.807071 ], [ -122.468376, 37.806800 ], [ -122.468204, 37.806936 ], [ -122.468204, 37.806665 ], [ -122.466660, 37.805851 ], [ -122.463570, 37.804901 ], [ -122.461681, 37.804901 ], [ -122.458420, 37.805444 ], [ -122.454472, 37.806529 ], [ -122.452412, 37.806258 ], [ -122.448120, 37.806936 ], [ -122.448120, 37.806393 ], [ -122.448463, 37.806122 ], [ -122.448292, 37.804766 ], [ -122.451553, 37.803409 ], [ -122.450180, 37.802867 ], [ -122.450008, 37.802460 ], [ -122.447605, 37.800697 ], [ -122.447262, 37.798527 ], [ -122.448120, 37.798255 ], [ -122.448292, 37.797848 ], [ -122.447948, 37.797441 ], [ -122.448635, 37.797441 ], [ -122.448635, 37.797034 ], [ -122.447948, 37.796899 ], [ -122.447948, 37.796492 ], [ -122.448978, 37.796356 ], [ -122.447433, 37.795814 ], [ -122.447433, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.448635, 37.795542 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.794728 ], [ -122.447948, 37.793101 ], [ -122.448463, 37.792829 ], [ -122.448635, 37.791880 ], [ -122.470951, 37.787267 ], [ -122.473354, 37.787132 ], [ -122.475586, 37.786725 ], [ -122.479877, 37.786860 ], [ -122.483826, 37.787674 ], [ -122.484512, 37.789167 ], [ -122.483997, 37.789709 ], [ -122.484341, 37.790116 ], [ -122.484341, 37.789709 ], [ -122.485027, 37.789574 ], [ -122.485886, 37.790795 ], [ -122.483654, 37.794050 ], [ -122.482109, 37.798527 ], [ -122.481766, 37.798527 ], [ -122.481937, 37.798798 ], [ -122.481594, 37.798798 ], [ -122.481766, 37.798933 ], [ -122.480221, 37.801375 ], [ -122.479877, 37.802867 ], [ -122.478676, 37.805444 ], [ -122.478333, 37.808156 ], [ -122.477818, 37.808428 ], [ -122.477989, 37.810598 ], [ -122.477646, 37.810598 ], [ -122.477818, 37.811005 ] ], [ [ -122.452583, 37.803274 ], [ -122.452412, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.451210, 37.803138 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.466145, 37.806393 ], [ -122.465973, 37.806258 ], [ -122.466660, 37.805851 ], [ -122.466145, 37.806393 ] ] ], [ [ [ -122.469921, 37.809377 ], [ -122.469406, 37.809106 ], [ -122.470093, 37.809241 ], [ -122.469921, 37.809377 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "bin-ids": "529,531", "ZCTA5CE10": "94123", "GEOID10": "94123", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2646572, "AWATER10": 218721, "INTPTLAT10": "+37.8009336", "INTPTLON10": "-122.4383664", "tippecanoe:count": 2 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.443142, 37.809784 ], [ -122.439537, 37.808835 ], [ -122.440910, 37.806936 ], [ -122.435760, 37.807614 ], [ -122.435589, 37.807207 ], [ -122.435589, 37.806936 ], [ -122.433014, 37.807343 ], [ -122.433014, 37.807071 ], [ -122.434387, 37.806936 ], [ -122.434044, 37.806800 ], [ -122.433014, 37.806936 ], [ -122.432842, 37.806800 ], [ -122.434044, 37.806665 ], [ -122.434044, 37.806393 ], [ -122.433872, 37.806122 ], [ -122.433872, 37.805851 ], [ -122.433701, 37.805580 ], [ -122.432671, 37.805715 ], [ -122.432327, 37.805986 ], [ -122.431641, 37.803274 ], [ -122.425289, 37.804088 ], [ -122.424946, 37.803138 ], [ -122.426491, 37.803003 ], [ -122.426319, 37.802053 ], [ -122.424774, 37.802324 ], [ -122.424603, 37.801239 ], [ -122.426147, 37.801104 ], [ -122.425976, 37.800154 ], [ -122.424431, 37.800426 ], [ -122.423744, 37.796628 ], [ -122.433529, 37.795407 ], [ -122.433357, 37.794457 ], [ -122.434902, 37.794322 ], [ -122.435074, 37.795271 ], [ -122.436790, 37.795000 ], [ -122.436619, 37.794050 ], [ -122.440739, 37.793508 ], [ -122.440910, 37.794457 ], [ -122.441769, 37.794322 ], [ -122.441597, 37.793372 ], [ -122.446404, 37.792829 ], [ -122.446232, 37.791880 ], [ -122.447605, 37.791744 ], [ -122.448635, 37.794728 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.447433, 37.795542 ], [ -122.447433, 37.795814 ], [ -122.448978, 37.796356 ], [ -122.447948, 37.796492 ], [ -122.447948, 37.796899 ], [ -122.448635, 37.797034 ], [ -122.448635, 37.797441 ], [ -122.447948, 37.797441 ], [ -122.448292, 37.797848 ], [ -122.448120, 37.798255 ], [ -122.447262, 37.798527 ], [ -122.447605, 37.800697 ], [ -122.450008, 37.802460 ], [ -122.450180, 37.802867 ], [ -122.451553, 37.803409 ], [ -122.448292, 37.804766 ], [ -122.448463, 37.806122 ], [ -122.448120, 37.806393 ], [ -122.448120, 37.806936 ], [ -122.448635, 37.808563 ], [ -122.443142, 37.809784 ] ] ], [ [ [ -122.432842, 37.805986 ], [ -122.432842, 37.805851 ], [ -122.433872, 37.805851 ], [ -122.432842, 37.805986 ] ] ], [ [ [ -122.433529, 37.807614 ], [ -122.433529, 37.807478 ], [ -122.435589, 37.807207 ], [ -122.433529, 37.807614 ] ] ], [ [ [ -122.452583, 37.803274 ], [ -122.451210, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.432842, 37.806393 ], [ -122.432842, 37.806122 ], [ -122.433872, 37.806122 ], [ -122.432842, 37.806393 ] ] ], [ [ [ -122.432842, 37.806665 ], [ -122.432842, 37.806529 ], [ -122.434044, 37.806393 ], [ -122.432842, 37.806665 ] ] ], [ [ [ -122.433701, 37.808156 ], [ -122.433701, 37.807885 ], [ -122.433872, 37.807885 ], [ -122.433701, 37.808156 ] ] ] ] } } +] } +] } diff --git a/tests/pbf/bin-11-327-791.pbf.out.json b/tests/pbf/bin-11-327-791.pbf.out.json new file mode 100644 index 000000000..38d8eefbd --- /dev/null +++ b/tests/pbf/bin-11-327-791.pbf.out.json @@ -0,0 +1,57 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "muni", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "ZCTA5CE10": "94132", "GEOID10": "94132", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8078894, "AWATER10": 1299131, "INTPTLAT10": "+37.7222142", "INTPTLON10": "-122.4840831", "tippecanoe:count": 163 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.490005, 37.738006 ], [ -122.488461, 37.737055 ], [ -122.486229, 37.736784 ], [ -122.483311, 37.737463 ], [ -122.482452, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.475414, 37.737463 ], [ -122.475243, 37.734612 ], [ -122.475071, 37.734747 ], [ -122.471638, 37.734747 ], [ -122.471981, 37.731082 ], [ -122.472153, 37.731082 ], [ -122.472496, 37.721578 ], [ -122.464428, 37.721713 ], [ -122.463913, 37.722392 ], [ -122.462196, 37.723071 ], [ -122.462196, 37.721713 ], [ -122.462711, 37.721713 ], [ -122.462711, 37.718590 ], [ -122.462668, 37.715875 ], [ -122.498760, 37.715875 ], [ -122.499962, 37.717504 ], [ -122.500305, 37.718590 ], [ -122.500477, 37.720627 ], [ -122.502708, 37.723343 ], [ -122.503052, 37.724022 ], [ -122.503052, 37.725244 ], [ -122.503567, 37.725379 ], [ -122.505283, 37.726330 ], [ -122.506313, 37.727416 ], [ -122.507172, 37.732575 ], [ -122.506828, 37.735426 ], [ -122.505283, 37.735426 ], [ -122.505283, 37.735562 ], [ -122.502022, 37.735562 ], [ -122.500477, 37.735155 ], [ -122.498589, 37.734204 ], [ -122.496872, 37.733933 ], [ -122.491379, 37.734069 ], [ -122.491379, 37.737327 ], [ -122.490349, 37.737870 ], [ -122.490005, 37.738006 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94112", "GEOID10": "94112", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8720166, "AWATER10": 0, "INTPTLAT10": "+37.7203669", "INTPTLON10": "-122.4429361", "tippecanoe:count": 259 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.426662, 37.736376 ], [ -122.426491, 37.736241 ], [ -122.427349, 37.735698 ], [ -122.424946, 37.735562 ], [ -122.423916, 37.734612 ], [ -122.422886, 37.734340 ], [ -122.422199, 37.735155 ], [ -122.421856, 37.735155 ], [ -122.421856, 37.734612 ], [ -122.420139, 37.732983 ], [ -122.418251, 37.732983 ], [ -122.418938, 37.732847 ], [ -122.418938, 37.732168 ], [ -122.415161, 37.732168 ], [ -122.421684, 37.731761 ], [ -122.421684, 37.731082 ], [ -122.420139, 37.731489 ], [ -122.420483, 37.728910 ], [ -122.423744, 37.728774 ], [ -122.423058, 37.727280 ], [ -122.424088, 37.725923 ], [ -122.423573, 37.725651 ], [ -122.422886, 37.723886 ], [ -122.423744, 37.723750 ], [ -122.424774, 37.722121 ], [ -122.424603, 37.721713 ], [ -122.426319, 37.718590 ], [ -122.427092, 37.715875 ], [ -122.462668, 37.715875 ], [ -122.462711, 37.718590 ], [ -122.462711, 37.721713 ], [ -122.462196, 37.721713 ], [ -122.462196, 37.725244 ], [ -122.462711, 37.725515 ], [ -122.462540, 37.727145 ], [ -122.462025, 37.727416 ], [ -122.460823, 37.727552 ], [ -122.460995, 37.728638 ], [ -122.459965, 37.728774 ], [ -122.459965, 37.729860 ], [ -122.459278, 37.730810 ], [ -122.457390, 37.730675 ], [ -122.457561, 37.731082 ], [ -122.453442, 37.731625 ], [ -122.453442, 37.730675 ], [ -122.444344, 37.730675 ], [ -122.444344, 37.728231 ], [ -122.443657, 37.728366 ], [ -122.439537, 37.730131 ], [ -122.435932, 37.731625 ], [ -122.435074, 37.731489 ], [ -122.432156, 37.732983 ], [ -122.431984, 37.732983 ], [ -122.432327, 37.733254 ], [ -122.428551, 37.735019 ], [ -122.426662, 37.736376 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94134", "GEOID10": "94134", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6210550, "AWATER10": 90877, "INTPTLAT10": "+37.7210461", "INTPTLON10": "-122.4135554", "tippecanoe:count": 124 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.406921, 37.738006 ], [ -122.406578, 37.735698 ], [ -122.405033, 37.733661 ], [ -122.402802, 37.729317 ], [ -122.398853, 37.718590 ], [ -122.398124, 37.715875 ], [ -122.427092, 37.715875 ], [ -122.426319, 37.718590 ], [ -122.424603, 37.721713 ], [ -122.424774, 37.722121 ], [ -122.423744, 37.723750 ], [ -122.422886, 37.723886 ], [ -122.423573, 37.725651 ], [ -122.424088, 37.725923 ], [ -122.423058, 37.727280 ], [ -122.423744, 37.728774 ], [ -122.420483, 37.728910 ], [ -122.420139, 37.731489 ], [ -122.421684, 37.731082 ], [ -122.421684, 37.731761 ], [ -122.419453, 37.732032 ], [ -122.416019, 37.732032 ], [ -122.414474, 37.732439 ], [ -122.409496, 37.735019 ], [ -122.408466, 37.736241 ], [ -122.408295, 37.737598 ], [ -122.406921, 37.738006 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94124", "GEOID10": "94124", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 12765980, "AWATER10": 2804039, "INTPTLAT10": "+37.7288947", "INTPTLON10": "-122.3827787", "tippecanoe:count": 314 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.377911, 37.753615 ], [ -122.376022, 37.752530 ], [ -122.373104, 37.746015 ], [ -122.367611, 37.740178 ], [ -122.368298, 37.739770 ], [ -122.373447, 37.739635 ], [ -122.373962, 37.739499 ], [ -122.373447, 37.738684 ], [ -122.372761, 37.738277 ], [ -122.367439, 37.738277 ], [ -122.370701, 37.737327 ], [ -122.371216, 37.737055 ], [ -122.372932, 37.737055 ], [ -122.373619, 37.737191 ], [ -122.375679, 37.738413 ], [ -122.376366, 37.738413 ], [ -122.376537, 37.738277 ], [ -122.376022, 37.738006 ], [ -122.375164, 37.737870 ], [ -122.374821, 37.737327 ], [ -122.375164, 37.736241 ], [ -122.376022, 37.735833 ], [ -122.375851, 37.735019 ], [ -122.375336, 37.735426 ], [ -122.374821, 37.734883 ], [ -122.375164, 37.734612 ], [ -122.374821, 37.734476 ], [ -122.374992, 37.733933 ], [ -122.375679, 37.732711 ], [ -122.375164, 37.732983 ], [ -122.374992, 37.732711 ], [ -122.374649, 37.732847 ], [ -122.374821, 37.732575 ], [ -122.374134, 37.732575 ], [ -122.373447, 37.732983 ], [ -122.372589, 37.733933 ], [ -122.371902, 37.734204 ], [ -122.369671, 37.732304 ], [ -122.367096, 37.735426 ], [ -122.367439, 37.735426 ], [ -122.367096, 37.735562 ], [ -122.366753, 37.735426 ], [ -122.366924, 37.734883 ], [ -122.369499, 37.732439 ], [ -122.369499, 37.732168 ], [ -122.368813, 37.731896 ], [ -122.368641, 37.732304 ], [ -122.368298, 37.732304 ], [ -122.367439, 37.731896 ], [ -122.366753, 37.732168 ], [ -122.365208, 37.733797 ], [ -122.366581, 37.732168 ], [ -122.365379, 37.732983 ], [ -122.366238, 37.731896 ], [ -122.366066, 37.731896 ], [ -122.365036, 37.732847 ], [ -122.365723, 37.731761 ], [ -122.365723, 37.731625 ], [ -122.364864, 37.732575 ], [ -122.365036, 37.732032 ], [ -122.363663, 37.731218 ], [ -122.362804, 37.732168 ], [ -122.362633, 37.732032 ], [ -122.363319, 37.731082 ], [ -122.362804, 37.730810 ], [ -122.362118, 37.731625 ], [ -122.361774, 37.731489 ], [ -122.362633, 37.730675 ], [ -122.361946, 37.730131 ], [ -122.360916, 37.729860 ], [ -122.360744, 37.730267 ], [ -122.359886, 37.730267 ], [ -122.358856, 37.729724 ], [ -122.359028, 37.729453 ], [ -122.361946, 37.728774 ], [ -122.362289, 37.728502 ], [ -122.361431, 37.728502 ], [ -122.357655, 37.729453 ], [ -122.357483, 37.729181 ], [ -122.357826, 37.728910 ], [ -122.360401, 37.728231 ], [ -122.359886, 37.728095 ], [ -122.357140, 37.728774 ], [ -122.356968, 37.728774 ], [ -122.357140, 37.727959 ], [ -122.356796, 37.727959 ], [ -122.358170, 37.718590 ], [ -122.358513, 37.715875 ], [ -122.398124, 37.715875 ], [ -122.398853, 37.718590 ], [ -122.402802, 37.729317 ], [ -122.405033, 37.733661 ], [ -122.406578, 37.735698 ], [ -122.406921, 37.738006 ], [ -122.407780, 37.737734 ], [ -122.407951, 37.737870 ], [ -122.407951, 37.739227 ], [ -122.407436, 37.741399 ], [ -122.405891, 37.743435 ], [ -122.406235, 37.743571 ], [ -122.405376, 37.744521 ], [ -122.405205, 37.744386 ], [ -122.404003, 37.748322 ], [ -122.405033, 37.749136 ], [ -122.402973, 37.749544 ], [ -122.402115, 37.749408 ], [ -122.395248, 37.749815 ], [ -122.395248, 37.751308 ], [ -122.393188, 37.751444 ], [ -122.393188, 37.749951 ], [ -122.386494, 37.750358 ], [ -122.386837, 37.752937 ], [ -122.381001, 37.753208 ], [ -122.377911, 37.753615 ] ] ] } } +, +{ "type": "Feature", "properties": { "bin-ids": "236,237,510,514", "ZCTA5CE10": "94129", "GEOID10": "94129", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5968455, "AWATER10": 14697, "INTPTLAT10": "+37.7973402", "INTPTLON10": "-122.4644664", "tippecanoe:count": 70 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.477818, 37.811005 ], [ -122.476444, 37.810869 ], [ -122.476101, 37.809648 ], [ -122.474728, 37.809241 ], [ -122.472668, 37.808970 ], [ -122.470608, 37.808563 ], [ -122.469234, 37.807750 ], [ -122.468719, 37.807071 ], [ -122.468376, 37.806800 ], [ -122.468204, 37.806936 ], [ -122.468204, 37.806665 ], [ -122.466660, 37.805851 ], [ -122.463570, 37.804901 ], [ -122.461681, 37.804901 ], [ -122.458420, 37.805444 ], [ -122.454472, 37.806529 ], [ -122.452412, 37.806258 ], [ -122.448120, 37.806936 ], [ -122.448120, 37.806393 ], [ -122.448463, 37.806122 ], [ -122.448292, 37.804766 ], [ -122.451553, 37.803409 ], [ -122.450180, 37.802867 ], [ -122.450008, 37.802460 ], [ -122.447605, 37.800697 ], [ -122.447262, 37.798527 ], [ -122.448120, 37.798255 ], [ -122.448292, 37.797848 ], [ -122.447948, 37.797441 ], [ -122.448635, 37.797441 ], [ -122.448635, 37.797034 ], [ -122.447948, 37.796899 ], [ -122.447948, 37.796492 ], [ -122.448978, 37.796356 ], [ -122.447433, 37.795814 ], [ -122.447433, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.448635, 37.795542 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.794728 ], [ -122.447948, 37.793101 ], [ -122.448463, 37.792829 ], [ -122.448635, 37.791880 ], [ -122.470951, 37.787267 ], [ -122.473354, 37.787132 ], [ -122.475586, 37.786725 ], [ -122.479877, 37.786860 ], [ -122.483826, 37.787674 ], [ -122.484512, 37.789167 ], [ -122.483997, 37.789709 ], [ -122.484341, 37.790116 ], [ -122.484341, 37.789709 ], [ -122.485027, 37.789574 ], [ -122.485886, 37.790795 ], [ -122.483654, 37.794050 ], [ -122.482109, 37.798527 ], [ -122.481766, 37.798527 ], [ -122.481937, 37.798798 ], [ -122.481594, 37.798798 ], [ -122.481766, 37.798933 ], [ -122.480221, 37.801375 ], [ -122.479877, 37.802867 ], [ -122.478676, 37.805444 ], [ -122.478333, 37.808156 ], [ -122.477818, 37.808428 ], [ -122.477989, 37.810598 ], [ -122.477646, 37.810598 ], [ -122.477818, 37.811005 ] ], [ [ -122.452583, 37.803274 ], [ -122.452412, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.451210, 37.803138 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.466145, 37.806393 ], [ -122.465973, 37.806258 ], [ -122.466660, 37.805851 ], [ -122.466145, 37.806393 ] ] ], [ [ [ -122.469921, 37.809377 ], [ -122.469406, 37.809106 ], [ -122.470093, 37.809241 ], [ -122.469921, 37.809377 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "bin-ids": "529,531", "ZCTA5CE10": "94123", "GEOID10": "94123", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2646572, "AWATER10": 218721, "INTPTLAT10": "+37.8009336", "INTPTLON10": "-122.4383664", "tippecanoe:count": 108 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.443142, 37.809784 ], [ -122.439537, 37.808835 ], [ -122.440910, 37.806936 ], [ -122.435760, 37.807614 ], [ -122.435589, 37.807207 ], [ -122.435589, 37.806936 ], [ -122.433014, 37.807343 ], [ -122.433014, 37.807071 ], [ -122.434387, 37.806936 ], [ -122.434044, 37.806800 ], [ -122.433014, 37.806936 ], [ -122.432842, 37.806800 ], [ -122.434044, 37.806665 ], [ -122.434044, 37.806393 ], [ -122.433872, 37.806122 ], [ -122.433872, 37.805851 ], [ -122.433701, 37.805580 ], [ -122.432671, 37.805715 ], [ -122.432327, 37.805986 ], [ -122.431641, 37.803274 ], [ -122.425289, 37.804088 ], [ -122.424946, 37.803138 ], [ -122.426491, 37.803003 ], [ -122.426319, 37.802053 ], [ -122.424774, 37.802324 ], [ -122.424603, 37.801239 ], [ -122.426147, 37.801104 ], [ -122.425976, 37.800154 ], [ -122.424431, 37.800426 ], [ -122.423744, 37.796628 ], [ -122.433529, 37.795407 ], [ -122.433357, 37.794457 ], [ -122.434902, 37.794322 ], [ -122.435074, 37.795271 ], [ -122.436790, 37.795000 ], [ -122.436619, 37.794050 ], [ -122.440739, 37.793508 ], [ -122.440910, 37.794457 ], [ -122.441769, 37.794322 ], [ -122.441597, 37.793372 ], [ -122.446404, 37.792829 ], [ -122.446232, 37.791880 ], [ -122.447605, 37.791744 ], [ -122.448635, 37.794728 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.447433, 37.795542 ], [ -122.447433, 37.795814 ], [ -122.448978, 37.796356 ], [ -122.447948, 37.796492 ], [ -122.447948, 37.796899 ], [ -122.448635, 37.797034 ], [ -122.448635, 37.797441 ], [ -122.447948, 37.797441 ], [ -122.448292, 37.797848 ], [ -122.448120, 37.798255 ], [ -122.447262, 37.798527 ], [ -122.447605, 37.800697 ], [ -122.450008, 37.802460 ], [ -122.450180, 37.802867 ], [ -122.451553, 37.803409 ], [ -122.448292, 37.804766 ], [ -122.448463, 37.806122 ], [ -122.448120, 37.806393 ], [ -122.448120, 37.806936 ], [ -122.448635, 37.808563 ], [ -122.443142, 37.809784 ] ] ], [ [ [ -122.432842, 37.805986 ], [ -122.432842, 37.805851 ], [ -122.433872, 37.805851 ], [ -122.432842, 37.805986 ] ] ], [ [ [ -122.433529, 37.807614 ], [ -122.433529, 37.807478 ], [ -122.435589, 37.807207 ], [ -122.433529, 37.807614 ] ] ], [ [ [ -122.452583, 37.803274 ], [ -122.451210, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.432842, 37.806393 ], [ -122.432842, 37.806122 ], [ -122.433872, 37.806122 ], [ -122.432842, 37.806393 ] ] ], [ [ [ -122.432842, 37.806665 ], [ -122.432842, 37.806529 ], [ -122.434044, 37.806393 ], [ -122.432842, 37.806665 ] ] ], [ [ [ -122.433701, 37.808156 ], [ -122.433701, 37.807885 ], [ -122.433872, 37.807885 ], [ -122.433701, 37.808156 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94121", "GEOID10": "94121", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 7980073, "AWATER10": 61283, "INTPTLAT10": "+37.7767691", "INTPTLON10": "-122.4947073", "tippecanoe:count": 196 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.485886, 37.790795 ], [ -122.485027, 37.789574 ], [ -122.484341, 37.789709 ], [ -122.484341, 37.790116 ], [ -122.483997, 37.789709 ], [ -122.484512, 37.789167 ], [ -122.483826, 37.787674 ], [ -122.479877, 37.786860 ], [ -122.476616, 37.786860 ], [ -122.475586, 37.773021 ], [ -122.471638, 37.773157 ], [ -122.471809, 37.772750 ], [ -122.472496, 37.772343 ], [ -122.474899, 37.772479 ], [ -122.478676, 37.772207 ], [ -122.479191, 37.771936 ], [ -122.479362, 37.771258 ], [ -122.478333, 37.769358 ], [ -122.478161, 37.767729 ], [ -122.477303, 37.766237 ], [ -122.477303, 37.765423 ], [ -122.510262, 37.763930 ], [ -122.510433, 37.767322 ], [ -122.511120, 37.771258 ], [ -122.513180, 37.770715 ], [ -122.513180, 37.776007 ], [ -122.513351, 37.777363 ], [ -122.514553, 37.778449 ], [ -122.514553, 37.779263 ], [ -122.514896, 37.779670 ], [ -122.514553, 37.779941 ], [ -122.514553, 37.780484 ], [ -122.514725, 37.781162 ], [ -122.514210, 37.781434 ], [ -122.513695, 37.781434 ], [ -122.513523, 37.782655 ], [ -122.513180, 37.782790 ], [ -122.513008, 37.783197 ], [ -122.512493, 37.783740 ], [ -122.512665, 37.784147 ], [ -122.512150, 37.783740 ], [ -122.511978, 37.784283 ], [ -122.511292, 37.784283 ], [ -122.511292, 37.784554 ], [ -122.509747, 37.784825 ], [ -122.509060, 37.785639 ], [ -122.508030, 37.786182 ], [ -122.507000, 37.787403 ], [ -122.506485, 37.787539 ], [ -122.506142, 37.787810 ], [ -122.505970, 37.788217 ], [ -122.502708, 37.788081 ], [ -122.500477, 37.788353 ], [ -122.500134, 37.788624 ], [ -122.499962, 37.788488 ], [ -122.499619, 37.788760 ], [ -122.499447, 37.788488 ], [ -122.498589, 37.788353 ], [ -122.498074, 37.787946 ], [ -122.497559, 37.787946 ], [ -122.497387, 37.787539 ], [ -122.496529, 37.787267 ], [ -122.494812, 37.787810 ], [ -122.494640, 37.788081 ], [ -122.493954, 37.787539 ], [ -122.493439, 37.787674 ], [ -122.492752, 37.787946 ], [ -122.492409, 37.787810 ], [ -122.491207, 37.788217 ], [ -122.489834, 37.789438 ], [ -122.488976, 37.789302 ], [ -122.487946, 37.789574 ], [ -122.487431, 37.789438 ], [ -122.485886, 37.790795 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94118", "GEOID10": "94118", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5047718, "AWATER10": 59174, "INTPTLAT10": "+37.7800933", "INTPTLON10": "-122.4626054", "tippecanoe:count": 186 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.447948, 37.793101 ], [ -122.446575, 37.786318 ], [ -122.447605, 37.785097 ], [ -122.446404, 37.785368 ], [ -122.445889, 37.782519 ], [ -122.444515, 37.782519 ], [ -122.443829, 37.781841 ], [ -122.445545, 37.781298 ], [ -122.445374, 37.780077 ], [ -122.446232, 37.779941 ], [ -122.446060, 37.778720 ], [ -122.445374, 37.778856 ], [ -122.444859, 37.776007 ], [ -122.446404, 37.775871 ], [ -122.446918, 37.777635 ], [ -122.453270, 37.776821 ], [ -122.452755, 37.775057 ], [ -122.463741, 37.773564 ], [ -122.464600, 37.772479 ], [ -122.459106, 37.771258 ], [ -122.459621, 37.770579 ], [ -122.464428, 37.769629 ], [ -122.467003, 37.768001 ], [ -122.469063, 37.769086 ], [ -122.471294, 37.769086 ], [ -122.472324, 37.768544 ], [ -122.472668, 37.767594 ], [ -122.473183, 37.767051 ], [ -122.477303, 37.766101 ], [ -122.478161, 37.767729 ], [ -122.478333, 37.769358 ], [ -122.479362, 37.771258 ], [ -122.479191, 37.771936 ], [ -122.478676, 37.772207 ], [ -122.474899, 37.772479 ], [ -122.472496, 37.772343 ], [ -122.471981, 37.772479 ], [ -122.471638, 37.773021 ], [ -122.471638, 37.773157 ], [ -122.475586, 37.773021 ], [ -122.476616, 37.786860 ], [ -122.475586, 37.786725 ], [ -122.473354, 37.787132 ], [ -122.470951, 37.787267 ], [ -122.459450, 37.789709 ], [ -122.448978, 37.791744 ], [ -122.448635, 37.792015 ], [ -122.448292, 37.792965 ], [ -122.447948, 37.793101 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94117", "GEOID10": "94117", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4373050, "AWATER10": 1625, "INTPTLAT10": "+37.7694362", "INTPTLON10": "-122.4476618", "tippecanoe:count": 200 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.430096, 37.778856 ], [ -122.428379, 37.770443 ], [ -122.429237, 37.770308 ], [ -122.429066, 37.769493 ], [ -122.435760, 37.769086 ], [ -122.435589, 37.767322 ], [ -122.438164, 37.767187 ], [ -122.438507, 37.766237 ], [ -122.439537, 37.766644 ], [ -122.441254, 37.765287 ], [ -122.443314, 37.765287 ], [ -122.442970, 37.763523 ], [ -122.443829, 37.763251 ], [ -122.445374, 37.761894 ], [ -122.446747, 37.761758 ], [ -122.446404, 37.760944 ], [ -122.447090, 37.759723 ], [ -122.447605, 37.759180 ], [ -122.448463, 37.759044 ], [ -122.448635, 37.759587 ], [ -122.451553, 37.759451 ], [ -122.453270, 37.759180 ], [ -122.453957, 37.758773 ], [ -122.454987, 37.758773 ], [ -122.455330, 37.759044 ], [ -122.456532, 37.759180 ], [ -122.456875, 37.759859 ], [ -122.456017, 37.760266 ], [ -122.455845, 37.760808 ], [ -122.456703, 37.761080 ], [ -122.457905, 37.760944 ], [ -122.459106, 37.761894 ], [ -122.457047, 37.761894 ], [ -122.456360, 37.762573 ], [ -122.456017, 37.763794 ], [ -122.456017, 37.764065 ], [ -122.457561, 37.763523 ], [ -122.457733, 37.765965 ], [ -122.458420, 37.766101 ], [ -122.461166, 37.766237 ], [ -122.477303, 37.765423 ], [ -122.477474, 37.766101 ], [ -122.475243, 37.766508 ], [ -122.472839, 37.767322 ], [ -122.472324, 37.768544 ], [ -122.471294, 37.769086 ], [ -122.469063, 37.769086 ], [ -122.467003, 37.768001 ], [ -122.464428, 37.769629 ], [ -122.461853, 37.770308 ], [ -122.459965, 37.770443 ], [ -122.459106, 37.771258 ], [ -122.464600, 37.772479 ], [ -122.463741, 37.773564 ], [ -122.452755, 37.775057 ], [ -122.453270, 37.776821 ], [ -122.446918, 37.777635 ], [ -122.446404, 37.775871 ], [ -122.444859, 37.776007 ], [ -122.445030, 37.776956 ], [ -122.441597, 37.777363 ], [ -122.441425, 37.776414 ], [ -122.440395, 37.776549 ], [ -122.439880, 37.776685 ], [ -122.440052, 37.777635 ], [ -122.430096, 37.778856 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94115", "GEOID10": "94115", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2889809, "AWATER10": 0, "INTPTLAT10": "+37.7859692", "INTPTLON10": "-122.4372531", "tippecanoe:count": 131 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.430267, 37.795814 ], [ -122.426834, 37.779263 ], [ -122.428207, 37.779127 ], [ -122.428036, 37.778177 ], [ -122.429237, 37.778042 ], [ -122.429924, 37.777906 ], [ -122.430096, 37.778856 ], [ -122.440052, 37.777635 ], [ -122.439880, 37.776685 ], [ -122.440395, 37.776549 ], [ -122.441425, 37.776414 ], [ -122.441597, 37.777363 ], [ -122.445030, 37.776956 ], [ -122.445374, 37.778856 ], [ -122.446060, 37.778720 ], [ -122.446232, 37.779941 ], [ -122.445374, 37.780077 ], [ -122.445545, 37.781298 ], [ -122.443829, 37.781841 ], [ -122.444515, 37.782519 ], [ -122.445889, 37.782519 ], [ -122.446404, 37.785368 ], [ -122.447605, 37.785097 ], [ -122.446575, 37.786318 ], [ -122.447605, 37.791744 ], [ -122.446232, 37.791880 ], [ -122.446404, 37.792829 ], [ -122.441597, 37.793372 ], [ -122.441769, 37.794322 ], [ -122.440910, 37.794457 ], [ -122.440739, 37.793508 ], [ -122.436619, 37.794050 ], [ -122.436790, 37.795000 ], [ -122.435074, 37.795271 ], [ -122.434902, 37.794322 ], [ -122.433357, 37.794457 ], [ -122.433529, 37.795407 ], [ -122.430267, 37.795814 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94131", "GEOID10": "94131", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5379947, "AWATER10": 50540, "INTPTLAT10": "+37.7459165", "INTPTLON10": "-122.4414731", "tippecanoe:count": 181 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.456017, 37.764065 ], [ -122.456360, 37.762573 ], [ -122.457047, 37.761894 ], [ -122.459106, 37.761894 ], [ -122.457905, 37.760944 ], [ -122.456703, 37.761080 ], [ -122.455845, 37.760808 ], [ -122.456017, 37.760266 ], [ -122.456875, 37.759859 ], [ -122.456875, 37.759451 ], [ -122.455845, 37.759044 ], [ -122.455330, 37.759044 ], [ -122.454987, 37.758773 ], [ -122.453785, 37.758773 ], [ -122.452927, 37.758094 ], [ -122.453785, 37.757416 ], [ -122.453270, 37.756737 ], [ -122.452412, 37.757008 ], [ -122.452068, 37.756601 ], [ -122.451038, 37.756737 ], [ -122.450352, 37.757416 ], [ -122.447948, 37.757551 ], [ -122.446918, 37.756601 ], [ -122.445889, 37.756466 ], [ -122.445030, 37.756601 ], [ -122.444515, 37.756466 ], [ -122.444172, 37.755923 ], [ -122.444000, 37.754158 ], [ -122.442970, 37.754023 ], [ -122.442455, 37.754430 ], [ -122.442284, 37.755108 ], [ -122.442970, 37.755516 ], [ -122.441254, 37.756194 ], [ -122.441082, 37.755923 ], [ -122.441082, 37.756194 ], [ -122.440052, 37.756330 ], [ -122.440052, 37.755787 ], [ -122.440395, 37.755108 ], [ -122.442455, 37.752394 ], [ -122.442799, 37.752394 ], [ -122.443485, 37.749408 ], [ -122.444344, 37.748322 ], [ -122.444172, 37.747508 ], [ -122.444859, 37.746965 ], [ -122.444515, 37.746693 ], [ -122.444000, 37.746829 ], [ -122.442455, 37.748186 ], [ -122.441425, 37.748593 ], [ -122.438164, 37.748729 ], [ -122.438164, 37.747779 ], [ -122.424946, 37.748593 ], [ -122.423916, 37.740856 ], [ -122.425117, 37.737870 ], [ -122.427864, 37.735562 ], [ -122.432327, 37.733254 ], [ -122.431984, 37.732983 ], [ -122.432156, 37.732983 ], [ -122.435074, 37.731489 ], [ -122.435932, 37.731625 ], [ -122.439537, 37.730131 ], [ -122.443657, 37.728366 ], [ -122.444344, 37.728231 ], [ -122.444344, 37.734612 ], [ -122.445374, 37.734612 ], [ -122.446232, 37.735155 ], [ -122.446404, 37.735562 ], [ -122.446060, 37.735562 ], [ -122.444687, 37.737598 ], [ -122.442455, 37.737598 ], [ -122.442627, 37.739499 ], [ -122.444000, 37.740042 ], [ -122.444687, 37.740856 ], [ -122.446060, 37.741128 ], [ -122.446232, 37.742078 ], [ -122.446575, 37.742485 ], [ -122.449150, 37.742892 ], [ -122.450180, 37.743571 ], [ -122.451725, 37.745607 ], [ -122.449493, 37.746693 ], [ -122.450867, 37.746965 ], [ -122.452068, 37.748322 ], [ -122.452068, 37.751172 ], [ -122.452927, 37.751172 ], [ -122.453098, 37.749001 ], [ -122.454128, 37.749001 ], [ -122.453957, 37.750629 ], [ -122.454472, 37.751308 ], [ -122.454643, 37.751308 ], [ -122.454643, 37.747100 ], [ -122.455502, 37.747100 ], [ -122.455845, 37.746422 ], [ -122.458763, 37.746829 ], [ -122.459106, 37.747236 ], [ -122.458763, 37.747643 ], [ -122.458591, 37.748051 ], [ -122.460308, 37.749815 ], [ -122.461338, 37.751308 ], [ -122.463398, 37.753073 ], [ -122.463741, 37.753615 ], [ -122.463570, 37.756330 ], [ -122.462540, 37.756737 ], [ -122.463226, 37.758773 ], [ -122.459965, 37.759316 ], [ -122.460651, 37.760537 ], [ -122.460823, 37.762573 ], [ -122.456017, 37.764065 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94109", "GEOID10": "94109", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3077724, "AWATER10": 295382, "INTPTLAT10": "+37.7953881", "INTPTLON10": "-122.4224441", "tippecanoe:count": 229 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.420998, 37.812903 ], [ -122.419968, 37.808835 ], [ -122.419281, 37.808428 ], [ -122.419109, 37.807750 ], [ -122.420826, 37.807614 ], [ -122.420483, 37.806665 ], [ -122.418938, 37.806800 ], [ -122.418251, 37.803681 ], [ -122.418079, 37.803138 ], [ -122.419796, 37.802867 ], [ -122.419624, 37.802053 ], [ -122.417908, 37.802189 ], [ -122.417221, 37.798527 ], [ -122.415504, 37.798662 ], [ -122.413960, 37.790523 ], [ -122.412243, 37.790659 ], [ -122.411728, 37.788217 ], [ -122.412415, 37.788081 ], [ -122.412415, 37.787810 ], [ -122.413273, 37.787674 ], [ -122.413101, 37.786725 ], [ -122.414818, 37.786453 ], [ -122.414303, 37.783740 ], [ -122.419109, 37.783062 ], [ -122.418938, 37.782112 ], [ -122.420483, 37.781976 ], [ -122.420826, 37.782926 ], [ -122.422543, 37.782655 ], [ -122.422371, 37.781705 ], [ -122.423916, 37.781569 ], [ -122.424088, 37.782519 ], [ -122.427349, 37.782112 ], [ -122.430267, 37.795814 ], [ -122.423744, 37.796628 ], [ -122.424431, 37.800426 ], [ -122.425976, 37.800154 ], [ -122.426147, 37.801104 ], [ -122.424603, 37.801239 ], [ -122.424774, 37.802324 ], [ -122.426319, 37.802053 ], [ -122.426491, 37.803003 ], [ -122.424946, 37.803138 ], [ -122.425289, 37.804088 ], [ -122.431641, 37.803274 ], [ -122.432327, 37.805986 ], [ -122.432156, 37.806122 ], [ -122.432671, 37.808428 ], [ -122.432327, 37.808563 ], [ -122.431984, 37.807207 ], [ -122.431469, 37.807343 ], [ -122.431812, 37.808970 ], [ -122.431297, 37.809106 ], [ -122.430954, 37.807343 ], [ -122.430267, 37.807478 ], [ -122.430611, 37.809106 ], [ -122.430096, 37.809241 ], [ -122.429752, 37.807885 ], [ -122.428207, 37.808428 ], [ -122.427006, 37.808156 ], [ -122.427521, 37.808699 ], [ -122.428036, 37.808563 ], [ -122.427521, 37.808835 ], [ -122.426834, 37.808156 ], [ -122.426491, 37.809920 ], [ -122.425804, 37.810462 ], [ -122.424946, 37.810733 ], [ -122.425976, 37.812089 ], [ -122.425117, 37.812632 ], [ -122.420998, 37.812903 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94108", "GEOID10": "94108", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 698151, "AWATER10": 0, "INTPTLAT10": "+37.7920162", "INTPTLON10": "-122.4085835", "tippecanoe:count": 67 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.404346, 37.796356 ], [ -122.403316, 37.795542 ], [ -122.405033, 37.795271 ], [ -122.403488, 37.787810 ], [ -122.404690, 37.786725 ], [ -122.406406, 37.786589 ], [ -122.406750, 37.788488 ], [ -122.408466, 37.788353 ], [ -122.408638, 37.789167 ], [ -122.411900, 37.788760 ], [ -122.412243, 37.790659 ], [ -122.413960, 37.790523 ], [ -122.414818, 37.795000 ], [ -122.404346, 37.796356 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94104", "GEOID10": "94104", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 200857, "AWATER10": 0, "INTPTLAT10": "+37.7914115", "INTPTLON10": "-122.4021291", "tippecanoe:count": 25 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.401257, 37.794050 ], [ -122.401257, 37.793508 ], [ -122.400055, 37.793643 ], [ -122.399540, 37.791337 ], [ -122.399197, 37.791066 ], [ -122.403488, 37.787810 ], [ -122.404690, 37.793508 ], [ -122.401257, 37.794050 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94114", "GEOID10": "94114", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3692567, "AWATER10": 0, "INTPTLAT10": "+37.7580586", "INTPTLON10": "-122.4354080", "tippecanoe:count": 206 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.428379, 37.770443 ], [ -122.428207, 37.769493 ], [ -122.426319, 37.769629 ], [ -122.427006, 37.769222 ], [ -122.426662, 37.768951 ], [ -122.426491, 37.765830 ], [ -122.427692, 37.765694 ], [ -122.427521, 37.764608 ], [ -122.426319, 37.764608 ], [ -122.426319, 37.763930 ], [ -122.427177, 37.763794 ], [ -122.427177, 37.762980 ], [ -122.426319, 37.762980 ], [ -122.426147, 37.762166 ], [ -122.424774, 37.748593 ], [ -122.438164, 37.747779 ], [ -122.438164, 37.748729 ], [ -122.441425, 37.748593 ], [ -122.442455, 37.748186 ], [ -122.444000, 37.746829 ], [ -122.444515, 37.746693 ], [ -122.444859, 37.746965 ], [ -122.444172, 37.747508 ], [ -122.444344, 37.748322 ], [ -122.443485, 37.749408 ], [ -122.442799, 37.752394 ], [ -122.442455, 37.752394 ], [ -122.440395, 37.755108 ], [ -122.440052, 37.755787 ], [ -122.440052, 37.756330 ], [ -122.441082, 37.756194 ], [ -122.441082, 37.756058 ], [ -122.441254, 37.756194 ], [ -122.442970, 37.755516 ], [ -122.442284, 37.755108 ], [ -122.442455, 37.754430 ], [ -122.442970, 37.754023 ], [ -122.444000, 37.754158 ], [ -122.444172, 37.755923 ], [ -122.444687, 37.756601 ], [ -122.445889, 37.756466 ], [ -122.446918, 37.756601 ], [ -122.447948, 37.757551 ], [ -122.450352, 37.757416 ], [ -122.451038, 37.756737 ], [ -122.452068, 37.756601 ], [ -122.452412, 37.757008 ], [ -122.453270, 37.756737 ], [ -122.453785, 37.757416 ], [ -122.452927, 37.758094 ], [ -122.453957, 37.758773 ], [ -122.453270, 37.759180 ], [ -122.451553, 37.759451 ], [ -122.448635, 37.759587 ], [ -122.448463, 37.759044 ], [ -122.447605, 37.759180 ], [ -122.447090, 37.759723 ], [ -122.446404, 37.760944 ], [ -122.446747, 37.761758 ], [ -122.445374, 37.761894 ], [ -122.443829, 37.763251 ], [ -122.442970, 37.763523 ], [ -122.443314, 37.765287 ], [ -122.441254, 37.765287 ], [ -122.439537, 37.766644 ], [ -122.438507, 37.766237 ], [ -122.438164, 37.767187 ], [ -122.435589, 37.767322 ], [ -122.435760, 37.769086 ], [ -122.429066, 37.769493 ], [ -122.429237, 37.770308 ], [ -122.428379, 37.770443 ] ] ], [ [ [ -122.441597, 37.755108 ], [ -122.442799, 37.752530 ], [ -122.442455, 37.753751 ], [ -122.441597, 37.755108 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94102", "GEOID10": "94102", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1732577, "AWATER10": 0, "INTPTLAT10": "+37.7795835", "INTPTLON10": "-122.4193398", "tippecanoe:count": 134 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.408638, 37.789167 ], [ -122.408466, 37.788353 ], [ -122.406750, 37.788488 ], [ -122.406406, 37.786589 ], [ -122.404690, 37.786725 ], [ -122.408638, 37.783604 ], [ -122.408638, 37.783469 ], [ -122.409153, 37.783197 ], [ -122.426319, 37.769629 ], [ -122.428207, 37.769493 ], [ -122.429924, 37.777906 ], [ -122.428036, 37.778177 ], [ -122.428207, 37.779127 ], [ -122.426834, 37.779263 ], [ -122.427349, 37.782112 ], [ -122.424088, 37.782519 ], [ -122.423916, 37.781569 ], [ -122.422371, 37.781705 ], [ -122.422543, 37.782655 ], [ -122.420826, 37.782926 ], [ -122.420654, 37.781976 ], [ -122.418938, 37.782112 ], [ -122.419109, 37.783062 ], [ -122.414303, 37.783740 ], [ -122.414818, 37.786453 ], [ -122.413101, 37.786725 ], [ -122.413273, 37.787674 ], [ -122.412415, 37.787810 ], [ -122.412415, 37.788081 ], [ -122.411728, 37.788217 ], [ -122.411900, 37.788760 ], [ -122.408638, 37.789167 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94105", "GEOID10": "94105", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 942025, "AWATER10": 223684, "INTPTLAT10": "+37.7896493", "INTPTLON10": "-122.3930670", "tippecanoe:count": 127 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.388897, 37.796628 ], [ -122.385120, 37.791337 ], [ -122.385635, 37.790930 ], [ -122.385464, 37.790523 ], [ -122.386322, 37.790252 ], [ -122.387867, 37.788760 ], [ -122.387695, 37.787132 ], [ -122.388554, 37.786996 ], [ -122.392159, 37.784147 ], [ -122.392330, 37.784283 ], [ -122.391472, 37.785097 ], [ -122.391472, 37.785639 ], [ -122.390099, 37.786725 ], [ -122.391815, 37.785504 ], [ -122.393360, 37.784961 ], [ -122.394218, 37.785097 ], [ -122.394047, 37.785232 ], [ -122.395592, 37.786318 ], [ -122.397823, 37.784690 ], [ -122.399368, 37.785911 ], [ -122.400398, 37.785097 ], [ -122.402630, 37.786725 ], [ -122.401772, 37.787267 ], [ -122.402802, 37.788081 ], [ -122.403488, 37.787810 ], [ -122.396278, 37.793372 ], [ -122.396622, 37.794593 ], [ -122.394390, 37.795000 ], [ -122.392502, 37.793643 ], [ -122.392159, 37.793915 ], [ -122.391472, 37.793915 ], [ -122.388897, 37.796628 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94107", "GEOID10": "94107", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4647665, "AWATER10": 227634, "INTPTLAT10": "+37.7604596", "INTPTLON10": "-122.3997237", "tippecanoe:count": 252 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.385120, 37.791337 ], [ -122.381687, 37.783469 ], [ -122.384777, 37.782790 ], [ -122.384777, 37.782519 ], [ -122.387867, 37.782248 ], [ -122.387695, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.385464, 37.781841 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781705 ], [ -122.385464, 37.781569 ], [ -122.387695, 37.781434 ], [ -122.387524, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.384777, 37.781027 ], [ -122.387524, 37.780891 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.779670 ], [ -122.387352, 37.779263 ], [ -122.387352, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.384777, 37.778992 ], [ -122.387352, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778313 ], [ -122.387695, 37.778313 ], [ -122.387695, 37.778177 ], [ -122.390442, 37.777092 ], [ -122.390442, 37.776956 ], [ -122.390270, 37.776685 ], [ -122.392502, 37.775192 ], [ -122.394218, 37.776414 ], [ -122.396450, 37.774650 ], [ -122.396107, 37.774514 ], [ -122.397480, 37.773429 ], [ -122.397823, 37.772343 ], [ -122.398510, 37.772886 ], [ -122.400742, 37.771122 ], [ -122.396622, 37.767865 ], [ -122.393875, 37.766101 ], [ -122.393703, 37.764065 ], [ -122.387867, 37.764337 ], [ -122.387524, 37.760537 ], [ -122.386665, 37.760673 ], [ -122.386322, 37.758094 ], [ -122.385464, 37.758094 ], [ -122.384777, 37.757687 ], [ -122.381344, 37.757959 ], [ -122.381344, 37.756466 ], [ -122.381172, 37.755923 ], [ -122.380829, 37.755516 ], [ -122.380829, 37.755244 ], [ -122.384090, 37.754973 ], [ -122.384090, 37.754701 ], [ -122.383404, 37.754701 ], [ -122.382889, 37.754430 ], [ -122.381516, 37.754566 ], [ -122.380142, 37.754566 ], [ -122.379971, 37.753344 ], [ -122.386837, 37.752937 ], [ -122.386494, 37.750358 ], [ -122.393188, 37.749951 ], [ -122.393188, 37.751444 ], [ -122.395248, 37.751308 ], [ -122.395248, 37.749815 ], [ -122.403831, 37.749408 ], [ -122.402973, 37.752801 ], [ -122.403316, 37.756194 ], [ -122.403831, 37.757144 ], [ -122.406063, 37.759180 ], [ -122.406578, 37.760673 ], [ -122.405376, 37.763116 ], [ -122.405033, 37.764608 ], [ -122.401600, 37.764880 ], [ -122.401428, 37.763523 ], [ -122.400570, 37.763658 ], [ -122.400742, 37.766237 ], [ -122.399712, 37.766237 ], [ -122.399712, 37.766644 ], [ -122.400742, 37.767458 ], [ -122.401772, 37.767458 ], [ -122.402115, 37.769901 ], [ -122.403488, 37.769765 ], [ -122.403831, 37.770036 ], [ -122.399368, 37.773564 ], [ -122.402458, 37.776007 ], [ -122.401943, 37.776414 ], [ -122.403145, 37.777363 ], [ -122.403660, 37.776956 ], [ -122.405548, 37.778449 ], [ -122.395592, 37.786318 ], [ -122.394047, 37.785232 ], [ -122.394218, 37.785097 ], [ -122.393360, 37.784961 ], [ -122.391815, 37.785504 ], [ -122.391472, 37.785639 ], [ -122.391472, 37.785097 ], [ -122.392330, 37.784283 ], [ -122.392159, 37.784147 ], [ -122.388554, 37.786996 ], [ -122.387695, 37.787132 ], [ -122.387867, 37.788760 ], [ -122.386322, 37.790252 ], [ -122.385464, 37.790523 ], [ -122.385635, 37.790930 ], [ -122.385120, 37.791337 ] ] ], [ [ [ -122.384777, 37.779941 ], [ -122.384777, 37.779670 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779941 ] ] ], [ [ [ -122.384777, 37.780348 ], [ -122.384777, 37.780077 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780348 ] ] ], [ [ [ -122.384777, 37.780755 ], [ -122.384777, 37.780484 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780755 ] ] ], [ [ [ -122.384777, 37.779534 ], [ -122.384777, 37.779263 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779534 ] ] ], [ [ [ -122.385120, 37.778856 ], [ -122.385120, 37.778585 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778856 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94116", "GEOID10": "94116", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6699058, "AWATER10": 97204, "INTPTLAT10": "+37.7453994", "INTPTLON10": "-122.4860655", "tippecanoe:count": 193 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.510433, 37.764065 ], [ -122.509918, 37.763930 ], [ -122.508202, 37.751037 ], [ -122.470951, 37.752665 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.754837 ], [ -122.470093, 37.754701 ], [ -122.470264, 37.753887 ], [ -122.469578, 37.753615 ], [ -122.469063, 37.752937 ], [ -122.468376, 37.753208 ], [ -122.467861, 37.752665 ], [ -122.463398, 37.753073 ], [ -122.461338, 37.751308 ], [ -122.460308, 37.749815 ], [ -122.458591, 37.748051 ], [ -122.458763, 37.747643 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.746829 ], [ -122.460823, 37.745336 ], [ -122.461338, 37.745607 ], [ -122.463741, 37.743707 ], [ -122.467690, 37.743435 ], [ -122.468548, 37.741535 ], [ -122.471294, 37.741399 ], [ -122.470951, 37.737598 ], [ -122.470608, 37.736648 ], [ -122.471638, 37.734747 ], [ -122.475071, 37.734747 ], [ -122.475243, 37.734612 ], [ -122.475414, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.482452, 37.737463 ], [ -122.483311, 37.737463 ], [ -122.486229, 37.736784 ], [ -122.488461, 37.737055 ], [ -122.490005, 37.738006 ], [ -122.491379, 37.737327 ], [ -122.491379, 37.734069 ], [ -122.496872, 37.733933 ], [ -122.498589, 37.734204 ], [ -122.500477, 37.735155 ], [ -122.502022, 37.735562 ], [ -122.505283, 37.735562 ], [ -122.505283, 37.735426 ], [ -122.506828, 37.735426 ], [ -122.506657, 37.736241 ], [ -122.510433, 37.764065 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94122", "GEOID10": "94122", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6124844, "AWATER10": 0, "INTPTLAT10": "+37.7587992", "INTPTLON10": "-122.4851269", "tippecanoe:count": 228 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.458763, 37.766237 ], [ -122.457733, 37.765965 ], [ -122.457561, 37.763523 ], [ -122.460823, 37.762573 ], [ -122.460651, 37.760537 ], [ -122.459965, 37.759316 ], [ -122.463226, 37.758773 ], [ -122.462540, 37.756737 ], [ -122.463570, 37.756330 ], [ -122.463741, 37.753751 ], [ -122.463398, 37.753073 ], [ -122.467861, 37.752665 ], [ -122.468376, 37.753208 ], [ -122.469063, 37.752937 ], [ -122.469578, 37.753615 ], [ -122.470264, 37.753887 ], [ -122.470093, 37.754701 ], [ -122.470951, 37.754837 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.752665 ], [ -122.508202, 37.751037 ], [ -122.509918, 37.764065 ], [ -122.461166, 37.766237 ], [ -122.458763, 37.766237 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94127", "GEOID10": "94127", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4585709, "AWATER10": 9359, "INTPTLAT10": "+37.7360266", "INTPTLON10": "-122.4572070", "tippecanoe:count": 169 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.454472, 37.751308 ], [ -122.453957, 37.750629 ], [ -122.454128, 37.749001 ], [ -122.453098, 37.749001 ], [ -122.452927, 37.751172 ], [ -122.452068, 37.751172 ], [ -122.452068, 37.748322 ], [ -122.450867, 37.746965 ], [ -122.449493, 37.746693 ], [ -122.451725, 37.745607 ], [ -122.450180, 37.743571 ], [ -122.449150, 37.742892 ], [ -122.446575, 37.742485 ], [ -122.446232, 37.742078 ], [ -122.446060, 37.741128 ], [ -122.444687, 37.740856 ], [ -122.444000, 37.740042 ], [ -122.442799, 37.739770 ], [ -122.442455, 37.739499 ], [ -122.442627, 37.738277 ], [ -122.442455, 37.737598 ], [ -122.444687, 37.737598 ], [ -122.446060, 37.735562 ], [ -122.446404, 37.735562 ], [ -122.446232, 37.735155 ], [ -122.445374, 37.734612 ], [ -122.444344, 37.734612 ], [ -122.444344, 37.730675 ], [ -122.453442, 37.730675 ], [ -122.453442, 37.731625 ], [ -122.457561, 37.731082 ], [ -122.457390, 37.730675 ], [ -122.459278, 37.730810 ], [ -122.459965, 37.729860 ], [ -122.459965, 37.728774 ], [ -122.460995, 37.728638 ], [ -122.460823, 37.727552 ], [ -122.462025, 37.727416 ], [ -122.462540, 37.727145 ], [ -122.462711, 37.725515 ], [ -122.462196, 37.725244 ], [ -122.462196, 37.723071 ], [ -122.463913, 37.722392 ], [ -122.464428, 37.721713 ], [ -122.472496, 37.721578 ], [ -122.471981, 37.728774 ], [ -122.472324, 37.728774 ], [ -122.471809, 37.734204 ], [ -122.470608, 37.736648 ], [ -122.470951, 37.737598 ], [ -122.471294, 37.741399 ], [ -122.468548, 37.741535 ], [ -122.467690, 37.743435 ], [ -122.463741, 37.743707 ], [ -122.461338, 37.745607 ], [ -122.460823, 37.745336 ], [ -122.459106, 37.746829 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.747236 ], [ -122.458763, 37.746829 ], [ -122.455845, 37.746422 ], [ -122.455502, 37.747100 ], [ -122.454643, 37.747100 ], [ -122.454643, 37.751308 ], [ -122.454472, 37.751308 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94130", "GEOID10": "94130", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2281270, "AWATER10": 0, "INTPTLAT10": "+37.8206879", "INTPTLON10": "-122.3695372", "tippecanoe:count": 43 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.373276, 37.832294 ], [ -122.368641, 37.831209 ], [ -122.362804, 37.822667 ], [ -122.363491, 37.820904 ], [ -122.360573, 37.820090 ], [ -122.360573, 37.819819 ], [ -122.363663, 37.820497 ], [ -122.364349, 37.818734 ], [ -122.364864, 37.818463 ], [ -122.365036, 37.818463 ], [ -122.371044, 37.816022 ], [ -122.370358, 37.814259 ], [ -122.369671, 37.813310 ], [ -122.368984, 37.812768 ], [ -122.367268, 37.812361 ], [ -122.366066, 37.812768 ], [ -122.364178, 37.813988 ], [ -122.362289, 37.814124 ], [ -122.361603, 37.814531 ], [ -122.359200, 37.815073 ], [ -122.359028, 37.814802 ], [ -122.358856, 37.814259 ], [ -122.359200, 37.813446 ], [ -122.361088, 37.812496 ], [ -122.361259, 37.810733 ], [ -122.360916, 37.808156 ], [ -122.361603, 37.808021 ], [ -122.362118, 37.807071 ], [ -122.362804, 37.807207 ], [ -122.367268, 37.807750 ], [ -122.368641, 37.808156 ], [ -122.371559, 37.809377 ], [ -122.372761, 37.810869 ], [ -122.372761, 37.811276 ], [ -122.372246, 37.811276 ], [ -122.371731, 37.812361 ], [ -122.371559, 37.813039 ], [ -122.371731, 37.813446 ], [ -122.371387, 37.813581 ], [ -122.371216, 37.814531 ], [ -122.371387, 37.815209 ], [ -122.379112, 37.826870 ], [ -122.377567, 37.830531 ], [ -122.373276, 37.832294 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94133", "GEOID10": "94133", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1955594, "AWATER10": 646917, "INTPTLAT10": "+37.8045315", "INTPTLON10": "-122.4108520", "tippecanoe:count": 138 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.420998, 37.812903 ], [ -122.407436, 37.812768 ], [ -122.398510, 37.807207 ], [ -122.402287, 37.805173 ], [ -122.403488, 37.805037 ], [ -122.403488, 37.805308 ], [ -122.404518, 37.806122 ], [ -122.405720, 37.806665 ], [ -122.405891, 37.806529 ], [ -122.405376, 37.805715 ], [ -122.405205, 37.804766 ], [ -122.405891, 37.804630 ], [ -122.405720, 37.803816 ], [ -122.405033, 37.803816 ], [ -122.404861, 37.802867 ], [ -122.403145, 37.803138 ], [ -122.401943, 37.796899 ], [ -122.403488, 37.796628 ], [ -122.403488, 37.796356 ], [ -122.414818, 37.795000 ], [ -122.415504, 37.798662 ], [ -122.417221, 37.798527 ], [ -122.417908, 37.802189 ], [ -122.419624, 37.802053 ], [ -122.419796, 37.802867 ], [ -122.418079, 37.803138 ], [ -122.418251, 37.803681 ], [ -122.418938, 37.806800 ], [ -122.420483, 37.806665 ], [ -122.420826, 37.807614 ], [ -122.419109, 37.807750 ], [ -122.419281, 37.808428 ], [ -122.419968, 37.808835 ], [ -122.420998, 37.812903 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94111", "GEOID10": "94111", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 891134, "AWATER10": 494314, "INTPTLAT10": "+37.7993699", "INTPTLON10": "-122.3984087", "tippecanoe:count": 63 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.398510, 37.807207 ], [ -122.393360, 37.801918 ], [ -122.388897, 37.796628 ], [ -122.391472, 37.793915 ], [ -122.392159, 37.793915 ], [ -122.392502, 37.793643 ], [ -122.394390, 37.795000 ], [ -122.396622, 37.794593 ], [ -122.396278, 37.793372 ], [ -122.399197, 37.791066 ], [ -122.399540, 37.791337 ], [ -122.400055, 37.793643 ], [ -122.401257, 37.793508 ], [ -122.401257, 37.794050 ], [ -122.404690, 37.793508 ], [ -122.405033, 37.795271 ], [ -122.403316, 37.795542 ], [ -122.404346, 37.796356 ], [ -122.403488, 37.796356 ], [ -122.403488, 37.796628 ], [ -122.401943, 37.796899 ], [ -122.403145, 37.803138 ], [ -122.404861, 37.802867 ], [ -122.405033, 37.803816 ], [ -122.405548, 37.803681 ], [ -122.405720, 37.803816 ], [ -122.405891, 37.804630 ], [ -122.405205, 37.804766 ], [ -122.405376, 37.805715 ], [ -122.405891, 37.806529 ], [ -122.405720, 37.806665 ], [ -122.404346, 37.805986 ], [ -122.403488, 37.805308 ], [ -122.403488, 37.805037 ], [ -122.402287, 37.805173 ], [ -122.398510, 37.807207 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94103", "GEOID10": "94103", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3518047, "AWATER10": 0, "INTPTLAT10": "+37.7731516", "INTPTLON10": "-122.4111634", "tippecanoe:count": 205 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.402802, 37.788081 ], [ -122.401772, 37.787267 ], [ -122.402630, 37.786725 ], [ -122.400398, 37.785097 ], [ -122.399368, 37.785911 ], [ -122.397823, 37.784690 ], [ -122.405548, 37.778449 ], [ -122.403660, 37.776956 ], [ -122.403145, 37.777363 ], [ -122.401943, 37.776414 ], [ -122.402458, 37.776007 ], [ -122.399368, 37.773564 ], [ -122.403831, 37.770036 ], [ -122.403488, 37.769765 ], [ -122.402115, 37.769901 ], [ -122.401772, 37.767458 ], [ -122.400742, 37.767458 ], [ -122.399712, 37.766644 ], [ -122.399712, 37.766237 ], [ -122.400742, 37.766237 ], [ -122.400570, 37.763658 ], [ -122.401428, 37.763523 ], [ -122.401600, 37.764880 ], [ -122.410355, 37.764337 ], [ -122.410526, 37.765558 ], [ -122.427521, 37.764608 ], [ -122.427692, 37.765694 ], [ -122.426491, 37.765830 ], [ -122.426662, 37.768951 ], [ -122.427006, 37.769222 ], [ -122.409153, 37.783197 ], [ -122.408638, 37.783469 ], [ -122.408638, 37.783604 ], [ -122.403488, 37.787810 ], [ -122.402802, 37.788081 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94110", "GEOID10": "94110", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6019827, "AWATER10": 12207, "INTPTLAT10": "+37.7500215", "INTPTLON10": "-122.4152015", "tippecanoe:count": 263 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.410526, 37.765558 ], [ -122.410355, 37.764337 ], [ -122.405033, 37.764608 ], [ -122.405205, 37.763523 ], [ -122.406235, 37.761351 ], [ -122.406578, 37.760266 ], [ -122.405891, 37.758909 ], [ -122.403488, 37.756873 ], [ -122.402973, 37.752801 ], [ -122.403831, 37.749408 ], [ -122.405033, 37.749136 ], [ -122.404003, 37.748322 ], [ -122.404861, 37.745336 ], [ -122.405205, 37.744386 ], [ -122.405376, 37.744521 ], [ -122.406235, 37.743571 ], [ -122.405891, 37.743435 ], [ -122.407436, 37.741399 ], [ -122.407951, 37.739227 ], [ -122.407780, 37.737734 ], [ -122.408295, 37.737598 ], [ -122.408295, 37.736648 ], [ -122.408810, 37.735833 ], [ -122.410011, 37.734747 ], [ -122.414474, 37.732439 ], [ -122.415161, 37.732168 ], [ -122.418938, 37.732168 ], [ -122.418938, 37.732847 ], [ -122.418251, 37.732983 ], [ -122.420139, 37.732983 ], [ -122.421856, 37.734612 ], [ -122.421856, 37.735155 ], [ -122.422199, 37.735155 ], [ -122.422886, 37.734340 ], [ -122.423916, 37.734612 ], [ -122.424946, 37.735562 ], [ -122.427349, 37.735698 ], [ -122.425117, 37.737870 ], [ -122.423916, 37.740856 ], [ -122.424603, 37.744657 ], [ -122.426147, 37.762166 ], [ -122.426319, 37.762980 ], [ -122.427177, 37.762980 ], [ -122.427177, 37.763794 ], [ -122.426319, 37.763930 ], [ -122.426319, 37.764608 ], [ -122.410526, 37.765558 ] ] ] } } +, +{ "type": "Feature", "properties": { "ZCTA5CE10": "94158", "GEOID10": "94158", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1800349, "AWATER10": 1246229, "INTPTLAT10": "+37.7698930", "INTPTLON10": "-122.3870114", "tippecanoe:count": 29 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.381687, 37.783469 ], [ -122.377911, 37.753615 ], [ -122.379971, 37.753344 ], [ -122.380142, 37.754566 ], [ -122.381516, 37.754566 ], [ -122.382889, 37.754430 ], [ -122.383404, 37.754701 ], [ -122.384090, 37.754701 ], [ -122.384090, 37.754973 ], [ -122.380829, 37.755244 ], [ -122.380829, 37.755516 ], [ -122.381172, 37.755923 ], [ -122.381344, 37.756466 ], [ -122.381344, 37.757959 ], [ -122.384777, 37.757687 ], [ -122.385464, 37.758094 ], [ -122.386322, 37.758094 ], [ -122.386665, 37.760673 ], [ -122.387524, 37.760537 ], [ -122.387867, 37.764337 ], [ -122.393703, 37.764065 ], [ -122.393875, 37.766101 ], [ -122.396622, 37.767865 ], [ -122.400742, 37.771122 ], [ -122.398510, 37.772886 ], [ -122.397823, 37.772343 ], [ -122.397480, 37.773429 ], [ -122.396107, 37.774514 ], [ -122.396450, 37.774650 ], [ -122.394218, 37.776414 ], [ -122.392502, 37.775192 ], [ -122.390270, 37.776685 ], [ -122.390442, 37.776956 ], [ -122.390442, 37.777092 ], [ -122.387695, 37.778177 ], [ -122.387695, 37.778313 ], [ -122.387352, 37.778313 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778856 ], [ -122.384777, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.387352, 37.778992 ], [ -122.387352, 37.779263 ], [ -122.387524, 37.779670 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780891 ], [ -122.384777, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.387524, 37.781027 ], [ -122.387695, 37.781434 ], [ -122.385464, 37.781569 ], [ -122.385464, 37.781705 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.387695, 37.781841 ], [ -122.387867, 37.782248 ], [ -122.384777, 37.782519 ], [ -122.384777, 37.782790 ], [ -122.381687, 37.783469 ] ], [ [ -122.384777, 37.779941 ], [ -122.387524, 37.779670 ], [ -122.384777, 37.779670 ], [ -122.384777, 37.779941 ] ], [ [ -122.384777, 37.780348 ], [ -122.387524, 37.780077 ], [ -122.384777, 37.780077 ], [ -122.384777, 37.780348 ] ], [ [ -122.385120, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.385120, 37.778585 ], [ -122.385120, 37.778856 ] ], [ [ -122.384777, 37.779534 ], [ -122.387352, 37.779263 ], [ -122.384777, 37.779263 ], [ -122.384777, 37.779534 ] ], [ [ -122.384777, 37.780755 ], [ -122.387524, 37.780484 ], [ -122.384777, 37.780484 ], [ -122.384777, 37.780755 ] ] ] } } +] } +] } diff --git a/tests/pbf/clip-poly.json b/tests/pbf/clip-poly.json new file mode 100644 index 000000000..26fa73558 --- /dev/null +++ b/tests/pbf/clip-poly.json @@ -0,0 +1 @@ +{"coordinates":[[[-122.4527379,37.8128815],[-122.4598853,37.7834743],[-122.4280914,37.7959397],[-122.4527379,37.8128815]]],"type":"Polygon"} diff --git a/tests/pbf/countries-0-0-0-clip.pbf.out.json b/tests/pbf/countries-0-0-0-clip.pbf.out.json new file mode 100644 index 000000000..499221604 --- /dev/null +++ b/tests/pbf/countries-0-0-0-clip.pbf.out.json @@ -0,0 +1,73 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.392578, 50.007739 ], [ 12.392578, 49.951220 ], [ 12.480469, 49.553726 ], [ 13.007812, 49.325122 ], [ 13.623047, 48.864715 ], [ 13.271484, 48.400032 ], [ 12.919922, 48.283193 ], [ 13.007812, 47.635784 ], [ 12.919922, 47.457809 ], [ 12.656250, 47.694974 ], [ 12.128906, 47.694974 ], [ 11.425781, 47.517201 ], [ 10.546875, 47.576526 ], [ 10.371094, 47.279229 ], [ 9.931641, 47.576526 ], [ 9.580078, 47.517201 ], [ 8.525391, 47.813155 ], [ 8.349609, 47.635784 ], [ 7.470703, 47.635784 ], [ 7.558594, 48.341646 ], [ 8.085938, 49.037868 ], [ 6.679688, 49.210420 ], [ 6.152344, 49.439557 ], [ 6.240234, 49.894634 ], [ 6.152344, 50.007739 ], [ 12.392578, 50.007739 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.800781, 50.007739 ], [ 5.712891, 49.553726 ], [ 5.009766, 49.894634 ], [ 5.009766, 50.007739 ], [ 5.800781, 50.007739 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.152344, 50.007739 ], [ 6.240234, 49.894634 ], [ 6.152344, 49.439557 ], [ 5.888672, 49.439557 ], [ 5.712891, 49.553726 ], [ 5.800781, 50.007739 ], [ 6.152344, 50.007739 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.404297, 43.004647 ], [ 9.580078, 42.163403 ], [ 9.228516, 41.376809 ], [ 8.789062, 41.574361 ], [ 8.525391, 42.228517 ], [ 8.789062, 42.617791 ], [ 9.404297, 43.004647 ] ] ], [ [ [ 5.009766, 49.894634 ], [ 5.712891, 49.553726 ], [ 5.888672, 49.439557 ], [ 6.152344, 49.439557 ], [ 6.679688, 49.210420 ], [ 8.085938, 49.037868 ], [ 7.558594, 48.341646 ], [ 7.470703, 47.635784 ], [ 7.207031, 47.457809 ], [ 6.767578, 47.517201 ], [ 6.767578, 47.279229 ], [ 6.064453, 46.739861 ], [ 6.064453, 46.255847 ], [ 6.503906, 46.437857 ], [ 6.855469, 46.012224 ], [ 6.767578, 45.706179 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.026950 ], [ 7.031250, 44.276671 ], [ 7.558594, 44.150681 ], [ 7.470703, 43.707594 ], [ 6.503906, 43.133061 ], [ 5.009766, 43.325178 ], [ 5.009766, 49.894634 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.525391, 47.813155 ], [ 9.580078, 47.517201 ], [ 9.667969, 47.338823 ], [ 9.492188, 47.100045 ], [ 9.931641, 46.920255 ], [ 10.458984, 46.920255 ], [ 10.371094, 46.498392 ], [ 9.931641, 46.316584 ], [ 9.140625, 46.437857 ], [ 8.964844, 46.012224 ], [ 8.525391, 46.012224 ], [ 8.349609, 46.134170 ], [ 7.734375, 45.828799 ], [ 7.294922, 45.767523 ], [ 6.855469, 46.012224 ], [ 6.503906, 46.437857 ], [ 6.064453, 46.255847 ], [ 6.064453, 46.739861 ], [ 6.767578, 47.279229 ], [ 6.767578, 47.517201 ], [ 7.207031, 47.457809 ], [ 7.470703, 47.635784 ], [ 8.349609, 47.635784 ], [ 8.525391, 47.813155 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.115234, 50.007739 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 22.587891, 49.095452 ], [ 21.621094, 49.496675 ], [ 20.917969, 49.325122 ], [ 20.390625, 49.439557 ], [ 19.863281, 49.210420 ], [ 19.335938, 49.553726 ], [ 18.896484, 49.439557 ], [ 18.896484, 49.496675 ], [ 18.369141, 50.007739 ], [ 23.115234, 50.007739 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.292969, 49.037868 ], [ 15.996094, 48.748945 ], [ 16.523438, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.875000, 48.458352 ], [ 16.962891, 48.107431 ], [ 16.875000, 47.694974 ], [ 16.347656, 47.694974 ], [ 16.523438, 47.517201 ], [ 16.171875, 46.860191 ], [ 15.996094, 46.679594 ], [ 15.117188, 46.679594 ], [ 14.589844, 46.437857 ], [ 13.798828, 46.498392 ], [ 12.392578, 46.739861 ], [ 12.128906, 47.100045 ], [ 11.162109, 46.920255 ], [ 11.074219, 46.739861 ], [ 10.458984, 46.920255 ], [ 9.931641, 46.920255 ], [ 9.492188, 47.100045 ], [ 9.667969, 47.338823 ], [ 9.580078, 47.517201 ], [ 9.931641, 47.576526 ], [ 10.371094, 47.279229 ], [ 10.546875, 47.576526 ], [ 11.425781, 47.517201 ], [ 12.128906, 47.694974 ], [ 12.656250, 47.694974 ], [ 12.919922, 47.457809 ], [ 13.007812, 47.635784 ], [ 12.919922, 48.283193 ], [ 13.271484, 48.400032 ], [ 13.623047, 48.864715 ], [ 14.326172, 48.574790 ], [ 14.941406, 48.980217 ], [ 15.292969, 49.037868 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 50.007739 ], [ 18.896484, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.369141, 49.325122 ], [ 18.193359, 49.267805 ], [ 18.105469, 49.037868 ], [ 17.929688, 48.980217 ], [ 17.929688, 48.922499 ], [ 17.578125, 48.806863 ], [ 17.138672, 48.806863 ], [ 16.962891, 48.574790 ], [ 16.523438, 48.806863 ], [ 15.996094, 48.748945 ], [ 15.292969, 49.037868 ], [ 14.941406, 48.980217 ], [ 14.326172, 48.574790 ], [ 13.623047, 48.864715 ], [ 13.007812, 49.325122 ], [ 12.480469, 49.553726 ], [ 12.392578, 49.951220 ], [ 12.392578, 50.007739 ], [ 18.369141, 50.007739 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 46.860191 ], [ 16.523438, 46.498392 ], [ 15.732422, 46.255847 ], [ 15.644531, 45.828799 ], [ 15.292969, 45.706179 ], [ 15.292969, 45.460131 ], [ 14.941406, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.414062, 45.460131 ], [ 13.710938, 45.521744 ], [ 13.974609, 45.583290 ], [ 13.710938, 46.012224 ], [ 13.798828, 46.498392 ], [ 14.589844, 46.437857 ], [ 15.117188, 46.679594 ], [ 15.996094, 46.679594 ], [ 16.171875, 46.860191 ], [ 16.347656, 46.860191 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.335938, 49.553726 ], [ 19.863281, 49.210420 ], [ 20.390625, 49.439557 ], [ 20.917969, 49.325122 ], [ 21.621094, 49.496675 ], [ 22.587891, 49.095452 ], [ 22.324219, 48.806863 ], [ 22.060547, 48.400032 ], [ 21.884766, 48.341646 ], [ 20.830078, 48.632909 ], [ 20.478516, 48.574790 ], [ 20.214844, 48.341646 ], [ 19.775391, 48.224673 ], [ 19.687500, 48.283193 ], [ 19.160156, 48.107431 ], [ 18.808594, 48.107431 ], [ 18.720703, 47.872144 ], [ 17.841797, 47.754098 ], [ 17.490234, 47.872144 ], [ 16.962891, 48.107431 ], [ 16.875000, 48.458352 ], [ 17.138672, 48.806863 ], [ 17.578125, 48.806863 ], [ 17.929688, 48.922499 ], [ 17.929688, 48.980217 ], [ 18.105469, 49.037868 ], [ 18.193359, 49.267805 ], [ 18.369141, 49.325122 ], [ 18.544922, 49.496675 ], [ 18.896484, 49.496675 ], [ 18.896484, 49.439557 ], [ 19.335938, 49.553726 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.523438, 46.498392 ], [ 16.875000, 46.377254 ], [ 17.666016, 45.951150 ], [ 18.457031, 45.767523 ], [ 18.808594, 45.890008 ], [ 19.072266, 45.521744 ], [ 19.423828, 45.213004 ], [ 18.984375, 44.840291 ], [ 18.544922, 45.089036 ], [ 17.841797, 45.089036 ], [ 16.962891, 45.213004 ], [ 16.523438, 45.213004 ], [ 16.347656, 45.026950 ], [ 15.996094, 45.213004 ], [ 15.732422, 44.840291 ], [ 16.259766, 44.339565 ], [ 16.435547, 44.024422 ], [ 16.875000, 43.644026 ], [ 17.314453, 43.452919 ], [ 17.666016, 43.004647 ], [ 18.544922, 42.617791 ], [ 18.457031, 42.488302 ], [ 17.490234, 42.875964 ], [ 16.962891, 43.197167 ], [ 15.996094, 43.516689 ], [ 15.205078, 44.213710 ], [ 15.380859, 44.339565 ], [ 14.941406, 44.715514 ], [ 14.941406, 45.089036 ], [ 14.238281, 45.213004 ], [ 13.974609, 44.777936 ], [ 13.623047, 45.151053 ], [ 13.710938, 45.460131 ], [ 13.710938, 45.521744 ], [ 14.414062, 45.460131 ], [ 14.589844, 45.644768 ], [ 14.941406, 45.460131 ], [ 15.292969, 45.460131 ], [ 15.292969, 45.706179 ], [ 15.644531, 45.828799 ], [ 15.732422, 46.255847 ], [ 16.523438, 46.498392 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.213004 ], [ 17.841797, 45.089036 ], [ 18.544922, 45.089036 ], [ 18.984375, 44.840291 ], [ 19.335938, 44.840291 ], [ 19.160156, 44.402392 ], [ 19.599609, 44.024422 ], [ 19.423828, 43.580391 ], [ 19.072266, 43.452919 ], [ 18.720703, 43.197167 ], [ 18.544922, 42.617791 ], [ 17.666016, 43.004647 ], [ 17.314453, 43.452919 ], [ 16.875000, 43.644026 ], [ 16.435547, 44.024422 ], [ 16.259766, 44.339565 ], [ 15.732422, 44.840291 ], [ 15.996094, 45.213004 ], [ 16.347656, 45.026950 ], [ 16.523438, 45.213004 ], [ 16.962891, 45.213004 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.248047, 43.516689 ], [ 19.511719, 43.325178 ], [ 19.599609, 43.197167 ], [ 19.951172, 43.133061 ], [ 20.302734, 42.875964 ], [ 20.214844, 42.811522 ], [ 20.039062, 42.617791 ], [ 19.775391, 42.488302 ], [ 19.775391, 42.682435 ], [ 19.335938, 42.163403 ], [ 19.335938, 41.902277 ], [ 19.160156, 41.967659 ], [ 18.896484, 42.293564 ], [ 18.457031, 42.488302 ], [ 18.544922, 42.617791 ], [ 18.720703, 43.197167 ], [ 19.072266, 43.452919 ], [ 19.248047, 43.516689 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 43.261206 ], [ 20.917969, 43.133061 ], [ 21.181641, 43.068888 ], [ 21.269531, 42.940339 ], [ 21.445312, 42.875964 ], [ 21.621094, 42.682435 ], [ 21.796875, 42.682435 ], [ 21.533203, 42.293564 ], [ 21.533203, 42.228517 ], [ 21.357422, 42.228517 ], [ 20.742188, 42.032974 ], [ 20.742188, 41.836828 ], [ 20.566406, 41.836828 ], [ 20.566406, 42.228517 ], [ 20.302734, 42.293564 ], [ 20.039062, 42.617791 ], [ 20.214844, 42.811522 ], [ 20.478516, 42.875964 ], [ 20.654297, 43.197167 ], [ 20.830078, 43.261206 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.775391, 42.682435 ], [ 19.775391, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.302734, 42.293564 ], [ 20.566406, 42.228517 ], [ 20.566406, 41.836828 ], [ 20.478516, 41.508577 ], [ 20.566406, 41.112469 ], [ 21.005859, 40.847060 ], [ 21.005859, 40.580585 ], [ 20.654297, 40.446947 ], [ 20.654297, 40.111689 ], [ 20.126953, 39.639538 ], [ 19.951172, 39.707187 ], [ 19.951172, 39.909736 ], [ 19.423828, 40.245992 ], [ 19.335938, 40.713956 ], [ 19.423828, 41.376809 ], [ 19.511719, 41.705729 ], [ 19.335938, 41.902277 ], [ 19.335938, 42.163403 ], [ 19.775391, 42.682435 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 42.875964 ], [ 19.951172, 43.133061 ], [ 19.599609, 43.197167 ], [ 19.511719, 43.325178 ], [ 19.248047, 43.516689 ], [ 19.423828, 43.580391 ], [ 19.599609, 44.024422 ], [ 19.160156, 44.402392 ], [ 19.335938, 44.840291 ], [ 18.984375, 44.840291 ], [ 19.423828, 45.213004 ], [ 19.072266, 45.521744 ], [ 18.808594, 45.890008 ], [ 19.599609, 46.195042 ], [ 20.214844, 46.134170 ], [ 20.742188, 45.706179 ], [ 20.917969, 45.398450 ], [ 21.445312, 45.151053 ], [ 21.533203, 44.777936 ], [ 22.148438, 44.465151 ], [ 22.500000, 44.715514 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.213710 ], [ 22.412109, 44.024422 ], [ 22.500000, 43.644026 ], [ 23.027344, 43.197167 ], [ 22.587891, 42.875964 ], [ 22.412109, 42.553080 ], [ 22.587891, 42.488302 ], [ 22.412109, 42.293564 ], [ 21.884766, 42.293564 ], [ 21.533203, 42.228517 ], [ 21.533203, 42.293564 ], [ 21.796875, 42.682435 ], [ 21.621094, 42.682435 ], [ 21.445312, 42.875964 ], [ 21.269531, 42.940339 ], [ 21.181641, 43.068888 ], [ 20.917969, 43.133061 ], [ 20.830078, 43.261206 ], [ 20.654297, 43.197167 ], [ 20.478516, 42.875964 ], [ 20.302734, 42.875964 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 50.007739 ], [ 25.664062, 47.931066 ], [ 25.224609, 47.872144 ], [ 24.873047, 47.754098 ], [ 24.433594, 47.989922 ], [ 23.730469, 47.989922 ], [ 23.115234, 48.107431 ], [ 22.675781, 47.872144 ], [ 22.675781, 48.166085 ], [ 22.060547, 48.400032 ], [ 22.324219, 48.806863 ], [ 22.587891, 49.095452 ], [ 22.763672, 49.037868 ], [ 22.500000, 49.496675 ], [ 23.115234, 50.007739 ], [ 25.664062, 50.007739 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.830078, 48.632909 ], [ 21.884766, 48.341646 ], [ 22.060547, 48.400032 ], [ 22.675781, 48.166085 ], [ 22.675781, 47.872144 ], [ 22.060547, 47.694974 ], [ 21.621094, 46.980252 ], [ 21.005859, 46.316584 ], [ 20.214844, 46.134170 ], [ 19.599609, 46.195042 ], [ 18.808594, 45.890008 ], [ 18.457031, 45.767523 ], [ 17.666016, 45.951150 ], [ 16.875000, 46.377254 ], [ 16.523438, 46.498392 ], [ 16.347656, 46.860191 ], [ 16.171875, 46.860191 ], [ 16.523438, 47.517201 ], [ 16.347656, 47.694974 ], [ 16.875000, 47.694974 ], [ 16.962891, 48.107431 ], [ 17.490234, 47.872144 ], [ 17.841797, 47.754098 ], [ 18.720703, 47.872144 ], [ 18.808594, 48.107431 ], [ 19.160156, 48.107431 ], [ 19.687500, 48.283193 ], [ 19.775391, 48.224673 ], [ 20.214844, 48.341646 ], [ 20.478516, 48.574790 ], [ 20.830078, 48.632909 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.730469, 35.675147 ], [ 24.257812, 35.389050 ], [ 25.048828, 35.460670 ], [ 25.664062, 35.389050 ], [ 25.664062, 34.957995 ], [ 24.697266, 34.885931 ], [ 24.697266, 35.101934 ], [ 23.554688, 35.245619 ], [ 23.730469, 35.675147 ] ] ], [ [ [ 24.521484, 41.574361 ], [ 25.224609, 41.244772 ], [ 25.664062, 41.310824 ], [ 25.664062, 40.847060 ], [ 25.488281, 40.847060 ], [ 24.960938, 40.979898 ], [ 23.730469, 40.713956 ], [ 24.433594, 40.111689 ], [ 23.906250, 39.977120 ], [ 23.378906, 39.977120 ], [ 22.851562, 40.446947 ], [ 22.587891, 40.245992 ], [ 22.851562, 39.639538 ], [ 23.378906, 39.164141 ], [ 22.939453, 38.959409 ], [ 23.554688, 38.479395 ], [ 23.994141, 38.203655 ], [ 24.082031, 37.649034 ], [ 23.115234, 37.926868 ], [ 23.378906, 37.439974 ], [ 22.763672, 37.300275 ], [ 23.115234, 36.456636 ], [ 22.500000, 36.385913 ], [ 21.708984, 36.879621 ], [ 21.269531, 37.649034 ], [ 21.093750, 38.341656 ], [ 20.214844, 39.368279 ], [ 20.126953, 39.639538 ], [ 20.654297, 40.111689 ], [ 20.654297, 40.446947 ], [ 21.005859, 40.580585 ], [ 21.005859, 40.847060 ], [ 21.708984, 40.913513 ], [ 22.060547, 41.178654 ], [ 22.587891, 41.112469 ], [ 22.763672, 41.310824 ], [ 23.730469, 41.310824 ], [ 24.521484, 41.574361 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.675781, 44.213710 ], [ 22.939453, 43.834527 ], [ 23.291016, 43.897892 ], [ 24.082031, 43.771094 ], [ 25.576172, 43.707594 ], [ 25.664062, 43.771094 ], [ 25.664062, 41.310824 ], [ 25.224609, 41.244772 ], [ 24.521484, 41.574361 ], [ 23.730469, 41.310824 ], [ 22.939453, 41.310824 ], [ 22.851562, 41.967659 ], [ 22.412109, 42.293564 ], [ 22.587891, 42.488302 ], [ 22.412109, 42.553080 ], [ 22.587891, 42.875964 ], [ 23.027344, 43.197167 ], [ 22.500000, 43.644026 ], [ 22.412109, 44.024422 ], [ 22.675781, 44.213710 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.115234, 48.107431 ], [ 23.730469, 47.989922 ], [ 24.433594, 47.989922 ], [ 24.873047, 47.754098 ], [ 25.224609, 47.872144 ], [ 25.664062, 47.931066 ], [ 25.664062, 43.771094 ], [ 25.576172, 43.707594 ], [ 24.082031, 43.771094 ], [ 23.291016, 43.897892 ], [ 22.939453, 43.834527 ], [ 22.675781, 44.213710 ], [ 22.500000, 44.402392 ], [ 22.675781, 44.590467 ], [ 22.500000, 44.715514 ], [ 22.148438, 44.465151 ], [ 21.533203, 44.777936 ], [ 21.445312, 45.151053 ], [ 20.917969, 45.398450 ], [ 20.742188, 45.706179 ], [ 20.214844, 46.134170 ], [ 21.005859, 46.316584 ], [ 21.621094, 46.980252 ], [ 22.060547, 47.694974 ], [ 22.675781, 47.872144 ], [ 23.115234, 48.107431 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 37.370157 ], [ 10.195312, 37.230328 ], [ 10.195312, 36.738884 ], [ 10.986328, 37.090240 ], [ 11.074219, 36.879621 ], [ 10.634766, 36.385913 ], [ 10.634766, 35.960223 ], [ 10.898438, 35.675147 ], [ 10.810547, 34.813803 ], [ 10.107422, 34.307144 ], [ 10.371094, 33.797409 ], [ 10.898438, 33.797409 ], [ 11.074219, 33.284620 ], [ 11.513672, 33.137551 ], [ 11.425781, 32.398516 ], [ 10.986328, 32.101190 ], [ 10.634766, 31.728167 ], [ 9.931641, 31.353637 ], [ 10.019531, 30.977609 ], [ 9.931641, 30.524413 ], [ 9.492188, 30.297018 ], [ 9.052734, 32.101190 ], [ 8.437500, 32.472695 ], [ 8.437500, 32.768800 ], [ 7.646484, 33.358062 ], [ 7.558594, 34.089061 ], [ 8.173828, 34.669359 ], [ 8.349609, 35.460670 ], [ 8.261719, 36.456636 ], [ 8.437500, 36.949892 ], [ 9.492188, 37.370157 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.294922, 37.090240 ], [ 7.734375, 36.879621 ], [ 8.437500, 36.949892 ], [ 8.261719, 36.456636 ], [ 8.349609, 35.460670 ], [ 8.173828, 34.669359 ], [ 7.558594, 34.089061 ], [ 7.646484, 33.358062 ], [ 8.437500, 32.768800 ], [ 8.437500, 32.472695 ], [ 9.052734, 32.101190 ], [ 9.492188, 30.297018 ], [ 9.843750, 29.458731 ], [ 9.843750, 28.921631 ], [ 9.667969, 28.149503 ], [ 9.755859, 27.683528 ], [ 9.667969, 27.137368 ], [ 9.755859, 26.509905 ], [ 9.316406, 26.115986 ], [ 9.931641, 25.403585 ], [ 9.931641, 24.926295 ], [ 10.283203, 24.367114 ], [ 10.810547, 24.527135 ], [ 11.601562, 24.126702 ], [ 12.041016, 23.483401 ], [ 8.613281, 21.534847 ], [ 5.712891, 19.642588 ], [ 5.009766, 19.394068 ], [ 5.009766, 36.809285 ], [ 5.361328, 36.738884 ], [ 6.240234, 37.090240 ], [ 7.294922, 37.090240 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.556641, 38.203655 ], [ 15.117188, 37.439974 ], [ 15.292969, 37.160317 ], [ 15.117188, 36.597889 ], [ 14.326172, 37.020098 ], [ 13.798828, 37.090240 ], [ 12.392578, 37.579413 ], [ 12.568359, 38.134557 ], [ 13.710938, 38.065392 ], [ 14.765625, 38.134557 ], [ 15.556641, 38.203655 ] ] ], [ [ [ 12.128906, 47.100045 ], [ 12.392578, 46.739861 ], [ 13.798828, 46.498392 ], [ 13.710938, 46.012224 ], [ 13.974609, 45.583290 ], [ 13.183594, 45.706179 ], [ 12.304688, 45.398450 ], [ 12.392578, 44.902578 ], [ 12.304688, 44.590467 ], [ 12.568359, 44.087585 ], [ 13.535156, 43.580391 ], [ 14.062500, 42.747012 ], [ 15.117188, 41.967659 ], [ 15.908203, 41.967659 ], [ 16.171875, 41.771312 ], [ 15.908203, 41.508577 ], [ 16.787109, 41.178654 ], [ 17.490234, 40.847060 ], [ 18.369141, 40.380028 ], [ 18.457031, 40.178873 ], [ 18.281250, 39.842286 ], [ 17.753906, 40.245992 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.774769 ], [ 17.138672, 39.436193 ], [ 17.050781, 38.891033 ], [ 16.611328, 38.822591 ], [ 16.083984, 37.996163 ], [ 15.644531, 37.926868 ], [ 15.644531, 38.203655 ], [ 15.908203, 38.754083 ], [ 16.083984, 38.959409 ], [ 15.732422, 39.571822 ], [ 15.380859, 40.044438 ], [ 15.029297, 40.178873 ], [ 14.677734, 40.580585 ], [ 14.062500, 40.780541 ], [ 13.623047, 41.178654 ], [ 12.919922, 41.244772 ], [ 12.128906, 41.705729 ], [ 11.162109, 42.358544 ], [ 10.546875, 42.940339 ], [ 10.195312, 43.897892 ], [ 9.667969, 44.024422 ], [ 8.876953, 44.339565 ], [ 8.437500, 44.213710 ], [ 7.822266, 43.771094 ], [ 7.470703, 43.707594 ], [ 7.558594, 44.150681 ], [ 7.031250, 44.276671 ], [ 6.767578, 45.026950 ], [ 7.119141, 45.336702 ], [ 6.767578, 45.706179 ], [ 6.855469, 46.012224 ], [ 7.294922, 45.767523 ], [ 7.734375, 45.828799 ], [ 8.349609, 46.134170 ], [ 8.525391, 46.012224 ], [ 8.964844, 46.012224 ], [ 9.140625, 46.437857 ], [ 9.931641, 46.316584 ], [ 10.371094, 46.498392 ], [ 10.458984, 46.920255 ], [ 11.074219, 46.739861 ], [ 11.162109, 46.920255 ], [ 12.128906, 47.100045 ] ] ], [ [ [ 9.228516, 41.178654 ], [ 9.843750, 40.513799 ], [ 9.667969, 39.164141 ], [ 9.228516, 39.232253 ], [ 8.789062, 38.891033 ], [ 8.437500, 39.164141 ], [ 8.349609, 40.380028 ], [ 8.173828, 40.979898 ], [ 8.701172, 40.913513 ], [ 9.228516, 41.178654 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.412109, 42.293564 ], [ 22.851562, 41.967659 ], [ 22.939453, 41.310824 ], [ 22.763672, 41.310824 ], [ 22.587891, 41.112469 ], [ 22.060547, 41.178654 ], [ 21.708984, 40.913513 ], [ 21.005859, 40.847060 ], [ 20.566406, 41.112469 ], [ 20.478516, 41.508577 ], [ 20.566406, 41.836828 ], [ 20.742188, 41.836828 ], [ 20.742188, 42.032974 ], [ 21.357422, 42.228517 ], [ 21.533203, 42.228517 ], [ 21.884766, 42.293564 ], [ 22.412109, 42.293564 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.513672, 33.137551 ], [ 12.656250, 32.768800 ], [ 13.095703, 32.842674 ], [ 13.886719, 32.694866 ], [ 15.205078, 32.249974 ], [ 15.732422, 31.353637 ], [ 16.611328, 31.203405 ], [ 18.017578, 30.751278 ], [ 19.072266, 30.297018 ], [ 19.599609, 30.524413 ], [ 20.039062, 30.977609 ], [ 19.863281, 31.728167 ], [ 20.126953, 32.249974 ], [ 20.830078, 32.694866 ], [ 21.533203, 32.842674 ], [ 22.939453, 32.620870 ], [ 23.203125, 32.175612 ], [ 23.642578, 32.175612 ], [ 23.906250, 32.026706 ], [ 24.960938, 31.877558 ], [ 25.136719, 31.578535 ], [ 24.785156, 31.052934 ], [ 24.960938, 30.675715 ], [ 24.697266, 30.069094 ], [ 24.960938, 29.228890 ], [ 24.960938, 19.973349 ], [ 23.818359, 19.973349 ], [ 23.818359, 19.559790 ], [ 19.863281, 21.534847 ], [ 15.820312, 23.402765 ], [ 14.853516, 22.836946 ], [ 14.150391, 22.512557 ], [ 13.623047, 23.079732 ], [ 12.041016, 23.483401 ], [ 11.601562, 24.126702 ], [ 10.810547, 24.527135 ], [ 10.283203, 24.367114 ], [ 9.931641, 24.926295 ], [ 9.931641, 25.403585 ], [ 9.316406, 26.115986 ], [ 9.755859, 26.509905 ], [ 9.667969, 27.137368 ], [ 9.755859, 27.683528 ], [ 9.667969, 28.149503 ], [ 9.843750, 28.921631 ], [ 9.843750, 29.458731 ], [ 9.492188, 30.297018 ], [ 9.931641, 30.524413 ], [ 10.019531, 30.977609 ], [ 9.931641, 31.353637 ], [ 10.634766, 31.728167 ], [ 10.986328, 32.101190 ], [ 11.425781, 32.398516 ], [ 11.513672, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.041016, 23.483401 ], [ 13.623047, 23.079732 ], [ 14.150391, 22.512557 ], [ 14.853516, 22.836946 ], [ 15.117188, 21.289374 ], [ 15.468750, 21.043491 ], [ 15.468750, 20.715015 ], [ 15.908203, 20.385825 ], [ 15.644531, 19.973349 ], [ 15.292969, 17.895114 ], [ 15.205078, 16.636192 ], [ 13.974609, 15.707663 ], [ 13.535156, 14.349548 ], [ 13.974609, 14.008696 ], [ 13.974609, 13.325485 ], [ 14.589844, 13.325485 ], [ 14.501953, 12.897489 ], [ 14.238281, 12.811801 ], [ 14.150391, 12.468760 ], [ 13.974609, 12.468760 ], [ 13.359375, 13.581921 ], [ 13.095703, 13.581921 ], [ 12.304688, 13.068777 ], [ 11.513672, 13.325485 ], [ 10.986328, 13.410994 ], [ 10.722656, 13.239945 ], [ 10.107422, 13.239945 ], [ 9.492188, 12.811801 ], [ 9.052734, 12.811801 ], [ 7.822266, 13.325485 ], [ 7.294922, 13.068777 ], [ 6.855469, 13.154376 ], [ 6.416016, 13.496473 ], [ 5.449219, 13.838080 ], [ 5.009766, 13.838080 ], [ 5.009766, 19.394068 ], [ 5.712891, 19.642588 ], [ 8.613281, 21.534847 ], [ 12.041016, 23.483401 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.449219, 13.838080 ], [ 6.416016, 13.496473 ], [ 6.855469, 13.154376 ], [ 7.294922, 13.068777 ], [ 7.822266, 13.325485 ], [ 9.052734, 12.811801 ], [ 9.492188, 12.811801 ], [ 10.107422, 13.239945 ], [ 10.722656, 13.239945 ], [ 10.986328, 13.410994 ], [ 11.513672, 13.325485 ], [ 12.304688, 13.068777 ], [ 13.095703, 13.581921 ], [ 13.359375, 13.581921 ], [ 13.974609, 12.468760 ], [ 14.150391, 12.468760 ], [ 14.589844, 12.125264 ], [ 14.414062, 11.609193 ], [ 13.535156, 10.833306 ], [ 13.271484, 10.141932 ], [ 13.183594, 9.622414 ], [ 12.919922, 9.449062 ], [ 12.744141, 8.754795 ], [ 12.216797, 8.320212 ], [ 12.041016, 7.798079 ], [ 11.865234, 7.362467 ], [ 11.777344, 7.013668 ], [ 11.074219, 6.664608 ], [ 10.458984, 7.013668 ], [ 10.107422, 7.013668 ], [ 9.492188, 6.489983 ], [ 9.228516, 6.402648 ], [ 8.789062, 5.441022 ], [ 8.613281, 5.003394 ], [ 5.273438, 5.003394 ], [ 5.009766, 5.615986 ], [ 5.009766, 13.838080 ], [ 5.449219, 13.838080 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.897489 ], [ 14.853516, 12.211180 ], [ 14.941406, 11.523088 ], [ 14.941406, 10.919618 ], [ 15.468750, 9.968851 ], [ 14.941406, 9.968851 ], [ 14.589844, 9.882275 ], [ 14.150391, 10.055403 ], [ 13.974609, 9.535749 ], [ 14.501953, 8.928487 ], [ 14.941406, 8.754795 ], [ 15.468750, 7.710992 ], [ 15.292969, 7.449624 ], [ 14.765625, 6.402648 ], [ 14.501953, 6.227934 ], [ 14.501953, 5.441022 ], [ 14.589844, 5.003394 ], [ 8.613281, 5.003394 ], [ 8.789062, 5.441022 ], [ 9.228516, 6.402648 ], [ 9.492188, 6.489983 ], [ 10.107422, 7.013668 ], [ 10.458984, 7.013668 ], [ 11.074219, 6.664608 ], [ 11.777344, 7.013668 ], [ 11.865234, 7.362467 ], [ 12.041016, 7.798079 ], [ 12.216797, 8.320212 ], [ 12.744141, 8.754795 ], [ 12.919922, 9.449062 ], [ 13.183594, 9.622414 ], [ 13.271484, 10.141932 ], [ 13.535156, 10.833306 ], [ 14.414062, 11.609193 ], [ 14.589844, 12.125264 ], [ 14.150391, 12.468760 ], [ 14.238281, 12.811801 ], [ 14.501953, 12.897489 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 22.939453, 10.746969 ], [ 23.554688, 10.055403 ], [ 23.554688, 9.709057 ], [ 23.378906, 9.275622 ], [ 23.466797, 8.928487 ], [ 23.818359, 8.667918 ], [ 24.609375, 8.233237 ], [ 25.136719, 7.798079 ], [ 25.136719, 7.536764 ], [ 25.664062, 7.013668 ], [ 25.664062, 5.266008 ], [ 25.312500, 5.178482 ], [ 25.136719, 5.003394 ], [ 24.609375, 5.003394 ], [ 24.433594, 5.090944 ], [ 24.169922, 5.003394 ], [ 14.589844, 5.003394 ], [ 14.501953, 5.441022 ], [ 14.501953, 6.227934 ], [ 14.765625, 6.402648 ], [ 15.292969, 7.449624 ], [ 16.083984, 7.536764 ], [ 16.259766, 7.710992 ], [ 16.435547, 7.710992 ], [ 16.699219, 7.536764 ], [ 17.929688, 7.885147 ], [ 18.369141, 8.320212 ], [ 18.896484, 8.667918 ], [ 18.808594, 9.015302 ], [ 19.072266, 9.102097 ], [ 20.039062, 9.015302 ], [ 21.005859, 9.449062 ], [ 21.708984, 10.574222 ], [ 22.236328, 11.005904 ], [ 22.851562, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 31.578535 ], [ 25.664062, 22.024546 ], [ 24.960938, 22.024546 ], [ 24.960938, 29.228890 ], [ 24.697266, 30.069094 ], [ 24.960938, 30.675715 ], [ 24.785156, 31.052934 ], [ 25.136719, 31.578535 ], [ 25.664062, 31.578535 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.402765 ], [ 19.863281, 21.534847 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.707663 ], [ 22.587891, 14.944785 ], [ 22.324219, 14.349548 ], [ 22.500000, 14.093957 ], [ 22.148438, 13.752725 ], [ 22.324219, 13.410994 ], [ 22.060547, 12.983148 ], [ 21.972656, 12.554564 ], [ 22.324219, 12.640338 ], [ 22.500000, 12.297068 ], [ 22.500000, 11.695273 ], [ 22.851562, 11.350797 ], [ 22.851562, 11.178402 ], [ 22.236328, 11.005904 ], [ 21.708984, 10.574222 ], [ 21.005859, 9.449062 ], [ 20.039062, 9.015302 ], [ 19.072266, 9.102097 ], [ 18.808594, 9.015302 ], [ 18.896484, 8.667918 ], [ 18.369141, 8.320212 ], [ 17.929688, 7.885147 ], [ 16.699219, 7.536764 ], [ 16.435547, 7.710992 ], [ 16.259766, 7.710992 ], [ 16.083984, 7.536764 ], [ 15.292969, 7.449624 ], [ 15.468750, 7.710992 ], [ 14.941406, 8.754795 ], [ 14.501953, 8.928487 ], [ 13.974609, 9.535749 ], [ 14.150391, 10.055403 ], [ 14.589844, 9.882275 ], [ 14.941406, 9.968851 ], [ 15.468750, 9.968851 ], [ 14.941406, 10.919618 ], [ 14.941406, 11.523088 ], [ 14.853516, 12.211180 ], [ 14.501953, 12.897489 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.325485 ], [ 13.974609, 14.008696 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.292969, 17.895114 ], [ 15.644531, 19.973349 ], [ 15.908203, 20.385825 ], [ 15.468750, 20.715015 ], [ 15.468750, 21.043491 ], [ 15.117188, 21.289374 ], [ 14.853516, 22.836946 ], [ 15.820312, 23.402765 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 22.024546 ], [ 25.664062, 10.401378 ], [ 25.048828, 10.314919 ], [ 24.785156, 9.795678 ], [ 24.521484, 8.928487 ], [ 24.169922, 8.754795 ], [ 23.906250, 8.581021 ], [ 23.818359, 8.667918 ], [ 23.466797, 8.928487 ], [ 23.378906, 9.275622 ], [ 23.554688, 9.709057 ], [ 23.554688, 10.055403 ], [ 22.939453, 10.746969 ], [ 22.851562, 11.178402 ], [ 22.851562, 11.350797 ], [ 22.500000, 11.695273 ], [ 22.500000, 12.297068 ], [ 22.324219, 12.640338 ], [ 21.972656, 12.554564 ], [ 22.060547, 12.983148 ], [ 22.324219, 13.410994 ], [ 22.148438, 13.752725 ], [ 22.500000, 14.093957 ], [ 22.324219, 14.349548 ], [ 22.587891, 14.944785 ], [ 23.027344, 15.707663 ], [ 23.906250, 15.623037 ], [ 23.818359, 19.559790 ], [ 23.818359, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 22.024546 ], [ 25.664062, 22.024546 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.664062, 10.401378 ], [ 25.664062, 7.013668 ], [ 25.136719, 7.536764 ], [ 25.136719, 7.798079 ], [ 24.609375, 8.233237 ], [ 23.906250, 8.581021 ], [ 24.169922, 8.754795 ], [ 24.521484, 8.928487 ], [ 24.785156, 9.795678 ], [ 25.048828, 10.314919 ], [ 25.664062, 10.401378 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.433594, 5.090944 ], [ 24.609375, 5.003394 ], [ 24.169922, 5.003394 ], [ 24.433594, 5.090944 ] ] ], [ [ [ 25.136719, 5.003394 ], [ 25.312500, 5.178482 ], [ 25.664062, 5.266008 ], [ 25.664062, 5.003394 ], [ 25.136719, 5.003394 ] ] ] ] } } +] } +] } diff --git a/tests/pbf/countries-0-0-0.pbf b/tests/pbf/countries-0-0-0.pbf new file mode 100644 index 000000000..adcae54b7 Binary files /dev/null and b/tests/pbf/countries-0-0-0.pbf differ diff --git a/tests/pbf/countries-0-0-0.pbf.out.json b/tests/pbf/countries-0-0-0.pbf.out.json new file mode 100644 index 000000000..816d353e6 --- /dev/null +++ b/tests/pbf/countries-0-0-0.pbf.out.json @@ -0,0 +1,249 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -94.833984, 49.382373 ], [ -94.306641, 48.690960 ], [ -91.669922, 48.166085 ], [ -88.417969, 48.283193 ], [ -84.111328, 46.498392 ], [ -82.529297, 45.336702 ], [ -82.177734, 43.580391 ], [ -83.144531, 42.098222 ], [ -82.705078, 41.705729 ], [ -78.925781, 42.875964 ], [ -78.750000, 43.644026 ], [ -76.816406, 43.644026 ], [ -74.882812, 45.026950 ], [ -71.542969, 45.026950 ], [ -69.257812, 47.457809 ], [ -67.763672, 47.040182 ], [ -67.763672, 45.706179 ], [ -66.972656, 44.840291 ], [ -70.136719, 43.707594 ], [ -70.839844, 42.358544 ], [ -69.960938, 41.640078 ], [ -73.740234, 40.913513 ], [ -71.982422, 40.913513 ], [ -73.916016, 40.780541 ], [ -74.882812, 38.959409 ], [ -75.498047, 39.504041 ], [ -75.058594, 38.410558 ], [ -75.937500, 37.230328 ], [ -76.376953, 39.164141 ], [ -76.289062, 38.065392 ], [ -76.992188, 38.272689 ], [ -76.289062, 37.926868 ], [ -75.761719, 35.532226 ], [ -81.298828, 31.428663 ], [ -80.068359, 26.902477 ], [ -80.419922, 25.244696 ], [ -81.738281, 25.878994 ], [ -83.671875, 29.916852 ], [ -85.078125, 29.611670 ], [ -86.396484, 30.372875 ], [ -89.560547, 30.145127 ], [ -89.384766, 29.152161 ], [ -93.251953, 29.764377 ], [ -94.658203, 29.458731 ], [ -97.119141, 27.839076 ], [ -97.558594, 25.878994 ], [ -99.052734, 26.352498 ], [ -100.986328, 29.382175 ], [ -102.480469, 29.764377 ], [ -103.095703, 28.998532 ], [ -103.974609, 29.305561 ], [ -106.523438, 31.728167 ], [ -111.005859, 31.353637 ], [ -114.697266, 32.694866 ], [ -117.158203, 32.546813 ], [ -118.476562, 34.016242 ], [ -120.585938, 34.597042 ], [ -124.365234, 40.313043 ], [ -123.925781, 45.521744 ], [ -124.716797, 48.166085 ], [ -123.134766, 48.048710 ], [ -122.607422, 47.100045 ], [ -122.871094, 48.980217 ], [ -95.185547, 48.980217 ], [ -94.833984, 49.382373 ] ] ], [ [ [ -156.621094, 71.357067 ], [ -155.039062, 71.159391 ], [ -154.335938, 70.699951 ], [ -153.896484, 70.902268 ], [ -152.226562, 70.815812 ], [ -152.226562, 70.612614 ], [ -150.732422, 70.436799 ], [ -149.677734, 70.524897 ], [ -144.931641, 69.990535 ], [ -143.613281, 70.140364 ], [ -140.976562, 69.718107 ], [ -140.976562, 60.326948 ], [ -139.042969, 60.020952 ], [ -137.460938, 58.904646 ], [ -135.439453, 59.800634 ], [ -131.748047, 56.559482 ], [ -129.990234, 55.924586 ], [ -130.517578, 54.826008 ], [ -131.923828, 55.478853 ], [ -134.121094, 58.124320 ], [ -136.669922, 58.217025 ], [ -139.833984, 59.534318 ], [ -142.558594, 60.064840 ], [ -143.964844, 60.020952 ], [ -147.128906, 60.887700 ], [ -148.183594, 60.673179 ], [ -148.007812, 59.977005 ], [ -151.699219, 59.175928 ], [ -151.435547, 60.716198 ], [ -150.380859, 61.015725 ], [ -150.644531, 61.270233 ], [ -153.984375, 59.355596 ], [ -153.281250, 58.859224 ], [ -154.248047, 58.124320 ], [ -158.466797, 55.973798 ], [ -164.794922, 54.418930 ], [ -158.642578, 56.992883 ], [ -157.763672, 57.562995 ], [ -157.060547, 58.904646 ], [ -159.082031, 58.401712 ], [ -160.312500, 59.085739 ], [ -161.982422, 58.676938 ], [ -161.894531, 59.623325 ], [ -162.509766, 59.977005 ], [ -163.828125, 59.800634 ], [ -165.322266, 60.500525 ], [ -166.113281, 61.480760 ], [ -165.761719, 62.062733 ], [ -164.531250, 63.154355 ], [ -163.037109, 63.074866 ], [ -160.751953, 63.782486 ], [ -161.542969, 64.396938 ], [ -160.751953, 64.774125 ], [ -162.773438, 64.320872 ], [ -164.970703, 64.434892 ], [ -166.464844, 64.699105 ], [ -168.134766, 65.658275 ], [ -164.443359, 66.583217 ], [ -163.652344, 66.583217 ], [ -163.828125, 66.089364 ], [ -161.718750, 66.124962 ], [ -165.410156, 68.040461 ], [ -166.728516, 68.366801 ], [ -166.201172, 68.879358 ], [ -164.443359, 68.911005 ], [ -161.894531, 70.318738 ], [ -159.082031, 70.902268 ], [ -158.115234, 70.815812 ], [ -156.621094, 71.357067 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -95.185547, 71.910888 ], [ -92.900391, 71.328950 ], [ -91.494141, 70.199994 ], [ -92.373047, 69.687618 ], [ -90.527344, 69.503765 ], [ -90.527344, 68.463800 ], [ -89.208984, 69.256149 ], [ -87.978516, 68.624544 ], [ -88.330078, 67.875541 ], [ -87.363281, 67.204032 ], [ -85.605469, 68.784144 ], [ -85.517578, 69.869892 ], [ -82.617188, 69.657086 ], [ -81.298828, 69.162558 ], [ -82.001953, 68.138852 ], [ -81.386719, 67.101656 ], [ -83.320312, 66.407955 ], [ -83.671875, 66.372755 ], [ -83.671875, 64.811557 ], [ -87.363281, 64.811557 ], [ -87.363281, 64.774125 ], [ -88.505859, 64.091408 ], [ -89.912109, 64.014496 ], [ -90.791016, 62.955223 ], [ -91.933594, 62.835089 ], [ -93.164062, 62.021528 ], [ -94.218750, 60.887700 ], [ -94.658203, 58.950008 ], [ -93.251953, 58.768200 ], [ -92.285156, 57.088515 ], [ -90.878906, 57.279043 ], [ -84.990234, 55.279115 ], [ -82.265625, 55.128649 ], [ -82.089844, 53.278353 ], [ -79.892578, 51.234407 ], [ -78.574219, 52.536273 ], [ -79.804688, 54.673831 ], [ -78.222656, 55.128649 ], [ -76.552734, 56.511018 ], [ -77.343750, 58.031372 ], [ -78.486328, 58.813742 ], [ -77.343750, 59.844815 ], [ -78.134766, 62.308794 ], [ -77.431641, 62.552857 ], [ -74.707031, 62.186014 ], [ -73.828125, 62.431074 ], [ -71.367188, 61.143235 ], [ -69.609375, 61.058285 ], [ -69.257812, 58.950008 ], [ -67.675781, 58.217025 ], [ -66.181641, 58.768200 ], [ -64.599609, 60.326948 ], [ -61.435547, 56.944974 ], [ -61.787109, 56.316537 ], [ -57.304688, 54.622978 ], [ -56.953125, 53.800651 ], [ -55.722656, 53.278353 ], [ -55.722656, 52.160455 ], [ -60.029297, 50.233152 ], [ -66.357422, 50.233152 ], [ -71.103516, 46.800059 ], [ -66.533203, 49.152970 ], [ -65.039062, 49.210420 ], [ -64.160156, 48.748945 ], [ -65.126953, 48.048710 ], [ -64.511719, 46.255847 ], [ -63.193359, 45.767523 ], [ -61.523438, 45.890008 ], [ -60.556641, 46.980252 ], [ -59.765625, 45.890008 ], [ -66.093750, 43.644026 ], [ -66.181641, 44.465151 ], [ -64.423828, 45.274886 ], [ -67.148438, 45.151053 ], [ -67.763672, 45.706179 ], [ -67.763672, 47.040182 ], [ -69.257812, 47.457809 ], [ -71.542969, 45.026950 ], [ -74.882812, 45.026950 ], [ -76.816406, 43.644026 ], [ -78.750000, 43.644026 ], [ -78.925781, 42.875964 ], [ -82.705078, 41.705729 ], [ -83.144531, 42.098222 ], [ -82.177734, 43.580391 ], [ -82.529297, 45.336702 ], [ -88.417969, 48.283193 ], [ -91.669922, 48.166085 ], [ -94.306641, 48.690960 ], [ -94.833984, 49.382373 ], [ -95.185547, 48.980217 ], [ -122.958984, 48.980217 ], [ -127.441406, 50.847573 ], [ -127.880859, 52.321911 ], [ -129.111328, 52.749594 ], [ -129.287109, 53.540307 ], [ -130.517578, 54.265224 ], [ -129.990234, 55.924586 ], [ -131.748047, 56.559482 ], [ -135.439453, 59.800634 ], [ -137.460938, 58.904646 ], [ -139.042969, 60.020952 ], [ -140.976562, 60.326948 ], [ -140.976562, 69.718107 ], [ -136.494141, 68.911005 ], [ -134.384766, 69.626510 ], [ -132.890625, 69.503765 ], [ -129.814453, 70.199994 ], [ -129.111328, 69.778952 ], [ -128.144531, 70.495574 ], [ -125.771484, 69.472969 ], [ -124.453125, 70.170201 ], [ -124.277344, 69.411242 ], [ -122.695312, 69.869892 ], [ -121.464844, 69.809309 ], [ -117.597656, 69.005675 ], [ -115.224609, 68.911005 ], [ -113.906250, 68.399180 ], [ -115.312500, 67.908619 ], [ -113.466797, 67.676085 ], [ -109.951172, 67.974634 ], [ -108.896484, 67.373698 ], [ -107.753906, 67.875541 ], [ -108.808594, 68.301905 ], [ -108.193359, 68.656555 ], [ -106.171875, 68.784144 ], [ -104.326172, 68.007571 ], [ -103.183594, 68.106102 ], [ -101.425781, 67.642676 ], [ -98.437500, 67.776025 ], [ -98.525391, 68.399180 ], [ -97.646484, 68.592487 ], [ -96.152344, 68.236823 ], [ -96.152344, 67.305976 ], [ -95.449219, 68.106102 ], [ -94.658203, 68.073305 ], [ -94.218750, 69.068563 ], [ -96.503906, 70.080562 ], [ -96.416016, 71.187754 ], [ -95.185547, 71.910888 ] ] ], [ [ [ -104.414062, 74.211983 ], [ -104.414062, 72.971189 ], [ -106.259766, 72.971189 ], [ -105.380859, 72.659588 ], [ -104.501953, 70.988349 ], [ -100.986328, 70.020587 ], [ -101.074219, 69.595890 ], [ -102.744141, 69.503765 ], [ -102.128906, 69.131271 ], [ -102.392578, 68.752315 ], [ -105.996094, 69.193800 ], [ -113.291016, 68.528235 ], [ -113.818359, 69.005675 ], [ -115.224609, 69.287257 ], [ -116.103516, 69.162558 ], [ -117.333984, 69.960439 ], [ -112.412109, 70.377854 ], [ -114.345703, 70.612614 ], [ -117.861328, 70.554179 ], [ -118.388672, 70.902268 ], [ -116.103516, 71.300793 ], [ -119.443359, 71.552741 ], [ -117.861328, 72.711903 ], [ -115.224609, 73.302624 ], [ -114.169922, 73.124945 ], [ -114.697266, 72.659588 ], [ -112.412109, 72.945431 ], [ -111.093750, 72.448792 ], [ -109.951172, 72.971189 ], [ -108.193359, 71.663663 ], [ -107.666016, 72.073911 ], [ -108.281250, 72.971189 ], [ -108.808594, 72.971189 ], [ -108.808594, 74.211983 ], [ -104.414062, 74.211983 ] ] ], [ [ [ -72.861328, 83.236426 ], [ -63.720703, 82.896987 ], [ -61.875000, 82.631333 ], [ -61.875000, 82.367483 ], [ -67.675781, 81.505299 ], [ -65.478516, 81.505299 ], [ -69.433594, 80.618424 ], [ -71.191406, 79.796745 ], [ -73.212891, 79.639874 ], [ -73.916016, 79.432371 ], [ -76.904297, 79.318942 ], [ -75.498047, 79.204309 ], [ -76.201172, 79.021712 ], [ -75.410156, 78.525573 ], [ -79.716797, 77.215640 ], [ -79.628906, 76.980149 ], [ -77.871094, 77.019692 ], [ -77.871094, 76.780655 ], [ -80.595703, 76.184995 ], [ -83.144531, 76.455203 ], [ -86.132812, 76.289542 ], [ -89.472656, 76.475773 ], [ -89.648438, 76.960334 ], [ -87.802734, 77.176684 ], [ -88.242188, 77.897255 ], [ -87.626953, 77.970745 ], [ -84.990234, 77.542096 ], [ -86.308594, 78.188586 ], [ -87.978516, 78.367146 ], [ -87.187500, 78.750659 ], [ -85.341797, 79.004962 ], [ -85.078125, 79.351472 ], [ -86.484375, 79.734281 ], [ -86.923828, 80.253391 ], [ -83.408203, 80.103470 ], [ -81.826172, 80.459509 ], [ -84.111328, 80.575346 ], [ -87.626953, 80.517603 ], [ -89.384766, 80.858875 ], [ -91.406250, 81.557074 ], [ -91.582031, 81.898451 ], [ -87.011719, 82.285331 ], [ -85.517578, 82.653843 ], [ -84.287109, 82.597439 ], [ -83.144531, 82.320646 ], [ -82.441406, 82.864308 ], [ -79.277344, 83.132123 ], [ -76.289062, 83.174035 ], [ -75.761719, 83.068774 ], [ -72.861328, 83.236426 ] ] ], [ [ [ -55.898438, 51.618017 ], [ -55.371094, 51.563412 ], [ -56.777344, 49.837982 ], [ -56.162109, 50.176898 ], [ -55.458984, 49.951220 ], [ -55.810547, 49.610710 ], [ -53.437500, 49.267805 ], [ -53.789062, 48.516604 ], [ -53.085938, 48.690960 ], [ -52.646484, 47.517201 ], [ -53.085938, 46.679594 ], [ -54.140625, 46.800059 ], [ -54.228516, 47.754098 ], [ -55.371094, 46.860191 ], [ -55.986328, 46.920255 ], [ -55.283203, 47.398349 ], [ -56.250000, 47.635784 ], [ -59.238281, 47.576526 ], [ -58.798828, 48.224673 ], [ -59.238281, 48.516604 ], [ -55.898438, 51.618017 ] ] ], [ [ [ -85.869141, 73.800318 ], [ -86.572266, 73.150440 ], [ -85.781250, 72.528130 ], [ -84.814453, 73.327858 ], [ -82.353516, 73.751205 ], [ -80.595703, 72.711903 ], [ -80.771484, 72.073911 ], [ -78.750000, 72.342464 ], [ -77.783203, 72.738003 ], [ -74.267578, 71.773941 ], [ -74.091797, 71.328950 ], [ -72.246094, 71.552741 ], [ -71.191406, 70.931004 ], [ -68.818359, 70.524897 ], [ -67.939453, 70.110485 ], [ -66.972656, 69.193800 ], [ -68.818359, 68.720441 ], [ -64.863281, 67.842416 ], [ -63.457031, 66.930060 ], [ -61.875000, 66.861082 ], [ -62.138672, 66.160511 ], [ -63.896484, 64.997939 ], [ -66.708984, 66.372755 ], [ -68.027344, 66.266856 ], [ -68.115234, 65.694476 ], [ -65.302734, 64.396938 ], [ -64.687500, 63.391522 ], [ -65.039062, 62.674143 ], [ -68.818359, 63.743631 ], [ -66.181641, 61.938950 ], [ -71.015625, 62.915233 ], [ -72.246094, 63.391522 ], [ -71.894531, 63.665760 ], [ -74.794922, 64.661517 ], [ -74.794922, 64.396938 ], [ -77.695312, 64.244595 ], [ -78.574219, 64.586185 ], [ -77.871094, 65.293468 ], [ -73.916016, 65.440002 ], [ -74.267578, 65.802776 ], [ -72.685547, 67.272043 ], [ -72.949219, 67.742759 ], [ -74.882812, 68.560384 ], [ -76.904297, 68.879358 ], [ -76.201172, 69.162558 ], [ -78.925781, 70.170201 ], [ -79.453125, 69.869892 ], [ -81.298828, 69.748551 ], [ -88.681641, 70.407348 ], [ -89.472656, 70.757966 ], [ -88.505859, 71.216075 ], [ -89.912109, 71.216075 ], [ -90.175781, 72.235514 ], [ -88.417969, 73.528399 ], [ -85.869141, 73.800318 ] ] ], [ [ [ -96.767578, 77.157163 ], [ -94.658203, 77.098423 ], [ -93.603516, 76.780655 ], [ -91.582031, 76.780655 ], [ -90.703125, 76.455203 ], [ -90.966797, 76.079668 ], [ -89.208984, 75.606801 ], [ -86.396484, 75.475131 ], [ -84.814453, 75.693931 ], [ -81.123047, 75.715633 ], [ -79.804688, 74.913708 ], [ -81.914062, 74.449358 ], [ -83.232422, 74.566736 ], [ -88.154297, 74.402163 ], [ -91.933594, 74.798906 ], [ -91.933594, 73.995328 ], [ -92.460938, 73.995328 ], [ -90.527344, 73.849286 ], [ -94.306641, 72.019729 ], [ -95.449219, 72.073911 ], [ -96.064453, 72.945431 ], [ -95.537109, 73.873717 ], [ -95.097656, 73.995328 ], [ -96.328125, 73.995328 ], [ -96.328125, 75.163300 ], [ -92.548828, 75.163300 ], [ -92.900391, 75.888091 ], [ -93.867188, 76.310358 ], [ -95.976562, 76.434604 ], [ -97.119141, 76.760541 ], [ -96.767578, 77.157163 ] ] ], [ [ [ -92.373047, 81.255032 ], [ -91.142578, 80.718183 ], [ -87.802734, 80.312728 ], [ -87.011719, 79.655668 ], [ -85.781250, 79.335219 ], [ -89.033203, 78.296044 ], [ -90.791016, 78.206563 ], [ -92.900391, 78.349411 ], [ -93.955078, 78.750659 ], [ -93.164062, 79.383905 ], [ -95.009766, 79.367701 ], [ -96.064453, 79.702907 ], [ -96.679688, 80.163710 ], [ -95.361328, 80.900669 ], [ -94.306641, 80.983688 ], [ -94.746094, 81.201420 ], [ -92.373047, 81.255032 ] ] ], [ [ [ -121.552734, 74.449358 ], [ -117.597656, 74.188052 ], [ -115.488281, 73.478485 ], [ -119.179688, 72.528130 ], [ -120.498047, 71.828840 ], [ -120.498047, 71.385142 ], [ -123.134766, 70.902268 ], [ -123.662109, 71.328950 ], [ -125.947266, 71.856229 ], [ -123.925781, 73.677264 ], [ -124.892578, 74.283563 ], [ -121.552734, 74.449358 ] ] ], [ [ [ -130.957031, 55.429013 ], [ -130.957031, 52.855864 ], [ -135.351562, 52.855864 ], [ -135.351562, 55.429013 ], [ -130.957031, 55.429013 ] ] ], [ [ [ -109.599609, 76.800739 ], [ -108.544922, 76.679785 ], [ -107.841797, 75.845169 ], [ -106.962891, 76.016094 ], [ -105.908203, 75.973553 ], [ -106.347656, 75.004940 ], [ -109.687500, 74.844929 ], [ -112.236328, 74.425777 ], [ -113.730469, 74.402163 ], [ -113.906250, 74.729615 ], [ -111.796875, 75.163300 ], [ -116.279297, 75.050354 ], [ -117.685547, 75.230667 ], [ -115.400391, 76.475773 ], [ -112.587891, 76.142958 ], [ -110.830078, 75.541113 ], [ -109.072266, 75.475131 ], [ -110.478516, 76.434604 ], [ -109.599609, 76.800739 ] ] ], [ [ [ -105.468750, 79.302640 ], [ -100.810547, 78.801980 ], [ -100.810547, 79.286313 ], [ -96.416016, 79.286313 ], [ -96.416016, 78.437823 ], [ -100.371094, 78.437823 ], [ -99.667969, 77.915669 ], [ -102.919922, 78.349411 ], [ -105.205078, 78.384855 ], [ -104.238281, 78.681870 ], [ -105.380859, 78.920832 ], [ -105.468750, 79.302640 ] ] ], [ [ [ -100.371094, 73.849286 ], [ -99.140625, 73.627789 ], [ -97.382812, 73.751205 ], [ -97.119141, 73.478485 ], [ -98.085938, 72.996909 ], [ -96.503906, 72.554498 ], [ -96.679688, 71.663663 ], [ -98.349609, 71.272595 ], [ -99.316406, 71.357067 ], [ -102.480469, 72.501722 ], [ -102.480469, 72.842021 ], [ -100.458984, 72.711903 ], [ -101.513672, 73.353055 ], [ -100.371094, 73.849286 ] ] ], [ [ [ -116.191406, 77.636542 ], [ -116.367188, 76.880775 ], [ -117.070312, 76.537296 ], [ -121.464844, 75.909504 ], [ -122.871094, 76.121893 ], [ -119.091797, 77.504119 ], [ -116.191406, 77.636542 ] ] ], [ [ [ -98.525391, 76.720223 ], [ -97.734375, 76.247817 ], [ -98.173828, 75.004940 ], [ -99.843750, 74.890816 ], [ -100.898438, 75.050354 ], [ -100.898438, 75.650431 ], [ -102.480469, 75.563041 ], [ -102.568359, 76.331142 ], [ -101.513672, 76.310358 ], [ -100.019531, 76.639226 ], [ -98.613281, 76.598545 ], [ -98.525391, 76.720223 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -114.697266, 32.694866 ], [ -111.005859, 31.353637 ], [ -106.523438, 31.728167 ], [ -103.974609, 29.305561 ], [ -103.095703, 28.998532 ], [ -101.689453, 29.764377 ], [ -99.052734, 26.352498 ], [ -97.119141, 25.878994 ], [ -97.910156, 22.431340 ], [ -95.888672, 18.812718 ], [ -94.394531, 18.145852 ], [ -91.406250, 18.895893 ], [ -90.263672, 20.961440 ], [ -87.011719, 21.534847 ], [ -87.802734, 18.229351 ], [ -90.966797, 17.811456 ], [ -91.494141, 17.224758 ], [ -90.439453, 16.045813 ], [ -91.757812, 16.045813 ], [ -92.197266, 14.519780 ], [ -93.867188, 15.961329 ], [ -96.591797, 15.623037 ], [ -103.535156, 18.312811 ], [ -105.468750, 19.973349 ], [ -105.292969, 21.453069 ], [ -105.996094, 22.755921 ], [ -112.236328, 28.921631 ], [ -113.115234, 31.203405 ], [ -114.785156, 31.802893 ], [ -114.697266, 30.145127 ], [ -109.423828, 23.160563 ], [ -110.039062, 22.836946 ], [ -112.148438, 24.766785 ], [ -112.324219, 26.037042 ], [ -115.048828, 27.761330 ], [ -114.169922, 28.536275 ], [ -115.488281, 29.535230 ], [ -117.158203, 32.546813 ], [ -114.697266, 32.694866 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -35.068359, 83.647837 ], [ -27.070312, 83.520162 ], [ -20.830078, 82.732092 ], [ -22.675781, 82.344100 ], [ -31.904297, 82.202302 ], [ -31.376953, 82.021378 ], [ -27.861328, 82.130427 ], [ -24.873047, 81.786210 ], [ -22.939453, 82.094243 ], [ -22.060547, 81.735830 ], [ -23.203125, 81.147481 ], [ -20.654297, 81.518272 ], [ -15.732422, 81.910828 ], [ -12.744141, 81.723188 ], [ -12.216797, 81.295029 ], [ -16.875000, 80.356995 ], [ -20.039062, 80.178713 ], [ -17.753906, 80.133635 ], [ -19.687500, 78.750659 ], [ -19.687500, 77.636542 ], [ -18.457031, 76.980149 ], [ -20.039062, 76.940488 ], [ -21.708984, 76.618901 ], [ -19.863281, 76.100796 ], [ -19.599609, 75.253057 ], [ -20.654297, 75.163300 ], [ -19.335938, 74.307353 ], [ -21.621094, 74.211983 ], [ -20.390625, 73.824820 ], [ -20.742188, 73.453473 ], [ -23.554688, 73.302624 ], [ -22.324219, 72.633374 ], [ -22.324219, 72.181804 ], [ -24.257812, 72.607120 ], [ -24.785156, 72.342464 ], [ -22.148438, 71.469124 ], [ -21.796875, 70.670881 ], [ -23.554688, 70.466207 ], [ -25.576172, 71.441171 ], [ -25.224609, 70.757966 ], [ -26.367188, 70.229744 ], [ -22.324219, 70.140364 ], [ -27.773438, 68.463800 ], [ -31.816406, 68.106102 ], [ -34.189453, 66.687784 ], [ -36.386719, 65.982270 ], [ -39.814453, 65.476508 ], [ -41.220703, 63.470145 ], [ -42.802734, 62.674143 ], [ -42.451172, 61.897578 ], [ -43.417969, 60.108670 ], [ -44.824219, 60.020952 ], [ -46.230469, 60.844911 ], [ -48.251953, 60.844911 ], [ -49.218750, 61.396719 ], [ -53.701172, 66.089364 ], [ -53.261719, 66.826520 ], [ -53.964844, 67.204032 ], [ -52.998047, 68.366801 ], [ -51.503906, 68.720441 ], [ -50.888672, 69.930300 ], [ -53.437500, 69.287257 ], [ -54.667969, 69.595890 ], [ -54.316406, 70.815812 ], [ -51.416016, 70.583418 ], [ -53.964844, 71.552741 ], [ -55.019531, 71.413177 ], [ -55.810547, 71.663663 ], [ -54.755859, 72.580829 ], [ -57.304688, 74.706450 ], [ -58.623047, 75.095633 ], [ -58.623047, 75.519151 ], [ -61.259766, 76.100796 ], [ -68.466797, 76.058508 ], [ -71.367188, 76.999935 ], [ -68.818359, 77.331809 ], [ -66.796875, 77.370301 ], [ -71.015625, 77.636542 ], [ -73.300781, 78.043795 ], [ -73.125000, 78.437823 ], [ -65.742188, 79.400085 ], [ -65.302734, 79.765560 ], [ -68.027344, 80.118564 ], [ -67.148438, 80.517603 ], [ -63.720703, 81.214853 ], [ -62.226562, 81.321593 ], [ -62.666016, 81.773644 ], [ -60.292969, 82.033568 ], [ -57.216797, 82.190368 ], [ -54.140625, 82.202302 ], [ -53.085938, 81.886056 ], [ -50.361328, 82.437205 ], [ -44.560547, 81.659685 ], [ -46.933594, 82.202302 ], [ -46.757812, 82.631333 ], [ -43.417969, 83.226067 ], [ -39.902344, 83.184473 ], [ -38.583984, 83.549851 ], [ -35.068359, 83.647837 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.585938, 28.998532 ], [ -75.585938, 25.085599 ], [ -79.980469, 25.085599 ], [ -79.980469, 28.998532 ], [ -75.585938, 28.998532 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -80.947266, 17.140790 ], [ -80.947266, 12.897489 ], [ -85.341797, 12.897489 ], [ -85.341797, 17.140790 ], [ -80.947266, 17.140790 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -82.792969, 23.885838 ], [ -82.792969, 19.808054 ], [ -87.187500, 19.808054 ], [ -87.187500, 23.885838 ], [ -82.792969, 23.885838 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -69.960938, 12.125264 ], [ -68.203125, 10.574222 ], [ -64.863281, 10.055403 ], [ -64.335938, 10.660608 ], [ -61.875000, 10.746969 ], [ -62.753906, 10.401378 ], [ -59.765625, 8.407168 ], [ -61.435547, 5.965754 ], [ -60.644531, 4.915833 ], [ -63.105469, 3.776559 ], [ -64.775391, 4.039618 ], [ -64.248047, 2.460181 ], [ -63.369141, 2.196727 ], [ -66.357422, 0.703107 ], [ -67.851562, 2.811371 ], [ -67.324219, 6.053161 ], [ -71.982422, 7.013668 ], [ -73.300781, 9.188870 ], [ -72.949219, 10.487812 ], [ -71.982422, 11.264612 ], [ -72.070312, 9.882275 ], [ -71.279297, 9.102097 ], [ -71.367188, 11.005904 ], [ -70.136719, 11.350797 ], [ -69.960938, 12.125264 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.316406, 4.127285 ], [ -54.316406, -0.263671 ], [ -58.710938, -0.263671 ], [ -58.710938, 4.127285 ], [ -54.316406, 4.127285 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -54.316406, 4.127285 ], [ -54.316406, -0.263671 ], [ -58.710938, -0.263671 ], [ -58.710938, 4.127285 ], [ -54.316406, 4.127285 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -60.732422, 5.178482 ], [ -59.941406, 5.003394 ], [ -59.501953, 3.951941 ], [ -59.941406, 2.723583 ], [ -59.062500, 1.318243 ], [ -55.986328, 1.845384 ], [ -55.986328, 2.547988 ], [ -52.910156, 2.108899 ], [ -51.328125, 4.214943 ], [ -50.009766, 1.757537 ], [ -50.361328, -0.087891 ], [ -48.603516, -0.263671 ], [ -48.603516, -1.230374 ], [ -47.812500, -0.615223 ], [ -44.912109, -1.581830 ], [ -44.560547, -2.723583 ], [ -39.990234, -2.899153 ], [ -37.265625, -4.828260 ], [ -35.595703, -5.178482 ], [ -34.716797, -7.362467 ], [ -35.156250, -9.015302 ], [ -38.671875, -13.068777 ], [ -39.287109, -17.895114 ], [ -40.957031, -21.943046 ], [ -42.011719, -22.998852 ], [ -44.648438, -23.322080 ], [ -47.636719, -24.846565 ], [ -48.515625, -25.878994 ], [ -48.867188, -28.690588 ], [ -53.349609, -33.797409 ], [ -53.789062, -32.026706 ], [ -57.656250, -30.221102 ], [ -53.613281, -26.902477 ], [ -53.613281, -26.115986 ], [ -54.667969, -25.720735 ], [ -54.316406, -24.046464 ], [ -55.371094, -23.966176 ], [ -55.810547, -22.350076 ], [ -57.919922, -22.105999 ], [ -58.183594, -20.138470 ], [ -57.480469, -18.145852 ], [ -58.271484, -16.299051 ], [ -60.117188, -16.299051 ], [ -60.468750, -13.752725 ], [ -65.390625, -11.609193 ], [ -65.302734, -9.795678 ], [ -68.291016, -11.005904 ], [ -70.576172, -11.005904 ], [ -70.488281, -9.449062 ], [ -72.158203, -10.055403 ], [ -73.212891, -9.449062 ], [ -74.003906, -7.536764 ], [ -72.861328, -5.266008 ], [ -69.873047, -4.302591 ], [ -69.433594, -1.142502 ], [ -70.048828, 0.527336 ], [ -69.257812, 0.966751 ], [ -69.785156, 1.757537 ], [ -67.500000, 2.021065 ], [ -67.060547, 1.142502 ], [ -65.566406, 0.790990 ], [ -63.369141, 2.196727 ], [ -64.248047, 2.460181 ], [ -64.775391, 4.039618 ], [ -63.105469, 3.776559 ], [ -60.996094, 4.565474 ], [ -60.732422, 5.178482 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.171875, 66.513260 ], [ -14.501953, 66.443107 ], [ -14.765625, 65.802776 ], [ -13.623047, 65.109148 ], [ -14.941406, 64.358931 ], [ -18.632812, 63.509375 ], [ -22.763672, 63.975961 ], [ -21.796875, 64.396938 ], [ -23.994141, 64.886265 ], [ -22.148438, 65.072130 ], [ -22.236328, 65.366837 ], [ -24.345703, 65.622023 ], [ -23.642578, 66.266856 ], [ -22.148438, 66.407955 ], [ -20.566406, 65.730626 ], [ -19.072266, 66.266856 ], [ -17.841797, 65.982270 ], [ -16.171875, 66.513260 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.361328, 56.365250 ], [ -5.361328, 53.852527 ], [ -9.755859, 53.852527 ], [ -9.755859, 56.365250 ], [ -5.361328, 56.365250 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.988281, 58.631217 ], [ -4.042969, 57.562995 ], [ -1.933594, 57.704147 ], [ -3.076172, 55.973798 ], [ -2.109375, 55.924586 ], [ 0.439453, 52.908902 ], [ 1.669922, 52.749594 ], [ 1.054688, 51.781436 ], [ 1.406250, 51.289406 ], [ 0.527344, 50.792047 ], [ -2.988281, 50.680797 ], [ -5.273438, 49.951220 ], [ -5.800781, 50.176898 ], [ -3.427734, 51.399206 ], [ -5.009766, 51.618017 ], [ -5.273438, 51.998410 ], [ -4.218750, 52.321911 ], [ -4.570312, 53.488046 ], [ -3.076172, 53.383328 ], [ -2.988281, 54.007769 ], [ -3.603516, 54.622978 ], [ -4.833984, 54.775346 ], [ -5.009766, 55.776573 ], [ -5.625000, 55.329144 ], [ -6.152344, 56.800878 ], [ -5.009766, 58.631217 ], [ -2.988281, 58.631217 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 43.771094 ], [ -1.933594, 43.452919 ], [ 0.351562, 42.553080 ], [ 2.988281, 42.488302 ], [ 2.109375, 41.244772 ], [ 0.791016, 41.046217 ], [ -0.263672, 39.300299 ], [ 0.087891, 38.754083 ], [ -2.109375, 36.668419 ], [ -4.394531, 36.668419 ], [ -5.361328, 35.960223 ], [ -7.470703, 37.090240 ], [ -7.031250, 38.065392 ], [ -7.470703, 39.639538 ], [ -6.416016, 41.376809 ], [ -8.261719, 42.293564 ], [ -9.052734, 41.902277 ], [ -9.404297, 43.004647 ], [ -7.998047, 43.771094 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.503906, 29.611670 ], [ -6.503906, 25.720735 ], [ -10.898438, 25.720735 ], [ -10.898438, 29.611670 ], [ -6.503906, 29.611670 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.888672, 35.746512 ], [ -2.197266, 35.173808 ], [ -1.318359, 32.249974 ], [ -3.691406, 31.653381 ], [ -3.691406, 30.902225 ], [ -5.273438, 29.993002 ], [ -8.701172, 28.844674 ], [ -8.789062, 27.137368 ], [ -11.425781, 26.902477 ], [ -14.765625, 21.534847 ], [ -17.050781, 21.453069 ], [ -14.414062, 26.273714 ], [ -9.580078, 29.916852 ], [ -9.316406, 32.546813 ], [ -6.943359, 34.089061 ], [ -5.888672, 35.746512 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.921875, 25.005973 ], [ 3.164062, 19.725342 ], [ 3.164062, 19.062118 ], [ 4.306641, 19.145168 ], [ 4.306641, 16.888660 ], [ 3.603516, 15.538376 ], [ -1.054688, 14.944785 ], [ -4.042969, 13.496473 ], [ -5.361328, 10.401378 ], [ -7.998047, 10.228437 ], [ -9.140625, 12.297068 ], [ -11.425781, 12.039321 ], [ -12.128906, 14.604847 ], [ -11.689453, 15.368950 ], [ -5.537109, 15.538376 ], [ -6.416016, 24.926295 ], [ -4.921875, 25.005973 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -15.468750, 16.804541 ], [ -15.468750, 12.554564 ], [ -19.863281, 12.554564 ], [ -19.863281, 16.804541 ], [ -15.468750, 16.804541 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.701172, 27.371767 ], [ -4.921875, 25.005973 ], [ -6.416016, 24.926295 ], [ -5.537109, 15.538376 ], [ -11.689453, 15.368950 ], [ -12.128906, 14.604847 ], [ -14.589844, 16.636192 ], [ -16.435547, 16.130262 ], [ -16.259766, 20.055931 ], [ -17.050781, 20.961440 ], [ -12.919922, 21.289374 ], [ -12.832031, 23.322080 ], [ -11.953125, 23.402765 ], [ -11.953125, 25.958045 ], [ -8.701172, 25.878994 ], [ -8.701172, 27.371767 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -13.710938, 12.554564 ], [ -10.195312, 11.867351 ], [ -9.140625, 12.297068 ], [ -7.822266, 8.581021 ], [ -9.228516, 7.275292 ], [ -9.755859, 8.581021 ], [ -10.546875, 8.320212 ], [ -11.074219, 10.055403 ], [ -13.271484, 8.928487 ], [ -15.117188, 11.005904 ], [ -13.710938, 11.781325 ], [ -13.710938, 12.554564 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.351562, 14.944785 ], [ 1.054688, 12.811801 ], [ 2.197266, 12.640338 ], [ 0.878906, 11.005904 ], [ -2.900391, 10.919618 ], [ -2.812500, 9.622414 ], [ -4.306641, 9.622414 ], [ -5.361328, 10.401378 ], [ -4.306641, 13.239945 ], [ -1.054688, 14.944785 ], [ 0.351562, 14.944785 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.998047, 10.574222 ], [ -7.998047, 6.227934 ], [ -12.392578, 6.227934 ], [ -12.392578, 10.574222 ], [ -7.998047, 10.574222 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.240234, 10.487812 ], [ -2.812500, 9.622414 ], [ -2.812500, 5.003394 ], [ -7.734375, 4.390229 ], [ -7.558594, 5.703448 ], [ -8.613281, 6.489983 ], [ -7.822266, 8.581021 ], [ -8.261719, 10.141932 ], [ -6.240234, 10.487812 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -78.837891, 1.406109 ], [ -75.410156, -0.175781 ], [ -75.585938, -1.581830 ], [ -77.871094, -2.986927 ], [ -78.662109, -4.565474 ], [ -79.189453, -4.915833 ], [ -80.419922, -4.390229 ], [ -79.804688, -2.635789 ], [ -80.947266, -2.284551 ], [ -80.947266, -1.054628 ], [ -80.068359, 0.790990 ], [ -78.837891, 1.406109 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -71.718750, 12.468760 ], [ -71.103516, 12.125264 ], [ -72.949219, 10.487812 ], [ -73.300781, 9.188870 ], [ -72.421875, 8.407168 ], [ -72.421875, 7.449624 ], [ -70.136719, 6.926427 ], [ -69.345703, 6.140555 ], [ -67.324219, 6.053161 ], [ -67.851562, 2.811371 ], [ -66.884766, 1.230374 ], [ -67.500000, 2.021065 ], [ -69.785156, 1.757537 ], [ -69.257812, 0.966751 ], [ -70.048828, 0.527336 ], [ -69.433594, -1.142502 ], [ -69.873047, -4.302591 ], [ -70.664062, -3.776559 ], [ -70.048828, -2.723583 ], [ -73.037109, -2.284551 ], [ -75.146484, -0.087891 ], [ -77.431641, 0.439449 ], [ -79.013672, 1.669686 ], [ -77.167969, 3.864255 ], [ -77.871094, 7.188101 ], [ -77.431641, 8.494105 ], [ -75.673828, 9.449062 ], [ -74.882812, 11.092166 ], [ -73.388672, 11.264612 ], [ -71.718750, 12.468760 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -75.146484, -0.087891 ], [ -73.037109, -2.284551 ], [ -70.048828, -2.723583 ], [ -70.664062, -3.776559 ], [ -69.873047, -4.302591 ], [ -72.861328, -5.266008 ], [ -74.003906, -7.536764 ], [ -73.212891, -9.449062 ], [ -72.158203, -10.055403 ], [ -70.488281, -9.449062 ], [ -70.576172, -11.005904 ], [ -69.521484, -10.919618 ], [ -68.642578, -12.554564 ], [ -69.345703, -14.944785 ], [ -68.994141, -16.467695 ], [ -70.400391, -18.312811 ], [ -76.025391, -14.689881 ], [ -79.716797, -7.188101 ], [ -81.210938, -6.140555 ], [ -81.123047, -4.039618 ], [ -80.332031, -3.425692 ], [ -80.419922, -4.390229 ], [ -79.189453, -4.915833 ], [ -77.871094, -2.986927 ], [ -75.585938, -1.581830 ], [ -75.146484, -0.087891 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -65.302734, -9.795678 ], [ -65.390625, -11.609193 ], [ -60.468750, -13.752725 ], [ -60.117188, -16.299051 ], [ -58.271484, -16.299051 ], [ -57.480469, -18.145852 ], [ -57.832031, -19.973349 ], [ -59.150391, -19.394068 ], [ -61.787109, -19.642588 ], [ -62.666016, -22.268764 ], [ -63.984375, -22.024546 ], [ -64.335938, -22.836946 ], [ -66.269531, -21.861499 ], [ -67.851562, -22.836946 ], [ -68.730469, -20.385825 ], [ -68.466797, -19.394068 ], [ -69.609375, -17.560247 ], [ -68.642578, -12.554564 ], [ -69.521484, -10.919618 ], [ -65.302734, -9.795678 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -57.656250, -30.221102 ], [ -53.789062, -32.026706 ], [ -53.173828, -32.694866 ], [ -53.789062, -34.379713 ], [ -56.250000, -34.885931 ], [ -58.447266, -33.943360 ], [ -57.656250, -30.221102 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -66.269531, -21.861499 ], [ -64.335938, -22.836946 ], [ -63.984375, -22.024546 ], [ -62.841797, -22.024546 ], [ -60.820312, -23.885838 ], [ -57.744141, -25.165173 ], [ -58.623047, -27.137368 ], [ -55.722656, -27.371767 ], [ -54.140625, -25.562265 ], [ -53.613281, -26.902477 ], [ -57.656250, -30.221102 ], [ -58.535156, -34.452218 ], [ -56.777344, -36.385913 ], [ -57.744141, -38.203655 ], [ -62.314453, -38.822591 ], [ -62.138672, -40.647304 ], [ -65.126953, -41.046217 ], [ -64.951172, -42.032974 ], [ -63.720703, -42.032974 ], [ -63.457031, -42.553080 ], [ -65.214844, -43.516689 ], [ -65.566406, -45.026950 ], [ -67.324219, -45.521744 ], [ -67.587891, -46.316584 ], [ -65.654297, -47.219568 ], [ -66.005859, -48.107431 ], [ -69.169922, -50.736455 ], [ -68.115234, -52.375599 ], [ -71.894531, -51.998410 ], [ -72.333984, -50.680797 ], [ -73.300781, -50.401515 ], [ -73.388672, -49.325122 ], [ -72.333984, -48.224673 ], [ -71.191406, -44.777936 ], [ -72.158203, -42.228517 ], [ -71.455078, -38.891033 ], [ -70.839844, -38.548165 ], [ -71.103516, -36.668419 ], [ -69.785156, -34.161818 ], [ -70.576172, -31.353637 ], [ -70.048828, -29.382175 ], [ -68.291016, -26.902477 ], [ -68.378906, -24.527135 ], [ -67.324219, -24.046464 ], [ -66.269531, -21.861499 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -59.150391, -19.394068 ], [ -58.183594, -19.890723 ], [ -57.919922, -22.105999 ], [ -55.810547, -22.350076 ], [ -55.371094, -23.966176 ], [ -54.316406, -24.046464 ], [ -54.755859, -26.588527 ], [ -55.722656, -27.371767 ], [ -58.623047, -27.137368 ], [ -57.744141, -25.165173 ], [ -60.820312, -23.885838 ], [ -62.666016, -22.268764 ], [ -61.787109, -19.642588 ], [ -59.150391, -19.394068 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -65.126953, -54.007769 ], [ -65.126953, -56.511018 ], [ -69.521484, -56.511018 ], [ -69.521484, -54.007769 ], [ -65.126953, -54.007769 ] ] ], [ [ [ -69.609375, -17.560247 ], [ -68.466797, -19.394068 ], [ -68.730469, -20.385825 ], [ -67.851562, -22.836946 ], [ -66.972656, -22.998852 ], [ -67.324219, -24.046464 ], [ -68.378906, -24.527135 ], [ -68.291016, -26.902477 ], [ -69.697266, -28.459033 ], [ -70.576172, -31.353637 ], [ -69.785156, -34.161818 ], [ -71.103516, -36.668419 ], [ -70.839844, -38.548165 ], [ -71.455078, -38.891033 ], [ -72.158203, -42.228517 ], [ -71.191406, -44.777936 ], [ -72.333984, -48.224673 ], [ -73.388672, -49.325122 ], [ -73.300781, -50.401515 ], [ -72.333984, -50.680797 ], [ -71.894531, -51.998410 ], [ -68.554688, -52.321911 ], [ -70.839844, -52.908902 ], [ -71.455078, -53.852527 ], [ -74.970703, -52.268157 ], [ -75.585938, -48.690960 ], [ -74.091797, -46.920255 ], [ -75.673828, -46.619261 ], [ -74.707031, -45.767523 ], [ -74.355469, -44.087585 ], [ -73.212891, -44.465151 ], [ -72.685547, -42.358544 ], [ -73.388672, -42.098222 ], [ -73.740234, -43.389082 ], [ -74.355469, -43.197167 ], [ -73.212891, -39.232253 ], [ -73.564453, -37.160317 ], [ -71.455078, -32.398516 ], [ -71.455078, -28.844674 ], [ -70.048828, -21.371244 ], [ -70.400391, -18.312811 ], [ -69.609375, -17.560247 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.125000, 71.187754 ], [ 31.289062, 70.466207 ], [ 29.970703, 70.199994 ], [ 31.113281, 69.565226 ], [ 29.443359, 69.162558 ], [ 28.564453, 69.068563 ], [ 29.003906, 69.778952 ], [ 27.773438, 70.170201 ], [ 26.191406, 69.839622 ], [ 24.697266, 68.656555 ], [ 22.324219, 68.847665 ], [ 21.269531, 69.380313 ], [ 20.039062, 69.068563 ], [ 19.863281, 68.399180 ], [ 18.017578, 68.560384 ], [ 17.753906, 68.007571 ], [ 16.787109, 68.007571 ], [ 13.535156, 64.774125 ], [ 13.535156, 64.052978 ], [ 12.568359, 64.052978 ], [ 11.953125, 63.114638 ], [ 11.953125, 61.814664 ], [ 12.656250, 61.312452 ], [ 12.304688, 60.108670 ], [ 10.986328, 58.859224 ], [ 10.371094, 59.489726 ], [ 8.349609, 58.309489 ], [ 7.031250, 58.077876 ], [ 5.625000, 58.585436 ], [ 5.009766, 61.980267 ], [ 10.546875, 64.472794 ], [ 14.765625, 67.809245 ], [ 19.160156, 69.809309 ], [ 21.357422, 70.259452 ], [ 23.027344, 70.199994 ], [ 24.521484, 71.016960 ], [ 28.125000, 71.187754 ] ] ], [ [ [ 16.962891, 80.058050 ], [ 21.533203, 78.954560 ], [ 18.984375, 78.560488 ], [ 17.138672, 76.800739 ], [ 15.908203, 76.760541 ], [ 13.798828, 77.389504 ], [ 14.677734, 77.730282 ], [ 13.183594, 78.025574 ], [ 11.250000, 78.870048 ], [ 10.458984, 79.655668 ], [ 13.183594, 80.012423 ], [ 13.710938, 79.655668 ], [ 15.117188, 79.671438 ], [ 15.556641, 80.012423 ], [ 16.962891, 80.058050 ] ] ], [ [ [ 22.939453, 80.661308 ], [ 27.421875, 80.058050 ], [ 25.927734, 79.512662 ], [ 23.027344, 79.400085 ], [ 20.039062, 79.560546 ], [ 19.863281, 79.843346 ], [ 18.457031, 79.858833 ], [ 17.402344, 80.312728 ], [ 20.478516, 80.604086 ], [ 21.884766, 80.356995 ], [ 22.939453, 80.661308 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.773438, 70.170201 ], [ 29.003906, 69.778952 ], [ 28.476562, 68.366801 ], [ 29.970703, 67.709445 ], [ 29.091797, 66.930060 ], [ 30.234375, 65.802776 ], [ 29.531250, 64.960766 ], [ 30.410156, 64.206377 ], [ 30.058594, 63.548552 ], [ 31.552734, 62.875188 ], [ 28.037109, 60.500525 ], [ 22.851562, 59.844815 ], [ 21.357422, 60.716198 ], [ 21.093750, 62.593341 ], [ 22.412109, 63.821288 ], [ 25.400391, 65.109148 ], [ 23.554688, 66.407955 ], [ 23.554688, 67.941650 ], [ 20.654297, 69.099940 ], [ 21.269531, 69.380313 ], [ 22.324219, 68.847665 ], [ 24.697266, 68.656555 ], [ 26.191406, 69.839622 ], [ 27.773438, 70.170201 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.654297, 69.099940 ], [ 23.554688, 67.941650 ], [ 23.906250, 66.018018 ], [ 22.148438, 65.730626 ], [ 21.181641, 65.035060 ], [ 21.357422, 64.396938 ], [ 17.841797, 62.754726 ], [ 17.138672, 61.354614 ], [ 18.808594, 60.064840 ], [ 17.841797, 58.950008 ], [ 16.787109, 58.722599 ], [ 15.908203, 56.121060 ], [ 14.677734, 56.218923 ], [ 14.062500, 55.429013 ], [ 12.919922, 55.379110 ], [ 10.986328, 58.859224 ], [ 12.656250, 61.312452 ], [ 11.953125, 61.814664 ], [ 11.953125, 63.114638 ], [ 12.568359, 64.052978 ], [ 13.535156, 64.052978 ], [ 13.535156, 64.774125 ], [ 16.787109, 68.007571 ], [ 17.753906, 68.007571 ], [ 18.017578, 68.560384 ], [ 19.863281, 68.399180 ], [ 20.039062, 69.068563 ], [ 20.654297, 69.099940 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.537109, 52.696361 ], [ 5.537109, 49.951220 ], [ 1.142578, 49.951220 ], [ 1.142578, 52.696361 ], [ 5.537109, 52.696361 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.931641, 54.977614 ], [ 10.898438, 54.007769 ], [ 12.480469, 54.470038 ], [ 14.150391, 53.748711 ], [ 15.029297, 51.124213 ], [ 12.216797, 50.289339 ], [ 13.623047, 48.864715 ], [ 12.919922, 47.457809 ], [ 7.470703, 47.635784 ], [ 8.085938, 49.037868 ], [ 6.152344, 49.439557 ], [ 5.976562, 51.835778 ], [ 6.855469, 52.214339 ], [ 7.119141, 53.696706 ], [ 8.085938, 53.540307 ], [ 8.789062, 54.007769 ], [ 8.525391, 54.977614 ], [ 9.931641, 54.977614 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -50.712891, 4.302591 ], [ -50.712891, -0.087891 ], [ -55.107422, -0.087891 ], [ -55.107422, 4.302591 ], [ -50.712891, 4.302591 ] ] ], [ [ [ 2.548828, 51.124213 ], [ 4.306641, 49.894634 ], [ 8.085938, 49.037868 ], [ 7.470703, 47.635784 ], [ 6.064453, 46.739861 ], [ 7.470703, 43.707594 ], [ 6.503906, 43.133061 ], [ 3.076172, 43.068888 ], [ 2.988281, 42.488302 ], [ 1.845703, 42.358544 ], [ -1.494141, 43.004647 ], [ -1.230469, 46.012224 ], [ -2.988281, 47.576526 ], [ -4.482422, 47.931066 ], [ -4.570312, 48.690960 ], [ -1.582031, 48.632909 ], [ -1.933594, 49.781264 ], [ -0.966797, 49.325122 ], [ 1.318359, 50.120578 ], [ 1.669922, 50.958427 ], [ 2.548828, 51.124213 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.744141, 58.904646 ], [ 12.744141, 56.559482 ], [ 8.349609, 56.559482 ], [ 8.349609, 58.904646 ], [ 12.744141, 58.904646 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.666016, 54.876607 ], [ 18.720703, 54.418930 ], [ 23.203125, 54.213861 ], [ 23.994141, 50.680797 ], [ 22.500000, 49.496675 ], [ 22.763672, 49.037868 ], [ 21.621094, 49.496675 ], [ 18.896484, 49.439557 ], [ 17.578125, 50.345460 ], [ 16.699219, 50.233152 ], [ 15.468750, 50.792047 ], [ 14.150391, 53.748711 ], [ 17.666016, 54.876607 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.093750, 50.903033 ], [ 21.093750, 48.048710 ], [ 16.699219, 48.048710 ], [ 16.699219, 50.903033 ], [ 21.093750, 50.903033 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.160156, 49.553726 ], [ 19.160156, 46.619261 ], [ 14.765625, 46.619261 ], [ 14.765625, 49.553726 ], [ 19.160156, 49.553726 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 44.213710 ], [ 20.742188, 40.979898 ], [ 16.347656, 40.979898 ], [ 16.347656, 44.213710 ], [ 20.742188, 44.213710 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.609375, 43.897892 ], [ 24.609375, 40.647304 ], [ 20.214844, 40.647304 ], [ 20.214844, 43.897892 ], [ 24.609375, 43.897892 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.410156, 57.373938 ], [ 30.410156, 54.927142 ], [ 26.015625, 54.927142 ], [ 26.015625, 57.373938 ], [ 30.410156, 57.373938 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.828125, 56.413901 ], [ 28.828125, 53.904338 ], [ 24.433594, 53.904338 ], [ 24.433594, 56.413901 ], [ 28.828125, 56.413901 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.212891, 56.170023 ], [ 30.849609, 55.528631 ], [ 30.761719, 54.826008 ], [ 32.695312, 53.330873 ], [ 31.289062, 53.067627 ], [ 31.816406, 52.106505 ], [ 30.937500, 52.052490 ], [ 30.585938, 51.344339 ], [ 25.312500, 51.890054 ], [ 23.554688, 51.563412 ], [ 23.466797, 53.904338 ], [ 25.576172, 54.265224 ], [ 26.455078, 55.627996 ], [ 28.212891, 56.170023 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.750000, 52.321911 ], [ 34.189453, 51.234407 ], [ 34.980469, 51.234407 ], [ 35.332031, 50.569283 ], [ 40.078125, 49.610710 ], [ 39.726562, 47.872144 ], [ 34.980469, 46.255847 ], [ 34.980469, 45.644768 ], [ 36.562500, 45.460131 ], [ 36.298828, 45.089036 ], [ 33.925781, 44.339565 ], [ 33.574219, 45.026950 ], [ 32.431641, 45.336702 ], [ 33.574219, 45.828799 ], [ 31.640625, 46.679594 ], [ 30.761719, 46.558860 ], [ 29.619141, 45.274886 ], [ 28.212891, 45.460131 ], [ 28.828125, 46.437857 ], [ 30.058594, 46.437857 ], [ 28.652344, 48.107431 ], [ 27.509766, 48.458352 ], [ 24.873047, 47.754098 ], [ 22.675781, 47.872144 ], [ 22.060547, 48.400032 ], [ 22.500000, 49.496675 ], [ 23.906250, 50.401515 ], [ 23.554688, 51.563412 ], [ 24.521484, 51.890054 ], [ 30.585938, 51.344339 ], [ 30.937500, 52.052490 ], [ 33.750000, 52.321911 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.369141, 48.341646 ], [ 18.369141, 45.336702 ], [ 13.974609, 45.336702 ], [ 13.974609, 48.341646 ], [ 18.369141, 48.341646 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.300781, 43.452919 ], [ 28.300781, 40.178873 ], [ 23.906250, 40.178873 ], [ 23.906250, 43.452919 ], [ 28.300781, 43.452919 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.136719, 42.940339 ], [ 25.136719, 39.639538 ], [ 20.742188, 39.639538 ], [ 20.742188, 42.940339 ], [ 25.136719, 42.940339 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.630859, 48.224673 ], [ 28.125000, 46.800059 ], [ 28.212891, 45.460131 ], [ 29.619141, 45.026950 ], [ 28.828125, 44.902578 ], [ 28.564453, 43.707594 ], [ 27.246094, 44.150681 ], [ 25.576172, 43.707594 ], [ 22.939453, 43.834527 ], [ 22.675781, 44.590467 ], [ 21.533203, 44.777936 ], [ 20.214844, 46.134170 ], [ 23.115234, 48.107431 ], [ 24.873047, 47.754098 ], [ 26.630859, 48.224673 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.867188, 42.811522 ], [ 48.867188, 39.504041 ], [ 44.472656, 39.504041 ], [ 44.472656, 42.811522 ], [ 48.867188, 42.811522 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.689453, 39.095963 ], [ 11.689453, 35.603719 ], [ 7.294922, 35.603719 ], [ 7.294922, 39.095963 ], [ 11.689453, 39.095963 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 36.949892 ], [ 7.558594, 34.089061 ], [ 9.052734, 32.101190 ], [ 9.843750, 29.458731 ], [ 9.316406, 26.115986 ], [ 10.283203, 24.367114 ], [ 12.041016, 23.483401 ], [ 5.712891, 19.642588 ], [ 3.164062, 19.062118 ], [ 3.164062, 19.725342 ], [ -8.701172, 27.371767 ], [ -8.701172, 28.844674 ], [ -5.273438, 29.993002 ], [ -3.691406, 30.902225 ], [ -3.691406, 31.653381 ], [ -1.318359, 32.249974 ], [ -2.197266, 35.173808 ], [ -1.230469, 35.746512 ], [ 1.494141, 36.597889 ], [ 8.437500, 36.949892 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.128906, 47.100045 ], [ 13.798828, 46.498392 ], [ 13.974609, 45.583290 ], [ 12.304688, 45.398450 ], [ 12.568359, 44.087585 ], [ 15.117188, 41.967659 ], [ 18.369141, 40.380028 ], [ 18.281250, 39.842286 ], [ 16.875000, 40.446947 ], [ 16.435547, 39.774769 ], [ 17.050781, 38.891033 ], [ 15.644531, 37.926868 ], [ 16.083984, 38.959409 ], [ 15.380859, 40.044438 ], [ 11.162109, 42.358544 ], [ 10.195312, 43.897892 ], [ 8.876953, 44.339565 ], [ 7.470703, 43.707594 ], [ 6.855469, 46.012224 ], [ 8.964844, 46.012224 ], [ 10.458984, 46.920255 ], [ 12.128906, 47.100045 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.513672, 33.137551 ], [ 15.205078, 32.249974 ], [ 15.732422, 31.353637 ], [ 19.072266, 30.297018 ], [ 20.830078, 32.694866 ], [ 24.960938, 31.877558 ], [ 24.960938, 19.973349 ], [ 23.818359, 19.559790 ], [ 15.820312, 23.402765 ], [ 14.150391, 22.512557 ], [ 10.283203, 24.367114 ], [ 9.316406, 26.115986 ], [ 9.492188, 30.297018 ], [ 11.513672, 33.137551 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.041016, 23.483401 ], [ 14.150391, 22.512557 ], [ 14.853516, 22.836946 ], [ 15.908203, 20.385825 ], [ 15.205078, 16.636192 ], [ 13.974609, 15.707663 ], [ 13.535156, 14.349548 ], [ 13.974609, 13.325485 ], [ 14.589844, 13.325485 ], [ 14.150391, 12.468760 ], [ 13.095703, 13.581921 ], [ 9.052734, 12.811801 ], [ 5.449219, 13.838080 ], [ 4.130859, 13.496473 ], [ 3.603516, 11.695273 ], [ 1.054688, 12.811801 ], [ 0.351562, 14.944785 ], [ 3.603516, 15.538376 ], [ 4.306641, 19.145168 ], [ 12.041016, 23.483401 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.009766, 14.349548 ], [ 5.009766, 10.055403 ], [ 0.615234, 10.055403 ], [ 0.615234, 14.349548 ], [ 5.009766, 14.349548 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.000000, 11.005904 ], [ 1.054688, 5.965754 ], [ -1.933594, 4.740675 ], [ -2.812500, 5.003394 ], [ -2.900391, 10.919618 ], [ 0.000000, 11.005904 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.394531, 13.752725 ], [ 9.052734, 12.811801 ], [ 13.095703, 13.581921 ], [ 14.589844, 12.125264 ], [ 11.777344, 7.013668 ], [ 9.228516, 6.402648 ], [ 8.525391, 4.740675 ], [ 5.888672, 4.302591 ], [ 4.306641, 6.227934 ], [ 2.724609, 6.227934 ], [ 2.724609, 8.494105 ], [ 3.691406, 10.055403 ], [ 3.691406, 12.554564 ], [ 4.394531, 13.752725 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.501953, 12.897489 ], [ 15.468750, 9.968851 ], [ 13.974609, 9.535749 ], [ 15.468750, 7.710992 ], [ 14.501953, 4.740675 ], [ 15.820312, 2.986927 ], [ 15.908203, 1.757537 ], [ 9.667969, 2.284551 ], [ 9.755859, 3.074695 ], [ 8.525391, 4.477856 ], [ 8.789062, 5.441022 ], [ 10.107422, 7.013668 ], [ 11.777344, 7.013668 ], [ 14.414062, 11.609193 ], [ 14.501953, 12.897489 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.851562, 11.178402 ], [ 23.466797, 8.928487 ], [ 27.333984, 5.266008 ], [ 24.433594, 5.090944 ], [ 22.412109, 4.039618 ], [ 19.511719, 5.003394 ], [ 18.457031, 3.513421 ], [ 17.138672, 3.688855 ], [ 15.996094, 2.284551 ], [ 14.501953, 5.441022 ], [ 15.292969, 7.449624 ], [ 17.929688, 7.885147 ], [ 18.808594, 9.015302 ], [ 21.005859, 9.449062 ], [ 22.851562, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.138672, 3.688855 ], [ 18.457031, 3.513421 ], [ 17.666016, -0.439449 ], [ 16.435547, -1.757537 ], [ 15.996094, -3.513421 ], [ 14.589844, -5.003394 ], [ 12.656250, -4.477856 ], [ 11.953125, -5.003394 ], [ 11.074219, -3.951941 ], [ 11.865234, -3.425692 ], [ 11.513672, -2.723583 ], [ 12.568359, -1.933227 ], [ 13.974609, -2.460181 ], [ 14.414062, -1.318243 ], [ 13.886719, 0.000000 ], [ 14.238281, 1.230374 ], [ 13.271484, 1.318243 ], [ 13.095703, 2.284551 ], [ 15.908203, 1.757537 ], [ 17.138672, 3.688855 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.156250, 42.032974 ], [ 38.320312, 40.979898 ], [ 42.626953, 41.574361 ], [ 44.824219, 39.707187 ], [ 44.121094, 39.436193 ], [ 44.736328, 37.160317 ], [ 36.738281, 36.809285 ], [ 36.123047, 35.817813 ], [ 36.123047, 36.668419 ], [ 34.716797, 36.809285 ], [ 34.013672, 36.244273 ], [ 30.585938, 36.668419 ], [ 29.707031, 36.173357 ], [ 27.597656, 36.668419 ], [ 26.279297, 38.203655 ], [ 26.806641, 38.959409 ], [ 26.191406, 39.436193 ], [ 27.246094, 40.446947 ], [ 28.828125, 40.446947 ], [ 29.267578, 41.244772 ], [ 31.113281, 41.112469 ], [ 33.486328, 42.032974 ], [ 35.156250, 42.032974 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.937500, 31.578535 ], [ 31.992188, 30.902225 ], [ 34.277344, 31.203405 ], [ 34.892578, 29.535230 ], [ 33.925781, 27.683528 ], [ 32.343750, 29.764377 ], [ 35.683594, 23.966176 ], [ 35.507812, 23.079732 ], [ 36.826172, 22.024546 ], [ 24.960938, 22.024546 ], [ 25.136719, 31.578535 ], [ 28.916016, 30.902225 ], [ 30.937500, 31.578535 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 37.230328 ], [ 41.308594, 36.385913 ], [ 41.044922, 34.452218 ], [ 36.826172, 32.324276 ], [ 35.683594, 32.694866 ], [ 36.650391, 34.234512 ], [ 35.947266, 35.389050 ], [ 36.738281, 36.809285 ], [ 42.363281, 37.230328 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 48.691406, 40.446947 ], [ 48.691406, 37.020098 ], [ 44.296875, 37.020098 ], [ 44.296875, 40.446947 ], [ 48.691406, 40.446947 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.363281, 37.230328 ], [ 44.736328, 37.160317 ], [ 46.054688, 35.675147 ], [ 45.439453, 33.943360 ], [ 47.373047, 32.472695 ], [ 48.603516, 29.916852 ], [ 47.285156, 30.069094 ], [ 46.582031, 29.075375 ], [ 44.736328, 29.152161 ], [ 41.923828, 31.203405 ], [ 39.199219, 32.175612 ], [ 38.759766, 33.358062 ], [ 41.044922, 34.452218 ], [ 41.308594, 36.385913 ], [ 42.363281, 37.230328 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.820312, 23.402765 ], [ 23.818359, 19.559790 ], [ 23.906250, 15.623037 ], [ 23.027344, 15.707663 ], [ 22.324219, 14.349548 ], [ 21.972656, 12.554564 ], [ 22.851562, 11.178402 ], [ 21.005859, 9.449062 ], [ 18.808594, 9.015302 ], [ 17.929688, 7.885147 ], [ 15.292969, 7.449624 ], [ 14.941406, 8.754795 ], [ 13.974609, 9.535749 ], [ 15.468750, 9.968851 ], [ 14.589844, 13.325485 ], [ 13.974609, 13.325485 ], [ 13.535156, 14.349548 ], [ 13.974609, 15.707663 ], [ 15.205078, 16.636192 ], [ 15.908203, 20.385825 ], [ 14.853516, 22.836946 ], [ 15.820312, 23.402765 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.826172, 22.024546 ], [ 37.441406, 18.646245 ], [ 38.408203, 17.978733 ], [ 36.826172, 16.972741 ], [ 36.298828, 13.581921 ], [ 33.925781, 9.449062 ], [ 32.783203, 12.211180 ], [ 32.080078, 11.953349 ], [ 32.431641, 11.092166 ], [ 31.376953, 9.795678 ], [ 29.970703, 10.314919 ], [ 29.003906, 9.362353 ], [ 26.718750, 9.449062 ], [ 25.751953, 10.401378 ], [ 25.048828, 10.314919 ], [ 24.521484, 8.928487 ], [ 23.466797, 8.928487 ], [ 23.554688, 10.055403 ], [ 21.972656, 12.554564 ], [ 23.027344, 15.707663 ], [ 23.906250, 15.623037 ], [ 23.818359, 19.973349 ], [ 24.960938, 19.973349 ], [ 24.960938, 22.024546 ], [ 36.826172, 22.024546 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.222656, 12.211180 ], [ 34.013672, 8.667918 ], [ 32.958984, 7.798079 ], [ 35.332031, 5.528511 ], [ 33.398438, 3.776559 ], [ 30.849609, 3.513421 ], [ 29.707031, 4.565474 ], [ 27.949219, 4.390229 ], [ 23.906250, 8.581021 ], [ 25.751953, 10.401378 ], [ 26.718750, 9.449062 ], [ 29.003906, 9.362353 ], [ 29.970703, 10.314919 ], [ 31.376953, 9.795678 ], [ 32.431641, 11.092166 ], [ 32.080078, 11.953349 ], [ 33.222656, 12.211180 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.880859, 14.944785 ], [ 41.572266, 13.410994 ], [ 42.363281, 12.554564 ], [ 41.748047, 11.092166 ], [ 42.802734, 10.919618 ], [ 43.681641, 9.188870 ], [ 47.812500, 7.972198 ], [ 45.000000, 5.003394 ], [ 41.835938, 3.951941 ], [ 40.781250, 4.214943 ], [ 39.550781, 3.425692 ], [ 36.123047, 4.477856 ], [ 32.958984, 7.798079 ], [ 33.837891, 8.407168 ], [ 34.277344, 10.660608 ], [ 36.386719, 14.434680 ], [ 37.617188, 14.179186 ], [ 37.880859, 14.944785 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.031250, 18.979026 ], [ 53.085938, 16.636192 ], [ 48.691406, 14.008696 ], [ 44.208984, 12.554564 ], [ 43.505859, 12.640338 ], [ 42.626953, 15.199386 ], [ 43.417969, 17.560247 ], [ 47.021484, 16.972741 ], [ 49.130859, 18.646245 ], [ 52.031250, 18.979026 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.023438, 19.062118 ], [ 39.023438, 14.859850 ], [ 34.628906, 14.859850 ], [ 34.628906, 19.062118 ], [ 39.023438, 19.062118 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.031250, 72.738003 ], [ 149.501953, 72.208678 ], [ 150.380859, 71.608283 ], [ 152.929688, 70.844673 ], [ 156.972656, 71.045529 ], [ 158.994141, 70.873491 ], [ 159.873047, 70.466207 ], [ 159.697266, 69.718107 ], [ 160.927734, 69.442128 ], [ 162.246094, 69.657086 ], [ 167.871094, 69.595890 ], [ 169.541016, 68.688521 ], [ 170.859375, 69.005675 ], [ 169.980469, 69.657086 ], [ 170.419922, 70.110485 ], [ 175.693359, 69.869892 ], [ 180.000000, 68.974164 ], [ 185.097656, 67.204032 ], [ 185.009766, 66.583217 ], [ 185.625000, 66.337505 ], [ 185.449219, 67.067433 ], [ 187.031250, 66.964476 ], [ 187.031250, 64.244595 ], [ 184.042969, 64.923542 ], [ 183.779297, 65.366837 ], [ 181.669922, 65.403445 ], [ 181.318359, 66.124962 ], [ 180.087891, 65.874725 ], [ 180.527344, 65.403445 ], [ 180.000000, 64.997939 ], [ 178.681641, 64.548440 ], [ 177.451172, 64.623877 ], [ 179.384766, 62.995158 ], [ 179.208984, 62.308794 ], [ 177.363281, 62.512318 ], [ 173.671875, 61.648162 ], [ 170.332031, 59.888937 ], [ 168.925781, 60.586967 ], [ 166.289062, 59.800634 ], [ 165.849609, 60.152442 ], [ 164.882812, 59.712097 ], [ 163.564453, 59.888937 ], [ 161.982422, 58.263287 ], [ 162.070312, 57.844751 ], [ 163.212891, 57.610107 ], [ 163.037109, 56.170023 ], [ 162.158203, 56.121060 ], [ 161.718750, 55.279115 ], [ 162.158203, 54.876607 ], [ 160.400391, 54.367759 ], [ 160.048828, 53.225768 ], [ 158.554688, 52.961875 ], [ 158.203125, 51.944265 ], [ 156.796875, 51.013755 ], [ 155.390625, 55.379110 ], [ 155.917969, 56.752723 ], [ 156.796875, 57.844751 ], [ 158.378906, 58.077876 ], [ 163.652344, 61.143235 ], [ 164.443359, 62.552857 ], [ 163.300781, 62.471724 ], [ 162.685547, 61.648162 ], [ 160.136719, 60.543775 ], [ 159.345703, 61.773123 ], [ 156.708984, 61.438767 ], [ 154.248047, 59.756395 ], [ 155.039062, 59.130863 ], [ 151.259766, 58.768200 ], [ 151.347656, 59.489726 ], [ 149.765625, 59.667741 ], [ 148.535156, 59.175928 ], [ 145.458984, 59.355596 ], [ 142.207031, 59.040555 ], [ 135.087891, 54.724620 ], [ 136.669922, 54.622978 ], [ 138.164062, 53.748711 ], [ 138.779297, 54.265224 ], [ 139.921875, 54.213861 ], [ 141.328125, 53.067627 ], [ 140.097656, 48.458352 ], [ 134.912109, 43.389082 ], [ 133.505859, 42.811522 ], [ 132.275391, 43.261206 ], [ 130.781250, 42.228517 ], [ 131.044922, 44.964798 ], [ 133.066406, 45.151053 ], [ 135.000000, 48.458352 ], [ 130.957031, 47.813155 ], [ 129.375000, 49.439557 ], [ 127.617188, 49.781264 ], [ 125.947266, 52.802761 ], [ 123.574219, 53.435719 ], [ 121.025391, 53.225768 ], [ 120.146484, 52.749594 ], [ 120.761719, 51.944265 ], [ 119.267578, 50.120578 ], [ 117.861328, 49.496675 ], [ 114.345703, 50.233152 ], [ 110.654297, 49.152970 ], [ 108.457031, 49.267805 ], [ 106.875000, 50.289339 ], [ 103.710938, 50.064192 ], [ 102.216797, 50.513427 ], [ 102.041016, 51.234407 ], [ 98.876953, 52.052490 ], [ 97.822266, 51.013755 ], [ 98.261719, 50.401515 ], [ 97.294922, 49.724479 ], [ 92.197266, 50.792047 ], [ 87.363281, 49.210420 ], [ 86.835938, 49.837982 ], [ 85.517578, 49.667628 ], [ 83.408203, 51.069017 ], [ 81.914062, 50.792047 ], [ 80.595703, 51.399206 ], [ 80.068359, 50.847573 ], [ 76.552734, 54.162434 ], [ 76.904297, 54.470038 ], [ 73.388672, 53.488046 ], [ 73.476562, 54.059388 ], [ 72.246094, 54.367759 ], [ 71.191406, 54.110943 ], [ 70.839844, 55.178868 ], [ 69.082031, 55.379110 ], [ 65.214844, 54.367759 ], [ 61.435547, 54.007769 ], [ 60.996094, 53.644638 ], [ 61.699219, 52.961875 ], [ 59.941406, 51.944265 ], [ 61.611328, 51.289406 ], [ 61.347656, 50.792047 ], [ 59.677734, 50.569283 ], [ 58.359375, 51.069017 ], [ 56.777344, 51.069017 ], [ 55.722656, 50.625073 ], [ 52.294922, 51.727028 ], [ 50.800781, 51.672555 ], [ 48.691406, 50.625073 ], [ 48.603516, 49.894634 ], [ 47.548828, 50.457504 ], [ 46.494141, 48.400032 ], [ 48.076172, 47.754098 ], [ 49.130859, 46.377254 ], [ 46.669922, 44.590467 ], [ 48.603516, 41.836828 ], [ 47.373047, 41.244772 ], [ 45.439453, 42.488302 ], [ 39.990234, 43.452919 ], [ 36.650391, 45.274886 ], [ 38.232422, 46.255847 ], [ 37.705078, 46.619261 ], [ 39.111328, 47.040182 ], [ 38.232422, 47.100045 ], [ 38.232422, 47.517201 ], [ 39.726562, 47.872144 ], [ 40.078125, 49.610710 ], [ 35.332031, 50.569283 ], [ 34.980469, 51.234407 ], [ 34.189453, 51.234407 ], [ 33.750000, 52.321911 ], [ 31.816406, 52.106505 ], [ 31.289062, 53.067627 ], [ 32.695312, 53.330873 ], [ 30.761719, 54.826008 ], [ 30.849609, 55.528631 ], [ 28.212891, 56.170023 ], [ 27.246094, 57.468589 ], [ 27.421875, 58.722599 ], [ 29.091797, 60.020952 ], [ 28.037109, 60.500525 ], [ 31.552734, 62.875188 ], [ 30.058594, 63.548552 ], [ 30.410156, 64.206377 ], [ 29.531250, 64.960766 ], [ 30.234375, 65.802776 ], [ 29.091797, 66.930060 ], [ 29.970703, 67.709445 ], [ 28.476562, 68.366801 ], [ 28.564453, 69.068563 ], [ 32.167969, 69.900118 ], [ 33.750000, 69.287257 ], [ 36.474609, 69.068563 ], [ 40.253906, 67.941650 ], [ 41.132812, 66.791909 ], [ 39.990234, 66.266856 ], [ 38.408203, 65.982270 ], [ 33.925781, 66.757250 ], [ 33.222656, 66.618122 ], [ 34.804688, 65.910623 ], [ 34.980469, 64.396938 ], [ 37.001953, 63.860036 ], [ 36.562500, 64.774125 ], [ 37.177734, 65.146115 ], [ 39.550781, 64.510643 ], [ 40.429688, 64.774125 ], [ 39.726562, 65.512963 ], [ 42.099609, 66.478208 ], [ 43.945312, 66.053716 ], [ 44.560547, 66.757250 ], [ 43.681641, 67.339861 ], [ 44.208984, 67.941650 ], [ 43.417969, 68.560384 ], [ 46.230469, 68.236823 ], [ 46.845703, 67.676085 ], [ 45.527344, 67.575717 ], [ 45.527344, 66.998844 ], [ 46.318359, 66.652977 ], [ 47.900391, 66.895596 ], [ 48.164062, 67.508568 ], [ 53.701172, 68.847665 ], [ 54.492188, 68.815927 ], [ 53.525391, 68.204212 ], [ 54.755859, 68.106102 ], [ 55.458984, 68.431513 ], [ 57.304688, 68.463800 ], [ 58.798828, 68.879358 ], [ 59.941406, 68.269387 ], [ 61.083984, 68.942607 ], [ 60.029297, 69.534518 ], [ 60.556641, 69.839622 ], [ 63.544922, 69.534518 ], [ 68.554688, 68.106102 ], [ 69.169922, 68.624544 ], [ 68.115234, 69.349339 ], [ 66.972656, 69.442128 ], [ 66.708984, 71.016960 ], [ 69.960938, 73.048236 ], [ 72.597656, 72.764065 ], [ 72.773438, 72.208678 ], [ 71.806641, 71.413177 ], [ 72.773438, 70.377854 ], [ 72.597656, 69.005675 ], [ 73.652344, 68.399180 ], [ 71.279297, 66.337505 ], [ 72.421875, 66.160511 ], [ 75.058594, 67.776025 ], [ 74.443359, 68.334376 ], [ 74.970703, 68.974164 ], [ 73.828125, 69.068563 ], [ 73.564453, 69.626510 ], [ 74.443359, 70.641769 ], [ 73.125000, 71.441171 ], [ 74.882812, 72.127936 ], [ 74.619141, 72.842021 ], [ 75.146484, 72.842021 ], [ 75.673828, 72.289067 ], [ 75.322266, 71.328950 ], [ 76.376953, 71.159391 ], [ 75.937500, 71.883578 ], [ 77.607422, 72.262310 ], [ 79.628906, 72.315785 ], [ 81.474609, 71.746432 ], [ 80.595703, 72.580829 ], [ 80.507812, 73.652545 ], [ 86.835938, 73.946791 ], [ 86.044922, 74.449358 ], [ 87.187500, 75.118222 ], [ 88.330078, 75.140778 ], [ 90.263672, 75.650431 ], [ 92.900391, 75.780545 ], [ 93.251953, 76.037317 ], [ 95.888672, 76.142958 ], [ 96.679688, 75.909504 ], [ 98.964844, 76.455203 ], [ 100.722656, 76.434604 ], [ 101.953125, 77.293202 ], [ 104.326172, 77.692870 ], [ 106.083984, 77.370301 ], [ 104.677734, 77.118032 ], [ 106.962891, 76.980149 ], [ 107.226562, 76.475773 ], [ 108.193359, 76.720223 ], [ 111.093750, 76.700019 ], [ 114.169922, 75.845169 ], [ 113.906250, 75.320025 ], [ 109.423828, 74.188052 ], [ 112.148438, 73.775780 ], [ 113.027344, 73.971078 ], [ 113.554688, 73.327858 ], [ 113.994141, 73.602996 ], [ 115.576172, 73.751205 ], [ 118.740234, 73.578167 ], [ 119.003906, 73.124945 ], [ 123.222656, 72.971189 ], [ 123.222656, 73.726595 ], [ 127.001953, 73.553302 ], [ 128.583984, 73.048236 ], [ 129.023438, 72.395706 ], [ 128.496094, 71.992578 ], [ 129.726562, 71.187754 ], [ 131.308594, 70.786910 ], [ 132.275391, 71.828840 ], [ 133.857422, 71.385142 ], [ 135.527344, 71.663663 ], [ 137.460938, 71.357067 ], [ 138.251953, 71.635993 ], [ 139.833984, 71.497037 ], [ 139.130859, 72.422268 ], [ 140.097656, 72.738003 ], [ 137.636719, 72.738003 ], [ 137.636719, 73.995328 ], [ 142.031250, 73.995328 ], [ 142.031250, 72.738003 ] ] ], [ [ [ -180.000000, 68.974164 ], [ -174.902344, 67.204032 ], [ -174.990234, 66.583217 ], [ -174.375000, 66.337505 ], [ -174.550781, 67.067433 ], [ -171.826172, 66.930060 ], [ -169.892578, 65.982270 ], [ -170.859375, 65.549367 ], [ -172.529297, 65.440002 ], [ -172.968750, 64.244595 ], [ -175.957031, 64.923542 ], [ -176.220703, 65.366837 ], [ -178.330078, 65.403445 ], [ -178.681641, 66.124962 ], [ -179.912109, 65.874725 ], [ -179.472656, 65.403445 ], [ -180.000000, 64.997939 ], [ -181.318359, 64.548440 ], [ -182.548828, 64.623877 ], [ -180.527344, 62.552857 ], [ -180.791016, 62.308794 ], [ -182.636719, 62.512318 ], [ -187.031250, 61.312452 ], [ -187.031250, 69.869892 ], [ -184.306641, 69.869892 ], [ -180.000000, 68.974164 ] ] ], [ [ [ 68.115234, 76.940488 ], [ 68.818359, 76.537296 ], [ 68.203125, 76.226907 ], [ 61.611328, 75.253057 ], [ 58.447266, 74.307353 ], [ 55.458984, 72.369105 ], [ 55.634766, 71.552741 ], [ 57.568359, 70.728979 ], [ 53.701172, 70.757966 ], [ 53.437500, 71.216075 ], [ 51.591797, 71.469124 ], [ 51.416016, 72.019729 ], [ 52.470703, 72.235514 ], [ 52.470703, 72.764065 ], [ 54.404297, 73.627789 ], [ 53.525391, 73.751205 ], [ 55.898438, 74.636748 ], [ 55.634766, 75.073010 ], [ 61.171875, 76.247817 ], [ 64.511719, 76.434604 ], [ 66.181641, 76.800739 ], [ 68.115234, 76.940488 ] ] ], [ [ [ 144.316406, 47.457809 ], [ 144.316406, 44.402392 ], [ 139.921875, 44.402392 ], [ 139.921875, 47.457809 ], [ 144.316406, 47.457809 ] ] ], [ [ [ 95.976562, 81.255032 ], [ 100.195312, 79.781164 ], [ 99.931641, 78.887002 ], [ 97.734375, 78.750659 ], [ 95.009766, 79.038437 ], [ 93.339844, 79.432371 ], [ 92.548828, 80.148684 ], [ 91.142578, 80.342262 ], [ 93.779297, 81.024916 ], [ 95.976562, 81.255032 ] ] ], [ [ [ 138.867188, 76.142958 ], [ 141.503906, 76.100796 ], [ 145.107422, 75.563041 ], [ 144.316406, 74.821934 ], [ 140.625000, 74.844929 ], [ 138.955078, 74.613445 ], [ 136.933594, 75.253057 ], [ 137.548828, 75.952235 ], [ 138.867188, 76.142958 ] ] ], [ [ [ 102.128906, 79.351472 ], [ 105.380859, 78.716316 ], [ 105.117188, 78.313860 ], [ 99.404297, 77.915669 ], [ 101.250000, 79.237185 ], [ 102.128906, 79.351472 ] ] ], [ [ [ 53.701172, 81.052297 ], [ 53.701172, 80.342262 ], [ 49.306641, 80.342262 ], [ 49.306641, 81.052297 ], [ 53.701172, 81.052297 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 74.179688, 43.325178 ], [ 80.244141, 42.358544 ], [ 78.222656, 41.178654 ], [ 76.904297, 41.046217 ], [ 76.552734, 40.446947 ], [ 74.794922, 40.380028 ], [ 73.652344, 39.436193 ], [ 69.433594, 39.504041 ], [ 69.521484, 40.111689 ], [ 71.806641, 40.178873 ], [ 73.037109, 40.847060 ], [ 70.400391, 41.508577 ], [ 71.191406, 42.682435 ], [ 73.476562, 42.488302 ], [ 74.179688, 43.325178 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.082031, 55.379110 ], [ 70.839844, 55.178868 ], [ 71.191406, 54.110943 ], [ 72.246094, 54.367759 ], [ 73.476562, 54.059388 ], [ 73.388672, 53.488046 ], [ 76.904297, 54.470038 ], [ 76.552734, 54.162434 ], [ 80.068359, 50.847573 ], [ 80.595703, 51.399206 ], [ 81.914062, 50.792047 ], [ 83.408203, 51.069017 ], [ 85.517578, 49.667628 ], [ 86.835938, 49.837982 ], [ 87.363281, 49.210420 ], [ 85.781250, 48.458352 ], [ 85.166016, 46.980252 ], [ 83.144531, 47.338823 ], [ 82.441406, 45.521744 ], [ 79.980469, 44.902578 ], [ 80.859375, 43.197167 ], [ 80.244141, 42.358544 ], [ 74.179688, 43.325178 ], [ 73.476562, 42.488302 ], [ 71.191406, 42.682435 ], [ 68.642578, 40.647304 ], [ 66.708984, 41.178654 ], [ 66.093750, 43.004647 ], [ 64.863281, 43.707594 ], [ 62.050781, 43.516689 ], [ 58.535156, 45.583290 ], [ 55.898438, 44.964798 ], [ 55.986328, 41.310824 ], [ 54.052734, 42.293564 ], [ 52.470703, 41.771312 ], [ 52.470703, 42.811522 ], [ 51.328125, 43.133061 ], [ 50.273438, 44.590467 ], [ 51.240234, 44.527843 ], [ 51.328125, 45.274886 ], [ 52.998047, 45.274886 ], [ 53.085938, 46.860191 ], [ 51.152344, 47.040182 ], [ 49.130859, 46.377254 ], [ 48.076172, 47.754098 ], [ 46.494141, 48.400032 ], [ 47.548828, 50.457504 ], [ 48.603516, 49.894634 ], [ 48.691406, 50.625073 ], [ 50.800781, 51.672555 ], [ 52.294922, 51.727028 ], [ 55.722656, 50.625073 ], [ 56.777344, 51.069017 ], [ 58.359375, 51.069017 ], [ 59.677734, 50.569283 ], [ 61.347656, 50.792047 ], [ 61.611328, 51.289406 ], [ 59.941406, 51.944265 ], [ 61.699219, 52.961875 ], [ 60.996094, 53.644638 ], [ 61.435547, 54.007769 ], [ 65.214844, 54.367759 ], [ 69.082031, 55.379110 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 47.197266, 42.875964 ], [ 47.197266, 39.571822 ], [ 42.802734, 39.571822 ], [ 42.802734, 42.875964 ], [ 47.197266, 42.875964 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.199219, 32.175612 ], [ 41.923828, 31.203405 ], [ 44.736328, 29.152161 ], [ 47.460938, 28.998532 ], [ 50.185547, 26.667096 ], [ 52.031250, 22.998852 ], [ 55.195312, 22.674847 ], [ 55.634766, 22.024546 ], [ 55.019531, 19.973349 ], [ 49.130859, 18.646245 ], [ 47.021484, 16.972741 ], [ 43.417969, 17.560247 ], [ 42.802734, 16.383391 ], [ 39.111328, 21.289374 ], [ 38.496094, 23.725012 ], [ 34.628906, 28.071980 ], [ 34.980469, 29.382175 ], [ 36.035156, 29.228890 ], [ 37.529297, 29.993002 ], [ 37.968750, 30.524413 ], [ 37.001953, 31.503629 ], [ 39.199219, 32.175612 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 56.425781, 24.926295 ], [ 59.765625, 22.350076 ], [ 57.832031, 20.220966 ], [ 57.656250, 18.979026 ], [ 54.755859, 16.972741 ], [ 53.085938, 16.636192 ], [ 52.031250, 18.979026 ], [ 55.019531, 19.973349 ], [ 55.634766, 22.024546 ], [ 55.195312, 23.079732 ], [ 56.425781, 24.926295 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.824219, 39.707187 ], [ 46.142578, 38.754083 ], [ 48.076172, 39.571822 ], [ 47.988281, 38.822591 ], [ 49.218750, 37.579413 ], [ 50.800781, 36.879621 ], [ 53.789062, 36.949892 ], [ 56.601562, 38.134557 ], [ 61.083984, 36.456636 ], [ 60.556641, 32.990236 ], [ 61.787109, 30.751278 ], [ 60.908203, 29.840644 ], [ 62.753906, 28.226970 ], [ 63.281250, 26.745610 ], [ 61.875000, 26.273714 ], [ 61.523438, 25.085599 ], [ 57.392578, 25.720735 ], [ 56.513672, 27.137368 ], [ 54.755859, 26.509905 ], [ 51.503906, 27.839076 ], [ 50.097656, 30.145127 ], [ 48.603516, 29.916852 ], [ 47.988281, 30.448674 ], [ 47.373047, 32.472695 ], [ 45.439453, 33.943360 ], [ 46.054688, 35.675147 ], [ 44.208984, 37.996163 ], [ 44.121094, 39.436193 ], [ 44.824219, 39.707187 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 70.839844, 38.479395 ], [ 71.806641, 36.738884 ], [ 73.300781, 37.509726 ], [ 74.970703, 37.439974 ], [ 71.279297, 36.102376 ], [ 71.630859, 35.173808 ], [ 70.839844, 34.016242 ], [ 69.960938, 34.016242 ], [ 70.312500, 33.358062 ], [ 69.345703, 31.877558 ], [ 66.972656, 31.278551 ], [ 66.357422, 29.916852 ], [ 62.578125, 29.305561 ], [ 60.908203, 29.840644 ], [ 61.787109, 30.751278 ], [ 60.556641, 32.990236 ], [ 61.171875, 35.675147 ], [ 63.017578, 35.389050 ], [ 65.742188, 37.649034 ], [ 69.169922, 37.160317 ], [ 70.839844, 38.479395 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.623047, 42.747012 ], [ 59.941406, 42.228517 ], [ 60.468750, 41.244772 ], [ 61.875000, 41.112469 ], [ 62.402344, 40.044438 ], [ 64.160156, 38.891033 ], [ 66.533203, 37.996163 ], [ 66.533203, 37.370157 ], [ 65.742188, 37.649034 ], [ 64.511719, 36.315125 ], [ 62.226562, 35.245619 ], [ 61.171875, 35.675147 ], [ 61.083984, 36.456636 ], [ 57.304688, 37.996163 ], [ 55.546875, 37.996163 ], [ 53.964844, 37.230328 ], [ 53.876953, 38.959409 ], [ 53.085938, 39.300299 ], [ 53.349609, 39.977120 ], [ 52.734375, 40.044438 ], [ 52.910156, 40.847060 ], [ 54.755859, 40.979898 ], [ 53.701172, 42.098222 ], [ 52.910156, 41.836828 ], [ 52.822266, 41.112469 ], [ 52.470703, 41.771312 ], [ 54.052734, 42.293564 ], [ 55.458984, 41.244772 ], [ 57.128906, 41.310824 ], [ 56.953125, 41.836828 ], [ 58.623047, 42.747012 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 11.609193 ], [ 51.152344, 7.275292 ], [ 46.757812, 7.275292 ], [ 46.757812, 11.609193 ], [ 51.152344, 11.609193 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 51.152344, 12.039321 ], [ 50.537109, 9.188870 ], [ 48.603516, 5.353521 ], [ 41.572266, -1.669686 ], [ 40.957031, -0.878872 ], [ 40.957031, 2.811371 ], [ 42.099609, 4.214943 ], [ 45.000000, 5.003394 ], [ 48.955078, 9.449062 ], [ 48.955078, 11.436955 ], [ 51.152344, 12.039321 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 58.535156, 45.583290 ], [ 62.050781, 43.516689 ], [ 64.863281, 43.707594 ], [ 66.093750, 43.004647 ], [ 66.708984, 41.178654 ], [ 68.027344, 41.112469 ], [ 68.291016, 40.647304 ], [ 70.927734, 42.293564 ], [ 70.400391, 41.508577 ], [ 73.037109, 40.847060 ], [ 71.806641, 40.178873 ], [ 70.576172, 40.245992 ], [ 70.664062, 40.979898 ], [ 69.345703, 40.713956 ], [ 68.554688, 39.504041 ], [ 67.412109, 39.164141 ], [ 68.378906, 38.134557 ], [ 67.851562, 37.160317 ], [ 66.533203, 37.370157 ], [ 66.533203, 37.996163 ], [ 64.160156, 38.891033 ], [ 62.402344, 40.044438 ], [ 61.875000, 41.112469 ], [ 60.468750, 41.244772 ], [ 59.941406, 42.228517 ], [ 58.623047, 42.747012 ], [ 56.953125, 41.836828 ], [ 57.128906, 41.310824 ], [ 55.986328, 41.310824 ], [ 55.898438, 44.964798 ], [ 58.535156, 45.583290 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.574219, 53.435719 ], [ 125.947266, 52.802761 ], [ 127.617188, 49.781264 ], [ 129.375000, 49.439557 ], [ 130.957031, 47.813155 ], [ 135.000000, 48.458352 ], [ 133.066406, 45.151053 ], [ 131.044922, 44.964798 ], [ 130.605469, 42.423457 ], [ 129.990234, 43.004647 ], [ 128.056641, 41.967659 ], [ 128.232422, 41.442726 ], [ 126.826172, 41.836828 ], [ 124.277344, 39.909736 ], [ 121.025391, 38.891033 ], [ 122.167969, 40.446947 ], [ 121.640625, 40.913513 ], [ 117.509766, 38.754083 ], [ 119.707031, 37.160317 ], [ 120.849609, 37.857507 ], [ 122.343750, 37.439974 ], [ 122.519531, 36.949892 ], [ 121.113281, 36.668419 ], [ 119.179688, 34.885931 ], [ 120.234375, 34.379713 ], [ 121.904297, 31.728167 ], [ 121.289062, 30.675715 ], [ 122.080078, 29.840644 ], [ 121.640625, 28.226970 ], [ 118.652344, 24.527135 ], [ 115.927734, 22.755921 ], [ 110.742188, 21.371244 ], [ 110.478516, 20.303418 ], [ 109.863281, 20.303418 ], [ 109.863281, 21.371244 ], [ 107.050781, 21.779905 ], [ 106.699219, 22.755921 ], [ 105.292969, 23.322080 ], [ 101.689453, 22.350076 ], [ 101.777344, 21.207459 ], [ 99.228516, 22.105999 ], [ 99.492188, 22.917923 ], [ 98.701172, 24.046464 ], [ 97.646484, 23.885838 ], [ 97.734375, 25.085599 ], [ 98.701172, 25.958045 ], [ 98.701172, 27.527758 ], [ 97.910156, 28.304381 ], [ 96.240234, 28.381735 ], [ 96.152344, 29.458731 ], [ 94.570312, 29.305561 ], [ 92.460938, 27.916767 ], [ 90.000000, 28.304381 ], [ 88.857422, 27.293689 ], [ 88.769531, 28.071980 ], [ 85.781250, 28.226970 ], [ 82.353516, 30.145127 ], [ 81.123047, 30.221102 ], [ 78.750000, 31.503629 ], [ 78.925781, 34.307144 ], [ 77.871094, 35.460670 ], [ 76.201172, 35.889050 ], [ 74.882812, 38.410558 ], [ 73.916016, 38.479395 ], [ 73.828125, 39.909736 ], [ 76.552734, 40.446947 ], [ 76.904297, 41.046217 ], [ 80.156250, 42.098222 ], [ 80.156250, 42.940339 ], [ 80.859375, 43.197167 ], [ 79.980469, 44.902578 ], [ 82.441406, 45.521744 ], [ 83.144531, 47.338823 ], [ 85.166016, 46.980252 ], [ 85.781250, 48.458352 ], [ 87.714844, 49.325122 ], [ 87.978516, 48.574790 ], [ 90.263672, 47.694974 ], [ 90.966797, 46.860191 ], [ 90.966797, 45.274886 ], [ 95.273438, 44.213710 ], [ 96.328125, 42.747012 ], [ 100.810547, 42.682435 ], [ 104.941406, 41.574361 ], [ 110.390625, 42.875964 ], [ 111.796875, 43.771094 ], [ 111.357422, 44.465151 ], [ 111.884766, 45.089036 ], [ 113.466797, 44.777936 ], [ 117.421875, 46.679594 ], [ 119.707031, 46.679594 ], [ 118.037109, 48.048710 ], [ 115.751953, 47.754098 ], [ 115.488281, 48.107431 ], [ 116.718750, 49.894634 ], [ 117.861328, 49.496675 ], [ 119.267578, 50.120578 ], [ 120.761719, 51.944265 ], [ 120.146484, 52.749594 ], [ 121.025391, 53.225768 ], [ 123.574219, 53.435719 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 69.609375, 40.847060 ], [ 69.609375, 37.439974 ], [ 65.214844, 37.439974 ], [ 65.214844, 40.847060 ], [ 69.609375, 40.847060 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 75.146484, 37.160317 ], [ 76.201172, 35.889050 ], [ 77.871094, 35.460670 ], [ 76.904297, 34.669359 ], [ 74.267578, 34.741612 ], [ 73.740234, 34.307144 ], [ 75.234375, 32.249974 ], [ 71.806641, 27.916767 ], [ 70.576172, 27.994401 ], [ 69.521484, 26.902477 ], [ 71.015625, 24.367114 ], [ 68.818359, 24.367114 ], [ 68.203125, 23.725012 ], [ 66.357422, 25.403585 ], [ 61.523438, 25.085599 ], [ 61.875000, 26.273714 ], [ 63.281250, 26.745610 ], [ 62.753906, 28.226970 ], [ 60.908203, 29.840644 ], [ 62.578125, 29.305561 ], [ 66.357422, 29.916852 ], [ 66.972656, 31.278551 ], [ 69.345703, 31.877558 ], [ 70.312500, 33.358062 ], [ 69.960938, 34.016242 ], [ 71.191406, 34.379713 ], [ 71.806641, 36.527295 ], [ 75.146484, 37.160317 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 90.263672, 28.381735 ], [ 90.263672, 24.447150 ], [ 85.869141, 24.447150 ], [ 85.869141, 28.381735 ], [ 90.263672, 28.381735 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 77.871094, 35.460670 ], [ 78.925781, 34.307144 ], [ 78.750000, 31.503629 ], [ 81.123047, 30.221102 ], [ 80.068359, 28.767659 ], [ 83.320312, 27.371767 ], [ 88.066406, 26.431228 ], [ 88.154297, 27.839076 ], [ 88.769531, 28.071980 ], [ 88.857422, 27.137368 ], [ 89.736328, 26.745610 ], [ 92.021484, 26.824071 ], [ 91.669922, 27.761330 ], [ 96.152344, 29.458731 ], [ 96.240234, 28.381735 ], [ 97.382812, 27.916767 ], [ 97.119141, 27.059126 ], [ 95.097656, 26.588527 ], [ 92.636719, 22.024546 ], [ 92.109375, 23.644524 ], [ 91.669922, 22.998852 ], [ 91.142578, 23.483401 ], [ 92.373047, 25.005973 ], [ 89.912109, 25.244696 ], [ 89.824219, 25.958045 ], [ 88.593750, 26.431228 ], [ 88.242188, 25.799891 ], [ 88.945312, 25.244696 ], [ 88.066406, 24.527135 ], [ 88.681641, 24.206890 ], [ 88.857422, 21.698265 ], [ 87.011719, 21.534847 ], [ 86.484375, 20.138470 ], [ 82.177734, 16.551962 ], [ 80.332031, 15.876809 ], [ 79.892578, 10.314919 ], [ 77.519531, 7.972198 ], [ 73.564453, 15.961329 ], [ 72.597656, 21.371244 ], [ 70.488281, 20.879343 ], [ 68.203125, 23.725012 ], [ 68.818359, 24.367114 ], [ 71.015625, 24.367114 ], [ 69.521484, 26.902477 ], [ 70.576172, 27.994401 ], [ 71.806641, 27.916767 ], [ 75.234375, 32.249974 ], [ 73.740234, 34.307144 ], [ 74.267578, 34.741612 ], [ 76.904297, 34.669359 ], [ 77.871094, 35.460670 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 98.876953, 52.052490 ], [ 102.041016, 51.234407 ], [ 102.216797, 50.513427 ], [ 103.710938, 50.064192 ], [ 106.875000, 50.289339 ], [ 108.457031, 49.267805 ], [ 110.654297, 49.152970 ], [ 114.345703, 50.233152 ], [ 116.718750, 49.894634 ], [ 115.751953, 47.754098 ], [ 118.037109, 48.048710 ], [ 119.794922, 47.040182 ], [ 119.707031, 46.679594 ], [ 117.421875, 46.679594 ], [ 113.466797, 44.777936 ], [ 111.884766, 45.089036 ], [ 111.357422, 44.465151 ], [ 111.796875, 43.771094 ], [ 110.390625, 42.875964 ], [ 104.941406, 41.574361 ], [ 100.810547, 42.682435 ], [ 96.328125, 42.747012 ], [ 95.273438, 44.213710 ], [ 90.966797, 45.274886 ], [ 90.966797, 46.860191 ], [ 90.263672, 47.694974 ], [ 87.978516, 48.574790 ], [ 87.714844, 49.325122 ], [ 92.197266, 50.792047 ], [ 97.294922, 49.724479 ], [ 98.261719, 50.401515 ], [ 97.822266, 51.013755 ], [ 98.876953, 52.052490 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 94.570312, 22.674847 ], [ 94.570312, 18.562947 ], [ 90.175781, 18.562947 ], [ 90.175781, 22.674847 ], [ 94.570312, 22.674847 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 97.910156, 28.304381 ], [ 98.701172, 27.527758 ], [ 98.701172, 25.958045 ], [ 97.734375, 25.085599 ], [ 97.646484, 23.885838 ], [ 98.701172, 24.046464 ], [ 99.492188, 22.917923 ], [ 99.228516, 22.105999 ], [ 101.162109, 21.453069 ], [ 98.261719, 19.725342 ], [ 97.382812, 18.479609 ], [ 98.876953, 16.214675 ], [ 98.173828, 15.114553 ], [ 99.580078, 11.867351 ], [ 98.525391, 9.968851 ], [ 98.525391, 13.154376 ], [ 97.207031, 16.888660 ], [ 95.361328, 15.707663 ], [ 94.218750, 16.045813 ], [ 94.306641, 18.229351 ], [ 92.285156, 21.453069 ], [ 93.164062, 22.268764 ], [ 93.339844, 24.046464 ], [ 94.130859, 23.885838 ], [ 95.097656, 26.588527 ], [ 97.119141, 27.059126 ], [ 97.294922, 28.226970 ], [ 97.910156, 28.304381 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 102.128906, 22.431340 ], [ 103.183594, 20.797201 ], [ 104.414062, 20.797201 ], [ 104.853516, 19.890723 ], [ 103.886719, 19.228177 ], [ 107.314453, 15.876809 ], [ 107.402344, 14.179186 ], [ 105.205078, 14.264383 ], [ 105.556641, 15.538376 ], [ 103.974609, 18.229351 ], [ 101.074219, 17.476432 ], [ 101.250000, 19.476950 ], [ 100.107422, 20.385825 ], [ 101.162109, 21.453069 ], [ 101.777344, 21.207459 ], [ 101.689453, 22.350076 ], [ 102.128906, 22.431340 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.107422, 20.385825 ], [ 101.250000, 19.476950 ], [ 101.074219, 17.476432 ], [ 103.974609, 18.229351 ], [ 105.556641, 15.538376 ], [ 105.205078, 14.264383 ], [ 103.007812, 14.264383 ], [ 102.304688, 13.410994 ], [ 102.568359, 12.211180 ], [ 100.107422, 13.410994 ], [ 99.228516, 9.275622 ], [ 99.843750, 9.188870 ], [ 100.458984, 7.449624 ], [ 102.128906, 6.227934 ], [ 101.162109, 5.703448 ], [ 98.173828, 8.320212 ], [ 99.580078, 11.867351 ], [ 98.173828, 15.114553 ], [ 98.876953, 16.214675 ], [ 97.382812, 18.479609 ], [ 98.261719, 19.725342 ], [ 100.107422, 20.385825 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.732422, 12.811801 ], [ 105.732422, 8.494105 ], [ 101.337891, 8.494105 ], [ 101.337891, 12.811801 ], [ 105.732422, 12.811801 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.292969, 23.322080 ], [ 108.017578, 21.534847 ], [ 105.644531, 19.062118 ], [ 108.896484, 15.284185 ], [ 109.335938, 13.410994 ], [ 109.160156, 11.695273 ], [ 105.117188, 8.581021 ], [ 105.117188, 9.882275 ], [ 104.326172, 10.487812 ], [ 106.259766, 10.919618 ], [ 105.820312, 11.609193 ], [ 107.490234, 12.297068 ], [ 107.578125, 15.199386 ], [ 105.117188, 18.646245 ], [ 103.886719, 19.228177 ], [ 104.853516, 19.890723 ], [ 104.414062, 20.797201 ], [ 103.183594, 20.797201 ], [ 102.128906, 22.431340 ], [ 105.292969, 23.322080 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 127.441406, 39.368279 ], [ 127.441406, 35.889050 ], [ 123.046875, 35.889050 ], [ 123.046875, 39.368279 ], [ 127.441406, 39.368279 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 130.517578, 40.313043 ], [ 130.517578, 36.879621 ], [ 126.123047, 36.879621 ], [ 126.123047, 40.313043 ], [ 130.517578, 40.313043 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.376953, 7.623887 ], [ 121.376953, 3.250209 ], [ 116.982422, 3.250209 ], [ 116.982422, 7.623887 ], [ 121.376953, 7.623887 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.156250, 11.178402 ], [ 125.156250, 6.839170 ], [ 120.761719, 6.839170 ], [ 120.761719, 11.178402 ], [ 125.156250, 11.178402 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.328125, 41.376809 ], [ 141.855469, 39.164141 ], [ 140.976562, 38.203655 ], [ 140.273438, 35.173808 ], [ 137.197266, 34.597042 ], [ 135.791016, 33.431441 ], [ 135.087891, 34.597042 ], [ 130.957031, 33.870416 ], [ 132.011719, 33.137551 ], [ 130.693359, 31.052934 ], [ 129.375000, 33.284620 ], [ 132.626953, 35.460670 ], [ 135.703125, 35.532226 ], [ 136.757812, 37.300275 ], [ 137.373047, 36.809285 ], [ 139.394531, 38.203655 ], [ 139.921875, 40.580585 ], [ 141.328125, 41.376809 ] ] ], [ [ [ 147.480469, 45.951150 ], [ 147.480469, 42.811522 ], [ 143.085938, 42.811522 ], [ 143.085938, 45.951150 ], [ 147.480469, 45.951150 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.919922, 2.284551 ], [ 13.271484, 1.318243 ], [ 14.238281, 1.230374 ], [ 13.886719, 0.000000 ], [ 14.326172, -2.021065 ], [ 13.974609, -2.460181 ], [ 12.568359, -1.933227 ], [ 11.074219, -3.951941 ], [ 8.789062, -0.790990 ], [ 9.492188, 0.966751 ], [ 11.250000, 1.054628 ], [ 11.250000, 2.284551 ], [ 12.919922, 2.284551 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, -5.878332 ], [ 17.490234, -8.059230 ], [ 18.984375, -7.972198 ], [ 20.126953, -6.926427 ], [ 21.708984, -7.275292 ], [ 22.148438, -11.092166 ], [ 23.994141, -11.264612 ], [ 23.994141, -12.897489 ], [ 21.972656, -12.897489 ], [ 21.884766, -16.045813 ], [ 23.203125, -17.560247 ], [ 21.357422, -17.895114 ], [ 13.447266, -16.972741 ], [ 11.777344, -17.308688 ], [ 12.216797, -14.434680 ], [ 13.710938, -11.264612 ], [ 12.304688, -6.140555 ], [ 16.347656, -5.878332 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.447266, -16.972741 ], [ 21.357422, -17.895114 ], [ 25.048828, -17.560247 ], [ 23.554688, -18.312811 ], [ 20.917969, -18.229351 ], [ 20.917969, -21.779905 ], [ 19.863281, -21.861499 ], [ 19.863281, -28.459033 ], [ 18.457031, -29.075375 ], [ 16.787109, -28.071980 ], [ 16.347656, -28.613459 ], [ 15.205078, -27.059126 ], [ 14.238281, -22.105999 ], [ 11.777344, -17.308688 ], [ 13.447266, -16.972741 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.333984, 5.266008 ], [ 27.949219, 4.390229 ], [ 29.707031, 4.565474 ], [ 30.849609, 3.513421 ], [ 31.201172, 2.196727 ], [ 29.882812, 0.615223 ], [ 29.003906, -2.811371 ], [ 29.443359, -5.965754 ], [ 30.761719, -8.320212 ], [ 29.003906, -8.407168 ], [ 28.476562, -9.188870 ], [ 28.388672, -11.781325 ], [ 29.619141, -12.211180 ], [ 29.707031, -13.239945 ], [ 27.158203, -11.609193 ], [ 22.148438, -11.092166 ], [ 21.708984, -7.275292 ], [ 20.126953, -6.926427 ], [ 18.984375, -7.972198 ], [ 17.490234, -8.059230 ], [ 16.347656, -5.878332 ], [ 12.304688, -6.140555 ], [ 12.656250, -5.003394 ], [ 13.623047, -4.477856 ], [ 14.589844, -5.003394 ], [ 15.996094, -3.513421 ], [ 16.435547, -1.757537 ], [ 17.666016, -0.439449 ], [ 18.544922, 4.214943 ], [ 19.511719, 5.003394 ], [ 22.412109, 4.039618 ], [ 24.433594, 5.090944 ], [ 27.333984, 5.266008 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.013672, 4.214943 ], [ 35.068359, 1.933227 ], [ 33.925781, -0.966751 ], [ 29.619141, -1.318243 ], [ 29.882812, 0.615223 ], [ 31.201172, 2.196727 ], [ 30.849609, 3.513421 ], [ 34.013672, 4.214943 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.925781, -0.966751 ], [ 37.705078, -3.074695 ], [ 39.199219, -4.653080 ], [ 38.759766, -5.878332 ], [ 39.462891, -6.839170 ], [ 39.199219, -8.494105 ], [ 40.341797, -10.314919 ], [ 37.441406, -11.609193 ], [ 34.541016, -11.523088 ], [ 33.750000, -9.449062 ], [ 30.761719, -8.320212 ], [ 29.355469, -4.477856 ], [ 30.761719, -3.337954 ], [ 30.410156, -1.142502 ], [ 33.925781, -0.966751 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.322266, -8.233237 ], [ 33.222656, -9.709057 ], [ 33.310547, -12.468760 ], [ 32.695312, -13.752725 ], [ 33.222656, -14.008696 ], [ 30.146484, -14.774883 ], [ 30.234375, -15.538376 ], [ 27.070312, -17.978733 ], [ 23.203125, -17.560247 ], [ 21.884766, -16.045813 ], [ 21.972656, -12.897489 ], [ 23.994141, -12.897489 ], [ 23.906250, -10.919618 ], [ 25.751953, -11.781325 ], [ 27.158203, -11.609193 ], [ 29.707031, -13.239945 ], [ 29.619141, -12.211180 ], [ 28.388672, -11.781325 ], [ 28.740234, -8.494105 ], [ 30.322266, -8.233237 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.234375, -15.538376 ], [ 32.871094, -16.720385 ], [ 32.695312, -20.303418 ], [ 31.201172, -22.268764 ], [ 29.443359, -22.105999 ], [ 28.037109, -21.453069 ], [ 25.224609, -17.727759 ], [ 27.070312, -17.978733 ], [ 30.234375, -15.538376 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.265625, -14.689881 ], [ 37.265625, -18.895893 ], [ 32.871094, -18.895893 ], [ 32.871094, -14.689881 ], [ 37.265625, -14.689881 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.332031, 5.528511 ], [ 38.144531, 3.601142 ], [ 41.835938, 3.951941 ], [ 40.957031, 2.811371 ], [ 40.957031, -0.878872 ], [ 41.572266, -1.669686 ], [ 40.253906, -2.547988 ], [ 39.199219, -4.653080 ], [ 33.925781, -0.966751 ], [ 35.068359, 1.933227 ], [ 34.013672, 4.214943 ], [ 35.332031, 5.528511 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 40.341797, -10.314919 ], [ 40.517578, -15.368950 ], [ 34.804688, -19.808054 ], [ 35.419922, -24.126702 ], [ 33.046875, -25.324167 ], [ 32.871094, -26.745610 ], [ 32.080078, -26.745610 ], [ 31.201172, -22.268764 ], [ 32.695312, -20.303418 ], [ 32.871094, -16.720385 ], [ 30.322266, -15.876809 ], [ 30.146484, -14.774883 ], [ 33.222656, -14.008696 ], [ 34.453125, -14.604847 ], [ 34.365234, -16.214675 ], [ 35.068359, -16.804541 ], [ 35.771484, -15.876809 ], [ 35.683594, -14.604847 ], [ 34.541016, -13.581921 ], [ 34.541016, -11.523088 ], [ 37.441406, -11.609193 ], [ 40.341797, -10.314919 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 49.218750, -12.039321 ], [ 50.361328, -15.707663 ], [ 49.658203, -15.707663 ], [ 47.109375, -24.926295 ], [ 45.439453, -25.562265 ], [ 44.033203, -25.005973 ], [ 43.330078, -22.755921 ], [ 44.472656, -19.394068 ], [ 43.945312, -17.392579 ], [ 44.472656, -16.214675 ], [ 46.318359, -15.792254 ], [ 47.724609, -14.604847 ], [ 49.218750, -12.039321 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.048828, -17.644022 ], [ 28.037109, -21.453069 ], [ 29.443359, -22.105999 ], [ 27.158203, -23.563987 ], [ 25.664062, -25.482951 ], [ 23.291016, -25.244696 ], [ 20.917969, -26.824071 ], [ 19.863281, -24.766785 ], [ 19.863281, -21.861499 ], [ 20.917969, -21.779905 ], [ 20.917969, -18.229351 ], [ 25.048828, -17.644022 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.443359, -22.105999 ], [ 31.201172, -22.268764 ], [ 31.816406, -25.878994 ], [ 31.025391, -25.720735 ], [ 30.673828, -26.745610 ], [ 31.289062, -27.293689 ], [ 32.871094, -26.745610 ], [ 32.167969, -28.767659 ], [ 28.916016, -32.175612 ], [ 25.751953, -33.943360 ], [ 22.587891, -33.870416 ], [ 19.599609, -34.813803 ], [ 18.369141, -34.161818 ], [ 18.193359, -31.653381 ], [ 16.347656, -28.613459 ], [ 16.787109, -28.071980 ], [ 18.457031, -29.075375 ], [ 19.863281, -28.459033 ], [ 19.863281, -24.766785 ], [ 20.917969, -26.824071 ], [ 21.621094, -26.745610 ], [ 23.291016, -25.244696 ], [ 25.664062, -25.482951 ], [ 27.158203, -23.563987 ], [ 29.443359, -22.105999 ] ], [ [ 28.564453, -28.613459 ], [ 26.982422, -29.840644 ], [ 27.773438, -30.675715 ], [ 29.355469, -29.228890 ], [ 28.564453, -28.613459 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.363281, -0.351560 ], [ 133.945312, -0.790990 ], [ 134.384766, -2.811371 ], [ 135.439453, -3.337954 ], [ 137.460938, -1.669686 ], [ 140.976562, -2.635789 ], [ 141.064453, -9.102097 ], [ 140.185547, -8.320212 ], [ 137.636719, -8.407168 ], [ 138.691406, -7.362467 ], [ 137.900391, -5.353521 ], [ 133.681641, -3.513421 ], [ 132.978516, -4.127285 ], [ 132.011719, -2.811371 ], [ 133.681641, -2.196727 ], [ 132.275391, -2.196727 ], [ 130.517578, -0.966751 ], [ 132.363281, -0.351560 ] ] ], [ [ [ 95.273438, 5.441022 ], [ 97.470703, 5.266008 ], [ 100.634766, 2.108899 ], [ 101.689453, 2.108899 ], [ 103.798828, 0.087891 ], [ 103.447266, -0.703107 ], [ 106.083984, -3.074695 ], [ 105.908203, -4.653080 ], [ 107.578125, -4.653080 ], [ 107.578125, -9.015302 ], [ 103.183594, -9.015302 ], [ 103.183594, -4.740675 ], [ 103.183594, -4.653080 ], [ 102.568359, -4.214943 ], [ 98.613281, 1.845384 ], [ 95.273438, 5.441022 ] ] ], [ [ [ 115.839844, 4.302591 ], [ 117.861328, 4.127285 ], [ 117.333984, 3.250209 ], [ 119.003906, 0.878872 ], [ 117.773438, 0.790990 ], [ 116.191406, -4.039618 ], [ 110.214844, -2.899153 ], [ 108.984375, 0.439449 ], [ 109.687500, 2.021065 ], [ 110.478516, 0.790990 ], [ 113.818359, 1.230374 ], [ 114.609375, 1.406109 ], [ 115.839844, 4.302591 ] ] ], [ [ [ 121.552734, -3.162456 ], [ 121.552734, -7.536764 ], [ 117.158203, -7.536764 ], [ 117.158203, -3.162456 ], [ 121.552734, -3.162456 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 150.117188, -41.574361 ], [ 150.117188, -44.777936 ], [ 145.722656, -44.777936 ], [ 145.722656, -41.574361 ], [ 150.117188, -41.574361 ] ] ], [ [ [ 142.558594, -10.660608 ], [ 143.964844, -14.519780 ], [ 144.580078, -14.179186 ], [ 145.371094, -14.944785 ], [ 146.425781, -18.979026 ], [ 148.886719, -20.385825 ], [ 149.677734, -22.350076 ], [ 150.732422, -22.431340 ], [ 150.908203, -23.483401 ], [ 152.841797, -25.244696 ], [ 153.544922, -28.071980 ], [ 152.929688, -31.653381 ], [ 150.996094, -34.307144 ], [ 150.029297, -37.439974 ], [ 146.337891, -39.027719 ], [ 144.843750, -38.410558 ], [ 145.019531, -37.926868 ], [ 143.613281, -38.822591 ], [ 140.625000, -37.996163 ], [ 139.570312, -36.173357 ], [ 138.164062, -35.603719 ], [ 138.164062, -34.379713 ], [ 136.845703, -35.245619 ], [ 137.812500, -32.916485 ], [ 135.966797, -34.885931 ], [ 134.296875, -32.620870 ], [ 131.308594, -31.503629 ], [ 126.123047, -32.249974 ], [ 124.189453, -32.990236 ], [ 123.662109, -33.870416 ], [ 119.882812, -33.943360 ], [ 118.037109, -35.029996 ], [ 116.630859, -35.029996 ], [ 115.048828, -34.161818 ], [ 115.839844, -32.175612 ], [ 113.378906, -26.115986 ], [ 113.818359, -26.509905 ], [ 113.466797, -25.641526 ], [ 114.257812, -26.273714 ], [ 113.378906, -24.367114 ], [ 113.730469, -22.512557 ], [ 116.718750, -20.715015 ], [ 120.849609, -19.642588 ], [ 123.046875, -16.383391 ], [ 123.837891, -17.056785 ], [ 123.486328, -16.636192 ], [ 125.683594, -14.264383 ], [ 127.089844, -13.838080 ], [ 129.638672, -14.944785 ], [ 130.605469, -12.554564 ], [ 132.539062, -12.125264 ], [ 131.835938, -11.264612 ], [ 132.363281, -11.092166 ], [ 135.263672, -12.211180 ], [ 136.494141, -11.867351 ], [ 136.933594, -12.382928 ], [ 135.527344, -15.029686 ], [ 140.185547, -17.727759 ], [ 141.240234, -16.383391 ], [ 141.679688, -12.382928 ], [ 142.558594, -10.660608 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 140.976562, -2.635789 ], [ 144.580078, -3.864255 ], [ 145.986328, -5.441022 ], [ 147.656250, -6.053161 ], [ 147.216797, -7.362467 ], [ 150.732422, -10.574222 ], [ 147.919922, -10.141932 ], [ 146.074219, -8.059230 ], [ 144.755859, -7.623887 ], [ 142.646484, -9.362353 ], [ 141.064453, -9.102097 ], [ 140.976562, -2.635789 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 177.451172, -40.044438 ], [ 177.451172, -43.325178 ], [ 173.056641, -43.325178 ], [ 173.056641, -43.004647 ], [ 172.705078, -43.389082 ], [ 173.056641, -43.834527 ], [ 171.474609, -44.213710 ], [ 170.595703, -45.890008 ], [ 169.365234, -46.619261 ], [ 166.640625, -46.195042 ], [ 167.080078, -45.089036 ], [ 170.507812, -43.004647 ], [ 172.089844, -40.979898 ], [ 172.792969, -40.513799 ], [ 173.056641, -40.979898 ], [ 173.056641, -40.044438 ], [ 177.451172, -40.044438 ] ] ], [ [ [ -182.548828, -40.044438 ], [ -182.548828, -43.325178 ], [ -186.943359, -43.325178 ], [ -186.943359, -40.044438 ], [ -182.548828, -40.044438 ] ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -46.669922, -77.823323 ], [ -45.175781, -78.043795 ], [ -43.945312, -78.473002 ], [ -43.330078, -80.027655 ], [ -48.427734, -80.830907 ], [ -50.449219, -81.024916 ], [ -52.822266, -80.969904 ], [ -54.140625, -80.632740 ], [ -53.964844, -80.223588 ], [ -51.855469, -79.951265 ], [ -48.691406, -78.043795 ], [ -46.669922, -77.823323 ] ] ], [ [ [ -60.644531, -79.624056 ], [ -59.589844, -80.042864 ], [ -60.117188, -80.997452 ], [ -62.226562, -80.858875 ], [ -64.511719, -80.928426 ], [ -66.269531, -80.253391 ], [ -61.875000, -80.386396 ], [ -60.644531, -79.624056 ] ] ], [ [ [ -57.832031, -63.273182 ], [ -57.216797, -63.509375 ], [ -57.568359, -63.860036 ], [ -59.062500, -64.358931 ], [ -60.644531, -64.320872 ], [ -62.490234, -65.109148 ], [ -62.138672, -66.196009 ], [ -63.720703, -66.513260 ], [ -65.654297, -67.941650 ], [ -63.193359, -69.224997 ], [ -61.523438, -71.102543 ], [ -60.732422, -73.175897 ], [ -61.347656, -74.116047 ], [ -61.962891, -74.449358 ], [ -63.281250, -74.566736 ], [ -64.335938, -75.253057 ], [ -69.785156, -76.226907 ], [ -70.576172, -76.639226 ], [ -77.255859, -76.720223 ], [ -76.904297, -77.098423 ], [ -74.267578, -77.561042 ], [ -73.652344, -77.915669 ], [ -74.794922, -78.224513 ], [ -76.464844, -78.116408 ], [ -77.958984, -78.384855 ], [ -78.046875, -79.187834 ], [ -75.322266, -80.253391 ], [ -73.212891, -80.415707 ], [ -68.203125, -81.321593 ], [ -63.281250, -81.748454 ], [ -59.677734, -82.379147 ], [ -58.183594, -83.215693 ], [ -57.041016, -82.864308 ], [ -53.613281, -82.261699 ], [ -49.746094, -81.723188 ], [ -47.285156, -81.710526 ], [ -42.802734, -82.082145 ], [ -42.187500, -81.646927 ], [ -40.781250, -81.361287 ], [ -38.232422, -81.334844 ], [ -34.365234, -80.900669 ], [ -30.058594, -80.589727 ], [ -28.564453, -80.342262 ], [ -29.707031, -79.253586 ], [ -35.683594, -79.448477 ], [ -35.332031, -78.116408 ], [ -32.255859, -77.655346 ], [ -28.916016, -76.679785 ], [ -22.500000, -76.100796 ], [ -17.490234, -75.118222 ], [ -15.732422, -74.496413 ], [ -15.380859, -74.116047 ], [ -16.435547, -73.873717 ], [ -16.083984, -73.453473 ], [ -12.304688, -72.395706 ], [ -10.283203, -71.272595 ], [ -7.382812, -71.691293 ], [ -6.855469, -70.931004 ], [ -5.800781, -71.016960 ], [ -5.537109, -71.413177 ], [ -4.306641, -71.469124 ], [ -0.703125, -71.216075 ], [ -0.263672, -71.635993 ], [ 6.240234, -70.466207 ], [ 7.734375, -69.900118 ], [ 8.525391, -70.140364 ], [ 9.492188, -70.020587 ], [ 10.810547, -70.844673 ], [ 13.447266, -69.960439 ], [ 14.765625, -70.020587 ], [ 15.117188, -70.407348 ], [ 17.050781, -69.900118 ], [ 21.445312, -70.080562 ], [ 22.587891, -70.699951 ], [ 27.070312, -70.466207 ], [ 31.992188, -69.657086 ], [ 33.837891, -68.496040 ], [ 36.123047, -69.256149 ], [ 37.177734, -69.162558 ], [ 38.671875, -69.778952 ], [ 41.923828, -68.592487 ], [ 46.494141, -67.609221 ], [ 47.460938, -67.709445 ], [ 48.955078, -67.101656 ], [ 50.712891, -66.861082 ], [ 51.767578, -66.231457 ], [ 54.492188, -65.802776 ], [ 56.337891, -65.982270 ], [ 58.710938, -67.272043 ], [ 61.435547, -67.941650 ], [ 62.402344, -68.007571 ], [ 64.072266, -67.407487 ], [ 68.906250, -67.941650 ], [ 69.697266, -69.224997 ], [ 69.521484, -69.687618 ], [ 67.851562, -70.318738 ], [ 67.939453, -70.699951 ], [ 69.082031, -70.670881 ], [ 67.939453, -71.856229 ], [ 69.873047, -72.262310 ], [ 71.015625, -72.100944 ], [ 73.828125, -69.869892 ], [ 77.607422, -69.472969 ], [ 79.101562, -68.334376 ], [ 82.089844, -67.373698 ], [ 86.748047, -67.135829 ], [ 87.978516, -66.196009 ], [ 89.648438, -67.135829 ], [ 94.218750, -67.101656 ], [ 95.800781, -67.373698 ], [ 98.701172, -67.101656 ], [ 99.755859, -67.238062 ], [ 102.832031, -65.549367 ], [ 106.171875, -66.930060 ], [ 110.214844, -66.687784 ], [ 113.642578, -65.874725 ], [ 115.576172, -66.687784 ], [ 116.718750, -66.652977 ], [ 119.794922, -67.272043 ], [ 123.222656, -66.478208 ], [ 128.759766, -66.757250 ], [ 134.736328, -66.196009 ], [ 135.087891, -65.293468 ], [ 136.582031, -66.791909 ], [ 137.460938, -66.964476 ], [ 145.458984, -66.930060 ], [ 146.689453, -67.908619 ], [ 148.798828, -68.399180 ], [ 152.490234, -68.879358 ], [ 153.632812, -68.879358 ], [ 154.248047, -68.560384 ], [ 156.796875, -69.380313 ], [ 159.169922, -69.595890 ], [ 161.542969, -70.583418 ], [ 167.343750, -70.844673 ], [ 171.210938, -71.691293 ], [ 169.277344, -73.652545 ], [ 166.113281, -74.378513 ], [ 163.564453, -76.247817 ], [ 163.476562, -77.059116 ], [ 164.707031, -78.188586 ], [ 166.640625, -78.313860 ], [ 166.992188, -78.750659 ], [ 163.652344, -79.121686 ], [ 161.806641, -79.154810 ], [ 159.785156, -80.942273 ], [ 161.103516, -81.281717 ], [ 163.740234, -82.390794 ], [ 168.925781, -83.339153 ], [ 169.365234, -83.829945 ], [ 172.265625, -84.043447 ], [ 173.232422, -84.414502 ], [ 175.957031, -84.160849 ], [ 180.000000, -84.714152 ], [ 180.966797, -84.142939 ], [ 182.724609, -84.457112 ], [ 184.130859, -84.115970 ], [ 185.625000, -84.532994 ], [ 187.031250, -84.079819 ], [ 187.031250, -85.622069 ], [ 180.000000, -85.622069 ], [ -180.000000, -85.622069 ], [ -187.031250, -85.622069 ], [ -187.031250, -84.310902 ], [ -186.767578, -84.414502 ], [ -184.042969, -84.160849 ], [ -180.000000, -84.714152 ], [ -179.033203, -84.142939 ], [ -177.275391, -84.457112 ], [ -175.869141, -84.115970 ], [ -174.375000, -84.532994 ], [ -172.880859, -84.061661 ], [ -169.980469, -83.886366 ], [ -166.992188, -84.566386 ], [ -164.179688, -84.826305 ], [ -161.894531, -85.141284 ], [ -158.115234, -85.373767 ], [ -155.214844, -85.096413 ], [ -150.908203, -85.295131 ], [ -148.535156, -85.608630 ], [ -143.085938, -85.043541 ], [ -142.910156, -84.566386 ], [ -146.865234, -84.532994 ], [ -150.029297, -84.293450 ], [ -150.908203, -83.905058 ], [ -153.544922, -83.686615 ], [ -152.841797, -82.045740 ], [ -156.796875, -81.106811 ], [ -154.423828, -81.160996 ], [ -152.138672, -80.997452 ], [ -150.644531, -81.334844 ], [ -147.216797, -80.675559 ], [ -146.425781, -80.342262 ], [ -146.777344, -79.920548 ], [ -149.501953, -79.351472 ], [ -155.302734, -79.071812 ], [ -158.027344, -78.025574 ], [ -158.378906, -76.880775 ], [ -156.972656, -77.293202 ], [ -153.720703, -77.059116 ], [ -152.929688, -77.504119 ], [ -151.347656, -77.389504 ], [ -147.656250, -76.578159 ], [ -146.074219, -76.475773 ], [ -146.162109, -75.386696 ], [ -144.931641, -75.208245 ], [ -144.316406, -75.541113 ], [ -141.679688, -75.095633 ], [ -138.867188, -74.959392 ], [ -135.175781, -74.307353 ], [ -121.113281, -74.519889 ], [ -119.707031, -74.472903 ], [ -117.509766, -74.019543 ], [ -116.191406, -74.235878 ], [ -113.906250, -73.726595 ], [ -112.324219, -74.706450 ], [ -111.269531, -74.425777 ], [ -107.578125, -75.185789 ], [ -104.853516, -74.959392 ], [ -100.634766, -75.297735 ], [ -100.107422, -74.867889 ], [ -101.250000, -74.188052 ], [ -102.568359, -74.116047 ], [ -103.710938, -72.607120 ], [ -99.140625, -72.919635 ], [ -97.646484, -73.553302 ], [ -96.328125, -73.627789 ], [ -92.460938, -73.175897 ], [ -91.406250, -73.403338 ], [ -90.087891, -73.327858 ], [ -89.208984, -72.554498 ], [ -88.417969, -72.996909 ], [ -87.275391, -73.175897 ], [ -86.044922, -73.099413 ], [ -85.166016, -73.478485 ], [ -81.474609, -73.849286 ], [ -80.332031, -73.124945 ], [ -79.277344, -73.528399 ], [ -77.958984, -73.428424 ], [ -76.201172, -73.971078 ], [ -74.882812, -73.873717 ], [ -72.861328, -73.403338 ], [ -67.939453, -72.790088 ], [ -67.148438, -72.046840 ], [ -68.554688, -69.718107 ], [ -67.412109, -68.138852 ], [ -67.763672, -67.339861 ], [ -63.632812, -64.886265 ], [ -57.832031, -63.273182 ] ] ], [ [ [ -163.125000, -78.224513 ], [ -161.279297, -78.384855 ], [ -160.224609, -78.699106 ], [ -159.169922, -79.496652 ], [ -161.103516, -79.639874 ], [ -162.421875, -79.286313 ], [ -163.740234, -78.595299 ], [ -163.125000, -78.224513 ] ] ], [ [ [ -125.068359, -72.816074 ], [ -125.068359, -74.067866 ], [ -129.462891, -74.067866 ], [ -129.462891, -72.816074 ], [ -125.068359, -72.816074 ] ] ], [ [ [ -70.224609, -68.879358 ], [ -68.466797, -70.959697 ], [ -68.818359, -72.181804 ], [ -71.103516, -72.501722 ], [ -72.421875, -72.475276 ], [ -71.894531, -72.100944 ], [ -74.179688, -72.369105 ], [ -74.970703, -71.663663 ], [ -73.212891, -71.159391 ], [ -72.070312, -71.187754 ], [ -71.718750, -69.503765 ], [ -70.224609, -68.879358 ] ] ] ] } } +] } +] } diff --git a/tests/pbf/countries-1-1-0-clip.json b/tests/pbf/countries-1-1-0-clip.json new file mode 100644 index 000000000..c0b59155c --- /dev/null +++ b/tests/pbf/countries-1-1-0-clip.json @@ -0,0 +1,35 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "NAME": "France" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.790039, 49.979488 ], [ 4.790039, 49.979488 ], [ 4.877930, 49.922935 ], [ 4.833984, 49.781264 ], [ 4.965820, 49.809632 ], [ 5.141602, 49.696062 ], [ 5.273438, 49.696062 ], [ 5.273438, 49.610710 ], [ 5.361328, 49.639177 ], [ 5.449219, 49.496675 ], [ 5.800781, 49.553726 ], [ 5.800781, 49.496675 ], [ 5.976562, 49.439557 ], [ 6.064453, 49.439557 ], [ 6.108398, 49.496675 ], [ 6.416016, 49.468124 ], [ 6.591797, 49.353756 ], [ 6.547852, 49.325122 ], [ 6.723633, 49.210420 ], [ 6.723633, 49.152970 ], [ 6.855469, 49.152970 ], [ 6.811523, 49.210420 ], [ 6.943359, 49.210420 ], [ 7.031250, 49.181703 ], [ 7.031250, 49.095452 ], [ 7.075195, 49.152970 ], [ 7.294922, 49.095452 ], [ 7.426758, 49.181703 ], [ 7.646484, 49.037868 ], [ 7.910156, 49.037868 ], [ 8.217773, 48.951366 ], [ 7.866211, 48.661943 ], [ 7.822266, 48.516604 ], [ 7.734375, 48.458352 ], [ 7.690430, 48.224673 ], [ 7.558594, 48.107431 ], [ 7.602539, 47.901614 ], [ 7.514648, 47.665387 ], [ 7.602539, 47.576526 ], [ 7.470703, 47.546872 ], [ 7.514648, 47.517201 ], [ 7.426758, 47.487513 ], [ 7.426758, 47.428087 ], [ 6.987305, 47.487513 ], [ 6.987305, 47.428087 ], [ 6.855469, 47.368594 ], [ 7.031250, 47.368594 ], [ 7.031250, 47.309034 ], [ 6.855469, 47.159840 ], [ 6.723633, 47.129951 ], [ 6.767578, 47.100045 ], [ 6.679688, 47.070122 ], [ 6.679688, 47.010226 ], [ 6.416016, 46.920255 ], [ 6.416016, 46.739861 ], [ 6.108398, 46.589069 ], [ 6.152344, 46.558860 ], [ 6.064453, 46.407564 ], [ 6.152344, 46.346928 ], [ 6.108398, 46.255847 ], [ 5.976562, 46.225453 ], [ 5.976562, 46.134170 ], [ 6.108398, 46.134170 ], [ 6.284180, 46.225453 ], [ 6.196289, 46.316584 ], [ 6.284180, 46.407564 ], [ 6.547852, 46.468133 ], [ 6.767578, 46.437857 ], [ 6.767578, 46.134170 ], [ 6.855469, 46.134170 ], [ 6.855469, 46.042736 ], [ 7.031250, 45.951150 ], [ 6.987305, 45.859412 ], [ 6.855469, 45.859412 ], [ 6.767578, 45.767523 ], [ 6.899414, 45.614037 ], [ 4.965820, 45.828799 ], [ 3.383789, 47.338823 ], [ 4.218750, 49.922935 ], [ 4.350586, 49.922935 ], [ 4.482422, 49.922935 ], [ 4.614258, 49.979488 ], [ 4.790039, 49.979488 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Belgium" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.932617, 50.148746 ], [ 5.888672, 50.120578 ], [ 5.712891, 49.894634 ], [ 5.712891, 49.809632 ], [ 5.888672, 49.667628 ], [ 5.844727, 49.553726 ], [ 5.625000, 49.553726 ], [ 5.449219, 49.496675 ], [ 5.361328, 49.639177 ], [ 5.273438, 49.610710 ], [ 5.273438, 49.696062 ], [ 5.141602, 49.696062 ], [ 4.965820, 49.809632 ], [ 4.833984, 49.781264 ], [ 4.877930, 49.922935 ], [ 4.790039, 49.979488 ], [ 4.790039, 49.979488 ], [ 5.932617, 50.148746 ] ] ], [ [ [ 4.614258, 49.979488 ], [ 4.482422, 49.922935 ], [ 4.350586, 49.922935 ], [ 4.614258, 49.979488 ] ] ], [ [ [ 6.108398, 50.148746 ], [ 6.108398, 50.120578 ], [ 6.020508, 50.148746 ], [ 6.108398, 50.148746 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.064453, 50.148746 ], [ 6.108398, 50.148746 ], [ 6.108398, 50.007739 ], [ 6.240234, 49.866317 ], [ 6.503906, 49.809632 ], [ 6.503906, 49.696062 ], [ 6.416016, 49.667628 ], [ 6.328125, 49.468124 ], [ 6.108398, 49.496675 ], [ 6.064453, 49.439557 ], [ 5.976562, 49.439557 ], [ 5.800781, 49.496675 ], [ 5.888672, 49.667628 ], [ 5.800781, 49.724479 ], [ 5.712891, 49.894634 ], [ 5.888672, 50.120578 ], [ 5.932617, 50.148746 ], [ 6.064453, 50.148746 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Liechtenstein" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.492188, 47.249407 ], [ 9.624023, 47.129951 ], [ 9.580078, 47.040182 ], [ 9.492188, 47.070122 ], [ 9.492188, 47.249407 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Switzerland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.569336, 47.813155 ], [ 8.613281, 47.754098 ], [ 8.701172, 47.754098 ], [ 8.701172, 47.694974 ], [ 8.789062, 47.724545 ], [ 8.876953, 47.694974 ], [ 8.833008, 47.665387 ], [ 9.228516, 47.665387 ], [ 9.667969, 47.457809 ], [ 9.492188, 47.249407 ], [ 9.492188, 47.070122 ], [ 9.667969, 47.040182 ], [ 8.525391, 46.164614 ], [ 8.437500, 46.225453 ], [ 8.437500, 46.437857 ], [ 8.305664, 46.437857 ], [ 8.305664, 46.377254 ], [ 8.173828, 46.286224 ], [ 8.085938, 46.286224 ], [ 8.129883, 46.134170 ], [ 7.998047, 46.073231 ], [ 7.998047, 45.981695 ], [ 7.866211, 45.981695 ], [ 7.866211, 45.920587 ], [ 7.514648, 45.981695 ], [ 7.250977, 45.890008 ], [ 7.075195, 45.890008 ], [ 6.855469, 46.042736 ], [ 6.855469, 46.134170 ], [ 6.767578, 46.134170 ], [ 6.767578, 46.437857 ], [ 6.591797, 46.468133 ], [ 6.284180, 46.407564 ], [ 6.196289, 46.316584 ], [ 6.284180, 46.225453 ], [ 6.108398, 46.134170 ], [ 5.976562, 46.134170 ], [ 5.976562, 46.225453 ], [ 6.108398, 46.255847 ], [ 6.152344, 46.346928 ], [ 6.064453, 46.407564 ], [ 6.152344, 46.558860 ], [ 6.108398, 46.589069 ], [ 6.416016, 46.739861 ], [ 6.416016, 46.920255 ], [ 6.679688, 47.010226 ], [ 6.679688, 47.070122 ], [ 6.767578, 47.100045 ], [ 6.723633, 47.129951 ], [ 6.855469, 47.159840 ], [ 7.031250, 47.309034 ], [ 7.031250, 47.368594 ], [ 6.855469, 47.368594 ], [ 6.987305, 47.428087 ], [ 6.987305, 47.487513 ], [ 7.426758, 47.428087 ], [ 7.426758, 47.487513 ], [ 7.514648, 47.517201 ], [ 7.470703, 47.546872 ], [ 7.646484, 47.606163 ], [ 7.646484, 47.546872 ], [ 7.778320, 47.546872 ], [ 7.822266, 47.606163 ], [ 7.910156, 47.546872 ], [ 8.041992, 47.546872 ], [ 8.217773, 47.635784 ], [ 8.305664, 47.576526 ], [ 8.437500, 47.576526 ], [ 8.525391, 47.635784 ], [ 8.569336, 47.576526 ], [ 8.613281, 47.665387 ], [ 8.437500, 47.635784 ], [ 8.393555, 47.694974 ], [ 8.569336, 47.813155 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Czechia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.347656, 50.652943 ], [ 16.435547, 50.569283 ], [ 16.347656, 50.485474 ], [ 16.171875, 50.429518 ], [ 16.435547, 50.317408 ], [ 16.567383, 50.120578 ], [ 16.655273, 50.092393 ], [ 16.962891, 50.233152 ], [ 17.006836, 50.205033 ], [ 17.006836, 50.289339 ], [ 16.918945, 50.317408 ], [ 16.875000, 50.429518 ], [ 17.094727, 50.401515 ], [ 17.226562, 50.317408 ], [ 17.358398, 50.317408 ], [ 17.314453, 50.261254 ], [ 17.402344, 50.233152 ], [ 17.666016, 50.261254 ], [ 17.709961, 50.317408 ], [ 17.753906, 50.205033 ], [ 17.578125, 50.176898 ], [ 17.622070, 50.092393 ], [ 17.753906, 50.092393 ], [ 17.709961, 50.064192 ], [ 17.841797, 49.979488 ], [ 18.017578, 50.035974 ], [ 18.281250, 49.951220 ], [ 18.281250, 49.894634 ], [ 18.544922, 49.922935 ], [ 18.544922, 49.809632 ], [ 18.632812, 49.696062 ], [ 18.808594, 49.667628 ], [ 18.852539, 49.496675 ], [ 18.544922, 49.496675 ], [ 18.457031, 49.382373 ], [ 18.369141, 49.382373 ], [ 18.369141, 49.325122 ], [ 18.149414, 49.267805 ], [ 18.105469, 49.066668 ], [ 17.929688, 49.009051 ], [ 17.885742, 48.922499 ], [ 17.797852, 48.922499 ], [ 17.753906, 48.864715 ], [ 17.534180, 48.806863 ], [ 17.358398, 48.806863 ], [ 17.270508, 48.864715 ], [ 17.094727, 48.835797 ], [ 16.962891, 48.603858 ], [ 16.875000, 48.719961 ], [ 16.655273, 48.719961 ], [ 16.655273, 48.777913 ], [ 16.567383, 48.806863 ], [ 16.435547, 48.806863 ], [ 16.391602, 48.719961 ], [ 16.040039, 48.748945 ], [ 15.908203, 48.835797 ], [ 15.556641, 48.893615 ], [ 15.468750, 48.951366 ], [ 15.161133, 48.951366 ], [ 14.985352, 49.009051 ], [ 14.941406, 48.748945 ], [ 14.809570, 48.777913 ], [ 14.677734, 48.574790 ], [ 14.589844, 48.632909 ], [ 14.458008, 48.632909 ], [ 14.326172, 48.545705 ], [ 14.018555, 48.603858 ], [ 14.018555, 48.690960 ], [ 13.623047, 48.893615 ], [ 13.623047, 48.951366 ], [ 13.447266, 48.951366 ], [ 12.963867, 49.325122 ], [ 12.788086, 49.325122 ], [ 12.700195, 49.382373 ], [ 14.194336, 49.325122 ], [ 16.040039, 50.625073 ], [ 16.040039, 50.625073 ], [ 16.083984, 50.652943 ], [ 16.347656, 50.652943 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Germany" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.282227, 53.041213 ], [ 14.150391, 52.961875 ], [ 14.106445, 52.855864 ], [ 14.633789, 52.589701 ], [ 14.545898, 52.375599 ], [ 14.589844, 52.268157 ], [ 14.721680, 52.241256 ], [ 14.677734, 52.106505 ], [ 14.765625, 52.079506 ], [ 14.589844, 51.781436 ], [ 14.721680, 51.672555 ], [ 12.480469, 51.618017 ], [ 11.206055, 50.792047 ], [ 11.337891, 49.979488 ], [ 12.436523, 49.382373 ], [ 12.700195, 49.382373 ], [ 12.788086, 49.325122 ], [ 12.963867, 49.325122 ], [ 13.139648, 49.152970 ], [ 13.315430, 49.095452 ], [ 13.447266, 48.951366 ], [ 13.623047, 48.951366 ], [ 13.623047, 48.893615 ], [ 13.798828, 48.777913 ], [ 13.798828, 48.574790 ], [ 13.710938, 48.516604 ], [ 13.623047, 48.574790 ], [ 13.447266, 48.574790 ], [ 13.447266, 48.429201 ], [ 13.315430, 48.312428 ], [ 13.007812, 48.253941 ], [ 12.875977, 48.195387 ], [ 10.722656, 47.813155 ], [ 10.063477, 47.368594 ], [ 10.063477, 47.368594 ], [ 9.931641, 47.546872 ], [ 9.711914, 47.576526 ], [ 9.711914, 47.517201 ], [ 9.624023, 47.517201 ], [ 9.228516, 47.665387 ], [ 8.833008, 47.665387 ], [ 8.876953, 47.694974 ], [ 8.701172, 47.694974 ], [ 8.701172, 47.754098 ], [ 8.613281, 47.754098 ], [ 8.569336, 47.813155 ], [ 8.393555, 47.694974 ], [ 8.437500, 47.635784 ], [ 8.525391, 47.635784 ], [ 8.437500, 47.576526 ], [ 8.305664, 47.576526 ], [ 8.217773, 47.635784 ], [ 8.041992, 47.546872 ], [ 7.910156, 47.546872 ], [ 7.822266, 47.606163 ], [ 7.778320, 47.546872 ], [ 7.646484, 47.546872 ], [ 7.646484, 47.606163 ], [ 7.602539, 47.576526 ], [ 7.514648, 47.665387 ], [ 7.602539, 47.901614 ], [ 7.558594, 48.107431 ], [ 7.690430, 48.224673 ], [ 7.734375, 48.458352 ], [ 7.822266, 48.516604 ], [ 7.866211, 48.661943 ], [ 8.217773, 48.951366 ], [ 7.910156, 49.037868 ], [ 7.646484, 49.037868 ], [ 7.426758, 49.181703 ], [ 7.294922, 49.095452 ], [ 7.075195, 49.152970 ], [ 7.031250, 49.095452 ], [ 7.031250, 49.181703 ], [ 6.943359, 49.210420 ], [ 6.811523, 49.210420 ], [ 6.855469, 49.152970 ], [ 6.723633, 49.152970 ], [ 6.503906, 49.439557 ], [ 6.328125, 49.468124 ], [ 6.416016, 49.667628 ], [ 6.503906, 49.696062 ], [ 6.503906, 49.809632 ], [ 6.240234, 49.866317 ], [ 6.108398, 50.007739 ], [ 6.108398, 50.148746 ], [ 8.217773, 50.429518 ], [ 10.722656, 52.749594 ], [ 13.579102, 53.173119 ], [ 14.282227, 53.041213 ] ] ], [ [ [ 8.613281, 47.665387 ], [ 8.569336, 47.576526 ], [ 8.525391, 47.635784 ], [ 8.613281, 47.665387 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Italy" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.437500, 46.437857 ], [ 8.437500, 46.225453 ], [ 8.525391, 46.164614 ], [ 7.690430, 45.552525 ], [ 6.987305, 45.614037 ], [ 6.767578, 45.767523 ], [ 6.855469, 45.859412 ], [ 6.987305, 45.859412 ], [ 6.987305, 45.920587 ], [ 7.250977, 45.890008 ], [ 7.514648, 45.981695 ], [ 7.866211, 45.920587 ], [ 7.866211, 45.981695 ], [ 7.998047, 45.981695 ], [ 7.998047, 46.073231 ], [ 8.129883, 46.134170 ], [ 8.085938, 46.286224 ], [ 8.173828, 46.286224 ], [ 8.305664, 46.377254 ], [ 8.305664, 46.437857 ], [ 8.437500, 46.437857 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Croatia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.940430, 45.736860 ], [ 18.984375, 45.675482 ], [ 18.896484, 45.583290 ], [ 19.116211, 45.521744 ], [ 18.984375, 45.460131 ], [ 18.984375, 45.367584 ], [ 19.423828, 45.213004 ], [ 19.204102, 45.151053 ], [ 19.160156, 45.213004 ], [ 19.160156, 45.151053 ], [ 19.028320, 45.151053 ], [ 19.116211, 45.026950 ], [ 19.116211, 44.933696 ], [ 18.984375, 44.902578 ], [ 19.028320, 44.871443 ], [ 18.764648, 44.902578 ], [ 18.808594, 44.995883 ], [ 18.676758, 45.089036 ], [ 18.544922, 45.058001 ], [ 18.544922, 45.151053 ], [ 18.940430, 45.736860 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Austria" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.711914, 47.576526 ], [ 9.931641, 47.546872 ], [ 10.063477, 47.368594 ], [ 10.063477, 47.368594 ], [ 9.667969, 47.070122 ], [ 9.667969, 47.070122 ], [ 9.580078, 47.040182 ], [ 9.624023, 47.129951 ], [ 9.536133, 47.189712 ], [ 9.536133, 47.309034 ], [ 9.667969, 47.398349 ], [ 9.667969, 47.457809 ], [ 9.536133, 47.546872 ], [ 9.711914, 47.517201 ], [ 9.711914, 47.576526 ] ] ], [ [ [ 14.985352, 49.009051 ], [ 15.161133, 48.951366 ], [ 15.468750, 48.951366 ], [ 15.556641, 48.893615 ], [ 15.908203, 48.835797 ], [ 16.040039, 48.748945 ], [ 16.391602, 48.719961 ], [ 16.435547, 48.806863 ], [ 16.567383, 48.806863 ], [ 16.655273, 48.777913 ], [ 16.655273, 48.719961 ], [ 16.875000, 48.719961 ], [ 16.962891, 48.603858 ], [ 16.831055, 48.370848 ], [ 16.918945, 48.341646 ], [ 16.962891, 48.166085 ], [ 17.094727, 48.107431 ], [ 17.050781, 48.048710 ], [ 17.138672, 48.019324 ], [ 17.094727, 47.901614 ], [ 17.006836, 47.872144 ], [ 17.094727, 47.694974 ], [ 16.831055, 47.724545 ], [ 16.787109, 47.665387 ], [ 16.523438, 47.754098 ], [ 16.523438, 47.694974 ], [ 16.391602, 47.665387 ], [ 16.611328, 47.635784 ], [ 16.699219, 47.546872 ], [ 16.611328, 47.428087 ], [ 16.479492, 47.398349 ], [ 13.710938, 48.341646 ], [ 12.875977, 48.195387 ], [ 13.007812, 48.253941 ], [ 13.315430, 48.312428 ], [ 13.447266, 48.429201 ], [ 13.447266, 48.574790 ], [ 13.623047, 48.574790 ], [ 13.710938, 48.516604 ], [ 13.798828, 48.574790 ], [ 13.798828, 48.777913 ], [ 14.018555, 48.690960 ], [ 14.018555, 48.603858 ], [ 14.326172, 48.545705 ], [ 14.458008, 48.632909 ], [ 14.589844, 48.632909 ], [ 14.677734, 48.574790 ], [ 14.809570, 48.777913 ], [ 14.941406, 48.748945 ], [ 14.985352, 49.009051 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Serbia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.302734, 46.042736 ], [ 20.390625, 45.951150 ], [ 20.654297, 45.828799 ], [ 20.698242, 45.736860 ], [ 20.786133, 45.767523 ], [ 20.742188, 45.490946 ], [ 21.093750, 45.274886 ], [ 21.137695, 45.305803 ], [ 21.489258, 45.151053 ], [ 21.445312, 45.026950 ], [ 21.357422, 44.995883 ], [ 21.533203, 44.933696 ], [ 21.533203, 44.871443 ], [ 21.357422, 44.871443 ], [ 21.401367, 44.777936 ], [ 21.577148, 44.777936 ], [ 21.665039, 44.684277 ], [ 22.016602, 44.653024 ], [ 22.104492, 44.496505 ], [ 22.192383, 44.496505 ], [ 22.324219, 44.621754 ], [ 22.324219, 44.119142 ], [ 19.907227, 43.197167 ], [ 19.291992, 43.580391 ], [ 19.335938, 43.612217 ], [ 19.423828, 43.548548 ], [ 19.511719, 43.580391 ], [ 19.467773, 43.771094 ], [ 19.248047, 43.992815 ], [ 19.291992, 44.024422 ], [ 19.379883, 43.961191 ], [ 19.511719, 43.961191 ], [ 19.599609, 43.992815 ], [ 19.599609, 44.056012 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.276671 ], [ 19.160156, 44.276671 ], [ 19.116211, 44.339565 ], [ 19.116211, 44.527843 ], [ 19.335938, 44.715514 ], [ 19.379883, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.116211, 44.933696 ], [ 19.028320, 45.151053 ], [ 19.160156, 45.151053 ], [ 19.160156, 45.213004 ], [ 19.204102, 45.151053 ], [ 19.423828, 45.213004 ], [ 18.984375, 45.367584 ], [ 18.984375, 45.460131 ], [ 19.116211, 45.521744 ], [ 18.896484, 45.583290 ], [ 18.984375, 45.675482 ], [ 18.896484, 45.706179 ], [ 18.984375, 45.798170 ], [ 20.302734, 46.042736 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Slovakia" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.379883, 49.582226 ], [ 19.291992, 48.253941 ], [ 18.105469, 47.754098 ], [ 17.753906, 47.754098 ], [ 17.358398, 47.989922 ], [ 17.050781, 48.048710 ], [ 17.094727, 48.107431 ], [ 16.962891, 48.166085 ], [ 16.962891, 48.283193 ], [ 16.831055, 48.370848 ], [ 17.094727, 48.835797 ], [ 17.270508, 48.864715 ], [ 17.358398, 48.806863 ], [ 17.534180, 48.806863 ], [ 17.753906, 48.864715 ], [ 17.797852, 48.922499 ], [ 17.885742, 48.922499 ], [ 17.929688, 49.009051 ], [ 18.105469, 49.066668 ], [ 18.149414, 49.267805 ], [ 18.369141, 49.325122 ], [ 18.369141, 49.382373 ], [ 18.457031, 49.382373 ], [ 18.544922, 49.496675 ], [ 18.940430, 49.496675 ], [ 18.940430, 49.382373 ], [ 19.160156, 49.382373 ], [ 19.204102, 49.496675 ], [ 19.335938, 49.525208 ], [ 19.379883, 49.582226 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hungary" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.138672, 48.019324 ], [ 17.358398, 47.989922 ], [ 17.753906, 47.754098 ], [ 18.105469, 47.754098 ], [ 16.918945, 47.249407 ], [ 16.479492, 47.398349 ], [ 16.611328, 47.428087 ], [ 16.699219, 47.517201 ], [ 16.611328, 47.635784 ], [ 16.391602, 47.665387 ], [ 16.523438, 47.694974 ], [ 16.523438, 47.754098 ], [ 16.787109, 47.665387 ], [ 16.831055, 47.724545 ], [ 17.094727, 47.694974 ], [ 17.006836, 47.872144 ], [ 17.094727, 47.901614 ], [ 17.138672, 48.019324 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bosnia and Herz." }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.676758, 45.089036 ], [ 18.808594, 44.995883 ], [ 18.764648, 44.902578 ], [ 18.852539, 44.871443 ], [ 19.072266, 44.871443 ], [ 19.160156, 44.933696 ], [ 19.379883, 44.902578 ], [ 19.335938, 44.715514 ], [ 19.116211, 44.527843 ], [ 19.116211, 44.339565 ], [ 19.160156, 44.276671 ], [ 19.335938, 44.276671 ], [ 19.335938, 44.213710 ], [ 19.599609, 44.056012 ], [ 19.599609, 43.992815 ], [ 19.511719, 43.961191 ], [ 19.379883, 43.961191 ], [ 19.291992, 44.024422 ], [ 19.248047, 43.992815 ], [ 19.511719, 43.675818 ], [ 19.467773, 43.548548 ], [ 19.335938, 43.612217 ], [ 19.248047, 43.580391 ], [ 18.588867, 43.992815 ], [ 18.544922, 45.058001 ], [ 18.676758, 45.089036 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Poland" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.282227, 53.041213 ], [ 16.699219, 52.536273 ], [ 19.511719, 50.986099 ], [ 19.379883, 49.582226 ], [ 19.204102, 49.496675 ], [ 19.160156, 49.382373 ], [ 18.940430, 49.382373 ], [ 18.940430, 49.496675 ], [ 18.852539, 49.496675 ], [ 18.808594, 49.667628 ], [ 18.632812, 49.696062 ], [ 18.544922, 49.809632 ], [ 18.544922, 49.922935 ], [ 18.281250, 49.894634 ], [ 18.281250, 49.951220 ], [ 18.017578, 50.035974 ], [ 17.929688, 49.979488 ], [ 17.753906, 50.007739 ], [ 17.753906, 50.092393 ], [ 17.622070, 50.092393 ], [ 17.578125, 50.148746 ], [ 17.753906, 50.205033 ], [ 17.709961, 50.317408 ], [ 17.666016, 50.261254 ], [ 17.402344, 50.233152 ], [ 17.314453, 50.261254 ], [ 17.358398, 50.317408 ], [ 17.226562, 50.317408 ], [ 17.094727, 50.401515 ], [ 16.875000, 50.429518 ], [ 16.918945, 50.317408 ], [ 17.006836, 50.289339 ], [ 17.006836, 50.205033 ], [ 16.962891, 50.233152 ], [ 16.655273, 50.092393 ], [ 16.567383, 50.120578 ], [ 16.435547, 50.317408 ], [ 16.171875, 50.429518 ], [ 16.347656, 50.485474 ], [ 16.435547, 50.569283 ], [ 16.347656, 50.652943 ], [ 16.083984, 50.652943 ], [ 16.040039, 50.625073 ], [ 14.765625, 51.672555 ], [ 14.721680, 51.672555 ], [ 14.589844, 51.781436 ], [ 14.765625, 52.079506 ], [ 14.677734, 52.106505 ], [ 14.721680, 52.241256 ], [ 14.589844, 52.268157 ], [ 14.545898, 52.375599 ], [ 14.633789, 52.589701 ], [ 14.106445, 52.855864 ], [ 14.150391, 52.961875 ], [ 14.282227, 53.041213 ] ] ] } } +, +{ "type": "Feature", "properties": { "NAME": "Romania" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.049805, 46.164614 ], [ 22.324219, 45.274886 ], [ 22.324219, 44.621754 ], [ 22.192383, 44.496505 ], [ 22.104492, 44.496505 ], [ 22.016602, 44.653024 ], [ 21.665039, 44.684277 ], [ 21.577148, 44.777936 ], [ 21.401367, 44.777936 ], [ 21.357422, 44.871443 ], [ 21.533203, 44.871443 ], [ 21.533203, 44.933696 ], [ 21.357422, 44.995883 ], [ 21.445312, 45.026950 ], [ 21.489258, 45.151053 ], [ 21.137695, 45.305803 ], [ 21.093750, 45.274886 ], [ 20.742188, 45.490946 ], [ 20.786133, 45.767523 ], [ 20.698242, 45.736860 ], [ 20.654297, 45.828799 ], [ 20.346680, 45.981695 ], [ 20.302734, 46.042736 ], [ 21.049805, 46.164614 ] ] ] } } +] } +] } diff --git a/tests/pbf/countries-1-1-0.pbf b/tests/pbf/countries-1-1-0.pbf new file mode 100644 index 000000000..25f3e118b Binary files /dev/null and b/tests/pbf/countries-1-1-0.pbf differ diff --git a/tests/pbf/countries-8-135-86-bigclip.json b/tests/pbf/countries-8-135-86-bigclip.json new file mode 100644 index 000000000..23135cf09 --- /dev/null +++ b/tests/pbf/countries-8-135-86-bigclip.json @@ -0,0 +1,5 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 135, "y": 86 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_admin_0_countries", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "NAME": "Germany" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.210518, 50.771208 ], [ 11.304932, 50.271568 ], [ 11.304932, 49.802541 ], [ 9.788818, 49.802541 ], [ 9.788818, 50.771208 ], [ 11.210518, 50.771208 ] ] ] } } +] } +] } diff --git a/tests/pbf/h3-0-0-0.geojson b/tests/pbf/h3-0-0-0.geojson new file mode 100644 index 000000000..07825f291 --- /dev/null +++ b/tests/pbf/h3-0-0-0.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "id": 579451423930974207, "properties": {"bin": "80a9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-47.69162254195798, -34.331158600979144], [-37.56677824334244, -27.94960597650389], [-39.83027546474522, -16.779214626193745], [-51.77642616787428, -12.387611570633618], [-61.19699841353227, -19.252194904738662], [-59.496606140042005, -29.892985338693553], [-47.69162254195798, -34.331158600979144]]]}}, {"type": "Feature", "id": 580331033233195007, "properties": {"bin": "80dbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-174.47635345070967, -55.70676846515227], [-177.97343103461537, -45.18424868970644], [167.61587312700956, -40.869133191665526], [152.50707693963324, -46.76027724369226], [150.11766435550595, -58.03211375817634], [169.5550224552217, -63.09505407752544], [-174.47635345070967, -55.70676846515227]]]}}, {"type": "Feature", "properties": {"bin": "8031fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[116.21289563713785, 47.30945130281313], [110.69461054882274, 37.16389648579593], [120.50339385995798, 29.89298533869355], [132.30837745804203, 34.33115860097915], [131.77440098149353, 45.253613490980094], [116.21289563713785, 47.30945130281313]]]}}, {"type": "Feature", "properties": {"bin": "8001fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[31.831280499087402, 68.92995788193983], [62.345344956509784, 69.3935964899183], [94.14309010184775, 76.163042830191], [145.5581976913369, 87.36469532319619], [-34.75841798028471, 81.27137179020501], [0.32561035194326043, 73.31022368544396], [31.831280499087402, 68.92995788193983]]]}}, {"type": "Feature", "properties": {"bin": "800ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-66.90449925088507, 72.20470505499345], [-100.82187020582201, 67.53592431503803], [-98.56184761891002, 55.218550700351585], [-81.91962699890831, 48.295316381881364], [-63.20077399553516, 50.77050266836529], [-51.550082921060856, 61.33081918088026], [-66.90449925088507, 72.20470505499345]]]}}, {"type": "Feature", "properties": {"bin": "800bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[68.25632325438265, 58.31910366055611], [87.77296412239532, 52.6542030078627], [106.40349563788, 56.21061073758504], [117.81292538828089, 66.20328559643201], [94.14309010184775, 76.163042830191], [62.345344956509784, 69.3935964899183], [68.25632325438265, 58.31910366055611]]]}}, {"type": "Feature", "properties": {"bin": "803ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[13.244313475659819, 37.523712365785194], [9.380676605201614, 25.603702576968765], [18.3651793828161, 16.505947603561054], [31.19369141851222, 18.24201252667272], [37.16428242437894, 29.339076105087567], [28.846868847179117, 39.64331054771269], [13.244313475659819, 37.523712365785194]]]}}, {"type": "Feature", "properties": {"bin": "80e1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[79.178129794178, -67.53592431503803], [81.43815238108998, -55.21855070035159], [67.21199607170564, -48.011188120377795], [51.09014618986225, -50.15451159756744], [40.31640651839021, -59.16948256665967], [48.29116091207033, -69.37134141076521], [79.178129794178, -67.53592431503803]]]}}, {"type": "Feature", "properties": {"bin": "80adfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[18.352921948642933, -34.99400669710761], [23.910011411582452, -24.69671125803906], [16.28544034001047, -14.623074892227514], [4.54172888597462, -15.28573031248396], [-2.1530562884085485, -24.756909421354475], [4.435670774951517, -35.741206971176496], [18.352921948642933, -34.99400669710761]]]}}, {"type": "Feature", "properties": {"bin": "8025fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[87.77296412239532, 52.6542030078627], [86.70820981047306, 40.31276675619656], [98.22850425577052, 33.621069780683506], [110.69461054882271, 37.16389648579594], [116.21289563713785, 47.30945130281313], [106.40349563787996, 56.21061073758502], [87.77296412239532, 52.6542030078627]]]}}, {"type": "Feature", "properties": {"bin": "80e9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-117.65465504349024, -69.3935964899183], [-85.85690989815225, -76.163042830191], [-62.187074611719154, -66.20328559643201], [-73.59650436212002, -56.21061073758504], [-92.22703587760468, -52.6542030078627], [-111.74367674561738, -58.31910366055611], [-117.65465504349024, -69.3935964899183]]]}}, {"type": "Feature", "properties": {"bin": "80b1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-120.8496732763327, -37.656443450315685], [-106.40738231200352, -33.70575303795421], [-104.98911415375096, -22.41056616821522], [-114.27330023533938, -16.170389213771347], [-125.313030646262, -19.148858649008005], [-129.81209638720395, -29.089392138145286], [-120.8496732763327, -37.656443450315685]]]}}, {"type": "Feature", "properties": {"bin": "8095fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[115.67172827000329, -3.8245323459249], [114.23117809212035, -14.482400617733104], [122.76988803599195, -21.81463899460828], [133.81752542331913, -18.9147568579124], [135.85958708181397, -7.725284543519058], [126.31795557186994, 0.17017772412858456], [115.67172827000329, -3.8245323459249]]]}}, {"type": "Feature", "properties": {"bin": "80cdfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[98.08037300109167, -48.295316381881364], [95.41483296791186, -37.099588896819945], [83.33710961959481, -31.619530626908528], [69.74251514346645, -36.800197061174266], [67.21199607170564, -48.011188120377795], [81.43815238108998, -55.21855070035159], [98.08037300109167, -48.295316381881364]]]}}, {"type": "Feature", "properties": {"bin": "80e5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[128.44991707893914, -61.33081918088026], [116.79922600446484, -50.77050266836529], [98.08037300109167, -48.295316381881364], [81.43815238108998, -55.21855070035159], [79.178129794178, -67.53592431503803], [113.09550074911493, -72.20470505499345], [128.44991707893914, -61.33081918088026]]]}}, {"type": "Feature", "properties": {"bin": "8089fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-148.8063085814878, -18.242012526672728], [-142.1510646286996, -8.893462571252659], [-146.33638072286848, 1.6772949381945048], [-158.59967491814012, 3.3357348575173495], [-165.41674992858833, -5.7628604914369355], [-161.63482061718392, -16.505947603561054], [-148.8063085814878, -18.242012526672728]]]}}, {"type": "Feature", "properties": {"bin": "8091fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-125.313030646262, -19.148858649008005], [-114.27330023533938, -16.170389213771344], [-114.02904784459382, -5.242929409571671], [-124.29849277976768, -1.4476428602001972], [-131.29818275576594, -9.876090877671759], [-125.313030646262, -19.148858649008005]]]}}, {"type": "Feature", "properties": {"bin": "80ebfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-154.91727767329215, -58.40154487035269], [-174.47635345070967, -55.70676846515227], [169.55502245522166, -63.09505407752546], [-179.6743896480568, -73.31022368544396], [-148.16871950091263, -68.92995788193983], [-154.91727767329215, -58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "8047fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-175.56432922504848, 35.741206971176496], [177.84694371159145, 24.756909421354468], [-175.45827111402537, 15.285730312483953], [-163.71455965998953, 14.623074892227512], [-156.08998858841755, 24.696711258039056], [-161.64707805135708, 34.9940066971076], [-175.56432922504848, 35.741206971176496]]]}}, {"type": "Feature", "properties": {"bin": "8039fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-12.38412687299043, 40.869133191665526], [-12.948554583750909, 28.514935780874872], [-2.4838650119479393, 22.197541386302376], [9.380676605201614, 25.603702576968765], [13.244313475659819, 37.523712365785194], [2.0265689653846333, 45.184248689706415], [-12.38412687299043, 40.869133191665526]]]}}, {"type": "Feature", "properties": {"bin": "80dffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-62.187074611719154, -66.20328559643201], [-34.663862454939185, -62.49215566258707], [-34.67148393106426, -51.12825449972591], [-48.22559901850649, -45.2536134909801], [-63.78710436286213, -47.30945130281312], [-73.59650436212002, -56.21061073758504], [-62.187074611719154, -66.20328559643201]]]}}, {"type": "Feature", "properties": {"bin": "80abfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[61.51813428281897, -16.572699557873406], [58.663371667348294, -28.65301931148454], [69.74251514346645, -36.800197061174266], [83.33710961959481, -31.619530626908528], [83.94979010377854, -19.26900694125663], [73.4403147682599, -12.150574686647925], [61.51813428281897, -16.572699557873406]]]}}, {"type": "Feature", "properties": {"bin": "8063fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[54.68696935373798, 19.14885864900799], [48.70181724423405, 9.876090877671759], [55.70150722023229, 1.4476428602001845], [65.97095215540618, 5.242929409571671], [65.72669976466062, 16.170389213771358], [54.68696935373798, 19.14885864900799]]]}}, {"type": "Feature", "properties": {"bin": "80b3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-72.25737566801898, -15.06330111473561], [-82.85149787376915, -22.29703635237555], [-81.77149574422948, -33.621069780683506], [-69.30538945117729, -37.16389648579593], [-59.496606140042026, -29.89298533869355], [-61.196998413532306, -19.252194904738655], [-72.25737566801898, -15.06330111473561]]]}}, {"type": "Feature", "properties": {"bin": "8037fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-153.03739182353243, 43.44325276436555], [-161.64707805135708, 34.9940066971076], [-156.08998858841755, 24.696711258039056], [-142.7188705783351, 22.885971422359724], [-134.1064889717779, 31.285608665560563], [-138.45029122366302, 41.45713981733576], [-153.03739182353243, 43.44325276436555]]]}}, {"type": "Feature", "properties": {"bin": "80a3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[41.57956251385473, -11.222876232379509], [37.281129421664886, -22.885971422359724], [45.89351102822212, -31.28560866556057], [58.663371667348294, -28.65301931148454], [61.51813428281897, -16.572699557873406], [52.88593419792579, -8.931891500446875], [41.57956251385473, -11.222876232379509]]]}}, {"type": "Feature", "properties": {"bin": "8011fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[25.082722326707884, 58.40154487035269], [36.11672363177465, 49.77934286766213], [53.67049363562549, 49.37211750883398], [68.25632325438265, 58.31910366055611], [62.34534495650971, 69.39359648991828], [31.831280499087388, 68.92995788193983], [25.082722326707884, 58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "808dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[114.23117809212033, -14.482400617733115], [115.67172827000326, -3.8245323459249176], [106.41168295379833, 2.7703025791670135], [95.22669343176798, -2.504604687315686], [94.36893143573202, -13.83685380982093], [104.00145175623875, -19.358823435394196], [114.23117809212033, -14.482400617733115]]]}}, {"type": "Feature", "properties": {"bin": "8051fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-127.11406580207421, 8.93189150044687], [-118.48186571718101, 16.572699557873406], [-121.3366283326517, 28.653019311484535], [-134.10648897177788, 31.285608665560563], [-142.7188705783351, 22.885971422359724], [-138.42043748614526, 11.22287623237951], [-127.11406580207421, 8.93189150044687]]]}}, {"type": "Feature", "properties": {"bin": "801dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-139.6835934816099, 59.16948256665965], [-157.28277091871553, 54.01377148101902], [-153.03739182353243, 43.44325276436555], [-138.45029122366302, 41.45713981733576], [-128.90985381013775, 50.15451159756744], [-139.6835934816099, 59.16948256665965]]]}}, {"type": "Feature", "properties": {"bin": "80d1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[4.435670774951517, -35.741206971176496], [-4.379003183217645, -46.180014657090155], [4.251781231586493, -56.19652224584303], [22.717229081284426, -54.01377148101902], [26.962608176467533, -43.44325276436556], [18.3529219486429, -34.99400669710762], [4.435670774951517, -35.741206971176496]]]}}, {"type": "Feature", "properties": {"bin": "80c7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-143.88327636822538, -49.779342867662145], [-126.32950636437451, -49.37211750883398], [-120.8496732763327, -37.656443450315685], [-129.81209638720395, -29.089392138145286], [-142.83571757562106, -29.339076105087567], [-151.1531311528209, -39.643310547712694], [-143.88327636822538, -49.779342867662145]]]}}, {"type": "Feature", "properties": {"bin": "8023fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-161.64707805135708, 34.994006697107615], [-153.03739182353246, 43.44325276436556], [-157.28277091871553, 54.01377148101902], [-175.74821876841347, 56.19652224584303], [175.6209968167824, 46.180014657090155], [-175.56432922504848, 35.741206971176496], [-161.64707805135708, 34.994006697107615]]]}}, {"type": "Feature", "properties": {"bin": "8041fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[118.80300158646772, 19.252194904738648], [120.50339385995798, 29.892985338693542], [110.69461054882274, 37.16389648579593], [98.22850425577053, 33.6210697806835], [97.14850212623087, 22.297036352375546], [107.74262433198103, 15.063301114735607], [118.80300158646772, 19.252194904738648]]]}}, {"type": "Feature", "properties": {"bin": "80a7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[117.97747445215552, -31.87788595636582], [122.76988803599195, -21.81463899460828], [114.23117809212033, -14.482400617733115], [104.00145175623875, -19.358823435394196], [105.35953183291994, -30.219492199828117], [117.97747445215552, -31.87788595636582]]]}}, {"type": "Feature", "properties": {"bin": "80affffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[83.94979010377854, -19.26900694125663], [83.33710961959481, -31.619530626908528], [95.41483296791186, -37.09958889681994], [105.35953183291994, -30.219492199828117], [104.00145175623874, -19.358823435394214], [94.36893143573201, -13.836853809820951], [83.94979010377854, -19.26900694125663]]]}}, {"type": "Feature", "properties": {"bin": "806bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[18.3651793828161, 16.505947603561054], [14.583250071411682, 5.7628604914369355], [21.40032508185986, -3.3357348575173527], [33.66361927713152, -1.6772949381945048], [37.848935371300406, 8.893462571252657], [31.19369141851222, 18.24201252667272], [18.3651793828161, 16.505947603561054]]]}}, {"type": "Feature", "properties": {"bin": "805dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-156.08998858841755, 24.696711258039056], [-163.71455965998953, 14.623074892227512], [-158.59967491814012, 3.3357348575173495], [-146.33638072286848, 1.6772949381945048], [-138.42043748614526, 11.22287623237951], [-142.7188705783351, 22.885971422359724], [-156.08998858841755, 24.696711258039056]]]}}, {"type": "Feature", "properties": {"bin": "805ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-53.68204442813005, -0.17017772412858934], [-44.14041291818604, 7.725284543519059], [-46.18247457668085, 18.9147568579124], [-57.23011196400804, 21.81463899460828], [-65.76882190787964, 14.482400617733116], [-64.32827172999673, 3.8245323459248906], [-53.68204442813005, -0.17017772412858934]]]}}, {"type": "Feature", "properties": {"bin": "8045fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-85.63106856426799, 13.836853809820953], [-75.99854824376126, 19.35882343539422], [-74.64046816708006, 30.219492199828103], [-84.58516703208814, 37.099588896819924], [-96.66289038040519, 31.619530626908528], [-96.05020989622146, 19.26900694125663], [-85.63106856426799, 13.836853809820953]]]}}, {"type": "Feature", "properties": {"bin": "8097fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[37.281129421664886, -22.885971422359724], [41.57956251385473, -11.222876232379509], [33.66361927713152, -1.6772949381945048], [21.40032508185986, -3.3357348575173527], [16.28544034001047, -14.623074892227514], [23.910011411582452, -24.69671125803906], [37.281129421664886, -22.885971422359724]]]}}, {"type": "Feature", "properties": {"bin": "80e7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[48.291160912070175, -69.37134141076518], [40.31640651839009, -59.16948256665965], [22.717229081284408, -54.01377148101902], [4.251781231586488, -56.19652224584305], [-7.13862860130792, -66.19292316051032], [16.5431319209905, -76.14556732608257], [48.291160912070175, -69.37134141076518]]]}}, {"type": "Feature", "properties": {"bin": "80cffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-73.59650436212006, -56.21061073758502], [-63.787104362862166, -47.30945130281312], [-69.30538945117729, -37.16389648579595], [-81.77149574422948, -33.62106978068352], [-93.29179018952695, -40.31276675619656], [-92.22703587760468, -52.6542030078627], [-73.59650436212006, -56.21061073758502]]]}}, {"type": "Feature", "properties": {"bin": "80d9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[150.11766435550595, -58.03211375817634], [152.50707693963324, -46.76027724369226], [139.65222628239854, -38.734209457703855], [125.1209872207507, -40.97555819925589], [116.79922600446484, -50.77050266836529], [128.44991707893914, -61.33081918088026], [150.11766435550595, -58.03211375817634]]]}}, {"type": "Feature", "properties": {"bin": "80bffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[167.61587312700956, -40.869133191665526], [167.0514454162491, -28.514935780874872], [155.41995693388589, -21.999746230891233], [142.84484655885802, -26.664335930022155], [139.65222628239854, -38.734209457703855], [152.50707693963324, -46.76027724369226], [167.61587312700956, -40.869133191665526]]]}}, {"type": "Feature", "properties": {"bin": "80f1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.24158201971537, -81.27137179020501], [113.09550074911493, -72.20470505499345], [79.178129794178, -67.53592431503803], [48.29116091207033, -69.37134141076521], [16.5431319209905, -76.14556732608257], [-34.441802308663334, -87.36469532319619], [145.24158201971537, -81.27137179020501]]]}}, {"type": "Feature", "properties": {"bin": "80ddfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-7.13862860130792, -66.19292316051032], [4.251781231586488, -56.19652224584305], [-4.379003183217645, -46.180014657090155], [-21.61710359046474, -43.912304017571415], [-34.67148393106426, -51.12825449972591], [-34.663862454939185, -62.49215566258707], [-7.13862860130792, -66.19292316051032]]]}}, {"type": "Feature", "properties": {"bin": "802bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-63.20077399553516, 50.77050266836529], [-81.91962699890831, 48.295316381881364], [-84.58516703208812, 37.099588896819945], [-74.64046816708004, 30.219492199828117], [-62.02252554784452, 31.877885956365837], [-54.879012779249315, 40.97555819925589], [-63.20077399553516, 50.77050266836529]]]}}, {"type": "Feature", "properties": {"bin": "8009fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-10.444977544778336, 63.09505407752544], [5.523646549290317, 55.706768465152265], [25.082722326707884, 58.40154487035269], [31.831280499087388, 68.92995788193983], [0.32561035194326043, 73.31022368544396], [-10.444977544778336, 63.09505407752544]]]}}, {"type": "Feature", "properties": {"bin": "80bdfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[41.54970877633699, -41.45713981733576], [45.89351102822209, -31.285608665560563], [37.281129421664886, -22.885971422359724], [23.910011411582452, -24.69671125803906], [18.352921948642933, -34.99400669710761], [26.96260817646757, -43.44325276436555], [41.54970877633699, -41.45713981733576]]]}}, {"type": "Feature", "properties": {"bin": "806ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-114.02904784459382, -5.242929409571671], [-105.17323884809628, 0.8701881901666885], [-106.5596852317401, 12.150574686647923], [-118.48186571718101, 16.572699557873406], [-127.11406580207421, 8.93189150044687], [-124.29849277976768, -1.4476428602001972], [-114.02904784459382, -5.242929409571671]]]}}, {"type": "Feature", "properties": {"bin": "8017fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.33613754506084, 62.49215566258707], [145.32851606893576, 51.12825449972591], [158.38289640953528, 43.91230401757141], [175.6209968167824, 46.180014657090155], [-175.74821876841355, 56.19652224584304], [172.86137139869209, 66.19292316051032], [145.33613754506084, 62.49215566258707]]]}}, {"type": "Feature", "properties": {"bin": "808ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-84.77330656823203, 2.504604687315686], [-95.07033345637271, -4.348486695475445], [-94.55466251546314, -16.700959516615505], [-82.85149787376915, -22.29703635237555], [-72.25737566801898, -15.06330111473561], [-73.58831704620168, -2.770302579167017], [-84.77330656823203, 2.504604687315686]]]}}, {"type": "Feature", "properties": {"bin": "8073fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[128.2235738321257, 12.387611570633615], [126.31795557186994, 0.17017772412858456], [135.85958708181397, -7.725284543519058], [147.5198718874505, -3.454917535376019], [149.7748737561887, 8.701739974658006], [140.1697245352548, 16.779214626193742], [128.2235738321257, 12.387611570633615]]]}}, {"type": "Feature", "properties": {"bin": "80d5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-154.91727767329215, -58.40154487035269], [-143.8832763682254, -49.77934286766213], [-151.1531311528209, -39.643310547712694], [-166.75568652434018, -37.523712365785215], [-177.97343103461534, -45.184248689706436], [-174.47635345070967, -55.706768465152265], [-154.91727767329215, -58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "80c5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-37.56677824334243, -27.949605976503904], [-47.69162254195799, -34.33115860097918], [-48.225599018506486, -45.2536134909801], [-34.67148393106424, -51.1282544997259], [-21.61710359046474, -43.912304017571415], [-25.255959312090397, -31.883963004159572], [-37.56677824334243, -27.949605976503904]]]}}, {"type": "Feature", "properties": {"bin": "8029fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-121.3366283326517, 28.653019311484535], [-110.25748485653355, 36.800197061174266], [-112.78800392829437, 48.011188120377795], [-128.90985381013775, 50.15451159756744], [-138.450291223663, 41.457139817335765], [-134.10648897177788, 31.285608665560563], [-121.3366283326517, 28.653019311484535]]]}}, {"type": "Feature", "properties": {"bin": "8075fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-4.013998443470486, 11.545295975414758], [-13.70814670391801, 6.270965136275773], [-11.66474754212643, -4.467031609784529], [-0.7828391751055227, -5.889921754313916], [3.9430361557864537, 3.968796976609578], [-4.013998443470486, 11.545295975414758]]]}}, {"type": "Feature", "properties": {"bin": "8013fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-131.70883908792965, 69.37134141076518], [-139.68359348160976, 59.16948256665965], [-128.90985381013775, 50.15451159756744], [-112.78800392829434, 48.011188120377795], [-98.56184761891002, 55.218550700351585], [-100.82187020582201, 67.53592431503803], [-131.70883908792965, 69.37134141076518]]]}}, {"type": "Feature", "properties": {"bin": "8069fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[107.74262433198103, 15.063301114735607], [106.41168295379833, 2.7703025791670135], [115.67172827000329, -3.8245323459249], [126.31795557186994, 0.17017772412858456], [128.2235738321257, 12.387611570633615], [118.80300158646772, 19.252194904738655], [107.74262433198103, 15.063301114735607]]]}}, {"type": "Feature", "properties": {"bin": "80f3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-179.67438964805675, -73.31022368544396], [145.24158201971542, -81.27137179020501], [-34.441802308663334, -87.36469532319619], [-85.85690989815225, -76.163042830191], [-117.65465504349024, -69.3935964899183], [-148.16871950091263, -68.92995788193983], [-179.67438964805675, -73.31022368544396]]]}}, {"type": "Feature", "properties": {"bin": "802dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[28.846868847179117, 39.64331054771269], [37.16428242437894, 29.339076105087567], [50.18790361279607, 29.08939213814528], [59.150326723667334, 37.656443450315685], [53.67049363562549, 49.37211750883398], [36.11672363177465, 49.77934286766213], [28.846868847179117, 39.64331054771269]]]}}, {"type": "Feature", "properties": {"bin": "80b5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-151.1531311528209, -39.643310547712694], [-142.83571757562106, -29.339076105087567], [-148.8063085814878, -18.242012526672728], [-161.63482061718392, -16.505947603561054], [-170.6193233947984, -25.60370257696877], [-166.75568652434018, -37.523712365785215], [-151.1531311528209, -39.643310547712694]]]}}, {"type": "Feature", "properties": {"bin": "80c1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-15.54272748632276, -23.00472505886229], [-25.255959312090397, -31.883963004159572], [-21.61710359046474, -43.912304017571415], [-4.379003183217645, -46.180014657090155], [4.435670774951517, -35.741206971176496], [-2.1530562884085485, -24.756909421354475], [-15.54272748632276, -23.00472505886229]]]}}, {"type": "Feature", "properties": {"bin": "801ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[5.523646549290317, 55.706768465152265], [2.0265689653846333, 45.184248689706415], [13.244313475659819, 37.523712365785194], [28.846868847179117, 39.64331054771269], [36.11672363177462, 49.77934286766213], [25.082722326707874, 58.40154487035269], [5.523646549290317, 55.706768465152265]]]}}, {"type": "Feature", "properties": {"bin": "809ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[177.51613498805204, -22.197541386302387], [175.98600155652952, -11.545295975414763], [166.29185329608202, -6.270965136275781], [156.37086889691636, -10.672390551299387], [155.41995693388589, -21.999746230891233], [167.0514454162491, -28.514935780874872], [177.51613498805204, -22.197541386302387]]]}}, {"type": "Feature", "properties": {"bin": "8043fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[50.18790361279607, 29.08939213814528], [54.686969353738014, 19.148858649008], [65.72669976466062, 16.170389213771347], [75.01088584624904, 22.41056616821522], [73.59261768799648, 33.70575303795421], [59.150326723667334, 37.656443450315685], [50.18790361279607, 29.08939213814528]]]}}, {"type": "Feature", "properties": {"bin": "8033fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[177.84694371159145, 24.756909421354468], [-175.56432922504848, 35.741206971176496], [175.6209968167824, 46.180014657090155], [158.38289640953528, 43.91230401757141], [154.7440406879096, 31.88396300415958], [164.45727251367725, 23.00472505886229], [177.84694371159145, 24.756909421354468]]]}}, {"type": "Feature", "properties": {"bin": "800dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-163.45686807900947, 76.14556732608257], [172.86137139869209, 66.19292316051032], [-175.74821876841355, 56.19652224584304], [-157.2827709187156, 54.013771481019006], [-139.6835934816099, 59.16948256665965], [-131.70883908792982, 69.37134141076518], [-163.45686807900947, 76.14556732608257]]]}}, {"type": "Feature", "properties": {"bin": "8035fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-27.492923060366778, 46.76027724369226], [-40.34777371760148, 38.734209457703855], [-37.15515344114197, 26.664335930022155], [-24.58004306611412, 21.999746230891233], [-12.948554583750909, 28.514935780874872], [-12.38412687299043, 40.869133191665526], [-27.492923060366778, 46.76027724369226]]]}}, {"type": "Feature", "properties": {"bin": "804ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[160.7733897026288, 12.194726726168001], [164.45727251367725, 23.00472505886229], [154.7440406879096, 31.88396300415958], [142.4332217566576, 27.94960597650391], [140.1697245352548, 16.779214626193742], [149.7748737561887, 8.701739974658006], [160.7733897026288, 12.194726726168001]]]}}, {"type": "Feature", "properties": {"bin": "8085fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[55.70150722023229, 1.4476428602001845], [52.88593419792579, -8.931891500446875], [61.51813428281897, -16.572699557873406], [73.4403147682599, -12.150574686647925], [74.82676115190372, -0.8701881901666917], [65.97095215540618, 5.242929409571671], [55.70150722023229, 1.4476428602001845]]]}}, {"type": "Feature", "properties": {"bin": "8005fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[94.14309010184775, 76.163042830191], [117.81292538828089, 66.20328559643201], [145.33613754506084, 62.49215566258707], [172.86137139869209, 66.19292316051032], [-163.45686807900947, 76.14556732608257], [145.5581976913369, 87.36469532319619], [94.14309010184775, 76.163042830191]]]}}, {"type": "Feature", "properties": {"bin": "8015fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[106.40349563788, 56.21061073758504], [116.21289563713786, 47.30945130281313], [131.77440098149353, 45.2536134909801], [145.32851606893576, 51.12825449972591], [145.33613754506084, 62.49215566258707], [117.81292538828089, 66.20328559643201], [106.40349563788, 56.21061073758504]]]}}, {"type": "Feature", "properties": {"bin": "807bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[52.88593419792578, -8.931891500446858], [55.70150722023228, 1.4476428602002052], [48.70181724423405, 9.876090877671759], [37.848935371300406, 8.893462571252645], [33.66361927713152, -1.6772949381945048], [41.57956251385473, -11.222876232379509], [52.88593419792578, -8.931891500446858]]]}}, {"type": "Feature", "properties": {"bin": "8071fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-175.45827111402537, 15.285730312483953], [179.2171608248945, 5.889921754313891], [-176.05696384421353, -3.968796976609584], [-165.41674992858833, -5.7628604914369195], [-158.59967491814012, 3.3357348575173495], [-163.71455965998953, 14.623074892227512], [-175.45827111402537, 15.285730312483953]]]}}, {"type": "Feature", "properties": {"bin": "80e3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-148.16871950091263, -68.92995788193983], [-117.65465504349031, -69.39359648991828], [-111.74367674561738, -58.31910366055611], [-126.32950636437451, -49.37211750883398], [-143.88327636822538, -49.779342867662145], [-154.91727767329212, -58.40154487035271], [-148.16871950091263, -68.92995788193983]]]}}, {"type": "Feature", "properties": {"bin": "8055fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-12.948554583750909, 28.514935780874872], [-24.58004306611412, 21.999746230891233], [-23.62913110308365, 10.672390551299387], [-13.708146703917999, 6.270965136275784], [-4.013998443470486, 11.545295975414758], [-2.4838650119479646, 22.197541386302387], [-12.948554583750909, 28.514935780874872]]]}}, {"type": "Feature", "properties": {"bin": "8059fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-2.4838650119479393, 22.197541386302376], [-4.01399844347046, 11.545295975414756], [3.9430361557864635, 3.9687969766095974], [14.583250071411682, 5.7628604914369355], [18.3651793828161, 16.505947603561054], [9.380676605201614, 25.603702576968765], [-2.4838650119479393, 22.197541386302376]]]}}, {"type": "Feature", "properties": {"bin": "8099fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-11.66474754212643, -4.467031609784529], [-19.226610297371188, -12.194726726168001], [-15.54272748632276, -23.00472505886229], [-2.1530562884085485, -24.756909421354475], [4.5417288859745995, -15.28573031248396], [-0.7828391751055227, -5.889921754313916], [-11.66474754212643, -4.467031609784529]]]}}, {"type": "Feature", "properties": {"bin": "8093fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-105.17323884809628, 0.8701881901666535], [-114.02904784459382, -5.242929409571708], [-114.27330023533938, -16.170389213771344], [-104.98911415375096, -22.41056616821521], [-94.55466251546314, -16.700959516615505], [-95.07033345637271, -4.348486695475445], [-105.17323884809628, 0.8701881901666535]]]}}, {"type": "Feature", "properties": {"bin": "80edfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[169.55502245522166, -63.09505407752546], [150.11766435550592, -58.032113758176365], [128.44991707893914, -61.33081918088026], [113.09550074911493, -72.20470505499345], [145.24158201971537, -81.27137179020501], [-179.6743896480568, -73.31022368544396], [169.55502245522166, -63.09505407752546]]]}}, {"type": "Feature", "properties": {"bin": "8057fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-37.15515344114197, 26.664335930022155], [-46.18247457668084, 18.914756857912426], [-44.14041291818604, 7.725284543519059], [-32.48012811254947, 3.454917535376011], [-23.62913110308365, 10.672390551299387], [-24.58004306611412, 21.999746230891233], [-37.15515344114197, 26.664335930022155]]]}}, {"type": "Feature", "properties": {"bin": "80c9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[125.12098722075069, -40.97555819925589], [117.97747445215546, -31.877885956365837], [105.35953183291996, -30.219492199828117], [95.41483296791186, -37.099588896819945], [98.08037300109167, -48.295316381881364], [116.79922600446484, -50.77050266836529], [125.12098722075069, -40.97555819925589]]]}}, {"type": "Feature", "properties": {"bin": "803dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[73.59261768799648, 33.70575303795421], [75.01088584624904, 22.41056616821522], [85.44533748453688, 16.700959516615516], [97.14850212623087, 22.297036352375546], [98.22850425577052, 33.621069780683506], [86.70820981047306, 40.31276675619656], [73.59261768799648, 33.70575303795421]]]}}, {"type": "Feature", "properties": {"bin": "80b7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-93.29179018952695, -40.31276675619656], [-81.77149574422948, -33.62106978068352], [-82.85149787376915, -22.29703635237555], [-94.55466251546314, -16.700959516615505], [-104.98911415375096, -22.41056616821522], [-106.40738231200352, -33.70575303795421], [-93.29179018952695, -40.31276675619656]]]}}, {"type": "Feature", "properties": {"bin": "8079fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-138.42043748614526, 11.22287623237951], [-146.33638072286848, 1.6772949381945048], [-142.15106462869957, -8.893462571252645], [-131.29818275576594, -9.876090877671759], [-124.2984927797677, -1.4476428602001972], [-127.11406580207421, 8.93189150044686], [-138.42043748614526, 11.22287623237951]]]}}, {"type": "Feature", "properties": {"bin": "80b9fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[139.65222628239854, -38.734209457703855], [142.84484655885802, -26.664335930022155], [133.81752542331915, -18.914756857912426], [122.76988803599198, -21.814638994608305], [117.97747445215552, -31.87788595636582], [125.1209872207507, -40.97555819925589], [139.65222628239854, -38.734209457703855]]]}}, {"type": "Feature", "properties": {"bin": "80bbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-177.97343103461534, -45.184248689706436], [-166.75568652434018, -37.523712365785215], [-170.6193233947984, -25.60370257696877], [177.51613498805204, -22.197541386302383], [167.0514454162491, -28.514935780874872], [167.61587312700956, -40.869133191665526], [-177.97343103461534, -45.184248689706436]]]}}, {"type": "Feature", "properties": {"bin": "802ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[154.7440406879096, 31.88396300415958], [158.38289640953528, 43.91230401757141], [145.32851606893576, 51.128254499725884], [131.77440098149353, 45.253613490980094], [132.30837745804203, 34.33115860097916], [142.4332217566576, 27.94960597650391], [154.7440406879096, 31.88396300415958]]]}}, {"type": "Feature", "properties": {"bin": "8077fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[149.7748737561887, 8.701739974658006], [147.5198718874505, -3.454917535376019], [156.37086889691633, -10.672390551299381], [166.29185329608197, -6.270965136275794], [168.33525245787357, 4.467031609784497], [160.7733897026288, 12.194726726167971], [149.7748737561887, 8.701739974658006]]]}}, {"type": "Feature", "properties": {"bin": "8065fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[106.41168295379833, 2.7703025791670135], [107.74262433198103, 15.063301114735607], [97.14850212623087, 22.297036352375546], [85.44533748453688, 16.700959516615516], [84.9296665436273, 4.348486695475441], [95.22669343176798, -2.504604687315686], [106.41168295379833, 2.7703025791670135]]]}}, {"type": "Feature", "properties": {"bin": "809dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[155.41995693388589, -21.999746230891233], [156.37086889691636, -10.672390551299387], [147.5198718874505, -3.454917535376019], [135.85958708181397, -7.725284543519058], [133.81752542331915, -18.914756857912426], [142.84484655885802, -26.664335930022155], [155.41995693388589, -21.999746230891233]]]}}, {"type": "Feature", "properties": {"bin": "8019fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-10.444977544778336, 63.09505407752544], [-29.882335644494077, 58.03211375817634], [-27.492923060366778, 46.76027724369226], [-12.38412687299043, 40.869133191665526], [2.026568965384605, 45.18424868970644], [5.523646549290303, 55.70676846515228], [-10.444977544778336, 63.09505407752544]]]}}, {"type": "Feature", "properties": {"bin": "80a5fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-30.225126243811296, -8.70173997465801], [-39.83027546474522, -16.779214626193745], [-37.56677824334243, -27.949605976503904], [-25.255959312090397, -31.883963004159572], [-15.54272748632276, -23.00472505886229], [-19.226610297371188, -12.194726726168001], [-30.225126243811296, -8.70173997465801]]]}}, {"type": "Feature", "properties": {"bin": "804dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-62.02252554784452, 31.877885956365837], [-74.64046816708006, 30.219492199828103], [-75.99854824376126, 19.358823435394196], [-65.76882190787967, 14.482400617733111], [-57.23011196400804, 21.81463899460828], [-62.02252554784452, 31.877885956365837]]]}}, {"type": "Feature", "properties": {"bin": "80d3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-111.74367674561738, -58.31910366055611], [-92.22703587760468, -52.6542030078627], [-93.29179018952695, -40.31276675619656], [-106.40738231200352, -33.70575303795421], [-120.8496732763327, -37.656443450315685], [-126.32950636437451, -49.37211750883398], [-111.74367674561738, -58.31910366055611]]]}}, {"type": "Feature", "properties": {"bin": "8083fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[16.28544034001047, -14.623074892227514], [21.40032508185986, -3.3357348575173527], [14.583250071411678, 5.762860491436916], [3.9430361557864537, 3.968796976609578], [-0.782839175105502, -5.889921754313901], [4.54172888597462, -15.28573031248396], [16.28544034001047, -14.623074892227514]]]}}, {"type": "Feature", "properties": {"bin": "8067fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-75.99854824376126, 19.358823435394196], [-85.63106856426799, 13.83685380982093], [-84.77330656823203, 2.504604687315686], [-73.58831704620168, -2.770302579167017], [-64.32827172999676, 3.8245323459249096], [-65.76882190787967, 14.482400617733111], [-75.99854824376126, 19.358823435394196]]]}}, {"type": "Feature", "properties": {"bin": "807ffffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[175.98600155652952, -11.545295975414767], [-176.05696384421353, -3.968796976609584], [179.21716082489448, 5.889921754313916], [168.3352524578736, 4.467031609784529], [166.29185329608197, -6.270965136275794], [175.98600155652952, -11.545295975414767]]]}}, {"type": "Feature", "properties": {"bin": "8087fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[94.36893143573202, -13.83685380982093], [95.22669343176798, -2.504604687315686], [84.9296665436273, 4.348486695475441], [74.82676115190374, -0.8701881901666614], [73.4403147682599, -12.150574686647925], [83.94979010377854, -19.26900694125663], [94.36893143573202, -13.83685380982093]]]}}, {"type": "Feature", "properties": {"bin": "803bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-54.8790127792493, 40.97555819925587], [-62.022525547844495, 31.877885956365812], [-57.23011196400803, 21.8146389946083], [-46.18247457668084, 18.914756857912426], [-37.15515344114197, 26.664335930022155], [-40.34777371760148, 38.734209457703855], [-54.8790127792493, 40.97555819925587]]]}}, {"type": "Feature", "properties": {"bin": "808bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-61.19699841353227, -19.252194904738662], [-51.77642616787428, -12.387611570633618], [-53.68204442813005, -0.17017772412858934], [-64.32827172999673, 3.8245323459248906], [-73.58831704620168, -2.770302579167017], [-72.25737566801898, -15.06330111473561], [-61.19699841353227, -19.252194904738662]]]}}, {"type": "Feature", "properties": {"bin": "80d7fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[40.31640651839021, -59.16948256665967], [51.09014618986225, -50.15451159756744], [41.54970877633699, -41.45713981733576], [26.96260817646757, -43.44325276436555], [22.717229081284426, -54.01377148101902], [40.31640651839021, -59.16948256665967]]]}}, {"type": "Feature", "properties": {"bin": "8021fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[53.67049363562549, 49.37211750883398], [59.150326723667334, 37.656443450315685], [73.59261768799648, 33.70575303795421], [86.70820981047306, 40.31276675619656], [87.77296412239532, 52.6542030078627], [68.25632325438265, 58.31910366055611], [53.67049363562549, 49.37211750883398]]]}}, {"type": "Feature", "properties": {"bin": "80c3fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-63.78710436286213, -47.30945130281312], [-48.225599018506486, -45.2536134909801], [-47.69162254195798, -34.331158600979144], [-59.496606140042005, -29.892985338693553], [-69.30538945117729, -37.16389648579593], [-63.78710436286213, -47.30945130281312]]]}}, {"type": "Feature", "properties": {"bin": "8027fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-98.56184761891002, 55.218550700351585], [-112.78800392829434, 48.011188120377795], [-110.25748485653355, 36.800197061174266], [-96.66289038040519, 31.619530626908528], [-84.58516703208812, 37.099588896819945], [-81.91962699890831, 48.295316381881364], [-98.56184761891002, 55.218550700351585]]]}}, {"type": "Feature", "properties": {"bin": "8007fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[0.3256103519432223, 73.31022368544396], [-34.758417980284634, 81.27137179020501], [-66.90449925088507, 72.20470505499345], [-51.550082921060856, 61.33081918088026], [-29.88233564449411, 58.03211375817635], [-10.444977544778329, 63.09505407752546], [0.3256103519432223, 73.31022368544396]]]}}, {"type": "Feature", "properties": {"bin": "80cbfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[45.89351102822212, -31.28560866556057], [41.54970877633701, -41.45713981733577], [51.09014618986225, -50.15451159756744], [67.21199607170563, -48.011188120377795], [69.74251514346645, -36.800197061174266], [58.663371667348294, -28.65301931148454], [45.89351102822212, -31.28560866556057]]]}}, {"type": "Feature", "properties": {"bin": "8003fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[145.5581976913369, 87.36469532319619], [-163.45686807900947, 76.14556732608257], [-131.70883908792965, 69.37134141076518], [-100.82187020582201, 67.53592431503803], [-66.90449925088507, 72.20470505499345], [-34.758417980284634, 81.27137179020501], [145.5581976913369, 87.36469532319619]]]}}, {"type": "Feature", "properties": {"bin": "809bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-170.6193233947984, -25.60370257696877], [-161.63482061718392, -16.505947603561054], [-165.41674992858833, -5.7628604914369355], [-176.05696384421356, -3.9687969766095974], [175.98600155652952, -11.545295975414767], [177.51613498805204, -22.197541386302383], [-170.6193233947984, -25.60370257696877]]]}}, {"type": "Feature", "properties": {"bin": "807dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-19.226610297371195, -12.194726726167978], [-11.66474754212644, -4.467031609784501], [-13.70814670391801, 6.270965136275773], [-23.62913110308366, 10.672390551299365], [-32.48012811254947, 3.454917535376011], [-30.225126243811296, -8.70173997465801], [-19.226610297371195, -12.194726726167978]]]}}, {"type": "Feature", "properties": {"bin": "8049fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-106.5596852317401, 12.150574686647923], [-96.05020989622146, 19.26900694125663], [-96.66289038040519, 31.619530626908528], [-110.25748485653355, 36.800197061174266], [-121.3366283326517, 28.653019311484535], [-118.48186571718101, 16.572699557873406], [-106.5596852317401, 12.150574686647923]]]}}, {"type": "Feature", "properties": {"bin": "80effffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-34.441802308663334, -87.36469532319619], [16.5431319209905, -76.14556732608257], [-7.13862860130792, -66.19292316051032], [-34.663862454939185, -62.49215566258707], [-62.187074611719154, -66.20328559643201], [-85.85690989815225, -76.163042830191], [-34.441802308663334, -87.36469532319619]]]}}, {"type": "Feature", "properties": {"bin": "801bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-51.550082921060856, 61.33081918088026], [-63.20077399553516, 50.77050266836529], [-54.8790127792493, 40.97555819925587], [-40.34777371760148, 38.734209457703855], [-27.492923060366778, 46.76027724369226], [-29.882335644494077, 58.03211375817634], [-51.550082921060856, 61.33081918088026]]]}}, {"type": "Feature", "properties": {"bin": "805bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[179.21716082489448, 5.889921754313916], [-175.4582711140254, 15.285730312483956], [177.84694371159145, 24.756909421354468], [164.45727251367725, 23.00472505886229], [160.7733897026288, 12.194726726168001], [168.3352524578736, 4.467031609784529], [179.21716082489448, 5.889921754313916]]]}}, {"type": "Feature", "properties": {"bin": "804bfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[120.50339385995798, 29.89298533869355], [118.80300158646772, 19.252194904738655], [128.2235738321257, 12.387611570633615], [140.1697245352548, 16.779214626193742], [142.4332217566576, 27.949605976503882], [132.30837745804203, 34.33115860097915], [120.50339385995798, 29.89298533869355]]]}}, {"type": "Feature", "properties": {"bin": "8053fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[37.16428242437894, 29.339076105087567], [31.19369141851222, 18.24201252667272], [37.848935371300406, 8.893462571252657], [48.701817244234036, 9.876090877671759], [54.68696935373798, 19.14885864900799], [50.187903612796035, 29.08939213814527], [37.16428242437894, 29.339076105087567]]]}}, {"type": "Feature", "properties": {"bin": "8081fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-39.83027546474522, -16.779214626193745], [-30.225126243811296, -8.70173997465801], [-32.48012811254947, 3.454917535376011], [-44.14041291818604, 7.725284543519059], [-53.68204442813005, -0.17017772412858934], [-51.77642616787428, -12.387611570633618], [-39.83027546474522, -16.779214626193745]]]}}, {"type": "Feature", "properties": {"bin": "806dfffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-96.05020989622146, 19.26900694125663], [-106.5596852317401, 12.150574686647923], [-105.17323884809628, 0.8701881901666535], [-95.07033345637271, -4.348486695475445], [-84.77330656823203, 2.504604687315686], [-85.63106856426799, 13.83685380982093], [-96.05020989622146, 19.26900694125663]]]}}, {"type": "Feature", "properties": {"bin": "80a1fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[-129.81209638720398, -29.08939213814527], [-125.31303064626204, -19.148858649007984], [-131.29818275576596, -9.876090877671768], [-142.1510646286996, -8.893462571252659], [-148.8063085814878, -18.242012526672728], [-142.83571757562106, -29.339076105087567], [-129.81209638720398, -29.08939213814527]]]}}, {"type": "Feature", "properties": {"bin": "8061fffffffffff", "felt:h3_level": 0}, "geometry": {"type": "Polygon", "coordinates": [[[84.9296665436273, 4.348486695475441], [85.44533748453688, 16.700959516615516], [75.01088584624907, 22.41056616821523], [65.72669976466062, 16.170389213771358], [65.9709521554062, 5.242929409571698], [74.82676115190374, -0.8701881901666614], [84.9296665436273, 4.348486695475441]]]}}]} diff --git a/tests/pbf/h3-1-0-0.geojson b/tests/pbf/h3-1-0-0.geojson new file mode 100644 index 000000000..bc2337270 --- /dev/null +++ b/tests/pbf/h3-1-0-0.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"bin": "82580ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.98617018247175, 14.492671448162053], [7.578742434535621, 12.932375898547791], [8.784937126674635, 11.730952307865815], [10.41628812276234, 12.057325226209532], [10.869781564574977, 13.615007694572515], [9.646405667369654, 14.84966422909465], [7.98617018247175, 14.492671448162053]]]}}, {"type": "Feature", "properties": {"bin": "826c0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-94.0611770183681, 6.79372414805152], [-95.48101266679427, 5.843867655957198], [-95.41444403196962, 4.1999104493742925], [-93.91140202136131, 3.4938029769751084], [-92.471406029144, 4.455546808882516], [-92.55464950365904, 6.111039151980233], [-94.0611770183681, 6.79372414805152]]]}}, {"type": "Feature", "properties": {"bin": "821347fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.45767046363335, 65.28570427193907], [-110.31273664701273, 64.0825045006956], [-109.38523832003004, 62.39573355947508], [-105.93714340514043, 61.854047094488976], [-103.08336241294829, 62.96726794469463], [-103.65527053055202, 64.70876615112826], [-107.45767046363335, 65.28570427193907]]]}}, {"type": "Feature", "properties": {"bin": "826f6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-124.67724967374028, -0.041451351015023376], [-123.57901653086918, 0.8432313994062691], [-123.95923626332045, 2.3041178869669072], [-125.45745246704637, 2.8533786934186565], [-126.47619542382564, 1.6263637306496364], [-126.07118801670022, 0.17217745834264914], [-124.67724967374028, -0.041451351015023376]]]}}, {"type": "Feature", "properties": {"bin": "825e2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.08931075322476, 9.305751473411327], [-56.79988322732103, 10.409411607325323], [-57.046769924020715, 11.987619654773415], [-58.569813494086375, 12.44794219797637], [-59.83491702421139, 11.35536792549035], [-59.601429904168384, 9.79175058324698], [-58.08931075322476, 9.305751473411327]]]}}, {"type": "Feature", "properties": {"bin": "823b4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.87032852792942, 34.08823726387208], [-42.3374216455875, 32.86845387395056], [-41.82721927443858, 31.16982581915594], [-39.90371712605461, 30.658039731336256], [-38.41822597713687, 31.843534959654345], [-38.87236997094432, 33.57473105279376], [-40.87032852792942, 34.08823726387208]]]}}, {"type": "Feature", "properties": {"bin": "825f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.51031219662639, 6.610729720310988], [-44.14041291818604, 7.725284543519059], [-44.4368152561692, 9.409471224455944], [-46.09437063584476, 9.978742225212763], [-47.45673010021346, 8.876393045355925], [-47.1694561758373, 7.193028846791692], [-45.51031219662639, 6.610729720310988]]]}}, {"type": "Feature", "properties": {"bin": "82082ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.930936799121078, 65.4132279482162], [15.523290332812767, 66.10348492641157], [14.813658725827596, 67.35176867523612], [11.133280035906186, 67.85995297513011], [8.516906270455017, 67.06524160472564], [9.586063396817956, 65.87071869391139], [12.930936799121078, 65.4132279482162]]]}}, {"type": "Feature", "properties": {"bin": "821e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.345747364400054, 50.55427508726938], [11.648396307828463, 49.03934513079639], [13.374347667392275, 47.965938447346616], [15.817383557718518, 48.388122500459744], [16.606046853462765, 49.899182136699345], [14.863026772454885, 50.99274772045683], [12.345747364400054, 50.55427508726938]]]}}, {"type": "Feature", "properties": {"bin": "82229ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.06748518049622, 51.47000327002249], [-156.55813986607876, 52.51970092230097], [-157.28277091871553, 54.01377148101902], [-159.65013133085614, 54.468963096035075], [-161.20280595712075, 53.39506331466217], [-160.34668181107745, 51.89099020212346], [-158.06748518049622, 51.47000327002249]]]}}, {"type": "Feature", "properties": {"bin": "821a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.57863225347378, 43.69221965395049], [-55.83934032376548, 42.3252015414221], [-54.8790127792493, 40.97555819925587], [-52.873705300901584, 40.78170535052993], [-51.56571923107196, 42.10734420983778], [-52.3220232130021, 43.64344079831482], [-54.57863225347378, 43.69221965395049]]]}}, {"type": "Feature", "properties": {"bin": "823877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.543589356987794, 36.59789814478598], [3.1364790338915944, 34.91820439114921], [4.622001932112611, 33.80292479846324], [6.551513795830656, 34.35055445973989], [7.029881378875401, 36.043675411373094], [5.507969569355888, 37.17634170043516], [3.543589356987794, 36.59789814478598]]]}}, {"type": "Feature", "properties": {"bin": "821baffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-49.9240190019277, 55.11184567911766], [-52.88775721716944, 55.28801569340989], [-54.604472622747934, 53.84500845164467], [-53.40590293022116, 52.304456969807234], [-50.656695898557885, 52.16478116101679], [-48.90245004939706, 53.53097474699997], [-49.9240190019277, 55.11184567911766]]]}}, {"type": "Feature", "properties": {"bin": "8238cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.625253967039598, 28.063354881307642], [6.19103424186027, 26.368584569326593], [7.556100605723162, 25.1510932676285], [9.380676605201614, 25.603702576968765], [9.874355349748093, 27.304951934557945], [8.48467266804086, 28.54775137450854], [6.625253967039598, 28.063354881307642]]]}}, {"type": "Feature", "properties": {"bin": "82671ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-75.50830730075, 15.113258517387997], [-76.86276781801787, 14.325883119100627], [-76.70167830727847, 12.819508275225337], [-75.17381847473749, 12.112028031531354], [-73.82622515927444, 12.921603796921572], [-73.9993067827236, 14.416001983365364], [-75.50830730075, 15.113258517387997]]]}}, {"type": "Feature", "properties": {"bin": "82015ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.902098185657369, 77.83462153176359], [15.675393846113211, 78.79915742230948], [13.880064418613259, 80.34595244233695], [4.121656030400283, 80.79168761359398], [-1.3920560938763384, 79.5921312331109], [2.265817701531166, 78.19830644503146], [9.902098185657369, 77.83462153176359]]]}}, {"type": "Feature", "properties": {"bin": "8256cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-32.48012811254947, 3.454917535376011], [-31.164230201202276, 4.550036402249636], [-31.48278424491017, 6.250935042854491], [-33.11606311268313, 6.874320813243433], [-34.445393973713756, 5.793088472815407], [-34.128462441813596, 4.07484598399262], [-32.48012811254947, 3.454917535376011]]]}}, {"type": "Feature", "properties": {"bin": "82366ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.54677169521673, 33.26381879651192], [-137.80871931624813, 32.16641595291894], [-137.18917403900545, 30.621401309085574], [-135.3445752779655, 30.188340220579164], [-134.1064889717779, 31.285608665560563], [-134.68851943420182, 32.81586630611944], [-136.54677169521673, 33.26381879651192]]]}}, {"type": "Feature", "properties": {"bin": "822857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.41846935219817, 42.180691044100726], [-127.95866237076233, 43.41920841314796], [-128.55930051732804, 44.85995361844986], [-130.64994419391363, 45.0396522953233], [-132.06227559423212, 43.79453728701303], [-131.43373682445977, 42.37654333434242], [-129.41846935219817, 42.180691044100726]]]}}, {"type": "Feature", "properties": {"bin": "82555ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.344548353615849, 18.349455296769857], [-8.877801145205453, 17.56154923764815], [-9.006464265768987, 15.98598523372256], [-7.649183817068924, 15.22126557573289], [-6.162619450275885, 15.990769092176489], [-5.987551711331904, 17.542834947432016], [-7.344548353615849, 18.349455296769857]]]}}, {"type": "Feature", "properties": {"bin": "823aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-46.55058677366683, 24.772309246893247], [-47.733848338608524, 23.624774646325037], [-47.20078618313929, 22.04222100670142], [-45.517664324899634, 21.568161062707187], [-44.30785181510584, 22.680244947040375], [-44.80598863152556, 24.3018756802786], [-46.55058677366683, 24.772309246893247]]]}}, {"type": "Feature", "properties": {"bin": "821257fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-112.25958067965824, 56.667369999771786], [-114.22928039520941, 55.478388139502115], [-113.35708552774537, 53.86776941130843], [-110.68634707583348, 53.386336108066025], [-108.67860715148952, 54.501947976968424], [-109.36840318710225, 56.17117643212055], [-112.25958067965824, 56.667369999771786]]]}}, {"type": "Feature", "properties": {"bin": "827497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.955884209020185, -2.93876249540657], [-10.966735378416788, -1.9196479625840597], [-11.254244736494712, -0.4015944958931172], [-12.538994180303641, 0.13278097466366448], [-13.559193205964707, -0.8762512952424141], [-13.263717006889303, -2.4301130175177077], [-11.955884209020185, -2.93876249540657]]]}}, {"type": "Feature", "properties": {"bin": "8219a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.24262992316041, 61.34337802161002], [-22.038814684270694, 60.61568456080993], [-21.860891633724744, 59.14600882924072], [-19.067029449080284, 58.40493643730386], [-16.373725810250253, 59.10182986756048], [-16.37196241724275, 60.568693514800785], [-19.24262992316041, 61.34337802161002]]]}}, {"type": "Feature", "properties": {"bin": "82541ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.894156301320406, 15.857367972897634], [-16.39811264585764, 15.002855614684421], [-16.398619029755448, 13.434493335832748], [-14.945816427724187, 12.73084648058285], [-13.478121064920861, 13.557520460561596], [-13.427370701414569, 15.114836157430986], [-14.894156301320406, 15.857367972897634]]]}}, {"type": "Feature", "properties": {"bin": "8202affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.02399484501407, 76.64501335405268], [-128.17765769680258, 75.14190865985594], [-124.96247343782, 73.82161995115898], [-119.31832121360138, 73.77002624235216], [-115.60168302411815, 75.13310683752093], [-117.96272581310672, 76.6578053162943], [-125.02399484501407, 76.64501335405268]]]}}, {"type": "Feature", "properties": {"bin": "823407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.025574828342354, 36.184902234453155], [-27.822714524368322, 35.12512947073977], [-27.579540760358054, 33.332137547452156], [-25.61856742173713, 32.591651675540135], [-23.848420940607653, 33.619638572470286], [-24.011395014386597, 35.41886286650527], [-26.025574828342354, 36.184902234453155]]]}}, {"type": "Feature", "properties": {"bin": "821c37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-144.4245651319535, 53.21749558931391], [-146.65509019149425, 52.57479276042742], [-146.94645290870838, 51.30809805677444], [-145.16788662513864, 50.710755837549634], [-143.0644961346263, 51.311333256852826], [-142.61643330533244, 52.54934584271899], [-144.4245651319535, 53.21749558931391]]]}}, {"type": "Feature", "properties": {"bin": "8248b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-97.9056342663466, 23.58979436809324], [-96.29745134025397, 24.55902528467453], [-96.38475070596917, 26.330133141946437], [-98.13038997835126, 27.145530873716577], [-99.77344403948946, 26.16294928512754], [-99.63585556147724, 24.37894428550873], [-97.9056342663466, 23.58979436809324]]]}}, {"type": "Feature", "properties": {"bin": "820657fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-33.74805583516024, 65.32857388241261], [-37.35789405976653, 65.9666803766423], [-40.335387826720726, 64.84056407245838], [-39.56813625393488, 63.15915174626515], [-36.22054894364172, 62.60005462999545], [-33.385597426618574, 63.64810218085884], [-33.74805583516024, 65.32857388241261]]]}}, {"type": "Feature", "properties": {"bin": "82751ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.572995371627303, 7.395109809160056], [-5.908652939747203, 6.676866573680896], [-6.0644961087785445, 5.362739776582643], [-4.918873186254363, 4.7842994164597235], [-3.66239661559828, 5.048182136577349], [-3.4710946837530763, 6.3576532880413], [-4.572995371627303, 7.395109809160056]]]}}, {"type": "Feature", "properties": {"bin": "820c57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.50207582319376, 61.583334933903004], [-155.36073868635916, 60.70120286769721], [-155.27671621976822, 59.197960002465436], [-152.6428741066952, 58.58948304211455], [-149.9571329675554, 59.39832974861567], [-149.73449372095553, 60.88463682809786], [-152.50207582319376, 61.583334933903004]]]}}, {"type": "Feature", "properties": {"bin": "82889ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-148.07818364980056, 1.9195566758189488], [-149.1749589151811, 0.559499450859455], [-148.5300629727575, -1.021248866915232], [-146.80697469010104, -1.252497203845138], [-145.71088277855392, 0.08630376308334368], [-146.33638072286848, 1.6772949381945048], [-148.07818364980056, 1.9195566758189488]]]}}, {"type": "Feature", "properties": {"bin": "826c37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-97.03705754786904, 8.122360527133047], [-95.61319237550187, 9.0771817383171], [-95.68126302867996, 10.72110876920419], [-97.2122610082857, 11.421136455613714], [-98.6647116592769, 10.443970997020717], [-98.55743760905895, 8.789782549799035], [-97.03705754786904, 8.122360527133047]]]}}, {"type": "Feature", "properties": {"bin": "82390ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.7286180787605163, 40.87178460953809], [-4.708227372662669, 40.25602599301953], [-4.963456118392565, 38.55271209108038], [-3.3113412530765816, 37.499409186860944], [-1.4162342628377134, 38.1159967227654], [-1.0911461549131662, 39.78465688180244], [-2.7286180787605163, 40.87178460953809]]]}}, {"type": "Feature", "properties": {"bin": "82359ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-36.11258179895081, 37.69840581728444], [-37.75906273154746, 36.50733780530183], [-37.30966446935987, 34.76793171992825], [-35.282354678855576, 34.19423602910232], [-33.6308063863189, 35.35144256871378], [-34.00941174896686, 37.11550690947641], [-36.11258179895081, 37.69840581728444]]]}}, {"type": "Feature", "properties": {"bin": "821c2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.06320040294017, 47.862031640242165], [-138.8332474954832, 49.11062606291379], [-139.57676103701706, 50.2961995607858], [-141.55666630234307, 50.214791888920615], [-142.7150648217754, 48.97055194213804], [-141.96705167315295, 47.80338871690368], [-140.06320040294017, 47.862031640242165]]]}}, {"type": "Feature", "properties": {"bin": "820d9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-178.5116045749234, 66.22512849903984], [179.15613950339954, 64.7804865813286], [-179.11117538442045, 63.29242332756059], [-175.35492453543588, 63.172437771438275], [-172.9029869884375, 64.50370485353399], [-174.29157888223213, 66.0652649892341], [-178.5116045749234, 66.22512849903984]]]}}, {"type": "Feature", "properties": {"bin": "82668ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.43431246023684, 5.370970821417855], [-81.87017398347723, 4.427301059150938], [-81.72798492677288, 2.7259823537442265], [-80.13485884440162, 1.975921533508648], [-78.69873601500697, 2.938488002465914], [-78.855727170351, 4.6317247469003044], [-80.43431246023684, 5.370970821417855]]]}}, {"type": "Feature", "properties": {"bin": "826eeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-118.70272085347221, 10.41842248642542], [-117.40188724060047, 11.488096579012108], [-117.75324252970825, 13.16717735764749], [-119.43635840633904, 13.751960336740883], [-120.7266797125519, 12.651392432778692], [-120.34537010007212, 10.997254705078609], [-118.70272085347221, 10.41842248642542]]]}}, {"type": "Feature", "properties": {"bin": "827cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.421549166867063, 2.9850510529164813], [-18.29181990106688, 3.9960705951817412], [-18.597968911654448, 5.592617806389967], [-20.03950695020037, 6.20983767529234], [-21.197086686578825, 5.214586161545864], [-20.88554403470773, 3.586179719894], [-19.421549166867063, 2.9850510529164813]]]}}, {"type": "Feature", "properties": {"bin": "827867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-127.92421350205531, 1.8648635745791182], [-128.9636030113442, 0.6149645664400339], [-128.52867297228602, -0.8502628917755678], [-127.08421875983606, -1.0549590305746814], [-126.07118801670022, 0.17217745834264914], [-126.47619542382564, 1.6263637306496364], [-127.92421350205531, 1.8648635745791182]]]}}, {"type": "Feature", "properties": {"bin": "822787fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-106.93095328347972, 49.548822883945455], [-108.76642656192469, 48.52651320859792], [-108.21902141506563, 46.935541920671746], [-105.97683463775739, 46.322960205813594], [-104.14330482734766, 47.27502787731518], [-104.54455472421517, 48.90848007261448], [-106.93095328347972, 49.548822883945455]]]}}, {"type": "Feature", "properties": {"bin": "821d57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.81157802891047, 49.131858837267735], [-135.45245715606114, 50.3573782875005], [-136.86573305642807, 51.574361955016826], [-138.99195596812496, 51.521279104200275], [-139.57676103701706, 50.2961995607858], [-138.8332474954832, 49.11062606291379], [-136.81157802891047, 49.131858837267735]]]}}, {"type": "Feature", "properties": {"bin": "821e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.334660572794059, 40.405578471534604], [11.719174616730063, 38.74166724514195], [13.244313475659819, 37.523712365785194], [15.40073900356166, 37.94968889463011], [16.087588600126523, 39.612646497839734], [14.548450654218147, 40.85124382084822], [12.334660572794059, 40.405578471534604]]]}}, {"type": "Feature", "properties": {"bin": "8254cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.62057662207049, 9.082229599755195], [-15.017096277235694, 8.290871572025175], [-15.03935686307738, 6.880832664714157], [-13.708146703917995, 6.270965136275775], [-12.344346110330108, 7.035853616998724], [-12.279428517961106, 8.436299934019914], [-13.62057662207049, 9.082229599755195]]]}}, {"type": "Feature", "properties": {"bin": "821a0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.139093703410055, 49.84904149043218], [-43.91722629234339, 48.605827842391406], [-43.25546063985791, 47.02166961988067], [-40.893517512329325, 46.65143560334475], [-39.082390787769896, 47.86715402021093], [-39.66181029144391, 49.47997018187093], [-42.139093703410055, 49.84904149043218]]]}}, {"type": "Feature", "properties": {"bin": "822a17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.07691180312379, 42.400492689472884], [-75.3334517237918, 42.029563712253676], [-75.96061877033631, 40.48049730850132], [-74.44277493761697, 39.34056938395393], [-72.30787665118665, 39.68606179325924], [-71.57377195480382, 41.19572519045852], [-73.07691180312379, 42.400492689472884]]]}}, {"type": "Feature", "properties": {"bin": "82589ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.125247405149373, 6.425019813099671], [2.8260034960813383, 5.055077924023954], [3.9430361557864604, 3.968796976609587], [5.380973348826344, 4.22115443356989], [5.720322083693563, 5.5902368764341395], [4.581792371905466, 6.708566989426475], [3.125247405149373, 6.425019813099671]]]}}, {"type": "Feature", "properties": {"bin": "820c5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.9571329675554, 59.39832974861567], [-152.6428741066952, 58.58948304211455], [-152.70260638958075, 57.14185650944261], [-150.33692815389782, 56.522108344088565], [-147.8150486486202, 57.26768168436388], [-147.49860030923193, 58.69272286234608], [-149.9571329675554, 59.39832974861567]]]}}, {"type": "Feature", "properties": {"bin": "823b17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-55.29832920217747, 38.13570581766841], [-56.422106953949374, 36.822037744292885], [-55.68434963007805, 35.3085484340503], [-53.84554835277784, 35.065932426553275], [-52.66718765783381, 36.36089582314373], [-53.37975832882263, 37.917559931140715], [-55.29832920217747, 38.13570581766841]]]}}, {"type": "Feature", "properties": {"bin": "82566ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-25.300780131815994, 12.852209309557823], [-26.696978168270526, 11.95369807584694], [-26.381945702147313, 10.35020576437391], [-24.83782849428293, 9.71260186793756], [-23.62913110308365, 10.672390551299387], [-23.751238955609885, 12.196213084240526], [-25.300780131815994, 12.852209309557823]]]}}, {"type": "Feature", "properties": {"bin": "825f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-47.45673010021346, 8.876393045355925], [-46.09437063584476, 9.978742225212763], [-46.383986417905284, 11.624450482084903], [-48.026311893180406, 12.165598545838135], [-49.37813314252597, 11.076124691689042], [-49.09851500224472, 9.433102992134968], [-47.45673010021346, 8.876393045355925]]]}}, {"type": "Feature", "properties": {"bin": "821ceffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.94108602130572, 44.071547317698794], [-136.7018216781215, 45.34099129109544], [-137.39611355793218, 46.632773857175515], [-139.34036538559516, 46.633121031672175], [-140.51639150952937, 45.36592263601558], [-139.81328293935732, 44.09616647144855], [-137.94108602130572, 44.071547317698794]]]}}, {"type": "Feature", "properties": {"bin": "826d1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-95.68126302867996, 10.72110876920419], [-94.23243902021368, 11.675376138559274], [-94.28318311716961, 13.348848959489132], [-95.82289320545851, 14.08222051139985], [-97.303375422602, 13.10816493649229], [-97.2122610082857, 11.421136455613714], [-95.68126302867996, 10.72110876920419]]]}}, {"type": "Feature", "properties": {"bin": "8266dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.94635540018261, 0.4689550165235644], [-78.37997625701571, -0.5122773661661794], [-78.21816398026434, -2.2641433736476877], [-76.60853599254317, -3.0214726756669834], [-75.18024572375664, -2.0221015680241083], [-75.35590616155932, -0.2839386148111181], [-76.94635540018261, 0.4689550165235644]]]}}, {"type": "Feature", "properties": {"bin": "823a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.179808817821964, 26.14477622104115], [-60.03617531999626, 24.987464800988757], [-59.37332807272962, 23.56547942262585], [-57.8635816446284, 23.256059937210214], [-56.963466867911656, 24.39069811074488], [-57.61551730939025, 25.858084657740633], [-59.179808817821964, 26.14477622104115]]]}}, {"type": "Feature", "properties": {"bin": "826c57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-92.471406029144, 4.455546808882516], [-93.91140202136131, 3.4938029769751084], [-93.83527270661173, 1.8061392691515354], [-92.30215822764066, 1.0694846491681498], [-90.84373175132413, 2.0426493760071556], [-90.93685077965439, 3.7405714093233136], [-92.471406029144, 4.455546808882516]]]}}, {"type": "Feature", "properties": {"bin": "823e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.09269537453719, 22.484493199126963], [16.493141377842296, 20.807842018632034], [17.745279877629986, 19.47478423772583], [19.597919649817623, 19.787818768125756], [20.242990297561875, 21.4509882258132], [18.9912827255566, 22.815134716422165], [17.09269537453719, 22.484493199126963]]]}}, {"type": "Feature", "properties": {"bin": "825047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-138.43217486148703, 25.066706608415128], [-139.65016236909815, 23.81776170396896], [-139.03339034616954, 22.174891504326965], [-137.2313894512537, 21.794055505550357], [-136.03238180696044, 23.037730503442052], [-136.61573872265618, 24.66731214855594], [-138.43217486148703, 25.066706608415128]]]}}, {"type": "Feature", "properties": {"bin": "82464ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-159.13312902532823, 23.43817541951192], [-160.24132981720263, 22.00585426446814], [-159.47516114264087, 20.42220937072486], [-157.6068486027842, 20.259691594705036], [-156.47838570074387, 21.691033498803716], [-157.23734776410336, 23.285729094681425], [-159.13312902532823, 23.43817541951192]]]}}, {"type": "Feature", "properties": {"bin": "8235affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.802691704224248, 41.14595056644986], [-32.63448706217523, 40.022078440453285], [-32.27110570456822, 38.261418566022805], [-30.16004106649327, 37.6088436866489], [-28.341848402846313, 38.70068005705689], [-28.619292548599276, 40.47612715712832], [-30.802691704224248, 41.14595056644986]]]}}, {"type": "Feature", "properties": {"bin": "8206e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-38.05088336858742, 67.65668949772835], [-42.212203177542214, 68.20861039911539], [-45.288169326117874, 66.9915288042169], [-44.12334356355083, 65.31881724104973], [-40.335387826720726, 64.84056407245838], [-37.35789405976653, 65.9666803766423], [-38.05088336858742, 67.65668949772835]]]}}, {"type": "Feature", "properties": {"bin": "826f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-108.22846932201116, 2.0375119147551466], [-106.89596666042848, 2.9833434443845], [-107.10416387391813, 4.548448008485312], [-108.67970013517258, 5.15989177530367], [-110.02096631544327, 4.183696897349536], [-109.77837324145847, 2.627100977731312], [-108.22846932201116, 2.0375119147551466]]]}}, {"type": "Feature", "properties": {"bin": "820daffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-169.5774448300429, 70.31623093904679], [-172.92604370108882, 69.00495510831308], [-171.4567231620738, 67.39429182984122], [-167.19133009932668, 67.03819408473983], [-163.87296846032518, 68.21921734529467], [-164.74827370527964, 69.87939359713387], [-169.5774448300429, 70.31623093904679]]]}}, {"type": "Feature", "properties": {"bin": "82235ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.3260183385508, 41.77149077185328], [-172.14021875468273, 43.217060122954415], [-173.2513616288856, 44.74985555511408], [-175.62947902064033, 44.82345407192179], [-176.79450859724977, 43.343120168059755], [-175.60595851849678, 41.82431170533693], [-173.3260183385508, 41.77149077185328]]]}}, {"type": "Feature", "properties": {"bin": "820817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.693860813817622, 63.51970712744604], [8.899170411870465, 62.3039347443133], [11.080660058482376, 61.54051460002519], [14.102101615280446, 61.96354053750143], [15.046206854523517, 63.166721052064105], [12.823918552178451, 63.96072746373739], [9.693860813817622, 63.51970712744604]]]}}, {"type": "Feature", "properties": {"bin": "82829ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.807652062069575, 3.046341729325485], [15.505317072937482, 4.5409605608606505], [14.583250071411678, 5.762860491436916], [12.988442347830352, 5.505707355639411], [12.294352016976955, 4.039836103302269], [13.190830888883605, 2.8025965889319755], [14.807652062069575, 3.046341729325485]]]}}, {"type": "Feature", "properties": {"bin": "82669ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.4507972812094, 5.162459741023921], [-84.89974013287366, 4.209437035574177], [-84.77330656823203, 2.504604687315686], [-83.18196203351864, 1.7557835553234635], [-81.72798492677288, 2.7259823537442265], [-81.87017398347723, 4.427301059150938], [-83.4507972812094, 5.162459741023921]]]}}, {"type": "Feature", "properties": {"bin": "827177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-168.17288759575646, 13.445604337884351], [-169.1113284872115, 12.018156417560103], [-168.36951937180766, 10.465471191072943], [-166.6827230615118, 10.315467561491902], [-165.71353740542693, 11.741030756650314], [-166.4611269077316, 13.318620675199552], [-168.17288759575646, 13.445604337884351]]]}}, {"type": "Feature", "properties": {"bin": "82712ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.60631287174178, 15.085552355448257], [-171.51129573239598, 13.65957065690441], [-170.76857025662542, 12.138300519344803], [-169.1113284872115, 12.018156417560103], [-168.17288759575646, 13.445604337884351], [-168.92446494544097, 14.991878567626506], [-170.60631287174178, 15.085552355448257]]]}}, {"type": "Feature", "properties": {"bin": "8229b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.26800832642184, 32.85690516760766], [-111.62272575497785, 33.98532502644072], [-111.96235777597163, 35.70493980448009], [-113.99954869994481, 36.284189314860356], [-115.64454936135779, 35.138559675017866], [-115.25400548040932, 33.43153649157359], [-113.26800832642184, 32.85690516760766]]]}}, {"type": "Feature", "properties": {"bin": "823a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.407783284746166, 25.213112368128737], [-55.388196979818055, 24.058284547723517], [-54.76915143666361, 22.57206889608712], [-53.18787140474504, 22.196773458810885], [-52.168857817442415, 23.323167313091375], [-52.76818094445429, 24.853757050057478], [-54.407783284746166, 25.213112368128737]]]}}, {"type": "Feature", "properties": {"bin": "822667fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-87.52625462013384, 42.15291741074853], [-89.5783976626672, 41.51855472869033], [-89.7262163062613, 39.947221847185624], [-87.95138172303122, 39.01478831061852], [-85.97932795863905, 39.59650945572191], [-85.70319925935871, 41.16126851923316], [-87.52625462013384, 42.15291741074853]]]}}, {"type": "Feature", "properties": {"bin": "820fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.30148147989962, 71.00099430495668], [-88.22449223158009, 70.3043707747334], [-88.6546946602392, 68.55154767932004], [-84.82657304561398, 67.51572711354028], [-80.37796999282763, 68.13249906554519], [-79.30823910622338, 69.8572858007267], [-83.30148147989962, 71.00099430495668]]]}}, {"type": "Feature", "properties": {"bin": "8239a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.744488220052984, 36.383229951792835], [-12.646960344628356, 35.57816880772348], [-12.727150094554121, 33.80653391043386], [-10.98139564337498, 32.86267465416169], [-9.14446112738395, 33.653758830556235], [-8.989073467751014, 35.40191572642888], [-10.744488220052984, 36.383229951792835]]]}}, {"type": "Feature", "properties": {"bin": "8282b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.669408104914123, -0.8469844525190846], [18.375633862528336, 0.7096114806741792], [17.401552408456116, 2.0129447691512135], [15.743841427341074, 1.7743965588127961], [15.037915717292355, 0.24461504240036508], [15.988623552785217, -1.0732871092626444], [17.669408104914123, -0.8469844525190846]]]}}, {"type": "Feature", "properties": {"bin": "825fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-46.5899429561277, 3.7613835005427885], [-45.21587333140437, 4.8934826618098395], [-45.51031219662639, 6.610729720310988], [-47.1694561758373, 7.193028846791692], [-48.534195677402856, 6.071099094574541], [-48.24949130203985, 4.357140454971902], [-46.5899429561277, 3.7613835005427885]]]}}, {"type": "Feature", "properties": {"bin": "8266b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.84368504845844, 10.069625269478522], [-85.27113336987175, 9.163419968536484], [-85.14863398139961, 7.5409997270373745], [-83.58312175348144, 6.827381161385121], [-82.15019124572879, 7.752188983756235], [-82.28806052956973, 9.37146012407908], [-83.84368504845844, 10.069625269478522]]]}}, {"type": "Feature", "properties": {"bin": "828047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.76470312434504, -2.023474316036846], [-47.38518685476662, -0.881814578180339], [-47.674987520303226, 0.8775480454776453], [-49.333737961350366, 1.4869936465684874], [-50.70033436722617, 0.35039393085085474], [-50.421440284833814, -1.400332486319738], [-48.76470312434504, -2.023474316036846]]]}}, {"type": "Feature", "properties": {"bin": "821c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-144.88833503486788, 49.268689394068176], [-146.28571164887717, 48.39520829324245], [-145.50148773440657, 47.22925356200961], [-143.35464186435385, 46.935232412617694], [-141.96705167315295, 47.80338871690368], [-142.71506482177543, 48.97055194213804], [-144.88833503486788, 49.268689394068176]]]}}, {"type": "Feature", "properties": {"bin": "8202cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-101.94302348754017, 70.9908918015585], [-105.89570675080105, 69.86396033968721], [-105.04304411276642, 68.16087226295068], [-100.82187020582201, 67.53592431503803], [-96.99022993728457, 68.55531035042452], [-97.23000455277177, 70.3002933656564], [-101.94302348754017, 70.9908918015585]]]}}, {"type": "Feature", "properties": {"bin": "824657fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.72243604318498, 23.752623710762244], [-165.75801721847134, 22.310289219453917], [-164.98081982302025, 20.7833722829969], [-163.16571097809256, 20.68376912970729], [-162.10090781348254, 22.129365684134278], [-162.87942078907895, 23.6712242296957], [-164.72243604318498, 23.752623710762244]]]}}, {"type": "Feature", "properties": {"bin": "825e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-52.33667248230634, 10.503211167751092], [-50.99922604084513, 11.602089897710748], [-51.270770377463634, 13.199442659470222], [-52.86812566700949, 13.69054711705167], [-54.188054013873085, 12.604319983090281], [-53.92839791969591, 11.014795646265108], [-52.33667248230634, 10.503211167751092]]]}}, {"type": "Feature", "properties": {"bin": "820c27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.98612998088066, 68.67171364428049], [-159.7116669310536, 67.66543403910107], [-159.28593738084393, 66.02866715337115], [-155.68342088765695, 65.39882918127277], [-152.21436038722487, 66.30376675680102], [-152.08848899496186, 67.9323760889138], [-155.98612998088066, 68.67171364428049]]]}}, {"type": "Feature", "properties": {"bin": "824c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-66.496637070969, 24.809924112926538], [-68.07978139882313, 24.60168477695988], [-68.33911590200783, 23.167939348431293], [-66.94208118849998, 22.4941252235017], [-65.80401622503994, 23.501303342309967], [-66.496637070969, 24.809924112926538]]]}}, {"type": "Feature", "properties": {"bin": "825c4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.31014380395078, 10.174450396434414], [-142.45659521737463, 8.803195449124305], [-141.84880431486548, 7.150037601771984], [-140.12125038010964, 6.870649308036965], [-138.98705734518057, 8.224235772380883], [-139.56749079841518, 9.874541283888163], [-141.31014380395078, 10.174450396434414]]]}}, {"type": "Feature", "properties": {"bin": "82262ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-93.41811772809459, 44.97252619713555], [-95.46450687268343, 44.208686356422625], [-95.41290317262253, 42.599408575724205], [-93.4580322172988, 41.74324949577916], [-91.47626179179873, 42.444959538714684], [-91.3842389088904, 44.062790040561886], [-93.41811772809459, 44.97252619713555]]]}}, {"type": "Feature", "properties": {"bin": "826c27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-94.13484906237976, 8.401781337149933], [-92.71844814286082, 9.336365704858514], [-92.74826367817671, 10.965445078249571], [-94.23243902021368, 11.675376138559274], [-95.68126302867996, 10.72110876920419], [-95.61319237550187, 9.0771817383171], [-94.13484906237976, 8.401781337149933]]]}}, {"type": "Feature", "properties": {"bin": "825717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-38.17264520659288, 23.843250262376916], [-39.535390415490795, 22.737529603315632], [-39.12318318048691, 21.08549596803719], [-37.395255697480366, 20.5102438385704], [-36.02386940755977, 21.576587695009557], [-36.38755910202406, 23.25709445650037], [-38.17264520659288, 23.843250262376916]]]}}, {"type": "Feature", "properties": {"bin": "821357fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.03635330479166, 64.4899358631522], [-116.44653125364454, 63.19577227205729], [-115.23742972528419, 61.57815485424911], [-111.87575001919595, 61.18381291868138], [-109.38523832003004, 62.39573355947508], [-110.31273664701273, 64.0825045006956], [-114.03635330479166, 64.4899358631522]]]}}, {"type": "Feature", "properties": {"bin": "82805ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-47.674987520303226, 0.8775480454776453], [-46.29770495421065, 2.0188278359562863], [-46.5899429561277, 3.7613835005427885], [-48.24949130203985, 4.357140454971902], [-49.61564781162314, 3.22361895885767], [-49.333737961350366, 1.4869936465684874], [-47.674987520303226, 0.8775480454776453]]]}}, {"type": "Feature", "properties": {"bin": "82711ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.25867466758532, 10.849022006879926], [-174.10172146686773, 9.46929667566937], [-173.38014762578527, 7.972793830841406], [-171.80358649844362, 7.827278709210272], [-170.92644333634877, 9.206515963523058], [-171.65942568354595, 10.73203329266846], [-173.25867466758532, 10.849022006879926]]]}}, {"type": "Feature", "properties": {"bin": "82572ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-31.655200285380122, 24.794702699458945], [-33.15392628098865, 23.721803951218817], [-32.84377827768773, 22.0178411032255], [-31.091644594267073, 21.368238778761015], [-29.59996504669809, 22.402302794308937], [-29.852265006074962, 24.12402164409733], [-31.655200285380122, 24.794702699458945]]]}}, {"type": "Feature", "properties": {"bin": "8239affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.10189392414001, 36.141695300502455], [-8.989073467751014, 35.40191572642888], [-9.14446112738395, 33.653758830556235], [-7.483894227836209, 32.67425403800953], [-5.667271622745808, 33.405709481234645], [-5.442348460730086, 35.12442405176797], [-7.10189392414001, 36.141695300502455]]]}}, {"type": "Feature", "properties": {"bin": "822827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.18483033298531, 35.73486126784821], [-123.71598551689976, 36.972296150193095], [-124.23124622081255, 38.56638700335243], [-126.25046112478444, 38.8983905317997], [-127.68651181758547, 37.64896276920755], [-127.13810062168672, 36.07979647703287], [-125.18483033298531, 35.73486126784821]]]}}, {"type": "Feature", "properties": {"bin": "823a17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-53.60310562745643, 30.693020915912953], [-54.67394745626158, 29.457126834825857], [-54.02008370952559, 27.92349112558733], [-52.31787831131049, 27.581575735298536], [-51.204112801797436, 28.791538603864225], [-51.833549717973476, 30.369759735577475], [-53.60310562745643, 30.693020915912953]]]}}, {"type": "Feature", "properties": {"bin": "82272ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-90.80084102858143, 52.5438507823548], [-93.31737510980903, 51.74779836660865], [-93.34572179440788, 50.02013421973969], [-91.06289658034065, 49.08235655242536], [-88.65412421340821, 49.81242268121324], [-88.42097150018748, 51.54338080370612], [-90.80084102858143, 52.5438507823548]]]}}, {"type": "Feature", "properties": {"bin": "82350ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-22.572395960792, 41.7803374460896], [-24.545990556815354, 40.79026291049053], [-24.359662033029288, 39.00771212438836], [-22.293034642597473, 38.2149620290745], [-20.3623519142538, 39.178081579793435], [-20.45496726007536, 40.95974163457924], [-22.572395960792, 41.7803374460896]]]}}, {"type": "Feature", "properties": {"bin": "82750ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.4710946837530763, 6.3576532880413], [-3.66239661559828, 5.048182136577349], [-2.5790347646674925, 4.02002363858656], [-1.2768497657972255, 4.273265982323713], [-1.0480074617937822, 5.588679090661898], [-2.159048476284375, 6.645580466394948], [-3.4710946837530763, 6.3576532880413]]]}}, {"type": "Feature", "properties": {"bin": "824daffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.12245868172785, 29.041387845704413], [-68.84984897216773, 28.813992016483084], [-69.4859197897908, 27.602331406208105], [-68.44793356167183, 26.654916213749747], [-66.79574711847854, 26.872316674232145], [-66.10870500107261, 28.046758894043005], [-67.12245868172785, 29.041387845704413]]]}}, {"type": "Feature", "properties": {"bin": "8257a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-41.295122763046706, 23.283698569744043], [-42.58262772653777, 22.171592960461595], [-42.1273910671955, 20.552278072006814], [-40.42609945398587, 20.01206509675657], [-39.12318318048691, 21.08549596803719], [-39.535390415490795, 22.737529603315632], [-41.295122763046706, 23.283698569744043]]]}}, {"type": "Feature", "properties": {"bin": "821b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.604472622747934, 53.84500845164467], [-57.533661380017314, 53.900134937976425], [-59.04004303421978, 52.39005960897347], [-57.696966630210625, 50.8999999267347], [-54.98078697891041, 50.86840334730965], [-53.40590293022116, 52.304456969807234], [-54.604472622747934, 53.84500845164467]]]}}, {"type": "Feature", "properties": {"bin": "821a47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.72420926035957, 48.565062705935084], [-36.667471419753, 47.41254623789866], [-36.17218616798295, 45.74649431398558], [-33.82872489462157, 45.21221585934099], [-31.885017165769785, 46.33410932842538], [-32.2819922837815, 48.01988332959426], [-34.72420926035957, 48.565062705935084]]]}}, {"type": "Feature", "properties": {"bin": "825697fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-44.4368152561692, 9.409471224455944], [-43.07201824591063, 10.498817446605035], [-43.37014678824051, 12.143150710647648], [-45.02495206378428, 12.699988854335011], [-46.383986417905284, 11.624450482084903], [-46.09437063584476, 9.978742225212763], [-44.4368152561692, 9.409471224455944]]]}}, {"type": "Feature", "properties": {"bin": "8237b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-159.94762734735153, 39.09941640444715], [-161.15685475531342, 37.824845121610196], [-160.4849229932437, 36.29523398832091], [-158.4763607884672, 36.22920214493668], [-157.26734938410425, 37.48828167822845], [-158.09098064343686, 38.81057018862586], [-159.94762734735153, 39.09941640444715]]]}}, {"type": "Feature", "properties": {"bin": "82225ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.95555451890584, 49.255935361680656], [-175.6832154603929, 50.659778364781566], [-177.04785603399293, 52.11351997662063], [-179.77426081854213, 52.14336728312945], [178.99763303728216, 50.70784143732748], [-179.5540902215494, 49.27430780429312], [-176.95555451890584, 49.255935361680656]]]}}, {"type": "Feature", "properties": {"bin": "82091ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.3780751296870815, 65.7243888731199], [0.19793526839841227, 65.55006071551604], [-1.3335604888383246, 64.18977807614682], [1.104046136969399, 63.13895537587258], [4.012620898449943, 63.32706132801839], [4.694919398687951, 64.57085801287526], [3.3780751296870815, 65.7243888731199]]]}}, {"type": "Feature", "properties": {"bin": "824d77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.530619218873426, 25.25303888659566], [-62.3108248051806, 24.12176202394313], [-61.641684306430946, 22.744753313018563], [-60.197496363526234, 22.454763661401813], [-59.37332807272962, 23.56547942262585], [-60.03617531999626, 24.987464800988757], [-61.530619218873426, 25.25303888659566]]]}}, {"type": "Feature", "properties": {"bin": "820e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.82964532461183, 62.858571659674325], [-86.44620486365478, 62.18752970394471], [-86.86661231338789, 60.400005225956455], [-84.03064131015812, 59.30197107644877], [-80.68030763628063, 59.91091889403277], [-79.91075404456411, 61.67566974904422], [-82.82964532461183, 62.858571659674325]]]}}, {"type": "Feature", "properties": {"bin": "827097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-178.0788030954064, 0.25487352552885695], [-178.7982364398432, -0.9361637645983776], [-178.1310827823495, -2.3298633934462907], [-176.7299487650669, -2.565731151307626], [-175.97791019371718, -1.382296820377447], [-176.65933388469932, 0.045100606795099404], [-178.0788030954064, 0.25487352552885695]]]}}, {"type": "Feature", "properties": {"bin": "820f77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.725707805023305, 64.6599175449764], [-62.85337076670207, 64.645202662454], [-64.65193771357671, 63.04787855230004], [-62.54341730100066, 61.54949113652148], [-58.827766861557635, 61.574893327818344], [-56.83926280965463, 63.08845327665033], [-58.725707805023305, 64.6599175449764]]]}}, {"type": "Feature", "properties": {"bin": "82471ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.76524551604405, 28.212875529249754], [-169.74572981425877, 29.67390323215247], [-170.6124684701106, 31.172045043372158], [-172.55956552539237, 31.194193992172103], [-173.57183777960262, 29.691561908418024], [-172.64626329548403, 28.208961817949742], [-170.76524551604405, 28.212875529249754]]]}}, {"type": "Feature", "properties": {"bin": "820387fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.19706856075058, 81.61645489132732], [-158.84821306045922, 80.72172286490242], [-158.04970733029904, 78.96768198622497], [-150.55652230638296, 78.12689451571578], [-142.7325777589501, 78.83545988164465], [-140.7129499430988, 80.53533133043359], [-149.19706856075058, 81.61645489132732]]]}}, {"type": "Feature", "properties": {"bin": "825607fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-35.0055294623529, 16.660533636112035], [-36.32405861237685, 15.666830213389135], [-36.01374188438757, 14.085300071764689], [-34.37599785763293, 13.482154696182922], [-33.06198038495441, 14.46463494698069], [-33.35078686135723, 16.050053900913024], [-35.0055294623529, 16.660533636112035]]]}}, {"type": "Feature", "properties": {"bin": "8206f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-43.375396225483314, 69.88664041050214], [-48.18057092765086, 70.31121173486567], [-51.26271142069233, 68.99050301252431], [-49.57149511280504, 67.35417312359894], [-45.288169326117874, 66.9915288042169], [-42.212203177542214, 68.20861039911539], [-43.375396225483314, 69.88664041050214]]]}}, {"type": "Feature", "properties": {"bin": "8270e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-168.9284547983508, 1.7290974334753317], [-169.81010632386403, 0.43188476755339184], [-169.10510260935467, -1.068515809478139], [-167.5116860345962, -1.3016140005051535], [-166.60148515958252, -0.015803126648620033], [-167.31261713417402, 1.5147974903819637], [-168.9284547983508, 1.7290974334753317]]]}}, {"type": "Feature", "properties": {"bin": "824d17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-64.63464431472751, 30.470521737714506], [-66.41090036021146, 30.273889962489605], [-67.12245868172785, 29.041387845704413], [-66.10870500107261, 28.046758894043005], [-64.412646922055, 28.237632978691334], [-63.65277219840964, 29.428705624764028], [-64.63464431472751, 30.470521737714506]]]}}, {"type": "Feature", "properties": {"bin": "8244c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.31850409944572, 31.22688419706304], [-81.72068792738155, 31.908011853886673], [-81.59239281302999, 33.53115551279601], [-83.10473588087598, 34.50570532924842], [-84.76157931053282, 33.83307477570318], [-84.84586180664866, 32.17753177892581], [-83.31850409944572, 31.22688419706304]]]}}, {"type": "Feature", "properties": {"bin": "827877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.4608587551884, 0.843603111016541], [-131.51755267776005, -0.4250722038883098], [-131.0529311425508, -1.8982704391926215], [-129.5611527906142, -2.095272646421926], [-128.52867297228602, -0.8502628917755678], [-128.9636030113442, 0.6149645664400339], [-130.4608587551884, 0.843603111016541]]]}}, {"type": "Feature", "properties": {"bin": "823417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-29.85940456497619, 35.82684548982034], [-31.590030919491358, 34.71446768669329], [-31.27050629632069, 32.93527228948562], [-29.295326382774476, 32.253720833104744], [-27.579540760358054, 33.332137547452156], [-27.822714524368322, 35.12512947073977], [-29.85940456497619, 35.82684548982034]]]}}, {"type": "Feature", "properties": {"bin": "823fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.466035435670609, 32.432807380976996], [10.916109798180177, 30.722958921689], [12.325939409346134, 29.455163805425236], [14.301516597265826, 29.87332454274621], [14.912927723127964, 31.582701869496166], [13.488580338198274, 32.875015477254706], [11.466035435670609, 32.432807380976996]]]}}, {"type": "Feature", "properties": {"bin": "820e2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.97576885027517, 61.192356916698365], [-73.63078937271493, 60.86152341713838], [-74.70637691776197, 59.1392445862628], [-72.39518626473647, 57.80385928059021], [-69.0549959056329, 58.11001927435266], [-67.73084359215947, 59.77423949635842], [-69.97576885027517, 61.192356916698365]]]}}, {"type": "Feature", "properties": {"bin": "821287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.39098759745883, 55.39379264929659], [-130.49874883503333, 54.094603984318475], [-129.13265335025088, 52.73849202152737], [-126.7100613714842, 52.609618421158075], [-125.47029403893907, 53.86554915925203], [-126.77556256323751, 55.294979787274414], [-129.39098759745883, 55.39379264929659]]]}}, {"type": "Feature", "properties": {"bin": "82759ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.568206405653283, 2.080813975286279], [-9.617165475873394, 3.0186960049772624], [-9.897444859098838, 4.500197653762574], [-11.136986715149366, 5.079855936610059], [-12.118591679205212, 4.156901458392333], [-11.83018697112708, 2.6389327412012906], [-10.568206405653283, 2.080813975286279]]]}}, {"type": "Feature", "properties": {"bin": "8218b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.42076829683686, 54.3511790526565], [-28.744431158745435, 53.389266182063054], [-28.4061201161991, 51.77535908133029], [-25.876022418714438, 51.11545209860288], [-23.595800131116476, 52.04720271172597], [-23.800269106758357, 53.66750781990839], [-26.42076829683686, 54.3511790526565]]]}}, {"type": "Feature", "properties": {"bin": "821847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.243656268908248, 48.54730149141871], [-5.466444723378631, 48.005644741446424], [-5.733942237025079, 46.36036995957606], [-3.870647496695551, 45.286766294393956], [-1.75279807155882, 45.82891715662811], [-1.3966081625912776, 47.44351195977147], [-3.243656268908248, 48.54730149141871]]]}}, {"type": "Feature", "properties": {"bin": "824867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-116.7951045913354, 24.10948321784331], [-115.31527754076964, 25.280725131021853], [-115.68042334187564, 27.04077250832347], [-117.56640072762364, 27.609358068779986], [-119.03751909879631, 26.415545248368073], [-118.63264326814091, 24.676154575544956], [-116.7951045913354, 24.10948321784331]]]}}, {"type": "Feature", "properties": {"bin": "82236ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.65871724952697, 37.262988370595934], [-175.58431385159878, 38.791356809948105], [-176.72384242302414, 40.31599783007281], [-179.00169990796678, 40.29258302822169], [179.9534193241767, 38.72877939076234], [-178.84653607045254, 37.22404167036299], [-176.65871724952697, 37.262988370595934]]]}}, {"type": "Feature", "properties": {"bin": "825557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.606696673672944, 20.791091351545326], [-10.188114712806701, 19.98422878146785], [-10.297990218925223, 18.358193362939268], [-8.877801145205453, 17.56154923764815], [-7.344548353615849, 18.349455296769857], [-7.184232148529101, 19.95235527007237], [-8.606696673672944, 20.791091351545326]]]}}, {"type": "Feature", "properties": {"bin": "82716ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-162.96468229627766, 13.023262213222903], [-163.97774111889441, 11.583670306331681], [-163.237020732356, 9.981512461636294], [-161.48347198256354, 9.797621338013231], [-160.44607430026895, 11.231115019630435], [-161.18563293041163, 12.85463161730575], [-162.96468229627766, 13.023262213222903]]]}}, {"type": "Feature", "properties": {"bin": "825867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.318899720760903, 18.44266884449724], [11.820444634223307, 16.809900692332402], [13.057677308471957, 15.541998660465921], [14.804131284942924, 15.87459897267477], [15.349597441138949, 17.499912999574217], [14.102532174458808, 18.80074376624017], [12.318899720760903, 18.44266884449724]]]}}, {"type": "Feature", "properties": {"bin": "8244d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.2830049998872, 30.94258349799631], [-78.7359276165128, 31.577259568416313], [-78.5683559892781, 33.165261389470174], [-79.98588846886724, 34.15372024055491], [-81.59239281302999, 33.53115551279601], [-81.72068792738155, 31.908011853886673], [-80.2830049998872, 30.94258349799631]]]}}, {"type": "Feature", "properties": {"bin": "8208f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.53544630840838, 63.80079265321215], [19.718783419633482, 62.910503878993765], [22.407228789344035, 63.469342287950894], [23.06001236063494, 64.97162850959091], [20.745683267270003, 65.89736287731276], [17.90900979606509, 65.28324062665737], [17.53544630840838, 63.80079265321215]]]}}, {"type": "Feature", "properties": {"bin": "822b07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.962864671243295, 47.80722118889661], [-65.53570082306851, 47.64489600387728], [-66.5852510593241, 46.08850307070047], [-65.16294164435584, 44.754772444859164], [-62.75562087696401, 44.916521168651464], [-61.612903841747055, 46.41246744259869], [-62.962864671243295, 47.80722118889661]]]}}, {"type": "Feature", "properties": {"bin": "826fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.35079928153304, -2.717252413163618], [-109.0841053983598, -1.8414007243708574], [-109.31013027357815, -0.3864613910864249], [-110.83411001086887, 0.18253457838412598], [-112.10551167033114, -0.7233417311270236], [-111.84870286236902, -2.1675662435525287], [-110.35079928153304, -2.717252413163618]]]}}, {"type": "Feature", "properties": {"bin": "82032ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.844060309330615, 85.9580797553944], [-34.95123585775986, 87.58500991616803], [-78.18316454198501, 87.80824356139675], [-85.79610107555276, 86.15685374717187], [-70.97296764314038, 84.9900045106299], [-51.70487751530814, 84.93555635380528], [-34.844060309330615, 85.9580797553944]]]}}, {"type": "Feature", "properties": {"bin": "82081ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.823918552178451, 63.96072746373739], [15.046206854523549, 63.166721052064105], [17.53544630840838, 63.80079265321215], [17.90900979606509, 65.28324062665737], [15.523290332812728, 66.10348492641157], [12.930936799121039, 65.4132279482162], [12.823918552178451, 63.96072746373739]]]}}, {"type": "Feature", "properties": {"bin": "821f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.065692337418177, 55.394878703545615], [9.374530816292092, 53.97551370235173], [11.245170492278879, 53.032039732054415], [13.83952860923243, 53.487245161236885], [14.640206584543732, 54.90218190493178], [12.739822958959078, 55.86732673911362], [10.065692337418177, 55.394878703545615]]]}}, {"type": "Feature", "properties": {"bin": "823a27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.0850919770084, 34.47800843316933], [-51.311264893399326, 33.206130099530355], [-50.66606313996468, 31.61388463940947], [-48.827864381282076, 31.251634260843225], [-47.560844221860734, 32.49638205790651], [-48.17049985036571, 34.130691983210376], [-50.0850919770084, 34.47800843316933]]]}}, {"type": "Feature", "properties": {"bin": "82295ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.9766348586562, 36.65773379111877], [-129.63922753065987, 37.92907649965179], [-130.22263777229935, 39.442424221906194], [-132.16701716801938, 39.65691031153755], [-133.45939025773737, 38.37865623424773], [-132.8542971774497, 36.89291427806109], [-130.9766348586562, 36.65773379111877]]]}}, {"type": "Feature", "properties": {"bin": "82454ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-94.61848294007633, 23.739867714796464], [-93.01794342464848, 24.66401236113593], [-93.05612094813121, 26.41651091529104], [-94.74356847987167, 27.264005617361743], [-96.38475070596917, 26.330133141946437], [-96.29745134025397, 24.55902528467453], [-94.61848294007633, 23.739867714796464]]]}}, {"type": "Feature", "properties": {"bin": "825497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.008238683057552, 15.34453752961922], [-25.45479083030684, 14.423931207069003], [-25.300780131815994, 12.852209309557823], [-23.751238955609885, 12.196213084240526], [-22.325551171498308, 13.08121926616189], [-22.428256968516997, 14.65689912671654], [-24.008238683057552, 15.34453752961922]]]}}, {"type": "Feature", "properties": {"bin": "823e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.012036761826856, 27.565395679553497], [18.351304577591986, 25.86678026136113], [19.644313864382354, 24.500416440761107], [21.594245020211527, 24.805307095623743], [22.301989716589436, 26.489394896864702], [21.01449990094078, 27.88358213061027], [19.012036761826856, 27.565395679553497]]]}}, {"type": "Feature", "properties": {"bin": "82499ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.37238742957857, 20.819245417262835], [-97.79807701289052, 21.815235529493616], [-97.9056342663466, 23.58979436809324], [-99.63585556147724, 24.37894428550873], [-101.24082187658792, 23.366309676892225], [-101.0849013638912, 21.581818203534908], [-99.37238742957857, 20.819245417262835]]]}}, {"type": "Feature", "properties": {"bin": "820907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.19793526839841227, 65.55006071551604], [-1.480777203240806, 66.69937069330089], [-4.87869840057966, 66.4250610395259], [-6.2206596092963595, 64.98197678166125], [-4.378545450893133, 63.89675172018521], [-1.333560488838328, 64.18977807614685], [0.19793526839841227, 65.55006071551604]]]}}, {"type": "Feature", "properties": {"bin": "822aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.96625784448885, 43.19540780277763], [-79.22728063889042, 42.74453343115546], [-79.73406932047651, 41.163833989516235], [-78.10427143231793, 40.064060432001234], [-75.96061877033631, 40.48049730850132], [-75.3334517237918, 42.029563712253676], [-76.96625784448885, 43.19540780277763]]]}}, {"type": "Feature", "properties": {"bin": "820cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-165.84016293788605, 58.12514676056634], [-168.0262941563394, 56.99746478128345], [-167.33025396602412, 55.57664557167], [-164.67814121905045, 55.255364288533094], [-162.5312015530735, 56.29657975847275], [-162.98934604170333, 57.74209682042291], [-165.84016293788605, 58.12514676056634]]]}}, {"type": "Feature", "properties": {"bin": "8206d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.26271142069233, 68.99050301252431], [-56.071292790866345, 69.19623455946773], [-58.598270292718745, 67.72706533699171], [-56.49997372257031, 66.15594458444963], [-52.236601272126784, 65.98587422595433], [-49.57149511280504, 67.35417312359894], [-51.26271142069233, 68.99050301252431]]]}}, {"type": "Feature", "properties": {"bin": "825d0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.78436899855103, 21.05001369377554], [-151.95618981799598, 19.645632089268535], [-151.23876200634047, 17.99130051554871], [-149.3676428224656, 17.73753035354521], [-148.19147140188997, 19.135021179340214], [-148.88967549149402, 20.7929466404251], [-150.78436899855103, 21.05001369377554]]]}}, {"type": "Feature", "properties": {"bin": "825977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.367573705123171, 23.01114705036288], [4.976885601305341, 21.35446718195976], [6.279611709245232, 20.147736977484957], [7.99840503877189, 20.57032700832011], [8.443478079873218, 22.23328539196474], [7.115841917490329, 23.468040880271634], [5.367573705123171, 23.01114705036288]]]}}, {"type": "Feature", "properties": {"bin": "8238f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.2609468260311339, 29.300374659234986], [-0.051693302165059865, 27.635200550312817], [1.319543174072057, 26.517456272921628], [3.040960396182133, 27.045710466174707], [3.414444565234508, 28.728328202600174], [2.005719972259752, 29.86576695279883], [0.2609468260311339, 29.300374659234986]]]}}, {"type": "Feature", "properties": {"bin": "820e27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.09615425545397, 64.26709141026762], [-75.12759866083337, 63.90545688327906], [-76.22600976416577, 62.1747288300192], [-73.63078937271493, 60.86152341713838], [-69.97576885027517, 61.192356916698365], [-68.56493483321289, 62.864503576884395], [-71.09615425545397, 64.26709141026762]]]}}, {"type": "Feature", "properties": {"bin": "823eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.644313864382354, 24.500416440761107], [18.9912827255566, 22.815134716422165], [20.242990297561875, 21.4509882258132], [22.142677696755147, 21.743093508159046], [22.83929753527266, 23.411689797815992], [21.594245020211527, 24.805307095623743], [19.644313864382354, 24.500416440761107]]]}}, {"type": "Feature", "properties": {"bin": "825f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.45097671273395, 8.3222861677665], [-49.09851500224472, 9.433102992134968], [-49.37813314252597, 11.076124691689042], [-50.99922604084513, 11.602089897710748], [-52.33667248230634, 10.503211167751092], [-52.068334893687656, 8.866885058754484], [-50.45097671273395, 8.3222861677665]]]}}, {"type": "Feature", "properties": {"bin": "824cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-74.28202848738356, 23.11880968295903], [-72.94798887459297, 23.753848556771096], [-72.72887815613254, 25.269651047870347], [-73.86827872769489, 26.19044873092739], [-75.25188715193887, 25.56875428660015], [-75.445541089086, 24.012556601219234], [-74.28202848738356, 23.11880968295903]]]}}, {"type": "Feature", "properties": {"bin": "824987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-100.78602787309754, 18.036674207758512], [-99.24618291206443, 19.05042155994036], [-99.37238742957857, 20.819245417262835], [-101.0849013638912, 21.581818203534908], [-102.65146201728247, 20.54828201098892], [-102.47888895505285, 18.77263360546656], [-100.78602787309754, 18.036674207758512]]]}}, {"type": "Feature", "properties": {"bin": "8250cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.97853610474615, 28.166032617905707], [-131.79514107744168, 29.427513657214032], [-132.35092157588286, 31.004801075710994], [-134.10648897177788, 31.285608665560563], [-135.3445752779655, 30.188340220579164], [-134.76180679944812, 28.619665585720497], [-132.97853610474615, 28.166032617905707]]]}}, {"type": "Feature", "properties": {"bin": "826e07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-115.7639737341466, 3.4338527305639226], [-114.49178681867154, 4.402628997698175], [-114.79273489503369, 5.9841973428794315], [-116.39637597285997, 6.5781978206800344], [-117.66413560918296, 5.577185822220652], [-117.33343542553223, 4.0148800533290485], [-115.7639737341466, 3.4338527305639226]]]}}, {"type": "Feature", "properties": {"bin": "82828ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.488313965403783, 1.3016140005051489], [13.190830888883605, 2.8025965889319755], [12.294352016976955, 4.039836103302269], [10.722777827285633, 3.789624991750129], [10.026444557704739, 2.318989904044636], [10.894897390645305, 1.0685158094781342], [12.488313965403783, 1.3016140005051489]]]}}, {"type": "Feature", "properties": {"bin": "826cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.65465015437248, 1.3323876690307883], [-101.0482432081896, 0.3854149473714002], [-101.01278406865008, -1.2880989818264403], [-99.56748244301538, -2.036314531213971], [-98.14692612852757, -1.0848539086284037], [-98.19879414728011, 0.6100686809196556], [-99.65465015437248, 1.3323876690307883]]]}}, {"type": "Feature", "properties": {"bin": "8249affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-104.00697936128856, 17.727556052601905], [-102.47888895505285, 18.77263360546656], [-102.65146201728247, 20.54828201098892], [-104.39816566946544, 21.280265937450892], [-105.94643547761567, 20.212678725972662], [-105.72815739211227, 18.436308040782627], [-104.00697936128856, 17.727556052601905]]]}}, {"type": "Feature", "properties": {"bin": "820647fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.235533410391586, 62.95578262933216], [-33.385597426618574, 63.64810218085884], [-36.22054894364172, 62.60005462999545], [-35.748313417024164, 60.930172183234546], [-32.78084952502613, 60.31830942442807], [-30.104421290639067, 61.2998648710959], [-30.235533410391586, 62.95578262933216]]]}}, {"type": "Feature", "properties": {"bin": "824857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-112.24805187233757, 27.591432296604456], [-110.66261804031069, 28.72380952741313], [-110.97326582640996, 30.491571090923777], [-112.91813211642211, 31.11517337762597], [-114.50601215624468, 29.962809965498728], [-114.14770118711654, 28.20744653633778], [-112.24805187233757, 27.591432296604456]]]}}, {"type": "Feature", "properties": {"bin": "825d97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-162.6847583044768, 16.07340139283218], [-163.71455965998953, 14.623074892227512], [-162.96468229627766, 13.023262213222903], [-161.18563293041163, 12.85463161730575], [-160.13127869137423, 14.301174626659785], [-160.87955147447607, 15.920122566981886], [-162.6847583044768, 16.07340139283218]]]}}, {"type": "Feature", "properties": {"bin": "82476ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.82752326558472, 33.62355575625019], [-161.9689899404892, 32.281493855003525], [-161.16001295482693, 30.8610323297859], [-159.21340056850218, 30.77583280164384], [-158.04649474959947, 32.12156651323388], [-158.85034488901204, 33.54865032056136], [-160.82752326558472, 33.62355575625019]]]}}, {"type": "Feature", "properties": {"bin": "822aaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-75.96061877033631, 40.48049730850132], [-78.10427143231793, 40.064060432001234], [-78.61941821988546, 38.540002057010945], [-77.09992207378818, 37.46356103312862], [-75.06331695265312, 37.84906886797823], [-74.44277493761697, 39.34056938395393], [-75.96061877033631, 40.48049730850132]]]}}, {"type": "Feature", "properties": {"bin": "826b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.77031774923299, 3.777844681142865], [20.458518123241934, 5.284276360502933], [19.479242065131626, 6.522352266708326], [17.83096086140017, 6.271911037888096], [17.14051423245727, 4.790542387748742], [18.099816440714942, 3.5346227999232087], [19.77031774923299, 3.777844681142865]]]}}, {"type": "Feature", "properties": {"bin": "822347fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.39476769404015, 38.7599738891724], [-172.25768585320338, 40.23216493003701], [-173.3260183385508, 41.77149077185328], [-175.60595851849678, 41.82431170533693], [-176.72384242302414, 40.31599783007281], [-175.58431385159878, 38.791356809948105], [-173.39476769404015, 38.7599738891724]]]}}, {"type": "Feature", "properties": {"bin": "825c27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-151.23876200634047, 17.99130051554871], [-152.39259987624143, 16.57010370863651], [-151.68149446753523, 14.904350827871541], [-149.83360623557414, 14.65381003431932], [-148.6746530932401, 16.06601094805799], [-149.3676428224656, 17.73753035354521], [-151.23876200634047, 17.99130051554871]]]}}, {"type": "Feature", "properties": {"bin": "825e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.30862047518583, 13.76714292961568], [-46.958384247111674, 14.828508822503089], [-47.24316456848381, 16.383334811391805], [-48.86827717036491, 16.875318014324517], [-50.20684695571737, 15.828355103239595], [-49.93229663073252, 14.275505497784241], [-48.30862047518583, 13.76714292961568]]]}}, {"type": "Feature", "properties": {"bin": "822377fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.27191812997157, 37.14623592274974], [-169.12705484858938, 38.58103801892212], [-170.08137362878634, 40.128860824253564], [-172.25768585320338, 40.23216493003701], [-173.39476769404015, 38.7599738891724], [-172.36608297399812, 37.22237828211649], [-170.27191812997157, 37.14623592274974]]]}}, {"type": "Feature", "properties": {"bin": "826d5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.7825771388249, 9.604537414455491], [-91.21020382252959, 8.676263183067155], [-91.12007106136942, 7.059508613810282], [-89.58588421387277, 6.365659658256505], [-88.14401224216319, 7.309420562421476], [-88.25051092370046, 8.93099678858819], [-89.7825771388249, 9.604537414455491]]]}}, {"type": "Feature", "properties": {"bin": "8282a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.274266009263762, -2.6322676133862983], [15.988623552785217, -1.0732871092626444], [15.037915717292355, 0.24461504240036508], [13.398514840417468, 0.01580312664861367], [12.687382865825958, -1.51479749038197], [13.611699107391521, -2.8447525350379257], [15.274266009263762, -2.6322676133862983]]]}}, {"type": "Feature", "properties": {"bin": "821277fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.95630851879363, 59.51594242539448], [-113.15854671974594, 58.30967973141954], [-112.25958067965824, 56.667369999771786], [-109.36840318710225, 56.17117643212055], [-107.1336337557699, 57.29953386667359], [-107.80871191774456, 59.00030378122949], [-110.95630851879363, 59.51594242539448]]]}}, {"type": "Feature", "properties": {"bin": "822a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.87540832483207, 33.704520119757866], [-69.77521250033024, 33.454135945246556], [-70.44941904904171, 32.12169030756375], [-69.29034987118375, 31.080352320929475], [-67.48075259088839, 31.31869572733398], [-66.7431054193043, 32.609931079791295], [-67.87540832483207, 33.704520119757866]]]}}, {"type": "Feature", "properties": {"bin": "82284ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-135.36007876878142, 42.654167907708526], [-134.0625597172373, 43.92295856646324], [-134.72528083397745, 45.2780458195769], [-136.7018216781215, 45.34099129109544], [-137.94108602130572, 44.071547317698794], [-137.26405945701532, 42.73988013119889], [-135.36007876878142, 42.654167907708526]]]}}, {"type": "Feature", "properties": {"bin": "823867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.9780551779606474, 38.85056389706335], [5.507969569355888, 37.17634170043516], [7.029881378875401, 36.043675411373094], [9.054678245207672, 36.5678509319993], [9.598984700477283, 38.25143274146292], [8.045142114241346, 39.402136368971775], [5.9780551779606474, 38.85056389706335]]]}}, {"type": "Feature", "properties": {"bin": "82036ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.28609529069508, 80.32622462578856], [-51.97823202386118, 80.76256673477604], [-57.45830558314712, 79.49208922409562], [-53.66696859476178, 77.98990625757939], [-45.910670065717056, 77.6358967544068], [-40.29003417014079, 78.71766196801342], [-42.28609529069508, 80.32622462578856]]]}}, {"type": "Feature", "properties": {"bin": "822887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-115.60310652830113, 42.837738262209285], [-113.82809163347571, 43.92135439009324], [-114.23842794408571, 45.47301527696883], [-116.48369847512731, 45.92906853395805], [-118.25023610663773, 44.830690622460246], [-117.78201941593719, 43.291712928181326], [-115.60310652830113, 42.837738262209285]]]}}, {"type": "Feature", "properties": {"bin": "825e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.3166803133901, 14.302011106126864], [-43.96189452551717, 15.344440572332113], [-44.25550515787142, 16.897873601263107], [-45.89544362512071, 17.410767914952135], [-47.24316456848381, 16.383334811391805], [-46.958384247111674, 14.828508822503089], [-45.3166803133901, 14.302011106126864]]]}}, {"type": "Feature", "properties": {"bin": "822747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.76385612316132, 47.08474562818119], [-89.06656493399484, 46.41537750220255], [-89.2498380316499, 44.754421111754795], [-87.29055066840296, 43.768738470563186], [-85.09013830826513, 44.38248318374426], [-84.74861378741058, 46.03517879775627], [-86.76385612316132, 47.08474562818119]]]}}, {"type": "Feature", "properties": {"bin": "8266e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-74.48577052266508, 5.7379220187705755], [-75.87276006745216, 4.821343563719458], [-75.70214201821707, 3.140562926671847], [-74.131897035903, 2.3925313668830155], [-72.7537225963264, 3.3309531859964676], [-72.93661775503374, 4.995192716265735], [-74.48577052266508, 5.7379220187705755]]]}}, {"type": "Feature", "properties": {"bin": "8238dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.413328471156264, 25.876899790610704], [4.030548380417124, 24.203144761743964], [5.367573705123171, 23.01114705036288], [7.115841917490329, 23.468040880271634], [7.556100605723162, 25.1510932676285], [6.19103424186027, 26.368584569326593], [4.413328471156264, 25.876899790610704]]]}}, {"type": "Feature", "properties": {"bin": "82125ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-108.67860715148952, 54.501947976968424], [-110.68634707583348, 53.386336108066025], [-109.99461055319722, 51.754865985358926], [-107.46626232494818, 51.18753049151047], [-105.44903829772724, 52.22905600590294], [-105.96116047976108, 53.910446928597366], [-108.67860715148952, 54.501947976968424]]]}}, {"type": "Feature", "properties": {"bin": "822227fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-166.73992452788676, 41.36367923828987], [-165.49704574163763, 42.70634072302161], [-166.3952477588442, 44.25787410591012], [-168.62826464311084, 44.464180167609065], [-169.87508900899755, 43.08698827034674], [-168.8876761772056, 41.53861492567143], [-166.73992452788676, 41.36367923828987]]]}}, {"type": "Feature", "properties": {"bin": "825e5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-60.52507371447073, 15.869733829825366], [-59.277584084895715, 16.935418608977116], [-59.51008837486115, 18.366343757785604], [-60.97670703999955, 18.72057167084638], [-62.19820818385358, 17.668849095266363], [-61.979153153198865, 16.249348507267694], [-60.52507371447073, 15.869733829825366]]]}}, {"type": "Feature", "properties": {"bin": "821d37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-139.6835934816099, 59.16948256665964], [-142.4816458563309, 58.59546157488214], [-143.03812086454852, 57.20700013517196], [-141.02066847541147, 56.438548379662535], [-138.59856537789113, 56.59218158461872], [-137.83176938444817, 57.94990680219881], [-139.6835934816099, 59.16948256665964]]]}}, {"type": "Feature", "properties": {"bin": "82062ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.60157937537406, 67.97841284565767], [-27.10886435300251, 68.8525046586657], [-30.744537672047283, 67.97964594431163], [-30.55163375490227, 66.2984876949583], [-27.21682213243743, 65.51895292313094], [-23.892709595930576, 66.33119738690922], [-23.60157937537406, 67.97841284565767]]]}}, {"type": "Feature", "properties": {"bin": "826657fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.58412086392877, 5.894708224614647], [-72.93661775503374, 4.995192716265735], [-72.7537225963264, 3.3309531859964676], [-71.2071410551568, 2.5862023768404225], [-69.86749211546083, 3.508740509701639], [-70.06119344193219, 5.152720140222422], [-71.58412086392877, 5.894708224614647]]]}}, {"type": "Feature", "properties": {"bin": "82481ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-106.63926091907, 25.57866592479228], [-105.02815187027245, 26.65129939283315], [-105.25067839657362, 28.43865978592777], [-107.13555697275866, 29.151135929106943], [-108.76314516196922, 28.0593910774909], [-108.49001079704972, 26.274980216839232], [-106.63926091907, 25.57866592479228]]]}}, {"type": "Feature", "properties": {"bin": "822b1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-66.5852510593241, 46.08850307070047], [-69.06056168917466, 45.844655190088524], [-69.95506755076666, 44.27784933847793], [-68.48271469709775, 43.00801065722079], [-66.15912631714208, 43.24164819563601], [-65.16294164435584, 44.754772444859164], [-66.5852510593241, 46.08850307070047]]]}}, {"type": "Feature", "properties": {"bin": "822657fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-93.31108179083485, 36.78541768537119], [-91.52528283315519, 37.57043047609912], [-91.54335025644869, 39.225656206133934], [-93.40741416499297, 40.11435457093053], [-95.24686215665145, 39.326802934475495], [-95.16791149025018, 37.65373770677368], [-93.31108179083485, 36.78541768537119]]]}}, {"type": "Feature", "properties": {"bin": "825007fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.8647138223482, 18.522587328250488], [-128.70209135605933, 19.699208787220712], [-129.19023081549102, 21.33771636585937], [-130.8597017438415, 21.762122323740986], [-132.02126901303234, 20.57135641524407], [-131.50609517190304, 18.940824460643068], [-129.8647138223482, 18.522587328250488]]]}}, {"type": "Feature", "properties": {"bin": "8222affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-162.39026807914811, 48.0534017807248], [-160.98421728508953, 49.23603185937585], [-161.8226339503679, 50.76081148063326], [-164.1847210818654, 51.10764599537827], [-165.61336675442524, 49.89597414875072], [-164.6599987609168, 48.36722999990064], [-162.39026807914811, 48.0534017807248]]]}}, {"type": "Feature", "properties": {"bin": "82388ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.708865748930489, 27.07368875784343], [-1.976396669394251, 25.434098403334417], [-0.6439644283421987, 24.336012636497507], [0.9946771925498421, 24.858335834449555], [1.319543174072057, 26.517456272921628], [-0.051693302165059865, 27.635200550312817], [-1.708865748930489, 27.07368875784343]]]}}, {"type": "Feature", "properties": {"bin": "821caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-148.0291839252244, 48.95326250873712], [-149.43557861506414, 48.0140822558988], [-149.0372581037628, 46.530830214693424], [-146.8762190210428, 46.29958947007755], [-145.50148773440657, 47.22925356200961], [-146.28571164887717, 48.39520829324245], [-148.0291839252244, 48.95326250873712]]]}}, {"type": "Feature", "properties": {"bin": "822ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-77.61868280728876, 35.99919217524387], [-79.55761808651526, 35.58356677506038], [-79.98588846886723, 34.15372024055491], [-78.56835598927809, 33.165261389470196], [-76.71577605386425, 33.549278076406296], [-76.19689970896388, 34.95204734757291], [-77.61868280728876, 35.99919217524387]]]}}, {"type": "Feature", "properties": {"bin": "821cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.50148773440657, 47.22925356200961], [-146.8762190210428, 46.29958947007755], [-146.09758320575617, 45.080367076675685], [-143.97702466025555, 44.790383382963654], [-142.61024286094258, 45.715911502521784], [-143.35464186435385, 46.935232412617694], [-145.50148773440657, 47.22925356200961]]]}}, {"type": "Feature", "properties": {"bin": "822897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-111.6319691148531, 43.39437445833112], [-109.78838725262649, 44.41307088095466], [-110.13398538688485, 45.973009000163444], [-112.38958367178164, 46.506774505316265], [-114.23842794408571, 45.47301527696883], [-113.82809163347571, 43.92135439009324], [-111.6319691148531, 43.39437445833112]]]}}, {"type": "Feature", "properties": {"bin": "825837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.302842809205857, 16.098688642959495], [1.9905382774544373, 14.547282830266617], [3.2085973421006972, 13.394482127990228], [4.765825070146594, 13.763786258241295], [5.125946880545182, 15.32195477253705], [3.881187194444415, 16.504758055404427], [2.302842809205857, 16.098688642959495]]]}}, {"type": "Feature", "properties": {"bin": "821f77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.275235951757786, 56.63295271905083], [17.3622931946247, 55.27814416771983], [19.18933345712404, 54.22465218206264], [21.92401744131319, 54.501997626904114], [22.9310531198817, 55.84256115863507], [21.114076381480267, 56.92073410282902], [18.275235951757786, 56.63295271905083]]]}}, {"type": "Feature", "properties": {"bin": "820f4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.9113414349944, 58.48980679095191], [-62.28972825681571, 58.45320476392265], [-63.80048917841768, 56.857824813184145], [-62.07826603752657, 55.37451169620836], [-58.981035994086554, 55.42246431947515], [-57.34215649850436, 56.94282581684036], [-58.9113414349944, 58.48980679095191]]]}}, {"type": "Feature", "properties": {"bin": "82298ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-118.09873920679385, 37.32169681911912], [-116.46105044303361, 38.483501650351876], [-116.8880063607481, 40.116316362318756], [-119.0022822666251, 40.57057178749683], [-120.62501817993413, 39.39386760344102], [-120.15030815558956, 37.77836118370324], [-118.09873920679385, 37.32169681911912]]]}}, {"type": "Feature", "properties": {"bin": "823907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.464181984237864, 41.30855957084678], [-8.480681337677595, 40.62229995280742], [-8.657648270046371, 38.88943198318385], [-6.898505607651506, 37.87174338190937], [-4.963456118392565, 38.55271209108038], [-4.708227372662669, 40.25602599301953], [-6.464181984237864, 41.30855957084678]]]}}, {"type": "Feature", "properties": {"bin": "826f4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-123.95923626332045, 2.3041178869669072], [-122.8261431354025, 3.2372943806693373], [-123.20741906938693, 4.751344235263275], [-124.74319077977674, 5.304322366655777], [-125.8592807034671, 4.339393062143062], [-125.45745246704637, 2.8533786934186565], [-123.95923626332045, 2.3041178869669072]]]}}, {"type": "Feature", "properties": {"bin": "825087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-123.21121382753459, 22.80855856281255], [-121.85994020008248, 24.01169471518747], [-122.2996262543588, 25.725526770366592], [-124.12161967242743, 26.206588984770875], [-125.45056711552216, 24.981552522367785], [-124.98123746841438, 23.297500368049423], [-123.21121382753459, 22.80855856281255]]]}}, {"type": "Feature", "properties": {"bin": "82291ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-122.72620857351362, 33.706602821958555], [-121.23148237636386, 34.929531606928784], [-121.7071569184514, 36.57421829680793], [-123.71598551689976, 36.972296150193095], [-125.18483033298531, 35.73486126784821], [-124.67256477087246, 34.11418669257208], [-122.72620857351362, 33.706602821958555]]]}}, {"type": "Feature", "properties": {"bin": "820d37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.45686807900947, 76.14556732608257], [-168.585652888576, 74.93980975620119], [-167.04311693543426, 73.24458055449546], [-161.50564454731008, 72.70722536829874], [-156.68473650522998, 73.75085590328372], [-157.0299997629345, 75.47864683380004], [-163.45686807900947, 76.14556732608257]]]}}, {"type": "Feature", "properties": {"bin": "822987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-115.64454936135779, 35.138559675017866], [-113.99954869994481, 36.284189314860356], [-114.38212699256788, 37.96394850096659], [-116.46105044303361, 38.483501650351876], [-118.09873920679385, 37.32169681911912], [-117.66644115562839, 35.65711968357492], [-115.64454936135779, 35.138559675017866]]]}}, {"type": "Feature", "properties": {"bin": "82375ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.7190423880193, 37.02819228718556], [-143.015777903615, 35.9297289495775], [-142.3232078622538, 34.454167617014946], [-140.36752553639397, 34.085002480597495], [-139.08577259100346, 35.18275777900153], [-139.74373361120917, 36.65010236088989], [-141.7190423880193, 37.02819228718556]]]}}, {"type": "Feature", "properties": {"bin": "82389ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.599887600906401, 24.72374401122294], [-3.8296846549188386, 23.088405139235885], [-2.4838650119479393, 22.197541386302376], [-0.9247075498574123, 22.70745271184857], [-0.6439644283421987, 24.336012636497507], [-1.976396669394251, 25.434098403334417], [-3.599887600906401, 24.72374401122294]]]}}, {"type": "Feature", "properties": {"bin": "821917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.53147949450864, 61.174834149098], [-16.37196241724275, 60.568693514800785], [-16.373725810250253, 59.10182986756048], [-13.710273826815675, 58.250184667728405], [-11.002062802068592, 58.832287456226396], [-10.828226222593615, 60.2883152943037], [-13.53147949450864, 61.174834149098]]]}}, {"type": "Feature", "properties": {"bin": "820987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.479068693190383, 60.92198553471913], [2.7675277915407426, 60.73321011494055], [2.1982160405751507, 59.38388648698395], [4.229785449235649, 58.25202580757624], [6.766112799653751, 58.44709614018101], [7.438464343438966, 59.76718020289121], [5.479068693190383, 60.92198553471913]]]}}, {"type": "Feature", "properties": {"bin": "826787fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-81.29720115237546, 14.868802684797343], [-82.6933501709634, 14.036239080135266], [-82.55962048497963, 12.514857149505502], [-81.01532143167519, 11.831455835740186], [-79.61763914863917, 12.683984122201483], [-79.76555528528003, 14.199408606194604], [-81.29720115237546, 14.868802684797343]]]}}, {"type": "Feature", "properties": {"bin": "824897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.38475070596917, 26.330133141946437], [-94.74356847987167, 27.264005617361743], [-94.80894774348357, 29.022701619768878], [-96.56734672388517, 29.863730793699244], [-98.2478790417796, 28.91983357142504], [-98.13038997835126, 27.145530873716577], [-96.38475070596917, 26.330133141946437]]]}}, {"type": "Feature", "properties": {"bin": "825157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.34984587052196, 18.104552813945748], [-135.51493752652922, 16.832177786123754], [-134.96455661482753, 15.177012077512154], [-133.28223276170738, 14.810317323575692], [-132.14080471892913, 16.072271835802038], [-132.65764671301787, 17.711156099038764], [-134.34984587052196, 18.104552813945748]]]}}, {"type": "Feature", "properties": {"bin": "825137fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-127.11406580207421, 8.93189150044687], [-125.98105129149988, 9.974630412009526], [-126.41106193931888, 11.568376194363235], [-127.99376197091502, 12.085116662991583], [-129.08173718911362, 10.848243757335297], [-128.62556197649513, 9.261824823865101], [-127.11406580207421, 8.93189150044687]]]}}, {"type": "Feature", "properties": {"bin": "82028ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-124.96247343782, 73.82161995115898], [-127.59707268943032, 72.35208765954863], [-125.09830879255655, 70.92100550784122], [-120.27955037212989, 70.85340170404048], [-117.21991524403697, 72.2323624142716], [-119.31832121360138, 73.77002624235216], [-124.96247343782, 73.82161995115898]]]}}, {"type": "Feature", "properties": {"bin": "821c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.19300297142425, 46.015249635730314], [-153.54164948755408, 44.9563123269652], [-153.03739182353243, 43.44325276436556], [-150.91019328825146, 43.275452288142326], [-149.5818136427099, 44.32238390105542], [-150.38876854208647, 45.54008958515863], [-152.19300297142425, 46.015249635730314]]]}}, {"type": "Feature", "properties": {"bin": "823547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.388588757180873, 39.21171319250576], [-18.348088280402102, 38.319242897076336], [-18.30545839105258, 36.529265222848295], [-16.39030672323071, 35.64371795856788], [-14.488597695229425, 36.51527932188329], [-14.444905143937865, 38.29227083697541], [-16.388588757180873, 39.21171319250576]]]}}, {"type": "Feature", "properties": {"bin": "825627fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-33.958591380143694, 19.30220339543153], [-35.333446627022596, 18.27582314924697], [-35.0055294623529, 16.660533636112035], [-33.35078686135723, 16.050053900913024], [-31.977092175090647, 17.03646681217573], [-32.25590191706387, 18.67265261738001], [-33.958591380143694, 19.30220339543153]]]}}, {"type": "Feature", "properties": {"bin": "8280d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-38.50296943608185, 2.4535034056910714], [-37.14019742640149, 3.5803293669296288], [-37.45366811571324, 5.311668299866157], [-39.125055578921476, 5.925105559873987], [-40.49178881123499, 4.809916418677702], [-40.18363059949491, 3.0700388986581064], [-38.50296943608185, 2.4535034056910714]]]}}, {"type": "Feature", "properties": {"bin": "820707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.329994131394352, 71.66753846280452], [-9.219808450023809, 72.85065322966908], [-13.917999921584816, 72.44381308655119], [-15.039943018127708, 70.86557109876065], [-12.010053527275545, 69.77863315577277], [-7.942563038336622, 70.17612110688736], [-6.329994131394352, 71.66753846280452]]]}}, {"type": "Feature", "properties": {"bin": "820047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.5071413604228857, 82.25118471750908], [7.587670703025287, 83.46691212211444], [1.3954549354975698, 85.00324300064894], [-17.9081638349315, 84.94207431820979], [-21.994683754892108, 83.41761096812805], [-12.81796911199405, 82.24829137508873], [-0.5071413604228857, 82.25118471750908]]]}}, {"type": "Feature", "properties": {"bin": "821f57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.18933345712404, 54.22465218206264], [18.2899634859423, 52.81905199947077], [20.036282030286998, 51.703743211634446], [22.673099856157986, 51.971886717716714], [23.6571061696422, 53.36390143732629], [21.92401744131319, 54.501997626904114], [19.18933345712404, 54.22465218206264]]]}}, {"type": "Feature", "properties": {"bin": "826e2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-118.5630833098903, 3.054984348759607], [-117.33343542553223, 4.0148800533290485], [-117.66413560918296, 5.577185822220652], [-119.25213680561293, 6.157297531605237], [-120.47268446128629, 5.165048115302317], [-120.11514543521388, 3.625405109717659], [-118.5630833098903, 3.054984348759607]]]}}, {"type": "Feature", "properties": {"bin": "82380ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.2724179411878551, 34.323246605430036], [0.9223182397122923, 32.64740444391725], [2.368366542520371, 31.549004679734185], [4.2041739956726545, 32.11010693139568], [4.622001932112611, 33.80292479846324], [3.1364790338915944, 34.91820439114921], [1.2724179411878551, 34.323246605430036]]]}}, {"type": "Feature", "properties": {"bin": "822957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-128.51462133744633, 34.818432685996264], [-127.13810062168672, 36.07979647703287], [-127.68651181758547, 37.64896276920755], [-129.63922753065987, 37.92907649965179], [-130.9766348586562, 36.65773379111877], [-130.40230082165007, 35.11638961670009], [-128.51462133744633, 34.818432685996264]]]}}, {"type": "Feature", "properties": {"bin": "82369ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.69058995083472, 27.64232604690051], [-156.85736472540782, 26.25957203198717], [-156.08998858841755, 24.696711258039056], [-154.16758439931047, 24.510729665905433], [-152.986319458141, 25.892671650495306], [-153.74070408856085, 27.4612020128443], [-155.69058995083472, 27.64232604690051]]]}}, {"type": "Feature", "properties": {"bin": "826b37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.3651793828161, 16.505947603561054], [17.776100963774223, 14.89324660357966], [18.954654656317093, 13.593711088140337], [20.720608455377985, 13.873962650663321], [21.349266453445622, 15.469203624780489], [20.173628717060144, 16.802152480851372], [18.3651793828161, 16.505947603561054]]]}}, {"type": "Feature", "properties": {"bin": "827937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-138.42043748614526, 11.22287623237951], [-139.56749079841518, 9.874541283888163], [-138.98705734518057, 8.224235772380883], [-137.28866604952583, 7.92920832467292], [-136.1584261723648, 9.260555687941112], [-136.70921415114404, 10.903594944630614], [-138.42043748614526, 11.22287623237951]]]}}, {"type": "Feature", "properties": {"bin": "82122ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-115.23742972528419, 61.57815485424911], [-117.36079672693324, 60.296109935994814], [-116.21972331600284, 58.69659845715033], [-113.15854671974594, 58.30967973141954], [-110.95630851879363, 59.51594242539448], [-111.87575001919595, 61.18381291868138], [-115.23742972528419, 61.57815485424911]]]}}, {"type": "Feature", "properties": {"bin": "821b07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-43.743992660760675, 59.07618287095348], [-46.93702024951137, 59.4297980446314], [-49.06442531515849, 58.08648276572245], [-48.00021552533757, 56.47204864023174], [-45.04487078496987, 56.17207274471768], [-42.927551278941834, 57.43574006821968], [-43.743992660760675, 59.07618287095348]]]}}, {"type": "Feature", "properties": {"bin": "821227fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.00771705989827, 63.4539330475255], [-121.99326086096661, 62.10103868090194], [-120.57843732628584, 60.561067007103965], [-117.36079672693324, 60.296109935994814], [-115.23742972528419, 61.57815485424911], [-116.44653125364454, 63.19577227205729], [-120.00771705989827, 63.4539330475255]]]}}, {"type": "Feature", "properties": {"bin": "825e4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.19149501530036, 15.181722463310459], [-61.979153153198865, 16.249348507267694], [-62.19820818385358, 17.668849095266363], [-63.616000347810036, 18.007410818164693], [-64.800426227773, 16.953431162581303], [-64.59499708082424, 15.547610315045723], [-63.19149501530036, 15.181722463310459]]]}}, {"type": "Feature", "properties": {"bin": "82565ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-28.580213469784795, 6.682687019887302], [-27.314080831461233, 7.716645243433415], [-27.630880955174977, 9.360957722014556], [-29.214927339428673, 9.99349919622799], [-30.499720107270083, 8.976246182604307], [-30.182215330720936, 7.309910883327079], [-28.580213469784795, 6.682687019887302]]]}}, {"type": "Feature", "properties": {"bin": "822837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.7071569184514, 36.57421829680793], [-120.15030815558956, 37.77836118370324], [-120.62501817993413, 39.39386760344102], [-122.6990988675928, 39.784230841420204], [-124.23124622081255, 38.56638700335243], [-123.71598551689976, 36.972296150193095], [-121.7071569184514, 36.57421829680793]]]}}, {"type": "Feature", "properties": {"bin": "824687fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.75672208163417, 18.120398684642655], [-172.87373593176596, 19.551298255606323], [-173.7149352119206, 20.914636507194352], [-175.48369806260996, 20.822556255516947], [-176.35478646263778, 19.34975845948914], [-175.4705882437728, 18.011420071329557], [-173.75672208163417, 18.120398684642655]]]}}, {"type": "Feature", "properties": {"bin": "82462ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.10221676836196, 28.14665577859398], [-168.1220069918596, 26.72791937240743], [-167.32885183001426, 25.284631530462654], [-165.5099678028634, 25.247289003134537], [-164.45647827941468, 26.67326523622734], [-165.25458796761674, 28.129236095197957], [-167.10221676836196, 28.14665577859398]]]}}, {"type": "Feature", "properties": {"bin": "826c6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.47359492889161, 4.939092322038125], [-87.92756625209735, 3.9798556900794146], [-87.81758309546815, 2.276164548591812], [-86.23703408379006, 1.530036116519424], [-84.77330656823203, 2.504604687315686], [-84.89974013287366, 4.209437035574177], [-86.47359492889161, 4.939092322038125]]]}}, {"type": "Feature", "properties": {"bin": "823497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-38.41822597713687, 31.843534959654345], [-39.90371712605461, 30.658039731336256], [-39.44699019086086, 28.943606381484344], [-37.56049397833304, 28.38491166768846], [-36.0640905209584, 29.53409850105981], [-36.46312925335517, 31.27779543904234], [-38.41822597713687, 31.843534959654345]]]}}, {"type": "Feature", "properties": {"bin": "8274b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.254244736494712, -0.4015944958931172], [-10.28431789008691, 0.5785308439935908], [-10.568206405653283, 2.080813975286279], [-11.83018697112708, 2.6389327412012906], [-12.83093803332417, 1.6714334957138457], [-12.538994180303641, 0.13278097466366448], [-11.254244736494712, -0.4015944958931172]]]}}, {"type": "Feature", "properties": {"bin": "8226effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-95.0175072313011, 34.246080564804586], [-93.26521175979074, 35.0901083935365], [-93.31108179083485, 36.78541768537119], [-95.16791149025018, 37.65373770677368], [-96.96815321456646, 36.80475078030147], [-96.86314528739004, 35.093055453019566], [-95.0175072313011, 34.246080564804586]]]}}, {"type": "Feature", "properties": {"bin": "8238c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.414444565234508, 28.728328202600174], [3.040960396182133, 27.045710466174707], [4.413328471156264, 25.876899790610704], [6.19103424186027, 26.368584569326593], [6.625253967039598, 28.063354881307642], [5.2213927424219095, 29.254882451681667], [3.414444565234508, 28.728328202600174]]]}}, {"type": "Feature", "properties": {"bin": "825eeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-57.77697605943319, 16.540010832239233], [-56.49857410528115, 17.599199754010723], [-56.744128647167635, 19.03914180016912], [-58.255166268389985, 19.411327315262735], [-59.51008837486115, 18.366343757785604], [-59.277584084895715, 16.935418608977116], [-57.77697605943319, 16.540010832239233]]]}}, {"type": "Feature", "properties": {"bin": "82074ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.741712912328655, 62.92039850236251], [-21.327940366858037, 63.81953151634645], [-24.371526115079995, 63.05448623848215], [-24.57076597472634, 61.43040476232069], [-22.03881468427071, 60.61568456080993], [-19.242629923160425, 61.34337802161005], [-18.741712912328655, 62.92039850236251]]]}}, {"type": "Feature", "properties": {"bin": "827427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.918873186254334, 4.784299416459714], [-5.0844501721547575, 3.5266350498097383], [-4.028797512714621, 2.526343960227314], [-2.7800646154740476, 2.7564971571432437], [-2.5790347646674925, 4.02002363858656], [-3.66239661559828, 5.048182136577349], [-4.918873186254334, 4.784299416459714]]]}}, {"type": "Feature", "properties": {"bin": "82265ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.49084714009675, 34.200716475371294], [-89.75917248139794, 34.984893131397165], [-89.74853700409722, 36.65876042006413], [-91.52528283315519, 37.57043047609912], [-93.31108179083485, 36.78541768537119], [-93.26521175979074, 35.0901083935365], [-91.49084714009675, 34.200716475371294]]]}}, {"type": "Feature", "properties": {"bin": "82352ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.653899802599728, 44.48330412015416], [-22.72225847201933, 43.54372570815057], [-22.572395960792, 41.7803374460896], [-20.45496726007536, 40.95974163457924], [-18.43942903424458, 41.87483011005883], [-18.488435954379657, 43.63378030772461], [-20.653899802599728, 44.48330412015416]]]}}, {"type": "Feature", "properties": {"bin": "826687fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.15019124572879, 7.752188983756235], [-83.58312175348144, 6.827381161385121], [-83.4507972812094, 5.162459741023921], [-81.87017398347723, 4.427301059150938], [-80.43431246023684, 5.370970821417855], [-80.58177094920417, 7.0304087512615965], [-82.15019124572879, 7.752188983756235]]]}}, {"type": "Feature", "properties": {"bin": "82396ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.6967018032650176, 44.22123495578018], [3.2493495966936545, 42.60479220712697], [4.868332115011663, 41.58031489516634], [6.977840307728955, 42.158615693047416], [7.509948481928903, 43.78660935394501], [5.8484769011283495, 44.82546981220477], [3.6967018032650176, 44.22123495578018]]]}}, {"type": "Feature", "properties": {"bin": "823637fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-151.12386440058128, 37.032961967755135], [-152.3860948404763, 35.82207574667211], [-151.60919679699137, 34.38825057175512], [-149.590621987698, 34.16516697174405], [-148.32268669005546, 35.375414810094796], [-149.07764969870357, 36.809125279655824], [-151.12386440058128, 37.032961967755135]]]}}, {"type": "Feature", "properties": {"bin": "8203affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.35053018344294, 83.87786688070946], [-147.98384331245998, 83.36220061113471], [-149.19706856075058, 81.61645489132732], [-140.7129499430988, 80.53533133043359], [-130.4902399932267, 80.9222086223195], [-125.29445893479551, 82.48154130920918], [-133.35053018344294, 83.87786688070946]]]}}, {"type": "Feature", "properties": {"bin": "825827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.2342944226787855, 18.09884525514369], [3.881187194444415, 16.504758055404427], [5.125946880545182, 15.32195477253705], [6.748859480852724, 15.703742282491802], [7.151749348230992, 17.30304938782084], [5.882262995803545, 18.516052400096086], [4.2342944226787855, 18.09884525514369]]]}}, {"type": "Feature", "properties": {"bin": "826e77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.47268446128629, 5.165048115302317], [-119.25213680561293, 6.157297531605237], [-119.60835281405174, 7.7478127606938525], [-121.21164941751073, 8.320533298992164], [-122.41963145918007, 7.29613800280954], [-122.03777096796236, 5.731436762070816], [-120.47268446128629, 5.165048115302317]]]}}, {"type": "Feature", "properties": {"bin": "825d47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.1298930260219, 20.21852662737945], [-146.32196099848449, 18.851575050356097], [-145.65120899099247, 17.178754478775605], [-143.8134957689577, 16.875830080246473], [-142.62790817921325, 18.23377607331753], [-143.27263297664362, 19.903397255934664], [-145.1298930260219, 20.21852662737945]]]}}, {"type": "Feature", "properties": {"bin": "8250c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.7192305545604, 26.223917493677725], [-129.49913609470804, 27.470934320405995], [-130.02717868800985, 29.090245038000415], [-131.79514107744168, 29.427513657214032], [-132.97853610474615, 28.166032617905707], [-132.43208434747524, 26.5816195403062], [-130.7192305545604, 26.223917493677725]]]}}, {"type": "Feature", "properties": {"bin": "82370ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-147.24089725126495, 40.448473364640876], [-148.55025650660951, 39.34736882236755], [-147.78921817414013, 37.96593075912612], [-145.74636904346727, 37.68759229063255], [-144.44021040070223, 38.787180029913614], [-145.17236601571662, 40.16633027198891], [-147.24089725126495, 40.448473364640876]]]}}, {"type": "Feature", "properties": {"bin": "825487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.954127741243205, 15.558562398793757], [-22.428256968516997, 14.65689912671654], [-22.325551171498308, 13.08121926616189], [-20.800455883755063, 12.407406629546033], [-19.35286583316386, 13.275659539199737], [-19.40378332385685, 14.850204433632182], [-20.954127741243205, 15.558562398793757]]]}}, {"type": "Feature", "properties": {"bin": "82268ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-104.4548159269732, 36.49436854843134], [-102.67135684070738, 37.47197316662982], [-102.876806697208, 39.1647845779263], [-104.92866786193674, 39.882146859438585], [-106.73836834676085, 38.8916739874737], [-106.47055990059373, 37.197522245390495], [-104.4548159269732, 36.49436854843134]]]}}, {"type": "Feature", "properties": {"bin": "821d77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.13385772976116, 52.83180090587108], [-136.86573305642807, 51.574361955016826], [-135.45245715606112, 50.357378287500495], [-133.31468676395738, 50.33165648431905], [-132.45105662182303, 51.56174614019404], [-133.85114156470928, 52.84669103300533], [-136.13385772976116, 52.83180090587108]]]}}, {"type": "Feature", "properties": {"bin": "824517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-84.14448388994323, 16.308517532140435], [-82.72794198413503, 17.13343724860129], [-82.62761199109651, 18.757362893640195], [-83.977889078554, 19.588422715604878], [-85.4396497080912, 18.76015078981871], [-85.50512739258085, 17.104271239676322], [-84.14448388994323, 16.308517532140435]]]}}, {"type": "Feature", "properties": {"bin": "82292ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-126.92731955484221, 29.97509603981841], [-125.57355829327084, 31.225723979081458], [-126.08203720130365, 32.8657606136506], [-127.97262576888383, 33.22525782957425], [-129.29351106151302, 31.96033840030001], [-128.7583411504169, 30.350310891260573], [-126.92731955484221, 29.97509603981841]]]}}, {"type": "Feature", "properties": {"bin": "825fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-49.61564781162314, 3.22361895885767], [-48.24949130203985, 4.357140454971902], [-48.534195677402856, 6.071099094574541], [-50.17426434263091, 6.6440959746859], [-51.52641146973882, 5.519498520276425], [-51.252815863927914, 3.813394894857517], [-49.61564781162314, 3.22361895885767]]]}}, {"type": "Feature", "properties": {"bin": "824717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.57183777960262, 29.691561908418024], [-172.55956552539237, 31.194193992172103], [-173.51714264920574, 32.703172127251854], [-175.54582072068294, 32.691054071663075], [-176.54267313535857, 31.148162090824524], [-175.52863062087343, 29.658089939720135], [-173.57183777960262, 29.691561908418024]]]}}, {"type": "Feature", "properties": {"bin": "827407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.08445017215476, 3.5266350498097476], [-6.362866832530322, 2.8319782586108553], [-6.096063145794151, 1.403424289472709], [-4.654773810329626, 1.2146892558706845], [-4.028797512714643, 2.5263439602273188], [-5.08445017215476, 3.5266350498097476]]]}}, {"type": "Feature", "properties": {"bin": "822a27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-66.15912631714208, 43.24164819563601], [-68.48271469709775, 43.00801065722079], [-69.34222349756935, 41.49068119533889], [-67.97194197267149, 40.25870119453795], [-65.78283365721654, 40.48336915505132], [-64.83519280239277, 41.948534313112596], [-66.15912631714208, 43.24164819563601]]]}}, {"type": "Feature", "properties": {"bin": "821eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.509948481928903, 43.78660935394501], [6.977840307728955, 42.158615693047416], [8.584298678288794, 41.06115008945459], [10.754951467911924, 41.57505304930814], [11.36919284285479, 43.20897662532489], [9.73194113849839, 44.323804866147476], [7.509948481928903, 43.78660935394501]]]}}, {"type": "Feature", "properties": {"bin": "8279b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-144.72979242136543, 6.045591181415268], [-145.85488434174934, 4.665677496328832], [-145.22589603469555, 3.04058018571452], [-143.494564317998, 2.7909720644293845], [-142.37584056906547, 4.1509126830922725], [-142.9813193937701, 5.78008495244109], [-144.72979242136543, 6.045591181415268]]]}}, {"type": "Feature", "properties": {"bin": "82486ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-119.03751909879631, 26.415545248368073], [-117.56640072762364, 27.609358068779986], [-117.96788214801275, 29.346680844586153], [-119.87996828508777, 29.867421635884615], [-121.3366283326517, 28.653019311484535], [-120.89709710213334, 26.938837684850565], [-119.03751909879631, 26.415545248368073]]]}}, {"type": "Feature", "properties": {"bin": "822797fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-111.12790674061374, 49.07352778716726], [-112.78800392829434, 48.011188120377795], [-112.38958367178164, 46.506774505316265], [-110.13398538688485, 45.973009000163444], [-108.21902141506563, 46.935541920671746], [-108.76642656192469, 48.52651320859792], [-111.12790674061374, 49.07352778716726]]]}}, {"type": "Feature", "properties": {"bin": "82231ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.8377594744209, 39.60272889557782], [-162.60817345601583, 40.911097744865614], [-163.39292691687498, 42.461841701752746], [-165.49704574163763, 42.70634072302161], [-166.73992452788676, 41.36367923828987], [-165.86742893685548, 39.81145430442936], [-163.8377594744209, 39.60272889557782]]]}}, {"type": "Feature", "properties": {"bin": "8258c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.549996118907211, 9.030648318176459], [9.136091517447662, 7.5645420515535395], [10.283180498778014, 6.402677248031407], [11.857917574873651, 6.673406154658983], [12.313097972320257, 8.132105663553832], [11.152828163016908, 9.328206600489576], [9.549996118907211, 9.030648318176459]]]}}, {"type": "Feature", "properties": {"bin": "8236d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.83895648131463, 27.015105988367765], [-151.04796662686522, 25.669243623986258], [-150.31790810875347, 24.063210878548833], [-148.3993034951798, 23.802778081163517], [-147.1876805905887, 25.145185646711305], [-147.8961122892084, 26.751237291168678], [-149.83895648131463, 27.015105988367765]]]}}, {"type": "Feature", "properties": {"bin": "82278ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-104.14330482734766, 47.27502787731518], [-105.97683463775739, 46.322960205813594], [-105.70117194372358, 44.75951422298859], [-103.5359544106562, 44.08337983698415], [-101.60751328987197, 44.95769689846376], [-101.89482153568153, 46.57467022471413], [-104.14330482734766, 47.27502787731518]]]}}, {"type": "Feature", "properties": {"bin": "82568ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-39.43410523143184, 7.635035982578252], [-38.076863107223815, 8.721485686591782], [-38.386565736843274, 10.394304748957746], [-40.04817115200065, 10.988921320513176], [-41.407803108561225, 9.91680433715931], [-41.10388274870444, 8.236161331378366], [-39.43410523143184, 7.635035982578252]]]}}, {"type": "Feature", "properties": {"bin": "8271affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-175.64068679852124, 9.586297353848044], [-176.43635201382986, 8.237540351059174], [-175.72830853489674, 6.771496860360236], [-174.21064920360917, 6.624087908058825], [-173.38014762578527, 7.972793830841406], [-174.10172146686773, 9.46929667566937], [-175.64068679852124, 9.586297353848044]]]}}, {"type": "Feature", "properties": {"bin": "82458ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-81.08170750081571, 21.16979573717062], [-79.65076315725588, 21.921223015222118], [-79.50824227877347, 23.53306637345422], [-80.82969048713068, 24.429618069495433], [-82.31040349619852, 23.682658839501197], [-82.4189498241204, 22.03460687237355], [-81.08170750081571, 21.16979573717062]]]}}, {"type": "Feature", "properties": {"bin": "824777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.99155850604535, 30.943386715374125], [-163.9005186083279, 32.31558231593665], [-164.6339455351309, 33.82853666873131], [-166.52892825112713, 33.96535450751626], [-167.6278399780964, 32.55323056480534], [-166.8254660403483, 31.044922766684163], [-164.99155850604535, 30.943386715374125]]]}}, {"type": "Feature", "properties": {"bin": "8250effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.76180679944812, 28.619665585720497], [-135.98689147817444, 27.46913860954455], [-135.40368677930647, 25.8670157640065], [-133.63167654034052, 25.432983552431253], [-132.43208434747527, 26.5816195403062], [-132.97853610474615, 28.1660326179057], [-134.76180679944812, 28.619665585720497]]]}}, {"type": "Feature", "properties": {"bin": "821d6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-131.2901594178203, 46.41694831075058], [-129.81055986756257, 47.63541537042169], [-130.46227165571864, 48.9686402565074], [-132.622022499174, 49.063414704958], [-134.0450949301209, 47.840124407999866], [-133.36750994613695, 46.527082047589396], [-131.2901594178203, 46.41694831075058]]]}}, {"type": "Feature", "properties": {"bin": "825caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.04580048883616, 10.61016422581036], [-156.13653501088766, 9.180683363423721], [-155.42601200546446, 7.5341644037062805], [-153.6357880281491, 7.302434921053644], [-152.5335322367957, 8.71898308656318], [-153.23202114955424, 10.38005420287446], [-155.04580048883616, 10.61016422581036]]]}}, {"type": "Feature", "properties": {"bin": "825c2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-148.6746530932401, 16.06601094805799], [-149.83360623557414, 14.65381003431932], [-149.14588215335624, 12.977719267796031], [-147.31930150500347, 12.71003475414825], [-146.16007687374923, 14.110797540904425], [-146.82672179952885, 15.790435204044762], [-148.6746530932401, 16.06601094805799]]]}}, {"type": "Feature", "properties": {"bin": "82351ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.707708198133105, 41.5365449910773], [-28.619292548599276, 40.47612715712832], [-28.341848402846313, 38.70068005705689], [-26.24276732275889, 37.97742746906803], [-24.359662033029288, 39.00771212438836], [-24.545990556815354, 40.79026291049053], [-26.707708198133105, 41.5365449910773]]]}}, {"type": "Feature", "properties": {"bin": "826d17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-97.303375422602, 13.10816493649229], [-95.82289320545851, 14.08222051139985], [-95.89660181351233, 15.794544787146258], [-97.49310955699559, 16.545220413152016], [-99.00408607712038, 15.551320300550213], [-98.88791870990909, 13.82722136905702], [-97.303375422602, 13.10816493649229]]]}}, {"type": "Feature", "properties": {"bin": "8274e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.049256734701922, 0.10005961824174014], [-4.906172120825075, -0.8499475652488149], [-4.287967547655411, -2.0200006444159904], [-2.791790773687883, -2.213839096714813], [-2.140858150351298, -0.853812715639454], [-2.7858575596409714, 0.30158663198554764], [-4.049256734701922, 0.10005961824174014]]]}}, {"type": "Feature", "properties": {"bin": "82358ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-32.27110570456822, 38.261418566022805], [-34.00941174896686, 37.11550690947641], [-33.6308063863189, 35.35144256871378], [-31.590030919491358, 34.71446768669329], [-29.85940456497619, 35.82684548982034], [-30.16004106649327, 37.6088436866489], [-32.27110570456822, 38.261418566022805]]]}}, {"type": "Feature", "properties": {"bin": "823b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.749467188573, 31.486075315254425], [-59.67821742267188, 30.24564073374432], [-58.972372274137555, 28.788083858698766], [-57.34950616358908, 28.526013317119837], [-56.37108719714063, 29.74711315043202], [-57.06354032638824, 31.25023458834122], [-58.749467188573, 31.486075315254425]]]}}, {"type": "Feature", "properties": {"bin": "823b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.04085721353229, 32.50799128255545], [-57.06354032638824, 31.25023458834122], [-56.37108719714063, 29.74711315043202], [-54.67394745626158, 29.457126834825857], [-53.60310562745643, 30.693020915912953], [-54.275641831594335, 32.24126752219704], [-56.04085721353229, 32.50799128255545]]]}}, {"type": "Feature", "properties": {"bin": "823777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-143.8463112012841, 41.20828589932378], [-145.17236601571662, 40.16633027198891], [-144.44021040070223, 38.787180029913614], [-142.41461960345498, 38.45421244190386], [-141.09962395635495, 39.49476572853464], [-141.79797561462004, 40.86937480683374], [-143.8463112012841, 41.20828589932378]]]}}, {"type": "Feature", "properties": {"bin": "824cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-70.45384956441451, 19.381758931054637], [-71.73013580791827, 18.713930766378308], [-71.55109910801029, 17.33294070536676], [-70.08613766800609, 16.6331676334134], [-68.82288670783096, 17.323395845914504], [-69.01122394115754, 18.69061909040474], [-70.45384956441451, 19.381758931054637]]]}}, {"type": "Feature", "properties": {"bin": "824d9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.72887815613254, 25.269651047870347], [-71.40014591811028, 25.85747883883615], [-71.16130429305609, 27.34994679960428], [-72.27432116597073, 28.294849568008754], [-73.6535793635368, 27.72357951541412], [-73.86827872769489, 26.19044873092739], [-72.72887815613254, 25.269651047870347]]]}}, {"type": "Feature", "properties": {"bin": "826c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-102.48381526900266, 2.731781118694809], [-101.11800329785831, 3.6731841147501605], [-101.25402637600651, 5.242655883540775], [-102.79248537339087, 5.871414086247641], [-104.17677408843613, 4.902363341799066], [-104.00428251269403, 3.3329333146242335], [-102.48381526900266, 2.731781118694809]]]}}, {"type": "Feature", "properties": {"bin": "825d4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.62790817921325, 18.23377607331753], [-143.8134957689577, 16.875830080246473], [-143.1716476470531, 15.19724236462377], [-141.37151007296615, 14.881959131410003], [-140.19678411591633, 16.229006921193395], [-140.81053669735087, 17.901973543556384], [-142.62790817921325, 18.23377607331753]]]}}, {"type": "Feature", "properties": {"bin": "82026ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.19476022887606, 75.14997942194846], [-74.82866567165834, 74.86723933037977], [-76.58894477052608, 73.22979877705764], [-72.5658689157688, 71.96233722771835], [-66.90449925088507, 72.20470505499345], [-64.40069409805079, 73.74945312855914], [-68.19476022887606, 75.14997942194846]]]}}, {"type": "Feature", "properties": {"bin": "820147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.365838464252189, 75.38953678987379], [11.809078968821634, 76.36649220549111], [9.902098185657369, 77.83462153176359], [2.265817701531166, 78.19830644503146], [-1.9032774208520538, 77.03453024906975], [1.1119051223096887, 75.70225329818776], [7.365838464252189, 75.38953678987379]]]}}, {"type": "Feature", "properties": {"bin": "823f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.49110741061133, 35.69002151151905], [19.750262775639456, 34.01378023726715], [21.130742457784212, 32.64713432614804], [23.24317489424228, 32.93445208208274], [24.035997744251496, 34.59685782123658], [22.666678189877594, 35.986217916354086], [20.49110741061133, 35.69002151151905]]]}}, {"type": "Feature", "properties": {"bin": "823f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.635425294848805, 33.667670279159765], [16.960447263888174, 31.969596942090178], [18.343416368196838, 30.62734805513404], [20.40081144749384, 30.959290246190747], [21.130742457784212, 32.64713432614804], [19.750262775639456, 34.01378023726715], [17.635425294848805, 33.667670279159765]]]}}, {"type": "Feature", "properties": {"bin": "82191ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.002062802068592, 58.832287456226396], [-13.710273826815675, 58.250184667728405], [-13.79164665163863, 56.73632442836385], [-11.319329754507521, 55.8183598210179], [-8.740899630542526, 56.38258811071852], [-8.508655388670176, 57.88113060234581], [-11.002062802068592, 58.832287456226396]]]}}, {"type": "Feature", "properties": {"bin": "821267fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.29720502802812, 60.128877276374276], [-107.80871191774456, 59.00030378122949], [-107.1336337557699, 57.29953386667359], [-104.2011879229016, 56.67871024838654], [-101.71056206814698, 57.72518686411824], [-102.11996489173809, 59.4718593323693], [-105.29720502802812, 60.128877276374276]]]}}, {"type": "Feature", "properties": {"bin": "82578ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.01269036358421, 18.40347009481354], [-41.25993320611356, 17.367709974292854], [-40.95905857684548, 15.819002579209917], [-39.30797215924496, 15.25519507230345], [-37.96631427500518, 16.248891797137578], [-38.33926306797061, 17.838743925532082], [-40.01269036358421, 18.40347009481354]]]}}, {"type": "Feature", "properties": {"bin": "82021ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.25348214408592, 77.98717636912029], [-117.96272581310672, 76.6578053162943], [-115.60168302411815, 75.13310683752093], [-109.45640772223801, 74.83432166792291], [-104.5305724578326, 76.01643426121936], [-105.80711566269225, 77.63589974092119], [-113.25348214408592, 77.98717636912029]]]}}, {"type": "Feature", "properties": {"bin": "8206effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.335387826720726, 64.84056407245838], [-44.12334356355083, 65.31881724104973], [-46.80769229712744, 64.04587914821998], [-45.66654684595361, 62.38541593193917], [-42.198529876646504, 61.97272690603169], [-39.56813625393488, 63.15915174626515], [-40.335387826720726, 64.84056407245838]]]}}, {"type": "Feature", "properties": {"bin": "825997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.8159567641288787, 12.988678177851225], [-4.0139984434704665, 11.545295975414751], [-2.8618420364343797, 10.477113125901752], [-1.4801680966156552, 10.825815435330894], [-1.2396306401223465, 12.28136891407245], [-2.423467945637673, 13.37666338895838], [-3.8159567641288787, 12.988678177851225]]]}}, {"type": "Feature", "properties": {"bin": "82742ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.7858575596409714, 0.30158663198554764], [-2.1427124286181316, 1.6469189364220407], [-2.7800646154740574, 2.756497157143231], [-4.028797512714643, 2.5263439602273188], [-4.654773810329625, 1.2146892558706701], [-4.049256734701897, 0.10005961824175445], [-2.7858575596409714, 0.30158663198554764]]]}}, {"type": "Feature", "properties": {"bin": "823e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.650416420075686, 20.459587405096432], [14.102532174458808, 18.80074376624017], [15.349597441138949, 17.499912999574217], [17.150771877544422, 17.826303096221643], [17.745279877629986, 19.47478423772583], [16.493141377842296, 20.807842018632034], [14.650416420075686, 20.459587405096432]]]}}, {"type": "Feature", "properties": {"bin": "820167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.614085386080716, 73.03193633522018], [9.200586264352173, 73.99667479266351], [7.365838464252189, 75.38953678987379], [1.1119051223096887, 75.70225329818776], [-2.2362007418151957, 74.58292826837449], [0.32561035194326043, 73.31022368544393], [5.614085386080716, 73.03193633522018]]]}}, {"type": "Feature", "properties": {"bin": "82510ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.14080471892913, 16.072271835802038], [-133.28223276170738, 14.810317323575692], [-132.76399272848803, 13.171016325387123], [-131.13765348963113, 12.811392905875552], [-130.0221068263012, 14.061504059632915], [-130.50674890463372, 15.682905647705288], [-132.14080471892913, 16.072271835802038]]]}}, {"type": "Feature", "properties": {"bin": "8206c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.288169326117874, 66.9915288042169], [-49.57149511280504, 67.35417312359894], [-52.236601272126784, 65.98587422595433], [-50.666394025640784, 64.35430188438744], [-46.80769229712744, 64.04587914821998], [-44.12334356355083, 65.31881724104973], [-45.288169326117874, 66.9915288042169]]]}}, {"type": "Feature", "properties": {"bin": "825197fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-119.81635416488027, 15.44264450870644], [-118.48186571718101, 16.572699557873406], [-118.85971667026476, 18.293057328124043], [-120.60413853351818, 18.85685904500526], [-121.92505233769654, 17.69862461664218], [-121.51623911942234, 16.005028532784802], [-119.81635416488027, 15.44264450870644]]]}}, {"type": "Feature", "properties": {"bin": "826747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.24843232087197, 13.029698662218832], [-69.52273226445142, 12.266930402602203], [-69.33170855480171, 10.75002259975232], [-67.85743912708107, 10.015726234508087], [-66.59934523381101, 10.803502469537596], [-66.79894852138837, 12.30029845114109], [-68.24843232087197, 13.029698662218832]]]}}, {"type": "Feature", "properties": {"bin": "826c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-101.11800329785831, 3.6731841147501365], [-102.48381526900266, 2.731781118694772], [-102.45674124927301, 1.0989978013306505], [-101.0482432081896, 0.3854149473714002], [-99.65465015437248, 1.3323876690307883], [-99.69751752634485, 2.98711961128566], [-101.11800329785831, 3.6731841147501365]]]}}, {"type": "Feature", "properties": {"bin": "820897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.286200031965574, 58.92634320829851], [16.360929516312407, 57.62270326690216], [18.275235951757786, 56.63295271905083], [21.114076381480267, 56.92073410282902], [22.14428198422671, 58.2092207165899], [20.23591300367038, 59.225870067678485], [17.286200031965574, 58.92634320829851]]]}}, {"type": "Feature", "properties": {"bin": "82092ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.2300394753996964, 68.07965221714933], [-1.6665855042242044, 69.27385919190813], [-5.509600214148194, 69.01847753368425], [-6.976507251866831, 67.54932953851741], [-4.87869840057966, 66.4250610395259], [-1.480777203240806, 66.69937069330089], [0.2300394753996964, 68.07965221714933]]]}}, {"type": "Feature", "properties": {"bin": "822b67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-55.83934032376548, 42.3252015414221], [-58.06868817238533, 42.29773315101913], [-59.206822052345544, 40.903996439791], [-58.16439976872327, 39.600661056251056], [-56.060818509941825, 39.64402062468575], [-54.879012779249315, 40.97555819925589], [-55.83934032376548, 42.3252015414221]]]}}, {"type": "Feature", "properties": {"bin": "82185ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.733942237025079, 46.36036995957606], [-7.898251979650981, 45.74021980445384], [-8.101589192291552, 44.0506310521871], [-6.231987967712124, 43.00917586374685], [-4.162634555966773, 43.62589881783318], [-3.870647496695551, 45.286766294393956], [-5.733942237025079, 46.36036995957606]]]}}, {"type": "Feature", "properties": {"bin": "82505ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.8175388095577, 27.885986175495297], [-139.05012289695244, 26.683065432299625], [-138.43217486148703, 25.066706608415128], [-136.61573872265618, 24.66731214855594], [-135.40368677930647, 25.8670157640065], [-135.98689147817444, 27.46913860954455], [-137.8175388095577, 27.885986175495297]]]}}, {"type": "Feature", "properties": {"bin": "825edffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-53.91030541419269, 19.680474994025875], [-52.60285955455481, 20.69833387837225], [-53.18787140474504, 22.196773458810885], [-54.76915143666361, 22.57206889608712], [-55.709580209558645, 21.463633806795425], [-55.460289294322024, 20.07281812545023], [-53.91030541419269, 19.680474994025875]]]}}, {"type": "Feature", "properties": {"bin": "821b27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.198529876646504, 61.97272690603169], [-45.66654684595361, 62.38541593193917], [-48.04232110294612, 61.070843759573435], [-46.93702024951137, 59.4297980446314], [-43.743992660760675, 59.07618287095348], [-41.39507637997812, 60.30796180895156], [-42.198529876646504, 61.97272690603169]]]}}, {"type": "Feature", "properties": {"bin": "820667fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.371526115079995, 63.05448623848215], [-27.260802583913804, 63.86129336415286], [-30.235533410391586, 62.95578262933216], [-30.104421290639067, 61.2998648710959], [-27.33426120868924, 60.57774059750786], [-24.57076597472634, 61.43040476232069], [-24.371526115079995, 63.05448623848215]]]}}, {"type": "Feature", "properties": {"bin": "826707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-74.34077908101102, 17.30450030127003], [-75.67323472194956, 16.56329171156416], [-75.50830730075, 15.113258517387997], [-73.9993067827236, 14.416001983365364], [-72.6751910194656, 15.179225112353901], [-72.85141406690707, 16.617247762534287], [-74.34077908101102, 17.30450030127003]]]}}, {"type": "Feature", "properties": {"bin": "822ba7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.44637611745529, 50.0827384643726], [-74.14230258846972, 49.724417395922266], [-74.9294757128243, 48.06601289912326], [-73.172619916704, 46.81165601575054], [-70.6505602992607, 47.14609856240438], [-69.71947899952944, 48.757431677563375], [-71.44637611745529, 50.0827384643726]]]}}, {"type": "Feature", "properties": {"bin": "8218f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.382340625694795, 49.60926939734891], [-18.65090558974211, 48.798472969414014], [-18.59397660055241, 47.0984334967306], [-16.384633284552198, 46.21899145965219], [-14.193176912970879, 47.01013597107083], [-14.134966126881988, 48.69906061825517], [-16.382340625694795, 49.60926939734891]]]}}, {"type": "Feature", "properties": {"bin": "821b37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.04232110294612, 61.070843759573435], [-51.550082921060856, 61.33081918088026], [-53.64113389481237, 59.90336096046384], [-52.27797798983351, 58.30261054284449], [-49.06442531515849, 58.08648276572245], [-46.93702024951137, 59.4297980446314], [-48.04232110294612, 61.070843759573435]]]}}, {"type": "Feature", "properties": {"bin": "8234dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-28.29640627443555, 25.170737543759543], [-29.852265006074962, 24.12402164409733], [-29.59996504669809, 22.402302794308937], [-27.85218825464232, 21.71489548327453], [-26.311790466231407, 22.72417379561979], [-26.502889743075187, 24.45740428036553], [-28.29640627443555, 25.170737543759543]]]}}, {"type": "Feature", "properties": {"bin": "822767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.98131184812848, 49.4132499685268], [-86.46839308952266, 48.78046010093184], [-86.76385612316132, 47.08474562818119], [-84.74861378741058, 46.03517879775627], [-82.38806417358143, 46.615408258891044], [-81.91962699890831, 48.295316381881364], [-83.98131184812848, 49.4132499685268]]]}}, {"type": "Feature", "properties": {"bin": "8254effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.143209702643249, 11.34031170743392], [-13.574644025576724, 10.54021488943181], [-13.62057662207049, 9.082229599755195], [-12.279428517961106, 8.436299934019914], [-10.883976339217032, 9.211077490154926], [-10.794192696497728, 10.656349373399392], [-12.143209702643249, 11.34031170743392]]]}}, {"type": "Feature", "properties": {"bin": "822977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.29351106151302, 31.96033840030001], [-127.97262576888383, 33.22525782957425], [-128.51462133744633, 34.818432685996264], [-130.40230082165007, 35.11638961670009], [-131.6847754612276, 33.84034782516211], [-131.11967892910866, 32.27751823232611], [-129.29351106151302, 31.96033840030001]]]}}, {"type": "Feature", "properties": {"bin": "823eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.915183885634578, 23.45043771532035], [13.36552238462891, 21.765875261344213], [14.650416420075686, 20.459587405096432], [16.493141377842296, 20.807842018632034], [17.09269537453719, 22.484493199126963], [15.800827802347936, 23.821410412145514], [13.915183885634578, 23.45043771532035]]]}}, {"type": "Feature", "properties": {"bin": "820cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.0655884448202, 60.72912581441262], [-166.51815211125566, 59.606492624315294], [-165.84016293788605, 58.12514676056634], [-162.98934604170333, 57.74209682042291], [-160.60123510352207, 58.77364178572618], [-160.99088524193843, 60.27519181750238], [-164.0655884448202, 60.72912581441262]]]}}, {"type": "Feature", "properties": {"bin": "827927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-135.56734542131707, 12.22352609746689], [-136.70921415114404, 10.903594944630614], [-136.1584261723648, 9.260555687941112], [-134.4967553226894, 8.948659190742395], [-133.37582661043865, 10.252592093010179], [-133.89520751564908, 11.8841311452974], [-135.56734542131707, 12.22352609746689]]]}}, {"type": "Feature", "properties": {"bin": "82121ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.0485505436808, 57.71085066719347], [-122.65351099974262, 56.41990601942024], [-121.4424549287285, 54.916649815151494], [-118.7469733778494, 54.632577919547934], [-117.03757396536434, 55.86163078514258], [-118.11475820528021, 57.43687314537709], [-121.0485505436808, 57.71085066719347]]]}}, {"type": "Feature", "properties": {"bin": "8227b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-109.99461055319722, 51.754865985358926], [-111.81358444532302, 50.6619876203823], [-111.12790674061374, 49.07352778716726], [-108.76642656192469, 48.52651320859792], [-106.93095328347972, 49.548822883945455], [-107.46626232494818, 51.18753049151047], [-109.99461055319722, 51.754865985358926]]]}}, {"type": "Feature", "properties": {"bin": "820c6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.17976142970744, 61.45362654839109], [-144.21849393921593, 60.8355637984744], [-144.73251530920086, 59.38346599222256], [-142.4816458563309, 58.59546157488214], [-139.6835934816099, 59.16948256665964], [-138.907073918071, 60.57267703592046], [-141.17976142970744, 61.45362654839109]]]}}, {"type": "Feature", "properties": {"bin": "826f5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.29811028782477, 2.6774916039214682], [-120.11514543521388, 3.625405109717659], [-120.47268446128629, 5.165048115302317], [-122.03777096796236, 5.731436762070816], [-123.20741906938693, 4.751344235263275], [-122.8261431354025, 3.2372943806693373], [-121.29811028782477, 2.6774916039214682]]]}}, {"type": "Feature", "properties": {"bin": "821d27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.83176938444817, 57.94990680219881], [-138.59856537789113, 56.59218158461872], [-136.91860621271735, 55.36583039668758], [-134.47061065778777, 55.42569632237935], [-133.52109292003715, 56.759266243298875], [-135.1937938926105, 58.059379038985895], [-137.83176938444817, 57.94990680219881]]]}}, {"type": "Feature", "properties": {"bin": "827947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.24727943173093, 6.437443983847103], [-130.3198801019625, 5.169706959304147], [-129.85901084455557, 3.6266310727261404], [-128.35662776273253, 3.3650043097768796], [-127.3104736081558, 4.612860727482494], [-127.74014175209031, 6.1418970718781685], [-129.24727943173093, 6.437443983847103]]]}}, {"type": "Feature", "properties": {"bin": "821897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-28.4061201161991, 51.77535908133029], [-30.59296189548184, 50.75085829394896], [-30.22164256686591, 49.097935237084215], [-27.781655948658877, 48.458659955966446], [-25.62514366457305, 49.45304649345546], [-25.876022418714438, 51.11545209860288], [-28.4061201161991, 51.77535908133029]]]}}, {"type": "Feature", "properties": {"bin": "8248dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.95985630825147, 33.74267040100571], [-104.2290936992043, 34.76683203159689], [-104.4548159269732, 36.49436854843134], [-106.47055990059373, 37.197522245390495], [-108.22211933522499, 36.15881614550794], [-107.93785023260511, 34.43227819342154], [-105.95985630825147, 33.74267040100571]]]}}, {"type": "Feature", "properties": {"bin": "825d2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.31790810875347, 24.063210878548833], [-151.50811764554672, 22.684204115325596], [-150.78436899855103, 21.05001369377554], [-148.88967549149402, 20.7929466404251], [-147.69594788211106, 22.16693900740581], [-148.3993034951798, 23.802778081163517], [-150.31790810875347, 24.063210878548833]]]}}, {"type": "Feature", "properties": {"bin": "82782ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.47339503843574, 2.6052531103613514], [-133.55280359208382, 1.3136684078902414], [-133.06006141444146, -0.2050918264519519], [-131.51755267776005, -0.4250722038883098], [-130.4608587551884, 0.843603111016541], [-130.92371721669844, 2.3547343129537235], [-132.47339503843574, 2.6052531103613514]]]}}, {"type": "Feature", "properties": {"bin": "82706ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.05079070243565, 5.160339562870666], [-162.05566024565402, 3.777935513689746], [-161.34132621226098, 2.192855124256149], [-159.6248057354468, 1.9668709126119408], [-158.59967491814012, 3.3357348575173495], [-159.3104412172958, 4.94416673431073], [-161.05079070243565, 5.160339562870666]]]}}, {"type": "Feature", "properties": {"bin": "8212cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.29334339405317, 51.131925367323966], [-115.9131566801509, 50.003546458815705], [-115.10105179976324, 48.47184510538461], [-112.78800392829434, 48.011188120377795], [-111.12790674061374, 49.07352778716726], [-111.81358444532302, 50.6619876203823], [-114.29334339405317, 51.131925367323966]]]}}, {"type": "Feature", "properties": {"bin": "824967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-116.7572158555163, 15.98204017480718], [-115.36893296764649, 17.106220178644637], [-115.71178024538322, 18.84876895256059], [-117.4789627252278, 19.44534384887105], [-118.85971667026476, 18.293057328124043], [-118.48186571718101, 16.572699557873406], [-116.7572158555163, 15.98204017480718]]]}}, {"type": "Feature", "properties": {"bin": "823697fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.4192072625563, 29.301281850269515], [-159.5659720311805, 27.919872272760344], [-158.78127814616812, 26.402669779874078], [-156.85736472540782, 26.25957203198717], [-155.69058995083472, 27.64232604690051], [-156.46648191451354, 29.16664573101749], [-158.4192072625563, 29.301281850269515]]]}}, {"type": "Feature", "properties": {"bin": "826c2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-92.71844814286081, 9.336365704858496], [-94.13484906237974, 8.401781337149911], [-94.0611770183681, 6.79372414805152], [-92.55464950365904, 6.111039151980233], [-91.12007106136942, 7.059508613810282], [-91.21020382252959, 8.676263183067155], [-92.71844814286081, 9.336365704858496]]]}}, {"type": "Feature", "properties": {"bin": "826f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-111.0842779787137, 1.6840814660750991], [-109.77837324145847, 2.627100977731312], [-110.02096631544327, 4.183696897349536], [-111.60261207801032, 4.7853989171504105], [-112.91227920526617, 3.811124814066104], [-112.63709977293884, 2.267021769530763], [-111.0842779787137, 1.6840814660750991]]]}}, {"type": "Feature", "properties": {"bin": "82061ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-35.19432849083897, 70.39549546555152], [-39.79000498564452, 71.03160990450888], [-43.375396225483314, 69.88664041050214], [-42.212203177542214, 68.20861039911539], [-38.05088336858742, 67.65668949772835], [-34.63880586836484, 68.70550027755122], [-35.19432849083897, 70.39549546555152]]]}}, {"type": "Feature", "properties": {"bin": "8226c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-98.62272599746812, 34.18804644137447], [-96.86314528739004, 35.093055453019566], [-96.96815321456646, 36.80475078030147], [-98.89309474489009, 37.623022162475365], [-100.69279980327295, 36.709266934476744], [-100.52734476868227, 34.98672226016669], [-98.62272599746812, 34.18804644137447]]]}}, {"type": "Feature", "properties": {"bin": "822317fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.15685475531342, 37.824845121610196], [-159.94762734735153, 39.09941640444715], [-160.63023581359607, 40.63948728488323], [-162.60817345601583, 40.911097744865614], [-163.8377594744209, 39.60272889557782], [-163.07049987720274, 38.057208066376795], [-161.15685475531342, 37.824845121610196]]]}}, {"type": "Feature", "properties": {"bin": "822847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.78381808977477, 41.111332665196436], [-131.43373682445977, 42.37654333434242], [-132.06227559423212, 43.79453728701303], [-134.0625597172373, 43.92295856646324], [-135.36007876878142, 42.654167907708526], [-134.711937725098, 41.260646908811665], [-132.78381808977477, 41.111332665196436]]]}}, {"type": "Feature", "properties": {"bin": "824527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.43455261911369, 13.711755540888754], [-86.99951934066806, 14.596250076064885], [-86.95440525525348, 16.244452762716225], [-88.38131358911883, 17.034156342908037], [-89.85739134480713, 16.139329820228298], [-89.86490654761025, 14.465456015426508], [-88.43455261911369, 13.711755540888754]]]}}, {"type": "Feature", "properties": {"bin": "8288dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.79651841734938, 4.493630141291827], [-156.85407414494503, 3.107520783199951], [-156.1576568015457, 1.5050626141201597], [-154.41321483314, 1.2704435740827698], [-153.3434481200073, 2.639757648171126], [-154.0294052002189, 4.260374459536216], [-155.79651841734938, 4.493630141291827]]]}}, {"type": "Feature", "properties": {"bin": "823587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.81711570768894, 40.61578334691715], [-36.55457124253603, 39.437202689025106], [-36.11258179895081, 37.69840581728444], [-34.00941174896686, 37.11550690947641], [-32.27110570456822, 38.261418566022805], [-32.63448706217523, 40.022078440453285], [-34.81711570768894, 40.61578334691715]]]}}, {"type": "Feature", "properties": {"bin": "826eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-111.87119281208132, 6.382401917945722], [-110.52409645276234, 7.389591580632589], [-110.78506107831564, 9.035348232421732], [-112.42828692691761, 9.660264682375837], [-113.77793956806565, 8.621777037639923], [-113.48247274365892, 6.990262085366079], [-111.87119281208132, 6.382401917945722]]]}}, {"type": "Feature", "properties": {"bin": "82494ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-117.85371711875625, 21.187585569854463], [-116.42453443093213, 22.353860721798863], [-116.7951045913354, 24.10948321784331], [-118.63264326814091, 24.676154575544956], [-120.05117135868093, 23.48531858998525], [-119.64404213347197, 21.752743340175808], [-117.85371711875625, 21.187585569854463]]]}}, {"type": "Feature", "properties": {"bin": "821db7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.70260638958075, 57.14185650944261], [-155.1335337264925, 56.29185264795599], [-155.0720370398947, 54.89036044994872], [-152.80562990957836, 54.348655901316015], [-150.5001972397225, 55.13368819815839], [-150.33692815389782, 56.522108344088565], [-152.70260638958075, 57.14185650944261]]]}}, {"type": "Feature", "properties": {"bin": "82550ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.956159557263328, 23.307035475663525], [-11.587036473562442, 22.48058908346514], [-11.67514915567997, 20.80838745157097], [-10.188114712806701, 19.98422878146785], [-8.606696673672944, 20.791091351545326], [-8.463757820412326, 22.441035492513045], [-9.956159557263328, 23.307035475663525]]]}}, {"type": "Feature", "properties": {"bin": "826d07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-94.28318311716961, 13.348848959489132], [-92.81028318670805, 14.294686201436091], [-92.84255176159802, 15.990116090801749], [-94.38883574668255, 16.757152764871574], [-95.89660181351233, 15.794544787146258], [-95.82289320545851, 14.08222051139985], [-94.28318311716961, 13.348848959489132]]]}}, {"type": "Feature", "properties": {"bin": "826aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.464273607656313, 2.7297657317309403], [23.14689086498559, 4.259065522271721], [22.136132249356997, 5.527020080114603], [20.458518123241934, 5.284276360502933], [19.77031774923299, 3.777844681142865], [20.76448426679086, 2.4912777849399794], [22.464273607656313, 2.7297657317309403]]]}}, {"type": "Feature", "properties": {"bin": "8236cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-144.0484157655211, 26.14644123025918], [-145.27438067417734, 24.846356452935005], [-144.59575611918856, 23.21297703773573], [-142.7188705783351, 22.885971422359724], [-141.5018770416946, 24.181165224000477], [-142.1518487614197, 25.80801073985058], [-144.0484157655211, 26.14644123025918]]]}}, {"type": "Feature", "properties": {"bin": "826d4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.81912126593483, 9.849742970723655], [-88.25051092370046, 8.93099678858819], [-88.14401224216319, 7.309420562421476], [-86.58999355148684, 6.605186625257107], [-85.14863398139961, 7.5409997270373745], [-85.27113336987175, 9.163419968536484], [-86.81912126593483, 9.849742970723655]]]}}, {"type": "Feature", "properties": {"bin": "827437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.0644961087785445, 5.362739776582643], [-7.378352602293609, 4.648343501025636], [-7.5105286649192315, 3.3757928754616726], [-6.36286683253032, 2.8319782586108553], [-5.08445017215476, 3.5266350498097476], [-4.918873186254363, 4.7842994164597235], [-6.0644961087785445, 5.362739776582643]]]}}, {"type": "Feature", "properties": {"bin": "821ce7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.96705167315295, 47.80338871690368], [-143.35464186435385, 46.935232412617694], [-142.61024286094258, 45.715911502521784], [-140.5163915095294, 45.365922636015576], [-139.34036538559516, 46.633121031672175], [-140.06320040294017, 47.862031640242165], [-141.96705167315295, 47.80338871690368]]]}}, {"type": "Feature", "properties": {"bin": "822647fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.74853700409722, 36.65876042006413], [-87.99076359407903, 37.38207405857687], [-87.95138172303123, 39.0147883106185], [-89.72621630626132, 39.94722184718561], [-91.54335025644869, 39.225656206133934], [-91.52528283315519, 37.57043047609912], [-89.74853700409722, 36.65876042006413]]]}}, {"type": "Feature", "properties": {"bin": "825d07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-153.42064184682016, 22.90851606291967], [-154.58288875803984, 21.499614936184223], [-153.84334364279104, 19.871127924569453], [-151.95618981799598, 19.645632089268535], [-150.78436899855103, 21.05001369377554], [-151.50811764554672, 22.684204115325596], [-153.42064184682016, 22.90851606291967]]]}}, {"type": "Feature", "properties": {"bin": "82718ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-175.72830853489674, 6.771496860360236], [-176.51260750188447, 5.456990966851024], [-175.81366271175628, 3.997491531082098], [-174.31673738369324, 3.8210244943304374], [-173.49842369653564, 5.132724903314782], [-174.21064920360917, 6.624087908058825], [-175.72830853489674, 6.771496860360236]]]}}, {"type": "Feature", "properties": {"bin": "825eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.270770377463634, 13.199442659470222], [-49.93229663073252, 14.275505497784241], [-50.20684695571737, 15.828355103239595], [-51.80871881161255, 16.300308440137652], [-53.131252461361875, 15.238077091913617], [-52.86812566700949, 13.69054711705167], [-51.270770377463634, 13.199442659470222]]]}}, {"type": "Feature", "properties": {"bin": "823f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.679352391342839, 28.55677300195445], [15.071232200574926, 26.84934226485555], [16.404954355833446, 25.517872533302246], [18.351304577591986, 25.86678026136113], [19.012036761826856, 27.565395679553497], [17.675332540841065, 28.924476228387608], [15.679352391342839, 28.55677300195445]]]}}, {"type": "Feature", "properties": {"bin": "821a27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-41.51955822321931, 54.2010777974823], [-44.22969503324036, 54.56320665897177], [-46.153894348571015, 53.27988749468763], [-45.3487176632849, 51.70929202078847], [-42.807205092464294, 51.401974335716375], [-40.908619446419266, 52.612941455243046], [-41.51955822321931, 54.2010777974823]]]}}, {"type": "Feature", "properties": {"bin": "825f4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.54356516464526, 8.076965819884318], [-62.32270202213191, 9.167509670989483], [-62.54240534349367, 10.713529192008048], [-63.969048649310444, 11.148939539160773], [-65.16115084628066, 10.067792224666967], [-64.9553856164191, 8.542069322310283], [-63.54356516464526, 8.076965819884318]]]}}, {"type": "Feature", "properties": {"bin": "8226affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-102.876806697208, 39.1647845779263], [-101.04033001739265, 40.0885965084391], [-101.22296433729231, 41.740408066652975], [-103.30874669480728, 42.472631308344376], [-105.1775341855395, 41.537333709012145], [-104.92866786193674, 39.882146859438585], [-102.876806697208, 39.1647845779263]]]}}, {"type": "Feature", "properties": {"bin": "820c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.92108841441055, 63.37119804869793], [-164.7032104038009, 62.26771211347016], [-164.0655884448202, 60.72912581441262], [-160.99088524193843, 60.27519181750238], [-158.31174268238934, 61.28325819507393], [-158.59550464384833, 62.83567066730138], [-161.92108841441055, 63.37119804869793]]]}}, {"type": "Feature", "properties": {"bin": "8245affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.62761199109651, 18.757362893640195], [-81.20285939736071, 19.548336732136832], [-81.08170750081571, 21.16979573717062], [-82.4189498241204, 22.03460687237355], [-83.8912484679536, 21.24419924142965], [-83.977889078554, 19.588422715604878], [-82.62761199109651, 18.757362893640195]]]}}, {"type": "Feature", "properties": {"bin": "820c47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.75453741148945, 61.634868831940416], [-149.73449372095553, 60.88463682809786], [-149.9571329675554, 59.39832974861567], [-147.49860030923193, 58.69272286234608], [-144.73251530920086, 59.38346599222256], [-144.21849393921593, 60.8355637984744], [-146.75453741148945, 61.634868831940416]]]}}, {"type": "Feature", "properties": {"bin": "820207fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-109.60061358280943, 80.79477388736268], [-116.06967252591366, 79.50058629824929], [-113.25348214408592, 77.98717636912029], [-105.80711566269225, 77.63589974092119], [-99.38613866897518, 78.7166441202498], [-100.2137325658639, 80.31934275103156], [-109.60061358280943, 80.79477388736268]]]}}, {"type": "Feature", "properties": {"bin": "8250a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-124.07497433039693, 19.919219984308935], [-122.77222797391424, 21.1036574832414], [-123.21121382753459, 22.80855856281255], [-124.98123746841438, 23.297500368049423], [-126.26112298654218, 22.089282598203653], [-125.79514460772695, 20.41598020692649], [-124.07497433039693, 19.919219984308935]]]}}, {"type": "Feature", "properties": {"bin": "825ecffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.744128647167635, 19.03914180016912], [-55.460289294322024, 20.07281812545023], [-55.709580209558645, 21.463633806795425], [-57.23011196400804, 21.814638994608284], [-58.49170707971801, 20.795541739699427], [-58.255166268389985, 19.411327315262735], [-56.744128647167635, 19.03914180016912]]]}}, {"type": "Feature", "properties": {"bin": "827c77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-25.7212640118118, -0.6931851479671456], [-24.480898541905805, 0.4063945397719461], [-24.79894099018329, 2.088475796103549], [-26.360081867442375, 2.6968138442972496], [-27.622966405679403, 1.6093190828786592], [-27.302574200172785, -0.09854949274457844], [-25.7212640118118, -0.6931851479671456]]]}}, {"type": "Feature", "properties": {"bin": "8226cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.66289038040519, 31.619530626908528], [-94.94582051780957, 32.51690625937428], [-95.0175072313011, 34.246080564804586], [-96.86314528739004, 35.093055453019566], [-98.62272599746812, 34.18804644137447], [-98.49387337240059, 32.44435492016832], [-96.66289038040519, 31.619530626908528]]]}}, {"type": "Feature", "properties": {"bin": "822697fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.58483321289158, 38.48993462904381], [-108.81828775378811, 39.54349001369253], [-109.13106255776393, 41.19652006940258], [-111.27157033330067, 41.78920913152274], [-113.04627123921182, 40.72061994800501], [-112.67364833709534, 39.07514874188193], [-110.58483321289158, 38.48993462904381]]]}}, {"type": "Feature", "properties": {"bin": "820d07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-156.68473650522998, 73.75085590328372], [-161.50564454731008, 72.70722536829874], [-160.79790121243346, 71.00761876132705], [-156.17772926429058, 70.34457749397508], [-151.76683977369802, 71.2602903416543], [-151.55680775303475, 72.9547807538937], [-156.68473650522998, 73.75085590328372]]]}}, {"type": "Feature", "properties": {"bin": "82571ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-36.02386940755977, 21.576587695009557], [-37.395255697480366, 20.5102438385704], [-37.026146687669865, 18.87250036262906], [-35.333446627022596, 18.27582314924697], [-33.958591380143694, 19.30220339543153], [-34.27862345826887, 20.964645785070672], [-36.02386940755977, 21.576587695009557]]]}}, {"type": "Feature", "properties": {"bin": "824ce7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-66.7503445100982, 21.23820775000707], [-67.96331514047147, 20.643702793693436], [-67.77314023299425, 19.332592785460218], [-66.36234352556043, 18.63022354284743], [-65.20653379371934, 19.669922322673447], [-65.40723864874259, 20.97970390799355], [-66.7503445100982, 21.23820775000707]]]}}, {"type": "Feature", "properties": {"bin": "820627fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.232862920137123, 70.30015374059282], [-22.87247419114535, 71.27639212190138], [-27.0416080884867, 70.52278709288883], [-27.10886435300251, 68.8525046586657], [-23.60157937537406, 67.97841284565767], [-19.87138058908891, 68.6781104931821], [-19.232862920137123, 70.30015374059282]]]}}, {"type": "Feature", "properties": {"bin": "821e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.374347667392275, 47.965938447346616], [12.677317810359863, 46.40695745798227], [14.33720628244463, 45.27343222583469], [16.708896543883586, 45.6797189491731], [17.489487896493493, 47.23467882509988], [15.817383557718518, 48.388122500459744], [13.374347667392275, 47.965938447346616]]]}}, {"type": "Feature", "properties": {"bin": "82752ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.9395631182409523, 8.007193661487852], [-2.159048476284375, 6.645580466394948], [-1.0480074617937822, 5.588679090661898], [0.309803963535533, 5.864518365517626], [0.5689349498665859, 7.231941088759668], [-0.5694861509226148, 8.318410093422674], [-1.9395631182409523, 8.007193661487852]]]}}, {"type": "Feature", "properties": {"bin": "821b17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-49.06442531515849, 58.08648276572245], [-52.27797798983351, 58.30261054284449], [-54.16389762671933, 56.86222737436078], [-52.88775721716944, 55.28801569340989], [-49.9240190019277, 55.11184567911766], [-48.00021552533757, 56.47204864023174], [-49.06442531515849, 58.08648276572245]]]}}, {"type": "Feature", "properties": {"bin": "824d87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.94519451089594, 29.808573144961098], [-71.69663750794268, 29.541228049016194], [-72.27432116597072, 28.294849568008758], [-71.16130429305608, 27.349946799604282], [-69.4859197897908, 27.602331406208105], [-68.84984897216773, 28.813992016483084], [-69.94519451089594, 29.808573144961098]]]}}, {"type": "Feature", "properties": {"bin": "821d8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-148.41135616643646, 50.423740032442545], [-146.94645290870835, 51.30809805677444], [-146.65509019149425, 52.57479276042742], [-148.5996987063249, 53.18630010760154], [-150.78485025733843, 52.45847760363215], [-150.30701544531357, 50.980147810796005], [-148.41135616643646, 50.423740032442545]]]}}, {"type": "Feature", "properties": {"bin": "823557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.3623519142538, 39.178081579793435], [-22.293034642597473, 38.2149620290745], [-22.162636940443136, 36.41973845196904], [-20.18932139434465, 35.5917804234095], [-18.30545839105258, 36.529265222848295], [-18.348088280402102, 38.319242897076336], [-20.3623519142538, 39.178081579793435]]]}}, {"type": "Feature", "properties": {"bin": "82755ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.8199508788179312, -0.6593876817348934], [-0.1602034369452549, 0.7197982113703898], [-0.8378324096770464, 1.8701721240824984], [-2.1427124286181316, 1.6469189364220407], [-2.7858575596409714, 0.30158663198554764], [-2.140858150351298, -0.853812715639454], [-0.8199508788179312, -0.6593876817348934]]]}}, {"type": "Feature", "properties": {"bin": "826c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-95.61319237550187, 9.0771817383171], [-97.03705754786904, 8.122360527133047], [-96.95279100761127, 6.514817339042198], [-95.48101266679427, 5.843867655957198], [-94.0611770183681, 6.79372414805152], [-94.13484906237974, 8.401781337149911], [-95.61319237550187, 9.0771817383171]]]}}, {"type": "Feature", "properties": {"bin": "825e57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.80745746092741, 13.975215755765579], [-57.535306647416995, 15.054266427896964], [-57.77697605943319, 16.540010832239233], [-59.277584084895715, 16.935418608977116], [-60.52507371447073, 15.869733829825366], [-60.29672735515016, 14.395690863437256], [-58.80745746092741, 13.975215755765579]]]}}, {"type": "Feature", "properties": {"bin": "82382ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.12380735772064089, 37.036562006618176], [-0.21185444833693792, 35.37567101563382], [1.2724179411878551, 34.323246605430036], [3.1364790338915944, 34.91820439114921], [3.543589356987794, 36.59789814478598], [2.015254649789183, 37.66435763083123], [0.12380735772064089, 37.036562006618176]]]}}, {"type": "Feature", "properties": {"bin": "8248cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-109.6325113148718, 33.353312748176265], [-107.93785023260511, 34.43227819342154], [-108.22211933522499, 36.15881614550794], [-110.25748485653355, 36.800197061174266], [-111.96235777597163, 35.70493980448009], [-111.62272575497785, 33.98532502644072], [-109.6325113148718, 33.353312748176265]]]}}, {"type": "Feature", "properties": {"bin": "825c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-157.9299678248433, 9.396882901305514], [-158.98772817776748, 7.972665932766329], [-158.26921053967362, 6.344572309076851], [-156.4999517275151, 6.1222069345507], [-155.42601200546446, 7.5341644037062805], [-156.13653501088766, 9.180683363423721], [-157.9299678248433, 9.396882901305514]]]}}, {"type": "Feature", "properties": {"bin": "825d27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.986319458141, 25.892671650495306], [-154.16758439931047, 24.510729665905433], [-153.42064184682016, 22.90851606291967], [-151.50811764554672, 22.684204115325596], [-150.31790810875347, 24.063210878548833], [-151.04796662686522, 25.669243623986258], [-152.986319458141, 25.892671650495306]]]}}, {"type": "Feature", "properties": {"bin": "8254affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-17.910453055902636, 15.72965237496016], [-19.40378332385685, 14.850204433632182], [-19.35286583316386, 13.275659539199737], [-17.860226364438105, 12.585841373390625], [-16.398619029755448, 13.434493335832748], [-16.39811264585764, 15.002855614684421], [-17.910453055902636, 15.72965237496016]]]}}, {"type": "Feature", "properties": {"bin": "8254d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-17.8363676518402, 11.063783036396401], [-19.25608087263708, 10.227430733230397], [-19.210049292532005, 8.7557471773871], [-17.7909573321859, 8.124363819119298], [-16.40003966386146, 8.93040321672402], [-16.3995817269834, 10.397267061984039], [-17.8363676518402, 11.063783036396401]]]}}, {"type": "Feature", "properties": {"bin": "823537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.492923060366778, 46.76027724369226], [-29.533523189213692, 45.712552077226604], [-29.21416364598153, 43.985269382071], [-26.956907080132776, 43.296309122992405], [-24.94600162415378, 44.314627563123466], [-25.161045549718533, 46.0500775281623], [-27.492923060366778, 46.76027724369226]]]}}, {"type": "Feature", "properties": {"bin": "82346ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.608842439241553, 31.177353298158966], [-16.392618992120248, 30.28738493539216], [-16.39332769128071, 28.514587165424352], [-14.681052541612365, 27.647052437792293], [-12.948554583750909, 28.514935780874872], [-12.877752742714321, 30.271571925410477], [-14.608842439241553, 31.177353298158966]]]}}, {"type": "Feature", "properties": {"bin": "826e47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-122.41963145918007, 7.29613800280954], [-121.21164941751073, 8.320533298992164], [-121.59354902638586, 9.932303981475837], [-123.20856686223374, 10.490963765899702], [-124.40041038231014, 9.435131370225317], [-123.99432926598497, 7.852239329791246], [-122.41963145918007, 7.29613800280954]]]}}, {"type": "Feature", "properties": {"bin": "825097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.05117135868093, 23.48531858998525], [-118.63264326814091, 24.676154575544956], [-119.03751909879631, 26.415545248368073], [-120.89709710213334, 26.938837684850565], [-122.2996262543588, 25.725526770366592], [-121.85994020008248, 24.01169471518747], [-120.05117135868093, 23.48531858998525]]]}}, {"type": "Feature", "properties": {"bin": "822a57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.31221322379417, 36.19757453714417], [-70.31141226372195, 35.933886597496496], [-71.00544091940455, 34.54096936853697], [-69.77521250033024, 33.454135945246556], [-67.87540832483207, 33.704520119757866], [-67.1099978516946, 35.054476704732046], [-68.31221322379417, 36.19757453714417]]]}}, {"type": "Feature", "properties": {"bin": "82195ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.1788859209290425, 53.25155105071478], [-4.578382413982979, 52.792439042763036], [-4.889760342933783, 51.22372845966178], [-2.9065278792841616, 50.14229216995713], [-0.631094757975507, 50.60191112048409], [-0.21913743445926212, 52.141680818262785], [-2.1788859209290425, 53.25155105071478]]]}}, {"type": "Feature", "properties": {"bin": "821daffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.99197018251797, 55.204589940723054], [-148.36187586117808, 54.5139353396929], [-148.5996987063249, 53.18630010760154], [-146.65509019149425, 52.57479276042742], [-144.4245651319535, 53.21749558931391], [-144.00338205746385, 54.51722111686252], [-145.99197018251797, 55.204589940723054]]]}}, {"type": "Feature", "properties": {"bin": "821b47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.60600804334573, 56.01030029978095], [-36.810385749972156, 54.92187398695691], [-36.24721815647945, 53.38145255596482], [-33.60149490344563, 52.91003251498282], [-31.397541405949717, 53.96605569703895], [-31.834255482080355, 55.52464282034987], [-34.60600804334573, 56.01030029978095]]]}}, {"type": "Feature", "properties": {"bin": "827087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-175.89683586323252, 1.2760872010763828], [-176.65933388469932, 0.045100606795099404], [-175.97791019371718, -1.382296820377447], [-174.5208252301345, -1.6114802044966479], [-173.72587330867833, -0.3883541127238595], [-174.4200949121516, 1.072268113417068], [-175.89683586323252, 1.2760872010763828]]]}}, {"type": "Feature", "properties": {"bin": "820397fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.04970733029904, 78.96768198622497], [-164.85311601061076, 77.87516635116434], [-163.45686807900947, 76.14556732608257], [-157.0299997629345, 75.47864683380004], [-150.97533411559434, 76.39114005810903], [-150.55652230638296, 78.12689451571578], [-158.04970733029904, 78.96768198622497]]]}}, {"type": "Feature", "properties": {"bin": "8238b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.290521719128034, 28.269153054310298], [-8.002013895306682, 27.50290866718829], [-8.161724346494458, 25.799576124170038], [-6.667778136025995, 24.89175633085534], [-5.0155884996367694, 25.64651817513538], [-4.799371159116904, 27.320116005158603], [-6.290521719128034, 28.269153054310298]]]}}, {"type": "Feature", "properties": {"bin": "82006ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.54048563323215, 80.82228127123085], [-12.81796911199405, 82.24829137508873], [-21.994683754892108, 83.41761096812805], [-34.77414165316664, 82.79988538231541], [-34.75841798028471, 81.27137179020501], [-26.182285242095986, 80.4168727516391], [-16.54048563323215, 80.82228127123085]]]}}, {"type": "Feature", "properties": {"bin": "8228f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-122.13483148443464, 44.05769081450337], [-120.46316865071184, 45.212419707598016], [-120.98065670250082, 46.69153743514635], [-123.21854399041668, 46.998589021805486], [-124.85998231411203, 45.831701684751735], [-124.29625240032743, 44.370406328558374], [-122.13483148443464, 44.05769081450337]]]}}, {"type": "Feature", "properties": {"bin": "823b5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-44.2923731199734, 33.326136279047425], [-45.66001638447603, 32.08927977102965], [-45.101964247992925, 30.42765660497883], [-43.22180912378595, 29.965733050192064], [-41.82721927443858, 31.16982581915594], [-42.3374216455875, 32.86845387395056], [-44.2923731199734, 33.326136279047425]]]}}, {"type": "Feature", "properties": {"bin": "823647fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-139.7112019527131, 32.57121961082409], [-140.97655281371902, 31.4179221935752], [-140.32211982848523, 29.86133340283266], [-138.436417386556, 29.469379315319497], [-137.18917403900545, 30.621401309085574], [-137.80871931624813, 32.16641595291894], [-139.7112019527131, 32.57121961082409]]]}}, {"type": "Feature", "properties": {"bin": "826e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.91041930526723, 1.3300762483231612], [-112.63709977293884, 2.267021769530763], [-112.91227920526617, 3.811124814066104], [-114.49178681867154, 4.402628997698175], [-115.7639737341466, 3.4338527305639226], [-115.45844642358085, 1.9059421128071417], [-113.91041930526723, 1.3300762483231612]]]}}, {"type": "Feature", "properties": {"bin": "824727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.44845406020744, 34.155186609801476], [-169.34862745111113, 35.60701521904266], [-170.27191812997157, 37.14623592274974], [-172.36608297399812, 37.22237828211649], [-173.45828398075636, 35.73158847414236], [-172.46642085476444, 34.20414768143931], [-170.44845406020744, 34.155186609801476]]]}}, {"type": "Feature", "properties": {"bin": "82825ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.4130898159431506, -2.7225189577904536], [4.103164136767459, -1.2760872010763924], [3.3406661153006687, -0.045100606795108945], [1.9211969045935868, -0.2548735255288649], [1.245698051007282, -1.667852447043259], [1.9748033475014806, -2.9040374505798208], [3.4130898159431506, -2.7225189577904536]]]}}, {"type": "Feature", "properties": {"bin": "82260ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-95.24686215665145, 39.326802934475495], [-93.40741416499297, 40.11435457093053], [-93.45803221729882, 41.74324949577915], [-95.41290317262256, 42.5994085757242], [-97.30468981823128, 41.80724070545743], [-97.18874577054888, 40.16427574631937], [-95.24686215665145, 39.326802934475495]]]}}, {"type": "Feature", "properties": {"bin": "827027fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.92644333634877, 9.206515963523058], [-171.80358649844362, 7.827278709210272], [-171.08010513946476, 6.3052964790858255], [-169.47006886290905, 6.133852289300174], [-168.56085487835682, 7.509361770299197], [-169.2931299839693, 9.060308038526605], [-170.92644333634877, 9.206515963523058]]]}}, {"type": "Feature", "properties": {"bin": "821ae7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-43.25546063985791, 47.02166961988067], [-44.92554354224053, 45.755276550084716], [-44.27214831365338, 44.14617971626026], [-42.016935664855744, 43.771947458702364], [-40.312312904306864, 45.01130128059018], [-40.893517512329325, 46.65143560334475], [-43.25546063985791, 47.02166961988067]]]}}, {"type": "Feature", "properties": {"bin": "8237affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-153.97399421277788, 38.5835978655727], [-155.22394915962505, 37.372663905458474], [-154.42194514408624, 35.99295612895813], [-152.3860948404763, 35.82207574667211], [-151.12386440058128, 37.032961967755135], [-151.90829701332544, 38.41454247371649], [-153.97399421277788, 38.5835978655727]]]}}, {"type": "Feature", "properties": {"bin": "827037fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.38014762578527, 7.972793830841406], [-174.21064920360917, 6.624087908058825], [-173.49842369653564, 5.132724903314782], [-171.94393384320088, 4.959780295860549], [-171.08010513946476, 6.3052964790858255], [-171.80358649844362, 7.827278709210272], [-173.38014762578527, 7.972793830841406]]]}}, {"type": "Feature", "properties": {"bin": "8229affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-119.2405536967384, 34.468622114983724], [-117.66644115562839, 35.65711968357492], [-118.09873920679385, 37.32169681911912], [-120.15030815558956, 37.77836118370324], [-121.7071569184514, 36.57421829680793], [-121.23148237636386, 34.929531606928784], [-119.2405536967384, 34.468622114983724]]]}}, {"type": "Feature", "properties": {"bin": "820887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.21328542634604, 61.10408688097462], [15.277419395430217, 59.85120470154142], [17.286200031965574, 58.92634320829851], [20.23591300367038, 59.225870067678485], [21.289181501450813, 60.46250989980111], [19.280998608847156, 61.41674993469948], [16.21328542634604, 61.10408688097462]]]}}, {"type": "Feature", "properties": {"bin": "8271b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.77693144202632, 9.615942399155195], [179.05464506200272, 8.28568098401618], [179.9213645641613, 7.167156589199026], [-178.663040902774, 7.042864944218463], [-177.91379662111206, 8.357161718023372], [-178.61562603393992, 9.792952304051271], [179.77693144202632, 9.615942399155195]]]}}, {"type": "Feature", "properties": {"bin": "826a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.800771734612553, -0.1522769274806444], [23.49024961634333, 1.416746256049863], [22.464273607656313, 2.7297657317309403], [20.76448426679086, 2.4912777849399794], [20.068876656179736, 0.9446533902388587], [21.07832382300607, -0.38589810886387704], [22.800771734612553, -0.1522769274806444]]]}}, {"type": "Feature", "properties": {"bin": "827c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.446797355352741, 3.7900590972316994], [-13.415529249900905, 4.742836477585103], [-13.708146703917999, 6.270965136275774], [-15.039356863077389, 6.880832664714147], [-16.100635789571058, 5.944638221700142], [-15.800861357538134, 4.381671861802315], [-14.446797355352741, 3.7900590972316994]]]}}, {"type": "Feature", "properties": {"bin": "82586ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.349597441138949, 17.499912999574217], [14.804131284942924, 15.87459897267477], [16.015121420164647, 14.587692564478072], [17.776100963774223, 14.89324660357966], [18.3651793828161, 16.505947603561054], [17.150771877544422, 17.826303096221643], [15.349597441138949, 17.499912999574217]]]}}, {"type": "Feature", "properties": {"bin": "82704ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.34132621226098, 2.192855124256149], [-162.33059189508586, 0.8469844525190751], [-161.62436613747164, -0.709611480674184], [-159.93112334382027, -0.944653390238862], [-158.9216761769939, 0.3858981088638739], [-159.6248057354468, 1.9668709126119408], [-161.34132621226098, 2.192855124256149]]]}}, {"type": "Feature", "properties": {"bin": "825e47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.536046591014745, 13.315163322992678], [-60.29672735515016, 14.395690863437256], [-60.52507371447073, 15.869733829825366], [-61.979153153198865, 16.249348507267694], [-63.19149501530036, 15.181722463310459], [-62.9767889197242, 13.72194673042217], [-61.536046591014745, 13.315163322992678]]]}}, {"type": "Feature", "properties": {"bin": "8208e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.523290332812728, 66.10348492641157], [17.90900979606509, 65.28324062665737], [20.745683267270003, 65.89736287731276], [21.353092284120027, 67.38569079986429], [17.780068377707003, 68.04778142254096], [14.813658725827596, 67.35176867523612], [15.523290332812728, 66.10348492641157]]]}}, {"type": "Feature", "properties": {"bin": "823427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.359662033029288, 39.00771212438836], [-26.24276732275889, 37.97742746906803], [-26.025574828342354, 36.184902234453155], [-24.011395014386597, 35.41886286650527], [-22.162636940443136, 36.41973845196904], [-22.293034642597473, 38.2149620290745], [-24.359662033029288, 39.00771212438836]]]}}, {"type": "Feature", "properties": {"bin": "82134ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-103.08336241294829, 62.96726794469463], [-105.93714340514043, 61.854047094488976], [-105.29720502802812, 60.128877276374276], [-102.11996489173809, 59.4718593323693], [-99.31752605188404, 60.49834326894408], [-99.62804678833429, 62.264960131041576], [-103.08336241294829, 62.96726794469463]]]}}, {"type": "Feature", "properties": {"bin": "822a07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.34222349756935, 41.49068119533889], [-71.57377195480382, 41.19572519045852], [-72.30787665118665, 39.68606179325924], [-70.9074474438301, 38.51625621003561], [-68.7982404774257, 38.79471715986838], [-67.97194197267149, 40.25870119453795], [-69.34222349756935, 41.49068119533889]]]}}, {"type": "Feature", "properties": {"bin": "827cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.559193205964707, -0.8762512952424141], [-12.538994180303641, 0.13278097466366448], [-12.83093803332417, 1.6714334957138457], [-14.150748959420309, 2.236251730754104], [-15.201596281865198, 1.2395596636497164], [-14.902138302963582, -0.33463809699523095], [-13.559193205964707, -0.8762512952424141]]]}}, {"type": "Feature", "properties": {"bin": "826757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.00455889178556, 12.991161329005372], [-72.31799816277822, 12.204723205585072], [-72.13699260858151, 10.670248376412998], [-70.63216968069608, 9.939435868899391], [-69.33170855480171, 10.75002259975232], [-69.52273226445142, 12.266930402602203], [-71.00455889178556, 12.991161329005372]]]}}, {"type": "Feature", "properties": {"bin": "825ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-53.131252461361875, 15.238077091913617], [-51.80871881161255, 16.300308440137652], [-52.07513182920213, 17.801087577878658], [-53.65233609447694, 18.234041767402267], [-54.956574500868754, 17.185965776538776], [-54.70213500599653, 15.691263979641612], [-53.131252461361875, 15.238077091913617]]]}}, {"type": "Feature", "properties": {"bin": "824c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.56700589708844, 22.594147588706793], [-68.33911590200783, 23.167939348431304], [-68.07978139882313, 24.60168477695988], [-69.06589258464088, 25.502218577239304], [-70.3390437000868, 24.945215618732814], [-70.57996333106225, 23.470380968779793], [-69.56700589708844, 22.594147588706793]]]}}, {"type": "Feature", "properties": {"bin": "8270affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.6136264733335, 2.3418038147608544], [-174.4200949121516, 1.072268113417068], [-173.72587330867833, -0.3883541127238595], [-172.2137715575126, -0.6114455260916695], [-171.37544324872502, 0.6498705655764005], [-172.08061543914135, 2.142899112922026], [-173.6136264733335, 2.3418038147608544]]]}}, {"type": "Feature", "properties": {"bin": "820e6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.47668855301806, 53.792596824003354], [-66.45904513881723, 53.627026853428696], [-67.63234627523188, 52.0021714141552], [-65.96338675688393, 50.60702889071427], [-63.20077399553516, 50.77050266836529], [-61.89930219560017, 52.330914784659825], [-63.47668855301806, 53.792596824003354]]]}}, {"type": "Feature", "properties": {"bin": "826ec7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-115.73942267760299, 10.88831392366015], [-114.39081831370694, 11.958012174674897], [-114.70874350107026, 13.657730397443178], [-116.4096007174364, 14.267556942476563], [-117.75324252970825, 13.16717735764749], [-117.40188724060047, 11.488096579012108], [-115.73942267760299, 10.88831392366015]]]}}, {"type": "Feature", "properties": {"bin": "8246f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.26790510748518, 20.96411360620605], [-171.20246278538642, 19.52204792028713], [-170.43948868920074, 18.032685472794192], [-168.73232910050652, 17.965444137511255], [-167.76285072941627, 19.41349272810542], [-168.53469913484892, 20.922822426862048], [-170.26790510748518, 20.96411360620605]]]}}, {"type": "Feature", "properties": {"bin": "82192ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.7356231170279086, 60.17050935552437], [-5.5023349253001514, 59.7918551703578], [-5.832270115239387, 58.353838498476094], [-3.536381138969177, 57.31728796714347], [-0.9315871635106042, 57.68949737459286], [-0.46713246181046286, 59.10359393295083], [-2.7356231170279086, 60.17050935552437]]]}}, {"type": "Feature", "properties": {"bin": "820937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.2206596092963595, 64.98197678166125], [-9.419124599059314, 64.5835440503631], [-10.444977544778329, 63.09505407752544], [-7.720042056693346, 62.172198741500715], [-4.777634484041528, 62.56377272218282], [-4.37854545089313, 63.89675172018521], [-6.2206596092963595, 64.98197678166125]]]}}, {"type": "Feature", "properties": {"bin": "8251a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-123.61612475994315, 12.116447167783216], [-122.38342577554019, 13.212111339268919], [-122.79192474360485, 14.874844610550753], [-124.4586835455684, 15.410544048376812], [-125.67197257697387, 14.285697905685025], [-125.23898938471632, 12.65441306346884], [-123.61612475994315, 12.116447167783216]]]}}, {"type": "Feature", "properties": {"bin": "828097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-31.51910496291438, -1.7522051627212822], [-30.203425049597982, -0.617384322086674], [-30.52453407141993, 1.1127120234847647], [-32.160720842063846, 1.7264006780327115], [-33.49144771371919, 0.6018082787679894], [-33.17139368184062, -1.1464705664334065], [-31.51910496291438, -1.7522051627212822]]]}}, {"type": "Feature", "properties": {"bin": "8202c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-108.05856763491963, 73.20482881456269], [-112.00606480286443, 71.961337573172], [-110.61075034802661, 70.32656819889353], [-105.89570675080105, 69.86396033968721], [-101.94302348754017, 70.9908918015585], [-102.65289885669249, 72.69038666231518], [-108.05856763491963, 73.20482881456269]]]}}, {"type": "Feature", "properties": {"bin": "821ba7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.16389762671933, 56.86222737436078], [-57.34215649850436, 56.94282581684036], [-58.981035994086554, 55.42246431947515], [-57.533661380017314, 53.900134937976425], [-54.604472622747934, 53.84500845164467], [-52.88775721716944, 55.28801569340989], [-54.16389762671933, 56.86222737436078]]]}}, {"type": "Feature", "properties": {"bin": "823aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.37108719714063, 29.74711315043202], [-57.34950616358908, 28.526013317119837], [-56.67782192269995, 27.03784085828873], [-55.04382918213371, 26.725848169141415], [-54.02008370952559, 27.92349112558733], [-54.67394745626158, 29.457126834825857], [-56.37108719714063, 29.74711315043202]]]}}, {"type": "Feature", "properties": {"bin": "825f47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.87820768746323, 6.00000583524779], [-60.62950233262009, 7.098590026764595], [-60.858710526729354, 8.692541104226404], [-62.32270202213191, 9.167509670989483], [-63.54356516464526, 8.076965819884318], [-63.32832778527637, 6.5036393490052475], [-61.87820768746323, 6.00000583524779]]]}}, {"type": "Feature", "properties": {"bin": "820177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.55184502811682, 73.4874564977175], [18.885658380221702, 74.295064225644], [18.056823801067942, 75.77008100847956], [11.809078968821634, 76.36649220549111], [7.365838464252189, 75.38953678987379], [9.200586264352173, 73.99667479266351], [14.55184502811682, 73.4874564977175]]]}}, {"type": "Feature", "properties": {"bin": "820da7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.69960314801912, 72.23799965485979], [-179.90258617233593, 70.78434474762022], [-177.73737155731018, 69.21258919215596], [-172.92604370108882, 69.00495510831308], [-169.5774448300429, 70.31623093904679], [-171.11065695414112, 71.97154653078344], [-176.69960314801912, 72.23799965485979]]]}}, {"type": "Feature", "properties": {"bin": "825d57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-148.19147140188997, 19.135021179340214], [-149.3676428224656, 17.73753035354521], [-148.6746530932401, 16.06601094805799], [-146.82672179952885, 15.790435204044762], [-145.65120899099247, 17.178754478775605], [-146.32196099848449, 18.851575050356097], [-148.19147140188997, 19.135021179340214]]]}}, {"type": "Feature", "properties": {"bin": "824767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.5001830119171, 35.18710215873745], [-164.6339455351309, 33.82853666873131], [-163.90051860832787, 32.31558231593663], [-161.9689899404892, 32.281493855003525], [-160.82752326558472, 33.62355575625019], [-161.64707805135708, 34.9940066971076], [-163.5001830119171, 35.18710215873745]]]}}, {"type": "Feature", "properties": {"bin": "826db7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-103.45893481745269, 12.507671466950608], [-101.98883426368867, 13.529865827842766], [-102.14775967128928, 15.260282288852741], [-103.81933932397637, 15.969878062915633], [-105.30911214316681, 14.922505034036895], [-105.10789352566584, 13.191419434870557], [-103.45893481745269, 12.507671466950608]]]}}, {"type": "Feature", "properties": {"bin": "826617fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-77.92068999386323, 10.426959218886838], [-79.31740073419105, 9.553624396539796], [-79.16503869283281, 7.941423794133484], [-77.60226284456255, 7.212914224419377], [-76.20910081818643, 8.107689004037562], [-76.37486443029259, 9.70905200300884], [-77.92068999386323, 10.426959218886838]]]}}, {"type": "Feature", "properties": {"bin": "8282dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.6564645218774645, 3.2930086626395654], [8.344198848186501, 4.73215438908026], [7.212914562720072, 5.860392168376588], [5.720322083693563, 5.5902368764341395], [5.380973348826338, 4.2211544335698665], [6.16472429995407, 3.047731638915501], [7.6564645218774645, 3.2930086626395654]]]}}, {"type": "Feature", "properties": {"bin": "822b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.94423101939223, 45.19783546523642], [-76.33587020720189, 44.798412769531616], [-76.96625784448885, 43.19540780277763], [-75.3334517237918, 42.029563712253676], [-73.07691180312379, 42.400492689472884], [-72.32338161918123, 43.96436330598874], [-73.94423101939223, 45.19783546523642]]]}}, {"type": "Feature", "properties": {"bin": "826e4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-124.40041038231014, 9.435131370225317], [-123.20856686223374, 10.490963765899702], [-123.61612475994315, 12.116447167783216], [-125.23898938471632, 12.65441306346884], [-126.41106193931888, 11.568376194363235], [-125.98105129149988, 9.974630412009526], [-124.40041038231014, 9.435131370225317]]]}}, {"type": "Feature", "properties": {"bin": "828297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.401552408456116, 2.0129447691512135], [18.099816440714942, 3.5346227999232087], [17.14051423245727, 4.790542387748742], [15.505317072937482, 4.5409605608606505], [14.807652062069575, 3.046341729325485], [15.743841427341074, 1.7743965588127961], [17.401552408456116, 2.0129447691512135]]]}}, {"type": "Feature", "properties": {"bin": "820797fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.182285242096057, 80.41687275163915], [-34.758417980284634, 81.27137179020501], [-42.28609529069508, 80.32622462578856], [-40.29003417014079, 78.71766196801342], [-32.96595964039603, 78.01722535324149], [-26.424987503109225, 78.79660349043647], [-26.182285242096057, 80.41687275163915]]]}}, {"type": "Feature", "properties": {"bin": "822a47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.148533971287, 35.263901159294605], [-67.1099978516946, 35.054476704732046], [-67.87540832483207, 33.704520119757866], [-66.7431054193043, 32.609931079791295], [-64.87878150909914, 32.81271682483968], [-64.05311626177487, 34.11647496500919], [-65.148533971287, 35.263901159294605]]]}}, {"type": "Feature", "properties": {"bin": "823747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.09962395635495, 39.49476572853464], [-142.41461960345498, 38.45421244190386], [-141.7190423880193, 37.02819228718556], [-139.74373361120917, 36.65010236088989], [-138.44546294761935, 37.69007965178502], [-139.10478691459335, 39.10841931158573], [-141.09962395635495, 39.49476572853464]]]}}, {"type": "Feature", "properties": {"bin": "820ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.63138299783373, 63.2197159860098], [-93.0768608654095, 62.38286892983371], [-93.12814149577223, 60.59469842617808], [-90.10587334129785, 59.63925885823426], [-86.86661231338789, 60.400005225956455], [-86.44620486365478, 62.18752970394471], [-89.63138299783373, 63.2197159860098]]]}}, {"type": "Feature", "properties": {"bin": "8202e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-104.5305724578326, 76.01643426121936], [-109.45640772223801, 74.83432166792291], [-108.05856763491963, 73.20482881456269], [-102.65289885669249, 72.69038666231518], [-97.84646277764695, 73.73701917858746], [-98.2518918239992, 75.42296242259827], [-104.5305724578326, 76.01643426121936]]]}}, {"type": "Feature", "properties": {"bin": "825077fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.03238180696044, 23.037730503442052], [-137.2313894512537, 21.794055505550357], [-136.64814720012825, 20.143945369145783], [-134.89965579269537, 19.7532105149965], [-133.72300174399678, 20.990489850481016], [-134.2719765412034, 22.624728935439098], [-136.03238180696044, 23.037730503442052]]]}}, {"type": "Feature", "properties": {"bin": "825017fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-127.02874715969844, 19.232406862672743], [-125.79514460772695, 20.41598020692649], [-126.26112298654218, 22.089282598203653], [-127.98412598964461, 22.544146945569565], [-129.19023081549102, 21.33771636585937], [-128.70209135605933, 19.699208787220712], [-127.02874715969844, 19.232406862672743]]]}}, {"type": "Feature", "properties": {"bin": "825c57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.65685980055636, 11.032728669471924], [-147.80006555587835, 9.628747217956542], [-147.14191112783993, 7.96294127703012], [-145.36217266343752, 7.697113964718875], [-144.2222622789288, 9.08509630899821], [-144.85792469817218, 10.75461417273834], [-146.65685980055636, 11.032728669471924]]]}}, {"type": "Feature", "properties": {"bin": "8267a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.05707852166502, 17.125740647773743], [-81.4360531954939, 16.33510060433268], [-81.29720115237546, 14.868802684797343], [-79.76555528528003, 14.199408606194604], [-78.38688043933625, 15.010055989047933], [-78.53930229370525, 16.46956562230495], [-80.05707852166502, 17.125740647773743]]]}}, {"type": "Feature", "properties": {"bin": "8238e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.368366542520371, 31.549004679734185], [2.005719972259752, 29.86576695279883], [3.414444565234508, 28.728328202600174], [5.2213927424219095, 29.254882451681667], [5.648193230269618, 30.9528601574355], [4.2041739956726545, 32.11010693139568], [2.368366542520371, 31.549004679734185]]]}}, {"type": "Feature", "properties": {"bin": "825c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-154.6555323207048, 13.703903037388972], [-155.7634836482284, 12.26582364388199], [-155.04580048883616, 10.61016422581036], [-153.23202114955424, 10.38005420287446], [-152.11295865343612, 11.807393618927087], [-152.8177485579885, 13.475427259377641], [-154.6555323207048, 13.703903037388972]]]}}, {"type": "Feature", "properties": {"bin": "826faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-112.10551167033114, -0.7233417311270236], [-110.83411001086887, 0.18253457838412598], [-111.0842779787137, 1.6840814660750991], [-112.63709977293884, 2.267021769530763], [-113.91041930526723, 1.3300762483231612], [-113.62956694293806, -0.15815048527172418], [-112.10551167033114, -0.7233417311270236]]]}}, {"type": "Feature", "properties": {"bin": "826c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-98.3510062537667, 5.566875090388115], [-96.95279100761125, 6.514817339042225], [-97.03705754786904, 8.122360527133047], [-98.55743760905895, 8.789782549799035], [-99.98131321467868, 7.817460742770009], [-99.85908512900879, 6.202793501448535], [-98.3510062537667, 5.566875090388115]]]}}, {"type": "Feature", "properties": {"bin": "82004ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.994683754892108, 83.41761096812805], [-17.9081638349315, 84.94207431820979], [-34.844060309330615, 85.9580797553944], [-51.70487751530814, 84.93555635380528], [-47.56553575112999, 83.4126486273365], [-34.77414165316664, 82.79988538231541], [-21.994683754892108, 83.41761096812805]]]}}, {"type": "Feature", "properties": {"bin": "826f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-109.31013027357815, -0.3864613910864249], [-108.01085656214846, 0.5261504290462844], [-108.22846932201116, 2.0375119147551466], [-109.77837324145847, 2.627100977731312], [-111.0842779787137, 1.6840814660750991], [-110.83411001086887, 0.18253457838412598], [-109.31013027357815, -0.3864613910864249]]]}}, {"type": "Feature", "properties": {"bin": "823ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-49.42868675437277, 24.059671124395237], [-50.52899821187004, 22.91996861341175], [-49.96708935673359, 21.378732512322504], [-48.33207003095261, 20.936085166520133], [-47.20078618313929, 22.04222100670142], [-47.733848338608524, 23.624774646325037], [-49.42868675437277, 24.059671124395237]]]}}, {"type": "Feature", "properties": {"bin": "824617fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-171.04140370740063, 22.426394148675325], [-170.0913587184869, 23.86473816474398], [-170.90789986259958, 25.29296844860804], [-172.72716073983483, 25.264092117188127], [-173.6703874763115, 23.782822700979143], [-172.80282081176554, 22.373958345439743], [-171.04140370740063, 22.426394148675325]]]}}, {"type": "Feature", "properties": {"bin": "821367fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.04304411276642, 68.16087226295068], [-108.36974930314206, 66.9843307712633], [-107.45767046363335, 65.28570427193907], [-103.65527053055202, 64.70876615112826], [-100.3716323149108, 65.78726681544285], [-100.82187020582201, 67.53592431503803], [-105.04304411276642, 68.16087226295068]]]}}, {"type": "Feature", "properties": {"bin": "824d57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.84552854754438, 21.72916021622867], [-61.641684306430975, 22.744753313018546], [-62.3108248051806, 24.12176202394313], [-63.736330238434505, 24.369915046380935], [-64.44574379259193, 23.26737219877878], [-64.240684261845, 22.002085574481576], [-62.84552854754438, 21.72916021622867]]]}}, {"type": "Feature", "properties": {"bin": "823597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-38.71542112607588, 39.957429178482506], [-40.34777371760148, 38.734209457703855], [-39.83606767956756, 37.023514084714996], [-37.75906273154746, 36.50733780530183], [-36.11258179895081, 37.69840581728444], [-36.55457124253603, 39.437202689025106], [-38.71542112607588, 39.957429178482506]]]}}, {"type": "Feature", "properties": {"bin": "825cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.49155875603358, 3.7810475727004382], [-151.58496890462717, 2.401486228670031], [-150.91862197114955, 0.796995066489417], [-149.1749589151811, 0.559499450859455], [-148.07818364980056, 1.9195566758189488], [-148.72755525183405, 3.5363603344361167], [-150.49155875603358, 3.7810475727004382]]]}}, {"type": "Feature", "properties": {"bin": "825f6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-64.53895995804127, 5.418558414449947], [-63.32832778527637, 6.5036393490052475], [-63.54356516464526, 8.076965819884318], [-64.9553856164191, 8.542069322310283], [-66.19525614980438, 7.728774608084851], [-65.99074059486387, 6.154061516265284], [-64.53895995804127, 5.418558414449947]]]}}, {"type": "Feature", "properties": {"bin": "820307fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.18316454198501, 87.80824356139675], [-127.71006866569611, 88.47700143144088], [-141.60705376322537, 86.82226590916515], [-125.69943283756717, 85.46743869375132], [-105.24054447178555, 85.23272597621758], [-85.79610107555276, 86.15685374717187], [-78.18316454198501, 87.80824356139675]]]}}, {"type": "Feature", "properties": {"bin": "82066ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.33426120868924, 60.57774059750786], [-30.104421290639067, 61.2998648710959], [-32.78084952502613, 60.31830942442807], [-32.526002401749665, 58.67461211387133], [-29.88233564449411, 58.03211375817635], [-27.36525030601119, 58.95695846666266], [-27.33426120868924, 60.57774059750786]]]}}, {"type": "Feature", "properties": {"bin": "823ae7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.85114796415727, 26.81392401414519], [-50.00240945557361, 25.633575567923092], [-49.42868675437277, 24.059671124395237], [-47.733848338608524, 23.624774646325037], [-46.55058677366683, 24.772309246893247], [-47.0923408040686, 26.38772732737337], [-48.85114796415727, 26.81392401414519]]]}}, {"type": "Feature", "properties": {"bin": "8213a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-135.9847164558454, 64.90922466524857], [-137.0748344427065, 63.44506699546743], [-135.00515623453404, 62.16151138855456], [-131.86554528849422, 62.25878005587692], [-130.49070518672232, 63.68951483416985], [-132.5204889558626, 65.0592552125662], [-135.9847164558454, 64.90922466524857]]]}}, {"type": "Feature", "properties": {"bin": "827417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.968227928530229, 0.4822612846177788], [-6.09606314579416, 1.4034242894727265], [-6.362866832530322, 2.8319782586108553], [-7.510528664919241, 3.3757928754616686], [-8.412776379912252, 2.467580053183618], [-8.13731674878687, 1.0021068368703743], [-6.968227928530229, 0.4822612846177788]]]}}, {"type": "Feature", "properties": {"bin": "820d67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.6411907574836, 70.52303503539508], [-139.3268017239094, 70.05170142646693], [-140.45517326314936, 68.46826523199256], [-137.4440407115714, 67.44108143110289], [-133.3359688578646, 67.8767773808988], [-131.70883908792982, 69.37134141076518], [-134.6411907574836, 70.52303503539508]]]}}, {"type": "Feature", "properties": {"bin": "8212e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-117.03757396536434, 55.86163078514258], [-118.7469733778494, 54.632577919547934], [-117.7288216412325, 53.08733365887163], [-115.13592775547971, 52.70540691423101], [-113.35708552774537, 53.86776941130843], [-114.22928039520941, 55.478388139502115], [-117.03757396536434, 55.86163078514258]]]}}, {"type": "Feature", "properties": {"bin": "823e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.745279877629986, 19.47478423772583], [17.150771877544422, 17.826303096221643], [18.3651793828161, 16.505947603561054], [20.173628717060144, 16.802152480851372], [20.810554260240874, 18.435026826891445], [19.597919649817623, 19.787818768125756], [17.745279877629986, 19.47478423772583]]]}}, {"type": "Feature", "properties": {"bin": "820777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.558792289389446, 67.1535478452051], [-13.121278008102069, 68.22640078990388], [-16.825061753610598, 67.68783542166322], [-17.54611228138685, 66.09556511029363], [-14.942390307951198, 65.10982468378923], [-11.632420456928374, 65.631365577424], [-10.558792289389446, 67.1535478452051]]]}}, {"type": "Feature", "properties": {"bin": "821fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.188509553443464, 49.47027919866874], [0.7640259623867546, 47.90745035042651], [2.4589017174477275, 46.76373050573097], [4.652435425239344, 47.393027403288], [5.163510941569066, 48.9437639550549], [3.384771510058866, 49.85377035058952], [1.188509553443464, 49.47027919866874]]]}}, {"type": "Feature", "properties": {"bin": "82075ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.904369925050815, 65.43480780172833], [-23.892709595930576, 66.33119738690922], [-27.21682213243743, 65.51895292313094], [-27.260802583913804, 63.86129336415286], [-24.371526115079995, 63.05448623848215], [-21.327940366858037, 63.81953151634645], [-20.904369925050815, 65.43480780172833]]]}}, {"type": "Feature", "properties": {"bin": "82371ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.62454935511968, 39.57240855899657], [-151.90829701332544, 38.41454247371649], [-151.12386440058128, 37.032961967755135], [-149.07764969870357, 36.809125279655824], [-147.78921817414013, 37.96593075912612], [-148.55025650660951, 39.34736882236755], [-150.62454935511968, 39.57240855899657]]]}}, {"type": "Feature", "properties": {"bin": "820edffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.79912266299574, 52.23415238022391], [-88.42097150018748, 51.54338080370612], [-88.65412421340821, 49.81242268121324], [-86.46839308952266, 48.78046010093184], [-83.98131184812848, 49.4132499685268], [-83.54839040696179, 51.133199609951006], [-85.79912266299574, 52.23415238022391]]]}}, {"type": "Feature", "properties": {"bin": "821cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.61024286094258, 45.715911502521784], [-143.97702466025555, 44.790383382963654], [-143.23649038493966, 43.517931096163174], [-141.16538827489856, 43.17335364173689], [-139.81328293935735, 44.09616647144853], [-140.5163915095294, 45.365922636015576], [-142.61024286094258, 45.715911502521784]]]}}, {"type": "Feature", "properties": {"bin": "821f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.848228907047912, 53.43156035343158], [6.259687055981991, 51.96477015603749], [8.088630904745564, 51.03969572472888], [10.54962281041145, 51.5639900357469], [11.245170492278879, 53.032039732054415], [9.374530816292092, 53.97551370235173], [6.848228907047912, 53.43156035343158]]]}}, {"type": "Feature", "properties": {"bin": "82098ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.159095939923656, 62.20500536598249], [5.479068693190383, 60.92198553471913], [7.438464343438979, 59.76718020289119], [10.279089080546552, 60.275949400006596], [11.080660058482376, 61.54051460002519], [8.899170411870465, 62.3039347443133], [6.159095939923656, 62.20500536598249]]]}}, {"type": "Feature", "properties": {"bin": "821cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.6912970057912, 47.52211742276066], [-151.28518247034273, 48.53066683377171], [-151.77485945484133, 50.02578390182839], [-153.78137213372952, 50.5331018823282], [-155.240832794692, 49.50504909063853], [-154.64069188625118, 47.989757999235856], [-152.6912970057912, 47.52211742276066]]]}}, {"type": "Feature", "properties": {"bin": "824577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.35930158406566, 18.62870219128589], [-89.8417414487811, 19.53349485374346], [-89.83358949719242, 21.248167866323893], [-91.38564360012197, 22.081674384588453], [-92.94481859961996, 21.16716126402498], [-92.90978151760524, 19.429272785277885], [-91.35930158406566, 18.62870219128589]]]}}, {"type": "Feature", "properties": {"bin": "825c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.11295865343612, 11.807393618927087], [-153.23202114955424, 10.38005420287446], [-152.5335322367957, 8.71898308656318], [-150.73105699667752, 8.47470386919227], [-149.6055352346278, 9.88860029959115], [-150.28795295770135, 11.560016019822443], [-152.11295865343612, 11.807393618927087]]]}}, {"type": "Feature", "properties": {"bin": "828ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.22664500408881, -1.6541202617644606], [-60.968506734902, -0.5781518809279349], [-61.198553234044326, 1.090818369541872], [-62.672471335318626, 1.6578647749454078], [-63.90187465520636, 0.5827354103262892], [-63.68613776629878, -1.060212921844559], [-62.22664500408881, -1.6541202617644606]]]}}, {"type": "Feature", "properties": {"bin": "825d6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.0714326525355, 21.23383190437645], [-143.27263297664362, 19.903397255934664], [-142.62790817921325, 18.23377607331753], [-140.81053669735087, 17.901973543556384], [-139.6214919325493, 19.2239309458196], [-140.23685994180093, 20.88592387506346], [-142.0714326525355, 21.23383190437645]]]}}, {"type": "Feature", "properties": {"bin": "823e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.343416368196838, 30.62734805513404], [17.675332540841065, 28.924476228387608], [19.012036761826856, 27.565395679553497], [21.01449990094078, 27.88358213061027], [21.73337025858129, 29.574118177068907], [20.40081144749384, 30.959290246190747], [18.343416368196838, 30.62734805513404]]]}}, {"type": "Feature", "properties": {"bin": "822967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.35092157588286, 31.004801075710994], [-131.11967892910866, 32.27751823232611], [-131.6847754612276, 33.84034782516211], [-133.49959334890286, 34.09780740351217], [-134.68851943420182, 32.81586630611946], [-134.10648897177788, 31.285608665560563], [-132.35092157588286, 31.004801075710994]]]}}, {"type": "Feature", "properties": {"bin": "822a67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.268230893245516, 36.7843719198827], [-64.2856909345049, 36.62336060741758], [-65.148533971287, 35.263901159294605], [-64.05311626177487, 34.11647496500919], [-62.13907957249567, 34.277080069511314], [-61.22090131464299, 35.58553674094911], [-62.268230893245516, 36.7843719198827]]]}}, {"type": "Feature", "properties": {"bin": "821867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.631094757975507, 50.60191112048409], [-2.9065278792841616, 50.14229216995713], [-3.243656268908248, 48.54730149141871], [-1.3966081625912776, 47.44351195977147], [0.7640259623867546, 47.90745035042651], [1.188509553443464, 49.47027919866874], [-0.631094757975507, 50.60191112048409]]]}}, {"type": "Feature", "properties": {"bin": "8256c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.445393973713756, 5.793088472815407], [-33.11606311268313, 6.874320813243433], [-33.43256055030255, 8.559185447968847], [-35.076035113735706, 9.177780618167237], [-36.4157557370483, 8.111319009533224], [-36.102065542186466, 6.411812861671425], [-34.445393973713756, 5.793088472815407]]]}}, {"type": "Feature", "properties": {"bin": "8203b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-169.31444888144782, 81.3221082407873], [-176.36726611745192, 79.9836986581658], [-173.02716512439306, 78.32052425185985], [-164.85311601061076, 77.87516635116434], [-158.04970733029904, 78.96768198622497], [-158.84821306045922, 80.72172286490242], [-169.31444888144782, 81.3221082407873]]]}}, {"type": "Feature", "properties": {"bin": "8213b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.41211093213903, 62.92006172739451], [-141.17976142970744, 61.45362654839109], [-138.90707391807095, 60.57267703592046], [-136.04881605224364, 60.73673755034944], [-135.00515623453404, 62.16151138855456], [-137.0748344427065, 63.44506699546743], [-140.41211093213903, 62.92006172739451]]]}}, {"type": "Feature", "properties": {"bin": "825797fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.02510333627755, 19.985001304910526], [-46.18247457668084, 18.914756857912426], [-45.89544362512071, 17.410767914952135], [-44.25550515787142, 16.897873601263107], [-42.90586635938975, 17.901934987903726], [-43.35845326768038, 19.47766581370747], [-45.02510333627755, 19.985001304910526]]]}}, {"type": "Feature", "properties": {"bin": "823467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.391110502200526, 33.85538020110467], [-18.225633742765968, 32.94224979572863], [-18.188212875829294, 31.1522330100506], [-16.392618992120248, 30.28738493539216], [-14.608842439241553, 31.177353298158966], [-14.570452111245078, 32.95438593767852], [-16.391110502200526, 33.85538020110467]]]}}, {"type": "Feature", "properties": {"bin": "820687fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.306122547956875, 74.83452393322776], [-54.754381710923894, 75.12848264807123], [-58.216875931789744, 73.73999486146171], [-55.5126065144222, 72.19236641755126], [-50.001573925466026, 71.94619922240439], [-46.35736886861963, 73.20569227555735], [-48.306122547956875, 74.83452393322776]]]}}, {"type": "Feature", "properties": {"bin": "822277fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.2513616288856, 44.74985555511408], [-172.01249472067352, 46.16141697866386], [-173.1700022819709, 47.679848333962674], [-175.65513024830355, 47.77326782654171], [-176.87145410876698, 46.32807476883733], [-175.62947902064033, 44.82345407192179], [-173.2513616288856, 44.74985555511408]]]}}, {"type": "Feature", "properties": {"bin": "8212c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-117.7288216412325, 53.08733365887163], [-119.28460495289977, 51.895657718956635], [-118.32058960903674, 50.385510781870416], [-115.9131566801509, 50.003546458815705], [-114.29334339405317, 51.131925367323966], [-115.13592775547971, 52.70540691423101], [-117.7288216412325, 53.08733365887163]]]}}, {"type": "Feature", "properties": {"bin": "82035ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.92101306361164, 80.77270618199705], [-82.86128355932819, 80.33224174967269], [-84.3489542490998, 78.73560128535237], [-78.02907812352244, 77.66869995430305], [-70.04674224412354, 78.01248669033873], [-66.71029415457326, 79.5022648152541], [-72.92101306361164, 80.77270618199705]]]}}, {"type": "Feature", "properties": {"bin": "820e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.06800010895594, 57.91606432796472], [-98.78877285042432, 56.971708359602495], [-98.56184761891002, 55.218550700351585], [-95.87500090673082, 54.38683634147526], [-93.25254506589539, 55.2543110936561], [-93.2152441200014, 57.02698722544641], [-96.06800010895594, 57.91606432796472]]]}}, {"type": "Feature", "properties": {"bin": "820f5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-64.18579934373318, 59.94899094586523], [-67.73084359215947, 59.77423949635842], [-69.0549959056329, 58.11001927435266], [-67.0401835755479, 56.688714571652135], [-63.80048917841768, 56.857824813184145], [-62.28972825681571, 58.45320476392265], [-64.18579934373318, 59.94899094586523]]]}}, {"type": "Feature", "properties": {"bin": "8234f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-29.030406967463787, 30.469788192503234], [-30.669421404398822, 29.383364953747783], [-30.386417332925895, 27.61772385713097], [-28.531529726606152, 26.924893352430054], [-26.907891064141744, 27.97534924871563], [-27.122707521907227, 29.753699363848405], [-29.030406967463787, 30.469788192503234]]]}}, {"type": "Feature", "properties": {"bin": "821a77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.73288919120908, 50.66238203129507], [-39.66181029144391, 49.47997018187093], [-39.082390787769896, 47.86715402021093], [-36.667471419753, 47.41254623789866], [-34.72420926035957, 48.565062705935084], [-35.2061508945788, 50.20116253083384], [-37.73288919120908, 50.66238203129507]]]}}, {"type": "Feature", "properties": {"bin": "8218affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.774233271028326, 52.12149149190319], [-21.117043703327738, 51.28757960329347], [-20.99201420363153, 49.623581785392574], [-18.65090558974211, 48.798472969414014], [-16.382340625694795, 49.60926939734891], [-16.38110054088066, 51.26683523519603], [-18.774233271028326, 52.12149149190319]]]}}, {"type": "Feature", "properties": {"bin": "823a2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-47.560844221860734, 32.49638205790651], [-48.827864381282076, 31.251634260843225], [-48.230176146625006, 29.6304625413481], [-46.40285280120916, 29.213646415470354], [-45.101964247992925, 30.42765660497883], [-45.66001638447603, 32.08927977102965], [-47.560844221860734, 32.49638205790651]]]}}, {"type": "Feature", "properties": {"bin": "82556ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.7247164865458315, 20.605455654403837], [-4.2657934694023325, 19.872971694101718], [-4.472880089647737, 18.297332900396515], [-3.1827237352933886, 17.484597774332933], [-1.7113099039779127, 17.935404581817405], [-1.4579244921298804, 19.504910377173324], [-2.7247164865458315, 20.605455654403837]]]}}, {"type": "Feature", "properties": {"bin": "8229a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-116.83830158928455, 32.260382821194064], [-115.25400548040932, 33.43153649157359], [-115.64454936135779, 35.138559675017866], [-117.66644115562839, 35.65711968357492], [-119.2405536967384, 34.468622114983724], [-118.8045281400983, 32.779437996638734], [-116.83830158928455, 32.260382821194064]]]}}, {"type": "Feature", "properties": {"bin": "820637fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-22.4076276387758, 72.92129484534789], [-26.8675207176858, 73.85617864759342], [-31.54144413059165, 73.02706015961422], [-31.230055693448595, 71.34692688439432], [-27.0416080884867, 70.52278709288883], [-22.87247419114535, 71.27639212190138], [-22.4076276387758, 72.92129484534789]]]}}, {"type": "Feature", "properties": {"bin": "823677fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.3232078622538, 34.454167617014946], [-143.60189912765898, 33.29968291793388], [-142.91254742094029, 31.77748775234221], [-140.97655281371902, 31.4179221935752], [-139.7112019527131, 32.57121961082409], [-140.36752553639397, 34.085002480597495], [-142.3232078622538, 34.454167617014946]]]}}, {"type": "Feature", "properties": {"bin": "825687fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-41.407803108561225, 9.91680433715931], [-40.04817115200065, 10.988921320513176], [-40.353169969857724, 12.62785427357845], [-42.011355120610396, 13.200528198039944], [-43.37014678824051, 12.143150710647648], [-43.07201824591063, 10.498817446605035], [-41.407803108561225, 9.91680433715931]]]}}, {"type": "Feature", "properties": {"bin": "826c5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-90.84373175132413, 2.0426493760071556], [-92.30215822764066, 1.0694846491681498], [-92.21612396381302, -0.6561288240742987], [-90.65439468706715, -1.4176217935929196], [-89.17950158476611, -0.43357498119179894], [-89.28276473415183, 1.3006030285245231], [-90.84373175132413, 2.0426493760071556]]]}}, {"type": "Feature", "properties": {"bin": "8228e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.86439555673397, 43.16875546788176], [-124.29625240032743, 44.370406328558374], [-124.85998231411203, 45.831701684751735], [-127.03121917390865, 46.07114453291157], [-128.55930051732804, 44.85995361844986], [-127.95866237076233, 43.41920841314796], [-125.86439555673397, 43.16875546788176]]]}}, {"type": "Feature", "properties": {"bin": "82180ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.362891292036801, 51.696862788869424], [-11.731413865282882, 51.05975209495003], [-11.854418733638266, 49.416339454352666], [-9.724736207832674, 48.43009421958324], [-7.460509080062738, 49.05681780552428], [-7.224493860559396, 50.67904691252102], [-9.362891292036801, 51.696862788869424]]]}}, {"type": "Feature", "properties": {"bin": "82368ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.539942635007, 28.808795378304737], [-153.74070408856085, 27.4612020128443], [-152.986319458141, 25.892671650495306], [-151.04796662686522, 25.669243623986258], [-149.83895648131463, 27.015105988367765], [-150.57530349596516, 28.58589356636328], [-152.539942635007, 28.808795378304737]]]}}, {"type": "Feature", "properties": {"bin": "825e0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-57.046769924020715, 11.987619654773415], [-55.75155172567551, 13.079342863977931], [-56.00229441495099, 14.618298408823465], [-57.535306647416995, 15.054266427896964], [-58.80745746092741, 13.975215755765579], [-58.569813494086375, 12.44794219797637], [-57.046769924020715, 11.987619654773415]]]}}, {"type": "Feature", "properties": {"bin": "82286ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-135.95374371109784, 39.978597279074364], [-134.711937725098, 41.260646908811665], [-135.36007876878142, 42.654167907708526], [-137.26405945701532, 42.73988013119889], [-138.45029122366302, 41.457139817335765], [-137.7899013454123, 40.08939484348509], [-135.95374371109784, 39.978597279074364]]]}}, {"type": "Feature", "properties": {"bin": "823787fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-157.26734938410425, 37.48828167822845], [-158.4763607884672, 36.22920214493668], [-157.66269743750613, 34.853246543625296], [-155.65024443492754, 34.732414551623556], [-154.42194514408624, 35.99295612895813], [-155.22394915962505, 37.372663905458474], [-157.26734938410425, 37.48828167822845]]]}}, {"type": "Feature", "properties": {"bin": "823b2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.77267432061403, 40.27246662224973], [-50.13390534968605, 38.967617976396276], [-49.45598517697697, 37.369379611572356], [-47.458914798805374, 37.03690712898594], [-46.053526976946245, 38.31689085591711], [-46.68636175862723, 39.954211636185555], [-48.77267432061403, 40.27246662224973]]]}}, {"type": "Feature", "properties": {"bin": "825ccffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-147.6155744506251, 4.919506265065509], [-148.72755525183405, 3.5363603344361167], [-148.07818364980056, 1.9195566758189488], [-146.33638072286848, 1.6772949381945048], [-145.22589603469555, 3.04058018571452], [-145.85488434174934, 4.665677496328832], [-147.6155744506251, 4.919506265065509]]]}}, {"type": "Feature", "properties": {"bin": "82362ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.01868074012842, 36.25645921182272], [-146.30526615922284, 35.100805036709424], [-145.58220229824505, 33.61987316686077], [-143.60189912765898, 33.29968291793388], [-142.3232078622538, 34.454167617014946], [-143.015777903615, 35.9297289495775], [-145.01868074012842, 36.25645921182272]]]}}, {"type": "Feature", "properties": {"bin": "820c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-174.97898792007197, 58.89084512092414], [-176.90195350788932, 57.58914621340675], [-175.74821876841355, 56.19652224584304], [-172.87528235333073, 56.051524196015556], [-170.91139927061127, 57.26079683981887], [-171.84700893446154, 58.704960589709465], [-174.97898792007197, 58.89084512092414]]]}}, {"type": "Feature", "properties": {"bin": "82095ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.813658725827596, 67.35176867523612], [17.780068377707003, 68.04778142254096], [17.152178878591858, 69.36320659442477], [13.072820073815873, 69.93399315449412], [10.043311931125118, 69.12144885595274], [11.133280035906186, 67.85995297513011], [14.813658725827596, 67.35176867523612]]]}}, {"type": "Feature", "properties": {"bin": "82441ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.61684078253785, 26.242156293697366], [-82.08430112269555, 26.984013476507922], [-81.9664941624314, 28.63180650194559], [-83.42079792192662, 29.571467376092357], [-85.00714284003608, 28.834980045876637], [-85.08434762858587, 27.15353558293776], [-83.61684078253785, 26.242156293697366]]]}}, {"type": "Feature", "properties": {"bin": "820837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.646201116757433, 64.66507030510412], [4.694919398687951, 64.57085801287526], [4.012620898449943, 63.32706132801839], [6.159095939923656, 62.20500536598249], [8.899170411870468, 62.3039347443133], [9.693860813817636, 63.51970712744607], [7.646201116757433, 64.66507030510412]]]}}, {"type": "Feature", "properties": {"bin": "825d67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-144.59575611918856, 23.21297703773573], [-145.80464293154424, 21.875719329468932], [-145.1298930260219, 20.21852662737945], [-143.27263297664362, 19.903397255934664], [-142.0714326525355, 21.23383190437645], [-142.7188705783351, 22.885971422359724], [-144.59575611918856, 23.21297703773573]]]}}, {"type": "Feature", "properties": {"bin": "823f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.244313475659819, 37.523712365785194], [12.629034522814488, 35.83666250378512], [14.102434482055234, 34.577453494704955], [16.203432101296617, 34.98381016816727], [16.884717233845183, 36.66836993169907], [15.40073900356166, 37.94968889463011], [13.244313475659819, 37.523712365785194]]]}}, {"type": "Feature", "properties": {"bin": "820997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.229785449235649, 58.25202580757624], [3.654940544612971, 56.86632091834963], [5.52364654929031, 55.706768465152265], [8.115982248879545, 56.27047063504287], [8.799628381983899, 57.64025558472873], [6.766112799653783, 58.44709614018101], [4.229785449235649, 58.25202580757624]]]}}, {"type": "Feature", "properties": {"bin": "82392ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.162634555966773, 43.62589881783318], [-6.231987967712124, 43.00917586374685], [-6.464181984237864, 41.30855957084678], [-4.708227372662669, 40.25602599301953], [-2.7286180787605163, 40.87178460953809], [-2.4177958307002343, 42.540479965651194], [-4.162634555966773, 43.62589881783318]]]}}, {"type": "Feature", "properties": {"bin": "82451ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.4396497080912, 18.76015078981871], [-83.977889078554, 19.588422715604878], [-83.8912484679536, 21.24419924142965], [-85.30333926122431, 22.1031494208665], [-86.81165399779584, 21.272185778116043], [-86.86052253318431, 19.585107432935093], [-85.4396497080912, 18.76015078981871]]]}}, {"type": "Feature", "properties": {"bin": "825b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-178.72069983449612, 12.343247039532917], [-177.93959972963776, 13.736771822643849], [-178.83216957172675, 14.995319892920696], [179.46166464698828, 14.829162546143026], [178.7003543745467, 13.398384387599426], [179.6239575544149, 12.171203279101913], [-178.72069983449612, 12.343247039532917]]]}}, {"type": "Feature", "properties": {"bin": "8226dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-100.21178382023747, 31.48993750697799], [-98.49387337240059, 32.44435492016832], [-98.62272599746812, 34.18804644137447], [-100.52734476868227, 34.98672226016669], [-102.2798673944424, 34.02111316045905], [-102.09323459159486, 32.26874743091332], [-100.21178382023747, 31.48993750697799]]]}}, {"type": "Feature", "properties": {"bin": "8234c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.907891064141744, 27.97534924871563], [-28.531529726606152, 26.924893352430054], [-28.29640627443555, 25.170737543759543], [-26.502889743075187, 24.45740428036553], [-24.899317214432266, 25.47207046015372], [-25.06844706824082, 27.23492095559514], [-26.907891064141744, 27.97534924871563]]]}}, {"type": "Feature", "properties": {"bin": "823a67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-41.82721927443858, 31.16982581915594], [-43.22180912378595, 29.965733050192064], [-42.71463006766115, 28.28550206434317], [-40.861233379790065, 27.774879186452598], [-39.44699019086086, 28.943606381484344], [-39.90371712605461, 30.658039731336256], [-41.82721927443858, 31.16982581915594]]]}}, {"type": "Feature", "properties": {"bin": "826ce7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-95.41444403196962, 4.1999104493742925], [-96.836140956766, 3.241875310008852], [-96.776847654496, 1.5687178351663325], [-95.27909021022677, 0.8386726139007167], [-93.83527270661173, 1.8061392691515354], [-93.91140202136131, 3.4938029769751084], [-95.41444403196962, 4.1999104493742925]]]}}, {"type": "Feature", "properties": {"bin": "825c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.75247341308133, 8.17843716490857], [-161.77338167921764, 6.766536253596437], [-161.05079070243565, 5.160339562870666], [-159.3104412172958, 4.94416673431073], [-158.26921053967362, 6.344572309076851], [-158.98772817776748, 7.972665932766329], [-160.75247341308133, 8.17843716490857]]]}}, {"type": "Feature", "properties": {"bin": "8222a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-159.45074698666735, 46.16506120375478], [-158.076402699009, 47.320286348387896], [-158.78766213887133, 48.850669587203804], [-160.98421728508953, 49.23603185937585], [-162.39026807914811, 48.0534017807248], [-161.56979335131368, 46.51349897531834], [-159.45074698666735, 46.16506120375478]]]}}, {"type": "Feature", "properties": {"bin": "8248f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.25067839657362, 28.43865978592777], [-103.5927693527946, 29.48454953307691], [-103.79837714158013, 31.258773934619278], [-105.71621949979533, 31.98773212707032], [-107.39493685521195, 30.925256698312285], [-107.13555697275866, 29.151135929106943], [-105.25067839657362, 28.43865978592777]]]}}, {"type": "Feature", "properties": {"bin": "8266cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.9524271437591, 0.6881422936785266], [-75.35590616155932, -0.2839386148111181], [-75.18024572375664, -2.0221015680241083], [-73.58831704620168, -2.770302579167017], [-72.1947354523166, -1.7786268769012823], [-72.38280158617798, -0.05866487759648713], [-73.9524271437591, 0.6881422936785266]]]}}, {"type": "Feature", "properties": {"bin": "821297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.94590244843872, 54.1296962308624], [-133.85114156470928, 52.84669103300533], [-132.45105662182303, 51.56174614019404], [-130.1721466749766, 51.49028793950405], [-129.13265335025088, 52.73849202152737], [-130.49874883503333, 54.094603984318475], [-132.94590244843872, 54.1296962308624]]]}}, {"type": "Feature", "properties": {"bin": "827157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-168.36951937180766, 10.465471191072943], [-169.2931299839693, 9.060308038526605], [-168.56085487835682, 7.509361770299197], [-166.89835070351322, 7.336895738693886], [-165.94455920373522, 8.737647277009582], [-166.6827230615118, 10.315467561491902], [-168.36951937180766, 10.465471191072943]]]}}, {"type": "Feature", "properties": {"bin": "827577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.0480074617937822, 5.588679090661898], [-1.2768497657972255, 4.273265982323713], [-0.186075822013145, 3.2300014573740743], [1.1589044753771074, 3.4728049331861905], [1.4259913686082732, 4.791199116946009], [0.309803963535533, 5.864518365517626], [-1.0480074617937822, 5.588679090661898]]]}}, {"type": "Feature", "properties": {"bin": "82478ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.6703874763115, 23.782822700979143], [-172.72716073983483, 25.264092117188127], [-173.6227959703449, 26.71303973922542], [-175.51262290348498, 26.65893199535441], [-176.44236144712983, 25.135778865609232], [-175.49767963545628, 23.709096037735854], [-173.6703874763115, 23.782822700979143]]]}}, {"type": "Feature", "properties": {"bin": "822a37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.95506755076666, 44.27784933847793], [-72.32338161918123, 43.96436330598874], [-73.07691180312379, 42.400492689472884], [-71.57377195480382, 41.19572519045852], [-69.34222349756935, 41.49068119533889], [-68.48271469709775, 43.00801065722079], [-69.95506755076666, 44.27784933847793]]]}}, {"type": "Feature", "properties": {"bin": "823887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.114662381767312, 28.037213840900282], [-4.799371159116904, 27.320116005158603], [-5.0155884996367694, 25.64651817513538], [-3.599887600906401, 24.72374401122294], [-1.9763966693942796, 25.43409840333443], [-1.7088657489305177, 27.07368875784344], [-3.114662381767312, 28.037213840900282]]]}}, {"type": "Feature", "properties": {"bin": "826d37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-95.89660181351233, 15.794544787146258], [-94.38883574668255, 16.757152764871574], [-94.44385959071273, 18.48656784629608], [-96.05020989622146, 19.26900694125663], [-97.5919371226762, 18.289686316263754], [-97.49310955699559, 16.545220413152016], [-95.89660181351233, 15.794544787146258]]]}}, {"type": "Feature", "properties": {"bin": "8208effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[21.353092284120052, 67.3856907998643], [24.61096300749793, 67.96067555658824], [24.49264698397638, 69.30502245348691], [20.59724429383497, 70.05215151950888], [17.152178878591858, 69.36320659442477], [17.780068377707003, 68.04778142254096], [21.353092284120052, 67.3856907998643]]]}}, {"type": "Feature", "properties": {"bin": "821d4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.72528083397745, 45.2780458195769], [-133.36750994613695, 46.527082047589396], [-134.0450949301209, 47.840124407999866], [-136.0993943213693, 47.88297766265084], [-137.39611355793218, 46.632773857175515], [-136.7018216781215, 45.34099129109544], [-134.72528083397745, 45.2780458195769]]]}}, {"type": "Feature", "properties": {"bin": "823ba7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.2498068725614, 37.00213150866705], [-59.263935686057074, 35.69752745426619], [-58.50930388906969, 34.22804987657655], [-56.755302961474435, 34.01968157852165], [-55.68434963007805, 35.3085484340503], [-56.422106953949374, 36.822037744292885], [-58.2498068725614, 37.00213150866705]]]}}, {"type": "Feature", "properties": {"bin": "821fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.8811335596706447, 51.360376195950124], [3.384771510058866, 49.85377035058952], [5.163510941569066, 48.9437639550549], [7.489805747586691, 49.52621240698069], [8.088630904745564, 51.03969572472888], [6.259687055981991, 51.96477015603749], [3.8811335596706447, 51.360376195950124]]]}}, {"type": "Feature", "properties": {"bin": "82569ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.47127599077839, 7.133535096253727], [-41.10388274870444, 8.236161331378366], [-41.407803108561225, 9.91680433715931], [-43.07201824591063, 10.498817446605035], [-44.4368152561692, 9.409471224455944], [-44.14041291818604, 7.725284543519059], [-42.47127599077839, 7.133535096253727]]]}}, {"type": "Feature", "properties": {"bin": "8206affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.900552139932266, 72.7083096341591], [-46.35736886861963, 73.20569227555735], [-50.001573925466026, 71.94619922240439], [-48.18057092765086, 70.31121173486567], [-43.375396225483314, 69.88664041050214], [-39.79000498564452, 71.03160990450888], [-40.900552139932266, 72.7083096341591]]]}}, {"type": "Feature", "properties": {"bin": "8274affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.13731674878687, 1.0021068368703743], [-9.057746405457742, 0.05139740489565597], [-8.778631764956566, -1.4302139367058884], [-7.2834320000573145, -1.627782179992269], [-6.384788496428219, -0.6563254594597022], [-6.9682279285302124, 0.4822612846177597], [-8.13731674878687, 1.0021068368703743]]]}}, {"type": "Feature", "properties": {"bin": "827eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.86631108740835, 1.8554926185476572], [179.18004912118207, 0.6593876817348807], [179.83979656305476, -0.7197982113704009], [-178.7982364398432, -0.9361637645983776], [-178.0788030954064, 0.25487352552885695], [-178.75430194899272, 1.6678524470432494], [179.86631108740835, 1.8554926185476572]]]}}, {"type": "Feature", "properties": {"bin": "826edffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.70874350107026, 13.657730397443178], [-113.31737655015479, 14.7526194708729], [-113.6290340058613, 16.486147588602186], [-115.36893296764649, 17.106220178644637], [-116.7572158555163, 15.98204017480718], [-116.4096007174364, 14.267556942476563], [-114.70874350107026, 13.657730397443178]]]}}, {"type": "Feature", "properties": {"bin": "823b57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-46.837480042834194, 35.39713837506172], [-48.17049985036571, 34.130691983210376], [-47.560844221860734, 32.49638205790651], [-45.66001638447603, 32.08927977102965], [-44.2923731199734, 33.326136279047425], [-44.857672104308904, 34.999661031979045], [-46.837480042834194, 35.39713837506172]]]}}, {"type": "Feature", "properties": {"bin": "827597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.118591679205212, 4.156901458392333], [-11.136986715149366, 5.079855936610059], [-11.055247895999136, 6.422432286737444], [-12.344346110330108, 7.035853616998724], [-13.708146703917999, 6.270965136275774], [-13.415529249900905, 4.742836477585103], [-12.118591679205212, 4.156901458392333]]]}}, {"type": "Feature", "properties": {"bin": "8254f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.398619029755448, 13.434493335832748], [-17.860226364438105, 12.585841373390625], [-17.8363676518402, 11.063783036396401], [-16.3995817269834, 10.397267061984039], [-14.970363295558462, 11.216545454321968], [-14.945816427724187, 12.73084648058285], [-16.398619029755448, 13.434493335832748]]]}}, {"type": "Feature", "properties": {"bin": "820e4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.63234627523188, 52.0021714141552], [-70.47759696544072, 51.73263802593275], [-71.44637611745529, 50.0827384643726], [-69.71947899952944, 48.757431677563375], [-67.07175051730285, 49.013088508565865], [-65.96338675688393, 50.60702889071427], [-67.63234627523188, 52.0021714141552]]]}}, {"type": "Feature", "properties": {"bin": "8248e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-108.76314516196922, 28.0593910774909], [-107.13555697275866, 29.151135929106943], [-107.39493685521195, 30.925256698312285], [-109.33403493051533, 31.601965505730263], [-110.97326582640996, 30.491571090923777], [-110.66261804031069, 28.72380952741313], [-108.76314516196922, 28.0593910774909]]]}}, {"type": "Feature", "properties": {"bin": "826cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.776847654496, 1.5687178351663325], [-98.19879414728011, 0.6100686809196556], [-98.14692612852757, -1.0848539086284037], [-96.65627096710139, -1.8389802567438058], [-95.21028067051674, -0.8737500859223845], [-95.27909021022677, 0.8386726139007167], [-96.776847654496, 1.5687178351663325]]]}}, {"type": "Feature", "properties": {"bin": "826e57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-119.60835281405174, 7.7478127606938525], [-118.34853420742208, 8.781042023506567], [-118.70272085347221, 10.41842248642542], [-120.34537010007212, 10.997254705078609], [-121.59354902638586, 9.932303981475837], [-121.21164941751073, 8.320533298992164], [-119.60835281405174, 7.7478127606938525]]]}}, {"type": "Feature", "properties": {"bin": "820227fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-90.38109747487815, 82.85349004122665], [-102.68417511955269, 83.57676487745285], [-112.71412782504105, 82.37631841142961], [-109.60061358280943, 80.79477388736268], [-100.21373256586396, 80.31934275103158], [-91.36675955715715, 81.22981199996262], [-90.38109747487815, 82.85349004122665]]]}}, {"type": "Feature", "properties": {"bin": "82592ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.333174076650933, 23.712268083774752], [1.9975756661715074, 22.067175689495624], [3.304049268856912, 20.900755829120246], [4.976885601305341, 21.35446718195976], [5.367573705123171, 23.01114705036288], [4.030548380417124, 24.203144761743964], [2.333174076650933, 23.712268083774752]]]}}, {"type": "Feature", "properties": {"bin": "822267fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.79450859724977, 43.343120168059755], [-175.62947902064033, 44.82345407192179], [-176.87145410876698, 46.32807476883733], [-179.3535432314775, 46.33359428000857], [179.51721968152015, 44.820308274700515], [-179.170112546831, 43.33462463706695], [-176.79450859724977, 43.343120168059755]]]}}, {"type": "Feature", "properties": {"bin": "828acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.90187465520636, 0.5827354103262892], [-62.672471335318626, 1.6578647749454078], [-62.89279437303725, 3.2918827958874095], [-64.32827172999673, 3.8245323459248906], [-65.57669249211234, 2.939512802057486], [-65.3671297411811, 1.3040893213367288], [-63.90187465520636, 0.5827354103262892]]]}}, {"type": "Feature", "properties": {"bin": "820f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.22723125244676, 66.13579964980414], [-69.59181907197525, 65.93960213052233], [-71.09615425545397, 64.26709141026762], [-68.56493483321289, 62.864503576884395], [-64.65193771357671, 63.04787855230004], [-62.85337076670207, 64.645202662454], [-65.22723125244676, 66.13579964980414]]]}}, {"type": "Feature", "properties": {"bin": "8218effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.892165114977681, 46.75969876815572], [-12.082095965734656, 46.05586565890569], [-12.187655377121208, 44.34367553397141], [-10.20321881864728, 43.35694709497956], [-8.101589192291552, 44.0506310521871], [-7.898251979650981, 45.74021980445384], [-9.892165114977681, 46.75969876815572]]]}}, {"type": "Feature", "properties": {"bin": "8266affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.16503869283281, 7.941423794133484], [-80.58177094920417, 7.0304087512615965], [-80.43431246023684, 5.370970821417855], [-78.855727170351, 4.6317247469003044], [-77.44069883550375, 5.563142367519962], [-77.60226284456255, 7.212914224419377], [-79.16503869283281, 7.941423794133484]]]}}, {"type": "Feature", "properties": {"bin": "8206cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-46.80769229712744, 64.04587914821998], [-50.666394025640784, 64.35430188438744], [-53.01093487395563, 62.95067649282497], [-51.550082921060856, 61.33081918088026], [-48.04232110294612, 61.070843759573435], [-45.66654684595361, 62.38541593193917], [-46.80769229712744, 64.04587914821998]]]}}, {"type": "Feature", "properties": {"bin": "82024ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.58894477052608, 73.22979877705764], [-82.3342737067018, 72.71199367901703], [-83.30148147989962, 71.00099430495668], [-79.30823910622338, 69.8572858007267], [-74.26009092678501, 70.30847867513849], [-72.5658689157688, 71.96233722771835], [-76.58894477052608, 73.22979877705764]]]}}, {"type": "Feature", "properties": {"bin": "820267fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-70.04674224412354, 78.01248669033873], [-78.02907812352244, 77.66869995430305], [-79.77218211117395, 76.05043363626355], [-74.82866567165834, 74.86723933037977], [-68.19476022887606, 75.14997942194846], [-65.32649015145265, 76.66757659192989], [-70.04674224412354, 78.01248669033873]]]}}, {"type": "Feature", "properties": {"bin": "824caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-70.57996333106225, 23.470380968779793], [-71.86110522955428, 22.867285886731818], [-72.08359451476713, 21.37377234661743], [-70.6353861773763, 20.70584682084749], [-69.38326850163935, 21.326183525747375], [-69.56700589708842, 22.59414758870677], [-70.57996333106225, 23.470380968779793]]]}}, {"type": "Feature", "properties": {"bin": "822b27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.09064574907324, 49.40861844704868], [-61.74588242176639, 49.33869863875727], [-62.962864671243295, 47.80722118889661], [-61.612903841747055, 46.41246744259869], [-59.13452023859925, 46.492537039294376], [-57.8378716554838, 47.957631356793456], [-59.09064574907324, 49.40861844704868]]]}}, {"type": "Feature", "properties": {"bin": "8208affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.102101615280446, 61.96354053750143], [16.21328542634604, 61.10408688097462], [19.280998608847177, 61.41674993469948], [19.718783419633482, 62.910503878993765], [17.53544630840838, 63.80079265321215], [15.046206854523549, 63.166721052064105], [14.102101615280446, 61.96354053750143]]]}}, {"type": "Feature", "properties": {"bin": "825167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.84191735986664, 14.220424496644261], [-139.00189548968478, 12.886082094512698], [-138.42043748614526, 11.22287623237951], [-136.70921415114404, 10.903594944630614], [-135.56734542131707, 12.22352609746689], [-136.11804768463242, 13.87687108109807], [-137.84191735986664, 14.220424496644261]]]}}, {"type": "Feature", "properties": {"bin": "820257fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-92.25200352447476, 76.34572913617531], [-98.2518918239992, 75.42296242259827], [-97.84646277764695, 73.73701917858746], [-92.57166708711345, 72.95649432032424], [-87.11739997649872, 73.75309197501792], [-86.38868358716662, 75.44254150060515], [-92.25200352447476, 76.34572913617531]]]}}, {"type": "Feature", "properties": {"bin": "825187fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-122.79192474360485, 14.874844610550753], [-121.51623911942234, 16.005028532784802], [-121.92505233769654, 17.69862461664218], [-123.63741219591729, 18.23148595834103], [-124.89421209403801, 17.073472553348775], [-124.4586835455684, 15.410544048376812], [-122.79192474360485, 14.874844610550753]]]}}, {"type": "Feature", "properties": {"bin": "824c37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-66.79574711847854, 26.872316674232145], [-68.44793356167183, 26.654916213749747], [-69.06589258464086, 25.502218577239315], [-68.07978139882313, 24.601684776959875], [-66.496637070969, 24.809924112926538], [-65.83264344775047, 25.92753455715398], [-66.79574711847854, 26.872316674232145]]]}}, {"type": "Feature", "properties": {"bin": "8219b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.57076597472634, 61.43040476232069], [-27.33426120868924, 60.57774059750786], [-27.365250306011177, 58.95695846666264], [-24.48971136806876, 58.33329382317988], [-21.860891633724744, 59.14600882924072], [-22.038814684270694, 60.61568456080993], [-24.57076597472634, 61.43040476232069]]]}}, {"type": "Feature", "properties": {"bin": "822757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.17844711082972, 47.38363185794514], [-93.39584904234346, 46.630019541751885], [-93.41811772809459, 44.97252619713555], [-91.3842389088904, 44.062790040561886], [-89.2498380316499, 44.754421111754795], [-89.06656493399484, 46.41537750220255], [-91.17844711082972, 47.38363185794514]]]}}, {"type": "Feature", "properties": {"bin": "825757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.824900138109847, 19.68621910642014], [-32.25590191706387, 18.67265261738001], [-31.977092175090647, 17.03646681217573], [-30.318949345946834, 16.39725894705571], [-28.89607467138024, 17.37155025542475], [-29.122334204782824, 19.02352684528573], [-30.824900138109847, 19.68621910642014]]]}}, {"type": "Feature", "properties": {"bin": "826d0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-92.74826367817671, 10.965445078249571], [-91.31073372398161, 11.894446978855102], [-91.32239510608667, 13.549694178528066], [-92.81028318670805, 14.294686201436091], [-94.28318311716961, 13.348848959489132], [-94.23243902021368, 11.675376138559274], [-92.74826367817671, 10.965445078249571]]]}}, {"type": "Feature", "properties": {"bin": "82266ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.97932795863905, 39.59650945572191], [-87.95138172303122, 39.01478831061852], [-87.99076359407903, 37.38207405857687], [-86.30321265174138, 36.43452708675165], [-84.58516703208812, 37.099588896819945], [-84.27805490252695, 38.60875013059671], [-85.97932795863905, 39.59650945572191]]]}}, {"type": "Feature", "properties": {"bin": "82514ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-139.6214919325493, 19.2239309458196], [-140.81053669735087, 17.901973543556384], [-140.19678411591633, 16.229006921193395], [-138.4241947318954, 15.887813843758263], [-137.25123983479142, 17.19966231642097], [-137.83411698379274, 18.862572984763172], [-139.6214919325493, 19.2239309458196]]]}}, {"type": "Feature", "properties": {"bin": "821337fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-131.70883908792965, 69.37134141076518], [-133.33596885786443, 67.8767773808988], [-131.02866675742908, 66.52454287691424], [-127.19315775452921, 66.5723146305472], [-125.19965794975239, 68.01284767634955], [-127.36790212925293, 69.46231595526767], [-131.70883908792965, 69.37134141076518]]]}}, {"type": "Feature", "properties": {"bin": "822307fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.25031517696226, 36.720007031080605], [-163.07049987720274, 38.057208066376795], [-163.8377594744209, 39.60272889557782], [-165.86742893685548, 39.81145430442936], [-167.05840964934097, 38.43797108902174], [-166.21042036903486, 36.89269962490027], [-164.25031517696226, 36.720007031080605]]]}}, {"type": "Feature", "properties": {"bin": "82285ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.06227559423212, 43.79453728701303], [-130.64994419391363, 45.0396522953233], [-131.2901594178203, 46.41694831075058], [-133.36750994613695, 46.527082047589396], [-134.72528083397745, 45.2780458195769], [-134.0625597172373, 43.92295856646324], [-132.06227559423212, 43.79453728701303]]]}}, {"type": "Feature", "properties": {"bin": "825897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.5689349498665859, 7.231941088759668], [0.309803963535533, 5.864518365517626], [1.4259913686082732, 4.791199116946009], [2.8260034960813383, 5.055077924023954], [3.125247405149373, 6.425019813099671], [1.9843964992241638, 7.529293806652365], [0.5689349498665859, 7.231941088759668]]]}}, {"type": "Feature", "properties": {"bin": "8256f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-36.4157557370483, 8.111319009533224], [-35.076035113735706, 9.177780618167237], [-35.389717682300585, 10.838676181951907], [-37.03959214744205, 11.445409112450497], [-38.386565736843274, 10.394304748957746], [-38.076863107223815, 8.721485686591782], [-36.4157557370483, 8.111319009533224]]]}}, {"type": "Feature", "properties": {"bin": "821ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.343212804239652, 45.92192778359743], [9.73194113849839, 44.323804866147476], [11.36919284285479, 43.20897662532489], [13.642238671206671, 43.674337444107124], [14.33720628244463, 45.27343222583469], [12.677317810359863, 46.40695745798227], [10.343212804239652, 45.92192778359743]]]}}, {"type": "Feature", "properties": {"bin": "824497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-75.25188715193887, 25.56875428660015], [-73.86827872769489, 26.19044873092739], [-73.6535793635368, 27.72357951541412], [-74.8495426094048, 28.674543983671523], [-76.2856094425719, 28.067256681471644], [-76.47218493325147, 26.49429123770877], [-75.25188715193887, 25.56875428660015]]]}}, {"type": "Feature", "properties": {"bin": "82275ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.2498380316499, 44.754421111754795], [-91.3842389088904, 44.062790040561886], [-91.47626179179873, 42.444959538714684], [-89.5783976626672, 41.51855472869033], [-87.52625462013384, 42.15291741074853], [-87.29055066840296, 43.768738470563186], [-89.2498380316499, 44.754421111754795]]]}}, {"type": "Feature", "properties": {"bin": "82576ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.429206017456544, 20.296046007847416], [-25.95035173778074, 19.323636368315324], [-25.77928060933632, 17.66142032044262], [-24.143581846083386, 16.966276615610273], [-22.64474356474964, 17.902725167363144], [-22.75892806868095, 19.56933521898721], [-24.429206017456544, 20.296046007847416]]]}}, {"type": "Feature", "properties": {"bin": "8222effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.08099561302038, 50.547739264021246], [-171.7203947705663, 51.872616997384995], [-172.98321073965715, 53.34160518458369], [-175.7140983285267, 53.47087769640529], [-177.04785603399293, 52.11351997662063], [-175.6832154603929, 50.659778364781566], [-173.08099561302038, 50.547739264021246]]]}}, {"type": "Feature", "properties": {"bin": "82549ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-22.325551171498308, 13.08121926616189], [-23.751238955609885, 12.196213084240526], [-23.62913110308365, 10.672390551299387], [-22.130304471620335, 10.031218078595842], [-20.72746038389688, 10.882142231152775], [-20.800455883755063, 12.407406629546033], [-22.325551171498308, 13.08121926616189]]]}}, {"type": "Feature", "properties": {"bin": "82584ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.015121420164647, 14.587692564478072], [15.472615878253416, 13.00285055504457], [16.649194223749127, 11.737554880527712], [18.37131288344698, 12.0234431609871], [18.954654656317093, 13.593711088140337], [17.776100963774223, 14.89324660357966], [16.015121420164647, 14.587692564478072]]]}}, {"type": "Feature", "properties": {"bin": "8250affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-126.26112298654218, 22.089282598203653], [-124.98123746841438, 23.297500368049423], [-125.45056711552216, 24.981552522367785], [-127.22559969441997, 25.42410473875133], [-128.4779115319772, 24.19492082737583], [-127.98412598964461, 22.544146945569565], [-126.26112298654218, 22.089282598203653]]]}}, {"type": "Feature", "properties": {"bin": "824827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-109.23561491598234, 19.814669490563922], [-107.7159112273016, 20.911859360362552], [-107.96670069950615, 22.69762313040058], [-109.78251683114335, 23.37812819569902], [-111.31137588267069, 22.25679763639427], [-111.01600127930239, 20.479742425174795], [-109.23561491598234, 19.814669490563922]]]}}, {"type": "Feature", "properties": {"bin": "820e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-93.12814149577223, 60.59469842617808], [-96.18015518673963, 59.6924457669829], [-96.06800010895594, 57.91606432796472], [-93.2152441200014, 57.02698722544641], [-90.30646761607126, 57.85198658333546], [-90.10587334129785, 59.63925885823426], [-93.12814149577223, 60.59469842617808]]]}}, {"type": "Feature", "properties": {"bin": "8235a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-33.41212071999933, 43.50068667193952], [-35.24842224452144, 42.34518095694312], [-34.81711570768894, 40.61578334691715], [-32.63448706217523, 40.022078440453285], [-30.802691704224248, 41.14595056644986], [-31.146604373261287, 42.89421219412601], [-33.41212071999933, 43.50068667193952]]]}}, {"type": "Feature", "properties": {"bin": "82046ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.02716512439306, 78.32052425185985], [-178.08982214710505, 76.91732752261049], [-175.237364648308, 75.2818109587326], [-168.585652888576, 74.93980975620119], [-163.45686807900947, 76.14556732608257], [-164.85311601061076, 77.87516635116434], [-173.02716512439306, 78.32052425185985]]]}}, {"type": "Feature", "properties": {"bin": "826e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.76057861773795, 9.427750315560811], [-106.34627823377913, 10.453932971673769], [-106.5596852317401, 12.150574686647923], [-108.22671671139624, 12.814237797151446], [-109.65172914223253, 11.759051911471927], [-109.39949602935216, 10.069884312829208], [-107.76057861773795, 9.427750315560811]]]}}, {"type": "Feature", "properties": {"bin": "8254dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.40003966386146, 8.93040321672402], [-17.7909573321859, 8.124363819119298], [-17.487884167109744, 6.558659438572163], [-16.100635789571058, 5.944638221700142], [-15.03935686307738, 6.880832664714157], [-15.017096277235694, 8.290871572025175], [-16.40003966386146, 8.93040321672402]]]}}, {"type": "Feature", "properties": {"bin": "82786ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-126.07118801670022, 0.17217745834264914], [-127.08421875983606, -1.0549590305746814], [-126.67625426222023, -2.471963263897445], [-125.28447576535258, -2.6514390692752086], [-124.2984927797677, -1.447642860200202], [-124.67724967374028, -0.04145135101502815], [-126.07118801670022, 0.17217745834264914]]]}}, {"type": "Feature", "properties": {"bin": "8250dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.02717868800985, 29.090245038000415], [-128.7583411504169, 30.350310891260573], [-129.29351106151302, 31.96033840030001], [-131.11967892910866, 32.27751823232611], [-132.35092157588286, 31.004801075710994], [-131.79514107744168, 29.427513657214032], [-130.02717868800985, 29.090245038000415]]]}}, {"type": "Feature", "properties": {"bin": "8288cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.59967491814012, 3.3357348575173495], [-159.6248057354468, 1.9668709126119408], [-158.9216761769939, 0.3858981088638739], [-157.19922826538743, 0.1522769274806428], [-156.1576568015457, 1.5050626141201597], [-156.85407414494503, 3.107520783199951], [-158.59967491814012, 3.3357348575173495]]]}}, {"type": "Feature", "properties": {"bin": "820eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.86661231338789, 60.400005225956455], [-90.10587334129785, 59.63925885823426], [-90.30646761607126, 57.85198658333546], [-87.58155385473422, 56.83038063786385], [-84.54003278821038, 57.52364604763144], [-84.03064131015812, 59.30197107644877], [-86.86661231338789, 60.400005225956455]]]}}, {"type": "Feature", "properties": {"bin": "820f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.43798273927328, 65.7492030114996], [-89.34800004677803, 65.00573810542858], [-89.63138299783373, 63.2197159860098], [-86.44620486365478, 62.18752970394471], [-82.82964532461183, 62.858571659674325], [-82.11527411969873, 64.62882942983263], [-85.43798273927328, 65.7492030114996]]]}}, {"type": "Feature", "properties": {"bin": "822b5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.412136923314385, 39.39694854351249], [-64.54478409927509, 39.23568266055749], [-65.4481422021679, 37.82209134722366], [-64.2856909345049, 36.62336060741758], [-62.268230893245516, 36.7843719198827], [-61.30257545390175, 38.1443746354845], [-62.412136923314385, 39.39694854351249]]]}}, {"type": "Feature", "properties": {"bin": "821f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.4589017174477275, 46.76373050573097], [2.0265689653846333, 45.184248689706415], [3.6967018032650176, 44.22123495578018], [5.8484769011283495, 44.82546981220477], [6.371338560692325, 46.417016655689096], [4.652435425239344, 47.393027403288], [2.4589017174477275, 46.76373050573097]]]}}, {"type": "Feature", "properties": {"bin": "82516ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.19678411591633, 16.229006921193395], [-141.37151007296615, 14.881959131410003], [-140.75956860825522, 13.20669391152865], [-139.00189548968478, 12.886082094512698], [-137.84191735986664, 14.220424496644261], [-138.4241947318954, 15.887813843758263], [-140.19678411591633, 16.229006921193395]]]}}, {"type": "Feature", "properties": {"bin": "8258cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.313097972320257, 8.132105663553832], [11.857917574873651, 6.673406154658983], [12.988442347830356, 5.50570735563944], [14.583250071411682, 5.7628604914369355], [15.07769373223365, 7.210277977223253], [13.938770763768797, 8.412496363249264], [12.313097972320257, 8.132105663553832]]]}}, {"type": "Feature", "properties": {"bin": "827c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-15.201596281865198, 1.2395596636497164], [-14.150748959420309, 2.236251730754104], [-14.446797355352741, 3.7900590972316994], [-15.800861357538134, 4.381671861802315], [-16.881744945249157, 3.399395037441728], [-16.578712803626818, 1.8107840761768073], [-15.201596281865198, 1.2395596636497164]]]}}, {"type": "Feature", "properties": {"bin": "82181ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.00895215724318, 52.001373403173005], [-16.38110054088066, 51.26683523519603], [-16.382340625694795, 49.60926939734891], [-14.134966126881988, 48.69906061825517], [-11.854418733638266, 49.416339454352666], [-11.731413865282882, 51.05975209495003], [-14.00895215724318, 52.001373403173005]]]}}, {"type": "Feature", "properties": {"bin": "8202d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-117.21991524403697, 72.2323624142716], [-120.27955037212989, 70.85340170404048], [-118.40104005742097, 69.3065014535011], [-113.88121184131037, 69.04816919557692], [-110.61075034802661, 70.32656819889353], [-112.00606480286443, 71.961337573172], [-117.21991524403697, 72.2323624142716]]]}}, {"type": "Feature", "properties": {"bin": "823807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.027587338475257, 34.757090726489174], [-2.3153354483215614, 33.072845980897284], [-0.8449020421237199, 32.04554500883067], [0.9223182397122923, 32.64740444391725], [1.2724179411878551, 34.323246605430036], [-0.21185444833693792, 35.37567101563382], [-2.027587338475257, 34.757090726489174]]]}}, {"type": "Feature", "properties": {"bin": "8248d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-103.79837714158013, 31.258773934619278], [-102.09323459159486, 32.26874743091332], [-102.2798673944424, 34.02111316045905], [-104.2290936992043, 34.76683203159689], [-105.95985630825147, 33.74267040100571], [-105.71621949979533, 31.98773212707032], [-103.79837714158013, 31.258773934619278]]]}}, {"type": "Feature", "properties": {"bin": "82791ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.73801449434742, 6.304836382283893], [-137.85663310161618, 4.9705698531016935], [-137.3063271216714, 3.3728285055965976], [-135.66632317092515, 3.1148956594505575], [-134.56612250790545, 4.428418751970292], [-135.08706380110942, 6.020226890037461], [-136.73801449434742, 6.304836382283893]]]}}, {"type": "Feature", "properties": {"bin": "822a6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.13907957249567, 34.277080069511314], [-64.05311626177487, 34.11647496500919], [-64.87878150909914, 32.81271682483968], [-63.84319360780384, 31.717895790643848], [-62.02252554784452, 31.87788595636583], [-61.14739200236742, 33.133336870446826], [-62.13907957249567, 34.277080069511314]]]}}, {"type": "Feature", "properties": {"bin": "82239ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-156.77251837995848, 44.253502314817986], [-155.43595024327058, 45.38285137235883], [-156.03631344405528, 46.90887469576172], [-158.076402699009, 47.320286348387896], [-159.45074698666735, 46.16506120375478], [-158.74823904648488, 44.62492403362867], [-156.77251837995848, 44.253502314817986]]]}}, {"type": "Feature", "properties": {"bin": "8226d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-102.2798673944424, 34.02111316045905], [-100.52734476868227, 34.98672226016669], [-100.69279980327295, 36.709266934476744], [-102.67135684070738, 37.47197316662982], [-104.4548159269732, 36.49436854843134], [-104.2290936992043, 34.76683203159689], [-102.2798673944424, 34.02111316045905]]]}}, {"type": "Feature", "properties": {"bin": "82452ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.85739134480713, 16.139329820228298], [-88.38131358911883, 17.034156342908037], [-88.35361313416331, 18.718698814924483], [-89.8417414487811, 19.53349485374346], [-91.35930158406566, 18.62870219128589], [-91.34666601247939, 16.91944224617698], [-89.85739134480713, 16.139329820228298]]]}}, {"type": "Feature", "properties": {"bin": "820357fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-77.10300574070003, 83.45180768453403], [-90.38109747487815, 82.85349004122665], [-91.36675955715693, 81.22981199996262], [-82.86128355932819, 80.33224174967269], [-72.92101306361164, 80.77270618199705], [-68.9997521866621, 82.23856583884294], [-77.10300574070003, 83.45180768453403]]]}}, {"type": "Feature", "properties": {"bin": "823717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-153.51265857621462, 41.06796593244783], [-154.78487065089823, 39.9092677035244], [-153.97399421277788, 38.5835978655727], [-151.90829701332544, 38.41454247371649], [-150.62454935511968, 39.57240855899657], [-151.41651234471018, 40.899929573834896], [-153.51265857621462, 41.06796593244783]]]}}, {"type": "Feature", "properties": {"bin": "821397fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-138.90707391807095, 60.57267703592046], [-139.68359348160976, 59.16948256665964], [-137.83176938444817, 57.94990680219881], [-135.1937938926105, 58.059379038985895], [-134.1977741283888, 59.440430821226634], [-136.04881605224364, 60.73673755034944], [-138.90707391807095, 60.57267703592046]]]}}, {"type": "Feature", "properties": {"bin": "825467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.162619450275885, 15.990769092176489], [-7.649183817068924, 15.22126557573289], [-7.794022418669754, 13.699301124664801], [-6.495883896199433, 12.969730336077305], [-5.054413711032675, 13.721330560531266], [-4.866872026589571, 15.219885219398503], [-6.162619450275885, 15.990769092176489]]]}}, {"type": "Feature", "properties": {"bin": "820c4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-144.73251530920086, 59.38346599222256], [-147.49860030923193, 58.69272286234608], [-147.8150486486202, 57.26768168436388], [-145.6125157209927, 56.56697923674092], [-143.03812086454852, 57.20700013517196], [-142.4816458563309, 58.59546157488214], [-144.73251530920086, 59.38346599222256]]]}}, {"type": "Feature", "properties": {"bin": "821927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.777634484041528, 62.56377272218282], [-7.720042056693346, 62.172198741500715], [-7.999682127502824, 60.776647276888475], [-5.5023349253001514, 59.7918551703578], [-2.7356231170279086, 60.17050935552437], [-2.2975260876218306, 61.54550957788075], [-4.777634484041528, 62.56377272218282]]]}}, {"type": "Feature", "properties": {"bin": "8288c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-156.1576568015457, 1.5050626141201597], [-157.19922826538743, 0.1522769274806428], [-156.50975038365667, -1.4167462560498647], [-154.7875457780603, -1.6525082699307334], [-153.73347701366686, -0.3180025571650375], [-154.41321483314, 1.2704435740827698], [-156.1576568015457, 1.5050626141201597]]]}}, {"type": "Feature", "properties": {"bin": "823f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.81112340000082, 38.68528246787517], [19.059614047576503, 37.02901921647205], [20.49110741061133, 35.69002151151905], [22.666678189877594, 35.986217916354086], [23.474780873002853, 37.6303425743379], [22.053163375299732, 38.99088586392547], [19.81112340000082, 38.68528246787517]]]}}, {"type": "Feature", "properties": {"bin": "82546ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.054413711032675, 13.721330560531266], [-6.495883896199433, 12.969730336077305], [-6.654608692813015, 11.503405132347194], [-5.41203547095337, 10.811137991239525], [-4.01399844347048, 11.545295975414751], [-3.8159567641289107, 12.988678177851225], [-5.054413711032675, 13.721330560531266]]]}}, {"type": "Feature", "properties": {"bin": "8236f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.34707529879068, 29.891830084602514], [-150.57530349596516, 28.58589356636328], [-149.83895648131463, 27.015105988367765], [-147.8961122892084, 26.751237291168678], [-146.66625467254082, 28.05490148729234], [-147.37967328777356, 29.62445406401754], [-149.34707529879068, 29.891830084602514]]]}}, {"type": "Feature", "properties": {"bin": "8245a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-81.4360531954939, 16.335100604332695], [-80.05707852166502, 17.125740647773775], [-79.92504916847793, 18.71507943193177], [-81.20285939736071, 19.548336732136832], [-82.62761199109651, 18.757362893640195], [-82.72794198413503, 17.13343724860129], [-81.4360531954939, 16.335100604332695]]]}}, {"type": "Feature", "properties": {"bin": "825427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.67514915567997, 20.80838745157097], [-13.2640825169036, 19.96445296689503], [-13.32044956422305, 18.32002082210057], [-11.842109343172925, 17.537180528555226], [-10.297990218925223, 18.358193362939268], [-10.188114712806701, 19.98422878146785], [-11.67514915567997, 20.80838745157097]]]}}, {"type": "Feature", "properties": {"bin": "825807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.125946880545182, 15.32195477253705], [4.765825070146594, 13.763786258241295], [5.980953372995424, 12.584545802489613], [7.578742434535621, 12.932375898547791], [7.98617018247175, 14.492671448162053], [6.748859480852724, 15.703742282491802], [5.125946880545182, 15.32195477253705]]]}}, {"type": "Feature", "properties": {"bin": "826fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.80031250106053, -2.564066772676413], [-106.48935044767602, -1.6670215766999856], [-106.49438556259689, -0.046172207729570924], [-108.01085656214846, 0.5261504290462844], [-109.31013027357815, -0.3864613910864249], [-109.0841053983598, -1.8414007243708574], [-107.80031250106053, -2.564066772676413]]]}}, {"type": "Feature", "properties": {"bin": "824507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.95440525525348, 16.244452762716225], [-85.50512739258085, 17.104271239676322], [-85.4396497080912, 18.76015078981871], [-86.86052253318431, 19.585107432935093], [-88.35361313416331, 18.718698814924483], [-88.38131358911883, 17.034156342908037], [-86.95440525525348, 16.244452762716225]]]}}, {"type": "Feature", "properties": {"bin": "8280effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-44.62218849421249, 1.4068520662852666], [-43.24191520823196, 2.5480546319420436], [-43.54295867183072, 4.291702898166629], [-45.21587333140437, 4.8934826618098395], [-46.5899429561277, 3.7613835005427885], [-46.29770495421065, 2.0188278359562863], [-44.62218849421249, 1.4068520662852666]]]}}, {"type": "Feature", "properties": {"bin": "820cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.60123510352207, 58.77364178572618], [-162.98934604170333, 57.74209682042291], [-162.5312015530735, 56.29657975847275], [-159.93616052424343, 55.86968347918913], [-157.6320905130744, 56.819387676193294], [-157.83458328419528, 58.27402435601134], [-160.60123510352207, 58.77364178572618]]]}}, {"type": "Feature", "properties": {"bin": "822af7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-75.06331695265312, 37.84906886797823], [-77.09992207378818, 37.46356103312862], [-77.61868280728876, 35.99919217524387], [-76.19689970896388, 34.95204734757291], [-74.25811757657625, 35.30976532076736], [-73.64650907619523, 36.741214760199384], [-75.06331695265312, 37.84906886797823]]]}}, {"type": "Feature", "properties": {"bin": "824907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-108.46899881813185, 14.540314420665318], [-107.00364291733395, 15.608424318372613], [-107.2346448395892, 17.36385795843916], [-108.9731896168535, 18.043708500781477], [-110.44862516337822, 16.948594912406097], [-110.17604156542586, 15.201288082930047], [-108.46899881813185, 14.540314420665318]]]}}, {"type": "Feature", "properties": {"bin": "82060ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.744537672047283, 67.97964594431163], [-34.63880586836484, 68.70550027755122], [-38.05088336858742, 67.65668949772835], [-37.35789405976653, 65.9666803766423], [-33.74805583516024, 65.32857388241261], [-30.55163375490227, 66.2984876949583], [-30.744537672047283, 67.97964594431163]]]}}, {"type": "Feature", "properties": {"bin": "82472ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.6278399780964, 32.55323056480534], [-166.52892825112713, 33.96535450751626], [-167.35356163728906, 35.49593479453287], [-169.34862745111113, 35.60701521904266], [-170.44845406020744, 34.155186609801476], [-169.55430353860328, 32.63261591217219], [-167.6278399780964, 32.55323056480534]]]}}, {"type": "Feature", "properties": {"bin": "821cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-143.23649038493966, 43.517931096163174], [-144.5827562775566, 42.534255833181305], [-143.8463112012841, 41.20828589932378], [-141.79797561462004, 40.86937480683374], [-140.46451796229738, 41.85109875949529], [-141.16538827489856, 43.17335364173689], [-143.23649038493966, 43.517931096163174]]]}}, {"type": "Feature", "properties": {"bin": "82135ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-109.38523832003004, 62.39573355947508], [-111.87575001919595, 61.18381291868138], [-110.95630851879363, 59.51594242539448], [-107.80871191774456, 59.00030378122949], [-105.29720502802812, 60.128877276374276], [-105.93714340514043, 61.854047094488976], [-109.38523832003004, 62.39573355947508]]]}}, {"type": "Feature", "properties": {"bin": "827caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-17.679391556521605, 0.7857626165462144], [-16.578712803626818, 1.8107840761768073], [-16.881744945249157, 3.399395037441728], [-18.29181990106688, 3.9960705951817412], [-19.421549166867063, 2.9850510529164813], [-19.112387293484908, 1.3631258164462183], [-17.679391556521605, 0.7857626165462144]]]}}, {"type": "Feature", "properties": {"bin": "823adffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-49.96708935673359, 21.378732512322504], [-51.02040795076438, 20.28384059102303], [-50.75089930552418, 18.833522049909917], [-49.14562786618431, 18.379205732370483], [-47.807886169956326, 19.39171510753982], [-48.33207003095261, 20.936085166520133], [-49.96708935673359, 21.378732512322504]]]}}, {"type": "Feature", "properties": {"bin": "824557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.83358949719242, 21.248167866323893], [-88.29590003003727, 22.120730739616338], [-88.26582217021158, 23.8323750958128], [-89.8165847317488, 24.697760964142336], [-91.39938072747609, 23.819282164095558], [-91.38564360012197, 22.081674384588453], [-89.83358949719242, 21.248167866323893]]]}}, {"type": "Feature", "properties": {"bin": "82038ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.4902399932267, 80.9222086223195], [-140.7129499430988, 80.53533133043359], [-142.7325777589501, 78.83545988164465], [-136.84748880308013, 77.67574164226849], [-129.04688648576507, 78.00335975517777], [-125.12063246139722, 79.53590776437748], [-130.4902399932267, 80.9222086223195]]]}}, {"type": "Feature", "properties": {"bin": "82519ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.92505233769654, 17.69862461664218], [-120.60413853351818, 18.85685904500526], [-121.01253489901505, 20.57399140249709], [-122.77222797391424, 21.1036574832414], [-124.07497433039693, 19.919219984308935], [-123.63741219591729, 18.23148595834103], [-121.92505233769654, 17.69862461664218]]]}}, {"type": "Feature", "properties": {"bin": "822717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-100.69641079632339, 52.530899361258335], [-102.90229770085304, 51.55677580791123], [-102.53928795753316, 49.876702461072995], [-100.1559630800371, 49.1381680821327], [-97.99376183551965, 50.03861533272605], [-98.16677017140223, 51.748943418389956], [-100.69641079632339, 52.530899361258335]]]}}, {"type": "Feature", "properties": {"bin": "823b07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-52.139731328512376, 39.23171996408161], [-53.37975832882263, 37.917559931140715], [-52.66718765783381, 36.36089582314373], [-50.74647797496254, 36.07702446361831], [-49.45598517697697, 37.369379611572356], [-50.13390534968605, 38.967617976396276], [-52.139731328512376, 39.23171996408161]]]}}, {"type": "Feature", "properties": {"bin": "825617fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.349714987532586, 13.075038807532103], [-36.01374188438757, 14.085300071764689], [-36.32405861237687, 15.666830213389112], [-37.966314275005196, 16.24889179713756], [-39.30797215924496, 15.25519507230345], [-39.00212995471533, 13.66328880253161], [-37.349714987532586, 13.075038807532103]]]}}, {"type": "Feature", "properties": {"bin": "823577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.43942903424458, 41.87483011005883], [-20.45496726007536, 40.95974163457924], [-20.3623519142538, 39.178081579793435], [-18.348088280402102, 38.319242897076336], [-16.388588757180873, 39.21171319250576], [-16.387669396390542, 40.9845109305191], [-18.43942903424458, 41.87483011005883]]]}}, {"type": "Feature", "properties": {"bin": "8247a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.4907576684941, 28.12091833484464], [-175.52863062087343, 29.658089939720135], [-176.54267313535857, 31.148162090824524], [-178.57016455275917, 31.077570768078235], [-179.50951719255943, 29.501116823783033], [-178.44656982841957, 28.034840637054618], [-176.4907576684941, 28.12091833484464]]]}}, {"type": "Feature", "properties": {"bin": "824d27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.2843769532692, 30.456222458965872], [-62.12542424810531, 29.238389165152604], [-61.411797076102026, 27.82627207600714], [-59.86349564666303, 27.5872470180961], [-58.972372274137555, 28.788083858698766], [-59.67821742267188, 30.24564073374432], [-61.2843769532692, 30.456222458965872]]]}}, {"type": "Feature", "properties": {"bin": "82391ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.963456118392565, 38.55271209108038], [-6.898505607651506, 37.87174338190937], [-7.10189392414001, 36.141695300502455], [-5.442348460730086, 35.12442405176797], [-3.5848058032652497, 35.801655683177536], [-3.3113412530765816, 37.499409186860944], [-4.963456118392565, 38.55271209108038]]]}}, {"type": "Feature", "properties": {"bin": "82482ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-111.31137588267069, 22.25679763639427], [-109.78251683114335, 23.37812819569902], [-110.06759351145875, 25.16354330313356], [-111.92706403932374, 25.816223896317993], [-113.46044826906298, 24.671633767522994], [-113.1307615446581, 22.898224484781245], [-111.31137588267069, 22.25679763639427]]]}}, {"type": "Feature", "properties": {"bin": "8282f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.189893676135952, -0.4318847675533966], [10.894897390645305, 1.0685158094781342], [10.026444557704739, 2.318989904044636], [8.482576550430563, 2.080262305139526], [7.786228442487397, 0.6114455260916615], [8.624556751274975, -0.6498705655764053], [10.189893676135952, -0.4318847675533966]]]}}, {"type": "Feature", "properties": {"bin": "82470ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.88337203384344, 29.625507898230126], [-166.8254660403483, 31.044922766684163], [-167.6278399780964, 32.55323056480534], [-169.55430353860328, 32.63261591217219], [-170.6124684701106, 31.172045043372158], [-169.74572981425877, 29.67390323215247], [-167.88337203384344, 29.625507898230126]]]}}, {"type": "Feature", "properties": {"bin": "8218e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.854418733638266, 49.416339454352666], [-14.134966126881988, 48.69906061825517], [-14.193176912970879, 47.01013597107083], [-12.082095965734656, 46.05586565890569], [-9.892165114977681, 46.75969876815572], [-9.724736207832674, 48.43009421958324], [-11.854418733638266, 49.416339454352666]]]}}, {"type": "Feature", "properties": {"bin": "825937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.4838650119479393, 22.197541386302376], [-2.7247164865457996, 20.605455654403823], [-1.4579244921298804, 19.504910377173324], [0.08583528510709204, 19.9742016751009], [0.37837010177590247, 21.584144094524866], [-0.9247075498574123, 22.70745271184857], [-2.4838650119479393, 22.197541386302376]]]}}, {"type": "Feature", "properties": {"bin": "8234effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.398786640664905, 28.24562671417639], [-25.06844706824082, 27.23492095559514], [-24.899317214432266, 25.47207046015372], [-23.127994021036667, 24.717289317668993], [-21.487400930124174, 25.69485702884283], [-21.58870741439349, 27.45936036539565], [-23.398786640664905, 28.24562671417639]]]}}, {"type": "Feature", "properties": {"bin": "82120ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-116.21972331600284, 58.69659845715033], [-118.11475820528021, 57.43687314537709], [-117.03757396536434, 55.86163078514258], [-114.22928039520941, 55.478388139502115], [-112.25958067965824, 56.667369999771786], [-113.15854671974594, 58.30967973141954], [-116.21972331600284, 58.69659845715033]]]}}, {"type": "Feature", "properties": {"bin": "826d47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.46014669141513, 12.07893861517152], [-89.87935728094321, 11.176978153286724], [-89.7825771388249, 9.604537414455491], [-88.25051092370046, 8.93099678858819], [-86.81912126593483, 9.849742970723655], [-86.93188692345441, 11.424680020405956], [-88.46014669141513, 12.07893861517152]]]}}, {"type": "Feature", "properties": {"bin": "824637fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.90789986259958, 25.29296844860804], [-169.9243337317964, 26.74642393511309], [-170.76524551604405, 28.212875529249754], [-172.64626329548403, 28.208961817949742], [-173.6227959703449, 26.71303973922542], [-172.72716073983483, 25.264092117188127], [-170.90789986259958, 25.29296844860804]]]}}, {"type": "Feature", "properties": {"bin": "827cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.197086686578825, 5.214586161545864], [-20.03950695020037, 6.20983767529234], [-20.34826709444178, 7.807441231426448], [-21.81948498501671, 8.43965777017582], [-23.003469207101887, 7.461608607409952], [-22.690128007911145, 5.834046769993235], [-21.197086686578825, 5.214586161545864]]]}}, {"type": "Feature", "properties": {"bin": "826bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.435041674371641, 9.913390776005329], [13.938770763768797, 8.412496363249264], [15.07769373223365, 7.210277977223253], [16.718562711430415, 7.474846581692809], [17.25384900346828, 8.962142482864822], [16.110106592542248, 10.199094662934618], [14.435041674371641, 9.913390776005329]]]}}, {"type": "Feature", "properties": {"bin": "827cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.34826709444178, 7.807441231426448], [-19.21004929253201, 8.755747177387095], [-19.25608087263708, 10.227430733230397], [-20.72746038389688, 10.882142231152775], [-22.13030447162035, 10.031218078595819], [-21.81948498501671, 8.43965777017582], [-20.34826709444178, 7.807441231426448]]]}}, {"type": "Feature", "properties": {"bin": "822acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.53180669108406, 32.868710179878306], [-75.38099462386585, 32.535970886027464], [-75.89741081544851, 31.19568780283275], [-74.64046816708004, 30.219492199828103], [-72.87353489721357, 30.529769793827157], [-72.2838315373069, 31.837781075909685], [-73.53180669108406, 32.868710179878306]]]}}, {"type": "Feature", "properties": {"bin": "826667fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.65948845048786, 8.466909589365521], [-68.94472875373597, 7.631575370302872], [-68.74873900594572, 6.033340161196327], [-67.25859951377655, 5.293772477765441], [-65.99074059486387, 6.154061516265284], [-66.19525614980438, 7.728774608084851], [-67.65948845048786, 8.466909589365521]]]}}, {"type": "Feature", "properties": {"bin": "82446ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-94.80894774348357, 29.022701619768878], [-93.13595107051559, 29.913302560384633], [-93.17771064982074, 31.65113143450283], [-94.94582051780957, 32.51690625937428], [-96.66289038040519, 31.619530626908528], [-96.56734672388517, 29.863730793699244], [-94.80894774348357, 29.022701619768878]]]}}, {"type": "Feature", "properties": {"bin": "8248c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.39493685521195, 30.925256698312285], [-105.71621949979533, 31.98773212707032], [-105.95985630825147, 33.74267040100571], [-107.93785023260511, 34.43227819342154], [-109.6325113148718, 33.353312748176265], [-109.33403493051533, 31.601965505730263], [-107.39493685521195, 30.925256698312285]]]}}, {"type": "Feature", "properties": {"bin": "82234ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.72384242302414, 40.31599783007281], [-175.60595851849678, 41.82431170533693], [-176.79450859724977, 43.343120168059755], [-179.170112546831, 43.33462463706695], [179.7444394237716, 41.79221177207786], [-179.00169990796678, 40.29258302822169], [-176.72384242302414, 40.31599783007281]]]}}, {"type": "Feature", "properties": {"bin": "821307fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.19965794975239, 68.01284767634955], [-127.19315775452921, 66.5723146305472], [-125.27817426355625, 65.1121109486552], [-121.55111409916394, 65.00261845542646], [-119.30038464838218, 66.37451114241149], [-120.99628117547238, 67.92537812637019], [-125.19965794975239, 68.01284767634955]]]}}, {"type": "Feature", "properties": {"bin": "8258f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.801169317009782, 9.899743070823426], [6.429971224498451, 8.430253460458047], [7.588359354690609, 7.279047700708482], [9.136091517447662, 7.5645420515535395], [9.549996118907211, 9.030648318176459], [8.37386952112726, 10.215393994209876], [6.801169317009782, 9.899743070823426]]]}}, {"type": "Feature", "properties": {"bin": "824c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-75.81870531040758, 20.90527062510746], [-74.48144424711094, 21.58482898466105], [-74.28202848738356, 23.11880968295903], [-75.445541089086, 24.012556601219234], [-76.8312173516333, 23.34286288063484], [-77.00401926684938, 21.76925238568191], [-75.81870531040758, 20.90527062510746]]]}}, {"type": "Feature", "properties": {"bin": "826727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.19920130289877, 19.39140624075669], [-74.50920598820196, 18.69724247539238], [-74.34077908101102, 17.30450030127003], [-72.85141406690707, 16.617247762534287], [-71.55109910801029, 17.33294070536676], [-71.73013580791827, 18.713930766378308], [-73.19920130289877, 19.39140624075669]]]}}, {"type": "Feature", "properties": {"bin": "82070ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.010053527275545, 69.77863315577277], [-15.039943018127708, 70.86557109876065], [-19.232862920137123, 70.30015374059282], [-19.87138058908891, 68.6781104931821], [-16.825061753610598, 67.68783542166322], [-13.121278008102069, 68.22640078990388], [-12.010053527275545, 69.77863315577277]]]}}, {"type": "Feature", "properties": {"bin": "82261ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.03502941157414, 39.30873979949333], [-97.18874577054888, 40.16427574631937], [-97.30468981823128, 41.80724070545743], [-99.33355209416003, 42.60433463501959], [-101.22296433729231, 41.740408066652975], [-101.04033001739265, 40.0885965084391], [-99.03502941157414, 39.30873979949333]]]}}, {"type": "Feature", "properties": {"bin": "82076ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.43296806023497, 62.584281558661615], [-15.697122940858694, 63.552516945683436], [-18.741712912328655, 62.92039850236251], [-19.242629923160425, 61.34337802161005], [-16.37196241724275, 60.568693514800785], [-13.53147949450864, 61.174834149098], [-13.43296806023497, 62.584281558661615]]]}}, {"type": "Feature", "properties": {"bin": "825527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.574145573053787, 28.431000744101212], [-11.301996450753812, 27.6141453017058], [-11.400658379594104, 25.886179643136675], [-9.833621585568235, 24.999061630613877], [-8.161724346494458, 25.799576124170038], [-8.002013895306682, 27.50290866718829], [-9.574145573053787, 28.431000744101212]]]}}, {"type": "Feature", "properties": {"bin": "820c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-159.28593738084393, 66.02866715337115], [-162.48230614711403, 64.96224411051777], [-161.92108841441055, 63.37119804869793], [-158.59550464384833, 62.83567066730138], [-155.56178079929498, 63.802999942752464], [-155.68342088765695, 65.39882918127277], [-159.28593738084393, 66.02866715337115]]]}}, {"type": "Feature", "properties": {"bin": "822297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.240832794692, 49.50504909063853], [-153.78137213372952, 50.5331018823282], [-154.37896452489522, 52.0322492170176], [-156.55813986607876, 52.51970092230097], [-158.06748518049622, 51.47000327002249], [-157.3487038391932, 49.9551997300865], [-155.240832794692, 49.50504909063853]]]}}, {"type": "Feature", "properties": {"bin": "825e27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.30082560392375, 7.1717454335508775], [-54.98881007012607, 8.285431739399147], [-55.244817879310126, 9.911191823165455], [-56.79988322732103, 10.409411607325323], [-58.08931075322476, 9.305751473411327], [-57.84643084054914, 7.694210873901271], [-56.30082560392375, 7.1717454335508775]]]}}, {"type": "Feature", "properties": {"bin": "820d27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.97533411559434, 76.39114005810903], [-157.0299997629345, 75.47864683380004], [-156.68473650522998, 73.75085590328372], [-151.55680775303475, 72.9547807538937], [-146.25334680995454, 73.73867554342422], [-145.35543575349868, 75.43128251813997], [-150.97533411559434, 76.39114005810903]]]}}, {"type": "Feature", "properties": {"bin": "8279affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-139.54203291379756, 5.241720907135426], [-140.66344163538272, 3.8915686583496854], [-140.08561849994032, 2.291974587934788], [-138.41334504536485, 2.0439831300982663], [-137.3063271216714, 3.3728285055965976], [-137.85663310161618, 4.9705698531016935], [-139.54203291379756, 5.241720907135426]]]}}, {"type": "Feature", "properties": {"bin": "820947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.043311931125118, 69.12144885595274], [13.072820073815873, 69.93399315449412], [11.990167276622653, 71.26523337833441], [7.329111175793021, 71.71063235482194], [4.333799759509659, 70.77147478219023], [5.923714581488998, 69.5183057451554], [10.043311931125118, 69.12144885595274]]]}}, {"type": "Feature", "properties": {"bin": "8228a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-116.8880063607481, 40.116316362318756], [-115.18337123085576, 41.24291137775971], [-115.60310652830113, 42.837738262209285], [-117.78201941593719, 43.291712928181326], [-119.47459538788414, 42.150515256074875], [-119.0022822666251, 40.57057178749683], [-116.8880063607481, 40.116316362318756]]]}}, {"type": "Feature", "properties": {"bin": "821e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.584298678288794, 41.06115008945459], [8.045142114241346, 39.402136368971775], [9.598984700477283, 38.25143274146292], [11.719174616730063, 38.74166724514195], [12.334660572794059, 40.405578471534604], [10.754951467911924, 41.57505304930814], [8.584298678288794, 41.06115008945459]]]}}, {"type": "Feature", "properties": {"bin": "827c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.493787310318627, -1.886201851130144], [-17.373147196370113, -0.8227221314451986], [-17.679391556521605, 0.7857626165462144], [-19.112387293484908, 1.3631258164462183], [-20.261862725037528, 0.31113954958654044], [-19.949760680426785, -1.3298949686991823], [-18.493787310318627, -1.886201851130144]]]}}, {"type": "Feature", "properties": {"bin": "821e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.489487896493493, 47.23467882509988], [16.708896543883586, 45.6797189491731], [18.314740441318996, 44.470679588895024], [20.700525642136274, 44.79686404516598], [21.555105797612647, 46.34273814750756], [19.952960563687107, 47.57213992693463], [17.489487896493493, 47.23467882509988]]]}}, {"type": "Feature", "properties": {"bin": "827ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-15.972808178337958, -1.3716238421937292], [-14.902138302963582, -0.33463809699523095], [-15.201596281865198, 1.2395596636497164], [-16.578712803626818, 1.8107840761768073], [-17.679391556521605, 0.7857626165462144], [-17.373147196370113, -0.8227221314451986], [-15.972808178337958, -1.3716238421937292]]]}}, {"type": "Feature", "properties": {"bin": "824d37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.02252554784452, 31.87788595636583], [-63.84319360780384, 31.717895790643848], [-64.63464431472751, 30.470521737714506], [-63.65277219840964, 29.428705624764028], [-62.12542424810531, 29.238389165152604], [-61.2843769532692, 30.456222458965872], [-62.02252554784452, 31.87788595636583]]]}}, {"type": "Feature", "properties": {"bin": "82479ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.3971384210712, 22.207666523848747], [-175.49767963545628, 23.709096037735854], [-176.44236144712983, 25.135778865609232], [-178.33138097945698, 25.03482258942216], [-179.2113698421699, 23.49281399825079], [-178.22376950605556, 22.09268123220156], [-176.3971384210712, 22.207666523848747]]]}}, {"type": "Feature", "properties": {"bin": "8228dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-123.78541407377031, 48.41499723110688], [-122.06532577526855, 49.540803527536134], [-123.12286550407035, 50.98471128168906], [-125.5010185309912, 51.20399023625232], [-126.65364551902309, 49.99834025248947], [-126.03804258933387, 48.64640364609266], [-123.78541407377031, 48.41499723110688]]]}}, {"type": "Feature", "properties": {"bin": "822907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-123.68694205596185, 30.80725993662299], [-122.25077245892894, 32.039957621034155], [-122.72620857351362, 33.706602821958555], [-124.67256477087246, 34.11418669257208], [-126.08203720130365, 32.8657606136506], [-125.57355829327084, 31.225723979081458], [-123.68694205596185, 30.80725993662299]]]}}, {"type": "Feature", "properties": {"bin": "825987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.193704994404441, 14.869645297067569], [-2.423467945637673, 13.37666338895838], [-1.2396306401223465, 12.28136891407245], [0.20521077410490549, 12.652177592020411], [0.4800430596855388, 14.157028398529341], [-0.7351612054653583, 15.279832303298882], [-2.193704994404441, 14.869645297067569]]]}}, {"type": "Feature", "properties": {"bin": "824737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.51714264920574, 32.703172127251854], [-172.46642085476444, 34.20414768143931], [-173.45828398075636, 35.73158847414236], [-175.56432922504848, 35.741206971176496], [-176.59850610114714, 34.20123172072504], [-175.54582072068294, 32.691054071663075], [-173.51714264920574, 32.703172127251854]]]}}, {"type": "Feature", "properties": {"bin": "825f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-53.68204442813005, -0.17017772412858934], [-52.33341370176727, 0.9571709197237097], [-52.60368682693502, 2.6831731928729203], [-54.210126691127286, 3.2670812965665323], [-55.53888991472084, 2.1447104418903606], [-55.281315597134295, 0.43376906575902824], [-53.68204442813005, -0.17017772412858934]]]}}, {"type": "Feature", "properties": {"bin": "827c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.83093803332417, 1.6714334957138457], [-11.83018697112708, 2.6389327412012906], [-12.118591679205212, 4.156901458392333], [-13.415529249900905, 4.742836477585103], [-14.446797355352741, 3.7900590972316994], [-14.150748959420309, 2.236251730754104], [-12.83093803332417, 1.6714334957138457]]]}}, {"type": "Feature", "properties": {"bin": "8228d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.98065670250082, 46.69153743514635], [-119.23221501743073, 47.80409716753512], [-119.74732445570326, 49.236415543264066], [-122.06532577526855, 49.540803527536134], [-123.78541407377031, 48.41499723110688], [-123.21854399041668, 46.998589021805486], [-120.98065670250082, 46.69153743514635]]]}}, {"type": "Feature", "properties": {"bin": "8212dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-118.32058960903674, 50.385510781870416], [-119.74732445570325, 49.236415543264044], [-119.23221501743073, 47.80409716753512], [-116.94580923942712, 47.42273418621979], [-115.10105179976324, 48.47184510538461], [-115.9131566801509, 50.003546458815705], [-118.32058960903674, 50.385510781870416]]]}}, {"type": "Feature", "properties": {"bin": "828287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.037915717292355, 0.24461504240036508], [15.743841427341074, 1.7743965588127961], [14.807652062069575, 3.046341729325485], [13.190830888883605, 2.8025965889319755], [12.488313965403783, 1.3016140005051489], [13.398514840417468, 0.01580312664861367], [15.037915717292355, 0.24461504240036508]]]}}, {"type": "Feature", "properties": {"bin": "821f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.640206584543732, 54.90218190493178], [13.83952860923243, 53.487245161236885], [15.658506238480797, 52.45676979339932], [18.2899634859423, 52.81905199947077], [19.18933345712404, 54.22465218206264], [17.3622931946247, 55.27814416771983], [14.640206584543732, 54.90218190493178]]]}}, {"type": "Feature", "properties": {"bin": "82279ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.59657027994857, 43.811280598069516], [-105.70117194372358, 44.75951422298859], [-105.97683463775742, 46.32296020581359], [-108.21902141506564, 46.93554192067171], [-110.13398538688485, 45.973009000163444], [-109.78838725262649, 44.41307088095466], [-107.59657027994857, 43.811280598069516]]]}}, {"type": "Feature", "properties": {"bin": "82560ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-32.43307827945043, 11.24751943150281], [-31.13226893260155, 12.247495975510196], [-31.447280984197867, 13.847681302031608], [-33.061980384954424, 14.464634946980667], [-34.37599785763293, 13.482154696182922], [-34.062542066892284, 11.865530221870648], [-32.43307827945043, 11.24751943150281]]]}}, {"type": "Feature", "properties": {"bin": "821217fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.39189680599091, 59.39113236644803], [-126.85253575324182, 58.04535010415047], [-125.4343957784845, 56.597935865927674], [-122.65351099974262, 56.41990601942024], [-121.0485505436808, 57.71085066719347], [-122.3538464859214, 59.235578264229325], [-125.39189680599091, 59.39113236644803]]]}}, {"type": "Feature", "properties": {"bin": "82365ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.32211982848523, 29.86133340283266], [-141.5712006716461, 28.65583905065987], [-140.91889130500928, 27.061192038819833], [-139.05012289695244, 26.683065432299625], [-137.8175388095577, 27.885986175495297], [-138.436417386556, 29.469379315319497], [-140.32211982848523, 29.86133340283266]]]}}, {"type": "Feature", "properties": {"bin": "827827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.56612250790545, 4.428418751970292], [-135.66632317092515, 3.1148956594505575], [-135.1449381643881, 1.5542489892212077], [-133.55280359208382, 1.3136684078902414], [-132.47339503843574, 2.6052531103613514], [-132.96499017492758, 4.15894262726533], [-134.56612250790545, 4.428418751970292]]]}}, {"type": "Feature", "properties": {"bin": "823757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-144.44021040070223, 38.787180029913614], [-145.74636904346727, 37.68759229063255], [-145.01868074012842, 36.25645921182272], [-143.015777903615, 35.9297289495775], [-141.7190423880193, 37.02819228718556], [-142.41461960345498, 38.45421244190386], [-144.44021040070223, 38.787180029913614]]]}}, {"type": "Feature", "properties": {"bin": "82005ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.3954549354975698, 85.00324300064894], [16.21479349753519, 86.17428146252993], [8.384360674740835, 87.82361750161175], [-34.95123585775986, 87.58500991616803], [-34.844060309330615, 85.9580797553944], [-17.9081638349315, 84.94207431820979], [1.3954549354975698, 85.00324300064894]]]}}, {"type": "Feature", "properties": {"bin": "823b37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.8790127792493, 40.97555819925587], [-56.060818509941804, 39.6440206246857], [-55.29832920217747, 38.13570581766841], [-53.37975832882263, 37.917559931140715], [-52.139731328512376, 39.23171996408161], [-52.873705300901584, 40.78170535052993], [-54.8790127792493, 40.97555819925587]]]}}, {"type": "Feature", "properties": {"bin": "82130ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-119.30038464838218, 66.37451114241149], [-121.55111409916394, 65.00261845542646], [-120.00771705989827, 63.4539330475255], [-116.44653125364454, 63.19577227205729], [-114.03635330479166, 64.4899358631522], [-115.31541356398044, 66.1193217908294], [-119.30038464838218, 66.37451114241149]]]}}, {"type": "Feature", "properties": {"bin": "825847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.057677308471957, 15.541998660465921], [12.559316983005372, 13.947330592398506], [13.762355118081885, 12.694430236620008], [15.472615878253416, 13.00285055504457], [16.015121420164647, 14.587692564478072], [14.804131284942924, 15.87459897267477], [13.057677308471957, 15.541998660465921]]]}}, {"type": "Feature", "properties": {"bin": "825967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.556100605723162, 25.1510932676285], [7.115841917490329, 23.468040880271634], [8.443478079873218, 22.23328539196474], [10.23354395677019, 22.6544560846675], [10.729780964035752, 24.341160535590188], [9.380676605201614, 25.603702576968765], [7.556100605723162, 25.1510932676285]]]}}, {"type": "Feature", "properties": {"bin": "823f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.141299636275793, 26.45499699092275], [12.590615073173332, 24.753167536259074], [13.915183885634578, 23.45043771532035], [15.800827802347936, 23.821410412145514], [16.404954355833446, 25.517872533302246], [15.071232200574926, 26.84934226485555], [13.141299636275793, 26.45499699092275]]]}}, {"type": "Feature", "properties": {"bin": "8219affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.373725810250253, 59.10182986756048], [-19.067029449080284, 58.40493643730386], [-18.987191465997125, 56.88329845233644], [-16.376938456712956, 56.06460393499809], [-13.79164665163863, 56.73632442836385], [-13.710273826815675, 58.250184667728405], [-16.373725810250253, 59.10182986756048]]]}}, {"type": "Feature", "properties": {"bin": "823977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.3979729448555914, 43.08588995790071], [-2.4177958307002343, 42.540479965651194], [-2.7286180787605163, 40.87178460953809], [-1.0911461549131662, 39.78465688180244], [0.8372982571855976, 40.33535273335424], [1.21687066005433, 41.967575126995605], [-0.3979729448555914, 43.08588995790071]]]}}, {"type": "Feature", "properties": {"bin": "824547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-92.94481859961996, 21.16716126402498], [-91.38564360012197, 22.081674384588453], [-91.39938072747609, 23.819282164095558], [-93.01794342464848, 24.66401236113593], [-94.61848294007633, 23.739867714796464], [-94.55861520190119, 21.981092072848494], [-92.94481859961996, 21.16716126402498]]]}}, {"type": "Feature", "properties": {"bin": "8218c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.193176912970879, 47.01013597107083], [-16.384633284552198, 46.21899145965219], [-16.38569507731395, 44.49123495446823], [-14.301163761412027, 43.56902927923193], [-12.187655377121208, 44.34367553397141], [-12.082095965734656, 46.05586565890569], [-14.193176912970879, 47.01013597107083]]]}}, {"type": "Feature", "properties": {"bin": "8282cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.479174769865493, 1.6114802044966399], [6.16472429995407, 3.047731638915501], [5.380973348826338, 4.2211544335698665], [3.9430361557864506, 3.9687969766095823], [3.2700512349330917, 2.5657311513076166], [4.022089806282807, 1.382296820377439], [5.479174769865493, 1.6114802044966399]]]}}, {"type": "Feature", "properties": {"bin": "823857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.622001932112611, 33.80292479846324], [4.2041739956726545, 32.11010693139568], [5.648193230269618, 30.9528601574355], [7.5426478625178, 31.469041229575595], [8.027570156679904, 33.173311423144405], [6.551513795830656, 34.35055445973989], [4.622001932112611, 33.80292479846324]]]}}, {"type": "Feature", "properties": {"bin": "82281ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-123.21638025157817, 41.34525311550237], [-121.61672150971295, 42.53532547133135], [-122.13483148443464, 44.05769081450337], [-124.29625240032743, 44.370406328558374], [-125.86439555673397, 43.16875546788176], [-125.30493951740326, 41.666390319824714], [-123.21638025157817, 41.34525311550237]]]}}, {"type": "Feature", "properties": {"bin": "821e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.36919284285479, 43.20897662532489], [10.754951467911924, 41.57505304930814], [12.334660572794059, 40.405578471534604], [14.548450654218147, 40.85124382084822], [15.239935584499475, 42.48537089697073], [13.642238671206671, 43.674337444107124], [11.36919284285479, 43.20897662532489]]]}}, {"type": "Feature", "properties": {"bin": "82780ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.06006141444146, -0.2050918264519519], [-134.13022452459796, -1.4878374532303014], [-133.63655062461797, -2.965781048253536], [-132.10150849305654, -3.156710274879981], [-131.0529311425508, -1.8982704391926215], [-131.51755267776005, -0.4250722038883098], [-133.06006141444146, -0.2050918264519519]]]}}, {"type": "Feature", "properties": {"bin": "82355ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.30545839105258, 36.529265222848295], [-20.18932139434465, 35.5917804234095], [-20.10838274495798, 33.794127804904804], [-18.225633742765968, 32.94224979572863], [-16.391110502200526, 33.85538020110467], [-16.39030672323071, 35.64371795856788], [-18.30545839105258, 36.529265222848295]]]}}, {"type": "Feature", "properties": {"bin": "828087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.51639566623422, -2.2929167967014177], [-33.17139368184062, -1.1464705664334065], [-33.49144771371919, 0.6018082787679894], [-35.15405506065563, 1.2176594213674936], [-36.50956673635525, 0.08034191858739571], [-36.192430729824714, -1.681650785460813], [-34.51639566623422, -2.2929167967014177]]]}}, {"type": "Feature", "properties": {"bin": "82449ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.2856094425719, 28.067256681471644], [-74.8495426094048, 28.674543983671523], [-74.64046816708004, 30.219492199828103], [-75.89741081544852, 31.195687802832744], [-77.38897377961239, 30.603487618949398], [-77.56693855205808, 29.01977219945143], [-76.2856094425719, 28.067256681471644]]]}}, {"type": "Feature", "properties": {"bin": "826d67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.99951934066806, 14.596250076064885], [-88.43455261911369, 13.711755540888754], [-88.46014669141513, 12.07893861517152], [-86.93188692345441, 11.424680020405956], [-85.51233216294696, 12.312720418608667], [-85.63106856426799, 13.83685380982093], [-86.99951934066806, 14.596250076064885]]]}}, {"type": "Feature", "properties": {"bin": "826ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-112.7172719065648, 11.33682496700244], [-111.32693234897052, 12.401690461483298], [-111.60832800785231, 14.117214817588279], [-113.31737655015479, 14.7526194708729], [-114.70874350107026, 13.657730397443178], [-114.39081831370694, 11.958012174674897], [-112.7172719065648, 11.33682496700244]]]}}, {"type": "Feature", "properties": {"bin": "823af7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.70374278490925, 26.024129726893676], [-52.76818094445429, 24.853757050057478], [-52.168857817442415, 23.323167313091375], [-50.52899821187004, 22.91996861341175], [-49.42868675437277, 24.059671124395237], [-50.00240945557361, 25.633575567923092], [-51.70374278490925, 26.024129726893676]]]}}, {"type": "Feature", "properties": {"bin": "824da7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.48075259088839, 31.31869572733398], [-69.29034987118375, 31.080352320929475], [-69.94519451089594, 29.808573144961098], [-68.84984897216773, 28.813992016483084], [-67.12245868172785, 29.041387845704413], [-66.41090036021146, 30.273889962489605], [-67.48075259088839, 31.31869572733398]]]}}, {"type": "Feature", "properties": {"bin": "82798ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.08561849994032, 2.291974587934788], [-141.19432920076036, 0.9536012426282234], [-140.61806628565486, -0.609462307518436], [-138.95903110794228, -0.8353130739527076], [-137.86358131600468, 0.4801895435352829], [-138.41334504536485, 2.0439831300982663], [-140.08561849994032, 2.291974587934788]]]}}, {"type": "Feature", "properties": {"bin": "82670ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.6751910194656, 15.179225112353901], [-73.9993067827236, 14.416001983365364], [-73.82622515927444, 12.921603796921572], [-72.31799816277822, 12.204723205585072], [-71.00455889178556, 12.991161329005372], [-71.18832758758249, 14.470864622259246], [-72.6751910194656, 15.179225112353901]]]}}, {"type": "Feature", "properties": {"bin": "820927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.87869840057966, 66.4250610395259], [-6.976507251866831, 67.54932953851741], [-10.558792289389446, 67.1535478452051], [-11.632420456928374, 65.631365577424], [-9.419124599059314, 64.5835440503631], [-6.2206596092963595, 64.98197678166125], [-4.87869840057966, 66.4250610395259]]]}}, {"type": "Feature", "properties": {"bin": "825417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.39704531124982, 18.232262428254234], [-17.93691055163439, 17.348671597250807], [-17.910453055902636, 15.72965237496016], [-16.39811264585764, 15.002855614684421], [-14.894156301320406, 15.857367972897634], [-14.866952039887197, 17.46687133443676], [-16.39704531124982, 18.232262428254234]]]}}, {"type": "Feature", "properties": {"bin": "82672ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.55109910801029, 17.33294070536676], [-72.85141406690707, 16.617247762534287], [-72.6751910194656, 15.179225112353901], [-71.18832758758249, 14.470864622259246], [-69.89993040884043, 15.209503514387762], [-70.08613766800609, 16.6331676334134], [-71.55109910801029, 17.33294070536676]]]}}, {"type": "Feature", "properties": {"bin": "822a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.73406932047651, 41.163833989516235], [-81.86750279548116, 40.674246416073814], [-82.26705878743627, 39.12545066120517], [-80.65177495480032, 38.08929821612251], [-78.61941821988546, 38.540002057010945], [-78.10427143231793, 40.064060432001234], [-79.73406932047651, 41.163833989516235]]]}}, {"type": "Feature", "properties": {"bin": "821c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.0372581037628, 46.530830214693424], [-150.38876854208647, 45.54008958515863], [-149.5818136427099, 44.32238390105542], [-147.45009391663316, 44.09362423911827], [-146.09758320575617, 45.080367076675685], [-146.8762190210428, 46.29958947007755], [-149.0372581037628, 46.530830214693424]]]}}, {"type": "Feature", "properties": {"bin": "825747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.642163004408513, 20.01898482104818], [-29.122334204782824, 19.02352684528573], [-28.89607467138024, 17.37155025542475], [-27.24419120034105, 16.703902266524377], [-25.77928060933632, 17.66142032044262], [-25.95035173778074, 19.323636368315324], [-27.642163004408513, 20.01898482104818]]]}}, {"type": "Feature", "properties": {"bin": "8249b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.00408607712038, 15.551320300550213], [-97.49310955699559, 16.545220413152016], [-97.5919371226762, 18.289686316263754], [-99.24618291206443, 19.05042155994036], [-100.78602787309754, 18.036674207758512], [-100.64272416528974, 16.28269193380548], [-99.00408607712038, 15.551320300550213]]]}}, {"type": "Feature", "properties": {"bin": "827567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.2700512349330917, 2.5657311513076166], [3.9430361557864506, 3.9687969766095823], [2.8260034960813383, 5.055077924023954], [1.4259913686082732, 4.791199116946009], [1.1589044753770883, 3.4728049331861635], [1.868917217650497, 2.3298633934462813], [3.2700512349330917, 2.5657311513076166]]]}}, {"type": "Feature", "properties": {"bin": "824407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.23235890098277, 23.784705281290822], [-83.71082338833317, 24.573869210503936], [-83.61684078253785, 26.242156293697366], [-85.08434762858587, 27.15353558293776], [-86.6566805904582, 26.365999088189653], [-86.70979180480131, 24.66558872087198], [-85.23235890098277, 23.784705281290822]]]}}, {"type": "Feature", "properties": {"bin": "825d77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-147.69594788211106, 22.16693900740581], [-148.88967549149402, 20.7929466404251], [-148.19147140188997, 19.135021179340214], [-146.32196099848449, 18.851575050356097], [-145.1298930260219, 20.21852662737945], [-145.80464293154424, 21.875719329468932], [-147.69594788211106, 22.16693900740581]]]}}, {"type": "Feature", "properties": {"bin": "82575ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-28.89607467138024, 17.37155025542475], [-30.318949345946834, 16.39725894705571], [-30.07882980569252, 14.794642048083519], [-28.466573861606125, 14.153249867064737], [-27.05549325698139, 15.089067468519037], [-27.24419120034105, 16.703902266524377], [-28.89607467138024, 17.37155025542475]]]}}, {"type": "Feature", "properties": {"bin": "827c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.11905217530249, -2.4178522793667665], [-19.949760680426785, -1.3298949686991823], [-20.261862725037528, 0.31113954958654044], [-21.748282563172204, 0.8944150053331076], [-22.944641684888524, -0.18261910269663728], [-22.627819124985322, -1.8539523467425856], [-21.11905217530249, -2.4178522793667665]]]}}, {"type": "Feature", "properties": {"bin": "82088ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.280998608847177, 61.41674993469948], [21.289181501450866, 60.46250989980112], [23.838471181226858, 60.96688976883668], [24.517172437523502, 62.478113451924735], [22.407228789344035, 63.469342287950894], [19.718783419633482, 62.910503878993765], [19.280998608847177, 61.41674993469948]]]}}, {"type": "Feature", "properties": {"bin": "82558ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-17.992762466160794, 20.672196772789086], [-19.567746739996146, 19.758338710645457], [-19.51112287762693, 18.09329987490912], [-17.93691055163439, 17.348671597250807], [-16.39704531124982, 18.232262428254234], [-16.39648236469557, 19.88982836881392], [-17.992762466160794, 20.672196772789086]]]}}, {"type": "Feature", "properties": {"bin": "82518ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-124.89421209403801, 17.073472553348775], [-123.63741219591729, 18.23148595834103], [-124.07497433039693, 19.919219984308935], [-125.79514460772695, 20.41598020692649], [-127.02874715969844, 19.232406862672743], [-126.56658897182817, 17.577652196445264], [-124.89421209403801, 17.073472553348775]]]}}, {"type": "Feature", "properties": {"bin": "82492ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-111.60832800785231, 14.117214817588279], [-110.17604156542586, 15.201288082930047], [-110.44862516337822, 16.948594912406097], [-112.19334854692053, 17.598630441290176], [-113.6290340058613, 16.486147588602186], [-113.31737655015479, 14.7526194708729], [-111.60832800785231, 14.117214817588279]]]}}, {"type": "Feature", "properties": {"bin": "82799ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.89153846775332, 1.1936474792774971], [-143.99662288666065, -0.14809840694750945], [-143.3961790952625, -1.7065799698214494], [-141.71417456097205, -1.9283068208699659], [-140.61806628565486, -0.609462307518436], [-141.19432920076036, 0.9536012426282234], [-142.89153846775332, 1.1936474792774971]]]}}, {"type": "Feature", "properties": {"bin": "821947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.6707588590220488, 55.13380594305545], [-1.7855433613315905, 54.76238836624054], [-2.1788859209290425, 53.25155105071478], [-0.21913743445926212, 52.141680818262785], [2.1013139839474526, 52.517133978422294], [2.5927890313053683, 53.99775155222293], [0.6707588590220488, 55.13380594305545]]]}}, {"type": "Feature", "properties": {"bin": "8227a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.44903829772724, 52.22905600590294], [-107.46626232494818, 51.18753049151047], [-106.93095328347972, 49.548822883945455], [-104.54455472421517, 48.90848007261448], [-102.53928795753316, 49.876702461072995], [-102.90229770085304, 51.55677580791123], [-105.44903829772724, 52.22905600590294]]]}}, {"type": "Feature", "properties": {"bin": "825e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.20684695571737, 15.828355103239595], [-48.86827717036491, 16.875318014324517], [-49.14562786618431, 18.379205732370483], [-50.75089930552418, 18.833522049909917], [-52.07513182920213, 17.801087577878658], [-51.80871881161255, 16.300308440137652], [-50.20684695571737, 15.828355103239595]]]}}, {"type": "Feature", "properties": {"bin": "8238d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.319543174072057, 26.517456272921628], [0.9946771925498421, 24.858335834449555], [2.333174076650933, 23.712268083774752], [4.030548380417124, 24.203144761743964], [4.413328471156264, 25.876899790610704], [3.040960396182133, 27.045710466174707], [1.319543174072057, 26.517456272921628]]]}}, {"type": "Feature", "properties": {"bin": "82468ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-172.87373593176594, 19.551298255606305], [-173.75672208163414, 18.120398684642627], [-173.00560997665534, 16.653102620895357], [-171.35903250000362, 16.594714504739436], [-170.43948868920074, 18.032685472794192], [-171.20246278538642, 19.52204792028713], [-172.87373593176594, 19.551298255606305]]]}}, {"type": "Feature", "properties": {"bin": "82354ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.488597695229425, 36.51527932188329], [-16.39030672323071, 35.64371795856788], [-16.391110502200526, 33.85538020110467], [-14.570452111245078, 32.95438593767852], [-12.727150094554121, 33.80653391043386], [-12.646960344628356, 35.57816880772348], [-14.488597695229425, 36.51527932188329]]]}}, {"type": "Feature", "properties": {"bin": "827817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.86358131600468, 0.4801895435352829], [-138.95903110794228, -0.8353130739527076], [-138.40999433784538, -2.3586899160008166], [-136.7924648118659, -2.566518459508046], [-135.71310571565425, -1.2749131152425952], [-136.23472563555197, 0.2479561421530336], [-137.86358131600468, 0.4801895435352829]]]}}, {"type": "Feature", "properties": {"bin": "825117fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-126.41106193931888, 11.568376194363235], [-125.23898938471632, 12.65441306346884], [-125.67197257697387, 14.285697905685025], [-127.29855009646941, 14.796612535181083], [-128.44721348323827, 13.682125309313953], [-127.99376197091502, 12.085116662991583], [-126.41106193931888, 11.568376194363235]]]}}, {"type": "Feature", "properties": {"bin": "825e6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-64.17932163612504, 12.644368063884077], [-62.9767889197242, 13.72194673042217], [-63.19149501530036, 15.181722463310459], [-64.59499708082424, 15.547610315045723], [-65.76882190787965, 14.482400617733116], [-65.56785524376275, 13.039244388531138], [-64.17932163612504, 12.644368063884077]]]}}, {"type": "Feature", "properties": {"bin": "825657fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.499720107270083, 8.976246182604307], [-29.214927339428673, 9.99349919622799], [-29.531197447216435, 11.619374142224828], [-31.13226893260155, 12.247495975510196], [-32.43307827945043, 11.24751943150281], [-32.11722390117859, 9.602382664633245], [-30.499720107270083, 8.976246182604307]]]}}, {"type": "Feature", "properties": {"bin": "820f6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-53.64113389481237, 59.90336096046384], [-57.11446309131754, 60.011446683130515], [-58.9113414349944, 58.48980679095191], [-57.34215649850436, 56.94282581684036], [-54.16389762671933, 56.86222737436078], [-52.27797798983351, 58.30261054284449], [-53.64113389481237, 59.90336096046384]]]}}, {"type": "Feature", "properties": {"bin": "82456ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.13028457346508, 21.02511760432553], [-94.55861520190119, 21.981092072848494], [-94.61848294007633, 23.739867714796464], [-96.29745134025397, 24.55902528467453], [-97.9056342663466, 23.58979436809324], [-97.79807701289052, 21.815235529493616], [-96.13028457346508, 21.02511760432553]]]}}, {"type": "Feature", "properties": {"bin": "825147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.25123983479142, 17.19966231642097], [-138.4241947318954, 15.887813843758263], [-137.84191735986664, 14.220424496644261], [-136.11804768463242, 13.87687108109807], [-134.96455661482753, 15.177012077512154], [-135.51493752652922, 16.832177786123754], [-137.25123983479142, 17.19966231642097]]]}}, {"type": "Feature", "properties": {"bin": "82455ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.39938072747609, 23.819282164095558], [-89.8165847317488, 24.697760964142336], [-89.80771154120198, 26.426478135308493], [-91.42807071534146, 27.300910278879517], [-93.05612094813121, 26.41651091529104], [-93.01794342464848, 24.66401236113593], [-91.39938072747609, 23.819282164095558]]]}}, {"type": "Feature", "properties": {"bin": "822627fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-95.57986345738759, 47.511000583160836], [-97.687441361477, 46.680813951539314], [-97.55120876321169, 45.03825688469696], [-95.46450687268343, 44.208686356422625], [-93.41811772809459, 44.97252619713555], [-93.39584904234346, 46.630019541751885], [-95.57986345738759, 47.511000583160836]]]}}, {"type": "Feature", "properties": {"bin": "82199ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.24608918109857, 56.81195076286665], [-26.717135331370347, 55.920899120684865], [-26.42076829683686, 54.3511790526565], [-23.800269106758357, 53.66750781990839], [-21.388789544397927, 54.52817290726193], [-21.536793665272608, 56.10124011353575], [-24.24608918109857, 56.81195076286665]]]}}, {"type": "Feature", "properties": {"bin": "8203a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.89171801085922, 84.22628942426208], [-173.17785081207975, 83.0160008604971], [-169.31444888144782, 81.3221082407873], [-158.84821306045922, 80.72172286490242], [-149.19706856075058, 81.61645489132732], [-147.98384331245998, 83.36220061113471], [-161.89171801085922, 84.22628942426208]]]}}, {"type": "Feature", "properties": {"bin": "822a2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.78283365721654, 40.48336915505132], [-67.97194197267149, 40.25870119453795], [-68.7982404774257, 38.79471715986838], [-67.51727434627897, 37.60542520224807], [-65.4481422021679, 37.82209134722366], [-64.54478409927509, 39.23568266055749], [-65.78283365721654, 40.48336915505132]]]}}, {"type": "Feature", "properties": {"bin": "822817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.62501817993413, 39.39386760344102], [-119.0022822666251, 40.57057178749683], [-119.47459538788414, 42.150515256074875], [-121.61672150971295, 42.53532547133135], [-123.21638025157817, 41.34525311550237], [-122.6990988675928, 39.784230841420204], [-120.62501817993413, 39.39386760344102]]]}}, {"type": "Feature", "properties": {"bin": "820c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-174.04908498921228, 61.66402065845946], [-176.20585509660006, 60.342694610190605], [-174.97898792007197, 58.89084512092414], [-171.84700893446154, 58.704960589709465], [-169.65224675086048, 59.9264252079926], [-170.60908373285838, 61.4304886221889], [-174.04908498921228, 61.66402065845946]]]}}, {"type": "Feature", "properties": {"bin": "8238effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.648193230269618, 30.9528601574355], [5.2213927424219095, 29.254882451681667], [6.625253967039598, 28.063354881307642], [8.48467266804086, 28.54775137450854], [8.974635637589914, 30.254840780701706], [7.5426478625178, 31.469041229575595], [5.648193230269618, 30.9528601574355]]]}}, {"type": "Feature", "properties": {"bin": "823767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.46451796229738, 41.85109875949529], [-141.79797561462004, 40.86937480683374], [-141.09962395635495, 39.49476572853464], [-139.10478691459335, 39.10841931158573], [-137.7899013454123, 40.08939484348509], [-138.450291223663, 41.457139817335765], [-140.46451796229738, 41.85109875949529]]]}}, {"type": "Feature", "properties": {"bin": "827ce7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-22.06251628373991, 2.547670976465841], [-20.88554403470773, 3.586179719894], [-21.197086686578825, 5.214586161545864], [-22.690128007911145, 5.834046769993235], [-23.89300673496357, 4.8107173676555615], [-23.577254165479847, 3.152670815193168], [-22.06251628373991, 2.547670976465841]]]}}, {"type": "Feature", "properties": {"bin": "824437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.8912484679536, 21.24419924142965], [-82.4189498241204, 22.03460687237355], [-82.31040349619852, 23.682658839501197], [-83.71082338833317, 24.573869210503936], [-85.23235890098277, 23.784705281290822], [-85.30333926122431, 22.1031494208665], [-83.8912484679536, 21.24419924142965]]]}}, {"type": "Feature", "properties": {"bin": "820e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.07765942986177, 65.18096713675398], [-82.11527411969873, 64.62882942983263], [-82.82964532461183, 62.858571659674325], [-79.91075404456411, 61.67566974904422], [-76.22600976416577, 62.1747288300192], [-75.12759866083337, 63.90545688327906], [-78.07765942986177, 65.18096713675398]]]}}, {"type": "Feature", "properties": {"bin": "82182ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.713499065102662, 53.841053788108646], [-9.166993325133559, 53.28908444969495], [-9.362891292036801, 51.696862788869424], [-7.224493860559396, 50.67904691252102], [-4.889760342933783, 51.22372845966178], [-4.578382413982979, 52.792439042763036], [-6.713499065102662, 53.841053788108646]]]}}, {"type": "Feature", "properties": {"bin": "8206dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-52.236601272126784, 65.98587422595433], [-56.49997372257031, 66.15594458444963], [-58.725707805023305, 64.6599175449764], [-56.83926280965463, 63.08845327665033], [-53.01093487395563, 62.95067649282497], [-50.666394025640784, 64.35430188438744], [-52.236601272126784, 65.98587422595433]]]}}, {"type": "Feature", "properties": {"bin": "82280ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-126.80474596422498, 40.43702004213228], [-125.30493951740326, 41.666390319824714], [-125.86439555673397, 43.16875546788176], [-127.95866237076233, 43.41920841314796], [-129.41846935219817, 42.180691044100726], [-128.8262478993717, 40.70115412021985], [-126.80474596422498, 40.43702004213228]]]}}, {"type": "Feature", "properties": {"bin": "820917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.3335604888383246, 64.18977807614682], [-4.37854545089313, 63.89675172018521], [-4.777634484041528, 62.56377272218282], [-2.2975260876218306, 61.54550957788075], [0.5480202135218178, 61.828864713593795], [1.104046136969399, 63.13895537587258], [-1.3335604888383246, 64.18977807614682]]]}}, {"type": "Feature", "properties": {"bin": "827957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-131.8764059133603, 5.451878044696868], [-132.96499017492758, 4.15894262726533], [-132.47339503843574, 2.6052531103613514], [-130.92371721669844, 2.3547343129537235], [-129.85901084455557, 3.6266310727261404], [-130.3198801019625, 5.169706959304147], [-131.8764059133603, 5.451878044696868]]]}}, {"type": "Feature", "properties": {"bin": "825d17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-156.47838570074387, 21.691033498803716], [-157.6068486027842, 20.259691594705036], [-156.8561954077174, 18.640826146956076], [-154.98703981757708, 18.44351602730166], [-153.84334364279104, 19.871127924569453], [-154.58288875803984, 21.499614936184223], [-156.47838570074387, 21.691033498803716]]]}}, {"type": "Feature", "properties": {"bin": "820237fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-112.71412782504105, 82.37631841142961], [-125.29445893479551, 82.48154130920918], [-130.4902399932267, 80.9222086223195], [-125.12063246139722, 79.53590776437748], [-116.06967252591366, 79.50058629824929], [-109.60061358280943, 80.79477388736268], [-112.71412782504105, 82.37631841142961]]]}}, {"type": "Feature", "properties": {"bin": "825d8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-157.2238132441211, 15.563074288117468], [-158.31597877236496, 14.117162051440276], [-157.5816170502988, 12.475685415227826], [-155.7634836482284, 12.26582364388199], [-154.6555323207048, 13.703903037388972], [-155.380442276238, 15.359563479620281], [-157.2238132441211, 15.563074288117468]]]}}, {"type": "Feature", "properties": {"bin": "820d5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.2429863294452, 66.25795761948787], [-148.88117429384081, 65.5226585224212], [-149.2025168456928, 63.94824319117261], [-146.3131757834004, 63.14954357725288], [-142.99622095359533, 63.82043153371307], [-142.26222118675372, 65.34943666334875], [-145.2429863294452, 66.25795761948787]]]}}, {"type": "Feature", "properties": {"bin": "824d97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.6535793635368, 27.72357951541412], [-72.27432116597073, 28.294849568008754], [-71.69663750794268, 29.541228049016194], [-72.87353489721357, 30.529769793827157], [-74.64046816708004, 30.219492199828103], [-74.8495426094048, 28.674543983671523], [-73.6535793635368, 27.72357951541412]]]}}, {"type": "Feature", "properties": {"bin": "82385ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.027570156679904, 33.173311423144405], [7.5426478625178, 31.469041229575595], [8.974635637589914, 30.254840780701706], [10.916109798180177, 30.722958921689], [11.466035435670609, 32.432807380976996], [10.010436136048828, 33.6695957366448], [8.027570156679904, 33.173311423144405]]]}}, {"type": "Feature", "properties": {"bin": "82364ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.18917403900545, 30.621401309085574], [-138.436417386556, 29.469379315319497], [-137.8175388095577, 27.885986175495297], [-135.98689147817444, 27.46913860954455], [-134.76180679944812, 28.619665585720497], [-135.3445752779655, 30.188340220579164], [-137.18917403900545, 30.621401309085574]]]}}, {"type": "Feature", "properties": {"bin": "821d47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.0450949301209, 47.840124407999866], [-132.622022499174, 49.063414704958], [-133.3146867639574, 50.33165648431905], [-135.45245715606114, 50.3573782875005], [-136.81157802891047, 49.131858837267735], [-136.0993943213693, 47.88297766265084], [-134.0450949301209, 47.840124407999866]]]}}, {"type": "Feature", "properties": {"bin": "820d0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-151.76683977369802, 71.2602903416543], [-156.17772926429058, 70.34457749397508], [-155.98612998088066, 68.67171364428049], [-152.08848899496186, 67.9323760889138], [-148.0833465293283, 68.74753660342623], [-147.57981709555796, 70.39347998637335], [-151.76683977369802, 71.2602903416543]]]}}, {"type": "Feature", "properties": {"bin": "8254e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.478121064920861, 13.557520460561596], [-14.945816427724187, 12.73084648058285], [-14.970363295558462, 11.216545454321968], [-13.574644025576724, 10.54021488943181], [-12.143209702643249, 11.34031170743392], [-12.071696161095671, 12.842516407667542], [-13.478121064920861, 13.557520460561596]]]}}, {"type": "Feature", "properties": {"bin": "825e07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-55.244817879310126, 9.911191823165455], [-53.92839791969591, 11.014795646265108], [-54.188054013873085, 12.604319983090281], [-55.75155172567551, 13.079342863977931], [-57.046769924020715, 11.987619654773415], [-56.79988322732103, 10.409411607325323], [-55.244817879310126, 9.911191823165455]]]}}, {"type": "Feature", "properties": {"bin": "82348ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-32.584431539980926, 30.045990386831075], [-34.15652430618336, 28.924377730609972], [-33.80963548074154, 27.17820910039476], [-31.953133427831695, 26.53340769423689], [-30.386417332925895, 27.61772385713097], [-30.669421404398822, 29.383364953747783], [-32.584431539980926, 30.045990386831075]]]}}, {"type": "Feature", "properties": {"bin": "827997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.22589603469555, 3.04058018571452], [-146.33638072286848, 1.6772949381945048], [-145.71088277855392, 0.08630376308334368], [-143.99662288666065, -0.14809840694750945], [-142.89153846775332, 1.1936474792774971], [-143.494564317998, 2.7909720644293845], [-145.22589603469555, 3.04058018571452]]]}}, {"type": "Feature", "properties": {"bin": "8282e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.919384560858635, -2.142899112922032], [8.624556751274975, -0.6498705655764053], [7.786228442487397, 0.6114455260916615], [6.274126691321663, 0.38835411272385156], [5.579905087848414, -1.0722681134170775], [6.3863735266664845, -2.3418038147608624], [7.919384560858635, -2.142899112922032]]]}}, {"type": "Feature", "properties": {"bin": "82271ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-97.99376183551965, 50.03861533272605], [-100.1559630800371, 49.1381680821327], [-99.91704879397018, 47.4715191071553], [-97.687441361477, 46.680813951539314], [-95.57986345738759, 47.511000583160836], [-95.64460844466419, 49.199828955070046], [-97.99376183551965, 50.03861533272605]]]}}, {"type": "Feature", "properties": {"bin": "825ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-52.07513182920213, 17.801087577878658], [-50.75089930552418, 18.833522049909917], [-51.02040795076439, 20.28384059102302], [-52.60285955455481, 20.69833387837225], [-53.91030541419269, 19.680474994025875], [-53.65233609447694, 18.234041767402267], [-52.07513182920213, 17.801087577878658]]]}}, {"type": "Feature", "properties": {"bin": "826d9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-102.95272811818845, 7.488601711468147], [-101.53659364598748, 8.4752363140098], [-101.68340902356329, 10.134824628168149], [-103.28578914212041, 10.808886602015805], [-104.72101877077912, 9.795282211864993], [-104.53497491114089, 8.135308829772034], [-102.95272811818845, 7.488601711468147]]]}}, {"type": "Feature", "properties": {"bin": "820f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.434646100628136, 70.75911732687983], [-63.738124912818805, 70.76244135605083], [-65.95493520108766, 69.19412677478655], [-63.24061505124017, 67.72209967046797], [-58.598270292718745, 67.72706533699171], [-56.071292790866345, 69.19623455946773], [-58.434646100628136, 70.75911732687983]]]}}, {"type": "Feature", "properties": {"bin": "82299ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.38212699256788, 37.96394850096659], [-112.67364833709534, 39.07514874188193], [-113.04627123921182, 40.72061994800501], [-115.18337123085576, 41.24291137775971], [-116.8880063607481, 40.116316362318756], [-116.46105044303361, 38.483501650351876], [-114.38212699256788, 37.96394850096659]]]}}, {"type": "Feature", "properties": {"bin": "82598ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.4800430596855388, 14.157028398529341], [0.20521077410490549, 12.652177592020411], [1.3951802868305936, 11.529027262742579], [2.88810760150022, 11.881770859938996], [3.2085973421006972, 13.394482127990228], [1.9905382774544373, 14.547282830266617], [0.4800430596855388, 14.157028398529341]]]}}, {"type": "Feature", "properties": {"bin": "82790ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.97647809028823, 7.333044470647289], [-135.08706380110942, 6.020226890037461], [-134.56612250790545, 4.428418751970292], [-132.96499017492758, 4.15894262726533], [-131.8764059133603, 5.451878044696868], [-132.36662828027315, 7.033811072885346], [-133.97647809028823, 7.333044470647289]]]}}, {"type": "Feature", "properties": {"bin": "824607fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-169.9243337317964, 26.74642393511309], [-170.90789986259958, 25.29296844860804], [-170.09135871848687, 23.864738164743965], [-168.33134088501728, 23.84849352766288], [-167.32885183001426, 25.284631530462654], [-168.1220069918596, 26.72791937240743], [-169.9243337317964, 26.74642393511309]]]}}, {"type": "Feature", "properties": {"bin": "821887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.595800131116476, 52.04720271172597], [-25.876022418714438, 51.11545209860288], [-25.62514366457305, 49.45304649345546], [-23.218947610760186, 48.71933132364778], [-20.99201420363153, 49.623581785392574], [-21.117043703327738, 51.28757960329347], [-23.595800131116476, 52.04720271172597]]]}}, {"type": "Feature", "properties": {"bin": "825cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.9435787625393, 5.657346049215927], [-154.0294052002189, 4.260374459536216], [-153.3434481200073, 2.639757648171126], [-151.58496890462717, 2.401486228670031], [-150.49155875603358, 3.7810475727004382], [-151.1632794626658, 5.416101768663186], [-152.9435787625393, 5.657346049215927]]]}}, {"type": "Feature", "properties": {"bin": "822707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-95.79137349178644, 52.64053149916542], [-98.16677017140223, 51.748943418389956], [-97.99376183551965, 50.03861533272605], [-95.64460844466419, 49.199828955070046], [-93.34572179440788, 50.02013421973969], [-93.31737510980903, 51.74779836660865], [-95.79137349178644, 52.64053149916542]]]}}, {"type": "Feature", "properties": {"bin": "825e67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.54240534349367, 10.713529192008048], [-61.311970379320336, 11.802479758743598], [-61.536046591014745, 13.315163322992678], [-62.9767889197242, 13.72194673042217], [-64.17932163612504, 12.644368063884077], [-63.969048649310444, 11.148939539160773], [-62.54240534349367, 10.713529192008048]]]}}, {"type": "Feature", "properties": {"bin": "82399ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.663484427536879, 30.943314294985814], [-9.43663506793057, 30.16505875954292], [-9.574145573053787, 28.431000744101212], [-8.002013895306682, 27.50290866718829], [-6.290521719128034, 28.269153054310298], [-6.090862557941383, 29.974950285731808], [-7.663484427536879, 30.943314294985814]]]}}, {"type": "Feature", "properties": {"bin": "826e6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.14733890691912, 6.840368064350915], [-123.99432926598497, 7.852239329791246], [-124.40041038231014, 9.435131370225317], [-125.98105129149988, 9.974630412009526], [-127.11406580207421, 8.93189150044687], [-126.68738202271085, 7.38055834751662], [-125.14733890691912, 6.840368064350915]]]}}, {"type": "Feature", "properties": {"bin": "8212affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.4343957784845, 56.597935865927674], [-126.77556256323751, 55.294979787274414], [-125.47029403893907, 53.86554915925203], [-122.90647779494316, 53.666152288031306], [-121.4424549287285, 54.916649815151494], [-122.65351099974262, 56.41990601942024], [-125.4343957784845, 56.597935865927674]]]}}, {"type": "Feature", "properties": {"bin": "820e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.68030763628063, 59.91091889403277], [-84.03064131015812, 59.30197107644877], [-84.54003278821038, 57.52364604763144], [-81.99532750060942, 56.37872863204192], [-78.88333974817974, 56.93401450819165], [-78.08810459236533, 58.68438659429741], [-80.68030763628063, 59.91091889403277]]]}}, {"type": "Feature", "properties": {"bin": "8266d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.69873601500697, 2.938488002465914], [-80.13485884440162, 1.975921533508648], [-79.98282112851228, 0.2453348702965925], [-78.37997625701571, -0.5122773661661794], [-76.94635540018261, 0.4689550165235644], [-77.11276630482627, 2.188683914495084], [-78.69873601500697, 2.938488002465914]]]}}, {"type": "Feature", "properties": {"bin": "821b6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-29.48076351245214, 56.51908583615772], [-31.834255482080355, 55.52464282034987], [-31.397541405949717, 53.96605569703895], [-28.744431158745435, 53.389266182063054], [-26.42076829683686, 54.3511790526565], [-26.717135331370347, 55.920899120684865], [-29.48076351245214, 56.51908583615772]]]}}, {"type": "Feature", "properties": {"bin": "821f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.799628381983899, 57.64025558472873], [8.115982248879545, 56.27047063504287], [10.065692337418177, 55.394878703545615], [12.739822958959078, 55.86732673911362], [13.543635944035909, 57.232113806596516], [11.555977692900706, 58.130531165851394], [8.799628381983899, 57.64025558472873]]]}}, {"type": "Feature", "properties": {"bin": "8226e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.96815321456646, 36.80475078030147], [-95.16791149025018, 37.65373770677368], [-95.24686215665145, 39.326802934475495], [-97.18874577054888, 40.16427574631937], [-99.03502941157414, 39.30873979949333], [-98.89309474489009, 37.623022162475365], [-96.96815321456646, 36.80475078030147]]]}}, {"type": "Feature", "properties": {"bin": "827837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.3063271216714, 3.3728285055965976], [-138.41334504536485, 2.0439831300982663], [-137.86358131600468, 0.4801895435352829], [-136.23472563555197, 0.2479561421530336], [-135.1449381643881, 1.5542489892212077], [-135.66632317092515, 3.1148956594505575], [-137.3063271216714, 3.3728285055965976]]]}}, {"type": "Feature", "properties": {"bin": "820c77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.2025168456928, 63.94824319117261], [-152.4183097927639, 63.127542203250044], [-152.50207582319376, 61.583334933903004], [-149.73449372095553, 60.88463682809786], [-146.75453741148945, 61.634868831940416], [-146.3131757834004, 63.14954357725288], [-149.2025168456928, 63.94824319117261]]]}}, {"type": "Feature", "properties": {"bin": "82489ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-98.2478790417796, 28.91983357142504], [-96.56734672388517, 29.863730793699244], [-96.66289038040519, 31.619530626908528], [-98.49387337240059, 32.44435492016832], [-100.21178382023747, 31.48993750697799], [-100.06121499284501, 29.72188188001257], [-98.2478790417796, 28.91983357142504]]]}}, {"type": "Feature", "properties": {"bin": "821317fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-131.02866675742908, 66.52454287691424], [-132.5204889558626, 65.0592552125662], [-130.49070518672232, 63.68951483416985], [-127.05551120516839, 63.696799052423984], [-125.27817426355625, 65.1121109486552], [-127.19315775452921, 66.5723146305472], [-131.02866675742908, 66.52454287691424]]]}}, {"type": "Feature", "properties": {"bin": "823517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-29.21416364598153, 43.985269382071], [-31.146604373261287, 42.89421219412601], [-30.802691704224248, 41.14595056644986], [-28.619292548599276, 40.47612715712832], [-26.707708198133105, 41.5365449910773], [-26.956907080132776, 43.296309122992405], [-29.21416364598153, 43.985269382071]]]}}, {"type": "Feature", "properties": {"bin": "82069ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.216875931789744, 73.73999486146171], [-64.40069409805079, 73.74945312855914], [-66.90449925088507, 72.20470505499345], [-63.738124912818805, 70.76244135605083], [-58.434646100628136, 70.75911732687983], [-55.5126065144222, 72.19236641755126], [-58.216875931789744, 73.73999486146171]]]}}, {"type": "Feature", "properties": {"bin": "825737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.15515344114197, 26.664335930022155], [-38.58225950484946, 25.532963203214337], [-38.17264520659288, 23.843250262376916], [-36.38755910202406, 23.25709445650037], [-34.95379621375673, 24.349751390036257], [-35.31019418406649, 26.066750775842593], [-37.15515344114197, 26.664335930022155]]]}}, {"type": "Feature", "properties": {"bin": "826ee7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-116.72371359003716, 8.191151613211591], [-115.4163087927026, 9.229163040531638], [-115.73942267760299, 10.88831392366015], [-117.40188724060047, 11.488096579012108], [-118.70272085347221, 10.41842248642542], [-118.34853420742208, 8.781042023506567], [-116.72371359003716, 8.191151613211591]]]}}, {"type": "Feature", "properties": {"bin": "823917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.657648270046371, 38.88943198318385], [-10.618161068438342, 38.139996370486614], [-10.744488220052984, 36.383229951792835], [-8.989073467751014, 35.40191572642888], [-7.10189392414001, 36.141695300502455], [-6.898505607651506, 37.87174338190937], [-8.657648270046371, 38.88943198318385]]]}}, {"type": "Feature", "properties": {"bin": "824427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.81165399779584, 21.272185778116043], [-85.30333926122431, 22.1031494208665], [-85.23235890098277, 23.784705281290822], [-86.70979180480131, 24.66558872087198], [-88.26582217021158, 23.8323750958128], [-88.29590003003727, 22.120730739616338], [-86.81165399779584, 21.272185778116043]]]}}, {"type": "Feature", "properties": {"bin": "82196ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.948742151508293, 54.288286693229196], [2.5927890313053683, 53.99775155222293], [2.1013139839474526, 52.517133978422294], [3.8811335596706225, 51.36037619595015], [6.259687055981991, 51.96477015603749], [6.848228907047912, 53.43156035343158], [4.948742151508293, 54.288286693229196]]]}}, {"type": "Feature", "properties": {"bin": "82581ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.980953372995424, 12.584545802489613], [5.614833472212566, 11.068219758915488], [6.801169317009782, 9.899743070823426], [8.37386952112726, 10.215393994209876], [8.784937126674635, 11.730952307865815], [7.578742434535621, 12.932375898547791], [5.980953372995424, 12.584545802489613]]]}}, {"type": "Feature", "properties": {"bin": "823a07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.66606313996468, 31.61388463940947], [-51.833549717973476, 30.369759735577475], [-51.204112801797436, 28.791538603864225], [-49.43682319787224, 28.41474116542186], [-48.230176146625006, 29.6304625413481], [-48.827864381282076, 31.251634260843225], [-50.66606313996468, 31.61388463940947]]]}}, {"type": "Feature", "properties": {"bin": "823a0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.230176146625006, 29.6304625413481], [-49.43682319787224, 28.41474116542186], [-48.85114796415727, 26.81392401414519], [-47.0923408040686, 26.38772732737337], [-45.85271625381474, 27.571603218736797], [-46.40285280120916, 29.213646415470354], [-48.230176146625006, 29.6304625413481]]]}}, {"type": "Feature", "properties": {"bin": "8244a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.50824227877347, 23.53306637345422], [-78.07326534839831, 24.240110473740863], [-77.90890704647856, 25.835600882522186], [-79.21173238204558, 26.76149177643567], [-80.69856484471991, 26.062694311272747], [-80.82969048713068, 24.429618069495433], [-79.50824227877347, 23.53306637345422]]]}}, {"type": "Feature", "properties": {"bin": "824947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-115.71178024538322, 18.84876895256059], [-114.2769964685785, 19.988789485875216], [-114.6139162190153, 21.751193764039098], [-116.42453443093213, 22.353860721798863], [-117.85371711875625, 21.187585569854463], [-117.4789627252278, 19.44534384887105], [-115.71178024538322, 18.84876895256059]]]}}, {"type": "Feature", "properties": {"bin": "823727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.5818136427099, 44.32238390105542], [-150.91019328825146, 43.275452288142326], [-150.11071777863367, 42.00283554512318], [-148.00791887965894, 41.7761498095176], [-146.67719965160308, 42.820280398955475], [-147.45009391663316, 44.09362423911827], [-149.5818136427099, 44.32238390105542]]]}}, {"type": "Feature", "properties": {"bin": "820e67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.80048917841768, 56.857824813184145], [-67.0401835755479, 56.688714571652135], [-68.28522476924562, 55.04028786795802], [-66.45904513881723, 53.627026853428696], [-63.47668855301806, 53.792596824003354], [-62.07826603752657, 55.37451169620836], [-63.80048917841768, 56.857824813184145]]]}}, {"type": "Feature", "properties": {"bin": "8246d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.43948868920074, 18.032685472794192], [-171.35903250000362, 16.594714504739436], [-170.60631287174178, 15.085552355448257], [-168.92446494544097, 14.991878567626506], [-167.97074138887004, 16.433715008297277], [-168.73232910050652, 17.965444137511255], [-170.43948868920074, 18.032685472794192]]]}}, {"type": "Feature", "properties": {"bin": "82552ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.161724346494458, 25.799576124170038], [-9.833621585568235, 24.999061630613877], [-9.956159557263328, 23.307035475663525], [-8.463757820412326, 22.441035492513045], [-6.846165692887986, 23.225810445647934], [-6.667778136025995, 24.89175633085534], [-8.161724346494458, 25.799576124170038]]]}}, {"type": "Feature", "properties": {"bin": "825f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.60533221178194, -0.6800844776357332], [-55.281315597134295, 0.43376906575902824], [-55.53888991472084, 2.1447104418903606], [-57.1071521736534, 2.722889161039663], [-58.407717109778446, 1.6126106195395211], [-58.163640147998116, -0.07918007660184818], [-56.60533221178194, -0.6800844776357332]]]}}, {"type": "Feature", "properties": {"bin": "82381ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.8449020421237199, 32.04554500883067], [-1.1436797512903807, 30.382229579202342], [0.2609468260311339, 29.300374659234986], [2.005719972259752, 29.86576695279883], [2.368366542520371, 31.549004679734185], [0.9223182397122923, 32.64740444391725], [-0.8449020421237199, 32.04554500883067]]]}}, {"type": "Feature", "properties": {"bin": "826737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-75.99854824376126, 19.358823435394203], [-77.33699645198315, 18.638234975520675], [-77.18040807161505, 17.235914124795325], [-75.67323472194956, 16.56329171156416], [-74.34077908101102, 17.30450030127003], [-74.50920598820196, 18.69724247539238], [-75.99854824376126, 19.358823435394203]]]}}, {"type": "Feature", "properties": {"bin": "820977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.92371458148896, 69.5183057451554], [4.333799759509582, 70.77147478219023], [0.27113407636019593, 70.66929401337596], [-1.6665855042242044, 69.27385919190813], [0.2300394753996964, 68.07965221714933], [3.797763423479726, 68.21974142812381], [5.92371458148896, 69.5183057451554]]]}}, {"type": "Feature", "properties": {"bin": "826f47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-122.08687881482112, 0.2902799639423912], [-120.93986912329585, 1.1916042376329785], [-121.29811028782477, 2.6774916039214682], [-122.8261431354025, 3.2372943806693373], [-123.95923626332045, 2.3041178869669072], [-123.57901653086918, 0.8432313994062691], [-122.08687881482112, 0.2902799639423912]]]}}, {"type": "Feature", "properties": {"bin": "8270b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-178.02519665249852, 2.904037450579811], [-178.75430194899272, 1.6678524470432494], [-178.0788030954064, 0.25487352552885695], [-176.65933388469932, 0.045100606795099404], [-175.89683586323252, 1.2760872010763828], [-176.58691018405685, 2.7225189577904456], [-178.02519665249852, 2.904037450579811]]]}}, {"type": "Feature", "properties": {"bin": "825777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-29.59996504669809, 22.402302794308937], [-31.091644594267073, 21.368238778761015], [-30.824900138109847, 19.68621910642014], [-29.122334204782824, 19.02352684528573], [-27.642163004408513, 20.01898482104818], [-27.85218825464232, 21.71489548327453], [-29.59996504669809, 22.402302794308937]]]}}, {"type": "Feature", "properties": {"bin": "82078ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.75208462210931, 75.51366512257574], [-32.38101221037244, 76.36523586882251], [-37.58826504753479, 75.43002491227662], [-36.633558024842756, 73.76143134862352], [-31.54144413059165, 73.02706015961422], [-26.8675207176858, 73.85617864759342], [-26.75208462210931, 75.51366512257574]]]}}, {"type": "Feature", "properties": {"bin": "820fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-92.69122776477644, 71.22912791615148], [-97.23000455277177, 70.3002933656564], [-96.99022993728457, 68.55531035042452], [-92.87876133778914, 67.72301571200245], [-88.6546946602392, 68.55154767932004], [-88.22449223158009, 70.3043707747334], [-92.69122776477644, 71.22912791615148]]]}}, {"type": "Feature", "properties": {"bin": "823fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.974635637589914, 30.254840780701706], [8.48467266804086, 28.54775137450854], [9.874355349748093, 27.304951934557945], [11.775116633219884, 27.744884569895603], [12.325939409346134, 29.455163805425236], [10.916109798180177, 30.722958921689], [8.974635637589914, 30.254840780701706]]]}}, {"type": "Feature", "properties": {"bin": "8209b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.1982160405751507, 59.38388648698395], [-0.46713246181046286, 59.10359393295083], [-0.9315871635106042, 57.68949737459286], [1.1521975506221198, 56.58335438930745], [3.654940544612971, 56.86632091834963], [4.229785449235649, 58.25202580757624], [2.1982160405751507, 59.38388648698395]]]}}, {"type": "Feature", "properties": {"bin": "82071ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.917999921584816, 72.44381308655119], [-17.598970251255384, 73.52894986794209], [-22.4076276387758, 72.92129484534789], [-22.87247419114535, 71.27639212190138], [-19.232862920137123, 70.30015374059282], [-15.039943018127708, 70.86557109876065], [-13.917999921584816, 72.44381308655119]]]}}, {"type": "Feature", "properties": {"bin": "822637fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.91704879397018, 47.4715191071553], [-101.89482153568153, 46.57467022471413], [-101.60751328987197, 44.95769689846376], [-99.49064886689406, 44.2099989682831], [-97.55120876321169, 45.03825688469696], [-97.687441361477, 46.680813951539314], [-99.91704879397018, 47.4715191071553]]]}}, {"type": "Feature", "properties": {"bin": "821b57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-39.44283549241436, 55.39081936112413], [-41.51955822321931, 54.2010777974823], [-40.908619446419266, 52.61294145524302], [-38.30668550904336, 52.24163986312101], [-36.24721815647945, 53.38145255596482], [-36.810385749972156, 54.92187398695691], [-39.44283549241436, 55.39081936112413]]]}}, {"type": "Feature", "properties": {"bin": "829327fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-102.45674124927301, 1.0989978013306505], [-103.81640795556734, 0.16624060785959474], [-103.79661490555165, -1.4824169163632586], [-102.4016963567438, -2.2233436292223363], [-101.01278406865008, -1.2880989818264403], [-101.0482432081896, 0.3854149473714002], [-102.45674124927301, 1.0989978013306505]]]}}, {"type": "Feature", "properties": {"bin": "822a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.26705878743627, 39.12545066120517], [-84.27805490252695, 38.60875013059671], [-84.58516703208812, 37.099588896819945], [-82.99298425130044, 36.123995835616405], [-81.06844866997488, 36.59871874543619], [-80.65177495480032, 38.08929821612251], [-82.26705878743627, 39.12545066120517]]]}}, {"type": "Feature", "properties": {"bin": "822a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.60019678206457, 41.72421452886994], [-85.70319925935871, 41.16126851923316], [-85.97932795863905, 39.59650945572191], [-84.27805490252695, 38.60875013059671], [-82.26705878743627, 39.12545066120517], [-81.86750279548116, 40.674246416073814], [-83.60019678206457, 41.72421452886994]]]}}, {"type": "Feature", "properties": {"bin": "825547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.619089861216808, 20.72183235528512], [-7.184232148529101, 19.95235527007237], [-7.344548353615849, 18.349455296769857], [-5.987551711331904, 17.542834947432016], [-4.472880089647737, 18.297332900396515], [-4.2657934694023325, 19.872971694101718], [-5.619089861216808, 20.72183235528512]]]}}, {"type": "Feature", "properties": {"bin": "825ce7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.6055352346278, 9.88860029959115], [-150.73105699667752, 8.47470386919227], [-150.0539766756017, 6.8171071438850985], [-148.26936873119018, 6.564945101400148], [-147.14191112783993, 7.96294127703012], [-147.80006555587835, 9.628747217956542], [-149.6055352346278, 9.88860029959115]]]}}, {"type": "Feature", "properties": {"bin": "826ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.068876656179736, 0.9446533902388587], [20.76448426679086, 2.4912777849399794], [19.77031774923299, 3.777844681142865], [18.099816440714942, 3.5346227999232087], [17.401552408456116, 2.0129447691512135], [18.375633862528336, 0.7096114806741792], [20.068876656179736, 0.9446533902388587]]]}}, {"type": "Feature", "properties": {"bin": "829337fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.17323884809628, 0.8701881901666535], [-106.49438556259688, -0.04617220772959319], [-106.48935044767602, -1.6670215766999856], [-105.14865422307194, -2.399389801338324], [-103.79661490555165, -1.4824169163632586], [-103.81640795556734, 0.16624060785959474], [-105.17323884809628, 0.8701881901666535]]]}}, {"type": "Feature", "properties": {"bin": "827807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-135.1449381643881, 1.5542489892212077], [-136.23472563555197, 0.2479561421530336], [-135.71310571565425, -1.2749131152425952], [-134.13022452459796, -1.4878374532303014], [-133.06006141444146, -0.2050918264519519], [-133.55280359208382, 1.3136684078902414], [-135.1449381643881, 1.5542489892212077]]]}}, {"type": "Feature", "properties": {"bin": "825507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.400658379594104, 25.886179643136675], [-13.082020177497345, 25.039429603403317], [-13.144989535729147, 23.326587938836802], [-11.587036473562442, 22.48058908346514], [-9.956159557263328, 23.307035475663525], [-9.833621585568235, 24.999061630613877], [-11.400658379594104, 25.886179643136675]]]}}, {"type": "Feature", "properties": {"bin": "8222cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-172.98321073965715, 53.34160518458369], [-171.552341479114, 54.61584353944161], [-172.87528235333068, 56.05152419601555], [-175.74821876841347, 56.19652224584303], [-177.14961918827072, 54.88965531307961], [-175.7140983285267, 53.47087769640529], [-172.98321073965715, 53.34160518458369]]]}}, {"type": "Feature", "properties": {"bin": "827537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.01399844347048, 11.545295975414751], [-5.41203547095337, 10.811137991239525], [-5.58264265299675, 9.401522016005323], [-4.392258230519247, 8.747781221106653], [-3.071080368716595, 9.072581251751163], [-2.8618420364343797, 10.477113125901752], [-4.01399844347048, 11.545295975414751]]]}}, {"type": "Feature", "properties": {"bin": "823f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.325939409346134, 29.455163805425236], [11.775116633219884, 27.744884569895603], [13.141299636275793, 26.45499699092275], [15.071232200574926, 26.84934226485555], [15.679352391342839, 28.55677300195445], [14.301516597265826, 29.87332454274621], [12.325939409346134, 29.455163805425236]]]}}, {"type": "Feature", "properties": {"bin": "824c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.33911590200783, 23.167939348431293], [-69.56700589708842, 22.59414758870677], [-69.38326850163935, 21.326183525747375], [-67.96331514047147, 20.643702793693436], [-66.7503445100982, 21.23820775000707], [-66.94208118849998, 22.4941252235017], [-68.33911590200783, 23.167939348431293]]]}}, {"type": "Feature", "properties": {"bin": "827067fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.50206600741032, 6.965300722104553], [-164.48306086680194, 5.572189236997058], [-163.7600963130254, 3.9909149093848106], [-162.05566024565402, 3.777935513689746], [-161.05079070243565, 5.160339562870666], [-161.77338167921764, 6.766536253596437], [-163.50206600741032, 6.965300722104553]]]}}, {"type": "Feature", "properties": {"bin": "825c0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.14588215335624, 12.977719267796031], [-150.28795295770135, 11.560016019822443], [-149.6055352346278, 9.88860029959115], [-147.80006555587835, 9.628747217956542], [-146.65685980055636, 11.032728669471924], [-147.31930150500347, 12.71003475414825], [-149.14588215335624, 12.977719267796031]]]}}, {"type": "Feature", "properties": {"bin": "826a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.375194264553155, -1.9668709126119441], [21.07832382300607, -0.38589810886387704], [20.068876656179736, 0.9446533902388587], [18.375633862528336, 0.7096114806741792], [17.669408104914123, -0.8469844525190846], [18.658673787739012, -2.1928551242561527], [20.375194264553155, -1.9668709126119441]]]}}, {"type": "Feature", "properties": {"bin": "826f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-117.58457081295764, -1.3777427146043668], [-116.38458272137778, -0.493531701214469], [-116.69387774785909, 0.9781516831001128], [-118.22978761288444, 1.5466127001194412], [-119.4228265775777, 0.6308012313360579], [-119.08761734868692, -0.8214484264912933], [-117.58457081295764, -1.3777427146043668]]]}}, {"type": "Feature", "properties": {"bin": "828f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-83.04540989966834, 0.019087365036244645], [-84.51636563102011, -0.9705107901420124], [-84.38581690804618, -2.735045602101045], [-82.7679303846353, -3.506672345286479], [-81.29244201833737, -2.5025276890360852], [-81.43914057432434, -0.7417954439430038], [-83.04540989966834, 0.019087365036244645]]]}}, {"type": "Feature", "properties": {"bin": "8202f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-115.60168302411815, 75.13310683752093], [-119.31832121360138, 73.77002624235216], [-117.21991524403697, 72.2323624142716], [-112.00606480286443, 71.961337573172], [-108.05856763491963, 73.20482881456269], [-109.45640772223801, 74.83432166792291], [-115.60168302411815, 75.13310683752093]]]}}, {"type": "Feature", "properties": {"bin": "8246cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-165.2319385415029, 17.78073721860328], [-166.23331786780133, 16.32990995056909], [-165.47608510831202, 14.761008633426568], [-163.71455965998953, 14.623074892227512], [-162.6847583044768, 16.07340139283218], [-163.4439840974131, 17.66217587168674], [-165.2319385415029, 17.78073721860328]]]}}, {"type": "Feature", "properties": {"bin": "820317fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.60705376322537, 86.82226590916515], [-165.37097529057684, 85.96139195458106], [-161.89171801085922, 84.22628942426208], [-147.98384331245998, 83.36220061113471], [-133.35053018344294, 83.87786688070946], [-125.69943283756717, 85.46743869375132], [-141.60705376322537, 86.82226590916515]]]}}, {"type": "Feature", "properties": {"bin": "82022ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.36675955715693, 81.22981199996262], [-100.2137325658639, 80.31934275103156], [-99.38613866897518, 78.7166441202498], [-92.03153542386681, 78.00257544912581], [-84.3489542490998, 78.73560128535237], [-82.86128355932819, 80.33224174967269], [-91.36675955715693, 81.22981199996262]]]}}, {"type": "Feature", "properties": {"bin": "8246c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.76285072941627, 19.41349272810542], [-168.73232910050652, 17.965444137511255], [-167.97074138887004, 16.433715008297277], [-166.23331786780133, 16.32990995056909], [-165.2319385415029, 17.78073721860328], [-165.99903845653682, 19.33261483546742], [-167.76285072941627, 19.41349272810542]]]}}, {"type": "Feature", "properties": {"bin": "826ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-101.25402637600651, 5.242655883540775], [-99.85908512900879, 6.202793501448535], [-99.98131321467868, 7.817460742770009], [-101.53659364598748, 8.4752363140098], [-102.95272811818845, 7.488601711468147], [-102.79248537339087, 5.871414086247641], [-101.25402637600651, 5.242655883540775]]]}}, {"type": "Feature", "properties": {"bin": "820c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-166.24629184995987, 65.42493370722553], [-169.09171800224811, 64.21420040783377], [-168.12750909135477, 62.65341059232736], [-164.7032104038009, 62.26771211347016], [-161.92108841441055, 63.37119804869793], [-162.48230614711403, 64.96224411051777], [-166.24629184995987, 65.42493370722553]]]}}, {"type": "Feature", "properties": {"bin": "820f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.6546946602392, 68.55154767932004], [-92.87876133778914, 67.72301571200245], [-92.95365535880394, 65.9504622878471], [-89.34800004677803, 65.00573810542858], [-85.43798273927328, 65.7492030114996], [-84.82657304561398, 67.51572711354028], [-88.6546946602392, 68.55154767932004]]]}}, {"type": "Feature", "properties": {"bin": "826647fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.74873900594572, 6.033340161196327], [-70.06119344193219, 5.152720140222422], [-69.86749211546083, 3.508740509701639], [-68.35167465662009, 2.7687426994117534], [-67.05562916685668, 3.673349363486126], [-67.25859951377655, 5.293772477765441], [-68.74873900594572, 6.033340161196327]]]}}, {"type": "Feature", "properties": {"bin": "821d9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-151.77485945484133, 50.02578390182839], [-150.30701544531357, 50.980147810796005], [-150.78485025733843, 52.45847760363215], [-152.85036328561898, 53.00387964769292], [-154.37896452489522, 52.0322492170176], [-153.78137213372952, 50.5331018823282], [-151.77485945484133, 50.02578390182839]]]}}, {"type": "Feature", "properties": {"bin": "826d87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-101.68340902356329, 10.134824628168149], [-100.2354302710271, 11.131944155998383], [-100.36757453557044, 12.827491054410926], [-101.98883426368867, 13.529865827842766], [-103.45893481745269, 12.507671466950608], [-103.28578914212041, 10.808886602015805], [-101.68340902356329, 10.134824628168149]]]}}, {"type": "Feature", "properties": {"bin": "82030ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-70.97296764314038, 84.9900045106299], [-85.79610107555276, 86.15685374717187], [-105.24054447178555, 85.23272597621758], [-102.68417511955269, 83.57676487745285], [-90.38109747487815, 82.85349004122665], [-77.10300574070003, 83.45180768453403], [-70.97296764314038, 84.9900045106299]]]}}, {"type": "Feature", "properties": {"bin": "8238a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.341769247156946, 30.69897412778907], [-6.090862557941383, 29.974950285731808], [-6.290521719128034, 28.269153054310298], [-4.799371159116904, 27.320116005158603], [-3.114662381767312, 28.037213840900282], [-2.8582819730967257, 29.709916100270622], [-4.341769247156946, 30.69897412778907]]]}}, {"type": "Feature", "properties": {"bin": "820757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.825061753610598, 67.68783542166322], [-19.87138058908891, 68.6781104931821], [-23.60157937537406, 67.97841284565767], [-23.892709595930576, 66.33119738690922], [-20.904369925050815, 65.43480780172833], [-17.54611228138685, 66.09556511029363], [-16.825061753610598, 67.68783542166322]]]}}, {"type": "Feature", "properties": {"bin": "821a37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-46.153894348571015, 53.27988749468763], [-48.90245004939706, 53.53097474699997], [-50.656695898557885, 52.16478116101679], [-49.677342461499556, 50.623921801340465], [-47.10991574497763, 50.41741808369018], [-45.3487176632849, 51.70929202078847], [-46.153894348571015, 53.27988749468763]]]}}, {"type": "Feature", "properties": {"bin": "821d07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.02066847541138, 56.43854837966252], [-141.60005441192683, 55.11356183219612], [-139.93485445337882, 53.956041312341775], [-137.66961854003978, 54.056935365417615], [-136.91860621271735, 55.36583039668758], [-138.59856537789113, 56.59218158461872], [-141.02066847541138, 56.43854837966252]]]}}, {"type": "Feature", "properties": {"bin": "820cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-162.5312015530735, 56.29657975847275], [-164.67814121905045, 55.255364288533094], [-163.66453871424696, 53.77357145650912], [-161.20280595712075, 53.39506331466217], [-159.6501313308562, 54.468963096035075], [-159.93616052424343, 55.86968347918913], [-162.5312015530735, 56.29657975847275]]]}}, {"type": "Feature", "properties": {"bin": "828ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.457190901811316, -1.1757341527056744], [-58.163640147998116, -0.07918007660184818], [-58.407717109778446, 1.6126106195395211], [-59.93141807817387, 2.18518367824736], [-61.198553234044326, 1.090818369541872], [-60.968506734902, -0.5781518809279349], [-59.457190901811316, -1.1757341527056744]]]}}, {"type": "Feature", "properties": {"bin": "82702ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-168.56085487835682, 7.509361770299197], [-169.47006886290905, 6.133852289300174], [-168.7471011538475, 4.59255130445029], [-167.1082418963456, 4.398547338933423], [-166.16940101623453, 5.76714668637842], [-166.89835070351322, 7.336895738693886], [-168.56085487835682, 7.509361770299197]]]}}, {"type": "Feature", "properties": {"bin": "820d57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-148.0833465293283, 68.74753660342623], [-152.08848899496186, 67.9323760889138], [-152.21436038722487, 66.30376675680102], [-148.88117429384081, 65.5226585224212], [-145.2429863294452, 66.25795761948787], [-144.58584469120592, 67.84750279052138], [-148.0833465293283, 68.74753660342623]]]}}, {"type": "Feature", "properties": {"bin": "825177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.96455661482753, 15.177012077512154], [-136.11804768463242, 13.87687108109807], [-135.56734542131707, 12.22352609746689], [-133.89520751564908, 11.8841311452974], [-132.76399272848803, 13.171016325387123], [-133.28223276170738, 14.810317323575692], [-134.96455661482753, 15.177012077512154]]]}}, {"type": "Feature", "properties": {"bin": "8257b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-44.30785181510584, 22.680244947040375], [-45.517664324899634, 21.568161062707187], [-45.02510333627755, 19.985001304910526], [-43.35845326768038, 19.47766581370747], [-42.1273910671955, 20.552278072006814], [-42.58262772653777, 22.171592960461595], [-44.30785181510584, 22.680244947040375]]]}}, {"type": "Feature", "properties": {"bin": "8244cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-84.76157931053282, 33.83307477570318], [-83.10473588087598, 34.50570532924842], [-82.99298425130046, 36.12399583561639], [-84.58516703208814, 37.099588896819924], [-86.30321265174138, 36.43452708675165], [-86.36664811453322, 34.786557412272], [-84.76157931053282, 33.83307477570318]]]}}, {"type": "Feature", "properties": {"bin": "82164ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-177.04785603399293, 52.11351997662063], [-175.7140983285267, 53.47087769640529], [-177.14961918827072, 54.88965531307961], [179.98292411798795, 54.92942866152418], [178.69875344741448, 53.5403339414854], [-179.77426081854213, 52.14336728312945], [-177.04785603399293, 52.11351997662063]]]}}, {"type": "Feature", "properties": {"bin": "822337fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.64707805135708, 34.994006697107615], [-160.48492299324374, 36.29523398832093], [-161.15685475531342, 37.824845121610196], [-163.07049987720274, 38.057208066376795], [-164.25031517696226, 36.720007031080605], [-163.5001830119171, 35.18710215873745], [-161.64707805135708, 34.994006697107615]]]}}, {"type": "Feature", "properties": {"bin": "82372ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.67719965160308, 42.820280398955475], [-148.00791887965894, 41.7761498095176], [-147.24089725126495, 40.448473364640876], [-145.17236601571662, 40.16633027198891], [-143.8463112012841, 41.20828589932378], [-144.5827562775566, 42.534255833181305], [-146.67719965160308, 42.820280398955475]]]}}, {"type": "Feature", "properties": {"bin": "82384ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.558256056640367, 35.370372439869115], [10.010436136048828, 33.6695957366448], [11.466035435670609, 32.432807380976996], [13.488580338198274, 32.875015477254706], [14.102434482055234, 34.577453494704955], [12.629034522814488, 35.83666250378512], [10.558256056640367, 35.370372439869115]]]}}, {"type": "Feature", "properties": {"bin": "8282c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.786228442487397, 0.6114455260916615], [8.482576550430563, 2.080262305139526], [7.6564645218774645, 3.2930086626395654], [6.16472429995407, 3.047731638915501], [5.479174769865493, 1.6114802044966399], [6.274126691321663, 0.38835411272385156], [7.786228442487397, 0.6114455260916615]]]}}, {"type": "Feature", "properties": {"bin": "821b5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-36.24721815647945, 53.38145255596482], [-38.30668550904336, 52.24163986312101], [-37.73288919120908, 50.66238203129507], [-35.2061508945788, 50.20116253083384], [-33.13859201463761, 51.3100840981969], [-33.60149490344563, 52.91003251498282], [-36.24721815647945, 53.38145255596482]]]}}, {"type": "Feature", "properties": {"bin": "821ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-149.43557861506414, 48.0140822558988], [-148.0291839252244, 48.95326250873712], [-148.41135616643646, 50.423740032442545], [-150.30701544531357, 50.980147810796005], [-151.77485945484133, 50.02578390182839], [-151.28518247034273, 48.53066683377171], [-149.43557861506414, 48.0140822558988]]]}}, {"type": "Feature", "properties": {"bin": "826f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.86764703280863, -1.0544791906363784], [-113.62956694293806, -0.15815048527172418], [-113.91041930526723, 1.3300762483231612], [-115.45844642358085, 1.9059421128071417], [-116.69387774785909, 0.9781516831001128], [-116.38458272137778, -0.493531701214469], [-114.86764703280863, -1.0544791906363784]]]}}, {"type": "Feature", "properties": {"bin": "823657fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.91254742094029, 31.77748775234221], [-144.17342232410294, 30.569950882968847], [-143.48747996181842, 29.00514592848888], [-141.5712006716461, 28.65583905065987], [-140.32211982848523, 29.86133340283266], [-140.97655281371902, 31.4179221935752], [-142.91254742094029, 31.77748775234221]]]}}, {"type": "Feature", "properties": {"bin": "825927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.6439644283421987, 24.336012636497507], [-0.9247075498574123, 22.70745271184857], [0.37837010177590247, 21.584144094524866], [1.9975756661715074, 22.067175689495624], [2.333174076650933, 23.712268083774752], [0.9946771925498421, 24.858335834449555], [-0.6439644283421987, 24.336012636497507]]]}}, {"type": "Feature", "properties": {"bin": "826d27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-92.84255176159802, 15.990116090801749], [-91.34666601247939, 16.91944224617698], [-91.35930158406566, 18.62870219128589], [-92.90978151760524, 19.429272785277885], [-94.44385959071273, 18.48656784629608], [-94.38883574668255, 16.757152764871574], [-92.84255176159802, 15.990116090801749]]]}}, {"type": "Feature", "properties": {"bin": "8222d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-165.16758254311156, 52.61553723871915], [-163.66453871424696, 53.77357145650912], [-164.6781412190504, 55.25536428853311], [-167.33025396602406, 55.57664557167], [-168.84600679437185, 54.3885280453191], [-167.7012348928993, 52.910012163093796], [-165.16758254311156, 52.61553723871915]]]}}, {"type": "Feature", "properties": {"bin": "822917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.31833774102114, 31.5733101089987], [-118.8045281400983, 32.779437996638734], [-119.2405536967384, 34.468622114983724], [-121.23148237636386, 34.929531606928784], [-122.72620857351362, 33.706602821958555], [-122.25077245892894, 32.039957621034155], [-120.31833774102114, 31.5733101089987]]]}}, {"type": "Feature", "properties": {"bin": "824807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.96670069950615, 22.69762313040058], [-106.40172306237122, 23.787393380405025], [-106.63926091907, 25.57866592479228], [-108.49001079704972, 26.274980216839232], [-110.06759351145875, 25.16354330313356], [-109.78251683114335, 23.37812819569902], [-107.96670069950615, 22.69762313040058]]]}}, {"type": "Feature", "properties": {"bin": "826e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-112.91227920526617, 3.811124814066104], [-111.60261207801032, 4.7853989171504105], [-111.87119281208132, 6.382401917945722], [-113.48247274365892, 6.990262085366079], [-114.79273489503369, 5.9841973428794315], [-114.49178681867154, 4.402628997698175], [-112.91227920526617, 3.811124814066104]]]}}, {"type": "Feature", "properties": {"bin": "820677fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.21682213243743, 65.51895292313094], [-30.55163375490227, 66.2984876949583], [-33.74805583516024, 65.32857388241261], [-33.385597426618574, 63.64810218085884], [-30.235533410391586, 62.95578262933216], [-27.260802583913804, 63.86129336415286], [-27.21682213243743, 65.51895292313094]]]}}, {"type": "Feature", "properties": {"bin": "820277fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-84.3489542490998, 78.73560128535237], [-92.03153542386681, 78.00257544912581], [-92.25200352447476, 76.34572913617531], [-86.38868358716662, 75.44254150060515], [-79.77218211117395, 76.05043363626355], [-78.02907812352244, 77.66869995430305], [-84.3489542490998, 78.73560128535237]]]}}, {"type": "Feature", "properties": {"bin": "8275affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.101993445416778, 7.292742847021743], [-8.452416923081168, 6.5576953249960095], [-8.57230150554439, 5.228007003124849], [-7.378352602293609, 4.648343501025636], [-6.0644961087785445, 5.362739776582643], [-5.908652939747203, 6.676866573680896], [-7.101993445416778, 7.292742847021743]]]}}, {"type": "Feature", "properties": {"bin": "825f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.471472289641966, 4.9609469771054435], [-53.13888363248123, 6.0835117787729445], [-53.40381944858905, 7.752290994002559], [-54.98881007012607, 8.285431739399147], [-56.30082560392375, 7.1717454335508775], [-56.048636044455606, 5.516406586382274], [-54.471472289641966, 4.9609469771054435]]]}}, {"type": "Feature", "properties": {"bin": "824467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-93.05612094813121, 26.41651091529104], [-91.42807071534146, 27.300910278879517], [-91.4430599729998, 29.03851386192278], [-93.13595107051559, 29.913302560384633], [-94.80894774348357, 29.022701619768878], [-94.74356847987167, 27.264005617361743], [-93.05612094813121, 26.41651091529104]]]}}, {"type": "Feature", "properties": {"bin": "825faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.52641146973882, 5.519498520276425], [-50.17426434263091, 6.6440959746859], [-50.45097671273395, 8.3222861677665], [-52.068334893687656, 8.866885058754484], [-53.40381944858905, 7.752290994002559], [-53.13888363248123, 6.0835117787729445], [-51.52641146973882, 5.519498520276425]]]}}, {"type": "Feature", "properties": {"bin": "825cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.0539766756017, 6.8171071438850985], [-151.1632794626658, 5.416101768663186], [-150.49155875603358, 3.7810475727004382], [-148.72755525183405, 3.5363603344361167], [-147.6155744506251, 4.919506265065509], [-148.26936873119018, 6.564945101400148], [-150.0539766756017, 6.8171071438850985]]]}}, {"type": "Feature", "properties": {"bin": "824887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.77344403948946, 26.16294928512754], [-98.13038997835126, 27.145530873716577], [-98.2478790417796, 28.91983357142504], [-100.06121499284501, 29.72188188001257], [-101.7368398811343, 28.725749340868752], [-101.56658365814981, 26.941792658050694], [-99.77344403948946, 26.16294928512754]]]}}, {"type": "Feature", "properties": {"bin": "821247fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.1336337557699, 57.29953386667359], [-109.36840318710225, 56.17117643212055], [-108.67860715148952, 54.501947976968424], [-105.96116047976108, 53.910446928597366], [-103.7284720393682, 54.96090690766317], [-104.2011879229016, 56.67871024838654], [-107.1336337557699, 57.29953386667359]]]}}, {"type": "Feature", "properties": {"bin": "8212b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.52109292003715, 56.759266243298875], [-134.47061065778777, 55.42569632237935], [-132.94590244843872, 54.1296962308624], [-130.49874883503333, 54.094603984318475], [-129.39098759745883, 55.39379264929659], [-130.8792395280855, 56.76429684855173], [-133.52109292003715, 56.759266243298875]]]}}, {"type": "Feature", "properties": {"bin": "826e5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.59354902638586, 9.932303981475837], [-120.34537010007212, 10.997254705078609], [-120.7266797125519, 12.651392432778692], [-122.38342577554019, 13.212111339268919], [-123.61612475994315, 12.116447167783216], [-123.20856686223374, 10.490963765899702], [-121.59354902638586, 9.932303981475837]]]}}, {"type": "Feature", "properties": {"bin": "821b0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.0284796958655, 57.01374899247943], [-42.927551278941834, 57.43574006821968], [-45.04487078496987, 56.17207274471768], [-44.22969503324036, 54.56320665897177], [-41.51955822321931, 54.2010777974823], [-39.44283549241436, 55.39081936112413], [-40.0284796958655, 57.01374899247943]]]}}, {"type": "Feature", "properties": {"bin": "82345ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.885175001331245, 28.425520844846652], [-21.58870741439349, 27.45936036539565], [-21.487400930124174, 25.69485702884283], [-19.75080967850516, 24.900975863614626], [-18.084745335168467, 25.837418687063995], [-18.117856496785507, 27.59648823740311], [-19.885175001331245, 28.425520844846652]]]}}, {"type": "Feature", "properties": {"bin": "823617fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-151.60919679699137, 34.38825057175512], [-152.85043045733752, 33.12732053866677], [-152.08105897632794, 31.644146771138406], [-150.08967792128712, 31.42136958671297], [-148.84180936077178, 32.68171244177444], [-149.590621987698, 34.16516697174405], [-151.60919679699137, 34.38825057175512]]]}}, {"type": "Feature", "properties": {"bin": "827987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.37584056906547, 4.1509126830922725], [-143.494564317998, 2.7909720644293845], [-142.89153846775332, 1.1936474792774971], [-141.19432920076036, 0.9536012426282234], [-140.08561849994032, 2.291974587934788], [-140.66344163538272, 3.8915686583496854], [-142.37584056906547, 4.1509126830922725]]]}}, {"type": "Feature", "properties": {"bin": "826c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.35686761733812, 2.3876427036362102], [-104.00428251269403, 3.3329333146242335], [-104.17677408843613, 4.902363341799066], [-105.73785929017677, 5.52289507884508], [-107.10416387391813, 4.548448008485312], [-106.89596666042848, 2.9833434443845], [-105.35686761733812, 2.3876427036362102]]]}}, {"type": "Feature", "properties": {"bin": "8246affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-172.80282081176554, 22.373958345439743], [-173.7149352119206, 20.914636507194352], [-172.87373593176594, 19.551298255606305], [-171.20246278538642, 19.52204792028713], [-170.26790510748518, 20.96411360620605], [-171.04140370740063, 22.426394148675314], [-172.80282081176554, 22.373958345439743]]]}}, {"type": "Feature", "properties": {"bin": "826ecffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-117.75324252970825, 13.16717735764749], [-116.4096007174364, 14.267556942476563], [-116.7572158555163, 15.98204017480718], [-118.48186571718101, 16.572699557873406], [-119.81635416488027, 15.44264450870644], [-119.43635840633904, 13.751960336740883], [-117.75324252970825, 13.16717735764749]]]}}, {"type": "Feature", "properties": {"bin": "8254a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.51112287762693, 18.09329987490912], [-21.035077717360593, 17.181705178608077], [-20.954127741243205, 15.558562398793757], [-19.40378332385685, 14.850204433632182], [-17.910453055902636, 15.72965237496016], [-17.93691055163439, 17.348671597250807], [-19.51112287762693, 18.09329987490912]]]}}, {"type": "Feature", "properties": {"bin": "82508ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.45056711552216, 24.981552522367785], [-124.12161967242743, 26.206588984770875], [-124.59372767160691, 27.89317388664519], [-126.42326523231716, 28.323445670060703], [-127.72472027471471, 27.079340010362404], [-127.22559969441997, 25.42410473875133], [-125.45056711552216, 24.981552522367785]]]}}, {"type": "Feature", "properties": {"bin": "82888ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.91862197114955, 0.796995066489417], [-151.99646165774854, -0.5533618253805939], [-151.33549532085615, -2.1201981947478785], [-149.6119032555844, -2.3508402872747567], [-148.5300629727575, -1.021248866915232], [-149.1749589151811, 0.559499450859455], [-150.91862197114955, 0.796995066489417]]]}}, {"type": "Feature", "properties": {"bin": "820ec7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.56125119979579, 54.61940392882146], [-85.41812524692206, 53.98612260089093], [-85.79912266299574, 52.23415238022391], [-83.54839040696179, 51.133199609951006], [-80.86152290643048, 51.713011298750715], [-80.26114174680684, 53.444359199694155], [-82.56125119979579, 54.61940392882146]]]}}, {"type": "Feature", "properties": {"bin": "82356ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.47570007280164, 39.11281479140376], [-14.444905143937865, 38.29227083697541], [-14.488597695229425, 36.51527932188329], [-12.646960344628356, 35.57816880772348], [-10.744488220052984, 36.383229951792835], [-10.618161068438342, 38.139996370486614], [-12.47570007280164, 39.11281479140376]]]}}, {"type": "Feature", "properties": {"bin": "825567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.8296846549188386, 23.088405139235885], [-5.425053091334932, 22.344835336854807], [-5.619089861216808, 20.72183235528512], [-4.2657934694023325, 19.872971694101718], [-2.7247164865458315, 20.605455654403837], [-2.4838650119479646, 22.197541386302387], [-3.8296846549188386, 23.088405139235885]]]}}, {"type": "Feature", "properties": {"bin": "8256affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-38.386565736843274, 10.394304748957746], [-37.03959214744205, 11.445409112450497], [-37.349714987532586, 13.075038807532103], [-39.00212995471533, 13.66328880253161], [-40.353169969857724, 12.62785427357845], [-40.04817115200065, 10.988921320513176], [-38.386565736843274, 10.394304748957746]]]}}, {"type": "Feature", "properties": {"bin": "82460ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.32885183001426, 25.284631530462654], [-168.33134088501728, 23.84849352766288], [-167.54897294008614, 22.368890505837648], [-165.75801721847134, 22.310289219453917], [-164.72243604318498, 23.752623710762244], [-165.5099678028634, 25.247289003134537], [-167.32885183001426, 25.284631530462654]]]}}, {"type": "Feature", "properties": {"bin": "824677fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.45647827941468, 26.67326523622734], [-165.5099678028634, 25.247289003134537], [-164.72243604318498, 23.752623710762244], [-162.87942078907895, 23.6712242296957], [-161.79631743039621, 25.1017501245676], [-162.58477694202577, 26.609011588181062], [-164.45647827941468, 26.67326523622734]]]}}, {"type": "Feature", "properties": {"bin": "820c67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.99622095359533, 63.82043153371307], [-146.3131757834004, 63.14954357725288], [-146.75453741148945, 61.634868831940416], [-144.21849393921593, 60.8355637984744], [-141.17976142970744, 61.45362654839109], [-140.41211093213903, 62.92006172739451], [-142.99622095359533, 63.82043153371307]]]}}, {"type": "Feature", "properties": {"bin": "823827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.4162342628377134, 38.1159967227654], [-3.3113412530765816, 37.499409186860944], [-3.5848058032652497, 35.801655683177536], [-2.027587338475257, 34.757090726489174], [-0.21185444833696337, 35.37567101563383], [0.12380735772062498, 37.036562006618205], [-1.4162342628377134, 38.1159967227654]]]}}, {"type": "Feature", "properties": {"bin": "8255affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.395292355187806, 23.280106473767372], [-18.022267576148227, 22.372442159798524], [-17.992762466160794, 20.672196772789086], [-16.39648236469557, 19.88982836881392], [-14.809542528491999, 20.76971623997587], [-14.779224893207182, 22.458857233680753], [-16.395292355187806, 23.280106473767372]]]}}, {"type": "Feature", "properties": {"bin": "822b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.10036638488211, 45.982432195623886], [-80.49026058459525, 45.49319034661393], [-80.98225290216081, 43.86011974432308], [-79.22728063889042, 42.74453343115546], [-76.96625784448885, 43.19540780277763], [-76.33587020720189, 44.798412769531616], [-78.10036638488211, 45.982432195623886]]]}}, {"type": "Feature", "properties": {"bin": "82444ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-93.17771064982074, 31.65113143450283], [-91.4744264324729, 32.49146921600194], [-91.49084714009675, 34.200716475371294], [-93.26521175979074, 35.0901083935365], [-95.0175072313011, 34.246080564804586], [-94.94582051780957, 32.51690625937428], [-93.17771064982074, 31.65113143450283]]]}}, {"type": "Feature", "properties": {"bin": "8202a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.04688648576507, 78.00335975517777], [-136.84748880308013, 77.67574164226849], [-138.90927173359225, 76.02618077701297], [-134.4694707372978, 74.84437653663419], [-128.17765769680258, 75.14190865985594], [-125.02399484501407, 76.64501335405268], [-129.04688648576507, 78.00335975517777]]]}}, {"type": "Feature", "properties": {"bin": "8275a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.201402554173386, 9.317263995385268], [-9.58945482345044, 8.560616098966763], [-9.695281485000976, 7.173126163814278], [-8.452416923081168, 6.5576953249960095], [-7.101993445416778, 7.292742847021743], [-6.957444601114244, 8.66419747538798], [-8.201402554173386, 9.317263995385268]]]}}, {"type": "Feature", "properties": {"bin": "8234cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.899317214432266, 25.47207046015372], [-26.502889743075187, 24.45740428036553], [-26.311790466231407, 22.72417379561979], [-24.58004306611412, 21.999746230891233], [-23.00030278211108, 22.97915346313468], [-23.127994021036667, 24.717289317668993], [-24.899317214432266, 25.47207046015372]]]}}, {"type": "Feature", "properties": {"bin": "823627fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-147.78921817414013, 37.96593075912612], [-149.07764969870357, 36.809125279655824], [-148.32268669005546, 35.375414810094796], [-146.30526615922284, 35.100805036709424], [-145.01868074012842, 36.25645921182272], [-145.74636904346727, 37.68759229063255], [-147.78921817414013, 37.96593075912612]]]}}, {"type": "Feature", "properties": {"bin": "821c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.2857116488772, 48.39520829324245], [-144.88833503486788, 49.26868939406818], [-145.1678866251386, 50.71075583754964], [-146.94645290870835, 51.30809805677444], [-148.41135616643646, 50.423740032442545], [-148.0291839252244, 48.95326250873712], [-146.2857116488772, 48.39520829324245]]]}}, {"type": "Feature", "properties": {"bin": "823b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.50930388906969, 34.22804987657655], [-59.47891401600623, 32.952773542794844], [-58.749467188573, 31.486075315254425], [-57.06354032638824, 31.25023458834122], [-56.04085721353229, 32.50799128255545], [-56.755302961474435, 34.01968157852165], [-58.50930388906969, 34.22804987657655]]]}}, {"type": "Feature", "properties": {"bin": "82664ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.05562916685668, 3.673349363486126], [-68.35167465662009, 2.7687426994117534], [-68.15056559049286, 1.1069634457837287], [-66.64455573288102, 0.37603868715859007], [-65.3671297411811, 1.3040893213367288], [-65.57669249211234, 2.939512802057486], [-67.05562916685668, 3.673349363486126]]]}}, {"type": "Feature", "properties": {"bin": "82475ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.18262053679567, 29.531560988987913], [-165.25458796761674, 28.129236095197957], [-164.45647827941468, 26.67326523622734], [-162.58477694202577, 26.609011588181062], [-161.48281168369752, 28.01670291858373], [-162.28142468559858, 29.483142421765322], [-164.18262053679567, 29.531560988987913]]]}}, {"type": "Feature", "properties": {"bin": "825b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-178.83216957172675, 14.995319892920696], [-178.02847505316092, 16.433447263532464], [-178.95063664056067, 17.743332187238174], [179.28917726838105, 17.583962013973927], [178.50677685170746, 16.107726060451032], [179.46166464698828, 14.829162546143026], [-178.83216957172675, 14.995319892920696]]]}}, {"type": "Feature", "properties": {"bin": "8254b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-22.64474356474964, 17.902725167363144], [-24.143581846083386, 16.966276615610273], [-24.008238683057552, 15.34453752961922], [-22.428256968516997, 14.65689912671654], [-20.954127741243205, 15.558562398793757], [-21.035077717360593, 17.181705178608077], [-22.64474356474964, 17.902725167363144]]]}}, {"type": "Feature", "properties": {"bin": "820e77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.0549959056329, 58.11001927435266], [-72.39518626473647, 57.80385928059021], [-73.43847475450943, 56.097969987348556], [-71.35880410733455, 54.7541932069041], [-68.28522476924562, 55.04028786795802], [-67.0401835755479, 56.688714571652135], [-69.0549959056329, 58.11001927435266]]]}}, {"type": "Feature", "properties": {"bin": "82445ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.7794734704032, 31.59073781085478], [-88.10173760069402, 32.37535444162421], [-88.0658863098819, 34.05983621723471], [-89.75917248139794, 34.984893131397165], [-91.49084714009675, 34.200716475371294], [-91.4744264324729, 32.49146921600194], [-89.7794734704032, 31.59073781085478]]]}}, {"type": "Feature", "properties": {"bin": "8207b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.416534576215874, 79.62054525867497], [-16.54048563323215, 80.82228127123085], [-26.182285242096057, 80.41687275163915], [-26.424987503109225, 78.79660349043647], [-20.30919570668708, 77.80316131016781], [-13.578593545917547, 78.27816184803088], [-10.416534576215874, 79.62054525867497]]]}}, {"type": "Feature", "properties": {"bin": "82132ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-118.40104005742097, 69.3065014535011], [-120.99628117547238, 67.92537812637019], [-119.30038464838218, 66.37451114241149], [-115.31541356398044, 66.1193217908294], [-112.53575880038885, 67.41321684451043], [-113.88121184131037, 69.04816919557692], [-118.40104005742097, 69.3065014535011]]]}}, {"type": "Feature", "properties": {"bin": "825477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.006464265768987, 15.98598523372256], [-10.506567295793253, 15.187058911620383], [-10.605640043933498, 13.645345830474795], [-9.251135128038426, 12.92166325673315], [-7.794022418669754, 13.699301124664801], [-7.649183817068924, 15.22126557573289], [-9.006464265768987, 15.98598523372256]]]}}, {"type": "Feature", "properties": {"bin": "825947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.443478079873218, 22.23328539196474], [7.99840503877189, 20.57032700832011], [9.289964562104172, 19.32711432233708], [11.045964625133967, 19.71754470823835], [11.543750260400667, 21.38124691750292], [10.23354395677019, 22.6544560846675], [8.443478079873218, 22.23328539196474]]]}}, {"type": "Feature", "properties": {"bin": "82342ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-22.162636940443136, 36.41973845196904], [-24.011395014386597, 35.41886286650527], [-23.848420940607653, 33.619638572470286], [-21.91844433449385, 32.82179695820233], [-20.10838274495798, 33.794127804904804], [-20.18932139434465, 35.5917804234095], [-22.162636940443136, 36.41973845196904]]]}}, {"type": "Feature", "properties": {"bin": "8236dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-147.1876805905887, 25.145185646711305], [-148.3993034951798, 23.802778081163517], [-147.69594788211106, 22.16693900740581], [-145.80464293154424, 21.875719329468932], [-144.59575611918856, 23.21297703773573], [-145.27438067417734, 24.846356452935005], [-147.1876805905887, 25.145185646711305]]]}}, {"type": "Feature", "properties": {"bin": "8222dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-168.84600679437185, 54.3885280453191], [-167.33025396602406, 55.57664557167], [-168.0262941563394, 56.99746478128345], [-170.91139927061127, 57.26079683981887], [-172.87528235333068, 56.05152419601555], [-171.552341479114, 54.61584353944161], [-168.84600679437185, 54.3885280453191]]]}}, {"type": "Feature", "properties": {"bin": "820d8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-171.4567231620738, 67.39429182984122], [-174.29157888223213, 66.0652649892341], [-172.9029869884375, 64.50370485353399], [-169.09171800224811, 64.21420040783377], [-166.24629184995987, 65.42493370722553], [-167.19133009932668, 67.03819408473983], [-171.4567231620738, 67.39429182984122]]]}}, {"type": "Feature", "properties": {"bin": "826797fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-84.22460724315376, 14.689500183105539], [-85.63106856426799, 13.83685380982093], [-85.51233216294696, 12.312720418608667], [-83.97196306576556, 11.643422680449333], [-82.55962048497963, 12.514857149505502], [-82.6933501709634, 14.036239080135266], [-84.22460724315376, 14.689500183105539]]]}}, {"type": "Feature", "properties": {"bin": "82124ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-103.7284720393682, 54.96090690766317], [-105.96116047976108, 53.910446928597366], [-105.44903829772724, 52.22905600590294], [-102.90229770085304, 51.55677580791123], [-100.69641079632339, 52.530899361258335], [-101.00363618987954, 54.25138635108309], [-103.7284720393682, 54.96090690766317]]]}}, {"type": "Feature", "properties": {"bin": "821e07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.606046853462765, 49.899182136699345], [15.817383557718518, 48.388122500459744], [17.489487896493493, 47.23467882509988], [19.952960563687107, 47.57213992693463], [20.8228860838409, 49.07436692405009], [19.151349829527778, 50.24865423658935], [16.606046853462765, 49.899182136699345]]]}}, {"type": "Feature", "properties": {"bin": "82016ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.2362007418151957, 74.58292826837449], [1.1119051223096887, 75.70225329818776], [-1.9032774208520538, 77.03453024906975], [-9.023350332015394, 77.08353021671479], [-10.98528397730722, 75.55801829625113], [-7.439780394344702, 74.36066046087873], [-2.2362007418151957, 74.58292826837449]]]}}, {"type": "Feature", "properties": {"bin": "824d2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.411797076102026, 27.82627207600714], [-62.22129188207137, 26.650091795812536], [-61.530619218873426, 25.25303888659566], [-60.03617531999626, 24.987464800988757], [-59.179808817821964, 26.14477622104115], [-59.86349564666303, 27.5872470180961], [-61.411797076102026, 27.82627207600714]]]}}, {"type": "Feature", "properties": {"bin": "82020ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.38613866897518, 78.7166441202498], [-105.80711566269225, 77.63589974092119], [-104.5305724578326, 76.01643426121936], [-98.2518918239992, 75.42296242259827], [-92.25200352447476, 76.34572913617531], [-92.03153542386681, 78.00257544912581], [-99.38613866897518, 78.7166441202498]]]}}, {"type": "Feature", "properties": {"bin": "820ecffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.86152290643048, 51.713011298750715], [-83.54839040696179, 51.133199609951006], [-83.98131184812848, 49.4132499685268], [-81.91962699890831, 48.295316381881364], [-79.38815567758773, 48.82734490582738], [-78.76843600642383, 50.52262864502626], [-80.86152290643048, 51.713011298750715]]]}}, {"type": "Feature", "properties": {"bin": "82591ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.3600267516376539, 18.833358840282322], [1.0570071254543887, 17.249308733090295], [2.302842809205857, 16.098688642959495], [3.881187194444415, 16.504758055404427], [4.2342944226787855, 18.09884525514369], [2.959078382640479, 19.277482047407386], [1.3600267516376539, 18.833358840282322]]]}}, {"type": "Feature", "properties": {"bin": "827977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-131.26895225504003, 8.320295172124071], [-132.36662828027315, 7.033811072885346], [-131.8764059133603, 5.451878044696868], [-130.3198801019625, 5.169706959304147], [-129.24727943173093, 6.437443983847103], [-129.7059240696347, 8.005785868109154], [-131.26895225504003, 8.320295172124071]]]}}, {"type": "Feature", "properties": {"bin": "824c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-74.48144424711094, 21.58482898466105], [-75.81870531040758, 20.90527062510746], [-75.99854824376126, 19.358823435394203], [-74.50920598820196, 18.69724247539238], [-73.19920130289877, 19.39140624075669], [-73.3708000719215, 20.726750647129002], [-74.48144424711094, 21.58482898466105]]]}}, {"type": "Feature", "properties": {"bin": "8246dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.97074138887004, 16.433715008297277], [-168.92446494544097, 14.991878567626506], [-168.17288759575646, 13.445604337884351], [-166.4611269077316, 13.318620675199552], [-165.47608510831202, 14.761008633426568], [-166.23331786780133, 16.32990995056909], [-167.97074138887004, 16.433715008297277]]]}}, {"type": "Feature", "properties": {"bin": "827e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.89349194600567, 4.487656027021082], [179.19837461990804, 3.249005031447237], [179.86631108740835, 1.8554926185476572], [-178.75430194899272, 1.6678524470432494], [-178.02519665249852, 2.904037450579811], [-178.709251115884, 4.330806899373275], [179.89349194600567, 4.487656027021082]]]}}, {"type": "Feature", "properties": {"bin": "823ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.404954355833446, 25.517872533302246], [15.800827802347936, 23.821410412145514], [17.09269537453719, 22.484493199126963], [18.9912827255566, 22.815134716422165], [19.644313864382354, 24.500416440761107], [18.351304577591986, 25.86678026136113], [16.404954355833446, 25.517872533302246]]]}}, {"type": "Feature", "properties": {"bin": "822a77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.4481422021679, 37.82209134722366], [-67.51727434627897, 37.60542520224807], [-68.31221322379417, 36.19757453714417], [-67.1099978516946, 35.054476704732046], [-65.148533971287, 35.263901159294605], [-64.2856909345049, 36.62336060741758], [-65.4481422021679, 37.82209134722366]]]}}, {"type": "Feature", "properties": {"bin": "826e27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-116.69387774785909, 0.9781516831001128], [-115.45844642358085, 1.9059421128071417], [-115.7639737341466, 3.4338527305639226], [-117.33343542553223, 4.0148800533290485], [-118.5630833098903, 3.054984348759607], [-118.22978761288444, 1.5466127001194412], [-116.69387774785909, 0.9781516831001128]]]}}, {"type": "Feature", "properties": {"bin": "820d47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.45517326314936, 68.46826523199256], [-144.58584469120592, 67.84750279052138], [-145.2429863294452, 66.25795761948787], [-142.26222118675372, 65.34943666334875], [-138.56609550799624, 65.91667259421638], [-137.4440407115714, 67.44108143110289], [-140.45517326314936, 68.46826523199256]]]}}, {"type": "Feature", "properties": {"bin": "822237fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.39292691687498, 42.461841701752746], [-162.10940467531475, 43.73438430757914], [-162.91193598702054, 45.28312862796475], [-165.09588802278773, 45.56276641090315], [-166.3952477588442, 44.25787410591012], [-165.49704574163763, 42.70634072302161], [-163.39292691687498, 42.461841701752746]]]}}, {"type": "Feature", "properties": {"bin": "821c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.3887685420865, 45.54008958515864], [-149.03725810376284, 46.530830214693445], [-149.43557861506414, 48.0140822558988], [-151.28518247034273, 48.53066683377171], [-152.6912970057912, 47.52211742276066], [-152.19300297142425, 46.015249635730314], [-150.3887685420865, 45.54008958515864]]]}}, {"type": "Feature", "properties": {"bin": "827c4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-29.544827172549255, 3.9291342231117787], [-28.261803843108698, 5.002988319007177], [-28.580213469784795, 6.682687019887302], [-30.182215330720936, 7.309910883327079], [-31.48278424491017, 6.250935042854491], [-31.164230201202276, 4.550036402249636], [-29.544827172549255, 3.9291342231117787]]]}}, {"type": "Feature", "properties": {"bin": "82498ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-102.65146201728247, 20.54828201098892], [-101.0849013638912, 21.581818203534908], [-101.24082187658792, 23.366309676892225], [-103.01162576662247, 24.12172726544782], [-104.60215818719875, 23.06853297688241], [-104.39816566946544, 21.280265937450892], [-102.65146201728247, 20.54828201098892]]]}}, {"type": "Feature", "properties": {"bin": "827197fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.9213645641613, 7.167156589199026], [179.21716082489448, 5.889921754313888], [179.89349194600567, 4.487656027021082], [-178.709251115884, 4.330806899373275], [-177.97021239635407, 5.608348813075146], [-178.663040902774, 7.042864944218463], [179.9213645641613, 7.167156589199026]]]}}, {"type": "Feature", "properties": {"bin": "827187fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-177.91379662111206, 8.357161718023372], [-178.663040902774, 7.042864944218463], [-177.97021239635407, 5.608348813075146], [-176.51260750188447, 5.456990966851024], [-175.72830853489674, 6.771496860360236], [-176.43635201382986, 8.237540351059174], [-177.91379662111206, 8.357161718023372]]]}}, {"type": "Feature", "properties": {"bin": "823997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.092615024541725, 31.105564272262285], [-12.877752742714321, 30.271571925410477], [-12.948554583750909, 28.514935780874872], [-11.301996450753812, 27.6141453017058], [-9.574145573053787, 28.431000744101212], [-9.43663506793057, 30.16505875954292], [-11.092615024541725, 31.105564272262285]]]}}, {"type": "Feature", "properties": {"bin": "8282affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.687382865825958, -1.51479749038197], [13.398514840417468, 0.01580312664861367], [12.488313965403783, 1.3016140005051489], [10.894897390645305, 1.0685158094781342], [10.189893676135952, -0.4318847675533966], [11.07154520164919, -1.7290974334753364], [12.687382865825958, -1.51479749038197]]]}}, {"type": "Feature", "properties": {"bin": "822ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-74.25811757657625, 35.30976532076736], [-76.19689970896388, 34.95204734757291], [-76.71577605386425, 33.549278076406296], [-75.38099462386585, 32.535970886027464], [-73.53180669108406, 32.868710179878306], [-72.93066264684357, 34.23868196403471], [-74.25811757657625, 35.30976532076736]]]}}, {"type": "Feature", "properties": {"bin": "82064ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-32.78084952502613, 60.31830942442807], [-35.748313417024164, 60.930172183234546], [-38.28422027194964, 59.82055701662739], [-37.74194418794689, 58.170123409126475], [-34.947989246883445, 57.63255412320861], [-32.526002401749665, 58.67461211387133], [-32.78084952502613, 60.31830942442807]]]}}, {"type": "Feature", "properties": {"bin": "820e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-90.30646761607126, 57.85198658333546], [-93.2152441200014, 57.02698722544641], [-93.25254506589539, 55.2543110936561], [-90.6514460154606, 54.30091613749209], [-87.88800752419588, 55.05558507309817], [-87.58155385473422, 56.83038063786385], [-90.30646761607126, 57.85198658333546]]]}}, {"type": "Feature", "properties": {"bin": "82561ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-35.389717682300585, 10.838676181951907], [-34.062542066892284, 11.865530221870648], [-34.37599785763293, 13.482154696182922], [-36.01374188438757, 14.085300071764689], [-37.349714987532586, 13.075038807532103], [-37.03959214744205, 11.445409112450497], [-35.389717682300585, 10.838676181951907]]]}}, {"type": "Feature", "properties": {"bin": "82459ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.38955169931603, 21.054853372747687], [-77.00401926684938, 21.76925238568191], [-76.8312173516333, 23.34286288063484], [-78.07326534839831, 24.240110473740863], [-79.50824227877347, 23.53306637345422], [-79.65076315725588, 21.921223015222118], [-78.38955169931603, 21.054853372747687]]]}}, {"type": "Feature", "properties": {"bin": "821877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.889760342933783, 51.22372845966178], [-7.224493860559396, 50.67904691252102], [-7.460509080062738, 49.05681780552428], [-5.466444723378631, 48.005644741446424], [-3.243656268908248, 48.54730149141871], [-2.9065278792841616, 50.14229216995713], [-4.889760342933783, 51.22372845966178]]]}}, {"type": "Feature", "properties": {"bin": "821e27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.658506238480797, 52.45676979339932], [14.863026772454885, 50.99274772045683], [16.606046853462765, 49.899182136699345], [19.151349829527778, 50.24865423658935], [20.036282030286998, 51.703743211634446], [18.2899634859423, 52.81905199947077], [15.658506238480797, 52.45676979339932]]]}}, {"type": "Feature", "properties": {"bin": "821a6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.22164256686591, 49.097935237084215], [-32.2819922837815, 48.01988332959426], [-31.885017165769785, 46.33410932842538], [-29.533523189213692, 45.712552077226604], [-27.492923060366778, 46.76027724369226], [-27.781655948658877, 48.458659955966446], [-30.22164256686591, 49.097935237084215]]]}}, {"type": "Feature", "properties": {"bin": "821b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.656695898557885, 52.16478116101679], [-53.40590293022116, 52.304456969807234], [-54.98078697891041, 50.86840334730965], [-53.85155809661156, 49.36803096898217], [-51.288437300027994, 49.26164550158302], [-49.677342461499556, 50.623921801340465], [-50.656695898557885, 52.16478116101679]]]}}, {"type": "Feature", "properties": {"bin": "8202dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.61075034802661, 70.32656819889353], [-113.88121184131037, 69.04816919557692], [-112.53575880038885, 67.41321684451043], [-108.36974930314206, 66.9843307712633], [-105.04304411276642, 68.16087226295068], [-105.89570675080105, 69.86396033968721], [-110.61075034802661, 70.32656819889353]]]}}, {"type": "Feature", "properties": {"bin": "825727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-33.80963548074154, 27.17820910039476], [-35.31019418406649, 26.066750775842593], [-34.95379621375673, 24.349751390036257], [-33.15392628098865, 23.721803951218817], [-31.655200285380122, 24.794702699458945], [-31.953133427831695, 26.53340769423689], [-33.80963548074154, 27.17820910039476]]]}}, {"type": "Feature", "properties": {"bin": "825917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.4579244921298804, 19.504910377173324], [-1.7113099039779127, 17.935404581817405], [-0.47047915784386257, 16.820062058483494], [1.0570071254543887, 17.249308733090295], [1.3600267516376539, 18.833358840282322], [0.08583528510709204, 19.9742016751009], [-1.4579244921298804, 19.504910377173324]]]}}, {"type": "Feature", "properties": {"bin": "823487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.8920617414937, 32.435885767663564], [-36.46312925335517, 31.27779543904234], [-36.0640905209584, 29.53409850105981], [-34.15652430618336, 28.924377730609972], [-32.584431539980926, 30.045990386831075], [-32.919187984996384, 31.81311295115671], [-34.8920617414937, 32.435885767663564]]]}}, {"type": "Feature", "properties": {"bin": "82442ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.26582217021158, 23.8323750958128], [-86.70979180480131, 24.66558872087198], [-86.6566805904582, 26.365999088189653], [-88.2030466217463, 27.261778824697416], [-89.80771154120198, 26.426478135308493], [-89.8165847317488, 24.697760964142336], [-88.26582217021158, 23.8323750958128]]]}}, {"type": "Feature", "properties": {"bin": "821ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-44.27214831365338, 44.14617971626026], [-45.84497526655643, 42.86593130870616], [-45.20137404127417, 41.23893307488042], [-43.04498395289292, 40.85844272032107], [-41.43687860225216, 42.111567258722474], [-42.016935664855744, 43.771947458702364], [-44.27214831365338, 44.14617971626026]]]}}, {"type": "Feature", "properties": {"bin": "8223affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.63023581359607, 40.63948728488323], [-159.3702423911968, 41.88045779542566], [-160.0631115613191, 43.42396129921054], [-162.10940467531475, 43.73438430757914], [-163.39292691687498, 42.461841701752746], [-162.60817345601583, 40.911097744865614], [-160.63023581359607, 40.63948728488323]]]}}, {"type": "Feature", "properties": {"bin": "821cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.09758320575617, 45.080367076675685], [-147.45009391663316, 44.09362423911827], [-146.67719965160308, 42.820280398955475], [-144.5827562775566, 42.534255833181305], [-143.23649038493966, 43.517931096163174], [-143.97702466025555, 44.790383382963654], [-146.09758320575617, 45.080367076675685]]]}}, {"type": "Feature", "properties": {"bin": "82386ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.598984700477283, 38.25143274146292], [9.054678245207672, 36.5678509319993], [10.558256056640367, 35.370372439869115], [12.629034522814488, 35.83666250378512], [13.244313475659819, 37.523712365785194], [11.719174616730063, 38.74166724514195], [9.598984700477283, 38.25143274146292]]]}}, {"type": "Feature", "properties": {"bin": "8206b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.910670065717056, 77.6358967544068], [-53.66696859476178, 77.98990625757939], [-57.91276547710292, 76.65519880459725], [-54.754381710923894, 75.12848264807123], [-48.306122547956875, 74.83452393322776], [-43.869518471839584, 76.01639072631193], [-45.910670065717056, 77.6358967544068]]]}}, {"type": "Feature", "properties": {"bin": "826f57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-119.4228265775777, 0.6308012313360579], [-118.22978761288444, 1.5466127001194412], [-118.5630833098903, 3.054984348759607], [-120.11514543521388, 3.625405109717659], [-121.29811028782477, 2.6774916039214682], [-120.93986912329585, 1.1916042376329785], [-119.4228265775777, 0.6308012313360579]]]}}, {"type": "Feature", "properties": {"bin": "825d5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.65120899099247, 17.178754478775605], [-146.82672179952885, 15.790435204044762], [-146.16007687374923, 14.110797540904425], [-144.3418114016278, 13.820263627383238], [-143.1716476470531, 15.19724236462377], [-143.8134957689577, 16.875830080246473], [-145.65120899099247, 17.178754478775605]]]}}, {"type": "Feature", "properties": {"bin": "826b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.050440170541734, 7.99224641091651], [19.479242065131633, 6.522352266708336], [20.458518123241934, 5.284276360502933], [22.136132249356997, 5.527020080114603], [22.811969651582398, 7.0114316192573325], [21.736228401051253, 8.243493259763863], [20.050440170541734, 7.99224641091651]]]}}, {"type": "Feature", "properties": {"bin": "826cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-104.17677408843613, 4.902363341799066], [-102.79248537339087, 5.871414086247641], [-102.95272811818845, 7.488601711468147], [-104.53497491114089, 8.135308829772034], [-105.9355600652054, 7.1379270023120664], [-105.73785929017677, 5.52289507884508], [-104.17677408843613, 4.902363341799066]]]}}, {"type": "Feature", "properties": {"bin": "825ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-157.5816170502988, 12.475685415227826], [-158.65635089180714, 11.036138082220372], [-157.9299678248433, 9.396882901305514], [-156.13653501088766, 9.180683363423721], [-155.04580048883616, 10.61016422581036], [-155.7634836482284, 12.26582364388199], [-157.5816170502988, 12.475685415227826]]]}}, {"type": "Feature", "properties": {"bin": "826607fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-75.00421927300809, 10.562834916758893], [-76.37486443029259, 9.70905200300884], [-76.20910081818643, 8.107689004037562], [-74.66021494289579, 7.37406393514971], [-73.29737636684153, 8.250538314657462], [-73.4752787312157, 9.83752460325209], [-75.00421927300809, 10.562834916758893]]]}}, {"type": "Feature", "properties": {"bin": "824567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-94.44385959071273, 18.48656784629608], [-92.90978151760524, 19.429272785277885], [-92.94481859961996, 21.16716126402498], [-94.55861520190119, 21.981092072848494], [-96.13028457346508, 21.02511760432553], [-96.05020989622146, 19.26900694125663], [-94.44385959071273, 18.48656784629608]]]}}, {"type": "Feature", "properties": {"bin": "82710ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.76857025662542, 12.138300519344803], [-171.65942568354595, 10.73203329266846], [-170.92644333634877, 9.206515963523058], [-169.2931299839693, 9.060308038526605], [-168.36951937180766, 10.465471191072943], [-169.1113284872115, 12.018156417560103], [-170.76857025662542, 12.138300519344803]]]}}, {"type": "Feature", "properties": {"bin": "826d2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.32239510608667, 13.549694178528066], [-89.86490654761025, 14.465456015426508], [-89.85739134480713, 16.139329820228298], [-91.34666601247939, 16.91944224617698], [-92.84255176159802, 15.990116090801749], [-92.81028318670805, 14.294686201436091], [-91.32239510608667, 13.549694178528066]]]}}, {"type": "Feature", "properties": {"bin": "8258effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.607494747938308, 10.838590240504287], [11.152828163016908, 9.328206600489576], [12.313097972320257, 8.132105663553832], [13.938770763768797, 8.412496363249264], [14.435041674371641, 9.913390776005329], [13.264752541075095, 11.144077233626273], [11.607494747938308, 10.838590240504287]]]}}, {"type": "Feature", "properties": {"bin": "821acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-41.43687860225216, 42.111567258722474], [-43.04498395289292, 40.85844272032107], [-42.468304294286476, 39.185528482404024], [-40.34777371760148, 38.734209457703855], [-38.71542112607588, 39.957429178482506], [-39.2247473066796, 41.661388005635025], [-41.43687860225216, 42.111567258722474]]]}}, {"type": "Feature", "properties": {"bin": "824757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-166.8254660403483, 31.044922766684163], [-167.88337203384344, 29.625507898230126], [-167.10221676836196, 28.14665577859398], [-165.25458796761674, 28.129236095197957], [-164.18262053679567, 29.531560988987913], [-164.99155850604535, 30.943386715374107], [-166.8254660403483, 31.044922766684163]]]}}, {"type": "Feature", "properties": {"bin": "825f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-55.53888991472084, 2.1447104418903606], [-54.210126691127286, 3.2670812965665323], [-54.471472289641966, 4.9609469771054435], [-56.048636044455606, 5.516406586382274], [-57.35536181380863, 4.400413170273592], [-57.1071521736534, 2.722889161039663], [-55.53888991472084, 2.1447104418903606]]]}}, {"type": "Feature", "properties": {"bin": "826d57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.31073372398161, 11.894446978855102], [-92.74826367817671, 10.965445078249571], [-92.71844814286081, 9.336365704858496], [-91.21020382252959, 8.676263183067155], [-89.7825771388249, 9.604537414455491], [-89.87935728094321, 11.176978153286724], [-91.31073372398161, 11.894446978855102]]]}}, {"type": "Feature", "properties": {"bin": "82188ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.99201420363153, 49.623581785392574], [-23.218947610760186, 48.71933132364778], [-23.044935902233508, 47.01609893844996], [-20.76090845706983, 46.218925544889224], [-18.59397660055241, 47.0984334967306], [-18.65090558974211, 48.798472969414014], [-20.99201420363153, 49.623581785392574]]]}}, {"type": "Feature", "properties": {"bin": "8256dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-35.471202399725954, 2.9618989164177876], [-34.128462441813596, 4.07484598399262], [-34.445393973713756, 5.793088472815407], [-36.102065542186466, 6.411812861671425], [-37.45366811571324, 5.311668299866157], [-37.14019742640149, 3.5803293669296288], [-35.471202399725954, 2.9618989164177876]]]}}, {"type": "Feature", "properties": {"bin": "827967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-128.62556197649513, 9.261824823865101], [-129.7059240696347, 8.005785868109154], [-129.24727943173093, 6.437443983847103], [-127.74014175209031, 6.1418970718781685], [-126.68738202271088, 7.38055834751661], [-127.11406580207421, 8.93189150044686], [-128.62556197649513, 9.261824823865101]]]}}, {"type": "Feature", "properties": {"bin": "827d5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.65993358340553, -3.520530165309493], [-25.401064676826017, -2.392032208517472], [-25.7212640118118, -0.6931851479671456], [-27.302574200172785, -0.09854949274457844], [-28.583053116063173, -1.2175802563495355], [-28.2610137563723, -2.94062192858329], [-26.65993358340553, -3.520530165309493]]]}}, {"type": "Feature", "properties": {"bin": "822807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-124.23124622081255, 38.56638700335243], [-122.6990988675928, 39.784230841420204], [-123.21638025157817, 41.34525311550237], [-125.30493951740326, 41.666390319824714], [-126.80474596422498, 40.43702004213228], [-126.25046112478444, 38.8983905317997], [-124.23124622081255, 38.56638700335243]]]}}, {"type": "Feature", "properties": {"bin": "823baffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-55.68434963007805, 35.3085484340503], [-56.755302961474435, 34.01968157852165], [-56.04085721353229, 32.50799128255545], [-54.275641831594335, 32.24126752219704], [-53.15345192268115, 33.509893404855], [-53.84554835277784, 35.065932426553275], [-55.68434963007805, 35.3085484340503]]]}}, {"type": "Feature", "properties": {"bin": "82186ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.7640259623867546, 47.90745035042651], [-1.3966081625912776, 47.44351195977147], [-1.75279807155882, 45.82891715662811], [-0.02800493241727862, 44.712977777952425], [2.026568965384605, 45.18424868970644], [2.458901717447699, 46.76373050573099], [0.7640259623867546, 47.90745035042651]]]}}, {"type": "Feature", "properties": {"bin": "82554ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.472880089647737, 18.297332900396515], [-5.987551711331904, 17.542834947432016], [-6.162619450275885, 15.990769092176489], [-4.866872026589571, 15.219885219398503], [-3.4006303468807833, 15.959635072416075], [-3.1827237352933886, 17.484597774332933], [-4.472880089647737, 18.297332900396515]]]}}, {"type": "Feature", "properties": {"bin": "826d8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.98131321467868, 7.817460742770009], [-98.55743760905895, 8.789782549799035], [-98.6647116592769, 10.443970997020717], [-100.2354302710271, 11.131944155998383], [-101.68340902356329, 10.134824628168149], [-101.53659364598748, 8.4752363140098], [-99.98131321467868, 7.817460742770009]]]}}, {"type": "Feature", "properties": {"bin": "8258affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.0790065308125625, 10.73401495722421], [3.751337829888936, 9.26521097155255], [4.915720603403216, 8.129174779439118], [6.429971224498451, 8.430253460458047], [6.801169317009782, 9.899743070823426], [5.614833472212566, 11.068219758915488], [4.0790065308125625, 10.73401495722421]]]}}, {"type": "Feature", "properties": {"bin": "824d1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-64.412646922055, 28.237632978691334], [-66.10870500107261, 28.046758894043005], [-66.79574711847854, 26.872316674232145], [-65.83264344775047, 25.92753455715398], [-64.42974303882323, 25.72224638197037], [-63.695964750544306, 26.870382575351506], [-64.412646922055, 28.237632978691334]]]}}, {"type": "Feature", "properties": {"bin": "82029ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.86398054754275, 72.07036965115235], [-134.6411907574836, 70.52303503539508], [-131.70883908792965, 69.37134141076518], [-127.36790212925293, 69.46231595526767], [-125.09830879255655, 70.92100550784122], [-127.59707268943032, 72.35208765954863], [-132.86398054754275, 72.07036965115235]]]}}, {"type": "Feature", "properties": {"bin": "825eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-46.383986417905284, 11.624450482084903], [-45.02495206378428, 12.699988854335011], [-45.3166803133901, 14.302011106126864], [-46.958384247111674, 14.828508822503089], [-48.30862047518583, 13.76714292961568], [-48.026311893180406, 12.165598545838135], [-46.383986417905284, 11.624450482084903]]]}}, {"type": "Feature", "properties": {"bin": "82795ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.85901084455557, 3.6266310727261404], [-130.92371721669844, 2.3547343129537235], [-130.4608587551884, 0.843603111016541], [-128.9636030113442, 0.6149645664400339], [-127.92421350205531, 1.8648635745791182], [-128.35662776273253, 3.3650043097768796], [-129.85901084455557, 3.6266310727261404]]]}}, {"type": "Feature", "properties": {"bin": "820d77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.9193734077983, 71.08395895336362], [-147.57981709555796, 70.39347998637335], [-148.0833465293283, 68.74753660342623], [-144.58584469120592, 67.84750279052138], [-140.45517326314936, 68.46826523199256], [-139.3268017239094, 70.05170142646693], [-142.9193734077983, 71.08395895336362]]]}}, {"type": "Feature", "properties": {"bin": "820d1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.79790121243346, 71.00761876132705], [-164.74827370527964, 69.87939359713387], [-163.87296846032518, 68.21921734529467], [-159.7116669310536, 67.66543403910107], [-155.98612998088066, 68.67171364428049], [-156.17772926429058, 70.34457749397508], [-160.79790121243346, 71.00761876132705]]]}}, {"type": "Feature", "properties": {"bin": "8266c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-75.70214201821707, 3.140562926671847], [-77.11276630482627, 2.188683914495084], [-76.94635540018261, 0.4689550165235644], [-75.35590616155932, -0.2839386148111181], [-73.9524271437591, 0.6881422936785266], [-74.131897035903, 2.3925313668830155], [-75.70214201821707, 3.140562926671847]]]}}, {"type": "Feature", "properties": {"bin": "823927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.101589192291552, 44.0506310521871], [-10.20321881864728, 43.35694709497956], [-10.347941440399472, 41.63003018212926], [-8.480681337677595, 40.62229995280742], [-6.464181984237864, 41.30855957084678], [-6.231987967712124, 43.00917586374685], [-8.101589192291552, 44.0506310521871]]]}}, {"type": "Feature", "properties": {"bin": "820eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.44526335797602, 63.25173080516217], [-99.62804678833429, 62.264960131041576], [-99.31752605188404, 60.49834326894408], [-96.18015518673963, 59.6924457669829], [-93.12814149577223, 60.59469842617808], [-93.0768608654095, 62.38286892983371], [-96.44526335797602, 63.25173080516217]]]}}, {"type": "Feature", "properties": {"bin": "82502ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.72300174399678, 20.990489850481016], [-134.89965579269537, 19.7532105149965], [-134.34984587052196, 18.104552813945748], [-132.65764671301787, 17.711156099038764], [-131.50609517190304, 18.940824460643068], [-132.02126901303234, 20.57135641524407], [-133.72300174399678, 20.990489850481016]]]}}, {"type": "Feature", "properties": {"bin": "8266effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.7537225963264, 3.3309531859964676], [-74.131897035903, 2.3925313668830155], [-73.9524271437591, 0.6881422936785266], [-72.38280158617798, -0.05866487759648713], [-71.0160747003525, 0.9012742714960504], [-71.2071410551568, 2.5862023768404225], [-72.7537225963264, 3.3309531859964676]]]}}, {"type": "Feature", "properties": {"bin": "821d97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-154.37896452489522, 52.0322492170176], [-152.85036328561898, 53.00387964769292], [-152.80562990957836, 54.348655901316015], [-155.0720370398947, 54.89036044994872], [-157.28277091871553, 54.01377148101902], [-156.55813986607876, 52.51970092230097], [-154.37896452489522, 52.0322492170176]]]}}, {"type": "Feature", "properties": {"bin": "823397fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.59850610114714, 34.20123172072504], [-175.56432922504848, 35.741206971176496], [-176.65871724952697, 37.262988370595934], [-178.84653607045254, 37.22404167036299], [-179.85373403922972, 35.64723593705847], [-178.70311883403724, 34.14645331820284], [-176.59850610114714, 34.20123172072504]]]}}, {"type": "Feature", "properties": {"bin": "82540ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.921275342920428, 15.942300063297786], [-13.427370701414569, 15.114836157430986], [-13.478121064920861, 13.557520460561596], [-12.071696161095671, 12.842516407667542], [-10.605640043933498, 13.645345830474795], [-10.506567295793253, 15.187058911620383], [-11.921275342920428, 15.942300063297786]]]}}, {"type": "Feature", "properties": {"bin": "826ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.02096631544327, 4.183696897349536], [-108.67970013517258, 5.15989177530367], [-108.91370075146745, 6.768140164796934], [-110.52409645276234, 7.389591580632589], [-111.87119281208132, 6.382401917945722], [-111.60261207801032, 4.7853989171504105], [-110.02096631544327, 4.183696897349536]]]}}, {"type": "Feature", "properties": {"bin": "828057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.70827204016097, -1.5040036468682434], [-44.322948507187284, -0.35620948177303313], [-44.62218849421249, 1.4068520662852666], [-46.29770495421065, 2.0188278359562863], [-47.674987520303226, 0.8775480454776453], [-47.38518685476662, -0.881814578180339], [-45.70827204016097, -1.5040036468682434]]]}}, {"type": "Feature", "properties": {"bin": "825127fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.65089667699573, 11.195314073573554], [-131.7575654722191, 9.923161288223044], [-131.26895225504003, 8.320295172124071], [-129.7059240696347, 8.005785868109154], [-128.62556197649513, 9.261824823865101], [-129.08173718911362, 10.848243757335297], [-130.65089667699573, 11.195314073573554]]]}}, {"type": "Feature", "properties": {"bin": "823667fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-139.08577259100346, 35.18275777900153], [-140.36752553639397, 34.085002480597495], [-139.7112019527131, 32.57121961082409], [-137.80871931624813, 32.16641595291894], [-136.54677169521673, 33.26381879651192], [-137.16670054747664, 34.7661254517022], [-139.08577259100346, 35.18275777900153]]]}}, {"type": "Feature", "properties": {"bin": "82515ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.64814720012825, 20.143945369145783], [-137.83411698379274, 18.862572984763172], [-137.25123983479142, 17.19966231642097], [-135.51493752652922, 16.832177786123754], [-134.34984587052196, 18.104552813945748], [-134.89965579269537, 19.7532105149965], [-136.64814720012825, 20.143945369145783]]]}}, {"type": "Feature", "properties": {"bin": "82570ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-32.84377827768773, 22.0178411032255], [-34.27862345826887, 20.964645785070672], [-33.958591380143694, 19.30220339543153], [-32.25590191706387, 18.67265261738001], [-30.824900138109847, 19.68621910642014], [-31.091644594267073, 21.368238778761015], [-32.84377827768773, 22.0178411032255]]]}}, {"type": "Feature", "properties": {"bin": "82582ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.151749348230992, 17.30304938782084], [6.748859480852724, 15.703742282491802], [7.98617018247175, 14.492671448162053], [9.646405667369654, 14.84966422909465], [10.097977661370507, 16.449183288197304], [8.841162105963765, 17.69221837320674], [7.151749348230992, 17.30304938782084]]]}}, {"type": "Feature", "properties": {"bin": "826ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.77793956806565, 8.621777037639923], [-112.42828692691761, 9.660264682375837], [-112.7172719065648, 11.33682496700244], [-114.39081831370694, 11.958012174674897], [-115.73942267760299, 10.88831392366015], [-115.4163087927026, 9.229163040531638], [-113.77793956806565, 8.621777037639923]]]}}, {"type": "Feature", "properties": {"bin": "822a1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.30787665118665, 39.68606179325924], [-74.44277493761697, 39.34056938395393], [-75.06331695265312, 37.84906886797823], [-73.64650907619523, 36.741214760199384], [-71.62155078397322, 37.06393634924812], [-70.9074474438301, 38.51625621003561], [-72.30787665118665, 39.68606179325924]]]}}, {"type": "Feature", "properties": {"bin": "821ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-55.305917854619246, 47.94764115659238], [-57.8378716554838, 47.957631356793456], [-59.13452023859925, 46.492537039294376], [-57.96068812870284, 45.086432208992186], [-55.589625435882915, 45.09612715436976], [-54.238896424972964, 46.49314130575578], [-55.305917854619246, 47.94764115659238]]]}}, {"type": "Feature", "properties": {"bin": "825e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.188054013873085, 12.604319983090281], [-52.86812566700949, 13.69054711705167], [-53.131252461361875, 15.238077091913617], [-54.70213500599653, 15.691263979641612], [-56.00229441495099, 14.618298408823465], [-55.75155172567551, 13.079342863977931], [-54.188054013873085, 12.604319983090281]]]}}, {"type": "Feature", "properties": {"bin": "8288effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.9216761769939, 0.3858981088638739], [-159.93112334382027, -0.944653390238862], [-159.23551573320913, -2.4912777849399825], [-157.5357263923437, -2.7297657317309434], [-156.50975038365667, -1.4167462560498647], [-157.19922826538743, 0.1522769274806428], [-158.9216761769939, 0.3858981088638739]]]}}, {"type": "Feature", "properties": {"bin": "82044ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-175.237364648308, 75.2818109587326], [-179.16643209941827, 73.8438182991874], [-176.69960314801912, 72.23799965485979], [-171.11065695414112, 71.97154653078344], [-167.04311693543426, 73.24458055449546], [-168.585652888576, 74.93980975620119], [-175.237364648308, 75.2818109587326]]]}}, {"type": "Feature", "properties": {"bin": "82341ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.579540760358054, 33.332137547452156], [-29.295326382774476, 32.253720833104744], [-29.030406967463787, 30.469788192503234], [-27.122707521907227, 29.753699363848405], [-25.427635294483334, 30.79811439399178], [-25.61856742173713, 32.591651675540135], [-27.579540760358054, 33.332137547452156]]]}}, {"type": "Feature", "properties": {"bin": "82290ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-126.08203720130365, 32.8657606136506], [-124.67256477087246, 34.11418669257208], [-125.18483033298531, 35.73486126784821], [-127.13810062168672, 36.07979647703287], [-128.51462133744633, 34.818432685996264], [-127.97262576888383, 33.22525782957425], [-126.08203720130365, 32.8657606136506]]]}}, {"type": "Feature", "properties": {"bin": "825f5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-60.858710526729354, 8.692541104226404], [-59.601429904168384, 9.79175058324698], [-59.83491702421139, 11.35536792549035], [-61.311970379320336, 11.802479758743598], [-62.54240534349367, 10.713529192008048], [-62.32270202213191, 9.167509670989483], [-60.858710526729354, 8.692541104226404]]]}}, {"type": "Feature", "properties": {"bin": "821aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.288437300027994, 49.26164550158302], [-53.85155809661156, 49.36803096898217], [-55.305917854619246, 47.94764115659238], [-54.238896424972964, 46.49314130575578], [-51.83863034755352, 46.41701186001292], [-50.34984307563694, 47.76652218332134], [-51.288437300027994, 49.26164550158302]]]}}, {"type": "Feature", "properties": {"bin": "8246effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.98081982302025, 20.7833722829969], [-165.99903845653682, 19.33261483546742], [-165.2319385415029, 17.78073721860328], [-163.4439840974131, 17.66217587168674], [-162.39694129463984, 19.114485874069658], [-163.16571097809256, 20.68376912970729], [-164.98081982302025, 20.7833722829969]]]}}, {"type": "Feature", "properties": {"bin": "82282ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-127.68651181758547, 37.64896276920755], [-126.25046112478444, 38.8983905317997], [-126.80474596422498, 40.43702004213228], [-128.8262478993717, 40.70115412021985], [-130.22263777229935, 39.442424221906194], [-129.63922753065987, 37.92907649965179], [-127.68651181758547, 37.64896276920755]]]}}, {"type": "Feature", "properties": {"bin": "825ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-178.95063664056067, 17.743332187238174], [-178.12301222241686, 19.221787023884072], [-179.0767801443572, 20.579253639820692], [179.10550716284808, 20.427514765045647], [178.30085270634834, 18.91048376640709], [179.28917726838105, 17.583962013973927], [-178.95063664056067, 17.743332187238174]]]}}, {"type": "Feature", "properties": {"bin": "825887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.2764305960846776, 8.948132571134797], [1.9843964992241638, 7.529293806652365], [3.125247405149373, 6.425019813099671], [4.581792371905466, 6.708566989426475], [4.915720603403216, 8.129174779439118], [3.751337829888936, 9.26521097155255], [2.2764305960846776, 8.948132571134797]]]}}, {"type": "Feature", "properties": {"bin": "820ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-87.88800752419588, 55.05558507309817], [-90.6514460154606, 54.30091613749209], [-90.80084102858143, 52.5438507823548], [-88.42097150018748, 51.54338080370612], [-85.79912266299574, 52.23415238022391], [-85.41812524692206, 53.98612260089093], [-87.88800752419588, 55.05558507309817]]]}}, {"type": "Feature", "properties": {"bin": "822b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.38815567758773, 48.82734490582738], [-81.91962699890831, 48.295316381881364], [-82.38806417358143, 46.615408258891044], [-80.49026058459525, 45.49319034661393], [-78.10036638488211, 45.982432195623886], [-77.47171852185642, 47.6345663178102], [-79.38815567758773, 48.82734490582738]]]}}, {"type": "Feature", "properties": {"bin": "827547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.2017635601567977, 0.936163764598368], [1.868917217650497, 2.3298633934462813], [1.1589044753770883, 3.4728049331861635], [-0.186075822013145, 3.2300014573740503], [-0.8378324096770464, 1.8701721240824984], [-0.1602034369452549, 0.7197982113703898], [1.2017635601567977, 0.936163764598368]]]}}, {"type": "Feature", "properties": {"bin": "820f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.48773440309648, 67.3131184550724], [-76.9753543179256, 66.91240801718504], [-78.07765942986177, 65.18096713675398], [-75.12759866083337, 63.90545688327906], [-71.09615425545397, 64.26709141026762], [-69.59181907197525, 65.93960213052233], [-72.48773440309648, 67.3131184550724]]]}}, {"type": "Feature", "properties": {"bin": "827c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.261862725037528, 0.31113954958654044], [-19.112387293484908, 1.3631258164462183], [-19.421549166867063, 2.9850510529164813], [-20.88554403470773, 3.586179719894], [-22.06251628373991, 2.547670976465841], [-21.748282563172204, 0.8944150053331076], [-20.261862725037528, 0.31113954958654044]]]}}, {"type": "Feature", "properties": {"bin": "827c57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.79894099018329, 2.088475796103549], [-23.577254165479847, 3.152670815193168], [-23.89300673496357, 4.8107173676555615], [-25.433639335198723, 5.431491053788328], [-26.678663415956887, 4.381765439928967], [-26.360081867442375, 2.6968138442972496], [-24.79894099018329, 2.088475796103549]]]}}, {"type": "Feature", "properties": {"bin": "821b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.04004303421978, 52.39005960897347], [-61.89930219560017, 52.330914784659825], [-63.20077399553516, 50.77050266836529], [-61.74588242176639, 49.33869863875727], [-59.09064574907324, 49.40861844704868], [-57.696966630210625, 50.8999999267347], [-59.04004303421978, 52.39005960897347]]]}}, {"type": "Feature", "properties": {"bin": "82090ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.239258880169474, 67.0156326284177], [3.797763423479726, 68.21974142812381], [0.2300394753996964, 68.07965221714933], [-1.480777203240806, 66.69937069330089], [0.19793526839841227, 65.55006071551604], [3.3780751296870815, 65.7243888731199], [5.239258880169474, 67.0156326284177]]]}}, {"type": "Feature", "properties": {"bin": "82674ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-66.59934523381101, 10.803502469537596], [-67.85743912708107, 10.015726234508087], [-67.65948845048786, 8.466909589365521], [-66.19525614980438, 7.728774608084851], [-64.95538561641911, 8.542069322310283], [-65.16115084628069, 10.067792224666967], [-66.59934523381101, 10.803502469537596]]]}}, {"type": "Feature", "properties": {"bin": "8248a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-101.24082187658792, 23.366309676892225], [-99.63585556147724, 24.37894428550873], [-99.77344403948946, 26.16294928512754], [-101.56658365814981, 26.941792658050694], [-103.19965094152704, 25.912524768601525], [-103.01162576662247, 24.12172726544782], [-101.24082187658792, 23.366309676892225]]]}}, {"type": "Feature", "properties": {"bin": "820cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.11117538442045, 63.29242332756059], [178.83711560806952, 61.86776664207705], [-179.58910023229902, 60.42881773546721], [-176.20585509660006, 60.342694610190605], [-174.04908498921228, 61.66402065845946], [-175.35492453543588, 63.172437771438275], [-179.11117538442045, 63.29242332756059]]]}}, {"type": "Feature", "properties": {"bin": "8267b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.72794198413503, 17.13343724860129], [-84.14448388994323, 16.308517532140435], [-84.22460724315376, 14.689500183105539], [-82.6933501709634, 14.036239080135266], [-81.29720115237546, 14.868802684797343], [-81.4360531954939, 16.33510060433268], [-82.72794198413503, 17.13343724860129]]]}}, {"type": "Feature", "properties": {"bin": "827ccffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.003469207101887, 7.461608607409952], [-21.81948498501671, 8.43965777017582], [-22.13030447162035, 10.031218078595819], [-23.62913110308366, 10.672390551299365], [-24.83782849428293, 9.71260186793756], [-24.523312159852374, 8.093367799869268], [-23.003469207101887, 7.461608607409952]]]}}, {"type": "Feature", "properties": {"bin": "820247fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.77218211117395, 76.05043363626355], [-86.38868358716662, 75.44254150060515], [-87.11739997649872, 73.75309197501792], [-82.3342737067018, 72.71199367901703], [-76.58894477052608, 73.22979877705764], [-74.82866567165834, 74.86723933037977], [-79.77218211117395, 76.05043363626355]]]}}, {"type": "Feature", "properties": {"bin": "827487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.717610671621024, -2.4207068856734155], [-8.778631764956575, -1.4302139367058602], [-9.057746405457742, 0.05139740489565597], [-10.28431789008691, 0.5785308439935908], [-11.254244736494712, -0.4015944958931172], [-10.966735378416788, -1.9196479625840597], [-9.717610671621024, -2.4207068856734155]]]}}, {"type": "Feature", "properties": {"bin": "823737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-153.03739182353243, 43.44325276436556], [-154.33247913189487, 42.33844255375919], [-153.51265857621462, 41.06796593244783], [-151.41651234471018, 40.899929573834896], [-150.11071777863367, 42.00283554512318], [-150.91019328825146, 43.275452288142326], [-153.03739182353243, 43.44325276436556]]]}}, {"type": "Feature", "properties": {"bin": "825b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.27766753994322, 13.88707798456079], [-175.4582711140254, 15.285730312483956], [-176.31504061346584, 16.573221523624234], [-178.02847505316092, 16.433447263532464], [-178.83216957172675, 14.995319892920696], [-177.93959972963776, 13.736771822643849], [-176.27766753994322, 13.88707798456079]]]}}, {"type": "Feature", "properties": {"bin": "827527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.8618420364343797, 10.477113125901752], [-3.071080368716595, 9.072581251751163], [-1.9395631182409523, 8.007193661487852], [-0.5694861509226148, 8.318410093422674], [-0.31918272685661675, 9.731836670975916], [-1.4801680966156552, 10.825815435330894], [-2.8618420364343797, 10.477113125901752]]]}}, {"type": "Feature", "properties": {"bin": "821b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.98078697891041, 50.86840334730965], [-57.696966630210625, 50.8999999267347], [-59.09064574907324, 49.40861844704868], [-57.8378716554838, 47.957631356793456], [-55.305917854619246, 47.94764115659238], [-53.85155809661156, 49.36803096898217], [-54.98078697891041, 50.86840334730965]]]}}, {"type": "Feature", "properties": {"bin": "823a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-43.53948028911743, 25.451010292648483], [-44.80598863152556, 24.3018756802786], [-44.30785181510584, 22.680244947040375], [-42.58262772653777, 22.171592960461595], [-41.295122763046706, 23.283698569744043], [-41.752091052016354, 24.941337027049308], [-43.53948028911743, 25.451010292648483]]]}}, {"type": "Feature", "properties": {"bin": "820ce7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.31174268238934, 61.28325819507393], [-160.99088524193843, 60.27519181750238], [-160.60123510352207, 58.77364178572618], [-157.83458328419528, 58.27402435601134], [-155.27671621976822, 59.197960002465436], [-155.36073868635916, 60.70120286769721], [-158.31174268238934, 61.28325819507393]]]}}, {"type": "Feature", "properties": {"bin": "8213affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.49070518672232, 63.68951483416985], [-131.86554528849422, 62.25878005587692], [-130.05464671509617, 60.8806729010329], [-126.94428366845841, 60.85001635271576], [-125.34079232851788, 62.23352147732967], [-127.05551120516839, 63.696799052423984], [-130.49070518672232, 63.68951483416985]]]}}, {"type": "Feature", "properties": {"bin": "82574ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-25.77928060933632, 17.66142032044262], [-27.24419120034105, 16.703902266524377], [-27.05549325698139, 15.089067468519037], [-25.45479083030684, 14.423931207069003], [-24.008238683057552, 15.34453752961922], [-24.143581846083386, 16.966276615610273], [-25.77928060933632, 17.66142032044262]]]}}, {"type": "Feature", "properties": {"bin": "8256effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-31.48278424491017, 6.250935042854491], [-30.182215330720936, 7.309910883327079], [-30.499720107270083, 8.976246182604307], [-32.11722390117859, 9.602382664633245], [-33.43256055030255, 8.559185447968847], [-33.11606311268313, 6.874320813243433], [-31.48278424491017, 6.250935042854491]]]}}, {"type": "Feature", "properties": {"bin": "820057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.90925551824719, 82.87200197672588], [33.23852823745436, 83.59754993234797], [35.77985090981438, 85.25386465048358], [16.21479349753519, 86.17428146252993], [1.3954549354975698, 85.00324300064894], [7.587670703025287, 83.46691212211444], [20.90925551824719, 82.87200197672588]]]}}, {"type": "Feature", "properties": {"bin": "821f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.245170492278879, 53.032039732054415], [10.54962281041145, 51.5639900357469], [12.345747364400054, 50.55427508726938], [14.863026772454885, 50.99274772045683], [15.658506238480797, 52.45676979339932], [13.83952860923243, 53.487245161236885], [11.245170492278879, 53.032039732054415]]]}}, {"type": "Feature", "properties": {"bin": "826f67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-122.84109897856351, -1.993484167935067], [-121.72848017187033, -1.1400116362854864], [-122.08687881482112, 0.2902799639423912], [-123.57901653086918, 0.8432313994062691], [-124.67724967374028, -0.041451351015023376], [-124.2984927797677, -1.4476428602002036], [-122.84109897856351, -1.993484167935067]]]}}, {"type": "Feature", "properties": {"bin": "82398ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.667271622745808, 33.405709481234645], [-7.483894227836209, 32.67425403800953], [-7.663484427536879, 30.943314294985814], [-6.090862557941383, 29.974950285731808], [-4.341769247156946, 30.69897412778907], [-4.0994046701538185, 32.39833876166745], [-5.667271622745808, 33.405709481234645]]]}}, {"type": "Feature", "properties": {"bin": "826697fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.14863398139961, 7.5409997270373745], [-86.58999355148684, 6.605186625257107], [-86.47359492889161, 4.939092322038125], [-84.89974013287366, 4.209437035574177], [-83.4507972812094, 5.162459741023921], [-83.58312175348144, 6.827381161385121], [-85.14863398139961, 7.5409997270373745]]]}}, {"type": "Feature", "properties": {"bin": "82594ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.543750260400667, 21.38124691750292], [11.045964625133967, 19.71754470823835], [12.318899720760903, 18.44266884449724], [14.102532174458808, 18.80074376624017], [14.650416420075686, 20.459587405096432], [13.36552238462891, 21.765875261344213], [11.543750260400667, 21.38124691750292]]]}}, {"type": "Feature", "properties": {"bin": "823967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.02800493241727862, 44.712977777952425], [-0.3979729448555914, 43.08588995790071], [1.2168706600543617, 41.967575126995584], [3.2493495966936545, 42.60479220712697], [3.6967018032650176, 44.22123495578018], [2.0265689653846333, 45.184248689706415], [-0.02800493241727862, 44.712977777952425]]]}}, {"type": "Feature", "properties": {"bin": "823687fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.27975615423446, 30.514209930347764], [-156.46648191451354, 29.16664573101749], [-155.69058995083472, 27.64232604690051], [-153.74070408856085, 27.4612020128443], [-152.539942635007, 28.808795378304737], [-153.30180642665587, 30.337264802897664], [-155.27975615423446, 30.514209930347764]]]}}, {"type": "Feature", "properties": {"bin": "8208a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.080660058482376, 61.54051460002519], [10.279089080546552, 60.275949400006596], [12.360313328340787, 59.44495728759658], [15.277419395430217, 59.85120470154142], [16.21328542634604, 61.10408688097462], [14.102101615280446, 61.96354053750143], [11.080660058482376, 61.54051460002519]]]}}, {"type": "Feature", "properties": {"bin": "82714ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.237020732356, 9.981512461636294], [-164.23381681576194, 8.56116558618775], [-163.50206600741032, 6.965300722104553], [-161.77338167921764, 6.766536253596437], [-160.75247341308133, 8.17843716490857], [-161.48347198256354, 9.797621338013231], [-163.237020732356, 9.981512461636294]]]}}, {"type": "Feature", "properties": {"bin": "825f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.407717109778446, 1.6126106195395211], [-57.1071521736534, 2.722889161039663], [-57.35536181380863, 4.400413170273592], [-58.89050302575944, 4.94780137562872], [-60.165868273993155, 3.8426199422059453], [-59.93141807817387, 2.18518367824736], [-58.407717109778446, 1.6126106195395211]]]}}, {"type": "Feature", "properties": {"bin": "823aaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.02008370952559, 27.92349112558733], [-55.04382918213371, 26.725848169141415], [-54.407783284746166, 25.213112368128737], [-52.76818094445429, 24.853757050057478], [-51.70374278490925, 26.024129726893676], [-52.31787831131049, 27.581575735298536], [-54.02008370952559, 27.92349112558733]]]}}, {"type": "Feature", "properties": {"bin": "820377fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-47.56553575112999, 83.4126486273365], [-51.70487751530814, 84.93555635380528], [-70.97296764314038, 84.9900045106299], [-77.10300574070003, 83.45180768453403], [-68.99975218666229, 82.2385658388429], [-56.7055267882271, 82.23991177572], [-47.56553575112999, 83.4126486273365]]]}}, {"type": "Feature", "properties": {"bin": "8212d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.77726241145928, 52.190065109365364], [-123.12286550407035, 50.98471128168906], [-122.06532577526855, 49.540803527536134], [-119.74732445570325, 49.236415543264044], [-118.32058960903674, 50.385510781870416], [-119.28460495289977, 51.895657718956635], [-121.77726241145928, 52.190065109365364]]]}}, {"type": "Feature", "properties": {"bin": "8222b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-156.03631344405528, 46.90887469576172], [-154.64069188625118, 47.989757999235856], [-155.240832794692, 49.50504909063853], [-157.3487038391932, 49.9551997300865], [-158.78766213887133, 48.850669587203804], [-158.076402699009, 47.320286348387896], [-156.03631344405528, 46.90887469576172]]]}}, {"type": "Feature", "properties": {"bin": "822217fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-162.91193598702054, 45.28312862796475], [-161.56979335131368, 46.51349897531834], [-162.39026807914811, 48.0534017807248], [-164.6599987609168, 48.36722999990064], [-166.0210381987472, 47.10629328266038], [-165.09588802278773, 45.56276641090315], [-162.91193598702054, 45.28312862796475]]]}}, {"type": "Feature", "properties": {"bin": "821327fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.09830879255655, 70.92100550784122], [-127.36790212925293, 69.46231595526767], [-125.19965794975239, 68.01284767634955], [-120.99628117547238, 67.92537812637019], [-118.40104005742097, 69.3065014535011], [-120.27955037212989, 70.85340170404048], [-125.09830879255655, 70.92100550784122]]]}}, {"type": "Feature", "properties": {"bin": "825da7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-159.47516114264087, 20.42220937072486], [-160.5648988815046, 18.976345486850946], [-159.80775645853043, 17.37080876445894], [-157.96626558195206, 17.1976946085419], [-156.8561954077174, 18.640826146956076], [-157.6068486027842, 20.259691594705036], [-159.47516114264087, 20.42220937072486]]]}}, {"type": "Feature", "properties": {"bin": "82220ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-169.65103598154408, 46.00531003351204], [-168.34620780264794, 47.34314102630939], [-169.4068233242219, 48.86972804267918], [-171.87311046039585, 49.05085282910134], [-173.1700022819709, 47.679848333962674], [-172.01249472067352, 46.16141697866386], [-169.65103598154408, 46.00531003351204]]]}}, {"type": "Feature", "properties": {"bin": "8254c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.970363295558462, 11.216545454321968], [-16.3995817269834, 10.397267061984039], [-16.40003966386146, 8.93040321672402], [-15.017096277235694, 8.290871572025175], [-13.62057662207049, 9.082229599755195], [-13.574644025576724, 10.54021488943181], [-14.970363295558462, 11.216545454321968]]]}}, {"type": "Feature", "properties": {"bin": "827117fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-175.55070635127848, 12.428955187573973], [-176.35806599111405, 11.05195584369349], [-175.64068679852124, 9.586297353848044], [-174.10172146686773, 9.46929667566937], [-173.25867466758532, 10.849022006879926], [-173.9898394416861, 12.343294344125121], [-175.55070635127848, 12.428955187573973]]]}}, {"type": "Feature", "properties": {"bin": "824c2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.40723864874259, 20.97970390799355], [-64.240684261845, 22.002085574481576], [-64.44574379259193, 23.26737219877878], [-65.80401622503994, 23.501303342309967], [-66.94208118849998, 22.494125223501673], [-66.75034451009819, 21.23820775000707], [-65.40723864874259, 20.97970390799355]]]}}, {"type": "Feature", "properties": {"bin": "828a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.15056559049286, 1.1069634457837287], [-69.47491670212999, 0.1618259928744295], [-69.27600574401878, -1.5358657755021456], [-67.74310653264574, -2.2626982583635296], [-66.43641995662958, -1.2958056988116773], [-66.64455573288102, 0.37603868715859007], [-68.15056559049286, 1.1069634457837287]]]}}, {"type": "Feature", "properties": {"bin": "826627fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.82622515927444, 12.921603796921572], [-75.17381847473749, 12.112028031531354], [-75.00421927300809, 10.562834916758893], [-73.4752787312157, 9.83752460325209], [-72.13699260858151, 10.670248376412998], [-72.31799816277822, 12.204723205585072], [-73.82622515927444, 12.921603796921572]]]}}, {"type": "Feature", "properties": {"bin": "826f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-106.49438556259689, -0.046172207729570924], [-105.17323884809628, 0.8701881901666885], [-105.35686761733812, 2.3876427036362102], [-106.89596666042848, 2.9833434443845], [-108.22846932201116, 2.0375119147551466], [-108.01085656214846, 0.5261504290462844], [-106.49438556259689, -0.046172207729570924]]]}}, {"type": "Feature", "properties": {"bin": "821b2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-38.28422027194964, 59.82055701662739], [-41.39507637997812, 60.30796180895156], [-43.743992660760675, 59.07618287095348], [-42.927551278941834, 57.43574006821968], [-40.0284796958655, 57.01374899247943], [-37.74194418794689, 58.170123409126475], [-38.28422027194964, 59.82055701662739]]]}}, {"type": "Feature", "properties": {"bin": "820287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-128.17765769680258, 75.14190865985594], [-134.4694707372978, 74.84437653663419], [-136.40380963352948, 73.24551084789533], [-132.86398054754275, 72.07036965115235], [-127.59707268943045, 72.35208765954863], [-124.96247343782, 73.82161995115898], [-128.17765769680258, 75.14190865985594]]]}}, {"type": "Feature", "properties": {"bin": "823f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.102434482055234, 34.577453494704955], [13.488580338198274, 32.875015477254706], [14.912927723127964, 31.582701869496166], [16.960447263888174, 31.969596942090178], [17.635425294848805, 33.667670279159765], [16.203432101296617, 34.98381016816727], [14.102434482055234, 34.577453494704955]]]}}, {"type": "Feature", "properties": {"bin": "825057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-135.40368677930647, 25.8670157640065], [-136.61573872265618, 24.66731214855594], [-136.03238180696044, 23.037730503442052], [-134.2719765412034, 22.624728935439098], [-133.08381598345167, 23.820431161854444], [-133.63167654034052, 25.432983552431253], [-135.40368677930647, 25.8670157640065]]]}}, {"type": "Feature", "properties": {"bin": "820727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.27113407636019593, 70.66929401337596], [-1.9084430010595415, 71.90494045163956], [-6.329994131394352, 71.66753846280452], [-7.942563038336622, 70.17612110688736], [-5.509600214148194, 69.01847753368425], [-1.6665855042242044, 69.27385919190813], [0.27113407636019593, 70.66929401337596]]]}}, {"type": "Feature", "properties": {"bin": "82469ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-175.4705882437728, 18.011420071329557], [-176.31504061346584, 16.573221523624234], [-175.45827111402537, 15.285730312483953], [-173.87488217758454, 15.231876563150667], [-173.00560997665534, 16.653102620895357], [-173.75672208163414, 18.120398684642627], [-175.4705882437728, 18.011420071329557]]]}}, {"type": "Feature", "properties": {"bin": "8212effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.35708552774537, 53.86776941130843], [-115.13592775547971, 52.70540691423101], [-114.29334339405317, 51.131925367323966], [-111.81358444532302, 50.6619876203823], [-109.99461055319722, 51.754865985358926], [-110.68634707583348, 53.386336108066025], [-113.35708552774537, 53.86776941130843]]]}}, {"type": "Feature", "properties": {"bin": "825c77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.16007687374923, 14.110797540904425], [-147.31930150500347, 12.71003475414825], [-146.65685980055636, 11.032728669471924], [-144.85792469817218, 10.75461417273834], [-143.70298869595533, 12.14166443319985], [-144.3418114016278, 13.820263627383238], [-146.16007687374923, 14.110797540904425]]]}}, {"type": "Feature", "properties": {"bin": "82274ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.09013830826513, 44.38248318374426], [-87.29055066840296, 43.768738470563186], [-87.52625462013384, 42.15291741074853], [-85.70319925935871, 41.16126851923316], [-83.60019678206457, 41.72421452886994], [-83.22495317846773, 43.3274852117277], [-85.09013830826513, 44.38248318374426]]]}}, {"type": "Feature", "properties": {"bin": "820f57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-64.65193771357671, 63.04787855230004], [-68.56493483321289, 62.864503576884395], [-69.97576885027517, 61.192356916698365], [-67.73084359215947, 59.77423949635842], [-64.18579934373318, 59.94899094586523], [-62.54341730100066, 61.54949113652148], [-64.65193771357671, 63.04787855230004]]]}}, {"type": "Feature", "properties": {"bin": "820827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.586063396817917, 65.87071869391137], [8.51690627045494, 67.06524160472564], [5.239258880169474, 67.0156326284177], [3.3780751296870815, 65.7243888731199], [4.694919398687947, 64.57085801287528], [7.64620111675741, 64.66507030510411], [9.586063396817917, 65.87071869391137]]]}}, {"type": "Feature", "properties": {"bin": "825c67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-143.1716476470531, 15.19724236462377], [-144.3418114016278, 13.820263627383238], [-143.70298869595533, 12.14166443319985], [-141.9200933504384, 11.84309318344203], [-140.75956860825522, 13.20669391152865], [-141.37151007296615, 14.881959131410003], [-143.1716476470531, 15.19724236462377]]]}}, {"type": "Feature", "properties": {"bin": "82014ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.9032774208520538, 77.03453024906975], [2.265817701531166, 78.19830644503146], [-1.3920560938763384, 79.5921312331109], [-10.416534576215874, 79.62054525867497], [-13.578593545917535, 78.27816184803089], [-9.023350332015394, 77.08353021671479], [-1.9032774208520538, 77.03453024906975]]]}}, {"type": "Feature", "properties": {"bin": "825707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.95379621375673, 24.349751390036257], [-36.38755910202406, 23.25709445650037], [-36.02386940755977, 21.576587695009557], [-34.27862345826887, 20.964645785070672], [-32.84377827768773, 22.0178411032255], [-33.15392628098865, 23.721803951218817], [-34.95379621375673, 24.349751390036257]]]}}, {"type": "Feature", "properties": {"bin": "825877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.097977661370507, 16.449183288197304], [9.646405667369654, 14.84966422909465], [10.869781564574977, 13.615007694572515], [12.559316983005372, 13.947330592398506], [13.057677308471957, 15.541998660465921], [11.820444634223307, 16.809900692332402], [10.097977661370507, 16.449183288197304]]]}}, {"type": "Feature", "properties": {"bin": "82440ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.6566805904582, 26.365999088189653], [-85.08434762858587, 27.15353558293776], [-85.00714284003608, 28.834980045876637], [-86.5457782112497, 29.759287059695453], [-88.17027178884264, 28.97340309755985], [-88.2030466217463, 27.261778824697416], [-86.6566805904582, 26.365999088189653]]]}}, {"type": "Feature", "properties": {"bin": "820957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.516906270455017, 67.06524160472564], [11.133280035906186, 67.85995297513011], [10.043311931125118, 69.12144885595274], [5.923714581488998, 69.5183057451554], [3.797763423479726, 68.21974142812381], [5.239258880169474, 67.0156326284177], [8.516906270455017, 67.06524160472564]]]}}, {"type": "Feature", "properties": {"bin": "825d1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-153.84334364279104, 19.871127924569453], [-154.98703981757708, 18.44351602730166], [-154.25484084592026, 16.797013674901503], [-152.39259987624143, 16.57010370863651], [-151.23876200634047, 17.99130051554871], [-151.95618981799598, 19.645632089268535], [-153.84334364279104, 19.871127924569453]]]}}, {"type": "Feature", "properties": {"bin": "82056ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.12088680200165, 86.17678739494642], [161.82489010339506, 84.53450356990503], [172.21916569181485, 83.14393672156832], [-173.17785081207975, 83.0160008604971], [-161.89171801085922, 84.22628942426208], [-165.37097529057684, 85.96139195458106], [169.12088680200165, 86.17678739494642]]]}}, {"type": "Feature", "properties": {"bin": "823a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.963466867911656, 24.39069811074488], [-57.8635816446284, 23.256059937210214], [-57.23011196400803, 21.814638994608295], [-55.70958020955863, 21.46363380679544], [-54.76915143666361, 22.57206889608712], [-55.388196979818055, 24.058284547723517], [-56.963466867911656, 24.39069811074488]]]}}, {"type": "Feature", "properties": {"bin": "82542ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.297990218925223, 18.358193362939268], [-11.842109343172925, 17.537180528555226], [-11.921275342920428, 15.942300063297786], [-10.506567295793253, 15.187058911620383], [-9.006464265768987, 15.98598523372256], [-8.877801145205453, 17.56154923764815], [-10.297990218925223, 18.358193362939268]]]}}, {"type": "Feature", "properties": {"bin": "822a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.61941821988546, 38.540002057010945], [-80.65177495480032, 38.08929821612251], [-81.06844866997488, 36.59871874543619], [-79.55761808651526, 35.58356677506038], [-77.61868280728876, 35.99919217524387], [-77.09992207378818, 37.46356103312862], [-78.61941821988546, 38.540002057010945]]]}}, {"type": "Feature", "properties": {"bin": "82488ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-101.7368398811343, 28.725749340868752], [-100.06121499284501, 29.72188188001257], [-100.21178382023747, 31.48993750697799], [-102.09323459159486, 32.26874743091332], [-103.79837714158013, 31.258773934619278], [-103.5927693527946, 29.48454953307691], [-101.7368398811343, 28.725749340868752]]]}}, {"type": "Feature", "properties": {"bin": "825e77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.83491702421139, 11.35536792549035], [-58.569813494086375, 12.44794219797637], [-58.80745746092741, 13.975215755765579], [-60.29672735515016, 14.395690863437256], [-61.536046591014745, 13.315163322992678], [-61.311970379320336, 11.802479758743598], [-59.83491702421139, 11.35536792549035]]]}}, {"type": "Feature", "properties": {"bin": "82374ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-138.44546294761935, 37.69007965178502], [-139.74373361120917, 36.65010236088989], [-139.08577259100346, 35.18275777900153], [-137.16670054747664, 34.7661254517022], [-135.89002309404285, 35.80631066025898], [-136.5100321904648, 37.26264734466265], [-138.44546294761935, 37.69007965178502]]]}}, {"type": "Feature", "properties": {"bin": "826f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.08650492070117, -3.033400525560168], [-111.84870286236902, -2.1675662435525287], [-112.10551167033114, -0.7233417311270236], [-113.62956694293806, -0.15815048527172418], [-114.86764703280863, -1.0544791906363784], [-114.58196228623183, -2.4849461904515127], [-113.08650492070117, -3.033400525560168]]]}}, {"type": "Feature", "properties": {"bin": "823e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.242990297561875, 21.4509882258132], [19.597919649817623, 19.787818768125756], [20.810554260240874, 18.435026826891445], [22.66217520360497, 18.714905313467156], [23.347723561939056, 20.35938183420552], [22.142677696755147, 21.743093508159046], [20.242990297561875, 21.4509882258132]]]}}, {"type": "Feature", "properties": {"bin": "824c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.37080007192148, 20.726750647129016], [-72.08359451476713, 21.373772346617457], [-71.86110522955428, 22.867285886731818], [-72.94798887459297, 23.753848556771096], [-74.28202848738356, 23.11880968295903], [-74.48144424711094, 21.58482898466105], [-73.37080007192148, 20.726750647129016]]]}}, {"type": "Feature", "properties": {"bin": "823ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.972372274137555, 28.788083858698766], [-59.86349564666303, 27.5872470180961], [-59.179808817821964, 26.14477622104115], [-57.61551730939025, 25.858084657740633], [-56.67782192269995, 27.03784085828873], [-57.34950616358908, 28.526013317119837], [-58.972372274137555, 28.788083858698766]]]}}, {"type": "Feature", "properties": {"bin": "8228effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-128.55930051732804, 44.85995361844986], [-127.03121917390865, 46.07114453291157], [-127.63971807768101, 47.46903746354161], [-129.81055986756257, 47.63541537042169], [-131.2901594178203, 46.41694831075058], [-130.64994419391363, 45.0396522953233], [-128.55930051732804, 44.85995361844986]]]}}, {"type": "Feature", "properties": {"bin": "821207fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.57843732628584, 60.561067007103965], [-122.3538464859214, 59.235578264229325], [-121.0485505436808, 57.71085066719347], [-118.11475820528021, 57.43687314537709], [-116.21972331600284, 58.69659845715033], [-117.36079672693324, 60.296109935994814], [-120.57843732628584, 60.561067007103965]]]}}, {"type": "Feature", "properties": {"bin": "8228cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-127.63971807768101, 47.46903746354161], [-126.03804258933387, 48.64640364609266], [-126.65364551902309, 49.99834025248947], [-128.90985381013775, 50.15451159756744], [-130.46227165571864, 48.9686402565074], [-129.81055986756257, 47.63541537042169], [-127.63971807768101, 47.46903746354161]]]}}, {"type": "Feature", "properties": {"bin": "820737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.32561035194326043, 73.31022368544396], [-2.2362007418153356, 74.5829282683745], [-7.439780394344702, 74.36066046087873], [-9.219808450023809, 72.85065322966908], [-6.329994131394352, 71.66753846280452], [-1.9084430010595415, 71.90494045163956], [0.32561035194326043, 73.31022368544396]]]}}, {"type": "Feature", "properties": {"bin": "826f77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.24551240318443, -1.691265046350464], [-119.08761734868692, -0.8214484264912933], [-119.4228265775777, 0.6308012313360579], [-120.93986912329585, 1.1916042376329785], [-122.08687881482112, 0.2902799639423912], [-121.72848017187033, -1.1400116362854864], [-120.24551240318443, -1.691265046350464]]]}}, {"type": "Feature", "properties": {"bin": "821d2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.91860621271735, 55.36583039668758], [-137.66961854003978, 54.056935365417615], [-136.13385772976116, 52.83180090587108], [-133.85114156470928, 52.84669103300533], [-132.94590244843872, 54.1296962308624], [-134.47061065778777, 55.42569632237935], [-136.91860621271735, 55.36583039668758]]]}}, {"type": "Feature", "properties": {"bin": "8280e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.635219599960315, -0.9771478644086425], [-41.2520101552551, 0.17196920035699034], [-41.55903359299822, 1.933698993376087], [-43.24191520823196, 2.5480546319420436], [-44.62218849421249, 1.4068520662852666], [-44.322948507187284, -0.35620948177303313], [-42.635219599960315, -0.9771478644086425]]]}}, {"type": "Feature", "properties": {"bin": "822257fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.1700022819709, 47.679848333962674], [-171.87311046039585, 49.05085282910134], [-173.08099561302038, 50.547739264021246], [-175.6832154603929, 50.659778364781566], [-176.95555451890584, 49.255935361680656], [-175.65513024830355, 47.77326782654171], [-173.1700022819709, 47.679848333962674]]]}}, {"type": "Feature", "properties": {"bin": "82801ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.633591747376244, -3.3741097937030475], [-39.250811532165585, -2.2183857025045843], [-39.563133079118444, -0.4474832204660288], [-41.2520101552551, 0.17196920035699034], [-42.635219599960315, -0.9771478644086425], [-42.32957823551924, -2.7519304100724966], [-40.633591747376244, -3.3741097937030475]]]}}, {"type": "Feature", "properties": {"bin": "820ceffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.27671621976822, 59.197960002465436], [-157.83458328419528, 58.27402435601134], [-157.6320905130744, 56.819387676193294], [-155.1335337264925, 56.29185264795599], [-152.70260638958075, 57.14185650944261], [-152.6428741066952, 58.58948304211455], [-155.27671621976822, 59.197960002465436]]]}}, {"type": "Feature", "properties": {"bin": "821c27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.61643330533238, 52.54934584271899], [-143.06449613462618, 51.31133325685281], [-141.55666630234302, 50.21479188892057], [-139.57676103701704, 50.29619956078584], [-138.99195596812496, 51.521279104200275], [-140.520266985434, 52.67984228858088], [-142.61643330533238, 52.54934584271899]]]}}, {"type": "Feature", "properties": {"bin": "8249a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-102.14775967128928, 15.260282288852741], [-100.64272416528974, 16.28269193380548], [-100.78602787309754, 18.036674207758512], [-102.47888895505285, 18.77263360546656], [-104.00697936128856, 17.727556052601905], [-103.81933932397637, 15.969878062915633], [-102.14775967128928, 15.260282288852741]]]}}, {"type": "Feature", "properties": {"bin": "82548ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.35286583316386, 13.275659539199737], [-20.800455883755063, 12.407406629546033], [-20.72746038389688, 10.882142231152775], [-19.25608087263708, 10.227430733230397], [-17.8363676518402, 11.063783036396401], [-17.860226364438105, 12.585841373390625], [-19.35286583316386, 13.275659539199737]]]}}, {"type": "Feature", "properties": {"bin": "822327fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.6339455351309, 33.82853666873131], [-163.5001830119171, 35.18710215873745], [-164.25031517696226, 36.720007031080605], [-166.21042036903486, 36.89269962490027], [-167.35356163728906, 35.49593479453287], [-166.52892825112713, 33.96535450751626], [-164.6339455351309, 33.82853666873131]]]}}, {"type": "Feature", "properties": {"bin": "82504ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.91889130500928, 27.061192038819833], [-142.1518487614197, 25.80801073985058], [-141.5018770416946, 24.181165224000477], [-139.65016236909815, 23.81776170396896], [-138.43217486148703, 25.066706608415128], [-139.05012289695244, 26.683065432299625], [-140.91889130500928, 27.061192038819833]]]}}, {"type": "Feature", "properties": {"bin": "8227affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-102.53928795753316, 49.876702461072995], [-104.54455472421517, 48.90848007261448], [-104.14330482734766, 47.27502787731518], [-101.89482153568153, 46.57467022471413], [-99.91704879397018, 47.4715191071553], [-100.1559630800371, 49.1381680821327], [-102.53928795753316, 49.876702461072995]]]}}, {"type": "Feature", "properties": {"bin": "82599ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.2396306401223465, 12.28136891407245], [-1.4801680966156552, 10.825815435330894], [-0.31918272685661675, 9.731836670975916], [1.1112578344875799, 10.064920172958862], [1.3951802868305936, 11.529027262742579], [0.20521077410490549, 12.652177592020411], [-1.2396306401223465, 12.28136891407245]]]}}, {"type": "Feature", "properties": {"bin": "828a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.76072133011552, -3.023468344054062], [-53.41529330610731, -1.9075458519315076], [-53.68204442813005, -0.17017772412858934], [-55.281315597134295, 0.43376906575902824], [-56.60533221178194, -0.6800844776357332], [-56.3517021048943, -2.3996946574232956], [-54.76072133011552, -3.023468344054062]]]}}, {"type": "Feature", "properties": {"bin": "8280c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-41.55903359299822, 1.933698993376087], [-40.18363059949491, 3.0700388986581064], [-40.49178881123499, 4.809916418677702], [-42.16867308030325, 5.417642655287111], [-43.54295867183072, 4.291702898166629], [-43.24191520823196, 2.5480546319420436], [-41.55903359299822, 1.933698993376087]]]}}, {"type": "Feature", "properties": {"bin": "824587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.92504916847793, 18.71507943193177], [-78.5417846265863, 19.470050031246107], [-78.38955169931603, 21.054853372747687], [-79.65076315725588, 21.921223015222118], [-81.08170750081571, 21.16979573717062], [-81.20285939736071, 19.548336732136832], [-79.92504916847793, 18.71507943193177]]]}}, {"type": "Feature", "properties": {"bin": "827007fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-171.08010513946476, 6.3052964790858255], [-171.94393384320088, 4.959780295860549], [-171.22971982763713, 3.448801289445842], [-169.64233439549923, 3.2533254825392905], [-168.7471011538475, 4.59255130445029], [-169.47006886290905, 6.133852289300174], [-171.08010513946476, 6.3052964790858255]]]}}, {"type": "Feature", "properties": {"bin": "822ae7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.62155078397322, 37.06393634924812], [-73.64650907619523, 36.741214760199384], [-74.25811757657625, 35.30976532076736], [-72.93066264684357, 34.23868196403471], [-71.00544091940455, 34.54096936853697], [-70.31141226372195, 35.933886597496496], [-71.62155078397322, 37.06393634924812]]]}}, {"type": "Feature", "properties": {"bin": "824707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.6124684701106, 31.172045043372158], [-169.55430353860328, 32.63261591217219], [-170.44845406020744, 34.155186609801476], [-172.46642085476444, 34.20414768143931], [-173.51714264920574, 32.703172127251854], [-172.55956552539237, 31.194193992172103], [-170.6124684701106, 31.172045043372158]]]}}, {"type": "Feature", "properties": {"bin": "823a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.67782192269995, 27.03784085828873], [-57.61551730939025, 25.858084657740633], [-56.963466867911656, 24.39069811074488], [-55.388196979818055, 24.058284547723517], [-54.407783284746166, 25.213112368128737], [-55.04382918213371, 26.725848169141415], [-56.67782192269995, 27.03784085828873]]]}}, {"type": "Feature", "properties": {"bin": "821f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.163510941569066, 48.9437639550549], [4.652435425239344, 47.393027403288], [6.371338560692325, 46.417016655689096], [8.645314229897538, 46.977068439610534], [9.251571422436438, 48.53467795856961], [7.489805747586691, 49.52621240698069], [5.163510941569066, 48.9437639550549]]]}}, {"type": "Feature", "properties": {"bin": "820c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-169.65224675086048, 59.9264252079926], [-171.84700893446154, 58.704960589709465], [-170.91139927061127, 57.26079683981887], [-168.0262941563394, 56.99746478128345], [-165.84016293788605, 58.12514676056634], [-166.51815211125566, 59.606492624315294], [-169.65224675086048, 59.9264252079926]]]}}, {"type": "Feature", "properties": {"bin": "822b0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.75562087696401, 44.916521168651464], [-65.16294164435584, 44.754772444859164], [-66.15912631714208, 43.24164819563601], [-64.83519280239277, 41.948534313112596], [-62.57347711589102, 42.10999813923826], [-61.4965375139248, 43.564806453194414], [-62.75562087696401, 44.916521168651464]]]}}, {"type": "Feature", "properties": {"bin": "823a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.403676775173274, 26.085221444893197], [-41.752091052016354, 24.941337027049308], [-41.295122763046706, 23.283698569744043], [-39.535390415490795, 22.737529603315632], [-38.17264520659288, 23.843250262376916], [-38.58225950484946, 25.532963203214337], [-40.403676775173274, 26.085221444893197]]]}}, {"type": "Feature", "properties": {"bin": "825f77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-60.165868273993155, 3.8426199422059453], [-58.89050302575944, 4.94780137562872], [-59.129234300145804, 6.585958705972023], [-60.62950233262009, 7.098590026764595], [-61.87820768746323, 6.00000583524779], [-61.65339083366119, 4.382418723973649], [-60.165868273993155, 3.8426199422059453]]]}}, {"type": "Feature", "properties": {"bin": "825c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.42601200546446, 7.5341644037062805], [-156.4999517275151, 6.1222069345507], [-155.79651841734938, 4.493630141291827], [-154.0294052002189, 4.260374459536216], [-152.9435787625393, 5.657346049215927], [-153.6357880281491, 7.302434921053644], [-155.42601200546446, 7.5341644037062805]]]}}, {"type": "Feature", "properties": {"bin": "822997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-111.96235777597163, 35.70493980448009], [-110.25748485653355, 36.800197061174266], [-110.58483321289158, 38.48993462904381], [-112.67364833709534, 39.07514874188193], [-114.38212699256788, 37.96394850096659], [-113.99954869994481, 36.284189314860356], [-111.96235777597163, 35.70493980448009]]]}}, {"type": "Feature", "properties": {"bin": "821da7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-147.8150486486202, 57.26768168436388], [-150.33692815389782, 56.522108344088565], [-150.5001972397225, 55.13368819815839], [-148.36187586117808, 54.5139353396929], [-145.99197018251797, 55.204589940723054], [-145.6125157209927, 56.56697923674092], [-147.8150486486202, 57.26768168436388]]]}}, {"type": "Feature", "properties": {"bin": "825907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.37837010177590247, 21.584144094524866], [0.08583528510709204, 19.9742016751009], [1.3600267516376539, 18.833358840282322], [2.959078382640479, 19.277482047407386], [3.304049268856912, 20.900755829120246], [1.9975756661715074, 22.067175689495624], [0.37837010177590247, 21.584144094524866]]]}}, {"type": "Feature", "properties": {"bin": "824d8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-70.3390437000868, 24.945215618732814], [-69.06589258464088, 25.502218577239304], [-68.44793356167183, 26.654916213749747], [-69.4859197897908, 27.602331406208105], [-71.16130429305609, 27.34994679960428], [-71.40014591811028, 25.85747883883615], [-70.3390437000868, 24.945215618732814]]]}}, {"type": "Feature", "properties": {"bin": "825f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.534195677402856, 6.071099094574541], [-47.1694561758373, 7.193028846791692], [-47.45673010021346, 8.876393045355925], [-49.09851500224472, 9.433102992134968], [-50.45097671273395, 8.3222861677665], [-50.17426434263091, 6.6440959746859], [-48.534195677402856, 6.071099094574541]]]}}, {"type": "Feature", "properties": {"bin": "82590ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.304049268856912, 20.900755829120246], [2.959078382640479, 19.277482047407386], [4.2342944226787855, 18.09884525514369], [5.882262995803545, 18.516052400096086], [6.279611709245232, 20.147736977484957], [4.976885601305341, 21.35446718195976], [3.304049268856912, 20.900755829120246]]]}}, {"type": "Feature", "properties": {"bin": "82378ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-154.42194514408624, 35.99295612895813], [-155.65024443492754, 34.732414551623556], [-154.85703308454984, 33.3008366693551], [-152.85043045733752, 33.12732053866677], [-151.60919679699137, 34.38825057175512], [-152.3860948404763, 35.82207574667211], [-154.42194514408624, 35.99295612895813]]]}}, {"type": "Feature", "properties": {"bin": "821d87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.5001972397225, 55.13368819815839], [-152.80562990957836, 54.348655901316015], [-152.85036328561904, 53.00387964769293], [-150.7848502573385, 52.45847760363215], [-148.5996987063249, 53.18630010760154], [-148.36187586117808, 54.5139353396929], [-150.5001972397225, 55.13368819815839]]]}}, {"type": "Feature", "properties": {"bin": "821c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-153.54164948755408, 44.9563123269652], [-152.19300297142425, 46.015249635730314], [-152.6912970057912, 47.52211742276066], [-154.64069188625118, 47.989757999235856], [-156.03631344405528, 46.90887469576172], [-155.43595024327058, 45.38285137235883], [-153.54164948755408, 44.9563123269652]]]}}, {"type": "Feature", "properties": {"bin": "82585ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.762355118081885, 12.694430236620008], [13.264752541075095, 11.144077233626273], [14.435041674371641, 9.913390776005329], [16.110106592542248, 10.199094662934618], [16.649194223749127, 11.737554880527712], [15.472615878253416, 13.00285055504457], [13.762355118081885, 12.694430236620008]]]}}, {"type": "Feature", "properties": {"bin": "823b6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-39.83606767956756, 37.023514084714996], [-41.38216736305798, 35.79713469930868], [-40.87032852792942, 34.08823726387208], [-38.87236997094432, 33.57473105279376], [-37.30966446935987, 34.76793171992825], [-37.75906273154746, 36.50733780530183], [-39.83606767956756, 37.023514084714996]]]}}, {"type": "Feature", "properties": {"bin": "825027fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-131.50609517190304, 18.940824460643068], [-132.65764671301787, 17.711156099038764], [-132.14080471892913, 16.072271835802038], [-130.50674890463372, 15.682905647705288], [-129.38245605697716, 16.903675009655334], [-129.86471382234822, 18.52258732825049], [-131.50609517190304, 18.940824460643068]]]}}, {"type": "Feature", "properties": {"bin": "8234b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.30966446935987, 34.76793171992825], [-38.87236997094432, 33.57473105279376], [-38.41822597713687, 31.843534959654345], [-36.46312925335517, 31.27779543904234], [-34.8920617414937, 32.435885767663564], [-35.282354678855576, 34.19423602910232], [-37.30966446935987, 34.76793171992825]]]}}, {"type": "Feature", "properties": {"bin": "824ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.86110522955428, 22.867285886731818], [-70.57996333106225, 23.470380968779793], [-70.3390437000868, 24.945215618732814], [-71.40014591811028, 25.85747883883615], [-72.72887815613254, 25.269651047870347], [-72.94798887459297, 23.753848556771096], [-71.86110522955428, 22.867285886731818]]]}}, {"type": "Feature", "properties": {"bin": "825d37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-156.08998858841755, 24.696711258039056], [-157.23734776410336, 23.285729094681425], [-156.47838570074387, 21.691033498803716], [-154.58288875803984, 21.499614936184223], [-153.42064184682016, 22.90851606291967], [-154.16758439931047, 24.510729665905433], [-156.08998858841755, 24.696711258039056]]]}}, {"type": "Feature", "properties": {"bin": "8258b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.31918272685661675, 9.731836670975916], [-0.5694861509226148, 8.318410093422674], [0.5689349498665859, 7.231941088759668], [1.9843964992241638, 7.529293806652365], [2.2764305960846776, 8.948132571134797], [1.1112578344875799, 10.064920172958862], [-0.31918272685661675, 9.731836670975916]]]}}, {"type": "Feature", "properties": {"bin": "8248affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-103.19965094152704, 25.912524768601525], [-101.56658365814981, 26.941792658050694], [-101.7368398811343, 28.725749340868752], [-103.5927693527946, 29.48454953307691], [-105.25067839657362, 28.43865978592777], [-105.02815187027245, 26.65129939283315], [-103.19965094152704, 25.912524768601525]]]}}, {"type": "Feature", "properties": {"bin": "82596ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.729780964035752, 24.341160535590188], [10.23354395677019, 22.6544560846675], [11.543750260400667, 21.38124691750292], [13.36552238462891, 21.765875261344213], [13.915183885634578, 23.45043771532035], [12.590615073173332, 24.753167536259074], [10.729780964035752, 24.341160535590188]]]}}, {"type": "Feature", "properties": {"bin": "823faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.912927723127964, 31.582701869496166], [14.301516597265826, 29.87332454274621], [15.679352391342839, 28.55677300195445], [17.675332540841065, 28.924476228387608], [18.343416368196838, 30.62734805513404], [16.960447263888174, 31.969596942090178], [14.912927723127964, 31.582701869496166]]]}}, {"type": "Feature", "properties": {"bin": "821387fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-135.00515623453404, 62.16151138855456], [-136.04881605224364, 60.73673755034944], [-134.1977741283888, 59.440430821226634], [-131.32811150082424, 59.48950186465123], [-130.05464671509617, 60.8806729010329], [-131.86554528849422, 62.25878005587692], [-135.00515623453404, 62.16151138855456]]]}}, {"type": "Feature", "properties": {"bin": "825e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-53.40381944858905, 7.752290994002559], [-52.068334893687656, 8.866885058754484], [-52.33667248230634, 10.503211167751092], [-53.92839791969591, 11.014795646265108], [-55.244817879310126, 9.911191823165455], [-54.98881007012607, 8.285431739399147], [-53.40381944858905, 7.752290994002559]]]}}, {"type": "Feature", "properties": {"bin": "8256e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-33.43256055030255, 8.559185447968847], [-32.11722390117859, 9.602382664633245], [-32.43307827945043, 11.24751943150281], [-34.062542066892284, 11.865530221870648], [-35.389717682300585, 10.838676181951907], [-35.076035113735706, 9.177780618167237], [-33.43256055030255, 8.559185447968847]]]}}, {"type": "Feature", "properties": {"bin": "82269ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-108.22211933522499, 36.15881614550794], [-106.47055990059373, 37.197522245390495], [-106.73836834676085, 38.8916739874737], [-108.81828775378811, 39.54349001369253], [-110.58483321289158, 38.48993462904381], [-110.25748485653355, 36.800197061174266], [-108.22211933522499, 36.15881614550794]]]}}, {"type": "Feature", "properties": {"bin": "826ceffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-93.83527270661173, 1.8061392691515354], [-95.27909021022677, 0.8386726139007167], [-95.21028067051674, -0.8737500859223845], [-93.68046241832114, -1.6323227246164849], [-92.21612396381302, -0.6561288240742987], [-92.30215822764066, 1.0694846491681498], [-93.83527270661173, 1.8061392691515354]]]}}, {"type": "Feature", "properties": {"bin": "821a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-36.17218616798295, 45.74649431398558], [-38.0021712410257, 44.56020222087468], [-37.49806947900653, 42.87128950335261], [-35.24842224452144, 42.34518095694312], [-33.41212071999933, 43.50068667193952], [-33.82872489462157, 45.21221585934099], [-36.17218616798295, 45.74649431398558]]]}}, {"type": "Feature", "properties": {"bin": "820f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-92.95365535880394, 65.9504622878471], [-96.60347904175154, 65.02772238383497], [-96.44526335797602, 63.25173080516217], [-93.0768608654095, 62.38286892983371], [-89.63138299783373, 63.2197159860098], [-89.34800004677803, 65.00573810542858], [-92.95365535880394, 65.9504622878471]]]}}, {"type": "Feature", "properties": {"bin": "821a07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.3487176632849, 51.70929202078847], [-47.10991574497763, 50.41741808369018], [-46.320010261676174, 48.891066524136306], [-43.91722629234339, 48.605827842391406], [-42.139093703410055, 49.84904149043218], [-42.807205092464294, 51.40197433571636], [-45.3487176632849, 51.70929202078847]]]}}, {"type": "Feature", "properties": {"bin": "8274f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.384788496428219, -0.6563254594597022], [-7.2834320000573145, -1.627782179992269], [-6.688818185507131, -2.823303681456528], [-5.170962984051589, -3.022067879890788], [-4.287967547655411, -2.0200006444159904], [-4.906172120825075, -0.8499475652488149], [-6.384788496428219, -0.6563254594597022]]]}}, {"type": "Feature", "properties": {"bin": "8202effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-97.84646277764695, 73.73701917858746], [-102.65289885669249, 72.69038666231518], [-101.94302348754017, 70.9908918015585], [-97.23000455277177, 70.3002933656564], [-92.69122776477644, 71.22912791615148], [-92.57166708711345, 72.95649432032424], [-97.84646277764695, 73.73701917858746]]]}}, {"type": "Feature", "properties": {"bin": "8222c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-169.1396122133501, 51.667708760266194], [-167.7012348928993, 52.910012163093796], [-168.84600679437185, 54.3885280453191], [-171.552341479114, 54.61584353944161], [-172.98321073965715, 53.34160518458369], [-171.7203947705663, 51.872616997384995], [-169.1396122133501, 51.667708760266194]]]}}, {"type": "Feature", "properties": {"bin": "8288d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-153.3434481200073, 2.639757648171126], [-154.41321483314, 1.2704435740827698], [-153.73347701366686, -0.3180025571650375], [-151.99646165774854, -0.5533618253805939], [-150.91862197114955, 0.796995066489417], [-151.58496890462717, 2.401486228670031], [-153.3434481200073, 2.639757648171126]]]}}, {"type": "Feature", "properties": {"bin": "826e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.79273489503369, 5.9841973428794315], [-113.48247274365892, 6.990262085366079], [-113.77793956806565, 8.621777037639923], [-115.4163087927026, 9.229163040531638], [-116.72371359003716, 8.191151613211591], [-116.39637597285997, 6.5781978206800344], [-114.79273489503369, 5.9841973428794315]]]}}, {"type": "Feature", "properties": {"bin": "82039ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-142.7325777589501, 78.83545988164465], [-150.55652230638296, 78.12689451571578], [-150.97533411559434, 76.39114005810903], [-145.35543575349868, 75.43128251813997], [-138.90927173359225, 76.02618077701297], [-136.84748880308013, 77.67574164226849], [-142.7325777589501, 78.83545988164465]]]}}, {"type": "Feature", "properties": {"bin": "822727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-93.25254506589539, 55.2543110936561], [-95.87500090673082, 54.38683634147526], [-95.79137349178644, 52.64053149916542], [-93.31737510980903, 51.74779836660865], [-90.80084102858143, 52.5438507823548], [-90.6514460154606, 54.30091613749209], [-93.25254506589539, 55.2543110936561]]]}}, {"type": "Feature", "properties": {"bin": "823a37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-53.15345192268115, 33.509893404855], [-54.275641831594335, 32.24126752219704], [-53.60310562745643, 30.693020915912953], [-51.833549717973476, 30.369759735577475], [-50.66606313996468, 31.61388463940947], [-51.311264893399326, 33.206130099530355], [-53.15345192268115, 33.509893404855]]]}}, {"type": "Feature", "properties": {"bin": "8234affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-31.27050629632069, 32.93527228948562], [-32.919187984996384, 31.81311295115671], [-32.584431539980926, 30.045990386831075], [-30.669421404398822, 29.383364953747783], [-29.030406967463787, 30.469788192503234], [-29.295326382774476, 32.253720833104744], [-31.27050629632069, 32.93527228948562]]]}}, {"type": "Feature", "properties": {"bin": "825ec7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-54.956574500868754, 17.185965776538776], [-53.65233609447694, 18.234041767402267], [-53.91030541419269, 19.680474994025875], [-55.460289294322024, 20.07281812545023], [-56.744128647167635, 19.03914180016912], [-56.49857410528115, 17.599199754010723], [-54.956574500868754, 17.185965776538776]]]}}, {"type": "Feature", "properties": {"bin": "821b4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-31.397541405949717, 53.96605569703895], [-33.60149490344563, 52.91003251498282], [-33.13859201463761, 51.3100840981969], [-30.59296189548184, 50.75085829394896], [-28.4061201161991, 51.77535908133029], [-28.744431158745435, 53.389266182063054], [-31.397541405949717, 53.96605569703895]]]}}, {"type": "Feature", "properties": {"bin": "82715ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-165.94455920373522, 8.737647277009582], [-166.89835070351322, 7.336895738693886], [-166.16940101623453, 5.76714668637842], [-164.48306086680194, 5.572189236997058], [-163.50206600741032, 6.965300722104553], [-164.23381681576194, 8.56116558618775], [-165.94455920373522, 8.737647277009582]]]}}, {"type": "Feature", "properties": {"bin": "825c5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-144.2222622789288, 9.08509630899821], [-145.36217266343752, 7.697113964718875], [-144.72979242136543, 6.045591181415268], [-142.9813193937701, 5.78008495244109], [-141.84880431486548, 7.150037601771984], [-142.45659521737463, 8.803195449124305], [-144.2222622789288, 9.08509630899821]]]}}, {"type": "Feature", "properties": {"bin": "82595ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.289964562104172, 19.32711432233708], [8.841162105963765, 17.69221837320674], [10.097977661370507, 16.449183288197304], [11.820444634223307, 16.809900692332402], [12.318899720760903, 18.44266884449724], [11.045964625133967, 19.71754470823835], [9.289964562104172, 19.32711432233708]]]}}, {"type": "Feature", "properties": {"bin": "826777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.89993040884043, 15.209503514387762], [-71.18832758758249, 14.470864622259246], [-71.00455889178556, 12.991161329005372], [-69.52273226445142, 12.266930402602203], [-68.24843232087197, 13.029698662218832], [-68.4415062821179, 14.492232043269272], [-69.89993040884043, 15.209503514387762]]]}}, {"type": "Feature", "properties": {"bin": "820e57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.43847475450943, 56.097969987348556], [-76.55890845203461, 55.68039630830491], [-77.36146223288394, 53.952914519545715], [-75.25931340536897, 52.686800396046266], [-72.36552336733274, 53.072556987459954], [-71.35880410733455, 54.7541932069041], [-73.43847475450943, 56.097969987348556]]]}}, {"type": "Feature", "properties": {"bin": "82506ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.5018770416946, 24.181165224000477], [-142.7188705783351, 22.885971422359724], [-142.0714326525355, 21.23383190437645], [-140.23685994180093, 20.88592387506346], [-139.03339034616954, 22.174891504326965], [-139.65016236909815, 23.81776170396896], [-141.5018770416946, 24.181165224000477]]]}}, {"type": "Feature", "properties": {"bin": "82806ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.78748944225236, -2.5312518662453467], [-50.421440284833814, -1.400332486319738], [-50.70033436722617, 0.35039393085085474], [-52.33341370176727, 0.9571709197237097], [-53.68204442813005, -0.17017772412858934], [-53.41529330610731, -1.9075458519315076], [-51.78748944225236, -2.5312518662453467]]]}}, {"type": "Feature", "properties": {"bin": "8280cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-43.54295867183072, 4.291702898166629], [-42.16867308030325, 5.417642655287111], [-42.47127599077839, 7.133535096253727], [-44.14041291818604, 7.725284543519059], [-45.51031219662639, 6.610729720310988], [-45.21587333140437, 4.8934826618098395], [-43.54295867183072, 4.291702898166629]]]}}, {"type": "Feature", "properties": {"bin": "824d4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.19820818385358, 17.668849095266363], [-60.97670703999955, 18.72057167084638], [-61.200017410400775, 20.09598400408662], [-62.63138352018315, 20.409174536538146], [-63.825825348153344, 19.371916351092157], [-63.616000347810036, 18.007410818164693], [-62.19820818385358, 17.668849095266363]]]}}, {"type": "Feature", "properties": {"bin": "823837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.5848058032652497, 35.801655683177536], [-5.442348460730086, 35.12442405176797], [-5.667271622745808, 33.405709481234645], [-4.0994046701538185, 32.39833876166745], [-2.3153354483215614, 33.072845980897284], [-2.027587338475257, 34.757090726489174], [-3.5848058032652497, 35.801655683177536]]]}}, {"type": "Feature", "properties": {"bin": "82276ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.38806417358143, 46.615408258891044], [-84.74861378741058, 46.03517879775627], [-85.09013830826513, 44.38248318374426], [-83.22495317846773, 43.3274852117277], [-80.98225290216081, 43.86011974432308], [-80.49026058459525, 45.49319034661393], [-82.38806417358143, 46.615408258891044]]]}}, {"type": "Feature", "properties": {"bin": "826daffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-98.6647116592769, 10.443970997020717], [-97.2122610082857, 11.421136455613714], [-97.303375422602, 13.10816493649229], [-98.88791870990909, 13.82722136905702], [-100.36757453557044, 12.827491054410926], [-100.2354302710271, 11.131944155998383], [-98.6647116592769, 10.443970997020717]]]}}, {"type": "Feature", "properties": {"bin": "823b1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-52.66718765783381, 36.36089582314373], [-53.84554835277784, 35.065932426553275], [-53.15345192268115, 33.509893404855], [-51.311264893399326, 33.206130099530355], [-50.0850919770084, 34.47800843316933], [-50.74647797496254, 36.07702446361831], [-52.66718765783381, 36.36089582314373]]]}}, {"type": "Feature", "properties": {"bin": "826c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.95279100761127, 6.514817339042198], [-98.3510062537667, 5.566875090388089], [-98.30082499679779, 3.9382989654374896], [-96.836140956766, 3.241875310008852], [-95.41444403196962, 4.1999104493742925], [-95.48101266679427, 5.843867655957198], [-96.95279100761127, 6.514817339042198]]]}}, {"type": "Feature", "properties": {"bin": "824997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-97.5919371226762, 18.289686316263754], [-96.05020989622146, 19.26900694125663], [-96.13028457346508, 21.02511760432553], [-97.79807701289052, 21.815235529493616], [-99.37238742957857, 20.819245417262835], [-99.24618291206443, 19.05042155994036], [-97.5919371226762, 18.289686316263754]]]}}, {"type": "Feature", "properties": {"bin": "82194ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.1013139839474526, 52.517133978422294], [-0.21913743445926212, 52.141680818262785], [-0.631094757975507, 50.60191112048409], [1.188509553443464, 49.47027919866874], [3.384771510058863, 49.85377035058955], [3.8811335596706225, 51.36037619595015], [2.1013139839474526, 52.517133978422294]]]}}, {"type": "Feature", "properties": {"bin": "827077fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-166.16940101623453, 5.76714668637842], [-167.1082418963456, 4.398547338933423], [-166.38830089260847, 2.844752535037921], [-164.72573399073622, 2.6322676133862952], [-163.7600963130254, 3.9909149093848106], [-164.48306086680194, 5.572189236997058], [-166.16940101623453, 5.76714668637842]]]}}, {"type": "Feature", "properties": {"bin": "8245b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.53930229370525, 16.46956562230495], [-77.18040807161505, 17.235914124795325], [-77.33699645198317, 18.638234975520707], [-78.5417846265863, 19.470050031246107], [-79.92504916847793, 18.71507943193177], [-80.05707852166502, 17.125740647773775], [-78.53930229370525, 16.46956562230495]]]}}, {"type": "Feature", "properties": {"bin": "8279a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.84880431486548, 7.150037601771984], [-142.9813193937701, 5.78008495244109], [-142.37584056906547, 4.1509126830922725], [-140.66344163538272, 3.8915686583496854], [-139.54203291379756, 5.241720907135426], [-140.12125038010964, 6.870649308036965], [-141.84880431486548, 7.150037601771984]]]}}, {"type": "Feature", "properties": {"bin": "821b67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-32.526002401749665, 58.67461211387133], [-34.947989246883445, 57.63255412320861], [-34.60600804334573, 56.01030029978095], [-31.834255482080355, 55.52464282034987], [-29.48076351245214, 56.51908583615772], [-29.882335644494077, 58.03211375817634], [-32.526002401749665, 58.67461211387133]]]}}, {"type": "Feature", "properties": {"bin": "824917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.30911214316681, 14.922505034036895], [-103.81933932397637, 15.969878062915633], [-104.00697936128856, 17.727556052601905], [-105.72815739211227, 18.436308040782627], [-107.2346448395892, 17.36385795843916], [-107.00364291733395, 15.608424318372613], [-105.30911214316681, 14.922505034036895]]]}}, {"type": "Feature", "properties": {"bin": "821f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.251571422436438, 48.53467795856961], [8.645314229897538, 46.977068439610534], [10.343212804239652, 45.92192778359743], [12.677317810359863, 46.40695745798227], [13.374347667392275, 47.965938447346616], [11.648396307828463, 49.03934513079639], [9.251571422436438, 48.53467795856961]]]}}, {"type": "Feature", "properties": {"bin": "82361ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-148.84180936077178, 32.68171244177444], [-150.08967792128712, 31.42136958671297], [-149.34707529879068, 29.891830084602514], [-147.37967328777356, 29.62445406401754], [-146.1312422394921, 30.88329969212349], [-146.84954365766157, 32.41075645142999], [-148.84180936077178, 32.68171244177444]]]}}, {"type": "Feature", "properties": {"bin": "825d9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.13127869137423, 14.301174626659785], [-161.18563293041163, 12.85463161730575], [-160.44607430026895, 11.231115019630435], [-158.65635089180714, 11.036138082220372], [-157.5816170502988, 12.475685415227826], [-158.31597877236496, 14.117162051440276], [-160.13127869137423, 14.301174626659785]]]}}, {"type": "Feature", "properties": {"bin": "824957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-112.49753442598038, 19.358206935882873], [-111.01600127930239, 20.479742425174795], [-111.31137588267069, 22.25679763639427], [-113.1307615446581, 22.898224484781245], [-114.6139162190153, 21.751193764039098], [-114.2769964685785, 19.988789485875216], [-112.49753442598038, 19.358206935882873]]]}}, {"type": "Feature", "properties": {"bin": "824927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-109.65172914223253, 11.759051911471927], [-108.22671671139624, 12.814237797151446], [-108.46899881813185, 14.540314420665318], [-110.17604156542586, 15.201288082930047], [-111.60832800785231, 14.117214817588279], [-111.32693234897052, 12.401690461483298], [-109.65172914223253, 11.759051911471927]]]}}, {"type": "Feature", "properties": {"bin": "825677fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.07882980569252, 14.794642048083519], [-31.447280984197857, 13.847681302031633], [-31.13226893260155, 12.247495975510196], [-29.531197447216435, 11.619374142224828], [-28.26257630333268, 12.590481608616718], [-28.466573861606125, 14.153249867064737], [-30.07882980569252, 14.794642048083519]]]}}, {"type": "Feature", "properties": {"bin": "826baffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.51577576383811, 10.751916722743852], [18.938412567086797, 9.229638727111444], [20.050440170541734, 7.99224641091651], [21.736228401051253, 8.243493259763863], [22.34818138022581, 9.74567700347234], [21.240864372039603, 11.01716618355836], [19.51577576383811, 10.751916722743852]]]}}, {"type": "Feature", "properties": {"bin": "8275b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.883976339217032, 9.211077490154926], [-12.279428517961106, 8.436299934019914], [-12.344346110330108, 7.035853616998724], [-11.055247895999136, 6.422432286737444], [-9.695281485000976, 7.173126163814278], [-9.58945482345044, 8.560616098966763], [-10.883976339217032, 9.211077490154926]]]}}, {"type": "Feature", "properties": {"bin": "8202b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-138.90927173359225, 76.02618077701297], [-145.35543575349868, 75.43128251813997], [-146.25334680995454, 73.73867554342422], [-141.84197708853563, 72.7241239848428], [-136.40380963352948, 73.24551084789533], [-134.4694707372978, 74.84437653663419], [-138.90927173359225, 76.02618077701297]]]}}, {"type": "Feature", "properties": {"bin": "826b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.25384900346828, 8.962142482864822], [16.718562711430415, 7.474846581692809], [17.830960861400172, 6.271911037888126], [19.479242065131633, 6.522352266708336], [20.050440170541734, 7.99224641091651], [18.938412567086797, 9.229638727111444], [17.25384900346828, 8.962142482864822]]]}}, {"type": "Feature", "properties": {"bin": "822b6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.060818509941825, 39.64402062468575], [-58.16439976872327, 39.600661056251056], [-59.23696170934832, 38.24981480142566], [-58.24980687256141, 37.00213150866706], [-56.422106953949374, 36.822037744292885], [-55.29832920217747, 38.13570581766841], [-56.060818509941825, 39.64402062468575]]]}}, {"type": "Feature", "properties": {"bin": "820d87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-177.73737155731018, 69.21258919215596], [179.56243278742426, 67.75762829464864], [-178.5116045749234, 66.22512849903984], [-174.29157888223213, 66.0652649892341], [-171.4567231620738, 67.39429182984122], [-172.92604370108882, 69.00495510831308], [-177.73737155731018, 69.21258919215596]]]}}, {"type": "Feature", "properties": {"bin": "823a6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-39.44699019086086, 28.943606381484344], [-40.861233379790065, 27.774879186452598], [-40.403676775173274, 26.085221444893197], [-38.58225950484946, 25.532963203214337], [-37.15515344114197, 26.664335930022155], [-37.56049397833304, 28.38491166768846], [-39.44699019086086, 28.943606381484344]]]}}, {"type": "Feature", "properties": {"bin": "823987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.14446112738395, 33.653758830556235], [-10.98139564337498, 32.86267465416169], [-11.092615024541725, 31.105564272262285], [-9.43663506793057, 30.16505875954292], [-7.663484427536879, 30.943314294985814], [-7.483894227836209, 32.67425403800953], [-9.14446112738395, 33.653758830556235]]]}}, {"type": "Feature", "properties": {"bin": "824647fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.79631743039621, 25.1017501245676], [-162.87942078907895, 23.6712242296957], [-162.10090781348254, 22.129365684134278], [-160.24132981720263, 22.00585426446814], [-159.13312902532823, 23.43817541951192], [-159.9084813728326, 24.992086567800815], [-161.79631743039621, 25.1017501245676]]]}}, {"type": "Feature", "properties": {"bin": "82138ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.05464671509617, 60.8806729010329], [-131.32811150082424, 59.48950186465123], [-129.6940809316653, 58.11139663169719], [-126.85253575324182, 58.04535010415047], [-125.39189680599091, 59.39113236644803], [-126.94428366845841, 60.85001635271576], [-130.05464671509617, 60.8806729010329]]]}}, {"type": "Feature", "properties": {"bin": "82034ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-57.45830558314712, 79.49208922409562], [-66.71029415457326, 79.5022648152541], [-70.04674224412354, 78.01248669033873], [-65.32649015145265, 76.66757659192989], [-57.91276547710292, 76.65519880459725], [-53.66696859476178, 77.98990625757939], [-57.45830558314712, 79.49208922409562]]]}}, {"type": "Feature", "properties": {"bin": "823527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.044935902233508, 47.01609893844996], [-25.161045549718533, 46.0500775281623], [-24.94600162415378, 44.314627563123466], [-22.72225847201933, 43.54372570815057], [-20.653899802599728, 44.48330412015416], [-20.76090845706983, 46.218925544889224], [-23.044935902233508, 47.01609893844996]]]}}, {"type": "Feature", "properties": {"bin": "822b4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.23696170934832, 38.24981480142566], [-61.30257545390175, 38.1443746354845], [-62.268230893245516, 36.7843719198827], [-61.22090131464299, 35.58553674094911], [-59.263935686057096, 35.69752745426622], [-58.24980687256141, 37.00213150866706], [-59.23696170934832, 38.24981480142566]]]}}, {"type": "Feature", "properties": {"bin": "821857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.460509080062738, 49.05681780552428], [-9.724736207832674, 48.43009421958324], [-9.892165114977681, 46.75969876815572], [-7.898251979650981, 45.74021980445384], [-5.733942237025079, 46.36036995957606], [-5.466444723378631, 48.005644741446424], [-7.460509080062738, 49.05681780552428]]]}}, {"type": "Feature", "properties": {"bin": "821d17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-143.03812086454852, 57.20700013517196], [-145.6125157209927, 56.56697923674092], [-145.99197018251797, 55.204589940723054], [-144.00338205746385, 54.51722111686252], [-141.60005441192686, 55.11356183219613], [-141.02066847541147, 56.438548379662535], [-143.03812086454852, 57.20700013517196]]]}}, {"type": "Feature", "properties": {"bin": "8244affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.69856484471991, 26.062694311272747], [-79.21173238204558, 26.76149177643567], [-79.05743577323724, 28.372892213851397], [-80.42537469520404, 29.321821309161468], [-81.9664941624314, 28.63180650194559], [-82.08430112269555, 26.984013476507922], [-80.69856484471991, 26.062694311272747]]]}}, {"type": "Feature", "properties": {"bin": "824487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-77.90890704647856, 25.835600882522186], [-76.47218493325147, 26.49429123770877], [-76.2856094425719, 28.067256681471644], [-77.56693855205808, 29.01977219945143], [-79.05743577323724, 28.372892213851397], [-79.21173238204558, 26.76149177643567], [-77.90890704647856, 25.835600882522186]]]}}, {"type": "Feature", "properties": {"bin": "820077fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.880064418613259, 80.34595244233695], [21.915963819844126, 81.24854113440082], [20.90925551824719, 82.87200197672588], [7.587670703025287, 83.46691212211444], [-0.5071413604228857, 82.25118471750908], [4.121656030400283, 80.79168761359398], [13.880064418613259, 80.34595244233695]]]}}, {"type": "Feature", "properties": {"bin": "82662ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.13699260858151, 10.670248376412998], [-73.4752787312157, 9.83752460325209], [-73.29737636684153, 8.250538314657462], [-71.77007241933059, 7.513552421274169], [-70.44351428280623, 8.370076579809737], [-70.63216968069608, 9.939435868899391], [-72.13699260858151, 10.670248376412998]]]}}, {"type": "Feature", "properties": {"bin": "821ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.087059206838333, 41.616884649832], [18.325260281104836, 39.98817796336323], [19.81112340000082, 38.68528246787517], [22.053163375299732, 38.99088586392547], [22.876710218874177, 40.608843552222844], [21.39910192913279, 41.9324677795958], [19.087059206838333, 41.616884649832]]]}}, {"type": "Feature", "properties": {"bin": "821f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.543635944035909, 57.232113806596516], [12.739822958959078, 55.86732673911362], [14.640206584543732, 54.90218190493178], [17.3622931946247, 55.27814416771983], [18.275235951757786, 56.63295271905083], [16.360929516312407, 57.62270326690216], [13.543635944035909, 57.232113806596516]]]}}, {"type": "Feature", "properties": {"bin": "822baffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-70.6505602992607, 47.14609856240438], [-73.172619916704, 46.81165601575054], [-73.94423101939223, 45.19783546523642], [-72.32338161918123, 43.96436330598874], [-69.95506755076666, 44.27784933847793], [-69.06056168917466, 45.844655190088524], [-70.6505602992607, 47.14609856240438]]]}}, {"type": "Feature", "properties": {"bin": "8246e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.54897294008614, 22.368890505837648], [-168.53469913484892, 20.922822426862048], [-167.76285072941627, 19.41349272810542], [-165.99903845653682, 19.33261483546742], [-164.98081982302025, 20.7833722829969], [-165.75801721847134, 22.310289219453917], [-167.54897294008614, 22.368890505837648]]]}}, {"type": "Feature", "properties": {"bin": "821827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.740899630542526, 56.38258811071852], [-11.319329754507521, 55.8183598210179], [-11.464478383460659, 54.26248852552578], [-9.166993325133559, 53.28908444969495], [-6.713499065102662, 53.841053788108646], [-6.436337296790293, 55.37739041554851], [-8.740899630542526, 56.38258811071852]]]}}, {"type": "Feature", "properties": {"bin": "825107fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.0221068263012, 14.061504059632915], [-131.13765348963113, 12.811392905875552], [-130.65089667699573, 11.195314073573554], [-129.08173718911362, 10.848243757335297], [-127.99376197091505, 12.085116662991574], [-128.44721348323827, 13.68212530931394], [-130.0221068263012, 14.061504059632915]]]}}, {"type": "Feature", "properties": {"bin": "8246b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.35478646263778, 19.34975845948914], [-175.48369806260996, 20.822556255516947], [-176.3971384210712, 22.207666523848747], [-178.22376950605556, 22.09268123220156], [-179.0767801443572, 20.579253639820692], [-178.12301222241686, 19.221787023884072], [-176.35478646263778, 19.34975845948914]]]}}, {"type": "Feature", "properties": {"bin": "822937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.3366283326517, 28.653019311484535], [-119.87996828508777, 29.867421635884615], [-120.31833774102114, 31.5733101089987], [-122.25077245892894, 32.039957621034155], [-123.68694205596185, 30.80725993662299], [-123.21275078437596, 29.126517454053335], [-121.3366283326517, 28.653019311484535]]]}}, {"type": "Feature", "properties": {"bin": "8226b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-109.13106255776393, 41.19652006940258], [-107.30092855778557, 42.20072351180341], [-107.59657027994857, 43.811280598069516], [-109.78838725262649, 44.41307088095466], [-111.6319691148531, 43.39437445833112], [-111.27157033330067, 41.78920913152274], [-109.13106255776393, 41.19652006940258]]]}}, {"type": "Feature", "properties": {"bin": "824787fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.44236144712983, 25.135778865609232], [-175.51262290348498, 26.65893199535441], [-176.4907576684941, 28.12091833484464], [-178.44656982841957, 28.034840637054618], [-179.35528176875243, 26.471571870702704], [-178.33138097945698, 25.03482258942216], [-176.44236144712983, 25.135778865609232]]]}}, {"type": "Feature", "properties": {"bin": "820c37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.87296846032518, 68.21921734529467], [-167.19133009932668, 67.03819408473983], [-166.24629184995987, 65.42493370722553], [-162.48230614711403, 64.96224411051777], [-159.28593738084393, 66.02866715337115], [-159.7116669310536, 67.66543403910107], [-163.87296846032518, 68.21921734529467]]]}}, {"type": "Feature", "properties": {"bin": "826677fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-70.44351428280623, 8.370076579809737], [-71.77007241933059, 7.513552421274169], [-71.58412086392877, 5.894708224614647], [-70.06119344193219, 5.152720140222422], [-68.74873900594572, 6.033340161196327], [-68.94472875373597, 7.631575370302872], [-70.44351428280623, 8.370076579809737]]]}}, {"type": "Feature", "properties": {"bin": "828897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.71088277855392, 0.08630376308334368], [-146.80697469010104, -1.252497203845138], [-146.18505496605556, -2.80265994839348], [-144.48778224310922, -3.0227099043793886], [-143.3961790952625, -1.7065799698214494], [-143.99662288666065, -0.14809840694750945], [-145.71088277855392, 0.08630376308334368]]]}}, {"type": "Feature", "properties": {"bin": "826d97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-104.72101877077912, 9.795282211864993], [-103.28578914212041, 10.808886602015805], [-103.45893481745269, 12.507671466950608], [-105.10789352566584, 13.191419434870557], [-106.5596852317401, 12.150574686647923], [-106.34627823377913, 10.453932971673769], [-104.72101877077912, 9.795282211864993]]]}}, {"type": "Feature", "properties": {"bin": "821d5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.39611355793218, 46.632773857175515], [-136.0993943213693, 47.88297766265084], [-136.81157802891047, 49.131858837267735], [-138.8332474954832, 49.11062606291379], [-140.06320040294017, 47.862031640242165], [-139.34036538559516, 46.633121031672175], [-137.39611355793218, 46.632773857175515]]]}}, {"type": "Feature", "properties": {"bin": "823b67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.468304294286476, 39.185528482404024], [-43.98872703472805, 37.928462896476695], [-43.417108438562195, 36.25112463317533], [-41.38216736305798, 35.79713469930868], [-39.83606767956756, 37.023514084714996], [-40.34777371760148, 38.734209457703855], [-42.468304294286476, 39.185528482404024]]]}}, {"type": "Feature", "properties": {"bin": "825457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.605640043933498, 13.645345830474795], [-12.071696161095671, 12.842516407667542], [-12.143209702643249, 11.34031170743392], [-10.794192696497728, 10.656349373399392], [-9.367549017070322, 11.435581249578398], [-9.251135128038426, 12.92166325673315], [-10.605640043933498, 13.645345830474795]]]}}, {"type": "Feature", "properties": {"bin": "826caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.85908512900879, 6.202793501448535], [-101.25402637600651, 5.242655883540775], [-101.11800329785831, 3.6731841147501365], [-99.69751752634485, 2.98711961128566], [-98.30082499679779, 3.9382989654374896], [-98.3510062537667, 5.566875090388089], [-99.85908512900879, 6.202793501448535]]]}}, {"type": "Feature", "properties": {"bin": "82495ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.6139162190153, 21.751193764039098], [-113.1307615446581, 22.898224484781245], [-113.46044826906298, 24.671633767522994], [-115.31527754076964, 25.280725131021853], [-116.7951045913354, 24.10948321784331], [-116.42453443093213, 22.353860721798863], [-114.6139162190153, 21.751193764039098]]]}}, {"type": "Feature", "properties": {"bin": "820ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-172.9029869884375, 64.50370485353399], [-175.35492453543588, 63.172437771438275], [-174.04908498921228, 61.66402065845946], [-170.60908373285838, 61.4304886221889], [-168.12750909135477, 62.65341059232736], [-169.09171800224811, 64.21420040783377], [-172.9029869884375, 64.50370485353399]]]}}, {"type": "Feature", "properties": {"bin": "823ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-52.168857817442415, 23.323167313091375], [-53.18787140474504, 22.196773458810885], [-52.602859554554804, 20.69833387837227], [-51.02040795076438, 20.28384059102303], [-49.96708935673359, 21.378732512322504], [-50.52899821187004, 22.91996861341175], [-52.168857817442415, 23.323167313091375]]]}}, {"type": "Feature", "properties": {"bin": "821997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.365250306011177, 58.95695846666264], [-29.882335644494077, 58.03211375817634], [-29.48076351245214, 56.51908583615772], [-26.717135331370347, 55.920899120684865], [-24.24608918109857, 56.81195076286665], [-24.48971136806876, 58.33329382317988], [-27.365250306011177, 58.95695846666264]]]}}, {"type": "Feature", "properties": {"bin": "820717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.439780394344702, 74.36066046087873], [-10.98528397730722, 75.55801829625113], [-16.53126506085391, 75.12865785383518], [-17.598970251255384, 73.52894986794209], [-13.917999921584816, 72.44381308655119], [-9.219808450023809, 72.85065322966908], [-7.439780394344702, 74.36066046087873]]]}}, {"type": "Feature", "properties": {"bin": "8236affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.08105897632794, 31.644146771138406], [-153.30180642665587, 30.337264802897664], [-152.539942635007, 28.808795378304737], [-150.57530349596516, 28.58589356636328], [-149.34707529879068, 29.891830084602514], [-150.08967792128712, 31.42136958671297], [-152.08105897632794, 31.644146771138406]]]}}, {"type": "Feature", "properties": {"bin": "8244effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-86.48784775839029, 31.44625015684274], [-84.84586180664866, 32.17753177892581], [-84.76157931053282, 33.83307477570318], [-86.36664811453322, 34.786557412272], [-88.0658863098819, 34.05983621723471], [-88.10173760069402, 32.37535444162421], [-86.48784775839029, 31.44625015684274]]]}}, {"type": "Feature", "properties": {"bin": "820297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.40380963352948, 73.24551084789533], [-141.84197708853563, 72.7241239848428], [-142.9193734077983, 71.08395895336362], [-139.3268017239094, 70.05170142646693], [-134.6411907574836, 70.52303503539508], [-132.86398054754275, 72.07036965115235], [-136.40380963352948, 73.24551084789533]]]}}, {"type": "Feature", "properties": {"bin": "826c67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.14401224216319, 7.309420562421476], [-89.58588421387277, 6.365659658256505], [-89.48593863230313, 4.70273226408067], [-87.92756625209735, 3.9798556900794146], [-86.47359492889161, 4.939092322038125], [-86.58999355148684, 6.605186625257107], [-88.14401224216319, 7.309420562421476]]]}}, {"type": "Feature", "properties": {"bin": "824c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.08359451476713, 21.37377234661743], [-73.3708000719215, 20.726750647129002], [-73.19920130289877, 19.39140624075669], [-71.73013580791827, 18.713930766378308], [-70.45384956441451, 19.381758931054637], [-70.6353861773763, 20.70584682084749], [-72.08359451476713, 21.37377234661743]]]}}, {"type": "Feature", "properties": {"bin": "8259a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.1827237352933726, 17.484597774332936], [-3.4006303468807486, 15.959635072416068], [-2.193704994404441, 14.869645297067569], [-0.7351612054653583, 15.279832303298882], [-0.47047915784386257, 16.820062058483494], [-1.7113099039779127, 17.935404581817405], [-3.1827237352933726, 17.484597774332936]]]}}, {"type": "Feature", "properties": {"bin": "821a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-31.885017165769785, 46.33410932842538], [-33.82872489462157, 45.21221585934099], [-33.41212071999933, 43.50068667193952], [-31.146604373261287, 42.89421219412601], [-29.21416364598153, 43.985269382071], [-29.533523189213692, 45.712552077226604], [-31.885017165769785, 46.33410932842538]]]}}, {"type": "Feature", "properties": {"bin": "8256a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.353169969857724, 12.62785427357845], [-39.00212995471533, 13.66328880253161], [-39.30797215924496, 15.25519507230345], [-40.95905857684548, 15.819002579209917], [-42.31097372833159, 14.799313196550193], [-42.011355120610396, 13.200528198039944], [-40.353169969857724, 12.62785427357845]]]}}, {"type": "Feature", "properties": {"bin": "82500ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.08381598345167, 23.820431161854444], [-134.2719765412034, 22.624728935439098], [-133.72300174399678, 20.990489850481016], [-132.02126901303234, 20.57135641524407], [-130.8597017438415, 21.76212232374099], [-131.37292407111147, 23.376844468108043], [-133.08381598345167, 23.820431161854444]]]}}, {"type": "Feature", "properties": {"bin": "822a0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.7982404774257, 38.79471715986838], [-70.9074474438301, 38.51625621003561], [-71.62155078397322, 37.06393634924812], [-70.31141226372195, 35.933886597496496], [-68.31221322379417, 36.19757453714417], [-67.51727434627897, 37.60542520224807], [-68.7982404774257, 38.79471715986838]]]}}, {"type": "Feature", "properties": {"bin": "820f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-74.26009092678501, 70.30847867513849], [-79.30823910622338, 69.8572858007267], [-80.37796999282763, 68.13249906554519], [-76.9753543179256, 66.91240801718504], [-72.48773440309648, 67.3131184550724], [-70.88611146627176, 68.97915497977544], [-74.26009092678501, 70.30847867513849]]]}}, {"type": "Feature", "properties": {"bin": "8258d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.588359354690609, 7.279047700708482], [7.212914562720072, 5.860392168376588], [8.344198848186508, 4.732154389080278], [9.86715586248289, 4.9896835731792395], [10.283180498778014, 6.402677248031407], [9.136091517447662, 7.5645420515535395], [7.588359354690609, 7.279047700708482]]]}}, {"type": "Feature", "properties": {"bin": "827107fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.1338745708222, 13.747362999338641], [-173.9898394416861, 12.343294344125121], [-173.25867466758532, 10.849022006879926], [-171.65942568354595, 10.73203329266846], [-170.76857025662542, 12.138300519344803], [-171.51129573239598, 13.65957065690441], [-173.1338745708222, 13.747362999338641]]]}}, {"type": "Feature", "properties": {"bin": "8270a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-175.81366271175628, 3.997491531082098], [-176.58691018405685, 2.7225189577904456], [-175.89683586323252, 1.2760872010763828], [-174.4200949121516, 1.072268113417068], [-173.6136264733335, 2.3418038147608544], [-174.31673738369324, 3.8210244943304374], [-175.81366271175628, 3.997491531082098]]]}}, {"type": "Feature", "properties": {"bin": "82288ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-118.25023610663773, 44.830690622460246], [-116.48369847512731, 45.92906853395805], [-116.94580923942712, 47.42273418621979], [-119.23221501743073, 47.80409716753512], [-120.98065670250082, 46.69153743514635], [-120.46316865071184, 45.212419707598016], [-118.25023610663773, 44.830690622460246]]]}}, {"type": "Feature", "properties": {"bin": "827cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.597968911654448, 5.592617806389967], [-17.487884167109744, 6.558659438572163], [-17.79095733218591, 8.124363819119283], [-19.21004929253201, 8.755747177387095], [-20.34826709444178, 7.807441231426448], [-20.03950695020037, 6.20983767529234], [-18.597968911654448, 5.592617806389967]]]}}, {"type": "Feature", "properties": {"bin": "820eeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-77.36146223288394, 53.952914519545715], [-80.26114174680684, 53.444359199694155], [-80.86152290643048, 51.713011298750715], [-78.76843600642383, 50.52262864502626], [-76.05772874399094, 50.99021068384578], [-75.25931340536897, 52.686800396046266], [-77.36146223288394, 53.952914519545715]]]}}, {"type": "Feature", "properties": {"bin": "826717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-77.18040807161505, 17.235914124795325], [-78.53930229370525, 16.46956562230495], [-78.38688043933625, 15.010055989047933], [-76.86276781801787, 14.325883119100627], [-75.50830730075, 15.113258517387997], [-75.67323472194956, 16.56329171156416], [-77.18040807161505, 17.235914124795325]]]}}, {"type": "Feature", "properties": {"bin": "82705ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-164.01137644721476, 1.073287109262638], [-164.96208428270765, -0.2446150424003635], [-164.2561585726589, -1.7743965588127992], [-162.59844759154387, -2.0129447691512166], [-161.62436613747164, -0.709611480674184], [-162.33059189508586, 0.8469844525190751], [-164.01137644721476, 1.073287109262638]]]}}, {"type": "Feature", "properties": {"bin": "8226a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.1775341855395, 41.537333709012145], [-103.30874669480728, 42.472631308344376], [-103.5359544106562, 44.08337983698415], [-105.70117194372358, 44.75951422298859], [-107.59657027994857, 43.811280598069516], [-107.30092855778557, 42.20072351180341], [-105.1775341855395, 41.537333709012145]]]}}, {"type": "Feature", "properties": {"bin": "824457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.17027178884264, 28.97340309755985], [-86.5457782112497, 29.759287059695453], [-86.48784775839029, 31.44625015684274], [-88.10173760069402, 32.37535444162421], [-89.7794734704032, 31.59073781085478], [-89.78916802666802, 29.876068019726645], [-88.17027178884264, 28.97340309755985]]]}}, {"type": "Feature", "properties": {"bin": "823707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-150.11071777863367, 42.00283554512318], [-151.41651234471018, 40.899929573834896], [-150.62454935511968, 39.57240855899657], [-148.55025650660951, 39.34736882236755], [-147.24089725126495, 40.448473364640876], [-148.00791887965894, 41.7761498095176], [-150.11071777863367, 42.00283554512318]]]}}, {"type": "Feature", "properties": {"bin": "827057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-166.38830089260847, 2.844752535037921], [-167.31261713417402, 1.5147974903819637], [-166.60148515958252, -0.015803126648620033], [-164.96208428270765, -0.2446150424003635], [-164.01137644721476, 1.073287109262638], [-164.72573399073622, 2.6322676133862952], [-166.38830089260847, 2.844752535037921]]]}}, {"type": "Feature", "properties": {"bin": "828aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.3671297411811, 1.3040893213367288], [-66.64455573288102, 0.37603868715859007], [-66.43641995662958, -1.2958056988116773], [-64.94285082872474, -2.010725171071119], [-63.6861377662988, -1.0602129218445566], [-63.90187465520639, 0.5827354103262884], [-65.3671297411811, 1.3040893213367288]]]}}, {"type": "Feature", "properties": {"bin": "820807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.646201116757433, 64.66507030510412], [9.693860813817622, 63.51970712744604], [12.823918552178451, 63.96072746373739], [12.930936799121039, 65.4132279482162], [9.586063396817956, 65.87071869391139], [7.646201116757433, 64.66507030510412]]]}}, {"type": "Feature", "properties": {"bin": "821e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.239935584499475, 42.48537089697073], [14.548450654218147, 40.85124382084822], [16.087588600126523, 39.612646497839734], [18.325260281104836, 39.98817796336323], [19.087059206838333, 41.616884649832], [17.54318322426502, 42.87611373038503], [15.239935584499475, 42.48537089697073]]]}}, {"type": "Feature", "properties": {"bin": "8233b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.54267313535857, 31.148162090824524], [-175.54582072068294, 32.691054071663075], [-176.59850610114714, 34.20123172072504], [-178.70311883403724, 34.14645331820284], [-179.6752257727667, 32.56540793873001], [-178.57016455275917, 31.077570768078235], [-176.54267313535857, 31.148162090824524]]]}}, {"type": "Feature", "properties": {"bin": "827c2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.843520374956732, -2.9637812460242547], [-22.627819124985322, -1.8539523467425856], [-22.944641684888524, -0.18261910269663728], [-24.480898541905805, 0.4063945397719461], [-25.7212640118118, -0.6931851479671456], [-25.401064676826017, -2.392032208517472], [-23.843520374956732, -2.9637812460242547]]]}}, {"type": "Feature", "properties": {"bin": "825f57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.129234300145804, 6.585958705972023], [-57.84643084054914, 7.694210873901271], [-58.08931075322476, 9.305751473411327], [-59.601429904168384, 9.79175058324698], [-60.858710526729354, 8.692541104226404], [-60.62950233262009, 7.098590026764595], [-59.129234300145804, 6.585958705972023]]]}}, {"type": "Feature", "properties": {"bin": "824937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-106.5596852317401, 12.150574686647923], [-105.10789352566584, 13.191419434870557], [-105.30911214316681, 14.922505034036895], [-107.00364291733395, 15.608424318372613], [-108.46899881813185, 14.540314420665318], [-108.22671671139624, 12.814237797151446], [-106.5596852317401, 12.150574686647923]]]}}, {"type": "Feature", "properties": {"bin": "82228ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.8226339503679, 50.76081148063326], [-160.34668181107745, 51.89099020212346], [-161.20280595712075, 53.39506331466217], [-163.66453871424696, 53.77357145650912], [-165.16758254311156, 52.61553723871915], [-164.1847210818654, 51.10764599537827], [-161.8226339503679, 50.76081148063326]]]}}, {"type": "Feature", "properties": {"bin": "827147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-165.71353740542693, 11.741030756650314], [-166.6827230615118, 10.315467561491902], [-165.94455920373522, 8.737647277009582], [-164.23381681576194, 8.56116558618775], [-163.237020732356, 9.981512461636294], [-163.97774111889441, 11.583670306331681], [-165.71353740542693, 11.741030756650314]]]}}, {"type": "Feature", "properties": {"bin": "820e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-99.31752605188404, 60.49834326894408], [-102.11996489173809, 59.4718593323693], [-101.71056206814698, 57.72518686411824], [-98.78877285042432, 56.971708359602495], [-96.06800010895594, 57.91606432796472], [-96.18015518673963, 59.6924457669829], [-99.31752605188404, 60.49834326894408]]]}}, {"type": "Feature", "properties": {"bin": "823847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.029881378875401, 36.043675411373094], [6.551513795830656, 34.35055445973989], [8.027570156679904, 33.173311423144405], [10.010436136048828, 33.6695957366448], [10.558256056640367, 35.370372439869115], [9.054678245207672, 36.5678509319993], [7.029881378875401, 36.043675411373094]]]}}, {"type": "Feature", "properties": {"bin": "8270effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-166.60148515958252, -0.015803126648620033], [-167.5116860345962, -1.3016140005051535], [-166.80916911111638, -2.8025965889319817], [-165.1923479379304, -3.046341729325491], [-164.2561585726589, -1.7743965588127992], [-164.96208428270765, -0.2446150424003635], [-166.60148515958252, -0.015803126648620033]]]}}, {"type": "Feature", "properties": {"bin": "8271a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-177.85589279867574, 11.13866379296603], [-178.61562603393992, 9.792952304051271], [-177.91379662111206, 8.357161718023372], [-176.43635201382986, 8.237540351059174], [-175.64068679852124, 9.586297353848044], [-176.35806599111405, 11.05195584369349], [-177.85589279867574, 11.13866379296603]]]}}, {"type": "Feature", "properties": {"bin": "8212a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.6940809316653, 58.11139663169719], [-130.8792395280855, 56.76429684855173], [-129.39098759745883, 55.39379264929659], [-126.77556256323751, 55.294979787274414], [-125.4343957784845, 56.597935865927674], [-126.85253575324182, 58.04535010415047], [-129.6940809316653, 58.11139663169719]]]}}, {"type": "Feature", "properties": {"bin": "823a57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.85271625381474, 27.571603218736797], [-47.0923408040686, 26.38772732737337], [-46.55058677366683, 24.772309246893247], [-44.80598863152556, 24.3018756802786], [-43.53948028911743, 25.451010292648483], [-44.04255557272185, 27.105310413298152], [-45.85271625381474, 27.571603218736797]]]}}, {"type": "Feature", "properties": {"bin": "8266a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.87225516637828, 10.26240648404312], [-82.28806052956973, 9.37146012407908], [-82.15019124572879, 7.752188983756235], [-80.58177094920417, 7.0304087512615965], [-79.16503869283281, 7.941423794133484], [-79.31740073419105, 9.553624396539796], [-80.87225516637828, 10.26240648404312]]]}}, {"type": "Feature", "properties": {"bin": "820ccffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-157.6320905130744, 56.819387676193294], [-159.93616052424343, 55.86968347918913], [-159.6501313308562, 54.468963096035075], [-157.2827709187156, 54.01377148101899], [-155.0720370398947, 54.89036044994872], [-155.1335337264925, 56.29185264795599], [-157.6320905130744, 56.819387676193294]]]}}, {"type": "Feature", "properties": {"bin": "820607fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.0416080884867, 70.52278709288883], [-31.230055693448595, 71.34692688439432], [-35.19432849083897, 70.39549546555152], [-34.63880586836484, 68.70550027755122], [-30.744537672047283, 67.97964594431163], [-27.10886435300251, 68.8525046586657], [-27.0416080884867, 70.52278709288883]]]}}, {"type": "Feature", "properties": {"bin": "827c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.881744945249157, 3.399395037441728], [-15.800861357538134, 4.381671861802315], [-16.100635789571058, 5.944638221700142], [-17.487884167109744, 6.558659438572163], [-18.597968911654448, 5.592617806389967], [-18.29181990106688, 3.9960705951817412], [-16.881744945249157, 3.399395037441728]]]}}, {"type": "Feature", "properties": {"bin": "824cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.82288670783096, 17.323395845914504], [-70.08613766800609, 16.6331676334134], [-69.89993040884043, 15.209503514387762], [-68.4415062821179, 14.492232043269272], [-67.19334638185131, 15.206256245449282], [-67.3881702214934, 16.613425129537404], [-68.82288670783096, 17.323395845914504]]]}}, {"type": "Feature", "properties": {"bin": "827c6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.52453407141993, 1.1127120234847647], [-29.22497747715939, 2.2205282812262737], [-29.544827172549255, 3.9291342231117787], [-31.164230201202276, 4.550036402249636], [-32.48012811254947, 3.454917535376011], [-32.160720842063846, 1.7264006780327115], [-30.52453407141993, 1.1127120234847647]]]}}, {"type": "Feature", "properties": {"bin": "823447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.188212875829294, 31.1522330100506], [-19.956511299083022, 30.20750468846709], [-19.885175001331245, 28.425520844846652], [-18.117856496785507, 27.59648823740311], [-16.39332769128071, 28.514587165424352], [-16.392618992120248, 30.28738493539216], [-18.188212875829294, 31.1522330100506]]]}}, {"type": "Feature", "properties": {"bin": "828f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.98282112851228, 0.2453348702965925], [-81.43914057432434, -0.7417954439430038], [-81.29244201833737, -2.5025276890360852], [-79.67401474180662, -3.2677211555184433], [-78.21816398026434, -2.2641433736476877], [-78.37997625701571, -0.5122773661661794], [-79.98282112851228, 0.2453348702965925]]]}}, {"type": "Feature", "properties": {"bin": "823567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.351337439052633, 41.82240604570132], [-16.387669396390542, 40.9845109305191], [-16.388588757180873, 39.21171319250576], [-14.444905143937865, 38.29227083697541], [-12.47570007280164, 39.11281479140376], [-12.38412687299043, 40.869133191665526], [-14.351337439052633, 41.82240604570132]]]}}, {"type": "Feature", "properties": {"bin": "823897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.0155884996367694, 25.64651817513538], [-6.667778136025995, 24.89175633085534], [-6.846165692887986, 23.225810445647934], [-5.425053091334932, 22.344835336854807], [-3.8296846549188386, 23.088405139235885], [-3.599887600906401, 24.72374401122294], [-5.0155884996367694, 25.64651817513538]]]}}, {"type": "Feature", "properties": {"bin": "825957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.279611709245232, 20.147736977484957], [5.882262995803545, 18.516052400096086], [7.151749348230992, 17.30304938782084], [8.841162105963765, 17.69221837320674], [9.289964562104172, 19.32711432233708], [7.99840503877189, 20.57032700832011], [6.279611709245232, 20.147736977484957]]]}}, {"type": "Feature", "properties": {"bin": "824847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-115.68042334187564, 27.04077250832347], [-114.14770118711654, 28.20744653633778], [-114.50601215624468, 29.962809965498728], [-116.4415312555663, 30.533964896959827], [-117.96788214801275, 29.346680844586153], [-117.56640072762364, 27.609358068779986], [-115.68042334187564, 27.04077250832347]]]}}, {"type": "Feature", "properties": {"bin": "827557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.8378324096770464, 1.8701721240824984], [-0.186075822013145, 3.2300014573740503], [-1.2768497657972255, 4.273265982323713], [-2.5790347646674925, 4.02002363858656], [-2.7800646154740574, 2.756497157143231], [-2.1427124286181316, 1.6469189364220407], [-0.8378324096770464, 1.8701721240824984]]]}}, {"type": "Feature", "properties": {"bin": "822b17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.07175051730285, 49.013088508565865], [-69.71947899952944, 48.757431677563375], [-70.6505602992607, 47.14609856240438], [-69.06056168917466, 45.844655190088524], [-66.5852510593241, 46.08850307070047], [-65.53570082306851, 47.64489600387728], [-67.07175051730285, 49.013088508565865]]]}}, {"type": "Feature", "properties": {"bin": "828a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.0160747003525, 0.9012742714960504], [-72.38280158617798, -0.05866487759648713], [-72.1947354523166, -1.7786268769012823], [-70.62869235945018, -2.516606361557191], [-69.27600574401878, -1.5358657755021456], [-69.47491670212999, 0.1618259928744295], [-71.0160747003525, 0.9012742714960504]]]}}, {"type": "Feature", "properties": {"bin": "823507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-24.94600162415378, 44.314627563123466], [-26.956907080132776, 43.296309122992405], [-26.707708198133105, 41.5365449910773], [-24.545990556815354, 40.79026291049053], [-22.572395960792, 41.7803374460896], [-22.72225847201933, 43.54372570815057], [-24.94600162415378, 44.314627563123466]]]}}, {"type": "Feature", "properties": {"bin": "821ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.314740441318996, 44.470679588895024], [17.54318322426502, 42.87611373038503], [19.087059206838333, 41.616884649832], [21.39910192913279, 41.9324677795958], [22.238176563447503, 43.517310640528756], [20.700525642136274, 44.79686404516598], [18.314740441318996, 44.470679588895024]]]}}, {"type": "Feature", "properties": {"bin": "825037fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-127.75650761238906, 16.42566424694524], [-126.56658897182817, 17.577652196445264], [-127.02874715969844, 19.232406862672743], [-128.70209135605933, 19.699208787220712], [-129.8647138223482, 18.522587328250488], [-129.38245605697713, 16.90367500965535], [-127.75650761238906, 16.42566424694524]]]}}, {"type": "Feature", "properties": {"bin": "823f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.874355349748093, 27.304951934557945], [9.380676605201614, 25.603702576968765], [10.729780964035752, 24.341160535590188], [12.590615073173332, 24.753167536259074], [13.141299636275793, 26.45499699092275], [11.775116633219884, 27.744884569895603], [9.874355349748093, 27.304951934557945]]]}}, {"type": "Feature", "properties": {"bin": "823477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.10838274495798, 33.794127804904804], [-21.91844433449385, 32.82179695820233], [-21.803961465610985, 31.02620792692692], [-19.956511299083022, 30.20750468846709], [-18.188212875829294, 31.1522330100506], [-18.225633742765968, 32.94224979572863], [-20.10838274495798, 33.794127804904804]]]}}, {"type": "Feature", "properties": {"bin": "8280dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.49178881123499, 4.809916418677702], [-39.125055578921476, 5.925105559873987], [-39.43410523143184, 7.635035982578252], [-41.10388274870444, 8.236161331378366], [-42.47127599077839, 7.133535096253727], [-42.16867308030325, 5.417642655287111], [-40.49178881123499, 4.809916418677702]]]}}, {"type": "Feature", "properties": {"bin": "820ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-84.54003278821038, 57.52364604763144], [-87.58155385473422, 56.83038063786385], [-87.88800752419588, 55.05558507309817], [-85.41812524692206, 53.98612260089093], [-82.56125119979579, 54.61940392882146], [-81.99532750060942, 56.37872863204192], [-84.54003278821038, 57.52364604763144]]]}}, {"type": "Feature", "properties": {"bin": "82344ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.39332769128071, 28.514587165424352], [-18.117856496785507, 27.59648823740311], [-18.084745335168467, 25.837418687063995], [-16.394662810970292, 25.007863044517464], [-14.715050116074213, 25.90030374026243], [-14.681052541612365, 27.647052437792293], [-16.39332769128071, 28.514587165424352]]]}}, {"type": "Feature", "properties": {"bin": "821ccffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-139.81328293935735, 44.09616647144853], [-141.16538827489856, 43.17335364173689], [-140.46451796229738, 41.85109875949529], [-138.450291223663, 41.457139817335765], [-137.26405945701532, 42.73988013119889], [-137.94108602130572, 44.071547317698794], [-139.81328293935735, 44.09616647144853]]]}}, {"type": "Feature", "properties": {"bin": "823b77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-46.053526976946245, 38.31689085591711], [-47.458914798805374, 37.03690712898594], [-46.837480042834194, 35.39713837506172], [-44.857672104308904, 34.999661031979045], [-43.417108438562195, 36.25112463317533], [-43.98872703472805, 37.928462896476695], [-46.053526976946245, 38.31689085591711]]]}}, {"type": "Feature", "properties": {"bin": "82700ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-168.7471011538475, 4.59255130445029], [-169.64233439549923, 3.2533254825392905], [-168.9284547983508, 1.7290974334753317], [-167.31261713417402, 1.5147974903819637], [-166.38830089260847, 2.844752535037921], [-167.1082418963456, 4.398547338933423], [-168.7471011538475, 4.59255130445029]]]}}, {"type": "Feature", "properties": {"bin": "8280affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.560024610085556, -2.8351545001178975], [-36.192430729824714, -1.681650785460813], [-36.50956673635525, 0.08034191858739571], [-38.189952745465504, 0.6981011755771008], [-39.563133079118444, -0.4474832204660288], [-39.250811532165585, -2.2183857025045843], [-37.560024610085556, -2.8351545001178975]]]}}, {"type": "Feature", "properties": {"bin": "823a1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.204112801797436, 28.791538603864225], [-52.31787831131049, 27.581575735298536], [-51.70374278490925, 26.024129726893676], [-50.00240945557361, 25.633575567923092], [-48.85114796415727, 26.81392401414519], [-49.43682319787224, 28.41474116542186], [-51.204112801797436, 28.791538603864225]]]}}, {"type": "Feature", "properties": {"bin": "824417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.31040349619852, 23.682658839501197], [-80.82969048713068, 24.429618069495433], [-80.69856484471991, 26.062694311272747], [-82.08430112269555, 26.984013476507922], [-83.61684078253785, 26.242156293697366], [-83.71082338833317, 24.573869210503936], [-82.31040349619852, 23.682658839501197]]]}}, {"type": "Feature", "properties": {"bin": "822367fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.45828398075636, 35.73158847414236], [-172.36608297399812, 37.22237828211649], [-173.39476769404015, 38.7599738891724], [-175.58431385159878, 38.791356809948105], [-176.65871724952697, 37.262988370595934], [-175.56432922504848, 35.741206971176496], [-173.45828398075636, 35.73158847414236]]]}}, {"type": "Feature", "properties": {"bin": "826eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.10416387391813, 4.548448008485312], [-105.73785929017677, 5.52289507884508], [-105.9355600652054, 7.1379270023120664], [-107.53627602901267, 7.7724262116121645], [-108.91370075146745, 6.768140164796934], [-108.67970013517258, 5.15989177530367], [-107.10416387391813, 4.548448008485312]]]}}, {"type": "Feature", "properties": {"bin": "825857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.869781564574977, 13.615007694572515], [10.41628812276234, 12.057325226209532], [11.607494747938308, 10.838590240504287], [13.264752541075095, 11.144077233626273], [13.762355118081885, 12.694430236620008], [12.559316983005372, 13.947330592398506], [10.869781564574977, 13.615007694572515]]]}}, {"type": "Feature", "properties": {"bin": "826e67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-123.20741906938693, 4.751344235263275], [-122.03777096796236, 5.731436762070816], [-122.41963145918007, 7.29613800280954], [-123.99432926598497, 7.852239329791246], [-125.14733890691912, 6.840368064350915], [-124.74319077977674, 5.304322366655777], [-123.20741906938693, 4.751344235263275]]]}}, {"type": "Feature", "properties": {"bin": "824537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.63106856426799, 13.836853809820953], [-84.22460724315376, 14.68950018310557], [-84.14448388994323, 16.308517532140435], [-85.50512739258085, 17.104271239676322], [-86.95440525525348, 16.244452762716225], [-86.99951934066806, 14.596250076064885], [-85.63106856426799, 13.836853809820953]]]}}, {"type": "Feature", "properties": {"bin": "82545ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.367549017070322, 11.435581249578398], [-10.794192696497728, 10.656349373399392], [-10.883976339217032, 9.211077490154926], [-9.58945482345044, 8.560616098966763], [-8.201402554173386, 9.317263995385268], [-8.069918148278395, 10.7462912331855], [-9.367549017070322, 11.435581249578398]]]}}, {"type": "Feature", "properties": {"bin": "825667fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.05549325698139, 15.089067468519037], [-28.466573861606125, 14.153249867064737], [-28.26257630333268, 12.590481608616718], [-26.696978168270526, 11.95369807584694], [-25.300780131815994, 12.852209309557823], [-25.45479083030684, 14.423931207069003], [-27.05549325698139, 15.089067468519037]]]}}, {"type": "Feature", "properties": {"bin": "822867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.45939025773737, 38.37865623424773], [-132.16701716801938, 39.65691031153755], [-132.78381808977477, 41.111332665196436], [-134.711937725098, 41.260646908811665], [-135.95374371109784, 39.978597279074364], [-135.31985086435014, 38.551076772095065], [-133.45939025773737, 38.37865623424773]]]}}, {"type": "Feature", "properties": {"bin": "821837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.79164665163863, 56.73632442836385], [-16.376938456712956, 56.06460393499809], [-16.378405826402158, 54.49624180191474], [-13.940607532856738, 53.61055766075581], [-11.464478383460659, 54.26248852552578], [-11.319329754507521, 55.8183598210179], [-13.79164665163863, 56.73632442836385]]]}}, {"type": "Feature", "properties": {"bin": "822677fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.47626179179873, 42.444959538714684], [-93.4580322172988, 41.74324949577916], [-93.40741416499297, 40.11435457093053], [-91.54335025644869, 39.225656206133934], [-89.7262163062613, 39.947221847185624], [-89.5783976626672, 41.51855472869033], [-91.47626179179873, 42.444959538714684]]]}}, {"type": "Feature", "properties": {"bin": "821a57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-39.082390787769896, 47.86715402021093], [-40.893517512329325, 46.65143560334475], [-40.312312904306864, 45.01130128059018], [-38.0021712410257, 44.56020222087468], [-36.17218616798295, 45.74649431398558], [-36.667471419753, 47.41254623789866], [-39.082390787769896, 47.86715402021093]]]}}, {"type": "Feature", "properties": {"bin": "8250f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-128.4779115319772, 24.19492082737583], [-127.22559969441997, 25.42410473875133], [-127.72472027471471, 27.079340010362404], [-129.49913609470804, 27.470934320405995], [-130.7192305545604, 26.223917493677725], [-130.1985280710341, 24.603066514705624], [-128.4779115319772, 24.19492082737583]]]}}, {"type": "Feature", "properties": {"bin": "82509ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-122.2996262543588, 25.725526770366592], [-120.89709710213334, 26.938837684850565], [-121.3366283326517, 28.653019311484535], [-123.21275078437596, 29.126517454053335], [-124.59372767160691, 27.89317388664519], [-124.12161967242743, 26.206588984770875], [-122.2996262543588, 25.725526770366592]]]}}, {"type": "Feature", "properties": {"bin": "82708ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.72587330867833, -0.3883541127238595], [-174.5208252301345, -1.6114802044966479], [-173.8352757000459, -3.0477316389155105], [-172.34353547812253, -3.2930086626395747], [-171.51742344956943, -2.080262305139534], [-172.2137715575126, -0.6114455260916695], [-173.72587330867833, -0.3883541127238595]]]}}, {"type": "Feature", "properties": {"bin": "825067fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-139.03339034616954, 22.174891504326965], [-140.23685994180093, 20.88592387506346], [-139.6214919325493, 19.2239309458196], [-137.83411698379274, 18.862572984763172], [-136.64814720012825, 20.143945369145783], [-137.2313894512537, 21.794055505550357], [-139.03339034616954, 22.174891504326965]]]}}, {"type": "Feature", "properties": {"bin": "820697fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-57.91276547710292, 76.65519880459725], [-65.32649015145265, 76.66757659192989], [-68.19476022887606, 75.14997942194846], [-64.40069409805079, 73.74945312855914], [-58.216875931789744, 73.73999486146171], [-54.754381710923894, 75.12848264807123], [-57.91276547710292, 76.65519880459725]]]}}, {"type": "Feature", "properties": {"bin": "824597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-77.33699645198317, 18.638234975520707], [-75.99854824376126, 19.358823435394218], [-75.81870531040758, 20.90527062510746], [-77.00401926684938, 21.76925238568191], [-78.38955169931603, 21.054853372747687], [-78.5417846265863, 19.470050031246107], [-77.33699645198317, 18.638234975520707]]]}}, {"type": "Feature", "properties": {"bin": "82360ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-145.58220229824505, 33.61987316686077], [-146.84954365766157, 32.41075645142999], [-146.1312422394921, 30.88329969212349], [-144.17342232410294, 30.569950882968847], [-142.91254742094029, 31.77748775234221], [-143.60189912765898, 33.29968291793388], [-145.58220229824505, 33.61987316686077]]]}}, {"type": "Feature", "properties": {"bin": "824697fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.31504061346584, 16.573221523624234], [-175.4705882437728, 18.011420071329557], [-176.35478646263778, 19.34975845948914], [-178.12301222241686, 19.221787023884072], [-178.95063664056067, 17.743332187238174], [-178.02847505316092, 16.433447263532464], [-176.31504061346584, 16.573221523624234]]]}}, {"type": "Feature", "properties": {"bin": "822bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.05772874399094, 50.99021068384578], [-78.76843600642383, 50.52262864502626], [-79.38815567758773, 48.82734490582738], [-77.47171852185642, 47.6345663178102], [-74.9294757128243, 48.06601289912326], [-74.14230258846972, 49.724417395922266], [-76.05772874399094, 50.99021068384578]]]}}, {"type": "Feature", "properties": {"bin": "825daffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-156.8561954077174, 18.640826146956076], [-157.96626558195206, 17.1976946085419], [-157.2238132441211, 15.563074288117468], [-155.380442276238, 15.359563479620281], [-154.25484084592026, 16.797013674901503], [-154.98703981757708, 18.44351602730166], [-156.8561954077174, 18.640826146956076]]]}}, {"type": "Feature", "properties": {"bin": "821977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.9315871635106042, 57.68949737459286], [-3.536381138969177, 57.31728796714347], [-3.9031812914854873, 55.84060580646489], [-1.7855433613315905, 54.76238836624054], [0.6707588590220488, 55.13380594305545], [1.1521975506221198, 56.58335438930745], [-0.9315871635106042, 57.68949737459286]]]}}, {"type": "Feature", "properties": {"bin": "821907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.999682127502824, 60.776647276888475], [-10.828226222593615, 60.2883152943037], [-11.002062802068592, 58.832287456226396], [-8.508655388670176, 57.88113060234581], [-5.832270115239387, 58.353838498476094], [-5.5023349253001514, 59.7918551703578], [-7.999682127502824, 60.776647276888475]]]}}, {"type": "Feature", "properties": {"bin": "8222e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-169.4068233242219, 48.86972804267918], [-168.038420750137, 50.16227239479585], [-169.1396122133501, 51.667708760266194], [-171.7203947705663, 51.872616997384995], [-173.08099561302038, 50.547739264021246], [-171.87311046039585, 49.05085282910134], [-169.4068233242219, 48.86972804267918]]]}}, {"type": "Feature", "properties": {"bin": "825bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.35806599111405, 11.05195584369349], [-175.55070635127848, 12.428955187573973], [-176.27766753994322, 13.88707798456079], [-177.93959972963776, 13.736771822643849], [-178.72069983449612, 12.343247039532917], [-177.85589279867577, 11.138663792966048], [-176.35806599111405, 11.05195584369349]]]}}, {"type": "Feature", "properties": {"bin": "820367fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.77414165316664, 82.79988538231541], [-47.56553575112999, 83.4126486273365], [-56.70552678822696, 82.23991177572], [-51.97823202386118, 80.76256673477604], [-42.28609529069508, 80.32622462578856], [-34.758417980284634, 81.27137179020501], [-34.77414165316664, 82.79988538231541]]]}}, {"type": "Feature", "properties": {"bin": "827907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-136.1584261723648, 9.260555687941112], [-137.28866604952583, 7.92920832467292], [-136.73801449434742, 6.304836382283893], [-135.08706380110942, 6.020226890037461], [-133.97647809028823, 7.333044470647289], [-134.4967553226894, 8.948659190742395], [-136.1584261723648, 9.260555687941112]]]}}, {"type": "Feature", "properties": {"bin": "822b77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.172924705777675, 43.65424362989634], [-61.4965375139248, 43.564806453194414], [-62.57347711589102, 42.10999813923826], [-61.393854340003756, 40.8060816345621], [-59.206822052345544, 40.903996439791], [-58.06868817238533, 42.29773315101913], [-59.172924705777675, 43.65424362989634]]]}}, {"type": "Feature", "properties": {"bin": "822aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-71.00544091940455, 34.54096936853697], [-72.93066264684357, 34.23868196403471], [-73.53180669108406, 32.868710179878306], [-72.2838315373069, 31.837781075909685], [-70.44941904904171, 32.12169030756375], [-69.77521250033024, 33.454135945246556], [-71.00544091940455, 34.54096936853697]]]}}, {"type": "Feature", "properties": {"bin": "826e0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-117.66413560918296, 5.577185822220652], [-116.39637597285997, 6.5781978206800344], [-116.72371359003716, 8.191151613211591], [-118.34853420742208, 8.781042023506567], [-119.60835281405174, 7.7478127606938525], [-119.25213680561293, 6.157297531605237], [-117.66413560918296, 5.577185822220652]]]}}, {"type": "Feature", "properties": {"bin": "82264ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.0658863098819, 34.05983621723471], [-86.36664811453322, 34.786557412272], [-86.30321265174138, 36.43452708675165], [-87.99076359407903, 37.38207405857687], [-89.74853700409722, 36.65876042006413], [-89.75917248139794, 34.984893131397165], [-88.0658863098819, 34.05983621723471]]]}}, {"type": "Feature", "properties": {"bin": "820e0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-74.70637691776197, 59.1392445862628], [-78.08810459236533, 58.68438659429741], [-78.88333974817974, 56.93401450819165], [-76.55890845203461, 55.68039630830491], [-73.43847475450943, 56.097969987348556], [-72.39518626473647, 57.80385928059021], [-74.70637691776197, 59.1392445862628]]]}}, {"type": "Feature", "properties": {"bin": "826e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.9355600652054, 7.1379270023120664], [-104.53497491114089, 8.135308829772034], [-104.72101877077912, 9.795282211864993], [-106.34627823377913, 10.453932971673769], [-107.76057861773795, 9.427750315560811], [-107.53627602901267, 7.7724262116121645], [-105.9355600652054, 7.1379270023120664]]]}}, {"type": "Feature", "properties": {"bin": "828adffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.198553234044326, 1.090818369541872], [-59.93141807817387, 2.18518367824736], [-60.165868273993155, 3.8426199422059453], [-61.65339083366119, 4.382418723973649], [-62.89279437303725, 3.2918827958874095], [-62.672471335318626, 1.6578647749454078], [-61.198553234044326, 1.090818369541872]]]}}, {"type": "Feature", "properties": {"bin": "823b27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.56571923107196, 42.10734420983778], [-52.873705300901584, 40.78170535052993], [-52.139731328512376, 39.23171996408161], [-50.13390534968605, 38.967617976396276], [-48.77267432061403, 40.27246662224973], [-49.467374174378534, 41.8623221117603], [-51.56571923107196, 42.10734420983778]]]}}, {"type": "Feature", "properties": {"bin": "82394ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.868332115011663, 41.58031489516634], [4.408495454619831, 39.93195935896595], [5.9780551779606474, 38.85056389706335], [8.045142114241346, 39.402136368971775], [8.584298678288794, 41.06115008945459], [6.977840307728955, 42.158615693047416], [4.868332115011663, 41.58031489516634]]]}}, {"type": "Feature", "properties": {"bin": "823b47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-43.417108438562195, 36.25112463317533], [-44.857672104308904, 34.999661031979045], [-44.2923731199734, 33.326136279047425], [-42.3374216455875, 32.86845387395056], [-40.87032852792942, 34.08823726387208], [-41.38216736305798, 35.79713469930868], [-43.417108438562195, 36.25112463317533]]]}}, {"type": "Feature", "properties": {"bin": "82349ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-36.0640905209584, 29.53409850105981], [-37.56049397833304, 28.38491166768846], [-37.15515344114197, 26.664335930022155], [-35.31019418406649, 26.066750775842593], [-33.80963548074154, 27.17820910039476], [-34.15652430618336, 28.924377730609972], [-36.0640905209584, 29.53409850105981]]]}}, {"type": "Feature", "properties": {"bin": "826ba7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.649194223749127, 11.737554880527712], [16.110106592542248, 10.199094662934618], [17.25384900346828, 8.962142482864822], [18.938412567086797, 9.229638727111444], [19.51577576383811, 10.751916722743852], [18.37131288344698, 12.0234431609871], [16.649194223749127, 11.737554880527712]]]}}, {"type": "Feature", "properties": {"bin": "821a2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.908619446419266, 52.61294145524302], [-42.807205092464294, 51.40197433571636], [-42.139093703410055, 49.84904149043218], [-39.66181029144391, 49.47997018187093], [-37.73288919120908, 50.66238203129507], [-38.30668550904336, 52.24163986312101], [-40.908619446419266, 52.61294145524302]]]}}, {"type": "Feature", "properties": {"bin": "827c5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.678663415956887, 4.381765439928967], [-25.433639335198723, 5.431491053788328], [-25.750258419602847, 7.08658299742536], [-27.314080831461233, 7.716645243433415], [-28.580213469784795, 6.682687019887302], [-28.261803843108698, 5.002988319007177], [-26.678663415956887, 4.381765439928967]]]}}, {"type": "Feature", "properties": {"bin": "822a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-64.87878150909914, 32.81271682483968], [-66.7431054193043, 32.609931079791295], [-67.48075259088839, 31.31869572733398], [-66.41090036021146, 30.273889962489605], [-64.63464431472751, 30.470521737714506], [-63.84319360780384, 31.717895790643848], [-64.87878150909914, 32.81271682483968]]]}}, {"type": "Feature", "properties": {"bin": "825d87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-159.80775645853043, 17.37080876445894], [-160.87955147447607, 15.920122566981886], [-160.13127869137423, 14.301174626659785], [-158.31597877236496, 14.117162051440276], [-157.2238132441211, 15.563074288117468], [-157.96626558195206, 17.1976946085419], [-159.80775645853043, 17.37080876445894]]]}}, {"type": "Feature", "properties": {"bin": "828f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-84.77330656823203, 2.504604687315686], [-86.23703408379006, 1.530036116519424], [-86.1168331380962, -0.20786750723228084], [-84.51636563102011, -0.9705107901420124], [-83.04540989966834, 0.019087365036244645], [-83.18196203351864, 1.7557835553234635], [-84.77330656823203, 2.504604687315686]]]}}, {"type": "Feature", "properties": {"bin": "82072ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.509600214148194, 69.01847753368425], [-7.942563038336622, 70.17612110688736], [-12.010053527275545, 69.77863315577277], [-13.121278008102069, 68.22640078990388], [-10.558792289389446, 67.1535478452051], [-6.976507251866831, 67.54932953851741], [-5.509600214148194, 69.01847753368425]]]}}, {"type": "Feature", "properties": {"bin": "825637fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.026146687669865, 18.87250036262906], [-38.33926306797061, 17.838743925532082], [-37.96631427500518, 16.248891797137578], [-36.32405861237685, 15.666830213389135], [-35.0055294623529, 16.660533636112035], [-35.333446627022596, 18.27582314924697], [-37.026146687669865, 18.87250036262906]]]}}, {"type": "Feature", "properties": {"bin": "823437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-28.341848402846313, 38.70068005705689], [-30.16004106649327, 37.6088436866489], [-29.85940456497619, 35.82684548982034], [-27.822714524368322, 35.12512947073977], [-26.025574828342354, 36.184902234453155], [-26.24276732275889, 37.97742746906803], [-28.341848402846313, 38.70068005705689]]]}}, {"type": "Feature", "properties": {"bin": "821d67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.46227165571864, 48.9686402565074], [-128.90985381013775, 50.15451159756744], [-130.1721466749766, 51.49028793950405], [-132.45105662182303, 51.56174614019404], [-133.3146867639574, 50.33165648431905], [-132.622022499174, 49.063414704958], [-130.46227165571864, 48.9686402565074]]]}}, {"type": "Feature", "properties": {"bin": "824747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.90051860832787, 32.31558231593663], [-164.99155850604535, 30.943386715374107], [-164.18262053679567, 29.531560988987913], [-162.28142468559858, 29.483142421765322], [-161.16001295482693, 30.8610323297859], [-161.9689899404892, 32.281493855003525], [-163.90051860832787, 32.31558231593663]]]}}, {"type": "Feature", "properties": {"bin": "82448ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.05743577323724, 28.372892213851397], [-77.56693855205808, 29.01977219945143], [-77.38897377961239, 30.603487618949398], [-78.7359276165128, 31.577259568416313], [-80.2830049998872, 30.94258349799631], [-80.42537469520404, 29.321821309161468], [-79.05743577323724, 28.372892213851397]]]}}, {"type": "Feature", "properties": {"bin": "821faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.088630904745564, 51.03969572472888], [7.489805747586691, 49.52621240698069], [9.251571422436438, 48.53467795856961], [11.648396307828463, 49.03934513079639], [12.345747364400054, 50.55427508726938], [10.54962281041145, 51.5639900357469], [8.088630904745564, 51.03969572472888]]]}}, {"type": "Feature", "properties": {"bin": "822877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-130.22263777229935, 39.442424221906194], [-128.8262478993717, 40.70115412021985], [-129.41846935219817, 42.180691044100726], [-131.43373682445977, 42.37654333434242], [-132.78381808977477, 41.111332665196436], [-132.16701716801938, 39.65691031153755], [-130.22263777229935, 39.442424221906194]]]}}, {"type": "Feature", "properties": {"bin": "82501ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.19023081549102, 21.33771636585937], [-127.98412598964461, 22.544146945569565], [-128.4779115319772, 24.19492082737583], [-130.1985280710341, 24.603066514705624], [-131.37292407111144, 23.376844468108043], [-130.8597017438415, 21.762122323740986], [-129.19023081549102, 21.33771636585937]]]}}, {"type": "Feature", "properties": {"bin": "82296ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.68851943420182, 32.81586630611946], [-133.49959334890286, 34.09780740351217], [-134.09307858581585, 35.60902427665048], [-135.89002309404285, 35.80631066025898], [-137.16670054747664, 34.7661254517022], [-136.54677169521673, 33.26381879651192], [-134.68851943420182, 32.81586630611946]]]}}, {"type": "Feature", "properties": {"bin": "826d77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.87935728094321, 11.176978153286738], [-88.46014669141515, 12.07893861517155], [-88.43455261911369, 13.711755540888754], [-89.86490654761025, 14.465456015426508], [-91.32239510608667, 13.549694178528066], [-91.31073372398161, 11.894446978855102], [-89.87935728094321, 11.176978153286738]]]}}, {"type": "Feature", "properties": {"bin": "826e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.78506107831564, 9.035348232421732], [-109.39949602935216, 10.069884312829208], [-109.65172914223253, 11.759051911471927], [-111.32693234897052, 12.401690461483298], [-112.7172719065648, 11.33682496700244], [-112.42828692691761, 9.660264682375837], [-110.78506107831564, 9.035348232421732]]]}}, {"type": "Feature", "properties": {"bin": "827167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-165.47608510831202, 14.761008633426568], [-166.4611269077316, 13.318620675199552], [-165.71353740542693, 11.741030756650314], [-163.97774111889441, 11.583670306331681], [-162.96468229627766, 13.023262213222903], [-163.71455965998953, 14.623074892227512], [-165.47608510831202, 14.761008633426568]]]}}, {"type": "Feature", "properties": {"bin": "821987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.860891633724744, 59.14600882924072], [-24.48971136806876, 58.33329382317988], [-24.24608918109857, 56.81195076286665], [-21.536793665272608, 56.10124011353575], [-18.987191465997125, 56.88329845233644], [-19.067029449080284, 58.40493643730386], [-21.860891633724744, 59.14600882924072]]]}}, {"type": "Feature", "properties": {"bin": "825e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-47.24316456848381, 16.383334811391805], [-45.89544362512071, 17.410767914952135], [-46.18247457668085, 18.9147568579124], [-47.80788616995635, 19.39171510753979], [-49.14562786618431, 18.379205732370483], [-48.86827717036491, 16.875318014324517], [-47.24316456848381, 16.383334811391805]]]}}, {"type": "Feature", "properties": {"bin": "8270f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-171.37544324872502, 0.6498705655764005], [-172.2137715575126, -0.6114455260916695], [-171.51742344956943, -2.080262305139534], [-169.97355544229524, -2.3189899040446402], [-169.10510260935467, -1.068515809478139], [-169.81010632386403, 0.43188476755339184], [-171.37544324872502, 0.6498705655764005]]]}}, {"type": "Feature", "properties": {"bin": "822357fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.08137362878634, 40.128860824253564], [-168.8876761772056, 41.53861492567143], [-169.87508900899755, 43.08698827034674], [-172.14021875468273, 43.217060122954415], [-173.3260183385508, 41.77149077185328], [-172.25768585320338, 40.23216493003701], [-170.08137362878634, 40.128860824253564]]]}}, {"type": "Feature", "properties": {"bin": "820f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.598270292718745, 67.72706533699171], [-63.24061505124017, 67.72209967046797], [-65.22723125244676, 66.13579964980414], [-62.85337076670207, 64.645202662454], [-58.725707805023305, 64.6599175449764], [-56.49997372257031, 66.15594458444963], [-58.598270292718745, 67.72706533699171]]]}}, {"type": "Feature", "properties": {"bin": "82190ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.832270115239387, 58.353838498476094], [-8.508655388670176, 57.88113060234581], [-8.740899630542526, 56.38258811071852], [-6.436337296790293, 55.37739041554851], [-3.9031812914854873, 55.84060580646489], [-3.536381138969177, 57.31728796714347], [-5.832270115239387, 58.353838498476094]]]}}, {"type": "Feature", "properties": {"bin": "825c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-151.68149446753523, 14.904350827871541], [-152.8177485579885, 13.475427259377641], [-152.11295865343612, 11.807393618927087], [-150.28795295770135, 11.560016019822443], [-149.14588215335624, 12.977719267796031], [-149.83360623557414, 14.65381003431932], [-151.68149446753523, 14.904350827871541]]]}}, {"type": "Feature", "properties": {"bin": "82792ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.37582661043865, 10.252592093010179], [-134.4967553226894, 8.948659190742395], [-133.97647809028823, 7.333044470647289], [-132.36662828027315, 7.033811072885346], [-131.26895225504003, 8.320295172124071], [-131.7575654722191, 9.923161288223044], [-133.37582661043865, 10.252592093010179]]]}}, {"type": "Feature", "properties": {"bin": "82551ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.144989535729147, 23.326587938836802], [-14.779224893207182, 22.458857233680753], [-14.809542528491999, 20.76971623997587], [-13.2640825169036, 19.96445296689503], [-11.67514915567997, 20.80838745157097], [-11.587036473562442, 22.48058908346514], [-13.144989535729147, 23.326587938836802]]]}}, {"type": "Feature", "properties": {"bin": "826cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-98.30082499679779, 3.9382989654374896], [-99.69751752634485, 2.98711961128566], [-99.65465015437248, 1.3323876690307883], [-98.19879414728011, 0.6100686809196556], [-96.776847654496, 1.5687178351663325], [-96.836140956766, 3.241875310008852], [-98.30082499679779, 3.9382989654374896]]]}}, {"type": "Feature", "properties": {"bin": "822b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-74.9294757128243, 48.06601289912326], [-77.47171852185642, 47.6345663178102], [-78.10036638488211, 45.982432195623886], [-76.33587020720189, 44.798412769531616], [-73.94423101939223, 45.19783546523642], [-73.172619916704, 46.81165601575054], [-74.9294757128243, 48.06601289912326]]]}}, {"type": "Feature", "properties": {"bin": "8238affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.8582819730967257, 29.709916100270622], [-3.114662381767312, 28.037213840900282], [-1.708865748930489, 27.07368875784343], [-0.051693302165059865, 27.635200550312817], [0.2609468260311339, 29.300374659234986], [-1.1436797512903807, 30.382229579202342], [-2.8582819730967257, 29.709916100270622]]]}}, {"type": "Feature", "properties": {"bin": "820067fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.3920560938763384, 79.5921312331109], [4.121656030400283, 80.79168761359398], [-0.5071413604228857, 82.25118471750908], [-12.81796911199405, 82.24829137508873], [-16.54048563323215, 80.82228127123085], [-10.416534576215874, 79.62054525867497], [-1.3920560938763384, 79.5921312331109]]]}}, {"type": "Feature", "properties": {"bin": "824db7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-70.44941904904171, 32.12169030756375], [-72.2838315373069, 31.837781075909685], [-72.87353489721357, 30.529769793827157], [-71.69663750794268, 29.541228049016194], [-69.94519451089594, 29.808573144961098], [-69.29034987118375, 31.080352320929475], [-70.44941904904171, 32.12169030756375]]]}}, {"type": "Feature", "properties": {"bin": "8274a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.057746405457742, 0.05139740489565597], [-8.13731674878687, 1.0021068368703743], [-8.412776379912252, 2.467580053183618], [-9.617165475873394, 3.0186960049772624], [-10.568206405653283, 2.080813975286279], [-10.28431789008691, 0.5785308439935908], [-9.057746405457742, 0.05139740489565597]]]}}, {"type": "Feature", "properties": {"bin": "820f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-66.90449925088507, 72.20470505499345], [-72.5658689157688, 71.96233722771835], [-74.26009092678501, 70.30847867513849], [-70.88611146627176, 68.97915497977544], [-65.95493520108766, 69.19412677478655], [-63.738124912818805, 70.76244135605083], [-66.90449925088507, 72.20470505499345]]]}}, {"type": "Feature", "properties": {"bin": "826e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-108.91370075146745, 6.768140164796934], [-107.53627602901267, 7.7724262116121645], [-107.76057861773795, 9.427750315560811], [-109.39949602935216, 10.069884312829208], [-110.78506107831564, 9.035348232421732], [-110.52409645276234, 7.389591580632589], [-108.91370075146745, 6.768140164796934]]]}}, {"type": "Feature", "properties": {"bin": "825407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.32044956422305, 18.32002082210057], [-14.866952039887197, 17.46687133443676], [-14.894156301320406, 15.857367972897634], [-13.427370701414569, 15.114836157430986], [-11.921275342920428, 15.942300063297786], [-11.842109343172925, 17.537180528555226], [-13.32044956422305, 18.32002082210057]]]}}, {"type": "Feature", "properties": {"bin": "82232ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.35356163728906, 35.49593479453287], [-166.21042036903486, 36.89269962490027], [-167.05840964934097, 38.43797108902174], [-169.12705484858938, 38.58103801892212], [-170.27191812997157, 37.14623592274974], [-169.34862745111113, 35.60701521904266], [-167.35356163728906, 35.49593479453287]]]}}, {"type": "Feature", "properties": {"bin": "82660ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-73.29737636684153, 8.250538314657462], [-74.66021494289579, 7.37406393514971], [-74.48577052266508, 5.7379220187705755], [-72.93661775503374, 4.995192716265735], [-71.58412086392877, 5.894708224614647], [-71.77007241933059, 7.513552421274169], [-73.29737636684153, 8.250538314657462]]]}}, {"type": "Feature", "properties": {"bin": "82808ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-36.50956673635525, 0.08034191858739571], [-35.15405506065563, 1.2176594213674936], [-35.471202399725954, 2.9618989164177876], [-37.14019742640149, 3.5803293669296288], [-38.50296943608185, 2.4535034056910714], [-38.189952745465504, 0.6981011755771008], [-36.50956673635525, 0.08034191858739571]]]}}, {"type": "Feature", "properties": {"bin": "824627fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-168.12200699185962, 26.727919372407438], [-167.10221676836198, 28.146655778593992], [-167.88337203384344, 29.625507898230126], [-169.74572981425877, 29.67390323215247], [-170.76524551604405, 28.212875529249754], [-169.9243337317964, 26.74642393511309], [-168.12200699185962, 26.727919372407438]]]}}, {"type": "Feature", "properties": {"bin": "827047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-163.7600963130254, 3.9909149093848106], [-164.72573399073622, 2.6322676133862952], [-164.01137644721476, 1.073287109262638], [-162.33059189508586, 0.8469844525190751], [-161.34132621226098, 2.192855124256149], [-162.05566024565402, 3.777935513689746], [-163.7600963130254, 3.9909149093848106]]]}}, {"type": "Feature", "properties": {"bin": "820e47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-68.28522476924562, 55.04028786795802], [-71.35880410733455, 54.7541932069041], [-72.36552336733274, 53.072556987459954], [-70.47759696544072, 51.73263802593275], [-67.63234627523188, 52.0021714141552], [-66.45904513881723, 53.627026853428696], [-68.28522476924562, 55.04028786795802]]]}}, {"type": "Feature", "properties": {"bin": "8259b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.866872026589571, 15.219885219398503], [-5.054413711032675, 13.721330560531266], [-3.8159567641288787, 12.988678177851225], [-2.423467945637673, 13.37666338895838], [-2.193704994404441, 14.869645297067569], [-3.4006303468807486, 15.959635072416068], [-4.866872026589571, 15.219885219398503]]]}}, {"type": "Feature", "properties": {"bin": "821967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.654940544612971, 56.86632091834963], [1.1521975506221198, 56.58335438930745], [0.6707588590220488, 55.13380594305545], [2.5927890313053683, 53.99775155222293], [4.948742151508293, 54.288286693229196], [5.523646549290317, 55.70676846515228], [3.654940544612971, 56.86632091834963]]]}}, {"type": "Feature", "properties": {"bin": "827127fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.00560997665534, 16.653102620895357], [-173.87488217758454, 15.231876563150667], [-173.1338745708222, 13.747362999338641], [-171.51129573239598, 13.65957065690441], [-170.60631287174178, 15.085552355448257], [-171.35903250000362, 16.594714504739436], [-173.00560997665534, 16.653102620895357]]]}}, {"type": "Feature", "properties": {"bin": "82461ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-170.09135871848687, 23.864738164743965], [-171.04140370740063, 22.426394148675314], [-170.26790510748518, 20.96411360620605], [-168.53469913484892, 20.922822426862048], [-167.54897294008614, 22.368890505837648], [-168.33134088501728, 23.84849352766288], [-170.09135871848687, 23.864738164743965]]]}}, {"type": "Feature", "properties": {"bin": "820ee7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.88333974817974, 56.93401450819165], [-81.99532750060942, 56.37872863204192], [-82.56125119979579, 54.61940392882146], [-80.26114174680684, 53.444359199694155], [-77.36146223288394, 53.952914519545715], [-76.55890845203461, 55.68039630830491], [-78.88333974817974, 56.93401450819165]]]}}, {"type": "Feature", "properties": {"bin": "82289ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.23842794408571, 45.47301527696883], [-112.38958367178164, 46.506774505316265], [-112.78800392829437, 48.011188120377795], [-115.10105179976327, 48.47184510538458], [-116.94580923942712, 47.42273418621979], [-116.48369847512731, 45.92906853395805], [-114.23842794408571, 45.47301527696883]]]}}, {"type": "Feature", "properties": {"bin": "825767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-26.311790466231407, 22.72417379561979], [-27.85218825464232, 21.71489548327453], [-27.642163004408513, 20.01898482104818], [-25.95035173778074, 19.323636368315324], [-24.429206017456544, 20.296046007847416], [-24.58004306611412, 21.999746230891233], [-26.311790466231407, 22.72417379561979]]]}}, {"type": "Feature", "properties": {"bin": "825c6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-140.75956860825522, 13.20669391152865], [-141.9200933504384, 11.84309318344203], [-141.31014380395078, 10.174450396434414], [-139.56749079841518, 9.874541283888163], [-138.42043748614526, 11.22287623237951], [-139.00189548968478, 12.886082094512698], [-140.75956860825522, 13.20669391152865]]]}}, {"type": "Feature", "properties": {"bin": "828a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-57.67006312009453, -3.4968280865806536], [-56.3517021048943, -2.3996946574232956], [-56.60533221178194, -0.6800844776357332], [-58.163640147998116, -0.07918007660184818], [-59.457190901811316, -1.1757341527056744], [-59.21738991692958, -2.8735955733324205], [-57.67006312009453, -3.4968280865806536]]]}}, {"type": "Feature", "properties": {"bin": "822b47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.206822052345544, 40.903996439791], [-61.393854340003756, 40.8060816345621], [-62.412136923314385, 39.39694854351249], [-61.30257545390175, 38.1443746354845], [-59.23696170934832, 38.24981480142566], [-58.16439976872327, 39.600661056251056], [-59.206822052345544, 40.903996439791]]]}}, {"type": "Feature", "properties": {"bin": "825db7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-162.39694129463984, 19.114485874069658], [-163.4439840974131, 17.66217587168674], [-162.6847583044768, 16.07340139283218], [-160.87955147447607, 15.920122566981886], [-159.80775645853043, 17.37080876445894], [-160.5648988815046, 18.976345486850946], [-162.39694129463984, 19.114485874069658]]]}}, {"type": "Feature", "properties": {"bin": "826c77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.12007106136942, 7.059508613810282], [-92.55464950365904, 6.111039151980233], [-92.471406029144, 4.455546808882516], [-90.93685077965439, 3.7405714093233136], [-89.48593863230313, 4.70273226408067], [-89.58588421387277, 6.365659658256505], [-91.12007106136942, 7.059508613810282]]]}}, {"type": "Feature", "properties": {"bin": "82376ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-137.7899013454123, 40.08939484348509], [-139.10478691459335, 39.10841931158573], [-138.44546294761935, 37.69007965178502], [-136.5100321904648, 37.26264734466265], [-135.31985086435014, 38.551076772095065], [-135.95374371109784, 39.978597279074364], [-137.7899013454123, 40.08939484348509]]]}}, {"type": "Feature", "properties": {"bin": "821e2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.036282030286998, 51.703743211634446], [19.151349829527778, 50.24865423658935], [20.8228860838409, 49.07436692405009], [23.367705060966273, 49.33446913970941], [24.329000339945946, 50.77632225134795], [22.673099856157986, 51.971886717716714], [20.036282030286998, 51.703743211634446]]]}}, {"type": "Feature", "properties": {"bin": "822b57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.57347711589102, 42.10999813923826], [-64.83519280239277, 41.948534313112596], [-65.78283365721654, 40.48336915505132], [-64.54478409927509, 39.23568266055749], [-62.412136923314385, 39.39694854351249], [-61.393854340003756, 40.8060816345621], [-62.57347711589102, 42.10999813923826]]]}}, {"type": "Feature", "properties": {"bin": "823957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.0911461549131662, 39.78465688180244], [-1.4162342628377134, 38.1159967227654], [0.12380735772064089, 37.036562006618176], [2.015254649789183, 37.66435763083123], [2.4096906393984865, 39.323587881774785], [0.8372982571856167, 40.33535273335422], [-1.0911461549131662, 39.78465688180244]]]}}, {"type": "Feature", "properties": {"bin": "8244e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.00714284003608, 28.834980045876637], [-83.42079792192662, 29.571467376092357], [-83.31850409944572, 31.22688419706304], [-84.84586180664866, 32.17753177892581], [-86.48784775839029, 31.44625015684274], [-86.5457782112497, 29.759287059695453], [-85.00714284003608, 28.834980045876637]]]}}, {"type": "Feature", "properties": {"bin": "825ee7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.00229441495099, 14.618298408823465], [-54.70213500599653, 15.691263979641612], [-54.956574500868754, 17.185965776538776], [-56.49857410528115, 17.599199754010723], [-57.77697605943319, 16.540010832239233], [-57.535306647416995, 15.054266427896964], [-56.00229441495099, 14.618298408823465]]]}}, {"type": "Feature", "properties": {"bin": "824d5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.825825348153344, 19.371916351092157], [-62.63138352018315, 20.409174536538146], [-62.84552854754438, 21.72916021622867], [-64.240684261845, 22.002085574481576], [-65.40723864874259, 20.97970390799355], [-65.20653379371934, 19.669922322673447], [-63.825825348153344, 19.371916351092157]]]}}, {"type": "Feature", "properties": {"bin": "821aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-40.312312904306864, 45.01130128059018], [-42.016935664855744, 43.771947458702364], [-41.43687860225216, 42.111567258722474], [-39.2247473066796, 41.661388005635025], [-37.49806947900653, 42.87128950335261], [-38.0021712410257, 44.56020222087468], [-40.312312904306864, 45.01130128059018]]]}}, {"type": "Feature", "properties": {"bin": "8239b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.727150094554121, 33.80653391043386], [-14.570452111245078, 32.95438593767852], [-14.608842439241553, 31.177353298158966], [-12.877752742714321, 30.271571925410477], [-11.092615024541725, 31.105564272262285], [-10.98139564337498, 32.86267465416169], [-12.727150094554121, 33.80653391043386]]]}}, {"type": "Feature", "properties": {"bin": "8223b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-154.78487065089823, 39.9092677035244], [-153.51265857621462, 41.06796593244783], [-154.33247913189487, 42.3384425537592], [-156.1737784796175, 42.722705971617614], [-157.45561697577298, 41.55000629383138], [-156.85996058033632, 40.02082043278962], [-154.78487065089823, 39.9092677035244]]]}}, {"type": "Feature", "properties": {"bin": "820617fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-31.54144413059165, 73.02706015961422], [-36.633558024842756, 73.76143134862352], [-40.900552139932266, 72.7083096341591], [-39.79000498564452, 71.03160990450888], [-35.19432849083897, 70.39549546555152], [-31.230055693448595, 71.34692688439432], [-31.54144413059165, 73.02706015961422]]]}}, {"type": "Feature", "properties": {"bin": "821237fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.34079232851788, 62.23352147732967], [-126.94428366845841, 60.85001635271576], [-125.39189680599091, 59.39113236644803], [-122.3538464859214, 59.235578264229325], [-120.57843732628584, 60.561067007103965], [-121.99326086096661, 62.10103868090194], [-125.34079232851788, 62.23352147732967]]]}}, {"type": "Feature", "properties": {"bin": "826c47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.48593863230313, 4.70273226408067], [-90.93685077965439, 3.7405714093233136], [-90.84373175132413, 2.0426493760071556], [-89.28276473415183, 1.3006030285245231], [-87.81758309546815, 2.276164548591812], [-87.92756625209735, 3.9798556900794146], [-89.48593863230313, 4.70273226408067]]]}}, {"type": "Feature", "properties": {"bin": "825577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.846165692887986, 23.225810445647934], [-8.463757820412326, 22.441035492513045], [-8.606696673672944, 20.791091351545326], [-7.184232148529101, 19.95235527007237], [-5.619089861216808, 20.72183235528512], [-5.425053091334932, 22.344835336854807], [-6.846165692887986, 23.225810445647934]]]}}, {"type": "Feature", "properties": {"bin": "8257affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-39.12318318048691, 21.08549596803719], [-40.42609945398587, 20.01206509675657], [-40.01269036358421, 18.40347009481354], [-38.33926306797061, 17.838743925532082], [-37.026146687669865, 18.87250036262906], [-37.395255697480366, 20.5102438385704], [-39.12318318048691, 21.08549596803719]]]}}, {"type": "Feature", "properties": {"bin": "823797fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.4849229932437, 36.29523398832091], [-161.64707805135708, 34.9940066971076], [-160.82752326558472, 33.62355575625019], [-158.85034488901204, 33.54865032056136], [-157.66269743750613, 34.853246543625296], [-158.4763607884672, 36.22920214493668], [-160.4849229932437, 36.29523398832091]]]}}, {"type": "Feature", "properties": {"bin": "82465ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-162.10090781348254, 22.129365684134278], [-163.16571097809256, 20.68376912970729], [-162.39694129463984, 19.114485874069658], [-160.5648988815046, 18.976345486850946], [-159.47516114264087, 20.42220937072486], [-160.24132981720263, 22.00585426446814], [-162.10090781348254, 22.129365684134278]]]}}, {"type": "Feature", "properties": {"bin": "8282effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.579905087848414, -1.0722681134170775], [6.274126691321663, 0.38835411272385156], [5.479174769865493, 1.6114802044966399], [4.022089806282807, 1.382296820377439], [3.3406661153006687, -0.045100606795108945], [4.103164136767459, -1.2760872010763924], [5.579905087848414, -1.0722681134170775]]]}}, {"type": "Feature", "properties": {"bin": "826637fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.70167830727847, 12.819508275225337], [-78.07759368300682, 11.987751756538207], [-77.92068999386323, 10.426959218886838], [-76.37486443029259, 9.70905200300884], [-75.00421927300809, 10.562834916758893], [-75.17381847473749, 12.112028031531354], [-76.70167830727847, 12.819508275225337]]]}}, {"type": "Feature", "properties": {"bin": "821af7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-47.2137967027232, 46.04931212219338], [-48.739633376142166, 44.745233612303764], [-48.02806080556513, 43.171173728303884], [-45.84497526655643, 42.86593130870616], [-44.27214831365338, 44.14617971626026], [-44.92554354224053, 45.755276550084716], [-47.2137967027232, 46.04931212219338]]]}}, {"type": "Feature", "properties": {"bin": "82490ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.44862516337822, 16.948594912406097], [-108.9731896168535, 18.043708500781477], [-109.23561491598234, 19.814669490563922], [-111.01600127930239, 20.479742425174795], [-112.49753442598038, 19.358206935882873], [-112.19334854692053, 17.598630441290176], [-110.44862516337822, 16.948594912406097]]]}}, {"type": "Feature", "properties": {"bin": "8258e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.784937126674635, 11.730952307865815], [8.37386952112726, 10.215393994209876], [9.549996118907211, 9.030648318176459], [11.152828163016908, 9.328206600489576], [11.607494747938308, 10.838590240504287], [10.41628812276234, 12.057325226209532], [8.784937126674635, 11.730952307865815]]]}}, {"type": "Feature", "properties": {"bin": "826b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.07769373223365, 7.210277977223253], [14.583250071411682, 5.7628604914369355], [15.505317072937482, 4.5409605608606505], [17.14051423245727, 4.790542387748742], [17.830960861400172, 6.271911037888126], [16.718562711430415, 7.474846581692809], [15.07769373223365, 7.210277977223253]]]}}, {"type": "Feature", "properties": {"bin": "822687fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-106.73836834676085, 38.8916739874737], [-104.92866786193674, 39.882146859438585], [-105.1775341855395, 41.537333709012145], [-107.30092855778557, 42.20072351180341], [-109.13106255776393, 41.19652006940258], [-108.81828775378811, 39.54349001369253], [-106.73836834676085, 38.8916739874737]]]}}, {"type": "Feature", "properties": {"bin": "82678ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-79.61763914863917, 12.683984122201483], [-81.01532143167519, 11.831455835740186], [-80.87225516637828, 10.26240648404312], [-79.31740073419105, 9.553624396539796], [-77.92068999386323, 10.426959218886838], [-78.07759368300682, 11.987751756538207], [-79.61763914863917, 12.683984122201483]]]}}, {"type": "Feature", "properties": {"bin": "821c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-143.0644961346263, 51.311333256852826], [-145.1678866251386, 50.71075583754964], [-144.88833503486788, 49.268689394068176], [-142.71506482177543, 48.97055194213804], [-141.55666630234307, 50.214791888920615], [-143.0644961346263, 51.311333256852826]]]}}, {"type": "Feature", "properties": {"bin": "8207affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.53126506085391, 75.12865785383518], [-21.165238931777616, 76.1878353494321], [-26.75208462210931, 75.51366512257574], [-26.8675207176858, 73.85617864759342], [-22.4076276387758, 72.92129484534789], [-17.598970251255384, 73.52894986794209], [-16.53126506085391, 75.12865785383518]]]}}, {"type": "Feature", "properties": {"bin": "82511ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-128.44721348323827, 13.682125309313953], [-127.29855009646941, 14.796612535181083], [-127.75650761238906, 16.42566424694524], [-129.38245605697713, 16.90367500965535], [-130.50674890463372, 15.682905647705288], [-130.0221068263012, 14.061504059632915], [-128.44721348323827, 13.682125309313953]]]}}, {"type": "Feature", "properties": {"bin": "826da7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-100.36757453557044, 12.827491054410926], [-98.88791870990909, 13.82722136905702], [-99.00408607712038, 15.551320300550213], [-100.64272416528974, 16.28269193380548], [-102.14775967128928, 15.260282288852741], [-101.98883426368867, 13.529865827842766], [-100.36757453557044, 12.827491054410926]]]}}, {"type": "Feature", "properties": {"bin": "8282d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.026444557704739, 2.318989904044636], [10.722777827285633, 3.789624991750129], [9.867155862482887, 4.9896835731792315], [8.344198848186501, 4.73215438908026], [7.6564645218774645, 3.2930086626395654], [8.482576550430563, 2.080262305139526], [10.026444557704739, 2.318989904044636]]]}}, {"type": "Feature", "properties": {"bin": "821a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.93883507610734, 44.972462672482095], [-52.3220232130021, 43.64344079831482], [-51.56571923107196, 42.10734420983778], [-49.467374174378534, 41.8623221117603], [-48.02806080556513, 43.171173728303884], [-48.739633376142166, 44.745233612303764], [-50.93883507610734, 44.972462672482095]]]}}, {"type": "Feature", "properties": {"bin": "82222ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-169.87508900899755, 43.08698827034674], [-168.62826464311084, 44.464180167609065], [-169.65103598154408, 46.00531003351204], [-172.01249472067352, 46.16141697866386], [-173.2513616288856, 44.74985555511408], [-172.14021875468273, 43.217060122954415], [-169.87508900899755, 43.08698827034674]]]}}, {"type": "Feature", "properties": {"bin": "82758ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.412776379912252, 2.467580053183618], [-7.510528664919241, 3.3757928754616686], [-7.378352602293609, 4.648343501025636], [-8.57230150554439, 5.228007003124849], [-9.897444859098838, 4.500197653762574], [-9.617165475873394, 3.0186960049772624], [-8.412776379912252, 2.467580053183618]]]}}, {"type": "Feature", "properties": {"bin": "823817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.3153354483215614, 33.072845980897284], [-4.0994046701538185, 32.39833876166745], [-4.341769247156946, 30.69897412778907], [-2.8582819730967257, 29.709916100270622], [-1.1436797512904093, 30.38222957920235], [-0.8449020421237422, 32.04554500883069], [-2.3153354483215614, 33.072845980897284]]]}}, {"type": "Feature", "properties": {"bin": "822387fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-157.45561697577298, 41.55000629383138], [-156.1737784796175, 42.722705971617614], [-156.77251837995848, 44.253502314817986], [-158.74823904648488, 44.62492403362867], [-160.0631115613191, 43.42396129921054], [-159.3702423911968, 41.88045779542566], [-157.45561697577298, 41.55000629383138]]]}}, {"type": "Feature", "properties": {"bin": "82065ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-36.22054894364172, 62.60005462999545], [-39.56813625393488, 63.15915174626515], [-42.198529876646504, 61.97272690603169], [-41.39507637997812, 60.30796180895156], [-38.28422027194964, 59.82055701662739], [-35.748313417024164, 60.930172183234546], [-36.22054894364172, 62.60005462999545]]]}}, {"type": "Feature", "properties": {"bin": "82221ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-166.0210381987472, 47.10629328266038], [-164.6599987609168, 48.36722999990064], [-165.61336675442524, 49.89597414875072], [-168.038420750137, 50.16227239479585], [-169.4068233242219, 48.86972804267918], [-168.34620780264794, 47.34314102630939], [-166.0210381987472, 47.10629328266038]]]}}, {"type": "Feature", "properties": {"bin": "822737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-98.56184761891002, 55.218550700351585], [-101.00363618987954, 54.25138635108309], [-100.69641079632339, 52.530899361258335], [-98.16677017140223, 51.748943418389956], [-95.79137349178644, 52.64053149916542], [-95.87500090673082, 54.38683634147526], [-98.56184761891002, 55.218550700351585]]]}}, {"type": "Feature", "properties": {"bin": "827917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-138.98705734518057, 8.224235772380883], [-140.12125038010964, 6.870649308036965], [-139.54203291379756, 5.241720907135426], [-137.85663310161618, 4.9705698531016935], [-136.73801449434742, 6.304836382283893], [-137.28866604952583, 7.92920832467292], [-138.98705734518057, 8.224235772380883]]]}}, {"type": "Feature", "properties": {"bin": "825817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.2085973421006972, 13.394482127990228], [2.88810760150022, 11.881770859938996], [4.0790065308125625, 10.73401495722421], [5.614833472212566, 11.068219758915488], [5.980953372995424, 12.584545802489613], [4.765825070146594, 13.763786258241295], [3.2085973421006972, 13.394482127990228]]]}}, {"type": "Feature", "properties": {"bin": "825597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.00030278211108, 22.97915346313468], [-24.58004306611412, 21.999746230891233], [-24.429206017456544, 20.296046007847416], [-22.75892806868095, 19.56933521898721], [-21.205965437756916, 20.514307699601986], [-21.29624126769292, 22.21946333422137], [-23.00030278211108, 22.97915346313468]]]}}, {"type": "Feature", "properties": {"bin": "82012ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.123253135395892, 71.43479800589196], [24.192747647371593, 72.09707420590918], [23.998789925609252, 73.5439174055105], [18.885658380221702, 74.295064225644], [14.55184502811682, 73.4874564977175], [15.568828380671018, 72.0844427245379], [20.123253135395892, 71.43479800589196]]]}}, {"type": "Feature", "properties": {"bin": "823a47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.71463006766115, 28.28550206434317], [-44.04255557272185, 27.105310413298152], [-43.53948028911743, 25.451010292648483], [-41.752091052016354, 24.941337027049308], [-40.403676775173274, 26.085221444893197], [-40.861233379790065, 27.774879186452598], [-42.71463006766115, 28.28550206434317]]]}}, {"type": "Feature", "properties": {"bin": "8250d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-127.72472027471471, 27.079340010362404], [-126.42326523231716, 28.323445670060703], [-126.92731955484221, 29.97509603981841], [-128.7583411504169, 30.350310891260573], [-130.02717868800985, 29.090245038000415], [-129.49913609470804, 27.470934320405995], [-127.72472027471471, 27.079340010362404]]]}}, {"type": "Feature", "properties": {"bin": "820caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-168.12750909135477, 62.65341059232736], [-170.60908373285838, 61.4304886221889], [-169.65224675086048, 59.9264252079926], [-166.51815211125566, 59.606492624315294], [-164.0655884448202, 60.72912581441262], [-164.7032104038009, 62.26771211347016], [-168.12750909135477, 62.65341059232736]]]}}, {"type": "Feature", "properties": {"bin": "820e5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-72.36552336733274, 53.072556987459954], [-75.25931340536897, 52.686800396046266], [-76.05772874399094, 50.99021068384578], [-74.14230258846972, 49.724417395922266], [-71.44637611745529, 50.0827384643726], [-70.47759696544072, 51.73263802593275], [-72.36552336733274, 53.072556987459954]]]}}, {"type": "Feature", "properties": {"bin": "827c67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-28.583053116063173, -1.2175802563495355], [-27.302574200172785, -0.09854949274457844], [-27.622966405679403, 1.6093190828786592], [-29.22497747715939, 2.2205282812262737], [-30.52453407141993, 1.1127120234847647], [-30.203425049597982, -0.617384322086674], [-28.583053116063173, -1.2175802563495355]]]}}, {"type": "Feature", "properties": {"bin": "82184ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.75279807155882, 45.82891715662811], [-3.870647496695551, 45.286766294393956], [-4.162634555966773, 43.62589881783318], [-2.4177958307002343, 42.540479965651194], [-0.3979729448555914, 43.08588995790071], [-0.02800493241727862, 44.712977777952425], [-1.75279807155882, 45.82891715662811]]]}}, {"type": "Feature", "properties": {"bin": "820347fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-56.70552678822696, 82.23991177572], [-68.9997521866621, 82.23856583884294], [-72.92101306361164, 80.77270618199705], [-66.71029415457326, 79.5022648152541], [-57.45830558314712, 79.49208922409562], [-51.97823202386118, 80.76256673477604], [-56.70552678822696, 82.23991177572]]]}}, {"type": "Feature", "properties": {"bin": "8266f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-77.44069883550375, 5.563142367519962], [-78.855727170351, 4.6317247469003044], [-78.69873601500697, 2.938488002465914], [-77.11276630482627, 2.188683914495084], [-75.70214201821707, 3.140562926671847], [-75.87276006745216, 4.821343563719458], [-77.44069883550375, 5.563142367519962]]]}}, {"type": "Feature", "properties": {"bin": "820747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.942390307951198, 65.10982468378923], [-17.54611228138685, 66.09556511029363], [-20.904369925050815, 65.43480780172833], [-21.327940366858037, 63.81953151634645], [-18.741712912328655, 62.92039850236251], [-15.697122940858694, 63.552516945683436], [-14.942390307951198, 65.10982468378923]]]}}, {"type": "Feature", "properties": {"bin": "8258dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.283180498778014, 6.402677248031407], [9.86715586248289, 4.9896835731792395], [10.722777827285633, 3.789624991750129], [12.294352016976955, 4.039836103302269], [12.988442347830356, 5.50570735563944], [11.857917574873651, 6.673406154658983], [10.283180498778014, 6.402677248031407]]]}}, {"type": "Feature", "properties": {"bin": "8255a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.084745335168467, 25.837418687063995], [-19.75080967850516, 24.900975863614626], [-19.687464668200867, 23.164690007884964], [-18.022267576148227, 22.372442159798524], [-16.395292355187806, 23.280106473767372], [-16.394662810970292, 25.007863044517464], [-18.084745335168467, 25.837418687063995]]]}}, {"type": "Feature", "properties": {"bin": "821957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.9031812914854873, 55.84060580646489], [-6.436337296790293, 55.37739041554851], [-6.713499065102662, 53.841053788108646], [-4.578382413982979, 52.792439042763036], [-2.1788859209290425, 53.25155105071478], [-1.7855433613315905, 54.76238836624054], [-3.9031812914854873, 55.84060580646489]]]}}, {"type": "Feature", "properties": {"bin": "82559ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.205965437756916, 20.514307699601986], [-22.75892806868095, 19.56933521898721], [-22.64474356474964, 17.902725167363144], [-21.035077717360593, 17.181705178608077], [-19.51112287762693, 18.09329987490912], [-19.567746739996146, 19.758338710645457], [-21.205965437756916, 20.514307699601986]]]}}, {"type": "Feature", "properties": {"bin": "825447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.794022418669754, 13.699301124664801], [-9.251135128038426, 12.92166325673315], [-9.367549017070322, 11.435581249578398], [-8.069918148278395, 10.7462912331855], [-6.654608692813015, 11.503405132347194], [-6.495883896199433, 12.969730336077305], [-7.794022418669754, 13.699301124664801]]]}}, {"type": "Feature", "properties": {"bin": "820217fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-116.06967252591366, 79.50058629824929], [-125.12063246139722, 79.53590776437748], [-129.04688648576507, 78.00335975517777], [-125.02399484501407, 76.64501335405268], [-117.96272581310683, 76.6578053162943], [-113.25348214408601, 77.98717636912033], [-116.06967252591366, 79.50058629824929]]]}}, {"type": "Feature", "properties": {"bin": "821377fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-112.53575880038885, 67.41321684451043], [-115.31541356398044, 66.1193217908294], [-114.03635330479166, 64.4899358631522], [-110.31273664701273, 64.0825045006956], [-107.45767046363335, 65.28570427193907], [-108.36974930314206, 66.9843307712633], [-112.53575880038885, 67.41321684451043]]]}}, {"type": "Feature", "properties": {"bin": "821807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.464478383460659, 54.26248852552578], [-13.940607532856738, 53.61055766075581], [-14.00895215724318, 52.001373403173005], [-11.731413865282882, 51.05975209495003], [-9.362891292036801, 51.696862788869424], [-9.166993325133559, 53.28908444969495], [-11.464478383460659, 54.26248852552578]]]}}, {"type": "Feature", "properties": {"bin": "820faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.37796999282763, 68.13249906554519], [-84.82657304561398, 67.51572711354028], [-85.43798273927328, 65.7492030114996], [-82.11527411969873, 64.62882942983263], [-78.07765942986177, 65.18096713675398], [-76.9753543179256, 66.91240801718504], [-80.37796999282763, 68.13249906554519]]]}}, {"type": "Feature", "properties": {"bin": "824667fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.48281168369752, 28.01670291858373], [-162.58477694202577, 26.609011588181062], [-161.79631743039621, 25.1017501245676], [-159.9084813728326, 24.992086567800815], [-158.78127814616812, 26.402669779874078], [-159.5659720311805, 27.919872272760344], [-161.48281168369752, 28.01670291858373]]]}}, {"type": "Feature", "properties": {"bin": "821a17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-47.10991574497763, 50.41741808369018], [-49.677342461499556, 50.623921801340465], [-51.288437300027994, 49.26164550158302], [-50.34984307563694, 47.76652218332134], [-47.94211636305606, 47.60059834999413], [-46.32001026167619, 48.89106652413631], [-47.10991574497763, 50.41741808369018]]]}}, {"type": "Feature", "properties": {"bin": "8222f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-165.61336675442524, 49.89597414875072], [-164.1847210818654, 51.10764599537827], [-165.16758254311156, 52.61553723871915], [-167.7012348928993, 52.910012163093796], [-169.1396122133501, 51.667708760266194], [-168.038420750137, 50.16227239479585], [-165.61336675442524, 49.89597414875072]]]}}, {"type": "Feature", "properties": {"bin": "82544ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.654608692813015, 11.503405132347194], [-8.069918148278395, 10.7462912331855], [-8.201402554173386, 9.317263995385268], [-6.957444601114244, 8.66419747538798], [-5.58264265299675, 9.401522016005323], [-5.41203547095337, 10.811137991239525], [-6.654608692813015, 11.503405132347194]]]}}, {"type": "Feature", "properties": {"bin": "82131ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.27817426355625, 65.1121109486552], [-127.05551120516839, 63.696799052423984], [-125.34079232851788, 62.23352147732967], [-121.99326086096661, 62.10103868090194], [-120.00771705989827, 63.4539330475255], [-121.55111409916394, 65.00261845542646], [-125.27817426355625, 65.1121109486552]]]}}, {"type": "Feature", "properties": {"bin": "821ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-48.02806080556513, 43.171173728303884], [-49.467374174378534, 41.8623221117603], [-48.77267432061403, 40.27246662224973], [-46.68636175862723, 39.954211636185555], [-45.20137404127417, 41.23893307488042], [-45.84497526655643, 42.86593130870616], [-48.02806080556513, 43.171173728303884]]]}}, {"type": "Feature", "properties": {"bin": "821bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.981035994086554, 55.42246431947515], [-62.07826603752657, 55.37451169620836], [-63.47668855301806, 53.792596824003354], [-61.89930219560017, 52.330914784659825], [-59.04004303421978, 52.39005960897347], [-57.533661380017314, 53.900134937976425], [-58.981035994086554, 55.42246431947515]]]}}, {"type": "Feature", "properties": {"bin": "8218dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.38569507731395, 44.49123495446823], [-18.488435954379657, 43.63378030772461], [-18.43942903424458, 41.87483011005883], [-16.387669396390542, 40.9845109305191], [-14.351337439052633, 41.82240604570132], [-14.301163761412027, 43.56902927923193], [-16.38569507731395, 44.49123495446823]]]}}, {"type": "Feature", "properties": {"bin": "82741ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.096063145794151, 1.403424289472709], [-6.9682279285302124, 0.4822612846177597], [-6.384788496428219, -0.6563254594597022], [-4.906172120825075, -0.8499475652488149], [-4.049256734701922, 0.10005961824174014], [-4.654773810329626, 1.2146892558706845], [-6.096063145794151, 1.403424289472709]]]}}, {"type": "Feature", "properties": {"bin": "824d47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.200017410400775, 20.09598400408662], [-59.97003350502034, 21.12641189146757], [-60.19749636352625, 22.454763661401774], [-61.641684306430975, 22.744753313018546], [-62.84552854754438, 21.72916021622867], [-62.63138352018315, 20.409174536538146], [-61.200017410400775, 20.09598400408662]]]}}, {"type": "Feature", "properties": {"bin": "825ba7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-178.61562603393995, 9.792952304051294], [-177.85589279867577, 11.138663792966048], [-178.72069983449612, 12.343247039532917], [179.6239575544149, 12.171203279101913], [178.88265930944007, 10.789436708939103], [179.77693144202632, 9.615942399155195], [-178.61562603393995, 9.792952304051294]]]}}, {"type": "Feature", "properties": {"bin": "82496ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-118.85971667026476, 18.293057328124043], [-117.4789627252278, 19.44534384887105], [-117.85371711875625, 21.187585569854463], [-119.64404213347197, 21.752743340175808], [-121.01253489901505, 20.57399140249709], [-120.60413853351818, 18.85685904500526], [-118.85971667026476, 18.293057328124043]]]}}, {"type": "Feature", "properties": {"bin": "821d1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-141.60005441192686, 55.11356183219613], [-144.00338205746385, 54.51722111686252], [-144.4245651319535, 53.21749558931391], [-142.61643330533244, 52.54934584271899], [-140.520266985434, 52.67984228858088], [-139.93485445337882, 53.956041312341775], [-141.60005441192686, 55.11356183219613]]]}}, {"type": "Feature", "properties": {"bin": "82270ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-93.34572179440788, 50.02013421973969], [-95.64460844466419, 49.199828955070046], [-95.57986345738759, 47.511000583160836], [-93.39584904234346, 46.630019541751885], [-91.17844711082972, 47.38363185794514], [-91.06289658034065, 49.08235655242536], [-93.34572179440788, 50.02013421973969]]]}}, {"type": "Feature", "properties": {"bin": "82198ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.987191465997125, 56.88329845233644], [-21.536793665272608, 56.10124011353575], [-21.388789544397927, 54.52817290726193], [-18.841171686388584, 53.740206752238315], [-16.378405826402158, 54.49624180191474], [-16.376938456712956, 56.06460393499809], [-18.987191465997125, 56.88329845233644]]]}}, {"type": "Feature", "properties": {"bin": "82491ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-107.2346448395892, 17.36385795843916], [-105.72815739211227, 18.436308040782627], [-105.94643547761567, 20.212678725972662], [-107.7159112273016, 20.911859360362552], [-109.23561491598234, 19.814669490563922], [-108.9731896168535, 18.043708500781477], [-107.2346448395892, 17.36385795843916]]]}}, {"type": "Feature", "properties": {"bin": "82166ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.9789398838988, 57.646231821823875], [178.36833743159448, 56.284138315106226], [179.98292411798795, 54.92942866152418], [-177.14961918827072, 54.88965531307961], [-175.74821876841355, 56.19652224584304], [-176.90195350788932, 57.58914621340675], [-179.9789398838988, 57.646231821823875]]]}}, {"type": "Feature", "properties": {"bin": "8235b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.49806947900653, 42.87128950335261], [-39.2247473066796, 41.661388005635025], [-38.71542112607588, 39.957429178482506], [-36.55457124253603, 39.437202689025106], [-34.81711570768894, 40.61578334691715], [-35.24842224452144, 42.34518095694312], [-37.49806947900653, 42.87128950335261]]]}}, {"type": "Feature", "properties": {"bin": "8223a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.0909806434369, 38.81057018862587], [-156.85996058033632, 40.02082043278962], [-157.45561697577298, 41.55000629383138], [-159.3702423911968, 41.88045779542566], [-160.63023581359607, 40.63948728488323], [-159.94762734735153, 39.09941640444715], [-158.0909806434369, 38.81057018862587]]]}}, {"type": "Feature", "properties": {"bin": "824977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.6290340058613, 16.486147588602186], [-112.19334854692053, 17.598630441290176], [-112.49753442598038, 19.358206935882873], [-114.2769964685785, 19.988789485875216], [-115.71178024538322, 18.84876895256059], [-115.36893296764649, 17.106220178644637], [-113.6290340058613, 16.486147588602186]]]}}, {"type": "Feature", "properties": {"bin": "822207fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-166.3952477588442, 44.25787410591012], [-165.09588802278773, 45.56276641090315], [-166.0210381987472, 47.10629328266038], [-168.34620780264794, 47.34314102630939], [-169.65103598154408, 46.00531003351204], [-168.62826464311084, 44.464180167609065], [-166.3952477588442, 44.25787410591012]]]}}, {"type": "Feature", "properties": {"bin": "8218cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.187655377121208, 44.34367553397141], [-14.301163761412027, 43.56902927923193], [-14.351337439052633, 41.82240604570132], [-12.38412687299043, 40.869133191665526], [-10.347941440399472, 41.63003018212926], [-10.20321881864728, 43.35694709497956], [-12.187655377121208, 44.34367553397141]]]}}, {"type": "Feature", "properties": {"bin": "827c0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-22.944641684888524, -0.18261910269663728], [-21.748282563172204, 0.8944150053331076], [-22.06251628373991, 2.547670976465841], [-23.577254165479847, 3.152670815193168], [-24.79894099018329, 2.088475796103549], [-24.480898541905805, 0.4063945397719461], [-22.944641684888524, -0.18261910269663728]]]}}, {"type": "Feature", "properties": {"bin": "8208b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.360313328340787, 59.44495728759658], [11.555977692900706, 58.130531165851394], [13.543635944035909, 57.232113806596516], [16.360929516312407, 57.62270326690216], [17.286200031965574, 58.92634320829851], [15.277419395430217, 59.85120470154142], [12.360313328340787, 59.44495728759658]]]}}, {"type": "Feature", "properties": {"bin": "825ceffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-147.14191112783993, 7.96294127703012], [-148.26936873119018, 6.564945101400148], [-147.6155744506251, 4.919506265065509], [-145.85488434174934, 4.665677496328832], [-144.72979242136543, 6.045591181415268], [-145.36217266343752, 7.697113964718875], [-147.14191112783993, 7.96294127703012]]]}}, {"type": "Feature", "properties": {"bin": "82068ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.001573925466026, 71.94619922240439], [-55.5126065144222, 72.19236641755126], [-58.434646100628136, 70.75911732687983], [-56.071292790866345, 69.19623455946773], [-51.26271142069233, 68.99050301252431], [-48.18057092765086, 70.31121173486567], [-50.001573925466026, 71.94619922240439]]]}}, {"type": "Feature", "properties": {"bin": "82675ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.33170855480171, 10.75002259975232], [-70.63216968069608, 9.939435868899391], [-70.44351428280623, 8.370076579809737], [-68.94472875373597, 7.631575370302872], [-67.65948845048786, 8.466909589365521], [-67.85743912708107, 10.015726234508087], [-69.33170855480171, 10.75002259975232]]]}}, {"type": "Feature", "properties": {"bin": "821d0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-139.93485445337882, 53.956041312341775], [-140.520266985434, 52.67984228858088], [-138.99195596812496, 51.521279104200275], [-136.86573305642807, 51.574361955016826], [-136.13385772976116, 52.83180090587108], [-137.66961854003978, 54.056935365417615], [-139.93485445337882, 53.956041312341775]]]}}, {"type": "Feature", "properties": {"bin": "826767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.19334638185131, 15.206256245449282], [-68.4415062821179, 14.492232043269272], [-68.24843232087197, 13.029698662218832], [-66.79894852138837, 12.30029845114109], [-65.56785524376276, 13.039244388531136], [-65.76882190787967, 14.482400617733116], [-67.19334638185131, 15.206256245449282]]]}}, {"type": "Feature", "properties": {"bin": "823acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-47.20078618313929, 22.04222100670142], [-48.33207003095261, 20.936085166520133], [-47.807886169956326, 19.39171510753982], [-46.18247457668084, 18.914756857912426], [-45.02510333627755, 19.985001304910526], [-45.517664324899634, 21.568161062707187], [-47.20078618313929, 22.04222100670142]]]}}, {"type": "Feature", "properties": {"bin": "82676ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.56785524376276, 13.039244388531136], [-66.79894852138837, 12.30029845114109], [-66.59934523381101, 10.803502469537596], [-65.16115084628069, 10.067792224666967], [-63.969048649310444, 11.148939539160773], [-64.17932163612504, 12.644368063884077], [-65.56785524376276, 13.039244388531136]]]}}, {"type": "Feature", "properties": {"bin": "820d6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-133.3359688578646, 67.8767773808988], [-137.4440407115714, 67.44108143110289], [-138.56609550799624, 65.91667259421638], [-135.98471645584542, 64.90922466524857], [-132.5204889558626, 65.0592552125662], [-131.02866675742908, 66.52454287691424], [-133.3359688578646, 67.8767773808988]]]}}, {"type": "Feature", "properties": {"bin": "822adffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.71577605386425, 33.549278076406296], [-78.56835598927809, 33.165261389470196], [-78.7359276165128, 31.577259568416313], [-77.38897377961239, 30.603487618949398], [-75.89741081544851, 31.19568780283275], [-75.38099462386585, 32.535970886027464], [-76.71577605386425, 33.549278076406296]]]}}, {"type": "Feature", "properties": {"bin": "82719ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-177.97021239635407, 5.608348813075146], [-178.709251115884, 4.330806899373275], [-178.02519665249852, 2.904037450579811], [-176.58691018405685, 2.7225189577904456], [-175.81366271175628, 3.997491531082098], [-176.51260750188447, 5.456990966851024], [-177.97021239635407, 5.608348813075146]]]}}, {"type": "Feature", "properties": {"bin": "824cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-67.77314023299425, 19.332592785460218], [-69.01122394115754, 18.69061909040474], [-68.82288670783096, 17.323395845914504], [-67.3881702214934, 16.613425129537404], [-66.16605247815214, 17.278604677389158], [-66.36234352556043, 18.63022354284743], [-67.77314023299425, 19.332592785460218]]]}}, {"type": "Feature", "properties": {"bin": "827517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.58264265299675, 9.401522016005323], [-6.957444601114244, 8.66419747538798], [-7.101993445416778, 7.292742847021743], [-5.908652939747203, 6.676866573680896], [-4.572995371627303, 7.395109809160056], [-4.392258230519247, 8.747781221106653], [-5.58264265299675, 9.401522016005323]]]}}, {"type": "Feature", "properties": {"bin": "820157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.056823801067942, 75.77008100847956], [23.469373219341843, 76.53550099989292], [23.094778200479343, 78.07801039757999], [15.675393846113211, 78.79915742230948], [9.902098185657369, 77.83462153176359], [11.809078968821634, 76.36649220549111], [18.056823801067942, 75.77008100847956]]]}}, {"type": "Feature", "properties": {"bin": "8209affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.012620898449943, 63.32706132801839], [1.104046136969399, 63.13895537587258], [0.5480202135218178, 61.828864713593795], [2.7675277915407426, 60.73321011494055], [5.479068693190383, 60.92198553471913], [6.159095939923656, 62.20500536598249], [4.012620898449943, 63.32706132801839]]]}}, {"type": "Feature", "properties": {"bin": "824477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-89.80771154120198, 26.426478135308493], [-88.2030466217463, 27.261778824697416], [-88.17027178884264, 28.97340309755985], [-89.78916802666802, 29.876068019726645], [-91.4430599729998, 29.03851386192278], [-91.42807071534146, 27.300910278879517], [-89.80771154120198, 26.426478135308493]]]}}, {"type": "Feature", "properties": {"bin": "82294ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.09307858581585, 35.60902427665048], [-132.8542971774497, 36.89291427806109], [-133.45939025773737, 38.37865623424773], [-135.31985086435014, 38.551076772095065], [-136.5100321904648, 37.26264734466264], [-135.89002309404285, 35.80631066025898], [-134.09307858581585, 35.60902427665048]]]}}, {"type": "Feature", "properties": {"bin": "82562ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-31.977092175090647, 17.03646681217573], [-33.35078686135723, 16.050053900913024], [-33.06198038495441, 14.46463494698069], [-31.447280984197857, 13.847681302031633], [-30.07882980569252, 14.794642048083519], [-30.318949345946834, 16.39725894705571], [-31.977092175090647, 17.03646681217573]]]}}, {"type": "Feature", "properties": {"bin": "823947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.2168706600543617, 41.967575126995584], [0.8372982571856167, 40.33535273335422], [2.4096906393984865, 39.323587881774785], [4.408495454619831, 39.93195935896595], [4.868332115011663, 41.58031489516634], [3.2493495966936545, 42.60479220712697], [1.2168706600543617, 41.967575126995584]]]}}, {"type": "Feature", "properties": {"bin": "825647fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.630880955174977, 9.360957722014556], [-26.381945702147313, 10.35020576437391], [-26.696978168270537, 11.953698075846916], [-28.262576303332686, 12.590481608616706], [-29.531197447216435, 11.619374142224828], [-29.214927339428673, 9.99349919622799], [-27.630880955174977, 9.360957722014556]]]}}, {"type": "Feature", "properties": {"bin": "823f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.884717233845183, 36.66836993169907], [16.203432101296617, 34.98381016816727], [17.635425294848805, 33.667670279159765], [19.750262775639456, 34.01378023726715], [20.49110741061133, 35.69002151151905], [19.059614047576503, 37.02901921647205], [16.884717233845183, 36.66836993169907]]]}}, {"type": "Feature", "properties": {"bin": "823bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.22090131464299, 35.58553674094911], [-62.13907957249567, 34.277080069511314], [-61.1473920023674, 33.133336870446804], [-59.47891401600623, 32.952773542794844], [-58.50930388906969, 34.22804987657655], [-59.263935686057074, 35.69752745426619], [-61.22090131464299, 35.58553674094911]]]}}, {"type": "Feature", "properties": {"bin": "820d2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.25334680995454, 73.73867554342422], [-151.55680775303475, 72.9547807538937], [-151.76683977369802, 71.2602903416543], [-147.57981709555796, 70.39347998637335], [-142.9193734077983, 71.08395895336362], [-141.84197708853563, 72.7241239848428], [-146.25334680995454, 73.73867554342422]]]}}, {"type": "Feature", "properties": {"bin": "821b77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-34.947989246883445, 57.63255412320861], [-37.74194418794689, 58.170123409126475], [-40.0284796958655, 57.01374899247943], [-39.44283549241436, 55.39081936112413], [-36.810385749972156, 54.92187398695694], [-34.60600804334574, 56.01030029978098], [-34.947989246883445, 57.63255412320861]]]}}, {"type": "Feature", "properties": {"bin": "82485ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-114.50601215624468, 29.962809965498728], [-112.91813211642211, 31.11517337762597], [-113.26800832642184, 32.85690516760766], [-115.25400548040932, 33.43153649157359], [-116.83830158928455, 32.260382821194064], [-116.4415312555663, 30.533964896959827], [-114.50601215624468, 29.962809965498728]]]}}, {"type": "Feature", "properties": {"bin": "82136ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-100.3716323149108, 65.78726681544285], [-103.65527053055202, 64.70876615112826], [-103.08336241294829, 62.96726794469463], [-99.62804678833429, 62.264960131041576], [-96.44526335797602, 63.25173080516217], [-96.60347904175154, 65.02772238383497], [-100.3716323149108, 65.78726681544285]]]}}, {"type": "Feature", "properties": {"bin": "825cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.5335322367957, 8.71898308656318], [-153.6357880281491, 7.302434921053644], [-152.9435787625393, 5.657346049215927], [-151.1632794626658, 5.416101768663186], [-150.0539766756017, 6.8171071438850985], [-150.73105699667752, 8.47470386919227], [-152.5335322367957, 8.71898308656318]]]}}, {"type": "Feature", "properties": {"bin": "822947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-131.6847754612276, 33.84034782516211], [-130.40230082165007, 35.11638961670009], [-130.9766348586562, 36.65773379111877], [-132.8542971774497, 36.89291427806109], [-134.09307858581585, 35.60902427665048], [-133.49959334890286, 34.09780740351217], [-131.6847754612276, 33.84034782516211]]]}}, {"type": "Feature", "properties": {"bin": "82754ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.245698051007282, -1.667852447043259], [1.9211969045935868, -0.2548735255288649], [1.2017635601567977, 0.936163764598368], [-0.1602034369452549, 0.7197982113703898], [-0.8199508788179312, -0.6593876817348934], [-0.13368891259164495, -1.8554926185476668], [1.245698051007282, -1.667852447043259]]]}}, {"type": "Feature", "properties": {"bin": "82395ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.4096906393984865, 39.323587881774785], [2.015254649789183, 37.66435763083123], [3.543589356987794, 36.59789814478598], [5.507969569355888, 37.17634170043516], [5.9780551779606474, 38.85056389706335], [4.408495454619831, 39.93195935896595], [2.4096906393984865, 39.323587881774785]]]}}, {"type": "Feature", "properties": {"bin": "82139ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-134.1977741283888, 59.440430821226634], [-135.1937938926105, 58.059379038985895], [-133.52109292003715, 56.759266243298875], [-130.8792395280855, 56.76429684855173], [-129.6940809316653, 58.11139663169719], [-131.32811150082424, 59.48950186465123], [-134.1977741283888, 59.440430821226634]]]}}, {"type": "Feature", "properties": {"bin": "821f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.371338560692325, 46.417016655689096], [5.8484769011283495, 44.82546981220477], [7.509948481928903, 43.78660935394501], [9.73194113849839, 44.323804866147476], [10.343212804239652, 45.92192778359743], [8.645314229897538, 46.977068439610534], [6.371338560692325, 46.417016655689096]]]}}, {"type": "Feature", "properties": {"bin": "824c27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.83264344775044, 25.927534557153948], [-66.49663707096902, 24.80992411292655], [-65.80401622503993, 23.50130334230998], [-64.4457437925919, 23.267372198778794], [-63.736330238434505, 24.369915046380935], [-64.42974303882323, 25.72224638197037], [-65.83264344775044, 25.927534557153948]]]}}, {"type": "Feature", "properties": {"bin": "82230ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.05840964934097, 38.43797108902174], [-165.86742893685548, 39.81145430442936], [-166.73992452788676, 41.36367923828987], [-168.8876761772056, 41.53861492567143], [-170.08137362878634, 40.128860824253564], [-169.12705484858938, 38.58103801892212], [-167.05840964934097, 38.43797108902174]]]}}, {"type": "Feature", "properties": {"bin": "82474ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-161.16001295482693, 30.8610323297859], [-162.28142468559858, 29.483142421765322], [-161.48281168369752, 28.01670291858373], [-159.5659720311805, 27.919872272760344], [-158.4192072625563, 29.301281850269515], [-159.21340056850218, 30.77583280164384], [-161.16001295482693, 30.8610323297859]]]}}, {"type": "Feature", "properties": {"bin": "820f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.95493520108766, 69.19412677478655], [-70.88611146627176, 68.97915497977544], [-72.48773440309648, 67.3131184550724], [-69.59181907197525, 65.93960213052233], [-65.22723125244676, 66.13579964980414], [-63.24061505124017, 67.72209967046797], [-65.95493520108766, 69.19412677478655]]]}}, {"type": "Feature", "properties": {"bin": "8251b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-120.7266797125519, 12.651392432778692], [-119.43635840633904, 13.751960336740883], [-119.81635416488027, 15.44264450870644], [-121.51623911942234, 16.005028532784802], [-122.79192474360485, 14.874844610550753], [-122.38342577554019, 13.212111339268919], [-120.7266797125519, 12.651392432778692]]]}}, {"type": "Feature", "properties": {"bin": "82450ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.35361313416331, 18.718698814924483], [-86.86052253318431, 19.585107432935093], [-86.81165399779584, 21.272185778116043], [-88.29590003003727, 22.120730739616338], [-89.83358949719242, 21.248167866323893], [-89.8417414487811, 19.53349485374346], [-88.35361313416331, 18.718698814924483]]]}}, {"type": "Feature", "properties": {"bin": "825f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-57.35536181380863, 4.400413170273592], [-56.048636044455606, 5.516406586382274], [-56.30082560392375, 7.1717454335508775], [-57.84643084054914, 7.694210873901271], [-59.129234300145804, 6.585958705972023], [-58.89050302575944, 4.94780137562872], [-57.35536181380863, 4.400413170273592]]]}}, {"type": "Feature", "properties": {"bin": "821a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-55.589625435882915, 45.09612715436976], [-57.96068812870284, 45.086432208992186], [-59.172924705777675, 43.65424362989634], [-58.06868817238533, 42.29773315101913], [-55.83934032376548, 42.3252015414221], [-54.57863225347378, 43.69221965395049], [-55.589625435882915, 45.09612715436976]]]}}, {"type": "Feature", "properties": {"bin": "822ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-80.98225290216081, 43.86011974432308], [-83.22495317846773, 43.3274852117277], [-83.60019678206457, 41.72421452886994], [-81.86750279548116, 40.674246416073814], [-79.73406932047651, 41.163833989516235], [-79.22728063889042, 42.74453343115546], [-80.98225290216081, 43.86011974432308]]]}}, {"type": "Feature", "properties": {"bin": "82099ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.438464343438979, 59.76718020289119], [6.766112799653783, 58.44709614018101], [8.799628381983899, 57.64025558472873], [11.555977692900706, 58.130531165851394], [12.360313328340787, 59.44495728759658], [10.279089080546552, 60.275949400006596], [7.438464343438979, 59.76718020289119]]]}}, {"type": "Feature", "properties": {"bin": "8256b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-43.37014678824051, 12.143150710647648], [-42.011355120610396, 13.200528198039944], [-42.31097372833159, 14.799313196550193], [-43.96189452551717, 15.344440572332113], [-45.3166803133901, 14.302011106126864], [-45.02495206378428, 12.699988854335011], [-43.37014678824051, 12.143150710647648]]]}}, {"type": "Feature", "properties": {"bin": "82126ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-101.71056206814698, 57.72518686411824], [-104.2011879229016, 56.67871024838654], [-103.7284720393682, 54.96090690766317], [-101.00363618987954, 54.25138635108309], [-98.56184761891002, 55.218550700351585], [-98.78877285042432, 56.971708359602495], [-101.71056206814698, 57.72518686411824]]]}}, {"type": "Feature", "properties": {"bin": "8288f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-153.73347701366686, -0.3180025571650375], [-154.7875457780603, -1.6525082699307334], [-154.11398942974884, -3.2020743391429547], [-152.3980821982831, -3.4345808068957653], [-151.33549532085615, -2.1201981947478785], [-151.99646165774854, -0.5533618253805939], [-153.73347701366686, -0.3180025571650375]]]}}, {"type": "Feature", "properties": {"bin": "8255b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.487400930124174, 25.69485702884283], [-23.127994021036667, 24.717289317668993], [-23.00030278211108, 22.97915346313468], [-21.29624126769292, 22.21946333422137], [-19.687464668200867, 23.164690007884964], [-19.75080967850516, 24.900975863614626], [-21.487400930124174, 25.69485702884283]]]}}, {"type": "Feature", "properties": {"bin": "826b17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.954654656317093, 13.593711088140337], [18.37131288344698, 12.0234431609871], [19.51577576383811, 10.751916722743852], [21.240864372039603, 11.01716618355836], [21.861183954394107, 12.56846389905936], [20.720608455377985, 13.873962650663321], [18.954654656317093, 13.593711088140337]]]}}, {"type": "Feature", "properties": {"bin": "821a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-51.83863034755352, 46.41701186001292], [-54.238896424972964, 46.49314130575578], [-55.589625435882915, 45.09612715436976], [-54.57863225347378, 43.69221965395049], [-52.32202321300211, 43.64344079831485], [-50.93883507610735, 44.972462672482116], [-51.83863034755352, 46.41701186001292]]]}}, {"type": "Feature", "properties": {"bin": "8234a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-33.6308063863189, 35.35144256871378], [-35.282354678855576, 34.19423602910232], [-34.8920617414937, 32.435885767663564], [-32.919187984996384, 31.81311295115671], [-31.27050629632069, 32.93527228948562], [-31.590030919491358, 34.71446768669329], [-33.6308063863189, 35.35144256871378]]]}}, {"type": "Feature", "properties": {"bin": "82096ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.990167276622653, 71.26523337833441], [15.568828380671018, 72.0844427245379], [14.55184502811682, 73.4874564977175], [9.200586264352173, 73.99667479266351], [5.614085386080716, 73.03193633522018], [7.329111175793021, 71.71063235482194], [11.990167276622653, 71.26523337833441]]]}}, {"type": "Feature", "properties": {"bin": "827507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.392258230519222, 8.747781221106628], [-4.572995371627281, 7.395109809160047], [-3.4710946837530763, 6.3576532880413], [-2.159048476284375, 6.645580466394948], [-1.9395631182409523, 8.007193661487852], [-3.071080368716595, 9.072581251751163], [-4.392258230519222, 8.747781221106628]]]}}, {"type": "Feature", "properties": {"bin": "82340ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.848420940607653, 33.619638572470286], [-25.61856742173713, 32.591651675540135], [-25.427635294483334, 30.79811439399178], [-23.54251737908868, 30.029487035562912], [-21.803961465610985, 31.02620792692692], [-21.91844433449385, 32.82179695820233], [-23.848420940607653, 33.619638572470286]]]}}, {"type": "Feature", "properties": {"bin": "822777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-88.65412421340821, 49.81242268121324], [-91.06289658034065, 49.08235655242536], [-91.17844711082972, 47.38363185794514], [-89.06656493399484, 46.41537750220255], [-86.76385612316132, 47.08474562818119], [-86.46839308952266, 48.78046010093184], [-88.65412421340821, 49.81242268121324]]]}}, {"type": "Feature", "properties": {"bin": "824d07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.652772198409636, 29.428705624764024], [-64.412646922055, 28.23763297869133], [-63.695964750544306, 26.870382575351506], [-62.22129188207137, 26.650091795812536], [-61.411797076102026, 27.82627207600714], [-62.12542424810531, 29.238389165152604], [-63.652772198409636, 29.428705624764024]]]}}, {"type": "Feature", "properties": {"bin": "8218d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.59397660055241, 47.0984334967306], [-20.76090845706983, 46.218925544889224], [-20.653899802599728, 44.48330412015416], [-18.488435954379657, 43.63378030772461], [-16.38569507731395, 44.49123495446823], [-16.384633284552198, 46.21899145965219], [-18.59397660055241, 47.0984334967306]]]}}, {"type": "Feature", "properties": {"bin": "820c2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-152.21436038722487, 66.30376675680102], [-155.68342088765695, 65.39882918127277], [-155.56178079929498, 63.802999942752464], [-152.4183097927639, 63.127542203250044], [-149.2025168456928, 63.94824319117261], [-148.88117429384081, 65.5226585224212], [-152.21436038722487, 66.30376675680102]]]}}, {"type": "Feature", "properties": {"bin": "827ceffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-23.89300673496357, 4.8107173676555615], [-22.690128007911145, 5.834046769993235], [-23.003469207101887, 7.461608607409952], [-24.523312159852374, 8.093367799869268], [-25.750258419602847, 7.08658299742536], [-25.433639335198723, 5.431491053788328], [-23.89300673496357, 4.8107173676555615]]]}}, {"type": "Feature", "properties": {"bin": "8236e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.1312422394921, 30.88329969212349], [-147.37967328777356, 29.62445406401754], [-146.66625467254082, 28.05490148729234], [-144.73077657229658, 27.748682085327506], [-143.48747996181842, 29.00514592848888], [-144.17342232410294, 30.569950882968847], [-146.1312422394921, 30.88329969212349]]]}}, {"type": "Feature", "properties": {"bin": "82756ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.3406661153006687, -0.045100606795108945], [4.022089806282807, 1.382296820377439], [3.2700512349330917, 2.5657311513076166], [1.868917217650497, 2.3298633934462813], [1.2017635601567977, 0.936163764598368], [1.9211969045935868, -0.2548735255288649], [3.3406661153006687, -0.045100606795108945]]]}}, {"type": "Feature", "properties": {"bin": "821adffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.20137404127417, 41.23893307488042], [-46.68636175862723, 39.954211636185555], [-46.053526976946245, 38.31689085591711], [-43.98872703472805, 37.928462896476695], [-42.468304294286476, 39.185528482404024], [-43.04498395289292, 40.85844272032107], [-45.20137404127417, 41.23893307488042]]]}}, {"type": "Feature", "properties": {"bin": "8251affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.67197257697387, 14.285697905685025], [-124.4586835455684, 15.410544048376812], [-124.89421209403801, 17.073472553348775], [-126.56658897182817, 17.577652196445264], [-127.75650761238906, 16.42566424694524], [-127.29855009646941, 14.796612535181083], [-125.67197257697387, 14.285697905685025]]]}}, {"type": "Feature", "properties": {"bin": "826d6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-85.51233216294696, 12.312720418608667], [-86.93188692345441, 11.424680020405956], [-86.81912126593483, 9.849742970723655], [-85.27113336987175, 9.163419968536484], [-83.84368504845844, 10.069625269478522], [-83.97196306576556, 11.643422680449333], [-85.51233216294696, 12.312720418608667]]]}}, {"type": "Feature", "properties": {"bin": "8280f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-39.563133079118444, -0.4474832204660288], [-38.189952745465504, 0.6981011755771008], [-38.50296943608185, 2.4535034056910714], [-40.18363059949491, 3.0700388986581064], [-41.55903359299822, 1.933698993376087], [-41.2520101552551, 0.17196920035699034], [-39.563133079118444, -0.4474832204660288]]]}}, {"type": "Feature", "properties": {"bin": "823a77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.101964247992925, 30.42765660497883], [-46.40285280120916, 29.213646415470354], [-45.85271625381474, 27.571603218736797], [-44.04255557272185, 27.105310413298152], [-42.71463006766115, 28.28550206434317], [-43.22180912378595, 29.965733050192064], [-45.101964247992925, 30.42765660497883]]]}}, {"type": "Feature", "properties": {"bin": "8236c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-146.66625467254082, 28.05490148729234], [-147.8961122892084, 26.751237291168678], [-147.1876805905887, 25.145185646711305], [-145.27438067417734, 24.846356452935005], [-144.0484157655211, 26.14644123025918], [-144.73077657229658, 27.748682085327506], [-146.66625467254082, 28.05490148729234]]]}}, {"type": "Feature", "properties": {"bin": "823607fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-148.32268669005546, 35.375414810094796], [-149.590621987698, 34.16516697174405], [-148.84180936077178, 32.68171244177444], [-146.84954365766157, 32.41075645142999], [-145.58220229824505, 33.61987316686077], [-146.30526615922284, 35.100805036709424], [-148.32268669005546, 35.375414810094796]]]}}, {"type": "Feature", "properties": {"bin": "8267affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-78.38688043933625, 15.010055989047933], [-79.76555528528003, 14.199408606194604], [-79.61763914863917, 12.683984122201483], [-78.07759368300682, 11.987751756538207], [-76.70167830727847, 12.819508275225337], [-76.86276781801787, 14.325883119100627], [-78.38688043933625, 15.010055989047933]]]}}, {"type": "Feature", "properties": {"bin": "8247affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.6227959703449, 26.71303973922542], [-172.64626329548403, 28.208961817949742], [-173.57183777960262, 29.691561908418024], [-175.52863062087343, 29.658089939720135], [-176.4907576684941, 28.12091833484464], [-175.51262290348498, 26.65893199535441], [-173.6227959703449, 26.71303973922542]]]}}, {"type": "Feature", "properties": {"bin": "82679ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-82.55962048497963, 12.514857149505502], [-83.97196306576556, 11.643422680449333], [-83.84368504845844, 10.069625269478522], [-82.28806052956973, 9.37146012407908], [-80.87225516637828, 10.26240648404312], [-81.01532143167519, 11.831455835740186], [-82.55962048497963, 12.514857149505502]]]}}, {"type": "Feature", "properties": {"bin": "8246a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.7149352119206, 20.914636507194352], [-172.80282081176554, 22.373958345439743], [-173.6703874763115, 23.782822700979143], [-175.49767963545628, 23.709096037735854], [-176.3971384210712, 22.207666523848747], [-175.48369806260996, 20.822556255516947], [-173.7149352119206, 20.914636507194352]]]}}, {"type": "Feature", "properties": {"bin": "825f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-52.60368682693502, 2.6831731928729203], [-51.252815863927914, 3.813394894857517], [-51.52641146973882, 5.519498520276425], [-53.13888363248123, 6.0835117787729445], [-54.471472289641966, 4.9609469771054435], [-54.210126691127286, 3.2670812965665323], [-52.60368682693502, 2.6831731928729203]]]}}, {"type": "Feature", "properties": {"bin": "822b2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.13452023859925, 46.492537039294376], [-61.612903841747055, 46.41246744259869], [-62.75562087696401, 44.916521168651464], [-61.4965375139248, 43.564806453194414], [-59.172924705777675, 43.65424362989634], [-57.96068812870284, 45.086432208992186], [-59.13452023859925, 46.492537039294376]]]}}, {"type": "Feature", "properties": {"bin": "821a67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-33.13859201463761, 51.3100840981969], [-35.2061508945788, 50.20116253083384], [-34.72420926035957, 48.565062705935084], [-32.2819922837815, 48.01988332959426], [-30.22164256686591, 49.097935237084215], [-30.59296189548184, 50.75085829394896], [-33.13859201463761, 51.3100840981969]]]}}, {"type": "Feature", "properties": {"bin": "824d6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-59.51008837486115, 18.366343757785604], [-58.255166268389985, 19.411327315262735], [-58.49170707971801, 20.795541739699427], [-59.97003350502034, 21.12641189146757], [-61.200017410400775, 20.09598400408662], [-60.97670703999955, 18.72057167084638], [-59.51008837486115, 18.366343757785604]]]}}, {"type": "Feature", "properties": {"bin": "823b0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-49.45598517697697, 37.369379611572356], [-50.74647797496254, 36.07702446361831], [-50.0850919770084, 34.47800843316933], [-48.17049985036571, 34.130691983210376], [-46.837480042834194, 35.39713837506172], [-47.458914798805374, 37.03690712898594], [-49.45598517697697, 37.369379611572356]]]}}, {"type": "Feature", "properties": {"bin": "824d0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.695964750544306, 26.870382575351506], [-64.42974303882323, 25.72224638197037], [-63.736330238434505, 24.369915046380935], [-62.3108248051806, 24.12176202394313], [-61.530619218873426, 25.25303888659566], [-62.22129188207137, 26.650091795812536], [-63.695964750544306, 26.870382575351506]]]}}, {"type": "Feature", "properties": {"bin": "82809ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-33.49144771371919, 0.6018082787679894], [-32.160720842063846, 1.7264006780327115], [-32.48012811254947, 3.454917535376011], [-34.128462441813596, 4.07484598399262], [-35.471202399725954, 2.9618989164177876], [-35.15405506065563, 1.2176594213674936], [-33.49144771371919, 0.6018082787679894]]]}}, {"type": "Feature", "properties": {"bin": "826c4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-87.81758309546815, 2.276164548591812], [-89.28276473415183, 1.3006030285245231], [-89.17950158476611, -0.43357498119179894], [-87.59400415255666, -1.1964275116101644], [-86.1168331380962, -0.20786750723228084], [-86.23703408379006, 1.530036116519424], [-87.81758309546815, 2.276164548591812]]]}}, {"type": "Feature", "properties": {"bin": "82665ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.86749211546083, 3.508740509701639], [-71.2071410551568, 2.5862023768404225], [-71.0160747003525, 0.9012742714960504], [-69.47491670212999, 0.1618259928744295], [-68.15056559049286, 1.1069634457837287], [-68.35167465662009, 2.7687426994117534], [-69.86749211546083, 3.508740509701639]]]}}, {"type": "Feature", "properties": {"bin": "823457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.803961465610985, 31.02620792692692], [-23.54251737908868, 30.029487035562912], [-23.398786640664905, 28.24562671417639], [-21.58870741439349, 27.45936036539565], [-19.885175001331245, 28.425520844846652], [-19.956511299083022, 30.20750468846709], [-21.803961465610985, 31.02620792692692]]]}}, {"type": "Feature", "properties": {"bin": "82031ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.24054447178555, 85.23272597621758], [-125.69943283756717, 85.46743869375132], [-133.35053018344294, 83.87786688070946], [-125.29445893479551, 82.48154130920918], [-112.71412782504105, 82.37631841142961], [-102.68417511955269, 83.57676487745285], [-105.24054447178555, 85.23272597621758]]]}}, {"type": "Feature", "properties": {"bin": "825587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.687464668200867, 23.164690007884964], [-21.29624126769292, 22.21946333422137], [-21.205965437756916, 20.514307699601986], [-19.567746739996146, 19.758338710645457], [-17.992762466160794, 20.672196772789086], [-18.022267576148227, 22.372442159798524], [-19.687464668200867, 23.164690007884964]]]}}, {"type": "Feature", "properties": {"bin": "8226f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-100.69279980327295, 36.709266934476744], [-98.89309474489009, 37.623022162475365], [-99.03502941157414, 39.30873979949333], [-101.04033001739265, 40.0885965084391], [-102.876806697208, 39.1647845779263], [-102.67135684070738, 37.47197316662982], [-100.69279980327295, 36.709266934476744]]]}}, {"type": "Feature", "properties": {"bin": "82666ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-65.99074059486387, 6.154061516265284], [-67.25859951377655, 5.293772477765441], [-67.05562916685668, 3.673349363486126], [-65.57669249211234, 2.939512802057486], [-64.32827172999676, 3.8245323459249096], [-64.5389599580413, 5.418558414449942], [-65.99074059486387, 6.154061516265284]]]}}, {"type": "Feature", "properties": {"bin": "825517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.715050116074213, 25.90030374026243], [-16.394662810970292, 25.007863044517464], [-16.395292355187806, 23.280106473767372], [-14.779224893207182, 22.458857233680753], [-13.144989535729147, 23.326587938836802], [-13.082020177497345, 25.039429603403317], [-14.715050116074213, 25.90030374026243]]]}}, {"type": "Feature", "properties": {"bin": "823b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-61.1473920023674, 33.133336870446804], [-62.02252554784451, 31.877885956365812], [-61.2843769532692, 30.456222458965872], [-59.67821742267188, 30.24564073374432], [-58.749467188573, 31.486075315254425], [-59.47891401600623, 32.952773542794844], [-61.1473920023674, 33.133336870446804]]]}}, {"type": "Feature", "properties": {"bin": "8209a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.5480202135218178, 61.828864713593795], [-2.2975260876218306, 61.54550957788075], [-2.7356231170279086, 60.17050935552437], [-0.46713246181046286, 59.10359393295083], [2.1982160405751507, 59.38388648698395], [2.7675277915407426, 60.73321011494055], [0.5480202135218178, 61.828864713593795]]]}}, {"type": "Feature", "properties": {"bin": "821f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.52364654929031, 55.706768465152265], [4.948742151508347, 54.28828669322918], [6.848228907047912, 53.43156035343158], [9.374530816292092, 53.97551370235173], [10.065692337418177, 55.394878703545615], [8.115982248879545, 56.27047063504287], [5.52364654929031, 55.706768465152265]]]}}, {"type": "Feature", "properties": {"bin": "822927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-124.59372767160691, 27.89317388664519], [-123.21275078437596, 29.126517454053335], [-123.68694205596185, 30.80725993662299], [-125.57355829327084, 31.225723979081458], [-126.92731955484221, 29.97509603981841], [-126.42326523231716, 28.323445670060703], [-124.59372767160691, 27.89317388664519]]]}}, {"type": "Feature", "properties": {"bin": "8250b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.01253489901505, 20.57399140249709], [-119.64404213347197, 21.752743340175808], [-120.05117135868093, 23.48531858998525], [-121.85994020008248, 24.01169471518747], [-123.21121382753459, 22.80855856281255], [-122.77222797391424, 21.1036574832414], [-121.01253489901505, 20.57399140249709]]]}}, {"type": "Feature", "properties": {"bin": "822607fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-97.55120876321169, 45.03825688469696], [-99.49064886689406, 44.2099989682831], [-99.33355209416003, 42.60433463501959], [-97.30468981823128, 41.80724070545743], [-95.41290317262253, 42.599408575724205], [-95.46450687268343, 44.208686356422625], [-97.55120876321169, 45.03825688469696]]]}}, {"type": "Feature", "properties": {"bin": "82025ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-87.11739997649872, 73.75309197501792], [-92.57166708711345, 72.95649432032424], [-92.69122776477644, 71.22912791615148], [-88.22449223158009, 70.3043707747334], [-83.30148147989962, 71.00099430495668], [-82.3342737067018, 72.71199367901703], [-87.11739997649872, 73.75309197501792]]]}}, {"type": "Feature", "properties": {"bin": "8259affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.47047915784386257, 16.820062058483494], [-0.7351612054653583, 15.279832303298882], [0.4800430596855388, 14.157028398529341], [1.9905382774544373, 14.547282830266617], [2.302842809205857, 16.098688642959495], [1.0570071254543887, 17.249308733090295], [-0.47047915784386257, 16.820062058483494]]]}}, {"type": "Feature", "properties": {"bin": "820967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.333799759509659, 70.77147478219023], [7.329111175793021, 71.71063235482194], [5.614085386080716, 73.03193633522018], [0.32561035194326043, 73.31022368544393], [-1.9084430010595415, 71.90494045163956], [0.27113407636019593, 70.66929401337596], [4.333799759509659, 70.77147478219023]]]}}, {"type": "Feature", "properties": {"bin": "82379ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-157.66269743750613, 34.853246543625296], [-158.85034488901204, 33.54865032056136], [-158.04649474959947, 32.12156651323388], [-156.06426151962535, 31.994380259805034], [-154.85703308454984, 33.3008366693551], [-155.65024443492754, 34.732414551623556], [-157.66269743750613, 34.853246543625296]]]}}, {"type": "Feature", "properties": {"bin": "826c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-104.00428251269403, 3.3329333146242335], [-105.35686761733812, 2.3876427036362102], [-105.17323884809628, 0.8701881901666535], [-103.81640795556734, 0.16624060785959474], [-102.45674124927301, 1.0989978013306505], [-102.48381526900266, 2.731781118694772], [-104.00428251269403, 3.3329333146242335]]]}}, {"type": "Feature", "properties": {"bin": "8244dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-81.59239281302999, 33.53115551279601], [-79.98588846886724, 34.15372024055491], [-79.55761808651526, 35.58356677506038], [-81.06844866997488, 36.59871874543619], [-82.99298425130046, 36.12399583561639], [-83.10473588087598, 34.50570532924842], [-81.59239281302999, 33.53115551279601]]]}}, {"type": "Feature", "properties": {"bin": "825537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.948554583750909, 28.514935780874872], [-14.681052541612365, 27.647052437792293], [-14.715050116074213, 25.90030374026243], [-13.082020177497345, 25.039429603403317], [-11.400658379594104, 25.886179643136675], [-11.301996450753812, 27.6141453017058], [-12.948554583750909, 28.514935780874872]]]}}, {"type": "Feature", "properties": {"bin": "822617fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-101.22296433729231, 41.740408066652975], [-99.33355209416003, 42.60433463501959], [-99.49064886689408, 44.209998968283095], [-101.60751328987199, 44.957696898463745], [-103.5359544106562, 44.08337983698415], [-103.30874669480728, 42.472631308344376], [-101.22296433729231, 41.740408066652975]]]}}, {"type": "Feature", "properties": {"bin": "824817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-104.60215818719875, 23.06853297688241], [-103.01162576662247, 24.12172726544782], [-103.19965094152704, 25.912524768601525], [-105.02815187027245, 26.65129939283315], [-106.63926091907, 25.57866592479228], [-106.40172306237122, 23.787393380405025], [-104.60215818719875, 23.06853297688241]]]}}, {"type": "Feature", "properties": {"bin": "821b1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-45.04487078496987, 56.17207274471768], [-48.00021552533757, 56.47204864023174], [-49.9240190019277, 55.11184567911766], [-48.90245004939706, 53.53097474699997], [-46.153894348571015, 53.27988749468763], [-44.22969503324036, 54.56320665897177], [-45.04487078496987, 56.17207274471768]]]}}, {"type": "Feature", "properties": {"bin": "825f67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-62.89279437303725, 3.2918827958874095], [-61.65339083366119, 4.382418723973649], [-61.87820768746323, 6.00000583524779], [-63.32832778527637, 6.5036393490052475], [-64.53895995804127, 5.418558414449947], [-64.32827172999673, 3.8245323459248906], [-62.89279437303725, 3.2918827958874095]]]}}, {"type": "Feature", "properties": {"bin": "820d17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-167.04311693543426, 73.24458055449546], [-171.11065695414112, 71.97154653078344], [-169.5774448300429, 70.31623093904679], [-164.74827370527964, 69.87939359713387], [-160.79790121243346, 71.00761876132705], [-161.50564454731008, 72.70722536829874], [-167.04311693543426, 73.24458055449546]]]}}, {"type": "Feature", "properties": {"bin": "824d67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.49170707971801, 20.795541739699427], [-57.23011196400804, 21.814638994608284], [-57.8635816446284, 23.256059937210214], [-59.37332807272962, 23.56547942262585], [-60.19749636352625, 22.454763661401774], [-59.97003350502034, 21.12641189146757], [-58.49170707971801, 20.795541739699427]]]}}, {"type": "Feature", "properties": {"bin": "820f47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-58.827766861557635, 61.574893327818344], [-62.54341730100066, 61.54949113652148], [-64.18579934373318, 59.94899094586523], [-62.28972825681571, 58.45320476392265], [-58.9113414349944, 58.48980679095191], [-57.11446309131754, 60.011446683130515], [-58.827766861557635, 61.574893327818344]]]}}, {"type": "Feature", "properties": {"bin": "8250e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-131.37292407111144, 23.376844468108043], [-130.1985280710341, 24.603066514705624], [-130.7192305545604, 26.223917493677725], [-132.43208434747524, 26.5816195403062], [-133.63167654034052, 25.432983552431253], [-133.08381598345167, 23.820431161854444], [-131.37292407111144, 23.376844468108043]]]}}, {"type": "Feature", "properties": {"bin": "8234e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-25.427635294483334, 30.79811439399178], [-27.122707521907227, 29.753699363848405], [-26.907891064141744, 27.97534924871563], [-25.06844706824082, 27.23492095559514], [-23.398786640664905, 28.24562671417639], [-23.54251737908868, 30.029487035562912], [-25.427635294483334, 30.79811439399178]]]}}, {"type": "Feature", "properties": {"bin": "82512ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-132.76399272848803, 13.171016325387123], [-133.89520751564908, 11.8841311452974], [-133.37582661043865, 10.252592093010179], [-131.7575654722191, 9.923161288223044], [-130.65089667699573, 11.195314073573554], [-131.13765348963113, 12.811392905875552], [-132.76399272848803, 13.171016325387123]]]}}, {"type": "Feature", "properties": {"bin": "8207a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.023350332015482, 77.08353021671479], [-13.578593545917547, 78.27816184803088], [-20.30919570668708, 77.80316131016781], [-21.165238931777616, 76.1878353494321], [-16.53126506085391, 75.12865785383518], [-10.98528397730722, 75.55801829625113], [-9.023350332015482, 77.08353021671479]]]}}, {"type": "Feature", "properties": {"bin": "8218a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.388789544397927, 54.52817290726193], [-23.800269106758357, 53.66750781990839], [-23.595800131116476, 52.04720271172597], [-21.117043703327738, 51.28757960329347], [-18.774233271028326, 52.12149149190319], [-18.841171686388584, 53.740206752238315], [-21.388789544397927, 54.52817290726193]]]}}, {"type": "Feature", "properties": {"bin": "82661ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.20910081818643, 8.107689004037562], [-77.60226284456255, 7.212914224419377], [-77.44069883550375, 5.563142367519962], [-75.87276006745216, 4.821343563719458], [-74.48577052266508, 5.7379220187705755], [-74.66021494289579, 7.37406393514971], [-76.20910081818643, 8.107689004037562]]]}}, {"type": "Feature", "properties": {"bin": "820787fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.30919570668708, 77.80316131016781], [-26.424987503109225, 78.79660349043647], [-32.96595964039603, 78.01722535324149], [-32.38101221037244, 76.36523586882251], [-26.75208462210931, 75.51366512257574], [-21.165238931777616, 76.1878353494321], [-20.30919570668708, 77.80316131016781]]]}}, {"type": "Feature", "properties": {"bin": "825c37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-154.25484084592026, 16.797013674901503], [-155.380442276238, 15.359563479620281], [-154.6555323207048, 13.703903037388972], [-152.8177485579885, 13.475427259377641], [-151.68149446753523, 14.904350827871541], [-152.39259987624143, 16.57010370863651], [-154.25484084592026, 16.797013674901503]]]}}, {"type": "Feature", "properties": {"bin": "821eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.33720628244463, 45.27343222583469], [13.642238671206671, 43.674337444107124], [15.239935584499475, 42.48537089697073], [17.54318322426502, 42.87611373038503], [18.314740441318996, 44.470679588895024], [16.708896543883586, 45.6797189491731], [14.33720628244463, 45.27343222583469]]]}}, {"type": "Feature", "properties": {"bin": "825c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.26921053967362, 6.344572309076851], [-159.3104412172958, 4.94416673431073], [-158.59967491814012, 3.3357348575173495], [-156.85407414494503, 3.107520783199951], [-155.79651841734938, 4.493630141291827], [-156.4999517275151, 6.1222069345507], [-158.26921053967362, 6.344572309076851]]]}}, {"type": "Feature", "properties": {"bin": "82794ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-127.3104736081558, 4.612860727482494], [-128.35662776273253, 3.3650043097768796], [-127.92421350205531, 1.8648635745791182], [-126.47619542382564, 1.6263637306496364], [-125.4574524670464, 2.8533786934186565], [-125.8592807034671, 4.33939306214306], [-127.3104736081558, 4.612860727482494]]]}}, {"type": "Feature", "properties": {"bin": "827017fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-173.49842369653564, 5.132724903314782], [-174.31673738369324, 3.8210244943304374], [-173.6136264733335, 2.3418038147608544], [-172.08061543914135, 2.142899112922026], [-171.22971982763713, 3.448801289445842], [-171.94393384320088, 4.959780295860549], [-173.49842369653564, 5.132724903314782]]]}}, {"type": "Feature", "properties": {"bin": "8237a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-156.85996058033632, 40.020820432789606], [-158.09098064343686, 38.81057018862586], [-157.26734938410425, 37.48828167822845], [-155.22394915962505, 37.372663905458474], [-153.97399421277788, 38.5835978655727], [-154.78487065089823, 39.9092677035244], [-156.85996058033632, 40.020820432789606]]]}}, {"type": "Feature", "properties": {"bin": "825cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.44607430026895, 11.231115019630435], [-161.48347198256354, 9.797621338013231], [-160.75247341308133, 8.17843716490857], [-158.98772817776748, 7.972665932766329], [-157.9299678248433, 9.396882901305514], [-158.65635089180714, 11.036138082220372], [-160.44607430026895, 11.231115019630435]]]}}, {"type": "Feature", "properties": {"bin": "822397fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-154.33247913189487, 42.3384425537592], [-153.03739182353243, 43.44325276436556], [-153.54164948755408, 44.9563123269652], [-155.43595024327058, 45.38285137235883], [-156.77251837995848, 44.253502314817986], [-156.1737784796175, 42.722705971617614], [-154.33247913189487, 42.3384425537592]]]}}, {"type": "Feature", "properties": {"bin": "8228c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-124.85998231411203, 45.831701684751735], [-123.21854399041668, 46.998589021805486], [-123.78541407377031, 48.41499723110688], [-126.03804258933387, 48.64640364609266], [-127.63971807768101, 47.46903746354161], [-127.03121917390865, 46.07114453291157], [-124.85998231411203, 45.831701684751735]]]}}, {"type": "Feature", "properties": {"bin": "825ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-49.37813314252597, 11.076124691689042], [-48.026311893180406, 12.165598545838135], [-48.30862047518583, 13.76714292961568], [-49.93229663073252, 14.275505497784241], [-51.270770377463634, 13.199442659470222], [-50.99922604084513, 11.602089897710748], [-49.37813314252597, 11.076124691689042]]]}}, {"type": "Feature", "properties": {"bin": "824877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.46044826906298, 24.671633767522994], [-111.92706403932374, 25.816223896317993], [-112.24805187233757, 27.591432296604456], [-114.14770118711654, 28.20744653633778], [-115.68042334187564, 27.04077250832347], [-115.31527754076964, 25.280725131021853], [-113.46044826906298, 24.671633767522994]]]}}, {"type": "Feature", "properties": {"bin": "8234d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-30.386417332925895, 27.61772385713097], [-31.953133427831695, 26.53340769423689], [-31.655200285380122, 24.794702699458945], [-29.852265006074962, 24.12402164409733], [-28.29640627443555, 25.170737543759543], [-28.531529726606152, 26.924893352430054], [-30.386417332925895, 27.61772385713097]]]}}, {"type": "Feature", "properties": {"bin": "825787fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.1273910671955, 20.552278072006814], [-43.35845326768038, 19.47766581370747], [-42.90586635938975, 17.901934987903726], [-41.25993320611356, 17.367709974292854], [-40.01269036358421, 18.40347009481354], [-40.42609945398587, 20.01206509675657], [-42.1273910671955, 20.552278072006814]]]}}, {"type": "Feature", "properties": {"bin": "8244b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.8312173516333, 23.34286288063484], [-75.445541089086, 24.012556601219234], [-75.25188715193887, 25.56875428660015], [-76.47218493325147, 26.49429123770877], [-77.90890704647856, 25.835600882522186], [-78.07326534839831, 24.240110473740863], [-76.8312173516333, 23.34286288063484]]]}}, {"type": "Feature", "properties": {"bin": "820c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.58910023229902, 60.42881773546721], [178.57998532973056, 59.032171994759636], [-179.9789398838988, 57.646231821823875], [-176.90195350788932, 57.58914621340675], [-174.97898792007197, 58.89084512092414], [-176.20585509660006, 60.342694610190605], [-179.58910023229902, 60.42881773546721]]]}}, {"type": "Feature", "properties": {"bin": "820f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-96.99022993728457, 68.55531035042452], [-100.82187020582201, 67.53592431503803], [-100.3716323149108, 65.78726681544285], [-96.60347904175154, 65.02772238383497], [-92.95365535880394, 65.9504622878471], [-92.87876133778914, 67.72301571200245], [-96.99022993728457, 68.55531035042452]]]}}, {"type": "Feature", "properties": {"bin": "8206a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.58826504753479, 75.43002491227662], [-43.869518471839584, 76.01639072631193], [-48.306122547956875, 74.83452393322776], [-46.35736886861963, 73.20569227555735], [-40.900552139932266, 72.7083096341591], [-36.633558024842756, 73.76143134862352], [-37.58826504753479, 75.43002491227662]]]}}, {"type": "Feature", "properties": {"bin": "82579ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-42.31097372833159, 14.799313196550193], [-40.95905857684548, 15.819002579209917], [-41.25993320611357, 17.36770997429284], [-42.90586635938976, 17.9019349879037], [-44.25550515787142, 16.897873601263107], [-43.96189452551717, 15.344440572332113], [-42.31097372833159, 14.799313196550193]]]}}, {"type": "Feature", "properties": {"bin": "825c47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-143.70298869595533, 12.14166443319985], [-144.85792469817218, 10.75461417273834], [-144.2222622789288, 9.08509630899821], [-142.45659521737463, 8.803195449124305], [-141.31014380395078, 10.174450396434414], [-141.9200933504384, 11.84309318344203], [-143.70298869595533, 12.14166443319985]]]}}, {"type": "Feature", "properties": {"bin": "820767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.419124599059314, 64.5835440503631], [-11.632420456928374, 65.631365577424], [-14.942390307951198, 65.10982468378923], [-15.697122940858694, 63.552516945683436], [-13.43296806023497, 62.584281558661615], [-10.444977544778329, 63.095054077525454], [-9.419124599059314, 64.5835440503631]]]}}, {"type": "Feature", "properties": {"bin": "82796ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-126.68738202271088, 7.38055834751661], [-127.74014175209031, 6.1418970718781685], [-127.3104736081558, 4.612860727482494], [-125.8592807034671, 4.33939306214306], [-124.74319077977674, 5.304322366655777], [-125.14733890691912, 6.840368064350915], [-126.68738202271088, 7.38055834751661]]]}}, {"type": "Feature", "properties": {"bin": "827587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.695281485000976, 7.173126163814278], [-11.055247895999136, 6.422432286737444], [-11.136986715149352, 5.079855936610071], [-9.89744485909883, 4.500197653762587], [-8.57230150554439, 5.228007003124849], [-8.452416923081168, 6.5576953249960095], [-9.695281485000976, 7.173126163814278]]]}}, {"type": "Feature", "properties": {"bin": "82484ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-117.96788214801275, 29.346680844586153], [-116.4415312555663, 30.533964896959827], [-116.83830158928455, 32.260382821194064], [-118.8045281400983, 32.779437996638734], [-120.31833774102114, 31.5733101089987], [-119.87996828508777, 29.867421635884615], [-117.96788214801275, 29.346680844586153]]]}}, {"type": "Feature", "properties": {"bin": "828f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-81.72798492677288, 2.7259823537442265], [-83.18196203351864, 1.7557835553234635], [-83.04540989966834, 0.019087365036244645], [-81.43914057432434, -0.7417954439430038], [-79.98282112851228, 0.2453348702965925], [-80.13485884440162, 1.975921533508648], [-81.72798492677288, 2.7259823537442265]]]}}, {"type": "Feature", "properties": {"bin": "82238ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-160.0631115613191, 43.42396129921054], [-158.74823904648488, 44.62492403362867], [-159.45074698666735, 46.16506120375478], [-161.56979335131368, 46.51349897531834], [-162.91193598702054, 45.28312862796475], [-162.10940467531475, 43.73438430757914], [-160.0631115613191, 43.42396129921054]]]}}, {"type": "Feature", "properties": {"bin": "8258a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.3951802868305936, 11.529027262742579], [1.1112578344875799, 10.064920172958862], [2.2764305960846776, 8.948132571134797], [3.751337829888936, 9.26521097155255], [4.0790065308125625, 10.73401495722421], [2.88810760150022, 11.881770859938996], [1.3951802868305936, 11.529027262742579]]]}}, {"type": "Feature", "properties": {"bin": "82564ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-25.750258419602847, 7.08658299742536], [-24.523312159852374, 8.093367799869268], [-24.83782849428293, 9.71260186793756], [-26.381945702147313, 10.35020576437391], [-27.630880955174977, 9.360957722014556], [-27.314080831461233, 7.716645243433415], [-25.750258419602847, 7.08658299742536]]]}}, {"type": "Feature", "properties": {"bin": "824ccffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-66.16605247815214, 17.278604677389158], [-67.3881702214934, 16.613425129537404], [-67.19334638185131, 15.206256245449282], [-65.76882190787967, 14.482400617733116], [-64.59499708082424, 15.547610315045723], [-64.800426227773, 16.953431162581303], [-66.16605247815214, 17.278604677389158]]]}}, {"type": "Feature", "properties": {"bin": "821817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.378405826402158, 54.49624180191474], [-18.841171686388584, 53.740206752238315], [-18.774233271028326, 52.12149149190319], [-16.38110054088066, 51.26683523519603], [-14.00895215724318, 52.001373403173005], [-13.940607532856738, 53.61055766075581], [-16.378405826402158, 54.49624180191474]]]}}, {"type": "Feature", "properties": {"bin": "82128ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-125.47029403893907, 53.86554915925203], [-126.7100613714842, 52.609618421158075], [-125.5010185309912, 51.20399023625232], [-123.12286550407035, 50.98471128168906], [-121.77726241145928, 52.190065109365364], [-122.90647779494316, 53.666152288031306], [-125.47029403893907, 53.86554915925203]]]}}, {"type": "Feature", "properties": {"bin": "820d4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-138.56609550799624, 65.91667259421638], [-142.26222118675372, 65.34943666334875], [-142.99622095359533, 63.82043153371307], [-140.41211093213903, 62.92006172739451], [-137.07483444270662, 63.44506699546743], [-135.98471645584542, 64.90922466524857], [-138.56609550799624, 65.91667259421638]]]}}, {"type": "Feature", "properties": {"bin": "821aaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.34984307563694, 47.76652218332134], [-51.83863034755352, 46.41701186001292], [-50.93883507610734, 44.972462672482095], [-48.739633376142166, 44.745233612303764], [-47.2137967027232, 46.04931212219338], [-47.942116363056044, 47.60059834999411], [-50.34984307563694, 47.76652218332134]]]}}, {"type": "Feature", "properties": {"bin": "82804ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-50.70033436722617, 0.35039393085085474], [-49.333737961350366, 1.4869936465684874], [-49.61564781162314, 3.22361895885767], [-51.252815863927914, 3.813394894857517], [-52.60368682693502, 2.6831731928729203], [-52.33341370176727, 0.9571709197237097], [-50.70033436722617, 0.35039393085085474]]]}}, {"type": "Feature", "properties": {"bin": "820e07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-76.22600976416577, 62.1747288300192], [-79.91075404456411, 61.67566974904422], [-80.68030763628063, 59.91091889403277], [-78.08810459236533, 58.68438659429741], [-74.70637691776197, 59.1392445862628], [-73.63078937271493, 60.86152341713838], [-76.22600976416577, 62.1747288300192]]]}}, {"type": "Feature", "properties": {"bin": "822287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.78766213887133, 48.850669587203804], [-157.3487038391932, 49.9551997300865], [-158.06748518049622, 51.47000327002249], [-160.34668181107745, 51.89099020212346], [-161.8226339503679, 50.76081148063326], [-160.98421728508953, 49.23603185937585], [-158.78766213887133, 48.850669587203804]]]}}, {"type": "Feature", "properties": {"bin": "8228b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-113.04627123921182, 40.72061994800501], [-111.27157033330067, 41.78920913152274], [-111.6319691148531, 43.39437445833112], [-113.82809163347571, 43.92135439009324], [-115.60310652830113, 42.837738262209285], [-115.18337123085576, 41.24291137775971], [-113.04627123921182, 40.72061994800501]]]}}, {"type": "Feature", "properties": {"bin": "82588ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.915720603403216, 8.129174779439118], [4.581792371905466, 6.708566989426475], [5.720322083693563, 5.5902368764341395], [7.212914562720072, 5.860392168376588], [7.588359354690609, 7.279047700708482], [6.429971224498451, 8.430253460458047], [4.915720603403216, 8.129174779439118]]]}}, {"type": "Feature", "properties": {"bin": "8244f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-81.9664941624314, 28.63180650194559], [-80.42537469520404, 29.321821309161468], [-80.2830049998872, 30.94258349799631], [-81.72068792738155, 31.908011853886673], [-83.31850409944572, 31.22688419706304], [-83.42079792192662, 29.571467376092357], [-81.9664941624314, 28.63180650194559]]]}}, {"type": "Feature", "properties": {"bin": "827137fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-175.45827111402537, 15.285730312483953], [-176.2776675399432, 13.88707798456076], [-175.55070635127848, 12.428955187573973], [-173.9898394416861, 12.343294344125121], [-173.1338745708222, 13.747362999338641], [-173.87488217758454, 15.231876563150667], [-175.45827111402537, 15.285730312483953]]]}}, {"type": "Feature", "properties": {"bin": "820c0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-155.56178079929498, 63.802999942752464], [-158.59550464384833, 62.83567066730138], [-158.31174268238934, 61.28325819507393], [-155.36073868635916, 60.70120286769721], [-152.50207582319376, 61.583334933903004], [-152.4183097927639, 63.127542203250044], [-155.56178079929498, 63.802999942752464]]]}}, {"type": "Feature", "properties": {"bin": "82079ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-32.96595964039603, 78.01722535324149], [-40.29003417014079, 78.71766196801342], [-45.910670065717056, 77.6358967544068], [-43.869518471839584, 76.01639072631193], [-37.58826504753479, 75.43002491227662], [-32.38101221037244, 76.36523586882251], [-32.96595964039603, 78.01722535324149]]]}}, {"type": "Feature", "properties": {"bin": "8228affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-119.47459538788414, 42.150515256074875], [-117.78201941593719, 43.291712928181326], [-118.25023610663773, 44.830690622460246], [-120.46316865071184, 45.212419707598016], [-122.13483148443464, 44.05769081450337], [-121.61672150971295, 42.53532547133135], [-119.47459538788414, 42.150515256074875]]]}}, {"type": "Feature", "properties": {"bin": "8236effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-143.48747996181842, 29.00514592848888], [-144.73077657229658, 27.748682085327506], [-144.0484157655211, 26.14644123025918], [-142.1518487614197, 25.80801073985058], [-140.91889130500928, 27.061192038819833], [-141.5712006716461, 28.65583905065987], [-143.48747996181842, 29.00514592848888]]]}}, {"type": "Feature", "properties": {"bin": "822247fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-176.87145410876698, 46.32807476883733], [-175.65513024830355, 47.77326782654171], [-176.95555451890584, 49.255935361680656], [-179.5540902215494, 49.27430780429312], [179.26927134530507, 47.79700131917362], [-179.3535432314775, 46.33359428000857], [-176.87145410876698, 46.32807476883733]]]}}, {"type": "Feature", "properties": {"bin": "824cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-69.38326850163935, 21.326183525747375], [-70.6353861773763, 20.70584682084749], [-70.45384956441451, 19.381758931054637], [-69.01122394115754, 18.69061909040474], [-67.77314023299425, 19.332592785460218], [-67.96331514047147, 20.643702793693436], [-69.38326850163935, 21.326183525747375]]]}}, {"type": "Feature", "properties": {"bin": "822b37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-63.20077399553516, 50.77050266836529], [-65.96338675688393, 50.60702889071427], [-67.07175051730285, 49.013088508565865], [-65.53570082306851, 47.64489600387728], [-62.962864671243295, 47.80722118889661], [-61.74588242176639, 49.33869863875727], [-63.20077399553516, 50.77050266836529]]]}}, {"type": "Feature", "properties": {"bin": "824837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-105.94643547761567, 20.212678725972662], [-104.39816566946544, 21.280265937450892], [-104.60215818719875, 23.06853297688241], [-106.40172306237122, 23.787393380405025], [-107.96670069950615, 22.69762313040058], [-107.7159112273016, 20.911859360362552], [-105.94643547761567, 20.212678725972662]]]}}, {"type": "Feature", "properties": {"bin": "82480ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.06759351145875, 25.16354330313356], [-108.49001079704972, 26.274980216839232], [-108.76314516196922, 28.0593910774909], [-110.66261804031069, 28.72380952741313], [-112.24805187233757, 27.591432296604456], [-111.92706403932374, 25.816223896317993], [-110.06759351145875, 25.16354330313356]]]}}, {"type": "Feature", "properties": {"bin": "82189ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-25.62514366457305, 49.45304649345546], [-27.781655948658877, 48.458659955966446], [-27.492923060366778, 46.76027724369226], [-25.161045549718533, 46.0500775281623], [-23.044935902233508, 47.01609893844996], [-23.218947610760186, 48.71933132364778], [-25.62514366457305, 49.45304649345546]]]}}, {"type": "Feature", "properties": {"bin": "824447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-91.4430599729998, 29.03851386192278], [-89.78916802666802, 29.876068019726645], [-89.7794734704032, 31.59073781085478], [-91.4744264324729, 32.49146921600194], [-93.17771064982074, 31.65113143450283], [-93.13595107051559, 29.913302560384633], [-91.4430599729998, 29.03851386192278]]]}}, {"type": "Feature", "properties": {"bin": "8236a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-154.85703308454984, 33.3008366693551], [-156.06426151962535, 31.994380259805034], [-155.27975615423446, 30.514209930347764], [-153.30180642665587, 30.337264802897664], [-152.08105897632794, 31.644146771138406], [-152.85043045733752, 33.12732053866677], [-154.85703308454984, 33.3008366693551]]]}}, {"type": "Feature", "properties": {"bin": "824ceffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-64.800426227773, 16.953431162581303], [-63.616000347810036, 18.007410818164693], [-63.825825348153344, 19.371916351092157], [-65.20653379371934, 19.669922322673447], [-66.36234352556042, 18.63022354284741], [-66.16605247815212, 17.278604677389144], [-64.800426227773, 16.953431162581303]]]}}, {"type": "Feature", "properties": {"bin": "8212f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-121.4424549287285, 54.916649815151494], [-122.90647779494316, 53.666152288031306], [-121.77726241145928, 52.190065109365364], [-119.28460495289977, 51.895657718956635], [-117.7288216412325, 53.08733365887163], [-118.7469733778494, 54.632577919547934], [-121.4424549287285, 54.916649815151494]]]}}, {"type": "Feature", "properties": {"bin": "823937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.347941440399472, 41.63003018212926], [-12.38412687299043, 40.869133191665526], [-12.47570007280164, 39.11281479140376], [-10.618161068438342, 38.139996370486614], [-8.657648270046371, 38.88943198318385], [-8.480681337677595, 40.62229995280742], [-10.347941440399472, 41.63003018212926]]]}}, {"type": "Feature", "properties": {"bin": "8248effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-110.97326582640996, 30.491571090923777], [-109.33403493051533, 31.601965505730263], [-109.6325113148718, 33.353312748176265], [-111.62272575497785, 33.98532502644072], [-113.26800832642184, 32.85690516760766], [-112.91813211642211, 31.11517337762597], [-110.97326582640996, 30.491571090923777]]]}}, {"type": "Feature", "properties": {"bin": "82701ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-171.22971982763713, 3.448801289445842], [-172.08061543914135, 2.142899112922026], [-171.37544324872502, 0.6498705655764005], [-169.81010632386403, 0.43188476755339184], [-168.9284547983508, 1.7290974334753317], [-169.64233439549923, 3.2533254825392905], [-171.22971982763713, 3.448801289445842]]]}}, {"type": "Feature", "properties": {"bin": "821a1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-46.320010261676174, 48.891066524136306], [-47.942116363056044, 47.60059834999411], [-47.2137967027232, 46.04931212219338], [-44.92554354224053, 45.755276550084716], [-43.25546063985791, 47.02166961988067], [-43.91722629234339, 48.605827842391406], [-46.320010261676174, 48.891066524136306]]]}}, {"type": "Feature", "properties": {"bin": "820f67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-53.01093487395563, 62.95067649282497], [-56.83926280965463, 63.08845327665033], [-58.827766861557635, 61.574893327818344], [-57.11446309131754, 60.011446683130515], [-53.64113389481237, 59.90336096046384], [-51.550082921060856, 61.33081918088026], [-53.01093487395563, 62.95067649282497]]]}}, {"type": "Feature", "properties": {"bin": "82129ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-129.13265335025088, 52.73849202152737], [-130.1721466749766, 51.49028793950405], [-128.90985381013775, 50.15451159756743], [-126.65364551902312, 49.99834025248947], [-125.5010185309912, 51.20399023625232], [-126.7100613714842, 52.609618421158075], [-129.13265335025088, 52.73849202152737]]]}}, {"type": "Feature", "properties": {"bin": "82466ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.78127814616812, 26.402669779874078], [-159.9084813728326, 24.992086567800815], [-159.13312902532823, 23.43817541951192], [-157.23734776410336, 23.285729094681425], [-156.08998858841755, 24.696711258039056], [-156.85736472540782, 26.25957203198717], [-158.78127814616812, 26.402669779874078]]]}}, {"type": "Feature", "properties": {"bin": "823f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.087588600126523, 39.612646497839734], [15.40073900356166, 37.94968889463011], [16.884717233845183, 36.66836993169907], [19.059614047576503, 37.02901921647205], [19.81112340000082, 38.68528246787517], [18.325260281104836, 39.98817796336323], [16.087588600126523, 39.612646497839734]]]}}, {"type": "Feature", "properties": {"bin": "82094ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.152178878591858, 69.36320659442477], [20.59724429383497, 70.05215151950888], [20.123253135395892, 71.43479800589196], [15.568828380671018, 72.0844427245379], [11.990167276622653, 71.26523337833441], [13.072820073815873, 69.93399315449412], [17.152178878591858, 69.36320659442477]]]}}, {"type": "Feature", "properties": {"bin": "821937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.444977544778329, 63.09505407752544], [-13.432968060234963, 62.58428155866159], [-13.53147949450864, 61.174834149098], [-10.828226222593615, 60.2883152943037], [-7.999682127502824, 60.776647276888475], [-7.720042056693346, 62.172198741500715], [-10.444977544778329, 63.09505407752544]]]}}, {"type": "Feature", "properties": {"bin": "8256d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-37.45366811571324, 5.311668299866157], [-36.102065542186466, 6.411812861671425], [-36.4157557370483, 8.111319009533224], [-38.076863107223815, 8.721485686591782], [-39.43410523143184, 7.635035982578252], [-39.125055578921476, 5.925105559873987], [-37.45366811571324, 5.311668299866157]]]}}, {"type": "Feature", "properties": {"bin": "827c47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-27.622966405679403, 1.6093190828786592], [-26.360081867442375, 2.6968138442972496], [-26.678663415956887, 4.381765439928967], [-28.261803843108698, 5.002988319007177], [-29.544827172549255, 3.9291342231117787], [-29.22497747715939, 2.2205282812262737], [-27.622966405679403, 1.6093190828786592]]]}}, {"type": "Feature", "properties": {"bin": "8236b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-158.04649474959947, 32.12156651323388], [-159.21340056850218, 30.77583280164384], [-158.4192072625563, 29.301281850269515], [-156.46648191451354, 29.16664573101749], [-155.27975615423446, 30.514209930347764], [-156.06426151962535, 31.994380259805034], [-158.04649474959947, 32.12156651323388]]]}}, {"type": "Feature", "properties": {"bin": "825437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.809542528491999, 20.76971623997587], [-16.39648236469557, 19.88982836881392], [-16.39704531124982, 18.232262428254234], [-14.866952039887197, 17.46687133443676], [-13.32044956422305, 18.32002082210057], [-13.2640825169036, 19.96445296689503], [-14.809542528491999, 20.76971623997587]]]}}]} diff --git a/tests/pbf/h3-1-1-0.geojson b/tests/pbf/h3-1-1-0.geojson new file mode 100644 index 000000000..b6853c725 --- /dev/null +++ b/tests/pbf/h3-1-1-0.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"bin": "82580ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.98617018247175, 14.492671448162053], [7.578742434535621, 12.932375898547791], [8.784937126674635, 11.730952307865815], [10.41628812276234, 12.057325226209532], [10.869781564574977, 13.615007694572515], [9.646405667369654, 14.84966422909465], [7.98617018247175, 14.492671448162053]]]}}, {"type": "Feature", "properties": {"bin": "82219ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[62.29898833850019, 40.134431196559035], [62.870145984466006, 38.417639807768175], [65.03033141654677, 37.89440377610124], [66.71839704773174, 39.067301069603346], [66.2481126857148, 40.813540861360785], [63.98547186413146, 41.35851009041053], [62.29898833850019, 40.134431196559035]]]}}, {"type": "Feature", "properties": {"bin": "827667fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[163.54549668989287, 5.629570987614513], [163.23931441944137, 4.0330269428364485], [164.33003046887535, 2.9602532188920114], [165.6963471662508, 3.4768244409223446], [165.99534224685527, 5.039864928413869], [164.93539603741021, 6.119591258608643], [163.54549668989287, 5.629570987614513]]]}}, {"type": "Feature", "properties": {"bin": "825237fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.16544602832363, 21.886800183347113], [39.28804357565316, 20.364056175566354], [40.190863351304, 18.941140990838722], [41.92847803544797, 19.026041560053464], [42.80980210855761, 20.511258562106715], [41.950919788593374, 21.948649310619096], [40.16544602832363, 21.886800183347113]]]}}, {"type": "Feature", "properties": {"bin": "826037fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.17056508080195, 9.84467337590314], [79.20849388464688, 11.573007348022402], [77.77098085188615, 12.450863670161919], [76.32684584963374, 11.607007909820153], [76.30569037447948, 9.906049181927763], [77.71212223171376, 9.021479879666195], [79.17056508080195, 9.84467337590314]]]}}, {"type": "Feature", "properties": {"bin": "826af7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[28.00353834225145, 0.5533618253805922], [28.664504679143825, 2.1201981947478785], [27.60191780171687, 3.4345808068957653], [25.886010570251138, 3.2020743391429516], [25.2124542219397, 1.6525082699307319], [26.266522986333136, 0.31800255716503595], [28.00353834225145, 0.5533618253805922]]]}}, {"type": "Feature", "properties": {"bin": "828547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.41803771376816, 2.4849461904515096], [65.13235296719137, 1.0544791906363753], [66.37043305706193, 0.15815048527172101], [67.89448832966885, 0.7233417311270236], [68.15129713763096, 2.1675662435525287], [66.91349507929881, 3.033400525560165], [65.41803771376816, 2.4849461904515096]]]}}, {"type": "Feature", "properties": {"bin": "822d4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.141990371113515, 48.470618150310706], [43.31814421137, 46.98312969411603], [45.69576371629003, 46.90573252004868], [47.03822283233273, 48.33994165728297], [45.910250490197114, 49.88159652150649], [43.385218690746825, 49.93426163580843], [42.141990371113515, 48.470618150310706]]]}}, {"type": "Feature", "properties": {"bin": "826207fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.712292451235164, 11.603707803548188], [56.90222137318218, 10.387346933737675], [57.826544385078634, 9.254931462060762], [59.20575845919014, 9.766368029980502], [59.14171250553698, 11.218223438139734], [57.712292451235164, 11.603707803548188]]]}}, {"type": "Feature", "properties": {"bin": "8232cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[161.72693351746074, 41.44200540170416], [162.41945516878846, 43.139192074137064], [160.7405163800123, 44.39013119290587], [158.38289640953528, 43.91230401757141], [157.78565423527834, 42.20959579263773], [159.44828133660147, 40.9892869279484], [161.72693351746074, 41.44200540170416]]]}}, {"type": "Feature", "properties": {"bin": "82082ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.930936799121078, 65.4132279482162], [15.523290332812767, 66.10348492641157], [14.813658725827596, 67.35176867523612], [11.133280035906186, 67.85995297513011], [8.516906270455017, 67.06524160472564], [9.586063396817956, 65.87071869391139], [12.930936799121078, 65.4132279482162]]]}}, {"type": "Feature", "properties": {"bin": "821e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.345747364400054, 50.55427508726938], [11.648396307828463, 49.03934513079639], [13.374347667392275, 47.965938447346616], [15.817383557718518, 48.388122500459744], [16.606046853462765, 49.899182136699345], [14.863026772454885, 50.99274772045683], [12.345747364400054, 50.55427508726938]]]}}, {"type": "Feature", "properties": {"bin": "822f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[153.65333558866647, 34.79494000415419], [154.09368225574624, 36.51782797902877], [152.48972895786574, 37.67916036936991], [150.48280815623022, 37.088590803454224], [150.12720600888105, 35.37477070109116], [151.69314222141958, 34.24156093178744], [153.65333558866647, 34.79494000415419]]]}}, {"type": "Feature", "properties": {"bin": "827b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.32275032625971, 0.041451351015036095], [55.70150722023229, 1.44764286020021], [54.715524234647425, 2.6514390692752117], [53.32374573777976, 2.471963263897448], [52.91578124016392, 1.0549590305746845], [53.928811983299774, -0.17217745834263962], [55.32275032625971, 0.041451351015036095]]]}}, {"type": "Feature", "properties": {"bin": "823877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.543589356987794, 36.59789814478598], [3.1364790338915944, 34.91820439114921], [4.622001932112611, 33.80292479846324], [6.551513795830656, 34.35055445973989], [7.029881378875401, 36.043675411373094], [5.507969569355888, 37.17634170043516], [3.543589356987794, 36.59789814478598]]]}}, {"type": "Feature", "properties": {"bin": "821197fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[34.739691660393355, 51.127122714338114], [36.11672363177465, 49.77934286766213], [38.48125900244655, 49.87978898631013], [39.607695236505506, 51.3656967728724], [38.24266638392084, 52.766684172187155], [35.73345537974305, 52.627432816707355], [34.739691660393355, 51.127122714338114]]]}}, {"type": "Feature", "properties": {"bin": "825327fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.08000143935667, 30.902960831797138], [39.12511926384923, 29.382490264721124], [40.110149533750196, 27.883745765043017], [41.9997109832086, 27.896961539061227], [42.95925686812808, 29.384441439126853], [42.02629399354079, 30.891357297171993], [40.08000143935667, 30.902960831797138]]]}}, {"type": "Feature", "properties": {"bin": "827777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[157.43587694017978, 9.643021108594692], [157.1154955383897, 7.988284766698585], [158.32448714986083, 6.846915371615777], [159.82641977314165, 7.35713969558914], [160.1419353088229, 8.984495035259691], [158.96069904151648, 10.129006016095506], [157.43587694017978, 9.643021108594692]]]}}, {"type": "Feature", "properties": {"bin": "8238cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.625253967039598, 28.063354881307642], [6.19103424186027, 26.368584569326593], [7.556100605723162, 25.1510932676285], [9.380676605201614, 25.603702576968765], [9.874355349748093, 27.304951934557945], [8.48467266804086, 28.54775137450854], [6.625253967039598, 28.063354881307642]]]}}, {"type": "Feature", "properties": {"bin": "82015ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.902098185657369, 77.83462153176359], [15.675393846113211, 78.79915742230948], [13.880064418613259, 80.34595244233695], [4.121656030400283, 80.79168761359398], [-1.3920560938763384, 79.5921312331109], [2.265817701531166, 78.19830644503146], [9.902098185657369, 77.83462153176359]]]}}, {"type": "Feature", "properties": {"bin": "820417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[134.71007017060782, 72.8480044940237], [135.69544064746276, 71.07580205245385], [140.70473211836827, 70.36653885229539], [145.3477749071445, 71.32310583443733], [145.35156501110018, 73.1239839572126], [139.69232621284283, 73.95282347941101], [134.71007017060782, 72.8480044940237]]]}}, {"type": "Feature", "properties": {"bin": "824a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.28264003276107, 23.859502020027048], [137.96594879359822, 22.260837811885946], [139.39082224486035, 21.20084319435006], [141.13125685853723, 21.747289135211766], [141.45463606547602, 23.346584520164132], [140.0313972001606, 24.399276926480983], [138.28264003276107, 23.859502020027048]]]}}, {"type": "Feature", "properties": {"bin": "82555ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.344548353615849, 18.349455296769857], [-8.877801145205453, 17.56154923764815], [-9.006464265768987, 15.98598523372256], [-7.649183817068924, 15.22126557573289], [-6.162619450275885, 15.990769092176489], [-5.987551711331904, 17.542834947432016], [-7.344548353615849, 18.349455296769857]]]}}, {"type": "Feature", "properties": {"bin": "827497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.955884209020185, -2.93876249540657], [-10.966735378416788, -1.9196479625840597], [-11.254244736494712, -0.4015944958931172], [-12.538994180303641, 0.13278097466366448], [-13.559193205964707, -0.8762512952424141], [-13.263717006889303, -2.4301130175177077], [-11.955884209020185, -2.93876249540657]]]}}, {"type": "Feature", "properties": {"bin": "822f77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.91104009580025, 30.7898339553385], [146.14718497669745, 32.46254239872947], [144.61806217349934, 33.50893914291298], [142.90304141661073, 32.85965633659085], [142.7396591831852, 31.20840317246497], [144.21897111031763, 30.184320316496716], [145.91104009580025, 30.7898339553385]]]}}, {"type": "Feature", "properties": {"bin": "8219a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.24262992316041, 61.34337802161002], [-22.038814684270694, 60.61568456080993], [-21.860891633724744, 59.14600882924072], [-19.067029449080284, 58.40493643730386], [-16.373725810250253, 59.10182986756048], [-16.37196241724275, 60.568693514800785], [-19.24262992316041, 61.34337802161002]]]}}, {"type": "Feature", "properties": {"bin": "8240d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[106.76141020400117, 33.446090216821595], [106.96772054606103, 34.90299087075072], [105.39728507185181, 35.8529066335591], [103.60958175073894, 35.346705515334484], [103.41939440159994, 33.88266397756609], [105.00026806645934, 32.931449058427376], [106.76141020400117, 33.446090216821595]]]}}, {"type": "Feature", "properties": {"bin": "82541ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.894156301320406, 15.857367972897634], [-16.39811264585764, 15.002855614684421], [-16.398619029755448, 13.434493335832748], [-14.945816427724187, 12.73084648058285], [-13.478121064920861, 13.557520460561596], [-13.427370701414569, 15.114836157430986], [-14.894156301320406, 15.857367972897634]]]}}, {"type": "Feature", "properties": {"bin": "824b37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.50339385995798, 29.89298533869355], [120.25469952524375, 28.452967458379142], [121.60089045882194, 27.692800358761183], [123.22320106559732, 28.38690170573753], [123.48699467958635, 29.84328862254757], [122.11353816810242, 30.58950657595241], [120.50339385995798, 29.89298533869355]]]}}, {"type": "Feature", "properties": {"bin": "822497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[93.72196326957709, 36.514136322787905], [93.43166846596247, 34.85693363509918], [94.96881107917741, 33.91688328380215], [96.79363542040774, 34.58273738134444], [97.16481861122213, 36.20351483811321], [95.63281653887009, 37.19550640207011], [93.72196326957709, 36.514136322787905]]]}}, {"type": "Feature", "properties": {"bin": "82630ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.7882477627106, 14.858282725500832], [58.2554110456957, 13.61493421960814], [59.732575088573185, 13.216340916028171], [60.792006840230606, 14.047557933421603], [60.364768957376114, 15.3170041034638], [58.836894289259575, 15.729584455219758], [57.7882477627106, 14.858282725500832]]]}}, {"type": "Feature", "properties": {"bin": "822017fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.59425087512183, 43.75289712530186], [68.0486075236378, 41.98577467201586], [70.30637689681684, 41.359581468551546], [72.20771321903253, 42.46955284809628], [71.87847270508469, 44.254457193691366], [69.51996090712217, 44.91313685007157], [67.59425087512183, 43.75289712530186]]]}}, {"type": "Feature", "properties": {"bin": "827ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.82903701594842, 3.022067879890788], [175.46041201203371, 4.248592317017834], [174.54976641024237, 5.303397728432387], [172.99061638218362, 5.099216341695201], [172.38449389125012, 3.8458282604840193], [173.31118181449287, 2.823303681456528], [174.82903701594842, 3.022067879890788]]]}}, {"type": "Feature", "properties": {"bin": "824b47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[131.70221570848454, 31.564914230428208], [131.40197442049958, 30.129180286959176], [132.84193684897602, 29.25093030861391], [134.59291640384927, 29.81766138412523], [134.9039824818955, 31.25985351902173], [133.45367950743437, 32.12930962110428], [131.70221570848454, 31.564914230428208]]]}}, {"type": "Feature", "properties": {"bin": "826437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.80136063472524, 8.61889065810363], [100.96315619083069, 10.410683770602716], [99.46471429047267, 11.444613490172019], [97.8051492583997, 10.676223803781252], [97.65955742680453, 8.877710043341528], [99.15702672665195, 7.853853966740167], [100.80136063472524, 8.61889065810363]]]}}, {"type": "Feature", "properties": {"bin": "82751ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.572995371627303, 7.395109809160056], [-5.908652939747203, 6.676866573680896], [-6.0644961087785445, 5.362739776582643], [-4.918873186254363, 4.7842994164597235], [-3.66239661559828, 5.048182136577349], [-3.4710946837530763, 6.3576532880413], [-4.572995371627303, 7.395109809160056]]]}}, {"type": "Feature", "properties": {"bin": "82390ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.7286180787605163, 40.87178460953809], [-4.708227372662669, 40.25602599301953], [-4.963456118392565, 38.55271209108038], [-3.3113412530765816, 37.499409186860944], [-1.4162342628377134, 38.1159967227654], [-1.0911461549131662, 39.78465688180244], [-2.7286180787605163, 40.87178460953809]]]}}, {"type": "Feature", "properties": {"bin": "821047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[53.666980906005925, 65.73440250373991], [55.03553738085308, 64.26898911013433], [58.79473999463724, 64.03522417338607], [61.51493759898825, 65.25273108770251], [60.404056538620424, 66.76564107222977], [56.29150634861458, 67.01522257983876], [53.666980906005925, 65.73440250373991]]]}}, {"type": "Feature", "properties": {"bin": "8262affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.20084629329463, 7.935015077996292], [55.84008860955652, 6.66108112729045], [56.794596557655176, 5.489665649401445], [58.21229557627797, 6.022039688854253], [58.549882762724735, 7.302087248609304], [57.48907818012652, 8.031132744162123], [56.20084629329463, 7.935015077996292]]]}}, {"type": "Feature", "properties": {"bin": "825a47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.74783503796147, 13.036810003988302], [166.31377179062187, 14.5131315348316], [165.15934102826995, 15.737083294175456], [163.4367872863556, 15.444603170669472], [162.91566501131913, 13.948395710977309], [164.07108480662677, 12.763907533936957], [165.74783503796147, 13.036810003988302]]]}}, {"type": "Feature", "properties": {"bin": "827cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.421549166867063, 2.9850510529164813], [-18.29181990106688, 3.9960705951817412], [-18.597968911654448, 5.592617806389967], [-20.03950695020037, 6.20983767529234], [-21.197086686578825, 5.214586161545864], [-20.88554403470773, 3.586179719894], [-19.421549166867063, 2.9850510529164813]]]}}, {"type": "Feature", "properties": {"bin": "821147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.38224327730973, 66.70143616688567], [38.42734195521613, 65.50068879026966], [42.09680470695681, 65.69740315059383], [44.06075357873934, 67.12037102879738], [42.08394372307629, 68.38209527813017], [38.05103963309276, 68.15820461940665], [36.38224327730973, 66.70143616688567]]]}}, {"type": "Feature", "properties": {"bin": "826b1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[21.861183954394107, 12.56846389905936], [21.240864372039603, 11.01716618355836], [22.34818138022581, 9.74567700347234], [24.067596824538438, 9.992589708432718], [24.720625913224463, 11.520974627273143], [23.622772407807847, 12.825720559075275], [21.861183954394107, 12.56846389905936]]]}}, {"type": "Feature", "properties": {"bin": "82629ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.09760037506581, 4.018825289271461], [54.715524234647425, 2.6514390692752117], [55.70150722023228, 1.447642860200194], [57.15890102143649, 1.9934841679350606], [57.51698034770715, 3.3672716245104053], [56.43725299657158, 4.172487876554684], [55.09760037506581, 4.018825289271461]]]}}, {"type": "Feature", "properties": {"bin": "824ec7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[148.29664651483174, 25.309881523116786], [148.57006259531556, 26.946867012854007], [147.13582799158445, 28.051410241915995], [145.46823819786155, 27.48960983163966], [145.26039098039993, 25.867196303840352], [146.65468135835246, 24.791240432729637], [148.29664651483174, 25.309881523116786]]]}}, {"type": "Feature", "properties": {"bin": "821e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.334660572794059, 40.405578471534604], [11.719174616730063, 38.74166724514195], [13.244313475659819, 37.523712365785194], [15.40073900356166, 37.94968889463011], [16.087588600126523, 39.612646497839734], [14.548450654218147, 40.85124382084822], [12.334660572794059, 40.405578471534604]]]}}, {"type": "Feature", "properties": {"bin": "8254cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.62057662207049, 9.082229599755195], [-15.017096277235694, 8.290871572025175], [-15.03935686307738, 6.880832664714157], [-13.708146703917995, 6.270965136275775], [-12.344346110330108, 7.035853616998724], [-12.279428517961106, 8.436299934019914], [-13.62057662207049, 9.082229599755195]]]}}, {"type": "Feature", "properties": {"bin": "823d77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.72868707628261, 36.835377392607754], [82.72452222645332, 35.10762401359851], [84.5304401352957, 34.27878672452731], [86.37447080326292, 35.12811893178941], [86.47957206441347, 36.83981238321306], [84.64071731714614, 37.719575349439715], [82.72868707628261, 36.835377392607754]]]}}, {"type": "Feature", "properties": {"bin": "826417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[99.46471429047267, 11.444613490172019], [99.62104197842224, 13.236333300082233], [98.10111823216585, 14.264150052057268], [96.42793649224689, 13.492678095052215], [96.28857208231415, 11.69694254993996], [97.8051492583997, 10.676223803781252], [99.46471429047267, 11.444613490172019]]]}}, {"type": "Feature", "properties": {"bin": "82589ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.125247405149373, 6.425019813099671], [2.8260034960813383, 5.055077924023954], [3.9430361557864604, 3.968796976609587], [5.380973348826344, 4.22115443356989], [5.720322083693563, 5.5902368764341395], [4.581792371905466, 6.708566989426475], [3.125247405149373, 6.425019813099671]]]}}, {"type": "Feature", "properties": {"bin": "823c4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[99.51693852531672, 29.615360337998418], [99.68326908521608, 31.18766135235495], [98.06882907366122, 32.09845008104616], [96.29158273471053, 31.43852798992928], [96.14439740633347, 29.86478154800566], [97.75498277138222, 28.95183542377966], [99.51693852531672, 29.615360337998418]]]}}, {"type": "Feature", "properties": {"bin": "822067fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.70272630085074, 52.757072098664345], [77.87845951220683, 50.97730661218649], [80.37088177124326, 50.141513814635246], [82.77278505846108, 51.039193656265965], [82.78014710092717, 52.81198572301435], [80.20285201143243, 53.69627924565033], [77.70272630085074, 52.757072098664345]]]}}, {"type": "Feature", "properties": {"bin": "823e5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[31.44867473202602, 25.939003563147065], [30.619038481335384, 24.316034022932545], [31.724401834906267, 22.868396509655774], [33.62755515091634, 23.02249939316592], [34.479715709621956, 24.614779035543457], [33.408066112926264, 26.083575953551144], [31.44867473202602, 25.939003563147065]]]}}, {"type": "Feature", "properties": {"bin": "82045ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.47600984351607, 73.87447385977362], [171.71068548706472, 72.27708923784728], [174.74893924520714, 70.79472682488498], [-179.90258617233593, 70.78434474762022], [-176.69960314801912, 72.23799965485979], [-179.16643209941827, 73.8438182991874], [174.47600984351607, 73.87447385977362]]]}}, {"type": "Feature", "properties": {"bin": "8215a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.22982205294679, 52.37241137844973], [112.61209790051609, 51.093201098106135], [115.14509777269923, 51.01134550218379], [116.49115539398706, 52.21684457113934], [115.20286044245609, 53.570773610541714], [112.4637075001006, 53.64397235107222], [111.22982205294679, 52.37241137844973]]]}}, {"type": "Feature", "properties": {"bin": "827ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[44.7454727368835, 6.909729644199502], [45.24040446001356, 8.292129888631607], [44.19826616870122, 9.509409047334035], [42.644449865931726, 9.369199949120718], [42.12326826331898, 7.989894674599888], [43.18177242410844, 6.747200705712324], [44.7454727368835, 6.909729644199502]]]}}, {"type": "Feature", "properties": {"bin": "824e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[152.40802678383096, 21.897410213007042], [152.75863213820998, 23.51060310201209], [151.3827535414481, 24.673785080133946], [149.6858955540046, 24.188862764499515], [149.39749770933201, 22.581163304154366], [150.7434524964445, 21.45201373033201], [152.40802678383096, 21.897410213007042]]]}}, {"type": "Feature", "properties": {"bin": "8286dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[78.95175679181041, -0.3854149473714066], [78.98721593134994, 1.2880989818264355], [77.5983036432562, 2.223343629222345], [76.20338509444836, 1.4824169163632506], [76.18359204443267, -0.1662406078596011], [77.543258750727, -1.0989978013306567], [78.95175679181041, -0.3854149473714066]]]}}, {"type": "Feature", "properties": {"bin": "826a47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[35.03167639020317, 5.820413131280575], [35.62661261729032, 7.284444670674573], [34.56147784002125, 8.530928518179728], [32.89787211389365, 8.336574336690184], [32.283333673132425, 6.883777737297147], [33.3512924927678, 5.613739506022279], [35.03167639020317, 5.820413131280575]]]}}, {"type": "Feature", "properties": {"bin": "820517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.93256091359298, 75.29604839760391], [109.85869817326204, 73.85683569908097], [116.22097890957218, 73.88538861861933], [119.9312752857104, 75.37357035994816], [116.63882143701579, 76.98250301160279], [108.7965858772922, 76.93068340510597], [105.93256091359298, 75.29604839760391]]]}}, {"type": "Feature", "properties": {"bin": "822f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[147.938574229656, 33.072200757017214], [148.2306899338896, 34.76967367165591], [146.65234247438462, 35.83924212521621], [144.83132547405447, 35.18743046995052], [144.61806217349934, 33.50893914291298], [146.14718497669745, 32.46254239872947], [147.938574229656, 33.072200757017214]]]}}, {"type": "Feature", "properties": {"bin": "826527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[104.6440938384407, 0.2839386148111165], [104.81975427624337, 2.0221015680241052], [103.39146400745685, 3.0214726756669807], [101.78183601973568, 2.2641433736476864], [101.6200237429843, 0.5122773661661794], [103.0536445998174, -0.46895501652356597], [104.6440938384407, 0.2839386148111165]]]}}, {"type": "Feature", "properties": {"bin": "821657fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.70598427224823, 52.01101560763347], [175.86773322410414, 53.4759949918722], [174.17842510466699, 54.8030092578657], [171.27083198536272, 54.63456191069657], [170.19881569013583, 53.14363558473362], [171.93792040161404, 51.846632291535], [174.70598427224823, 52.01101560763347]]]}}, {"type": "Feature", "properties": {"bin": "821f5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[23.6571061696422, 53.36390143732629], [22.673099856157986, 51.971886717716714], [24.329000339945946, 50.77632225134795], [26.94086408434805, 50.95215670452957], [27.993406169520387, 52.32716417101245], [26.370174814240475, 53.543762740676236], [23.6571061696422, 53.36390143732629]]]}}, {"type": "Feature", "properties": {"bin": "823e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.09269537453719, 22.484493199126963], [16.493141377842296, 20.807842018632034], [17.745279877629986, 19.47478423772583], [19.597919649817623, 19.787818768125756], [20.242990297561875, 21.4509882258132], [18.9912827255566, 22.815134716422165], [17.09269537453719, 22.484493199126963]]]}}, {"type": "Feature", "properties": {"bin": "824a37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[125.71988217642108, 25.21806209996667], [125.44765857221233, 23.657241852280656], [126.83691808742559, 22.746553062244796], [128.51859444064664, 23.408710771514148], [128.80414635159454, 24.98400610534958], [127.39498324112382, 25.883020878261213], [125.71988217642108, 25.21806209996667]]]}}, {"type": "Feature", "properties": {"bin": "821677fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.6673809942136, 57.35909783156442], [169.4263835423944, 55.879648706180184], [171.27083198536272, 54.63456191069657], [174.17842510466699, 54.8030092578657], [175.38736116053553, 56.22189416275603], [173.78748926991187, 57.53249012380251], [170.6673809942136, 57.35909783156442]]]}}, {"type": "Feature", "properties": {"bin": "822da7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.614583723213144, 36.85866401664056], [32.66550041238105, 35.29989354908048], [33.851253012369405, 33.82015951565442], [35.941660647113025, 33.88647014000823], [36.91260199541162, 35.41856039141452], [35.77375792162134, 36.910956734615105], [33.614583723213144, 36.85866401664056]]]}}, {"type": "Feature", "properties": {"bin": "826407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.65955742680453, 8.877710043341528], [97.8051492583997, 10.676223803781252], [96.28857208231415, 11.69694254993996], [94.63254033379145, 10.910676879872467], [94.50418580931292, 9.110882438715038], [96.01439866788061, 8.098158295557342], [97.65955742680453, 8.877710043341528]]]}}, {"type": "Feature", "properties": {"bin": "820aaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.80308515661083, 60.67735411936203], [97.29057929790196, 59.53197244941361], [100.30884232532844, 59.942286411345535], [101.26789914925824, 61.44608261251146], [98.78655602562984, 62.669687606976154], [95.3598689119515, 62.2848815864491], [94.80308515661083, 60.67735411936203]]]}}, {"type": "Feature", "properties": {"bin": "826517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.17626894753136, 5.535001785345823], [105.35716758404884, 7.303218576160172], [103.91102173954691, 8.33720166325733], [102.27727175025632, 7.5878968444114205], [102.11043714087029, 5.805282758652391], [103.56291680010384, 4.785999481381559], [105.17626894753136, 5.535001785345823]]]}}, {"type": "Feature", "properties": {"bin": "8215affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.20286044245609, 53.570773610541714], [116.49115539398706, 52.21684457113934], [119.12537216908741, 52.05007454011355], [120.68196111409804, 53.23404398800581], [119.52274645502449, 54.65963026445359], [116.66573457527616, 54.82981575523819], [115.20286044245609, 53.570773610541714]]]}}, {"type": "Feature", "properties": {"bin": "82210ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[62.7422077313002, 51.29807419595648], [63.423695260878816, 49.56862966981763], [66.0482164226795, 49.048729628706965], [68.1356304547995, 50.235864087332054], [67.60809867176599, 51.993218243053036], [64.83324467627597, 52.53711433215488], [62.7422077313002, 51.29807419595648]]]}}, {"type": "Feature", "properties": {"bin": "826967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.28561870360247, 18.725214708850935], [117.05448467210091, 17.09117189341816], [118.33418363415802, 16.013184142791825], [119.86772166666535, 16.721539545046728], [120.10960172007171, 18.354106406676436], [118.80300158646772, 19.252194904738655], [117.28561870360247, 18.725214708850935]]]}}, {"type": "Feature", "properties": {"bin": "820137fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[31.831280499087402, 68.92995788193981], [35.780975079782024, 69.30325543265094], [36.57889659541587, 70.68682709472333], [32.827639376682654, 71.72258517006674], [28.43305176155628, 71.24542771505138], [28.255869905697548, 69.84474595092315], [31.831280499087402, 68.92995788193981]]]}}, {"type": "Feature", "properties": {"bin": "820197fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.81375768591653, 69.66721014720999], [62.345344956509784, 69.3935964899183], [65.2813794283989, 70.5451205131701], [63.503066128473, 72.09256483244164], [58.229871936333964, 72.37448219090822], [55.549352810667344, 71.09900619688861], [57.81375768591653, 69.66721014720999]]]}}, {"type": "Feature", "properties": {"bin": "82319ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.99224448344454, 35.8424431064138], [117.24020830649066, 37.16250635410631], [115.8282026115415, 38.17441086720651], [114.1399009973413, 37.869616358975115], [113.90121573302835, 36.538080540779866], [115.34096073223206, 35.52242379555108], [116.99224448344454, 35.8424431064138]]]}}, {"type": "Feature", "properties": {"bin": "822007fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.08841820852274, 46.69211411024017], [69.51996090712217, 44.91313685007157], [71.87847270508469, 44.254457193691366], [73.90846648018636, 45.341013613187926], [73.61820931870749, 47.13404017426435], [71.15389202471005, 47.82818798168813], [69.08841820852274, 46.69211411024017]]]}}, {"type": "Feature", "properties": {"bin": "8215b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.70886011900615, 49.60669548625785], [112.99153802526224, 48.35366325036661], [115.09543130851324, 48.558604635580586], [116.34192417394114, 49.7091107998404], [115.14509777269923, 51.01134550218379], [112.61209790051609, 51.093201098106135], [111.70886011900615, 49.60669548625785]]]}}, {"type": "Feature", "properties": {"bin": "8262c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.06019786174172, 7.076905935478182], [60.7436772409406, 5.7794599611109305], [61.876642221370076, 4.986310192743086], [63.33286230151251, 5.519529774270265], [63.62599952757672, 6.83261548466737], [62.48690644380466, 7.59726848079817], [61.06019786174172, 7.076905935478182]]]}}, {"type": "Feature", "properties": {"bin": "82612ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.43251755698464, 2.0363145312139648], [80.47683384971262, 3.7450437470058175], [79.05932466686099, 4.681532948717339], [77.62628444810427, 3.907860669139395], [77.5983036432562, 2.223343629222345], [78.98721593134994, 1.2880989818264355], [80.43251755698464, 2.0363145312139648]]]}}, {"type": "Feature", "properties": {"bin": "820817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.693860813817622, 63.51970712744604], [8.899170411870465, 62.3039347443133], [11.080660058482376, 61.54051460002519], [14.102101615280446, 61.96354053750143], [15.046206854523517, 63.166721052064105], [12.823918552178451, 63.96072746373739], [9.693860813817622, 63.51970712744604]]]}}, {"type": "Feature", "properties": {"bin": "82829ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.807652062069575, 3.046341729325485], [15.505317072937482, 4.5409605608606505], [14.583250071411678, 5.762860491436916], [12.988442347830352, 5.505707355639411], [12.294352016976955, 4.039836103302269], [13.190830888883605, 2.8025965889319755], [14.807652062069575, 3.046341729325485]]]}}, {"type": "Feature", "properties": {"bin": "822cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.384593691970856, 37.45345193003371], [52.18260405296, 35.86272515976388], [54.23119220420766, 35.534359447089386], [55.582222101206035, 36.79919983568016], [54.846596303427944, 38.436843700474434], [52.69366205790297, 38.7628011665807], [51.384593691970856, 37.45345193003371]]]}}, {"type": "Feature", "properties": {"bin": "821e77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.329000339945946, 50.77632225134795], [23.367705060966273, 49.33446913970941], [24.952411824179674, 48.08486658471021], [27.469818592085993, 48.25805694866096], [28.492805600393982, 49.683115672532594], [26.94086408434805, 50.95215670452957], [24.329000339945946, 50.77632225134795]]]}}, {"type": "Feature", "properties": {"bin": "825adffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.45111251447574, 22.28219197346516], [170.1468684664771, 23.89726226203983], [168.91929058653923, 25.25705643221339], [166.98347528729872, 24.963091334263748], [166.33737032835697, 23.323829080226908], [167.57555444357988, 22.002216995828245], [169.45111251447574, 22.28219197346516]]]}}, {"type": "Feature", "properties": {"bin": "8205affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.22097890957218, 73.88538861861933], [118.98141478359176, 72.28704712420588], [124.75360006217667, 72.04776325602842], [128.7891081481311, 73.37525345776886], [126.86805888148528, 75.09700284062423], [119.9312752857104, 75.37357035994816], [116.22097890957218, 73.88538861861933]]]}}, {"type": "Feature", "properties": {"bin": "824067fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.67593139891986, 21.682421552590757], [103.8591385223553, 23.37444792118442], [102.32113206765436, 24.395173932504584], [100.59536245945822, 23.721461901127963], [100.4285180098119, 22.021169717198628], [101.97067725181773, 21.002364724127837], [103.67593139891986, 21.682421552590757]]]}}, {"type": "Feature", "properties": {"bin": "826907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.5224777854918, 12.529165955427235], [113.7398993154817, 14.230760809784227], [112.38073693010568, 15.302304732752043], [110.78436003281134, 14.661050833893995], [110.5768834607828, 12.93456836331676], [111.95537231806988, 11.874077964273782], [113.5224777854918, 12.529165955427235]]]}}, {"type": "Feature", "properties": {"bin": "8282b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.669408104914123, -0.8469844525190846], [18.375633862528336, 0.7096114806741792], [17.401552408456116, 2.0129447691512135], [15.743841427341074, 1.7743965588127961], [15.037915717292355, 0.24461504240036508], [15.988623552785217, -1.0732871092626444], [17.669408104914123, -0.8469844525190846]]]}}, {"type": "Feature", "properties": {"bin": "8239a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.744488220052984, 36.383229951792835], [-12.646960344628356, 35.57816880772348], [-12.727150094554121, 33.80653391043386], [-10.98139564337498, 32.86267465416169], [-9.14446112738395, 33.653758830556235], [-8.989073467751014, 35.40191572642888], [-10.744488220052984, 36.383229951792835]]]}}, {"type": "Feature", "properties": {"bin": "821027fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.301766630116866, 61.27992582194621], [39.007636105246156, 59.98127301672662], [42.11654040176946, 60.11966819571557], [43.762445739128566, 61.58532338038746], [42.107502449716236, 62.93984681845669], [38.7414677057795, 62.771654769968045], [37.301766630116866, 61.27992582194621]]]}}, {"type": "Feature", "properties": {"bin": "825b6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[167.32655462438848, 5.521103943374022], [167.87091234842308, 6.823336584288535], [166.82899636318285, 7.923775520601624], [165.23788930278994, 7.685350843804372], [164.93539603741021, 6.119591258608643], [165.99534224685527, 5.039864928413869], [167.32655462438848, 5.521103943374022]]]}}, {"type": "Feature", "properties": {"bin": "823c67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[91.58670594833411, 34.13144790711867], [91.35849929423574, 32.48718343230164], [92.89372681805163, 31.5993389302699], [94.66113729594254, 32.3043363707435], [94.96881107917741, 33.91688328380215], [93.43166846596247, 34.85693363509918], [91.58670594833411, 34.13144790711867]]]}}, {"type": "Feature", "properties": {"bin": "824b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.84659463601861, 23.13338372521267], [120.59902508676929, 21.562234593566913], [121.93365313479985, 20.678136595004702], [123.54226869469618, 21.379153198161493], [123.80451765016892, 22.97077194146011], [122.4436343115601, 23.841123553601193], [120.84659463601861, 23.13338372521267]]]}}, {"type": "Feature", "properties": {"bin": "820a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.29057929790196, 59.53197244941361], [96.69913454978891, 57.90540567596511], [98.94029661707259, 56.733010543848636], [101.73727603534257, 57.13862734053574], [102.50328586746389, 58.720203187806305], [100.30884232532836, 59.94228641134552], [97.29057929790196, 59.53197244941361]]]}}, {"type": "Feature", "properties": {"bin": "826a67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[32.687080191852424, 11.088516961674802], [31.947530107392243, 9.601671762572183], [32.89787211389366, 8.336574336690193], [34.56147784002126, 8.530928518179758], [35.31654779465218, 9.98398388232497], [34.393732963880566, 11.276322461916562], [32.687080191852424, 11.088516961674802]]]}}, {"type": "Feature", "properties": {"bin": "822577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.36397669089338, 53.90786102072088], [99.74643491762787, 52.26442895448878], [101.60364961319526, 51.075473556050824], [104.0355334812399, 51.48528856286493], [104.77350705880835, 53.07967684590146], [102.96687871335511, 54.313757154662134], [100.36397669089338, 53.90786102072088]]]}}, {"type": "Feature", "properties": {"bin": "820b37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.627534648058, 59.99795420434516], [68.25632325438265, 58.31910366055611], [71.37222664322603, 57.71379607923372], [74.04289226142357, 58.75102451122161], [73.6610104954934, 60.44728627103266], [70.35457610671249, 61.09164631266698], [67.627534648058, 59.99795420434516]]]}}, {"type": "Feature", "properties": {"bin": "827a6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.50543568200199, -2.7909720644293845], [37.10846153224667, -1.1936474792774954], [36.00337711333937, 0.14809840694751103], [34.28911722144607, -0.08630376308334368], [33.66361927713152, -1.6772949381945048], [34.77410396530443, -3.0405801857145183], [36.50543568200199, -2.7909720644293845]]]}}, {"type": "Feature", "properties": {"bin": "82008ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.39705810942445, 78.85677806035595], [81.23235529091416, 78.14706671558069], [88.74228226011789, 78.98640307577013], [89.55465951648463, 80.74026860708855], [79.88956289901815, 81.63685238910074], [71.37938677201048, 80.55688121048655], [73.39705810942445, 78.85677806035595]]]}}, {"type": "Feature", "properties": {"bin": "82338ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[177.0371606611317, 33.92517122988525], [177.97421544565455, 35.54141287509961], [176.72479169974594, 37.021584010400524], [174.49688633843544, 36.85680682151307], [173.60587278331644, 35.209234806190445], [174.89355477166853, 33.75764213456774], [177.0371606611317, 33.92517122988525]]]}}, {"type": "Feature", "properties": {"bin": "826827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.41849366987863, 9.387741851934093], [117.64470828927377, 11.055777977021902], [116.37231939217895, 12.105101652283977], [114.84982570195432, 11.47212367111249], [114.63091162238833, 9.773829789567674], [115.9267501003878, 8.738797899894394], [117.41849366987863, 9.387741851934093]]]}}, {"type": "Feature", "properties": {"bin": "820af7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[98.78655602562984, 62.669687606976154], [101.26789914925824, 61.44608261251146], [104.70987156583625, 61.67861940182324], [106.01845341595069, 63.18664442873612], [103.56728434067718, 64.518640601611], [99.75343158320663, 64.23021521485094], [98.78655602562984, 62.669687606976154]]]}}, {"type": "Feature", "properties": {"bin": "820b2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.3710205691241, 64.85541165114829], [66.19329062419274, 63.26868664228724], [69.77433234939853, 62.7392877671267], [72.78571153526721, 63.75866240186588], [72.28100470319012, 65.36915236131517], [68.43491147351529, 65.93981446749967], [65.3710205691241, 64.85541165114829]]]}}, {"type": "Feature", "properties": {"bin": "826837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.70668093151195, 7.051735504176149], [115.9267501003878, 8.738797899894394], [114.63091162238833, 9.773829789567674], [113.09327126386995, 9.10538636195205], [112.88144960994038, 7.389406912237243], [114.19858171193793, 6.370765032437677], [115.70668093151195, 7.051735504176149]]]}}, {"type": "Feature", "properties": {"bin": "82054ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.21916569181485, 83.14393672156832], [166.91020795543056, 81.52344187827559], [173.4303374577679, 80.06799240018739], [-176.36726611745192, 79.9836986581658], [-169.31444888144782, 81.3221082407873], [-173.17785081207975, 83.0160008604971], [172.21916569181485, 83.14393672156832]]]}}, {"type": "Feature", "properties": {"bin": "8224d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[102.8141618960042, 37.94492833280539], [102.30325327948647, 36.36997600869449], [103.60958175073893, 35.34670551533449], [105.3972850718518, 35.852906633559115], [105.96804858978469, 37.37997452587736], [104.69435715402071, 38.448644740611016], [102.8141618960042, 37.94492833280539]]]}}, {"type": "Feature", "properties": {"bin": "8239affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.10189392414001, 36.141695300502455], [-8.989073467751014, 35.40191572642888], [-9.14446112738395, 33.653758830556235], [-7.483894227836209, 32.67425403800953], [-5.667271622745808, 33.405709481234645], [-5.442348460730086, 35.12442405176797], [-7.10189392414001, 36.141695300502455]]]}}, {"type": "Feature", "properties": {"bin": "820a47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[91.46555099668309, 71.02572941738775], [95.41691689117123, 69.89655021163419], [100.25093520373768, 70.33211048895711], [101.78982837628078, 71.98699598123666], [97.72256288499204, 73.26114384853165], [92.17806986247332, 72.72517076411164], [91.46555099668309, 71.02572941738775]]]}}, {"type": "Feature", "properties": {"bin": "824337fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.18790361279607, 29.08939213814528], [50.908540877377206, 27.61194575867891], [52.69556296388095, 27.27707945911761], [53.839019591851255, 28.421390646162198], [53.16240799722281, 29.9438206116453], [51.29571000306017, 30.276887845090446], [50.18790361279607, 29.08939213814528]]]}}, {"type": "Feature", "properties": {"bin": "82600ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.53666117030511, 9.942291171608053], [73.54203721621735, 11.612728158942945], [72.18738034501416, 12.432614611561958], [70.86172974036968, 11.593032005402348], [70.87100203342922, 9.955680589617987], [72.19157243513001, 9.124946440062544], [73.53666117030511, 9.942291171608053]]]}}, {"type": "Feature", "properties": {"bin": "821e4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[32.49177831469452, 48.437418514652656], [31.42227212531316, 47.03191968899236], [32.80266317669352, 45.65567444315455], [35.197789215168264, 45.67238477248148], [36.299105819285636, 47.05631421186065], [34.977250048428445, 48.44511511510519], [32.49177831469452, 48.437418514652656]]]}}, {"type": "Feature", "properties": {"bin": "82174ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.21460124064004, 61.82981680247971], [173.5418871720351, 60.33926345879477], [175.30938932885118, 58.98135158598347], [178.57998532973056, 59.032171994759636], [-179.58910023229902, 60.42881773546721], [178.83711560806952, 61.86776664207705], [175.21460124064004, 61.82981680247971]]]}}, {"type": "Feature", "properties": {"bin": "8200c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[64.01135567538, 83.90003351620658], [78.68950712797613, 83.3827897305548], [92.65544877532724, 84.24413301148068], [96.2081078288357, 85.97836914698948], [72.35462514904258, 86.84371182611669], [56.33367799409684, 85.48985867978557], [64.01135567538, 83.90003351620658]]]}}, {"type": "Feature", "properties": {"bin": "8214d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[134.31722549534967, 49.855479083883395], [134.76393627595752, 48.41801789173906], [137.01230194626575, 47.87799059734758], [138.9432025290707, 48.72622613945607], [138.66930986909085, 50.18780949546236], [136.28778731251637, 50.77962462967674], [134.31722549534967, 49.855479083883395]]]}}, {"type": "Feature", "properties": {"bin": "8230dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[127.39451411745605, 33.93630615131908], [127.11045385351468, 32.56528763821615], [128.534469151531, 31.786712055773553], [130.26073198874622, 32.38900103964749], [130.55784267390348, 33.76864439541193], [129.11598634806901, 34.5377946061048], [127.39451411745605, 33.93630615131908]]]}}, {"type": "Feature", "properties": {"bin": "82750ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.4710946837530763, 6.3576532880413], [-3.66239661559828, 5.048182136577349], [-2.5790347646674925, 4.02002363858656], [-1.2768497657972255, 4.273265982323713], [-1.0480074617937822, 5.588679090661898], [-2.159048476284375, 6.645580466394948], [-3.4710946837530763, 6.3576532880413]]]}}, {"type": "Feature", "properties": {"bin": "8211a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.22306500560222, 54.95338172548046], [31.795224652499606, 53.716816730832385], [34.25928669926778, 53.94825773758088], [35.2991114114946, 55.46002004057114], [33.71346375789878, 56.74659832800681], [31.095814204707388, 56.47000529592752], [30.22306500560222, 54.95338172548046]]]}}, {"type": "Feature", "properties": {"bin": "82869ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[86.31953758167887, 1.63232272461648], [86.39824664581512, 3.377564649468665], [84.9296665436273, 4.348486695475441], [83.405034534837, 3.5681062453724035], [83.34372903289862, 1.838980256743801], [84.78971932948328, 0.8737500859223797], [86.31953758167887, 1.63232272461648]]]}}, {"type": "Feature", "properties": {"bin": "822d37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.788911025548757, 41.19512137576951], [28.846868847179117, 39.64331054771269], [30.164431431468948, 38.21530146274488], [32.38535877695387, 38.32419732667995], [33.362059364808566, 39.8539165470676], [32.08615225875723, 41.29694332763067], [29.788911025548757, 41.19512137576951]]]}}, {"type": "Feature", "properties": {"bin": "824e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[156.72990126505292, 26.053719357465955], [157.19416682977592, 27.73113416142994], [155.76776632495591, 28.964245339774813], [153.89961337343811, 28.483839005577956], [153.5035330170596, 26.8063298503651], [154.90656914196632, 25.608430396673544], [156.72990126505292, 26.053719357465955]]]}}, {"type": "Feature", "properties": {"bin": "82059ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[123.24899078013112, 69.0090275410405], [124.92363461540212, 67.34894014371963], [129.384260762246, 66.94915555373031], [132.75260324065235, 68.16135100453414], [131.6567141896898, 69.90083070937007], [126.56011071575868, 70.35455175835216], [123.24899078013112, 69.0090275410405]]]}}, {"type": "Feature", "properties": {"bin": "823f6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.164431431468948, 38.21530146274488], [29.24697030924795, 36.63290490648417], [30.51611605466937, 35.182951208422544], [32.66550041238105, 35.29989354908048], [33.614583723213144, 36.85866401664056], [32.38535877695387, 38.32419732667995], [30.164431431468948, 38.21530146274488]]]}}, {"type": "Feature", "properties": {"bin": "8240a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[114.39269545860655, 29.812719772921096], [114.62653789211869, 31.289486126374026], [113.19850617488318, 32.33603992952471], [111.51312837969918, 31.907056839717516], [111.28994571488548, 30.415400329702234], [112.74092235558842, 29.36723199815498], [114.39269545860655, 29.812719772921096]]]}}, {"type": "Feature", "properties": {"bin": "822d87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.91260199541162, 35.41856039141452], [35.941660647113025, 33.88647014000823], [37.042324688154004, 32.38747119932588], [39.06414125340515, 32.4108456811563], [40.047979648150125, 33.91381311229757], [38.99930032882582, 35.42233869616125], [36.91260199541162, 35.41856039141452]]]}}, {"type": "Feature", "properties": {"bin": "82640ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.50418580931292, 9.110882438715038], [94.63254033379145, 10.910676879872467], [93.10703794740307, 11.914265400633866], [91.464698892715, 11.11188905936001], [91.35430554042236, 9.316288774752767], [92.8681448111406, 8.318400590972054], [94.50418580931292, 9.110882438715038]]]}}, {"type": "Feature", "properties": {"bin": "824aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[136.22464605289488, 21.684143266682888], [135.91455001866788, 20.043634559104234], [137.3373585202837, 18.97657339005146], [139.07280839534985, 19.557547546884898], [139.39082224486035, 21.20084319435006], [137.96594879359822, 22.260837811885946], [136.22464605289488, 21.684143266682888]]]}}, {"type": "Feature", "properties": {"bin": "82091ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.3780751296870815, 65.7243888731199], [0.19793526839841227, 65.55006071551604], [-1.3335604888383246, 64.18977807614682], [1.104046136969399, 63.13895537587258], [4.012620898449943, 63.32706132801839], [4.694919398687951, 64.57085801287526], [3.3780751296870815, 65.7243888731199]]]}}, {"type": "Feature", "properties": {"bin": "820b5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[78.73547913225427, 68.76811442540235], [82.74318420812759, 67.95228117825242], [86.64520819657905, 68.6908704290193], [86.83977166360623, 70.36369489496148], [82.42617769197177, 71.28025266518428], [78.23354745446635, 70.41413518408432], [78.73547913225427, 68.76811442540235]]]}}, {"type": "Feature", "properties": {"bin": "824b17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.60089045882194, 27.692800358761183], [121.34751445935744, 26.20027606045547], [122.70153227964788, 25.384507970309517], [124.33485226874664, 26.075268367556504], [124.6029583375567, 27.584842018537593], [123.22320106559732, 28.38690170573753], [121.60089045882194, 27.692800358761183]]]}}, {"type": "Feature", "properties": {"bin": "82418ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.54937000817873, 27.230124263966285], [115.7845997721203, 28.744357248622574], [114.39269545860655, 29.812719772921096], [112.74092235558842, 29.36723199815498], [112.51532820378297, 27.835285494517798], [113.93133125983357, 26.766211545860724], [115.54937000817873, 27.230124263966285]]]}}, {"type": "Feature", "properties": {"bin": "821517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.95857252012345, 54.96683820192358], [112.4637075001006, 53.64397235107222], [115.20286044245609, 53.570773610541714], [116.66573457527616, 54.82981575523819], [115.27087449964384, 56.233125655533925], [112.28905213793897, 56.296364046092975], [110.95857252012345, 54.96683820192358]]]}}, {"type": "Feature", "properties": {"bin": "823fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.466035435670609, 32.432807380976996], [10.916109798180177, 30.722958921689], [12.325939409346134, 29.455163805425236], [14.301516597265826, 29.87332454274621], [14.912927723127964, 31.582701869496166], [13.488580338198274, 32.875015477254706], [11.466035435670609, 32.432807380976996]]]}}, {"type": "Feature", "properties": {"bin": "8225a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[87.25627656786097, 47.36960130489782], [87.10609716373756, 45.599757376967865], [89.13896666467946, 44.6199664965884], [91.34751423943914, 45.35866706037272], [91.63272345253448, 47.10036834076303], [89.57750692713387, 48.13292401292239], [87.25627656786097, 47.36960130489782]]]}}, {"type": "Feature", "properties": {"bin": "8262e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.27666531426065, 9.06433075731333], [59.95886621545895, 7.824187579675636], [61.06019786174172, 7.076905935478182], [62.48690644380466, 7.59726848079817], [62.436843475506734, 9.10412223692272], [61.315435771664646, 9.83036925628956], [60.27666531426065, 9.06433075731333]]]}}, {"type": "Feature", "properties": {"bin": "82759ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.568206405653283, 2.080813975286279], [-9.617165475873394, 3.0186960049772624], [-9.897444859098838, 4.500197653762574], [-11.136986715149366, 5.079855936610059], [-12.118591679205212, 4.156901458392333], [-11.83018697112708, 2.6389327412012906], [-10.568206405653283, 2.080813975286279]]]}}, {"type": "Feature", "properties": {"bin": "822cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.114435741183804, 36.40491874790023], [48.961996849584274, 34.86417711463799], [50.94793753068601, 34.58855769689513], [52.18260405296, 35.86272515976388], [51.384593691970856, 37.45345193003371], [49.298709077634776, 37.71979867392927], [48.114435741183804, 36.40491874790023]]]}}, {"type": "Feature", "properties": {"bin": "8200b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.04817195975174, 73.26746640072778], [72.49248675157796, 72.74554847287561], [76.91085753381934, 73.75952697882985], [76.01514948533608, 75.45226049628377], [69.56066224687223, 76.04791578897343], [65.1127740719562, 74.86647343694074], [67.04817195975174, 73.26746640072778]]]}}, {"type": "Feature", "properties": {"bin": "826a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[25.58678516686, -1.2704435740827698], [26.266522986333136, 0.31800255716503595], [25.2124542219397, 1.6525082699307319], [23.49024961634333, 1.416746256049863], [22.800771734612553, -0.1522769274806444], [23.84234319845428, -1.5050626141201613], [25.58678516686, -1.2704435740827698]]]}}, {"type": "Feature", "properties": {"bin": "825557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.606696673672944, 20.791091351545326], [-10.188114712806701, 19.98422878146785], [-10.297990218925223, 18.358193362939268], [-8.877801145205453, 17.56154923764815], [-7.344548353615849, 18.349455296769857], [-7.184232148529101, 19.95235527007237], [-8.606696673672944, 20.791091351545326]]]}}, {"type": "Feature", "properties": {"bin": "821847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.243656268908248, 48.54730149141871], [-5.466444723378631, 48.005644741446424], [-5.733942237025079, 46.36036995957606], [-3.870647496695551, 45.286766294393956], [-1.75279807155882, 45.82891715662811], [-1.3966081625912776, 47.44351195977147], [-3.243656268908248, 48.54730149141871]]]}}, {"type": "Feature", "properties": {"bin": "8224b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[92.34774404572354, 39.17381250225141], [92.08030070925017, 37.477432899333614], [93.72196326957709, 36.514136322787905], [95.63281653887009, 37.19550640207011], [95.99173309005461, 38.8563670152069], [94.35106490572109, 39.87215919638372], [92.34774404572354, 39.17381250225141]]]}}, {"type": "Feature", "properties": {"bin": "823db7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.9316241024183, 26.106099225137925], [73.15619151319507, 24.54036980515402], [74.83615769090727, 23.930617985962513], [76.33925990353578, 24.849585303433958], [76.18979804789883, 26.422656615860415], [74.4614825094673, 27.070669126207168], [72.9316241024183, 26.106099225137925]]]}}, {"type": "Feature", "properties": {"bin": "825867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.318899720760903, 18.44266884449724], [11.820444634223307, 16.809900692332402], [13.057677308471957, 15.541998660465921], [14.804131284942924, 15.87459897267477], [15.349597441138949, 17.499912999574217], [14.102532174458808, 18.80074376624017], [12.318899720760903, 18.44266884449724]]]}}, {"type": "Feature", "properties": {"bin": "8224dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.96804858978469, 37.37997452587736], [105.3972850718518, 35.852906633559115], [106.96772054606103, 34.90299087075072], [108.72615837117118, 35.36191434918376], [108.94306493103144, 36.761183813651066], [107.78678017434974, 37.830134700031124], [105.96804858978469, 37.37997452587736]]]}}, {"type": "Feature", "properties": {"bin": "82686ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[125.2087603087871, 12.77134857878], [124.94403226885608, 11.0525563750004], [126.30247976626464, 9.989152324667797], [127.945831592227, 10.651087081515891], [128.2235738321257, 12.387611570633615], [126.84521080631441, 13.444723989353694], [125.2087603087871, 12.77134857878]]]}}, {"type": "Feature", "properties": {"bin": "8204cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[167.43436333127184, 69.00059392160927], [165.75592867141455, 67.34111800954337], [168.55043105619387, 65.99539400975621], [172.86137139869209, 66.19292316051032], [174.94683633255818, 67.75010398676802], [172.37072969029856, 69.21401673918528], [167.43436333127184, 69.00059392160927]]]}}, {"type": "Feature", "properties": {"bin": "8208f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.53544630840838, 63.80079265321215], [19.718783419633482, 62.910503878993765], [22.407228789344035, 63.469342287950894], [23.06001236063494, 64.97162850959091], [20.745683267270003, 65.89736287731276], [17.90900979606509, 65.28324062665737], [17.53544630840838, 63.80079265321215]]]}}, {"type": "Feature", "properties": {"bin": "822e27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[146.65234247438462, 35.83924212521621], [146.92289463541258, 37.53730949424657], [145.28854872940548, 38.56238280223075], [143.43958045241362, 37.868876909472185], [143.2524692645846, 36.19269249373678], [144.83132547405447, 35.18743046995052], [146.65234247438462, 35.83924212521621]]]}}, {"type": "Feature", "properties": {"bin": "824f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.76502089898054, 22.308782558481575], [161.29378455630064, 23.94529998788256], [159.95779566851195, 25.21826825334314], [158.10369371003847, 24.815427924853466], [157.6353447712508, 23.16966846117383], [158.95951267680462, 21.93515017649106], [160.76502089898054, 22.308782558481575]]]}}, {"type": "Feature", "properties": {"bin": "824b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.93365313479985, 20.678136595004702], [121.68154628798078, 19.062431348556302], [123.02355515221002, 18.127070267319834], [124.64261620566455, 18.82008610796306], [124.90903454276271, 20.45624528545013], [123.54226869469618, 21.379153198161493], [121.93365313479985, 20.678136595004702]]]}}, {"type": "Feature", "properties": {"bin": "827227fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.49036539975242, 8.604422032304724], [135.18824101316045, 6.831302060536393], [136.58431778032, 5.683541004203646], [138.28626164276986, 6.308249085468562], [138.59644693629747, 8.08264076991779], [137.1970727246292, 9.23145267029969], [135.49036539975242, 8.604422032304724]]]}}, {"type": "Feature", "properties": {"bin": "82081ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.823918552178451, 63.96072746373739], [15.046206854523549, 63.166721052064105], [17.53544630840838, 63.80079265321215], [17.90900979606509, 65.28324062665737], [15.523290332812728, 66.10348492641157], [12.930936799121039, 65.4132279482162], [12.823918552178451, 63.96072746373739]]]}}, {"type": "Feature", "properties": {"bin": "821f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.065692337418177, 55.394878703545615], [9.374530816292092, 53.97551370235173], [11.245170492278879, 53.032039732054415], [13.83952860923243, 53.487245161236885], [14.640206584543732, 54.90218190493178], [12.739822958959078, 55.86732673911362], [10.065692337418177, 55.394878703545615]]]}}, {"type": "Feature", "properties": {"bin": "8221affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.378850556101796, 45.30212500838954], [61.05621013274095, 43.5803991056681], [63.41674171645749, 43.09858640289575], [65.22130920269487, 44.32198977767069], [64.65953965157253, 46.076794233472874], [62.17279845489216, 46.5762082148919], [60.378850556101796, 45.30212500838954]]]}}, {"type": "Feature", "properties": {"bin": "821747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.41527589688766, 63.043363766660455], [167.980235415568, 61.46502794966551], [170.1048501502336, 60.16030646543866], [173.5418871720351, 60.33926345879477], [175.21460124064004, 61.82981680247971], [173.24035877247292, 63.22999151822572], [169.41527589688766, 63.043363766660455]]]}}, {"type": "Feature", "properties": {"bin": "8200affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[59.68414094133996, 78.0257182142187], [67.49836484524056, 77.69766097950897], [73.39705810942445, 78.85677806035595], [71.37938677201048, 80.55688121048655], [61.133683778117444, 80.94451687165039], [55.750771038582066, 79.5583306312711], [59.68414094133996, 78.0257182142187]]]}}, {"type": "Feature", "properties": {"bin": "823e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.012036761826856, 27.565395679553497], [18.351304577591986, 25.86678026136113], [19.644313864382354, 24.500416440761107], [21.594245020211527, 24.805307095623743], [22.301989716589436, 26.489394896864702], [21.01449990094078, 27.88358213061027], [19.012036761826856, 27.565395679553497]]]}}, {"type": "Feature", "properties": {"bin": "820907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.19793526839841227, 65.55006071551604], [-1.480777203240806, 66.69937069330089], [-4.87869840057966, 66.4250610395259], [-6.2206596092963595, 64.98197678166125], [-4.378545450893133, 63.89675172018521], [-1.333560488838328, 64.18977807614685], [0.19793526839841227, 65.55006071551604]]]}}, {"type": "Feature", "properties": {"bin": "8252c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.10984721920367, 13.570617518145399], [44.2746019271254, 12.16383721889472], [45.01262895906966, 10.887602149584175], [46.5456352988265, 11.002751279113436], [47.37665086649757, 12.37014959176328], [46.67969818348164, 13.661152167148341], [45.10984721920367, 13.570617518145399]]]}}, {"type": "Feature", "properties": {"bin": "822e47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[136.7565422512042, 36.59487743965532], [136.78802846843914, 38.21187841917355], [135.20082666531997, 39.03887536193396], [133.65219883512057, 38.242875714117595], [133.69052161245472, 36.66148739456522], [135.20918093571038, 35.84028351391193], [136.7565422512042, 36.59487743965532]]]}}, {"type": "Feature", "properties": {"bin": "827657fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[162.6268528036299, 0.8227221314452013], [162.3206084434784, -0.7857626165462422], [163.42128719637319, -1.8107840761768255], [164.7984037181348, -1.2395596636497244], [165.09786169703642, 0.334638096995223], [164.02719182166203, 1.3716238421937323], [162.6268528036299, 0.8227221314452013]]]}}, {"type": "Feature", "properties": {"bin": "822e5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.20082666531997, 39.03887536193396], [135.19635364043003, 40.64129560736251], [133.57012610119784, 41.41044705193119], [132.0243151515366, 40.57519011760162], [132.10012408810192, 39.01017757707544], [133.65219883512057, 38.242875714117595], [135.20082666531997, 39.03887536193396]]]}}, {"type": "Feature", "properties": {"bin": "82089ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.23591300367038, 59.225870067678485], [22.14428198422671, 58.2092207165899], [25.08272232670786, 58.40154487035269], [25.77412047958825, 59.91628668960882], [23.838471181226858, 60.96688976883668], [21.289181501450866, 60.46250989980112], [20.23591300367038, 59.225870067678485]]]}}, {"type": "Feature", "properties": {"bin": "825977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.367573705123171, 23.01114705036288], [4.976885601305341, 21.35446718195976], [6.279611709245232, 20.147736977484957], [7.99840503877189, 20.57032700832011], [8.443478079873218, 22.23328539196474], [7.115841917490329, 23.468040880271634], [5.367573705123171, 23.01114705036288]]]}}, {"type": "Feature", "properties": {"bin": "8238f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.2609468260311339, 29.300374659234986], [-0.051693302165059865, 27.635200550312817], [1.319543174072057, 26.517456272921628], [3.040960396182133, 27.045710466174707], [3.414444565234508, 28.728328202600174], [2.005719972259752, 29.86576695279883], [0.2609468260311339, 29.300374659234986]]]}}, {"type": "Feature", "properties": {"bin": "823eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.644313864382354, 24.500416440761107], [18.9912827255566, 22.815134716422165], [20.242990297561875, 21.4509882258132], [22.142677696755147, 21.743093508159046], [22.83929753527266, 23.411689797815992], [21.594245020211527, 24.805307095623743], [19.644313864382354, 24.500416440761107]]]}}, {"type": "Feature", "properties": {"bin": "824a1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.92909651550156, 22.458018873293096], [129.6401689057996, 20.83478770256814], [131.05091895530194, 19.835921608671914], [132.76405727253234, 20.470041905050355], [133.06438989314756, 22.10381705761048], [131.64056007611558, 23.093332059613815], [129.92909651550156, 22.458018873293096]]]}}, {"type": "Feature", "properties": {"bin": "824317fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.69556296388095, 27.27707945911761], [53.353615700397675, 25.80249846629109], [55.109961767811754, 25.430799341940986], [56.281432415587936, 26.530017983826685], [55.67093720068831, 28.045896161865954], [53.839019591851255, 28.421390646162198], [52.69556296388095, 27.27707945911761]]]}}, {"type": "Feature", "properties": {"bin": "821007fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.11654040176946, 60.11966819571557], [43.646892149119445, 58.72551867912345], [46.74849496607573, 58.74251100374587], [48.56036712288836, 60.17303439572082], [47.11935278178065, 61.622263126588365], [43.762445739128566, 61.58532338038746], [42.11654040176946, 60.11966819571557]]]}}, {"type": "Feature", "properties": {"bin": "82828ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.488313965403783, 1.3016140005051489], [13.190830888883605, 2.8025965889319755], [12.294352016976955, 4.039836103302269], [10.722777827285633, 3.789624991750129], [10.026444557704739, 2.318989904044636], [10.894897390645305, 1.0685158094781342], [12.488313965403783, 1.3016140005051489]]]}}, {"type": "Feature", "properties": {"bin": "822ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[142.3058437365082, 43.816094965537175], [142.48864639425716, 45.46875223300061], [140.67508861403263, 46.319768043789686], [138.75859387597603, 45.50779096126445], [138.67329382795646, 43.88349000410809], [140.40839998730652, 43.04217041557711], [142.3058437365082, 43.816094965537175]]]}}, {"type": "Feature", "properties": {"bin": "827af7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.30258805566046, 4.232719683025158], [45.79698851068121, 5.6648803895420095], [44.7454727368835, 6.909729644199502], [43.18177242410844, 6.747200705712324], [42.660264793431104, 5.316028449437792], [43.729192388853946, 4.045894876233992], [45.30258805566046, 4.232719683025158]]]}}, {"type": "Feature", "properties": {"bin": "826347fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[64.62707830414878, 12.225768873349054], [64.58595311138365, 13.77027643062988], [63.39693468700971, 14.462720904610496], [62.2836595308798, 13.628822133519611], [62.33522736712032, 12.121992847315758], [63.489942514144396, 11.411784482866715], [64.62707830414878, 12.225768873349054]]]}}, {"type": "Feature", "properties": {"bin": "825357fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.552414509990655, 24.919828712557948], [44.62177586579161, 23.46115311638336], [45.43285443582601, 22.01366067406798], [47.124580725886155, 22.01870306147376], [48.049054859825034, 23.440387634067395], [47.28903850351511, 24.8934713608716], [45.552414509990655, 24.919828712557948]]]}}, {"type": "Feature", "properties": {"bin": "8214dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.66930986909085, 50.18780949546236], [138.9432025290707, 48.72622613945607], [140.81932027711574, 47.94353494620577], [142.88468797852207, 48.741413060101365], [143.09965372237681, 50.356260681051715], [140.77992640805883, 51.04080671896112], [138.66930986909085, 50.18780949546236]]]}}, {"type": "Feature", "properties": {"bin": "826b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.77031774923299, 3.777844681142865], [20.458518123241934, 5.284276360502933], [19.479242065131626, 6.522352266708326], [17.83096086140017, 6.271911037888096], [17.14051423245727, 4.790542387748742], [18.099816440714942, 3.5346227999232087], [19.77031774923299, 3.777844681142865]]]}}, {"type": "Feature", "properties": {"bin": "822d17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.362059364808566, 39.8539165470676], [32.38535877695387, 38.32419732667995], [33.614583723213144, 36.85866401664056], [35.77375792162134, 36.910956734615105], [36.77434984540357, 38.415715270613546], [35.59461531057751, 39.89310904128938], [33.362059364808566, 39.8539165470676]]]}}, {"type": "Feature", "properties": {"bin": "8208d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.407228789344035, 63.469342287950894], [24.517172437523502, 62.478113451924735], [27.374489291363883, 62.947784556935986], [28.3067719754889, 64.45848101070418], [26.10723575383044, 65.49332555077642], [23.06001236063494, 64.97162850959091], [22.407228789344035, 63.469342287950894]]]}}, {"type": "Feature", "properties": {"bin": "822427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[98.62845319272265, 48.93666974733418], [98.1210260563531, 47.25866952312831], [99.8598622140046, 46.12521849972981], [102.07881099524842, 46.6227723170158], [102.69185797433065, 48.25372814019403], [100.9858741549673, 49.43462842675377], [98.62845319272265, 48.93666974733418]]]}}, {"type": "Feature", "properties": {"bin": "821457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[134.38455985649642, 56.96495838789854], [134.93107854084903, 55.374570052551114], [137.68629446846433, 54.77404577466255], [140.08804710824847, 55.704258487418656], [139.80810700632685, 57.32190497999963], [136.85291509673226, 57.98586473288748], [134.38455985649642, 56.96495838789854]]]}}, {"type": "Feature", "properties": {"bin": "825aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[178.50677685170746, 16.107726060451032], [179.28917726838105, 17.583962013973927], [178.30085270634834, 18.91048376640709], [176.4996932644643, 18.72720645694535], [175.74454287153904, 17.214910773697707], [176.7615924622716, 15.921990549108155], [178.50677685170746, 16.107726060451032]]]}}, {"type": "Feature", "properties": {"bin": "82644ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[86.55834513437881, 6.904824352635797], [86.63976451876434, 8.680323309063246], [85.14560470448076, 9.63913396151915], [83.59315755505945, 8.820602456737168], [83.52973698730892, 7.062083323582682], [85.00083019702879, 6.104776389470908], [86.55834513437881, 6.904824352635797]]]}}, {"type": "Feature", "properties": {"bin": "826b2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[23.82946157118848, 17.34988167023336], [23.154889561254432, 15.73745539193679], [24.28649610610062, 14.399089813811573], [26.079675952993234, 14.642208133911156], [26.786746420552426, 16.22986331457982], [25.669601564150682, 17.599439710621716], [23.82946157118848, 17.34988167023336]]]}}, {"type": "Feature", "properties": {"bin": "823ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[84.12785404391501, 22.732955478362385], [84.1983104329971, 24.405915505460474], [82.64497372733143, 25.201987105911897], [81.05012166179785, 24.335201017412075], [80.99921401034759, 22.680573068726023], [82.52375453867506, 21.874050409008092], [84.12785404391501, 22.732955478362385]]]}}, {"type": "Feature", "properties": {"bin": "82159ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.78547854820384, 49.545216263040565], [119.80980344758385, 48.23347703514972], [122.15259506819683, 47.9979628093854], [123.63555347720718, 49.0620879945458], [122.72871133888303, 50.43253395258777], [120.21325954247637, 50.680828832173816], [118.78547854820384, 49.545216263040565]]]}}, {"type": "Feature", "properties": {"bin": "82169ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.7405163800123, 44.39013119290587], [161.4364120189841, 46.067009122947894], [159.67224772986341, 47.27091436938611], [157.23186959426974, 46.76731330635256], [156.6409775025345, 45.086614301383], [158.38289640953528, 43.91230401757141], [160.7405163800123, 44.39013119290587]]]}}, {"type": "Feature", "properties": {"bin": "826a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[35.51221775689079, 3.0227099043793886], [36.109961522727325, 4.536384818354094], [35.03167639020317, 5.820413131280575], [33.3512924927678, 5.613739506022279], [32.73302899458755, 4.110029868021471], [33.814945033944454, 2.80265994839348], [35.51221775689079, 3.0227099043793886]]]}}, {"type": "Feature", "properties": {"bin": "821757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[164.42517501351887, 61.13938367748127], [163.34704729720406, 59.53641309763331], [165.548788622648, 58.32928734323274], [168.77277002474725, 58.62952020387534], [170.1048501502336, 60.16030646543866], [167.980235415568, 61.46502794966551], [164.42517501351887, 61.13938367748127]]]}}, {"type": "Feature", "properties": {"bin": "827737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[149.7748737561887, 8.701739974658006], [149.4500778346505, 6.9737200110234], [150.76474122447317, 5.81388917924783], [152.38512910779167, 6.378336772450324], [152.70919576787776, 8.086549126803146], [151.41404176583495, 9.250322178378966], [149.7748737561887, 8.701739974658006]]]}}, {"type": "Feature", "properties": {"bin": "823257fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[163.48728952578702, 35.410811261589316], [164.16800602211273, 37.123942760722066], [162.64003640527375, 38.44296641219322], [160.4365789673928, 38.01466353048682], [159.83482553470856, 36.29182480062296], [161.35533473313333, 35.006175018250936], [163.48728952578702, 35.410811261589316]]]}}, {"type": "Feature", "properties": {"bin": "82406ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.4285180098119, 22.021169717198628], [100.59536245945822, 23.721461901127963], [99.02910120926438, 24.7119281057643], [97.29754054563347, 24.001033222705775], [97.14850212623087, 22.297036352375546], [98.71288845520314, 21.307114453591154], [100.4285180098119, 22.021169717198628]]]}}, {"type": "Feature", "properties": {"bin": "821477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.59502952582227, 59.102261478822314], [131.37779976641568, 57.49651172820108], [134.38455985649642, 56.96495838789854], [136.85291509673226, 57.98586473288748], [136.3645533924403, 59.63246619231702], [133.1014860426898, 60.2211290965602], [130.59502952582227, 59.102261478822314]]]}}, {"type": "Feature", "properties": {"bin": "827e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[177.20820922631214, 2.213839096714813], [177.86104159764693, 3.4124184184161725], [176.9973029726353, 4.445183384041467], [175.46041201203371, 4.248592317017834], [174.82903701594842, 3.022067879890788], [175.7120324523446, 2.0200006444159904], [177.20820922631214, 2.213839096714813]]]}}, {"type": "Feature", "properties": {"bin": "826167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.18359204443267, -0.1662406078596011], [76.20338509444836, 1.4824169163632506], [74.85134577692807, 2.399389801338335], [73.510649552324, 1.6670215766999952], [73.50561443740312, 0.04617220772960591], [74.82676115190374, -0.8701881901666614], [76.18359204443267, -0.1662406078596011]]]}}, {"type": "Feature", "properties": {"bin": "82102ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.107502449716236, 62.93984681845669], [43.762445739128566, 61.58532338038746], [47.11935278178065, 61.622263126588365], [49.10342280169707, 63.03058585396605], [47.55624361633402, 64.44174640765343], [43.898420802285926, 64.38736055548591], [42.107502449716236, 62.93984681845669]]]}}, {"type": "Feature", "properties": {"bin": "8282a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.274266009263762, -2.6322676133862983], [15.988623552785217, -1.0732871092626444], [15.037915717292355, 0.24461504240036508], [13.398514840417468, 0.01580312664861367], [12.687382865825958, -1.51479749038197], [13.611699107391521, -2.8447525350379257], [15.274266009263762, -2.6322676133862983]]]}}, {"type": "Feature", "properties": {"bin": "821157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.881166549455905, 64.02384191465175], [38.7414677057795, 62.771654769968045], [42.107502449716236, 62.93984681845669], [43.898420802285926, 64.38736055548591], [42.09680470695681, 65.69740315059383], [38.42734195521613, 65.50068879026966], [36.881166549455905, 64.02384191465175]]]}}, {"type": "Feature", "properties": {"bin": "821ee7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[21.555105797612647, 46.34273814750756], [20.700525642136274, 44.79686404516598], [22.238176563447503, 43.517310640528756], [24.61498137158676, 43.76450954182124], [25.532272646604852, 45.29673751871178], [24.013383707015638, 46.5958851330782], [21.555105797612647, 46.34273814750756]]]}}, {"type": "Feature", "properties": {"bin": "82636ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.03356105469996, 12.31424293862071], [67.004149704953, 13.895664424175132], [65.76268883190508, 14.615138565636405], [64.58595311138365, 13.77027643062988], [64.62707830414878, 12.225768873349054], [65.83354849634385, 11.489543016752311], [67.03356105469996, 12.31424293862071]]]}}, {"type": "Feature", "properties": {"bin": "823867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.9780551779606474, 38.85056389706335], [5.507969569355888, 37.17634170043516], [7.029881378875401, 36.043675411373094], [9.054678245207672, 36.5678509319993], [9.598984700477283, 38.25143274146292], [8.045142114241346, 39.402136368971775], [5.9780551779606474, 38.85056389706335]]]}}, {"type": "Feature", "properties": {"bin": "827a2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[44.333676829074854, -3.1148956594505544], [44.85506183561191, -1.554248989221206], [43.765274364448, -0.24795614215303202], [42.1364186839953, -0.4801895435352829], [41.58665495463515, -2.043983130098265], [42.6936728783286, -3.3728285055965945], [44.333676829074854, -3.1148956594505544]]]}}, {"type": "Feature", "properties": {"bin": "82850ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.91238265131307, 0.8214484264912901], [60.57717342242232, -0.6308012313360579], [61.77021238711556, -1.5466127001194443], [63.3061222521409, -0.9781516831001128], [63.615417278622196, 0.4935317012144658], [62.41542918704237, 1.3777427146043637], [60.91238265131307, 0.8214484264912901]]]}}, {"type": "Feature", "properties": {"bin": "8252f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.72289931159838, 14.799802193355099], [41.88700707526729, 13.353825437268569], [42.68269691095181, 12.044355607055847], [44.2746019271254, 12.16383721889472], [45.10984721920367, 13.570617518145399], [44.354803391598516, 14.896546144002576], [42.72289931159838, 14.799802193355099]]]}}, {"type": "Feature", "properties": {"bin": "8238dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.413328471156264, 25.876899790610704], [4.030548380417124, 24.203144761743964], [5.367573705123171, 23.01114705036288], [7.115841917490329, 23.468040880271634], [7.556100605723162, 25.1510932676285], [6.19103424186027, 26.368584569326593], [4.413328471156264, 25.876899790610704]]]}}, {"type": "Feature", "properties": {"bin": "82401ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[109.3791828560668, 28.384824057301795], [109.59299100020664, 29.931689194227175], [108.08867376396773, 30.953536939110023], [106.35525291371638, 30.428474901748064], [106.15534881401967, 28.8697633389869], [107.67443627896722, 27.847500145901975], [109.3791828560668, 28.384824057301795]]]}}, {"type": "Feature", "properties": {"bin": "82114ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.08394372307629, 68.38209527813017], [44.06075357873934, 67.12037102879738], [48.07845962204306, 67.18917865651584], [50.52420090534295, 68.52987901066768], [48.71358294536646, 69.8545098637882], [44.25792686834893, 69.77487316361321], [42.08394372307629, 68.38209527813017]]]}}, {"type": "Feature", "properties": {"bin": "822f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.32134132470674, 32.53130475240214], [151.69314222141958, 34.24156093178744], [150.12720600888105, 35.37477070109116], [148.2306899338896, 34.76967367165591], [147.938574229656, 33.072200757017214], [149.4630391096146, 31.966206554283033], [151.32134132470674, 32.53130475240214]]]}}, {"type": "Feature", "properties": {"bin": "824e4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[139.39082224486035, 21.20084319435006], [139.07280839534985, 19.557547546884898], [140.4887905517993, 18.461450275109275], [142.21971416679307, 19.015324066179012], [142.54366142733994, 20.657405597914543], [141.13125685853723, 21.747289135211766], [139.39082224486035, 21.20084319435006]]]}}, {"type": "Feature", "properties": {"bin": "82388ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.708865748930489, 27.07368875784343], [-1.976396669394251, 25.434098403334417], [-0.6439644283421987, 24.336012636497507], [0.9946771925498421, 24.858335834449555], [1.319543174072057, 26.517456272921628], [-0.051693302165059865, 27.635200550312817], [-1.708865748930489, 27.07368875784343]]]}}, {"type": "Feature", "properties": {"bin": "8272effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[143.8075692701753, 1.6816507854608131], [143.49043326364475, -0.08034191858740049], [144.84594493934435, -1.2176594213674992], [146.5085522862808, -0.6018082787679989], [146.82860631815936, 1.1464705664333998], [145.48360433376578, 2.2929167967014186], [143.8075692701753, 1.6816507854608131]]]}}, {"type": "Feature", "properties": {"bin": "826357fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[62.33522736712032, 12.121992847315758], [62.2836595308798, 13.628822133519611], [60.792006840230606, 14.047557933421603], [59.732575088573185, 13.216340916028171], [60.156825413339405, 12.00581696958599], [61.259926898356724, 11.32048294458799], [62.33522736712032, 12.121992847315758]]]}}, {"type": "Feature", "properties": {"bin": "828507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.27151982812965, 1.1400116362854769], [57.913121185178866, -0.2902799639423976], [59.06013087670413, -1.191604237632985], [60.57717342242232, -0.6308012313360579], [60.91238265131307, 0.8214484264912901], [59.75448759681556, 1.6912650463504575], [58.27151982812965, 1.1400116362854769]]]}}, {"type": "Feature", "properties": {"bin": "82329ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[176.0202291440094, 43.16654858963044], [177.05849152737355, 44.74014716066806], [175.6209968167824, 46.180014657090155], [173.09664563720216, 46.019009131142205], [172.12125914326512, 44.41812685451786], [173.60281879844388, 43.00525323266232], [176.0202291440094, 43.16654858963044]]]}}, {"type": "Feature", "properties": {"bin": "825837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.302842809205857, 16.098688642959495], [1.9905382774544373, 14.547282830266617], [3.2085973421006972, 13.394482127990228], [4.765825070146594, 13.763786258241295], [5.125946880545182, 15.32195477253705], [3.881187194444415, 16.504758055404427], [2.302842809205857, 16.098688642959495]]]}}, {"type": "Feature", "properties": {"bin": "822e0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[141.80965654881365, 38.82570130635364], [141.96698272199194, 40.49175081410267], [140.2848767565762, 41.39362200086838], [138.51501760262528, 40.6175014098157], [138.44146242552776, 38.981099958902064], [140.0551792737878, 38.09066616899645], [141.80965654881365, 38.82570130635364]]]}}, {"type": "Feature", "properties": {"bin": "821f77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.275235951757786, 56.63295271905083], [17.3622931946247, 55.27814416771983], [19.18933345712404, 54.22465218206264], [21.92401744131319, 54.501997626904114], [22.9310531198817, 55.84256115863507], [21.114076381480267, 56.92073410282902], [18.275235951757786, 56.63295271905083]]]}}, {"type": "Feature", "properties": {"bin": "823c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.09689870159305, 25.224826899844274], [89.19916679563575, 26.879844954692857], [87.60067945215376, 27.710049954719217], [85.92221757190828, 26.89198380918314], [85.84034302583474, 25.2483341258133], [87.41654076819316, 24.41090222753339], [89.09689870159305, 25.224826899844274]]]}}, {"type": "Feature", "properties": {"bin": "824797fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.2113698421699, 23.49281399825079], [-178.33138097945698, 25.03482258942216], [-179.35528176875243, 26.471571870702704], [178.69998567813343, 26.337191971375496], [177.84694371159145, 24.756909421354468], [178.9095345677144, 23.349452402918914], [-179.2113698421699, 23.49281399825079]]]}}, {"type": "Feature", "properties": {"bin": "823907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.464181984237864, 41.30855957084678], [-8.480681337677595, 40.62229995280742], [-8.657648270046371, 38.88943198318385], [-6.898505607651506, 37.87174338190937], [-4.963456118392565, 38.55271209108038], [-4.708227372662669, 40.25602599301953], [-6.464181984237864, 41.30855957084678]]]}}, {"type": "Feature", "properties": {"bin": "8210c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.287511544772464, 58.32413490541331], [57.31491513229715, 56.7156066264383], [60.3882768894146, 56.37618096484927], [62.64951657457579, 57.63340773273936], [61.80251305885726, 59.2821703348388], [58.50175484111734, 59.63485271107847], [56.287511544772464, 58.32413490541331]]]}}, {"type": "Feature", "properties": {"bin": "821e47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[28.492805600393982, 49.683115672532594], [27.469818592085993, 48.25805694866096], [28.956124606299714, 46.94058343091816], [31.42227212531316, 47.03191968899236], [32.49177831469452, 48.437418514652656], [31.05269470118688, 49.771324694536816], [28.492805600393982, 49.683115672532594]]]}}, {"type": "Feature", "properties": {"bin": "8253b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[31.724401834906267, 22.868396509655774], [30.914369969329773, 21.257376013592115], [31.984957764734823, 19.832653113527943], [33.834946882133956, 19.99603803596314], [34.66579876614435, 21.574964631685955], [33.62755515091634, 23.02249939316592], [31.724401834906267, 22.868396509655774]]]}}, {"type": "Feature", "properties": {"bin": "822167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.77321649810175, 57.1642071776145], [66.4315922192763, 55.46083475880433], [69.37012392067518, 54.88872985061824], [71.82075541602921, 55.989082166215454], [71.37222664322603, 57.71379607923372], [68.25632325438265, 58.31910366055611], [65.77321649810175, 57.1642071776145]]]}}, {"type": "Feature", "properties": {"bin": "8216e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.8994381824408, 50.313747345217955], [171.93792040161404, 51.846632291535], [170.19881569013583, 53.14363558473362], [167.38848052857205, 52.87589788099554], [166.44940896436609, 51.32191270194406], [168.21553000697907, 50.05604751537534], [170.8994381824408, 50.313747345217955]]]}}, {"type": "Feature", "properties": {"bin": "820a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[98.94029661707259, 56.733010543848636], [98.33035289215339, 55.09437877364378], [100.36397669089338, 53.90786102072088], [102.96687871335511, 54.313757154662134], [103.7209984233707, 55.90513251425149], [101.73727603534257, 57.13862734053574], [98.94029661707259, 56.733010543848636]]]}}, {"type": "Feature", "properties": {"bin": "825257fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.6958087502292, 17.797749012021796], [46.820519270069106, 16.390229325542492], [47.532283460277945, 15.051528661327882], [49.07466256244804, 15.110784431748657], [49.94141473440725, 16.47907022159895], [49.27506948076003, 17.82666678465199], [47.6958087502292, 17.797749012021796]]]}}, {"type": "Feature", "properties": {"bin": "82389ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.599887600906401, 24.72374401122294], [-3.8296846549188386, 23.088405139235885], [-2.4838650119479393, 22.197541386302376], [-0.9247075498574123, 22.70745271184857], [-0.6439644283421987, 24.336012636497507], [-1.976396669394251, 25.434098403334417], [-3.599887600906401, 24.72374401122294]]]}}, {"type": "Feature", "properties": {"bin": "821917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.53147949450864, 61.174834149098], [-16.37196241724275, 60.568693514800785], [-16.373725810250253, 59.10182986756048], [-13.710273826815675, 58.250184667728405], [-11.002062802068592, 58.832287456226396], [-10.828226222593615, 60.2883152943037], [-13.53147949450864, 61.174834149098]]]}}, {"type": "Feature", "properties": {"bin": "820987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.479068693190383, 60.92198553471913], [2.7675277915407426, 60.73321011494055], [2.1982160405751507, 59.38388648698395], [4.229785449235649, 58.25202580757624], [6.766112799653751, 58.44709614018101], [7.438464343438966, 59.76718020289121], [5.479068693190383, 60.92198553471913]]]}}, {"type": "Feature", "properties": {"bin": "824f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[161.5245646641215, 19.451782018023785], [162.0515932531476, 21.047030278267332], [160.76502089898054, 22.308782558481575], [158.95951267680462, 21.93515017649106], [158.48854935382522, 20.32820803003372], [159.76589437253912, 19.105773260348492], [161.5245646641215, 19.451782018023785]]]}}, {"type": "Feature", "properties": {"bin": "823c47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[96.14439740633347, 29.86478154800566], [96.29158273471053, 31.43852798992928], [94.66113729594255, 32.304336370743464], [92.89372681805165, 31.599338930269884], [92.76677847338061, 30.027796577918867], [94.38677552527119, 29.158478218353835], [96.14439740633347, 29.86478154800566]]]}}, {"type": "Feature", "properties": {"bin": "8204a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[131.6567141896898, 69.90083070937007], [132.75260324065235, 68.16135100453414], [137.20590752097192, 67.5438260188934], [141.08566639827546, 68.58325272067098], [140.70473211836827, 70.36653885229539], [135.69544064746276, 71.07580205245385], [131.6567141896898, 69.90083070937007]]]}}, {"type": "Feature", "properties": {"bin": "823547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.388588757180873, 39.21171319250576], [-18.348088280402102, 38.319242897076336], [-18.30545839105258, 36.529265222848295], [-16.39030672323071, 35.64371795856788], [-14.488597695229425, 36.51527932188329], [-14.444905143937865, 38.29227083697541], [-16.388588757180873, 39.21171319250576]]]}}, {"type": "Feature", "properties": {"bin": "820707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.329994131394352, 71.66753846280452], [-9.219808450023809, 72.85065322966908], [-13.917999921584816, 72.44381308655119], [-15.039943018127708, 70.86557109876065], [-12.010053527275545, 69.77863315577277], [-7.942563038336622, 70.17612110688736], [-6.329994131394352, 71.66753846280452]]]}}, {"type": "Feature", "properties": {"bin": "820047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.5071413604228857, 82.25118471750908], [7.587670703025287, 83.46691212211444], [1.3954549354975698, 85.00324300064894], [-17.9081638349315, 84.94207431820979], [-21.994683754892108, 83.41761096812805], [-12.81796911199405, 82.24829137508873], [-0.5071413604228857, 82.25118471750908]]]}}, {"type": "Feature", "properties": {"bin": "8241b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.34751445935744, 26.20027606045547], [121.60089045882194, 27.692800358761183], [120.25469952524372, 28.45296745837912], [118.71284963780683, 28.072874613292196], [118.47008668848471, 26.578843358468944], [119.76314753626568, 25.487092806329382], [121.34751445935744, 26.20027606045547]]]}}, {"type": "Feature", "properties": {"bin": "824397fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.115741772618634, 20.502391750749], [54.686969353738014, 19.14885864900799], [56.280567687978625, 18.763546954992826], [57.36252540062567, 19.723731266747272], [56.8323305882829, 21.112001099003493], [55.17740302761857, 21.50559574190196], [54.115741772618634, 20.502391750749]]]}}, {"type": "Feature", "properties": {"bin": "821f57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.18933345712404, 54.22465218206264], [18.2899634859423, 52.81905199947077], [20.036282030286998, 51.703743211634446], [22.673099856157986, 51.971886717716714], [23.6571061696422, 53.36390143732629], [21.92401744131319, 54.501997626904114], [19.18933345712404, 54.22465218206264]]]}}, {"type": "Feature", "properties": {"bin": "82380ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.2724179411878551, 34.323246605430036], [0.9223182397122923, 32.64740444391725], [2.368366542520371, 31.549004679734185], [4.2041739956726545, 32.11010693139568], [4.622001932112611, 33.80292479846324], [3.1364790338915944, 34.91820439114921], [1.2724179411878551, 34.323246605430036]]]}}, {"type": "Feature", "properties": {"bin": "822057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[78.19452609304278, 47.39431423045349], [78.33715502736786, 45.598111092042075], [80.58260122298051, 44.76550082241564], [82.75356546020507, 45.682875452008915], [82.75954230288217, 47.4712086139882], [80.44628044060018, 48.351892541115966], [78.19452609304278, 47.39431423045349]]]}}, {"type": "Feature", "properties": {"bin": "826b37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.3651793828161, 16.505947603561054], [17.776100963774223, 14.89324660357966], [18.954654656317093, 13.593711088140337], [20.720608455377985, 13.873962650663321], [21.349266453445622, 15.469203624780489], [20.173628717060144, 16.802152480851372], [18.3651793828161, 16.505947603561054]]]}}, {"type": "Feature", "properties": {"bin": "8216f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[167.29749747346997, 48.46458517314192], [168.21553000697907, 50.05604751537534], [166.44940896436609, 51.32191270194406], [163.75339688010732, 50.96414399817222], [162.94006150869623, 49.35709937680125], [164.71341365537654, 48.122513263439366], [167.29749747346997, 48.46458517314192]]]}}, {"type": "Feature", "properties": {"bin": "82211ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.491058342437576, 48.30613144690534], [62.17279845489216, 46.5762082148919], [64.65953965157253, 46.076794233472874], [66.59694488989409, 47.28813432166089], [66.0482164226795, 49.048729628706965], [63.423695260878816, 49.56862966981763], [61.491058342437576, 48.30613144690534]]]}}, {"type": "Feature", "properties": {"bin": "826367fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.76268883190508, 14.615138565636405], [65.72669976466062, 16.170389213771358], [64.17778356185815, 16.63099762114276], [63.01380713804956, 15.755902567695033], [63.39693468700971, 14.462720904610496], [64.58595311138365, 13.77027643062988], [65.76268883190508, 14.615138565636405]]]}}, {"type": "Feature", "properties": {"bin": "824f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.7733897026288, 12.194726726168001], [161.24546528264565, 13.65234929773841], [160.05405966115967, 14.829197692824996], [158.39887623551084, 14.50859692713606], [158.0775869832051, 12.905696315689463], [159.27914944469583, 11.747867145732824], [160.7733897026288, 12.194726726168001]]]}}, {"type": "Feature", "properties": {"bin": "823d87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.18979804789883, 26.422656615860415], [76.33925990353578, 24.849585303433958], [77.9880087460123, 24.203950018754842], [79.52829404873327, 25.090534000951443], [79.45519247371638, 26.664479844037594], [77.76521844292438, 27.352248189063147], [76.18979804789883, 26.422656615860415]]]}}, {"type": "Feature", "properties": {"bin": "8252affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.214949198605, 16.05027003530367], [39.38257824381035, 14.565741490172128], [40.237805515149034, 13.226920062397731], [41.88700707526729, 13.353825437268569], [42.72289931159838, 14.799802193355099], [41.90720337427504, 16.156940798733775], [40.214949198605, 16.05027003530367]]]}}, {"type": "Feature", "properties": {"bin": "82696ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.10960172007171, 18.354106406676436], [119.86772166666535, 16.721539545046728], [121.18304008131692, 15.773841771094993], [122.7670691389057, 16.471188839462545], [123.02355515221002, 18.127070267319834], [121.68154628798078, 19.062431348556302], [120.10960172007171, 18.354106406676436]]]}}, {"type": "Feature", "properties": {"bin": "824a67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[136.0384628262959, 28.895866824168877], [135.72524321560297, 27.39888951618621], [137.16494090958219, 26.427168274838404], [138.9207779394283, 26.9610997122479], [139.24220849524866, 28.461291233378834], [137.8000867626831, 29.424813936214647], [136.0384628262959, 28.895866824168877]]]}}, {"type": "Feature", "properties": {"bin": "823017fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.77659538235066, 36.6295982334593], [122.03727578685184, 37.880975054067605], [120.72800464134475, 38.91005447635118], [119.12425372100492, 38.693372652556576], [118.86929883406582, 37.429854484281094], [120.21182426996477, 36.394827059119145], [121.77659538235066, 36.6295982334593]]]}}, {"type": "Feature", "properties": {"bin": "8260c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[70.84287842070998, 14.861067793744484], [70.83329599408577, 16.486473655401973], [69.50460131149872, 17.21768249959498], [68.22161452817798, 16.340297875401987], [68.24505991929868, 14.749233784080905], [69.53795687362707, 14.001401643987554], [70.84287842070998, 14.861067793744484]]]}}, {"type": "Feature", "properties": {"bin": "8242affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[62.55564329673681, 22.239202597375066], [62.986388322986876, 20.789742605484555], [64.63727685201906, 20.314542861345263], [65.91535126756838, 21.26766364781169], [65.54246684831395, 22.74217083708576], [63.83212822637663, 23.239296274628625], [62.55564329673681, 22.239202597375066]]]}}, {"type": "Feature", "properties": {"bin": "826977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.10253911416987, 14.371280476489181], [118.33418363415802, 16.01318414279182], [117.05448467210091, 17.09117189341816], [115.51776838523509, 16.51791178254162], [115.29323700311619, 14.847088154391962], [116.59785067889807, 13.778428042849484], [118.10253911416987, 14.371280476489181]]]}}, {"type": "Feature", "properties": {"bin": "820407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.99941764332513, 75.7479715907543], [139.69232621284283, 73.95282347941101], [145.35156501110018, 73.1239839572126], [151.01446002876182, 73.95061154314652], [151.71752525574163, 75.74548799033728], [145.36215812121338, 76.73288469988287], [138.99941764332513, 75.7479715907543]]]}}, {"type": "Feature", "properties": {"bin": "8274b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.254244736494712, -0.4015944958931172], [-10.28431789008691, 0.5785308439935908], [-10.568206405653283, 2.080813975286279], [-11.83018697112708, 2.6389327412012906], [-12.83093803332417, 1.6714334957138457], [-12.538994180303641, 0.13278097466366448], [-11.254244736494712, -0.4015944958931172]]]}}, {"type": "Feature", "properties": {"bin": "825b57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[171.66411711457465, 8.608957629133746], [172.29426677728955, 9.978189493251355], [171.27261247453654, 11.151832208296353], [169.60718974764936, 10.919270348116088], [169.01054360162968, 9.523231012784185], [170.04455430948826, 8.386213835240993], [171.66411711457465, 8.608957629133746]]]}}, {"type": "Feature", "properties": {"bin": "82846ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[71.98914343785155, -0.5261504290462844], [71.77153067798884, -2.0375119147551466], [73.10403333957152, -2.9833434443845], [74.64313238266189, -2.3876427036362102], [74.82676115190372, -0.8701881901666917], [73.50561443740311, 0.046172207729570924], [71.98914343785155, -0.5261504290462844]]]}}, {"type": "Feature", "properties": {"bin": "8238c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.414444565234508, 28.728328202600174], [3.040960396182133, 27.045710466174707], [4.413328471156264, 25.876899790610704], [6.19103424186027, 26.368584569326593], [6.625253967039598, 28.063354881307642], [5.2213927424219095, 29.254882451681667], [3.414444565234508, 28.728328202600174]]]}}, {"type": "Feature", "properties": {"bin": "82731ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[132.39427407836698, 9.098385089611767], [132.10191338580537, 7.3316243852809855], [133.49441060685513, 6.19767652780886], [135.18824101316045, 6.831302060536393], [135.49036539975242, 8.604422032304724], [134.08929830029973, 9.737940188235644], [132.39427407836698, 9.098385089611767]]]}}, {"type": "Feature", "properties": {"bin": "8262d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[59.304121541917894, 5.2463359699483085], [58.9668320668832, 3.9090460692490985], [60.091005080534565, 3.086198656817789], [61.56192256345011, 3.6307171586980327], [61.876642221370076, 4.986310192743086], [60.7436772409406, 5.7794599611109305], [59.304121541917894, 5.2463359699483085]]]}}, {"type": "Feature", "properties": {"bin": "82074ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.741712912328655, 62.92039850236251], [-21.327940366858037, 63.81953151634645], [-24.371526115079995, 63.05448623848215], [-24.57076597472634, 61.43040476232069], [-22.03881468427071, 60.61568456080993], [-19.242629923160425, 61.34337802161005], [-18.741712912328655, 62.92039850236251]]]}}, {"type": "Feature", "properties": {"bin": "827427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.918873186254334, 4.784299416459714], [-5.0844501721547575, 3.5266350498097383], [-4.028797512714621, 2.526343960227314], [-2.7800646154740476, 2.7564971571432437], [-2.5790347646674925, 4.02002363858656], [-3.66239661559828, 5.048182136577349], [-4.918873186254334, 4.784299416459714]]]}}, {"type": "Feature", "properties": {"bin": "820497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[134.49509963996232, 64.70390366757042], [135.19855827382102, 62.99451548804967], [138.75470261025907, 62.33797031071915], [141.92596390263645, 63.31554391857456], [141.68557800967994, 65.05445391081987], [137.7971038133932, 65.79256118254496], [134.49509963996232, 64.70390366757042]]]}}, {"type": "Feature", "properties": {"bin": "82352ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.653899802599728, 44.48330412015416], [-22.72225847201933, 43.54372570815057], [-22.572395960792, 41.7803374460896], [-20.45496726007536, 40.95974163457924], [-18.43942903424458, 41.87483011005883], [-18.488435954379657, 43.63378030772461], [-20.653899802599728, 44.48330412015416]]]}}, {"type": "Feature", "properties": {"bin": "827627fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[156.47577755672762, 4.645743871293197], [156.15647962504326, 2.963781246024248], [157.37218087501466, 1.8539523467425794], [158.88094782469753, 2.4178522793667603], [159.19590710712498, 4.071039362249546], [158.0067643262748, 5.1890555165121155], [156.47577755672762, 4.645743871293197]]]}}, {"type": "Feature", "properties": {"bin": "820127fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.49264698397638, 69.30502245348691], [28.255869905697548, 69.84474595092315], [28.43305176155628, 71.24542771505138], [24.192747647371593, 72.09707420590918], [20.123253135395892, 71.43479800589196], [20.59724429383497, 70.05215151950888], [24.49264698397638, 69.30502245348691]]]}}, {"type": "Feature", "properties": {"bin": "82396ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.6967018032650176, 44.22123495578018], [3.2493495966936545, 42.60479220712697], [4.868332115011663, 41.58031489516634], [6.977840307728955, 42.158615693047416], [7.509948481928903, 43.78660935394501], [5.8484769011283495, 44.82546981220477], [3.6967018032650176, 44.22123495578018]]]}}, {"type": "Feature", "properties": {"bin": "825827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.2342944226787855, 18.09884525514369], [3.881187194444415, 16.504758055404427], [5.125946880545182, 15.32195477253705], [6.748859480852724, 15.703742282491802], [7.151749348230992, 17.30304938782084], [5.882262995803545, 18.516052400096086], [4.2342944226787855, 18.09884525514369]]]}}, {"type": "Feature", "properties": {"bin": "824f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.05405966115967, 14.829197692824996], [160.52670878987635, 16.34096879992408], [159.29356147729914, 17.54385270132609], [157.59815938618596, 17.194884389082347], [157.17698655565803, 15.672237488851499], [158.39887623551084, 14.50859692713606], [160.05405966115967, 14.829197692824996]]]}}, {"type": "Feature", "properties": {"bin": "820447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.0754175357948, 76.97172842874883], [170.77551513125033, 75.36394430473578], [174.47600984351607, 73.87447385977362], [-179.16643209941827, 73.8438182991874], [-175.237364648308, 75.2818109587326], [-178.08982214710505, 76.91732752261049], [174.0754175357948, 76.97172842874883]]]}}, {"type": "Feature", "properties": {"bin": "824b0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.54830212693183, 29.72243943237031], [126.2701956833224, 28.25199215981583], [127.67692566157774, 27.407024752708207], [129.38100221234527, 28.04399710423246], [129.6723152844791, 29.525998776620106], [128.2466625810585, 30.359872296843278], [126.54830212693183, 29.72243943237031]]]}}, {"type": "Feature", "properties": {"bin": "823307fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.7854718597239, 25.98594341469474], [175.60359465105446, 27.601356471103664], [174.42022403972663, 29.031544041383512], [172.3902149386298, 28.81214236551594], [171.61523767087667, 27.165606164914283], [172.82476186654435, 25.769382636267913], [174.7854718597239, 25.98594341469474]]]}}, {"type": "Feature", "properties": {"bin": "821177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[31.51753718529259, 64.87303661186431], [33.56299700893147, 63.72836272921309], [36.881166549455905, 64.02384191465175], [38.42734195521613, 65.50068879026966], [36.38224327730973, 66.70143616688567], [32.77511834605474, 66.36718727910217], [31.51753718529259, 64.87303661186431]]]}}, {"type": "Feature", "properties": {"bin": "826a0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.961298273611618, 5.181922624952887], [30.597118509067904, 6.672537737437504], [29.544342100438513, 7.923278733393154], [27.860067242233896, 7.705179736978773], [27.209856497243752, 6.2305095542402364], [28.257503389813063, 4.957754931407084], [29.961298273611618, 5.181922624952887]]]}}, {"type": "Feature", "properties": {"bin": "825487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.954127741243205, 15.558562398793757], [-22.428256968516997, 14.65689912671654], [-22.325551171498308, 13.08121926616189], [-20.800455883755063, 12.407406629546033], [-19.35286583316386, 13.275659539199737], [-19.40378332385685, 14.850204433632182], [-20.954127741243205, 15.558562398793757]]]}}, {"type": "Feature", "properties": {"bin": "82692ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.29323700311619, 14.847088154391962], [115.51776838523509, 16.51791178254162], [114.18047136836357, 17.598420680749204], [112.59630239596234, 16.99902076413141], [112.38073693010568, 15.302304732752043], [113.7398993154817, 14.230760809784227], [115.29323700311619, 14.847088154391962]]]}}, {"type": "Feature", "properties": {"bin": "826017fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.77098085188615, 12.450863670161919], [77.80091702536666, 14.16248410542495], [76.3698829554061, 15.001447764157028], [74.9417764292739, 14.138667489928544], [74.9284214007126, 12.455892014716785], [76.32684584963374, 11.607007909820153], [77.77098085188615, 12.450863670161919]]]}}, {"type": "Feature", "properties": {"bin": "822cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[43.015090910470946, 32.3633225939436], [42.02629399354079, 30.891357297171993], [42.95925686812808, 29.384441439126853], [44.825547083527006, 29.34568001756857], [45.81249162035951, 30.785265895218682], [44.93655293731638, 32.29560759507948], [43.015090910470946, 32.3633225939436]]]}}, {"type": "Feature", "properties": {"bin": "8214a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[122.72871133888303, 50.43253395258777], [123.63555347720718, 49.0620879945458], [126.0251597204442, 48.74474316949554], [127.67543225456808, 49.77509763796059], [126.91100588991843, 51.19812885594881], [124.34578282066302, 51.53954908797745], [122.72871133888303, 50.43253395258777]]]}}, {"type": "Feature", "properties": {"bin": "827407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.08445017215476, 3.5266350498097476], [-6.362866832530322, 2.8319782586108553], [-6.096063145794151, 1.403424289472709], [-4.654773810329626, 1.2146892558706845], [-4.028797512714643, 2.5263439602273188], [-5.08445017215476, 3.5266350498097476]]]}}, {"type": "Feature", "properties": {"bin": "821eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.509948481928903, 43.78660935394501], [6.977840307728955, 42.158615693047416], [8.584298678288794, 41.06115008945459], [10.754951467911924, 41.57505304930814], [11.36919284285479, 43.20897662532489], [9.73194113849839, 44.323804866147476], [7.509948481928903, 43.78660935394501]]]}}, {"type": "Feature", "properties": {"bin": "82632ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.36379976373644, 17.031649155402796], [58.836894289259575, 15.729584455219758], [60.364768957376114, 15.3170041034638], [61.47207394109067, 16.192032948400712], [61.04261658386713, 17.52139444419055], [59.460822441636594, 17.948925768853375], [58.36379976373644, 17.031649155402796]]]}}, {"type": "Feature", "properties": {"bin": "8258c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.549996118907211, 9.030648318176459], [9.136091517447662, 7.5645420515535395], [10.283180498778014, 6.402677248031407], [11.857917574873651, 6.673406154658983], [12.313097972320257, 8.132105663553832], [11.152828163016908, 9.328206600489576], [9.549996118907211, 9.030648318176459]]]}}, {"type": "Feature", "properties": {"bin": "823d07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.24793995663357, 34.00617617179965], [77.38738896562074, 32.30294528961664], [79.21323629204524, 31.57056178598028], [80.9474490076034, 32.49697262167634], [80.90372472240541, 34.1970472677487], [79.0299761242124, 34.97529051965556], [77.24793995663357, 34.00617617179965]]]}}, {"type": "Feature", "properties": {"bin": "826537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[106.41168295379833, 2.7703025791670135], [106.59636555398447, 4.5183323649792895], [105.17626894753136, 5.535001785345823], [103.56291680010384, 4.785999481381559], [103.39146400745685, 3.0214726756669807], [104.81975427624337, 2.0221015680241052], [106.41168295379833, 2.7703025791670135]]]}}, {"type": "Feature", "properties": {"bin": "82619ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.28977987881835, 15.003961607172462], [82.34724623125089, 16.74128168274286], [80.85006868486495, 17.603370083569754], [79.32492956451948, 16.7360927422416], [79.28566849623385, 15.021818547884736], [80.75351699236201, 14.151558182344273], [82.28977987881835, 15.003961607172462]]]}}, {"type": "Feature", "properties": {"bin": "82212ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[59.158974101083395, 53.41462714426706], [59.98872875182493, 51.72910040990983], [62.7422077313002, 51.29807419595648], [64.83324467627597, 52.53711433215488], [64.15861768734945, 54.25756495131088], [61.22985696003771, 54.70543053152282], [59.158974101083395, 53.41462714426706]]]}}, {"type": "Feature", "properties": {"bin": "8268a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.05714917127528, 2.0107251710711176], [115.27189592479805, 3.6847416805057356], [113.98513214459506, 4.672130986571936], [112.46327870022803, 3.964960250698961], [112.25689346735427, 2.2626982583635287], [113.56358004337042, 1.2958056988116708], [115.05714917127528, 2.0107251710711176]]]}}, {"type": "Feature", "properties": {"bin": "8274e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.049256734701922, 0.10005961824174014], [-4.906172120825075, -0.8499475652488149], [-4.287967547655411, -2.0200006444159904], [-2.791790773687883, -2.213839096714813], [-2.140858150351298, -0.853812715639454], [-2.7858575596409714, 0.30158663198554764], [-4.049256734701922, 0.10005961824174014]]]}}, {"type": "Feature", "properties": {"bin": "823e07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[21.73337025858129, 29.574118177068907], [21.01449990094078, 27.88358213061027], [22.301989716589436, 26.489394896864702], [24.29736104982788, 26.760382611860862], [25.060344831525917, 28.43312831311004], [23.78579890275512, 29.853045268777663], [21.73337025858129, 29.574118177068907]]]}}, {"type": "Feature", "properties": {"bin": "827a0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[43.765274364448, -0.24795614215303202], [44.28689428434573, 1.2749131152425968], [43.20753518813408, 2.5665184595080492], [41.59000566215462, 2.3586899160008166], [41.04096889205773, 0.8353130739527076], [42.1364186839953, -0.4801895435352829], [43.765274364448, -0.24795614215303202]]]}}, {"type": "Feature", "properties": {"bin": "827f5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.71568210991308, -0.5785308439936139], [169.43179359434671, -2.0808139752862758], [170.3828345241266, -3.018696004977285], [171.58722362008777, -2.467580053183613], [171.86268325121313, -1.0021068368703998], [170.94225359454225, -0.0513974048956663], [169.71568210991308, -0.5785308439936139]]]}}, {"type": "Feature", "properties": {"bin": "825247fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.16499778196583, 19.206256304953666], [49.27506948076003, 17.82666678465199], [49.94141473440725, 16.47907022159895], [51.45127123923521, 16.505445569112254], [52.32893111800051, 17.846581044052048], [51.70961363238334, 19.19911448214468], [50.16499778196583, 19.206256304953666]]]}}, {"type": "Feature", "properties": {"bin": "82771ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[153.66227784068005, 5.228228133654802], [153.34006641659448, 3.5205301653094883], [154.59893532317398, 2.392032208517474], [156.15647962504326, 2.963781246024248], [156.47577755672762, 4.645743871293197], [155.24082093844143, 5.7817423109599515], [153.66227784068005, 5.228228133654802]]]}}, {"type": "Feature", "properties": {"bin": "82168ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[163.91021485526235, 46.48282657751594], [164.71341365537654, 48.122513263439366], [162.94006150869623, 49.35709937680125], [160.3691531477627, 48.9203230493251], [159.67224772986341, 47.27091436938611], [161.4364120189841, 46.067009122947894], [163.91021485526235, 46.48282657751594]]]}}, {"type": "Feature", "properties": {"bin": "822e6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.21308771549002, 34.24906232192917], [135.20918093571038, 35.84028351391193], [133.69052161245472, 36.66148739456522], [132.24194904480953, 35.88584691859817], [132.30837745804203, 34.33115860097916], [133.76231271222147, 33.515468224336225], [135.21308771549002, 34.24906232192917]]]}}, {"type": "Feature", "properties": {"bin": "822517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.81939073139279, 49.88539972440518], [89.57750692713387, 48.13292401292239], [91.63272345253448, 47.10036834076303], [93.94422685987966, 47.76905576651892], [94.32732438995292, 49.48816960094339], [92.26208194138054, 50.57328654884073], [89.81939073139279, 49.88539972440518]]]}}, {"type": "Feature", "properties": {"bin": "8268c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.78261008307042, 2.873595573332414], [120.54280909818868, 1.175734152705668], [121.83635985200188, 0.07918007660184262], [123.39466778821806, 0.6800844776357411], [123.6482978951057, 2.3996946574232902], [122.32993687990546, 3.496828086580648], [120.78261008307042, 2.873595573332414]]]}}, {"type": "Feature", "properties": {"bin": "821637fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[156.27850722494347, 56.960700152391155], [155.7300738023138, 55.37052237191947], [157.9385187808353, 54.35096980290143], [160.72153823184556, 54.83293520328154], [161.509835263676, 56.379864127477], [159.2855655852143, 57.491104502796425], [156.27850722494347, 56.960700152391155]]]}}, {"type": "Feature", "properties": {"bin": "826317fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.365247125078064, 16.525688846315678], [53.50219111909585, 15.222611966472966], [54.058164847398544, 13.953007914922331], [55.4335256099196, 13.982870346391318], [56.280203869073134, 15.248522648953482], [55.76821613885496, 16.521023572370684], [54.365247125078064, 16.525688846315678]]]}}, {"type": "Feature", "properties": {"bin": "82415ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[106.87079927350013, 21.285626954004616], [107.06866932190532, 22.96503060101302], [105.56799984546763, 24.011140885133813], [103.8591385223553, 23.37444792118442], [103.67593139891986, 21.682421552590757], [105.18646517268341, 20.63927532656992], [106.87079927350013, 21.285626954004616]]]}}, {"type": "Feature", "properties": {"bin": "82108ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.540162201306025, 54.190111178839715], [51.649131930343415, 52.60893305131945], [54.429208603430844, 52.38455552021002], [56.286117998753014, 53.74532256646542], [55.29377410073728, 55.37449538416097], [52.31789068891417, 55.595312118491755], [50.540162201306025, 54.190111178839715]]]}}, {"type": "Feature", "properties": {"bin": "820147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.365838464252189, 75.38953678987379], [11.809078968821634, 76.36649220549111], [9.902098185657369, 77.83462153176359], [2.265817701531166, 78.19830644503146], [-1.9032774208520538, 77.03453024906975], [1.1119051223096887, 75.70225329818776], [7.365838464252189, 75.38953678987379]]]}}, {"type": "Feature", "properties": {"bin": "823187fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.89690793938219, 40.39961129392157], [113.146437480174, 38.96657364537776], [114.1399009973413, 37.86961635897513], [115.82820261154147, 38.17441086720652], [116.60797610224273, 39.554438522989486], [115.67300090962081, 40.681884550641115], [113.89690793938219, 40.39961129392157]]]}}, {"type": "Feature", "properties": {"bin": "820477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.6863038136288, 78.12011723529922], [158.72818840835586, 76.37437265305009], [163.84104377796746, 75.08989276640649], [170.77551513125033, 75.36394430473578], [174.0754175357948, 76.97172842874883], [169.34894071183456, 78.45416713706504], [160.6863038136288, 78.12011723529922]]]}}, {"type": "Feature", "properties": {"bin": "824a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[140.3539396171509, 25.95089187809455], [140.0313972001606, 24.399276926480983], [141.45463606547602, 23.346584520164132], [143.19556546628428, 23.853446687189194], [143.52349627910067, 25.40388372699502], [142.10563043867066, 26.449115168656718], [140.3539396171509, 25.95089187809455]]]}}, {"type": "Feature", "properties": {"bin": "823f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.49110741061133, 35.69002151151905], [19.750262775639456, 34.01378023726715], [21.130742457784212, 32.64713432614804], [23.24317489424228, 32.93445208208274], [24.035997744251496, 34.59685782123658], [22.666678189877594, 35.986217916354086], [20.49110741061133, 35.69002151151905]]]}}, {"type": "Feature", "properties": {"bin": "82601ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[74.9284214007126, 12.455892014716785], [74.9417764292739, 14.138667489928544], [73.55297085152047, 14.946524398275951], [72.18524935168644, 14.083697371265819], [72.18738034501416, 12.432614611561958], [73.54203721621735, 11.612728158942945], [74.9284214007126, 12.455892014716785]]]}}, {"type": "Feature", "properties": {"bin": "827adffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.12326826331898, 7.989894674599888], [42.644449865931726, 9.369199949120718], [41.86780918021332, 10.627353551154322], [40.259524098339604, 10.481935371507609], [39.467791014373496, 9.061221740145482], [40.528836927272636, 7.826037781496256], [42.12326826331898, 7.989894674599888]]]}}, {"type": "Feature", "properties": {"bin": "823f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.635425294848805, 33.667670279159765], [16.960447263888174, 31.969596942090178], [18.343416368196838, 30.62734805513404], [20.40081144749384, 30.959290246190747], [21.130742457784212, 32.64713432614804], [19.750262775639456, 34.01378023726715], [17.635425294848805, 33.667670279159765]]]}}, {"type": "Feature", "properties": {"bin": "8224cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.4262840018367, 39.34081394022977], [107.78678017434974, 37.830134700031124], [108.94306493103144, 36.761183813651066], [110.69461054882272, 37.16389648579593], [111.3792518372824, 38.62271186702195], [110.27034935303703, 39.73019055462676], [108.4262840018367, 39.34081394022977]]]}}, {"type": "Feature", "properties": {"bin": "8233a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.50951719255943, 29.501116823783033], [-178.57016455275917, 31.077570768078235], [-179.6752257727667, 32.56540793873001], [178.234123715357, 32.450032697743154], [177.32677150424374, 30.837099337926404], [178.4754053347224, 29.376139351007176], [-179.50951719255943, 29.501116823783033]]]}}, {"type": "Feature", "properties": {"bin": "8263a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.06050891387425, 15.19570553741754], [51.205095139424046, 13.866410050915466], [51.80448530162421, 12.603201514978352], [53.216307542439, 12.662171326825183], [54.058164847398544, 13.953007914922331], [53.50219111909585, 15.222611966472966], [52.06050891387425, 15.19570553741754]]]}}, {"type": "Feature", "properties": {"bin": "82191ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.002062802068592, 58.832287456226396], [-13.710273826815675, 58.250184667728405], [-13.79164665163863, 56.73632442836385], [-11.319329754507521, 55.8183598210179], [-8.740899630542526, 56.38258811071852], [-8.508655388670176, 57.88113060234581], [-11.002062802068592, 58.832287456226396]]]}}, {"type": "Feature", "properties": {"bin": "82602ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[74.88924352960129, 7.401735391994403], [74.90215741903009, 9.084512524970027], [73.53666117030511, 9.942291171608053], [72.19157243513001, 9.124946440062544], [72.19363429195393, 7.473863638092713], [73.52608565347126, 6.608494376194787], [74.88924352960129, 7.401735391994403]]]}}, {"type": "Feature", "properties": {"bin": "824e07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[153.37882905768976, 19.158694313351543], [153.73868120645855, 20.732468648166584], [152.40802678383096, 21.897410213007042], [150.7434524964445, 21.45201373033201], [150.41236097271002, 19.872388403264], [151.74062176627132, 18.72252928825543], [153.37882905768976, 19.158694313351543]]]}}, {"type": "Feature", "properties": {"bin": "825997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.8159567641288787, 12.988678177851225], [-4.0139984434704665, 11.545295975414751], [-2.8618420364343797, 10.477113125901752], [-1.4801680966156552, 10.825815435330894], [-1.2396306401223465, 12.28136891407245], [-2.423467945637673, 13.37666338895838], [-3.8159567641288787, 12.988678177851225]]]}}, {"type": "Feature", "properties": {"bin": "82742ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.7858575596409714, 0.30158663198554764], [-2.1427124286181316, 1.6469189364220407], [-2.7800646154740574, 2.756497157143231], [-4.028797512714643, 2.5263439602273188], [-4.654773810329625, 1.2146892558706701], [-4.049256734701897, 0.10005961824175445], [-2.7858575596409714, 0.30158663198554764]]]}}, {"type": "Feature", "properties": {"bin": "823e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.650416420075686, 20.459587405096432], [14.102532174458808, 18.80074376624017], [15.349597441138949, 17.499912999574217], [17.150771877544422, 17.826303096221643], [17.745279877629986, 19.47478423772583], [16.493141377842296, 20.807842018632034], [14.650416420075686, 20.459587405096432]]]}}, {"type": "Feature", "properties": {"bin": "820b07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.77433234939853, 62.7392877671267], [70.35457610671249, 61.09164631266698], [73.6610104954934, 60.44728627103266], [76.58230152610159, 61.408014182878055], [76.29366342143571, 63.06848464526779], [72.78571153526721, 63.75866240186588], [69.77433234939853, 62.7392877671267]]]}}, {"type": "Feature", "properties": {"bin": "82248ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[99.48560253142547, 38.44192904896944], [99.04532465399103, 36.82197095600332], [100.46459876748379, 35.81012163843614], [102.30325327948647, 36.36997600869449], [102.8141618960042, 37.94492833280539], [101.41893174539778, 39.00521941117573], [99.48560253142547, 38.44192904896944]]]}}, {"type": "Feature", "properties": {"bin": "820167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.614085386080716, 73.03193633522018], [9.200586264352173, 73.99667479266351], [7.365838464252189, 75.38953678987379], [1.1119051223096887, 75.70225329818776], [-2.2362007418151957, 74.58292826837449], [0.32561035194326043, 73.31022368544393], [5.614085386080716, 73.03193633522018]]]}}, {"type": "Feature", "properties": {"bin": "820897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.286200031965574, 58.92634320829851], [16.360929516312407, 57.62270326690216], [18.275235951757786, 56.63295271905083], [21.114076381480267, 56.92073410282902], [22.14428198422671, 58.2092207165899], [20.23591300367038, 59.225870067678485], [17.286200031965574, 58.92634320829851]]]}}, {"type": "Feature", "properties": {"bin": "823eeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[28.674736318778628, 24.127898543542], [27.892105129471588, 22.48820212614365], [29.024566154789984, 21.06526875783672], [30.914369969329773, 21.257376013592115], [31.724401834906267, 22.868396509655774], [30.619038481335384, 24.316034022932545], [28.674736318778628, 24.127898543542]]]}}, {"type": "Feature", "properties": {"bin": "82092ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.2300394753996964, 68.07965221714933], [-1.6665855042242044, 69.27385919190813], [-5.509600214148194, 69.01847753368425], [-6.976507251866831, 67.54932953851741], [-4.87869840057966, 66.4250610395259], [-1.480777203240806, 66.69937069330089], [0.2300394753996964, 68.07965221714933]]]}}, {"type": "Feature", "properties": {"bin": "82185ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.733942237025079, 46.36036995957606], [-7.898251979650981, 45.74021980445384], [-8.101589192291552, 44.0506310521871], [-6.231987967712124, 43.00917586374685], [-4.162634555966773, 43.62589881783318], [-3.870647496695551, 45.286766294393956], [-5.733942237025079, 46.36036995957606]]]}}, {"type": "Feature", "properties": {"bin": "8218f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.382340625694795, 49.60926939734891], [-18.65090558974211, 48.798472969414014], [-18.59397660055241, 47.0984334967306], [-16.384633284552198, 46.21899145965219], [-14.193176912970879, 47.01013597107083], [-14.134966126881988, 48.69906061825517], [-16.382340625694795, 49.60926939734891]]]}}, {"type": "Feature", "properties": {"bin": "8277b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[146.82860631815936, 1.1464705664333998], [146.5085522862808, -0.6018082787679989], [147.83927915793615, -1.72640067803271], [149.47546592858006, -1.1127120234847638], [149.796574950402, 0.6173843220866748], [148.48089503708562, 1.7522051627212882], [146.82860631815936, 1.1464705664333998]]]}}, {"type": "Feature", "properties": {"bin": "820597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.73004475015601, 67.76118275768229], [117.81292538828089, 66.20328559643201], [122.12506982744327, 66.00423213419595], [124.92363461540212, 67.34894014371963], [123.24899078013112, 69.0090275410405], [118.31111995950909, 69.22420719506948], [115.73004475015601, 67.76118275768229]]]}}, {"type": "Feature", "properties": {"bin": "825367fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.442126840774186, 29.196465114956844], [47.46270536882868, 27.790199242113836], [48.24020534516677, 26.311252759364823], [49.94122728254856, 26.239567196879804], [50.90854087737715, 27.611945758678903], [50.187903612796035, 29.08939213814527], [48.442126840774186, 29.196465114956844]]]}}, {"type": "Feature", "properties": {"bin": "824027fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.85106503769879, 23.06605987462275], [112.07042198299736, 24.683010654594447], [110.63318785440408, 25.75133231072355], [108.95787510757253, 25.20012297307433], [108.7503249292423, 23.56572371492086], [110.20576673111823, 22.49963239861477], [111.85106503769879, 23.06605987462275]]]}}, {"type": "Feature", "properties": {"bin": "8254effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.143209702643249, 11.34031170743392], [-13.574644025576724, 10.54021488943181], [-13.62057662207049, 9.082229599755195], [-12.279428517961106, 8.436299934019914], [-10.883976339217032, 9.211077490154926], [-10.794192696497728, 10.656349373399392], [-12.143209702643249, 11.34031170743392]]]}}, {"type": "Feature", "properties": {"bin": "825a37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[176.28993210653294, 11.794175727566111], [177.00782264778175, 13.21064685442285], [176.02550713619118, 14.45564596467375], [174.30162273709078, 14.248897205278324], [173.61230939327456, 12.799672631571633], [174.61682114576067, 11.589849622987263], [176.28993210653294, 11.794175727566111]]]}}, {"type": "Feature", "properties": {"bin": "82106ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.84764506924277, 68.44084132638578], [56.29150634861458, 67.01522257983876], [60.404056538620424, 66.76564107222977], [63.46143468820213, 67.91997908494295], [62.34534495650971, 69.39359648991828], [57.813757685916464, 69.66721014720999], [54.84764506924277, 68.44084132638578]]]}}, {"type": "Feature", "properties": {"bin": "824a6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[139.24220849524866, 28.461291233378834], [138.9207779394283, 26.9610997122479], [140.3539396171509, 25.95089187809455], [142.10563043867066, 26.449115168656718], [142.4332217566576, 27.949605976503882], [141.00348408991889, 28.95205537874151], [139.24220849524866, 28.461291233378834]]]}}, {"type": "Feature", "properties": {"bin": "823eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.915183885634578, 23.45043771532035], [13.36552238462891, 21.765875261344213], [14.650416420075686, 20.459587405096432], [16.493141377842296, 20.807842018632034], [17.09269537453719, 22.484493199126963], [15.800827802347936, 23.821410412145514], [13.915183885634578, 23.45043771532035]]]}}, {"type": "Feature", "properties": {"bin": "82162ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.548788622648, 58.32928734323274], [164.51165118071367, 56.78088091436665], [166.47834808999363, 55.60019520266177], [169.4263835423944, 55.879648706180184], [170.6673809942136, 57.35909783156442], [168.77277002474725, 58.62952020387534], [165.548788622648, 58.32928734323274]]]}}, {"type": "Feature", "properties": {"bin": "825a07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[173.61230939327456, 12.799672631571633], [174.30162273709078, 14.248897205278324], [173.2615911988161, 15.506224528838576], [171.51329055975825, 15.277141848586798], [170.85778972168902, 13.7977503711094], [171.91527610911328, 12.577354955958288], [173.61230939327456, 12.799672631571633]]]}}, {"type": "Feature", "properties": {"bin": "820baffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.77619664463793, 60.61768168029673], [79.89661787062164, 58.91829530833592], [82.805942165506, 58.04644635312622], [85.69687924786012, 58.822386405242526], [85.83576563890131, 60.51030677274728], [82.82707956961833, 61.436707955225096], [79.77619664463793, 60.61768168029673]]]}}, {"type": "Feature", "properties": {"bin": "826957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.59785067889807, 13.778428042849484], [116.37231939217895, 12.105101652283977], [117.6447082892738, 11.055777977021906], [119.1532492217661, 11.739863893210984], [119.38955872314627, 13.411731045894102], [118.10253911416987, 14.371280476489183], [116.59785067889807, 13.778428042849484]]]}}, {"type": "Feature", "properties": {"bin": "82158ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.12537216908741, 52.05007454011355], [120.21325954247637, 50.680828832173816], [122.72871133888303, 50.43253395258777], [124.34578282066302, 51.53954908797745], [123.39704081028525, 52.970948697716096], [120.68196111409804, 53.23404398800581], [119.12537216908741, 52.05007454011355]]]}}, {"type": "Feature", "properties": {"bin": "824007fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.63318785440408, 25.75133231072355], [110.84999971671714, 27.33619031326379], [109.3791828560668, 28.384824057301795], [107.67443627896722, 27.847500145901975], [107.47046185281282, 26.248068432517627], [108.95787510757253, 25.20012297307433], [110.63318785440408, 25.75133231072355]]]}}, {"type": "Feature", "properties": {"bin": "8216c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[171.53763676147145, 47.400881531964714], [172.54388707165992, 48.97081082594039], [170.8994381824408, 50.313747345217955], [168.21553000697907, 50.05604751537534], [167.29749747346997, 48.46458517314192], [168.97007444304862, 47.15173201826695], [171.53763676147145, 47.400881531964714]]]}}, {"type": "Feature", "properties": {"bin": "8210f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.15131422930827, 57.15637211465772], [52.31789068891417, 55.595312118491755], [55.29377410073728, 55.37449538416097], [57.31491513229715, 56.7156066264383], [56.287511544772464, 58.32413490541331], [53.08757610316587, 58.5446949232804], [51.15131422930827, 57.15637211465772]]]}}, {"type": "Feature", "properties": {"bin": "8240f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.08867376396773, 30.953536939110023], [108.29899073279826, 32.45742269990468], [106.76141020400117, 33.446090216821595], [105.00026806645934, 32.931449058427376], [104.80495247794913, 31.418214271205258], [106.35525291371638, 30.428474901748064], [108.08867376396773, 30.953536939110023]]]}}, {"type": "Feature", "properties": {"bin": "824b5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[132.84193684897602, 29.25093030861391], [132.53882899172459, 27.7600437382071], [133.97613863641322, 26.829336199539807], [135.72524321560297, 27.39888951618621], [136.0384628262959, 28.895866824168877], [134.59291640384927, 29.81766138412523], [132.84193684897602, 29.25093030861391]]]}}, {"type": "Feature", "properties": {"bin": "8242e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[66.51925125655274, 25.262825293452245], [66.88485857130675, 23.73015330041775], [68.59550918411969, 23.19553113199099], [69.99854548909617, 24.16575450852624], [69.70151458275944, 25.7178821848289], [67.93150725400422, 26.28136588426531], [66.51925125655274, 25.262825293452245]]]}}, {"type": "Feature", "properties": {"bin": "82538ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.48995486768825, 20.261490246968638], [36.64451476760323, 18.717376377276683], [37.58690108567234, 17.313051044773594], [39.33656917594966, 17.433882626869472], [40.190863351304, 18.941140990838722], [39.28804357565316, 20.364056175566354], [37.48995486768825, 20.261490246968638]]]}}, {"type": "Feature", "properties": {"bin": "824a27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[127.67692566157774, 27.407024752708207], [127.39498324112382, 25.883020878261213], [128.80414635159454, 24.98400610534958], [130.51259100937042, 25.620271075222703], [130.80716405040224, 27.155857089463083], [129.38100221234527, 28.04399710423246], [127.67692566157774, 27.407024752708207]]]}}, {"type": "Feature", "properties": {"bin": "8240effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[102.86125602429053, 29.28212072050655], [103.04526159350907, 30.84937126426324], [101.45783561313176, 31.80181239628881], [99.68326908521608, 31.18766135235495], [99.51693852531672, 29.615360337998418], [101.10708239937668, 28.661713692573745], [102.86125602429053, 29.28212072050655]]]}}, {"type": "Feature", "properties": {"bin": "824e6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[140.4887905517993, 18.461450275109275], [140.1697245352548, 16.779214626193742], [141.57589071657515, 15.65379761709913], [143.29617251550175, 16.215744508474376], [143.62042640551968, 17.894593929233352], [142.21971416679307, 19.015324066179012], [140.4887905517993, 18.461450275109275]]]}}, {"type": "Feature", "properties": {"bin": "821057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.686021641610814, 62.94301605404716], [53.982547016039476, 61.44092061568186], [57.440949046155716, 61.216399242787126], [59.88478475803628, 62.48594075268518], [58.79473999463724, 64.03522417338607], [55.03553738085308, 64.26898911013433], [52.686021641610814, 62.94301605404716]]]}}, {"type": "Feature", "properties": {"bin": "823357fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[168.35070139552502, 28.281928894701036], [169.07436240121478, 29.954738628780905], [167.74152015996484, 31.33997132073727], [165.6742100468855, 31.015442711548175], [165.00961973823703, 29.3219748704367], [166.351059261008, 27.97310998846149], [168.35070139552502, 28.281928894701036]]]}}, {"type": "Feature", "properties": {"bin": "823c0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[90.91116847307, 27.664082661768756], [91.02563139985838, 29.280171655412413], [89.40743651851827, 30.104062786417504], [87.69443225239783, 29.317655159722513], [87.60067945215376, 27.710049954719217], [89.19916679563575, 26.879844954692857], [90.91116847307, 27.664082661768756]]]}}, {"type": "Feature", "properties": {"bin": "82426ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.96726747716981, 33.29852686321238], [70.2926586907516, 31.613519939735284], [72.18948256096145, 30.985372428300344], [73.82669212441867, 32.0075993471152], [73.59261768799648, 33.70575303795421], [71.62864641789882, 34.369855785757295], [69.96726747716981, 33.29852686321238]]]}}, {"type": "Feature", "properties": {"bin": "826a57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[32.73302899458755, 4.110029868021471], [33.3512924927678, 5.613739506022279], [32.283333673132425, 6.883777737297147], [30.597118509067904, 6.672537737437504], [29.961298273611618, 5.181922624952887], [31.028472857488882, 3.8891448861435705], [32.73302899458755, 4.110029868021471]]]}}, {"type": "Feature", "properties": {"bin": "827ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.31659244465762, 3.6927532541940136], [52.72729851208757, 5.067960209199088], [51.72617525590205, 6.276363063405384], [50.2899341797364, 6.134248764846948], [49.850632032874856, 4.753889465894764], [50.87607058865384, 3.5202962612332436], [52.31659244465762, 3.6927532541940136]]]}}, {"type": "Feature", "properties": {"bin": "820acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[109.18193165810936, 66.23835718068821], [111.51263935144166, 64.79296775799982], [115.57361115305922, 64.76805994944728], [117.81292538828089, 66.20328559643201], [115.73004475015601, 67.76118275768229], [111.11213206023598, 67.77024032063275], [109.18193165810936, 66.23835718068821]]]}}, {"type": "Feature", "properties": {"bin": "826a07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[25.13348443429596, 8.727292768584846], [24.49097651141032, 7.248658353992226], [25.514702903289592, 6.000797884634774], [27.209856497243752, 6.2305095542402364], [27.86006724223391, 7.705179736978789], [26.839067792178863, 8.958444676839422], [25.13348443429596, 8.727292768584846]]]}}, {"type": "Feature", "properties": {"bin": "822597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[86.83285457847107, 42.06798168950583], [86.70820981047306, 40.31276675619656], [88.57496213785487, 39.38084284181813], [90.58971245327199, 40.15254599295621], [90.82743784898058, 41.88146804834018], [88.93958789515892, 42.86622963459015], [86.83285457847107, 42.06798168950583]]]}}, {"type": "Feature", "properties": {"bin": "821e5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[28.956124606299714, 46.94058343091816], [27.96137390525891, 45.468586515077135], [29.387082408127053, 44.10776609123569], [31.765884250922184, 44.20368148246594], [32.80266317669352, 45.65567444315455], [31.42227212531316, 47.03191968899236], [28.956124606299714, 46.94058343091816]]]}}, {"type": "Feature", "properties": {"bin": "82244ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.32774149411853, 45.65091523732746], [112.50749462316774, 44.17972718268073], [113.62768041043816, 42.996232909846114], [115.50113901102064, 43.25414167974318], [116.3590601424378, 44.67041995408337], [115.30978583151253, 45.88291508681843], [113.32774149411853, 45.65091523732746]]]}}, {"type": "Feature", "properties": {"bin": "8240affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.28994571488548, 30.415400329702234], [111.51312837969918, 31.907056839717516], [110.02704432234283, 32.92767555609793], [108.29899073279826, 32.45742269990468], [108.08867376396773, 30.953536939110023], [109.59299100020664, 29.931689194227175], [111.28994571488548, 30.415400329702234]]]}}, {"type": "Feature", "properties": {"bin": "82724ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[147.7947727250777, 6.397625920718724], [147.47173217068118, 4.649620438680766], [148.80307138553923, 3.495611193583319], [150.44123001544202, 4.084015752678349], [150.76474122447317, 5.81388917924783], [149.4500778346505, 6.9737200110234], [147.7947727250777, 6.397625920718724]]]}}, {"type": "Feature", "properties": {"bin": "822eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[146.06288796294555, 43.62471303294338], [146.34830719648915, 45.300077309535865], [144.52548565372334, 46.23006227618878], [142.48864639425716, 45.46875223300061], [142.3058437365082, 43.816094965537175], [144.05801957035413, 42.90122568599545], [146.06288796294555, 43.62471303294338]]]}}, {"type": "Feature", "properties": {"bin": "82256ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.13645321870719, 54.935667215181674], [107.26951355733428, 53.39628792731904], [108.85688406534163, 52.131924415515286], [111.22982205294677, 52.37241137844973], [112.4637075001006, 53.64397235107222], [110.95857252012345, 54.96683820192358], [108.13645321870719, 54.935667215181674]]]}}, {"type": "Feature", "properties": {"bin": "82154ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[127.6321786186256, 64.02341503162813], [128.74053670218638, 62.369457595654104], [132.34195728892178, 61.88141157505771], [135.19855827382102, 62.99451548804967], [134.49509963996232, 64.70390366757042], [130.50634763946434, 65.24951534078758], [127.6321786186256, 64.02341503162813]]]}}, {"type": "Feature", "properties": {"bin": "8205b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.41382440232776, 69.2260603613094], [111.11213206023598, 67.77024032063275], [115.73004475015601, 67.76118275768229], [118.31111995950909, 69.22420719506948], [115.93637115317803, 70.80573675666334], [110.58467601048972, 70.79712812810932], [108.41382440232776, 69.2260603613094]]]}}, {"type": "Feature", "properties": {"bin": "8242d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.56939811385563, 20.759725505183912], [67.89023030388555, 19.324158539746353], [69.48764713968366, 18.81189637570433], [70.81380882145015, 19.70730359618626], [70.55388096139677, 21.159402214236277], [68.90585080990593, 21.70055792236084], [67.56939811385563, 20.759725505183912]]]}}, {"type": "Feature", "properties": {"bin": "8273b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[125.50231533878872, 4.76343118357537], [125.23927866988447, 3.023468344054069], [126.58470669389268, 1.9075458519315136], [128.21251055774763, 2.531251866245343], [128.4881723713516, 4.2871529217510735], [127.12366345508629, 5.4036923569431865], [125.50231533878872, 4.76343118357537]]]}}, {"type": "Feature", "properties": {"bin": "82179ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[154.0661665331384, 50.59949521249277], [154.6327473838791, 52.216627806993216], [152.61434889932224, 53.210024078140854], [150.08784416307844, 52.56038835189848], [149.65465920271976, 50.949539061107274], [151.61331591458006, 49.98075453667432], [154.0661665331384, 50.59949521249277]]]}}, {"type": "Feature", "properties": {"bin": "82201ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[71.87847270508469, 44.254457193691366], [72.20771321903253, 42.46955284809628], [74.43633811146184, 41.761836643769904], [76.42128602273652, 42.80087782083737], [76.2243141019708, 44.593447234860314], [73.90846648018636, 45.341013613187926], [71.87847270508469, 44.254457193691366]]]}}, {"type": "Feature", "properties": {"bin": "824ecffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.26039098039993, 25.867196303840352], [145.46823819786155, 27.48960983163966], [144.03200044365963, 28.54361484413783], [142.4332217566576, 27.94960597650391], [142.10563043867066, 26.449115168656718], [143.52349627910067, 25.40388372699502], [145.26039098039993, 25.867196303840352]]]}}, {"type": "Feature", "properties": {"bin": "82550ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.956159557263328, 23.307035475663525], [-11.587036473562442, 22.48058908346514], [-11.67514915567997, 20.80838745157097], [-10.188114712806701, 19.98422878146785], [-8.606696673672944, 20.791091351545326], [-8.463757820412326, 22.441035492513045], [-9.956159557263328, 23.307035475663525]]]}}, {"type": "Feature", "properties": {"bin": "8247b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.35528176875243, 26.471571870702704], [-178.44656982841957, 28.034840637054618], [-179.50951719255943, 29.501116823783033], [178.4754053347224, 29.376139351007176], [177.59601061741438, 27.77533469733761], [178.69998567813343, 26.337191971375496], [-179.35528176875243, 26.471571870702704]]]}}, {"type": "Feature", "properties": {"bin": "826aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.464273607656313, 2.7297657317309403], [23.14689086498559, 4.259065522271721], [22.136132249356997, 5.527020080114603], [20.458518123241934, 5.284276360502933], [19.77031774923299, 3.777844681142865], [20.76448426679086, 2.4912777849399794], [22.464273607656313, 2.7297657317309403]]]}}, {"type": "Feature", "properties": {"bin": "823e2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.56356707050921, 31.525134298050116], [23.78579890275512, 29.853045268777663], [25.060344831525917, 28.43312831311004], [27.093823557839002, 28.66241436853054], [27.91172984348016, 30.31370874723716], [26.658191980924084, 31.75677617763522], [24.56356707050921, 31.525134298050116]]]}}, {"type": "Feature", "properties": {"bin": "82200ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.61820931870749, 47.13404017426435], [73.90846648018636, 45.341013613187926], [76.2243141019708, 44.593447234860314], [78.33715502736786, 45.598111092042075], [78.19452609304278, 47.39431423045349], [75.79014551842988, 48.18454407569599], [73.61820931870749, 47.13404017426435]]]}}, {"type": "Feature", "properties": {"bin": "8242cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[71.699171420447, 23.59330535221809], [71.94311998575824, 22.08300704162582], [73.57559356110224, 21.508843225938318], [75.01088584624904, 22.41056616821522], [74.83615769090727, 23.930617985962513], [73.15619151319507, 24.54036980515402], [71.699171420447, 23.59330535221809]]]}}, {"type": "Feature", "properties": {"bin": "826087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.86183245215106, 17.56444136136202], [77.89282385581691, 19.248933470521393], [76.43631730704988, 20.03059716689769], [74.98276447633455, 19.14100146751368], [74.96894532611755, 17.484002514639712], [76.39177292976275, 16.6890161060303], [77.86183245215106, 17.56444136136202]]]}}, {"type": "Feature", "properties": {"bin": "823c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[84.38546050434297, 29.287639671665627], [84.34179540534768, 27.678382881962293], [85.92221757190828, 26.89198380918314], [87.60067945215376, 27.710049954719217], [87.69443225239783, 29.31765515972253], [86.09054225573551, 30.124571654458894], [84.38546050434297, 29.287639671665627]]]}}, {"type": "Feature", "properties": {"bin": "822e67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.24018784124735, 34.09024933883642], [138.3042651381179, 35.71483178531525], [136.7565422512042, 36.59487743965532], [135.20918093571038, 35.84028351391193], [135.21308771549002, 34.24906232192917], [136.69764123177848, 33.37879798624116], [138.24018784124735, 34.09024933883642]]]}}, {"type": "Feature", "properties": {"bin": "820107fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[28.43305176155628, 71.24542771505138], [32.827639376682654, 71.72258517006674], [33.469374371360225, 73.16839556185595], [28.896409947344146, 74.14929175945835], [23.998789925609252, 73.5439174055105], [24.192747647371593, 72.09707420590918], [28.43305176155628, 71.24542771505138]]]}}, {"type": "Feature", "properties": {"bin": "822e57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.44146242552776, 38.981099958902064], [138.51501760262528, 40.6175014098157], [136.8555639168759, 41.45102232926615], [135.19635364043003, 40.64129560736251], [135.20082666531997, 39.03887536193396], [136.78802846843914, 38.21187841917355], [138.44146242552776, 38.981099958902064]]]}}, {"type": "Feature", "properties": {"bin": "825a2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[171.27261247453654, 11.151832208296353], [171.91527610911328, 12.577354955958288], [170.85778972168902, 13.7977503711094], [169.14403090083158, 13.554585784023473], [168.53745793093609, 12.102005482769567], [169.60718974764936, 10.919270348116088], [171.27261247453654, 11.151832208296353]]]}}, {"type": "Feature", "properties": {"bin": "827437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.0644961087785445, 5.362739776582643], [-7.378352602293609, 4.648343501025636], [-7.5105286649192315, 3.3757928754616726], [-6.36286683253032, 2.8319782586108553], [-5.08445017215476, 3.5266350498097476], [-4.918873186254363, 4.7842994164597235], [-6.0644961087785445, 5.362739776582643]]]}}, {"type": "Feature", "properties": {"bin": "8208c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.745683267270003, 65.89736287731276], [23.06001236063494, 64.97162850959091], [26.10723575383044, 65.49332555077642], [27.046020702142844, 66.99139283605574], [24.61096300749794, 67.96067555658821], [21.353092284120027, 67.38569079986429], [20.745683267270003, 65.89736287731276]]]}}, {"type": "Feature", "properties": {"bin": "82052ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.04706554343251, 81.33805216653383], [107.09622890529207, 79.99758653524648], [117.3119449238429, 80.07854005805554], [123.85904164290791, 81.53166944518023], [118.5766060390223, 83.15405442466334], [103.94443637143779, 83.03084121148757], [100.04706554343251, 81.33805216653383]]]}}, {"type": "Feature", "properties": {"bin": "820a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.72256288499204, 73.26114384853165], [101.78982837628078, 71.98699598123666], [107.38403295778832, 72.25179205071369], [109.85869817326204, 73.85683569908097], [105.93256091359298, 75.29604839760391], [99.27271520331344, 74.95595912534229], [97.72256288499204, 73.26114384853165]]]}}, {"type": "Feature", "properties": {"bin": "8242effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.70151458275944, 25.7178821848289], [69.99854548909617, 24.16575450852624], [71.699171420447, 23.59330535221809], [73.15619151319507, 24.54036980515402], [72.9316241024183, 26.106099225137925], [71.1765408333672, 26.712328589682727], [69.70151458275944, 25.7178821848289]]]}}, {"type": "Feature", "properties": {"bin": "82321ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.04739755317138, 36.40019597525651], [170.88113315941013, 38.07431204898626], [169.44151026908685, 39.479372566043565], [167.14887257606568, 39.177426167855764], [166.38334579221544, 37.48242355039495], [167.8391329492701, 36.109696209480475], [170.04739755317138, 36.40019597525651]]]}}, {"type": "Feature", "properties": {"bin": "82416ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[106.28898914752854, 16.12598939393746], [106.48098418730204, 17.863327152693813], [104.99862774684136, 18.920582783367433], [103.31525507763155, 18.233591272175207], [103.13773328689898, 16.482450442847686], [104.62868392107374, 15.431708763244588], [106.28898914752854, 16.12598939393746]]]}}, {"type": "Feature", "properties": {"bin": "824e5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[141.45463606547602, 23.346584520164132], [141.13125685853723, 21.747289135211766], [142.54366142733994, 20.657405597914543], [144.27271566035486, 21.174017097520665], [144.60072315684513, 22.770295906390995], [143.19556546628428, 23.853446687189194], [141.45463606547602, 23.346584520164132]]]}}, {"type": "Feature", "properties": {"bin": "826997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[109.37130764054983, 2.5166063615571863], [109.5676629086609, 4.243718891838053], [108.18671050745836, 5.254023178261672], [106.59636555398447, 4.5183323649792895], [106.41168295379833, 2.7703025791670135], [107.80526454768341, 1.7786268769012792], [109.37130764054983, 2.5166063615571863]]]}}, {"type": "Feature", "properties": {"bin": "823f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.679352391342839, 28.55677300195445], [15.071232200574926, 26.84934226485555], [16.404954355833446, 25.517872533302246], [18.351304577591986, 25.86678026136113], [19.012036761826856, 27.565395679553497], [17.675332540841065, 28.924476228387608], [15.679352391342839, 28.55677300195445]]]}}, {"type": "Feature", "properties": {"bin": "82334ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[162.41513478916204, 27.27499397487901], [163.01010907874655, 28.962107589001867], [161.6126493581132, 30.27451150085969], [159.62747006587315, 29.862023974306773], [159.0986063733261, 28.16457616795243], [160.48724479007151, 26.889142900269107], [162.41513478916204, 27.27499397487901]]]}}, {"type": "Feature", "properties": {"bin": "8277affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.7389862436277, 2.940621928583292], [151.41694688393682, 1.217580256349525], [152.69742579982722, 0.09854949274458083], [154.2787359881882, 0.6931851479671544], [154.59893532317398, 2.392032208517474], [153.34006641659448, 3.5205301653094883], [151.7389862436277, 2.940621928583292]]]}}, {"type": "Feature", "properties": {"bin": "825b47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.45774938851352, 7.048433904053562], [170.04455430948826, 8.386213835240993], [169.01054360162968, 9.523231012784185], [167.38068986531874, 9.285448078820776], [166.82899636318285, 7.923775520601624], [167.87091234842308, 6.823336584288535], [169.45774938851352, 7.048433904053562]]]}}, {"type": "Feature", "properties": {"bin": "824ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[134.18507592423248, 19.435671802631244], [133.8822509367034, 17.759599097164003], [135.2993897157707, 16.685821292347388], [137.0254728211787, 17.295269329360426], [137.3373585202837, 18.97657339005146], [135.91455001866788, 20.043634559104234], [134.18507592423248, 19.435671802631244]]]}}, {"type": "Feature", "properties": {"bin": "82698ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.98513214459506, 4.672130986571936], [114.19858171193793, 6.370765032437677], [112.88144960994038, 7.389406912237243], [111.33144476242238, 6.691122219788032], [111.12715606917523, 4.965393245355261], [112.46327870022803, 3.964960250698961], [113.98513214459506, 4.672130986571936]]]}}, {"type": "Feature", "properties": {"bin": "824f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[158.48854935382522, 20.32820803003372], [158.95951267680462, 21.93515017649106], [157.6353447712508, 23.16966846117383], [155.85581058699807, 22.758164292722196], [155.44399246654197, 21.1452026407526], [156.7516824625805, 19.948884409609132], [158.48854935382522, 20.32820803003372]]]}}, {"type": "Feature", "properties": {"bin": "824197fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.25469952524372, 28.45296745837912], [120.50339385995801, 29.89298533869355], [119.20437007130985, 30.97260903508699], [117.62642833556802, 30.614685711904176], [117.38411308859807, 29.155221704779063], [118.71284963780683, 28.072874613292196], [120.25469952524372, 28.45296745837912]]]}}, {"type": "Feature", "properties": {"bin": "82218ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.41674171645749, 43.09858640289575], [63.98547186413146, 41.35851009041053], [66.2481126857148, 40.813540861360785], [68.0486075236378, 41.98577467201586], [67.59425087512183, 43.75289712530186], [65.22130920269487, 44.32198977767069], [63.41674171645749, 43.09858640289575]]]}}, {"type": "Feature", "properties": {"bin": "821e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.374347667392275, 47.965938447346616], [12.677317810359863, 46.40695745798227], [14.33720628244463, 45.27343222583469], [16.708896543883586, 45.6797189491731], [17.489487896493493, 47.23467882509988], [15.817383557718518, 48.388122500459744], [13.374347667392275, 47.965938447346616]]]}}, {"type": "Feature", "properties": {"bin": "822e4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[133.69052161245472, 36.66148739456522], [133.65219883512057, 38.242875714117595], [132.10012408810192, 39.01017757707544], [130.6575327073045, 38.19456373764813], [130.7593524540452, 36.65165362746537], [132.24194904480953, 35.88584691859817], [133.69052161245472, 36.66148739456522]]]}}, {"type": "Feature", "properties": {"bin": "8214b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[122.15259506819683, 47.9979628093854], [123.01961061339279, 46.688838646389684], [125.25538071272493, 46.39244475315222], [126.77127105816483, 47.38530568432782], [126.0251597204442, 48.74474316949554], [123.63555347720718, 49.0620879945458], [122.15259506819683, 47.9979628093854]]]}}, {"type": "Feature", "properties": {"bin": "82752ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.9395631182409523, 8.007193661487852], [-2.159048476284375, 6.645580466394948], [-1.0480074617937822, 5.588679090661898], [0.309803963535533, 5.864518365517626], [0.5689349498665859, 7.231941088759668], [-0.5694861509226148, 8.318410093422674], [-1.9395631182409523, 8.007193661487852]]]}}, {"type": "Feature", "properties": {"bin": "82100ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.11935278178065, 61.622263126588365], [48.56036712288836, 60.17303439572082], [51.85850378792261, 60.079063237666276], [53.982547016039476, 61.44092061568186], [52.686021641610814, 62.94301605404716], [49.10342280169707, 63.03058585396605], [47.11935278178065, 61.622263126588365]]]}}, {"type": "Feature", "properties": {"bin": "826aaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[25.2124542219397, 1.6525082699307319], [25.886010570251138, 3.2020743391429516], [24.847285917888374, 4.495706490210245], [23.14689086498559, 4.259065522271721], [22.464273607656313, 2.7297657317309403], [23.49024961634333, 1.416746256049863], [25.2124542219397, 1.6525082699307319]]]}}, {"type": "Feature", "properties": {"bin": "827247fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[144.76610778205162, 6.9740074974499136], [144.44541969740206, 5.212334399771164], [145.80408854252633, 4.052395404960635], [147.47173217068118, 4.649620438680766], [147.7947727250777, 6.397625920718724], [146.4482935753851, 7.56237733150415], [144.76610778205162, 6.9740074974499136]]]}}, {"type": "Feature", "properties": {"bin": "823557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.3623519142538, 39.178081579793435], [-22.293034642597473, 38.2149620290745], [-22.162636940443136, 36.41973845196904], [-20.18932139434465, 35.5917804234095], [-18.30545839105258, 36.529265222848295], [-18.348088280402102, 38.319242897076336], [-20.3623519142538, 39.178081579793435]]]}}, {"type": "Feature", "properties": {"bin": "826187fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[83.7221984125256, 12.344265741825286], [83.7878439473834, 14.102745522191507], [82.28977987881835, 15.003961607172462], [80.75351699236201, 14.151558182344273], [80.70607507930679, 12.414517864781308], [82.17683155274915, 11.508189904788676], [83.7221984125256, 12.344265741825286]]]}}, {"type": "Feature", "properties": {"bin": "824a0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[131.9381410506925, 24.67988597236771], [131.64056007611558, 23.093332059613815], [133.06438989314756, 22.10381705761048], [134.7959426280902, 22.71039616236627], [135.1039792696483, 24.304787654394534], [133.67043163902014, 25.285203830798743], [131.9381410506925, 24.67988597236771]]]}}, {"type": "Feature", "properties": {"bin": "823cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[93.85707321113722, 22.50676092482895], [93.98718666087771, 24.209804162048574], [92.39489798365517, 25.128231887822174], [90.68630878295664, 24.3462844893966], [90.57586584565294, 22.648836325487405], [92.15419848576875, 21.727219941246698], [93.85707321113722, 22.50676092482895]]]}}, {"type": "Feature", "properties": {"bin": "82755ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.8199508788179312, -0.6593876817348934], [-0.1602034369452549, 0.7197982113703898], [-0.8378324096770464, 1.8701721240824984], [-2.1427124286181316, 1.6469189364220407], [-2.7858575596409714, 0.30158663198554764], [-2.140858150351298, -0.853812715639454], [-0.8199508788179312, -0.6593876817348934]]]}}, {"type": "Feature", "properties": {"bin": "824b27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[122.37283494406972, 31.991695388656535], [122.11353816810242, 30.58950657595241], [123.48699467958635, 29.84328862254757], [125.14509756705453, 30.51202973135771], [125.41914993808639, 31.927642743840643], [124.02055612683287, 32.66144519495384], [122.37283494406972, 31.991695388656535]]]}}, {"type": "Feature", "properties": {"bin": "820ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[104.70987156583625, 61.67861940182324], [106.865913193906, 60.35664258373935], [110.25066319208894, 60.44170500833013], [111.82707785879496, 61.880144648040535], [109.77665935770398, 63.30546259246109], [106.01845341595069, 63.18664442873612], [104.70987156583625, 61.67861940182324]]]}}, {"type": "Feature", "properties": {"bin": "825b0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.2548093963156, 7.694424760251107], [174.91405968816338, 9.034572067963818], [173.94282318446523, 10.194121685273998], [172.29426677728955, 9.978189493251355], [171.66411711457465, 8.608957629133746], [172.6521502755409, 7.484528901641248], [174.2548093963156, 7.694424760251107]]]}}, {"type": "Feature", "properties": {"bin": "825b67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.88109208357997, 4.680543766329771], [170.45817404352508, 5.959309150722119], [169.45774938851352, 7.048433904053562], [167.87091234842308, 6.823336584288535], [167.32655462438848, 5.521103943374022], [168.3352524578736, 4.467031609784519], [169.88109208357997, 4.680543766329771]]]}}, {"type": "Feature", "properties": {"bin": "82382ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.12380735772064089, 37.036562006618176], [-0.21185444833693792, 35.37567101563382], [1.2724179411878551, 34.323246605430036], [3.1364790338915944, 34.91820439114921], [3.543589356987794, 36.59789814478598], [2.015254649789183, 37.66435763083123], [0.12380735772064089, 37.036562006618176]]]}}, {"type": "Feature", "properties": {"bin": "8240c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[104.80495247794913, 31.418214271205258], [105.00026806645934, 32.931449058427376], [103.41939440159994, 33.88266397756609], [101.63618216132348, 33.32133580619488], [101.45783561313176, 31.80181239628881], [103.04526159350907, 30.84937126426324], [104.80495247794913, 31.418214271205258]]]}}, {"type": "Feature", "properties": {"bin": "823147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.43987810268445, 41.28459934878183], [130.3233868267755, 42.827204153871776], [128.7080550992938, 43.475622215197404], [127.290626562701, 42.58774499356536], [127.47141178448352, 41.086104966615075], [129.00750882770032, 40.43146840277848], [130.43987810268445, 41.28459934878183]]]}}, {"type": "Feature", "properties": {"bin": "822e07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.28854872940548, 38.56238280223075], [145.5340016462912, 40.25286607784118], [143.84165263839182, 41.22608204319894], [141.96698272199194, 40.49175081410267], [141.80965654881365, 38.82570130635364], [143.43958045241362, 37.868876909472185], [145.28854872940548, 38.56238280223075]]]}}, {"type": "Feature", "properties": {"bin": "824147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.1397915225587, 18.52000649698165], [108.34130759634914, 20.22323538180108], [106.87079927350013, 21.285626954004616], [105.18646517268341, 20.63927532656992], [104.99862774684136, 18.920582783367433], [106.48098418730204, 17.863327152693813], [108.1397915225587, 18.52000649698165]]]}}, {"type": "Feature", "properties": {"bin": "821e67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.993406169520387, 52.32716417101245], [26.94086408434805, 50.95215670452957], [28.492805600393982, 49.683115672532594], [31.05269470118688, 49.771324694536816], [32.15691841993127, 51.12678928755596], [30.654127846023286, 52.41378927911533], [27.993406169520387, 52.32716417101245]]]}}, {"type": "Feature", "properties": {"bin": "826b57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.162959755062325, 13.305579858085919], [26.46899696227833, 11.757964613420336], [27.520279149946738, 10.460500258159698], [29.247299616085066, 10.680211197141585], [29.966532331336797, 12.198779848215473], [28.934833683009895, 13.526795144961554], [27.162959755062325, 13.305579858085919]]]}}, {"type": "Feature", "properties": {"bin": "824377fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.94985342520008, 33.5460493316818], [57.58625773283634, 31.937025252522204], [59.53760347725541, 31.506665813674903], [60.939344242953645, 32.67501516269659], [60.37258351318907, 34.322374136310785], [58.33141354003228, 34.76356449406121], [56.94985342520008, 33.5460493316818]]]}}, {"type": "Feature", "properties": {"bin": "8254affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-17.910453055902636, 15.72965237496016], [-19.40378332385685, 14.850204433632182], [-19.35286583316386, 13.275659539199737], [-17.860226364438105, 12.585841373390625], [-16.398619029755448, 13.434493335832748], [-16.39811264585764, 15.002855614684421], [-17.910453055902636, 15.72965237496016]]]}}, {"type": "Feature", "properties": {"bin": "8254d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-17.8363676518402, 11.063783036396401], [-19.25608087263708, 10.227430733230397], [-19.210049292532005, 8.7557471773871], [-17.7909573321859, 8.124363819119298], [-16.40003966386146, 8.93040321672402], [-16.3995817269834, 10.397267061984039], [-17.8363676518402, 11.063783036396401]]]}}, {"type": "Feature", "properties": {"bin": "82346ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.608842439241553, 31.177353298158966], [-16.392618992120248, 30.28738493539216], [-16.39332769128071, 28.514587165424352], [-14.681052541612365, 27.647052437792293], [-12.948554583750909, 28.514935780874872], [-12.877752742714321, 30.271571925410477], [-14.608842439241553, 31.177353298158966]]]}}, {"type": "Feature", "properties": {"bin": "824a57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.1039792696483, 24.304787654394534], [134.7959426280902, 22.71039616236627], [136.22464605289488, 21.684143266682888], [137.96594879359822, 22.260837811885946], [138.28264003276107, 23.859502020027048], [136.84984678879755, 24.877664470168636], [135.1039792696483, 24.304787654394534]]]}}, {"type": "Feature", "properties": {"bin": "82721ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[137.67042176448078, 2.751930410072497], [137.36478040003968, 0.977147864408643], [138.7479898447449, -0.17196920035699034], [140.43686692088156, 0.4474832204660264], [140.74918846783441, 2.2183857025045817], [139.36640825262376, 3.374109793703046], [137.67042176448078, 2.751930410072497]]]}}, {"type": "Feature", "properties": {"bin": "8252effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.532283460277945, 15.051528661327882], [46.67969818348164, 13.661152167148341], [47.37665086649757, 12.37014959176328], [48.88379911472869, 12.457630845905545], [49.72852590168673, 13.808566340166381], [49.07466256244804, 15.110784431748657], [47.532283460277945, 15.051528661327882]]]}}, {"type": "Feature", "properties": {"bin": "82195ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.1788859209290425, 53.25155105071478], [-4.578382413982979, 52.792439042763036], [-4.889760342933783, 51.22372845966178], [-2.9065278792841616, 50.14229216995713], [-0.631094757975507, 50.60191112048409], [-0.21913743445926212, 52.141680818262785], [-2.1788859209290425, 53.25155105071478]]]}}, {"type": "Feature", "properties": {"bin": "8272a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[132.61481314523337, 0.8818145781803421], [132.32501247969677, -0.8775480454776421], [133.70229504578936, -2.0188278359562855], [135.3778115057875, -1.4068520662852666], [135.67705149281272, 0.35620948177303313], [134.29172795983905, 1.5040036468682454], [132.61481314523337, 0.8818145781803421]]]}}, {"type": "Feature", "properties": {"bin": "82009ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[81.64563461848032, 76.41124061823331], [87.70559226067502, 75.49758638581739], [94.14309010184775, 76.163042830191], [95.5497514299602, 77.89229298392907], [88.74228226011789, 78.98640307577013], [81.23235529091416, 78.14706671558069], [81.64563461848032, 76.41124061823331]]]}}, {"type": "Feature", "properties": {"bin": "8238b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.290521719128034, 28.269153054310298], [-8.002013895306682, 27.50290866718829], [-8.161724346494458, 25.799576124170038], [-6.667778136025995, 24.89175633085534], [-5.0155884996367694, 25.64651817513538], [-4.799371159116904, 27.320116005158603], [-6.290521719128034, 28.269153054310298]]]}}, {"type": "Feature", "properties": {"bin": "823ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[23.347723561939056, 20.35938183420552], [22.66217520360497, 18.714905313467156], [23.82946157118848, 17.34988167023336], [25.669601564150682, 17.599439710621716], [26.390135047058717, 19.22050575143428], [25.237114501285713, 20.615714083561897], [23.347723561939056, 20.35938183420552]]]}}, {"type": "Feature", "properties": {"bin": "8268effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[122.57945867341262, 5.2165791412778475], [122.32993687990546, 3.496828086580648], [123.6482978951057, 2.3996946574232902], [125.23927866988447, 3.023468344054069], [125.50231533878872, 4.76343118357537], [124.161046766289, 5.859612972311428], [122.57945867341262, 5.2165791412778475]]]}}, {"type": "Feature", "properties": {"bin": "8211affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.71346375789878, 56.74659832800681], [35.2991114114946, 55.46002004057114], [37.971642599038965, 55.63841429469692], [39.23604141514986, 57.141267880771885], [37.66110811159123, 58.48066299220257], [34.8028146879035, 58.2630778279077], [33.71346375789878, 56.74659832800681]]]}}, {"type": "Feature", "properties": {"bin": "82681ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.97139520919602, 6.045492474858289], [116.75048305816937, 4.377108182228905], [117.99888533923311, 3.3267128731190128], [119.49690584493457, 3.9486914533379895], [119.73229749473893, 5.64441414051287], [118.45524797889053, 6.690840828057335], [116.97139520919602, 6.045492474858289]]]}}, {"type": "Feature", "properties": {"bin": "826227fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.251416231717506, 12.789486972685344], [57.71229245123519, 11.603707803548193], [59.141712505536994, 11.218223438139704], [60.156825413339405, 12.005816969585997], [59.732575088573185, 13.216340916028171], [58.2554110456957, 13.61493421960814], [57.251416231717506, 12.789486972685344]]]}}, {"type": "Feature", "properties": {"bin": "822ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[140.67508861403263, 46.319768043789686], [140.81932027711574, 47.94353494620577], [138.9432025290707, 48.72622613945605], [137.01230194626575, 47.87799059734758], [136.97005651322786, 46.28395468965602], [138.75859387597603, 45.50779096126445], [140.67508861403263, 46.319768043789686]]]}}, {"type": "Feature", "properties": {"bin": "820b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[85.45178957793857, 55.383010983560176], [85.34312128437487, 53.63713751938727], [87.77296412239532, 52.6542030078627], [90.35668181792352, 53.36566283700183], [90.6561606716588, 55.08699728590972], [88.18560705462039, 56.123456859262085], [85.45178957793857, 55.383010983560176]]]}}, {"type": "Feature", "properties": {"bin": "821037fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.66110811159123, 58.48066299220257], [39.23604141514986, 57.141267880771885], [42.12427703668834, 57.24878332837167], [43.646892149119445, 58.72551867912345], [42.11654040176946, 60.11966819571557], [39.007636105246156, 59.98127301672662], [37.66110811159123, 58.48066299220257]]]}}, {"type": "Feature", "properties": {"bin": "82308ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.26131469818228, 34.02999293749449], [121.00668784625681, 32.682212732683226], [122.37283494406972, 31.991695388656535], [124.02055612683287, 32.66144519495384], [124.29034574462932, 34.02180762319836], [122.89743602631219, 34.70019382245992], [121.26131469818228, 34.02999293749449]]]}}, {"type": "Feature", "properties": {"bin": "82825ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.4130898159431506, -2.7225189577904536], [4.103164136767459, -1.2760872010763924], [3.3406661153006687, -0.045100606795108945], [1.9211969045935868, -0.2548735255288649], [1.245698051007282, -1.667852447043259], [1.9748033475014806, -2.9040374505798208], [3.4130898159431506, -2.7225189577904536]]]}}, {"type": "Feature", "properties": {"bin": "821ec7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.238176563447503, 43.517310640528756], [21.39910192913279, 41.9324677795958], [22.876710218874177, 40.608843552222844], [25.17674314532988, 40.85101584262723], [26.072885089723204, 42.421412954963046], [24.61498137158676, 43.76450954182124], [22.238176563447503, 43.517310640528756]]]}}, {"type": "Feature", "properties": {"bin": "8205a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[107.38403295778832, 72.25179205071369], [110.58467601048972, 70.79712812810932], [115.93637115317803, 70.80573675666334], [118.98141478359176, 72.28704712420588], [116.22097890957218, 73.88538861861933], [109.85869817326204, 73.85683569908097], [107.38403295778832, 72.25179205071369]]]}}, {"type": "Feature", "properties": {"bin": "820027fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.207465708710853, 75.65094362106625], [35.209211757657734, 76.1522144631779], [36.42872092351118, 77.68574902454718], [30.105633384438118, 78.74785370461174], [23.094778200479343, 78.07801039757999], [23.469373219341843, 76.53550099989292], [29.207465708710853, 75.65094362106625]]]}}, {"type": "Feature", "properties": {"bin": "822eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[152.544806053949, 45.62266462732754], [153.02451738451757, 47.29973144060697], [151.1541228261415, 48.33401395109927], [148.85928854972465, 47.66739948724733], [148.49339585930505, 46.001343542808314], [150.30786314404847, 44.989812519670075], [152.544806053949, 45.62266462732754]]]}}, {"type": "Feature", "properties": {"bin": "826597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[107.54692595046549, 13.315850947919389], [107.74262433198103, 15.063301114735607], [106.28898914752854, 16.12598939393746], [104.62868392107374, 15.431708763244588], [104.44652708667027, 13.667699618909237], [105.91070146594151, 12.614189047233577], [107.54692595046549, 13.315850947919389]]]}}, {"type": "Feature", "properties": {"bin": "82148ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.0897142166749, 49.369657347311026], [130.69503716478923, 47.96680444640571], [132.96199772756114, 47.51079575918813], [134.76393627595752, 48.41801789173906], [134.31722549534967, 49.855479083883395], [131.9046181506924, 50.35326796982147], [130.0897142166749, 49.369657347311026]]]}}, {"type": "Feature", "properties": {"bin": "822037fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[64.65953965157253, 46.076794233472874], [65.22130920269487, 44.32198977767069], [67.59425087512183, 43.75289712530186], [69.51996090712217, 44.91313685007157], [69.08841820852274, 46.69211411024017], [66.59694488989409, 47.28813432166089], [64.65953965157253, 46.076794233472874]]]}}, {"type": "Feature", "properties": {"bin": "82652ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[101.6200237429843, 0.5122773661661794], [101.78183601973568, 2.2641433736476864], [100.32598525819338, 3.267721155518443], [98.70755798166265, 2.5025276890360852], [98.56085942567567, 0.7417954439430038], [100.01717887148773, -0.2453348702965925], [101.6200237429843, 0.5122773661661794]]]}}, {"type": "Feature", "properties": {"bin": "825287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.67879676017746, 14.427835621737403], [36.874987454352265, 12.93503437236236], [37.76602610597326, 11.617956875538155], [39.42626153713316, 11.771549826904991], [40.237805515149034, 13.226920062397731], [39.38257824381035, 14.565741490172128], [37.67879676017746, 14.427835621737403]]]}}, {"type": "Feature", "properties": {"bin": "8264effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.93964737536987, 12.094890519286077], [90.04264093796, 13.882373413972683], [88.50810517828272, 14.841938403281741], [86.88968997996328, 14.013560093847394], [86.80542094987004, 12.238125270361769], [88.32082106347694, 11.278608486091386], [89.93964737536987, 12.094890519286077]]]}}, {"type": "Feature", "properties": {"bin": "82856ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.17608937876561, 4.419053965759524], [66.91349507929881, 3.033400525560165], [68.15129713763096, 2.1675662435525287], [69.64920071846696, 2.717252413163618], [69.63381057288797, 4.311473809758376], [68.38059943963685, 5.1593147999421705], [67.17608937876561, 4.419053965759524]]]}}, {"type": "Feature", "properties": {"bin": "82604ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.11996500533266, 7.565126205166661], [67.09146394993576, 9.14655571978705], [65.86843056737345, 9.923822141141336], [64.70807868588639, 9.132230941835735], [64.74796639635831, 7.587707744113472], [65.93712700182017, 6.798203328671883], [67.11996500533266, 7.565126205166661]]]}}, {"type": "Feature", "properties": {"bin": "82526ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.61066222494643, 20.545951244369586], [51.70961363238334, 19.19911448214468], [52.32893111800051, 17.846581044052048], [53.80167691577675, 17.83921440841412], [54.68696935373799, 19.14885864900799], [54.115741772618584, 20.502391750748995], [52.61066222494643, 20.545951244369586]]]}}, {"type": "Feature", "properties": {"bin": "820887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.21328542634604, 61.10408688097462], [15.277419395430217, 59.85120470154142], [17.286200031965574, 58.92634320829851], [20.23591300367038, 59.225870067678485], [21.289181501450813, 60.46250989980111], [19.280998608847156, 61.41674993469948], [16.21328542634604, 61.10408688097462]]]}}, {"type": "Feature", "properties": {"bin": "826a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.800771734612553, -0.1522769274806444], [23.49024961634333, 1.416746256049863], [22.464273607656313, 2.7297657317309403], [20.76448426679086, 2.4912777849399794], [20.068876656179736, 0.9446533902388587], [21.07832382300607, -0.38589810886387704], [22.800771734612553, -0.1522769274806444]]]}}, {"type": "Feature", "properties": {"bin": "827c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.446797355352741, 3.7900590972316994], [-13.415529249900905, 4.742836477585103], [-13.708146703917999, 6.270965136275774], [-15.039356863077389, 6.880832664714147], [-16.100635789571058, 5.944638221700142], [-15.800861357538134, 4.381671861802315], [-14.446797355352741, 3.7900590972316994]]]}}, {"type": "Feature", "properties": {"bin": "82586ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.349597441138949, 17.499912999574217], [14.804131284942924, 15.87459897267477], [16.015121420164647, 14.587692564478072], [17.776100963774223, 14.89324660357966], [18.3651793828161, 16.505947603561054], [17.150771877544422, 17.826303096221643], [15.349597441138949, 17.499912999574217]]]}}, {"type": "Feature", "properties": {"bin": "822f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[157.78565423527834, 42.20959579263773], [158.38289640953528, 43.91230401757141], [156.6409775025345, 45.086614301383], [154.33229074236024, 44.52894779157283], [153.83665900080507, 42.828100172754496], [155.5463807691688, 41.68203748083565], [157.78565423527834, 42.20959579263773]]]}}, {"type": "Feature", "properties": {"bin": "8262f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.549882762724735, 7.302087248609304], [58.21229557627797, 6.022039688854253], [59.304121541917894, 5.2463359699483085], [60.7436772409406, 5.7794599611109305], [61.06019786174172, 7.076905935478182], [59.95886621545895, 7.824187579675636], [58.549882762724735, 7.302087248609304]]]}}, {"type": "Feature", "properties": {"bin": "8208e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.523290332812728, 66.10348492641157], [17.90900979606509, 65.28324062665737], [20.745683267270003, 65.89736287731276], [21.353092284120027, 67.38569079986429], [17.780068377707003, 68.04778142254096], [14.813658725827596, 67.35176867523612], [15.523290332812728, 66.10348492641157]]]}}, {"type": "Feature", "properties": {"bin": "820aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[102.1252042971817, 67.40964436109282], [104.95929291242936, 66.0797905343214], [109.18193165810936, 66.23835718068821], [111.11213206023598, 67.77024032063275], [108.41382440232776, 69.2260603613094], [103.59887585941732, 69.01988287882234], [102.1252042971817, 67.40964436109282]]]}}, {"type": "Feature", "properties": {"bin": "827ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.0938278791749, 0.8499475652488149], [175.7120324523446, 2.0200006444159904], [174.82903701594842, 3.022067879890788], [173.31118181449287, 2.823303681456528], [172.7165679999427, 1.627782179992269], [173.6152115035718, 0.6563254594597022], [175.0938278791749, 0.8499475652488149]]]}}, {"type": "Feature", "properties": {"bin": "820ae7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[96.90805882347452, 65.44170789923224], [99.75343158320663, 64.23021521485094], [103.56728434067718, 64.518640601611], [104.95929291242936, 66.0797905343214], [102.1252042971817, 67.40964436109282], [97.85633031511932, 67.05472013305771], [96.90805882347452, 65.44170789923224]]]}}, {"type": "Feature", "properties": {"bin": "827cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.559193205964707, -0.8762512952424141], [-12.538994180303641, 0.13278097466366448], [-12.83093803332417, 1.6714334957138457], [-14.150748959420309, 2.236251730754104], [-15.201596281865198, 1.2395596636497164], [-14.902138302963582, -0.33463809699523095], [-13.559193205964707, -0.8762512952424141]]]}}, {"type": "Feature", "properties": {"bin": "82648ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[96.71133979857908, 17.059221835731112], [96.8554277063972, 18.82325629288321], [95.29629913556025, 19.812213915250496], [93.6013197336276, 19.035204372299223], [93.47563122147147, 17.272417656365654], [95.02630472070098, 16.284890759540165], [96.71133979857908, 17.059221835731112]]]}}, {"type": "Feature", "properties": {"bin": "821017fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.12427703668834, 57.24878332837167], [43.54748161718775, 55.82080392484867], [46.4297765243137, 55.81586297018568], [48.09649671394388, 57.26027424180903], [46.74849496607573, 58.74251100374587], [43.646892149119445, 58.72551867912345], [42.12427703668834, 57.24878332837167]]]}}, {"type": "Feature", "properties": {"bin": "82192ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.7356231170279086, 60.17050935552437], [-5.5023349253001514, 59.7918551703578], [-5.832270115239387, 58.353838498476094], [-3.536381138969177, 57.31728796714347], [-0.9315871635106042, 57.68949737459286], [-0.46713246181046286, 59.10359393295083], [-2.7356231170279086, 60.17050935552437]]]}}, {"type": "Feature", "properties": {"bin": "820937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.2206596092963595, 64.98197678166125], [-9.419124599059314, 64.5835440503631], [-10.444977544778329, 63.09505407752544], [-7.720042056693346, 62.172198741500715], [-4.777634484041528, 62.56377272218282], [-4.37854545089313, 63.89675172018521], [-6.2206596092963595, 64.98197678166125]]]}}, {"type": "Feature", "properties": {"bin": "824107fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.972568467126, 19.81249979151533], [116.20287166938425, 21.431220761772177], [114.855932280017, 22.520124009614662], [113.25477246361253, 21.985684630017104], [113.033299903374, 20.343332432142883], [114.40365917669388, 19.25886502979531], [115.972568467126, 19.81249979151533]]]}}, {"type": "Feature", "properties": {"bin": "821627fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.07041826212776, 59.09655706521316], [159.2855655852143, 57.491104502796425], [161.509835263676, 56.379864127477], [164.51165118071367, 56.78088091436665], [165.548788622648, 58.32928734323274], [163.34704729720406, 59.53641309763331], [160.07041826212776, 59.09655706521316]]]}}, {"type": "Feature", "properties": {"bin": "824017fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[112.51532820378297, 27.835285494517798], [112.74092235558842, 29.36723199815498], [111.28994571488548, 30.415400329702234], [109.59299100020664, 29.931689194227175], [109.3791828560668, 28.384824057301795], [110.84999971671714, 27.33619031326379], [112.51532820378297, 27.835285494517798]]]}}, {"type": "Feature", "properties": {"bin": "82725ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.80408854252633, 4.052395404960635], [145.48360433376578, 2.2929167967014186], [146.82860631815936, 1.1464705664333998], [148.48089503708562, 1.7522051627212882], [148.80307138553923, 3.495611193583319], [147.47173217068118, 4.649620438680766], [145.80408854252633, 4.052395404960635]]]}}, {"type": "Feature", "properties": {"bin": "8216b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.40454512908818, 47.88781007001069], [155.98549323271973, 49.53964761301627], [154.0661665331384, 50.59949521249277], [151.61331591458006, 49.98075453667432], [151.1541228261415, 48.33401395109927], [153.02451738451757, 47.29973144060697], [155.40454512908818, 47.88781007001069]]]}}, {"type": "Feature", "properties": {"bin": "820ba7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.08692220857515, 58.00933225078081], [77.30873896348803, 56.27625374483332], [80.10885694905615, 55.4547540407015], [82.7966509361904, 56.31869702027608], [82.805942165506, 58.04644635312622], [79.89661787062164, 58.91829530833592], [77.08692220857515, 58.00933225078081]]]}}, {"type": "Feature", "properties": {"bin": "8210effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.440949046155716, 61.216399242787126], [58.50175484111734, 59.63485271107847], [61.80251305885726, 59.2821703348388], [64.28702706984248, 60.49396023865073], [63.44462184184533, 62.114389785017146], [59.88478475803628, 62.48594075268518], [57.440949046155716, 61.216399242787126]]]}}, {"type": "Feature", "properties": {"bin": "824e0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[147.7025877022133, 22.136425460569903], [147.37202830633396, 20.546746925508604], [148.735358800584, 19.41145197536027], [150.41236097271002, 19.872388403264], [150.74345249644446, 21.452013730332], [149.39749770933201, 22.581163304154337], [147.7025877022133, 22.136425460569903]]]}}, {"type": "Feature", "properties": {"bin": "827a47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[38.805670799239614, -0.9536012426282219], [39.38193371434512, 0.609462307518436], [38.285825439027946, 1.9283068208699659], [36.603820904737475, 1.706579969821451], [36.00337711333937, 0.14809840694751103], [37.10846153224667, -1.1936474792774954], [38.805670799239614, -0.9536012426282219]]]}}, {"type": "Feature", "properties": {"bin": "822c4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.99953482377553, 46.35528854938254], [53.88871226275167, 44.70954356692923], [56.28403216557175, 44.38667318271226], [57.925680058676136, 45.70964233249084], [57.129991613379985, 47.4006823365286], [54.59304884970548, 47.72386996179145], [52.99953482377553, 46.35528854938254]]]}}, {"type": "Feature", "properties": {"bin": "820177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.55184502811682, 73.4874564977175], [18.885658380221702, 74.295064225644], [18.056823801067942, 75.77008100847956], [11.809078968821634, 76.36649220549111], [7.365838464252189, 75.38953678987379], [9.200586264352173, 73.99667479266351], [14.55184502811682, 73.4874564977175]]]}}, {"type": "Feature", "properties": {"bin": "826887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.09812534479363, -0.5827354103262947], [116.31386223370123, 1.060212921844552], [115.05714917127528, 2.0107251710711176], [113.56358004337042, 1.2958056988116708], [113.35544426711898, -0.37603868715859484], [114.6328702588189, -1.3040893213367335], [116.09812534479363, -0.5827354103262947]]]}}, {"type": "Feature", "properties": {"bin": "824f6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.73505728408045, 12.203097693364747], [145.410940917621, 10.472716898667052], [146.77198432356215, 9.30602268133257], [148.44372833045466, 9.869570520683073], [148.7696100502551, 11.586993545144015], [147.42246432703843, 12.754155068239717], [145.73505728408045, 12.203097693364747]]]}}, {"type": "Feature", "properties": {"bin": "824edffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[147.13582799158445, 28.051410241915995], [147.39192058698316, 29.710213599338392], [145.91104009580025, 30.7898339553385], [144.21897111031763, 30.184320316496716], [144.03200044365963, 28.54361484413783], [145.46823819786155, 27.48960983163966], [147.13582799158445, 28.051410241915995]]]}}, {"type": "Feature", "properties": {"bin": "8282dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.6564645218774645, 3.2930086626395654], [8.344198848186501, 4.73215438908026], [7.212914562720072, 5.860392168376588], [5.720322083693563, 5.5902368764341395], [5.380973348826338, 4.2211544335698665], [6.16472429995407, 3.047731638915501], [7.6564645218774645, 3.2930086626395654]]]}}, {"type": "Feature", "properties": {"bin": "821537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[106.40349563788, 56.21061073758504], [108.13645321870726, 54.93566721518169], [110.95857252012345, 54.96683820192358], [112.28905213793897, 56.296364046092975], [110.63726557219142, 57.658994463170124], [107.55909424210289, 57.60288030347707], [106.40349563788, 56.21061073758504]]]}}, {"type": "Feature", "properties": {"bin": "828297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.401552408456116, 2.0129447691512135], [18.099816440714942, 3.5346227999232087], [17.14051423245727, 4.790542387748742], [15.505317072937482, 4.5409605608606505], [14.807652062069575, 3.046341729325485], [15.743841427341074, 1.7743965588127961], [17.401552408456116, 2.0129447691512135]]]}}, {"type": "Feature", "properties": {"bin": "826197fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[85.36909486363054, 14.944771861659476], [85.44533748453688, 16.700959516615516], [83.92145050975647, 17.596565113429698], [82.34724623125089, 16.74128168274286], [82.28977987881835, 15.003961607172462], [83.7878439473834, 14.102745522191507], [85.36909486363054, 14.944771861659476]]]}}, {"type": "Feature", "properties": {"bin": "824e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[153.5035330170596, 26.8063298503651], [153.89961337343811, 28.483839005577956], [152.44502932682522, 29.66931571364096], [150.62524081883691, 29.143844983524968], [150.2990076824332, 27.47262714354567], [151.72223946346867, 26.31971365411602], [153.5035330170596, 26.8063298503651]]]}}, {"type": "Feature", "properties": {"bin": "821607fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[161.509835263676, 56.379864127477], [160.72153823184556, 54.83293520328154], [162.7025195367175, 53.71333095002919], [165.51894231309208, 54.08819863964252], [166.47834808999363, 55.60019520266177], [164.51165118071367, 56.78088091436665], [161.509835263676, 56.379864127477]]]}}, {"type": "Feature", "properties": {"bin": "822187fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[59.38437217328617, 42.305966242342], [60.05412821541074, 40.600978012625475], [62.29898833850019, 40.134431196559035], [63.98547186413146, 41.35851009041053], [63.41674171645749, 43.09858640289575], [61.05621013274095, 43.5803991056681], [59.38437217328617, 42.305966242342]]]}}, {"type": "Feature", "properties": {"bin": "821e57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.952411824179674, 48.08486658471021], [24.013383707015638, 46.5958851330782], [25.532272646604852, 45.29673751871178], [27.96137390525891, 45.468586515077135], [28.956124606299714, 46.94058343091816], [27.469818592085993, 48.25805694866096], [24.952411824179674, 48.08486658471021]]]}}, {"type": "Feature", "properties": {"bin": "823d67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[84.7006542224061, 39.46595963291464], [84.64071731714614, 37.719575349439715], [86.47957206441347, 36.83981238321306], [88.40782809685466, 37.65558053012808], [88.57496213785487, 39.38084284181813], [86.70820981047306, 40.31276675619656], [84.7006542224061, 39.46595963291464]]]}}, {"type": "Feature", "properties": {"bin": "825307fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.110149533750196, 27.883745765043017], [39.18256944936378, 26.354108708483196], [40.13858369534422, 24.872879893475496], [41.97462737176898, 24.910712313479486], [42.90660193223469, 26.405538346477687], [41.9997109832086, 27.896961539061227], [40.110149533750196, 27.883745765043017]]]}}, {"type": "Feature", "properties": {"bin": "82645ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[88.22877891224678, 9.492563509578053], [88.32082106347694, 11.278608486091386], [86.80542094987004, 12.238125270361769], [85.21924329904921, 11.410516289730447], [85.14560470448076, 9.63913396151915], [86.63976451876434, 8.680323309063246], [88.22877891224678, 9.492563509578053]]]}}, {"type": "Feature", "properties": {"bin": "822c77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.504838818168665, 43.94551864497396], [46.52152478353462, 42.40250986151093], [48.749596276557455, 42.22096583203444], [50.08359791457066, 43.599205049931015], [49.12120810445012, 45.19505055214733], [46.765254333982135, 45.35944310131348], [45.504838818168665, 43.94551864497396]]]}}, {"type": "Feature", "properties": {"bin": "82152ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.25066319208894, 60.44170500833013], [112.08048576449471, 59.04446657501834], [115.35213447407268, 58.99255609954018], [117.1220329510228, 60.34986313246835], [115.4509268826033, 61.84098848787116], [111.82707785879496, 61.880144648040535], [110.25066319208894, 60.44170500833013]]]}}, {"type": "Feature", "properties": {"bin": "825acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[166.9391681425939, 20.40139257140547], [167.57555444357988, 22.002216995828245], [166.33737032835697, 23.323829080226908], [164.45727251367725, 23.00472505886229], [163.87220683591653, 21.383320130219147], [165.11431044302398, 20.100974479516896], [166.9391681425939, 20.40139257140547]]]}}, {"type": "Feature", "properties": {"bin": "822e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[146.9668723044961, 48.61518272872468], [147.3027143054959, 50.24943344878453], [145.32851606893576, 51.128254499725884], [143.09965372237684, 50.356260681051715], [142.88468797852207, 48.741413060101365], [144.77847701295235, 47.87812693834678], [146.9668723044961, 48.61518272872468]]]}}, {"type": "Feature", "properties": {"bin": "8238e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.368366542520371, 31.549004679734185], [2.005719972259752, 29.86576695279883], [3.414444565234508, 28.728328202600174], [5.2213927424219095, 29.254882451681667], [5.648193230269618, 30.9528601574355], [4.2041739956726545, 32.11010693139568], [2.368366542520371, 31.549004679734185]]]}}, {"type": "Feature", "properties": {"bin": "8262effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[64.74796639635831, 7.587707744113472], [64.70807868588639, 9.132230941835735], [63.535748628109495, 9.883591811382676], [62.436843475506734, 9.10412223692272], [62.48690644380468, 7.597268480798203], [63.62599952757674, 6.8326154846674125], [64.74796639635831, 7.587707744113472]]]}}, {"type": "Feature", "properties": {"bin": "82050ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.3119449238429, 80.07854005805554], [121.38060249097767, 78.4632819456192], [130.04574169958474, 78.12604185470187], [136.93797037496347, 79.32046590614668], [135.3099027962519, 81.08732982705071], [123.85904164290791, 81.53166944518023], [117.3119449238429, 80.07854005805554]]]}}, {"type": "Feature", "properties": {"bin": "8253a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[34.479715709621956, 24.614779035543457], [33.62755515091634, 23.02249939316592], [34.66579876614435, 21.574964631685955], [36.519629968706255, 21.70052871553139], [37.387530582020986, 23.259172952486864], [36.38757584764918, 24.72567602275491], [34.479715709621956, 24.614779035543457]]]}}, {"type": "Feature", "properties": {"bin": "823347fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.69550762823675, 26.302686300958758], [166.351059261008, 27.97310998846149], [165.00961973823703, 29.3219748704367], [163.01010907874655, 28.962107589001867], [162.41513478916204, 27.27499397487901], [163.7572487337804, 25.963743481425922], [165.69550762823675, 26.302686300958758]]]}}, {"type": "Feature", "properties": {"bin": "821437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.52274645502449, 54.65963026445359], [120.68196111409804, 53.23404398800581], [123.39704081028525, 52.970948697716096], [125.17346413124336, 54.11713534607264], [124.18141412031616, 55.608285290548395], [121.23304614895842, 55.88880372076997], [119.52274645502449, 54.65963026445359]]]}}, {"type": "Feature", "properties": {"bin": "826077fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.19363429195393, 7.473863638092713], [72.19157243513001, 9.124946440062544], [70.87100203342922, 9.955680589617987], [69.58665255798411, 9.144882676294474], [69.60253911676492, 7.5277646866054555], [70.88924811258364, 6.687643147557417], [72.19363429195393, 7.473863638092713]]]}}, {"type": "Feature", "properties": {"bin": "820a37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.8391711816032, 63.09426443748605], [82.82707956961833, 61.436707955225096], [85.83576563890131, 60.51030677274728], [88.94345469632086, 61.18598160028522], [89.24349927861624, 62.825241574451404], [86.15418384033971, 63.810259127150125], [82.8391711816032, 63.09426443748605]]]}}, {"type": "Feature", "properties": {"bin": "82255ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.69170917582021, 50.260451828557066], [104.97228253122022, 48.66996537978654], [106.49937702249476, 47.46316860921144], [108.68801493638473, 47.8078701936139], [109.487514271989, 49.34485051731556], [108.02439123919609, 50.590453890760706], [105.69170917582021, 50.260451828557066]]]}}, {"type": "Feature", "properties": {"bin": "8232d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[168.78558673419198, 42.52801927927894], [169.66101739290986, 44.17622039141847], [168.0733571050347, 45.52849481741495], [165.59338998115155, 45.200872103150886], [164.801825630107, 43.53501149666521], [166.402567405527, 42.21373266971295], [168.78558673419198, 42.52801927927894]]]}}, {"type": "Feature", "properties": {"bin": "824247fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[68.72158994214257, 30.5519657403398], [69.06409612010958, 28.912826044120038], [70.89619422207072, 28.318196535778466], [72.44910817414352, 29.330411718505946], [72.18948256096145, 30.985372428300344], [70.2926586907516, 31.613519939735284], [68.72158994214257, 30.5519657403398]]]}}, {"type": "Feature", "properties": {"bin": "820547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.41917474875845, 83.88011222728622], [145.39551760000364, 82.11076242705415], [155.46006182346585, 81.08340708780557], [166.91020795543056, 81.52344187827559], [172.21916569181485, 83.14393672156832], [161.82489010339506, 84.53450356990503], [145.41917474875845, 83.88011222728622]]]}}, {"type": "Feature", "properties": {"bin": "8230b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.11726536120723, 33.43902448232616], [118.36582203663166, 34.802491497037344], [116.99224448344454, 35.8424431064138], [115.34096073223206, 35.52242379555108], [115.1006492239189, 34.145029897677574], [116.50280999102597, 33.10122389472947], [118.11726536120723, 33.43902448232616]]]}}, {"type": "Feature", "properties": {"bin": "82524ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.32893111800051, 17.846581044052048], [51.45127123923521, 16.505445569112254], [52.06050891387425, 15.19570553741754], [53.50219111909585, 15.222611966472966], [54.365247125078064, 16.525688846315678], [53.80167691577675, 17.83921440841412], [52.32893111800051, 17.846581044052048]]]}}, {"type": "Feature", "properties": {"bin": "823227fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[171.1299066342305, 30.224678744640975], [171.92388426141025, 31.889318629341606], [170.60864237609607, 33.30902587127847], [168.47925358153148, 33.029168686825656], [167.74152015996484, 31.33997132073727], [169.07436240121478, 29.954738628780905], [171.1299066342305, 30.224678744640975]]]}}, {"type": "Feature", "properties": {"bin": "82764ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[166.7362829931107, 2.4301130175176993], [166.44080679403527, 0.8762512952424053], [167.46100581969637, -0.13278097466366132], [168.7457552635053, 0.40159449589312074], [169.0332646215832, 1.9196479625840501], [168.04411579097982, 2.9387624954065736], [166.7362829931107, 2.4301130175176993]]]}}, {"type": "Feature", "properties": {"bin": "827417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.968227928530229, 0.4822612846177788], [-6.09606314579416, 1.4034242894727265], [-6.362866832530322, 2.8319782586108553], [-7.510528664919241, 3.3757928754616686], [-8.412776379912252, 2.467580053183618], [-8.13731674878687, 1.0021068368703743], [-6.968227928530229, 0.4822612846177788]]]}}, {"type": "Feature", "properties": {"bin": "828697fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.34560531293286, 1.417621793592918], [89.44185686196764, 3.1743094571295916], [87.95884252681972, 4.1584945651648635], [86.39824664581512, 3.377564649468665], [86.31953758167887, 1.63232272461648], [87.78387603618698, 0.656128824074302], [89.34560531293286, 1.417621793592918]]]}}, {"type": "Feature", "properties": {"bin": "823e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.745279877629986, 19.47478423772583], [17.150771877544422, 17.826303096221643], [18.3651793828161, 16.505947603561054], [20.173628717060144, 16.802152480851372], [20.810554260240874, 18.435026826891445], [19.597919649817623, 19.787818768125756], [17.745279877629986, 19.47478423772583]]]}}, {"type": "Feature", "properties": {"bin": "820777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.558792289389446, 67.1535478452051], [-13.121278008102069, 68.22640078990388], [-16.825061753610598, 67.68783542166322], [-17.54611228138685, 66.09556511029363], [-14.942390307951198, 65.10982468378923], [-11.632420456928374, 65.631365577424], [-10.558792289389446, 67.1535478452051]]]}}, {"type": "Feature", "properties": {"bin": "825a67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[166.30352968038193, 10.430341604851654], [166.86243710851772, 11.85037967019004], [165.74783503796147, 13.036810003988302], [164.07108480662677, 12.763907533936957], [163.55384717379985, 11.323188725876642], [164.67056230846524, 10.175448079467836], [166.30352968038193, 10.430341604851654]]]}}, {"type": "Feature", "properties": {"bin": "822ce7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.41583299887398, 39.286073070842576], [49.298709077634776, 37.71979867392927], [51.384593691970856, 37.45345193003371], [52.69366205790297, 38.7628011665807], [51.86682981156752, 40.37937452916119], [49.67064440002375, 40.63612336794767], [48.41583299887398, 39.286073070842576]]]}}, {"type": "Feature", "properties": {"bin": "827ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[177.85914184964872, 0.8538127156394429], [177.21414244035904, -0.30158663198555874], [177.85728757138187, -1.64691893642205], [179.16216759032295, -1.8701721240825095], [179.83979656305476, -0.7197982113704009], [179.18004912118207, 0.6593876817348807], [177.85914184964872, 0.8538127156394429]]]}}, {"type": "Feature", "properties": {"bin": "821fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.188509553443464, 49.47027919866874], [0.7640259623867546, 47.90745035042651], [2.4589017174477275, 46.76373050573097], [4.652435425239344, 47.393027403288], [5.163510941569066, 48.9437639550549], [3.384771510058866, 49.85377035058952], [1.188509553443464, 49.47027919866874]]]}}, {"type": "Feature", "properties": {"bin": "825347fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.24020534516677, 26.311252759364823], [47.28903850351511, 24.8934713608716], [48.049054859825034, 23.440387634067395], [49.70750466598524, 23.403457452057452], [50.64760846071287, 24.785413840854247], [49.94122728254856, 26.239567196879804], [48.24020534516677, 26.311252759364823]]]}}, {"type": "Feature", "properties": {"bin": "8214e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[132.72120858422213, 54.355864647094066], [133.30160318508896, 52.825788696022364], [135.87637685881467, 52.280198800324484], [138.0446099782189, 53.212867439806466], [137.68629446846433, 54.77404577466255], [134.93107854084903, 55.374570052551114], [132.72120858422213, 54.355864647094066]]]}}, {"type": "Feature", "properties": {"bin": "821f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.848228907047912, 53.43156035343158], [6.259687055981991, 51.96477015603749], [8.088630904745564, 51.03969572472888], [10.54962281041145, 51.5639900357469], [11.245170492278879, 53.032039732054415], [9.374530816292092, 53.97551370235173], [6.848228907047912, 53.43156035343158]]]}}, {"type": "Feature", "properties": {"bin": "82098ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.159095939923656, 62.20500536598249], [5.479068693190383, 60.92198553471913], [7.438464343438979, 59.76718020289119], [10.279089080546552, 60.275949400006596], [11.080660058482376, 61.54051460002519], [8.899170411870465, 62.3039347443133], [6.159095939923656, 62.20500536598249]]]}}, {"type": "Feature", "properties": {"bin": "82438ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.42811891104727, 23.56492017325246], [57.96705293008713, 22.11944991960187], [59.6485427231173, 21.69339964405912], [60.85532320212389, 22.69992541759943], [60.36811543886133, 24.17853625643186], [58.620492916117506, 24.617956366786995], [57.42811891104727, 23.56492017325246]]]}}, {"type": "Feature", "properties": {"bin": "82852ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.091005080534565, 3.086198656817789], [59.75448759681556, 1.6912650463504575], [60.91238265131307, 0.8214484264912901], [62.41542918704237, 1.3777427146043637], [62.72776317867667, 2.791678040447159], [61.56192256345011, 3.6307171586980327], [60.091005080534565, 3.086198656817789]]]}}, {"type": "Feature", "properties": {"bin": "820b4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.56908542467754, 71.10525525369805], [78.23354745446635, 70.41413518408432], [82.42617769197177, 71.28025266518428], [82.21911892366025, 72.97478012112376], [76.91085753381934, 73.75952697882985], [72.49248675157796, 72.74554847287561], [73.56908542467754, 71.10525525369805]]]}}, {"type": "Feature", "properties": {"bin": "8220dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.75722897791712, 39.420496754076936], [80.80883203188255, 37.66164155905127], [82.72868707628261, 36.835377392607754], [84.64071731714614, 37.719575349439715], [84.7006542224061, 39.46595963291464], [82.73775567721657, 40.34209455836505], [80.75722897791712, 39.420496754076936]]]}}, {"type": "Feature", "properties": {"bin": "826a2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.520279149946738, 10.460500258159698], [26.839067792178863, 8.958444676839422], [27.86006724223391, 7.705179736978789], [29.54434210043852, 7.9232787333931745], [30.24910003135815, 9.396155420644655], [29.247299616085066, 10.680211197141585], [27.520279149946738, 10.460500258159698]]]}}, {"type": "Feature", "properties": {"bin": "823e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.343416368196838, 30.62734805513404], [17.675332540841065, 28.924476228387608], [19.012036761826856, 27.565395679553497], [21.01449990094078, 27.88358213061027], [21.73337025858129, 29.574118177068907], [20.40081144749384, 30.959290246190747], [18.343416368196838, 30.62734805513404]]]}}, {"type": "Feature", "properties": {"bin": "82610ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.05932466686099, 4.681532948717339], [79.0959876016423, 6.395834664879012], [77.6831884370156, 7.309851143729302], [76.26408541439848, 6.511600732441482], [76.24362813031698, 4.824023792146664], [77.62628444810427, 3.907860669139395], [79.05932466686099, 4.681532948717339]]]}}, {"type": "Feature", "properties": {"bin": "8217affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[150.85590113090583, 57.319746471970966], [150.57390528947013, 55.70220945507606], [152.97439270951853, 54.771063034398715], [155.7300738023138, 55.37052237191947], [156.27850722494347, 56.960700152391155], [153.8117703227267, 57.982558289177426], [150.85590113090583, 57.319746471970966]]]}}, {"type": "Feature", "properties": {"bin": "821867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.631094757975507, 50.60191112048409], [-2.9065278792841616, 50.14229216995713], [-3.243656268908248, 48.54730149141871], [-1.3966081625912776, 47.44351195977147], [0.7640259623867546, 47.90745035042651], [1.188509553443464, 49.47027919866874], [-0.631094757975507, 50.60191112048409]]]}}, {"type": "Feature", "properties": {"bin": "823ec7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[25.971461755128047, 22.262578499204032], [25.237114501285713, 20.615714083561897], [26.390135047058717, 19.22050575143428], [28.258650571169593, 19.44460716169293], [29.024566154789984, 21.06526875783672], [27.892105129471588, 22.48820212614365], [25.971461755128047, 22.262578499204032]]]}}, {"type": "Feature", "properties": {"bin": "825207fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.80980210855761, 20.511258562106715], [41.92847803544797, 19.026041560053464], [42.76521090809897, 17.62592852433609], [44.43917149465969, 17.698092381141624], [45.31955043153507, 19.14473269250019], [44.52803919822402, 20.557241782575726], [42.80980210855761, 20.511258562106715]]]}}, {"type": "Feature", "properties": {"bin": "820527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[88.74228226011789, 78.98640307577013], [95.5497514299602, 77.89229298392907], [103.73752764045747, 78.33541698107065], [107.09622890529207, 79.99758653524648], [100.04706554343251, 81.33805216653383], [89.55465951648463, 80.74026860708855], [88.74228226011789, 78.98640307577013]]]}}, {"type": "Feature", "properties": {"bin": "827eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[177.21414244035904, -0.30158663198555874], [177.85914184964872, 0.8538127156394429], [177.20820922631214, 2.213839096714813], [175.7120324523446, 2.0200006444159904], [175.0938278791749, 0.8499475652488149], [175.95074326529806, -0.10005961824174014], [177.21414244035904, -0.30158663198555874]]]}}, {"type": "Feature", "properties": {"bin": "826097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.40483871268952, 20.129444079798887], [79.44550314314861, 21.802902869447326], [77.95590549041005, 22.57120834868734], [76.45898064659956, 21.67923746478169], [76.43631730704988, 20.03059716689769], [77.89282385581691, 19.248933470521393], [79.40483871268952, 20.129444079798887]]]}}, {"type": "Feature", "properties": {"bin": "82642ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[95.87954336965345, 6.302256120592464], [96.01439866788061, 8.098158295557342], [94.50418580931292, 9.110882438715038], [92.8681448111406, 8.318400590972054], [92.75068396053875, 6.5239608231116515], [94.25169211331797, 5.520060963403995], [95.87954336965345, 6.302256120592464]]]}}, {"type": "Feature", "properties": {"bin": "823467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.391110502200526, 33.85538020110467], [-18.225633742765968, 32.94224979572863], [-18.188212875829294, 31.1522330100506], [-16.392618992120248, 30.28738493539216], [-14.608842439241553, 31.177353298158966], [-14.570452111245078, 32.95438593767852], [-16.391110502200526, 33.85538020110467]]]}}, {"type": "Feature", "properties": {"bin": "8232dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[164.801825630107, 43.53501149666521], [165.59338998115155, 45.200872103150886], [163.91021485526235, 46.48282657751594], [161.4364120189841, 46.067009122947894], [160.7405163800123, 44.39013119290587], [162.41945516878846, 43.139192074137064], [164.801825630107, 43.53501149666521]]]}}, {"type": "Feature", "properties": {"bin": "8232e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[166.38334579221544, 37.48242355039495], [167.14887257606568, 39.177426167855764], [165.6236769663251, 40.52916571770251], [163.3273563200653, 40.152445894050416], [162.64003640527375, 38.44296641219322], [164.16800602211273, 37.123942760722066], [166.38334579221544, 37.48242355039495]]]}}, {"type": "Feature", "properties": {"bin": "824eb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[159.95779566851195, 25.21826825334314], [160.48724479007151, 26.889142900269107], [159.0986063733261, 28.16457616795243], [157.19416682977592, 27.73113416142994], [156.72990126505292, 26.053719357465955], [158.10369371003847, 24.815427924853466], [159.95779566851195, 25.21826825334314]]]}}, {"type": "Feature", "properties": {"bin": "82521ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.76521090809897, 17.62592852433609], [41.90720337427504, 16.156940798733775], [42.72289931159838, 14.799802193355099], [44.354803391598516, 14.896546144002576], [45.21202480676731, 16.32641051881021], [44.43917149465969, 17.698092381141624], [42.76521090809897, 17.62592852433609]]]}}, {"type": "Feature", "properties": {"bin": "826447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.63761243039929, 6.725232583331402], [89.73715212379656, 8.51280994488121], [88.22877891224678, 9.492563509578053], [86.63976451876434, 8.680323309063246], [86.55834513437881, 6.904824352635797], [88.04780664109911, 5.929076253636084], [89.63761243039929, 6.725232583331402]]]}}, {"type": "Feature", "properties": {"bin": "826147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[74.85134577692807, 2.399389801338335], [74.86384001779038, 4.056393733113011], [73.52088426006247, 4.950736370868268], [72.19769146790779, 4.190793621051422], [72.19968749893948, 2.564066772676425], [73.510649552324, 1.6670215766999952], [74.85134577692807, 2.399389801338335]]]}}, {"type": "Feature", "properties": {"bin": "823cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.46422151370294, 20.17924509521623], [82.52375453867506, 21.874050409008092], [80.99921401034759, 22.680573068726023], [79.44550314314861, 21.802902869447326], [79.40483871268952, 20.129444079798887], [80.89919798431202, 19.312037048375995], [82.46422151370294, 20.17924509521623]]]}}, {"type": "Feature", "properties": {"bin": "8218affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.774233271028326, 52.12149149190319], [-21.117043703327738, 51.28757960329347], [-20.99201420363153, 49.623581785392574], [-18.65090558974211, 48.798472969414014], [-16.382340625694795, 49.60926939734891], [-16.38110054088066, 51.26683523519603], [-18.774233271028326, 52.12149149190319]]]}}, {"type": "Feature", "properties": {"bin": "821467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[132.34195728892178, 61.88141157505771], [133.1014860426898, 60.2211290965602], [136.3645533924403, 59.63246619231702], [139.14779395014713, 60.64107707213371], [138.75470261025907, 62.33797031071915], [135.19855827382102, 62.99451548804967], [132.34195728892178, 61.88141157505771]]]}}, {"type": "Feature", "properties": {"bin": "821137fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[25.08272232670786, 58.40154487035269], [26.868471483750643, 57.297880257684305], [29.401090538931886, 57.66586956210096], [30.297301068032212, 59.186367814145974], [28.46056633599109, 60.33478831384491], [25.77412047958825, 59.91628668960882], [25.08272232670786, 58.40154487035269]]]}}, {"type": "Feature", "properties": {"bin": "8268dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.83635985200188, 0.07918007660184262], [121.59228289022157, -1.6126106195395276], [122.89284782634661, -2.7228891610396535], [124.46111008527915, -2.1447104418903655], [124.71868440286572, -0.4337690657590338], [123.39466778821806, 0.6800844776357411], [121.83635985200188, 0.07918007660184262]]]}}, {"type": "Feature", "properties": {"bin": "823377fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[168.91929058653923, 25.25705643221339], [169.62892995630153, 26.904926687063615], [168.35070139552502, 28.281928894701036], [166.351059261008, 27.97310998846149], [165.69550762823675, 26.302686300958758], [166.98347528729872, 24.963091334263748], [168.91929058653923, 25.25705643221339]]]}}, {"type": "Feature", "properties": {"bin": "82556ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.7247164865458315, 20.605455654403837], [-4.2657934694023325, 19.872971694101718], [-4.472880089647737, 18.297332900396515], [-3.1827237352933886, 17.484597774332933], [-1.7113099039779127, 17.935404581817405], [-1.4579244921298804, 19.504910377173324], [-2.7247164865458315, 20.605455654403837]]]}}, {"type": "Feature", "properties": {"bin": "823d47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[86.47957206441347, 36.83981238321306], [86.37447080326292, 35.12811893178941], [88.09993919181939, 34.254864019886554], [89.95176048650507, 35.041966837414684], [90.15288642632358, 36.72983681815289], [88.40782809685466, 37.65558053012808], [86.47957206441347, 36.83981238321306]]]}}, {"type": "Feature", "properties": {"bin": "828687fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[87.69784177235935, -1.0694846491681467], [87.78387603618698, 0.656128824074302], [86.31953758167887, 1.63232272461648], [84.78971932948328, 0.8737500859223797], [84.72090978977324, -0.8386726139007215], [86.16472729338828, -1.8061392691515386], [87.69784177235935, -1.0694846491681467]]]}}, {"type": "Feature", "properties": {"bin": "825a0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.85778972168902, 13.7977503711094], [171.51329055975825, 15.277141848586798], [170.41754931509686, 16.540713672141628], [168.65279280829242, 16.286127926718763], [168.03624941787785, 14.779799301747063], [169.14403090083158, 13.554585784023473], [170.85778972168902, 13.7977503711094]]]}}, {"type": "Feature", "properties": {"bin": "827307fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[131.28928321485736, 11.962059629530703], [130.99970134176166, 10.212184576264093], [132.39427407836698, 9.098385089611767], [134.08929830029973, 9.737940188235644], [134.38928496076238, 11.496463761756031], [132.9842311604419, 12.607157483299329], [131.28928321485736, 11.962059629530703]]]}}, {"type": "Feature", "properties": {"bin": "82656ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[93.76296591620995, -1.530036116519424], [93.88316686190382, 0.20786750723228084], [92.40599584744335, 1.196427511610166], [90.8204984152339, 0.4335749811918005], [90.71723526584819, -1.3006030285245263], [92.18241690453186, -2.276164548591812], [93.76296591620995, -1.530036116519424]]]}}, {"type": "Feature", "properties": {"bin": "82180ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.362891292036801, 51.696862788869424], [-11.731413865282882, 51.05975209495003], [-11.854418733638266, 49.416339454352666], [-9.724736207832674, 48.43009421958324], [-7.460509080062738, 49.05681780552428], [-7.224493860559396, 50.67904691252102], [-9.362891292036801, 51.696862788869424]]]}}, {"type": "Feature", "properties": {"bin": "823007fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.58175445790938, 40.20568112033379], [120.72800464134475, 38.91005447635118], [122.03727578685184, 37.880975054067605], [123.69953711381342, 38.51776205335628], [123.45342978278158, 39.958428925992706], [121.58175445790938, 40.20568112033379]]]}}, {"type": "Feature", "properties": {"bin": "822c27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[39.93874603383862, 42.73629845548312], [38.856462963835455, 41.33067402303145], [39.977570071953565, 39.8454833330193], [42.11651610751938, 39.762213320715894], [43.20483211516568, 41.14259876763572], [42.15067363790146, 42.63127069249239], [39.93874603383862, 42.73629845548312]]]}}, {"type": "Feature", "properties": {"bin": "8272c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[141.81004725453448, -0.6981011755771], [141.49703056391817, -2.4535034056910705], [142.8598025735985, -3.580329366929633], [144.52879760027403, -2.961898916417789], [144.84594493934435, -1.2176594213674992], [143.49043326364475, -0.08034191858740049], [141.81004725453448, -0.6981011755771]]]}}, {"type": "Feature", "properties": {"bin": "82408ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.02704432234283, 32.92767555609793], [110.24734171732878, 34.37479165494242], [108.72615837117118, 35.36191434918376], [106.96772054606103, 34.90299087075072], [106.76141020400117, 33.446090216821595], [108.29899073279826, 32.45742269990468], [110.02704432234283, 32.92767555609793]]]}}, {"type": "Feature", "properties": {"bin": "821417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[123.39704081028525, 52.970948697716096], [124.34578282066302, 51.53954908797745], [126.91100588991843, 51.19812885594881], [128.71966493700788, 52.26182662674445], [127.94077240151931, 53.74777826688238], [125.17346413124336, 54.11713534607264], [123.39704081028525, 52.970948697716096]]]}}, {"type": "Feature", "properties": {"bin": "8262dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.876642221370076, 4.986310192743086], [61.56192256345011, 3.6307171586980327], [62.72776317867667, 2.791678040447159], [64.21407547144301, 3.338416815538807], [64.50383093468551, 4.710221078439117], [63.33286230151251, 5.519529774270265], [61.876642221370076, 4.986310192743086]]]}}, {"type": "Feature", "properties": {"bin": "82095ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.813658725827596, 67.35176867523612], [17.780068377707003, 68.04778142254096], [17.152178878591858, 69.36320659442477], [13.072820073815873, 69.93399315449412], [10.043311931125118, 69.12144885595274], [11.133280035906186, 67.85995297513011], [14.813658725827596, 67.35176867523612]]]}}, {"type": "Feature", "properties": {"bin": "822fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[156.15894649011236, 37.049067998742636], [156.67552440755316, 38.77445743097016], [155.03867203020985, 39.96484113905747], [152.91700823580283, 39.39984822241461], [152.48972895786574, 37.67916036936991], [154.09368225574624, 36.51782797902877], [156.15894649011236, 37.049067998742636]]]}}, {"type": "Feature", "properties": {"bin": "820837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.646201116757433, 64.66507030510412], [4.694919398687951, 64.57085801287526], [4.012620898449943, 63.32706132801839], [6.159095939923656, 62.20500536598249], [8.899170411870468, 62.3039347443133], [9.693860813817636, 63.51970712744607], [7.646201116757433, 64.66507030510412]]]}}, {"type": "Feature", "properties": {"bin": "82690ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.37231939217895, 12.105101652283977], [116.59785067889807, 13.778428042849484], [115.29323700311619, 14.847088154391962], [113.7398993154817, 14.230760809784227], [113.5224777854918, 12.529165955427235], [114.84982570195432, 11.47212367111249], [116.37231939217895, 12.105101652283977]]]}}, {"type": "Feature", "properties": {"bin": "824fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[164.53519134064652, 18.522808395386146], [165.11431044302398, 20.100974479516896], [163.87220683591653, 21.383320130219147], [162.0515932531476, 21.047030278267332], [161.5245646641215, 19.451782018023785], [162.76471522086624, 18.20918575220197], [164.53519134064652, 18.522808395386146]]]}}, {"type": "Feature", "properties": {"bin": "823f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.244313475659819, 37.523712365785194], [12.629034522814488, 35.83666250378512], [14.102434482055234, 34.577453494704955], [16.203432101296617, 34.98381016816727], [16.884717233845183, 36.66836993169907], [15.40073900356166, 37.94968889463011], [13.244313475659819, 37.523712365785194]]]}}, {"type": "Feature", "properties": {"bin": "8221b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.52729405295955, 41.39291048343534], [56.28323135160541, 39.7296014099063], [58.49038459954017, 39.336579896677115], [60.05412821541074, 40.600978012625475], [59.38437217328617, 42.305966242342], [57.06015141119557, 42.70540478677203], [55.52729405295955, 41.39291048343534]]]}}, {"type": "Feature", "properties": {"bin": "820997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.229785449235649, 58.25202580757624], [3.654940544612971, 56.86632091834963], [5.52364654929031, 55.706768465152265], [8.115982248879545, 56.27047063504287], [8.799628381983899, 57.64025558472873], [6.766112799653783, 58.44709614018101], [4.229785449235649, 58.25202580757624]]]}}, {"type": "Feature", "properties": {"bin": "827707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[152.70919576787776, 8.086549126803146], [152.38512910779167, 6.378336772450324], [153.66227784068005, 5.228228133654802], [155.24082093844143, 5.7817423109599515], [155.56246912073013, 7.4664050956982315], [154.3083888181753, 8.621215172764751], [152.70919576787776, 8.086549126803146]]]}}, {"type": "Feature", "properties": {"bin": "82392ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.162634555966773, 43.62589881783318], [-6.231987967712124, 43.00917586374685], [-6.464181984237864, 41.30855957084678], [-4.708227372662669, 40.25602599301953], [-2.7286180787605163, 40.87178460953809], [-2.4177958307002343, 42.540479965651194], [-4.162634555966773, 43.62589881783318]]]}}, {"type": "Feature", "properties": {"bin": "824387fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.59321578040126, 22.914904651579405], [55.17740302761857, 21.50559574190196], [56.8323305882829, 21.112001099003493], [57.96705293008713, 22.11944991960187], [57.42811891104727, 23.56492017325246], [55.70727295656769, 23.96705625925079], [54.59321578040126, 22.914904651579405]]]}}, {"type": "Feature", "properties": {"bin": "824a07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[128.80414635159454, 24.98400610534958], [128.51859444064664, 23.408710771514148], [129.92909651550156, 22.458018873293096], [131.64056007611558, 23.093332059613815], [131.9381410506925, 24.67988597236771], [130.51259100937042, 25.620271075222703], [128.80414635159454, 24.98400610534958]]]}}, {"type": "Feature", "properties": {"bin": "821187fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[34.25928669926778, 53.94825773758088], [35.73345537974305, 52.627432816707355], [38.24266638392084, 52.766684172187155], [39.43418190685787, 54.26470735156076], [37.971642599038965, 55.63841429469692], [35.2991114114946, 55.46002004057114], [34.25928669926778, 53.94825773758088]]]}}, {"type": "Feature", "properties": {"bin": "823197fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.90121573302835, 36.538080540779866], [114.1399009973413, 37.869616358975115], [113.146437480174, 38.96657364537776], [111.3792518372824, 38.62271186702195], [110.69461054882275, 37.16389648579593], [112.19581072885283, 36.17883855958396], [113.90121573302835, 36.538080540779866]]]}}, {"type": "Feature", "properties": {"bin": "822407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[99.8598622140046, 46.12521849972981], [99.345530873997, 44.46304525486081], [100.95470627909016, 43.34627770091953], [103.04909924039622, 43.84513423442955], [103.65410322050224, 45.45919731340779], [102.07881099524842, 46.6227723170158], [99.8598622140046, 46.12521849972981]]]}}, {"type": "Feature", "properties": {"bin": "820aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[91.70963813960331, 60.13979535943566], [91.32945805583581, 58.47686578702072], [93.82162481696616, 57.38598399009562], [96.69913454978891, 57.90540567596511], [97.29057929790196, 59.53197244941361], [94.80308515661083, 60.67735411936203], [91.70963813960331, 60.13979535943566]]]}}, {"type": "Feature", "properties": {"bin": "826337fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.68696935373799, 19.14885864900799], [53.80167691577675, 17.83921440841412], [54.365247125078064, 16.525688846315678], [55.76821613885496, 16.521023572370684], [56.80173723984203, 17.4331954374473], [56.280567687978625, 18.763546954992826], [54.68696935373799, 19.14885864900799]]]}}, {"type": "Feature", "properties": {"bin": "822d57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[38.777546191050156, 44.19857132247734], [39.93874603383862, 42.73629845548312], [42.150673637901505, 42.63127069249239], [43.258394559925, 44.04754241934247], [42.14657468326135, 45.53950517227631], [39.89716674041972, 45.5595774995064], [38.777546191050156, 44.19857132247734]]]}}, {"type": "Feature", "properties": {"bin": "8273affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.42589846573782, 6.689605773929638], [130.1416729036941, 4.923762739491519], [131.52242571075033, 3.790658976213928], [133.19951261843684, 4.422917404204752], [133.49441060685513, 6.19767652780886], [132.10191338580537, 7.3316243852809855], [130.42589846573782, 6.689605773929638]]]}}, {"type": "Feature", "properties": {"bin": "822d07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.092042340502196, 42.790722675411104], [32.08615225875723, 41.29694332763067], [33.362059364808566, 39.8539165470676], [35.59461531057751, 39.89310904128938], [36.62670018676323, 41.3634074805156], [35.403068966717576, 42.817984971221726], [33.092042340502196, 42.790722675411104]]]}}, {"type": "Feature", "properties": {"bin": "82614ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.19968749893948, 2.564066772676425], [72.19769146790779, 4.190793621051422], [70.89822508399855, 5.062235631594696], [69.63381057288797, 4.311473809758376], [69.64920071846699, 2.717252413163643], [70.91589460164022, 1.8414007243708719], [72.19968749893948, 2.564066772676425]]]}}, {"type": "Feature", "properties": {"bin": "82646ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[87.95884252681972, 4.1584945651648635], [88.04780664109911, 5.929076253636084], [86.55834513437881, 6.904824352635797], [85.00083019702879, 6.104776389470908], [84.9296665436273, 4.348486695475441], [86.39824664581512, 3.377564649468665], [87.95884252681972, 4.1584945651648635]]]}}, {"type": "Feature", "properties": {"bin": "825ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.4917755998185, 21.191636509336988], [173.23062212965775, 22.777763428069573], [172.06816427253818, 24.14927660114088], [170.1468684664771, 23.89726226203983], [169.45111251447574, 22.28219197346516], [170.63161405939337, 20.94774570072406], [172.4917755998185, 21.191636509336988]]]}}, {"type": "Feature", "properties": {"bin": "827a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[49.850632032874856, 4.753889465894764], [50.2899341797364, 6.134248764846948], [49.27165553777247, 7.35045425670836], [47.79179491022667, 7.211314785105253], [47.32428914393005, 5.828550607177395], [48.36465914155411, 4.586814597803058], [49.850632032874856, 4.753889465894764]]]}}, {"type": "Feature", "properties": {"bin": "827577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.0480074617937822, 5.588679090661898], [-1.2768497657972255, 4.273265982323713], [-0.186075822013145, 3.2300014573740743], [1.1589044753771074, 3.4728049331861905], [1.4259913686082732, 4.791199116946009], [0.309803963535533, 5.864518365517626], [-1.0480074617937822, 5.588679090661898]]]}}, {"type": "Feature", "properties": {"bin": "825a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.0767801443572, 20.579253639820692], [-178.22376950605556, 22.09268123220156], [-179.2113698421699, 23.49281399825079], [178.9095345677144, 23.349452402918914], [178.08136767105975, 21.797393768021593], [179.10550716284808, 20.427514765045647], [-179.0767801443572, 20.579253639820692]]]}}, {"type": "Feature", "properties": {"bin": "82245ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.53865882676416, 43.87509579817304], [109.80004241000374, 42.366067712351416], [110.98113865629121, 41.21659856438631], [112.84378816030141, 41.54150553872736], [113.62768041043816, 42.996232909846114], [112.50749462316774, 44.17972718268073], [110.53865882676416, 43.87509579817304]]]}}, {"type": "Feature", "properties": {"bin": "822f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.24672216609224, 40.51908889731177], [151.65762929746157, 42.229172395054455], [149.91719976591605, 43.29818750239016], [147.81728377284585, 42.633406882356155], [147.50435309695874, 40.93751143528539], [149.19306703922015, 39.89128943394794], [151.24672216609224, 40.51908889731177]]]}}, {"type": "Feature", "properties": {"bin": "827277fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[141.69432910913807, 7.537486471095007], [141.37792967293944, 5.766943397442562], [142.75686463705537, 4.606028555705816], [144.44541969740206, 5.212334399771164], [144.76610778205162, 6.9740074974499136], [143.39443496211936, 8.138603366057211], [141.69432910913807, 7.537486471095007]]]}}, {"type": "Feature", "properties": {"bin": "82251ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.32732438995292, 49.48816960094339], [93.94422685987966, 47.76905576651892], [95.84511450338546, 46.67922161249402], [98.1210260563531, 47.25866952312831], [98.62845319272265, 48.93666974733418], [96.74084261178157, 50.07723161220353], [94.32732438995292, 49.48816960094339]]]}}, {"type": "Feature", "properties": {"bin": "820587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.93637115317803, 70.80573675666334], [118.31111995950909, 69.22420719506948], [123.24899078013112, 69.0090275410405], [126.56011071575868, 70.35455175835216], [124.75360006217667, 72.04776325602842], [118.98141478359176, 72.28704712420588], [115.93637115317803, 70.80573675666334]]]}}, {"type": "Feature", "properties": {"bin": "8240e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[106.15534881401967, 28.8697633389869], [106.35525291371638, 30.428474901748064], [104.80495247794913, 31.418214271205258], [103.04526159350907, 30.84937126426324], [102.86125602429053, 29.28212072050655], [104.42055985823377, 28.291741502628366], [106.15534881401967, 28.8697633389869]]]}}, {"type": "Feature", "properties": {"bin": "823887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.114662381767312, 28.037213840900282], [-4.799371159116904, 27.320116005158603], [-5.0155884996367694, 25.64651817513538], [-3.599887600906401, 24.72374401122294], [-1.9763966693942796, 25.43409840333443], [-1.7088657489305177, 27.07368875784344], [-3.114662381767312, 28.037213840900282]]]}}, {"type": "Feature", "properties": {"bin": "820b6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.2813794283989, 70.5451205131701], [69.97164984865374, 70.07339600383801], [73.56908542467754, 71.10525525369805], [72.49248675157796, 72.74554847287561], [67.04817195975174, 73.26746640072778], [63.503066128473, 72.09256483244164], [65.2813794283989, 70.5451205131701]]]}}, {"type": "Feature", "properties": {"bin": "821077fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.55624361633402, 64.44174640765343], [49.10342280169707, 63.03058585396605], [52.686021641610814, 62.94301605404716], [55.03553738085308, 64.26898911013433], [53.666980906005925, 65.73440250373991], [49.747703637529234, 65.81997609126962], [47.55624361633402, 64.44174640765343]]]}}, {"type": "Feature", "properties": {"bin": "8208effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[21.353092284120052, 67.3856907998643], [24.61096300749793, 67.96067555658824], [24.49264698397638, 69.30502245348691], [20.59724429383497, 70.05215151950888], [17.152178878591858, 69.36320659442477], [17.780068377707003, 68.04778142254096], [21.353092284120052, 67.3856907998643]]]}}, {"type": "Feature", "properties": {"bin": "821fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.8811335596706447, 51.360376195950124], [3.384771510058866, 49.85377035058952], [5.163510941569066, 48.9437639550549], [7.489805747586691, 49.52621240698069], [8.088630904745564, 51.03969572472888], [6.259687055981991, 51.96477015603749], [3.8811335596706447, 51.360376195950124]]]}}, {"type": "Feature", "properties": {"bin": "8242c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[68.59550918411969, 23.19553113199099], [68.90585080990593, 21.70055792236084], [70.55388096139677, 21.159402214236277], [71.94311998575824, 22.08300704162582], [71.699171420447, 23.59330535221809], [69.99854548909617, 24.16575450852624], [68.59550918411969, 23.19553113199099]]]}}, {"type": "Feature", "properties": {"bin": "824adffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.2993897157707, 16.685821292347388], [134.9943333762424, 14.973539713678374], [136.4065502724283, 13.866921861790896], [138.12796381904693, 14.477922221250962], [138.44137121244634, 16.1935588094142], [137.0254728211787, 17.295269329360426], [135.2993897157707, 16.685821292347388]]]}}, {"type": "Feature", "properties": {"bin": "821577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.4509268826033, 61.84098848787116], [117.1220329510228, 60.34986313246835], [120.55986456111661, 60.16970228253804], [122.68704503288093, 61.47366203478103], [121.25420033824275, 63.052513018204294], [117.42814460389903, 63.240486262489966], [115.4509268826033, 61.84098848787116]]]}}, {"type": "Feature", "properties": {"bin": "824a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.11552056566204, 15.488092524962621], [123.85482415801252, 13.797500809062363], [125.2087603087871, 12.77134857878], [126.84521080631441, 13.444723989353694], [127.11938439610546, 15.15441616066631], [125.74386789284029, 16.171868435032273], [124.11552056566204, 15.488092524962621]]]}}, {"type": "Feature", "properties": {"bin": "8220f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[74.43633811146184, 41.761836643769904], [74.67702184131929, 39.98284774466395], [76.78083489243026, 39.23939703043915], [78.71435321532265, 40.2331976599755], [78.59629634036548, 42.01404801298896], [76.42128602273652, 42.80087782083737], [74.43633811146184, 41.761836643769904]]]}}, {"type": "Feature", "properties": {"bin": "8286cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.51618473099735, -2.73178111869478], [77.543258750727, -1.0989978013306567], [76.18359204443267, -0.1662406078596011], [74.82676115190374, -0.8701881901666614], [74.64313238266189, -2.3876427036362102], [75.99571748730595, -3.3329333146242335], [77.51618473099735, -2.73178111869478]]]}}, {"type": "Feature", "properties": {"bin": "823317fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[177.59601061741438, 27.77533469733761], [178.4754053347224, 29.376139351007176], [177.32677150424374, 30.837099337926404], [175.26146031238733, 30.666435006818297], [174.42022403972663, 29.031544041383512], [175.60359465105446, 27.601356471103664], [177.59601061741438, 27.77533469733761]]]}}, {"type": "Feature", "properties": {"bin": "824b67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.55784267390348, 33.76864439541193], [130.26073198874622, 32.38900103964749], [131.70221570848454, 31.564914230428208], [133.45367950743437, 32.12930962110428], [133.76231271222144, 33.5154682243362], [132.30837745804203, 34.33115860097915], [130.55784267390348, 33.76864439541193]]]}}, {"type": "Feature", "properties": {"bin": "827237fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[133.49441060685513, 6.19767652780886], [133.19951261843684, 4.422917404204752], [134.58891943431576, 3.2775362201780123], [136.28030878092613, 3.9049271402466674], [136.58431778032, 5.683541004203646], [135.18824101316045, 6.831302060536393], [133.49441060685513, 6.19767652780886]]]}}, {"type": "Feature", "properties": {"bin": "821697fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[156.6409775025345, 45.086614301383], [157.23186959426974, 46.76731330635256], [155.40454512908818, 47.88781007001069], [153.02451738451757, 47.29973144060697], [152.544806053949, 45.62266462732754], [154.33229074236024, 44.52894779157283], [156.6409775025345, 45.086614301383]]]}}, {"type": "Feature", "properties": {"bin": "8274affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.13731674878687, 1.0021068368703743], [-9.057746405457742, 0.05139740489565597], [-8.778631764956566, -1.4302139367058884], [-7.2834320000573145, -1.627782179992269], [-6.384788496428219, -0.6563254594597022], [-6.9682279285302124, 0.4822612846177597], [-8.13731674878687, 1.0021068368703743]]]}}, {"type": "Feature", "properties": {"bin": "827597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.118591679205212, 4.156901458392333], [-11.136986715149366, 5.079855936610059], [-11.055247895999136, 6.422432286737444], [-12.344346110330108, 7.035853616998724], [-13.708146703917999, 6.270965136275774], [-13.415529249900905, 4.742836477585103], [-12.118591679205212, 4.156901458392333]]]}}, {"type": "Feature", "properties": {"bin": "821617fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[161.8811466359504, 52.14427457373202], [162.7025195367175, 53.71333095002919], [160.72153823184559, 54.83293520328151], [157.93851878083532, 54.35096980290143], [157.24956756466472, 52.773824941655235], [159.20721767474788, 51.685488583514015], [161.8811466359504, 52.14427457373202]]]}}, {"type": "Feature", "properties": {"bin": "8254f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.398619029755448, 13.434493335832748], [-17.860226364438105, 12.585841373390625], [-17.8363676518402, 11.063783036396401], [-16.3995817269834, 10.397267061984039], [-14.970363295558462, 11.216545454321968], [-14.945816427724187, 12.73084648058285], [-16.398619029755448, 13.434493335832748]]]}}, {"type": "Feature", "properties": {"bin": "828577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[62.72776317867667, 2.791678040447159], [62.41542918704237, 1.3777427146043637], [63.615417278622196, 0.4935317012144658], [65.13235296719137, 1.0544791906363753], [65.41803771376816, 2.4849461904515096], [64.21407547144301, 3.338416815538807], [62.72776317867667, 2.791678040447159]]]}}, {"type": "Feature", "properties": {"bin": "825a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.15934102826995, 15.737083294175456], [165.73204604137288, 17.26650116658574], [164.53519134064652, 18.522808395386146], [162.76471522086624, 18.20918575220197], [162.24028568692634, 16.661083655670126], [163.4367872863556, 15.444603170669472], [165.15934102826995, 15.737083294175456]]]}}, {"type": "Feature", "properties": {"bin": "82592ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.333174076650933, 23.712268083774752], [1.9975756661715074, 22.067175689495624], [3.304049268856912, 20.900755829120246], [4.976885601305341, 21.35446718195976], [5.367573705123171, 23.01114705036288], [4.030548380417124, 24.203144761743964], [2.333174076650933, 23.712268083774752]]]}}, {"type": "Feature", "properties": {"bin": "826237fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.94007484027042, 12.754829243237467], [55.11347914716531, 11.501694573369337], [55.61454325087619, 10.32071645871472], [56.902221373182165, 10.387346933737653], [57.712292451235164, 11.603707803548188], [57.25141623171747, 12.789486972685358], [55.94007484027042, 12.754829243237467]]]}}, {"type": "Feature", "properties": {"bin": "8218effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.892165114977681, 46.75969876815572], [-12.082095965734656, 46.05586565890569], [-12.187655377121208, 44.34367553397141], [-10.20321881864728, 43.35694709497956], [-8.101589192291552, 44.0506310521871], [-7.898251979650981, 45.74021980445384], [-9.892165114977681, 46.75969876815572]]]}}, {"type": "Feature", "properties": {"bin": "823f4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.51611605466937, 35.182951208422544], [29.62212976672187, 33.57752330529464], [30.846140361421924, 32.114365722925704], [32.928330868996916, 32.24010231871653], [33.851253012369405, 33.82015951565442], [32.66550041238105, 35.29989354908048], [30.51611605466937, 35.182951208422544]]]}}, {"type": "Feature", "properties": {"bin": "823267fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[161.6126493581132, 30.27451150085969], [162.211212883488, 31.982389182360997], [160.75440994060068, 33.286327963351994], [158.70943836245695, 32.84617987368649], [158.1826949335263, 31.130589516373846], [159.62747006587315, 29.862023974306773], [161.6126493581132, 30.27451150085969]]]}}, {"type": "Feature", "properties": {"bin": "823daffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.64552676107122, 28.973818728775914], [77.76521844292438, 27.352248189063147], [79.45519247371638, 26.664479844037594], [81.0658991036049, 27.554872894759516], [81.02837815214555, 29.17375414949066], [79.297948374044, 29.906253411886752], [77.64552676107122, 28.973818728775914]]]}}, {"type": "Feature", "properties": {"bin": "8208affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.102101615280446, 61.96354053750143], [16.21328542634604, 61.10408688097462], [19.280998608847177, 61.41674993469948], [19.718783419633482, 62.910503878993765], [17.53544630840838, 63.80079265321215], [15.046206854523549, 63.166721052064105], [14.102101615280446, 61.96354053750143]]]}}, {"type": "Feature", "properties": {"bin": "822527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[90.6561606716588, 55.08699728590972], [90.35668181792352, 53.36566283700183], [92.61039247121813, 52.29787608358161], [95.17523164806224, 52.90017007418974], [95.64595779767541, 54.5866608798214], [93.38702071488433, 55.70726810690736], [90.6561606716588, 55.08699728590972]]]}}, {"type": "Feature", "properties": {"bin": "8204f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[149.98712931534274, 70.36472443894685], [149.60055659857568, 68.58158804186569], [153.47700907770454, 67.54065274369614], [157.93121236666437, 68.15646355071095], [159.0320291871327, 69.89552465791986], [154.9982446340457, 71.07204267660472], [149.98712931534274, 70.36472443894685]]]}}, {"type": "Feature", "properties": {"bin": "827207fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[136.58431778032, 5.683541004203646], [136.28030878092613, 3.9049271402466674], [137.67042176448078, 2.751930410072497], [139.36640825262376, 3.374109793703046], [139.67778765727132, 5.15141732453551], [138.28626164276986, 6.308249085468562], [136.58431778032, 5.683541004203646]]]}}, {"type": "Feature", "properties": {"bin": "822fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[158.84760391998597, 39.27230382066778], [159.44828133660147, 40.9892869279484], [157.78565423527834, 42.20959579263773], [155.5463807691688, 41.68203748083565], [155.03867203020985, 39.96484113905747], [156.67552440755316, 38.77445743097016], [158.84760391998597, 39.27230382066778]]]}}, {"type": "Feature", "properties": {"bin": "824127fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.05448467210091, 17.09117189341816], [117.28561870360247, 18.725214708850935], [115.972568467126, 19.81249979151533], [114.40365917669388, 19.25886502979531], [114.18047136836357, 17.598420680749204], [115.51776838523509, 16.51791178254162], [117.05448467210091, 17.09117189341816]]]}}, {"type": "Feature", "properties": {"bin": "824aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.90903454276271, 20.45624528545013], [124.64261620566455, 18.82008610796306], [126.01426412677232, 17.847756711055307], [127.6733813746568, 18.52278152929221], [127.95321745134466, 20.176038965152888], [126.5607815576436, 21.13746551009211], [124.90903454276271, 20.45624528545013]]]}}, {"type": "Feature", "properties": {"bin": "8268b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.35544426711898, -0.37603868715859484], [113.56358004337042, 1.2958056988116708], [112.25689346735427, 2.2626982583635287], [110.72399425598122, 1.535865775502144], [110.52508329787003, -0.16182599287443586], [111.84943440950715, -1.1069634457837352], [113.35544426711898, -0.37603868715859484]]]}}, {"type": "Feature", "properties": {"bin": "8262cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.62599952757672, 6.83261548466737], [63.33286230151251, 5.519529774270265], [64.50383093468551, 4.710221078439117], [65.97095215540618, 5.242929409571681], [65.93712700182017, 6.798203328671883], [64.74796639635831, 7.587707744113472], [63.62599952757672, 6.83261548466737]]]}}, {"type": "Feature", "properties": {"bin": "821777fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[163.04087210465863, 64.01659592046677], [161.92972445966305, 62.36305348532005], [164.42517501351887, 61.13938367748127], [167.980235415568, 61.46502794966551], [169.41527589688766, 63.043363766660455], [166.99965175539495, 64.37400935772303], [163.04087210465863, 64.01659592046677]]]}}, {"type": "Feature", "properties": {"bin": "822e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[148.85692557335597, 38.18237993929451], [149.19306703922015, 39.89128943394794], [147.50435309695874, 40.93751143528539], [145.5340016462912, 40.25286607784118], [145.28854872940548, 38.56238280223075], [146.92289463541258, 37.53730949424657], [148.85692557335597, 38.18237993929451]]]}}, {"type": "Feature", "properties": {"bin": "8263affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.058164847398544, 13.953007914922331], [53.216307542439, 12.662171326825183], [53.7647619646262, 11.439627581859163], [55.11347914716531, 11.501694573369337], [55.94007484027042, 12.754829243237467], [55.4335256099196, 13.982870346391318], [54.058164847398544, 13.953007914922331]]]}}, {"type": "Feature", "properties": {"bin": "82429ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.79649417188672, 17.984837262922877], [64.17778356185815, 16.63099762114276], [65.72669976466062, 16.170389213771333], [66.94438266788374, 17.041704534176407], [66.61541840825973, 18.416666514577653], [65.01525863593184, 18.89997700935317], [63.79649417188672, 17.984837262922877]]]}}, {"type": "Feature", "properties": {"bin": "825897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.5689349498665859, 7.231941088759668], [0.309803963535533, 5.864518365517626], [1.4259913686082732, 4.791199116946009], [2.8260034960813383, 5.055077924023954], [3.125247405149373, 6.425019813099671], [1.9843964992241638, 7.529293806652365], [0.5689349498665859, 7.231941088759668]]]}}, {"type": "Feature", "properties": {"bin": "821ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.343212804239652, 45.92192778359743], [9.73194113849839, 44.323804866147476], [11.36919284285479, 43.20897662532489], [13.642238671206671, 43.674337444107124], [14.33720628244463, 45.27343222583469], [12.677317810359863, 46.40695745798227], [10.343212804239652, 45.92192778359743]]]}}, {"type": "Feature", "properties": {"bin": "825b4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[166.82899636318285, 7.923775520601624], [167.38068986531874, 9.285448078820776], [166.30352968038193, 10.430341604851654], [164.67056230846524, 10.175448079467836], [164.15767678200748, 8.79269086420233], [165.23788930278994, 7.685350843804372], [166.82899636318285, 7.923775520601624]]]}}, {"type": "Feature", "properties": {"bin": "824287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.77103645922409, 19.829375597176913], [62.201745172143134, 18.43974801825257], [63.79649417188672, 17.984837262922877], [65.01525863593184, 18.89997700935317], [64.63727685201906, 20.314542861345263], [62.986388322986876, 20.789742605484555], [61.77103645922409, 19.829375597176913]]]}}, {"type": "Feature", "properties": {"bin": "8260effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.55436423365215, 12.384286158524523], [69.53795687362707, 14.001401643987554], [68.24505991929868, 14.749233784080905], [67.004149704953, 13.895664424175132], [67.03356105469996, 12.31424293862071], [68.29120185559428, 11.550950571749684], [69.55436423365215, 12.384286158524523]]]}}, {"type": "Feature", "properties": {"bin": "826297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.715524234647425, 2.6514390692752117], [55.09760037506581, 4.018825289271461], [54.116539278228814, 5.215027607862709], [52.72729851208757, 5.067960209199088], [52.31659244465762, 3.6927532541940136], [53.32374573777976, 2.471963263897448], [54.715524234647425, 2.6514390692752117]]]}}, {"type": "Feature", "properties": {"bin": "820a0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.94381235939827, 66.04712145860618], [93.14096249198373, 64.97995937305846], [96.90805882347452, 65.44170789923224], [97.85633031511932, 67.05472013305771], [94.53767024643494, 68.2365930099298], [90.37223427117857, 67.6837928863324], [89.94381235939827, 66.04712145860618]]]}}, {"type": "Feature", "properties": {"bin": "82584ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.015121420164647, 14.587692564478072], [15.472615878253416, 13.00285055504457], [16.649194223749127, 11.737554880527712], [18.37131288344698, 12.0234431609871], [18.954654656317093, 13.593711088140337], [17.776100963774223, 14.89324660357966], [16.015121420164647, 14.587692564478072]]]}}, {"type": "Feature", "properties": {"bin": "822d1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.62670018676323, 41.3634074805156], [35.59461531057751, 39.89310904128938], [36.77434984540357, 38.415715270613546], [38.930217596746424, 38.400687413420364], [39.977570071953565, 39.8454833330193], [38.856462963835455, 41.33067402303145], [36.62670018676323, 41.3634074805156]]]}}, {"type": "Feature", "properties": {"bin": "82320ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[167.0873928669933, 34.41307126304863], [167.8391329492701, 36.109696209480475], [166.38334579221544, 37.48242355039495], [164.16800602211273, 37.123942760722066], [163.48728952578702, 35.410811261589316], [164.9482848618307, 34.07198661139128], [167.0873928669933, 34.41307126304863]]]}}, {"type": "Feature", "properties": {"bin": "825b77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.03418236939353, 6.172978893164638], [172.6521502755409, 7.484528901641248], [171.66411711457465, 8.608957629133746], [170.04455430948826, 8.386213835240993], [169.45774938851352, 7.048433904053562], [170.45817404352508, 5.959309150722119], [172.03418236939353, 6.172978893164638]]]}}, {"type": "Feature", "properties": {"bin": "82772ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[154.63225010140187, 10.300402469437458], [154.3083888181753, 8.621215172764751], [155.56246912073013, 7.4664050956982315], [157.1154955383897, 7.988284766698585], [157.43587694017978, 9.643021108594692], [156.20707968839986, 10.80041893974446], [154.63225010140187, 10.300402469437458]]]}}, {"type": "Feature", "properties": {"bin": "8214affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.91100588991843, 51.19812885594881], [127.67543225456808, 49.77509763796059], [130.0897142166749, 49.369657347311026], [131.9046181506924, 50.35326796982147], [131.30640648994407, 51.820418717345376], [128.71966493700788, 52.26182662674445], [126.91100588991843, 51.19812885594881]]]}}, {"type": "Feature", "properties": {"bin": "827327fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.18023264576001, 14.772325435202779], [129.89366769788361, 13.047597812691034], [131.28928321485736, 11.962059629530703], [132.9842311604419, 12.607157483299329], [133.28182725019983, 14.34251138614931], [131.87381670052898, 15.422507023667906], [130.18023264576001, 14.772325435202779]]]}}, {"type": "Feature", "properties": {"bin": "825267fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.400094268547306, 21.979118809782555], [49.48574871263946, 20.59483507956772], [50.16499778196583, 19.206256304953666], [51.70961363238334, 19.19911448214468], [52.61066222494643, 20.545951244369586], [51.98103574818333, 21.936731626317698], [50.400094268547306, 21.979118809782555]]]}}, {"type": "Feature", "properties": {"bin": "826217fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.489078180126505, 8.031132744162138], [57.82654438507865, 9.254931462060775], [56.90222137318218, 10.387346933737675], [55.61454325087618, 10.320716458714706], [55.25056228923789, 9.092686031788569], [56.20084629329463, 7.935015077996292], [57.489078180126505, 8.031132744162138]]]}}, {"type": "Feature", "properties": {"bin": "8254dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.40003966386146, 8.93040321672402], [-17.7909573321859, 8.124363819119298], [-17.487884167109744, 6.558659438572163], [-16.100635789571058, 5.944638221700142], [-15.03935686307738, 6.880832664714157], [-15.017096277235694, 8.290871572025175], [-16.40003966386146, 8.93040321672402]]]}}, {"type": "Feature", "properties": {"bin": "821647fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[178.69875344741448, 53.5403339414854], [179.98292411798795, 54.92942866152418], [178.3683374315945, 56.284138315106226], [175.38736116053556, 56.22189416275603], [174.17842510466699, 54.8030092578657], [175.86773322410414, 53.4759949918722], [178.69875344741448, 53.5403339414854]]]}}, {"type": "Feature", "properties": {"bin": "82111ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.08800726462075, 59.50853611330557], [34.8028146879035, 58.2630778279077], [37.66110811159123, 58.48066299220257], [39.007636105246156, 59.98127301672662], [37.301766630116866, 61.27992582194621], [34.23038571380156, 61.02329363843618], [33.08800726462075, 59.50853611330557]]]}}, {"type": "Feature", "properties": {"bin": "821e6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[32.15691841993127, 51.12678928755596], [31.05269470118688, 49.771324694536816], [32.49177831469452, 48.437418514652656], [34.977250048428445, 48.44511511510519], [36.11672363177462, 49.77934286766213], [34.73969166039332, 51.127122714338114], [32.15691841993127, 51.12678928755596]]]}}, {"type": "Feature", "properties": {"bin": "82151ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.27087449964384, 56.233125655533925], [116.66573457527616, 54.82981575523819], [119.52274645502449, 54.65963026445359], [121.23304614895842, 55.88880372076997], [119.99347924729226, 57.36869376975949], [116.87271515160232, 57.54317504188187], [115.27087449964384, 56.233125655533925]]]}}, {"type": "Feature", "properties": {"bin": "821f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.4589017174477275, 46.76373050573097], [2.0265689653846333, 45.184248689706415], [3.6967018032650176, 44.22123495578018], [5.8484769011283495, 44.82546981220477], [6.371338560692325, 46.417016655689096], [4.652435425239344, 47.393027403288], [2.4589017174477275, 46.76373050573097]]]}}, {"type": "Feature", "properties": {"bin": "82339ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.85373403922972, 35.64723593705847], [-178.84653607045254, 37.22404167036299], [179.9534193241767, 38.72877939076234], [177.69344904769417, 38.632190632761855], [176.72479169974594, 37.021584010400524], [177.97421544565455, 35.54141287509961], [-179.85373403922972, 35.64723593705847]]]}}, {"type": "Feature", "properties": {"bin": "8232a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[176.72479169974594, 37.021584010400524], [177.69344904769417, 38.632190632761855], [176.38689332167078, 40.108041473315794], [174.06798768133586, 39.945415962862576], [173.15019278677644, 38.30496354724654], [174.49688633843544, 36.85680682151307], [176.72479169974594, 37.021584010400524]]]}}, {"type": "Feature", "properties": {"bin": "8258cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.313097972320257, 8.132105663553832], [11.857917574873651, 6.673406154658983], [12.988442347830356, 5.50570735563944], [14.583250071411682, 5.7628604914369355], [15.07769373223365, 7.210277977223253], [13.938770763768797, 8.412496363249264], [12.313097972320257, 8.132105663553832]]]}}, {"type": "Feature", "properties": {"bin": "824b4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[134.9039824818955, 31.25985351902173], [134.59291640384927, 29.81766138412523], [136.0384628262959, 28.895866824168877], [137.8000867626831, 29.424813936214647], [138.12012513079023, 30.870958035346163], [136.6700546717489, 31.7846720328039], [134.9039824818955, 31.25985351902173]]]}}, {"type": "Feature", "properties": {"bin": "8243affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.109961767811754, 25.430799341940986], [55.70727295656769, 23.96705625925079], [57.42811891104727, 23.56492017325246], [58.620492916117506, 24.617956366786995], [58.073275060404775, 26.118995627536346], [56.281432415587936, 26.530017983826685], [55.109961767811754, 25.430799341940986]]]}}, {"type": "Feature", "properties": {"bin": "820ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[93.82162481696616, 57.38598399009562], [93.38702071488433, 55.70726810690736], [95.64595779767541, 54.5866608798214], [98.33035289215339, 55.09437877364378], [98.94029661707259, 56.733010543848636], [96.69913454978891, 57.90540567596511], [93.82162481696616, 57.38598399009562]]]}}, {"type": "Feature", "properties": {"bin": "820007fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.42872092351118, 77.68574902454718], [43.86177154488894, 78.00915421128866], [46.680722653744276, 79.52275623872615], [40.19373289402154, 80.81642289048322], [30.788378972670518, 80.33974745515532], [30.105633384438118, 78.74785370461174], [36.42872092351118, 77.68574902454718]]]}}, {"type": "Feature", "properties": {"bin": "827c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-15.201596281865198, 1.2395596636497164], [-14.150748959420309, 2.236251730754104], [-14.446797355352741, 3.7900590972316994], [-15.800861357538134, 4.381671861802315], [-16.881744945249157, 3.399395037441728], [-16.578712803626818, 1.8107840761768073], [-15.201596281865198, 1.2395596636497164]]]}}, {"type": "Feature", "properties": {"bin": "822c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.81249162035951, 30.785265895218682], [44.825547083527006, 29.34568001756857], [45.67876237395102, 27.84875798513836], [47.46270536882868, 27.790199242113836], [48.442126840774186, 29.196465114956844], [47.646373642853554, 30.694156249000915], [45.81249162035951, 30.785265895218682]]]}}, {"type": "Feature", "properties": {"bin": "82181ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.00895215724318, 52.001373403173005], [-16.38110054088066, 51.26683523519603], [-16.382340625694795, 49.60926939734891], [-14.134966126881988, 48.69906061825517], [-11.854418733638266, 49.416339454352666], [-11.731413865282882, 51.05975209495003], [-14.00895215724318, 52.001373403173005]]]}}, {"type": "Feature", "properties": {"bin": "82766ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.99534224685527, 5.039864928413869], [165.6963471662508, 3.4768244409223446], [166.7362829931107, 2.4301130175176993], [168.04411579097982, 2.9387624954065736], [168.3352524578736, 4.467031609784496], [167.32655462438845, 5.521103943373988], [165.99534224685527, 5.039864928413869]]]}}, {"type": "Feature", "properties": {"bin": "823caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[87.32611574777664, 22.72356027237728], [87.41654076819316, 24.41090222753339], [85.84034302583474, 25.2483341258133], [84.1983104329971, 24.405915505460474], [84.12785404391501, 22.732955478362385], [85.67951776651992, 21.887608046252687], [87.32611574777664, 22.72356027237728]]]}}, {"type": "Feature", "properties": {"bin": "822f5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[141.37966239930637, 33.84613507499527], [141.5164720050773, 35.500079204200794], [139.94821305468562, 36.44177765047696], [138.3042651381179, 35.71483178531525], [138.24018784124735, 34.09024933883642], [139.748324545009, 33.16280781766435], [141.37966239930637, 33.84613507499527]]]}}, {"type": "Feature", "properties": {"bin": "8242b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.98228838461839, 19.310273660620197], [59.460822441636594, 17.948925768853375], [61.04261658386713, 17.52139444419055], [62.201745172143134, 18.43974801825257], [61.77103645922409, 19.829375597176913], [60.13185329247822, 20.272918243601023], [58.98228838461839, 19.310273660620197]]]}}, {"type": "Feature", "properties": {"bin": "823807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.027587338475257, 34.757090726489174], [-2.3153354483215614, 33.072845980897284], [-0.8449020421237199, 32.04554500883067], [0.9223182397122923, 32.64740444391725], [1.2724179411878551, 34.323246605430036], [-0.21185444833693792, 35.37567101563382], [-2.027587338475257, 34.757090726489174]]]}}, {"type": "Feature", "properties": {"bin": "826917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.74553349919158, 10.148674114937817], [111.95537231806988, 11.874077964273782], [110.5768834607828, 12.93456836331676], [108.97144541690444, 12.256484771946301], [108.77247792549403, 10.50768755405878], [110.16762490734286, 9.460179109104445], [111.74553349919158, 10.148674114937817]]]}}, {"type": "Feature", "properties": {"bin": "827aa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.43884720938579, 2.095272646421929], [50.87607058865384, 3.5202962612332436], [49.850632032874856, 4.753889465894764], [48.36465914155411, 4.586814597803058], [47.89849150694345, 3.1567102748799845], [48.9470688574492, 1.898270439192623], [50.43884720938579, 2.095272646421929]]]}}, {"type": "Feature", "properties": {"bin": "827377fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[136.4065502724283, 13.866921861790896], [136.09952409476884, 12.125603427845387], [137.50580793197614, 10.993708363678921], [139.22131203702125, 11.60628018538203], [139.53597608685283, 13.348756523042683], [138.12796381904693, 14.477922221250962], [136.4065502724283, 13.866921861790896]]]}}, {"type": "Feature", "properties": {"bin": "820a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[101.73727603534257, 57.13862734053574], [103.7209984233707, 55.90513251425149], [106.40349563788, 56.21061073758504], [107.55909424210289, 57.60288030347707], [105.6368032857011, 58.90516616374304], [102.50328586746393, 58.72020318780632], [101.73727603534257, 57.13862734053574]]]}}, {"type": "Feature", "properties": {"bin": "822ccffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.846596303427944, 38.436843700474434], [55.582222101206035, 36.79919983568016], [57.68276504499899, 36.41141790124565], [59.150326723667334, 37.656443450315685], [58.49038459954017, 39.336579896677115], [56.28323135160541, 39.7296014099063], [54.846596303427944, 38.436843700474434]]]}}, {"type": "Feature", "properties": {"bin": "826b67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.355521841742867, 18.04605273255658], [28.605731151092268, 16.452521340611096], [29.669070310445658, 15.085954806287294], [31.458258076484793, 15.285505315434653], [32.23155118654526, 16.848032044647276], [31.19369141851222, 18.24201252667272], [29.355521841742867, 18.04605273255658]]]}}, {"type": "Feature", "properties": {"bin": "8224effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[107.85345314107406, 41.991090179346436], [107.19414631631761, 40.45179124238256], [108.4262840018367, 39.34081394022977], [110.27034935303703, 39.73019055462676], [110.98113865629121, 41.21659856438631], [109.80004241000374, 42.366067712351416], [107.85345314107406, 41.991090179346436]]]}}, {"type": "Feature", "properties": {"bin": "824e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.76776632495591, 28.964245339774813], [156.22621709181442, 30.665378910169142], [154.7440406879096, 31.88396300415958], [152.83019720831965, 31.36741630675961], [152.44502932682522, 29.66931571364096], [153.89961337343811, 28.483839005577956], [155.76776632495591, 28.964245339774813]]]}}, {"type": "Feature", "properties": {"bin": "820b17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.6610104954934, 60.44728627103266], [74.04289226142357, 58.75102451122161], [77.08692220857515, 58.00933225078081], [79.89661787062164, 58.91829530833592], [79.77619664463793, 60.61768168029673], [76.58230152610159, 61.408014182878055], [73.6610104954934, 60.44728627103266]]]}}, {"type": "Feature", "properties": {"bin": "823c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[85.60053307343735, 20.175389775318], [85.67951776651992, 21.887608046252687], [84.12785404391501, 22.732955478362385], [82.52375453867506, 21.874050409008092], [82.46422151370294, 20.17924509521623], [83.98943855087481, 19.325572907160385], [85.60053307343735, 20.175389775318]]]}}, {"type": "Feature", "properties": {"bin": "824ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.3827535414481, 24.673785080133946], [151.72223946346867, 26.31971365411602], [150.2990076824332, 27.47262714354567], [148.57006259531556, 26.946867012854007], [148.29664651483174, 25.309881523116786], [149.6858955540046, 24.188862764499515], [151.3827535414481, 24.673785080133946]]]}}, {"type": "Feature", "properties": {"bin": "825467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.162619450275885, 15.990769092176489], [-7.649183817068924, 15.22126557573289], [-7.794022418669754, 13.699301124664801], [-6.495883896199433, 12.969730336077305], [-5.054413711032675, 13.721330560531266], [-4.866872026589571, 15.219885219398503], [-6.162619450275885, 15.990769092176489]]]}}, {"type": "Feature", "properties": {"bin": "82314ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[132.10012408810192, 39.01017757707544], [132.0243151515366, 40.57519011760162], [130.43987810268445, 41.28459934878183], [129.00750882770032, 40.43146840277848], [129.14743057237902, 38.90641063676051], [130.6575327073045, 38.19456373764813], [132.10012408810192, 39.01017757707544]]]}}, {"type": "Feature", "properties": {"bin": "823117fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.3590601424378, 44.67041995408337], [115.50113901102064, 43.25414167974318], [116.49000040590848, 42.08248625897494], [118.26752036947892, 42.301514251139466], [119.15090063431391, 43.663682348542345], [118.23461400925328, 44.860009682316225], [116.3590601424378, 44.67041995408337]]]}}, {"type": "Feature", "properties": {"bin": "821927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.777634484041528, 62.56377272218282], [-7.720042056693346, 62.172198741500715], [-7.999682127502824, 60.776647276888475], [-5.5023349253001514, 59.7918551703578], [-2.7356231170279086, 60.17050935552437], [-2.2975260876218306, 61.54550957788075], [-4.777634484041528, 62.56377272218282]]]}}, {"type": "Feature", "properties": {"bin": "823f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.81112340000082, 38.68528246787517], [19.059614047576503, 37.02901921647205], [20.49110741061133, 35.69002151151905], [22.666678189877594, 35.986217916354086], [23.474780873002853, 37.6303425743379], [22.053163375299732, 38.99088586392547], [19.81112340000082, 38.68528246787517]]]}}, {"type": "Feature", "properties": {"bin": "82546ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.054413711032675, 13.721330560531266], [-6.495883896199433, 12.969730336077305], [-6.654608692813015, 11.503405132347194], [-5.41203547095337, 10.811137991239525], [-4.01399844347048, 11.545295975414751], [-3.8159567641289107, 12.988678177851225], [-5.054413711032675, 13.721330560531266]]]}}, {"type": "Feature", "properties": {"bin": "82654ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[92.40599584744335, 1.196427511610166], [92.51962966629, 2.9596021818630542], [91.0304668832412, 3.9539186482762925], [89.44185686196764, 3.1743094571295916], [89.34560531293286, 1.417621793592918], [90.8204984152339, 0.4335749811918005], [92.40599584744335, 1.196427511610166]]]}}, {"type": "Feature", "properties": {"bin": "82316ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[133.57012610119784, 41.41044705193119], [133.52611384945018, 42.991791932510026], [131.8617244862017, 43.69922390102128], [130.3233868267755, 42.827204153871776], [130.43987810268445, 41.28459934878183], [132.0243151515366, 40.57519011760162], [133.57012610119784, 41.41044705193119]]]}}, {"type": "Feature", "properties": {"bin": "826947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.33418363415802, 16.013184142791825], [118.10253911416987, 14.371280476489183], [119.38955872314627, 13.411731045894102], [120.93661639766515, 14.106000495972893], [121.18304008131692, 15.773841771094993], [119.86772166666535, 16.721539545046728], [118.33418363415802, 16.013184142791825]]]}}, {"type": "Feature", "properties": {"bin": "82115ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.09680470695681, 65.69740315059383], [43.898420802285926, 64.38736055548591], [47.55624361633402, 64.44174640765343], [49.747703637529234, 65.81997609126962], [48.07845962204306, 67.18917865651584], [44.06075357873934, 67.12037102879738], [42.09680470695681, 65.69740315059383]]]}}, {"type": "Feature", "properties": {"bin": "825427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.67514915567997, 20.80838745157097], [-13.2640825169036, 19.96445296689503], [-13.32044956422305, 18.32002082210057], [-11.842109343172925, 17.537180528555226], [-10.297990218925223, 18.358193362939268], [-10.188114712806701, 19.98422878146785], [-11.67514915567997, 20.80838745157097]]]}}, {"type": "Feature", "properties": {"bin": "825807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.125946880545182, 15.32195477253705], [4.765825070146594, 13.763786258241295], [5.980953372995424, 12.584545802489613], [7.578742434535621, 12.932375898547791], [7.98617018247175, 14.492671448162053], [6.748859480852724, 15.703742282491802], [5.125946880545182, 15.32195477253705]]]}}, {"type": "Feature", "properties": {"bin": "823ecffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.024566154789984, 21.06526875783672], [28.258650571169593, 19.44460716169293], [29.355521841742867, 18.04605273255658], [31.19369141851222, 18.24201252667272], [31.984957764734823, 19.832653113527943], [30.914369969329773, 21.257376013592115], [29.024566154789984, 21.06526875783672]]]}}, {"type": "Feature", "properties": {"bin": "8264c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[91.68927751752527, 14.69414235790286], [91.80350469125146, 16.473813598562117], [90.25221803558833, 17.432918502465448], [88.60338341402318, 16.612362694922076], [88.50810517828272, 14.841938403281741], [90.04264093796, 13.882373413972683], [91.68927751752527, 14.69414235790286]]]}}, {"type": "Feature", "properties": {"bin": "824e27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.74062176627132, 18.72252928825543], [151.41106888520727, 17.10739084119342], [152.72123821625237, 15.944244424286078], [154.33872273925616, 16.400980833663734], [154.66633049010704, 17.999989209364095], [153.37882905768976, 19.158694313351518], [151.74062176627132, 18.72252928825543]]]}}, {"type": "Feature", "properties": {"bin": "827767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[159.27914944469583, 11.747867145732824], [158.96069904151648, 10.129006016095506], [160.1419353088229, 8.984495035259691], [161.61262603935333, 9.457960087027615], [161.9253489429625, 11.049339323254529], [160.7733897026288, 12.194726726167971], [159.27914944469583, 11.747867145732824]]]}}, {"type": "Feature", "properties": {"bin": "825b2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.54976641024237, 5.303397728432387], [175.1948161431758, 6.586859421326587], [174.2548093963156, 7.694424760251107], [172.6521502755409, 7.484528901641248], [172.03418236939353, 6.172978893164638], [172.99061638218362, 5.099216341695201], [174.54976641024237, 5.303397728432387]]]}}, {"type": "Feature", "properties": {"bin": "820b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[88.41742546359968, 57.83260160395453], [88.18560705462039, 56.123456859262085], [90.6561606716588, 55.08699728590972], [93.38702071488433, 55.70726810690736], [93.82162481696616, 57.38598399009562], [91.32945805583581, 58.47686578702072], [88.41742546359968, 57.83260160395453]]]}}, {"type": "Feature", "properties": {"bin": "8224a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.69260904032576, 41.567201776993976], [94.35106490572109, 39.87215919638372], [95.99173309005461, 38.8563670152069], [97.96704925042687, 39.48481487262571], [98.40131621958771, 41.13971665628781], [96.7709195911615, 42.20694073128456], [94.69260904032576, 41.567201776993976]]]}}, {"type": "Feature", "properties": {"bin": "827f4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[167.46100581969637, -0.13278097466366132], [167.16906196667583, -1.67143349571383], [168.1698130288729, -2.638932741201274], [169.43179359434671, -2.0808139752862758], [169.71568210991308, -0.5785308439936139], [168.7457552635053, 0.40159449589312074], [167.46100581969637, -0.13278097466366132]]]}}, {"type": "Feature", "properties": {"bin": "8232affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[173.15019278677644, 38.30496354724654], [174.06798768133586, 39.945415962862576], [172.65691196626003, 41.38057162805131], [170.29589736899308, 41.14477482825523], [169.44151026908685, 39.479372566043565], [170.88113315941013, 38.07431204898626], [173.15019278677644, 38.30496354724654]]]}}, {"type": "Feature", "properties": {"bin": "8216effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.1846999842042, 49.13277829085184], [176.3024402828945, 50.63969712744497], [174.70598427224823, 52.01101560763347], [171.93792040161404, 51.846632291535], [170.8994381824408, 50.313747345217955], [172.54388707165992, 48.97081082594039], [175.1846999842042, 49.13277829085184]]]}}, {"type": "Feature", "properties": {"bin": "827caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-17.679391556521605, 0.7857626165462144], [-16.578712803626818, 1.8107840761768073], [-16.881744945249157, 3.399395037441728], [-18.29181990106688, 3.9960705951817412], [-19.421549166867063, 2.9850510529164813], [-19.112387293484908, 1.3631258164462183], [-17.679391556521605, 0.7857626165462144]]]}}, {"type": "Feature", "properties": {"bin": "823577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.43942903424458, 41.87483011005883], [-20.45496726007536, 40.95974163457924], [-20.3623519142538, 39.178081579793435], [-18.348088280402102, 38.319242897076336], [-16.388588757180873, 39.21171319250576], [-16.387669396390542, 40.9845109305191], [-18.43942903424458, 41.87483011005883]]]}}, {"type": "Feature", "properties": {"bin": "82391ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.963456118392565, 38.55271209108038], [-6.898505607651506, 37.87174338190937], [-7.10189392414001, 36.141695300502455], [-5.442348460730086, 35.12442405176797], [-3.5848058032652497, 35.801655683177536], [-3.3113412530765816, 37.499409186860944], [-4.963456118392565, 38.55271209108038]]]}}, {"type": "Feature", "properties": {"bin": "827257fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[142.75686463705537, 4.606028555705816], [142.43997538991445, 2.835154500117894], [143.8075692701753, 1.6816507854608131], [145.48360433376578, 2.2929167967014186], [145.80408854252633, 4.052395404960635], [144.44541969740206, 5.212334399771164], [142.75686463705537, 4.606028555705816]]]}}, {"type": "Feature", "properties": {"bin": "8282f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.189893676135952, -0.4318847675533966], [10.894897390645305, 1.0685158094781342], [10.026444557704739, 2.318989904044636], [8.482576550430563, 2.080262305139526], [7.786228442487397, 0.6114455260916615], [8.624556751274975, -0.6498705655764053], [10.189893676135952, -0.4318847675533966]]]}}, {"type": "Feature", "properties": {"bin": "826857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.51290517196244, 8.000707509888294], [121.26764633911117, 6.289184675341438], [122.57945867341262, 5.2165791412778475], [124.161046766289, 5.859612972311428], [124.42018443628713, 7.593456060319665], [123.08402227082281, 8.662100093134155], [121.51290517196244, 8.000707509888294]]]}}, {"type": "Feature", "properties": {"bin": "8272affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.67705149281272, 0.35620948177303313], [135.3778115057875, -1.4068520662852666], [136.75808479176806, -2.548054631942043], [138.44096640700178, -1.933698993376087], [138.7479898447449, -0.17196920035699034], [137.36478040003968, 0.977147864408643], [135.67705149281272, 0.35620948177303313]]]}}, {"type": "Feature", "properties": {"bin": "8218e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.854418733638266, 49.416339454352666], [-14.134966126881988, 48.69906061825517], [-14.193176912970879, 47.01013597107083], [-12.082095965734656, 46.05586565890569], [-9.892165114977681, 46.75969876815572], [-9.724736207832674, 48.43009421958324], [-11.854418733638266, 49.416339454352666]]]}}, {"type": "Feature", "properties": {"bin": "825937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.4838650119479393, 22.197541386302376], [-2.7247164865457996, 20.605455654403823], [-1.4579244921298804, 19.504910377173324], [0.08583528510709204, 19.9742016751009], [0.37837010177590247, 21.584144094524866], [-0.9247075498574123, 22.70745271184857], [-2.4838650119479393, 22.197541386302376]]]}}, {"type": "Feature", "properties": {"bin": "821127fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[23.838471181226858, 60.96688976883668], [25.77412047958825, 59.91628668960882], [28.46056633599109, 60.33478831384491], [29.37740391195775, 61.85315498425268], [27.374489291363883, 62.947784556935986], [24.517172437523502, 62.478113451924735], [23.838471181226858, 60.96688976883668]]]}}, {"type": "Feature", "properties": {"bin": "827cc7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.197086686578825, 5.214586161545864], [-20.03950695020037, 6.20983767529234], [-20.34826709444178, 7.807441231426448], [-21.81948498501671, 8.43965777017582], [-23.003469207101887, 7.461608607409952], [-22.690128007911145, 5.834046769993235], [-21.197086686578825, 5.214586161545864]]]}}, {"type": "Feature", "properties": {"bin": "826bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.435041674371641, 9.913390776005329], [13.938770763768797, 8.412496363249264], [15.07769373223365, 7.210277977223253], [16.718562711430415, 7.474846581692809], [17.25384900346828, 8.962142482864822], [16.110106592542248, 10.199094662934618], [14.435041674371641, 9.913390776005329]]]}}, {"type": "Feature", "properties": {"bin": "820b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[85.83576563890131, 60.51030677274728], [85.69687924786012, 58.822386405242526], [88.41742546359968, 57.83260160395453], [91.32945805583581, 58.47686578702072], [91.70963813960331, 60.13979535943566], [88.94345469632086, 61.18598160028522], [85.83576563890131, 60.51030677274728]]]}}, {"type": "Feature", "properties": {"bin": "82324ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[157.20477050988032, 34.09823772047805], [157.72754392877192, 35.82316671778093], [156.15894649011236, 37.049067998742636], [154.09368225574624, 36.51782797902877], [153.65333558866647, 34.79494000415419], [155.19463815503386, 33.60034175292492], [157.20477050988032, 34.09823772047805]]]}}, {"type": "Feature", "properties": {"bin": "827cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.34826709444178, 7.807441231426448], [-19.21004929253201, 8.755747177387095], [-19.25608087263708, 10.227430733230397], [-20.72746038389688, 10.882142231152775], [-22.13030447162035, 10.031218078595819], [-21.81948498501671, 8.43965777017582], [-20.34826709444178, 7.807441231426448]]]}}, {"type": "Feature", "properties": {"bin": "820a67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.42617769197177, 71.28025266518428], [86.83977166360623, 70.36369489496148], [91.46555099668309, 71.02572941738775], [92.17806986247332, 72.72517076411164], [87.35476831819847, 73.76986802635263], [82.21911892366025, 72.97478012112376], [82.42617769197177, 71.28025266518428]]]}}, {"type": "Feature", "properties": {"bin": "82311ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.15090063431391, 43.663682348542345], [118.26752036947892, 42.301514251139466], [119.13690952882241, 41.14827082786993], [120.82006911538183, 41.33540401121588], [122.00467763040122, 42.261112529240776], [121.21023674748169, 43.4493138584932], [119.15090063431391, 43.663682348542345]]]}}, {"type": "Feature", "properties": {"bin": "823c37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[81.02837815214555, 29.17375414949066], [81.0658991036049, 27.554872894759516], [82.706685728117, 26.830386804712262], [84.34179540534768, 27.678382881962293], [84.38546050434297, 29.287639671665627], [82.71328280343502, 30.059788573240983], [81.02837815214555, 29.17375414949066]]]}}, {"type": "Feature", "properties": {"bin": "824ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[132.16877081066232, 17.126908704284467], [131.87381670052898, 15.422507023667906], [133.28182725019983, 14.34251138614931], [134.9943333762424, 14.973539713678374], [135.2993897157707, 16.685821292347388], [133.8822509367034, 17.759599097164003], [132.16877081066232, 17.126908704284467]]]}}, {"type": "Feature", "properties": {"bin": "8258f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.801169317009782, 9.899743070823426], [6.429971224498451, 8.430253460458047], [7.588359354690609, 7.279047700708482], [9.136091517447662, 7.5645420515535395], [9.549996118907211, 9.030648318176459], [8.37386952112726, 10.215393994209876], [6.801169317009782, 9.899743070823426]]]}}, {"type": "Feature", "properties": {"bin": "82049ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[141.68557800967994, 65.05445391081987], [141.92596390263645, 63.31554391857456], [145.33613754506084, 62.49215566258707], [148.74778443083505, 63.31420979873877], [148.99174373245955, 65.05302519337587], [145.339761703303, 65.97675200608838], [141.68557800967994, 65.05445391081987]]]}}, {"type": "Feature", "properties": {"bin": "822d5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.14657468326135, 45.53950517227631], [43.258394559925, 44.04754241934247], [45.504838818168665, 43.94551864497396], [46.765254333982135, 45.35944310131348], [45.69576371629003, 46.90573252004868], [43.31814421137, 46.98312969411603], [42.14657468326135, 45.53950517227631]]]}}, {"type": "Feature", "properties": {"bin": "827ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.660264793431104, 5.316028449437792], [43.18177242410844, 6.747200705712324], [42.12326826331898, 7.989894674599888], [40.528836927272636, 7.826037781496256], [39.98176285579589, 6.398852907904242], [41.05421703247711, 5.131054547027026], [42.660264793431104, 5.316028449437792]]]}}, {"type": "Feature", "properties": {"bin": "82070ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.010053527275545, 69.77863315577277], [-15.039943018127708, 70.86557109876065], [-19.232862920137123, 70.30015374059282], [-19.87138058908891, 68.6781104931821], [-16.825061753610598, 67.68783542166322], [-13.121278008102069, 68.22640078990388], [-12.010053527275545, 69.77863315577277]]]}}, {"type": "Feature", "properties": {"bin": "82076ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.43296806023497, 62.584281558661615], [-15.697122940858694, 63.552516945683436], [-18.741712912328655, 62.92039850236251], [-19.242629923160425, 61.34337802161005], [-16.37196241724275, 60.568693514800785], [-13.53147949450864, 61.174834149098], [-13.43296806023497, 62.584281558661615]]]}}, {"type": "Feature", "properties": {"bin": "824a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.06793500100542, 17.514518910811443], [128.78462053797352, 15.82234000807967], [130.18023264576001, 14.772325435202779], [131.87381670052898, 15.422507023667906], [132.16877081066232, 17.126908704284467], [130.7588556108957, 18.16926573871834], [129.06793500100542, 17.514518910811443]]]}}, {"type": "Feature", "properties": {"bin": "827ee7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[173.0317720714698, -0.4822612846177597], [173.6152115035718, 0.6563254594597022], [172.7165679999427, 1.627782179992269], [171.22136823504343, 1.4302139367058884], [170.94225359454225, -0.0513974048956663], [171.86268325121313, -1.0021068368703998], [173.0317720714698, -0.4822612846177597]]]}}, {"type": "Feature", "properties": {"bin": "825527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.574145573053787, 28.431000744101212], [-11.301996450753812, 27.6141453017058], [-11.400658379594104, 25.886179643136675], [-9.833621585568235, 24.999061630613877], [-8.161724346494458, 25.799576124170038], [-8.002013895306682, 27.50290866718829], [-9.574145573053787, 28.431000744101212]]]}}, {"type": "Feature", "properties": {"bin": "826b0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.28649610610062, 14.399089813811573], [23.622772407807847, 12.825720559075275], [24.720625913224463, 11.520974627273143], [26.46899696227833, 11.757964613420336], [27.162959755062325, 13.305579858085919], [26.079675952993234, 14.642208133911156], [24.28649610610062, 14.399089813811573]]]}}, {"type": "Feature", "properties": {"bin": "826a17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.847285917888374, 4.495706490210245], [25.514702903289592, 6.000797884634774], [24.490976511410302, 7.24865835399221], [22.81196965158239, 7.011431619257312], [22.136132249356997, 5.527020080114603], [23.14689086498559, 4.259065522271721], [24.847285917888374, 4.495706490210245]]]}}, {"type": "Feature", "properties": {"bin": "824eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[154.50170114914178, 23.95952354453145], [154.90656914196632, 25.608430396673544], [153.5035330170596, 26.8063298503651], [151.72223946346867, 26.31971365411602], [151.3827535414481, 24.673785080133946], [152.75863213820998, 23.51060310201209], [154.50170114914178, 23.95952354453145]]]}}, {"type": "Feature", "properties": {"bin": "8252b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[35.008408899924135, 15.638246320867433], [34.2172114446264, 14.109517818895615], [35.166454917588624, 12.769893004506192], [36.874987454352265, 12.93503437236236], [37.67879676017746, 14.427835621737403], [36.76279756092216, 15.791150069432325], [35.008408899924135, 15.638246320867433]]]}}, {"type": "Feature", "properties": {"bin": "820947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.043311931125118, 69.12144885595274], [13.072820073815873, 69.93399315449412], [11.990167276622653, 71.26523337833441], [7.329111175793021, 71.71063235482194], [4.333799759509659, 70.77147478219023], [5.923714581488998, 69.5183057451554], [10.043311931125118, 69.12144885595274]]]}}, {"type": "Feature", "properties": {"bin": "82634ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.86843056737345, 9.923822141141336], [65.83354849634385, 11.489543016752311], [64.62707830414878, 12.225768873349054], [63.489942514144396, 11.411784482866715], [63.535748628109495, 9.883591811382676], [64.70807868588639, 9.132230941835735], [65.86843056737345, 9.923822141141336]]]}}, {"type": "Feature", "properties": {"bin": "824f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[153.68515047833807, 13.131694739698181], [153.35922559786337, 11.466145661026696], [154.63225010140187, 10.300402469437458], [156.20707968839986, 10.80041893974446], [156.53000296193795, 12.444154506023333], [155.2814870808001, 13.609851920734103], [153.68515047833807, 13.131694739698181]]]}}, {"type": "Feature", "properties": {"bin": "821e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.584298678288794, 41.06115008945459], [8.045142114241346, 39.402136368971775], [9.598984700477283, 38.25143274146292], [11.719174616730063, 38.74166724514195], [12.334660572794059, 40.405578471534604], [10.754951467911924, 41.57505304930814], [8.584298678288794, 41.06115008945459]]]}}, {"type": "Feature", "properties": {"bin": "827c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.493787310318627, -1.886201851130144], [-17.373147196370113, -0.8227221314451986], [-17.679391556521605, 0.7857626165462144], [-19.112387293484908, 1.3631258164462183], [-20.261862725037528, 0.31113954958654044], [-19.949760680426785, -1.3298949686991823], [-18.493787310318627, -1.886201851130144]]]}}, {"type": "Feature", "properties": {"bin": "8220affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[70.30637689681684, 41.359581468551546], [70.66559414826162, 39.592303898841884], [72.80947411127423, 38.92173634594799], [74.67702184131929, 39.98284774466395], [74.43633811146184, 41.761836643769904], [72.20771321903253, 42.46955284809628], [70.30637689681684, 41.359581468551546]]]}}, {"type": "Feature", "properties": {"bin": "827ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-15.972808178337958, -1.3716238421937292], [-14.902138302963582, -0.33463809699523095], [-15.201596281865198, 1.2395596636497164], [-16.578712803626818, 1.8107840761768073], [-17.679391556521605, 0.7857626165462144], [-17.373147196370113, -0.8227221314451986], [-15.972808178337958, -1.3716238421937292]]]}}, {"type": "Feature", "properties": {"bin": "821e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.489487896493493, 47.23467882509988], [16.708896543883586, 45.6797189491731], [18.314740441318996, 44.470679588895024], [20.700525642136274, 44.79686404516598], [21.555105797612647, 46.34273814750756], [19.952960563687107, 47.57213992693463], [17.489487896493493, 47.23467882509988]]]}}, {"type": "Feature", "properties": {"bin": "820117fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.57889659541587, 70.68682709472333], [41.09749729154042, 70.96471952348472], [42.47096601014355, 72.36661210566757], [38.64410073856532, 73.54374238866039], [33.469374371360225, 73.16839556185595], [32.827639376682654, 71.72258517006674], [36.57889659541587, 70.68682709472333]]]}}, {"type": "Feature", "properties": {"bin": "82332ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.06816427253818, 24.14927660114088], [172.82476186654435, 25.769382636267913], [171.61523767087667, 27.165606164914283], [169.62892995630153, 26.904926687063615], [168.91929058653923, 25.25705643221339], [170.1468684664771, 23.89726226203983], [172.06816427253818, 24.14927660114088]]]}}, {"type": "Feature", "properties": {"bin": "82641ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[96.28857208231415, 11.69694254993996], [96.42793649224689, 13.492678095052215], [94.89357672220478, 14.501202967940499], [93.22851312177364, 13.708575981512869], [93.10703794740307, 11.914265400633866], [94.63254033379145, 10.910676879872467], [96.28857208231415, 11.69694254993996]]]}}, {"type": "Feature", "properties": {"bin": "822547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[104.77350705880835, 53.07967684590146], [104.0355334812399, 51.48528856286493], [105.69170917582021, 50.260451828557066], [108.02439123919609, 50.590453890760706], [108.85688406534163, 52.131924415515286], [107.26951355733428, 53.39628792731904], [104.77350705880835, 53.07967684590146]]]}}, {"type": "Feature", "properties": {"bin": "821f6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[26.86847148375058, 57.29788025768429], [25.75273650724686, 56.02789907359998], [27.453626568951172, 54.86673351776447], [30.22306500560221, 54.953381725480455], [31.095814204707388, 56.47000529592752], [29.401090538931886, 57.66586956210096], [26.86847148375058, 57.29788025768429]]]}}, {"type": "Feature", "properties": {"bin": "82762ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[159.19590710712498, 4.071039362249546], [158.88094782469753, 2.4178522793667603], [160.05023931957322, 1.3298949686991755], [161.50621268968138, 1.886201851130136], [161.81561480968847, 3.508104224668151], [160.67487419818355, 4.604844470308613], [159.19590710712498, 4.071039362249546]]]}}, {"type": "Feature", "properties": {"bin": "8232f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.44151026908685, 39.479372566043565], [170.29589736899308, 41.14477482825523], [168.78558673419198, 42.52801927927894], [166.402567405527, 42.21373266971295], [165.6236769663251, 40.52916571770251], [167.14887257606568, 39.177426167855764], [169.44151026908685, 39.479372566043565]]]}}, {"type": "Feature", "properties": {"bin": "825987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.193704994404441, 14.869645297067569], [-2.423467945637673, 13.37666338895838], [-1.2396306401223465, 12.28136891407245], [0.20521077410490549, 12.652177592020411], [0.4800430596855388, 14.157028398529341], [-0.7351612054653583, 15.279832303298882], [-2.193704994404441, 14.869645297067569]]]}}, {"type": "Feature", "properties": {"bin": "823d2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[78.93065472882462, 36.710673546798674], [79.0299761242124, 34.97529051965556], [80.90372472240541, 34.1970472677487], [82.72452222645332, 35.10762401359851], [82.72868707628261, 36.835377392607754], [80.80883203188255, 37.66164155905127], [78.93065472882462, 36.710673546798674]]]}}, {"type": "Feature", "properties": {"bin": "827c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.83093803332417, 1.6714334957138457], [-11.83018697112708, 2.6389327412012906], [-12.118591679205212, 4.156901458392333], [-13.415529249900905, 4.742836477585103], [-14.446797355352741, 3.7900590972316994], [-14.150748959420309, 2.236251730754104], [-12.83093803332417, 1.6714334957138457]]]}}, {"type": "Feature", "properties": {"bin": "828287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.037915717292355, 0.24461504240036508], [15.743841427341074, 1.7743965588127961], [14.807652062069575, 3.046341729325485], [13.190830888883605, 2.8025965889319755], [12.488313965403783, 1.3016140005051489], [13.398514840417468, 0.01580312664861367], [15.037915717292355, 0.24461504240036508]]]}}, {"type": "Feature", "properties": {"bin": "821f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.640206584543732, 54.90218190493178], [13.83952860923243, 53.487245161236885], [15.658506238480797, 52.45676979339932], [18.2899634859423, 52.81905199947077], [19.18933345712404, 54.22465218206264], [17.3622931946247, 55.27814416771983], [14.640206584543732, 54.90218190493178]]]}}, {"type": "Feature", "properties": {"bin": "820a2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.86720944085974, 66.32364928285418], [86.33787794943744, 65.4180477389232], [89.94381235939827, 66.04712145860618], [90.37223427117857, 67.6837928863324], [86.64520819657905, 68.6908704290193], [82.74318420812759, 67.95228117825242], [82.86720944085974, 66.32364928285418]]]}}, {"type": "Feature", "properties": {"bin": "82616ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.50561443740312, 0.04617220772960591], [73.510649552324, 1.6670215766999952], [72.19968749893948, 2.564066772676425], [70.91589460164022, 1.8414007243708719], [70.68986972642183, 0.3864613910864249], [71.98914343785155, -0.5261504290462844], [73.50561443740312, 0.04617220772960591]]]}}, {"type": "Feature", "properties": {"bin": "822f6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[141.00348408991889, 28.95205537874154], [141.12353210543196, 30.569559267468], [139.65480190759976, 31.537999211685943], [138.1201251307902, 30.870958035346177], [137.8000867626831, 29.424813936214647], [139.24220849524866, 28.461291233378834], [141.00348408991889, 28.95205537874154]]]}}, {"type": "Feature", "properties": {"bin": "8214effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[137.68629446846433, 54.77404577466255], [138.0446099782189, 53.212867439806466], [140.57055693448865, 52.56224857424679], [142.88971105702714, 53.409507856690254], [142.76906064305908, 54.9867616295015], [140.08804710824847, 55.704258487418656], [137.68629446846433, 54.77404577466255]]]}}, {"type": "Feature", "properties": {"bin": "82156ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[122.12506982744327, 66.00423213419595], [123.67301587593408, 64.38228704008819], [127.6321786186256, 64.02341503162813], [130.50634763946434, 65.24951534078758], [129.384260762246, 66.94915555373031], [124.92363461540212, 67.34894014371963], [122.12506982744327, 66.00423213419595]]]}}, {"type": "Feature", "properties": {"bin": "82005ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.3954549354975698, 85.00324300064894], [16.21479349753519, 86.17428146252993], [8.384360674740835, 87.82361750161175], [-34.95123585775986, 87.58500991616803], [-34.844060309330615, 85.9580797553944], [-17.9081638349315, 84.94207431820979], [1.3954549354975698, 85.00324300064894]]]}}, {"type": "Feature", "properties": {"bin": "827787fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[149.796574950402, 0.6173843220866748], [149.47546592858006, -1.1127120234847638], [150.7750225228406, -2.2205282812262834], [152.3770335943206, -1.6093190828786703], [152.69742579982722, 0.09854949274458083], [151.41694688393682, 1.217580256349525], [149.796574950402, 0.6173843220866748]]]}}, {"type": "Feature", "properties": {"bin": "825847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.057677308471957, 15.541998660465921], [12.559316983005372, 13.947330592398506], [13.762355118081885, 12.694430236620008], [15.472615878253416, 13.00285055504457], [16.015121420164647, 14.587692564478072], [14.804131284942924, 15.87459897267477], [13.057677308471957, 15.541998660465921]]]}}, {"type": "Feature", "properties": {"bin": "82722ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.59644693629747, 8.08264076991779], [138.28626164276986, 6.308249085468562], [139.67778765727132, 5.15141732453551], [141.37792967293944, 5.766943397442562], [141.69432910913807, 7.537486471095007], [140.3048448424543, 8.696743780394957], [138.59644693629747, 8.08264076991779]]]}}, {"type": "Feature", "properties": {"bin": "823c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[87.06119231662166, 17.540563144602597], [87.14845979904729, 19.285612453380296], [85.60053307343735, 20.175389775318], [83.98943855087481, 19.325572907160385], [83.92145050975647, 17.596565113429698], [85.44533748453688, 16.700959516615516], [87.06119231662166, 17.540563144602597]]]}}, {"type": "Feature", "properties": {"bin": "820087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.56066224687223, 76.04791578897343], [76.01514948533608, 75.45226049628377], [81.64563461848032, 76.41124061823331], [81.23235529091416, 78.14706671558069], [73.39705810942445, 78.85677806035595], [67.49836484524056, 77.69766097950897], [69.56066224687223, 76.04791578897343]]]}}, {"type": "Feature", "properties": {"bin": "825967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.556100605723162, 25.1510932676285], [7.115841917490329, 23.468040880271634], [8.443478079873218, 22.23328539196474], [10.23354395677019, 22.6544560846675], [10.729780964035752, 24.341160535590188], [9.380676605201614, 25.603702576968765], [7.556100605723162, 25.1510932676285]]]}}, {"type": "Feature", "properties": {"bin": "823f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.141299636275793, 26.45499699092275], [12.590615073173332, 24.753167536259074], [13.915183885634578, 23.45043771532035], [15.800827802347936, 23.821410412145514], [16.404954355833446, 25.517872533302246], [15.071232200574926, 26.84934226485555], [13.141299636275793, 26.45499699092275]]]}}, {"type": "Feature", "properties": {"bin": "826467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[91.0304668832412, 3.9539186482762925], [91.13720922092621, 5.733812721564004], [89.63761243039929, 6.725232583331402], [88.04780664109911, 5.929076253636084], [87.95884252681972, 4.1584945651648635], [89.44185686196764, 3.1743094571295916], [91.0304668832412, 3.9539186482762925]]]}}, {"type": "Feature", "properties": {"bin": "823337fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[177.84694371159145, 24.756909421354468], [178.69998567813343, 26.337191971375496], [177.59601061741438, 27.77533469733761], [175.60359465105446, 27.601356471103664], [174.7854718597239, 25.98594341469474], [175.92255197208195, 24.57962351939033], [177.84694371159145, 24.756909421354468]]]}}, {"type": "Feature", "properties": {"bin": "826ad7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[28.41503109537283, -2.4014862286700325], [29.081378028850438, -0.796995066489417], [28.00353834225145, 0.5533618253805922], [26.266522986333136, 0.31800255716503595], [25.58678516686, -1.2704435740827698], [26.656551879992676, -2.6397576481711273], [28.41503109537283, -2.4014862286700325]]]}}, {"type": "Feature", "properties": {"bin": "826a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[23.145925855054948, -3.107520783199953], [23.84234319845428, -1.5050626141201613], [22.800771734612553, -0.1522769274806444], [21.07832382300607, -0.38589810886387704], [20.375194264553155, -1.9668709126119441], [21.40032508185986, -3.3357348575173527], [23.145925855054948, -3.107520783199953]]]}}, {"type": "Feature", "properties": {"bin": "8219affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.373725810250253, 59.10182986756048], [-19.067029449080284, 58.40493643730386], [-18.987191465997125, 56.88329845233644], [-16.376938456712956, 56.06460393499809], [-13.79164665163863, 56.73632442836385], [-13.710273826815675, 58.250184667728405], [-16.373725810250253, 59.10182986756048]]]}}, {"type": "Feature", "properties": {"bin": "823167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[131.8617244862017, 43.69922390102128], [131.77440098149353, 45.253613490980094], [129.6384118220188, 45.67295380324835], [128.1076333158112, 44.74971789374998], [128.7080550992938, 43.475622215197404], [130.3233868267755, 42.827204153871776], [131.8617244862017, 43.69922390102128]]]}}, {"type": "Feature", "properties": {"bin": "823977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.3979729448555914, 43.08588995790071], [-2.4177958307002343, 42.540479965651194], [-2.7286180787605163, 40.87178460953809], [-1.0911461549131662, 39.78465688180244], [0.8372982571855976, 40.33535273335424], [1.21687066005433, 41.967575126995605], [-0.3979729448555914, 43.08588995790071]]]}}, {"type": "Feature", "properties": {"bin": "82522ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.43285443582601, 22.01366067406798], [44.52803919822402, 20.557241782575726], [45.31955043153507, 19.14473269250019], [46.9686209628495, 19.179955228717326], [47.867839878662906, 20.59809474557387], [47.124580725886155, 22.01870306147376], [45.43285443582601, 22.01366067406798]]]}}, {"type": "Feature", "properties": {"bin": "8252cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.37665086649757, 12.37014959176328], [46.5456352988265, 11.002751279113436], [47.228355151174995, 9.762691218281264], [48.70181724423404, 9.87609087767175], [49.525587410455664, 11.204304324194899], [48.88379911472869, 12.457630845905545], [47.37665086649757, 12.37014959176328]]]}}, {"type": "Feature", "properties": {"bin": "8218c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.193176912970879, 47.01013597107083], [-16.384633284552198, 46.21899145965219], [-16.38569507731395, 44.49123495446823], [-14.301163761412027, 43.56902927923193], [-12.187655377121208, 44.34367553397141], [-12.082095965734656, 46.05586565890569], [-14.193176912970879, 47.01013597107083]]]}}, {"type": "Feature", "properties": {"bin": "82609ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.43631730704988, 20.03059716689769], [76.45898064659956, 21.67923746478169], [75.01088584624907, 22.41056616821523], [73.57559356110225, 21.5088432259383], [73.56984075114914, 19.887994971392708], [74.98276447633455, 19.14100146751368], [76.43631730704988, 20.03059716689769]]]}}, {"type": "Feature", "properties": {"bin": "8282cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.479174769865493, 1.6114802044966399], [6.16472429995407, 3.047731638915501], [5.380973348826338, 4.2211544335698665], [3.9430361557864506, 3.9687969766095823], [3.2700512349330917, 2.5657311513076166], [4.022089806282807, 1.382296820377439], [5.479174769865493, 1.6114802044966399]]]}}, {"type": "Feature", "properties": {"bin": "820b27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.44462184184533, 62.114389785017146], [64.28702706984248, 60.49396023865073], [67.627534648058, 59.99795420434516], [70.35457610671249, 61.09164631266698], [69.77433234939853, 62.7392877671267], [66.19329062419274, 63.26868664228724], [63.44462184184533, 62.114389785017146]]]}}, {"type": "Feature", "properties": {"bin": "823857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.622001932112611, 33.80292479846324], [4.2041739956726545, 32.11010693139568], [5.648193230269618, 30.9528601574355], [7.5426478625178, 31.469041229575595], [8.027570156679904, 33.173311423144405], [6.551513795830656, 34.35055445973989], [4.622001932112611, 33.80292479846324]]]}}, {"type": "Feature", "properties": {"bin": "823247fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.75440994060068, 33.286327963351994], [161.35533473313333, 35.006175018250936], [159.83482553470856, 36.29182480062296], [157.72754392877192, 35.82316671778093], [157.20477050988032, 34.09823772047805], [158.70943836245695, 32.84617987368649], [160.75440994060068, 33.286327963351994]]]}}, {"type": "Feature", "properties": {"bin": "82525ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[49.94141473440725, 16.47907022159895], [49.07466256244804, 15.110784431748657], [49.72852590168673, 13.808566340166381], [51.205095139424046, 13.866410050915466], [52.06050891387425, 15.19570553741754], [51.45127123923521, 16.505445569112254], [49.94141473440725, 16.47907022159895]]]}}, {"type": "Feature", "properties": {"bin": "824a2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.80716405040224, 27.155857089463083], [130.51259100937042, 25.620271075222703], [131.9381410506925, 24.67988597236771], [133.67043163902014, 25.285203830798743], [133.97613863641322, 26.829336199539807], [132.53882899172459, 27.7600437382071], [130.80716405040224, 27.155857089463083]]]}}, {"type": "Feature", "properties": {"bin": "821e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.36919284285479, 43.20897662532489], [10.754951467911924, 41.57505304930814], [12.334660572794059, 40.405578471534604], [14.548450654218147, 40.85124382084822], [15.239935584499475, 42.48537089697073], [13.642238671206671, 43.674337444107124], [11.36919284285479, 43.20897662532489]]]}}, {"type": "Feature", "properties": {"bin": "82355ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.30545839105258, 36.529265222848295], [-20.18932139434465, 35.5917804234095], [-20.10838274495798, 33.794127804904804], [-18.225633742765968, 32.94224979572863], [-16.391110502200526, 33.85538020110467], [-16.39030672323071, 35.64371795856788], [-18.30545839105258, 36.529265222848295]]]}}, {"type": "Feature", "properties": {"bin": "82694ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.18304008131692, 15.773841771094993], [120.93661639766515, 14.106000495972893], [122.25978394419953, 13.112603234471695], [123.85482415801252, 13.797500809062363], [124.11552056566204, 15.488092524962621], [122.7670691389057, 16.471188839462545], [121.18304008131692, 15.773841771094993]]]}}, {"type": "Feature", "properties": {"bin": "82140ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.15177163384146, 56.38611220833988], [129.93836418297857, 54.83888673082788], [132.72120858422213, 54.355864647094066], [134.93107854084903, 55.374570052551114], [134.38455985649642, 56.96495838789854], [131.37779976641568, 57.49651172820108], [129.15177163384146, 56.38611220833988]]]}}, {"type": "Feature", "properties": {"bin": "820a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.25093520373768, 70.33211048895711], [103.59887585941732, 69.01988287882234], [108.41382440232776, 69.2260603613094], [110.58467601048972, 70.79712812810932], [107.38403295778832, 72.25179205071369], [101.78982837628078, 71.98699598123666], [100.25093520373768, 70.33211048895711]]]}}, {"type": "Feature", "properties": {"bin": "82322ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[167.74152015996484, 31.33997132073727], [168.47925358153148, 33.029168686825656], [167.0873928669933, 34.41307126304863], [164.9482848618307, 34.07198661139128], [164.27523474023167, 32.36418421538919], [165.6742100468855, 31.015442711548175], [167.74152015996484, 31.33997132073727]]]}}, {"type": "Feature", "properties": {"bin": "820927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.87869840057966, 66.4250610395259], [-6.976507251866831, 67.54932953851741], [-10.558792289389446, 67.1535478452051], [-11.632420456928374, 65.631365577424], [-9.419124599059314, 64.5835440503631], [-6.2206596092963595, 64.98197678166125], [-4.87869840057966, 66.4250610395259]]]}}, {"type": "Feature", "properties": {"bin": "825417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.39704531124982, 18.232262428254234], [-17.93691055163439, 17.348671597250807], [-17.910453055902636, 15.72965237496016], [-16.39811264585764, 15.002855614684421], [-14.894156301320406, 15.857367972897634], [-14.866952039887197, 17.46687133443676], [-16.39704531124982, 18.232262428254234]]]}}, {"type": "Feature", "properties": {"bin": "8264affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[98.10111823216585, 14.264150052057268], [98.25154405454845, 16.046518348999836], [96.71133979857908, 17.059221835731112], [95.02630472070098, 16.284890759540165], [94.89357672220478, 14.501202967940499], [96.42793649224689, 13.492678095052215], [98.10111823216585, 14.264150052057268]]]}}, {"type": "Feature", "properties": {"bin": "8220c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[78.59629634036548, 42.01404801298896], [78.71435321532265, 40.2331976599755], [80.75722897791712, 39.420496754076936], [82.73775567721657, 40.34209455836505], [82.7427044566999, 42.11488852985784], [80.64442076743467, 42.975757701478535], [78.59629634036548, 42.01404801298896]]]}}, {"type": "Feature", "properties": {"bin": "82688ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.31386223370123, 1.0602129218445702], [116.09812534479364, -0.5827354103262781], [117.32752866468138, -1.6578647749453976], [118.80144676595566, -1.0908183695418625], [119.031493265098, 0.5781518809279286], [117.77335499591119, 1.6541202617644533], [116.31386223370123, 1.0602129218445702]]]}}, {"type": "Feature", "properties": {"bin": "827567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.2700512349330917, 2.5657311513076166], [3.9430361557864506, 3.9687969766095823], [2.8260034960813383, 5.055077924023954], [1.4259913686082732, 4.791199116946009], [1.1589044753770883, 3.4728049331861635], [1.868917217650497, 2.3298633934462813], [3.2700512349330917, 2.5657311513076166]]]}}, {"type": "Feature", "properties": {"bin": "827c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.11905217530249, -2.4178522793667665], [-19.949760680426785, -1.3298949686991823], [-20.261862725037528, 0.31113954958654044], [-21.748282563172204, 0.8944150053331076], [-22.944641684888524, -0.18261910269663728], [-22.627819124985322, -1.8539523467425856], [-21.11905217530249, -2.4178522793667665]]]}}, {"type": "Feature", "properties": {"bin": "826b27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.810554260240874, 18.435026826891445], [20.173628717060144, 16.802152480851372], [21.349266453445622, 15.469203624780489], [23.154889561254432, 15.73745539193679], [23.82946157118848, 17.34988167023336], [22.66217520360497, 18.714905313467156], [20.810554260240874, 18.435026826891445]]]}}, {"type": "Feature", "properties": {"bin": "82088ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.280998608847177, 61.41674993469948], [21.289181501450866, 60.46250989980112], [23.838471181226858, 60.96688976883668], [24.517172437523502, 62.478113451924735], [22.407228789344035, 63.469342287950894], [19.718783419633482, 62.910503878993765], [19.280998608847177, 61.41674993469948]]]}}, {"type": "Feature", "properties": {"bin": "8241a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.52026220739299, 23.963809347590853], [119.76314753626568, 25.487092806329382], [118.47008668848471, 26.578843358468944], [116.90560185911875, 26.146703033861748], [116.66937099084352, 24.60027123385686], [117.99047716641068, 23.508951959736308], [119.52026220739299, 23.963809347590853]]]}}, {"type": "Feature", "properties": {"bin": "82558ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-17.992762466160794, 20.672196772789086], [-19.567746739996146, 19.758338710645457], [-19.51112287762693, 18.09329987490912], [-17.93691055163439, 17.348671597250807], [-16.39704531124982, 18.232262428254234], [-16.39648236469557, 19.88982836881392], [-17.992762466160794, 20.672196772789086]]]}}, {"type": "Feature", "properties": {"bin": "82421ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.40286744706651, 24.747230901926276], [63.83212822637663, 23.239296274628625], [65.54246684831395, 22.74217083708576], [66.88485857130675, 23.73015330041775], [66.51925125655274, 25.262825293452245], [64.74597440458675, 25.78364523775016], [63.40286744706651, 24.747230901926276]]]}}, {"type": "Feature", "properties": {"bin": "821487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.0251597204442, 48.74474316949554], [126.77127105816483, 47.38530568432782], [129.03314360152916, 47.01117118068983], [130.69503716478923, 47.96680444640571], [130.0897142166749, 49.369657347311026], [127.67543225456808, 49.77509763796059], [126.0251597204442, 48.74474316949554]]]}}, {"type": "Feature", "properties": {"bin": "82178ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[152.97439270951853, 54.771063034398715], [152.6143488993222, 53.210024078140854], [154.6327473838791, 52.216627806993216], [157.24956756466472, 52.773824941655235], [157.9385187808353, 54.35096980290143], [155.7300738023138, 55.37052237191947], [152.97439270951853, 54.771063034398715]]]}}, {"type": "Feature", "properties": {"bin": "821947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.6707588590220488, 55.13380594305545], [-1.7855433613315905, 54.76238836624054], [-2.1788859209290425, 53.25155105071478], [-0.21913743445926212, 52.141680818262785], [2.1013139839474526, 52.517133978422294], [2.5927890313053683, 53.99775155222293], [0.6707588590220488, 55.13380594305545]]]}}, {"type": "Feature", "properties": {"bin": "8286d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[81.8012058527199, -0.6100686809196604], [81.85307387147245, 1.0848539086284115], [80.43251755698464, 2.0363145312139648], [78.98721593134994, 1.2880989818264355], [78.95175679181041, -0.3854149473714066], [80.34534984562754, -1.3323876690307803], [81.8012058527199, -0.6100686809196604]]]}}, {"type": "Feature", "properties": {"bin": "827397fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.58470669389268, 1.9075458519315136], [126.31795557186994, 0.17017772412858456], [127.66658629823273, -0.9571709197237042], [129.2996656327738, -0.3503939308508571], [129.5785597151662, 1.4003324863197344], [128.21251055774763, 2.531251866245343], [126.58470669389268, 1.9075458519315136]]]}}, {"type": "Feature", "properties": {"bin": "82405ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.93461658303745, 27.04388327080286], [101.10708239937668, 28.661713692573745], [99.51693852531672, 29.615360337998418], [97.75498277138222, 28.95183542377966], [97.60075337177743, 27.33058812168506], [99.18988329590645, 26.375730690274633], [100.93461658303745, 27.04388327080286]]]}}, {"type": "Feature", "properties": {"bin": "827a1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.86977547540202, 1.487837453230303], [46.36344937538203, 2.965781048253536], [45.30258805566046, 4.232719683025158], [43.729192388853946, 4.045894876233992], [43.20753518813408, 2.5665184595080492], [44.28689428434573, 1.2749131152425968], [45.86977547540202, 1.487837453230303]]]}}, {"type": "Feature", "properties": {"bin": "8238d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.319543174072057, 26.517456272921628], [0.9946771925498421, 24.858335834449555], [2.333174076650933, 23.712268083774752], [4.030548380417124, 24.203144761743964], [4.413328471156264, 25.876899790610704], [3.040960396182133, 27.045710466174707], [1.319543174072057, 26.517456272921628]]]}}, {"type": "Feature", "properties": {"bin": "82354ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.488597695229425, 36.51527932188329], [-16.39030672323071, 35.64371795856788], [-16.391110502200526, 33.85538020110467], [-14.570452111245078, 32.95438593767852], [-12.727150094554121, 33.80653391043386], [-12.646960344628356, 35.57816880772348], [-14.488597695229425, 36.51527932188329]]]}}, {"type": "Feature", "properties": {"bin": "82336ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[163.16684197959285, 24.30570386902048], [163.7572487337804, 25.963743481425922], [162.41513478916204, 27.27499397487901], [160.48724479007151, 26.889142900269107], [159.95779566851195, 25.21826825334314], [161.29378455630064, 23.94529998788256], [163.16684197959285, 24.30570386902048]]]}}, {"type": "Feature", "properties": {"bin": "82155ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.24249351575548, 61.14671785108044], [127.318426179508, 59.54334767165104], [130.59502952582227, 59.102261478822314], [133.1014860426898, 60.2211290965602], [132.34195728892178, 61.88141157505771], [128.74053670218638, 62.369457595654104], [126.24249351575548, 61.14671785108044]]]}}, {"type": "Feature", "properties": {"bin": "824e37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[156.33450177574932, 18.37834487641563], [156.7516824625805, 19.948884409609132], [155.44399246654197, 21.1452026407526], [153.73868120645855, 20.732468648166584], [153.37882905768976, 19.158694313351543], [154.66633049010704, 17.999989209364117], [156.33450177574932, 18.37834487641563]]]}}, {"type": "Feature", "properties": {"bin": "828557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.615417278622196, 0.4935317012144658], [63.3061222521409, -0.9781516831001128], [64.54155357641913, -1.9059421128071417], [66.08958069473275, -1.3300762483231676], [66.37043305706193, 0.15815048527172101], [65.13235296719137, 1.0544791906363753], [63.615417278622196, 0.4935317012144658]]]}}, {"type": "Feature", "properties": {"bin": "8261a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[85.14560470448076, 9.63913396151915], [85.21924329904921, 11.410516289730447], [83.7221984125256, 12.344265741825286], [82.17683155274915, 11.508189904788676], [82.12132708334231, 9.756201891120732], [83.59315755505945, 8.820602456737168], [85.14560470448076, 9.63913396151915]]]}}, {"type": "Feature", "properties": {"bin": "822d77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.299105819285636, 47.05631421186065], [35.197789215168264, 45.67238477248148], [36.46866331111189, 44.24764844687383], [38.777546191050156, 44.19857132247734], [39.8971667404197, 45.5595774995064], [38.69290600551894, 46.99245950350818], [36.299105819285636, 47.05631421186065]]]}}, {"type": "Feature", "properties": {"bin": "82110ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[32.364306440168384, 62.22127049258845], [34.23038571380156, 61.02329363843618], [37.301766630116866, 61.27992582194621], [38.7414677057795, 62.771654769968045], [36.881166549455905, 64.02384191465175], [33.56299700893147, 63.72836272921309], [32.364306440168384, 62.22127049258845]]]}}, {"type": "Feature", "properties": {"bin": "820b77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.6567964347214, 67.48842315467373], [68.43491147351529, 65.93981446749967], [72.28100470319012, 65.36915236131517], [75.62454067323178, 66.30062172014773], [75.23382507811024, 67.86858604553878], [71.09984916126785, 68.48984393680729], [67.6567964347214, 67.48842315467373]]]}}, {"type": "Feature", "properties": {"bin": "829567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.71868440286572, -0.4337690657590338], [124.46111008527915, -2.1447104418903655], [125.78987330887271, -3.2670812965665257], [127.39631317306498, -2.683173192872915], [127.66658629823273, -0.9571709197237042], [126.31795557186994, 0.17017772412858456], [124.71868440286572, -0.4337690657590338]]]}}, {"type": "Feature", "properties": {"bin": "8238effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.648193230269618, 30.9528601574355], [5.2213927424219095, 29.254882451681667], [6.625253967039598, 28.063354881307642], [8.48467266804086, 28.54775137450854], [8.974635637589914, 30.254840780701706], [7.5426478625178, 31.469041229575595], [5.648193230269618, 30.9528601574355]]]}}, {"type": "Feature", "properties": {"bin": "824baffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[122.70153227964788, 25.384507970309517], [122.4436343115601, 23.841123553601193], [123.80451765016892, 22.97077194146011], [125.44765857221233, 23.657241852280656], [125.71988217642108, 25.21806209996667], [124.33485226874664, 26.075268367556504], [122.70153227964788, 25.384507970309517]]]}}, {"type": "Feature", "properties": {"bin": "8253affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.387530582020986, 23.259172952486864], [36.519629968706255, 21.70052871553139], [37.48995486768825, 20.261490246968638], [39.28804357565316, 20.364056175566354], [40.16544602832363, 21.886800183347113], [39.236789245262244, 23.342536994944112], [37.387530582020986, 23.259172952486864]]]}}, {"type": "Feature", "properties": {"bin": "822c2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.150673637901505, 42.63127069249239], [43.20483211516571, 41.142598767635725], [45.33379907578726, 41.0165261971704], [46.52152478353462, 42.40250986151093], [45.504838818168665, 43.94551864497396], [43.258394559925, 44.04754241934247], [42.150673637901505, 42.63127069249239]]]}}, {"type": "Feature", "properties": {"bin": "82182ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.713499065102662, 53.841053788108646], [-9.166993325133559, 53.28908444969495], [-9.362891292036801, 51.696862788869424], [-7.224493860559396, 50.67904691252102], [-4.889760342933783, 51.22372845966178], [-4.578382413982979, 52.792439042763036], [-6.713499065102662, 53.841053788108646]]]}}, {"type": "Feature", "properties": {"bin": "8216cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.6209968167824, 46.180014657090155], [176.69765473278346, 47.723516246519075], [175.1846999842042, 49.13277829085184], [172.54388707165992, 48.97081082594039], [171.53763676147145, 47.400881531964714], [173.09664563720216, 46.019009131142205], [175.6209968167824, 46.180014657090155]]]}}, {"type": "Feature", "properties": {"bin": "820917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.3335604888383246, 64.18977807614682], [-4.37854545089313, 63.89675172018521], [-4.777634484041528, 62.56377272218282], [-2.2975260876218306, 61.54550957788075], [0.5480202135218178, 61.828864713593795], [1.104046136969399, 63.13895537587258], [-1.3335604888383246, 64.18977807614682]]]}}, {"type": "Feature", "properties": {"bin": "827a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.00337711333937, 0.14809840694751103], [36.603820904737475, 1.706579969821451], [35.51221775689079, 3.0227099043793886], [33.814945033944454, 2.80265994839348], [33.193025309898935, 1.2524972038451396], [34.28911722144607, -0.08630376308334368], [36.00337711333937, 0.14809840694751103]]]}}, {"type": "Feature", "properties": {"bin": "826497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[101.79825574117908, 19.27267328023629], [101.97067725181773, 21.002364724127837], [100.4285180098119, 22.021169717198628], [98.71288845520314, 21.307114453591154], [98.55740345391212, 19.57116250997954], [100.10025759437842, 18.555032875306942], [101.79825574117908, 19.27267328023629]]]}}, {"type": "Feature", "properties": {"bin": "82730ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[134.38928496076238, 11.496463761756031], [134.08929830029973, 9.737940188235644], [135.49036539975242, 8.604422032304724], [137.1970727246292, 9.23145267029969], [137.50580793197614, 10.993708363678921], [136.09952409476884, 12.125603427845387], [134.38928496076238, 11.496463761756031]]]}}, {"type": "Feature", "properties": {"bin": "82649ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[98.55740345391212, 19.57116250997954], [98.71288845520314, 21.307114453591154], [97.14850212623087, 22.297036352375546], [95.43361450937653, 21.549525708119347], [95.29629913556025, 19.812213915250496], [96.8554277063972, 18.82325629288321], [98.55740345391212, 19.57116250997954]]]}}, {"type": "Feature", "properties": {"bin": "82385ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.027570156679904, 33.173311423144405], [7.5426478625178, 31.469041229575595], [8.974635637589914, 30.254840780701706], [10.916109798180177, 30.722958921689], [11.466035435670609, 32.432807380976996], [10.010436136048828, 33.6695957366448], [8.027570156679904, 33.173311423144405]]]}}, {"type": "Feature", "properties": {"bin": "8254e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.478121064920861, 13.557520460561596], [-14.945816427724187, 12.73084648058285], [-14.970363295558462, 11.216545454321968], [-13.574644025576724, 10.54021488943181], [-12.143209702643249, 11.34031170743392], [-12.071696161095671, 12.842516407667542], [-13.478121064920861, 13.557520460561596]]]}}, {"type": "Feature", "properties": {"bin": "825a17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[176.02550713619118, 14.45564596467375], [176.7615924622716, 15.921990549108155], [175.74454287153904, 17.214910773697707], [173.96680691996477, 17.005780295428504], [173.2615911988161, 15.506224528838576], [174.30162273709078, 14.248897205278324], [176.02550713619118, 14.45564596467375]]]}}, {"type": "Feature", "properties": {"bin": "82615ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.52088426006247, 4.950736370868268], [73.52608565347126, 6.608494376194787], [72.19363429195393, 7.473863638092713], [70.88924811258364, 6.687643147557417], [70.89822508399855, 5.062235631594696], [72.19769146790779, 4.190793621051422], [73.52088426006247, 4.950736370868268]]]}}, {"type": "Feature", "properties": {"bin": "825b37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.21716082489448, 5.889921754313907], [179.92136456416128, 7.1671565891990525], [179.05464506200272, 8.28568098401618], [177.4585525863537, 8.095430643538931], [176.77464305509145, 6.786116724890197], [177.66533255653735, 5.69916464166163], [179.21716082489448, 5.889921754313907]]]}}, {"type": "Feature", "properties": {"bin": "8210dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.3882768894146, 56.37618096484927], [61.22985696003771, 54.70543053152282], [64.15861768734945, 54.25756495131088], [66.4315922192763, 55.46083475880433], [65.77321649810175, 57.1642071776145], [62.64951657457579, 57.63340773273936], [60.3882768894146, 56.37618096484927]]]}}, {"type": "Feature", "properties": {"bin": "82214ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[74.71681355569017, 55.29058719632574], [75.0155927603138, 53.532331684395615], [77.70272630085074, 52.757072098664345], [80.20285201143243, 53.69627924565033], [80.10885694905615, 55.4547540407015], [77.30873896348803, 56.27625374483332], [74.71681355569017, 55.29058719632574]]]}}, {"type": "Feature", "properties": {"bin": "8282e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.919384560858635, -2.142899112922032], [8.624556751274975, -0.6498705655764053], [7.786228442487397, 0.6114455260916615], [6.274126691321663, 0.38835411272385156], [5.579905087848414, -1.0722681134170775], [6.3863735266664845, -2.3418038147608624], [7.919384560858635, -2.142899112922032]]]}}, {"type": "Feature", "properties": {"bin": "8210b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.136829069634125, 51.40943727610448], [43.385218690746825, 49.93426163580843], [45.910250490197114, 49.88159652150649], [47.34601250977586, 51.32784663123582], [46.152940295149286, 52.85701284573281], [43.46105267646115, 52.88534984596698], [42.136829069634125, 51.40943727610448]]]}}, {"type": "Feature", "properties": {"bin": "823d4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[90.15288642632358, 36.72983681815289], [89.95176048650507, 35.041966837414684], [91.58670594833411, 34.13144790711867], [93.43166846596247, 34.85693363509918], [93.72196326957709, 36.514136322787905], [92.08030070925017, 37.477432899333614], [90.15288642632358, 36.72983681815289]]]}}, {"type": "Feature", "properties": {"bin": "8201b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.52420090534295, 68.52987901066768], [54.84764506924277, 68.44084132638578], [57.81375768591653, 69.66721014720999], [55.549352810667344, 71.09900619688861], [50.64277495851302, 71.17904271188118], [48.71358294536655, 69.8545098637882], [50.52420090534295, 68.52987901066768]]]}}, {"type": "Feature", "properties": {"bin": "82598ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.4800430596855388, 14.157028398529341], [0.20521077410490549, 12.652177592020411], [1.3951802868305936, 11.529027262742579], [2.88810760150022, 11.881770859938996], [3.2085973421006972, 13.394482127990228], [1.9905382774544373, 14.547282830266617], [0.4800430596855388, 14.157028398529341]]]}}, {"type": "Feature", "properties": {"bin": "8224affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[98.40131621958771, 41.13971665628781], [97.96704925042687, 39.48481487262571], [99.48560253142547, 38.44192904896944], [101.41893174539778, 39.00521941117573], [101.93382777845231, 40.615119547681495], [100.4383392204784, 41.70703269529509], [98.40131621958771, 41.13971665628781]]]}}, {"type": "Feature", "properties": {"bin": "826427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[99.00561884910029, 6.061929363987142], [99.15702672665195, 7.853853966740167], [97.65955742680453, 8.877710043341528], [96.01439866788061, 8.098158295557342], [95.87954336965345, 6.302256120592464], [97.37304065193962, 5.289412273297665], [99.00561884910029, 6.061929363987142]]]}}, {"type": "Feature", "properties": {"bin": "82399ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.663484427536879, 30.943314294985814], [-9.43663506793057, 30.16505875954292], [-9.574145573053787, 28.431000744101212], [-8.002013895306682, 27.50290866718829], [-6.290521719128034, 28.269153054310298], [-6.090862557941383, 29.974950285731808], [-7.663484427536879, 30.943314294985814]]]}}, {"type": "Feature", "properties": {"bin": "825ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.94953838841533, 19.372418166302793], [170.63161405939337, 20.94774570072406], [169.45111251447574, 22.28219197346516], [167.57555444357988, 22.002216995828245], [166.9391681425939, 20.40139257140547], [168.1309214327534, 19.1055675532918], [169.94953838841533, 19.372418166302793]]]}}, {"type": "Feature", "properties": {"bin": "823217fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[173.60587278331644, 35.209234806190445], [174.49688633843544, 36.85680682151307], [173.15019278677644, 38.30496354724654], [170.88113315941013, 38.07431204898626], [170.04739755317138, 36.40019597525651], [171.42221952831454, 34.982928074805315], [173.60587278331644, 35.209234806190445]]]}}, {"type": "Feature", "properties": {"bin": "821f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.799628381983899, 57.64025558472873], [8.115982248879545, 56.27047063504287], [10.065692337418177, 55.394878703545615], [12.739822958959078, 55.86732673911362], [13.543635944035909, 57.232113806596516], [11.555977692900706, 58.130531165851394], [8.799628381983899, 57.64025558472873]]]}}, {"type": "Feature", "properties": {"bin": "826117fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[83.52973698730892, 7.062083323582682], [83.59315755505945, 8.820602456737168], [82.12132708334231, 9.756201891120732], [80.61281196361564, 8.933999636983694], [80.56697253067621, 7.196938593222833], [82.012203165609, 6.260371675681467], [83.52973698730892, 7.062083323582682]]]}}, {"type": "Feature", "properties": {"bin": "822467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[109.487514271989, 49.34485051731556], [108.68801493638473, 47.8078701936139], [110.044021077717, 46.58831847698082], [112.13164414819259, 46.871756703682145], [112.99153802526224, 48.35366325036661], [111.70886011900615, 49.60669548625785], [109.487514271989, 49.34485051731556]]]}}, {"type": "Feature", "properties": {"bin": "822177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[64.15861768734945, 54.25756495131088], [64.83324467627597, 52.53711433215488], [67.60809867176599, 51.993218243053036], [69.86551096712377, 53.143470509913854], [69.37012392067518, 54.88872985061824], [66.4315922192763, 55.46083475880433], [64.15861768734945, 54.25756495131088]]]}}, {"type": "Feature", "properties": {"bin": "822137fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[53.67049363562549, 49.37211750883398], [54.59304884970548, 47.72386996179145], [57.129991613379985, 47.4006823365286], [58.895420623222805, 48.72395874324332], [58.081496256536084, 50.41638321003273], [55.386315287413375, 50.74193901771935], [53.67049363562549, 49.37211750883398]]]}}, {"type": "Feature", "properties": {"bin": "823c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[85.84034302583474, 25.2483341258133], [85.92221757190828, 26.89198380918314], [84.3417954053477, 27.678382881962275], [82.706685728117, 26.83038680471224], [82.64497372733143, 25.201987105911897], [84.1983104329971, 24.405915505460474], [85.84034302583474, 25.2483341258133]]]}}, {"type": "Feature", "properties": {"bin": "823917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.657648270046371, 38.88943198318385], [-10.618161068438342, 38.139996370486614], [-10.744488220052984, 36.383229951792835], [-8.989073467751014, 35.40191572642888], [-7.10189392414001, 36.141695300502455], [-6.898505607651506, 37.87174338190937], [-8.657648270046371, 38.88943198318385]]]}}, {"type": "Feature", "properties": {"bin": "824e57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[144.60072315684513, 22.770295906390995], [144.27271566035486, 21.174017097520665], [145.66438765451977, 20.05884048765213], [147.37202830633396, 20.546746925508604], [147.7025877022133, 22.136425460569903], [146.32346584367517, 23.245242079047912], [144.60072315684513, 22.770295906390995]]]}}, {"type": "Feature", "properties": {"bin": "82250ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.23461143063881, 51.76344358686479], [96.74084261178157, 50.07723161220353], [98.62845319272265, 48.93666974733418], [100.9858741549673, 49.43462842675377], [101.60364961319526, 51.075473556050824], [99.74643491762787, 52.26442895448878], [97.23461143063881, 51.76344358686479]]]}}, {"type": "Feature", "properties": {"bin": "82196ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.948742151508293, 54.288286693229196], [2.5927890313053683, 53.99775155222293], [2.1013139839474526, 52.517133978422294], [3.8811335596706225, 51.36037619595015], [6.259687055981991, 51.96477015603749], [6.848228907047912, 53.43156035343158], [4.948742151508293, 54.288286693229196]]]}}, {"type": "Feature", "properties": {"bin": "8265a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[106.97109383598978, 8.03593746364353], [107.16118351272775, 9.798825362645363], [105.72436073050534, 10.84624715467437], [104.0877201545458, 10.117014983777002], [103.91102173954691, 8.33720166325733], [105.35716758404884, 7.303218576160172], [106.97109383598978, 8.03593746364353]]]}}, {"type": "Feature", "properties": {"bin": "82581ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.980953372995424, 12.584545802489613], [5.614833472212566, 11.068219758915488], [6.801169317009782, 9.899743070823426], [8.37386952112726, 10.215393994209876], [8.784937126674635, 11.730952307865815], [7.578742434535621, 12.932375898547791], [5.980953372995424, 12.584545802489613]]]}}, {"type": "Feature", "properties": {"bin": "827a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[49.27165553777247, 7.35045425670836], [49.712829687588396, 8.682575679218088], [48.70181724423405, 9.876090877671766], [47.228355151174995, 9.762691218281258], [46.75971038178171, 8.430561787844455], [47.79179491022667, 7.211314785105253], [49.27165553777247, 7.35045425670836]]]}}, {"type": "Feature", "properties": {"bin": "823c57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.25201201925714, 27.537811825727395], [94.38677552527119, 29.158478218353835], [92.76677847338061, 30.027796577918867], [91.02563139985838, 29.280171655412413], [90.91116847307, 27.664082661768756], [92.517389421541, 26.790487968432995], [94.25201201925714, 27.537811825727395]]]}}, {"type": "Feature", "properties": {"bin": "82539ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[34.84176301361014, 18.577729518599106], [34.03120960006244, 17.02023873386213], [35.008408899924135, 15.638246320867433], [36.76279756092216, 15.791150069432325], [37.58690108567234, 17.313051044773594], [36.64451476760323, 18.717376377276683], [34.84176301361014, 18.577729518599106]]]}}, {"type": "Feature", "properties": {"bin": "825227fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.85686218030853, 23.44263921006273], [41.950919788593374, 21.948649310619096], [42.80980210855761, 20.511258562106715], [44.52803919822402, 20.557241782575726], [45.43285443582601, 22.01366067406798], [44.62177586579161, 23.46115311638336], [42.85686218030853, 23.44263921006273]]]}}, {"type": "Feature", "properties": {"bin": "8264f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.89357672220478, 14.501202967940499], [95.02630472070098, 16.284890759540165], [93.47563122147147, 17.272417656365654], [91.80350469125146, 16.473813598562117], [91.68927751752527, 14.69414235790286], [93.22851312177364, 13.708575981512869], [94.89357672220478, 14.501202967940499]]]}}, {"type": "Feature", "properties": {"bin": "82552ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.161724346494458, 25.799576124170038], [-9.833621585568235, 24.999061630613877], [-9.956159557263328, 23.307035475663525], [-8.463757820412326, 22.441035492513045], [-6.846165692887986, 23.225810445647934], [-6.667778136025995, 24.89175633085534], [-8.161724346494458, 25.799576124170038]]]}}, {"type": "Feature", "properties": {"bin": "8204b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.384260762246, 66.94915555373031], [130.50634763946434, 65.24951534078758], [134.49509963996232, 64.70390366757042], [137.7971038133932, 65.79256118254496], [137.20590752097192, 67.5438260188934], [132.75260324065235, 68.16135100453414], [129.384260762246, 66.94915555373031]]]}}, {"type": "Feature", "properties": {"bin": "823e0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[25.060344831525917, 28.43312831311004], [24.29736104982788, 26.760382611860862], [25.528881744435836, 25.33942140130998], [27.504442850291092, 25.566738583888263], [28.304398843543034, 27.21675601467155], [27.093823557839002, 28.66241436853054], [25.060344831525917, 28.43312831311004]]]}}, {"type": "Feature", "properties": {"bin": "820d97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.94683633255818, 67.75010398676802], [172.86137139869209, 66.19292316051032], [175.09689991728033, 64.75692907396628], [179.15613950339954, 64.7804865813286], [-178.5116045749234, 66.22512849903984], [179.56243278742426, 67.75762829464864], [174.94683633255818, 67.75010398676802]]]}}, {"type": "Feature", "properties": {"bin": "82381ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.8449020421237199, 32.04554500883067], [-1.1436797512903807, 30.382229579202342], [0.2609468260311339, 29.300374659234986], [2.005719972259752, 29.86576695279883], [2.368366542520371, 31.549004679734185], [0.9223182397122923, 32.64740444391725], [-0.8449020421237199, 32.04554500883067]]]}}, {"type": "Feature", "properties": {"bin": "82528ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.237805515149034, 13.226920062397731], [39.42626153713316, 11.771549826904991], [40.259524098339604, 10.481935371507609], [41.86780918021332, 10.627353551154322], [42.68269691095181, 12.044355607055847], [41.88700707526729, 13.353825437268569], [40.237805515149034, 13.226920062397731]]]}}, {"type": "Feature", "properties": {"bin": "820977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.92371458148896, 69.5183057451554], [4.333799759509582, 70.77147478219023], [0.27113407636019593, 70.66929401337596], [-1.6665855042242044, 69.27385919190813], [0.2300394753996964, 68.07965221714933], [3.797763423479726, 68.21974142812381], [5.92371458148896, 69.5183057451554]]]}}, {"type": "Feature", "properties": {"bin": "821527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.6368032857011, 58.90516616374304], [107.55909424210289, 57.60288030347707], [110.63726557219142, 57.658994463170124], [112.08048576449471, 59.04446657501834], [110.25066319208894, 60.44170500833013], [106.865913193906, 60.35664258373935], [105.6368032857011, 58.90516616374304]]]}}, {"type": "Feature", "properties": {"bin": "8272e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[140.74918846783441, 2.2183857025045817], [140.43686692088156, 0.4474832204660264], [141.81004725453448, -0.6981011755771], [143.49043326364475, -0.08034191858740049], [143.8075692701753, 1.6816507854608131], [142.43997538991445, 2.835154500117894], [140.74918846783441, 2.2183857025045817]]]}}, {"type": "Feature", "properties": {"bin": "82018ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[49.79761663665697, 73.89382642293918], [55.592062051403055, 73.8440432038365], [58.812028454651305, 75.1642904738594], [55.65376829275445, 76.66743647707504], [48.58085341919355, 76.6800744027878], [46.110083039103145, 75.23051359343751], [49.79761663665697, 73.89382642293918]]]}}, {"type": "Feature", "properties": {"bin": "823d1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.21323629204524, 31.57056178598028], [79.297948374044, 29.906253411886752], [81.02837815214555, 29.17375414949066], [82.71328280343502, 30.059788573240983], [82.7168362562851, 31.717351794521772], [80.9474490076034, 32.49697262167634], [79.21323629204524, 31.57056178598028]]]}}, {"type": "Feature", "properties": {"bin": "823e47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[31.156425649586858, 29.0270203870736], [30.306296992440565, 27.400965985280784], [31.44867473202602, 25.939003563147065], [33.408066112926264, 26.083575953551144], [34.28261947136845, 27.680604531895785], [33.17539654916028, 29.162052595684372], [31.156425649586858, 29.0270203870736]]]}}, {"type": "Feature", "properties": {"bin": "823fb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.974635637589914, 30.254840780701706], [8.48467266804086, 28.54775137450854], [9.874355349748093, 27.304951934557945], [11.775116633219884, 27.744884569895603], [12.325939409346134, 29.455163805425236], [10.916109798180177, 30.722958921689], [8.974635637589914, 30.254840780701706]]]}}, {"type": "Feature", "properties": {"bin": "8209b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.1982160405751507, 59.38388648698395], [-0.46713246181046286, 59.10359393295083], [-0.9315871635106042, 57.68949737459286], [1.1521975506221198, 56.58335438930745], [3.654940544612971, 56.86632091834963], [4.229785449235649, 58.25202580757624], [2.1982160405751507, 59.38388648698395]]]}}, {"type": "Feature", "properties": {"bin": "82071ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.917999921584816, 72.44381308655119], [-17.598970251255384, 73.52894986794209], [-22.4076276387758, 72.92129484534789], [-22.87247419114535, 71.27639212190138], [-19.232862920137123, 70.30015374059282], [-15.039943018127708, 70.86557109876065], [-13.917999921584816, 72.44381308655119]]]}}, {"type": "Feature", "properties": {"bin": "828cb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.64832534337992, -2.7687426994117534], [111.84943440950715, -1.1069634457837352], [110.52508329787003, -0.16182599287443586], [108.98392529964751, -0.901274271496052], [108.79285894484322, -2.586202376840426], [110.13250788453917, -3.508740509701642], [111.64832534337992, -2.7687426994117534]]]}}, {"type": "Feature", "properties": {"bin": "82149ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.03314360152916, 47.01117118068983], [129.6384118220188, 45.67295380324835], [131.77440098149353, 45.253613490980094], [133.4313819738473, 46.137635949951836], [132.96199772756114, 47.51079575918813], [130.69503716478923, 47.96680444640571], [129.03314360152916, 47.01117118068983]]]}}, {"type": "Feature", "properties": {"bin": "82041ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.35156501110018, 73.1239839572126], [145.3477749071445, 71.32310583443733], [149.98712931534274, 70.36472443894685], [154.9982446340457, 71.07204267660472], [155.99053987969668, 72.84386418050191], [151.01446002876182, 73.95061154314652], [145.35156501110018, 73.1239839572126]]]}}, {"type": "Feature", "properties": {"bin": "82326ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[158.1826949335263, 31.130589516373846], [158.70943836245695, 32.84617987368649], [157.20477050988032, 34.09823772047805], [155.19463815503386, 33.60034175292492], [154.7440406879096, 31.88396300415958], [156.22621709181442, 30.665378910169142], [158.1826949335263, 31.130589516373846]]]}}, {"type": "Feature", "properties": {"bin": "822d2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[32.80266317669352, 45.65567444315455], [31.765884250922184, 44.20368148246594], [33.092042340502196, 42.790722675411104], [35.403068966717576, 42.817984971221726], [36.46866331111189, 44.24764844687383], [35.197789215168264, 45.67238477248148], [32.80266317669352, 45.65567444315455]]]}}, {"type": "Feature", "properties": {"bin": "825547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.619089861216808, 20.72183235528512], [-7.184232148529101, 19.95235527007237], [-7.344548353615849, 18.349455296769857], [-5.987551711331904, 17.542834947432016], [-4.472880089647737, 18.297332900396515], [-4.2657934694023325, 19.872971694101718], [-5.619089861216808, 20.72183235528512]]]}}, {"type": "Feature", "properties": {"bin": "827757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[158.32448714986083, 6.846915371615777], [158.0067643262748, 5.1890555165121155], [159.19590710712498, 4.071039362249546], [160.67487419818355, 4.604844470308613], [160.98737008032504, 6.233160267396046], [159.82641977314165, 7.35713969558914], [158.32448714986083, 6.846915371615777]]]}}, {"type": "Feature", "properties": {"bin": "827b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[53.52380457617435, -1.6263637306496332], [53.928811983299774, -0.17217745834263962], [52.91578124016392, 1.0549590305746845], [51.47132702771398, 0.8502628917755757], [51.03639698865581, -0.6149645664400275], [52.075786497944684, -1.8648635745791151], [53.52380457617435, -1.6263637306496332]]]}}, {"type": "Feature", "properties": {"bin": "82242ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[102.69185797433065, 48.25372814019403], [102.07881099524842, 46.6227723170158], [103.65410322050224, 45.45919731340779], [105.79970818967243, 45.88340148783781], [106.49937702249476, 47.46316860921144], [104.97228253122022, 48.66996537978654], [102.69185797433065, 48.25372814019403]]]}}, {"type": "Feature", "properties": {"bin": "826ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.068876656179736, 0.9446533902388587], [20.76448426679086, 2.4912777849399794], [19.77031774923299, 3.777844681142865], [18.099816440714942, 3.5346227999232087], [17.401552408456116, 2.0129447691512135], [18.375633862528336, 0.7096114806741792], [20.068876656179736, 0.9446533902388587]]]}}, {"type": "Feature", "properties": {"bin": "823027fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.82006911538186, 41.33540401121588], [121.58175445790938, 40.20568112033379], [123.45342978278158, 39.95842892599271], [124.6671982555717, 40.82703878759474], [123.98412056729994, 41.999374253313036], [122.00467763040122, 42.261112529240776], [120.82006911538186, 41.33540401121588]]]}}, {"type": "Feature", "properties": {"bin": "82774ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[162.74401328894643, 8.33033444648589], [162.43453315987915, 6.732799425262087], [163.54549668989287, 5.629570987614513], [164.93539603741021, 6.119591258608643], [165.23788930278994, 7.68535084380434], [164.15767678200746, 8.79269086420231], [162.74401328894643, 8.33033444648589]]]}}, {"type": "Feature", "properties": {"bin": "825507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.400658379594104, 25.886179643136675], [-13.082020177497345, 25.039429603403317], [-13.144989535729147, 23.326587938836802], [-11.587036473562442, 22.48058908346514], [-9.956159557263328, 23.307035475663525], [-9.833621585568235, 24.999061630613877], [-11.400658379594104, 25.886179643136675]]]}}, {"type": "Feature", "properties": {"bin": "827537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.01399844347048, 11.545295975414751], [-5.41203547095337, 10.811137991239525], [-5.58264265299675, 9.401522016005323], [-4.392258230519247, 8.747781221106653], [-3.071080368716595, 9.072581251751163], [-2.8618420364343797, 10.477113125901752], [-4.01399844347048, 11.545295975414751]]]}}, {"type": "Feature", "properties": {"bin": "823f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.325939409346134, 29.455163805425236], [11.775116633219884, 27.744884569895603], [13.141299636275793, 26.45499699092275], [15.071232200574926, 26.84934226485555], [15.679352391342839, 28.55677300195445], [14.301516597265826, 29.87332454274621], [12.325939409346134, 29.455163805425236]]]}}, {"type": "Feature", "properties": {"bin": "822d0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.46866331111189, 44.24764844687383], [35.403068966717576, 42.817984971221726], [36.62670018676323, 41.3634074805156], [38.856462963835455, 41.33067402303145], [39.93874603383862, 42.73629845548312], [38.777546191050156, 44.19857132247734], [36.46866331111189, 44.24764844687383]]]}}, {"type": "Feature", "properties": {"bin": "82105ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.79473999463724, 64.03522417338607], [59.88478475803628, 62.48594075268518], [63.44462184184533, 62.114389785017146], [66.19329062419274, 63.26868664228724], [65.3710205691241, 64.85541165114829], [61.51493759898825, 65.25273108770251], [58.79473999463724, 64.03522417338607]]]}}, {"type": "Feature", "properties": {"bin": "82428ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[64.63727685201906, 20.314542861345263], [65.01525863593184, 18.89997700935317], [66.61541840825973, 18.416666514577653], [67.89023030388555, 19.324158539746353], [67.56939811385563, 20.759725505183912], [65.91535126756838, 21.26766364781169], [64.63727685201906, 20.314542861345263]]]}}, {"type": "Feature", "properties": {"bin": "826a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.375194264553155, -1.9668709126119441], [21.07832382300607, -0.38589810886387704], [20.068876656179736, 0.9446533902388587], [18.375633862528336, 0.7096114806741792], [17.669408104914123, -0.8469844525190846], [18.658673787739012, -2.1928551242561527], [20.375194264553155, -1.9668709126119441]]]}}, {"type": "Feature", "properties": {"bin": "827747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.1419353088229, 8.984495035259691], [159.82641977314165, 7.35713969558914], [160.98737008032504, 6.233160267396046], [162.43453315987915, 6.732799425262087], [162.74401328894643, 8.33033444648589], [161.61262603935333, 9.457960087027615], [160.1419353088229, 8.984495035259691]]]}}, {"type": "Feature", "properties": {"bin": "82254ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.85688406534163, 52.131924415515286], [108.02439123919609, 50.590453890760706], [109.487514271989, 49.34485051731556], [111.70886011900615, 49.60669548625785], [112.61209790051606, 51.093201098106135], [111.22982205294677, 52.37241137844973], [108.85688406534163, 52.131924415515286]]]}}, {"type": "Feature", "properties": {"bin": "827a77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[41.58665495463515, -2.043983130098265], [42.1364186839953, -0.4801895435352829], [41.04096889205773, 0.8353130739527076], [39.38193371434512, 0.609462307518436], [38.805670799239614, -0.9536012426282219], [39.91438150005968, -2.291974587934787], [41.58665495463515, -2.043983130098265]]]}}, {"type": "Feature", "properties": {"bin": "825af7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.88878640797157, 18.30669067889133], [173.61050860311653, 19.852266346793826], [172.4917755998185, 21.191636509336988], [170.63161405939337, 20.94774570072406], [169.94953838841533, 19.372418166302793], [171.08619530625026, 18.070429588150667], [172.88878640797157, 18.30669067889133]]]}}, {"type": "Feature", "properties": {"bin": "825317fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.27915112513713, 26.290576575165524], [36.38757584764918, 24.72567602275491], [37.387530582020986, 23.259172952486864], [39.236789245262244, 23.342536994944112], [40.13858369534422, 24.872879893475496], [39.18256944936378, 26.354108708483196], [37.27915112513713, 26.290576575165524]]]}}, {"type": "Feature", "properties": {"bin": "8272f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.7479898447449, -0.17196920035699034], [138.44096640700178, -1.933698993376087], [139.8163694005051, -3.0700388986581064], [141.49703056391817, -2.4535034056910705], [141.81004725453448, -0.6981011755771], [140.43686692088156, 0.4474832204660264], [138.7479898447449, -0.17196920035699034]]]}}, {"type": "Feature", "properties": {"bin": "820427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.04574169958474, 78.12604185470187], [131.99104367949013, 76.37955729177285], [138.99941764332513, 75.7479715907543], [145.36215812121338, 76.73288469988287], [145.36988141373342, 78.53376243783075], [136.93797037496347, 79.32046590614668], [130.04574169958474, 78.12604185470187]]]}}, {"type": "Feature", "properties": {"bin": "822557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[101.60364961319526, 51.075473556050824], [100.9858741549673, 49.43462842675377], [102.69185797433065, 48.25372814019403], [104.97228253122022, 48.66996537978654], [105.69170917582021, 50.260451828557066], [104.0355334812399, 51.48528856286493], [101.60364961319526, 51.075473556050824]]]}}, {"type": "Feature", "properties": {"bin": "822417fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.19470712620408, 43.890570396606854], [96.7709195911615, 42.20694073128456], [98.40131621958771, 41.13971665628781], [100.4383392204784, 41.70703269529509], [100.95470627909016, 43.34627770091953], [99.345530873997, 44.46304525486081], [97.19470712620408, 43.890570396606854]]]}}, {"type": "Feature", "properties": {"bin": "822d8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.013903905353125, 36.89986549574836], [38.99930032882582, 35.42233869616125], [40.047979648150125, 33.91381311229757], [42.05451497441287, 33.877595956110035], [43.07440081871426, 35.32615569017736], [42.08453011389581, 36.83963771514377], [40.013903905353125, 36.89986549574836]]]}}, {"type": "Feature", "properties": {"bin": "8238a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.341769247156946, 30.69897412778907], [-6.090862557941383, 29.974950285731808], [-6.290521719128034, 28.269153054310298], [-4.799371159116904, 27.320116005158603], [-3.114662381767312, 28.037213840900282], [-2.8582819730967257, 29.709916100270622], [-4.341769247156946, 30.69897412778907]]]}}, {"type": "Feature", "properties": {"bin": "82216ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[71.37222664322603, 57.71379607923372], [71.82075541602921, 55.989082166215454], [74.71681355569017, 55.29058719632574], [77.30873896348803, 56.27625374483332], [77.08692220857515, 58.00933225078081], [74.04289226142357, 58.75102451122161], [71.37222664322603, 57.71379607923372]]]}}, {"type": "Feature", "properties": {"bin": "820757fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.825061753610598, 67.68783542166322], [-19.87138058908891, 68.6781104931821], [-23.60157937537406, 67.97841284565767], [-23.892709595930576, 66.33119738690922], [-20.904369925050815, 65.43480780172833], [-17.54611228138685, 66.09556511029363], [-16.825061753610598, 67.68783542166322]]]}}, {"type": "Feature", "properties": {"bin": "8216d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[168.0733571050347, 45.52849481741495], [168.97007444304862, 47.15173201826695], [167.29749747346997, 48.46458517314192], [164.71341365537654, 48.122513263439366], [163.91021485526235, 46.48282657751594], [165.59338998115155, 45.200872103150886], [168.0733571050347, 45.52849481741495]]]}}, {"type": "Feature", "properties": {"bin": "824eeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[143.52349627910067, 25.40388372699502], [143.19556546628428, 23.853446687189194], [144.60072315684513, 22.770295906390995], [146.32346584367517, 23.245242079047912], [146.6546813583525, 24.791240432729612], [145.26039098039993, 25.86719630384032], [143.52349627910067, 25.40388372699502]]]}}, {"type": "Feature", "properties": {"bin": "822f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[150.12720600888105, 35.37477070109116], [150.48280815623022, 37.088590803454224], [148.85692557335597, 38.18237993929451], [146.92289463541258, 37.53730949424657], [146.65234247438462, 35.83924212521621], [148.2306899338896, 34.76967367165591], [150.12720600888105, 35.37477070109116]]]}}, {"type": "Feature", "properties": {"bin": "820a1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[92.57738307461396, 63.389047393354765], [95.3598689119515, 62.2848815864491], [98.78655602562984, 62.669687606976154], [99.75343158320663, 64.23021521485094], [96.90805882347452, 65.44170789923224], [93.14096249198373, 64.97995937305846], [92.57738307461396, 63.389047393354765]]]}}, {"type": "Feature", "properties": {"bin": "82409ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.9660359814451, 34.78945542299374], [112.19581072885283, 36.17883855958396], [110.69461054882275, 37.16389648579593], [108.94306493103147, 36.761183813651066], [108.72615837117118, 35.36191434918376], [110.24734171732878, 34.37479165494242], [111.9660359814451, 34.78945542299374]]]}}, {"type": "Feature", "properties": {"bin": "82146ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.75470261025907, 62.33797031071915], [139.14779395014713, 60.64107707213371], [142.32238799942485, 59.90350345714653], [145.33465398425662, 60.78265799243752], [145.33613754506084, 62.49215566258707], [141.92596390263645, 63.31554391857456], [138.75470261025907, 62.33797031071915]]]}}, {"type": "Feature", "properties": {"bin": "8208cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.61096300749794, 67.96067555658821], [27.046020702142844, 66.99139283605574], [30.513875397115008, 67.45322298988307], [31.831280499087356, 68.92995788193981], [28.255869905697548, 69.84474595092315], [24.49264698397638, 69.30502245348691], [24.61096300749794, 67.96067555658821]]]}}, {"type": "Feature", "properties": {"bin": "823e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.301989716589436, 26.489394896864702], [21.594245020211527, 24.805307095623743], [22.83929753527266, 23.411689797815992], [24.78037927571116, 23.675156033841958], [25.528881744435836, 25.33942140130998], [24.29736104982788, 26.760382611860862], [22.301989716589436, 26.489394896864702]]]}}, {"type": "Feature", "properties": {"bin": "82684ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.30247976626464, 9.989152324667797], [126.03390811709544, 8.24960594616433], [127.39588222887433, 7.155784270598222], [129.04492009156368, 7.805398745803346], [129.32601506112, 9.560874810723679], [127.945831592227, 10.651087081515891], [126.30247976626464, 9.989152324667797]]]}}, {"type": "Feature", "properties": {"bin": "82384ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.558256056640367, 35.370372439869115], [10.010436136048828, 33.6695957366448], [11.466035435670609, 32.432807380976996], [13.488580338198274, 32.875015477254706], [14.102434482055234, 34.577453494704955], [12.629034522814488, 35.83666250378512], [10.558256056640367, 35.370372439869115]]]}}, {"type": "Feature", "properties": {"bin": "8282c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.786228442487397, 0.6114455260916615], [8.482576550430563, 2.080262305139526], [7.6564645218774645, 3.2930086626395654], [6.16472429995407, 3.047731638915501], [5.479174769865493, 1.6114802044966399], [6.274126691321663, 0.38835411272385156], [7.786228442487397, 0.6114455260916615]]]}}, {"type": "Feature", "properties": {"bin": "8230d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.29034574462932, 34.02180762319836], [124.02055612683287, 32.66144519495384], [125.41914993808639, 31.927642743840643], [127.11045385351468, 32.56528763821615], [127.39451411745605, 33.93630615131908], [125.97326654688494, 34.65941531820471], [124.29034574462932, 34.02180762319836]]]}}, {"type": "Feature", "properties": {"bin": "824267fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[66.3999720922499, 32.790283406002835], [66.81138218629923, 31.126021641142017], [68.72158994214257, 30.5519657403398], [70.2926586907516, 31.613519939735284], [69.96726747716981, 33.29852686321238], [67.9828900331216, 33.902396769499795], [66.3999720922499, 32.790283406002835]]]}}, {"type": "Feature", "properties": {"bin": "8262a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.84008860955652, 6.66108112729045], [56.20084629329463, 7.935015077996292], [55.25056228923789, 9.092686031788569], [53.91385857443836, 9.001290419052781], [53.52575709425707, 7.722673797689084], [54.50172847976733, 6.539629572256595], [55.84008860955652, 6.66108112729045]]]}}, {"type": "Feature", "properties": {"bin": "82301ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[122.03727578685184, 37.880975054067605], [121.77659538235066, 36.629598233459305], [123.16276457697892, 36.00561444807193], [124.8359957920349, 36.64293584360804], [125.11187681160854, 37.90332441600769], [123.69953711381342, 38.51776205335628], [122.03727578685184, 37.880975054067605]]]}}, {"type": "Feature", "properties": {"bin": "825927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.6439644283421987, 24.336012636497507], [-0.9247075498574123, 22.70745271184857], [0.37837010177590247, 21.584144094524866], [1.9975756661715074, 22.067175689495624], [2.333174076650933, 23.712268083774752], [0.9946771925498421, 24.858335834449555], [-0.6439644283421987, 24.336012636497507]]]}}, {"type": "Feature", "properties": {"bin": "825baffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[178.88265930944007, 10.789436708939103], [179.6239575544149, 12.171203279101913], [178.7003543745467, 13.398384387599426], [177.00782264778175, 13.21064685442285], [176.28993210653294, 11.794175727566111], [177.2397408231501, 10.600190205120805], [178.88265930944007, 10.789436708939103]]]}}, {"type": "Feature", "properties": {"bin": "8264dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[90.25221803558833, 17.432918502465448], [90.35884209031839, 19.189322458836735], [88.79730594665793, 20.114255896751192], [87.14845979904729, 19.285612453380296], [87.06119231662166, 17.540563144602597], [88.60338341402318, 16.612362694922076], [90.25221803558833, 17.432918502465448]]]}}, {"type": "Feature", "properties": {"bin": "826a37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.34818138022581, 9.74567700347234], [21.736228401051253, 8.243493259763863], [22.811969651582398, 7.0114316192573325], [24.49097651141032, 7.248658353992226], [25.13348443429596, 8.727292768584846], [24.067596824538438, 9.992589708432718], [22.34818138022581, 9.74567700347234]]]}}, {"type": "Feature", "properties": {"bin": "826b5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.966532331336797, 12.198779848215473], [29.247299616085066, 10.680211197141585], [30.24910003135815, 9.396155420644655], [31.947530107392243, 9.601671762572183], [32.687080191852424, 11.088516961674802], [31.70919852287402, 12.40154427413899], [29.966532331336797, 12.198779848215473]]]}}, {"type": "Feature", "properties": {"bin": "824e47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[142.54366142733994, 20.657405597914543], [142.21971416679307, 19.015324066179012], [143.62042640551968, 17.894593929233352], [145.33655699281812, 18.42194413916021], [145.66438765451977, 20.05884048765213], [144.27271566035486, 21.174017097520665], [142.54366142733994, 20.657405597914543]]]}}, {"type": "Feature", "properties": {"bin": "823d5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[88.09993919181939, 34.254864019886554], [87.95783607641035, 32.58486408488774], [89.57977238815958, 31.726685303908507], [91.35849929423574, 32.48718343230164], [91.58670594833411, 34.13144790711867], [89.95176048650507, 35.041966837414684], [88.09993919181939, 34.254864019886554]]]}}, {"type": "Feature", "properties": {"bin": "824077fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.56799984546763, 24.011140885133813], [105.76174970861732, 25.65935562830068], [104.23142522560502, 26.681239096411577], [102.49921988747064, 26.053266420816335], [102.32113206765436, 24.395173932504584], [103.8591385223553, 23.37444792118442], [105.56799984546763, 24.011140885133813]]]}}, {"type": "Feature", "properties": {"bin": "8275affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.101993445416778, 7.292742847021743], [-8.452416923081168, 6.5576953249960095], [-8.57230150554439, 5.228007003124849], [-7.378352602293609, 4.648343501025636], [-6.0644961087785445, 5.362739776582643], [-5.908652939747203, 6.676866573680896], [-7.101993445416778, 7.292742847021743]]]}}, {"type": "Feature", "properties": {"bin": "822e77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[139.94821305468562, 36.44177765047696], [140.0551792737878, 38.09066616899645], [138.44146242552776, 38.981099958902064], [136.78802846843914, 38.21187841917355], [136.7565422512042, 36.59487743965532], [138.3042651381179, 35.71483178531525], [139.94821305468562, 36.44177765047696]]]}}, {"type": "Feature", "properties": {"bin": "8211b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.654127846023286, 52.41378927911533], [32.15691841993127, 51.12678928755596], [34.739691660393355, 51.127122714338114], [35.73345537974305, 52.627432816707355], [34.25928669926778, 53.94825773758088], [31.795224652499606, 53.716816730832385], [30.654127846023286, 52.41378927911533]]]}}, {"type": "Feature", "properties": {"bin": "8260b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.85006868486495, 17.603370083569754], [80.89919798431202, 19.312037048375995], [79.40483871268952, 20.129444079798887], [77.89282385581691, 19.248933470521393], [77.86183245215106, 17.56444136136202], [79.32492956451948, 16.7360927422416], [80.85006868486495, 17.603370083569754]]]}}, {"type": "Feature", "properties": {"bin": "824ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[150.2990076824332, 27.47262714354567], [150.62524081883691, 29.143844983524968], [149.15248602425285, 30.277702407420577], [147.39192058698316, 29.710213599338392], [147.13582799158445, 28.051410241915995], [148.57006259531556, 26.946867012854007], [150.2990076824332, 27.47262714354567]]]}}, {"type": "Feature", "properties": {"bin": "824187fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.47008668848471, 26.578843358468944], [118.71284963780683, 28.072874613292196], [117.38411308859807, 29.155221704779063], [115.7845997721203, 28.744357248622574], [115.54937000817873, 27.230124263966285], [116.90560185911875, 26.146703033861748], [118.47008668848471, 26.578843358468944]]]}}, {"type": "Feature", "properties": {"bin": "827e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[177.86104159764693, 3.4124184184161535], [177.20820922631214, 2.2138390967148083], [177.85914184964872, 0.8538127156394429], [179.18004912118207, 0.6593876817348807], [179.86631108740835, 1.8554926185476572], [179.19837461990804, 3.249005031447237], [177.86104159764693, 3.4124184184161535]]]}}, {"type": "Feature", "properties": {"bin": "82246ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[112.99153802526224, 48.35366325036661], [112.13164414819259, 46.871756703682145], [113.32774149411853, 45.65091523732746], [115.30978583151253, 45.88291508681843], [116.21289563713785, 47.30945130281313], [115.09543130851321, 48.558604635580586], [112.99153802526224, 48.35366325036661]]]}}, {"type": "Feature", "properties": {"bin": "826307fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.76821613885501, 16.521023572370705], [56.28020386907317, 15.24852264895349], [57.7882477627106, 14.858282725500832], [58.836894289259575, 15.729584455219758], [58.36379976373644, 17.031649155402796], [56.80173723984203, 17.4331954374473], [55.76821613885501, 16.521023572370705]]]}}, {"type": "Feature", "properties": {"bin": "822487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[95.99173309005461, 38.8563670152069], [95.63281653887009, 37.19550640207011], [97.16481861122213, 36.20351483811321], [99.04532465399103, 36.82197095600332], [99.48560253142547, 38.44192904896944], [97.96704925042687, 39.48481487262571], [95.99173309005461, 38.8563670152069]]]}}, {"type": "Feature", "properties": {"bin": "827edffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.38449389125012, 3.8458282604840193], [172.99061638218362, 5.099216341695201], [172.03418236939353, 6.172978893164638], [170.45817404352508, 5.959309150722119], [169.88109208357997, 4.680543766329771], [170.84989172174681, 3.6405341607256134], [172.38449389125012, 3.8458282604840193]]]}}, {"type": "Feature", "properties": {"bin": "8261affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.12132708334231, 9.756201891120732], [82.17683155274915, 11.508189904788676], [80.70607507930679, 12.414517864781308], [79.20849388464688, 11.573007348022402], [79.17056508080195, 9.84467337590314], [80.61281196361564, 8.933999636983694], [82.12132708334231, 9.756201891120732]]]}}, {"type": "Feature", "properties": {"bin": "82345ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.885175001331245, 28.425520844846652], [-21.58870741439349, 27.45936036539565], [-21.487400930124174, 25.69485702884283], [-19.75080967850516, 24.900975863614626], [-18.084745335168467, 25.837418687063995], [-18.117856496785507, 27.59648823740311], [-19.885175001331245, 28.425520844846652]]]}}, {"type": "Feature", "properties": {"bin": "824ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[157.6353447712508, 23.16966846117383], [158.10369371003847, 24.815427924853466], [156.72990126505292, 26.053719357465955], [154.90656914196632, 25.608430396673544], [154.50170114914178, 23.95952354453145], [155.85581058699807, 22.758164292722196], [157.6353447712508, 23.16966846117383]]]}}, {"type": "Feature", "properties": {"bin": "8254a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.51112287762693, 18.09329987490912], [-21.035077717360593, 17.181705178608077], [-20.954127741243205, 15.558562398793757], [-19.40378332385685, 14.850204433632182], [-17.910453055902636, 15.72965237496016], [-17.93691055163439, 17.348671597250807], [-19.51112287762693, 18.09329987490912]]]}}, {"type": "Feature", "properties": {"bin": "8232b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.9534193241767, 38.72877939076234], [-179.00169990796678, 40.29258302822169], [179.7444394237716, 41.79221177207786], [177.38922397185618, 41.70426599254369], [176.38689332167078, 40.108041473315794], [177.69344904769417, 38.632190632761855], [179.9534193241767, 38.72877939076234]]]}}, {"type": "Feature", "properties": {"bin": "82734ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[142.65151265131718, 12.792371327850592], [142.3311319659662, 11.053571341118106], [143.71509140820243, 9.893324884711014], [145.410940917621, 10.472716898667052], [145.73505728408045, 12.203097693364747], [144.36008222105062, 13.3628858273885], [142.65151265131718, 12.792371327850592]]]}}, {"type": "Feature", "properties": {"bin": "82356ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.47570007280164, 39.11281479140376], [-14.444905143937865, 38.29227083697541], [-14.488597695229425, 36.51527932188329], [-12.646960344628356, 35.57816880772348], [-10.744488220052984, 36.383229951792835], [-10.618161068438342, 38.139996370486614], [-12.47570007280164, 39.11281479140376]]]}}, {"type": "Feature", "properties": {"bin": "825567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.8296846549188386, 23.088405139235885], [-5.425053091334932, 22.344835336854807], [-5.619089861216808, 20.72183235528512], [-4.2657934694023325, 19.872971694101718], [-2.7247164865458315, 20.605455654403837], [-2.4838650119479646, 22.197541386302387], [-3.8296846549188386, 23.088405139235885]]]}}, {"type": "Feature", "properties": {"bin": "821587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.14509777269923, 51.01134550218379], [116.34192417394114, 49.7091107998404], [118.78547854820384, 49.545216263040565], [120.21325954247637, 50.680828832173816], [119.12537216908741, 52.05007454011355], [116.49115539398706, 52.21684457113934], [115.14509777269923, 51.01134550218379]]]}}, {"type": "Feature", "properties": {"bin": "826807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.9267501003878, 8.738797899894394], [115.70668093151195, 7.051735504176149], [116.97139520919602, 6.045492474858289], [118.45524797889053, 6.690840828057335], [118.68610728166979, 8.3764613699628], [117.41849366987863, 9.387741851934114], [115.9267501003878, 8.738797899894394]]]}}, {"type": "Feature", "properties": {"bin": "822ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[149.91719976591605, 43.29818750239016], [150.30786314404847, 44.989812519670075], [148.49339585930505, 46.001343542808314], [146.34830719648915, 45.300077309535865], [146.06288796294555, 43.62471303294338], [147.81728377284585, 42.633406882356155], [149.91719976591605, 43.29818750239016]]]}}, {"type": "Feature", "properties": {"bin": "820a57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.53767024643494, 68.2365930099298], [97.85633031511932, 67.05472013305771], [102.1252042971817, 67.40964436109282], [103.59887585941732, 69.01988287882234], [100.25093520373768, 70.33211048895711], [95.41691689117123, 69.89655021163419], [94.53767024643494, 68.2365930099298]]]}}, {"type": "Feature", "properties": {"bin": "8264b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.13773328689898, 16.482450442847686], [103.31525507763155, 18.233591272175207], [101.79825574117908, 19.27267328023629], [100.10025759437842, 18.555032875306942], [99.93878834403677, 16.794915519798817], [101.4588915346373, 15.760959213480179], [103.13773328689898, 16.482450442847686]]]}}, {"type": "Feature", "properties": {"bin": "82249ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.16481861122213, 36.20351483811321], [96.79363542040774, 34.58273738134444], [98.22850425577052, 33.621069780683506], [100.0216836653357, 34.230365516604444], [100.46459876748379, 35.81012163843614], [99.04532465399103, 36.82197095600332], [97.16481861122213, 36.20351483811321]]]}}, {"type": "Feature", "properties": {"bin": "823827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.4162342628377134, 38.1159967227654], [-3.3113412530765816, 37.499409186860944], [-3.5848058032652497, 35.801655683177536], [-2.027587338475257, 34.757090726489174], [-0.21185444833696337, 35.37567101563383], [0.12380735772062498, 37.036562006618205], [-1.4162342628377134, 38.1159967227654]]]}}, {"type": "Feature", "properties": {"bin": "8255affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.395292355187806, 23.280106473767372], [-18.022267576148227, 22.372442159798524], [-17.992762466160794, 20.672196772789086], [-16.39648236469557, 19.88982836881392], [-14.809542528491999, 20.76971623997587], [-14.779224893207182, 22.458857233680753], [-16.395292355187806, 23.280106473767372]]]}}, {"type": "Feature", "properties": {"bin": "8217a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.33216677893589, 57.44191113404762], [145.33111403246164, 55.81497059007159], [147.89212944698653, 54.985759470582124], [150.57390528947013, 55.70220945507606], [150.85590113090583, 57.319746471970966], [148.1776454692107, 58.23443896628216], [145.33216677893589, 57.44191113404762]]]}}, {"type": "Feature", "properties": {"bin": "8275a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.201402554173386, 9.317263995385268], [-9.58945482345044, 8.560616098966763], [-9.695281485000976, 7.173126163814278], [-8.452416923081168, 6.5576953249960095], [-7.101993445416778, 7.292742847021743], [-6.957444601114244, 8.66419747538798], [-8.201402554173386, 9.317263995385268]]]}}, {"type": "Feature", "properties": {"bin": "8264cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[88.50810517828272, 14.841938403281741], [88.60338341402318, 16.612362694922076], [87.06119231662166, 17.540563144602597], [85.44533748453688, 16.700959516615516], [85.36909486363054, 14.944771861659476], [86.88968997996328, 14.013560093847394], [88.50810517828272, 14.841938403281741]]]}}, {"type": "Feature", "properties": {"bin": "82112ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.374489291363883, 62.947784556935986], [29.37740391195775, 61.85315498425268], [32.364306440168384, 62.22127049258845], [33.56299700893147, 63.72836272921309], [31.51753718529259, 64.87303661186431], [28.3067719754889, 64.45848101070418], [27.374489291363883, 62.947784556935986]]]}}, {"type": "Feature", "properties": {"bin": "825397fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[31.984957764734823, 19.832653113527943], [31.19369141851222, 18.24201252667272], [32.23155118654526, 16.848032044647276], [34.03120960006244, 17.02023873386213], [34.84176301361014, 18.577729518599106], [33.834946882133956, 19.99603803596314], [31.984957764734823, 19.832653113527943]]]}}, {"type": "Feature", "properties": {"bin": "82775ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.98737008032504, 6.233160267396046], [160.67487419818355, 4.604844470308613], [161.81561480968847, 3.508104224668151], [163.23931441944137, 4.0330269428364485], [163.54549668989287, 5.629570987614513], [162.43453315987915, 6.732799425262087], [160.98737008032504, 6.233160267396046]]]}}, {"type": "Feature", "properties": {"bin": "824047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[102.32113206765436, 24.395173932504584], [102.49921988747064, 26.053266420816335], [100.93461658303745, 27.04388327080286], [99.18988329590645, 26.375730690274633], [99.02910120926438, 24.7119281057643], [100.59536245945822, 23.721461901127963], [102.32113206765436, 24.395173932504584]]]}}, {"type": "Feature", "properties": {"bin": "826457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[91.35430554042236, 9.316288774752767], [91.464698892715, 11.11188905936001], [89.93964737536987, 12.094890519286077], [88.32082106347694, 11.278608486091386], [88.22877891224678, 9.492563509578053], [89.73715212379656, 8.51280994488121], [91.35430554042236, 9.316288774752767]]]}}, {"type": "Feature", "properties": {"bin": "821557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.55986456111661, 60.16970228253804], [121.89019303773591, 58.63844048366853], [125.11453973539015, 58.337036432424], [127.318426179508, 59.54334767165104], [126.24249351575548, 61.14671785108044], [122.68704503288093, 61.47366203478103], [120.55986456111661, 60.16970228253804]]]}}, {"type": "Feature", "properties": {"bin": "822faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[152.48972895786574, 37.67916036936991], [152.91700823580283, 39.39984822241461], [151.24672216609224, 40.51908889731177], [149.19306703922015, 39.89128943394794], [148.85692557335597, 38.18237993929451], [150.48280815623022, 37.088590803454224], [152.48972895786574, 37.67916036936991]]]}}, {"type": "Feature", "properties": {"bin": "824f47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[147.74922130032868, 14.452474241134714], [147.42246432703843, 12.754155068239717], [148.7696100502551, 11.586993545144015], [150.4269632053139, 12.119653348523006], [150.754220698069, 13.803525361009276], [149.42409546227665, 14.969501978564315], [147.74922130032868, 14.452474241134714]]]}}, {"type": "Feature", "properties": {"bin": "820567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.81605021570019, 86.18578345520432], [129.0292792305364, 84.5408338462023], [145.41917474875845, 83.88011222728622], [161.82489010339506, 84.53450356990503], [169.12088680200165, 86.17678739494642], [145.5581976913369, 87.36469532319619], [121.81605021570019, 86.18578345520432]]]}}, {"type": "Feature", "properties": {"bin": "826007fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.30569037447948, 9.906049181927763], [76.32684584963374, 11.607007909820153], [74.9284214007126, 12.455892014716785], [73.54203721621735, 11.612728158942945], [73.53666117030511, 9.942291171608053], [74.90215741903009, 9.084512524970027], [76.30569037447948, 9.906049181927763]]]}}, {"type": "Feature", "properties": {"bin": "821667fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.30938932885118, 58.98135158598347], [173.78748926991187, 57.53249012380251], [175.38736116053553, 56.22189416275603], [178.36833743159448, 56.284138315106226], [-179.9789398838988, 57.646231821823875], [178.57998532973056, 59.032171994759636], [175.30938932885118, 58.98135158598347]]]}}, {"type": "Feature", "properties": {"bin": "823d97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[74.83615769090727, 23.930617985962513], [75.01088584624904, 22.41056616821522], [76.45898064659956, 21.67923746478169], [77.95590549041005, 22.57120834868734], [77.9880087460123, 24.203950018754842], [76.33925990353578, 24.849585303433958], [74.83615769090727, 23.930617985962513]]]}}, {"type": "Feature", "properties": {"bin": "820b0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.28100470319012, 65.36915236131517], [72.78571153526721, 63.75866240186588], [76.29366342143571, 63.06848464526779], [79.49969860693847, 63.939145038328846], [79.33992396507412, 65.55692907015926], [75.62454067323178, 66.30062172014773], [72.28100470319012, 65.36915236131517]]]}}, {"type": "Feature", "properties": {"bin": "8207b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.416534576215874, 79.62054525867497], [-16.54048563323215, 80.82228127123085], [-26.182285242096057, 80.41687275163915], [-26.424987503109225, 78.79660349043647], [-20.30919570668708, 77.80316131016781], [-13.578593545917547, 78.27816184803088], [-10.416534576215874, 79.62054525867497]]]}}, {"type": "Feature", "properties": {"bin": "826927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[112.38073693010568, 15.302304732752043], [112.59630239596234, 16.99902076413141], [111.20511321774173, 18.07704074779854], [109.57978924961904, 17.449720299155228], [109.3750788522398, 15.730668207670497], [110.78436003281134, 14.661050833893995], [112.38073693010568, 15.302304732752043]]]}}, {"type": "Feature", "properties": {"bin": "825477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.006464265768987, 15.98598523372256], [-10.506567295793253, 15.187058911620383], [-10.605640043933498, 13.645345830474795], [-9.251135128038426, 12.92166325673315], [-7.794022418669754, 13.699301124664801], [-7.649183817068924, 15.22126557573289], [-9.006464265768987, 15.98598523372256]]]}}, {"type": "Feature", "properties": {"bin": "825947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.443478079873218, 22.23328539196474], [7.99840503877189, 20.57032700832011], [9.289964562104172, 19.32711432233708], [11.045964625133967, 19.71754470823835], [11.543750260400667, 21.38124691750292], [10.23354395677019, 22.6544560846675], [8.443478079873218, 22.23328539196474]]]}}, {"type": "Feature", "properties": {"bin": "82535ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.049054859825034, 23.440387634067395], [47.124580725886155, 22.01870306147376], [47.867839878662906, 20.59809474557387], [49.48574871263946, 20.59483507956772], [50.400094268547306, 21.979118809782555], [49.70750466598524, 23.403457452057452], [48.049054859825034, 23.440387634067395]]]}}, {"type": "Feature", "properties": {"bin": "82042ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.36988141373342, 78.53376243783075], [145.36215812121338, 76.73288469988287], [151.71752525574163, 75.74548799033728], [158.72818840835586, 76.37437265305009], [160.6863038136288, 78.12011723529922], [153.80884496443537, 79.31717648987745], [145.36988141373342, 78.53376243783075]]]}}, {"type": "Feature", "properties": {"bin": "8252a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.58690108567234, 17.313051044773594], [36.76279756092216, 15.791150069432325], [37.67879676017746, 14.427835621737403], [39.38257824381035, 14.565741490172128], [40.214949198605, 16.05027003530367], [39.33656917594966, 17.433882626869472], [37.58690108567234, 17.313051044773594]]]}}, {"type": "Feature", "properties": {"bin": "82419ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.38411308859807, 29.155221704779063], [117.62642833556802, 30.614685711904176], [116.26130043917948, 31.680907967987867], [114.62653789211869, 31.289486126374026], [114.39269545860655, 29.812719772921096], [115.7845997721203, 28.744357248622574], [117.38411308859807, 29.155221704779063]]]}}, {"type": "Feature", "properties": {"bin": "82206ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.78014710092717, 52.81198572301435], [82.77278505846108, 51.039193656265965], [85.14867094354511, 50.108314501707056], [87.58854200303621, 50.900190145391576], [87.77296412239532, 52.6542030078627], [85.34312128437487, 53.63713751938727], [82.78014710092717, 52.81198572301435]]]}}, {"type": "Feature", "properties": {"bin": "824357fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[59.53760347725541, 31.506665813674903], [60.099069300235215, 29.903560266766736], [61.993877752890405, 29.43456098512192], [63.40664700727329, 30.552823525465254], [62.91614862847988, 32.189475238976804], [60.939344242953645, 32.67501516269659], [59.53760347725541, 31.506665813674903]]]}}, {"type": "Feature", "properties": {"bin": "821e07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.606046853462765, 49.899182136699345], [15.817383557718518, 48.388122500459744], [17.489487896493493, 47.23467882509988], [19.952960563687107, 47.57213992693463], [20.8228860838409, 49.07436692405009], [19.151349829527778, 50.24865423658935], [16.606046853462765, 49.899182136699345]]]}}, {"type": "Feature", "properties": {"bin": "823e27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[21.130742457784212, 32.64713432614804], [20.40081144749384, 30.959290246190747], [21.73337025858129, 29.574118177068907], [23.78579890275512, 29.853045268777663], [24.56356707050921, 31.525134298050116], [23.24317489424228, 32.93445208208274], [21.130742457784212, 32.64713432614804]]]}}, {"type": "Feature", "properties": {"bin": "8210d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.29377410073728, 55.37449538416097], [56.286117998753014, 53.74532256646542], [59.158974101083395, 53.41462714426706], [61.22985696003771, 54.70543053152282], [60.3882768894146, 56.37618096484927], [57.31491513229715, 56.7156066264383], [55.29377410073728, 55.37449538416097]]]}}, {"type": "Feature", "properties": {"bin": "826b4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[32.46526669022789, 13.92912581670429], [31.70919852287402, 12.40154427413899], [32.687080191852424, 11.088516961674802], [34.393732963880566, 11.276322461916562], [35.166454917588624, 12.769893004506192], [34.2172114446264, 14.109517818895615], [32.46526669022789, 13.92912581670429]]]}}, {"type": "Feature", "properties": {"bin": "822ceffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.86682981156752, 40.37937452916119], [52.69366205790297, 38.7628011665807], [54.846596303427944, 38.436843700474434], [56.28323135160541, 39.7296014099063], [55.52729405295955, 41.39291048343534], [53.25932626424547, 41.716884731527905], [51.86682981156752, 40.37937452916119]]]}}, {"type": "Feature", "properties": {"bin": "827e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.34522618967037, -1.2146892558706877], [175.95074326529806, -0.10005961824174014], [175.0938278791749, 0.8499475652488149], [173.6152115035718, 0.6563254594597022], [173.0317720714698, -0.4822612846177597], [173.90393685420585, -1.403424289472709], [175.34522618967037, -1.2146892558706877]]]}}, {"type": "Feature", "properties": {"bin": "82016ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.2362007418151957, 74.58292826837449], [1.1119051223096887, 75.70225329818776], [-1.9032774208520538, 77.03453024906975], [-9.023350332015394, 77.08353021671479], [-10.98528397730722, 75.55801829625113], [-7.439780394344702, 74.36066046087873], [-2.2362007418151957, 74.58292826837449]]]}}, {"type": "Feature", "properties": {"bin": "827a5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[38.285825439027946, 1.9283068208699659], [38.86037407688217, 3.448590982272338], [37.77676428812329, 4.740955381891409], [36.109961522727325, 4.536384818354094], [35.51221775689079, 3.0227099043793886], [36.603820904737475, 1.706579969821451], [38.285825439027946, 1.9283068208699659]]]}}, {"type": "Feature", "properties": {"bin": "8204d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[153.47700907770454, 67.54065274369614], [152.8815528504696, 65.7896179431818], [156.18070886491097, 64.69968546511701], [160.16987918038882, 65.24377532973864], [161.29561226534284, 66.94299147138761], [157.93121236666437, 68.15646355071095], [153.47700907770454, 67.54065274369614]]]}}, {"type": "Feature", "properties": {"bin": "824327fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.55073502317359, 31.797105560963587], [51.29571000306017, 30.276887845090446], [53.16240799722281, 29.9438206116453], [54.36803088840162, 31.133168085520865], [53.672240759796885, 32.69941968829514], [51.71868001123167, 33.0302504795207], [50.55073502317359, 31.797105560963587]]]}}, {"type": "Feature", "properties": {"bin": "8261b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[86.80542094987004, 12.238125270361769], [86.88968997996328, 14.013560093847394], [85.36909486363054, 14.944771861659476], [83.7878439473834, 14.102745522191507], [83.7221984125256, 12.344265741825286], [85.21924329904921, 11.410516289730447], [86.80542094987004, 12.238125270361769]]]}}, {"type": "Feature", "properties": {"bin": "827acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[39.98176285579589, 6.398852907904242], [40.528836927272636, 7.826037781496256], [39.467791014373496, 9.061221740145482], [37.848935371300406, 8.893462571252645], [37.27823313011431, 7.473154913703828], [38.34945582023904, 6.213279889313993], [39.98176285579589, 6.398852907904242]]]}}, {"type": "Feature", "properties": {"bin": "82591ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.3600267516376539, 18.833358840282322], [1.0570071254543887, 17.249308733090295], [2.302842809205857, 16.098688642959495], [3.881187194444415, 16.504758055404427], [4.2342944226787855, 18.09884525514369], [2.959078382640479, 19.277482047407386], [1.3600267516376539, 18.833358840282322]]]}}, {"type": "Feature", "properties": {"bin": "82435ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[62.91614862847988, 32.189475238976804], [63.40664700727329, 30.552823525465254], [65.31584973168054, 30.032244941109706], [66.81138218629923, 31.126021641142017], [66.3999720922499, 32.790283406002835], [64.41163783547759, 33.334105548527745], [62.91614862847988, 32.189475238976804]]]}}, {"type": "Feature", "properties": {"bin": "821ecffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[26.072885089723204, 42.421412954963046], [25.17674314532988, 40.85101584262723], [26.578016345292617, 39.47064903027519], [28.846868847179117, 39.64331054771269], [29.788911025548757, 41.19512137576951], [28.419295722433173, 42.59312536112824], [26.072885089723204, 42.421412954963046]]]}}, {"type": "Feature", "properties": {"bin": "82330ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[171.61523767087667, 27.165606164914283], [172.3902149386298, 28.81214236551594], [171.1299066342305, 30.224678744640975], [169.07436240121478, 29.954738628780905], [168.35070139552502, 28.281928894701036], [169.62892995630153, 26.904926687063615], [171.61523767087667, 27.165606164914283]]]}}, {"type": "Feature", "properties": {"bin": "82868ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[84.72090978977324, -0.8386726139007215], [84.78971932948328, 0.8737500859223797], [83.34372903289862, 1.838980256743801], [81.85307387147245, 1.0848539086284115], [81.8012058527199, -0.6100686809196604], [83.22315234550402, -1.5687178351663293], [84.72090978977324, -0.8386726139007215]]]}}, {"type": "Feature", "properties": {"bin": "827367fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.44137121244634, 16.1935588094142], [138.12796381904693, 14.477922221250962], [139.53597608685283, 13.348756523042683], [141.25603781242634, 13.939408592242517], [141.57589071657515, 15.65379761709913], [140.1697245352548, 16.779214626193742], [138.44137121244634, 16.1935588094142]]]}}, {"type": "Feature", "properties": {"bin": "823ea7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.404954355833446, 25.517872533302246], [15.800827802347936, 23.821410412145514], [17.09269537453719, 22.484493199126963], [18.9912827255566, 22.815134716422165], [19.644313864382354, 24.500416440761107], [18.351304577591986, 25.86678026136113], [16.404954355833446, 25.517872533302246]]]}}, {"type": "Feature", "properties": {"bin": "825ae7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.41754931509686, 16.540713672141628], [171.08619530625026, 18.070429588150667], [169.94953838841533, 19.372418166302793], [168.1309214327534, 19.1055675532918], [167.50441760907103, 17.549432794994257], [168.65279280829242, 16.286127926718763], [170.41754931509686, 16.540713672141628]]]}}, {"type": "Feature", "properties": {"bin": "823207fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.60864237609607, 33.30902587127847], [171.42221952831454, 34.982928074805315], [170.04739755317138, 36.40019597525651], [167.8391329492701, 36.109696209480475], [167.0873928669933, 34.41307126304863], [168.47925358153148, 33.029168686825656], [170.60864237609607, 33.30902587127847]]]}}, {"type": "Feature", "properties": {"bin": "828c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.52508329787003, -0.16182599287443586], [110.72399425598122, 1.535865775502144], [109.37130764054983, 2.5166063615571863], [107.80526454768341, 1.7786268769012792], [107.61719841382204, 0.05866487759648554], [108.98392529964751, -0.901274271496052], [110.52508329787003, -0.16182599287443586]]]}}, {"type": "Feature", "properties": {"bin": "82434ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.92434226966045, 35.01417583784235], [64.41163783547759, 33.334105548527745], [66.3999720922499, 32.790283406002835], [67.9828900331216, 33.902396769499795], [67.58388412975768, 35.60844146853497], [65.51119773173042, 36.17746302027598], [63.92434226966045, 35.01417583784235]]]}}, {"type": "Feature", "properties": {"bin": "82651ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[102.11043714087029, 5.805282758652391], [102.27727175025632, 7.5878968444114205], [100.80136063472524, 8.61889065810363], [99.15702672665195, 7.853853966740167], [99.00561884910029, 6.061929363987142], [100.48279867647386, 5.043918034680121], [102.11043714087029, 5.805282758652391]]]}}, {"type": "Feature", "properties": {"bin": "822f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[154.7440406879096, 31.88396300415958], [155.19463815503386, 33.60034175292492], [153.65333558866647, 34.79494000415419], [151.69314222141958, 34.24156093178744], [151.32134132470674, 32.53130475240214], [152.83019720831965, 31.36741630675961], [154.7440406879096, 31.88396300415958]]]}}, {"type": "Feature", "properties": {"bin": "827617fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.5191014580942, -0.40639453977196044], [155.2010590098167, -2.0884757961035616], [156.42274583452016, -3.152670815193157], [157.9374837162601, -2.5476709764658385], [158.25171743682782, -0.8944150053330964], [157.05535831511148, 0.18261910269664047], [155.5191014580942, -0.40639453977196044]]]}}, {"type": "Feature", "properties": {"bin": "82161ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[166.44940896436609, 51.32191270194406], [167.38848052857205, 52.87589788099554], [165.51894231309208, 54.08819863964252], [162.7025195367175, 53.71333095002919], [161.8811466359504, 52.14427457373202], [163.75339688010732, 50.96414399817222], [166.44940896436609, 51.32191270194406]]]}}, {"type": "Feature", "properties": {"bin": "826b6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[32.23155118654526, 16.848032044647276], [31.458258076484793, 15.285505315434653], [32.46526669022789, 13.92912581670429], [34.2172114446264, 14.109517818895615], [35.008408899924135, 15.638246320867433], [34.03120960006244, 17.02023873386213], [32.23155118654526, 16.848032044647276]]]}}, {"type": "Feature", "properties": {"bin": "82141ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[127.94077240151931, 53.74777826688238], [128.71966493700788, 52.26182662674445], [131.30640648994407, 51.820418717345376], [133.30160318508896, 52.825788696022364], [132.72120858422213, 54.355864647094066], [129.93836418297857, 54.83888673082788], [127.94077240151931, 53.74777826688238]]]}}, {"type": "Feature", "properties": {"bin": "823c97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[83.92145050975647, 17.596565113429698], [83.98943855087481, 19.325572907160385], [82.46422151370294, 20.17924509521623], [80.89919798431202, 19.312037048375995], [80.85006868486495, 17.603370083569754], [82.34724623125089, 16.74128168274286], [83.92145050975647, 17.596565113429698]]]}}, {"type": "Feature", "properties": {"bin": "827a97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.72617525590205, 6.276363063405384], [52.139413972024556, 7.60596935368187], [51.14446111745103, 8.796498558587306], [49.712829687588396, 8.682575679218088], [49.27165553777247, 7.35045425670836], [50.2899341797364, 6.134248764846948], [51.72617525590205, 6.276363063405384]]]}}, {"type": "Feature", "properties": {"bin": "827607fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[157.37218087501466, 1.8539523467425794], [157.05535831511148, 0.18261910269664047], [158.25171743682782, -0.8944150053330964], [159.73813727496247, -0.3111395495865476], [160.05023931957322, 1.3298949686991755], [158.88094782469753, 2.4178522793667603], [157.37218087501466, 1.8539523467425794]]]}}, {"type": "Feature", "properties": {"bin": "8230c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.25334861257146, 35.97473569616671], [125.97326654688494, 34.65941531820471], [127.39451411745605, 33.93630615131908], [129.11598634806901, 34.5377946061048], [129.40970712293532, 35.861246481750946], [127.9686387593953, 36.575490162825574], [126.25334861257146, 35.97473569616671]]]}}, {"type": "Feature", "properties": {"bin": "823997fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.092615024541725, 31.105564272262285], [-12.877752742714321, 30.271571925410477], [-12.948554583750909, 28.514935780874872], [-11.301996450753812, 27.6141453017058], [-9.574145573053787, 28.431000744101212], [-9.43663506793057, 30.16505875954292], [-11.092615024541725, 31.105564272262285]]]}}, {"type": "Feature", "properties": {"bin": "820bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.10885694905615, 55.4547540407015], [80.20285201143243, 53.69627924565033], [82.78014710092717, 52.81198572301435], [85.34312128437487, 53.63713751938727], [85.45178957793857, 55.383010983560176], [82.7966509361904, 56.31869702027608], [80.10885694905615, 55.4547540407015]]]}}, {"type": "Feature", "properties": {"bin": "8282affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.687382865825958, -1.51479749038197], [13.398514840417468, 0.01580312664861367], [12.488313965403783, 1.3016140005051489], [10.894897390645305, 1.0685158094781342], [10.189893676135952, -0.4318847675533966], [11.07154520164919, -1.7290974334753364], [12.687382865825958, -1.51479749038197]]]}}, {"type": "Feature", "properties": {"bin": "823ceffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[95.7130076996953, 24.957100652735345], [95.85513749449005, 26.622305043395016], [94.25201201925714, 27.537811825727395], [92.517389421541, 26.790487968432995], [92.39489798365517, 25.128231887822174], [93.98718666087771, 24.209804162048574], [95.7130076996953, 24.957100652735345]]]}}, {"type": "Feature", "properties": {"bin": "821877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.889760342933783, 51.22372845966178], [-7.224493860559396, 50.67904691252102], [-7.460509080062738, 49.05681780552428], [-5.466444723378631, 48.005644741446424], [-3.243656268908248, 48.54730149141871], [-2.9065278792841616, 50.14229216995713], [-4.889760342933783, 51.22372845966178]]]}}, {"type": "Feature", "properties": {"bin": "821e27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.658506238480797, 52.45676979339932], [14.863026772454885, 50.99274772045683], [16.606046853462765, 49.899182136699345], [19.151349829527778, 50.24865423658935], [20.036282030286998, 51.703743211634446], [18.2899634859423, 52.81905199947077], [15.658506238480797, 52.45676979339932]]]}}, {"type": "Feature", "properties": {"bin": "822f47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[142.7396591831852, 31.20840317246497], [142.90304141661073, 32.85965633659085], [141.37966239930637, 33.84613507499527], [139.748324545009, 33.16280781766435], [139.65480190759976, 31.537999211685943], [141.12353210543196, 30.569559267468], [142.7396591831852, 31.20840317246497]]]}}, {"type": "Feature", "properties": {"bin": "826ae7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.3880967444156, 2.3508402872747567], [31.028472857488882, 3.8891448861435705], [29.961298273611618, 5.181922624952887], [28.257503389813063, 4.957754931407084], [27.60191780171687, 3.4345808068957653], [28.664504679143825, 2.1201981947478785], [30.3880967444156, 2.3508402872747567]]]}}, {"type": "Feature", "properties": {"bin": "827357fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[137.50580793197614, 10.993708363678921], [137.1970727246292, 9.23145267029969], [138.59644693629747, 8.08264076991779], [140.3048448424543, 8.696743780394957], [140.62050455037325, 10.457721186214048], [139.22131203702125, 11.60628018538203], [137.50580793197614, 10.993708363678921]]]}}, {"type": "Feature", "properties": {"bin": "82240ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.65410322050224, 45.45919731340779], [103.04909924039622, 43.84513423442955], [104.51059966118586, 42.706893594922064], [106.53560104056335, 43.139813467462034], [107.21506643714682, 44.70235369563737], [105.79970818967243, 45.88340148783781], [103.65410322050224, 45.45919731340779]]]}}, {"type": "Feature", "properties": {"bin": "825917fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.4579244921298804, 19.504910377173324], [-1.7113099039779127, 17.935404581817405], [-0.47047915784386257, 16.820062058483494], [1.0570071254543887, 17.249308733090295], [1.3600267516376539, 18.833358840282322], [0.08583528510709204, 19.9742016751009], [-1.4579244921298804, 19.504910377173324]]]}}, {"type": "Feature", "properties": {"bin": "826507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.39146400745685, 3.0214726756669807], [103.56291680010384, 4.785999481381559], [102.11043714087029, 5.805282758652391], [100.48279867647386, 5.043918034680121], [100.32598525819338, 3.267721155518443], [101.78183601973568, 2.2641433736476864], [103.39146400745685, 3.0214726756669807]]]}}, {"type": "Feature", "properties": {"bin": "820adffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[109.77665935770398, 63.30546259246109], [111.82707785879496, 61.880144648040535], [115.4509268826033, 61.84098848787116], [117.42814460389903, 63.240486262489966], [115.57361115305922, 64.76805994944728], [111.51263935144166, 64.79296775799982], [109.77665935770398, 63.30546259246109]]]}}, {"type": "Feature", "properties": {"bin": "821547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.25420033824275, 63.052513018204294], [122.68704503288093, 61.47366203478103], [126.24249351575548, 61.14671785108044], [128.74053670218638, 62.369457595654104], [127.6321786186256, 64.02341503162813], [123.67301587593408, 64.38228704008819], [121.25420033824275, 63.052513018204294]]]}}, {"type": "Feature", "properties": {"bin": "822e87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[148.49339585930505, 46.001343542808314], [148.85928854972465, 47.66739948724733], [146.9668723044961, 48.61518272872468], [144.77847701295235, 47.87812693834678], [144.52548565372334, 46.23006227618878], [146.34830719648915, 45.300077309535865], [148.49339585930505, 46.001343542808314]]]}}, {"type": "Feature", "properties": {"bin": "82386ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.598984700477283, 38.25143274146292], [9.054678245207672, 36.5678509319993], [10.558256056640367, 35.370372439869115], [12.629034522814488, 35.83666250378512], [13.244313475659819, 37.523712365785194], [11.719174616730063, 38.74166724514195], [9.598984700477283, 38.25143274146292]]]}}, {"type": "Feature", "properties": {"bin": "82765ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.09786169703642, 0.334638096995223], [164.7984037181348, -1.2395596636497244], [165.84925104057967, -2.236251730754101], [167.16906196667583, -1.67143349571383], [167.46100581969637, -0.13278097466366132], [166.44080679403527, 0.8762512952424053], [165.09786169703642, 0.334638096995223]]]}}, {"type": "Feature", "properties": {"bin": "826b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.050440170541734, 7.99224641091651], [19.479242065131633, 6.522352266708336], [20.458518123241934, 5.284276360502933], [22.136132249356997, 5.527020080114603], [22.811969651582398, 7.0114316192573325], [21.736228401051253, 8.243493259763863], [20.050440170541734, 7.99224641091651]]]}}, {"type": "Feature", "properties": {"bin": "822e1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[143.84165263839182, 41.22608204319894], [144.05801957035413, 42.90122568599545], [142.3058437365082, 43.816094965537175], [140.40839998730652, 43.04217041557711], [140.2848767565762, 41.39362200086838], [141.96698272199194, 40.49175081410267], [143.84165263839182, 41.22608204319894]]]}}, {"type": "Feature", "properties": {"bin": "825b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[178.7003543745467, 13.398384387599426], [179.46166464698828, 14.829162546143026], [178.50677685170746, 16.107726060451032], [176.7615924622716, 15.921990549108155], [176.02550713619118, 14.45564596467375], [177.00782264778175, 13.21064685442285], [178.7003543745467, 13.398384387599426]]]}}, {"type": "Feature", "properties": {"bin": "82205ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.75954230288217, 47.4712086139882], [82.75356546020507, 45.682875452008915], [84.90331509102782, 44.77202716129376], [87.10609716373756, 45.599757376967865], [87.25627656786097, 47.36960130489782], [85.06133769126956, 48.33189936227608], [82.75954230288217, 47.4712086139882]]]}}, {"type": "Feature", "properties": {"bin": "8258effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.607494747938308, 10.838590240504287], [11.152828163016908, 9.328206600489576], [12.313097972320257, 8.132105663553832], [13.938770763768797, 8.412496363249264], [14.435041674371641, 9.913390776005329], [13.264752541075095, 11.144077233626273], [11.607494747938308, 10.838590240504287]]]}}, {"type": "Feature", "properties": {"bin": "8264a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[101.29189694158653, 13.985209422122674], [101.4588915346373, 15.760959213480179], [99.93878834403677, 16.794915519798817], [98.25154405454845, 16.046518348999836], [98.10111823216585, 14.264150052057268], [99.62104197842224, 13.236333300082233], [101.29189694158653, 13.985209422122674]]]}}, {"type": "Feature", "properties": {"bin": "82224ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.26927134530507, 47.79700131917362], [-179.5540902215494, 49.27430780429312], [178.99763303728216, 50.70784143732748], [176.3024402828945, 50.63969712744497], [175.1846999842042, 49.13277829085184], [176.69765473278346, 47.723516246519075], [179.26927134530507, 47.79700131917362]]]}}, {"type": "Feature", "properties": {"bin": "82739ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.5785597151662, 1.4003324863197344], [129.2996656327738, -0.3503939308508571], [130.66626203864965, -1.4869936465684834], [132.32501247969677, -0.8775480454776421], [132.61481314523337, 0.8818145781803421], [131.23529687565494, 2.023474316036843], [129.5785597151662, 1.4003324863197344]]]}}, {"type": "Feature", "properties": {"bin": "8286b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[90.71723526584819, -1.3006030285245263], [90.8204984152339, 0.4335749811918005], [89.34560531293286, 1.417621793592918], [87.78387603618698, 0.656128824074302], [87.69784177235935, -1.0694846491681467], [89.15626824867587, -2.0426493760071525], [90.71723526584819, -1.3006030285245263]]]}}, {"type": "Feature", "properties": {"bin": "82188ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.99201420363153, 49.623581785392574], [-23.218947610760186, 48.71933132364778], [-23.044935902233508, 47.01609893844996], [-20.76090845706983, 46.218925544889224], [-18.59397660055241, 47.0984334967306], [-18.65090558974211, 48.798472969414014], [-20.99201420363153, 49.623581785392574]]]}}, {"type": "Feature", "properties": {"bin": "823287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[176.38689332167078, 40.108041473315794], [177.38922397185618, 41.70426599254369], [176.0202291440094, 43.16654858963044], [173.60281879844388, 43.00525323266232], [172.65691196626003, 41.38057162805131], [174.06798768133586, 39.945415962862576], [176.38689332167078, 40.108041473315794]]]}}, {"type": "Feature", "properties": {"bin": "824b57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.6723152844791, 29.525998776620106], [129.38100221234527, 28.04399710423246], [130.80716405040224, 27.155857089463083], [132.53882899172459, 27.7600437382071], [132.84193684897602, 29.25093030861391], [131.40197442049958, 30.129180286959176], [129.6723152844791, 29.525998776620106]]]}}, {"type": "Feature", "properties": {"bin": "823ccffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.14850212623087, 22.297036352375546], [97.29754054563347, 24.001033222705775], [95.7130076996953, 24.957100652735345], [93.98718666087771, 24.209804162048574], [93.85707321113722, 22.50676092482895], [95.43361450937653, 21.549525708119347], [97.14850212623087, 22.297036352375546]]]}}, {"type": "Feature", "properties": {"bin": "827b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.03639698865581, -0.6149645664400275], [51.47132702771398, 0.8502628917755757], [50.43884720938579, 2.095272646421929], [48.9470688574492, 1.898270439192623], [48.48244732223994, 0.4250722038883098], [49.53914124481158, -0.8436031110165346], [51.03639698865581, -0.6149645664400275]]]}}, {"type": "Feature", "properties": {"bin": "82186ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.7640259623867546, 47.90745035042651], [-1.3966081625912776, 47.44351195977147], [-1.75279807155882, 45.82891715662811], [-0.02800493241727862, 44.712977777952425], [2.026568965384605, 45.18424868970644], [2.458901717447699, 46.76373050573099], [0.7640259623867546, 47.90745035042651]]]}}, {"type": "Feature", "properties": {"bin": "824a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.01426412677232, 17.847756711055307], [125.74386789284029, 16.171868435032273], [127.11938439610546, 15.15441616066631], [128.78462053797352, 15.82234000807967], [129.06793500100542, 17.514518910811443], [127.6733813746568, 18.52278152929221], [126.01426412677232, 17.847756711055307]]]}}, {"type": "Feature", "properties": {"bin": "82554ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.472880089647737, 18.297332900396515], [-5.987551711331904, 17.542834947432016], [-6.162619450275885, 15.990769092176489], [-4.866872026589571, 15.219885219398503], [-3.4006303468807833, 15.959635072416075], [-3.1827237352933886, 17.484597774332933], [-4.472880089647737, 18.297332900396515]]]}}, {"type": "Feature", "properties": {"bin": "8258affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.0790065308125625, 10.73401495722421], [3.751337829888936, 9.26521097155255], [4.915720603403216, 8.129174779439118], [6.429971224498451, 8.430253460458047], [6.801169317009782, 9.899743070823426], [5.614833472212566, 11.068219758915488], [4.0790065308125625, 10.73401495722421]]]}}, {"type": "Feature", "properties": {"bin": "82439ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.8323305882829, 21.112001099003493], [57.36252540062567, 19.723731266747272], [58.98228838461839, 19.310273660620197], [60.13185329247822, 20.272918243601023], [59.6485427231173, 21.69339964405912], [57.96705293008713, 22.11944991960187], [56.8323305882829, 21.112001099003493]]]}}, {"type": "Feature", "properties": {"bin": "827717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[150.76474122447317, 5.81388917924783], [150.44123001544202, 4.084015752678349], [151.7389862436277, 2.940621928583292], [153.34006641659448, 3.5205301653094883], [153.66227784068005, 5.228228133654802], [152.38512910779167, 6.378336772450324], [150.76474122447317, 5.81388917924783]]]}}, {"type": "Feature", "properties": {"bin": "82732ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[133.28182725019983, 14.34251138614931], [132.9842311604419, 12.607157483299329], [134.38928496076238, 11.496463761756031], [136.09952409476884, 12.125603427845387], [136.4065502724283, 13.866921861790896], [134.9943333762424, 14.973539713678374], [133.28182725019983, 14.34251138614931]]]}}, {"type": "Feature", "properties": {"bin": "824b77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[128.534469151531, 31.786712055773553], [128.2466625810585, 30.359872296843278], [129.6723152844791, 29.525998776620106], [131.40197442049958, 30.129180286959176], [131.70221570848454, 31.564914230428208], [130.26073198874622, 32.38900103964749], [128.534469151531, 31.786712055773553]]]}}, {"type": "Feature", "properties": {"bin": "823927fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.101589192291552, 44.0506310521871], [-10.20321881864728, 43.35694709497956], [-10.347941440399472, 41.63003018212926], [-8.480681337677595, 40.62229995280742], [-6.464181984237864, 41.30855957084678], [-6.231987967712124, 43.00917586374685], [-8.101589192291552, 44.0506310521871]]]}}, {"type": "Feature", "properties": {"bin": "823cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[92.03594286203223, 19.993488299512972], [92.15419848576875, 21.727219941246698], [90.57586584565294, 22.648836325487405], [88.8959889806463, 21.839554052885227], [88.79730594665793, 20.114255896751192], [90.35884209031839, 19.189322458836735], [92.03594286203223, 19.993488299512972]]]}}, {"type": "Feature", "properties": {"bin": "825b07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[176.77464305509145, 6.786116724890197], [177.4585525863537, 8.095430643538931], [176.53922610069722, 9.236406119038636], [174.91405968816338, 9.034572067963818], [174.2548093963156, 7.694424760251107], [175.1948161431758, 6.586859421326587], [176.77464305509145, 6.786116724890197]]]}}, {"type": "Feature", "properties": {"bin": "824acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[137.3373585202837, 18.97657339005146], [137.0254728211787, 17.295269329360426], [138.44137121244634, 16.1935588094142], [140.1697245352548, 16.779214626193742], [140.4887905517993, 18.461450275109275], [139.07280839534985, 19.557547546884898], [137.3373585202837, 18.97657339005146]]]}}, {"type": "Feature", "properties": {"bin": "8268f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.99888533923311, 3.3267128731190128], [117.77335499591119, 1.6541202617644533], [119.031493265098, 0.5781518809279286], [120.54280909818868, 1.175734152705668], [120.78261008307042, 2.873595573332414], [119.49690584493457, 3.9486914533379895], [117.99888533923311, 3.3267128731190128]]]}}, {"type": "Feature", "properties": {"bin": "8264d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[93.47563122147147, 17.272417656365654], [93.6013197336276, 19.035204372299223], [92.03594286203223, 19.993488299512972], [90.35884209031839, 19.189322458836735], [90.25221803558833, 17.432918502465448], [91.80350469125146, 16.473813598562117], [93.47563122147147, 17.272417656365654]]]}}, {"type": "Feature", "properties": {"bin": "82540ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.921275342920428, 15.942300063297786], [-13.427370701414569, 15.114836157430986], [-13.478121064920861, 13.557520460561596], [-12.071696161095671, 12.842516407667542], [-10.605640043933498, 13.645345830474795], [-10.506567295793253, 15.187058911620383], [-11.921275342920428, 15.942300063297786]]]}}, {"type": "Feature", "properties": {"bin": "823157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[127.47141178448352, 41.086104966615075], [127.290626562701, 42.58774499356536], [125.28500285257124, 42.91031430420952], [123.98412056729994, 41.999374253313036], [124.6671982555717, 40.827038787594745], [126.15029699963041, 40.22211498519531], [127.47141178448352, 41.086104966615075]]]}}, {"type": "Feature", "properties": {"bin": "822cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.94793753068601, 34.58855769689513], [51.71868001123167, 33.0302504795207], [53.672240759796885, 32.69941968829514], [54.946698623666826, 33.929367151577324], [54.23119220420766, 35.534359447089386], [52.18260405296, 35.86272515976388], [50.94793753068601, 34.58855769689513]]]}}, {"type": "Feature", "properties": {"bin": "82582ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.151749348230992, 17.30304938782084], [6.748859480852724, 15.703742282491802], [7.98617018247175, 14.492671448162053], [9.646405667369654, 14.84966422909465], [10.097977661370507, 16.449183288197304], [8.841162105963765, 17.69221837320674], [7.151749348230992, 17.30304938782084]]]}}, {"type": "Feature", "properties": {"bin": "828c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.86810296409702, -2.3925313668830173], [106.0475728562409, -0.6881422936785299], [104.6440938384407, 0.2839386148111165], [103.0536445998174, -0.46895501652356597], [102.88723369517375, -2.1886839144950856], [104.29785798178293, -3.140562926671848], [105.86810296409702, -2.3925313668830173]]]}}, {"type": "Feature", "properties": {"bin": "82691ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[114.63091162238833, 9.773829789567674], [114.84982570195432, 11.47212367111249], [113.5224777854918, 12.529165955427235], [111.95537231806988, 11.874077964273782], [111.74553349919158, 10.148674114937817], [113.09327126386995, 9.10538636195205], [114.63091162238833, 9.773829789567674]]]}}, {"type": "Feature", "properties": {"bin": "82259ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[90.82743784898058, 41.88146804834018], [90.58971245327199, 40.15254599295621], [92.34774404572354, 39.17381250225141], [94.35106490572109, 39.87215919638372], [94.69260904032576, 41.567201776993976], [92.92995235535336, 42.59873264380677], [90.82743784898058, 41.88146804834018]]]}}, {"type": "Feature", "properties": {"bin": "823c77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.57977238815958, 31.726685303908507], [89.40743651851825, 30.10406278641751], [91.02563139985838, 29.280171655412413], [92.76677847338061, 30.027796577918867], [92.89372681805163, 31.5993389302699], [91.35849929423574, 32.48718343230164], [89.57977238815958, 31.726685303908507]]]}}, {"type": "Feature", "properties": {"bin": "82109ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.0068432850993, 51.19651327303004], [51.06282125187836, 49.60255244068691], [53.67049363562549, 49.37211750883398], [55.386315287413375, 50.74193901771935], [54.429208603430844, 52.38455552021002], [51.649131930343415, 52.60893305131945], [50.0068432850993, 51.19651327303004]]]}}, {"type": "Feature", "properties": {"bin": "824f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.60682333297862, 15.234875915752621], [155.2814870808001, 13.609851920734103], [156.53000296193795, 12.444154506023333], [158.0775869832051, 12.905696315689463], [158.3988762355108, 14.508596927136024], [157.176986555658, 15.672237488851469], [155.60682333297862, 15.234875915752621]]]}}, {"type": "Feature", "properties": {"bin": "8200d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.88956289901815, 81.63685238910074], [89.55465951648463, 80.74026860708855], [100.04706554343251, 81.33805216653383], [103.94443637143779, 83.03084121148757], [92.65544877532724, 84.24413301148068], [78.68950712797613, 83.3827897305548], [79.88956289901815, 81.63685238910074]]]}}, {"type": "Feature", "properties": {"bin": "8268affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.27189592479805, 3.6847416805057356], [115.05714917127528, 2.0107251710711176], [116.31386223370123, 1.0602129218445702], [117.77335499591119, 1.6541202617644533], [117.99888533923311, 3.3267128731190128], [116.75048305816937, 4.377108182228905], [115.27189592479805, 3.6847416805057356]]]}}, {"type": "Feature", "properties": {"bin": "824bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.99047716641068, 23.508951959736308], [117.75359925725854, 21.93631093069556], [119.04020323720252, 20.844479321420156], [120.59902508676929, 21.562234593566913], [120.84659463601861, 23.13338372521267], [119.52026220739299, 23.963809347590853], [117.99047716641068, 23.508951959736308]]]}}, {"type": "Feature", "properties": {"bin": "8204c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[159.0320291871327, 69.89552465791986], [157.93121236666437, 68.15646355071095], [161.29561226534284, 66.94299147138761], [165.75592867141455, 67.34111800954337], [167.43436333127184, 69.00059392160927], [164.12856095206374, 70.3473312721952], [159.0320291871327, 69.89552465791986]]]}}, {"type": "Feature", "properties": {"bin": "820a6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[87.35476831819847, 73.76986802635263], [92.17806986247332, 72.72517076411164], [97.72256288499204, 73.26114384853165], [99.27271520331344, 74.95595912534229], [94.14309010184775, 76.163042830191], [87.70559226067502, 75.49758638581739], [87.35476831819847, 73.76986802635263]]]}}, {"type": "Feature", "properties": {"bin": "8204e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.99053987969668, 72.84386418050191], [154.9982446340457, 71.07204267660472], [159.0320291871327, 69.89552465791986], [164.12856095206374, 70.3473312721952], [165.9403853591174, 72.03987614870728], [161.91207566662212, 73.36886176605668], [155.99053987969668, 72.84386418050191]]]}}, {"type": "Feature", "properties": {"bin": "82638ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.25056228923789, 9.092686031788569], [55.61454325087618, 10.320716458714706], [55.11347914716531, 11.501694573369337], [53.7647619646262, 11.439627581859163], [52.943133386720106, 10.166154494710117], [53.91385857443836, 9.001290419052781], [55.25056228923789, 9.092686031788569]]]}}, {"type": "Feature", "properties": {"bin": "825887fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.2764305960846776, 8.948132571134797], [1.9843964992241638, 7.529293806652365], [3.125247405149373, 6.425019813099671], [4.581792371905466, 6.708566989426475], [4.915720603403216, 8.129174779439118], [3.751337829888936, 9.26521097155255], [2.2764305960846776, 8.948132571134797]]]}}, {"type": "Feature", "properties": {"bin": "822567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.7209984233707, 55.90513251425149], [102.96687871335511, 54.313757154662134], [104.77350705880835, 53.07967684590146], [107.26951355733428, 53.39628792731904], [108.13645321870719, 54.935667215181674], [106.40349563787996, 56.21061073758502], [103.7209984233707, 55.90513251425149]]]}}, {"type": "Feature", "properties": {"bin": "827547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.2017635601567977, 0.936163764598368], [1.868917217650497, 2.3298633934462813], [1.1589044753770883, 3.4728049331861635], [-0.186075822013145, 3.2300014573740503], [-0.8378324096770464, 1.8701721240824984], [-0.1602034369452549, 0.7197982113703898], [1.2017635601567977, 0.936163764598368]]]}}, {"type": "Feature", "properties": {"bin": "827c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.261862725037528, 0.31113954958654044], [-19.112387293484908, 1.3631258164462183], [-19.421549166867063, 2.9850510529164813], [-20.88554403470773, 3.586179719894], [-22.06251628373991, 2.547670976465841], [-21.748282563172204, 0.8944150053331076], [-20.261862725037528, 0.31113954958654044]]]}}, {"type": "Feature", "properties": {"bin": "822147fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.37012392067518, 54.88872985061824], [69.86551096712377, 53.143470509913854], [72.61906460378023, 52.48327868250763], [75.0155927603138, 53.532331684395615], [74.71681355569017, 55.29058719632574], [71.82075541602921, 55.989082166215454], [69.37012392067518, 54.88872985061824]]]}}, {"type": "Feature", "properties": {"bin": "820b1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.29366342143571, 63.06848464526779], [76.58230152610159, 61.408014182878055], [79.77619664463793, 60.61768168029673], [82.82707956961833, 61.436707955225096], [82.8391711816032, 63.09426443748605], [79.49969860693847, 63.939145038328846], [76.29366342143571, 63.06848464526779]]]}}, {"type": "Feature", "properties": {"bin": "82090ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.239258880169474, 67.0156326284177], [3.797763423479726, 68.21974142812381], [0.2300394753996964, 68.07965221714933], [-1.480777203240806, 66.69937069330089], [0.19793526839841227, 65.55006071551604], [3.3780751296870815, 65.7243888731199], [5.239258880169474, 67.0156326284177]]]}}, {"type": "Feature", "properties": {"bin": "82252ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[95.64595779767541, 54.5866608798214], [95.17523164806224, 52.90017007418974], [97.23461143063881, 51.76344358686479], [99.74643491762787, 52.26442895448878], [100.36397669089338, 53.90786102072088], [98.33035289215339, 55.09437877364378], [95.64595779767541, 54.5866608798214]]]}}, {"type": "Feature", "properties": {"bin": "820b67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.46143468820213, 67.91997908494295], [67.6567964347214, 67.48842315467373], [71.099849161268, 68.48984393680729], [69.97164984865374, 70.07339600383801], [65.2813794283989, 70.5451205131701], [62.345344956509784, 69.3935964899183], [63.46143468820213, 67.91997908494295]]]}}, {"type": "Feature", "properties": {"bin": "822077fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[75.55012851642559, 49.975877206192976], [75.79014551842988, 48.18454407569599], [78.19452609304278, 47.39431423045349], [80.44628044060018, 48.351892541115966], [80.37088177124326, 50.141513814635246], [77.87845951220683, 50.97730661218649], [75.55012851642559, 49.975877206192976]]]}}, {"type": "Feature", "properties": {"bin": "82411ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[114.855932280017, 22.520124009614662], [115.08505540886446, 24.116355293606304], [113.70376749169584, 25.19913318671653], [112.07042198299736, 24.683010654594447], [111.85106503769879, 23.06605987462275], [113.25477246361253, 21.985684630017104], [114.855932280017, 22.520124009614662]]]}}, {"type": "Feature", "properties": {"bin": "822097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.58388412975768, 35.60844146853497], [67.9828900331216, 33.902396769499795], [69.96726747716981, 33.29852686321238], [71.62864641789882, 34.369855785757295], [71.32518467091964, 36.094188741158675], [69.26285462718553, 36.73018450800947], [67.58388412975768, 35.60844146853497]]]}}, {"type": "Feature", "properties": {"bin": "822c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.646373642853554, 30.694156249000915], [48.442126840774186, 29.196465114956844], [50.18790361279607, 29.08939213814528], [51.29571000306017, 30.276887845090446], [50.55073502317359, 31.797105560963587], [48.65575066376257, 32.081356882577666], [47.646373642853554, 30.694156249000915]]]}}, {"type": "Feature", "properties": {"bin": "827487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.717610671621024, -2.4207068856734155], [-8.778631764956575, -1.4302139367058602], [-9.057746405457742, 0.05139740489565597], [-10.28431789008691, 0.5785308439935908], [-11.254244736494712, -0.4015944958931172], [-10.966735378416788, -1.9196479625840597], [-9.717610671621024, -2.4207068856734155]]]}}, {"type": "Feature", "properties": {"bin": "827527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.8618420364343797, 10.477113125901752], [-3.071080368716595, 9.072581251751163], [-1.9395631182409523, 8.007193661487852], [-0.5694861509226148, 8.318410093422674], [-0.31918272685661675, 9.731836670975916], [-1.4801680966156552, 10.825815435330894], [-2.8618420364343797, 10.477113125901752]]]}}, {"type": "Feature", "properties": {"bin": "824f0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[152.72123821625237, 15.944244424286078], [152.3934118632161, 14.30021958918509], [153.68515047833807, 13.131694739698181], [155.2814870808001, 13.609851920734103], [155.60682333297862, 15.234875915752621], [154.33872273925616, 16.400980833663734], [152.72123821625237, 15.944244424286078]]]}}, {"type": "Feature", "properties": {"bin": "8216dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.12125914326512, 44.41812685451786], [173.09664563720216, 46.019009131142205], [171.53763676147145, 47.400881531964714], [168.97007444304862, 47.15173201826695], [168.0733571050347, 45.52849481741495], [169.66101739290986, 44.17622039141847], [172.12125914326512, 44.41812685451786]]]}}, {"type": "Feature", "properties": {"bin": "822e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.1541228261415, 48.33401395109927], [151.61331591458006, 49.98075453667432], [149.65465920271976, 50.949539061107274], [147.3027143054959, 50.24943344878453], [146.9668723044961, 48.61518272872468], [148.85928854972465, 47.66739948724733], [151.1541228261415, 48.33401395109927]]]}}, {"type": "Feature", "properties": {"bin": "826137fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[84.9296665436273, 4.348486695475441], [85.00083019702879, 6.104776389470908], [83.52973698730892, 7.062083323582682], [82.012203165609, 6.260371675681467], [81.958562691439, 4.522993064389644], [83.405034534837, 3.5681062453724035], [84.9296665436273, 4.348486695475441]]]}}, {"type": "Feature", "properties": {"bin": "822c67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.69576371629003, 46.90573252004868], [46.765254333982135, 45.35944310131348], [49.12120810445012, 45.19505055214733], [50.54470004315698, 46.59355493840842], [49.537456108066614, 48.19247132030047], [47.03822283233273, 48.33994165728297], [45.69576371629003, 46.90573252004868]]]}}, {"type": "Feature", "properties": {"bin": "8220cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.7427044566999, 42.11488852985784], [82.73775567721657, 40.34209455836505], [84.7006542224061, 39.46595963291464], [86.70820981047306, 40.31276675619656], [86.83285457847107, 42.06798168950583], [84.83160149618469, 42.995448297242966], [82.7427044566999, 42.11488852985784]]]}}, {"type": "Feature", "properties": {"bin": "824b07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[123.48699467958635, 29.84328862254757], [123.22320106559732, 28.38690170573753], [124.6029583375567, 27.584842018537593], [126.2701956833224, 28.25199215981583], [126.54830212693183, 29.72243943237031], [125.14509756705453, 30.51202973135771], [123.48699467958635, 29.84328862254757]]]}}, {"type": "Feature", "properties": {"bin": "825a57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[168.03624941787785, 14.779799301747063], [168.65279280829242, 16.286127926718763], [167.50441760907103, 17.549432794994257], [165.73204604137288, 17.26650116658574], [165.15934102826995, 15.737083294175456], [166.31377179062187, 14.5131315348316], [168.03624941787785, 14.779799301747063]]]}}, {"type": "Feature", "properties": {"bin": "824f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[156.53000296193795, 12.444154506023333], [156.20707968839986, 10.80041893974446], [157.43587694017978, 9.643021108594692], [158.96069904151648, 10.129006016095506], [159.27914944469583, 11.747867145732824], [158.0775869832051, 12.905696315689463], [156.53000296193795, 12.444154506023333]]]}}, {"type": "Feature", "properties": {"bin": "820057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.90925551824719, 82.87200197672588], [33.23852823745436, 83.59754993234797], [35.77985090981438, 85.25386465048358], [16.21479349753519, 86.17428146252993], [1.3954549354975698, 85.00324300064894], [7.587670703025287, 83.46691212211444], [20.90925551824719, 82.87200197672588]]]}}, {"type": "Feature", "properties": {"bin": "825297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[35.166454917588624, 12.769893004506192], [34.393732963880566, 11.276322461916562], [35.31654779465218, 9.98398388232497], [36.981542609201604, 10.160202867960002], [37.76602610597326, 11.617956875538155], [36.874987454352265, 12.93503437236236], [35.166454917588624, 12.769893004506192]]]}}, {"type": "Feature", "properties": {"bin": "821f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.245170492278879, 53.032039732054415], [10.54962281041145, 51.5639900357469], [12.345747364400054, 50.55427508726938], [14.863026772454885, 50.99274772045683], [15.658506238480797, 52.45676979339932], [13.83952860923243, 53.487245161236885], [11.245170492278879, 53.032039732054415]]]}}, {"type": "Feature", "properties": {"bin": "823c27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.7168362562851, 31.717351794521772], [82.71328280343502, 30.059788573240983], [84.38546050434297, 29.287639671665627], [86.09054225573551, 30.124571654458894], [86.18035558613788, 31.768061810731545], [84.47960117594232, 32.589943336700415], [82.7168362562851, 31.717351794521772]]]}}, {"type": "Feature", "properties": {"bin": "82398ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.667271622745808, 33.405709481234645], [-7.483894227836209, 32.67425403800953], [-7.663484427536879, 30.943314294985814], [-6.090862557941383, 29.974950285731808], [-4.341769247156946, 30.69897412778907], [-4.0994046701538185, 32.39833876166745], [-5.667271622745808, 33.405709481234645]]]}}, {"type": "Feature", "properties": {"bin": "8240dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.41939440159994, 33.88266397756609], [103.60958175073894, 35.346705515334484], [102.30325327948647, 36.36997600869449], [100.46459876748379, 35.81012163843614], [100.0216836653357, 34.230365516604415], [101.63618216132348, 33.32133580619488], [103.41939440159994, 33.88266397756609]]]}}, {"type": "Feature", "properties": {"bin": "82594ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.543750260400667, 21.38124691750292], [11.045964625133967, 19.71754470823835], [12.318899720760903, 18.44266884449724], [14.102532174458808, 18.80074376624017], [14.650416420075686, 20.459587405096432], [13.36552238462891, 21.765875261344213], [11.543750260400667, 21.38124691750292]]]}}, {"type": "Feature", "properties": {"bin": "823e6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[34.07350763527126, 30.754985462474068], [33.17539654916028, 29.162052595684372], [34.28261947136845, 27.680604531895785], [36.247718333323576, 27.77653077072419], [37.16428242437894, 29.339076105087567], [36.09934651028466, 30.83594397491519], [34.07350763527126, 30.754985462474068]]]}}, {"type": "Feature", "properties": {"bin": "823967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.02800493241727862, 44.712977777952425], [-0.3979729448555914, 43.08588995790071], [1.2168706600543617, 41.967575126995584], [3.2493495966936545, 42.60479220712697], [3.6967018032650176, 44.22123495578018], [2.0265689653846333, 45.184248689706415], [-0.02800493241727862, 44.712977777952425]]]}}, {"type": "Feature", "properties": {"bin": "824057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[104.23142522560502, 26.681239096411577], [104.42055985823377, 28.291741502628366], [102.86125602429053, 29.28212072050655], [101.10708239937668, 28.661713692573745], [100.93461658303745, 27.04388327080286], [102.49921988747064, 26.053266420816335], [104.23142522560502, 26.681239096411577]]]}}, {"type": "Feature", "properties": {"bin": "82735ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[140.62050455037325, 10.457721186214048], [140.3048448424543, 8.696743780394957], [141.69432910913807, 7.537486471095007], [143.39443496211936, 8.138603366057211], [143.71509140820243, 9.893324884711014], [142.3311319659662, 11.053571341118106], [140.62050455037325, 10.457721186214048]]]}}, {"type": "Feature", "properties": {"bin": "8208a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.080660058482376, 61.54051460002519], [10.279089080546552, 60.275949400006596], [12.360313328340787, 59.44495728759658], [15.277419395430217, 59.85120470154142], [16.21328542634604, 61.10408688097462], [14.102101615280446, 61.96354053750143], [11.080660058482376, 61.54051460002519]]]}}, {"type": "Feature", "properties": {"bin": "825a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[162.91566501131913, 13.948395710977309], [163.4367872863556, 15.444603170669472], [162.24028568692634, 16.661083655670126], [160.52670878987635, 16.34096879992408], [160.05405966115967, 14.829197692824996], [161.24546528264565, 13.65234929773841], [162.91566501131913, 13.948395710977309]]]}}, {"type": "Feature", "properties": {"bin": "82699ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[112.25689346735427, 2.2626982583635287], [112.46327870022803, 3.964960250698961], [111.12715606917523, 4.965393245355261], [109.5676629086609, 4.243718891838053], [109.37130764054983, 2.5166063615571863], [110.72399425598122, 1.535865775502144], [112.25689346735427, 2.2626982583635287]]]}}, {"type": "Feature", "properties": {"bin": "824f67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[148.7696100502551, 11.586993545144015], [148.44372833045466, 9.869570520683073], [149.7748737561887, 8.701739974658006], [151.41404176583495, 9.250322178378966], [151.73979456715938, 10.950552595281254], [150.4269632053139, 12.119653348523006], [148.7696100502551, 11.586993545144015]]]}}, {"type": "Feature", "properties": {"bin": "82000ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.788378972670518, 80.33974745515532], [40.19373289402154, 80.81642289048322], [43.30849268187674, 82.39825283996296], [33.23852823745436, 83.59754993234797], [20.90925551824719, 82.87200197672588], [21.915963819844126, 81.24854113440082], [30.788378972670518, 80.33974745515532]]]}}, {"type": "Feature", "properties": {"bin": "825a1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[173.2615911988161, 15.506224528838576], [173.96680691996477, 17.005780295428504], [172.88878640797157, 18.30669067889133], [171.08619530625026, 18.070429588150667], [170.41754931509686, 16.540713672141628], [171.51329055975825, 15.277141848586798], [173.2615911988161, 15.506224528838576]]]}}, {"type": "Feature", "properties": {"bin": "823d6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[88.57496213785487, 39.38084284181813], [88.40782809685466, 37.65558053012808], [90.15288642632358, 36.72983681815289], [92.08030070925017, 37.477432899333614], [92.34774404572354, 39.17381250225141], [90.58971245327199, 40.15254599295621], [88.57496213785487, 39.38084284181813]]]}}, {"type": "Feature", "properties": {"bin": "822f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[153.83665900080507, 42.828100172754496], [154.33229074236024, 44.52894779157283], [152.544806053949, 45.62266462732754], [150.30786314404847, 44.989812519670075], [149.91719976591605, 43.29818750239016], [151.65762929746157, 42.229172395054455], [153.83665900080507, 42.828100172754496]]]}}, {"type": "Feature", "properties": {"bin": "826557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.23206961536471, 3.506672345286478], [97.37304065193962, 5.289412273297665], [95.87954336965345, 6.302256120592464], [94.25169211331797, 5.520060963403995], [94.12750944562478, 3.736077688609343], [95.61418309195383, 2.735045602101045], [97.23206961536471, 3.506672345286478]]]}}, {"type": "Feature", "properties": {"bin": "828cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[102.88723369517375, -2.1886839144950856], [103.0536445998174, -0.46895501652356597], [101.6200237429843, 0.5122773661661794], [100.01717887148773, -0.2453348702965925], [99.8651411555984, -1.975921533508648], [101.30126398499304, -2.938488002465914], [102.88723369517375, -2.1886839144950856]]]}}, {"type": "Feature", "properties": {"bin": "826a27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.720625913224463, 11.520974627273143], [24.067596824538438, 9.992589708432718], [25.13348443429596, 8.727292768584846], [26.839067792178863, 8.958444676839422], [27.520279149946738, 10.460500258159698], [26.46899696227833, 11.757964613420336], [24.720625913224463, 11.520974627273143]]]}}, {"type": "Feature", "properties": {"bin": "820507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.73752764045747, 78.33541698107065], [108.7965858772922, 76.93068340510597], [116.63882143701579, 76.98250301160279], [121.38060249097767, 78.4632819456192], [117.3119449238429, 80.07854005805554], [107.09622890529207, 79.99758653524648], [103.73752764045747, 78.33541698107065]]]}}, {"type": "Feature", "properties": {"bin": "824b2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[125.41914993808639, 31.927642743840643], [125.14509756705453, 30.51202973135771], [126.54830212693183, 29.72243943237031], [128.2466625810585, 30.359872296843278], [128.534469151531, 31.786712055773553], [127.11045385351468, 32.56528763821615], [125.41914993808639, 31.927642743840643]]]}}, {"type": "Feature", "properties": {"bin": "8254c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.970363295558462, 11.216545454321968], [-16.3995817269834, 10.397267061984039], [-16.40003966386146, 8.93040321672402], [-15.017096277235694, 8.290871572025175], [-13.62057662207049, 9.082229599755195], [-13.574644025576724, 10.54021488943181], [-14.970363295558462, 11.216545454321968]]]}}, {"type": "Feature", "properties": {"bin": "8233affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[177.32677150424374, 30.837099337926404], [178.234123715357, 32.450032697743154], [177.0371606611317, 33.92517122988525], [174.89355477166853, 33.75764213456774], [174.02804175387834, 32.1119243692579], [175.26146031238733, 30.666435006818297], [177.32677150424374, 30.837099337926404]]]}}, {"type": "Feature", "properties": {"bin": "8230a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.95687039417938, 35.08787250178159], [120.21182426996477, 36.394827059119145], [118.86929883406582, 37.429854484281094], [117.24020830649066, 37.16250635410631], [116.99224448344454, 35.8424431064138], [118.36582203663166, 34.802491497037344], [119.95687039417938, 35.08787250178159]]]}}, {"type": "Feature", "properties": {"bin": "823c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[88.79730594665793, 20.114255896751192], [88.8959889806463, 21.839554052885227], [87.32611574777664, 22.72356027237728], [85.67951776651992, 21.887608046252687], [85.60053307343735, 20.175389775318], [87.14845979904729, 19.285612453380296], [88.79730594665793, 20.114255896751192]]]}}, {"type": "Feature", "properties": {"bin": "827a37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[49.076282783301565, -2.3547343129537173], [49.53914124481158, -0.8436031110165346], [48.48244732223994, 0.4250722038883098], [46.939938585558515, 0.20509182645195348], [46.44719640791619, -1.3136684078902399], [47.52660496156424, -2.6052531103613483], [49.076282783301565, -2.3547343129537173]]]}}, {"type": "Feature", "properties": {"bin": "822d6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[38.48125900244655, 49.87978898631013], [39.76090151170153, 48.458994691962985], [42.141990371113515, 48.470618150310706], [43.385218690746825, 49.93426163580843], [42.136829069634125, 51.40943727610448], [39.607695236505506, 51.3656967728724], [38.48125900244655, 49.87978898631013]]]}}, {"type": "Feature", "properties": {"bin": "8201affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.47096601014355, 72.36661210566757], [47.624968919876, 72.50689440331601], [49.79761663665697, 73.89382642293918], [46.110083039103145, 75.23051359343751], [40.01139898730706, 75.01231815969079], [38.64410073856532, 73.54374238866039], [42.47096601014355, 72.36661210566757]]]}}, {"type": "Feature", "properties": {"bin": "8269b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.18671050745836, 5.254023178261672], [108.38013200113112, 7.0031235509809875], [106.97109383598978, 8.03593746364353], [105.35716758404884, 7.303218576160172], [105.17626894753136, 5.535001785345823], [106.59636555398447, 4.5183323649792895], [108.18671050745836, 5.254023178261672]]]}}, {"type": "Feature", "properties": {"bin": "820487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[137.20590752097192, 67.5438260188934], [137.7971038133932, 65.79256118254496], [141.68557800967994, 65.05445391081987], [145.339761703303, 65.97675200608838], [145.34200702658092, 67.74610390127735], [141.08566639827546, 68.58325272067098], [137.20590752097192, 67.5438260188934]]]}}, {"type": "Feature", "properties": {"bin": "823f17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.102434482055234, 34.577453494704955], [13.488580338198274, 32.875015477254706], [14.912927723127964, 31.582701869496166], [16.960447263888174, 31.969596942090178], [17.635425294848805, 33.667670279159765], [16.203432101296617, 34.98381016816727], [14.102434482055234, 34.577453494704955]]]}}, {"type": "Feature", "properties": {"bin": "825377fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.67876237395102, 27.84875798513836], [44.72079236996927, 26.3956657402366], [45.552414509990655, 24.919828712557948], [47.28903850351511, 24.8934713608716], [48.24020534516677, 26.311252759364823], [47.46270536882868, 27.790199242113836], [45.67876237395102, 27.84875798513836]]]}}, {"type": "Feature", "properties": {"bin": "822c6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[49.537456108066614, 48.19247132030047], [50.54470004315698, 46.59355493840842], [52.99953482377553, 46.35528854938254], [54.59304884970548, 47.72386996179145], [53.67049363562549, 49.37211750883398], [51.06282125187836, 49.60255244068691], [49.537456108066614, 48.19247132030047]]]}}, {"type": "Feature", "properties": {"bin": "822117fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.129991613379985, 47.4006823365286], [57.925680058676136, 45.70964233249084], [60.378850556101796, 45.30212500838954], [62.17279845489216, 46.5762082148919], [61.491058342437576, 48.30613144690534], [58.895420623222805, 48.72395874324332], [57.129991613379985, 47.4006823365286]]]}}, {"type": "Feature", "properties": {"bin": "820727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.27113407636019593, 70.66929401337596], [-1.9084430010595415, 71.90494045163956], [-6.329994131394352, 71.66753846280452], [-7.942563038336622, 70.17612110688736], [-5.509600214148194, 69.01847753368425], [-1.6665855042242044, 69.27385919190813], [0.27113407636019593, 70.66929401337596]]]}}, {"type": "Feature", "properties": {"bin": "8216a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[158.5123428014429, 50.06969240808314], [159.20721767474788, 51.685488583514015], [157.24956756466472, 52.773824941655235], [154.6327473838791, 52.216627806993216], [154.0661665331384, 50.59949521249277], [155.98549323271973, 49.53964761301627], [158.5123428014429, 50.06969240808314]]]}}, {"type": "Feature", "properties": {"bin": "828c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.79285894484322, -2.586202376840426], [108.98392529964751, -0.901274271496052], [107.61719841382204, 0.05866487759648554], [106.0475728562409, -0.6881422936785299], [105.86810296409702, -2.3925313668830173], [107.24627740367362, -3.330953185996472], [108.79285894484322, -2.586202376840426]]]}}, {"type": "Feature", "properties": {"bin": "821e0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.8228860838409, 49.07436692405009], [19.952960563687107, 47.57213992693463], [21.555105797612647, 46.34273814750756], [24.013383707015638, 46.5958851330782], [24.952411824179674, 48.08486658471021], [23.367705060966273, 49.33446913970941], [20.8228860838409, 49.07436692405009]]]}}, {"type": "Feature", "properties": {"bin": "820827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.586063396817917, 65.87071869391137], [8.51690627045494, 67.06524160472564], [5.239258880169474, 67.0156326284177], [3.3780751296870815, 65.7243888731199], [4.694919398687947, 64.57085801287528], [7.64620111675741, 64.66507030510411], [9.586063396817917, 65.87071869391137]]]}}, {"type": "Feature", "properties": {"bin": "8210a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.13097453212595, 54.34054979265672], [43.46105267646115, 52.88534984596698], [46.152940295149286, 52.85701284573281], [47.69571850918254, 54.306702731626594], [46.4297765243137, 55.81586297018568], [43.54748161718775, 55.82080392484867], [42.13097453212595, 54.34054979265672]]]}}, {"type": "Feature", "properties": {"bin": "82014ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.9032774208520538, 77.03453024906975], [2.265817701531166, 78.19830644503146], [-1.3920560938763384, 79.5921312331109], [-10.416534576215874, 79.62054525867497], [-13.578593545917535, 78.27816184803089], [-9.023350332015394, 77.08353021671479], [-1.9032774208520538, 77.03453024906975]]]}}, {"type": "Feature", "properties": {"bin": "825877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.097977661370507, 16.449183288197304], [9.646405667369654, 14.84966422909465], [10.869781564574977, 13.615007694572515], [12.559316983005372, 13.947330592398506], [13.057677308471957, 15.541998660465921], [11.820444634223307, 16.809900692332402], [10.097977661370507, 16.449183288197304]]]}}, {"type": "Feature", "properties": {"bin": "825387fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[34.66579876614435, 21.574964631685955], [33.834946882133956, 19.99603803596314], [34.84176301361014, 18.577729518599106], [36.64451476760323, 18.717376377276683], [37.48995486768825, 20.261490246968638], [36.519629968706255, 21.70052871553139], [34.66579876614435, 21.574964631685955]]]}}, {"type": "Feature", "properties": {"bin": "827e9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.19837461990804, 3.249005031447237], [179.89349194600567, 4.487656027021082], [179.21716082489448, 5.889921754313907], [177.66533255653735, 5.69916464166163], [176.9973029726353, 4.445183384041467], [177.86104159764693, 3.4124184184161725], [179.19837461990804, 3.249005031447237]]]}}, {"type": "Feature", "properties": {"bin": "820957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.516906270455017, 67.06524160472564], [11.133280035906186, 67.85995297513011], [10.043311931125118, 69.12144885595274], [5.923714581488998, 69.5183057451554], [3.797763423479726, 68.21974142812381], [5.239258880169474, 67.0156326284177], [8.516906270455017, 67.06524160472564]]]}}, {"type": "Feature", "properties": {"bin": "82414ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[104.99862774684136, 18.920582783367433], [105.18646517268341, 20.63927532656992], [103.67593139891986, 21.682421552590757], [101.97067725181773, 21.002364724127837], [101.79825574117908, 19.27267328023629], [103.31525507763155, 18.233591272175207], [104.99862774684136, 18.920582783367433]]]}}, {"type": "Feature", "properties": {"bin": "8243b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.98103574818333, 21.936731626317698], [52.61066222494643, 20.545951244369586], [54.115741772618634, 20.502391750749], [55.17740302761857, 21.50559574190196], [54.59321578040126, 22.914904651579405], [52.90670252272589, 23.282695498718052], [51.98103574818333, 21.936731626317698]]]}}, {"type": "Feature", "properties": {"bin": "82542ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.297990218925223, 18.358193362939268], [-11.842109343172925, 17.537180528555226], [-11.921275342920428, 15.942300063297786], [-10.506567295793253, 15.187058911620383], [-9.006464265768987, 15.98598523372256], [-8.877801145205453, 17.56154923764815], [-10.297990218925223, 18.358193362939268]]]}}, {"type": "Feature", "properties": {"bin": "823367fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[166.33737032835697, 23.323829080226908], [166.98347528729872, 24.963091334263748], [165.69550762823675, 26.302686300958758], [163.7572487337804, 25.963743481425922], [163.16684197959285, 24.30570386902048], [164.45727251367725, 23.00472505886229], [166.33737032835697, 23.323829080226908]]]}}, {"type": "Feature", "properties": {"bin": "824a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[127.11938439610546, 15.15441616066631], [126.84521080631441, 13.444723989353694], [128.2235738321257, 12.387611570633615], [129.89366769788361, 13.047597812691034], [130.18023264576001, 14.772325435202779], [128.78462053797352, 15.82234000807967], [127.11938439610546, 15.15441616066631]]]}}, {"type": "Feature", "properties": {"bin": "826877fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.449366342475, 10.736966167684393], [120.20851510495392, 9.041619781447562], [121.51290517196244, 8.000707509888294], [123.08402227082281, 8.662100093134155], [123.3390850759855, 10.381451473270936], [122.00896247838831, 11.415519214823146], [120.449366342475, 10.736966167684393]]]}}, {"type": "Feature", "properties": {"bin": "826937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.5768834607828, 12.93456836331676], [110.78436003281134, 14.661050833893995], [109.3750788522398, 15.730668207670497], [107.74262433198103, 15.063301114735607], [107.54692595046549, 13.315850947919389], [108.97144541690444, 12.256484771946301], [110.5768834607828, 12.93456836331676]]]}}, {"type": "Feature", "properties": {"bin": "823e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.242990297561875, 21.4509882258132], [19.597919649817623, 19.787818768125756], [20.810554260240874, 18.435026826891445], [22.66217520360497, 18.714905313467156], [23.347723561939056, 20.35938183420552], [22.142677696755147, 21.743093508159046], [20.242990297561875, 21.4509882258132]]]}}, {"type": "Feature", "properties": {"bin": "82118ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.971642599038965, 55.63841429469692], [39.43418190685787, 54.26470735156076], [42.13097453212595, 54.34054979265672], [43.54748161718775, 55.82080392484867], [42.12427703668834, 57.24878332837167], [39.23604141514986, 57.141267880771885], [37.971642599038965, 55.63841429469692]]]}}, {"type": "Feature", "properties": {"bin": "820437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.86805888148528, 75.09700284062423], [128.7891081481311, 73.37525345776886], [134.71007017060782, 72.8480044940237], [139.69232621284283, 73.95282347941101], [138.99941764332513, 75.7479715907543], [131.99104367949013, 76.37955729177285], [126.86805888148528, 75.09700284062423]]]}}, {"type": "Feature", "properties": {"bin": "826477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[92.75068396053875, 6.5239608231116515], [92.8681448111406, 8.318400590972054], [91.35430554042236, 9.316288774752767], [89.73715212379656, 8.51280994488121], [89.63761243039929, 6.725232583331402], [91.13720922092621, 5.733812721564004], [92.75068396053875, 6.5239608231116515]]]}}, {"type": "Feature", "properties": {"bin": "82318ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.86929883406582, 37.429854484281094], [119.12425372100492, 38.693372652556576], [118.29719447249006, 39.800881986666866], [116.60797610224273, 39.554438522989486], [115.8282026115415, 38.17441086720651], [117.24020830649066, 37.16250635410631], [118.86929883406582, 37.429854484281094]]]}}, {"type": "Feature", "properties": {"bin": "822d67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[34.977250048428445, 48.44511511510519], [36.299105819285636, 47.05631421186065], [38.69290600551898, 46.9924595035082], [39.76090151170153, 48.458994691962985], [38.48125900244655, 49.87978898631013], [36.11672363177465, 49.77934286766213], [34.977250048428445, 48.44511511510519]]]}}, {"type": "Feature", "properties": {"bin": "820a17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.24349927861624, 62.825241574451404], [88.94345469632086, 61.18598160028522], [91.70963813960331, 60.13979535943566], [94.80308515661083, 60.67735411936203], [95.35986891195142, 62.28488158644909], [92.57738307461393, 63.389047393354744], [89.24349927861624, 62.825241574451404]]]}}, {"type": "Feature", "properties": {"bin": "8260a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.28566849623385, 15.021818547884736], [79.32492956451948, 16.7360927422416], [77.86183245215106, 17.56444136136202], [76.39177292976275, 16.6890161060303], [76.3698829554061, 15.001447764157028], [77.80091702536666, 14.16248410542495], [79.28566849623385, 15.021818547884736]]]}}, {"type": "Feature", "properties": {"bin": "82529ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.76602610597326, 11.617956875538155], [36.981542609201604, 10.160202867960002], [37.848935371300406, 8.893462571252657], [39.4677910143735, 9.06122174014551], [40.259524098339604, 10.481935371507609], [39.42626153713316, 11.771549826904991], [37.76602610597326, 11.617956875538155]]]}}, {"type": "Feature", "properties": {"bin": "822537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[87.77296412239532, 52.6542030078627], [87.58854200303621, 50.900190145391576], [89.81939073139279, 49.88539972440518], [92.26208194138054, 50.57328654884073], [92.61039247121813, 52.29787608358161], [90.35668181792352, 53.36566283700183], [87.77296412239532, 52.6542030078627]]]}}, {"type": "Feature", "properties": {"bin": "8242dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[70.55388096139677, 21.159402214236277], [70.81380882145015, 19.70730359618626], [72.17871183799267, 18.993493940605774], [73.56984075114914, 19.887994971392708], [73.57559356110224, 21.508843225938318], [71.94311998575824, 22.08300704162582], [70.55388096139677, 21.159402214236277]]]}}, {"type": "Feature", "properties": {"bin": "823087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.00668784625678, 32.68221273268321], [121.26131469818228, 34.029992937494484], [119.95687039417938, 35.08787250178159], [118.36582203663166, 34.802491497037344], [118.11726536120723, 33.43902448232616], [119.45315871435092, 32.37631885864005], [121.00668784625678, 32.68221273268321]]]}}, {"type": "Feature", "properties": {"bin": "820737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.32561035194326043, 73.31022368544396], [-2.2362007418153356, 74.5829282683745], [-7.439780394344702, 74.36066046087873], [-9.219808450023809, 72.85065322966908], [-6.329994131394352, 71.66753846280452], [-1.9084430010595415, 71.90494045163956], [0.32561035194326043, 73.31022368544396]]]}}, {"type": "Feature", "properties": {"bin": "82736ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[141.57589071657515, 15.65379761709913], [141.25603781242634, 13.939408592242517], [142.65151265131718, 12.792371327850592], [144.36008222105062, 13.3628858273885], [144.6843894988152, 15.071456211059555], [143.29617251550175, 16.215744508474376], [141.57589071657515, 15.65379761709913]]]}}, {"type": "Feature", "properties": {"bin": "82160ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.19881569013583, 53.14363558473362], [171.27083198536272, 54.63456191069657], [169.42638354239443, 55.879648706180156], [166.47834808999363, 55.60019520266176], [165.51894231309208, 54.08819863964252], [167.38848052857205, 52.87589788099554], [170.19881569013583, 53.14363558473362]]]}}, {"type": "Feature", "properties": {"bin": "826acffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.66361927713152, -1.6772949381945048], [34.28911722144607, -0.08630376308334368], [33.193025309898935, 1.2524972038451396], [31.469937027242487, 1.021248866915232], [30.825041084818885, -0.559499450859455], [31.921816350199432, -1.9195566758189473], [33.66361927713152, -1.6772949381945048]]]}}, {"type": "Feature", "properties": {"bin": "8225affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[91.63272345253448, 47.10036834076303], [91.34751423943914, 45.35866706037272], [93.24755930546543, 44.32103004761993], [95.43773288515852, 44.97394563239702], [95.84511450338546, 46.67922161249402], [93.94422685987966, 47.76905576651892], [91.63272345253448, 47.10036834076303]]]}}, {"type": "Feature", "properties": {"bin": "82400ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[107.47046185281282, 26.248068432517627], [107.67443627896722, 27.847500145901975], [106.15534881401967, 28.8697633389869], [104.42055985823377, 28.291741502628366], [104.23142522560502, 26.681239096411577], [105.76174970861732, 25.65935562830068], [107.47046185281282, 26.248068432517627]]]}}, {"type": "Feature", "properties": {"bin": "82548ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.35286583316386, 13.275659539199737], [-20.800455883755063, 12.407406629546033], [-20.72746038389688, 10.882142231152775], [-19.25608087263708, 10.227430733230397], [-17.8363676518402, 11.063783036396401], [-17.860226364438105, 12.585841373390625], [-19.35286583316386, 13.275659539199737]]]}}, {"type": "Feature", "properties": {"bin": "82770ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.56246912073013, 7.4664050956982315], [155.24082093844143, 5.7817423109599515], [156.47577755672762, 4.645743871293197], [158.0067643262748, 5.1890555165121155], [158.32448714986083, 6.846915371615777], [157.1154955383897, 7.988284766698585], [155.56246912073013, 7.4664050956982315]]]}}, {"type": "Feature", "properties": {"bin": "821767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[168.55043105619387, 65.99539400975621], [166.99965175539495, 64.37400935772303], [169.41527589688766, 63.043363766660455], [173.24035877247292, 63.22999151822572], [175.09689991728033, 64.75692907396628], [172.86137139869209, 66.19292316051032], [168.55043105619387, 65.99539400975621]]]}}, {"type": "Feature", "properties": {"bin": "82599ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.2396306401223465, 12.28136891407245], [-1.4801680966156552, 10.825815435330894], [-0.31918272685661675, 9.731836670975916], [1.1112578344875799, 10.064920172958862], [1.3951802868305936, 11.529027262742579], [0.20521077410490549, 12.652177592020411], [-1.2396306401223465, 12.28136891407245]]]}}, {"type": "Feature", "properties": {"bin": "82695ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.38955872314627, 13.411731045894102], [119.1532492217661, 11.739863893210984], [120.449366342475, 10.736966167684393], [122.00896247838831, 11.415519214823146], [122.25978394419953, 13.112603234471695], [120.93661639766515, 14.106000495972893], [119.38955872314627, 13.411731045894102]]]}}, {"type": "Feature", "properties": {"bin": "825aaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.74454287153904, 17.214910773697707], [176.4996932644643, 18.72720645694535], [175.44545233955793, 20.063781728321988], [173.61050860311653, 19.852266346793826], [172.88878640797157, 18.30669067889133], [173.96680691996477, 17.005780295428504], [175.74454287153904, 17.214910773697707]]]}}, {"type": "Feature", "properties": {"bin": "821f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.163510941569066, 48.9437639550549], [4.652435425239344, 47.393027403288], [6.371338560692325, 46.417016655689096], [8.645314229897538, 46.977068439610534], [9.251571422436438, 48.53467795856961], [7.489805747586691, 49.52621240698069], [5.163510941569066, 48.9437639550549]]]}}, {"type": "Feature", "properties": {"bin": "821407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.18141412031616, 55.608285290548395], [125.17346413124336, 54.11713534607264], [127.94077240151931, 53.74777826688238], [129.93836418297857, 54.83888673082788], [129.15177163384146, 56.38611220833988], [126.14990855407999, 56.78824819072855], [124.18141412031616, 55.608285290548395]]]}}, {"type": "Feature", "properties": {"bin": "823f5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.494687087596816, 33.40029193226209], [26.658191980924084, 31.75677617763522], [27.91172984348016, 30.31370874723716], [29.974579650337787, 30.494220987093975], [30.846140361421924, 32.114365722925704], [29.62212976672187, 33.57752330529464], [27.494687087596816, 33.40029193226209]]]}}, {"type": "Feature", "properties": {"bin": "824f1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[157.17698655565803, 15.672237488851499], [157.59815938618596, 17.194884389082347], [156.33450177574932, 18.37834487641563], [154.66633049010704, 17.999989209364117], [154.33872273925616, 16.400980833663734], [155.60682333297862, 15.234875915752621], [157.17698655565803, 15.672237488851499]]]}}, {"type": "Feature", "properties": {"bin": "8204affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[140.70473211836827, 70.36653885229539], [141.08566639827546, 68.58325272067098], [145.34200702658092, 67.74610390127735], [149.60055659857568, 68.58158804186569], [149.98712931534274, 70.36472443894685], [145.3477749071445, 71.32310583443733], [140.70473211836827, 70.36653885229539]]]}}, {"type": "Feature", "properties": {"bin": "822ecffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.18674248371934, 43.83988642133859], [135.18157054877662, 45.431106572472544], [133.43138197384727, 46.13763594995183], [131.77440098149353, 45.253613490980094], [131.8617244862017, 43.69922390102128], [133.52611384945018, 42.991791932510026], [135.18674248371934, 43.83988642133859]]]}}, {"type": "Feature", "properties": {"bin": "821f47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.9310531198817, 55.84256115863507], [21.92401744131319, 54.501997626904114], [23.6571061696422, 53.36390143732629], [26.370174814240475, 53.543762740676236], [27.453626568951172, 54.86673351776447], [25.75273650724686, 56.02789907359998], [22.9310531198817, 55.84256115863507]]]}}, {"type": "Feature", "properties": {"bin": "825a27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[173.94282318446523, 10.194121685273998], [174.61682114576067, 11.589849622987263], [173.61230939327456, 12.799672631571633], [171.91527610911328, 12.577354955958288], [171.27261247453654, 11.151832208296353], [172.29426677728955, 9.978189493251355], [173.94282318446523, 10.194121685273998]]]}}, {"type": "Feature", "properties": {"bin": "82738ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[131.52242571075033, 3.790658976213928], [131.23529687565494, 2.023474316036843], [132.61481314523337, 0.8818145781803421], [134.29172795983905, 1.5040036468682454], [134.58891943431576, 3.2775362201780123], [133.19951261843684, 4.422917404204752], [131.52242571075033, 3.790658976213928]]]}}, {"type": "Feature", "properties": {"bin": "823ee7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[25.528881744435836, 25.33942140130998], [24.78037927571116, 23.675156033841958], [25.971461755128047, 22.262578499204032], [27.892105129471588, 22.48820212614365], [28.674736318778628, 24.127898543542], [27.504442850291092, 25.566738583888263], [25.528881744435836, 25.33942140130998]]]}}, {"type": "Feature", "properties": {"bin": "822c17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[43.13752145794885, 38.25742550967681], [42.08453011389581, 36.83963771514377], [43.07440081871426, 35.32615569017736], [45.05438577310583, 35.22985924555321], [46.1048351806421, 36.6195596910392], [45.17969427675674, 38.13333268865376], [43.13752145794885, 38.25742550967681]]]}}, {"type": "Feature", "properties": {"bin": "827eeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.0332646215832, 1.9196479625840501], [168.7457552635053, 0.40159449589312074], [169.71568210991308, -0.5785308439936139], [170.94225359454225, -0.0513974048956663], [171.22136823504343, 1.4302139367058502], [170.282389328379, 2.4207068856733924], [169.0332646215832, 1.9196479625840501]]]}}, {"type": "Feature", "properties": {"bin": "8260affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.3698829554061, 15.001447764157028], [76.39177292976275, 16.6890161060303], [74.96894532611755, 17.484002514639712], [73.55853049578548, 16.604281847316603], [73.55297085152047, 14.946524398275951], [74.9417764292739, 14.138667489928544], [76.3698829554061, 15.001447764157028]]]}}, {"type": "Feature", "properties": {"bin": "825907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.37837010177590247, 21.584144094524866], [0.08583528510709204, 19.9742016751009], [1.3600267516376539, 18.833358840282322], [2.959078382640479, 19.277482047407386], [3.304049268856912, 20.900755829120246], [1.9975756661715074, 22.067175689495624], [0.37837010177590247, 21.584144094524866]]]}}, {"type": "Feature", "properties": {"bin": "824367fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.68276504499899, 36.41141790124565], [58.33141354003228, 34.76356449406121], [60.37258351318907, 34.322374136310785], [61.85925791936128, 35.51770628349113], [61.28904720771836, 37.20330269000042], [59.150326723667334, 37.656443450315685], [57.68276504499899, 36.41141790124565]]]}}, {"type": "Feature", "properties": {"bin": "824a77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[133.97613863641322, 26.829336199539807], [133.67043163902014, 25.285203830798743], [135.1039792696483, 24.304787654394534], [136.84984678879755, 24.877664470168636], [137.16494090958219, 26.427168274838404], [135.72524321560297, 27.39888951618621], [133.97613863641322, 26.829336199539807]]]}}, {"type": "Feature", "properties": {"bin": "824117fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.75359925725854, 21.93631093069556], [117.99047716641068, 23.508951959736308], [116.66937099084352, 24.60027123385686], [115.08505540886446, 24.116355293606304], [114.855932280017, 22.520124009614662], [116.20287166938425, 21.431220761772177], [117.75359925725854, 21.93631093069556]]]}}, {"type": "Feature", "properties": {"bin": "821497fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[125.25538071272493, 46.39244475315222], [125.98114176677377, 45.096434369080356], [128.1076333158112, 44.74971789374998], [129.6384118220188, 45.67295380324835], [129.03314360152916, 47.01117118068983], [126.77127105816483, 47.38530568432782], [125.25538071272493, 46.39244475315222]]]}}, {"type": "Feature", "properties": {"bin": "82590ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.304049268856912, 20.900755829120246], [2.959078382640479, 19.277482047407386], [4.2342944226787855, 18.09884525514369], [5.882262995803545, 18.516052400096086], [6.279611709245232, 20.147736977484957], [4.976885601305341, 21.35446718195976], [3.304049268856912, 20.900755829120246]]]}}, {"type": "Feature", "properties": {"bin": "82655ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.12750944562478, 3.736077688609343], [94.25169211331797, 5.520060963403995], [92.75068396053875, 6.5239608231116515], [91.13720922092621, 5.733812721564004], [91.0304668832412, 3.9539186482762925], [92.51962966629, 2.9596021818630542], [94.12750944562478, 3.736077688609343]]]}}, {"type": "Feature", "properties": {"bin": "82585ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.762355118081885, 12.694430236620008], [13.264752541075095, 11.144077233626273], [14.435041674371641, 9.913390776005329], [16.110106592542248, 10.199094662934618], [16.649194223749127, 11.737554880527712], [15.472615878253416, 13.00285055504457], [13.762355118081885, 12.694430236620008]]]}}, {"type": "Feature", "properties": {"bin": "822d9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.047979648150125, 33.91381311229757], [39.06414125340515, 32.4108456811563], [40.08000143935667, 30.902960831797138], [42.02629399354079, 30.891357297171993], [43.015090910470946, 32.3633225939436], [42.05451497441287, 33.877595956110035], [40.047979648150125, 33.91381311229757]]]}}, {"type": "Feature", "properties": {"bin": "8220a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[66.2481126857148, 40.813540861360785], [66.71839704773174, 39.067301069603346], [68.88086284035973, 38.47090410548266], [70.66559414826162, 39.592303898841884], [70.30637689681684, 41.359581468551546], [68.0486075236378, 41.98577467201586], [66.2481126857148, 40.813540861360785]]]}}, {"type": "Feature", "properties": {"bin": "8204dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[161.29561226534284, 66.94299147138761], [160.16987918038882, 65.24377532973864], [163.04087210465863, 64.01659592046677], [166.99965175539495, 64.37400935772303], [168.55043105619387, 65.99539400975621], [165.75592867141455, 67.34111800954337], [161.29561226534284, 66.94299147138761]]]}}, {"type": "Feature", "properties": {"bin": "823da7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[74.26030111048053, 28.68786292438215], [74.4614825094673, 27.070669126207168], [76.18979804789883, 26.422656615860415], [77.76521844292438, 27.352248189063147], [77.64552676107122, 28.973818728775914], [75.86840220674935, 29.662738501442497], [74.26030111048053, 28.68786292438215]]]}}, {"type": "Feature", "properties": {"bin": "822c07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.11651610751938, 39.762213320715894], [43.13752145794885, 38.25742550967681], [45.17969427675678, 38.133332688653766], [46.30258268055135, 39.48450594666971], [45.33379907578726, 41.0165261971704], [43.20483211516571, 41.142598767635725], [42.11651610751938, 39.762213320715894]]]}}, {"type": "Feature", "properties": {"bin": "82175ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.1048501502336, 60.16030646543866], [168.77277002474725, 58.62952020387534], [170.6673809942136, 57.35909783156442], [173.78748926991187, 57.53249012380251], [175.30938932885118, 58.98135158598347], [173.5418871720351, 60.33926345879477], [170.1048501502336, 60.16030646543866]]]}}, {"type": "Feature", "properties": {"bin": "825aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[167.50441760907103, 17.549432794994257], [168.1309214327534, 19.1055675532918], [166.9391681425939, 20.40139257140547], [165.11431044302398, 20.100974479516896], [164.53519134064652, 18.522808395386146], [165.73204604137288, 17.26650116658574], [167.50441760907103, 17.549432794994257]]]}}, {"type": "Feature", "properties": {"bin": "8258b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.31918272685661675, 9.731836670975916], [-0.5694861509226148, 8.318410093422674], [0.5689349498665859, 7.231941088759668], [1.9843964992241638, 7.529293806652365], [2.2764305960846776, 8.948132571134797], [1.1112578344875799, 10.064920172958862], [-0.31918272685661675, 9.731836670975916]]]}}, {"type": "Feature", "properties": {"bin": "820187fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.64277495851302, 71.17904271188118], [55.549352810667344, 71.09900619688861], [58.229871936333964, 72.37448219090822], [55.592062051403055, 73.8440432038365], [49.79761663665697, 73.89382642293918], [47.624968919876, 72.50689440331601], [50.64277495851302, 71.17904271188118]]]}}, {"type": "Feature", "properties": {"bin": "82209ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[71.32518467091964, 36.094188741158675], [71.62864641789882, 34.369855785757295], [73.59261768799648, 33.70575303795421], [75.32104374224942, 34.72897810074542], [75.11829754422453, 36.46321577902243], [73.08513110829821, 37.16574976160484], [71.32518467091964, 36.094188741158675]]]}}, {"type": "Feature", "properties": {"bin": "823327fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.12644096262287, 22.991728685166404], [175.92255197208195, 24.57962351939033], [174.7854718597239, 25.98594341469474], [172.82476186654435, 25.769382636267913], [172.06816427253818, 24.14927660114088], [173.23062212965775, 22.777763428069573], [175.12644096262287, 22.991728685166404]]]}}, {"type": "Feature", "properties": {"bin": "82596ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.729780964035752, 24.341160535590188], [10.23354395677019, 22.6544560846675], [11.543750260400667, 21.38124691750292], [13.36552238462891, 21.765875261344213], [13.915183885634578, 23.45043771532035], [12.590615073173332, 24.753167536259074], [10.729780964035752, 24.341160535590188]]]}}, {"type": "Feature", "properties": {"bin": "823f77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[23.474780873002853, 37.6303425743379], [22.666678189877594, 35.986217916354086], [24.035997744251496, 34.59685782123658], [26.195246251947374, 34.83135743754204], [27.05097710739706, 36.4583498026766], [25.702400888627096, 37.86831585468273], [23.474780873002853, 37.6303425743379]]]}}, {"type": "Feature", "properties": {"bin": "822507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[92.61039247121813, 52.29787608358161], [92.26208194138054, 50.57328654884073], [94.32732438995292, 49.48816960094339], [96.74084261178157, 50.07723161220353], [97.23461143063881, 51.76344358686479], [95.17523164806224, 52.90017007418974], [92.61039247121813, 52.29787608358161]]]}}, {"type": "Feature", "properties": {"bin": "824347fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.37258351318907, 34.322374136310785], [60.939344242953645, 32.67501516269659], [62.91614862847988, 32.189475238976804], [64.41163783547759, 33.334105548527745], [63.92434226966045, 35.01417583784235], [61.85925791936128, 35.51770628349113], [60.37258351318907, 34.322374136310785]]]}}, {"type": "Feature", "properties": {"bin": "826b07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[21.349266453445622, 15.469203624780489], [20.720608455377985, 13.873962650663321], [21.861183954394107, 12.56846389905936], [23.622772407807847, 12.825720559075275], [24.28649610610062, 14.399089813811573], [23.154889561254432, 15.73745539193679], [21.349266453445622, 15.469203624780489]]]}}, {"type": "Feature", "properties": {"bin": "823faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.912927723127964, 31.582701869496166], [14.301516597265826, 29.87332454274621], [15.679352391342839, 28.55677300195445], [17.675332540841065, 28.924476228387608], [18.343416368196838, 30.62734805513404], [16.960447263888174, 31.969596942090178], [14.912927723127964, 31.582701869496166]]]}}, {"type": "Feature", "properties": {"bin": "821117fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.401090538931886, 57.66586956210096], [31.095814204707388, 56.47000529592752], [33.71346375789878, 56.74659832800681], [34.8028146879035, 58.2630778279077], [33.08800726462075, 59.50853611330557], [30.297301068032212, 59.186367814145974], [29.401090538931886, 57.66586956210096]]]}}, {"type": "Feature", "properties": {"bin": "821707fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.91700685342232, 62.335400343203396], [151.52104837883533, 60.63866054984396], [154.30245997645446, 59.62897038296288], [157.56602207692168, 60.21637810885471], [158.3281410729073, 61.87637001561119], [155.4739636475124, 62.99056862329925], [151.91700685342232, 62.335400343203396]]]}}, {"type": "Feature", "properties": {"bin": "826127fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[83.34372903289862, 1.838980256743801], [83.405034534837, 3.5681062453724035], [81.958562691439, 4.522993064389644], [80.47683384971262, 3.7450437470058175], [80.43251755698464, 2.0363145312139648], [81.85307387147245, 1.0848539086284115], [83.34372903289862, 1.838980256743801]]]}}, {"type": "Feature", "properties": {"bin": "8230cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.40970712293532, 35.861246481750946], [129.11598634806901, 34.5377946061048], [130.55784267390348, 33.76864439541193], [132.30837745804203, 34.33115860097915], [132.24194904480953, 35.88584691859817], [130.7593524540452, 36.65165362746537], [129.40970712293532, 35.861246481750946]]]}}, {"type": "Feature", "properties": {"bin": "826a1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.60191780171687, 3.4345808068957653], [28.257503389813063, 4.957754931407084], [27.209856497243752, 6.2305095542402364], [25.514702903289592, 6.000797884634774], [24.847285917888374, 4.495706490210245], [25.886010570251138, 3.2020743391429516], [27.60191780171687, 3.4345808068957653]]]}}, {"type": "Feature", "properties": {"bin": "826847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[123.3390850759855, 10.381451473270936], [123.08402227082281, 8.662100093134155], [124.42018443628713, 7.593456060319665], [126.03390811709544, 8.24960594616433], [126.30247976626464, 9.989152324667797], [124.94403226885608, 11.0525563750004], [123.3390850759855, 10.381451473270936]]]}}, {"type": "Feature", "properties": {"bin": "823cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[95.29629913556025, 19.812213915250496], [95.43361450937653, 21.549525708119347], [93.85707321113722, 22.50676092482895], [92.15419848576875, 21.727219941246698], [92.03594286203223, 19.993488299512972], [93.6013197336276, 19.035204372299223], [95.29629913556025, 19.812213915250496]]]}}, {"type": "Feature", "properties": {"bin": "8274f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.384788496428219, -0.6563254594597022], [-7.2834320000573145, -1.627782179992269], [-6.688818185507131, -2.823303681456528], [-5.170962984051589, -3.022067879890788], [-4.287967547655411, -2.0200006444159904], [-4.906172120825075, -0.8499475652488149], [-6.384788496428219, -0.6563254594597022]]]}}, {"type": "Feature", "properties": {"bin": "820577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.5766060390223, 83.15405442466334], [123.85904164290791, 81.53166944518023], [135.3099027962519, 81.08732982705071], [145.39551760000364, 82.11076242705415], [145.41917474875845, 83.88011222728622], [129.0292792305364, 84.5408338462023], [118.5766060390223, 83.15405442466334]]]}}, {"type": "Feature", "properties": {"bin": "821567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.57361115305922, 64.76805994944728], [117.42814460389903, 63.240486262489966], [121.25420033824275, 63.052513018204294], [123.67301587593408, 64.38228704008819], [122.12506982744327, 66.00423213419595], [117.81292538828089, 66.20328559643201], [115.57361115305922, 64.76805994944728]]]}}, {"type": "Feature", "properties": {"bin": "822477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[106.49937702249476, 47.46316860921144], [105.79970818967243, 45.88340148783781], [107.21506643714682, 44.70235369563737], [109.27583857902667, 45.06226566372926], [110.044021077717, 46.58831847698082], [108.68801493638473, 47.8078701936139], [106.49937702249476, 47.46316860921144]]]}}, {"type": "Feature", "properties": {"bin": "820b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[82.805942165506, 58.04644635312622], [82.7966509361904, 56.31869702027608], [85.45178957793857, 55.383010983560176], [88.18560705462039, 56.123456859262085], [88.41742546359968, 57.83260160395453], [85.69687924786012, 58.822386405242526], [82.805942165506, 58.04644635312622]]]}}, {"type": "Feature", "properties": {"bin": "82595ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.289964562104172, 19.32711432233708], [8.841162105963765, 17.69221837320674], [10.097977661370507, 16.449183288197304], [11.820444634223307, 16.809900692332402], [12.318899720760903, 18.44266884449724], [11.045964625133967, 19.71754470823835], [9.289964562104172, 19.32711432233708]]]}}, {"type": "Feature", "properties": {"bin": "826487fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[99.93878834403677, 16.794915519798817], [100.10025759437842, 18.555032875306942], [98.55740345391212, 19.57116250997954], [96.8554277063972, 18.82325629288321], [96.71133979857908, 17.059221835731112], [98.25154405454845, 16.046518348999836], [99.93878834403677, 16.794915519798817]]]}}, {"type": "Feature", "properties": {"bin": "827637fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[154.59893532317398, 2.392032208517474], [154.2787359881882, 0.6931851479671544], [155.5191014580942, -0.40639453977196044], [157.05535831511148, 0.18261910269664047], [157.37218087501466, 1.8539523467425794], [156.15647962504326, 2.963781246024248], [154.59893532317398, 2.392032208517474]]]}}, {"type": "Feature", "properties": {"bin": "8230effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[130.7593524540452, 36.65165362746537], [130.6575327073045, 38.19456373764813], [129.14743057237902, 38.90641063676051], [127.80994135679161, 38.07786791628785], [127.96863875939528, 36.57549016282558], [129.40970712293534, 35.86124648175095], [130.7593524540452, 36.65165362746537]]]}}, {"type": "Feature", "properties": {"bin": "823837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.5848058032652497, 35.801655683177536], [-5.442348460730086, 35.12442405176797], [-5.667271622745808, 33.405709481234645], [-4.0994046701538185, 32.39833876166745], [-2.3153354483215614, 33.072845980897284], [-2.027587338475257, 34.757090726489174], [-3.5848058032652497, 35.801655683177536]]]}}, {"type": "Feature", "properties": {"bin": "822c57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.749596276557455, 42.22096583203444], [49.67064440002375, 40.63612336794767], [51.86682981156752, 40.37937452916119], [53.25932626424547, 41.716884731527905], [52.40209518791526, 43.3519782691914], [50.08359791457066, 43.599205049931015], [48.749596276557455, 42.22096583203444]]]}}, {"type": "Feature", "properties": {"bin": "824f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[163.87220683591653, 21.383320130219147], [164.45727251367725, 23.00472505886229], [163.16684197959285, 24.30570386902048], [161.29378455630064, 23.94529998788256], [160.76502089898054, 22.308782558481575], [162.0515932531476, 21.047030278267332], [163.87220683591653, 21.383320130219147]]]}}, {"type": "Feature", "properties": {"bin": "82424ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.18948256096145, 30.985372428300344], [72.44910817414352, 29.330411718505946], [74.26030111048053, 28.68786292438215], [75.86840220674935, 29.662738501442497], [75.69531861398443, 31.32618089536632], [73.82669212441867, 32.0075993471152], [72.18948256096145, 30.985372428300344]]]}}, {"type": "Feature", "properties": {"bin": "822047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.37088177124326, 50.141513814635246], [80.44628044060018, 48.351892541115966], [82.75954230288217, 47.4712086139882], [85.06133769126956, 48.33189936227608], [85.14867094354511, 50.108314501707056], [82.77278505846108, 51.039193656265965], [80.37088177124326, 50.141513814635246]]]}}, {"type": "Feature", "properties": {"bin": "822d97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.042324688154004, 32.38747119932588], [36.09934651028466, 30.83594397491519], [37.16428242437894, 29.339076105087567], [39.12511926384923, 29.382490264721124], [40.08000143935667, 30.902960831797138], [39.06414125340515, 32.4108456811563], [37.042324688154004, 32.38747119932588]]]}}, {"type": "Feature", "properties": {"bin": "82605ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[68.31390631661893, 9.9486818945021], [68.29120185559428, 11.550950571749684], [67.03356105469996, 12.31424293862071], [65.83354849634385, 11.489543016752311], [65.86843056737345, 9.923822141141336], [67.09146394993576, 9.14655571978705], [68.31390631661893, 9.9486818945021]]]}}, {"type": "Feature", "properties": {"bin": "82194ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.1013139839474526, 52.517133978422294], [-0.21913743445926212, 52.141680818262785], [-0.631094757975507, 50.60191112048409], [1.188509553443464, 49.47027919866874], [3.384771510058863, 49.85377035058955], [3.8811335596706225, 51.36037619595015], [2.1013139839474526, 52.517133978422294]]]}}, {"type": "Feature", "properties": {"bin": "824ee7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[149.39749770933201, 22.581163304154366], [149.6858955540046, 24.188862764499515], [148.29664651483174, 25.309881523116786], [146.65468135835246, 24.791240432729637], [146.32346584367517, 23.245242079047912], [147.7025877022133, 22.136425460569903], [149.39749770933201, 22.581163304154366]]]}}, {"type": "Feature", "properties": {"bin": "8224e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[104.51059966118586, 42.706893594922064], [103.91581345508436, 41.116231930613374], [105.27754465688392, 40.01005137836429], [107.19414631631761, 40.45179124238256], [107.85345314107406, 41.991090179346436], [106.53560104056335, 43.139813467462034], [104.51059966118586, 42.706893594922064]]]}}, {"type": "Feature", "properties": {"bin": "825b17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.05464506200272, 8.28568098401618], [179.77693144202632, 9.615942399155195], [178.88265930944007, 10.789436708939103], [177.2397408231501, 10.600190205120805], [176.53922610069722, 9.236406119038636], [177.4585525863537, 8.095430643538931], [179.05464506200272, 8.28568098401618]]]}}, {"type": "Feature", "properties": {"bin": "825b27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[176.9973029726353, 4.445183384041467], [177.66533255653735, 5.69916464166163], [176.77464305509145, 6.786116724890197], [175.1948161431758, 6.586859421326587], [174.54976641024237, 5.303397728432387], [175.46041201203371, 4.248592317017834], [176.9973029726353, 4.445183384041467]]]}}, {"type": "Feature", "properties": {"bin": "820a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.30884232532844, 59.942286411345535], [102.50328586746393, 58.72020318780632], [105.6368032857011, 58.90516616374304], [106.865913193906, 60.35664258373935], [104.70987156583625, 61.67861940182324], [101.26789914925824, 61.44608261251146], [100.30884232532844, 59.942286411345535]]]}}, {"type": "Feature", "properties": {"bin": "825a9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[178.08136767105975, 21.797393768021593], [178.9095345677144, 23.349452402918914], [177.84694371159145, 24.756909421354468], [175.92255197208195, 24.57962351939033], [175.12644096262287, 22.991728685166404], [176.22059231069557, 21.616965270530546], [178.08136767105975, 21.797393768021593]]]}}, {"type": "Feature", "properties": {"bin": "822457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[107.21506643714682, 44.70235369563737], [106.53560104056335, 43.139813467462034], [107.85345314107406, 41.991090179346436], [109.80004241000374, 42.366067712351416], [110.53865882676416, 43.87509579817304], [109.27583857902667, 45.06226566372926], [107.21506643714682, 44.70235369563737]]]}}, {"type": "Feature", "properties": {"bin": "821f8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.251571422436438, 48.53467795856961], [8.645314229897538, 46.977068439610534], [10.343212804239652, 45.92192778359743], [12.677317810359863, 46.40695745798227], [13.374347667392275, 47.965938447346616], [11.648396307828463, 49.03934513079639], [9.251571422436438, 48.53467795856961]]]}}, {"type": "Feature", "properties": {"bin": "8200effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[35.77985090981438, 85.25386465048358], [56.33367799409684, 85.48985867978557], [72.35462514904258, 86.84371182611669], [58.38444905629707, 88.49939324217571], [8.384360674740835, 87.82361750161175], [16.21479349753519, 86.17428146252993], [35.77985090981438, 85.25386465048358]]]}}, {"type": "Feature", "properties": {"bin": "82051ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.63882143701579, 76.98250301160279], [119.9312752857104, 75.37357035994816], [126.86805888148528, 75.09700284062423], [131.99104367949013, 76.37955729177285], [130.04574169958474, 78.12604185470187], [121.38060249097767, 78.4632819456192], [116.63882143701579, 76.98250301160279]]]}}, {"type": "Feature", "properties": {"bin": "82520ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.31955043153507, 19.14473269250019], [44.43917149465969, 17.698092381141624], [45.21202480676731, 16.32641051881021], [46.820519270069106, 16.390229325542492], [47.6958087502292, 17.797749012021796], [46.9686209628495, 19.179955228717326], [45.31955043153507, 19.14473269250019]]]}}, {"type": "Feature", "properties": {"bin": "824207fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.14741681065508, 26.76117840246379], [61.63736877357023, 25.22642498182882], [63.40286744706651, 24.747230901926276], [64.74597440458675, 25.78364523775016], [64.320097378687, 27.347646726674125], [62.48507378084358, 27.846740947200793], [61.14741681065508, 26.76117840246379]]]}}, {"type": "Feature", "properties": {"bin": "82150ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.35213447407268, 58.99255609954018], [116.87271515160232, 57.54317504188187], [119.99347924729226, 57.36869376975949], [121.89019303773591, 58.63844048366853], [120.55986456111661, 60.16970228253804], [117.1220329510228, 60.34986313246835], [115.35213447407268, 58.99255609954018]]]}}, {"type": "Feature", "properties": {"bin": "826817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.75048305816937, 4.377108182228886], [116.97139520919599, 6.04549247485827], [115.70668093151195, 7.051735504176149], [114.19858171193793, 6.370765032437677], [113.98513214459506, 4.672130986571936], [115.27189592479805, 3.6847416805057356], [116.75048305816937, 4.377108182228886]]]}}, {"type": "Feature", "properties": {"bin": "826baffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.51577576383811, 10.751916722743852], [18.938412567086797, 9.229638727111444], [20.050440170541734, 7.99224641091651], [21.736228401051253, 8.243493259763863], [22.34818138022581, 9.74567700347234], [21.240864372039603, 11.01716618355836], [19.51577576383811, 10.751916722743852]]]}}, {"type": "Feature", "properties": {"bin": "8275b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.883976339217032, 9.211077490154926], [-12.279428517961106, 8.436299934019914], [-12.344346110330108, 7.035853616998724], [-11.055247895999136, 6.422432286737444], [-9.695281485000976, 7.173126163814278], [-9.58945482345044, 8.560616098966763], [-10.883976339217032, 9.211077490154926]]]}}, {"type": "Feature", "properties": {"bin": "824217fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.36811543886133, 24.17853625643186], [60.85532320212389, 22.69992541759943], [62.55564329673681, 22.239202597375066], [63.83212822637663, 23.239296274628625], [63.40286744706651, 24.747230901926276], [61.63736877357023, 25.22642498182882], [60.36811543886133, 24.17853625643186]]]}}, {"type": "Feature", "properties": {"bin": "824ba7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.76314753626569, 25.487092806329393], [119.52026220739299, 23.963809347590853], [120.84659463601861, 23.13338372521267], [122.4436343115601, 23.841123553601193], [122.70153227964788, 25.384507970309517], [121.34751445935744, 26.20027606045547], [119.76314753626569, 25.487092806329393]]]}}, {"type": "Feature", "properties": {"bin": "8263b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[49.72852590168673, 13.808566340166381], [48.88379911472869, 12.457630845905545], [49.525587410455664, 11.204304324194899], [50.970254151885335, 11.291323182868313], [51.80448530162421, 12.603201514978352], [51.205095139424046, 13.866410050915466], [49.72852590168673, 13.808566340166381]]]}}, {"type": "Feature", "properties": {"bin": "820467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[173.4303374577679, 80.06799240018739], [169.34894071183456, 78.45416713706504], [174.0754175357948, 76.97172842874883], [-178.08982214710505, 76.91732752261049], [-173.02716512439306, 78.32052425185985], [-176.36726611745192, 79.9836986581658], [173.4303374577679, 80.06799240018739]]]}}, {"type": "Feature", "properties": {"bin": "826b87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.25384900346828, 8.962142482864822], [16.718562711430415, 7.474846581692809], [17.830960861400172, 6.271911037888126], [19.479242065131633, 6.522352266708336], [20.050440170541734, 7.99224641091651], [18.938412567086797, 9.229638727111444], [17.25384900346828, 8.962142482864822]]]}}, {"type": "Feature", "properties": {"bin": "824e2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[148.735358800584, 19.41145197536027], [148.40568576193812, 17.78359946080229], [149.7526638100153, 16.629033848711074], [151.41106888520727, 17.10739084119342], [151.74062176627132, 18.72252928825543], [150.41236097271002, 19.872388403264], [148.735358800584, 19.41145197536027]]]}}, {"type": "Feature", "properties": {"bin": "823d57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[84.5304401352957, 34.27878672452731], [84.47960117594232, 32.589943336700415], [86.18035558613788, 31.768061810731545], [87.95783607641035, 32.58486408488774], [88.09993919181939, 34.254864019886554], [86.37447080326292, 35.12811893178941], [84.5304401352957, 34.27878672452731]]]}}, {"type": "Feature", "properties": {"bin": "823987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.14446112738395, 33.653758830556235], [-10.98139564337498, 32.86267465416169], [-11.092615024541725, 31.105564272262285], [-9.43663506793057, 30.16505875954292], [-7.663484427536879, 30.943314294985814], [-7.483894227836209, 32.67425403800953], [-9.14446112738395, 33.653758830556235]]]}}, {"type": "Feature", "properties": {"bin": "82040ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.71752525574163, 75.74548799033728], [151.01446002876182, 73.95061154314652], [155.99053987969668, 72.84386418050191], [161.91207566662212, 73.36886176605668], [163.84104377796746, 75.08989276640649], [158.72818840835586, 76.37437265305009], [151.71752525574163, 75.74548799033728]]]}}, {"type": "Feature", "properties": {"bin": "826377fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.364768957376114, 15.3170041034638], [60.792006840230606, 14.047557933421603], [62.2836595308798, 13.628822133519598], [63.396934687009725, 14.462720904610492], [63.01380713804956, 15.755902567695033], [61.47207394109067, 16.192032948400712], [60.364768957376114, 15.3170041034638]]]}}, {"type": "Feature", "properties": {"bin": "821eeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[25.532272646604852, 45.29673751871178], [24.61498137158676, 43.76450954182124], [26.072885089723204, 42.421412954963046], [28.419295722433173, 42.59312536112824], [29.387082408127053, 44.10776609123569], [27.96137390525891, 45.468586515077135], [25.532272646604852, 45.29673751871178]]]}}, {"type": "Feature", "properties": {"bin": "823297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.7444394237716, 41.79221177207786], [-179.170112546831, 43.33462463706695], [179.51721968152015, 44.820308274700515], [177.05849152737355, 44.74014716066806], [176.0202291440094, 43.16654858963044], [177.38922397185618, 41.70426599254369], [179.7444394237716, 41.79221177207786]]]}}, {"type": "Feature", "properties": {"bin": "823d9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.99921401034759, 22.680573068726023], [81.05012166179785, 24.335201017412075], [79.52829404873326, 25.090534000951436], [77.9880087460123, 24.20395001875482], [77.95590549041005, 22.57120834868734], [79.44550314314861, 21.802902869447326], [80.99921401034759, 22.680573068726023]]]}}, {"type": "Feature", "properties": {"bin": "828567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[64.50383093468551, 4.710221078439117], [64.21407547144301, 3.338416815538807], [65.41803771376816, 2.4849461904515096], [66.91349507929881, 3.033400525560165], [67.17608937876561, 4.419053965759524], [65.97095215540618, 5.242929409571681], [64.50383093468551, 4.710221078439117]]]}}, {"type": "Feature", "properties": {"bin": "827647fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[164.33003046887535, 2.9602532188920114], [164.02719182166203, 1.3716238421937323], [165.09786169703642, 0.334638096995223], [166.44080679403527, 0.8762512952424053], [166.7362829931107, 2.4301130175176993], [165.6963471662508, 3.4768244409223446], [164.33003046887535, 2.9602532188920114]]]}}, {"type": "Feature", "properties": {"bin": "821857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.460509080062738, 49.05681780552428], [-9.724736207832674, 48.43009421958324], [-9.892165114977681, 46.75969876815572], [-7.898251979650981, 45.74021980445384], [-5.733942237025079, 46.36036995957606], [-5.466444723378631, 48.005644741446424], [-7.460509080062738, 49.05681780552428]]]}}, {"type": "Feature", "properties": {"bin": "820077fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.880064418613259, 80.34595244233695], [21.915963819844126, 81.24854113440082], [20.90925551824719, 82.87200197672588], [7.587670703025287, 83.46691212211444], [-0.5071413604228857, 82.25118471750908], [4.121656030400283, 80.79168761359398], [13.880064418613259, 80.34595244233695]]]}}, {"type": "Feature", "properties": {"bin": "824b1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.6029583375567, 27.584842018537593], [124.33485226874664, 26.075268367556504], [125.71988217642108, 25.21806209996667], [127.39498324112382, 25.883020878261213], [127.67692566157774, 27.407024752708207], [126.2701956833224, 28.25199215981583], [124.6029583375567, 27.584842018537593]]]}}, {"type": "Feature", "properties": {"bin": "827aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.50608046908582, 3.653571424771705], [41.05421703247711, 5.131054547027026], [39.98176285579589, 6.398852907904242], [38.34945582023904, 6.213279889313993], [37.77676428812329, 4.740955381891409], [38.86037407688217, 3.448590982272338], [40.50608046908582, 3.653571424771705]]]}}, {"type": "Feature", "properties": {"bin": "822eeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[136.8555639168759, 41.45102232926615], [136.89183897767884, 43.06799389230268], [135.18674248371934, 43.83988642133859], [133.52611384945018, 42.991791932510026], [133.57012610119784, 41.41044705193119], [135.19635364043003, 40.64129560736251], [136.8555639168759, 41.45102232926615]]]}}, {"type": "Feature", "properties": {"bin": "82055ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.46006182346585, 81.08340708780557], [153.80884496443537, 79.31717648987745], [160.6863038136288, 78.12011723529922], [169.34894071183456, 78.45416713706504], [173.4303374577679, 80.06799240018739], [166.91020795543056, 81.52344187827559], [155.46006182346585, 81.08340708780557]]]}}, {"type": "Feature", "properties": {"bin": "821f4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.453626568951172, 54.86673351776447], [26.370174814240475, 53.543762740676236], [27.993406169520387, 52.32716417101245], [30.654127846023286, 52.41378927911533], [31.7952246524996, 53.7168167308324], [30.22306500560221, 54.953381725480455], [27.453626568951172, 54.86673351776447]]]}}, {"type": "Feature", "properties": {"bin": "82258ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[93.24755930546543, 44.32103004761993], [92.92995235535336, 42.59873264380677], [94.69260904032576, 41.567201776993976], [96.7709195911615, 42.20694073128456], [97.19470712620408, 43.890570396606854], [95.43773288515852, 44.97394563239702], [93.24755930546543, 44.32103004761993]]]}}, {"type": "Feature", "properties": {"bin": "821ed7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[19.087059206838333, 41.616884649832], [18.325260281104836, 39.98817796336323], [19.81112340000082, 38.68528246787517], [22.053163375299732, 38.99088586392547], [22.876710218874177, 40.608843552222844], [21.39910192913279, 41.9324677795958], [19.087059206838333, 41.616884649832]]]}}, {"type": "Feature", "properties": {"bin": "824087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.19850617488318, 32.33603992952471], [113.43054169515192, 33.77089612652203], [111.9660359814451, 34.78945542299374], [110.24734171732878, 34.37479165494242], [110.02704432234283, 32.92767555609793], [111.51312837969918, 31.907056839717516], [113.19850617488318, 32.33603992952471]]]}}, {"type": "Feature", "properties": {"bin": "824e77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.66438765451977, 20.05884048765213], [145.33655699281812, 18.42194413916021], [146.71402527107543, 17.28158613922535], [148.40568576193812, 17.78359946080229], [148.735358800584, 19.41145197536027], [147.37202830633396, 20.546746925508604], [145.66438765451977, 20.05884048765213]]]}}, {"type": "Feature", "properties": {"bin": "821f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[13.543635944035909, 57.232113806596516], [12.739822958959078, 55.86732673911362], [14.640206584543732, 54.90218190493178], [17.3622931946247, 55.27814416771983], [18.275235951757786, 56.63295271905083], [16.360929516312407, 57.62270326690216], [13.543635944035909, 57.232113806596516]]]}}, {"type": "Feature", "properties": {"bin": "820db7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.74893924520714, 70.79472682488498], [172.37072969029856, 69.21401673918528], [174.94683633255818, 67.75010398676802], [179.56243278742426, 67.75762829464864], [-177.73737155731018, 69.21258919215596], [-179.90258617233593, 70.78434474762022], [174.74893924520714, 70.79472682488498]]]}}, {"type": "Feature", "properties": {"bin": "822e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[144.52548565372334, 46.23006227618878], [144.77847701295235, 47.87812693834678], [142.88468797852207, 48.741413060101365], [140.81932027711574, 47.94353494620577], [140.67508861403263, 46.319768043789686], [142.48864639425716, 45.46875223300061], [144.52548565372334, 46.23006227618878]]]}}, {"type": "Feature", "properties": {"bin": "821827fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.740899630542526, 56.38258811071852], [-11.319329754507521, 55.8183598210179], [-11.464478383460659, 54.26248852552578], [-9.166993325133559, 53.28908444969495], [-6.713499065102662, 53.841053788108646], [-6.436337296790293, 55.37739041554851], [-8.740899630542526, 56.38258811071852]]]}}, {"type": "Feature", "properties": {"bin": "8260f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.55297085152047, 14.946524398275951], [73.55853049578548, 16.604281847316603], [72.18091550432948, 17.366767219166643], [70.83329599408577, 16.486473655401973], [70.84287842070998, 14.861067793744484], [72.18524935168644, 14.083697371265819], [73.55297085152047, 14.946524398275951]]]}}, {"type": "Feature", "properties": {"bin": "8220e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.2243141019708, 44.593447234860314], [76.42128602273652, 42.80087782083737], [78.59629634036548, 42.01404801298896], [80.64442076743467, 42.975757701478535], [80.58260122298051, 44.76550082241564], [78.33715502736786, 45.598111092042075], [76.2243141019708, 44.593447234860314]]]}}, {"type": "Feature", "properties": {"bin": "825337fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.16428242437894, 29.339076105087567], [36.247718333323576, 27.77653077072419], [37.27915112513713, 26.290576575165524], [39.18256944936378, 26.354108708483196], [40.110149533750196, 27.883745765043017], [39.12511926384923, 29.382490264721124], [37.16428242437894, 29.339076105087567]]]}}, {"type": "Feature", "properties": {"bin": "826577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[98.56085942567567, 0.7417954439430038], [98.70755798166265, 2.5025276890360852], [97.23206961536471, 3.506672345286478], [95.61418309195383, 2.735045602101045], [95.4836343689799, 0.9705107901420124], [96.95459010033167, -0.019087365036244645], [98.56085942567567, 0.7417954439430038]]]}}, {"type": "Feature", "properties": {"bin": "82635ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[63.535748628109495, 9.883591811382676], [63.489942514144396, 11.411784482866715], [62.33522736712032, 12.121992847315758], [61.259926898356724, 11.32048294458799], [61.315435771664646, 9.83036925628956], [62.436843475506734, 9.10412223692272], [63.535748628109495, 9.883591811382676]]]}}, {"type": "Feature", "properties": {"bin": "825457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.605640043933498, 13.645345830474795], [-12.071696161095671, 12.842516407667542], [-12.143209702643249, 11.34031170743392], [-10.794192696497728, 10.656349373399392], [-9.367549017070322, 11.435581249578398], [-9.251135128038426, 12.92166325673315], [-10.605640043933498, 13.645345830474795]]]}}, {"type": "Feature", "properties": {"bin": "823037fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.13690952882241, 41.14827082786993], [118.29719447249006, 39.800881986666866], [119.12425372100492, 38.693372652556604], [120.72800464134473, 38.910054476351185], [121.58175445790938, 40.20568112033379], [120.82006911538183, 41.33540401121588], [119.13690952882241, 41.14827082786993]]]}}, {"type": "Feature", "properties": {"bin": "820717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.439780394344702, 74.36066046087873], [-10.98528397730722, 75.55801829625113], [-16.53126506085391, 75.12865785383518], [-17.598970251255384, 73.52894986794209], [-13.917999921584816, 72.44381308655119], [-9.219808450023809, 72.85065322966908], [-7.439780394344702, 74.36066046087873]]]}}, {"type": "Feature", "properties": {"bin": "82119ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[38.24266638392084, 52.766684172187155], [39.607695236505506, 51.3656967728724], [42.136829069634125, 51.40943727610448], [43.46105267646115, 52.88534984596698], [42.13097453212595, 54.34054979265672], [39.43418190685787, 54.26470735156076], [38.24266638392084, 52.766684172187155]]]}}, {"type": "Feature", "properties": {"bin": "8259a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.1827237352933726, 17.484597774332936], [-3.4006303468807486, 15.959635072416068], [-2.193704994404441, 14.869645297067569], [-0.7351612054653583, 15.279832303298882], [-0.47047915784386257, 16.820062058483494], [-1.7113099039779127, 17.935404581817405], [-3.1827237352933726, 17.484597774332936]]]}}, {"type": "Feature", "properties": {"bin": "824137fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.80300158646772, 19.252194904738648], [119.0402032372025, 20.84447932142015], [117.75359925725854, 21.93631093069556], [116.20287166938425, 21.431220761772177], [115.972568467126, 19.81249979151533], [117.28561870360247, 18.725214708850935], [118.80300158646772, 19.252194904738648]]]}}, {"type": "Feature", "properties": {"bin": "8258d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.588359354690609, 7.279047700708482], [7.212914562720072, 5.860392168376588], [8.344198848186508, 4.732154389080278], [9.86715586248289, 4.9896835731792395], [10.283180498778014, 6.402677248031407], [9.136091517447662, 7.5645420515535395], [7.588359354690609, 7.279047700708482]]]}}, {"type": "Feature", "properties": {"bin": "82325ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[159.83482553470856, 36.29182480062296], [160.4365789673928, 38.01466353048682], [158.84760391998597, 39.27230382066778], [156.67552440755316, 38.77445743097016], [156.15894649011236, 37.049067998742636], [157.72754392877192, 35.82316671778093], [159.83482553470856, 36.29182480062296]]]}}, {"type": "Feature", "properties": {"bin": "8214cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[140.57055693448865, 52.56224857424679], [140.77992640805883, 51.04080671896112], [143.09965372237681, 50.356260681051715], [145.32851606893576, 51.12825449972591], [145.32930167826274, 52.656769553392806], [142.88971105702714, 53.409507856690254], [140.57055693448865, 52.56224857424679]]]}}, {"type": "Feature", "properties": {"bin": "82611ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.56697253067621, 7.196938593222833], [80.61281196361564, 8.933999636983694], [79.17056508080195, 9.84467337590314], [77.71212223171376, 9.021479879666195], [77.6831884370156, 7.309851143729302], [79.0959876016423, 6.395834664879012], [80.56697253067621, 7.196938593222833]]]}}, {"type": "Feature", "properties": {"bin": "827cd7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.597968911654448, 5.592617806389967], [-17.487884167109744, 6.558659438572163], [-17.79095733218591, 8.124363819119283], [-19.21004929253201, 8.755747177387095], [-20.34826709444178, 7.807441231426448], [-20.03950695020037, 6.20983767529234], [-18.597968911654448, 5.592617806389967]]]}}, {"type": "Feature", "properties": {"bin": "8265affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.91102173954691, 8.33720166325733], [104.0877201545458, 10.117014983777002], [102.61612618110527, 11.159905020853644], [100.96315619083069, 10.410683770602716], [100.80136063472524, 8.61889065810363], [102.27727175025632, 7.5878968444114205], [103.91102173954691, 8.33720166325733]]]}}, {"type": "Feature", "properties": {"bin": "820a27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.33992396507412, 65.55692907015926], [79.49969860693847, 63.939145038328846], [82.8391711816032, 63.09426443748605], [86.15418384033971, 63.810259127150125], [86.3378779494374, 65.41804773892319], [82.86720944085971, 66.32364928285416], [79.33992396507412, 65.55692907015926]]]}}, {"type": "Feature", "properties": {"bin": "82608ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[74.96894532611755, 17.484002514639712], [74.98276447633455, 19.14100146751368], [73.56984075114914, 19.887994971392708], [72.17871183799267, 18.993493940605774], [72.18091550432948, 17.366767219166643], [73.55853049578548, 16.604281847316603], [74.96894532611755, 17.484002514639712]]]}}, {"type": "Feature", "properties": {"bin": "82436ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.28904720771836, 37.20330269000042], [61.85925791936128, 35.51770628349113], [63.92434226966045, 35.01417583784235], [65.51119773173042, 36.17746302027598], [65.03033141654677, 37.89440377610124], [62.870145984466006, 38.417639807768175], [61.28904720771836, 37.20330269000042]]]}}, {"type": "Feature", "properties": {"bin": "823d17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[75.69531861398443, 31.32618089536632], [75.86840220674935, 29.662738501442497], [77.64552676107122, 28.973818728775914], [79.297948374044, 29.906253411886752], [79.21323629204524, 31.57056178598028], [77.38738896562074, 32.30294528961664], [75.69531861398443, 31.32618089536632]]]}}, {"type": "Feature", "properties": {"bin": "82639ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[53.52575709425707, 7.722673797689084], [53.91385857443836, 9.001290419052781], [52.943133386720106, 10.166154494710117], [51.56003017732451, 10.077544166006838], [51.14446111745103, 8.796498558587306], [52.139413972024556, 7.60596935368187], [53.52575709425707, 7.722673797689084]]]}}, {"type": "Feature", "properties": {"bin": "824fa7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[162.24028568692634, 16.661083655670126], [162.76471522086624, 18.20918575220197], [161.5245646641215, 19.451782018023785], [159.76589437253912, 19.105773260348492], [159.29356147729914, 17.54385270132609], [160.52670878987635, 16.34096879992408], [162.24028568692634, 16.661083655670126]]]}}, {"type": "Feature", "properties": {"bin": "822f2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[149.15248602425285, 30.277702407420577], [149.4630391096146, 31.966206554283033], [147.938574229656, 33.072200757017214], [146.14718497669745, 32.46254239872947], [145.91104009580025, 30.7898339553385], [147.39192058698316, 29.710213599338392], [149.15248602425285, 30.277702407420577]]]}}, {"type": "Feature", "properties": {"bin": "82431ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.67093720068831, 28.045896161865954], [56.281432415587936, 26.530017983826685], [58.073275060404775, 26.118995627536346], [59.32883927578406, 27.214865294319264], [58.7740142867662, 28.76881779745647], [56.905545302356764, 29.18919300993691], [55.67093720068831, 28.045896161865954]]]}}, {"type": "Feature", "properties": {"bin": "82531ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.13858369534422, 24.872879893475496], [39.236789245262244, 23.342536994944112], [40.16544602832363, 21.886800183347113], [41.950919788593374, 21.948649310619096], [42.85686218030853, 23.44263921006273], [41.97462737176898, 24.910712313479486], [40.13858369534422, 24.872879893475496]]]}}, {"type": "Feature", "properties": {"bin": "823d8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[79.45519247371638, 26.664479844037594], [79.52829404873327, 25.090534000951443], [81.05012166179785, 24.335201017412075], [82.64497372733143, 25.201987105911897], [82.706685728117, 26.830386804712262], [81.0658991036049, 27.554872894759516], [79.45519247371638, 26.664479844037594]]]}}, {"type": "Feature", "properties": {"bin": "826587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.72436073050534, 10.84624715467437], [105.91070146594151, 12.614189047233577], [104.44652708667027, 13.667699618909237], [102.78819395075064, 12.942277554996782], [102.61612618110527, 11.159905020853644], [104.0877201545458, 10.117014983777002], [105.72436073050534, 10.84624715467437]]]}}, {"type": "Feature", "properties": {"bin": "827347fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[139.53597608685283, 13.348756523042683], [139.22131203702125, 11.60628018538203], [140.62050455037325, 10.457721186214048], [142.3311319659662, 11.053571341118106], [142.65151265131718, 12.792371327850592], [141.25603781242634, 13.939408592242517], [139.53597608685283, 13.348756523042683]]]}}, {"type": "Feature", "properties": {"bin": "820807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.646201116757433, 64.66507030510412], [9.693860813817622, 63.51970712744604], [12.823918552178451, 63.96072746373739], [12.930936799121039, 65.4132279482162], [9.586063396817956, 65.87071869391139], [7.646201116757433, 64.66507030510412]]]}}, {"type": "Feature", "properties": {"bin": "823387fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-179.6752257727667, 32.56540793873001], [-178.70311883403724, 34.14645331820284], [-179.85373403922972, 35.64723593705847], [177.97421544565455, 35.54141287509961], [177.0371606611317, 33.92517122988525], [178.234123715357, 32.450032697743154], [-179.6752257727667, 32.56540793873001]]]}}, {"type": "Feature", "properties": {"bin": "821e8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.239935584499475, 42.48537089697073], [14.548450654218147, 40.85124382084822], [16.087588600126523, 39.612646497839734], [18.325260281104836, 39.98817796336323], [19.087059206838333, 41.616884649832], [17.54318322426502, 42.87611373038503], [15.239935584499475, 42.48537089697073]]]}}, {"type": "Feature", "properties": {"bin": "827ecffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[170.282389328379, 2.420706885673436], [170.84989172174681, 3.6405341607256134], [169.88109208357997, 4.680543766329771], [168.3352524578736, 4.467031609784519], [168.04411579097982, 2.9387624954065736], [169.0332646215832, 1.9196479625840501], [170.282389328379, 2.420706885673436]]]}}, {"type": "Feature", "properties": {"bin": "823847fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.029881378875401, 36.043675411373094], [6.551513795830656, 34.35055445973989], [8.027570156679904, 33.173311423144405], [10.010436136048828, 33.6695957366448], [10.558256056640367, 35.370372439869115], [9.054678245207672, 36.5678509319993], [7.029881378875401, 36.043675411373094]]]}}, {"type": "Feature", "properties": {"bin": "826057fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[70.87100203342922, 9.955680589617987], [70.86172974036968, 11.593032005402348], [69.55436423365215, 12.384286158524523], [68.29120185559428, 11.550950571749684], [68.31390631661893, 9.9486818945021], [69.58665255798411, 9.144882676294474], [70.87100203342922, 9.955680589617987]]]}}, {"type": "Feature", "properties": {"bin": "8214c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.87637685881467, 52.280198800324484], [136.28778731251637, 50.77962462967674], [138.66930986909085, 50.18780949546236], [140.77992640805883, 51.04080671896112], [140.57055693448865, 52.56224857424679], [138.0446099782189, 53.212867439806466], [135.87637685881467, 52.280198800324484]]]}}, {"type": "Feature", "properties": {"bin": "824227fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.7740142867662, 28.76881779745647], [59.32883927578406, 27.214865294319264], [61.14741681065508, 26.76117840246379], [62.48507378084358, 27.846740947200793], [61.993877752890405, 29.43456098512192], [60.099069300235215, 29.903560266766736], [58.7740142867662, 28.76881779745647]]]}}, {"type": "Feature", "properties": {"bin": "823c2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[86.18035558613788, 31.768061810731545], [86.09054225573551, 30.124571654458894], [87.69443225239783, 29.31765515972253], [89.40743651851825, 30.10406278641751], [89.57977238815958, 31.726685303908507], [87.95783607641035, 32.58486408488774], [86.18035558613788, 31.768061810731545]]]}}, {"type": "Feature", "properties": {"bin": "827217fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[134.58891943431576, 3.2775362201780123], [134.29172795983905, 1.5040036468682454], [135.67705149281272, 0.35620948177303313], [137.36478040003968, 0.977147864408643], [137.67042176448078, 2.751930410072497], [136.28030878092613, 3.9049271402466674], [134.58891943431576, 3.2775362201780123]]]}}, {"type": "Feature", "properties": {"bin": "825277fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.867839878662906, 20.59809474557387], [46.9686209628495, 19.179955228717326], [47.6958087502292, 17.797749012021796], [49.27506948076003, 17.82666678465199], [50.16499778196583, 19.206256304953666], [49.48574871263946, 20.59483507956772], [47.867839878662906, 20.59809474557387]]]}}, {"type": "Feature", "properties": {"bin": "82658ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[102.61612618110527, 11.159905020853644], [102.78819395075064, 12.942277554996782], [101.29189694158653, 13.985209422122674], [99.62104197842224, 13.236333300082233], [99.46471429047267, 11.444613490172019], [100.96315619083069, 10.410683770602716], [102.61612618110527, 11.159905020853644]]]}}, {"type": "Feature", "properties": {"bin": "822127fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.429208603430844, 52.38455552021002], [55.386315287413375, 50.74193901771935], [58.081496256536084, 50.41638321003273], [59.98872875182493, 51.72910040990983], [59.158974101083395, 53.41462714426706], [56.286117998753014, 53.74532256646542], [54.429208603430844, 52.38455552021002]]]}}, {"type": "Feature", "properties": {"bin": "827c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.881744945249157, 3.399395037441728], [-15.800861357538134, 4.381671861802315], [-16.100635789571058, 5.944638221700142], [-17.487884167109744, 6.558659438572163], [-18.597968911654448, 5.592617806389967], [-18.29181990106688, 3.9960705951817412], [-16.881744945249157, 3.399395037441728]]]}}, {"type": "Feature", "properties": {"bin": "8220effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.58260122298051, 44.76550082241564], [80.64442076743467, 42.975757701478535], [82.7427044566999, 42.11488852985784], [84.83160149618469, 42.995448297242966], [84.90331509102782, 44.77202716129376], [82.75356546020507, 45.682875452008915], [80.58260122298051, 44.76550082241564]]]}}, {"type": "Feature", "properties": {"bin": "823447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.188212875829294, 31.1522330100506], [-19.956511299083022, 30.20750468846709], [-19.885175001331245, 28.425520844846652], [-18.117856496785507, 27.59648823740311], [-16.39332769128071, 28.514587165424352], [-16.392618992120248, 30.28738493539216], [-18.188212875829294, 31.1522330100506]]]}}, {"type": "Feature", "properties": {"bin": "823567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.351337439052633, 41.82240604570132], [-16.387669396390542, 40.9845109305191], [-16.388588757180873, 39.21171319250576], [-14.444905143937865, 38.29227083697541], [-12.47570007280164, 39.11281479140376], [-12.38412687299043, 40.869133191665526], [-14.351337439052633, 41.82240604570132]]]}}, {"type": "Feature", "properties": {"bin": "823897fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.0155884996367694, 25.64651817513538], [-6.667778136025995, 24.89175633085534], [-6.846165692887986, 23.225810445647934], [-5.425053091334932, 22.344835336854807], [-3.8296846549188386, 23.088405139235885], [-3.599887600906401, 24.72374401122294], [-5.0155884996367694, 25.64651817513538]]]}}, {"type": "Feature", "properties": {"bin": "825957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.279611709245232, 20.147736977484957], [5.882262995803545, 18.516052400096086], [7.151749348230992, 17.30304938782084], [8.841162105963765, 17.69221837320674], [9.289964562104172, 19.32711432233708], [7.99840503877189, 20.57032700832011], [6.279611709245232, 20.147736977484957]]]}}, {"type": "Feature", "properties": {"bin": "827557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.8378324096770464, 1.8701721240824984], [-0.186075822013145, 3.2300014573740503], [-1.2768497657972255, 4.273265982323713], [-2.5790347646674925, 4.02002363858656], [-2.7800646154740574, 2.756497157143231], [-2.1427124286181316, 1.6469189364220407], [-0.8378324096770464, 1.8701721240824984]]]}}, {"type": "Feature", "properties": {"bin": "823c5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[97.60075337177743, 27.33058812168506], [97.75498277138222, 28.95183542377966], [96.14439740633347, 29.86478154800566], [94.38677552527119, 29.158478218353835], [94.25201201925714, 27.537811825727395], [95.85513749449005, 26.622305043395016], [97.60075337177743, 27.33058812168506]]]}}, {"type": "Feature", "properties": {"bin": "827677fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[161.81561480968847, 3.508104224668151], [161.50621268968138, 1.886201851130136], [162.6268528036299, 0.8227221314452013], [164.02719182166203, 1.3716238421937323], [164.33003046887535, 2.9602532188920114], [163.23931441944137, 4.0330269428364485], [161.81561480968847, 3.508104224668151]]]}}, {"type": "Feature", "properties": {"bin": "823ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.83929753527266, 23.411689797815992], [22.142677696755147, 21.743093508159046], [23.347723561939056, 20.35938183420552], [25.237114501285713, 20.615714083561897], [25.971461755128047, 22.262578499204032], [24.78037927571116, 23.675156033841958], [22.83929753527266, 23.411689797815992]]]}}, {"type": "Feature", "properties": {"bin": "82011ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.469374371360225, 73.16839556185595], [38.64410073856532, 73.54374238866039], [40.01139898730706, 75.01231815969079], [35.209211757657734, 76.1522144631779], [29.207465708710853, 75.65094362106625], [28.896409947344146, 74.14929175945835], [33.469374371360225, 73.16839556185595]]]}}, {"type": "Feature", "properties": {"bin": "821ef7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.314740441318996, 44.470679588895024], [17.54318322426502, 42.87611373038503], [19.087059206838333, 41.616884649832], [21.39910192913279, 41.9324677795958], [22.238176563447503, 43.517310640528756], [20.700525642136274, 44.79686404516598], [18.314740441318996, 44.470679588895024]]]}}, {"type": "Feature", "properties": {"bin": "822447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.044021077717, 46.58831847698082], [109.27583857902667, 45.06226566372926], [110.53865882676416, 43.87509579817304], [112.50749462316774, 44.17972718268073], [113.32774149411853, 45.65091523732746], [112.13164414819259, 46.871756703682145], [110.044021077717, 46.58831847698082]]]}}, {"type": "Feature", "properties": {"bin": "8200f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.133683778117444, 80.94451687165039], [71.37938677201048, 80.55688121048655], [79.88956289901815, 81.63685238910074], [78.68950712797613, 83.3827897305548], [64.01135567538, 83.90003351620658], [55.925484708362085, 82.50396355374559], [61.133683778117444, 80.94451687165039]]]}}, {"type": "Feature", "properties": {"bin": "823f97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[9.874355349748093, 27.304951934557945], [9.380676605201614, 25.603702576968765], [10.729780964035752, 24.341160535590188], [12.590615073173332, 24.753167536259074], [13.141299636275793, 26.45499699092275], [11.775116633219884, 27.744884569895603], [9.874355349748093, 27.304951934557945]]]}}, {"type": "Feature", "properties": {"bin": "823477fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-20.10838274495798, 33.794127804904804], [-21.91844433449385, 32.82179695820233], [-21.803961465610985, 31.02620792692692], [-19.956511299083022, 30.20750468846709], [-18.188212875829294, 31.1522330100506], [-18.225633742765968, 32.94224979572863], [-20.10838274495798, 33.794127804904804]]]}}, {"type": "Feature", "properties": {"bin": "822f57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[144.61806217349934, 33.50893914291298], [144.83132547405447, 35.18743046995052], [143.2524692645846, 36.19269249373678], [141.5164720050773, 35.500079204200794], [141.37966239930637, 33.84613507499527], [142.90304141661073, 32.85965633659085], [144.61806217349934, 33.50893914291298]]]}}, {"type": "Feature", "properties": {"bin": "823e77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.91172984348016, 30.31370874723716], [27.093823557839002, 28.66241436853054], [28.304398843543034, 27.21675601467155], [30.306296992440565, 27.400965985280784], [31.156425649586858, 29.0270203870736], [29.974579650337787, 30.494220987093975], [27.91172984348016, 30.31370874723716]]]}}, {"type": "Feature", "properties": {"bin": "82344ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.39332769128071, 28.514587165424352], [-18.117856496785507, 27.59648823740311], [-18.084745335168467, 25.837418687063995], [-16.394662810970292, 25.007863044517464], [-14.715050116074213, 25.90030374026243], [-14.681052541612365, 27.647052437792293], [-16.39332769128071, 28.514587165424352]]]}}, {"type": "Feature", "properties": {"bin": "823e67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.846140361421924, 32.114365722925704], [29.974579650337787, 30.494220987093975], [31.156425649586858, 29.0270203870736], [33.17539654916028, 29.162052595684372], [34.07350763527126, 30.754985462474068], [32.928330868996916, 32.24010231871653], [30.846140361421924, 32.114365722925704]]]}}, {"type": "Feature", "properties": {"bin": "827337fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[128.2235738321257, 12.387611570633615], [127.945831592227, 10.651087081515891], [129.32601506112, 9.560874810723679], [130.99970134176166, 10.212184576264093], [131.28928321485736, 11.962059629530703], [129.89366769788361, 13.047597812691034], [128.2235738321257, 12.387611570633615]]]}}, {"type": "Feature", "properties": {"bin": "82328ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.65691196626003, 41.38057162805131], [173.60281879844388, 43.00525323266232], [172.12125914326512, 44.41812685451786], [169.66101739290986, 44.17622039141847], [168.78558673419198, 42.52801927927894], [170.29589736899308, 41.14477482825523], [172.65691196626003, 41.38057162805131]]]}}, {"type": "Feature", "properties": {"bin": "823277fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[164.27523474023167, 32.36418421538919], [164.9482848618307, 34.07198661139128], [163.48728952578702, 35.410811261589316], [161.35533473313333, 35.006175018250936], [160.75440994060068, 33.286327963351994], [162.211212883488, 31.982389182360997], [164.27523474023167, 32.36418421538919]]]}}, {"type": "Feature", "properties": {"bin": "822c8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.8409287832181, 33.59038140224462], [48.65575066376257, 32.081356882577666], [50.55073502317359, 31.797105560963587], [51.71868001123167, 33.0302504795207], [50.94793753068601, 34.58855769689513], [48.961996849584274, 34.86417711463799], [47.8409287832181, 33.59038140224462]]]}}, {"type": "Feature", "properties": {"bin": "822ca7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[43.07440081871426, 35.32615569017736], [42.05451497441287, 33.877595956110035], [43.015090910470946, 32.3633225939436], [44.93655293731638, 32.29560759507948], [45.95426696141751, 33.713928215160024], [45.05438577310583, 35.22985924555321], [43.07440081871426, 35.32615569017736]]]}}, {"type": "Feature", "properties": {"bin": "824a17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.83691808742559, 22.746553062244796], [126.5607815576436, 21.13746551009211], [127.95321745134466, 20.176038965152888], [129.6401689057996, 20.83478770256814], [129.92909651550156, 22.458018873293096], [128.51859444064664, 23.408710771514148], [126.83691808742559, 22.746553062244796]]]}}, {"type": "Feature", "properties": {"bin": "820b47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[71.099849161268, 68.48984393680729], [75.23382507811029, 67.86858604553878], [78.73547913225427, 68.76811442540235], [78.23354745446635, 70.41413518408432], [73.56908542467754, 71.10525525369805], [69.97164984865374, 70.07339600383801], [71.099849161268, 68.48984393680729]]]}}, {"type": "Feature", "properties": {"bin": "82145ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[139.80810700632685, 57.32190497999963], [140.08804710824847, 55.704258487418656], [142.76906064305908, 54.9867616295015], [145.33111403246164, 55.81497059007159], [145.33216677893589, 57.44191113404762], [142.48773900759858, 58.23555192165029], [139.80810700632685, 57.32190497999963]]]}}, {"type": "Feature", "properties": {"bin": "825857fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.869781564574977, 13.615007694572515], [10.41628812276234, 12.057325226209532], [11.607494747938308, 10.838590240504287], [13.264752541075095, 11.144077233626273], [13.762355118081885, 12.694430236620008], [12.559316983005372, 13.947330592398506], [10.869781564574977, 13.615007694572515]]]}}, {"type": "Feature", "properties": {"bin": "82618ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.70607507930679, 12.414517864781308], [80.75351699236201, 14.151558182344273], [79.28566849623385, 15.021818547884736], [77.80091702536666, 14.16248410542495], [77.77098085188615, 12.450863670161919], [79.20849388464688, 11.573007348022402], [80.70607507930679, 12.414517864781308]]]}}, {"type": "Feature", "properties": {"bin": "827a17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.48244732223994, 0.4250722038883098], [48.9470688574492, 1.898270439192623], [47.89849150694345, 3.1567102748799845], [46.36344937538203, 2.965781048253536], [45.86977547540202, 1.487837453230303], [46.939938585558515, 0.20509182645195348], [48.48244732223994, 0.4250722038883098]]]}}, {"type": "Feature", "properties": {"bin": "82545ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.367549017070322, 11.435581249578398], [-10.794192696497728, 10.656349373399392], [-10.883976339217032, 9.211077490154926], [-9.58945482345044, 8.560616098966763], [-8.201402554173386, 9.317263995385268], [-8.069918148278395, 10.7462912331855], [-9.367549017070322, 11.435581249578398]]]}}, {"type": "Feature", "properties": {"bin": "823cf7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[90.57586584565294, 22.648836325487405], [90.68630878295664, 24.3462844893966], [89.09689870159305, 25.224826899844274], [87.41654076819316, 24.41090222753339], [87.32611574777664, 22.72356027237728], [88.8959889806463, 21.839554052885227], [90.57586584565294, 22.648836325487405]]]}}, {"type": "Feature", "properties": {"bin": "826327fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.280567687978625, 18.763546954992826], [56.80173723984203, 17.4331954374473], [58.36379976373644, 17.031649155402796], [59.460822441636594, 17.948925768853375], [58.98228838461839, 19.310273660620197], [57.36252540062567, 19.723731266747272], [56.280567687978625, 18.763546954992826]]]}}, {"type": "Feature", "properties": {"bin": "821837fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.79164665163863, 56.73632442836385], [-16.376938456712956, 56.06460393499809], [-16.378405826402158, 54.49624180191474], [-13.940607532856738, 53.61055766075581], [-11.464478383460659, 54.26248852552578], [-11.319329754507521, 55.8183598210179], [-13.79164665163863, 56.73632442836385]]]}}, {"type": "Feature", "properties": {"bin": "827a57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[41.04096889205773, 0.8353130739527076], [41.59000566215462, 2.3586899160008166], [40.50608046908582, 3.653571424771705], [38.86037407688217, 3.448590982272338], [38.285825439027946, 1.9283068208699659], [39.38193371434512, 0.609462307518436], [41.04096889205773, 0.8353130739527076]]]}}, {"type": "Feature", "properties": {"bin": "82315ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.14743057237902, 38.90641063676051], [129.00750882770032, 40.43146840277848], [127.47141178448352, 41.086104966615075], [126.15029699963041, 40.22211498519531], [126.34694261516331, 38.73874617524624], [127.80994135679161, 38.07786791628785], [129.14743057237902, 38.90641063676051]]]}}, {"type": "Feature", "properties": {"bin": "822087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[68.88086284035973, 38.47090410548266], [69.26285462718553, 36.73018450800947], [71.32518467091964, 36.094188741158675], [73.08513110829821, 37.16574976160484], [72.80947411127423, 38.92173634594799], [70.66559414826162, 39.592303898841884], [68.88086284035973, 38.47090410548266]]]}}, {"type": "Feature", "properties": {"bin": "823097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.20437007130985, 30.97260903508699], [119.45315871435092, 32.37631885864005], [118.11726536120723, 33.43902448232616], [116.50280999102597, 33.10122389472947], [116.26130043917948, 31.680907967987867], [117.62642833556802, 30.614685711904176], [119.20437007130985, 30.97260903508699]]]}}, {"type": "Feature", "properties": {"bin": "82760ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[160.05023931957322, 1.3298949686991755], [159.73813727496247, -0.3111395495865476], [160.88761270651509, -1.363125816446235], [162.3206084434784, -0.7857626165462422], [162.6268528036299, 0.8227221314452013], [161.50621268968138, 1.886201851130136], [160.05023931957322, 1.3298949686991755]]]}}, {"type": "Feature", "properties": {"bin": "8232c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.6236769663251, 40.52916571770251], [166.402567405527, 42.21373266971295], [164.801825630107, 43.53501149666521], [162.41945516878846, 43.139192074137064], [161.72693351746074, 41.44200540170416], [163.3273563200653, 40.152445894050416], [165.6236769663251, 40.52916571770251]]]}}, {"type": "Feature", "properties": {"bin": "82048ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.34200702658092, 67.74610390127735], [145.339761703303, 65.97675200608838], [148.99174373245955, 65.05302519337587], [152.8815528504696, 65.7896179431818], [153.47700907770454, 67.54065274369614], [149.60055659857568, 68.58158804186569], [145.34200702658092, 67.74610390127735]]]}}, {"type": "Feature", "properties": {"bin": "826a77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.24910003135815, 9.396155420644655], [29.54434210043852, 7.9232787333931745], [30.597118509067904, 6.672537737437504], [32.283333673132425, 6.883777737297147], [32.89787211389366, 8.336574336690193], [31.947530107392243, 9.601671762572183], [30.24910003135815, 9.396155420644655]]]}}, {"type": "Feature", "properties": {"bin": "821977fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.9315871635106042, 57.68949737459286], [-3.536381138969177, 57.31728796714347], [-3.9031812914854873, 55.84060580646489], [-1.7855433613315905, 54.76238836624054], [0.6707588590220488, 55.13380594305545], [1.1521975506221198, 56.58335438930745], [-0.9315871635106042, 57.68949737459286]]]}}, {"type": "Feature", "properties": {"bin": "824f57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[149.7526638100153, 16.629033848711074], [149.42409546227665, 14.969501978564315], [150.754220698069, 13.803525361009276], [152.3934118632161, 14.30021958918509], [152.72123821625237, 15.944244424286078], [151.41106888520727, 17.10739084119342], [149.7526638100153, 16.629033848711074]]]}}, {"type": "Feature", "properties": {"bin": "821907fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.999682127502824, 60.776647276888475], [-10.828226222593615, 60.2883152943037], [-11.002062802068592, 58.832287456226396], [-8.508655388670176, 57.88113060234581], [-5.832270115239387, 58.353838498476094], [-5.5023349253001514, 59.7918551703578], [-7.999682127502824, 60.776647276888475]]]}}, {"type": "Feature", "properties": {"bin": "826397fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.14446111745103, 8.796498558587306], [51.56003017732451, 10.077544166006838], [50.970254151885335, 11.291323182868313], [49.525587410455664, 11.204304324194899], [48.70181724423405, 9.876090877671766], [49.712829687588396, 8.682575679218088], [51.14446111745103, 8.796498558587306]]]}}, {"type": "Feature", "properties": {"bin": "8268e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.73229749473893, 5.64441414051287], [119.49690584493457, 3.9486914533379895], [120.78261008307042, 2.873595573332414], [122.32993687990546, 3.496828086580648], [122.57945867341262, 5.2165791412778475], [121.26764633911117, 6.289184675341438], [119.73229749473893, 5.64441414051287]]]}}, {"type": "Feature", "properties": {"bin": "8240cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[101.45783561313176, 31.80181239628881], [101.63618216132348, 33.32133580619488], [100.0216836653357, 34.230365516604415], [98.22850425577053, 33.6210697806835], [98.06882907366122, 32.09845008104616], [99.68326908521608, 31.18766135235495], [101.45783561313176, 31.80181239628881]]]}}, {"type": "Feature", "properties": {"bin": "821737fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.33613754506084, 62.49215566258707], [145.33465398425662, 60.78265799243752], [148.3454600145805, 59.9023253923835], [151.52104837883533, 60.63866054984396], [151.91700685342232, 62.335400343203396], [148.74778443083505, 63.31420979873877], [145.33613754506084, 62.49215566258707]]]}}, {"type": "Feature", "properties": {"bin": "825b1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[176.53922610069722, 9.236406119038636], [177.2397408231501, 10.600190205120805], [176.28993210653294, 11.794175727566111], [174.61682114576067, 11.589849622987263], [173.94282318446523, 10.194121685273998], [174.91405968816338, 9.034572067963818], [176.53922610069722, 9.236406119038636]]]}}, {"type": "Feature", "properties": {"bin": "826567fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[96.81803796648137, -1.7557835553234635], [96.95459010033167, -0.019087365036244645], [95.4836343689799, 0.9705107901420124], [93.88316686190382, 0.20786750723228084], [93.76296591620995, -1.530036116519424], [95.22669343176798, -2.504604687315686], [96.81803796648137, -1.7557835553234635]]]}}, {"type": "Feature", "properties": {"bin": "822db7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.851253012369405, 33.82015951565442], [32.928330868996916, 32.24010231871653], [34.07350763527126, 30.754985462474068], [36.09934651028466, 30.83594397491519], [37.042324688154004, 32.38747119932588], [35.941660647113025, 33.88647014000823], [33.851253012369405, 33.82015951565442]]]}}, {"type": "Feature", "properties": {"bin": "826a6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[35.31654779465218, 9.98398388232497], [34.56147784002126, 8.530928518179758], [35.62661261729032, 7.284444670674573], [37.27823313011431, 7.473154913703828], [37.848935371300406, 8.893462571252657], [36.981542609201604, 10.160202867960002], [35.31654779465218, 9.98398388232497]]]}}, {"type": "Feature", "properties": {"bin": "824307fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[53.16240799722281, 29.9438206116453], [53.839019591851255, 28.421390646162198], [55.67093720068831, 28.045896161865954], [56.905545302356764, 29.18919300993691], [56.281951696953435, 30.753862489747686], [54.36803088840162, 31.133168085520865], [53.16240799722281, 29.9438206116453]]]}}, {"type": "Feature", "properties": {"bin": "820557fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[135.3099027962519, 81.08732982705071], [136.93797037496347, 79.32046590614668], [145.36988141373342, 78.53376243783075], [153.80884496443537, 79.31717648987745], [155.46006182346585, 81.08340708780557], [145.39551760000364, 82.11076242705415], [135.3099027962519, 81.08732982705071]]]}}, {"type": "Feature", "properties": {"bin": "824f77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[150.754220698069, 13.803525361009276], [150.4269632053139, 12.119653348523006], [151.73979456715938, 10.950552595281254], [153.35922559786337, 11.466145661026696], [153.68515047833807, 13.131694739698181], [152.3934118632161, 14.30021958918509], [150.754220698069, 13.803525361009276]]]}}, {"type": "Feature", "properties": {"bin": "822d47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[38.69290600551898, 46.9924595035082], [39.89716674041972, 45.5595774995064], [42.14657468326135, 45.53950517227631], [43.31814421137, 46.98312969411603], [42.141990371113515, 48.470618150310706], [39.76090151170153, 48.458994691962985], [38.69290600551898, 46.9924595035082]]]}}, {"type": "Feature", "properties": {"bin": "828467fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.16588998913112, -0.18253457838412598], [68.9157220212863, -1.6840814660751022], [70.22162675854153, -2.627100977731312], [71.77153067798884, -2.0375119147551466], [71.98914343785155, -0.5261504290462844], [70.68986972642183, 0.3864613910864249], [69.16588998913112, -0.18253457838412598]]]}}, {"type": "Feature", "properties": {"bin": "8268d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.031493265098, 0.5781518809279286], [118.80144676595566, -1.0908183695418625], [120.06858192182614, -2.185183678247367], [121.59228289022157, -1.6126106195395276], [121.83635985200188, 0.07918007660184262], [120.54280909818868, 1.175734152705668], [119.031493265098, 0.5781518809279286]]]}}, {"type": "Feature", "properties": {"bin": "82394ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.868332115011663, 41.58031489516634], [4.408495454619831, 39.93195935896595], [5.9780551779606474, 38.85056389706335], [8.045142114241346, 39.402136368971775], [8.584298678288794, 41.06115008945459], [6.977840307728955, 42.158615693047416], [4.868332115011663, 41.58031489516634]]]}}, {"type": "Feature", "properties": {"bin": "824e97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[159.0986063733261, 28.16457616795243], [159.62747006587315, 29.862023974306773], [158.1826949335263, 31.130589516373846], [156.22621709181442, 30.665378910169142], [155.76776632495591, 28.964245339774813], [157.19416682977592, 27.73113416142994], [159.0986063733261, 28.16457616795243]]]}}, {"type": "Feature", "properties": {"bin": "8210e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.85850378792261, 60.079063237666276], [53.08757610316587, 58.5446949232804], [56.287511544772464, 58.32413490541331], [58.50175484111734, 59.63485271107847], [57.440949046155716, 61.216399242787126], [53.982547016039476, 61.44092061568186], [51.85850378792261, 60.079063237666276]]]}}, {"type": "Feature", "properties": {"bin": "823edffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[26.390135047058717, 19.22050575143428], [25.669601564150682, 17.599439710621716], [26.786746420552426, 16.22986331457982], [28.605731151092268, 16.452521340611096], [29.355521841742867, 18.04605273255658], [28.258650571169593, 19.44460716169293], [26.390135047058717, 19.22050575143428]]]}}, {"type": "Feature", "properties": {"bin": "826ba7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.649194223749127, 11.737554880527712], [16.110106592542248, 10.199094662934618], [17.25384900346828, 8.962142482864822], [18.938412567086797, 9.229638727111444], [19.51577576383811, 10.751916722743852], [18.37131288344698, 12.0234431609871], [16.649194223749127, 11.737554880527712]]]}}, {"type": "Feature", "properties": {"bin": "821797fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[145.32930167826274, 52.656769553392806], [145.32851606893576, 51.12825449972591], [147.3027143054959, 50.24943344878453], [149.65465920271976, 50.949539061107274], [150.0878441630784, 52.560388351898474], [147.769679104945, 53.40855322292734], [145.32930167826274, 52.656769553392806]]]}}, {"type": "Feature", "properties": {"bin": "82072ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.509600214148194, 69.01847753368425], [-7.942563038336622, 70.17612110688736], [-12.010053527275545, 69.77863315577277], [-13.121278008102069, 68.22640078990388], [-10.558792289389446, 67.1535478452051], [-6.976507251866831, 67.54932953851741], [-5.509600214148194, 69.01847753368425]]]}}, {"type": "Feature", "properties": {"bin": "821faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.088630904745564, 51.03969572472888], [7.489805747586691, 49.52621240698069], [9.251571422436438, 48.53467795856961], [11.648396307828463, 49.03934513079639], [12.345747364400054, 50.55427508726938], [10.54962281041145, 51.5639900357469], [8.088630904745564, 51.03969572472888]]]}}, {"type": "Feature", "properties": {"bin": "822cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.23119220420766, 35.534359447089386], [54.946698623666826, 33.929367151577324], [56.94985342520008, 33.5460493316818], [58.33141354003228, 34.76356449406121], [57.68276504499899, 36.41141790124565], [55.582222101206035, 36.79919983568016], [54.23119220420766, 35.534359447089386]]]}}, {"type": "Feature", "properties": {"bin": "82172ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[156.18070886491097, 64.69968546511701], [155.4739636475124, 62.99056862329925], [158.3281410729073, 61.87637001561119], [161.92972445966305, 62.36305348532005], [163.04087210465863, 64.01659592046677], [160.16987918038882, 65.24377532973864], [156.18070886491097, 64.69968546511701]]]}}, {"type": "Feature", "properties": {"bin": "820537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.14309010184775, 76.163042830191], [99.27271520331344, 74.95595912534229], [105.93256091359298, 75.29604839760391], [108.7965858772922, 76.93068340510597], [103.73752764045747, 78.33541698107065], [95.5497514299602, 77.89229298392907], [94.14309010184775, 76.163042830191]]]}}, {"type": "Feature", "properties": {"bin": "82622ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.315435771664646, 9.83036925628956], [61.259926898356724, 11.32048294458799], [60.156825413339405, 12.00581696958599], [59.14171250553698, 11.218223438139734], [59.20575845919014, 9.766368029980525], [60.27666531426067, 9.064330757313359], [61.315435771664646, 9.83036925628956]]]}}, {"type": "Feature", "properties": {"bin": "8216affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[162.94006150869623, 49.35709937680125], [163.75339688010732, 50.96414399817222], [161.8811466359504, 52.14427457373202], [159.20721767474788, 51.685488583514015], [158.5123428014429, 50.06969240808314], [160.3691531477627, 48.9203230493251], [162.94006150869623, 49.35709937680125]]]}}, {"type": "Feature", "properties": {"bin": "8221a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.28403216557175, 44.38667318271226], [57.06015141119557, 42.70540478677203], [59.38437217328617, 42.305966242342], [61.05621013274095, 43.5803991056681], [60.378850556101796, 45.30212500838954], [57.925680058676136, 45.70964233249084], [56.28403216557175, 44.38667318271226]]]}}, {"type": "Feature", "properties": {"bin": "82536ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.90854087737715, 27.611945758678903], [49.94122728254856, 26.239567196879804], [50.64760846071287, 24.785413840854247], [52.26654354996584, 24.706441323747846], [53.353615700397675, 25.80249846629109], [52.69556296388095, 27.27707945911761], [50.90854087737715, 27.611945758678903]]]}}, {"type": "Feature", "properties": {"bin": "821987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.860891633724744, 59.14600882924072], [-24.48971136806876, 58.33329382317988], [-24.24608918109857, 56.81195076286665], [-21.536793665272608, 56.10124011353575], [-18.987191465997125, 56.88329845233644], [-19.067029449080284, 58.40493643730386], [-21.860891633724744, 59.14600882924072]]]}}, {"type": "Feature", "properties": {"bin": "820017fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.58085341919355, 76.6800744027878], [55.65376829275445, 76.66743647707504], [59.68414094133996, 78.0257182142187], [55.750771038582066, 79.5583306312711], [46.680722653744276, 79.52275623872615], [43.86177154488894, 78.00915421128866], [48.58085341919355, 76.6800744027878]]]}}, {"type": "Feature", "properties": {"bin": "828517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.4209834691308, -0.8432313994062755], [56.04076373667954, -2.3041178869669134], [57.17385686459748, -3.2372943806693404], [58.70188971217522, -2.6774916039214682], [59.06013087670413, -1.191604237632985], [57.913121185178866, -0.2902799639423976], [56.4209834691308, -0.8432313994062755]]]}}, {"type": "Feature", "properties": {"bin": "827317fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[129.32601506112, 9.560874810723679], [129.04492009156368, 7.805398745803346], [130.42589846573782, 6.689605773929638], [132.10191338580537, 7.3316243852809855], [132.39427407836698, 9.098385089611767], [130.99970134176166, 10.212184576264093], [129.32601506112, 9.560874810723679]]]}}, {"type": "Feature", "properties": {"bin": "82190ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.832270115239387, 58.353838498476094], [-8.508655388670176, 57.88113060234581], [-8.740899630542526, 56.38258811071852], [-6.436337296790293, 55.37739041554851], [-3.9031812914854873, 55.84060580646489], [-3.536381138969177, 57.31728796714347], [-5.832270115239387, 58.353838498476094]]]}}, {"type": "Feature", "properties": {"bin": "82302ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[126.34694261516331, 38.73874617524624], [126.15029699963041, 40.22211498519531], [124.6671982555717, 40.827038787594745], [123.45342978278158, 39.958428925992706], [123.69953711381339, 38.517762053356286], [125.11187681160854, 37.903324416007706], [126.34694261516331, 38.73874617524624]]]}}, {"type": "Feature", "properties": {"bin": "82171ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[154.30245997645446, 59.62897038296288], [153.8117703227267, 57.982558289177426], [156.27850722494347, 56.960700152391155], [159.2855655852143, 57.491104502796425], [160.07041826212776, 59.09655706521316], [157.56602207692168, 60.21637810885471], [154.30245997645446, 59.62897038296288]]]}}, {"type": "Feature", "properties": {"bin": "82551ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.144989535729147, 23.326587938836802], [-14.779224893207182, 22.458857233680753], [-14.809542528491999, 20.76971623997587], [-13.2640825169036, 19.96445296689503], [-11.67514915567997, 20.80838745157097], [-11.587036473562442, 22.48058908346514], [-13.144989535729147, 23.326587938836802]]]}}, {"type": "Feature", "properties": {"bin": "825437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.809542528491999, 20.76971623997587], [-16.39648236469557, 19.88982836881392], [-16.39704531124982, 18.232262428254234], [-14.866952039887197, 17.46687133443676], [-13.32044956422305, 18.32002082210057], [-13.2640825169036, 19.96445296689503], [-14.809542528491999, 20.76971623997587]]]}}, {"type": "Feature", "properties": {"bin": "825a87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[178.30085270634834, 18.91048376640709], [179.10550716284808, 20.427514765045647], [178.08136767105975, 21.797393768021593], [176.22059231069557, 21.616965270530546], [175.44545233955793, 20.063781728321988], [176.4996932644643, 18.72720645694535], [178.30085270634834, 18.91048376640709]]]}}, {"type": "Feature", "properties": {"bin": "8238affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.8582819730967257, 29.709916100270622], [-3.114662381767312, 28.037213840900282], [-1.708865748930489, 27.07368875784343], [-0.051693302165059865, 27.635200550312817], [0.2609468260311339, 29.300374659234986], [-1.1436797512903807, 30.382229579202342], [-2.8582819730967257, 29.709916100270622]]]}}, {"type": "Feature", "properties": {"bin": "82628ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.794596557655176, 5.489665649401445], [56.43725299657158, 4.172487876554684], [57.51698034770715, 3.3672716245104053], [58.9668320668832, 3.9090460692490985], [59.304121541917894, 5.2463359699483085], [58.21229557627797, 6.022039688854253], [56.794596557655176, 5.489665649401445]]]}}, {"type": "Feature", "properties": {"bin": "820067fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.3920560938763384, 79.5921312331109], [4.121656030400283, 80.79168761359398], [-0.5071413604228857, 82.25118471750908], [-12.81796911199405, 82.24829137508873], [-16.54048563323215, 80.82228127123085], [-10.416534576215874, 79.62054525867497], [-1.3920560938763384, 79.5921312331109]]]}}, {"type": "Feature", "properties": {"bin": "82010ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[23.998789925609252, 73.5439174055105], [28.896409947344146, 74.14929175945835], [29.207465708710853, 75.65094362106625], [23.469373219341843, 76.53550099989292], [18.056823801067942, 75.77008100847956], [18.885658380221702, 74.295064225644], [23.998789925609252, 73.5439174055105]]]}}, {"type": "Feature", "properties": {"bin": "826547fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[95.4836343689799, 0.9705107901420124], [95.61418309195383, 2.735045602101045], [94.12750944562478, 3.736077688609343], [92.51962966629, 2.9596021818630542], [92.40599584744335, 1.196427511610166], [93.88316686190382, 0.20786750723228084], [95.4836343689799, 0.9705107901420124]]]}}, {"type": "Feature", "properties": {"bin": "82685ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.42018443628713, 7.593456060319665], [124.161046766289, 5.859612972311428], [125.50231533878872, 4.76343118357537], [127.12366345508629, 5.4036923569431865], [127.39588222887433, 7.155784270598222], [126.03390811709544, 8.24960594616433], [124.42018443628713, 7.593456060319665]]]}}, {"type": "Feature", "properties": {"bin": "8274a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.057746405457742, 0.05139740489565597], [-8.13731674878687, 1.0021068368703743], [-8.412776379912252, 2.467580053183618], [-9.617165475873394, 3.0186960049772624], [-10.568206405653283, 2.080813975286279], [-10.28431789008691, 0.5785308439935908], [-9.057746405457742, 0.05139740489565597]]]}}, {"type": "Feature", "properties": {"bin": "825407fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-13.32044956422305, 18.32002082210057], [-14.866952039887197, 17.46687133443676], [-14.894156301320406, 15.857367972897634], [-13.427370701414569, 15.114836157430986], [-11.921275342920428, 15.942300063297786], [-11.842109343172925, 17.537180528555226], [-13.32044956422305, 18.32002082210057]]]}}, {"type": "Feature", "properties": {"bin": "822157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.60809867176599, 51.993218243053036], [68.1356304547995, 50.235864087332054], [70.75404161615583, 49.60964779117549], [72.97576825988995, 50.70878190211797], [72.61906460378023, 52.48327868250763], [69.86551096712377, 53.143470509913854], [67.60809867176599, 51.993218243053036]]]}}, {"type": "Feature", "properties": {"bin": "822587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[89.13896666467946, 44.6199664965884], [88.93958789515892, 42.86622963459015], [90.82743784898058, 41.88146804834018], [92.92995235535336, 42.59873264380677], [93.24755930546543, 44.32103004761993], [91.34751423943914, 45.35866706037272], [89.13896666467946, 44.6199664965884]]]}}, {"type": "Feature", "properties": {"bin": "8231a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.62768041043816, 42.996232909846114], [112.84378816030141, 41.54150553872736], [113.89690793938219, 40.39961129392157], [115.67300090962081, 40.681884550641115], [116.49000040590848, 42.08248625897494], [115.50113901102064, 43.25414167974318], [113.62768041043816, 42.996232909846114]]]}}, {"type": "Feature", "properties": {"bin": "82631ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.280203869073134, 15.248522648953482], [55.4335256099196, 13.982870346391318], [55.94007484027042, 12.754829243237467], [57.25141623171747, 12.789486972685358], [58.2554110456957, 13.61493421960814], [57.7882477627106, 14.858282725500832], [56.280203869073134, 15.248522648953482]]]}}, {"type": "Feature", "properties": {"bin": "8217b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[142.76906064305908, 54.9867616295015], [142.88971105702714, 53.409507856690254], [145.32930167826274, 52.656769553392806], [147.769679104945, 53.40855322292734], [147.89212944698653, 54.985759470582124], [145.33111403246164, 55.81497059007159], [142.76906064305908, 54.9867616295015]]]}}, {"type": "Feature", "properties": {"bin": "827ae7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[43.20753518813408, 2.5665184595080492], [43.729192388853946, 4.045894876233992], [42.660264793431104, 5.316028449437792], [41.05421703247711, 5.131054547027026], [40.50608046908582, 3.653571424771705], [41.59000566215462, 2.3586899160008166], [43.20753518813408, 2.5665184595080492]]]}}, {"type": "Feature", "properties": {"bin": "8259b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.866872026589571, 15.219885219398503], [-5.054413711032675, 13.721330560531266], [-3.8159567641288787, 12.988678177851225], [-2.423467945637673, 13.37666338895838], [-2.193704994404441, 14.869645297067569], [-3.4006303468807486, 15.959635072416068], [-4.866872026589571, 15.219885219398503]]]}}, {"type": "Feature", "properties": {"bin": "82202ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[70.75404161615583, 49.60964779117549], [71.15389202471005, 47.82818798168813], [73.61820931870749, 47.13404017426435], [75.79014551842988, 48.18454407569599], [75.55012851642559, 49.975877206192976], [72.97576825988995, 50.70878190211797], [70.75404161615583, 49.60964779117549]]]}}, {"type": "Feature", "properties": {"bin": "821967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.654940544612971, 56.86632091834963], [1.1521975506221198, 56.58335438930745], [0.6707588590220488, 55.13380594305545], [2.5927890313053683, 53.99775155222293], [4.948742151508293, 54.288286693229196], [5.523646549290317, 55.70676846515228], [3.654940544612971, 56.86632091834963]]]}}, {"type": "Feature", "properties": {"bin": "82430ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.281951696953435, 30.753862489747686], [56.905545302356764, 29.18919300993691], [58.7740142867662, 28.76881779745647], [60.099069300235215, 29.903560266766736], [59.53760347725541, 31.506665813674903], [57.58625773283634, 31.937025252522204], [56.281951696953435, 30.753862489747686]]]}}, {"type": "Feature", "properties": {"bin": "8220d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.78083489243026, 39.23939703043915], [76.94535091342905, 37.477284318316336], [78.93065472882462, 36.710673546798674], [80.80883203188255, 37.66164155905127], [80.75722897791712, 39.420496754076936], [78.71435321532265, 40.2331976599755], [76.78083489243026, 39.23939703043915]]]}}, {"type": "Feature", "properties": {"bin": "826987fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.12715606917523, 4.965393245355261], [111.33144476242238, 6.691122219788032], [109.96580131465929, 7.718738115722608], [108.38013200113112, 7.0031235509809875], [108.18671050745836, 5.254023178261672], [109.5676629086609, 4.243718891838053], [111.12715606917523, 4.965393245355261]]]}}, {"type": "Feature", "properties": {"bin": "82720ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[139.67778765727132, 5.15141732453551], [139.36640825262376, 3.374109793703046], [140.74918846783441, 2.2183857025045817], [142.43997538991445, 2.835154500117894], [142.75686463705537, 4.606028555705816], [141.37792967293944, 5.766943397442562], [139.67778765727132, 5.15141732453551]]]}}, {"type": "Feature", "properties": {"bin": "820457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[163.84104377796746, 75.08989276640649], [161.91207566662212, 73.36886176605668], [165.9403853591174, 72.03987614870728], [171.71068548706472, 72.27708923784728], [174.47600984351607, 73.87447385977362], [170.77551513125033, 75.36394430473578], [163.84104377796746, 75.08989276640649]]]}}, {"type": "Feature", "properties": {"bin": "826ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.825041084818885, -0.559499450859455], [31.469937027242487, 1.021248866915232], [30.3880967444156, 2.3508402872747567], [28.664504679143825, 2.1201981947478785], [28.00353834225145, 0.5533618253805922], [29.081378028850438, -0.796995066489417], [30.825041084818885, -0.559499450859455]]]}}, {"type": "Feature", "properties": {"bin": "822e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[147.50435309695874, 40.93751143528539], [147.81728377284585, 42.633406882356155], [146.06288796294555, 43.62471303294338], [144.05801957035413, 42.90122568599545], [143.84165263839182, 41.22608204319894], [145.5340016462912, 40.25286607784118], [147.50435309695874, 40.93751143528539]]]}}, {"type": "Feature", "properties": {"bin": "821e2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.036282030286998, 51.703743211634446], [19.151349829527778, 50.24865423658935], [20.8228860838409, 49.07436692405009], [23.367705060966273, 49.33446913970941], [24.329000339945946, 50.77632225134795], [22.673099856157986, 51.971886717716714], [20.036282030286998, 51.703743211634446]]]}}, {"type": "Feature", "properties": {"bin": "823957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.0911461549131662, 39.78465688180244], [-1.4162342628377134, 38.1159967227654], [0.12380735772064089, 37.036562006618176], [2.015254649789183, 37.66435763083123], [2.4096906393984865, 39.323587881774785], [0.8372982571856167, 40.33535273335422], [-1.0911461549131662, 39.78465688180244]]]}}, {"type": "Feature", "properties": {"bin": "82101ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[46.74849496607573, 58.74251100374587], [48.09649671394388, 57.26027424180903], [51.15131422930827, 57.15637211465772], [53.08757610316587, 58.5446949232804], [51.85850378792261, 60.079063237666276], [48.56036712288836, 60.17303439572082], [46.74849496607573, 58.74251100374587]]]}}, {"type": "Feature", "properties": {"bin": "822daffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[36.77434984540357, 38.415715270613546], [35.77375792162134, 36.910956734615105], [36.91260199541162, 35.41856039141452], [38.99930032882582, 35.42233869616125], [40.013903905353125, 36.89986549574836], [38.930217596746424, 38.400687413420364], [36.77434984540357, 38.415715270613546]]]}}, {"type": "Feature", "properties": {"bin": "824277fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.31584973168054, 30.032244941109706], [65.73597230286956, 28.415732800952867], [67.57583239810288, 27.86931475436287], [69.06409612010958, 28.912826044120038], [68.72158994214257, 30.5519657403398], [66.81138218629923, 31.126021641142017], [65.31584973168054, 30.032244941109706]]]}}, {"type": "Feature", "properties": {"bin": "8239b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.727150094554121, 33.80653391043386], [-14.570452111245078, 32.95438593767852], [-14.608842439241553, 31.177353298158966], [-12.877752742714321, 30.271571925410477], [-11.092615024541725, 31.105564272262285], [-10.98139564337498, 32.86267465416169], [-12.727150094554121, 33.80653391043386]]]}}, {"type": "Feature", "properties": {"bin": "826b47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.669070310445658, 15.085954806287294], [28.934833683009895, 13.526795144961554], [29.966532331336797, 12.198779848215473], [31.70919852287402, 12.40154427413899], [32.46526669022789, 13.92912581670429], [31.458258076484793, 15.285505315434653], [29.669070310445658, 15.085954806287294]]]}}, {"type": "Feature", "properties": {"bin": "825577fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.846165692887986, 23.225810445647934], [-8.463757820412326, 22.441035492513045], [-8.606696673672944, 20.791091351545326], [-7.184232148529101, 19.95235527007237], [-5.619089861216808, 20.72183235528512], [-5.425053091334932, 22.344835336854807], [-6.846165692887986, 23.225810445647934]]]}}, {"type": "Feature", "properties": {"bin": "82312ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.65093475635452, 45.6699409867376], [122.4804653993422, 44.42177182649497], [124.58049080359855, 44.14376770134433], [125.98114176677377, 45.096434369080356], [125.25538071272493, 46.39244475315222], [123.01961061339279, 46.688838646389684], [121.65093475635452, 45.6699409867376]]]}}, {"type": "Feature", "properties": {"bin": "82422ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.993877752890405, 29.43456098512192], [62.48507378084358, 27.846740947200793], [64.320097378687, 27.347646726674125], [65.73597230286956, 28.415732800952867], [65.31584973168054, 30.032244941109706], [63.40664700727329, 30.552823525465254], [61.993877752890405, 29.43456098512192]]]}}, {"type": "Feature", "properties": {"bin": "825a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.44545233955793, 20.063781728321988], [176.22059231069557, 21.616965270530546], [175.12644096262287, 22.991728685166404], [173.23062212965775, 22.777763428069573], [172.4917755998185, 21.191636509336988], [173.61050860311653, 19.852266346793826], [175.44545233955793, 20.063781728321988]]]}}, {"type": "Feature", "properties": {"bin": "822c87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.95426696141751, 33.713928215160024], [44.93655293731638, 32.29560759507948], [45.81249162035951, 30.785265895218682], [47.646373642853554, 30.694156249000915], [48.65575066376252, 32.08135688257766], [47.84092878321806, 33.59038140224462], [45.95426696141751, 33.713928215160024]]]}}, {"type": "Feature", "properties": {"bin": "824237fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.073275060404775, 26.118995627536346], [58.620492916117506, 24.617956366786995], [60.36811543886133, 24.17853625643186], [61.63736877357023, 25.22642498182882], [61.14741681065508, 26.76117840246379], [59.32883927578406, 27.214865294319264], [58.073275060404775, 26.118995627536346]]]}}, {"type": "Feature", "properties": {"bin": "8282effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.579905087848414, -1.0722681134170775], [6.274126691321663, 0.38835411272385156], [5.479174769865493, 1.6114802044966399], [4.022089806282807, 1.382296820377439], [3.3406661153006687, -0.045100606795108945], [4.103164136767459, -1.2760872010763924], [5.579905087848414, -1.0722681134170775]]]}}, {"type": "Feature", "properties": {"bin": "8230f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[123.16276457697892, 36.00561444807193], [122.89743602631219, 34.70019382245992], [124.29034574462932, 34.02180762319836], [125.97326654688494, 34.65941531820471], [126.25334861257146, 35.97473569616671], [124.8359957920349, 36.64293584360804], [123.16276457697892, 36.00561444807193]]]}}, {"type": "Feature", "properties": {"bin": "824257fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[67.57583239810288, 27.86931475436287], [67.93150725400422, 26.28136588426531], [69.70151458275944, 25.7178821848289], [71.1765408333672, 26.712328589682727], [70.89619422207072, 28.318196535778466], [69.06409612010958, 28.912826044120038], [67.57583239810288, 27.86931475436287]]]}}, {"type": "Feature", "properties": {"bin": "8265b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.77247792549403, 10.50768755405878], [108.97144541690444, 12.256484771946301], [107.54692595046549, 13.315850947919389], [105.91070146594151, 12.614189047233577], [105.72436073050534, 10.84624715467437], [107.16118351272775, 9.798825362645363], [108.77247792549403, 10.50768755405878]]]}}, {"type": "Feature", "properties": {"bin": "8258e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[8.784937126674635, 11.730952307865815], [8.37386952112726, 10.215393994209876], [9.549996118907211, 9.030648318176459], [11.152828163016908, 9.328206600489576], [11.607494747938308, 10.838590240504287], [10.41628812276234, 12.057325226209532], [8.784937126674635, 11.730952307865815]]]}}, {"type": "Feature", "properties": {"bin": "82309ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.45315871435092, 32.37631885864005], [119.20437007130985, 30.97260903508699], [120.50339385995798, 29.89298533869355], [122.11353816810242, 30.58950657595241], [122.37283494406972, 31.991695388656535], [121.00668784625681, 32.682212732683226], [119.45315871435092, 32.37631885864005]]]}}, {"type": "Feature", "properties": {"bin": "826b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[15.07769373223365, 7.210277977223253], [14.583250071411682, 5.7628604914369355], [15.505317072937482, 4.5409605608606505], [17.14051423245727, 4.790542387748742], [17.830960861400172, 6.271911037888126], [16.718562711430415, 7.474846581692809], [15.07769373223365, 7.210277977223253]]]}}, {"type": "Feature", "properties": {"bin": "824e67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[143.62042640551968, 17.894593929233352], [143.29617251550175, 16.215744508474376], [144.6843894988152, 15.071456211059555], [146.38661497320422, 15.61036170754683], [146.71402527107543, 17.28158613922535], [145.33655699281812, 18.42194413916021], [143.62042640551968, 17.894593929233352]]]}}, {"type": "Feature", "properties": {"bin": "82425ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[70.89619422207072, 28.318196535778466], [71.1765408333672, 26.712328589682727], [72.9316241024183, 26.106099225137925], [74.4614825094673, 27.070669126207168], [74.26030111048053, 28.68786292438215], [72.44910817414352, 29.330411718505946], [70.89619422207072, 28.318196535778466]]]}}, {"type": "Feature", "properties": {"bin": "8210affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[46.4297765243137, 55.81586297018568], [47.69571850918254, 54.306702731626594], [50.540162201306025, 54.190111178839715], [52.31789068891417, 55.595312118491755], [51.15131422930827, 57.15637211465772], [48.09649671394388, 57.26027424180903], [46.4297765243137, 55.81586297018568]]]}}, {"type": "Feature", "properties": {"bin": "8268cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[123.6482978951057, 2.3996946574232902], [123.39466778821806, 0.6800844776357411], [124.71868440286572, -0.4337690657590338], [126.31795557186994, 0.17017772412858456], [126.58470669389268, 1.9075458519315136], [125.23927866988447, 3.023468344054069], [123.6482978951057, 2.3996946574232902]]]}}, {"type": "Feature", "properties": {"bin": "824297fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.04261658386713, 17.52139444419055], [61.47207394109067, 16.192032948400712], [63.01380713804956, 15.755902567695033], [64.17778356185815, 16.63099762114276], [63.79649417188672, 17.984837262922877], [62.201745172143134, 18.43974801825257], [61.04261658386713, 17.52139444419055]]]}}, {"type": "Feature", "properties": {"bin": "8207affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.53126506085391, 75.12865785383518], [-21.165238931777616, 76.1878353494321], [-26.75208462210931, 75.51366512257574], [-26.8675207176858, 73.85617864759342], [-22.4076276387758, 72.92129484534789], [-17.598970251255384, 73.52894986794209], [-16.53126506085391, 75.12865785383518]]]}}, {"type": "Feature", "properties": {"bin": "8204effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.9403853591174, 72.03987614870728], [164.12856095206374, 70.3473312721952], [167.43436333127184, 69.00059392160927], [172.37072969029856, 69.21401673918528], [174.74893924520714, 70.79472682488498], [171.71068548706472, 72.27708923784728], [165.9403853591174, 72.03987614870728]]]}}, {"type": "Feature", "properties": {"bin": "820097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.91085753381934, 73.75952697882985], [82.21911892366025, 72.97478012112376], [87.35476831819847, 73.76986802635263], [87.70559226067502, 75.49758638581739], [81.64563461848032, 76.41124061823331], [76.01514948533608, 75.45226049628377], [76.91085753381934, 73.75952697882985]]]}}, {"type": "Feature", "properties": {"bin": "8282d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.026444557704739, 2.318989904044636], [10.722777827285633, 3.789624991750129], [9.867155862482887, 4.9896835731792315], [8.344198848186501, 4.73215438908026], [7.6564645218774645, 3.2930086626395654], [8.482576550430563, 2.080262305139526], [10.026444557704739, 2.318989904044636]]]}}, {"type": "Feature", "properties": {"bin": "820037fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.01139898730706, 75.01231815969079], [46.110083039103145, 75.23051359343751], [48.58085341919355, 76.6800744027878], [43.86177154488894, 78.00915421128866], [36.42872092351118, 77.68574902454718], [35.209211757657734, 76.1522144631779], [40.01139898730706, 75.01231815969079]]]}}, {"type": "Feature", "properties": {"bin": "82758ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-8.412776379912252, 2.467580053183618], [-7.510528664919241, 3.3757928754616686], [-7.378352602293609, 4.648343501025636], [-8.57230150554439, 5.228007003124849], [-9.897444859098838, 4.500197653762574], [-9.617165475873394, 3.0186960049772624], [-8.412776379912252, 2.467580053183618]]]}}, {"type": "Feature", "properties": {"bin": "823817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-2.3153354483215614, 33.072845980897284], [-4.0994046701538185, 32.39833876166745], [-4.341769247156946, 30.69897412778907], [-2.8582819730967257, 29.709916100270622], [-1.1436797512904093, 30.38222957920235], [-0.8449020421237422, 32.04554500883069], [-2.3153354483215614, 33.072845980897284]]]}}, {"type": "Feature", "properties": {"bin": "82104ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[60.404056538620424, 66.76564107222977], [61.51493759898825, 65.25273108770251], [65.3710205691241, 64.85541165114829], [68.43491147351529, 65.93981446749967], [67.6567964347214, 67.48842315467373], [63.46143468820213, 67.91997908494295], [60.404056538620424, 66.76564107222977]]]}}, {"type": "Feature", "properties": {"bin": "825a77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[168.53745793093609, 12.102005482769567], [169.14403090083158, 13.554585784023473], [168.03624941787785, 14.779799301747063], [166.31377179062187, 14.5131315348316], [165.74783503796147, 13.036810003988302], [166.86243710851772, 11.85037967019004], [168.53745793093609, 12.102005482769567]]]}}, {"type": "Feature", "properties": {"bin": "82682ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[117.6447082892738, 11.055777977021906], [117.41849366987863, 9.387741851934114], [118.68610728166979, 8.3764613699628], [120.20851510495392, 9.041619781447562], [120.449366342475, 10.736966167684393], [119.1532492217661, 11.739863893210984], [117.6447082892738, 11.055777977021906]]]}}, {"type": "Feature", "properties": {"bin": "821107fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[28.46056633599109, 60.33478831384491], [30.297301068032212, 59.186367814145974], [33.08800726462075, 59.50853611330557], [34.23038571380156, 61.02329363843618], [32.364306440168384, 62.22127049258845], [29.37740391195775, 61.85315498425268], [28.46056633599109, 60.33478831384491]]]}}, {"type": "Feature", "properties": {"bin": "825817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.2085973421006972, 13.394482127990228], [2.88810760150022, 11.881770859938996], [4.0790065308125625, 10.73401495722421], [5.614833472212566, 11.068219758915488], [5.980953372995424, 12.584545802489613], [4.765825070146594, 13.763786258241295], [3.2085973421006972, 13.394482127990228]]]}}, {"type": "Feature", "properties": {"bin": "822437fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[95.84511450338546, 46.67922161249402], [95.43773288515852, 44.97394563239702], [97.19470712620408, 43.890570396606854], [99.345530873997, 44.46304525486081], [99.8598622140046, 46.12521849972981], [98.1210260563531, 47.25866952312831], [95.84511450338546, 46.67922161249402]]]}}, {"type": "Feature", "properties": {"bin": "823f57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[24.035997744251496, 34.59685782123658], [23.24317489424228, 32.93445208208274], [24.56356707050921, 31.525134298050116], [26.658191980924084, 31.75677617763522], [27.494687087596816, 33.40029193226209], [26.195246251947374, 34.83135743754204], [24.035997744251496, 34.59685782123658]]]}}, {"type": "Feature", "properties": {"bin": "822c47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[49.12120810445012, 45.19505055214733], [50.08359791457066, 43.599205049931015], [52.40209518791526, 43.3519782691914], [53.88871226275167, 44.70954356692923], [52.99953482377553, 46.35528854938254], [50.54470004315698, 46.59355493840842], [49.12120810445012, 45.19505055214733]]]}}, {"type": "Feature", "properties": {"bin": "82012ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[20.123253135395892, 71.43479800589196], [24.192747647371593, 72.09707420590918], [23.998789925609252, 73.5439174055105], [18.885658380221702, 74.295064225644], [14.55184502811682, 73.4874564977175], [15.568828380671018, 72.0844427245379], [20.123253135395892, 71.43479800589196]]]}}, {"type": "Feature", "properties": {"bin": "822f87fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.03867203020985, 39.96484113905747], [155.5463807691688, 41.68203748083565], [153.83665900080507, 42.828100172754496], [151.65762929746157, 42.229172395054455], [151.24672216609224, 40.51908889731177], [152.91700823580283, 39.39984822241461], [155.03867203020985, 39.96484113905747]]]}}, {"type": "Feature", "properties": {"bin": "828c9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[107.61719841382204, 0.05866487759648554], [107.80526454768341, 1.7786268769012792], [106.41168295379833, 2.7703025791670135], [104.81975427624337, 2.0221015680241052], [104.6440938384407, 0.2839386148111165], [106.0475728562409, -0.6881422936785299], [107.61719841382204, 0.05866487759648554]]]}}, {"type": "Feature", "properties": {"bin": "823137fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.21289563713785, 47.30945130281313], [115.30978583151253, 45.88291508681843], [116.3590601424378, 44.67041995408337], [118.23461400925328, 44.860009682316225], [119.45888852672456, 45.894254653289174], [118.49145434322612, 47.148121064048524], [116.21289563713785, 47.30945130281313]]]}}, {"type": "Feature", "properties": {"bin": "820b57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[75.62454067323178, 66.30062172014773], [79.33992396507412, 65.55692907015926], [82.86720944085974, 66.32364928285418], [82.74318420812759, 67.95228117825242], [78.73547913225427, 68.76811442540235], [75.23382507811029, 67.86858604553878], [75.62454067323178, 66.30062172014773]]]}}, {"type": "Feature", "properties": {"bin": "82058ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.75360006217667, 72.04776325602842], [126.56011071575868, 70.35455175835216], [131.6567141896898, 69.90083070937007], [135.69544064746276, 71.07580205245385], [134.71007017060782, 72.8480044940237], [128.7891081481311, 73.37525345776886], [124.75360006217667, 72.04776325602842]]]}}, {"type": "Feature", "properties": {"bin": "826b77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[26.786746420552426, 16.22986331457982], [26.079675952993234, 14.642208133911156], [27.162959755062325, 13.305579858085919], [28.934833683009895, 13.526795144961554], [29.669070310445658, 15.085954806287294], [28.605731151092268, 16.452521340611096], [26.786746420552426, 16.22986331457982]]]}}, {"type": "Feature", "properties": {"bin": "823127fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.49145434322612, 47.148121064048524], [119.45888852672456, 45.894254653289174], [121.65093475635452, 45.6699409867376], [123.01961061339279, 46.688838646389684], [122.15259506819683, 47.9979628093854], [119.80980344758385, 48.23347703514972], [118.49145434322612, 47.148121064048524]]]}}, {"type": "Feature", "properties": {"bin": "82184ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-1.75279807155882, 45.82891715662811], [-3.870647496695551, 45.286766294393956], [-4.162634555966773, 43.62589881783318], [-2.4177958307002343, 42.540479965651194], [-0.3979729448555914, 43.08588995790071], [-0.02800493241727862, 44.712977777952425], [-1.75279807155882, 45.82891715662811]]]}}, {"type": "Feature", "properties": {"bin": "82621ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.826544385078634, 9.254931462060762], [57.48907818012652, 8.031132744162123], [58.549882762724735, 7.302087248609304], [59.95886621545895, 7.824187579675636], [60.27666531426065, 9.06433075731333], [59.20575845919014, 9.766368029980502], [57.826544385078634, 9.254931462060762]]]}}, {"type": "Feature", "properties": {"bin": "822ec7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[138.67329382795646, 43.88349000410809], [138.75859387597603, 45.50779096126445], [136.97005651322786, 46.28395468965602], [135.18157054877662, 45.431106572472544], [135.18674248371934, 43.83988642133859], [136.89183897767884, 43.06799389230268], [138.67329382795646, 43.88349000410809]]]}}, {"type": "Feature", "properties": {"bin": "820747fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.942390307951198, 65.10982468378923], [-17.54611228138685, 66.09556511029363], [-20.904369925050815, 65.43480780172833], [-21.327940366858037, 63.81953151634645], [-18.741712912328655, 62.92039850236251], [-15.697122940858694, 63.552516945683436], [-14.942390307951198, 65.10982468378923]]]}}, {"type": "Feature", "properties": {"bin": "8258dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[10.283180498778014, 6.402677248031407], [9.86715586248289, 4.9896835731792395], [10.722777827285633, 3.789624991750129], [12.294352016976955, 4.039836103302269], [12.988442347830356, 5.50570735563944], [11.857917574873651, 6.673406154658983], [10.283180498778014, 6.402677248031407]]]}}, {"type": "Feature", "properties": {"bin": "8255a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.084745335168467, 25.837418687063995], [-19.75080967850516, 24.900975863614626], [-19.687464668200867, 23.164690007884964], [-18.022267576148227, 22.372442159798524], [-16.395292355187806, 23.280106473767372], [-16.394662810970292, 25.007863044517464], [-18.084745335168467, 25.837418687063995]]]}}, {"type": "Feature", "properties": {"bin": "821957fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-3.9031812914854873, 55.84060580646489], [-6.436337296790293, 55.37739041554851], [-6.713499065102662, 53.841053788108646], [-4.578382413982979, 52.792439042763036], [-2.1788859209290425, 53.25155105071478], [-1.7855433613315905, 54.76238836624054], [-3.9031812914854873, 55.84060580646489]]]}}, {"type": "Feature", "properties": {"bin": "827a07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[46.44719640791619, -1.3136684078902399], [46.939938585558515, 0.20509182645195348], [45.86977547540202, 1.487837453230303], [44.28689428434573, 1.2749131152425968], [43.765274364448, -0.24795614215303202], [44.85506183561191, -1.554248989221206], [46.44719640791619, -1.3136684078902399]]]}}, {"type": "Feature", "properties": {"bin": "82208ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.80947411127423, 38.92173634594799], [73.08513110829821, 37.16574976160484], [75.11829754422453, 36.46321577902243], [76.94535091342905, 37.477284318316336], [76.78083489243026, 39.23939703043915], [74.67702184131929, 39.98284774466395], [72.80947411127423, 38.92173634594799]]]}}, {"type": "Feature", "properties": {"bin": "82559ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.205965437756916, 20.514307699601986], [-22.75892806868095, 19.56933521898721], [-22.64474356474964, 17.902725167363144], [-21.035077717360593, 17.181705178608077], [-19.51112287762693, 18.09329987490912], [-19.567746739996146, 19.758338710645457], [-21.205965437756916, 20.514307699601986]]]}}, {"type": "Feature", "properties": {"bin": "825447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-7.794022418669754, 13.699301124664801], [-9.251135128038426, 12.92166325673315], [-9.367549017070322, 11.435581249578398], [-8.069918148278395, 10.7462912331855], [-6.654608692813015, 11.503405132347194], [-6.495883896199433, 12.969730336077305], [-7.794022418669754, 13.699301124664801]]]}}, {"type": "Feature", "properties": {"bin": "826067fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[70.89822508399855, 5.062235631594696], [70.88924811258364, 6.687643147557417], [69.60253911676492, 7.5277646866054555], [68.35860139416786, 6.750388788384318], [68.38059943963685, 5.1593147999421705], [69.63381057288797, 4.311473809758376], [70.89822508399855, 5.062235631594696]]]}}, {"type": "Feature", "properties": {"bin": "82650ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.32598525819338, 3.267721155518443], [100.48279867647386, 5.043918034680121], [99.00561884910029, 6.061929363987142], [97.37304065193962, 5.289412273297665], [97.23206961536471, 3.506672345286478], [98.70755798166265, 2.5025276890360852], [100.32598525819338, 3.267721155518443]]]}}, {"type": "Feature", "properties": {"bin": "824f4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[144.6843894988152, 15.071456211059555], [144.36008222105062, 13.3628858273885], [145.73505728408045, 12.203097693364747], [147.42246432703843, 12.754155068239717], [147.74922130032868, 14.452474241134714], [146.38661497320422, 15.61036170754683], [144.6843894988152, 15.071456211059555]]]}}, {"type": "Feature", "properties": {"bin": "822edffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[136.97005651322786, 46.28395468965602], [137.01230194626575, 47.87799059734758], [134.76393627595752, 48.41801789173906], [132.96199772756114, 47.51079575918813], [133.43138197384727, 46.13763594995183], [135.18157054877662, 45.431106572472544], [136.97005651322786, 46.28395468965602]]]}}, {"type": "Feature", "properties": {"bin": "824b8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[123.80451765016892, 22.97077194146011], [123.54226869469618, 21.379153198161493], [124.90903454276271, 20.45624528545013], [126.5607815576436, 21.13746551009211], [126.83691808742559, 22.746553062244796], [125.44765857221233, 23.657241852280656], [123.80451765016892, 22.97077194146011]]]}}, {"type": "Feature", "properties": {"bin": "821807fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-11.464478383460659, 54.26248852552578], [-13.940607532856738, 53.61055766075581], [-14.00895215724318, 52.001373403173005], [-11.731413865282882, 51.05975209495003], [-9.362891292036801, 51.696862788869424], [-9.166993325133559, 53.28908444969495], [-11.464478383460659, 54.26248852552578]]]}}, {"type": "Feature", "properties": {"bin": "822caffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.05438577310583, 35.22985924555321], [45.95426696141751, 33.713928215160024], [47.8409287832181, 33.59038140224462], [48.961996849584274, 34.86417711463799], [48.114435741183804, 36.40491874790023], [46.10483518064214, 36.6195596910392], [45.05438577310583, 35.22985924555321]]]}}, {"type": "Feature", "properties": {"bin": "821167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[30.513875397115008, 67.45322298988307], [32.77511834605474, 66.36718727910217], [36.38224327730973, 66.70143616688567], [38.05103963309276, 68.15820461940665], [35.78097507978204, 69.30325543265089], [31.831280499087356, 68.92995788193981], [30.513875397115008, 67.45322298988307]]]}}, {"type": "Feature", "properties": {"bin": "82544ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.654608692813015, 11.503405132347194], [-8.069918148278395, 10.7462912331855], [-8.201402554173386, 9.317263995385268], [-6.957444601114244, 8.66419747538798], [-5.58264265299675, 9.401522016005323], [-5.41203547095337, 10.811137991239525], [-6.654608692813015, 11.503405132347194]]]}}, {"type": "Feature", "properties": {"bin": "8218dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.38569507731395, 44.49123495446823], [-18.488435954379657, 43.63378030772461], [-18.43942903424458, 41.87483011005883], [-16.387669396390542, 40.9845109305191], [-14.351337439052633, 41.82240604570132], [-14.301163761412027, 43.56902927923193], [-16.38569507731395, 44.49123495446823]]]}}, {"type": "Feature", "properties": {"bin": "824aaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[127.95321745134466, 20.176038965152888], [127.6733813746568, 18.52278152929221], [129.06793500100542, 17.514518910811443], [130.7588556108957, 18.16926573871834], [131.05091895530194, 19.835921608671914], [129.6401689057996, 20.83478770256814], [127.95321745134466, 20.176038965152888]]]}}, {"type": "Feature", "properties": {"bin": "82741ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-6.096063145794151, 1.403424289472709], [-6.9682279285302124, 0.4822612846177597], [-6.384788496428219, -0.6563254594597022], [-4.906172120825075, -0.8499475652488149], [-4.049256734701922, 0.10005961824174014], [-4.654773810329626, 1.2146892558706845], [-6.096063145794151, 1.403424289472709]]]}}, {"type": "Feature", "properties": {"bin": "82335ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[165.00961973823703, 29.3219748704367], [165.6742100468855, 31.015442711548175], [164.27523474023167, 32.36418421538919], [162.211212883488, 31.982389182360997], [161.6126493581132, 30.27451150085969], [163.01010907874655, 28.962107589001867], [165.00961973823703, 29.3219748704367]]]}}, {"type": "Feature", "properties": {"bin": "825a6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[163.55384717379985, 11.323188725876642], [164.07108480662677, 12.763907533936957], [162.91566501131913, 13.948395710977309], [161.24546528264565, 13.65234929773841], [160.7733897026288, 12.194726726168001], [161.9253489429625, 11.049339323254564], [163.55384717379985, 11.323188725876642]]]}}, {"type": "Feature", "properties": {"bin": "824b6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[133.76231271222144, 33.5154682243362], [133.45367950743437, 32.12930962110428], [134.9039824818955, 31.25985351902173], [136.6700546717489, 31.7846720328039], [136.69764123177848, 33.37879798624116], [135.21308771549002, 34.24906232192917], [133.76231271222144, 33.5154682243362]]]}}, {"type": "Feature", "properties": {"bin": "821447fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[136.3645533924403, 59.63246619231702], [136.85291509673226, 57.98586473288748], [139.80810700632685, 57.32190497999963], [142.48773900759858, 58.23555192165029], [142.32238799942485, 59.90350345714653], [139.14779395014713, 60.64107707213371], [136.3645533924403, 59.63246619231702]]]}}, {"type": "Feature", "properties": {"bin": "82606ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[68.38059943963685, 5.1593147999421705], [68.35860139416786, 6.750388788384318], [67.11996500533266, 7.565126205166661], [65.93712700182017, 6.798203328671883], [65.9709521554062, 5.242929409571695], [67.17608937876564, 4.419053965759559], [68.38059943963685, 5.1593147999421705]]]}}, {"type": "Feature", "properties": {"bin": "821507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.63726557219142, 57.658994463170124], [112.28905213793897, 56.296364046092975], [115.27087449964384, 56.233125655533925], [116.87271515160232, 57.54317504188187], [115.35213447407268, 58.99255609954018], [112.08048576449471, 59.04446657501834], [110.63726557219142, 57.658994463170124]]]}}, {"type": "Feature", "properties": {"bin": "824b97fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.04020323720252, 20.844479321420156], [118.80300158646772, 19.252194904738655], [120.10960172007171, 18.354106406676436], [121.68154628798078, 19.062431348556302], [121.93365313479985, 20.678136595004702], [120.59902508676929, 21.562234593566913], [119.04020323720252, 20.844479321420156]]]}}, {"type": "Feature", "properties": {"bin": "824157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[109.99511027072631, 20.836910858516074], [110.20576673111823, 22.49963239861477], [108.7503249292423, 23.56572371492086], [107.06866932190532, 22.96503060101302], [106.87079927350013, 21.285626954004616], [108.34130759634914, 20.22323538180108], [109.99511027072631, 20.836910858516074]]]}}, {"type": "Feature", "properties": {"bin": "82420ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[64.320097378687, 27.347646726674125], [64.74597440458675, 25.78364523775016], [66.51925125655274, 25.262825293452245], [67.93150725400422, 26.28136588426531], [67.57583239810288, 27.86931475436287], [65.73597230286956, 28.415732800952867], [64.320097378687, 27.347646726674125]]]}}, {"type": "Feature", "properties": {"bin": "82198ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.987191465997125, 56.88329845233644], [-21.536793665272608, 56.10124011353575], [-21.388789544397927, 54.52817290726193], [-18.841171686388584, 53.740206752238315], [-16.378405826402158, 54.49624180191474], [-16.376938456712956, 56.06460393499809], [-18.987191465997125, 56.88329845233644]]]}}, {"type": "Feature", "properties": {"bin": "821067fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[48.07845962204306, 67.18917865651584], [49.747703637529234, 65.81997609126962], [53.666980906005925, 65.73440250373991], [56.29150634861458, 67.01522257983876], [54.84764506924277, 68.44084132638578], [50.52420090534295, 68.52987901066768], [48.07845962204306, 67.18917865651584]]]}}, {"type": "Feature", "properties": {"bin": "820a77fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[86.64520819657905, 68.6908704290193], [90.37223427117857, 67.6837928863324], [94.53767024643494, 68.2365930099298], [95.41691689117123, 69.89655021163419], [91.46555099668309, 71.02572941738775], [86.83977166360623, 70.36369489496148], [86.64520819657905, 68.6908704290193]]]}}, {"type": "Feature", "properties": {"bin": "824e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[155.44399246654197, 21.1452026407526], [155.85581058699807, 22.758164292722196], [154.50170114914178, 23.95952354453145], [152.75863213820998, 23.51060310201209], [152.40802678383096, 21.897410213007042], [153.73868120645855, 20.732468648166584], [155.44399246654197, 21.1452026407526]]]}}, {"type": "Feature", "properties": {"bin": "823d0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[80.90372472240541, 34.1970472677487], [80.9474490076034, 32.49697262167634], [82.7168362562851, 31.717351794521772], [84.47960117594232, 32.589943336700415], [84.5304401352957, 34.27878672452731], [82.72452222645332, 35.10762401359851], [80.90372472240541, 34.1970472677487]]]}}, {"type": "Feature", "properties": {"bin": "8252dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.01262895906966, 10.887602149584175], [44.19826616870121, 9.509409047334033], [45.24040446001356, 8.292129888631607], [46.75971038178171, 8.430561787844455], [47.228355151174995, 9.762691218281264], [46.5456352988265, 11.002751279113436], [45.01262895906966, 10.887602149584175]]]}}, {"type": "Feature", "properties": {"bin": "826387fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[51.80448530162421, 12.603201514978352], [50.970254151885335, 11.291323182868313], [51.56003017732451, 10.077544166006845], [52.943133386720106, 10.166154494710122], [53.7647619646262, 11.439627581859163], [53.216307542439, 12.662171326825183], [51.80448530162421, 12.603201514978352]]]}}, {"type": "Feature", "properties": {"bin": "8218cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.187655377121208, 44.34367553397141], [-14.301163761412027, 43.56902927923193], [-14.351337439052633, 41.82240604570132], [-12.38412687299043, 40.869133191665526], [-10.347941440399472, 41.63003018212926], [-10.20321881864728, 43.35694709497956], [-12.187655377121208, 44.34367553397141]]]}}, {"type": "Feature", "properties": {"bin": "828527fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[57.51698034770715, 3.3672716245104053], [57.15890102143649, 1.9934841679350606], [58.27151982812965, 1.1400116362854769], [59.75448759681556, 1.6912650463504575], [60.091005080534565, 3.086198656817789], [58.9668320668832, 3.9090460692490985], [57.51698034770715, 3.3672716245104053]]]}}, {"type": "Feature", "properties": {"bin": "824177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[111.20511321774173, 18.07704074779854], [111.41843257220631, 19.760707923829838], [109.99511027072631, 20.836910858516074], [108.34130759634914, 20.22323538180108], [108.1397915225587, 18.52000649698165], [109.57978924961904, 17.449720299155228], [111.20511321774173, 18.07704074779854]]]}}, {"type": "Feature", "properties": {"bin": "82331ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.42022403972663, 29.031544041383512], [175.26146031238733, 30.666435006818297], [174.02804175387834, 32.1119243692579], [171.92388426141025, 31.889318629341606], [171.1299066342305, 30.224678744640975], [172.3902149386298, 28.81214236551594], [174.42022403972663, 29.031544041383512]]]}}, {"type": "Feature", "properties": {"bin": "8208b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[12.360313328340787, 59.44495728759658], [11.555977692900706, 58.130531165851394], [13.543635944035909, 57.232113806596516], [16.360929516312407, 57.62270326690216], [17.286200031965574, 58.92634320829851], [15.277419395430217, 59.85120470154142], [12.360313328340787, 59.44495728759658]]]}}, {"type": "Feature", "properties": {"bin": "82241ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[100.95470627909016, 43.34627770091953], [100.4383392204784, 41.70703269529509], [101.93382777845231, 40.615119547681495], [103.91581345508436, 41.116231930613374], [104.51059966118586, 42.706893594922064], [103.04909924039622, 43.84513423442955], [100.95470627909016, 43.34627770091953]]]}}, {"type": "Feature", "properties": {"bin": "824af7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[131.05091895530194, 19.835921608671914], [130.7588556108957, 18.16926573871834], [132.16877081066232, 17.126908704284467], [133.8822509367034, 17.759599097164003], [134.18507592423248, 19.435671802631244], [132.76405727253234, 20.470041905050355], [131.05091895530194, 19.835921608671914]]]}}, {"type": "Feature", "properties": {"bin": "82404ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[99.02910120926438, 24.7119281057643], [99.18988329590645, 26.375730690274633], [97.60075337177743, 27.33058812168506], [95.85513749449005, 26.622305043395016], [95.7130076996953, 24.957100652735345], [97.29754054563347, 24.001033222705775], [99.02910120926438, 24.7119281057643]]]}}, {"type": "Feature", "properties": {"bin": "8230e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[125.11187681160854, 37.90332441600769], [124.8359957920349, 36.64293584360804], [126.25334861257146, 35.97473569616671], [127.9686387593953, 36.575490162825574], [127.80994135679161, 38.07786791628785], [126.34694261516331, 38.73874617524624], [125.11187681160854, 37.90332441600769]]]}}, {"type": "Feature", "properties": {"bin": "827727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[151.73979456715938, 10.950552595281254], [151.41404176583495, 9.250322178378966], [152.70919576787776, 8.086549126803146], [154.3083888181753, 8.621215172764751], [154.63225010140187, 10.300402469437458], [153.35922559786337, 11.466145661026696], [151.73979456715938, 10.950552595281254]]]}}, {"type": "Feature", "properties": {"bin": "827517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-5.58264265299675, 9.401522016005323], [-6.957444601114244, 8.66419747538798], [-7.101993445416778, 7.292742847021743], [-5.908652939747203, 6.676866573680896], [-4.572995371627303, 7.395109809160056], [-4.392258230519247, 8.747781221106653], [-5.58264265299675, 9.401522016005323]]]}}, {"type": "Feature", "properties": {"bin": "820157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.056823801067942, 75.77008100847956], [23.469373219341843, 76.53550099989292], [23.094778200479343, 78.07801039757999], [15.675393846113211, 78.79915742230948], [9.902098185657369, 77.83462153176359], [11.809078968821634, 76.36649220549111], [18.056823801067942, 75.77008100847956]]]}}, {"type": "Feature", "properties": {"bin": "822d27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[29.387082408127053, 44.10776609123569], [28.419295722433173, 42.59312536112824], [29.788911025548757, 41.19512137576951], [32.08615225875723, 41.29694332763067], [33.092042340502196, 42.790722675411104], [31.765884250922184, 44.20368148246594], [29.387082408127053, 44.10776609123569]]]}}, {"type": "Feature", "properties": {"bin": "8209affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.012620898449943, 63.32706132801839], [1.104046136969399, 63.13895537587258], [0.5480202135218178, 61.828864713593795], [2.7675277915407426, 60.73321011494055], [5.479068693190383, 60.92198553471913], [6.159095939923656, 62.20500536598249], [4.012620898449943, 63.32706132801839]]]}}, {"type": "Feature", "properties": {"bin": "827267fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[143.71509140820243, 9.893324884711014], [143.39443496211936, 8.138603366057211], [144.76610778205162, 6.9740074974499136], [146.4482935753851, 7.56237733150415], [146.77198432356215, 9.30602268133257], [145.410940917621, 10.472716898667052], [143.71509140820243, 9.893324884711014]]]}}, {"type": "Feature", "properties": {"bin": "823237fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[174.02804175387834, 32.1119243692579], [174.89355477166853, 33.75764213456774], [173.60587278331644, 35.209234806190445], [171.42221952831454, 34.982928074805315], [170.60864237609607, 33.30902587127847], [171.92388426141025, 31.889318629341606], [174.02804175387834, 32.1119243692579]]]}}, {"type": "Feature", "properties": {"bin": "821427fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[119.99347924729226, 57.36869376975949], [121.23304614895842, 55.88880372076997], [124.18141412031616, 55.608285290548395], [126.14990855407999, 56.78824819072855], [125.11453973539015, 58.337036432424], [121.89019303773591, 58.63844048366853], [119.99347924729226, 57.36869376975949]]]}}, {"type": "Feature", "properties": {"bin": "826107fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[81.958562691439, 4.522993064389644], [82.012203165609, 6.260371675681467], [80.56697253067621, 7.196938593222833], [79.0959876016423, 6.395834664879012], [79.05932466686099, 4.681532948717339], [80.47683384971262, 3.7450437470058175], [81.958562691439, 4.522993064389644]]]}}, {"type": "Feature", "properties": {"bin": "823947fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.2168706600543617, 41.967575126995584], [0.8372982571856167, 40.33535273335422], [2.4096906393984865, 39.323587881774785], [4.408495454619831, 39.93195935896595], [4.868332115011663, 41.58031489516634], [3.2493495966936545, 42.60479220712697], [1.2168706600543617, 41.967575126995584]]]}}, {"type": "Feature", "properties": {"bin": "824f5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[146.71402527107543, 17.28158613922535], [146.38661497320422, 15.61036170754683], [147.74922130032868, 14.452474241134714], [149.42409546227665, 14.969501978564315], [149.7526638100153, 16.629033848711074], [148.40568576193812, 17.78359946080229], [146.71402527107543, 17.28158613922535]]]}}, {"type": "Feature", "properties": {"bin": "8214f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[131.30640648994407, 51.820418717345376], [131.9046181506924, 50.35326796982147], [134.31722549534967, 49.855479083883395], [136.28778731251637, 50.77962462967674], [135.87637685881467, 52.280198800324484], [133.30160318508896, 52.825788696022364], [131.30640648994407, 51.820418717345376]]]}}, {"type": "Feature", "properties": {"bin": "823f07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.884717233845183, 36.66836993169907], [16.203432101296617, 34.98381016816727], [17.635425294848805, 33.667670279159765], [19.750262775639456, 34.01378023726715], [20.49110741061133, 35.69002151151905], [19.059614047576503, 37.02901921647205], [16.884717233845183, 36.66836993169907]]]}}, {"type": "Feature", "properties": {"bin": "8232effffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[162.64003640527375, 38.44296641219322], [163.3273563200653, 40.152445894050416], [161.72693351746074, 41.44200540170416], [159.44828133660147, 40.9892869279484], [158.84760391998597, 39.27230382066778], [160.4365789673928, 38.01466353048682], [162.64003640527375, 38.44296641219322]]]}}, {"type": "Feature", "properties": {"bin": "82176ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.09689991728033, 64.75692907396628], [173.24035877247292, 63.22999151822572], [175.21460124064004, 61.82981680247971], [178.83711560806952, 61.86776664207705], [-179.11117538442045, 63.29242332756059], [179.15613950339954, 64.7804865813286], [175.09689991728033, 64.75692907396628]]]}}, {"type": "Feature", "properties": {"bin": "824ab7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[123.02355515221002, 18.127070267319834], [122.7670691389057, 16.471188839462545], [124.11552056566204, 15.488092524962621], [125.74386789284029, 16.171868435032273], [126.01426412677232, 17.847756711055307], [124.64261620566455, 18.82008610796306], [123.02355515221002, 18.127070267319834]]]}}, {"type": "Feature", "properties": {"bin": "826287fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.437252996571566, 4.172487876554696], [56.79459655765517, 5.489665649401459], [55.84008860955652, 6.66108112729045], [54.50172847976733, 6.539629572256595], [54.116539278228814, 5.215027607862709], [55.09760037506581, 4.018825289271461], [56.437252996571566, 4.172487876554696]]]}}, {"type": "Feature", "properties": {"bin": "82754ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.245698051007282, -1.667852447043259], [1.9211969045935868, -0.2548735255288649], [1.2017635601567977, 0.936163764598368], [-0.1602034369452549, 0.7197982113703898], [-0.8199508788179312, -0.6593876817348934], [-0.13368891259164495, -1.8554926185476668], [1.245698051007282, -1.667852447043259]]]}}, {"type": "Feature", "properties": {"bin": "82395ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[2.4096906393984865, 39.323587881774785], [2.015254649789183, 37.66435763083123], [3.543589356987794, 36.59789814478598], [5.507969569355888, 37.17634170043516], [5.9780551779606474, 38.85056389706335], [4.408495454619831, 39.93195935896595], [2.4096906393984865, 39.323587881774785]]]}}, {"type": "Feature", "properties": {"bin": "82116ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[35.78097507978204, 69.30325543265089], [38.05103963309276, 68.15820461940665], [42.08394372307629, 68.38209527813017], [44.25792686834893, 69.77487316361321], [41.09749729154042, 70.96471952348472], [36.57889659541587, 70.68682709472333], [35.78097507978204, 69.30325543265089]]]}}, {"type": "Feature", "properties": {"bin": "821f9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[6.371338560692325, 46.417016655689096], [5.8484769011283495, 44.82546981220477], [7.509948481928903, 43.78660935394501], [9.73194113849839, 44.323804866147476], [10.343212804239652, 45.92192778359743], [8.645314229897538, 46.977068439610534], [6.371338560692325, 46.417016655689096]]]}}, {"type": "Feature", "properties": {"bin": "8224c7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[105.27754465688392, 40.01005137836429], [104.69435715402071, 38.448644740611016], [105.96804858978469, 37.37997452587736], [107.78678017434974, 37.830134700031124], [108.4262840018367, 39.34081394022977], [107.19414631631761, 40.45179124238256], [105.27754465688392, 40.01005137836429]]]}}, {"type": "Feature", "properties": {"bin": "820ac7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[103.56728434067718, 64.518640601611], [106.01845341595069, 63.18664442873612], [109.77665935770398, 63.30546259246109], [111.51263935144166, 64.79296775799982], [109.18193165810936, 66.23835718068821], [104.95929291242936, 66.0797905343214], [103.56728434067718, 64.518640601611]]]}}, {"type": "Feature", "properties": {"bin": "826027fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.6831884370156, 7.309851143729302], [77.71212223171376, 9.021479879666195], [76.30569037447948, 9.906049181927763], [74.90215741903009, 9.084512524970027], [74.88924352960129, 7.401735391994403], [76.26408541439848, 6.511600732441482], [77.6831884370156, 7.309851143729302]]]}}, {"type": "Feature", "properties": {"bin": "8243a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.26654354996588, 24.706441323747846], [52.90670252272589, 23.282695498718052], [54.59321578040126, 22.914904651579405], [55.70727295656769, 23.96705625925079], [55.109961767811754, 25.430799341940986], [53.353615700397675, 25.80249846629109], [52.26654354996588, 24.706441323747846]]]}}, {"type": "Feature", "properties": {"bin": "824ae7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[133.06438989314756, 22.10381705761048], [132.76405727253234, 20.470041905050355], [134.18507592423248, 19.435671802631244], [135.91455001866788, 20.043634559104234], [136.22464605289488, 21.684143266682888], [134.7959426280902, 22.71039616236627], [133.06438989314756, 22.10381705761048]]]}}, {"type": "Feature", "properties": {"bin": "822e2ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[143.2524692645846, 36.19269249373678], [143.43958045241362, 37.868876909472185], [141.80965654881365, 38.82570130635364], [140.0551792737878, 38.09066616899645], [139.94821305468562, 36.44177765047696], [141.5164720050773, 35.500079204200794], [143.2524692645846, 36.19269249373678]]]}}, {"type": "Feature", "properties": {"bin": "823e4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[34.28261947136845, 27.680604531895785], [33.408066112926264, 26.083575953551144], [34.479715709621956, 24.614779035543457], [36.38757584764918, 24.72567602275491], [37.27915112513713, 26.290576575165524], [36.247718333323576, 27.77653077072419], [34.28261947136845, 27.680604531895785]]]}}, {"type": "Feature", "properties": {"bin": "82099ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[7.438464343438979, 59.76718020289119], [6.766112799653783, 58.44709614018101], [8.799628381983899, 57.64025558472873], [11.555977692900706, 58.130531165851394], [12.360313328340787, 59.44495728759658], [10.279089080546552, 60.275949400006596], [7.438464343438979, 59.76718020289119]]]}}, {"type": "Feature", "properties": {"bin": "82144ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[142.32238799942485, 59.90350345714653], [142.48773900759858, 58.23555192165029], [145.33216677893589, 57.44191113404762], [148.1776454692107, 58.23443896628216], [148.3454600145805, 59.9023253923835], [145.33465398425662, 60.78265799243752], [142.32238799942485, 59.90350345714653]]]}}, {"type": "Feature", "properties": {"bin": "8255b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.487400930124174, 25.69485702884283], [-23.127994021036667, 24.717289317668993], [-23.00030278211108, 22.97915346313468], [-21.29624126769292, 22.21946333422137], [-19.687464668200867, 23.164690007884964], [-19.75080967850516, 24.900975863614626], [-21.487400930124174, 25.69485702884283]]]}}, {"type": "Feature", "properties": {"bin": "826b17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[18.954654656317093, 13.593711088140337], [18.37131288344698, 12.0234431609871], [19.51577576383811, 10.751916722743852], [21.240864372039603, 11.01716618355836], [21.861183954394107, 12.56846389905936], [20.720608455377985, 13.873962650663321], [18.954654656317093, 13.593711088140337]]]}}, {"type": "Feature", "properties": {"bin": "82855ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[66.37043305706193, 0.15815048527172101], [66.08958069473275, -1.3300762483231676], [67.36290022706116, -2.267021769530763], [68.9157220212863, -1.6840814660751022], [69.16588998913112, -0.18253457838412598], [67.89448832966885, 0.7233417311270236], [66.37043305706193, 0.15815048527172101]]]}}, {"type": "Feature", "properties": {"bin": "82096ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[11.990167276622653, 71.26523337833441], [15.568828380671018, 72.0844427245379], [14.55184502811682, 73.4874564977175], [9.200586264352173, 73.99667479266351], [5.614085386080716, 73.03193633522018], [7.329111175793021, 71.71063235482194], [11.990167276622653, 71.26523337833441]]]}}, {"type": "Feature", "properties": {"bin": "8277a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[148.80307138553923, 3.495611193583319], [148.48089503708562, 1.7522051627212882], [149.796574950402, 0.6173843220866748], [151.41694688393682, 1.217580256349525], [151.7389862436277, 2.940621928583292], [150.44123001544202, 4.084015752678349], [148.80307138553923, 3.495611193583319]]]}}, {"type": "Feature", "properties": {"bin": "82142ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[125.11453973539015, 58.337036432424], [126.14990855407999, 56.78824819072855], [129.15177163384146, 56.38611220833988], [131.37779976641568, 57.49651172820108], [130.59502952582227, 59.102261478822314], [127.318426179508, 59.54334767165104], [125.11453973539015, 58.337036432424]]]}}, {"type": "Feature", "properties": {"bin": "827507fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-4.392258230519222, 8.747781221106628], [-4.572995371627281, 7.395109809160047], [-3.4710946837530763, 6.3576532880413], [-2.159048476284375, 6.645580466394948], [-1.9395631182409523, 8.007193661487852], [-3.071080368716595, 9.072581251751163], [-4.392258230519222, 8.747781221106628]]]}}, {"type": "Feature", "properties": {"bin": "822107fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.081496256536084, 50.41638321003273], [58.895420623222805, 48.72395874324332], [61.491058342437576, 48.30613144690534], [63.423695260878816, 49.56862966981763], [62.7422077313002, 51.29807419595648], [59.98872875182493, 51.72910040990983], [58.081496256536084, 50.41638321003273]]]}}, {"type": "Feature", "properties": {"bin": "827ec7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[172.7165679999427, 1.627782179992269], [173.31118181449287, 2.823303681456528], [172.38449389125012, 3.8458282604840193], [170.84989172174681, 3.6405341607256134], [170.282389328379, 2.420706885673436], [171.22136823504343, 1.4302139367058884], [172.7165679999427, 1.627782179992269]]]}}, {"type": "Feature", "properties": {"bin": "8218d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-18.59397660055241, 47.0984334967306], [-20.76090845706983, 46.218925544889224], [-20.653899802599728, 44.48330412015416], [-18.488435954379657, 43.63378030772461], [-16.38569507731395, 44.49123495446823], [-16.384633284552198, 46.21899145965219], [-18.59397660055241, 47.0984334967306]]]}}, {"type": "Feature", "properties": {"bin": "823d37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[73.59261768799648, 33.70575303795421], [73.82669212441867, 32.0075993471152], [75.69531861398443, 31.32618089536632], [77.38738896562074, 32.30294528961664], [77.24793995663357, 34.00617617179965], [75.32104374224942, 34.72897810074542], [73.59261768799648, 33.70575303795421]]]}}, {"type": "Feature", "properties": {"bin": "82756ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[3.3406661153006687, -0.045100606795108945], [4.022089806282807, 1.382296820377439], [3.2700512349330917, 2.5657311513076166], [1.868917217650497, 2.3298633934462813], [1.2017635601567977, 0.936163764598368], [1.9211969045935868, -0.2548735255288649], [3.3406661153006687, -0.045100606795108945]]]}}, {"type": "Feature", "properties": {"bin": "8231affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.49000040590848, 42.08248625897494], [115.67300090962081, 40.681884550641115], [116.60797610224273, 39.554438522989486], [118.29719447249006, 39.800881986666866], [119.13690952882241, 41.14827082786993], [118.26752036947892, 42.301514251139466], [116.49000040590848, 42.08248625897494]]]}}, {"type": "Feature", "properties": {"bin": "82402ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[108.7503249292423, 23.56572371492086], [108.95787510757253, 25.20012297307433], [107.47046185281282, 26.248068432517627], [105.76174970861732, 25.65935562830068], [105.56799984546763, 24.011140885133813], [107.06866932190532, 22.96503060101302], [108.7503249292423, 23.56572371492086]]]}}, {"type": "Feature", "properties": {"bin": "824037fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.70376749169584, 25.19913318671653], [113.93133125983357, 26.766211545860724], [112.51532820378297, 27.835285494517798], [110.84999971671714, 27.33619031326379], [110.63318785440408, 25.75133231072355], [112.07042198299736, 24.683010654594447], [113.70376749169584, 25.19913318671653]]]}}, {"type": "Feature", "properties": {"bin": "822027fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[66.0482164226795, 49.048729628706965], [66.59694488989409, 47.28813432166089], [69.08841820852274, 46.69211411024017], [71.15389202471005, 47.82818798168813], [70.75404161615583, 49.60964779117549], [68.1356304547995, 50.235864087332054], [66.0482164226795, 49.048729628706965]]]}}, {"type": "Feature", "properties": {"bin": "821727fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[148.99174373245955, 65.05302519337587], [148.74778443083505, 63.31420979873877], [151.91700685342232, 62.335400343203396], [155.4739636475124, 62.99056862329925], [156.18070886491097, 64.69968546511701], [152.8815528504696, 65.7896179431818], [148.99174373245955, 65.05302519337587]]]}}, {"type": "Feature", "properties": {"bin": "823d27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[75.11829754422453, 36.46321577902243], [75.32104374224942, 34.72897810074542], [77.24793995663357, 34.00617617179965], [79.0299761242124, 34.97529051965556], [78.93065472882462, 36.710673546798674], [76.94535091342905, 37.477284318316336], [75.11829754422453, 36.46321577902243]]]}}, {"type": "Feature", "properties": {"bin": "822c0ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.33379907578726, 41.0165261971704], [46.30258268055135, 39.48450594666971], [48.41583299887398, 39.286073070842576], [49.67064440002375, 40.63612336794767], [48.749596276557455, 42.22096583203444], [46.52152478353462, 42.40250986151093], [45.33379907578726, 41.0165261971704]]]}}, {"type": "Feature", "properties": {"bin": "82432ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[53.672240759796885, 32.69941968829514], [54.36803088840162, 31.133168085520865], [56.281951696953435, 30.753862489747686], [57.58625773283634, 31.937025252522204], [56.94985342520008, 33.5460493316818], [54.946698623666826, 33.929367151577324], [53.672240759796885, 32.69941968829514]]]}}, {"type": "Feature", "properties": {"bin": "82002ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[23.094778200479343, 78.07801039757999], [30.105633384438118, 78.74785370461174], [30.788378972670518, 80.33974745515532], [21.915963819844126, 81.24854113440082], [13.880064418613259, 80.34595244233695], [15.675393846113211, 78.79915742230948], [23.094778200479343, 78.07801039757999]]]}}, {"type": "Feature", "properties": {"bin": "823c6ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[94.96881107917741, 33.91688328380215], [94.66113729594254, 32.3043363707435], [96.29158273471053, 31.43852798992928], [98.06882907366122, 32.09845008104616], [98.22850425577052, 33.621069780683506], [96.79363542040774, 34.58273738134444], [94.96881107917741, 33.91688328380215]]]}}, {"type": "Feature", "properties": {"bin": "821787fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[147.89212944698653, 54.985759470582124], [147.769679104945, 53.40855322292734], [150.0878441630784, 52.560388351898474], [152.6143488993222, 53.210024078140854], [152.97439270951853, 54.771063034398715], [150.57390528947013, 55.70220945507606], [147.89212944698653, 54.985759470582124]]]}}, {"type": "Feature", "properties": {"bin": "823107fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.2346140092533, 44.86000968231624], [119.15090063431394, 43.66368234854235], [121.21023674748169, 43.4493138584932], [122.4804653993422, 44.42177182649497], [121.65093475635452, 45.6699409867376], [119.45888852672456, 45.894254653289174], [118.2346140092533, 44.86000968231624]]]}}, {"type": "Feature", "properties": {"bin": "824167fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[109.3750788522398, 15.730668207670497], [109.57978924961904, 17.449720299155228], [108.1397915225587, 18.52000649698165], [106.48098418730204, 17.863327152693813], [106.28898914752854, 16.12598939393746], [107.74262433198103, 15.063301114735607], [109.3750788522398, 15.730668207670497]]]}}, {"type": "Feature", "properties": {"bin": "828cdffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[99.8651411555984, -1.975921533508648], [100.01717887148773, -0.2453348702965925], [98.56085942567567, 0.7417954439430038], [96.95459010033167, -0.019087365036244645], [96.81803796648137, -1.7557835553234635], [98.27201507322712, -2.7259823537442283], [99.8651411555984, -1.975921533508648]]]}}, {"type": "Feature", "properties": {"bin": "824097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.1006492239189, 34.145029897677574], [115.34096073223206, 35.52242379555108], [113.90121573302835, 36.538080540779866], [112.19581072885283, 36.17883855958396], [111.9660359814451, 34.78945542299374], [113.43054169515192, 33.77089612652203], [115.1006492239189, 34.145029897677574]]]}}, {"type": "Feature", "properties": {"bin": "82226ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[179.51721968152015, 44.820308274700515], [-179.3535432314775, 46.33359428000857], [179.26927134530507, 47.79700131917362], [176.69765473278346, 47.723516246519075], [175.6209968167824, 46.180014657090155], [177.05849152737355, 44.74014716066806], [179.51721968152015, 44.820308274700515]]]}}, {"type": "Feature", "properties": {"bin": "821087fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[46.152940295149286, 52.85701284573281], [47.34601250977586, 51.32784663123582], [50.0068432850993, 51.19651327303004], [51.649131930343415, 52.60893305131945], [50.540162201306025, 54.190111178839715], [47.69571850918254, 54.306702731626594], [46.152940295149286, 52.85701284573281]]]}}, {"type": "Feature", "properties": {"bin": "82534ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[50.64760846071287, 24.785413840854247], [49.70750466598524, 23.403457452057452], [50.400094268547306, 21.979118809782555], [51.98103574818333, 21.936731626317698], [52.906702522725844, 23.282695498718034], [52.26654354996584, 24.706441323747846], [50.64760846071287, 24.785413840854247]]]}}, {"type": "Feature", "properties": {"bin": "8264e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[93.10703794740307, 11.914265400633866], [93.22851312177364, 13.708575981512869], [91.68927751752527, 14.69414235790286], [90.04264093796, 13.882373413972683], [89.93964737536987, 12.094890519286077], [91.464698892715, 11.11188905936001], [93.10703794740307, 11.914265400633866]]]}}, {"type": "Feature", "properties": {"bin": "821f67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.14428198422671, 58.2092207165899], [21.114076381480267, 56.92073410282902], [22.9310531198817, 55.84256115863507], [25.75273650724686, 56.02789907359998], [26.86847148375058, 57.29788025768429], [25.082722326707877, 58.40154487035269], [22.14428198422671, 58.2092207165899]]]}}, {"type": "Feature", "properties": {"bin": "8200dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[92.65544877532724, 84.24413301148068], [103.94443637143779, 83.03084121148757], [118.5766060390223, 83.15405442466334], [129.0292792305364, 84.5408338462023], [121.81605021570019, 86.18578345520432], [96.2081078288357, 85.97836914698948], [92.65544877532724, 84.24413301148068]]]}}, {"type": "Feature", "properties": {"bin": "82530ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.90660193223469, 26.405538346477687], [41.97462737176898, 24.910712313479486], [42.85686218030853, 23.44263921006273], [44.62177586579161, 23.46115311638336], [45.552414509990655, 24.919828712557948], [44.72079236996927, 26.3956657402366], [42.90660193223469, 26.405538346477687]]]}}, {"type": "Feature", "properties": {"bin": "82215ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.61906460378023, 52.48327868250763], [72.97576825988995, 50.70878190211797], [75.55012851642559, 49.975877206192976], [77.87845951220683, 50.97730661218649], [77.70272630085074, 52.757072098664345], [75.0155927603138, 53.532331684395615], [72.61906460378023, 52.48327868250763]]]}}, {"type": "Feature", "properties": {"bin": "8252e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.21202480676731, 16.32641051881021], [44.354803391598516, 14.896546144002576], [45.10984721920367, 13.570617518145399], [46.67969818348164, 13.661152167148341], [47.532283460277945, 15.051528661327882], [46.820519270069106, 16.390229325542492], [45.21202480676731, 16.32641051881021]]]}}, {"type": "Feature", "properties": {"bin": "8209a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[0.5480202135218178, 61.828864713593795], [-2.2975260876218306, 61.54550957788075], [-2.7356231170279086, 60.17050935552437], [-0.46713246181046286, 59.10359393295083], [2.1982160405751507, 59.38388648698395], [2.7675277915407426, 60.73321011494055], [0.5480202135218178, 61.828864713593795]]]}}, {"type": "Feature", "properties": {"bin": "823457fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.803961465610985, 31.02620792692692], [-23.54251737908868, 30.029487035562912], [-23.398786640664905, 28.24562671417639], [-21.58870741439349, 27.45936036539565], [-19.885175001331245, 28.425520844846652], [-19.956511299083022, 30.20750468846709], [-21.803961465610985, 31.02620792692692]]]}}, {"type": "Feature", "properties": {"bin": "825587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-19.687464668200867, 23.164690007884964], [-21.29624126769292, 22.21946333422137], [-21.205965437756916, 20.514307699601986], [-19.567746739996146, 19.758338710645457], [-17.992762466160794, 20.672196772789086], [-18.022267576148227, 22.372442159798524], [-19.687464668200867, 23.164690007884964]]]}}, {"type": "Feature", "properties": {"bin": "825517fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-14.715050116074213, 25.90030374026243], [-16.394662810970292, 25.007863044517464], [-16.395292355187806, 23.280106473767372], [-14.779224893207182, 22.458857233680753], [-13.144989535729147, 23.326587938836802], [-13.082020177497345, 25.039429603403317], [-14.715050116074213, 25.90030374026243]]]}}, {"type": "Feature", "properties": {"bin": "82776ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[161.9253489429625, 11.049339323254529], [161.61262603935333, 9.457960087027615], [162.74401328894643, 8.33033444648589], [164.15767678200746, 8.79269086420231], [164.67056230846524, 10.175448079467836], [163.55384717379985, 11.323188725876642], [161.9253489429625, 11.049339323254529]]]}}, {"type": "Feature", "properties": {"bin": "82412ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[114.18047136836357, 17.598420680749204], [114.40365917669388, 19.25886502979531], [113.033299903374, 20.343332432142883], [111.41843257220631, 19.760707923829838], [111.20511321774173, 18.07704074779854], [112.59630239596234, 16.99902076413141], [114.18047136836357, 17.598420680749204]]]}}, {"type": "Feature", "properties": {"bin": "8260e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.18738034501416, 12.432614611561958], [72.18524935168644, 14.083697371265819], [70.84287842070998, 14.861067793744484], [69.53795687362707, 14.001401643987554], [69.55436423365215, 12.384286158524523], [70.86172974036968, 11.593032005402348], [72.18738034501416, 12.432614611561958]]]}}, {"type": "Feature", "properties": {"bin": "821f37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[5.52364654929031, 55.706768465152265], [4.948742151508347, 54.28828669322918], [6.848228907047912, 53.43156035343158], [9.374530816292092, 53.97551370235173], [10.065692337418177, 55.394878703545615], [8.115982248879545, 56.27047063504287], [5.52364654929031, 55.706768465152265]]]}}, {"type": "Feature", "properties": {"bin": "8260cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[68.24505991929868, 14.749233784080905], [68.22161452817798, 16.340297875401987], [66.94438266788374, 17.041704534176425], [65.72669976466062, 16.170389213771358], [65.76268883190508, 14.615138565636405], [67.004149704953, 13.895664424175132], [68.24505991929868, 14.749233784080905]]]}}, {"type": "Feature", "properties": {"bin": "826047fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.60253911676492, 7.5277646866054555], [69.58665255798411, 9.144882676294474], [68.31390631661893, 9.9486818945021], [67.09146394993576, 9.14655571978705], [67.11996500533266, 7.565126205166661], [68.35860139416786, 6.750388788384318], [69.60253911676492, 7.5277646866054555]]]}}, {"type": "Feature", "properties": {"bin": "82019ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.229871936333964, 72.37448219090822], [63.503066128473, 72.09256483244164], [67.04817195975174, 73.26746640072778], [65.1127740719562, 74.86647343694074], [58.812028454651305, 75.1642904738594], [55.592062051403055, 73.8440432038365], [58.229871936333964, 72.37448219090822]]]}}, {"type": "Feature", "properties": {"bin": "827bb7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[56.04076373667954, -2.3041178869669134], [56.4209834691308, -0.8432313994062755], [55.32275032625971, 0.041451351015036095], [53.928811983299774, -0.17217745834263962], [53.52380457617435, -1.6263637306496332], [54.5425475329536, -2.853378693418653], [56.04076373667954, -2.3041178869669134]]]}}, {"type": "Feature", "properties": {"bin": "8242a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[59.6485427231173, 21.69339964405912], [60.13185329247822, 20.272918243601023], [61.77103645922409, 19.829375597176913], [62.986388322986876, 20.789742605484555], [62.55564329673681, 22.239202597375066], [60.85532320212389, 22.69992541759943], [59.6485427231173, 21.69339964405912]]]}}, {"type": "Feature", "properties": {"bin": "82854ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[68.15129713763096, 2.1675662435525287], [67.89448832966885, 0.7233417311270236], [69.16588998913112, -0.18253457838412598], [70.68986972642183, 0.3864613910864249], [70.9158946016402, 1.8414007243708574], [69.64920071846696, 2.717252413163618], [68.15129713763096, 2.1675662435525287]]]}}, {"type": "Feature", "properties": {"bin": "826867fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[122.25978394419953, 13.112603234471695], [122.00896247838831, 11.415519214823146], [123.3390850759855, 10.381451473270936], [124.94403226885608, 11.0525563750004], [125.2087603087871, 12.77134857878], [123.85482415801252, 13.797500809062363], [122.25978394419953, 13.112603234471695]]]}}, {"type": "Feature", "properties": {"bin": "82001ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[46.680722653744276, 79.52275623872615], [55.750771038582066, 79.5583306312711], [61.133683778117444, 80.94451687165039], [55.925484708362085, 82.50396355374559], [43.30849268187674, 82.39825283996296], [40.19373289402154, 80.81642289048322], [46.680722653744276, 79.52275623872615]]]}}, {"type": "Feature", "properties": {"bin": "8259affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-0.47047915784386257, 16.820062058483494], [-0.7351612054653583, 15.279832303298882], [0.4800430596855388, 14.157028398529341], [1.9905382774544373, 14.547282830266617], [2.302842809205857, 16.098688642959495], [1.0570071254543887, 17.249308733090295], [-0.47047915784386257, 16.820062058483494]]]}}, {"type": "Feature", "properties": {"bin": "8201a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[44.25792686834898, 69.77487316361324], [48.71358294536655, 69.8545098637882], [50.64277495851302, 71.17904271188118], [47.624968919876, 72.50689440331601], [42.47096601014355, 72.36661210566757], [41.09749729154042, 70.96471952348472], [44.25792686834898, 69.77487316361324]]]}}, {"type": "Feature", "properties": {"bin": "820967fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.333799759509659, 70.77147478219023], [7.329111175793021, 71.71063235482194], [5.614085386080716, 73.03193633522018], [0.32561035194326043, 73.31022368544393], [-1.9084430010595415, 71.90494045163956], [0.27113407636019593, 70.66929401337596], [4.333799759509659, 70.77147478219023]]]}}, {"type": "Feature", "properties": {"bin": "826aeffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[33.193025309898935, 1.2524972038451396], [33.814945033944454, 2.80265994839348], [32.73302899458755, 4.110029868021471], [31.028472857488882, 3.8891448861435705], [30.3880967444156, 2.3508402872747567], [31.469937027242487, 1.021248866915232], [33.193025309898935, 1.2524972038451396]]]}}, {"type": "Feature", "properties": {"bin": "825217fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[40.190863351304, 18.941140990838722], [39.33656917594966, 17.433882626869472], [40.214949198605, 16.05027003530367], [41.90720337427504, 16.156940798733775], [42.76521090809897, 17.62592852433609], [41.92847803544797, 19.026041560053464], [40.190863351304, 18.941140990838722]]]}}, {"type": "Feature", "properties": {"bin": "825537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-12.948554583750909, 28.514935780874872], [-14.681052541612365, 27.647052437792293], [-14.715050116074213, 25.90030374026243], [-13.082020177497345, 25.039429603403317], [-11.400658379594104, 25.886179643136675], [-11.301996450753812, 27.6141453017058], [-12.948554583750909, 28.514935780874872]]]}}, {"type": "Feature", "properties": {"bin": "8231b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[110.98113865629121, 41.21659856438631], [110.27034935303703, 39.73019055462676], [111.3792518372824, 38.62271186702195], [113.146437480174, 38.96657364537776], [113.89690793938219, 40.39961129392157], [112.84378816030141, 41.54150553872736], [110.98113865629121, 41.21659856438631]]]}}, {"type": "Feature", "properties": {"bin": "8225b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[84.90331509102782, 44.77202716129376], [84.83160149618469, 42.995448297242966], [86.83285457847107, 42.06798168950583], [88.93958789515892, 42.86622963459015], [89.13896666467946, 44.6199664965884], [87.10609716373756, 45.599757376967865], [84.90331509102782, 44.77202716129376]]]}}, {"type": "Feature", "properties": {"bin": "823f47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[27.05097710739706, 36.4583498026766], [26.195246251947374, 34.83135743754204], [27.494687087596816, 33.40029193226209], [29.62212976672187, 33.57752330529464], [30.51611605466937, 35.182951208422544], [29.24697030924795, 36.63290490648417], [27.05097710739706, 36.4583498026766]]]}}, {"type": "Feature", "properties": {"bin": "827b9ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.91578124016392, 1.0549590305746845], [53.32374573777976, 2.471963263897448], [52.31659244465762, 3.6927532541940136], [50.87607058865384, 3.5202962612332436], [50.43884720938579, 2.095272646421929], [51.47132702771398, 0.8502628917755757], [52.91578124016392, 1.0549590305746845]]]}}, {"type": "Feature", "properties": {"bin": "8241affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.66937099084352, 24.60027123385686], [116.90560185911875, 26.146703033861748], [115.54937000817873, 27.230124263966285], [113.93133125983357, 26.766211545860724], [113.70376749169584, 25.19913318671653], [115.08505540886446, 24.116355293606304], [116.66937099084352, 24.60027123385686]]]}}, {"type": "Feature", "properties": {"bin": "8207a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.023350332015482, 77.08353021671479], [-13.578593545917547, 78.27816184803088], [-20.30919570668708, 77.80316131016781], [-21.165238931777616, 76.1878353494321], [-16.53126506085391, 75.12865785383518], [-10.98528397730722, 75.55801829625113], [-9.023350332015482, 77.08353021671479]]]}}, {"type": "Feature", "properties": {"bin": "8218a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-21.388789544397927, 54.52817290726193], [-23.800269106758357, 53.66750781990839], [-23.595800131116476, 52.04720271172597], [-21.117043703327738, 51.28757960329347], [-18.774233271028326, 52.12149149190319], [-18.841171686388584, 53.740206752238315], [-21.388789544397927, 54.52817290726193]]]}}, {"type": "Feature", "properties": {"bin": "8242f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.54246684831395, 22.74217083708576], [65.91535126756838, 21.26766364781169], [67.56939811385563, 20.759725505183912], [68.90585080990593, 21.70055792236084], [68.59550918411969, 23.19553113199099], [66.88485857130675, 23.73015330041775], [65.54246684831395, 22.74217083708576]]]}}, {"type": "Feature", "properties": {"bin": "8269affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[112.88144960994038, 7.389406912237243], [113.09327126386995, 9.10538636195205], [111.74553349919158, 10.148674114937817], [110.16762490734286, 9.460179109104445], [109.96580131465929, 7.718738115722608], [111.33144476242238, 6.691122219788032], [112.88144960994038, 7.389406912237243]]]}}, {"type": "Feature", "properties": {"bin": "822c5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[52.40209518791526, 43.3519782691914], [53.25932626424547, 41.716884731527905], [55.52729405295955, 41.39291048343534], [57.06015141119557, 42.70540478677203], [56.28403216557175, 44.38667318271226], [53.88871226275167, 44.70954356692923], [52.40209518791526, 43.3519782691914]]]}}, {"type": "Feature", "properties": {"bin": "8262b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[54.116539278228814, 5.215027607862709], [54.50172847976733, 6.539629572256595], [53.52575709425707, 7.722673797689084], [52.139413972024556, 7.60596935368187], [51.72617525590205, 6.276363063405384], [52.72729851208757, 5.067960209199088], [54.116539278228814, 5.215027607862709]]]}}, {"type": "Feature", "properties": {"bin": "822f67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[144.03200044365963, 28.54361484413783], [144.21897111031763, 30.184320316496716], [142.7396591831852, 31.20840317246497], [141.12353210543196, 30.569559267468], [141.00348408991889, 28.95205537874154], [142.4332217566576, 27.94960597650391], [144.03200044365963, 28.54361484413783]]]}}, {"type": "Feature", "properties": {"bin": "821eaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[14.33720628244463, 45.27343222583469], [13.642238671206671, 43.674337444107124], [15.239935584499475, 42.48537089697073], [17.54318322426502, 42.87611373038503], [18.314740441318996, 44.470679588895024], [16.708896543883586, 45.6797189491731], [14.33720628244463, 45.27343222583469]]]}}, {"type": "Feature", "properties": {"bin": "8230affffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[120.21182426996477, 36.394827059119145], [119.95687039417938, 35.08787250178159], [121.26131469818228, 34.02999293749449], [122.89743602631219, 34.70019382245992], [123.16276457697892, 36.00561444807193], [121.77659538235066, 36.629598233459305], [120.21182426996477, 36.394827059119145]]]}}, {"type": "Feature", "properties": {"bin": "823177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[124.58049080359855, 44.14376770134433], [125.28500285257124, 42.91031430420952], [127.290626562701, 42.587744993565366], [128.7080550992938, 43.475622215197404], [128.1076333158112, 44.74971789374998], [125.98114176677377, 45.096434369080356], [124.58049080359855, 44.14376770134433]]]}}, {"type": "Feature", "properties": {"bin": "82726ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[146.77198432356215, 9.30602268133257], [146.4482935753851, 7.56237733150415], [147.7947727250777, 6.397625920718724], [149.4500778346505, 6.9737200110234], [149.7748737561887, 8.701739974658006], [148.44372833045466, 9.869570520683073], [146.77198432356215, 9.30602268133257]]]}}, {"type": "Feature", "properties": {"bin": "82170ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[158.3281410729073, 61.87637001561119], [157.56602207692168, 60.21637810885471], [160.07041826212776, 59.09655706521316], [163.34704729720406, 59.53641309763331], [164.42517501351887, 61.13938367748127], [161.92972445966305, 62.36305348532005], [158.3281410729073, 61.87637001561119]]]}}, {"type": "Feature", "properties": {"bin": "8210cffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[61.80251305885726, 59.2821703348388], [62.64951657457579, 57.63340773273936], [65.77321649810175, 57.1642071776145], [68.25632325438265, 58.31910366055611], [67.627534648058, 59.99795420434516], [64.28702706984248, 60.49396023865073], [61.80251305885726, 59.2821703348388]]]}}, {"type": "Feature", "properties": {"bin": "82410ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[113.033299903374, 20.343332432142883], [113.25477246361253, 21.985684630017104], [111.85106503769879, 23.06605987462275], [110.20576673111823, 22.49963239861477], [109.99511027072631, 20.836910858516074], [111.41843257220631, 19.760707923829838], [113.033299903374, 20.343332432142883]]]}}, {"type": "Feature", "properties": {"bin": "82778ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[152.69742579982722, 0.09854949274458083], [152.3770335943206, -1.6093190828786703], [153.63991813255763, -2.69681384429724], [155.2010590098167, -2.0884757961035616], [155.5191014580942, -0.40639453977196044], [154.2787359881882, 0.6931851479671544], [152.69742579982722, 0.09854949274458083]]]}}, {"type": "Feature", "properties": {"bin": "826177fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[77.5983036432562, 2.223343629222345], [77.62628444810427, 3.907860669139395], [76.24362813031698, 4.824023792146664], [74.86384001779038, 4.056393733113011], [74.85134577692807, 2.399389801338335], [76.20338509444836, 1.4824169163632506], [77.5983036432562, 2.223343629222345]]]}}, {"type": "Feature", "properties": {"bin": "8269a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[109.96580131465929, 7.718738115722608], [110.16762490734286, 9.460179109104445], [108.77247792549403, 10.50768755405878], [107.16118351272775, 9.798825362645363], [106.97109383598978, 8.03593746364353], [108.38013200113112, 7.0031235509809875], [109.96580131465929, 7.718738115722608]]]}}, {"type": "Feature", "properties": {"bin": "827aaffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.89849150694345, 3.1567102748799845], [48.36465914155411, 4.586814597803058], [47.32428914393005, 5.828550607177395], [45.79698851068121, 5.6648803895420095], [45.30258805566046, 4.232719683025158], [46.36344937538203, 2.965781048253536], [47.89849150694345, 3.1567102748799845]]]}}, {"type": "Feature", "properties": {"bin": "827387fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[128.4881723713516, 4.2871529217510735], [128.21251055774763, 2.531251866245343], [129.5785597151662, 1.4003324863197344], [131.23529687565494, 2.023474316036843], [131.52242571075033, 3.790658976213928], [130.1416729036941, 4.923762739491519], [128.4881723713516, 4.2871529217510735]]]}}, {"type": "Feature", "properties": {"bin": "820a07fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[86.15418384033971, 63.810259127150125], [89.24349927861624, 62.825241574451404], [92.57738307461396, 63.389047393354765], [93.14096249198373, 64.97995937305846], [89.94381235939827, 66.04712145860618], [86.33787794943744, 65.4180477389232], [86.15418384033971, 63.810259127150125]]]}}, {"type": "Feature", "properties": {"bin": "820767fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.419124599059314, 64.5835440503631], [-11.632420456928374, 65.631365577424], [-14.942390307951198, 65.10982468378923], [-15.697122940858694, 63.552516945683436], [-13.43296806023497, 62.584281558661615], [-10.444977544778329, 63.095054077525454], [-9.419124599059314, 64.5835440503631]]]}}, {"type": "Feature", "properties": {"bin": "827587fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-9.695281485000976, 7.173126163814278], [-11.055247895999136, 6.422432286737444], [-11.136986715149352, 5.079855936610071], [-9.89744485909883, 4.500197653762587], [-8.57230150554439, 5.228007003124849], [-8.452416923081168, 6.5576953249960095], [-9.695281485000976, 7.173126163814278]]]}}, {"type": "Feature", "properties": {"bin": "823ce7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[92.39489798365517, 25.128231887822174], [92.517389421541, 26.790487968432995], [90.91116847307, 27.664082661768756], [89.19916679563575, 26.879844954692857], [89.09689870159305, 25.224826899844274], [90.68630878295664, 24.3462844893966], [92.39489798365517, 25.128231887822174]]]}}, {"type": "Feature", "properties": {"bin": "8200a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.812028454651305, 75.1642904738594], [65.1127740719562, 74.86647343694074], [69.56066224687223, 76.04791578897343], [67.49836484524056, 77.69766097950897], [59.68414094133996, 78.0257182142187], [55.65376829275445, 76.66743647707504], [58.812028454651305, 75.1642904738594]]]}}, {"type": "Feature", "properties": {"bin": "824faffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[159.29356147729914, 17.54385270132609], [159.76589437253912, 19.105773260348492], [158.48854935382522, 20.32820803003372], [156.7516824625805, 19.948884409609132], [156.33450177574932, 18.37834487641563], [157.59815938618596, 17.194884389082347], [159.29356147729914, 17.54385270132609]]]}}, {"type": "Feature", "properties": {"bin": "82532ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.95925686812808, 29.384441439126853], [41.9997109832086, 27.896961539061227], [42.90660193223469, 26.405538346477687], [44.72079236996927, 26.3956657402366], [45.67876237395102, 27.84875798513836], [44.825547083527006, 29.34568001756857], [42.95925686812808, 29.384441439126853]]]}}, {"type": "Feature", "properties": {"bin": "8240b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[116.26130043917948, 31.680907967987867], [116.50280999102597, 33.10122389472947], [115.1006492239189, 34.145029897677574], [113.43054169515192, 33.77089612652203], [113.19850617488318, 32.33603992952471], [114.62653789211869, 31.289486126374026], [116.26130043917948, 31.680907967987867]]]}}, {"type": "Feature", "properties": {"bin": "8258a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[1.3951802868305936, 11.529027262742579], [1.1112578344875799, 10.064920172958862], [2.2764305960846776, 8.948132571134797], [3.751337829888936, 9.26521097155255], [4.0790065308125625, 10.73401495722421], [2.88810760150022, 11.881770859938996], [1.3951802868305936, 11.529027262742579]]]}}, {"type": "Feature", "properties": {"bin": "82310ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[121.21023674748169, 43.4493138584932], [122.00467763040122, 42.261112529240776], [123.98412056729994, 41.999374253313036], [125.28500285257124, 42.91031430420952], [124.58049080359855, 44.14376770134433], [122.4804653993422, 44.42177182649497], [121.21023674748169, 43.4493138584932]]]}}, {"type": "Feature", "properties": {"bin": "8224f7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[101.93382777845231, 40.615119547681495], [101.41893174539778, 39.00521941117573], [102.8141618960042, 37.94492833280539], [104.69435715402071, 38.448644740611016], [105.27754465688392, 40.01005137836429], [103.91581345508436, 41.116231930613374], [101.93382777845231, 40.615119547681495]]]}}, {"type": "Feature", "properties": {"bin": "821097fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.910250490197114, 49.88159652150649], [47.03822283233273, 48.33994165728297], [49.537456108066614, 48.19247132030047], [51.06282125187836, 49.60255244068691], [50.0068432850993, 51.19651327303004], [47.34601250977586, 51.32784663123582], [45.910250490197114, 49.88159652150649]]]}}, {"type": "Feature", "properties": {"bin": "823f67fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[26.578016345292617, 39.47064903027519], [25.702400888627096, 37.86831585468273], [27.05097710739706, 36.4583498026766], [29.24697030924795, 36.63290490648417], [30.164431431468948, 38.21530146274488], [28.846868847179117, 39.64331054771269], [26.578016345292617, 39.47064903027519]]]}}, {"type": "Feature", "properties": {"bin": "821edffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[22.876710218874177, 40.608843552222844], [22.053163375299732, 38.99088586392547], [23.474780873002853, 37.6303425743379], [25.702400888627096, 37.86831585468273], [26.578016345292617, 39.47064903027519], [25.17674314532988, 40.85101584262723], [22.876710218874177, 40.608843552222844]]]}}, {"type": "Feature", "properties": {"bin": "821817fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-16.378405826402158, 54.49624180191474], [-18.841171686388584, 53.740206752238315], [-18.774233271028326, 52.12149149190319], [-16.38110054088066, 51.26683523519603], [-14.00895215724318, 52.001373403173005], [-13.940607532856738, 53.61055766075581], [-16.378405826402158, 54.49624180191474]]]}}, {"type": "Feature", "properties": {"bin": "827a8ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[47.32428914393005, 5.828550607177395], [47.79179491022667, 7.211314785105253], [46.75971038178171, 8.430561787844455], [45.24040446001356, 8.292129888631607], [44.7454727368835, 6.909729644199502], [45.79698851068121, 5.6648803895420095], [47.32428914393005, 5.828550607177395]]]}}, {"type": "Feature", "properties": {"bin": "822f4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[139.65480190759976, 31.537999211685943], [139.748324545009, 33.16280781766435], [138.24018784124735, 34.09024933883642], [136.69764123177848, 33.37879798624116], [136.6700546717489, 31.784672032803925], [138.1201251307902, 30.870958035346177], [139.65480190759976, 31.537999211685943]]]}}, {"type": "Feature", "properties": {"bin": "822f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[152.44502932682522, 29.66931571364096], [152.83019720831965, 31.36741630675961], [151.32134132470674, 32.53130475240214], [149.4630391096146, 31.966206554283033], [149.15248602425285, 30.277702407420577], [150.62524081883691, 29.143844983524968], [152.44502932682522, 29.66931571364096]]]}}, {"type": "Feature", "properties": {"bin": "822197fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[58.49038459954017, 39.336579896677115], [59.150326723667334, 37.656443450315685], [61.28904720771836, 37.20330269000042], [62.870145984466006, 38.417639807768175], [62.29898833850019, 40.134431196559035], [60.05412821541074, 40.600978012625475], [58.49038459954017, 39.336579896677115]]]}}, {"type": "Feature", "properties": {"bin": "827e17fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[175.95074326529812, -0.100059618241764], [175.34522618967037, -1.2146892558706812], [175.97120248728538, -2.52634396022733], [177.21993538452594, -2.756497157143242], [177.85728757138187, -1.64691893642205], [177.21414244035904, -0.30158663198555874], [175.95074326529812, -0.100059618241764]]]}}, {"type": "Feature", "properties": {"bin": "8260dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[69.50460131149872, 17.21768249959498], [69.48764713968366, 18.811896375704336], [67.89023030388555, 19.324158539746353], [66.61541840825973, 18.416666514577653], [66.94438266788374, 17.041704534176425], [68.22161452817798, 16.340297875401987], [69.50460131149872, 17.21768249959498]]]}}, {"type": "Feature", "properties": {"bin": "828537fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[55.70150722023228, 1.447642860200194], [55.32275032625974, 0.041451351015026554], [56.4209834691308, -0.8432313994062755], [57.913121185178866, -0.2902799639423976], [58.27151982812965, 1.1400116362854769], [57.15890102143649, 1.9934841679350606], [55.70150722023228, 1.447642860200194]]]}}, {"type": "Feature", "properties": {"bin": "82659ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[104.44652708667027, 13.667699618909237], [104.62868392107374, 15.431708763244588], [103.13773328689898, 16.482450442847686], [101.4588915346373, 15.760959213480179], [101.29189694158653, 13.985209422122674], [102.78819395075064, 12.942277554996782], [104.44652708667027, 13.667699618909237]]]}}, {"type": "Feature", "properties": {"bin": "82588ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[4.915720603403216, 8.129174779439118], [4.581792371905466, 6.708566989426475], [5.720322083693563, 5.5902368764341395], [7.212914562720072, 5.860392168376588], [7.588359354690609, 7.279047700708482], [6.429971224498451, 8.430253460458047], [4.915720603403216, 8.129174779439118]]]}}, {"type": "Feature", "properties": {"bin": "821687fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[159.67224772986341, 47.27091436938611], [160.3691531477627, 48.9203230493251], [158.5123428014429, 50.06969240808314], [155.98549323271973, 49.53964761301627], [155.40454512908818, 47.88781007001069], [157.23186959426974, 46.76731330635256], [159.67224772986341, 47.27091436938611]]]}}, {"type": "Feature", "properties": {"bin": "826157fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[76.24362813031698, 4.824023792146664], [76.26408541439848, 6.511600732441482], [74.88924352960129, 7.401735391994403], [73.52608565347126, 6.608494376194787], [73.52088426006247, 4.950736370868268], [74.86384001779038, 4.056393733113011], [76.24362813031698, 4.824023792146664]]]}}, {"type": "Feature", "properties": {"bin": "823e57fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[28.304398843543034, 27.21675601467155], [27.504442850291092, 25.566738583888263], [28.674736318778628, 24.127898543542], [30.619038481335384, 24.316034022932545], [31.44867473202602, 25.939003563147065], [30.306296992440565, 27.400965985280784], [28.304398843543034, 27.21675601467155]]]}}, {"type": "Feature", "properties": {"bin": "8252d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[42.68269691095181, 12.044355607055847], [41.86780918021332, 10.627353551154322], [42.64444986593172, 9.369199949120716], [44.19826616870121, 9.509409047334033], [45.01262895906966, 10.887602149584175], [44.2746019271254, 12.16383721889472], [42.68269691095181, 12.044355607055847]]]}}, {"type": "Feature", "properties": {"bin": "821717fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[148.3454600145805, 59.9023253923835], [148.1776454692107, 58.23443896628216], [150.85590113090583, 57.319746471970966], [153.8117703227267, 57.982558289177426], [154.30245997645446, 59.62897038296288], [151.52104837883533, 60.63866054984396], [148.3454600145805, 59.9023253923835]]]}}, {"type": "Feature", "properties": {"bin": "822c1ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[45.17969427675678, 38.133332688653766], [46.10483518064214, 36.6195596910392], [48.114435741183804, 36.40491874790023], [49.298709077634776, 37.71979867392927], [48.41583299887398, 39.286073070842576], [46.30258268055135, 39.48450594666971], [45.17969427675678, 38.133332688653766]]]}}, {"type": "Feature", "properties": {"bin": "8220b7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[65.03033141654677, 37.89440377610124], [65.51119773173042, 36.17746302027598], [67.58388412975768, 35.60844146853497], [69.26285462718553, 36.73018450800947], [68.88086284035973, 38.47090410548266], [66.71839704773174, 39.067301069603346], [65.03033141654677, 37.89440377610124]]]}}, {"type": "Feature", "properties": {"bin": "82680ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[118.68610728166979, 8.3764613699628], [118.45524797889053, 6.690840828057335], [119.73229749473893, 5.64441414051287], [121.26764633911117, 6.289184675341438], [121.51290517196244, 8.000707509888294], [120.20851510495392, 9.041619781447562], [118.68610728166979, 8.3764613699628]]]}}, {"type": "Feature", "properties": {"bin": "8200e7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[43.30849268187674, 82.39825283996296], [55.925484708362085, 82.50396355374559], [64.01135567538, 83.90003351620658], [56.33367799409684, 85.48985867978557], [35.77985090981438, 85.25386465048358], [33.23852823745436, 83.59754993234797], [43.30849268187674, 82.39825283996296]]]}}, {"type": "Feature", "properties": {"bin": "824a47fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[137.16494090958219, 26.427168274838404], [136.84984678879755, 24.877664470168636], [138.28264003276107, 23.859502020027048], [140.0313972001606, 24.399276926480983], [140.3539396171509, 25.95089187809455], [138.9207779394283, 26.9610997122479], [137.16494090958219, 26.427168274838404]]]}}, {"type": "Feature", "properties": {"bin": "825b5ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[169.01054360162968, 9.523231012784185], [169.60718974764936, 10.919270348116088], [168.53745793093609, 12.102005482769567], [166.86243710851772, 11.85037967019004], [166.30352968038193, 10.430341604851654], [167.38068986531874, 9.285448078820776], [169.01054360162968, 9.523231012784185]]]}}, {"type": "Feature", "properties": {"bin": "8260d7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[72.18091550432948, 17.366767219166643], [72.17871183799267, 18.993493940605774], [70.81380882145015, 19.707303596186268], [69.48764713968366, 18.811896375704336], [69.50460131149872, 17.21768249959498], [70.83329599408577, 16.486473655401973], [72.18091550432948, 17.366767219166643]]]}}, {"type": "Feature", "properties": {"bin": "822ee7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[140.2848767565762, 41.39362200086838], [140.40839998730652, 43.04217041557711], [138.67329382795646, 43.88349000410809], [136.89183897767884, 43.06799389230268], [136.8555639168759, 41.45102232926615], [138.51501760262528, 40.6175014098157], [140.2848767565762, 41.39362200086838]]]}}, {"type": "Feature", "properties": {"bin": "82165ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[178.99763303728216, 50.70784143732748], [-179.77426081854213, 52.14336728312945], [178.69875344741448, 53.5403339414854], [175.86773322410414, 53.4759949918722], [174.70598427224823, 52.01101560763347], [176.3024402828945, 50.63969712744497], [178.99763303728216, 50.70784143732748]]]}}, {"type": "Feature", "properties": {"bin": "823937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.347941440399472, 41.63003018212926], [-12.38412687299043, 40.869133191665526], [-12.47570007280164, 39.11281479140376], [-10.618161068438342, 38.139996370486614], [-8.657648270046371, 38.88943198318385], [-8.480681337677595, 40.62229995280742], [-10.347941440399472, 41.63003018212926]]]}}, {"type": "Feature", "properties": {"bin": "8208dffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[26.10723575383044, 65.49332555077642], [28.3067719754889, 64.45848101070418], [31.51753718529259, 64.87303661186431], [32.77511834605474, 66.36718727910217], [30.513875397115008, 67.45322298988307], [27.046020702142844, 66.99139283605574], [26.10723575383044, 65.49332555077642]]]}}, {"type": "Feature", "properties": {"bin": "821597fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[115.09543130851324, 48.558604635580586], [116.21289563713785, 47.30945130281312], [118.49145434322612, 47.148121064048524], [119.80980344758385, 48.23347703514972], [118.78547854820384, 49.545216263040565], [116.34192417394114, 49.7091107998404], [115.09543130851324, 48.558604635580586]]]}}, {"type": "Feature", "properties": {"bin": "823f27fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[16.087588600126523, 39.612646497839734], [15.40073900356166, 37.94968889463011], [16.884717233845183, 36.66836993169907], [19.059614047576503, 37.02901921647205], [19.81112340000082, 38.68528246787517], [18.325260281104836, 39.98817796336323], [16.087588600126523, 39.612646497839734]]]}}, {"type": "Feature", "properties": {"bin": "82094ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[17.152178878591858, 69.36320659442477], [20.59724429383497, 70.05215151950888], [20.123253135395892, 71.43479800589196], [15.568828380671018, 72.0844427245379], [11.990167276622653, 71.26523337833441], [13.072820073815873, 69.93399315449412], [17.152178878591858, 69.36320659442477]]]}}, {"type": "Feature", "properties": {"bin": "822c37fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[39.977570071953565, 39.8454833330193], [38.930217596746424, 38.400687413420364], [40.013903905353125, 36.89986549574836], [42.08453011389581, 36.83963771514377], [43.13752145794885, 38.25742550967681], [42.11651610751938, 39.762213320715894], [39.977570071953565, 39.8454833330193]]]}}, {"type": "Feature", "properties": {"bin": "821937fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[-10.444977544778329, 63.09505407752544], [-13.432968060234963, 62.58428155866159], [-13.53147949450864, 61.174834149098], [-10.828226222593615, 60.2883152943037], [-7.999682127502824, 60.776647276888475], [-7.720042056693346, 62.172198741500715], [-10.444977544778329, 63.09505407752544]]]}}, {"type": "Feature", "properties": {"bin": "82204ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[85.14867094354511, 50.108314501707056], [85.06133769126956, 48.33189936227608], [87.25627656786097, 47.36960130489782], [89.57750692713387, 48.13292401292239], [89.81939073139279, 49.88539972440518], [87.58854200303621, 50.900190145391576], [85.14867094354511, 50.108314501707056]]]}}, {"type": "Feature", "properties": {"bin": "826a4ffffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[37.77676428812329, 4.740955381891409], [38.34945582023904, 6.213279889313993], [37.27823313011431, 7.473154913703828], [35.62661261729032, 7.284444670674573], [35.03167639020317, 5.820413131280575], [36.109961522727325, 4.536384818354094], [37.77676428812329, 4.740955381891409]]]}}, {"type": "Feature", "properties": {"bin": "8273a7fffffffff", "felt:h3_level": 2}, "geometry": {"type": "Polygon", "coordinates": [[[127.39588222887433, 7.155784270598222], [127.12366345508629, 5.4036923569431865], [128.4881723713516, 4.2871529217510735], [130.1416729036941, 4.923762739491519], [130.42589846573782, 6.689605773929638], [129.04492009156368, 7.805398745803346], [127.39588222887433, 7.155784270598222]]]}}]} diff --git a/tests/pbf/h3-2-0-1.geojson b/tests/pbf/h3-2-0-1.geojson new file mode 100644 index 000000000..7ff0291a7 --- /dev/null +++ b/tests/pbf/h3-2-0-1.geojson @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "properties": {"bin": "811dbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-152.70260638958075, 57.14185650944261], [-157.2827709187156, 54.01377148101899], [-153.78137213372952, 50.5331018823282], [-148.41135616643646, 50.423740032442545], [-147.5597464714757, 51.50437548012677], [-144.4245651319535, 53.21749558931391], [-145.6125157209927, 56.56697923674092], [-152.70260638958075, 57.14185650944261]]]}}, {"type": "Feature", "properties": {"bin": "8122bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-156.03631344405528, 46.90887469576172], [-153.78137213372952, 50.5331018823282], [-157.28277091871553, 54.01377148101902], [-163.66453871424696, 53.77357145650912], [-165.61336675442524, 49.89597414875072], [-161.56979335131368, 46.51349897531834], [-156.03631344405528, 46.90887469576172]]]}}, {"type": "Feature", "properties": {"bin": "81127ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-110.95630851879363, 59.51594242539448], [-114.22928039520941, 55.478388139502115], [-109.99461055319722, 51.754865985358926], [-102.90229770085304, 51.55677580791123], [-98.56184761891002, 55.218550700351585], [-102.11996489173809, 59.4718593323693], [-110.95630851879363, 59.51594242539448]]]}}, {"type": "Feature", "properties": {"bin": "8188fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-158.59967491814012, 3.3357348575173495], [-159.93112334382027, -0.944653390238862], [-156.8531091350144, -4.259065522271721], [-152.3980821982831, -3.4345808068957653], [-150.91862197114955, 0.796995066489417], [-154.0294052002189, 4.260374459536216], [-158.59967491814012, 3.3357348575173495]]]}}, {"type": "Feature", "properties": {"bin": "8150bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-121.01253489901505, 20.57399140249709], [-118.63264326814091, 24.676154575544956], [-121.3366283326517, 28.653019311484535], [-126.42326523231716, 28.323445670060703], [-128.4779115319772, 24.19492082737583], [-125.79514460772695, 20.41598020692649], [-121.01253489901505, 20.57399140249709]]]}}, {"type": "Feature", "properties": {"bin": "816f7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-120.24551240318443, -1.691265046350464], [-118.22978761288444, 1.5466127001194412], [-120.47268446128629, 5.165048115302317], [-124.74319077977674, 5.304322366655777], [-125.65736900732797, 3.5933241882305205], [-126.47619542382564, 1.6263637306496364], [-124.2984927797677, -1.4476428602002036], [-120.24551240318443, -1.691265046350464]]]}}, {"type": "Feature", "properties": {"bin": "81133ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-131.70883908792965, 69.37134141076518], [-132.5204889558626, 65.0592552125662], [-125.34079232851788, 62.23352147732967], [-116.44653125364454, 63.19577227205729], [-112.53575880038885, 67.41321684451043], [-120.27955037212989, 70.85340170404048], [-131.70883908792965, 69.37134141076518]]]}}, {"type": "Feature", "properties": {"bin": "81717ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-168.17288759575646, 13.445604337884351], [-169.2931299839693, 9.060308038526605], [-166.16940101623453, 5.76714668637842], [-161.77338167921764, 6.766536253596437], [-160.44607430026895, 11.231115019630435], [-163.71455965998953, 14.623074892227512], [-168.17288759575646, 13.445604337884351]]]}}, {"type": "Feature", "properties": {"bin": "816cfffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-98.30082499679779, 3.9382989654374896], [-101.0482432081896, 0.3854149473714002], [-99.52316615028741, -3.7450437470058233], [-95.07033345637271, -4.348486695475445], [-92.21612396381302, -0.6561288240742987], [-93.91140202136131, 3.4938029769751084], [-98.30082499679779, 3.9382989654374896]]]}}, {"type": "Feature", "properties": {"bin": "8146fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-170.26790510748518, 20.96411360620605], [-171.35903250000362, 16.594714504739436], [-168.17288759575646, 13.445604337884351], [-163.71455965998953, 14.623074892227512], [-162.39694129463984, 19.114485874069658], [-165.75801721847134, 22.310289219453917], [-170.26790510748518, 20.96411360620605]]]}}, {"type": "Feature", "properties": {"bin": "811cfffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-145.50148773440657, 47.22925356200961], [-147.45009391663316, 44.09362423911827], [-143.8463112012841, 41.20828589932378], [-138.450291223663, 41.457139817335765], [-136.7018216781215, 45.34099129109544], [-140.06320040294017, 47.862031640242165], [-141.72110214563946, 47.406672457819], [-145.50148773440657, 47.22925356200961]]]}}, {"type": "Feature", "properties": {"bin": "81483ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-105.94643547761567, 20.212678725972662], [-103.01162576662247, 24.12172726544782], [-105.25067839657362, 28.43865978592777], [-110.66261804031069, 28.72380952741313], [-113.46044826906298, 24.671633767522994], [-111.01600127930239, 20.479742425174795], [-105.94643547761567, 20.212678725972662]]]}}, {"type": "Feature", "properties": {"bin": "8147bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-173.6703874763115, 23.782822700979143], [-172.64626329548403, 28.208961817949742], [-176.54267313535857, 31.148162090824524], [178.4754053347224, 29.376139351007176], [177.84694371159145, 24.756909421354468], [-178.22376950605556, 22.09268123220156], [-173.6703874763115, 23.782822700979143]]]}}, {"type": "Feature", "properties": {"bin": "811cbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-147.45009391663316, 44.09362423911827], [-145.50148773440657, 47.22925356200961], [-146.74847571876643, 48.09535483763055], [-148.41135616643646, 50.423740032442545], [-153.78137213372952, 50.5331018823282], [-156.03631344405528, 46.90887469576172], [-153.03739182353243, 43.44325276436556], [-147.45009391663316, 44.09362423911827]]]}}, {"type": "Feature", "properties": {"bin": "81507ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-140.91889130500928, 27.061192038819833], [-142.7188705783351, 22.885971422359724], [-139.6214919325493, 19.2239309458196], [-134.89965579269537, 19.7532105149965], [-133.08381598345167, 23.820431161854444], [-135.98689147817444, 27.46913860954455], [-140.91889130500928, 27.061192038819833]]]}}, {"type": "Feature", "properties": {"bin": "81377ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-143.8463112012841, 41.20828589932378], [-145.74636904346727, 37.68759229063255], [-142.3232078622538, 34.454167617014946], [-137.16670054747664, 34.7661254517022], [-136.19839496396796, 36.53790229001989], [-135.31985086435014, 38.551076772095065], [-138.450291223663, 41.457139817335765], [-143.8463112012841, 41.20828589932378]]]}}, {"type": "Feature", "properties": {"bin": "8123bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-154.78487065089823, 39.9092677035244], [-153.03739182353243, 43.44325276436556], [-156.03631344405528, 46.90887469576172], [-161.56979335131368, 46.51349897531834], [-163.39292691687498, 42.461841701752746], [-159.94762734735153, 39.09941640444715], [-157.4782592811404, 39.41982851578977], [-154.78487065089823, 39.9092677035244]]]}}, {"type": "Feature", "properties": {"bin": "81233ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-161.64707805135708, 34.994006697107615], [-159.94762734735153, 39.09941640444715], [-163.39292691687498, 42.461841701752746], [-168.8876761772056, 41.53861492567143], [-170.27191812997157, 37.14623592274974], [-166.52892825112713, 33.96535450751626], [-161.64707805135708, 34.994006697107615]]]}}, {"type": "Feature", "properties": {"bin": "816c7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-91.12007106136942, 7.059508613810282], [-93.91140202136131, 3.4938029769751084], [-92.21612396381302, -0.6561288240742987], [-87.59400415255666, -1.1964275116101644], [-84.77330656823203, 2.504604687315686], [-86.58999355148684, 6.605186625257107], [-91.12007106136942, 7.059508613810282]]]}}, {"type": "Feature", "properties": {"bin": "8137bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-159.94762734735153, 39.09941640444715], [-161.64707805135708, 34.9940066971076], [-158.04649474959947, 32.12156651323388], [-152.85043045733752, 33.12732053866677], [-151.12386440058128, 37.032961967755135], [-154.78487065089823, 39.9092677035244], [-157.4782592811404, 39.419828515789746], [-159.94762734735153, 39.09941640444715]]]}}, {"type": "Feature", "properties": {"bin": "81477ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-166.52892825112713, 33.96535450751626], [-167.88337203384344, 29.625507898230126], [-166.75703716775027, 28.616915425812667], [-164.45647827941468, 26.67326523622734], [-159.5659720311805, 27.919872272760344], [-158.04649474959947, 32.12156651323388], [-161.64707805135708, 34.9940066971076], [-166.52892825112713, 33.96535450751626]]]}}, {"type": "Feature", "properties": {"bin": "815bbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-176.35806599111405, 11.05195584369349], [-175.4582711140254, 15.285730312483956], [-178.95063664056067, 17.743332187238174], [176.7615924622716, 15.921990549108155], [176.28993210653294, 11.794175727566111], [179.77693144202632, 9.615942399155195], [-178.23815999124184, 10.46324037683844], [-176.35806599111405, 11.05195584369349]]]}}, {"type": "Feature", "properties": {"bin": "8128fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-122.13483148443464, 44.05769081450337], [-119.23221501743073, 47.80409716753512], [-120.9075447890205, 49.3950339711823], [-123.12286550407035, 50.98471128168906], [-128.90985381013775, 50.15451159756744], [-131.2901594178203, 46.41694831075058], [-127.95866237076233, 43.41920841314796], [-122.13483148443464, 44.05769081450337]]]}}, {"type": "Feature", "properties": {"bin": "81467ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-164.45647827941468, 26.67326523622734], [-165.75801721847134, 22.310289219453917], [-162.39694129463984, 19.114485874069658], [-157.6068486027842, 20.259691594705036], [-156.08998858841755, 24.696711258039056], [-159.5659720311805, 27.919872272760344], [-164.45647827941468, 26.67326523622734]]]}}, {"type": "Feature", "properties": {"bin": "815dbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-162.39694129463984, 19.114485874069658], [-163.71455965998953, 14.623074892227512], [-160.44607430026895, 11.231115019630435], [-155.7634836482284, 12.26582364388199], [-154.25484084592026, 16.797013674901503], [-157.6068486027842, 20.259691594705036], [-162.39694129463984, 19.114485874069658]]]}}, {"type": "Feature", "properties": {"bin": "816e7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-120.47268446128629, 5.165048115302317], [-118.34853420742208, 8.781042023506567], [-120.7266797125519, 12.651392432778692], [-125.23898938471632, 12.65441306346884], [-127.11406580207421, 8.93189150044687], [-124.74319077977674, 5.304322366655777], [-120.47268446128629, 5.165048115302317]]]}}, {"type": "Feature", "properties": {"bin": "81237ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-170.27191812997157, 37.14623592274974], [-168.8876761772056, 41.53861492567143], [-173.2513616288856, 44.74985555511408], [-179.170112546831, 43.33462463706695], [179.9534193241767, 38.72877939076234], [-175.56432922504848, 35.741206971176496], [-170.27191812997157, 37.14623592274974]]]}}, {"type": "Feature", "properties": {"bin": "815c7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-146.16007687374923, 14.110797540904425], [-147.80006555587835, 9.628747217956542], [-144.72979242136543, 6.045591181415268], [-140.12125038010964, 6.870649308036965], [-138.42043748614526, 11.22287623237951], [-141.37151007296615, 14.881959131410003], [-146.16007687374923, 14.110797540904425]]]}}, {"type": "Feature", "properties": {"bin": "81503ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-127.75650761238906, 16.42566424694524], [-125.79514460772695, 20.41598020692649], [-128.4779115319772, 24.19492082737583], [-131.54639019746782, 23.913612769282484], [-133.08381598345167, 23.820431161854444], [-134.89965579269537, 19.7532105149965], [-132.14080471892913, 16.072271835802038], [-129.2239009240029, 16.36488871464205], [-127.75650761238906, 16.42566424694524]]]}}, {"type": "Feature", "properties": {"bin": "8136bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-158.04649474959947, 32.12156651323388], [-159.5659720311805, 27.919872272760344], [-156.08998858841755, 24.696711258039056], [-151.04796662686522, 25.669243623986258], [-149.34707529879068, 29.891830084602514], [-152.85043045733752, 33.12732053866677], [-158.04649474959947, 32.12156651323388]]]}}, {"type": "Feature", "properties": {"bin": "81123ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-125.34079232851788, 62.23352147732967], [-126.85253575324182, 58.04535010415047], [-121.4424549287285, 54.916649815151494], [-114.22928039520941, 55.478388139502115], [-110.95630851879363, 59.51594242539448], [-116.44653125364454, 63.19577227205729], [-125.34079232851788, 62.23352147732967]]]}}, {"type": "Feature", "properties": {"bin": "816ebffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-107.10416387391813, 4.548448008485312], [-104.53497491114089, 8.135308829772034], [-106.5596852317401, 12.150574686647923], [-111.32693234897052, 12.401690461483298], [-113.77793956806565, 8.621777037639923], [-111.60261207801032, 4.7853989171504105], [-107.10416387391813, 4.548448008485312]]]}}, {"type": "Feature", "properties": {"bin": "8179bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-144.72979242136543, 6.045591181415268], [-146.33638072286848, 1.6772949381945048], [-143.3961790952625, -1.7065799698214494], [-138.95903110794228, -0.8353130739527076], [-137.3063271216714, 3.3728285055965976], [-140.12125038010964, 6.870649308036965], [-144.72979242136543, 6.045591181415268]]]}}, {"type": "Feature", "properties": {"bin": "8170bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-178.02519665249852, 2.904037450579811], [-178.7982364398432, -0.9361637645983776], [-176.05696384421353, -3.968796976609589], [-172.34353547812253, -3.2930086626395747], [-171.37544324872502, 0.6498705655764005], [-174.31673738369324, 3.8210244943304374], [-178.02519665249852, 2.904037450579811]]]}}, {"type": "Feature", "properties": {"bin": "8112fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-121.4424549287285, 54.916649815151494], [-123.12286550407035, 50.98471128168906], [-120.9075447890205, 49.39503397118231], [-119.23221501743073, 47.80409716753512], [-112.78800392829434, 48.011188120377795], [-109.99461055319722, 51.754865985358926], [-114.22928039520941, 55.478388139502115], [-121.4424549287285, 54.916649815151494]]]}}, {"type": "Feature", "properties": {"bin": "81227ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-173.2513616288856, 44.74985555511408], [-171.87311046039585, 49.05085282910134], [-177.04785603399293, 52.11351997662063], [176.3024402828945, 50.63969712744497], [175.6209968167824, 46.180014657090155], [-179.170112546831, 43.33462463706695], [-173.2513616288856, 44.74985555511408]]]}}, {"type": "Feature", "properties": {"bin": "8188bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-150.91862197114955, 0.796995066489417], [-152.3980821982831, -3.4345808068957653], [-149.4028814909321, -6.672537737437504], [-144.96832360979684, -5.820413131280575], [-143.3961790952625, -1.7065799698214494], [-146.33638072286848, 1.6772949381945048], [-150.91862197114955, 0.796995066489417]]]}}, {"type": "Feature", "properties": {"bin": "815d7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-147.69594788211106, 22.16693900740581], [-149.3676428224656, 17.73753035354521], [-146.16007687374923, 14.110797540904425], [-141.37151007296615, 14.881959131410003], [-139.6214919325493, 19.2239309458196], [-142.7188705783351, 22.885971422359724], [-147.69594788211106, 22.16693900740581]]]}}, {"type": "Feature", "properties": {"bin": "81797ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-131.26895225504003, 8.320295172124071], [-132.96499017492758, 4.15894262726533], [-130.4608587551884, 0.843603111016541], [-126.47619542382564, 1.6263637306496364], [-125.65736900732797, 3.5933241882305174], [-124.74319077977674, 5.304322366655777], [-127.11406580207421, 8.93189150044686], [-131.26895225504003, 8.320295172124071]]]}}, {"type": "Feature", "properties": {"bin": "81713ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-175.45827111402537, 15.285730312483953], [-176.35806599111405, 11.05195584369349], [-173.38014762578527, 7.972793830841406], [-169.2931299839693, 9.060308038526605], [-168.17288759575646, 13.445604337884351], [-171.35903250000362, 16.594714504739436], [-175.45827111402537, 15.285730312483953]]]}}, {"type": "Feature", "properties": {"bin": "816dbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-99.98131321467868, 7.817460742770009], [-97.2122610082857, 11.421136455613714], [-99.00408607712038, 15.551320300550213], [-103.81933932397637, 15.969878062915633], [-106.5596852317401, 12.150574686647923], [-104.53497491114089, 8.135308829772034], [-99.98131321467868, 7.817460742770009]]]}}, {"type": "Feature", "properties": {"bin": "81273ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-98.56184761891002, 55.218550700351585], [-102.90229770085304, 51.55677580791123], [-99.91704879397018, 47.4715191071553], [-93.39584904234346, 46.630019541751885], [-88.65412421340821, 49.81242268121324], [-90.6514460154606, 54.30091613749209], [-98.56184761891002, 55.218550700351585]]]}}, {"type": "Feature", "properties": {"bin": "8126fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-96.66289038040519, 31.619530626908528], [-93.26521175979074, 35.0901083935365], [-95.24686215665145, 39.326802934475495], [-101.04033001739265, 40.0885965084391], [-104.4548159269732, 36.49436854843134], [-102.09323459159486, 32.26874743091332], [-96.66289038040519, 31.619530626908528]]]}}, {"type": "Feature", "properties": {"bin": "81487ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-113.46044826906298, 24.671633767522994], [-110.66261804031069, 28.72380952741313], [-113.26800832642184, 32.85690516760766], [-118.8045281400983, 32.779437996638734], [-121.3366283326517, 28.653019311484535], [-118.63264326814091, 24.676154575544956], [-113.46044826906298, 24.671633767522994]]]}}, {"type": "Feature", "properties": {"bin": "81297ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-129.29351106151302, 31.96033840030001], [-127.13810062168672, 36.07979647703287], [-130.22263777229935, 39.442424221906194], [-135.31985086435014, 38.551076772095065], [-136.19839496396796, 36.5379022900199], [-137.16670054747664, 34.7661254517022], [-134.10648897177788, 31.285608665560563], [-129.29351106151302, 31.96033840030001]]]}}, {"type": "Feature", "properties": {"bin": "815c3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-154.25484084592026, 16.797013674901503], [-155.7634836482284, 12.26582364388199], [-152.5335322367957, 8.71898308656318], [-147.80006555587835, 9.628747217956542], [-146.16007687374923, 14.110797540904425], [-149.3676428224656, 17.73753035354521], [-154.25484084592026, 16.797013674901503]]]}}, {"type": "Feature", "properties": {"bin": "811d3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-145.6125157209927, 56.56697923674092], [-144.4245651319535, 53.21749558931391], [-142.4587810063765, 52.968607348507106], [-138.99195596812496, 51.521279104200275], [-133.85114156470928, 52.84669103300533], [-133.52109292003715, 56.759266243298875], [-139.68359348160976, 59.16948256665964], [-145.6125157209927, 56.56697923674092]]]}}, {"type": "Feature", "properties": {"bin": "811c3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-144.4245651319535, 53.21749558931391], [-147.55974660504023, 51.50437540245168], [-148.41135616643646, 50.423740032442545], [-146.7484756484931, 48.0953547339848], [-145.50148773440657, 47.22925356200961], [-141.7211019776949, 47.40667246291866], [-140.06320040294017, 47.862031640242165], [-138.90425742745526, 50.31614931893433], [-138.99195596812496, 51.521279104200275], [-142.4587811649833, 52.96860741032147], [-144.4245651319535, 53.21749558931391]]]}}, {"type": "Feature", "properties": {"bin": "81513ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-132.14080471892913, 16.072271835802038], [-133.89520751564908, 11.8841311452974], [-131.26895225504003, 8.320295172124071], [-127.11406580207421, 8.93189150044686], [-125.23898938471632, 12.65441306346884], [-127.75650761238906, 16.42566424694524], [-129.22390105343948, 16.364888706760496], [-132.14080471892913, 16.072271835802038]]]}}, {"type": "Feature", "properties": {"bin": "8126bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-104.4548159269732, 36.49436854843134], [-101.04033001739265, 40.0885965084391], [-103.5359544106562, 44.08337983698415], [-109.78838725262649, 44.41307088095466], [-113.04627123921182, 40.72061994800501], [-110.25748485653355, 36.800197061174266], [-104.4548159269732, 36.49436854843134]]]}}, {"type": "Feature", "properties": {"bin": "8148fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-105.25067839657362, 28.43865978592777], [-102.09323459159486, 32.26874743091332], [-104.4548159269732, 36.49436854843134], [-110.25748485653355, 36.800197061174266], [-113.26800832642184, 32.85690516760766], [-110.66261804031069, 28.72380952741313], [-105.25067839657362, 28.43865978592777]]]}}, {"type": "Feature", "properties": {"bin": "8129bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-113.26800832642184, 32.85690516760766], [-110.25748485653355, 36.800197061174266], [-113.04627123921182, 40.72061994800501], [-119.0022822666251, 40.57057178749683], [-121.7071569184514, 36.57421829680793], [-118.8045281400983, 32.779437996638734], [-113.26800832642184, 32.85690516760766]]]}}, {"type": "Feature", "properties": {"bin": "81707ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-166.16940101623453, 5.76714668637842], [-167.31261713417402, 1.5147974903819637], [-164.2561585726589, -1.7743965588127992], [-159.93112334382027, -0.944653390238862], [-158.59967491814012, 3.3357348575173495], [-161.77338167921764, 6.766536253596437], [-166.16940101623453, 5.76714668637842]]]}}, {"type": "Feature", "properties": {"bin": "810dbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[174.74893924520714, 70.79472682488498], [172.86137139869209, 66.19292316051032], [-179.11117538442045, 63.29242332756059], [-169.09171800224811, 64.21420040783377], [-163.87296846032518, 68.21921734529467], [-171.11065695414112, 71.97154653078344], [174.74893924520714, 70.79472682488498]]]}}, {"type": "Feature", "properties": {"bin": "816c3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-97.2122610082857, 11.421136455613714], [-99.98131321467868, 7.817460742770009], [-98.81508700542813, 5.250784370990394], [-98.30082499679779, 3.9382989654374896], [-93.91140202136131, 3.4938029769751084], [-91.12007106136942, 7.059508613810282], [-92.24563461598171, 9.64603750442171], [-92.74826367817671, 10.965445078249571], [-97.2122610082857, 11.421136455613714]]]}}, {"type": "Feature", "properties": {"bin": "8170fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-171.37544324872502, 0.6498705655764005], [-172.34353547812253, -3.2930086626395747], [-170.89762858145173, -4.8608118120732575], [-169.716819501222, -6.402677248031409], [-165.41674992858833, -5.7628604914369195], [-164.2561585726589, -1.7743965588127992], [-167.31261713417402, 1.5147974903819637], [-171.37544324872502, 0.6498705655764005]]]}}, {"type": "Feature", "properties": {"bin": "810d3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-163.45686807900947, 76.14556732608257], [-171.11065695414112, 71.97154653078344], [-163.87296846032518, 68.21921734529467], [-152.08848899496186, 67.9323760889138], [-142.9193734077983, 71.08395895336362], [-145.35543575349868, 75.43128251813997], [-163.45686807900947, 76.14556732608257]]]}}, {"type": "Feature", "properties": {"bin": "8171bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[179.77693144202632, 9.615942399155195], [179.21716082489448, 5.889921754313888], [-178.02519665249852, 2.904037450579811], [-174.31673738369324, 3.8210244943304374], [-173.38014762578527, 7.972793830841406], [-176.35806599111405, 11.05195584369349], [-178.23815999124182, 10.46324037683843], [179.77693144202632, 9.615942399155195]]]}}, {"type": "Feature", "properties": {"bin": "81447ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-89.80771154120198, 26.426478135308493], [-86.5457782112497, 29.759287059695453], [-88.0658863098819, 34.05983621723471], [-93.26521175979074, 35.0901083935365], [-96.66289038040519, 31.619530626908528], [-94.74356847987167, 27.264005617361743], [-89.80771154120198, 26.426478135308493]]]}}, {"type": "Feature", "properties": {"bin": "8149bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-99.00408607712038, 15.551320300550213], [-96.05020989622146, 19.26900694125663], [-97.9056342663466, 23.58979436809324], [-103.01162576662247, 24.12172726544782], [-105.94643547761567, 20.212678725972662], [-103.81933932397637, 15.969878062915633], [-99.00408607712038, 15.551320300550213]]]}}, {"type": "Feature", "properties": {"bin": "81293ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-121.3366283326517, 28.653019311484535], [-118.8045281400983, 32.779437996638734], [-121.7071569184514, 36.57421829680793], [-127.13810062168672, 36.07979647703287], [-129.29351106151302, 31.96033840030001], [-126.42326523231716, 28.323445670060703], [-121.3366283326517, 28.653019311484535]]]}}, {"type": "Feature", "properties": {"bin": "81363ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-151.12386440058128, 37.032961967755135], [-152.85043045733752, 33.12732053866677], [-149.34707529879068, 29.891830084602514], [-144.17342232410294, 30.569950882968847], [-142.3232078622538, 34.454167617014946], [-145.74636904346727, 37.68759229063255], [-151.12386440058128, 37.032961967755135]]]}}, {"type": "Feature", "properties": {"bin": "816efffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-113.77793956806565, 8.621777037639923], [-111.32693234897052, 12.401690461483298], [-113.6290340058613, 16.486147588602186], [-118.48186571718101, 16.572699557873406], [-120.7266797125519, 12.651392432778692], [-118.34853420742208, 8.781042023506567], [-113.77793956806565, 8.621777037639923]]]}}, {"type": "Feature", "properties": {"bin": "81263ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-99.91704879397018, 47.4715191071553], [-102.32375599425876, 45.19762773889801], [-103.5359544106562, 44.08337983698415], [-101.04033001739265, 40.0885965084391], [-95.24686215665145, 39.326802934475495], [-92.81940976125261, 41.451206650953644], [-91.47626179179873, 42.444959538714684], [-93.39584904234346, 46.630019541751885], [-99.91704879397018, 47.4715191071553]]]}}, {"type": "Feature", "properties": {"bin": "81367ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-142.3232078622538, 34.454167617014946], [-144.17342232410294, 30.569950882968847], [-140.91889130500928, 27.061192038819833], [-135.98689147817444, 27.46913860954455], [-134.1064889717779, 31.285608665560563], [-137.16670054747664, 34.7661254517022], [-142.3232078622538, 34.454167617014946]]]}}, {"type": "Feature", "properties": {"bin": "81457ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-91.35930158406566, 18.62870219128589], [-88.29590003003727, 22.120730739616338], [-89.80771154120198, 26.426478135308493], [-94.74356847987167, 27.264005617361743], [-97.9056342663466, 23.58979436809324], [-96.05020989622146, 19.26900694125663], [-91.35930158406566, 18.62870219128589]]]}}, {"type": "Feature", "properties": {"bin": "8113bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-140.41211093213903, 62.92006172739451], [-139.68359348160976, 59.16948256665964], [-133.52109292003715, 56.759266243298875], [-126.85253575324182, 58.04535010415047], [-125.34079232851788, 62.23352147732967], [-132.5204889558626, 65.0592552125662], [-136.5464286915756, 64.17512314671457], [-140.41211093213903, 62.92006172739451]]]}}, {"type": "Feature", "properties": {"bin": "81783ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-137.3063271216714, 3.3728285055965976], [-138.95903110794228, -0.8353130739527076], [-136.27080761114607, -4.045894876233992], [-132.10150849305654, -3.156710274879981], [-130.4608587551884, 0.843603111016541], [-132.96499017492758, 4.15894262726533], [-137.3063271216714, 3.3728285055965976]]]}}, {"type": "Feature", "properties": {"bin": "81497ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-113.6290340058613, 16.486147588602186], [-111.01600127930239, 20.479742425174795], [-113.46044826906298, 24.671633767522994], [-118.63264326814091, 24.676154575544956], [-121.01253489901505, 20.57399140249709], [-118.48186571718101, 16.572699557873406], [-113.6290340058613, 16.486147588602186]]]}}, {"type": "Feature", "properties": {"bin": "8127bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-109.99461055319722, 51.754865985358926], [-112.78800392829434, 48.011188120377795], [-109.78838725262649, 44.41307088095466], [-103.5359544106562, 44.08337983698415], [-102.32375589289849, 45.1976278397994], [-99.91704879397018, 47.4715191071553], [-102.90229770085304, 51.55677580791123], [-109.99461055319722, 51.754865985358926]]]}}, {"type": "Feature", "properties": {"bin": "810c3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-163.87296846032518, 68.21921734529467], [-169.09171800224811, 64.21420040783377], [-164.0655884448202, 60.72912581441262], [-155.36073868635916, 60.70120286769721], [-149.2025168456928, 63.94824319117261], [-152.08848899496186, 67.9323760889138], [-163.87296846032518, 68.21921734529467]]]}}, {"type": "Feature", "properties": {"bin": "8122fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-165.61336675442524, 49.89597414875072], [-163.66453871424696, 53.77357145650912], [-165.99329996754696, 55.42250913256559], [-168.0262941563394, 56.99746478128345], [-175.74821876841347, 56.19652224584303], [-177.04785603399293, 52.11351997662063], [-171.87311046039585, 49.05085282910134], [-165.61336675442524, 49.89597414875072]]]}}, {"type": "Feature", "properties": {"bin": "8151bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-120.7266797125519, 12.651392432778692], [-118.48186571718101, 16.572699557873406], [-121.01253489901505, 20.57399140249709], [-125.79514460772695, 20.41598020692649], [-127.75650761238906, 16.42566424694524], [-125.23898938471632, 12.65441306346884], [-120.7266797125519, 12.651392432778692]]]}}, {"type": "Feature", "properties": {"bin": "81793ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-138.42043748614526, 11.22287623237951], [-140.12125038010964, 6.870649308036965], [-137.3063271216714, 3.3728285055965976], [-132.96499017492758, 4.15894262726533], [-131.26895225504003, 8.320295172124071], [-133.89520751564908, 11.8841311452974], [-138.42043748614526, 11.22287623237951]]]}}, {"type": "Feature", "properties": {"bin": "810d7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-142.9193734077983, 71.08395895336362], [-152.08848899496186, 67.9323760889138], [-149.2025168456928, 63.94824319117261], [-140.41211093213903, 62.92006172739451], [-136.54642869157573, 64.17512314671458], [-132.5204889558626, 65.0592552125662], [-131.70883908792982, 69.37134141076518], [-142.9193734077983, 71.08395895336362]]]}}, {"type": "Feature", "properties": {"bin": "81283ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-121.7071569184514, 36.57421829680793], [-119.0022822666251, 40.57057178749683], [-122.13483148443464, 44.05769081450337], [-127.95866237076233, 43.41920841314796], [-130.22263777229935, 39.442424221906194], [-127.13810062168672, 36.07979647703287], [-121.7071569184514, 36.57421829680793]]]}}, {"type": "Feature", "properties": {"bin": "8128bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-113.04627123921182, 40.72061994800501], [-109.78838725262649, 44.41307088095466], [-112.78800392829437, 48.011188120377795], [-119.23221501743073, 47.80409716753512], [-122.13483148443464, 44.05769081450337], [-119.0022822666251, 40.57057178749683], [-113.04627123921182, 40.72061994800501]]]}}, {"type": "Feature", "properties": {"bin": "816f3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-114.02904784459382, -5.242929409571681], [-111.84870286236902, -2.1675662435525287], [-113.91041930526723, 1.3300762483231612], [-118.22978761288444, 1.5466127001194412], [-120.24551240318443, -1.691265046350464], [-118.12335777862991, -4.9863101927430895], [-114.02904784459382, -5.242929409571681]]]}}, {"type": "Feature", "properties": {"bin": "810ebffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-96.44526335797602, 63.25173080516217], [-102.11996489173809, 59.4718593323693], [-98.56184761891002, 55.218550700351585], [-90.6514460154606, 54.30091613749209], [-84.54003278821038, 57.52364604763144], [-86.44620486365478, 62.18752970394471], [-96.44526335797602, 63.25173080516217]]]}}, {"type": "Feature", "properties": {"bin": "81517ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-139.6214919325493, 19.2239309458196], [-141.37151007296615, 14.881959131410003], [-138.42043748614526, 11.22287623237951], [-133.89520751564908, 11.8841311452974], [-132.14080471892913, 16.072271835802038], [-134.89965579269537, 19.7532105149965], [-139.6214919325493, 19.2239309458196]]]}}, {"type": "Feature", "properties": {"bin": "8150fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-128.4779115319772, 24.19492082737583], [-126.42326523231716, 28.323445670060703], [-129.29351106151302, 31.96033840030001], [-134.10648897177788, 31.285608665560563], [-135.98689147817444, 27.46913860954455], [-133.08381598345167, 23.820431161854444], [-131.54639006306795, 23.913612782970645], [-128.4779115319772, 24.19492082737583]]]}}, {"type": "Feature", "properties": {"bin": "810cbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-179.11117538442045, 63.29242332756059], [178.57998532973056, 59.032171994759636], [-175.74821876841355, 56.19652224584304], [-168.0262941563394, 56.99746478128345], [-164.0655884448202, 60.72912581441262], [-169.09171800224811, 64.21420040783377], [-179.11117538442045, 63.29242332756059]]]}}, {"type": "Feature", "properties": {"bin": "815d3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-156.08998858841755, 24.696711258039056], [-157.6068486027842, 20.259691594705036], [-154.25484084592026, 16.797013674901503], [-149.3676428224656, 17.73753035354521], [-147.69594788211106, 22.16693900740581], [-151.04796662686522, 25.669243623986258], [-156.08998858841755, 24.696711258039056]]]}}, {"type": "Feature", "properties": {"bin": "81137ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-112.53575880038885, 67.41321684451043], [-116.44653125364454, 63.19577227205729], [-110.95630851879363, 59.51594242539448], [-102.11996489173809, 59.4718593323693], [-96.44526335797602, 63.25173080516217], [-100.82187020582201, 67.53592431503803], [-112.53575880038885, 67.41321684451043]]]}}, {"type": "Feature", "properties": {"bin": "81223ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-163.39292691687498, 42.461841701752746], [-161.56979335131368, 46.51349897531834], [-165.61336675442524, 49.89597414875072], [-171.87311046039585, 49.05085282910134], [-173.2513616288856, 44.74985555511408], [-168.8876761772056, 41.53861492567143], [-163.39292691687498, 42.461841701752746]]]}}, {"type": "Feature", "properties": {"bin": "810fbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-92.69122776477644, 71.22912791615148], [-100.82187020582201, 67.53592431503803], [-96.44526335797602, 63.25173080516217], [-86.44620486365478, 62.18752970394471], [-78.07765942986177, 65.18096713675398], [-79.30823910622338, 69.8572858007267], [-92.69122776477644, 71.22912791615148]]]}}, {"type": "Feature", "properties": {"bin": "810c7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-149.2025168456928, 63.94824319117261], [-155.36073868635916, 60.70120286769721], [-152.70260638958075, 57.14185650944261], [-145.6125157209927, 56.56697923674092], [-139.6835934816099, 59.16948256665964], [-140.41211093213903, 62.92006172739451], [-149.2025168456928, 63.94824319117261]]]}}, {"type": "Feature", "properties": {"bin": "8102fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-115.60168302411815, 75.13310683752093], [-120.27955037212989, 70.85340170404048], [-112.53575880038885, 67.41321684451043], [-100.82187020582201, 67.53592431503803], [-92.69122776477644, 71.22912791615148], [-98.2518918239992, 75.42296242259827], [-115.60168302411815, 75.13310683752093]]]}}, {"type": "Feature", "properties": {"bin": "81787ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-130.4608587551884, 0.843603111016541], [-132.10150849305654, -3.156710274879981], [-129.7100658202636, -6.134248764846944], [-125.88346072177119, -5.215027607862706], [-124.2984927797677, -1.447642860200202], [-126.47619542382564, 1.6263637306496364], [-130.4608587551884, 0.843603111016541]]]}}, {"type": "Feature", "properties": {"bin": "811d7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-131.2901594178203, 46.41694831075058], [-128.90985381013775, 50.15451159756744], [-133.85114156470928, 52.84669103300533], [-138.99195596812496, 51.521279104200275], [-138.90425748140544, 50.316149210497564], [-140.06320040294017, 47.862031640242165], [-136.7018216781215, 45.34099129109544], [-131.2901594178203, 46.41694831075058]]]}}, {"type": "Feature", "properties": {"bin": "815cbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-160.44607430026895, 11.231115019630435], [-161.77338167921764, 6.766536253596437], [-158.59967491814012, 3.3357348575173495], [-154.0294052002189, 4.260374459536216], [-152.5335322367957, 8.71898308656318], [-155.7634836482284, 12.26582364388199], [-160.44607430026895, 11.231115019630435]]]}}, {"type": "Feature", "properties": {"bin": "8136fffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-149.34707529879068, 29.891830084602514], [-151.04796662686522, 25.669243623986258], [-147.69594788211106, 22.16693900740581], [-142.7188705783351, 22.885971422359724], [-140.91889130500928, 27.061192038819833], [-144.17342232410294, 30.569950882968847], [-149.34707529879068, 29.891830084602514]]]}}, {"type": "Feature", "properties": {"bin": "8112bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-133.52109292003715, 56.759266243298875], [-133.85114156470928, 52.84669103300533], [-128.90985381013775, 50.15451159756743], [-123.12286550407035, 50.98471128168906], [-121.4424549287285, 54.916649815151494], [-126.85253575324182, 58.04535010415047], [-133.52109292003715, 56.759266243298875]]]}}, {"type": "Feature", "properties": {"bin": "81373ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-153.03739182353243, 43.44325276436556], [-154.78487065089823, 39.9092677035244], [-151.12386440058128, 37.032961967755135], [-145.74636904346727, 37.68759229063255], [-143.8463112012841, 41.20828589932378], [-147.45009391663316, 44.09362423911827], [-153.03739182353243, 43.44325276436556]]]}}, {"type": "Feature", "properties": {"bin": "8148bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-97.9056342663466, 23.58979436809324], [-94.74356847987167, 27.264005617361743], [-96.66289038040519, 31.619530626908528], [-102.09323459159486, 32.26874743091332], [-105.25067839657362, 28.43865978592777], [-103.01162576662247, 24.12172726544782], [-97.9056342663466, 23.58979436809324]]]}}, {"type": "Feature", "properties": {"bin": "810cfffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-164.0655884448202, 60.72912581441262], [-168.0262941563394, 56.99746478128345], [-165.99329996754696, 55.4225091325656], [-163.66453871424696, 53.77357145650912], [-157.2827709187156, 54.01377148101899], [-152.70260638958075, 57.14185650944261], [-155.36073868635916, 60.70120286769721], [-164.0655884448202, 60.72912581441262]]]}}, {"type": "Feature", "properties": {"bin": "816d3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-92.74826367817671, 10.965445078249571], [-89.86490654761025, 14.465456015426508], [-91.35930158406566, 18.62870219128589], [-96.05020989622146, 19.26900694125663], [-99.00408607712038, 15.551320300550213], [-97.2122610082857, 11.421136455613714], [-92.74826367817671, 10.965445078249571]]]}}, {"type": "Feature", "properties": {"bin": "816fbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-107.80031250106053, -2.564066772676413], [-105.17323884809628, 0.8701881901666885], [-107.10416387391813, 4.548448008485312], [-111.60261207801032, 4.7853989171504105], [-113.91041930526723, 1.3300762483231612], [-111.84870286236902, -2.1675662435525287], [-109.71988821036106, -2.2812832631930022], [-107.80031250106053, -2.564066772676413]]]}}, {"type": "Feature", "properties": {"bin": "81287ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-130.22263777229935, 39.442424221906194], [-127.95866237076233, 43.41920841314796], [-131.2901594178203, 46.41694831075058], [-136.7018216781215, 45.34099129109544], [-138.45029122366302, 41.457139817335765], [-135.31985086435014, 38.551076772095065], [-130.22263777229935, 39.442424221906194]]]}}, {"type": "Feature", "properties": {"bin": "81463ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-172.64626329548403, 28.208961817949742], [-173.6703874763115, 23.782822700979143], [-171.353025480008, 21.946696034993323], [-170.26790510748518, 20.96411360620605], [-165.75801721847134, 22.310289219453917], [-164.45647827941468, 26.67326523622734], [-166.7570372705684, 28.616915510288084], [-167.88337203384344, 29.625507898230126], [-172.64626329548403, 28.208961817949742]]]}}, {"type": "Feature", "properties": {"bin": "816e3ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-113.91041930526723, 1.3300762483231612], [-111.60261207801032, 4.7853989171504105], [-113.77793956806565, 8.621777037639923], [-118.34853420742208, 8.781042023506567], [-120.47268446128629, 5.165048115302317], [-118.22978761288444, 1.5466127001194412], [-113.91041930526723, 1.3300762483231612]]]}}, {"type": "Feature", "properties": {"bin": "8146bffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-171.35903250000362, 16.594714504739436], [-170.26790510748518, 20.96411360620605], [-171.35302557803124, 21.9466961199613], [-173.6703874763115, 23.782822700979143], [-178.22376950605556, 22.09268123220156], [-178.95063664056067, 17.743332187238174], [-175.4582711140254, 15.285730312483956], [-171.35903250000362, 16.594714504739436]]]}}, {"type": "Feature", "properties": {"bin": "815cfffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-152.5335322367957, 8.71898308656318], [-154.0294052002189, 4.260374459536216], [-150.91862197114955, 0.796995066489417], [-146.33638072286848, 1.6772949381945048], [-144.72979242136543, 6.045591181415268], [-147.80006555587835, 9.628747217956542], [-152.5335322367957, 8.71898308656318]]]}}, {"type": "Feature", "properties": {"bin": "81473ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-167.88337203384344, 29.625507898230126], [-166.52892825112713, 33.96535450751626], [-170.27191812997157, 37.14623592274974], [-175.56432922504848, 35.741206971176496], [-176.54267313535857, 31.148162090824524], [-172.64626329548403, 28.208961817949742], [-167.88337203384344, 29.625507898230126]]]}}, {"type": "Feature", "properties": {"bin": "81493ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-106.5596852317401, 12.150574686647923], [-103.81933932397637, 15.969878062915633], [-105.94643547761567, 20.212678725972662], [-111.01600127930239, 20.479742425174795], [-113.6290340058613, 16.486147588602186], [-111.32693234897052, 12.401690461483298], [-106.5596852317401, 12.150574686647923]]]}}, {"type": "Feature", "properties": {"bin": "81703ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-173.38014762578527, 7.972793830841406], [-174.31673738369324, 3.8210244943304374], [-171.37544324872502, 0.6498705655764005], [-167.31261713417402, 1.5147974903819637], [-166.16940101623453, 5.76714668637842], [-169.2931299839693, 9.060308038526605], [-173.38014762578527, 7.972793830841406]]]}}, {"type": "Feature", "properties": {"bin": "816cbffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-101.0482432081896, 0.3854149473714002], [-98.30082499679779, 3.9382989654374896], [-98.81508705286207, 5.250784486119955], [-99.98131321467868, 7.817460742770009], [-104.53497491114089, 8.135308829772034], [-107.10416387391813, 4.548448008485312], [-105.17323884809628, 0.8701881901666885], [-101.0482432081896, 0.3854149473714002]]]}}, {"type": "Feature", "properties": {"bin": "816d7ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-89.86490654761025, 14.465456015426508], [-92.74826367817671, 10.965445078249571], [-92.24563456622447, 9.646037390947777], [-91.12007106136942, 7.059508613810282], [-86.58999355148684, 6.605186625257107], [-83.84368504845844, 10.069625269478522], [-85.63106856426799, 13.83685380982093], [-89.86490654761025, 14.465456015426508]]]}}, {"type": "Feature", "properties": {"bin": "81267ffffffffff"}, "geometry": {"type": "Polygon", "coordinates": [[[-88.0658863098819, 34.05983621723471], [-84.58516703208814, 37.099588896819924], [-85.70319925935871, 41.16126851923316], [-91.47626179179873, 42.444959538714684], [-92.81940987606531, 41.45120656106154], [-95.24686215665145, 39.326802934475495], [-93.26521175979074, 35.0901083935365], [-88.0658863098819, 34.05983621723471]]]}}]} diff --git a/tests/pbf/muni-11-327-791.pbf b/tests/pbf/muni-11-327-791.pbf new file mode 100644 index 000000000..0415beff1 Binary files /dev/null and b/tests/pbf/muni-11-327-791.pbf differ diff --git a/tests/pbf/places-1-1-0-clip.json b/tests/pbf/places-1-1-0-clip.json new file mode 100644 index 000000000..daad1e626 --- /dev/null +++ b/tests/pbf/places-1-1-0-clip.json @@ -0,0 +1,211 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_populated_places", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "NAME": "Reims" }, "geometry": { "type": "Point", "coordinates": [ 4.042969, 49.239121 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Diekirch" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 49.894634 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Arlon" }, "geometry": { "type": "Point", "coordinates": [ 5.800781, 49.696062 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luxembourg" }, "geometry": { "type": "Point", "coordinates": [ 6.108398, 49.610710 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Metz" }, "geometry": { "type": "Point", "coordinates": [ 6.196289, 49.124219 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Grevenmacher" }, "geometry": { "type": "Point", "coordinates": [ 6.416016, 49.667628 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Saarbrรผcken" }, "geometry": { "type": "Point", "coordinates": [ 6.987305, 49.239121 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Koblenz" }, "geometry": { "type": "Point", "coordinates": [ 7.602539, 50.345460 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Wiesbaden" }, "geometry": { "type": "Point", "coordinates": [ 8.261719, 50.092393 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mainz" }, "geometry": { "type": "Point", "coordinates": [ 8.261719, 49.979488 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Karlsruhe" }, "geometry": { "type": "Point", "coordinates": [ 8.393555, 49.009051 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kassel" }, "geometry": { "type": "Point", "coordinates": [ 9.492188, 51.289406 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Braunschweig" }, "geometry": { "type": "Point", "coordinates": [ 10.502930, 52.241256 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Gรถttingen" }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 51.508742 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Erfurt" }, "geometry": { "type": "Point", "coordinates": [ 11.030273, 50.958427 ] } } +, +{ "type": "Feature", "properties": { "NAME": "GieรŸen" }, "geometry": { "type": "Point", "coordinates": [ 8.657227, 50.597186 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Frankfurt" }, "geometry": { "type": "Point", "coordinates": [ 8.657227, 50.092393 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mannheim" }, "geometry": { "type": "Point", "coordinates": [ 8.481445, 49.496675 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Heidelberg" }, "geometry": { "type": "Point", "coordinates": [ 8.701172, 49.410973 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Coburg" }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 50.261254 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Wรผrzburg" }, "geometry": { "type": "Point", "coordinates": [ 9.931641, 49.809632 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Fรผrth" }, "geometry": { "type": "Point", "coordinates": [ 10.986328, 49.468124 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nรผrnberg" }, "geometry": { "type": "Point", "coordinates": [ 11.074219, 49.439557 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Troyes" }, "geometry": { "type": "Point", "coordinates": [ 4.086914, 48.341646 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Auxerre" }, "geometry": { "type": "Point", "coordinates": [ 3.559570, 47.813155 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Dijon" }, "geometry": { "type": "Point", "coordinates": [ 5.009766, 47.338823 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Nancy" }, "geometry": { "type": "Point", "coordinates": [ 6.196289, 48.690960 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Besanรงon" }, "geometry": { "type": "Point", "coordinates": [ 6.020508, 47.219568 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Strasbourg" }, "geometry": { "type": "Point", "coordinates": [ 7.734375, 48.574790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Freiburg" }, "geometry": { "type": "Point", "coordinates": [ 7.866211, 47.989922 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Mulhouse" }, "geometry": { "type": "Point", "coordinates": [ 7.338867, 47.754098 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Basel" }, "geometry": { "type": "Point", "coordinates": [ 7.602539, 47.576526 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Delรฉmont" }, "geometry": { "type": "Point", "coordinates": [ 7.338867, 47.368594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Biel" }, "geometry": { "type": "Point", "coordinates": [ 7.250977, 47.159840 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Solothurn" }, "geometry": { "type": "Point", "coordinates": [ 7.558594, 47.219568 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Liestal" }, "geometry": { "type": "Point", "coordinates": [ 7.734375, 47.487513 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Aarau" }, "geometry": { "type": "Point", "coordinates": [ 8.041992, 47.398349 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Luzern" }, "geometry": { "type": "Point", "coordinates": [ 8.261719, 47.040182 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Geneva" }, "geometry": { "type": "Point", "coordinates": [ 6.152344, 46.195042 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Neuchรขtel" }, "geometry": { "type": "Point", "coordinates": [ 6.943359, 47.010226 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Lausanne" }, "geometry": { "type": "Point", "coordinates": [ 6.635742, 46.528635 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Annecy" }, "geometry": { "type": "Point", "coordinates": [ 6.108398, 45.890008 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Fribourg" }, "geometry": { "type": "Point", "coordinates": [ 7.163086, 46.800059 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bern" }, "geometry": { "type": "Point", "coordinates": [ 7.470703, 46.920255 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sion" }, "geometry": { "type": "Point", "coordinates": [ 7.338867, 46.225453 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Sarnen" }, "geometry": { "type": "Point", "coordinates": [ 8.261719, 46.890232 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stans" }, "geometry": { "type": "Point", "coordinates": [ 8.393555, 46.950262 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Aosta" }, "geometry": { "type": "Point", "coordinates": [ 7.294922, 45.736860 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Stuttgart" }, "geometry": { "type": "Point", "coordinates": [ 9.184570, 48.777913 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Schaffhausen" }, "geometry": { "type": "Point", "coordinates": [ 8.613281, 47.694974 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Frauenfeld" }, "geometry": { "type": "Point", "coordinates": [ 8.920898, 47.546872 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zรผrich" }, "geometry": { "type": "Point", "coordinates": [ 8.569336, 47.368594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zug" }, "geometry": { "type": "Point", "coordinates": [ 8.481445, 47.189712 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Glarus" }, "geometry": { "type": "Point", "coordinates": [ 9.052734, 47.040182 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Herisau" }, "geometry": { "type": "Point", "coordinates": [ 9.272461, 47.368594 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Saint Gallen" }, "geometry": { "type": "Point", "coordinates": [ 9.360352, 47.428087 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Appenzell" }, "geometry": { "type": "Point", "coordinates": [ 9.404297, 47.338823 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bregenz" }, "geometry": { "type": "Point", "coordinates": [ 9.755859, 47.517201 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vaduz" }, "geometry": { "type": "Point", "coordinates": [ 9.536133, 47.129951 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ulm" }, "geometry": { "type": "Point", "coordinates": [ 10.019531, 48.400032 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Augsburg" }, "geometry": { "type": "Point", "coordinates": [ 10.898438, 48.341646 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Schwyz" }, "geometry": { "type": "Point", "coordinates": [ 8.657227, 47.010226 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Altdorf" }, "geometry": { "type": "Point", "coordinates": [ 8.657227, 46.890232 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Berlin" }, "geometry": { "type": "Point", "coordinates": [ 13.403320, 52.536273 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Magdeburg" }, "geometry": { "type": "Point", "coordinates": [ 11.601562, 52.133488 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Potsdam" }, "geometry": { "type": "Point", "coordinates": [ 13.051758, 52.402419 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Regensburg" }, "geometry": { "type": "Point", "coordinates": [ 12.128906, 49.009051 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Cottbus" }, "geometry": { "type": "Point", "coordinates": [ 14.326172, 51.781436 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zielona Gรณra" }, "geometry": { "type": "Point", "coordinates": [ 15.512695, 51.944265 ] } } +, +{ "type": "Feature", "properties": { "NAME": "ฤŒeskรฉ Budฤ›jovice" }, "geometry": { "type": "Point", "coordinates": [ 14.458008, 48.980217 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Hradec Krรกlovรฉ" }, "geometry": { "type": "Point", "coordinates": [ 15.820312, 50.205033 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Pardubice" }, "geometry": { "type": "Point", "coordinates": [ 15.776367, 50.035974 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Jihlava" }, "geometry": { "type": "Point", "coordinates": [ 15.600586, 49.410973 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Brno" }, "geometry": { "type": "Point", "coordinates": [ 16.611328, 49.210420 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Poznaล„" }, "geometry": { "type": "Point", "coordinates": [ 16.918945, 52.402419 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Wrocล‚aw" }, "geometry": { "type": "Point", "coordinates": [ 17.050781, 51.124213 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Opole" }, "geometry": { "type": "Point", "coordinates": [ 17.929688, 50.680797 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Olomouc" }, "geometry": { "type": "Point", "coordinates": [ 17.270508, 49.582226 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ostrava" }, "geometry": { "type": "Point", "coordinates": [ 18.237305, 49.837982 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zlรญn" }, "geometry": { "type": "Point", "coordinates": [ 17.666016, 49.239121 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Gliwice" }, "geometry": { "type": "Point", "coordinates": [ 18.676758, 50.317408 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bytom" }, "geometry": { "type": "Point", "coordinates": [ 18.896484, 50.345460 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Katowice" }, "geometry": { "type": "Point", "coordinates": [ 19.028320, 50.261254 ] } } +, +{ "type": "Feature", "properties": { "NAME": "ลฝilina" }, "geometry": { "type": "Point", "coordinates": [ 18.764648, 49.210420 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Ingolstadt" }, "geometry": { "type": "Point", "coordinates": [ 11.469727, 48.777913 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Munich" }, "geometry": { "type": "Point", "coordinates": [ 11.557617, 48.136767 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Passau" }, "geometry": { "type": "Point", "coordinates": [ 13.447266, 48.574790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Linz" }, "geometry": { "type": "Point", "coordinates": [ 14.282227, 48.312428 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Vienna" }, "geometry": { "type": "Point", "coordinates": [ 16.347656, 48.195387 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Wiener Neustadt" }, "geometry": { "type": "Point", "coordinates": [ 16.259766, 47.813155 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Eisenstadt" }, "geometry": { "type": "Point", "coordinates": [ 16.523438, 47.842658 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Bratislava" }, "geometry": { "type": "Point", "coordinates": [ 17.138672, 48.136767 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Trnava" }, "geometry": { "type": "Point", "coordinates": [ 17.578125, 48.370848 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Gyล‘r" }, "geometry": { "type": "Point", "coordinates": [ 17.622070, 47.694974 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Banskรก Bystrica" }, "geometry": { "type": "Point", "coordinates": [ 19.160156, 48.719961 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zvolen" }, "geometry": { "type": "Point", "coordinates": [ 19.116211, 48.574790 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Novi Sad" }, "geometry": { "type": "Point", "coordinates": [ 19.863281, 45.243953 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Zrenjanin" }, "geometry": { "type": "Point", "coordinates": [ 20.390625, 45.367584 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Timiศ™oara" }, "geometry": { "type": "Point", "coordinates": [ 21.225586, 45.767523 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Reศ™iศ›a" }, "geometry": { "type": "Point", "coordinates": [ 21.884766, 45.305803 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Tuzla" }, "geometry": { "type": "Point", "coordinates": [ 18.676758, 44.559163 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Belgrade" }, "geometry": { "type": "Point", "coordinates": [ 20.478516, 44.809122 ] } } +, +{ "type": "Feature", "properties": { "NAME": "ฤŒaฤak" }, "geometry": { "type": "Point", "coordinates": [ 20.346680, 43.897892 ] } } +, +{ "type": "Feature", "properties": { "NAME": "Kragujevac" }, "geometry": { "type": "Point", "coordinates": [ 20.917969, 44.024422 ] } } +] } +] } diff --git a/tests/pbf/places-1-1-0.pbf b/tests/pbf/places-1-1-0.pbf new file mode 100644 index 000000000..e36effdb0 Binary files /dev/null and b/tests/pbf/places-1-1-0.pbf differ diff --git a/tests/pbf/region.json b/tests/pbf/region.json new file mode 100644 index 000000000..19b21c965 --- /dev/null +++ b/tests/pbf/region.json @@ -0,0 +1,135 @@ + { + "coordinates": [ + [ + [ + [ + 13.577060272719763, + 53.17369971291083 + ], + [ + 10.704205888641951, + 52.74867374387799 + ], + [ + 8.234559137417222, + 50.4321686022941 + ], + [ + 4.20248280888643, + 49.91569934015271 + ], + [ + 3.3960675431802656, + 47.351710786357756 + ], + [ + 4.958497120486356, + 45.82785468647634 + ], + [ + 7.680148642243836, + 45.54618382040567 + ], + [ + 10.704205888641951, + 47.82759699398349 + ], + [ + 13.728263135039242, + 48.332677316517476 + ], + [ + 16.903523243756865, + 47.24917200504791 + ], + [ + 19.272368086768267, + 48.26561972235635 + ], + [ + 19.52437285730184, + 50.97481113632679 + ], + [ + 16.701919427330296, + 52.53459175523133 + ], + [ + 13.577060272719763, + 53.17369971291083 + ] + ], + [ + [ + 14.78668317127898, + 51.66775442536286 + ], + [ + 12.46823928237373, + 51.6051918576735 + ], + [ + 11.208215429708275, + 50.78400718973347 + ], + [ + 11.359418292027812, + 49.980563422399655 + ], + [ + 12.417838328266726, + 49.39363856874314 + ], + [ + 14.181871721999357, + 49.32798696801095 + ], + [ + 16.046707023944435, + 50.62440671313237 + ], + [ + 14.78668317127898, + 51.66775442536286 + ] + ] + ], + [ + [ + [ + 21.055284848897287, + 46.16048194834923 + ], + [ + 18.988845730525668, + 45.81027671022295 + ], + [ + 18.53523714356635, + 45.13878150945956 + ], + [ + 18.585638097672586, + 43.989754759795915 + ], + [ + 19.896062904445103, + 43.18663878167516 + ], + [ + 22.31530870156351, + 44.134624205316555 + ], + [ + 22.31530870156351, + 45.280813880909534 + ], + [ + 21.055284848897287, + 46.16048194834923 + ] + ] + ] + ], + "type": "MultiPolygon" + } diff --git a/tests/pbf/roads-1-1-0-clip.json b/tests/pbf/roads-1-1-0-clip.json new file mode 100644 index 000000000..bc07f2305 --- /dev/null +++ b/tests/pbf/roads-1-1-0-clip.json @@ -0,0 +1,1993 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "ne_10m_roads", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "name": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.042969, 49.296472 ], [ 3.999023, 49.325122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.086914, 49.239121 ], [ 4.042969, 49.296472 ], [ 3.999023, 49.296472 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.999023, 49.239121 ], [ 4.042969, 49.210420 ], [ 4.086914, 49.239121 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.086914, 49.267805 ], [ 4.086914, 49.210420 ], [ 4.218750, 49.181703 ], [ 4.306641, 49.037868 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.955078, 49.037868 ], [ 4.042969, 49.239121 ] ] } } +, +{ "type": "Feature", "properties": { "name": "420" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.526367, 49.866317 ], [ 4.526367, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { "name": "411" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.229492, 50.035974 ], [ 5.229492, 50.035974 ], [ 5.273438, 49.922935 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.361328, 49.894634 ], [ 5.405273, 50.064192 ], [ 5.405273, 50.064192 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.009766, 49.696062 ], [ 5.097656, 49.866317 ], [ 5.229492, 49.866317 ], [ 5.273438, 49.922935 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.273438, 49.894634 ], [ 5.361328, 49.894634 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.273438, 49.894634 ], [ 5.361328, 49.922935 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.493164, 49.866317 ], [ 5.361328, 49.894634 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.350586, 49.525208 ], [ 4.174805, 49.296472 ], [ 4.086914, 49.267805 ] ] } } +, +{ "type": "Feature", "properties": { "name": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.174805, 49.866317 ], [ 4.438477, 49.894634 ], [ 4.702148, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { "name": "46" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.790039, 49.752880 ], [ 4.350586, 49.525208 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.218750, 48.719961 ], [ 4.306641, 49.066668 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.570312, 48.719961 ], [ 4.570312, 48.806863 ], [ 4.350586, 48.951366 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.185547, 49.496675 ], [ 5.009766, 49.410973 ], [ 4.833984, 49.439557 ], [ 4.746094, 49.382373 ], [ 4.526367, 49.382373 ], [ 4.394531, 49.296472 ], [ 4.042969, 49.239121 ] ] } } +, +{ "type": "Feature", "properties": { "name": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.790039, 49.752880 ], [ 5.009766, 49.696062 ] ] } } +, +{ "type": "Feature", "properties": { "name": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.625000, 49.439557 ], [ 5.405273, 49.468124 ], [ 5.361328, 49.582226 ], [ 5.009766, 49.696062 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.185547, 49.496675 ], [ 5.185547, 49.553726 ], [ 5.053711, 49.610710 ], [ 5.053711, 49.696062 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.361328, 49.525208 ], [ 5.185547, 49.496675 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.405273, 49.181703 ], [ 5.229492, 49.353756 ], [ 5.185547, 49.496675 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.449219, 49.124219 ], [ 5.405273, 49.181703 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.273438, 49.095452 ], [ 5.273438, 48.835797 ], [ 5.185547, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.493164, 49.095452 ], [ 5.317383, 49.124219 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.625000, 48.690960 ], [ 5.493164, 48.806863 ], [ 5.537109, 48.980217 ], [ 5.449219, 49.037868 ], [ 5.449219, 49.124219 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.502930, 52.562995 ], [ 10.502930, 52.321911 ] ] } } +, +{ "type": "Feature", "properties": { "name": "35" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.998047, 50.401515 ], [ 8.085938, 50.373496 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.756836, 50.120578 ], [ 5.756836, 50.064192 ], [ 5.493164, 49.866317 ] ] } } +, +{ "type": "Feature", "properties": { "name": "421" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 50.148746 ], [ 6.108398, 49.866317 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.328125, 50.176898 ], [ 6.372070, 50.176898 ] ] } } +, +{ "type": "Feature", "properties": { "name": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.372070, 50.176898 ], [ 6.416016, 50.205033 ] ] } } +, +{ "type": "Feature", "properties": { "name": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.372070, 50.176898 ], [ 6.591797, 50.035974 ] ] } } +, +{ "type": "Feature", "properties": { "name": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.591797, 50.035974 ], [ 6.899414, 49.979488 ] ] } } +, +{ "type": "Feature", "properties": { "name": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.943359, 50.205033 ], [ 6.943359, 50.261254 ] ] } } +, +{ "type": "Feature", "properties": { "name": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.943359, 50.205033 ], [ 6.855469, 50.148746 ], [ 6.943359, 49.979488 ], [ 6.723633, 49.781264 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.493164, 49.866317 ], [ 5.537109, 49.752880 ], [ 5.800781, 49.667628 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.493164, 50.092393 ], [ 5.581055, 50.007739 ], [ 5.712891, 49.979488 ], [ 5.800781, 49.667628 ] ] } } +, +{ "type": "Feature", "properties": { "name": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.625000, 49.439557 ], [ 5.625000, 49.525208 ], [ 5.800781, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.625000, 49.210420 ], [ 5.625000, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.756836, 49.496675 ], [ 5.800781, 49.667628 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.756836, 49.496675 ], [ 5.844727, 49.496675 ], [ 5.932617, 49.410973 ] ] } } +, +{ "type": "Feature", "properties": { "name": "421" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 49.866317 ], [ 6.152344, 49.610710 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.800781, 49.553726 ], [ 6.108398, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 49.610710 ], [ 6.108398, 49.582226 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.800781, 49.667628 ], [ 5.976562, 49.639177 ], [ 6.108398, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 49.582226 ], [ 6.108398, 49.353756 ], [ 6.196289, 49.325122 ], [ 6.152344, 49.210420 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 49.610710 ], [ 6.152344, 49.610710 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 49.610710 ], [ 6.152344, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.317383, 49.124219 ], [ 5.537109, 49.210420 ], [ 5.800781, 49.181703 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.932617, 49.410973 ], [ 6.020508, 49.325122 ], [ 6.152344, 49.296472 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.625000, 49.439557 ], [ 5.712891, 49.439557 ], [ 5.756836, 49.353756 ], [ 6.020508, 49.181703 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.196289, 49.181703 ], [ 5.888672, 49.210420 ], [ 5.625000, 49.124219 ], [ 4.877930, 49.095452 ], [ 4.526367, 49.009051 ], [ 4.306641, 49.066668 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.196289, 49.152970 ], [ 6.196289, 49.124219 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.240234, 49.124219 ], [ 6.196289, 49.181703 ] ] } } +, +{ "type": "Feature", "properties": { "name": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.635742, 50.035974 ], [ 6.503906, 49.951220 ], [ 6.416016, 49.781264 ], [ 6.196289, 49.667628 ] ] } } +, +{ "type": "Feature", "properties": { "name": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 49.582226 ], [ 6.240234, 49.667628 ], [ 6.416016, 49.667628 ], [ 6.591797, 49.781264 ], [ 6.723633, 49.781264 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 49.610710 ], [ 6.240234, 49.610710 ], [ 6.372070, 49.525208 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.372070, 49.525208 ], [ 6.459961, 49.525208 ], [ 6.416016, 49.496675 ] ] } } +, +{ "type": "Feature", "properties": { "name": "29" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 49.525208 ], [ 6.459961, 49.496675 ], [ 6.547852, 49.439557 ], [ 6.635742, 49.468124 ], [ 6.767578, 49.325122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.767578, 49.809632 ], [ 6.635742, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.767578, 49.809632 ], [ 6.899414, 49.667628 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.635742, 49.752880 ], [ 6.635742, 49.553726 ], [ 6.855469, 49.496675 ], [ 6.943359, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.723633, 49.781264 ], [ 6.811523, 49.752880 ], [ 6.899414, 49.582226 ], [ 6.987305, 49.582226 ] ] } } +, +{ "type": "Feature", "properties": { "name": "422" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.943359, 49.181703 ], [ 6.987305, 49.582226 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.943359, 49.353756 ], [ 6.943359, 49.296472 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.767578, 49.325122 ], [ 6.943359, 49.267805 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.943359, 49.296472 ], [ 6.943359, 49.239121 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.943359, 49.239121 ], [ 6.987305, 49.239121 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.987305, 49.239121 ], [ 7.031250, 49.210420 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.196289, 49.124219 ], [ 6.855469, 49.152970 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.855469, 49.124219 ], [ 7.119141, 48.980217 ], [ 7.119141, 48.835797 ], [ 7.250977, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { "name": "31" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.426758, 50.345460 ], [ 7.514648, 50.205033 ], [ 7.646484, 50.205033 ], [ 7.602539, 50.092393 ], [ 7.690430, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.041992, 50.401515 ], [ 8.041992, 50.401515 ] ] } } +, +{ "type": "Feature", "properties": { "name": "44" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.294922, 50.317408 ], [ 7.207031, 50.233152 ], [ 6.943359, 50.205033 ] ] } } +, +{ "type": "Feature", "properties": { "name": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.690430, 50.007739 ], [ 7.294922, 49.951220 ], [ 7.207031, 49.866317 ], [ 6.899414, 49.979488 ] ] } } +, +{ "type": "Feature", "properties": { "name": "31" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.690430, 50.007739 ], [ 7.866211, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.437500, 50.625073 ], [ 8.437500, 50.625073 ] ] } } +, +{ "type": "Feature", "properties": { "name": "44" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 8.085938, 50.401515 ], [ 8.085938, 50.401515 ] ], [ [ 8.437500, 50.625073 ], [ 8.437500, 50.625073 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.041992, 50.401515 ], [ 8.085938, 50.401515 ] ] } } +, +{ "type": "Feature", "properties": { "name": "31" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.129883, 49.781264 ], [ 7.866211, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.866211, 49.866317 ], [ 7.866211, 49.922935 ] ] } } +, +{ "type": "Feature", "properties": { "name": "35" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.085938, 50.401515 ], [ 8.261719, 50.317408 ], [ 8.261719, 50.176898 ], [ 8.393555, 50.064192 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.173828, 50.007739 ], [ 8.173828, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { "name": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.910156, 49.922935 ], [ 8.173828, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { "name": "42" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.393555, 50.064192 ], [ 8.261719, 50.064192 ], [ 8.173828, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { "name": "35" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.393555, 50.064192 ], [ 8.481445, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.349609, 50.064192 ], [ 8.349609, 49.951220 ], [ 8.173828, 49.951220 ], [ 8.129883, 49.781264 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.899414, 49.667628 ], [ 7.031250, 49.724479 ], [ 7.031250, 49.781264 ], [ 7.119141, 49.781264 ], [ 7.163086, 49.667628 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.163086, 49.667628 ], [ 7.250977, 49.724479 ], [ 7.382812, 49.696062 ], [ 7.514648, 49.809632 ], [ 7.866211, 49.866317 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.987305, 49.582226 ], [ 7.163086, 49.610710 ], [ 7.250977, 49.525208 ], [ 7.382812, 49.525208 ], [ 7.426758, 49.439557 ], [ 7.514648, 49.439557 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.514648, 49.439557 ], [ 7.602539, 49.410973 ], [ 7.602539, 49.239121 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.602539, 49.239121 ], [ 7.514648, 49.210420 ], [ 6.987305, 49.353756 ], [ 6.767578, 49.325122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.866211, 49.866317 ], [ 7.910156, 49.781264 ], [ 7.778320, 49.696062 ], [ 7.866211, 49.496675 ], [ 7.778320, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.778320, 49.468124 ], [ 7.734375, 49.439557 ], [ 8.217773, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.129883, 49.781264 ], [ 8.041992, 49.639177 ], [ 7.910156, 49.610710 ], [ 7.778320, 49.496675 ] ] } } +, +{ "type": "Feature", "properties": { "name": "31" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.305664, 49.553726 ], [ 8.305664, 49.667628 ], [ 8.173828, 49.696062 ], [ 8.129883, 49.781264 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.217773, 49.468124 ], [ 8.305664, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.305664, 49.468124 ], [ 8.437500, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.481445, 49.353756 ], [ 8.349609, 49.410973 ], [ 8.305664, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.690430, 48.748945 ], [ 7.778320, 48.864715 ], [ 7.954102, 48.951366 ], [ 7.954102, 49.095452 ], [ 8.129883, 49.152970 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.261719, 49.066668 ], [ 8.349609, 49.296472 ], [ 8.481445, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.349609, 49.439557 ], [ 8.217773, 49.382373 ], [ 8.129883, 49.210420 ], [ 8.173828, 49.095452 ], [ 8.261719, 49.066668 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.173828, 48.980217 ], [ 8.261719, 49.066668 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.261719, 49.066668 ], [ 8.393555, 49.009051 ] ] } } +, +{ "type": "Feature", "properties": { "name": "331" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.745117, 50.903033 ], [ 8.789062, 50.847573 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.228516, 51.069017 ], [ 8.789062, 50.847573 ] ] } } +, +{ "type": "Feature", "properties": { "name": "331" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.492188, 51.261915 ], [ 9.228516, 51.371780 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.404297, 51.261915 ], [ 9.228516, 51.069017 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.580078, 51.316881 ], [ 9.492188, 51.316881 ], [ 9.448242, 51.399206 ], [ 9.272461, 51.454007 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.843750, 51.454007 ], [ 9.799805, 51.399206 ], [ 9.667969, 51.399206 ], [ 9.492188, 51.261915 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.492188, 51.261915 ], [ 9.448242, 51.096623 ], [ 9.580078, 50.847573 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.833008, 50.597186 ], [ 9.140625, 50.764259 ], [ 9.580078, 50.819818 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.239258, 52.321911 ], [ 10.283203, 52.321911 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.371094, 52.268157 ], [ 10.107422, 52.187405 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.327148, 52.402419 ], [ 10.415039, 52.321911 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.283203, 52.321911 ], [ 10.371094, 52.268157 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.019531, 52.133488 ], [ 10.107422, 52.133488 ], [ 10.195312, 52.052490 ], [ 10.151367, 51.835778 ], [ 9.887695, 51.672555 ], [ 9.843750, 51.454007 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.195312, 52.079506 ], [ 10.546875, 52.241256 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.502930, 52.321911 ], [ 10.502930, 52.241256 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.502930, 52.268157 ], [ 10.371094, 52.268157 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.546875, 52.241256 ], [ 10.502930, 52.052490 ], [ 10.590820, 51.944265 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.689453, 51.808615 ], [ 11.513672, 51.781436 ], [ 10.766602, 51.862924 ], [ 10.678711, 51.944265 ], [ 10.371094, 51.917168 ], [ 10.283203, 51.971346 ], [ 10.151367, 51.971346 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.546875, 52.241256 ], [ 10.722656, 52.295042 ], [ 10.722656, 52.456009 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.502930, 52.268157 ], [ 10.766602, 52.268157 ], [ 10.942383, 52.214339 ], [ 11.030273, 52.241256 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.337891, 51.944265 ], [ 11.118164, 51.944265 ], [ 10.986328, 51.890054 ], [ 10.942383, 51.754240 ], [ 10.854492, 51.699800 ], [ 10.810547, 51.481383 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.151367, 51.862924 ], [ 10.195312, 51.754240 ], [ 10.722656, 51.481383 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.580078, 51.316881 ], [ 9.799805, 51.179343 ], [ 10.107422, 51.124213 ], [ 10.195312, 51.041394 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.975586, 51.124213 ], [ 10.019531, 51.013755 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.580078, 50.819818 ], [ 9.755859, 50.847573 ], [ 10.151367, 51.041394 ], [ 10.371094, 51.013755 ], [ 10.546875, 50.903033 ], [ 10.722656, 50.875311 ], [ 11.206055, 50.958427 ], [ 11.381836, 50.958427 ], [ 11.425781, 50.930738 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.810547, 51.481383 ], [ 10.854492, 51.344339 ], [ 10.986328, 51.234407 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.986328, 51.234407 ], [ 10.942383, 51.124213 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.942383, 51.124213 ], [ 10.942383, 51.013755 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.030273, 50.903033 ], [ 10.942383, 51.013755 ], [ 11.074219, 51.041394 ], [ 11.162109, 51.179343 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.162109, 51.179343 ], [ 11.206055, 51.289406 ], [ 11.030273, 51.481383 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.030273, 50.903033 ], [ 11.030273, 50.986099 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 50.429518 ], [ 10.766602, 50.513427 ], [ 10.854492, 50.541363 ], [ 10.810547, 50.625073 ], [ 11.030273, 50.903033 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.437500, 50.625073 ], [ 8.525391, 50.597186 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.525391, 50.625073 ], [ 8.569336, 50.541363 ], [ 8.701172, 50.485474 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.789062, 50.847573 ], [ 8.701172, 50.652943 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.701172, 50.652943 ], [ 8.613281, 50.513427 ] ] } } +, +{ "type": "Feature", "properties": { "name": "451" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.833008, 50.625073 ], [ 8.569336, 50.120578 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.701172, 50.652943 ], [ 8.833008, 50.625073 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.701172, 50.485474 ], [ 8.964844, 50.401515 ], [ 9.052734, 50.176898 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 50.120578 ], [ 8.393555, 50.064192 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 50.120578 ], [ 8.613281, 50.148746 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.393555, 50.064192 ], [ 8.481445, 50.035974 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.481445, 50.007739 ], [ 8.481445, 49.894634 ], [ 8.613281, 49.837982 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.481445, 50.035974 ], [ 8.613281, 50.064192 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 50.064192 ], [ 8.613281, 50.120578 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 50.064192 ], [ 8.613281, 49.866317 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.052734, 50.176898 ], [ 9.096680, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.052734, 50.176898 ], [ 8.569336, 50.120578 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.711914, 50.485474 ], [ 9.404297, 50.261254 ], [ 9.052734, 50.176898 ] ] } } +, +{ "type": "Feature", "properties": { "name": "451" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 49.837982 ], [ 8.876953, 49.894634 ], [ 8.876953, 49.979488 ], [ 8.964844, 50.035974 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.052734, 49.979488 ], [ 9.008789, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 49.866317 ], [ 8.525391, 49.752880 ], [ 8.569336, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { "name": "451" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 50.120578 ], [ 8.569336, 49.325122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 49.553726 ], [ 8.569336, 49.525208 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 49.525208 ], [ 8.525391, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.855469, 49.152970 ], [ 7.734375, 49.496675 ], [ 8.657227, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.525391, 49.468124 ], [ 8.657227, 49.410973 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.525391, 49.468124 ], [ 8.569336, 49.325122 ] ] } } +, +{ "type": "Feature", "properties": { "name": "35" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 49.837982 ], [ 8.613281, 49.210420 ], [ 8.393555, 49.009051 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 49.124219 ], [ 8.657227, 49.037868 ], [ 9.140625, 48.835797 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.272461, 49.152970 ], [ 9.052734, 49.239121 ], [ 8.657227, 49.267805 ], [ 8.481445, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.096680, 50.007739 ], [ 9.096680, 49.781264 ], [ 9.228516, 49.667628 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.063477, 49.752880 ], [ 9.580078, 49.781264 ], [ 9.536133, 49.866317 ], [ 9.272461, 50.007739 ], [ 8.964844, 50.007739 ], [ 8.920898, 50.064192 ], [ 8.657227, 50.064192 ], [ 8.481445, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.843750, 49.752880 ], [ 9.360352, 49.296472 ], [ 9.228516, 48.980217 ], [ 9.008789, 48.806863 ], [ 9.008789, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.360352, 48.806863 ], [ 9.404297, 48.980217 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.580078, 50.847573 ], [ 9.755859, 50.345460 ], [ 10.063477, 50.092393 ], [ 10.063477, 50.035974 ] ] } } +, +{ "type": "Feature", "properties": { "name": "48" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.063477, 50.007739 ], [ 10.283203, 50.064192 ], [ 10.898438, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.151367, 50.035974 ], [ 10.151367, 50.148746 ], [ 10.327148, 50.429518 ], [ 10.458984, 50.429518 ], [ 10.458984, 50.569283 ], [ 10.678711, 50.680797 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.678711, 50.680797 ], [ 10.766602, 50.736455 ], [ 11.030273, 50.736455 ], [ 11.030273, 50.903033 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.678711, 50.680797 ], [ 10.810547, 50.485474 ], [ 10.942383, 50.401515 ], [ 10.942383, 50.317408 ], [ 11.030273, 50.317408 ], [ 11.074219, 50.233152 ], [ 10.942383, 49.979488 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 49.979488 ], [ 10.854492, 50.035974 ], [ 10.986328, 50.176898 ], [ 10.986328, 50.289339 ], [ 10.898438, 50.429518 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 49.922935 ], [ 10.898438, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 49.951220 ], [ 10.898438, 49.979488 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 49.894634 ], [ 10.898438, 49.922935 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 49.894634 ], [ 10.942383, 49.894634 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 49.951220 ], [ 11.074219, 49.781264 ], [ 10.986328, 49.525208 ], [ 11.118164, 49.382373 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.942383, 49.894634 ], [ 10.986328, 49.866317 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.975586, 49.752880 ], [ 9.931641, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.931641, 49.752880 ], [ 9.843750, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.019531, 49.752880 ], [ 9.975586, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.063477, 49.781264 ], [ 10.107422, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.063477, 49.781264 ], [ 10.063477, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { "name": "43" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.063477, 50.035974 ], [ 9.975586, 49.894634 ], [ 10.107422, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { "name": "43" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.107422, 49.781264 ], [ 10.283203, 49.210420 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.239258, 50.035974 ], [ 10.371094, 49.894634 ], [ 10.371094, 49.781264 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.239258, 49.210420 ], [ 9.448242, 49.210420 ], [ 9.272461, 49.152970 ] ] } } +, +{ "type": "Feature", "properties": { "name": "43" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.283203, 49.210420 ], [ 10.195312, 49.095452 ], [ 10.195312, 48.603858 ], [ 10.107422, 48.574790 ], [ 10.151367, 48.019324 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.986328, 49.553726 ], [ 10.898438, 49.582226 ], [ 10.898438, 49.667628 ], [ 10.766602, 49.752880 ], [ 10.678711, 49.724479 ], [ 10.195312, 49.809632 ], [ 10.063477, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.986328, 49.553726 ], [ 10.986328, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.986328, 49.468124 ], [ 11.074219, 49.439557 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.074219, 49.439557 ], [ 11.118164, 49.439557 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.074219, 49.382373 ], [ 10.986328, 49.325122 ], [ 10.766602, 49.325122 ], [ 10.678711, 49.267805 ], [ 10.239258, 49.210420 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.118164, 49.382373 ], [ 11.250000, 49.410973 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.206055, 49.353756 ], [ 11.206055, 49.382373 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.239258, 48.429201 ], [ 10.371094, 48.574790 ], [ 10.590820, 48.632909 ], [ 10.942383, 48.922499 ], [ 10.986328, 49.095452 ], [ 11.118164, 49.239121 ], [ 11.074219, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { "name": "54" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.042969, 48.253941 ], [ 3.691406, 48.253941 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.911133, 49.009051 ], [ 3.955078, 49.037868 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 3.823242, 48.719961 ], [ 3.955078, 48.719961 ] ], [ [ 3.955078, 48.719961 ], [ 4.042969, 48.777913 ], [ 4.262695, 48.719961 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.867188, 48.893615 ], [ 3.999023, 48.864715 ], [ 4.350586, 48.951366 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.042969, 48.312428 ], [ 3.735352, 48.516604 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.218750, 48.195387 ], [ 4.218750, 48.719961 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.042969, 48.253941 ], [ 4.042969, 48.312428 ] ] } } +, +{ "type": "Feature", "properties": { "name": "54" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.174805, 48.224673 ], [ 4.042969, 48.253941 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.559570, 47.783635 ], [ 3.515625, 47.783635 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.603516, 47.842658 ], [ 3.691406, 47.872144 ], [ 3.735352, 48.019324 ], [ 4.042969, 48.166085 ], [ 4.042969, 48.253941 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.647461, 47.783635 ], [ 3.559570, 47.783635 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 3.427734, 47.338823 ], [ 3.559570, 47.487513 ] ], [ [ 3.559570, 47.487513 ], [ 3.515625, 47.665387 ], [ 3.603516, 47.813155 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "15" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 4.570312, 47.249407 ], [ 4.262695, 47.457809 ], [ 4.042969, 47.487513 ], [ 3.955078, 47.546872 ], [ 3.955078, 47.635784 ], [ 3.735352, 47.724545 ], [ 3.735352, 47.783635 ] ], [ [ 3.735352, 47.783635 ], [ 3.559570, 47.842658 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.570312, 47.872144 ], [ 3.647461, 47.783635 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.042969, 47.487513 ], [ 4.833984, 46.860191 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.262695, 48.719961 ], [ 4.658203, 48.719961 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.306641, 49.037868 ], [ 4.614258, 48.748945 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.086914, 48.312428 ], [ 4.350586, 48.370848 ], [ 4.394531, 48.429201 ], [ 4.746094, 48.429201 ], [ 4.877930, 48.603858 ], [ 4.965820, 48.632909 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.141602, 48.136767 ], [ 4.877930, 48.253941 ], [ 4.790039, 48.224673 ], [ 4.614258, 48.283193 ], [ 4.306641, 48.224673 ], [ 4.174805, 48.312428 ], [ 4.042969, 48.312428 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.185547, 48.777913 ], [ 4.965820, 48.632909 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.658203, 48.719961 ], [ 5.009766, 48.632909 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.009766, 48.632909 ], [ 5.493164, 48.719961 ], [ 5.888672, 48.661943 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.009766, 48.603858 ], [ 5.141602, 48.400032 ], [ 5.097656, 48.166085 ], [ 5.229492, 47.931066 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.229492, 47.901614 ], [ 4.965820, 48.078079 ], [ 4.174805, 48.224673 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.141602, 48.107431 ], [ 5.097656, 48.107431 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.097656, 48.107431 ], [ 4.965820, 48.078079 ], [ 4.833984, 47.931066 ], [ 4.658203, 47.931066 ], [ 4.570312, 47.872144 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.174805, 48.224673 ], [ 4.218750, 48.166085 ], [ 4.306641, 48.166085 ], [ 4.394531, 48.019324 ], [ 4.526367, 47.989922 ], [ 4.570312, 47.724545 ], [ 4.746094, 47.457809 ], [ 5.009766, 47.338823 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.570312, 47.249407 ], [ 4.658203, 47.309034 ], [ 5.141602, 47.309034 ] ] } } +, +{ "type": "Feature", "properties": { "name": "15" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.921875, 47.070122 ], [ 4.746094, 47.100045 ], [ 4.702148, 47.189712 ], [ 4.570312, 47.249407 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.141602, 47.309034 ], [ 5.229492, 47.546872 ], [ 5.185547, 47.724545 ], [ 5.273438, 47.842658 ], [ 5.229492, 47.931066 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.361328, 47.842658 ], [ 5.273438, 47.606163 ], [ 5.185547, 47.546872 ] ] } } +, +{ "type": "Feature", "properties": { "name": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.844727, 48.224673 ], [ 5.712891, 48.195387 ], [ 5.537109, 47.989922 ], [ 5.229492, 47.931066 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.317383, 47.872144 ], [ 5.493164, 47.989922 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.493164, 47.989922 ], [ 5.449219, 48.048710 ], [ 5.537109, 48.195387 ], [ 5.712891, 48.341646 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.053711, 47.309034 ], [ 4.965820, 47.338823 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.053711, 47.309034 ], [ 5.097656, 47.338823 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.053711, 47.309034 ], [ 5.097656, 47.279229 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.185547, 47.546872 ], [ 5.053711, 47.398349 ], [ 5.053711, 47.309034 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.097656, 47.338823 ], [ 5.097656, 47.279229 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.921875, 47.070122 ], [ 4.877930, 47.040182 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.361328, 47.129951 ], [ 5.317383, 47.249407 ], [ 5.141602, 47.309034 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.449219, 47.129951 ], [ 5.449219, 47.070122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.999023, 46.769968 ], [ 4.218750, 46.950262 ], [ 4.306641, 46.950262 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.306641, 46.950262 ], [ 4.350586, 47.070122 ], [ 4.482422, 47.100045 ], [ 4.570312, 47.219568 ] ] } } +, +{ "type": "Feature", "properties": { "name": "607" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.174805, 46.589069 ], [ 4.306641, 46.619261 ], [ 4.394531, 46.709736 ], [ 4.833984, 46.739861 ] ] } } +, +{ "type": "Feature", "properties": { "name": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.790039, 46.286224 ], [ 4.921875, 46.528635 ], [ 4.833984, 46.649436 ], [ 4.833984, 46.950262 ], [ 5.009766, 47.159840 ], [ 5.009766, 47.249407 ], [ 5.141602, 47.309034 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.833984, 46.800059 ], [ 4.877930, 46.769968 ] ] } } +, +{ "type": "Feature", "properties": { "name": "62" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.790039, 46.286224 ], [ 4.658203, 46.407564 ], [ 4.482422, 46.377254 ], [ 4.394531, 46.437857 ], [ 4.350586, 46.437857 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.273438, 46.255847 ], [ 4.921875, 46.286224 ], [ 4.877930, 46.346928 ], [ 4.790039, 46.346928 ] ] } } +, +{ "type": "Feature", "properties": { "name": "15" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.746094, 46.042736 ], [ 4.790039, 46.286224 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.790039, 46.316584 ], [ 4.833984, 46.316584 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.361328, 47.129951 ], [ 5.185547, 47.040182 ], [ 4.921875, 47.070122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.449219, 47.070122 ], [ 4.877930, 46.769968 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 4.921875, 45.859412 ], [ 4.921875, 45.920587 ], [ 5.229492, 46.195042 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.361328, 47.129951 ], [ 5.625000, 46.890232 ], [ 5.317383, 46.558860 ], [ 5.229492, 46.255847 ] ] } } +, +{ "type": "Feature", "properties": { "name": "62" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.229492, 46.255847 ], [ 5.317383, 46.255847 ], [ 5.317383, 46.073231 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.229492, 46.195042 ], [ 5.361328, 46.012224 ] ] } } +, +{ "type": "Feature", "properties": { "name": "611" }, "geometry": { "type": "LineString", "coordinates": [ [ 4.921875, 45.859412 ], [ 5.141602, 45.859412 ], [ 5.317383, 45.951150 ], [ 5.317383, 46.073231 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.361328, 46.012224 ], [ 5.361328, 45.981695 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.712891, 48.370848 ], [ 5.625000, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { "name": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.888672, 48.661943 ], [ 5.932617, 48.516604 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.932617, 48.545705 ], [ 5.888672, 48.545705 ] ] } } +, +{ "type": "Feature", "properties": { "name": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.932617, 48.516604 ], [ 5.844727, 48.224673 ] ] } } +, +{ "type": "Feature", "properties": { "name": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 49.210420 ], [ 6.196289, 49.152970 ], [ 6.064453, 48.922499 ], [ 6.152344, 48.806863 ], [ 6.108398, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 48.719961 ], [ 6.196289, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { "name": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.888672, 48.661943 ], [ 6.108398, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 48.690960 ], [ 6.152344, 48.719961 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.932617, 48.545705 ], [ 6.152344, 48.661943 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.196289, 48.690960 ], [ 6.152344, 48.661943 ] ] } } +, +{ "type": "Feature", "properties": { "name": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 48.690960 ], [ 6.196289, 48.632909 ] ] } } +, +{ "type": "Feature", "properties": { "name": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.635742, 48.048710 ], [ 6.635742, 48.107431 ], [ 6.196289, 48.400032 ], [ 6.196289, 48.632909 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.196289, 48.632909 ], [ 6.416016, 48.603858 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.712891, 48.341646 ], [ 5.712891, 48.370848 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.888672, 48.312428 ], [ 5.756836, 48.312428 ], [ 5.712891, 48.370848 ], [ 5.537109, 48.283193 ], [ 5.361328, 48.283193 ], [ 5.229492, 48.166085 ], [ 4.965820, 48.078079 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.888672, 48.545705 ], [ 5.888672, 48.487486 ], [ 5.712891, 48.370848 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.844727, 48.224673 ], [ 6.503906, 48.195387 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.416016, 48.603858 ], [ 6.723633, 48.574790 ], [ 6.855469, 48.603858 ], [ 6.987305, 48.719961 ], [ 7.250977, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.416016, 48.603858 ], [ 6.899414, 48.400032 ], [ 6.943359, 48.195387 ], [ 7.031250, 48.166085 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 47.635784 ], [ 5.976562, 47.724545 ], [ 5.800781, 47.724545 ], [ 5.405273, 47.872144 ], [ 5.273438, 47.872144 ] ] } } +, +{ "type": "Feature", "properties": { "name": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.976562, 47.309034 ], [ 6.108398, 47.428087 ], [ 6.152344, 47.635784 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.976562, 47.279229 ], [ 6.020508, 47.219568 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.064453, 47.309034 ], [ 5.712891, 46.830134 ] ] } } +, +{ "type": "Feature", "properties": { "name": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 47.635784 ], [ 6.416016, 47.813155 ], [ 6.416016, 47.931066 ], [ 6.635742, 48.048710 ] ] } } +, +{ "type": "Feature", "properties": { "name": "17" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.855469, 47.576526 ], [ 6.503906, 47.694974 ], [ 6.152344, 47.635784 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.338867, 47.754098 ], [ 6.943359, 47.665387 ], [ 6.855469, 47.576526 ] ] } } +, +{ "type": "Feature", "properties": { "name": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.855469, 47.576526 ], [ 6.943359, 47.576526 ], [ 6.987305, 47.487513 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.855469, 47.576526 ], [ 6.811523, 47.457809 ], [ 6.020508, 47.309034 ], [ 5.844727, 47.189712 ], [ 5.361328, 47.129951 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.250977, 48.777913 ], [ 7.207031, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.954102, 48.458352 ], [ 7.646484, 48.545705 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.382812, 48.107431 ], [ 7.250977, 48.166085 ], [ 7.031250, 48.166085 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.734375, 48.690960 ], [ 7.690430, 48.574790 ], [ 7.514648, 48.516604 ], [ 7.470703, 48.341646 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.470703, 48.341646 ], [ 7.382812, 48.283193 ], [ 7.338867, 48.078079 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.470703, 48.341646 ], [ 7.646484, 48.429201 ], [ 7.778320, 48.661943 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.514648, 47.635784 ], [ 7.426758, 47.754098 ], [ 7.382812, 48.107431 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.382812, 48.107431 ], [ 7.646484, 48.048710 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.250977, 48.777913 ], [ 7.646484, 48.777913 ], [ 7.778320, 48.661943 ] ] } } +, +{ "type": "Feature", "properties": { "name": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.690430, 48.603858 ], [ 7.822266, 48.603858 ], [ 7.954102, 48.516604 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.778320, 48.574790 ], [ 7.822266, 48.690960 ], [ 8.041992, 48.806863 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.778320, 48.661943 ], [ 7.910156, 48.719961 ], [ 8.173828, 48.980217 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.734375, 48.574790 ], [ 7.778320, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.690430, 48.516604 ], [ 7.734375, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.778320, 48.574790 ], [ 7.910156, 48.545705 ] ] } } +, +{ "type": "Feature", "properties": { "name": "35" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.393555, 48.980217 ], [ 7.954102, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { "name": "35" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.954102, 48.574790 ], [ 7.734375, 48.224673 ], [ 7.822266, 48.107431 ], [ 7.778320, 48.019324 ] ] } } +, +{ "type": "Feature", "properties": { "name": "531" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 47.989922 ], [ 8.393555, 48.136767 ], [ 8.217773, 48.166085 ], [ 8.217773, 48.283193 ], [ 7.998047, 48.312428 ], [ 7.954102, 48.458352 ] ] } } +, +{ "type": "Feature", "properties": { "name": "512" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.294922, 47.754098 ], [ 7.075195, 47.872144 ], [ 6.767578, 47.842658 ], [ 6.635742, 47.960502 ], [ 6.635742, 48.048710 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.338867, 48.078079 ], [ 7.338867, 47.783635 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.338867, 47.783635 ], [ 7.514648, 47.635784 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.338867, 47.754098 ], [ 7.382812, 47.783635 ] ] } } +, +{ "type": "Feature", "properties": { "name": "35" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.778320, 48.019324 ], [ 7.602539, 47.931066 ], [ 7.602539, 47.635784 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.558594, 47.783635 ], [ 7.338867, 47.754098 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.514648, 47.635784 ], [ 7.602539, 47.635784 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.602539, 47.635784 ], [ 7.646484, 47.546872 ], [ 7.822266, 47.546872 ] ] } } +, +{ "type": "Feature", "properties": { "name": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.987305, 47.487513 ], [ 7.075195, 47.457809 ] ] } } +, +{ "type": "Feature", "properties": { "name": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.075195, 47.457809 ], [ 7.207031, 47.368594 ], [ 7.382812, 47.338823 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.207031, 47.219568 ], [ 7.382812, 47.159840 ] ] } } +, +{ "type": "Feature", "properties": { "name": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.382812, 47.338823 ], [ 7.382812, 47.279229 ], [ 7.207031, 47.219568 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.382812, 47.159840 ], [ 7.207031, 47.129951 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.207031, 47.129951 ], [ 7.031250, 47.040182 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.250977, 47.129951 ], [ 7.382812, 47.040182 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.646484, 47.546872 ], [ 7.646484, 47.457809 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.910156, 47.309034 ], [ 7.734375, 47.309034 ], [ 7.514648, 47.219568 ], [ 7.514648, 47.159840 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.514648, 47.189712 ], [ 7.382812, 47.159840 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.646484, 47.635784 ], [ 7.778320, 47.842658 ], [ 8.085938, 47.931066 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.217773, 47.457809 ], [ 8.129883, 47.457809 ], [ 8.041992, 47.546872 ], [ 7.602539, 47.635784 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.734375, 47.546872 ], [ 7.910156, 47.309034 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.822266, 47.309034 ], [ 7.910156, 47.309034 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.041992, 47.517201 ], [ 8.173828, 47.606163 ], [ 8.261719, 47.606163 ], [ 8.305664, 47.546872 ], [ 8.525391, 47.546872 ], [ 8.613281, 47.428087 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.217773, 47.457809 ], [ 7.910156, 47.309034 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.393555, 47.428087 ], [ 8.525391, 47.398349 ] ] } } +, +{ "type": "Feature", "properties": { "name": "35" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.910156, 47.309034 ], [ 7.998047, 47.189712 ], [ 8.173828, 47.189712 ], [ 8.305664, 47.070122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.437500, 47.159840 ], [ 8.305664, 47.070122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.305664, 47.070122 ], [ 8.305664, 47.010226 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.305664, 47.070122 ], [ 8.129883, 47.070122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.305664, 47.040182 ], [ 8.305664, 47.070122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.581055, 46.980252 ], [ 5.712891, 46.830134 ] ] } } +, +{ "type": "Feature", "properties": { "name": "21" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 46.134170 ], [ 5.844727, 46.073231 ], [ 5.844727, 46.164614 ], [ 5.712891, 46.164614 ], [ 5.317383, 46.073231 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 5.581055, 46.830134 ], [ 5.888672, 46.800059 ], [ 5.976562, 46.558860 ], [ 6.064453, 46.558860 ], [ 6.020508, 46.498392 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.020508, 46.498392 ], [ 6.108398, 46.498392 ], [ 6.064453, 46.316584 ], [ 6.152344, 46.286224 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 46.255847 ], [ 6.108398, 46.225453 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 46.195042 ], [ 6.240234, 46.286224 ], [ 6.503906, 46.377254 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.108398, 46.225453 ], [ 6.152344, 46.195042 ] ] } } +, +{ "type": "Feature", "properties": { "name": "23" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.416016, 46.709736 ], [ 6.328125, 47.159840 ], [ 5.976562, 47.279229 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.031250, 47.040182 ], [ 6.899414, 47.010226 ], [ 6.635742, 46.830134 ], [ 6.635742, 46.769968 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.416016, 46.739861 ], [ 6.591797, 46.739861 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.591797, 46.739861 ], [ 6.591797, 46.558860 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.943359, 46.980252 ], [ 6.855469, 47.100045 ], [ 6.679688, 47.040182 ], [ 6.591797, 47.070122 ], [ 6.591797, 47.129951 ], [ 6.328125, 47.129951 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.328125, 46.103709 ], [ 6.284180, 46.195042 ], [ 6.152344, 46.195042 ], [ 6.108398, 46.134170 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.152344, 46.164614 ], [ 6.108398, 46.255847 ], [ 6.284180, 46.468133 ], [ 6.503906, 46.558860 ], [ 6.679688, 46.558860 ], [ 6.811523, 46.498392 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.503906, 46.377254 ], [ 6.811523, 46.407564 ], [ 6.987305, 46.225453 ] ] } } +, +{ "type": "Feature", "properties": { "name": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.811523, 46.498392 ], [ 6.899414, 46.468133 ], [ 6.943359, 46.316584 ], [ 7.119141, 46.134170 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.987305, 46.195042 ], [ 6.987305, 46.225453 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.987305, 46.225453 ], [ 6.987305, 46.195042 ] ] } } +, +{ "type": "Feature", "properties": { "name": "712" }, "geometry": { "type": "LineString", "coordinates": [ [ 5.976562, 45.736860 ], [ 6.108398, 45.981695 ], [ 6.240234, 46.012224 ], [ 6.328125, 46.103709 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 6.855469, 45.920587 ], [ 6.635742, 45.951150 ], [ 6.591797, 46.073231 ], [ 6.284180, 46.103709 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.943359, 45.798170 ], [ 6.855469, 45.920587 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 6.767578, 45.644768 ], [ 6.943359, 45.736860 ], [ 7.031250, 45.736860 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.382812, 46.950262 ], [ 7.207031, 46.980252 ], [ 6.811523, 46.830134 ], [ 6.767578, 46.769968 ], [ 6.591797, 46.739861 ] ] } } +, +{ "type": "Feature", "properties": { "name": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.426758, 46.950262 ], [ 7.163086, 46.860191 ], [ 7.075195, 46.649436 ], [ 6.899414, 46.589069 ], [ 6.899414, 46.468133 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.382812, 47.040182 ], [ 7.470703, 47.010226 ], [ 7.426758, 46.950262 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.514648, 47.159840 ], [ 7.426758, 46.950262 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.470703, 46.980252 ], [ 7.426758, 46.950262 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.822266, 46.679594 ], [ 7.646484, 46.679594 ], [ 7.602539, 46.860191 ], [ 7.426758, 46.950262 ] ] } } +, +{ "type": "Feature", "properties": { "name": "62" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.119141, 46.134170 ], [ 7.558594, 46.286224 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 46.950262 ], [ 8.305664, 47.010226 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.305664, 47.010226 ], [ 8.173828, 46.769968 ], [ 7.866211, 46.679594 ] ] } } +, +{ "type": "Feature", "properties": { "name": "62" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.558594, 46.286224 ], [ 7.954102, 46.316584 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.954102, 46.316584 ], [ 8.261719, 46.528635 ], [ 8.569336, 46.619261 ] ] } } +, +{ "type": "Feature", "properties": { "name": "62" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.954102, 46.316584 ], [ 8.041992, 46.195042 ], [ 8.305664, 46.164614 ], [ 8.261719, 46.073231 ], [ 8.305664, 46.012224 ] ] } } +, +{ "type": "Feature", "properties": { "name": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.119141, 46.134170 ], [ 7.250977, 45.981695 ], [ 7.207031, 45.890008 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.163086, 45.859412 ], [ 7.294922, 45.798170 ], [ 7.294922, 45.736860 ] ] } } +, +{ "type": "Feature", "properties": { "name": "27" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.207031, 45.890008 ], [ 7.163086, 45.828799 ], [ 7.338867, 45.736860 ] ] } } +, +{ "type": "Feature", "properties": { "name": "25" }, "geometry": { "type": "LineString", "coordinates": [ [ 7.778320, 45.614037 ], [ 7.646484, 45.767523 ], [ 7.163086, 45.706179 ], [ 6.943359, 45.798170 ] ] } } +, +{ "type": "Feature", "properties": { "name": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.393555, 49.009051 ], [ 8.569336, 48.922499 ], [ 8.789062, 48.922499 ], [ 8.833008, 48.835797 ], [ 8.964844, 48.835797 ], [ 9.140625, 48.719961 ], [ 9.272461, 48.719961 ], [ 9.448242, 48.632909 ], [ 9.624023, 48.632909 ], [ 9.667969, 48.545705 ], [ 10.107422, 48.458352 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.096680, 48.864715 ], [ 9.228516, 48.835797 ], [ 9.316406, 48.748945 ], [ 9.711914, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.052734, 48.719961 ], [ 9.184570, 48.806863 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.833008, 47.842658 ], [ 8.613281, 47.931066 ], [ 8.569336, 48.195387 ], [ 8.657227, 48.224673 ], [ 8.657227, 48.370848 ], [ 8.789062, 48.429201 ], [ 9.008789, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.184570, 48.922499 ], [ 9.184570, 48.690960 ], [ 9.272461, 48.632909 ], [ 9.052734, 48.400032 ], [ 8.745117, 48.195387 ], [ 8.569336, 48.195387 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.184570, 48.806863 ], [ 9.228516, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.448242, 48.719961 ], [ 9.360352, 48.661943 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.228516, 48.777913 ], [ 9.316406, 48.835797 ], [ 9.887695, 48.806863 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.701172, 47.901614 ], [ 8.833008, 47.989922 ], [ 9.096680, 47.989922 ], [ 9.448242, 48.078079 ], [ 9.580078, 48.224673 ], [ 10.019531, 48.400032 ], [ 10.019531, 48.458352 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.481445, 47.931066 ], [ 8.525391, 47.989922 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 7.646484, 48.048710 ], [ 7.822266, 48.019324 ], [ 7.866211, 47.960502 ], [ 7.954102, 47.989922 ], [ 8.129883, 47.901614 ], [ 8.525391, 47.931066 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.525391, 47.989922 ], [ 8.613281, 47.989922 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.525391, 47.931066 ], [ 8.613281, 47.960502 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.481445, 47.901614 ], [ 8.613281, 47.813155 ], [ 8.657227, 47.694974 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.217773, 47.635784 ], [ 8.349609, 47.606163 ], [ 8.481445, 47.694974 ], [ 8.613281, 47.694974 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.701172, 47.546872 ], [ 8.613281, 47.665387 ], [ 8.657227, 47.694974 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.745117, 47.754098 ], [ 8.657227, 47.694974 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.876953, 47.813155 ], [ 8.745117, 47.754098 ] ] } } +, +{ "type": "Feature", "properties": { "name": "54" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.096680, 47.842658 ], [ 8.833008, 47.842658 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.789062, 47.546872 ], [ 9.096680, 47.606163 ], [ 9.140625, 47.665387 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.481445, 47.398349 ], [ 8.481445, 47.219568 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.964844, 47.249407 ], [ 8.745117, 47.249407 ], [ 8.525391, 47.368594 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.580078, 47.457809 ], [ 9.492188, 47.487513 ], [ 9.404297, 47.428087 ], [ 9.228516, 47.428087 ], [ 9.140625, 47.487513 ], [ 8.964844, 47.457809 ], [ 8.833008, 47.546872 ], [ 8.701172, 47.546872 ], [ 8.657227, 47.398349 ], [ 8.217773, 47.457809 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 47.249407 ], [ 8.437500, 47.189712 ], [ 8.437500, 47.100045 ], [ 8.613281, 47.010226 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.305664, 47.040182 ], [ 8.481445, 47.070122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.525391, 47.368594 ], [ 8.525391, 47.309034 ], [ 8.701172, 47.189712 ], [ 8.920898, 47.219568 ], [ 9.052734, 47.129951 ], [ 9.404297, 47.070122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 47.428087 ], [ 8.833008, 47.309034 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.833008, 47.309034 ], [ 8.789062, 47.189712 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.096680, 47.309034 ], [ 8.964844, 47.249407 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 46.890232 ], [ 8.876953, 46.860191 ], [ 8.920898, 46.920255 ], [ 9.008789, 46.920255 ], [ 9.096680, 47.010226 ], [ 9.052734, 47.129951 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.140625, 47.665387 ], [ 9.052734, 47.754098 ], [ 8.789062, 47.842658 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.789062, 47.872144 ], [ 9.140625, 47.813155 ], [ 9.272461, 47.694974 ], [ 9.492188, 47.665387 ] ] } } +, +{ "type": "Feature", "properties": { "name": "532" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.448242, 47.487513 ], [ 9.140625, 47.665387 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.019531, 48.370848 ], [ 9.887695, 48.253941 ], [ 9.755859, 47.901614 ], [ 9.667969, 47.872144 ], [ 9.624023, 47.606163 ] ] } } +, +{ "type": "Feature", "properties": { "name": "54" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.755859, 47.606163 ], [ 9.580078, 47.606163 ], [ 9.492188, 47.665387 ], [ 9.272461, 47.694974 ], [ 9.096680, 47.842658 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.492188, 47.665387 ], [ 9.536133, 47.606163 ], [ 9.755859, 47.546872 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.096680, 47.309034 ], [ 9.228516, 47.189712 ], [ 9.492188, 47.219568 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.492188, 47.219568 ], [ 9.448242, 47.159840 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.404297, 47.070122 ], [ 9.492188, 47.010226 ] ] } } +, +{ "type": "Feature", "properties": { "name": "43" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.580078, 47.457809 ], [ 9.711914, 47.457809 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.755859, 47.606163 ], [ 9.711914, 47.457809 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.755859, 47.487513 ], [ 9.624023, 47.249407 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.536133, 47.159840 ], [ 9.580078, 47.249407 ] ] } } +, +{ "type": "Feature", "properties": { "name": "43" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.448242, 47.040182 ], [ 9.492188, 47.279229 ], [ 9.667969, 47.457809 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.492188, 47.159840 ], [ 9.624023, 47.249407 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.448242, 47.159840 ], [ 9.536133, 47.159840 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.624023, 47.279229 ], [ 9.711914, 47.189712 ], [ 9.799805, 47.159840 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.107422, 48.864715 ], [ 10.458984, 48.864715 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.975586, 48.429201 ], [ 9.975586, 48.458352 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.019531, 48.400032 ], [ 10.107422, 48.341646 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.766602, 48.748945 ], [ 10.458984, 48.864715 ], [ 10.458984, 48.980217 ], [ 10.283203, 49.095452 ], [ 10.283203, 49.239121 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.766602, 48.719961 ], [ 10.810547, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.766602, 48.748945 ], [ 10.854492, 48.719961 ], [ 10.898438, 48.429201 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 48.429201 ], [ 10.898438, 48.224673 ], [ 10.810547, 48.078079 ] ] } } +, +{ "type": "Feature", "properties": { "name": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.107422, 48.458352 ], [ 11.030273, 48.429201 ], [ 11.425781, 48.195387 ] ] } } +, +{ "type": "Feature", "properties": { "name": "43" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.151367, 48.019324 ], [ 10.019531, 47.813155 ], [ 9.799805, 47.724545 ], [ 9.755859, 47.606163 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.722656, 48.048710 ], [ 10.634766, 47.931066 ], [ 10.634766, 47.783635 ], [ 10.458984, 47.783635 ], [ 10.239258, 47.665387 ], [ 9.843750, 47.665387 ], [ 9.755859, 47.606163 ] ] } } +, +{ "type": "Feature", "properties": { "name": "562" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.151367, 48.019324 ], [ 10.371094, 47.783635 ], [ 10.371094, 47.694974 ], [ 10.502930, 47.665387 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.854492, 47.842658 ], [ 10.810547, 48.078079 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.789062, 47.189712 ], [ 8.569336, 47.040182 ] ] } } +, +{ "type": "Feature", "properties": { "name": "41" }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 47.010226 ], [ 8.613281, 46.920255 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 46.679594 ], [ 8.613281, 46.558860 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 46.950262 ], [ 8.657227, 46.739861 ], [ 8.613281, 46.679594 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 46.619261 ], [ 8.613281, 46.619261 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.613281, 46.558860 ], [ 8.745117, 46.528635 ], [ 8.833008, 46.437857 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 8.569336, 46.619261 ], [ 8.833008, 46.679594 ], [ 8.876953, 46.739861 ], [ 9.272461, 46.800059 ], [ 9.360352, 46.860191 ], [ 9.404297, 46.860191 ] ] } } +, +{ "type": "Feature", "properties": { "name": "43" }, "geometry": { "type": "LineString", "coordinates": [ [ 9.492188, 47.010226 ], [ 9.536133, 46.950262 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.601562, 52.187405 ], [ 11.645508, 52.456009 ], [ 11.909180, 52.616390 ], [ 11.733398, 52.802761 ], [ 11.733398, 52.908902 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.865234, 52.589701 ], [ 11.821289, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.348633, 52.988337 ], [ 12.436523, 52.935397 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.128906, 52.961875 ], [ 12.041016, 52.776186 ], [ 12.084961, 52.643063 ], [ 11.997070, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.480469, 52.855864 ], [ 12.348633, 52.749594 ], [ 12.348633, 52.616390 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.744141, 52.908902 ], [ 12.480469, 52.855864 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.304688, 52.988337 ], [ 12.436523, 52.961875 ], [ 12.612305, 52.696361 ], [ 12.963867, 52.562995 ], [ 13.271484, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.348633, 52.616390 ], [ 12.348633, 52.536273 ], [ 12.524414, 52.429222 ] ] } } +, +{ "type": "Feature", "properties": { "name": "251" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.183594, 52.722986 ], [ 13.227539, 52.855864 ], [ 13.139648, 52.935397 ], [ 13.183594, 53.120405 ] ] } } +, +{ "type": "Feature", "properties": { "name": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.051758, 52.722986 ], [ 12.788086, 52.802761 ], [ 12.744141, 52.935397 ], [ 12.568359, 53.014783 ], [ 12.568359, 53.014783 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.963867, 52.482780 ], [ 12.963867, 52.536273 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.183594, 52.882391 ], [ 13.007812, 52.882391 ], [ 12.832031, 52.961875 ], [ 12.744141, 52.908902 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.007812, 52.722986 ], [ 13.271484, 52.749594 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.875977, 52.589701 ], [ 13.007812, 52.722986 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.271484, 52.749594 ], [ 13.227539, 52.776186 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.271484, 52.749594 ], [ 13.271484, 52.696361 ] ] } } +, +{ "type": "Feature", "properties": { "name": "26" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.227539, 52.722986 ], [ 13.183594, 52.669720 ], [ 13.315430, 52.616390 ], [ 13.271484, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.359375, 52.562995 ], [ 13.271484, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.535156, 52.855864 ], [ 13.315430, 52.908902 ], [ 13.183594, 52.882391 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.447266, 52.749594 ], [ 13.227539, 52.776186 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.666992, 52.855864 ], [ 13.535156, 52.855864 ] ] } } +, +{ "type": "Feature", "properties": { "name": "28" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.579102, 52.643063 ], [ 13.579102, 52.776186 ], [ 13.798828, 52.935397 ], [ 13.886719, 53.120405 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.754883, 52.375599 ], [ 13.798828, 52.482780 ], [ 13.666992, 52.616390 ], [ 13.491211, 52.643063 ], [ 13.359375, 52.722986 ], [ 13.051758, 52.722986 ], [ 12.963867, 52.482780 ], [ 12.832031, 52.402419 ], [ 12.832031, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.403320, 52.562995 ], [ 13.403320, 52.616390 ], [ 13.271484, 52.696361 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.359375, 52.562995 ], [ 13.403320, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.359375, 52.509535 ], [ 13.359375, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.271484, 52.509535 ], [ 13.359375, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.359375, 52.482780 ], [ 13.359375, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.403320, 52.509535 ], [ 13.754883, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.491211, 52.643063 ], [ 13.447266, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.271484, 52.509535 ], [ 13.447266, 52.509535 ], [ 13.447266, 52.589701 ], [ 13.315430, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.403320, 52.562995 ], [ 13.447266, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.491211, 52.562995 ], [ 13.535156, 52.616390 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.447266, 52.562995 ], [ 13.491211, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.447266, 52.749594 ], [ 13.579102, 52.696361 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.579102, 52.696361 ], [ 13.623047, 52.669720 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.447266, 52.643063 ], [ 13.535156, 52.616390 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.623047, 52.669720 ], [ 13.579102, 52.643063 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.579102, 52.643063 ], [ 13.579102, 52.696361 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.579102, 52.616390 ], [ 13.579102, 52.643063 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.535156, 52.616390 ], [ 13.579102, 52.616390 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.579102, 52.616390 ], [ 13.623047, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.623047, 52.589701 ], [ 13.754883, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.798828, 52.829321 ], [ 13.666992, 52.855864 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.623047, 52.669720 ], [ 13.623047, 52.749594 ], [ 13.798828, 52.829321 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.798828, 52.829321 ], [ 14.018555, 52.776186 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.754883, 52.509535 ], [ 14.370117, 52.536273 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.798828, 52.829321 ], [ 14.018555, 53.014783 ], [ 14.194336, 53.041213 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.018555, 52.776186 ], [ 14.106445, 52.776186 ], [ 14.150391, 52.696361 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.150391, 52.696361 ], [ 14.414062, 52.536273 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.370117, 52.536273 ], [ 14.589844, 52.589701 ], [ 14.897461, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.633789, 52.589701 ], [ 14.633789, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.029297, 52.882391 ], [ 15.029297, 52.829321 ], [ 15.249023, 52.696361 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.897461, 52.562995 ], [ 15.205078, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.205078, 52.722986 ], [ 14.721680, 52.643063 ], [ 14.633789, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.249023, 52.696361 ], [ 15.424805, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.249023, 52.696361 ], [ 15.205078, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.205078, 52.589701 ], [ 15.424805, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.424805, 52.589701 ], [ 15.512695, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.249023, 52.696361 ], [ 15.292969, 52.776186 ], [ 15.380859, 52.802761 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.424805, 52.589701 ], [ 15.512695, 52.589701 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.512695, 52.589701 ], [ 16.171875, 52.562995 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.513672, 52.187405 ], [ 11.557617, 52.079506 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.645508, 52.079506 ], [ 11.557617, 52.079506 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.216797, 51.426614 ], [ 12.128906, 51.454007 ], [ 11.997070, 51.563412 ], [ 11.865234, 51.590723 ], [ 11.821289, 51.672555 ], [ 11.645508, 51.727028 ], [ 11.689453, 51.971346 ], [ 11.601562, 52.160455 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.645508, 52.160455 ], [ 11.645508, 52.106505 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.645508, 52.187405 ], [ 11.645508, 52.160455 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.260742, 51.890054 ], [ 11.733398, 52.133488 ], [ 11.645508, 52.106505 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.821289, 52.214339 ], [ 11.733398, 52.133488 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.865234, 52.268157 ], [ 11.821289, 52.214339 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.997070, 52.562995 ], [ 12.128906, 52.375599 ], [ 11.865234, 52.268157 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.557617, 52.079506 ], [ 11.469727, 51.971346 ], [ 11.337891, 51.944265 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.172852, 52.402419 ], [ 12.524414, 52.429222 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.524414, 52.429222 ], [ 12.612305, 52.402419 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.283203, 52.348763 ], [ 10.810547, 52.321911 ], [ 11.030273, 52.241256 ], [ 11.601562, 52.160455 ], [ 11.777344, 52.241256 ], [ 12.260742, 52.241256 ], [ 12.436523, 52.268157 ], [ 12.524414, 52.348763 ], [ 12.832031, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.612305, 52.402419 ], [ 12.612305, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.612305, 52.348763 ], [ 12.612305, 52.133488 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.392578, 51.890054 ], [ 12.260742, 51.890054 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 9.843750, 51.454007 ], [ 9.931641, 51.399206 ], [ 10.590820, 51.426614 ], [ 10.678711, 51.481383 ], [ 11.557617, 51.454007 ], [ 11.733398, 51.399206 ], [ 11.865234, 51.426614 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.909180, 51.590723 ], [ 11.865234, 51.426614 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.953125, 51.289406 ], [ 11.953125, 51.289406 ], [ 11.865234, 51.426614 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.041016, 51.508742 ], [ 12.128906, 51.426614 ], [ 12.172852, 51.426614 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.656250, 51.808615 ], [ 12.436523, 51.699800 ], [ 12.436523, 51.618017 ], [ 12.348633, 51.645294 ], [ 12.172852, 51.536086 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.612305, 51.618017 ], [ 12.656250, 51.808615 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.832031, 52.402419 ], [ 12.612305, 52.402419 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.963867, 52.482780 ], [ 12.963867, 52.536273 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.963867, 52.456009 ], [ 12.963867, 52.482780 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.051758, 52.402419 ], [ 12.963867, 52.456009 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.832031, 52.321911 ], [ 12.832031, 52.402419 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.832031, 52.348763 ], [ 12.919922, 52.295042 ], [ 13.579102, 52.321911 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.832031, 52.402419 ], [ 13.051758, 52.402419 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.612305, 52.133488 ], [ 12.700195, 52.106505 ] ] } } +, +{ "type": "Feature", "properties": { "name": "51" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.260742, 51.481383 ], [ 12.260742, 51.808615 ], [ 12.919922, 52.214339 ], [ 12.919922, 52.295042 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.700195, 52.106505 ], [ 12.875977, 52.079506 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.875977, 52.079506 ], [ 13.007812, 52.241256 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.875977, 52.079506 ], [ 12.656250, 51.862924 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.051758, 52.295042 ], [ 13.051758, 52.402419 ] ] } } +, +{ "type": "Feature", "properties": { "name": "51" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.271484, 52.509535 ], [ 13.095703, 52.321911 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.183594, 52.429222 ], [ 13.359375, 52.482780 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.271484, 52.509535 ], [ 13.359375, 52.482780 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.315430, 52.295042 ], [ 13.227539, 52.214339 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.007812, 52.241256 ], [ 13.051758, 52.295042 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.656250, 51.862924 ], [ 12.392578, 51.890054 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.656250, 51.808615 ], [ 12.656250, 51.862924 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.875977, 52.079506 ], [ 13.007812, 51.998410 ], [ 13.095703, 51.998410 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.227539, 52.214339 ], [ 13.227539, 52.106505 ], [ 13.095703, 51.998410 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.183594, 51.781436 ], [ 12.963867, 51.781436 ], [ 12.656250, 51.862924 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.095703, 51.998410 ], [ 13.183594, 51.781436 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.183594, 51.781436 ], [ 13.271484, 51.699800 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.447266, 52.348763 ], [ 13.535156, 52.375599 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.447266, 52.295042 ], [ 13.447266, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.447266, 52.214339 ], [ 13.447266, 52.295042 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.535156, 52.375599 ], [ 13.579102, 52.402419 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.535156, 52.375599 ], [ 13.579102, 52.402419 ] ] } } +, +{ "type": "Feature", "properties": { "name": "36" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.579102, 52.321911 ], [ 13.579102, 52.402419 ], [ 13.491211, 52.456009 ], [ 13.271484, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.579102, 52.321911 ], [ 13.754883, 52.375599 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.491211, 52.052490 ], [ 13.447266, 52.214339 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.095703, 51.971346 ], [ 13.271484, 51.890054 ], [ 13.666992, 51.835778 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.623047, 51.971346 ], [ 13.491211, 52.052490 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.183594, 51.618017 ], [ 13.271484, 51.727028 ], [ 13.403320, 51.699800 ], [ 13.842773, 51.917168 ] ] } } +, +{ "type": "Feature", "properties": { "name": "36" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.930664, 51.835778 ], [ 13.798828, 51.917168 ], [ 13.798828, 51.998410 ], [ 13.666992, 52.052490 ], [ 13.579102, 52.321911 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.754883, 51.944265 ], [ 13.623047, 51.971346 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.886719, 51.944265 ], [ 13.754883, 51.944265 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.886719, 51.944265 ], [ 13.798828, 51.890054 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.842773, 51.917168 ], [ 14.194336, 52.079506 ], [ 14.194336, 52.187405 ], [ 14.370117, 52.214339 ], [ 14.501953, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.930664, 51.835778 ], [ 13.930664, 51.645294 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.271484, 51.699800 ], [ 13.315430, 51.618017 ] ] } } +, +{ "type": "Feature", "properties": { "name": "48" }, "geometry": { "type": "LineString", "coordinates": [ [ 10.898438, 49.951220 ], [ 11.337891, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.172852, 49.525208 ], [ 12.172852, 49.496675 ] ] } } +, +{ "type": "Feature", "properties": { "name": "51" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.557617, 49.866317 ], [ 11.557617, 49.781264 ], [ 11.074219, 49.382373 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.250000, 49.468124 ], [ 11.293945, 49.496675 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.250000, 49.410973 ], [ 11.162109, 49.525208 ], [ 10.986328, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { "name": "56" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.601562, 49.296472 ], [ 11.250000, 49.410973 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.250000, 49.468124 ], [ 11.293945, 49.410973 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.250000, 49.410973 ], [ 11.997070, 49.410973 ], [ 12.172852, 49.496675 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.162109, 49.382373 ], [ 11.250000, 49.095452 ], [ 11.469727, 48.951366 ], [ 11.469727, 48.690960 ], [ 11.645508, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { "name": "56" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.601562, 49.296472 ], [ 11.733398, 49.152970 ], [ 11.865234, 49.152970 ], [ 11.909180, 49.066668 ], [ 12.084961, 49.009051 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.997070, 49.382373 ], [ 12.041016, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.041016, 49.353756 ], [ 12.172852, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.700195, 48.719961 ], [ 12.612305, 48.864715 ], [ 12.656250, 49.210420 ], [ 12.304688, 49.210420 ], [ 12.260742, 49.095452 ], [ 12.084961, 49.037868 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.084961, 49.009051 ], [ 12.128906, 48.980217 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.084961, 49.009051 ], [ 12.084961, 48.980217 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.084961, 48.951366 ], [ 12.084961, 48.980217 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.172852, 49.496675 ], [ 12.216797, 49.525208 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.139648, 48.951366 ], [ 13.095703, 48.951366 ] ] } } +, +{ "type": "Feature", "properties": { "name": "53" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.963867, 48.835797 ], [ 13.095703, 48.893615 ], [ 13.139648, 48.980217 ], [ 13.227539, 48.980217 ], [ 13.227539, 49.152970 ], [ 13.315430, 49.210420 ], [ 13.271484, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 13.754883, 52.348763 ], [ 14.501953, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.370117, 52.536273 ], [ 14.589844, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.545898, 52.348763 ], [ 14.238281, 52.429222 ], [ 14.150391, 52.509535 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.545898, 52.348763 ], [ 14.545898, 52.321911 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.545898, 52.321911 ], [ 14.633789, 52.214339 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.633789, 52.214339 ], [ 14.633789, 52.133488 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.633789, 52.133488 ], [ 14.677734, 51.971346 ] ] } } +, +{ "type": "Feature", "properties": { "name": "36" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.721680, 51.672555 ], [ 14.458008, 51.727028 ], [ 14.150391, 51.727028 ], [ 14.062500, 51.808615 ], [ 13.930664, 51.835778 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.414062, 51.862924 ], [ 14.326172, 51.754240 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.326172, 51.727028 ], [ 14.326172, 51.754240 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.326172, 51.754240 ], [ 14.458008, 51.727028 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.677734, 51.971346 ], [ 14.589844, 51.944265 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.589844, 51.944265 ], [ 14.414062, 51.862924 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.545898, 52.348763 ], [ 14.677734, 52.321911 ], [ 14.765625, 52.214339 ], [ 15.161133, 52.025459 ] ] } } +, +{ "type": "Feature", "properties": { "name": "36" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.600586, 51.371780 ], [ 15.292969, 51.454007 ], [ 14.809570, 51.672555 ] ] } } +, +{ "type": "Feature", "properties": { "name": "36" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.809570, 51.672555 ], [ 14.721680, 51.672555 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.161133, 51.645294 ], [ 14.897461, 51.645294 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.117188, 52.052490 ], [ 15.117188, 52.025459 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.677734, 51.971346 ], [ 14.765625, 51.944265 ], [ 15.117188, 52.025459 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.161133, 52.025459 ], [ 15.556641, 51.944265 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.292969, 51.618017 ], [ 15.161133, 51.645294 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.326172, 51.645294 ], [ 14.326172, 51.727028 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.458008, 51.727028 ], [ 14.545898, 51.672555 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.512695, 51.563412 ], [ 15.292969, 51.618017 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.292969, 51.234407 ], [ 15.644531, 51.344339 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.512695, 52.589701 ], [ 15.556641, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.556641, 52.348763 ], [ 15.556641, 52.268157 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.512695, 52.241256 ], [ 15.556641, 52.241256 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.501953, 52.348763 ], [ 15.117188, 52.321911 ], [ 15.556641, 52.241256 ], [ 15.732422, 52.348763 ], [ 16.127930, 52.375599 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.556641, 52.268157 ], [ 15.600586, 52.079506 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.600586, 52.079506 ], [ 15.644531, 52.025459 ], [ 15.556641, 51.998410 ], [ 15.556641, 51.944265 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.556641, 51.944265 ], [ 15.688477, 51.862924 ], [ 15.732422, 51.699800 ], [ 16.127930, 51.481383 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.732422, 51.808615 ], [ 15.600586, 51.754240 ], [ 15.556641, 51.563412 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.127930, 52.375599 ], [ 16.918945, 52.375599 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.556641, 51.563412 ], [ 15.600586, 51.536086 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.952148, 51.590723 ], [ 15.952148, 51.536086 ], [ 15.864258, 51.508742 ], [ 15.600586, 51.536086 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.600586, 51.536086 ], [ 15.600586, 51.371780 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.600586, 51.371780 ], [ 15.556641, 51.261915 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.820312, 51.261915 ], [ 15.556641, 51.261915 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.556641, 51.261915 ], [ 15.600586, 51.096623 ] ] } } +, +{ "type": "Feature", "properties": { "name": "36" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.776367, 51.289406 ], [ 15.600586, 51.371780 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.171875, 51.151786 ], [ 15.776367, 51.289406 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.600586, 51.096623 ], [ 15.732422, 50.903033 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.688477, 50.903033 ], [ 15.776367, 50.930738 ], [ 15.908203, 50.903033 ], [ 16.083984, 50.958427 ], [ 16.083984, 50.903033 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.171875, 51.041394 ], [ 16.083984, 50.903033 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.083984, 50.875311 ], [ 16.083984, 50.930738 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.996094, 50.708634 ], [ 16.083984, 50.875311 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.215820, 51.426614 ], [ 16.127930, 51.261915 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.127930, 51.454007 ], [ 16.215820, 51.426614 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.215820, 51.399206 ], [ 16.040039, 51.371780 ], [ 15.952148, 51.261915 ], [ 15.820312, 51.261915 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.215820, 51.426614 ], [ 16.347656, 51.261915 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.127930, 51.261915 ], [ 16.171875, 51.041394 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.699219, 51.013755 ], [ 16.303711, 51.151786 ], [ 16.171875, 51.151786 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.347656, 51.261915 ], [ 16.655273, 51.151786 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.083984, 50.930738 ], [ 16.347656, 50.847573 ], [ 16.567383, 50.847573 ], [ 16.962891, 51.041394 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.644531, 50.345460 ], [ 15.688477, 50.317408 ], [ 15.820312, 50.205033 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.249023, 50.035974 ], [ 15.205078, 50.035974 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.468750, 49.837982 ], [ 15.249023, 50.035974 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.633789, 49.639177 ], [ 14.633789, 49.639177 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.633789, 49.639177 ], [ 14.633789, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.633789, 49.553726 ], [ 14.721680, 49.382373 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.106445, 49.325122 ], [ 14.150391, 49.325122 ], [ 14.194336, 49.124219 ], [ 14.545898, 49.009051 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.721680, 49.382373 ], [ 14.721680, 49.239121 ], [ 14.458008, 49.009051 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.501953, 49.009051 ], [ 14.458008, 48.922499 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.677734, 49.210420 ], [ 14.721680, 49.037868 ], [ 14.853516, 48.951366 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.853516, 49.809632 ], [ 14.941406, 49.752880 ], [ 15.073242, 49.724479 ], [ 15.117188, 49.610710 ], [ 15.600586, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.545898, 49.009051 ], [ 14.765625, 49.009051 ] ] } } +, +{ "type": "Feature", "properties": { "name": "551" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.336914, 49.525208 ], [ 15.073242, 49.325122 ], [ 15.029297, 49.124219 ], [ 14.765625, 49.009051 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.996094, 50.680797 ], [ 15.996094, 50.708634 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 15.908203, 50.373496 ], [ 15.864258, 50.485474 ], [ 15.864258, 50.513427 ] ], [ [ 15.996094, 50.680797 ], [ 15.996094, 50.680797 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.776367, 50.233152 ], [ 15.908203, 50.373496 ], [ 16.083984, 50.401515 ] ] } } +, +{ "type": "Feature", "properties": { "name": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.083984, 50.401515 ], [ 16.215820, 50.457504 ], [ 16.303711, 50.401515 ], [ 16.435547, 50.401515 ], [ 16.787109, 50.513427 ], [ 16.875000, 50.903033 ] ] } } +, +{ "type": "Feature", "properties": { "name": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.336914, 50.148746 ], [ 15.688477, 50.148746 ], [ 15.820312, 50.233152 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.820312, 50.205033 ], [ 15.820312, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.523438, 49.781264 ], [ 16.215820, 49.894634 ], [ 15.820312, 50.205033 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.820312, 49.951220 ], [ 15.820312, 49.724479 ], [ 15.644531, 49.610710 ], [ 15.336914, 49.525208 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.600586, 49.468124 ], [ 15.468750, 49.837982 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.600586, 49.468124 ], [ 15.600586, 49.439557 ] ] } } +, +{ "type": "Feature", "properties": { "name": "59" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.556641, 49.325122 ], [ 15.600586, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { "name": "59" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.688477, 49.124219 ], [ 15.556641, 49.325122 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.600586, 49.468124 ], [ 15.688477, 49.410973 ], [ 15.908203, 49.410973 ], [ 16.611328, 49.152970 ] ] } } +, +{ "type": "Feature", "properties": { "name": "461" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.479492, 49.781264 ], [ 16.611328, 49.525208 ], [ 16.523438, 49.152970 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.567383, 49.210420 ], [ 16.655273, 49.181703 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.831055, 49.181703 ], [ 16.655273, 49.152970 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.611328, 49.152970 ], [ 16.523438, 48.980217 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.611328, 49.152970 ], [ 16.743164, 48.922499 ], [ 16.918945, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { "name": "261" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.962891, 52.375599 ], [ 16.962891, 52.348763 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.171875, 52.562995 ], [ 16.918945, 52.402419 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.006836, 52.375599 ], [ 17.006836, 52.348763 ] ], [ [ 16.875000, 52.375599 ], [ 16.918945, 52.429222 ] ] ] } } +, +{ "type": "Feature", "properties": { "name": "261" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.918945, 52.375599 ], [ 16.699219, 52.268157 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.006836, 52.375599 ], [ 17.050781, 52.295042 ], [ 17.270508, 52.214339 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.402344, 52.160455 ], [ 17.490234, 51.971346 ] ], [ [ 17.270508, 52.214339 ], [ 17.358398, 52.187405 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.490234, 51.971346 ], [ 17.797852, 51.890054 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.446289, 51.699800 ], [ 17.094727, 51.699800 ], [ 16.875000, 51.618017 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.490234, 51.971346 ], [ 17.402344, 51.699800 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.797852, 51.645294 ], [ 17.446289, 51.699800 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.490234, 51.971346 ], [ 17.797852, 51.890054 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.797852, 51.890054 ], [ 17.797852, 51.672555 ], [ 17.929688, 51.344339 ], [ 18.149414, 51.206883 ], [ 18.281250, 50.958427 ], [ 18.544922, 50.847573 ], [ 18.676758, 50.680797 ], [ 18.676758, 50.569283 ], [ 18.940430, 50.373496 ], [ 18.984375, 50.261254 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.841797, 51.645294 ], [ 17.797852, 51.645294 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.105469, 51.754240 ], [ 17.841797, 51.645294 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.061523, 51.781436 ], [ 18.061523, 51.754240 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 17.929688, 51.862924 ], [ 18.105469, 51.754240 ] ], [ [ 17.797852, 51.890054 ], [ 17.885742, 51.890054 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.797852, 51.645294 ], [ 18.105469, 51.754240 ] ] } } +, +{ "type": "Feature", "properties": { "name": "261" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.699219, 52.268157 ], [ 16.699219, 52.133488 ], [ 16.523438, 51.971346 ], [ 16.655273, 51.754240 ], [ 16.875000, 51.618017 ], [ 16.918945, 51.399206 ], [ 17.050781, 51.316881 ], [ 17.006836, 51.206883 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.402344, 51.699800 ], [ 17.270508, 51.590723 ], [ 17.270508, 51.454007 ], [ 17.006836, 51.316881 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.611328, 51.179343 ], [ 16.918945, 51.151786 ], [ 17.006836, 51.096623 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.962891, 51.041394 ], [ 16.875000, 51.069017 ], [ 16.699219, 51.013755 ] ] } } +, +{ "type": "Feature", "properties": { "name": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.875000, 50.903033 ], [ 16.962891, 51.041394 ] ] } } +, +{ "type": "Feature", "properties": { "name": "261" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.006836, 51.206883 ], [ 16.962891, 51.041394 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.050781, 51.124213 ], [ 17.050781, 51.096623 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.050781, 51.096623 ], [ 16.962891, 51.041394 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.050781, 51.096623 ], [ 17.314453, 50.958427 ], [ 17.314453, 50.903033 ], [ 17.490234, 50.847573 ] ] } } +, +{ "type": "Feature", "properties": { "name": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.962891, 51.069017 ], [ 17.182617, 51.179343 ], [ 17.314453, 51.179343 ], [ 17.666016, 51.289406 ], [ 18.369141, 51.316881 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.490234, 50.847573 ], [ 17.622070, 50.764259 ], [ 17.929688, 50.680797 ] ] } } +, +{ "type": "Feature", "properties": { "name": "30" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.006836, 52.375599 ], [ 16.918945, 52.375599 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.105469, 51.754240 ], [ 18.149414, 51.754240 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.369141, 51.316881 ], [ 18.500977, 51.426614 ], [ 18.632812, 51.454007 ], [ 18.632812, 51.481383 ] ] } } +, +{ "type": "Feature", "properties": { "name": "67" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.369141, 51.316881 ], [ 18.500977, 51.234407 ], [ 18.632812, 51.234407 ], [ 18.896484, 51.316881 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.116211, 50.819818 ], [ 18.588867, 51.041394 ], [ 18.588867, 51.206883 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.632812, 50.708634 ], [ 19.160156, 50.819818 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.379883, 51.041394 ], [ 19.379883, 51.041394 ], [ 19.204102, 50.930738 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.204102, 50.930738 ], [ 19.072266, 50.792047 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.655273, 50.429518 ], [ 17.006836, 50.457504 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.006836, 50.457504 ], [ 17.358398, 50.457504 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.655273, 50.457504 ], [ 17.182617, 50.457504 ], [ 17.709961, 50.680797 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.358398, 50.457504 ], [ 17.490234, 50.429518 ], [ 17.578125, 50.317408 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.962891, 51.041394 ], [ 17.226562, 50.847573 ], [ 17.666016, 50.708634 ], [ 18.017578, 50.485474 ], [ 18.281250, 50.485474 ], [ 18.544922, 50.345460 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.666016, 50.680797 ], [ 17.929688, 50.708634 ], [ 18.061523, 50.652943 ], [ 18.457031, 50.764259 ], [ 18.632812, 50.708634 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.578125, 50.317408 ], [ 17.885742, 50.345460 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.929688, 50.680797 ], [ 17.929688, 50.541363 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.237305, 50.680797 ], [ 17.929688, 50.680797 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.929688, 50.680797 ], [ 18.325195, 50.513427 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.929688, 50.541363 ], [ 17.973633, 50.457504 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.973633, 50.457504 ], [ 18.105469, 50.345460 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.885742, 50.345460 ], [ 18.105469, 50.345460 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.105469, 50.345460 ], [ 18.413086, 50.261254 ], [ 18.676758, 50.289339 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.105469, 50.345460 ], [ 18.237305, 50.092393 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.281250, 49.837982 ], [ 18.061523, 49.951220 ], [ 17.841797, 49.979488 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.182617, 49.582226 ], [ 17.138672, 49.667628 ], [ 16.875000, 49.781264 ], [ 16.479492, 49.781264 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.402344, 49.610710 ], [ 17.270508, 49.553726 ], [ 17.182617, 49.582226 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.578125, 49.553726 ], [ 17.402344, 49.610710 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.446289, 49.468124 ], [ 17.534180, 49.525208 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.446289, 49.066668 ], [ 17.534180, 49.124219 ], [ 17.534180, 49.267805 ], [ 17.446289, 49.325122 ], [ 17.446289, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.050781, 49.325122 ], [ 16.831055, 49.181703 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.831055, 49.181703 ], [ 16.962891, 49.181703 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.962891, 49.181703 ], [ 17.138672, 49.181703 ] ] } } +, +{ "type": "Feature", "properties": { "name": "462" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.226562, 49.582226 ], [ 17.050781, 49.325122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.006836, 49.267805 ], [ 17.226562, 49.325122 ], [ 17.358398, 49.296472 ], [ 17.446289, 49.353756 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.138672, 49.181703 ], [ 17.402344, 49.066668 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.709961, 49.553726 ], [ 17.578125, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { "name": "462" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.797852, 49.582226 ], [ 17.709961, 49.553726 ] ] } } +, +{ "type": "Feature", "properties": { "name": "462" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.325195, 49.639177 ], [ 18.193359, 49.639177 ], [ 17.973633, 49.553726 ], [ 17.797852, 49.582226 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.709961, 49.553726 ], [ 17.929688, 49.496675 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.369141, 49.951220 ], [ 18.105469, 49.752880 ], [ 17.753906, 49.582226 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.929688, 49.496675 ], [ 18.017578, 49.468124 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.534180, 49.210420 ], [ 17.578125, 49.181703 ], [ 17.666016, 49.239121 ], [ 17.885742, 49.239121 ], [ 17.973633, 49.325122 ], [ 18.017578, 49.610710 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.402344, 49.066668 ], [ 17.622070, 49.037868 ], [ 17.709961, 48.980217 ], [ 17.885742, 48.980217 ], [ 17.973633, 48.893615 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.457031, 50.625073 ], [ 18.237305, 50.680797 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.325195, 50.513427 ], [ 18.413086, 50.485474 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.413086, 50.485474 ], [ 18.632812, 50.401515 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.720703, 50.373496 ], [ 18.544922, 50.345460 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.632812, 50.513427 ], [ 18.457031, 50.625073 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.852539, 50.429518 ], [ 18.764648, 50.513427 ], [ 18.632812, 50.513427 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.676758, 50.289339 ], [ 18.676758, 50.317408 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.632812, 50.401515 ], [ 18.808594, 50.373496 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.116211, 50.317408 ], [ 18.720703, 50.373496 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.808594, 50.373496 ], [ 18.852539, 50.345460 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.896484, 50.345460 ], [ 18.852539, 50.429518 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.852539, 50.345460 ], [ 18.896484, 50.345460 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.896484, 50.345460 ], [ 18.940430, 50.345460 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.940430, 50.345460 ], [ 19.028320, 50.261254 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.544922, 50.345460 ], [ 18.588867, 50.261254 ], [ 19.028320, 50.261254 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.676758, 50.289339 ], [ 18.544922, 50.120578 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.237305, 50.092393 ], [ 18.544922, 50.092393 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.544922, 50.092393 ], [ 18.720703, 50.035974 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.237305, 50.092393 ], [ 18.193359, 50.035974 ], [ 18.325195, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.325195, 49.951220 ], [ 18.369141, 49.894634 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.544922, 50.120578 ], [ 18.500977, 50.007739 ], [ 18.369141, 49.951220 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.676758, 50.289339 ], [ 18.808594, 50.401515 ], [ 18.984375, 50.457504 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.720703, 50.035974 ], [ 18.940430, 49.979488 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.072266, 50.792047 ], [ 19.204102, 50.485474 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.984375, 50.457504 ], [ 19.204102, 50.457504 ] ] } } +, +{ "type": "Feature", "properties": { "name": "462" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.467773, 50.289339 ], [ 19.116211, 50.317408 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.204102, 50.485474 ], [ 19.248047, 50.373496 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.204102, 50.429518 ], [ 19.072266, 50.261254 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.204102, 50.457504 ], [ 19.467773, 50.485474 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.984375, 50.261254 ], [ 18.720703, 50.092393 ], [ 18.808594, 49.781264 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.072266, 50.261254 ], [ 19.116211, 50.233152 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.028320, 50.261254 ], [ 19.072266, 50.176898 ], [ 18.984375, 50.148746 ], [ 19.028320, 50.092393 ], [ 18.940430, 50.064192 ], [ 18.940430, 50.007739 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.160156, 50.233152 ], [ 19.160156, 50.148746 ], [ 19.028320, 50.120578 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.248047, 50.373496 ], [ 19.160156, 50.233152 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.028320, 50.261254 ], [ 19.160156, 50.233152 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.116211, 50.233152 ], [ 19.160156, 50.233152 ] ] } } +, +{ "type": "Feature", "properties": { "name": "40" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.160156, 50.233152 ], [ 19.248047, 50.148746 ], [ 19.467773, 50.176898 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.160156, 50.233152 ], [ 19.423828, 50.148746 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.940430, 50.007739 ], [ 19.028320, 49.866317 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.423828, 50.148746 ], [ 19.467773, 50.148746 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.423828, 49.866317 ], [ 19.028320, 49.837982 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.676758, 49.752880 ], [ 18.281250, 49.837982 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.237305, 49.866317 ], [ 18.369141, 49.667628 ] ] } } +, +{ "type": "Feature", "properties": { "name": "462" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.676758, 49.752880 ], [ 18.632812, 49.696062 ], [ 18.325195, 49.639177 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.369141, 49.667628 ], [ 18.457031, 49.468124 ], [ 18.413086, 49.410973 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.632812, 49.752880 ], [ 18.808594, 49.809632 ] ] } } +, +{ "type": "Feature", "properties": { "name": "462" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.028320, 49.866317 ], [ 18.808594, 49.752880 ], [ 18.676758, 49.752880 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.017578, 49.468124 ], [ 18.237305, 49.468124 ], [ 18.500977, 49.382373 ] ] } } +, +{ "type": "Feature", "properties": { "name": "442" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.500977, 49.382373 ], [ 18.588867, 49.210420 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.973633, 48.893615 ], [ 17.973633, 48.951366 ], [ 18.369141, 49.037868 ], [ 18.588867, 49.210420 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.588867, 49.210420 ], [ 18.720703, 49.210420 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.632812, 49.696062 ], [ 18.720703, 49.639177 ], [ 18.764648, 49.468124 ], [ 18.852539, 49.439557 ], [ 18.764648, 49.210420 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.764648, 49.210420 ], [ 18.984375, 49.095452 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.808594, 49.809632 ], [ 19.028320, 49.809632 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.028320, 49.809632 ], [ 19.204102, 49.696062 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.984375, 49.095452 ], [ 19.116211, 49.152970 ], [ 19.291992, 49.066668 ] ] } } +, +{ "type": "Feature", "properties": { "name": "77" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.116211, 48.835797 ], [ 19.248047, 48.864715 ], [ 19.291992, 49.095452 ] ] } } +, +{ "type": "Feature", "properties": { "name": "77" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.291992, 49.066668 ], [ 19.291992, 49.210420 ], [ 19.379883, 49.239121 ] ] } } +, +{ "type": "Feature", "properties": { "name": "50" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.291992, 49.066668 ], [ 19.335938, 49.095452 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 10.810547, 48.690960 ], [ 11.030273, 48.690960 ], [ 11.337891, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.337891, 48.777913 ], [ 11.469727, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.469727, 48.690960 ], [ 11.821289, 48.777913 ], [ 11.909180, 48.893615 ], [ 12.084961, 48.951366 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.337891, 48.224673 ], [ 11.162109, 48.078079 ] ] } } +, +{ "type": "Feature", "properties": { "name": "54" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.425781, 48.166085 ], [ 10.898438, 48.048710 ], [ 10.327148, 48.048710 ], [ 10.151367, 47.989922 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.425781, 48.224673 ], [ 11.425781, 48.166085 ], [ 11.513672, 48.136767 ] ] } } +, +{ "type": "Feature", "properties": { "name": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.513672, 48.253941 ], [ 11.425781, 48.224673 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.513672, 48.136767 ], [ 11.601562, 48.253941 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.557617, 48.136767 ], [ 11.601562, 48.166085 ] ] } } +, +{ "type": "Feature", "properties": { "name": "533" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.513672, 48.166085 ], [ 11.425781, 47.960502 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.513672, 48.136767 ], [ 11.513672, 48.107431 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.513672, 48.107431 ], [ 11.557617, 48.136767 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.601562, 48.253941 ], [ 11.601562, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { "name": "53" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.469727, 48.253941 ], [ 11.513672, 48.312428 ], [ 11.953125, 48.429201 ], [ 12.084961, 48.574790 ], [ 12.744141, 48.719961 ], [ 12.919922, 48.835797 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.601562, 48.166085 ], [ 11.645508, 48.224673 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.601562, 48.166085 ], [ 11.689453, 48.048710 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.645508, 48.136767 ], [ 11.557617, 48.136767 ] ] } } +, +{ "type": "Feature", "properties": { "name": "52" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.689453, 48.078079 ], [ 11.777344, 48.195387 ], [ 11.689453, 48.253941 ], [ 11.513672, 48.253941 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.777344, 48.136767 ], [ 11.645508, 48.136767 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.557617, 48.107431 ], [ 11.601562, 48.107431 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 11.513672, 48.136767 ], [ 11.645508, 48.048710 ], [ 11.689453, 48.078079 ] ] } } +, +{ "type": "Feature", "properties": { "name": "552" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.777344, 48.136767 ], [ 11.909180, 48.166085 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.172852, 49.496675 ], [ 12.084961, 48.893615 ], [ 11.909180, 48.748945 ], [ 11.733398, 48.690960 ], [ 11.645508, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { "name": "552" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.909180, 48.166085 ], [ 12.216797, 48.166085 ], [ 12.392578, 48.253941 ] ] } } +, +{ "type": "Feature", "properties": { "name": "552" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.392578, 48.253941 ], [ 12.832031, 48.253941 ] ] } } +, +{ "type": "Feature", "properties": { "name": "45" }, "geometry": { "type": "LineString", "coordinates": [ [ 11.689453, 48.078079 ], [ 11.689453, 47.989922 ] ] } } +, +{ "type": "Feature", "properties": { "name": "56" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.084961, 49.009051 ], [ 12.480469, 48.980217 ], [ 12.963867, 48.835797 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.403320, 48.429201 ], [ 13.271484, 48.341646 ], [ 13.007812, 48.283193 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.062500, 49.325122 ], [ 13.754883, 49.037868 ], [ 13.710938, 48.864715 ], [ 13.491211, 48.806863 ], [ 13.491211, 48.690960 ], [ 13.227539, 48.661943 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.359375, 48.574790 ], [ 13.403320, 48.545705 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.403320, 48.545705 ], [ 13.403320, 48.487486 ] ] } } +, +{ "type": "Feature", "properties": { "name": "56" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.963867, 48.835797 ], [ 13.403320, 48.574790 ], [ 13.403320, 48.341646 ], [ 13.491211, 48.283193 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.447266, 48.574790 ], [ 13.403320, 48.545705 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.403320, 48.487486 ], [ 13.403320, 48.429201 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 13.403320, 48.487486 ], [ 13.447266, 48.400032 ], [ 13.623047, 48.400032 ], [ 14.106445, 48.283193 ], [ 14.326172, 48.312428 ] ] } } +, +{ "type": "Feature", "properties": { "name": "552" }, "geometry": { "type": "LineString", "coordinates": [ [ 12.832031, 48.253941 ], [ 13.227539, 48.283193 ], [ 13.271484, 48.253941 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 12.832031, 48.224673 ], [ 12.788086, 48.166085 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.458008, 48.922499 ], [ 14.458008, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.458008, 48.777913 ], [ 14.458008, 48.370848 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.458008, 48.370848 ], [ 14.282227, 48.283193 ], [ 14.282227, 48.224673 ] ] } } +, +{ "type": "Feature", "properties": { "name": "55" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.194336, 48.166085 ], [ 14.282227, 48.224673 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 14.106445, 48.195387 ], [ 14.326172, 48.224673 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.853516, 48.951366 ], [ 14.897461, 48.864715 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.897461, 48.864715 ], [ 14.941406, 48.806863 ], [ 14.985352, 48.835797 ], [ 15.117188, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 14.282227, 48.224673 ], [ 14.501953, 48.224673 ], [ 14.633789, 48.107431 ], [ 14.853516, 48.166085 ], [ 15.205078, 48.166085 ], [ 15.292969, 48.224673 ], [ 15.512695, 48.166085 ], [ 15.820312, 48.195387 ], [ 16.435547, 48.136767 ] ] } } +, +{ "type": "Feature", "properties": { "name": "59" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.083984, 48.777913 ], [ 16.040039, 48.893615 ], [ 15.688477, 49.124219 ] ] } } +, +{ "type": "Feature", "properties": { "name": "59" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.083984, 48.632909 ], [ 16.083984, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { "name": "59" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.171875, 48.400032 ], [ 16.083984, 48.632909 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.732422, 48.224673 ], [ 15.776367, 48.341646 ], [ 15.644531, 48.429201 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ 15.117188, 48.777913 ], [ 15.688477, 48.661943 ], [ 16.127930, 48.429201 ], [ 16.127930, 48.370848 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.996094, 48.136767 ], [ 15.996094, 48.078079 ], [ 16.171875, 48.048710 ], [ 16.347656, 48.166085 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.083984, 48.835797 ], [ 16.523438, 48.980217 ] ] } } +, +{ "type": "Feature", "properties": { "name": "461" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.523438, 48.980217 ], [ 16.655273, 48.748945 ] ] } } +, +{ "type": "Feature", "properties": { "name": "461" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.655273, 48.748945 ], [ 16.611328, 48.516604 ] ] } } +, +{ "type": "Feature", "properties": { "name": "461" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.611328, 48.516604 ], [ 16.479492, 48.370848 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.655273, 48.603858 ], [ 16.787109, 48.690960 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.787109, 48.690960 ], [ 16.918945, 48.777913 ] ] } } +, +{ "type": "Feature", "properties": { "name": "461" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.479492, 48.370848 ], [ 16.347656, 48.312428 ] ] } } +, +{ "type": "Feature", "properties": { "name": "59" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.347656, 48.136767 ], [ 16.391602, 48.283193 ], [ 16.303711, 48.370848 ], [ 16.171875, 48.400032 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.743164, 48.048710 ], [ 16.435547, 48.136767 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 15.644531, 48.429201 ], [ 15.864258, 48.429201 ], [ 16.040039, 48.370848 ], [ 16.435547, 48.400032 ], [ 16.523438, 48.283193 ], [ 16.347656, 48.166085 ] ] } } +, +{ "type": "Feature", "properties": { "name": "49" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.127930, 47.724545 ], [ 15.776367, 47.635784 ] ] } } +, +{ "type": "Feature", "properties": { "name": "59" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.127930, 47.517201 ], [ 16.127930, 47.754098 ], [ 16.215820, 47.783635 ], [ 16.215820, 47.960502 ], [ 16.347656, 48.048710 ], [ 16.303711, 48.136767 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.699219, 47.606163 ], [ 16.391602, 47.931066 ], [ 16.391602, 48.166085 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.479492, 47.813155 ], [ 16.347656, 47.754098 ], [ 16.215820, 47.842658 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.226562, 47.872144 ], [ 17.138672, 47.783635 ], [ 17.226562, 47.724545 ], [ 17.270508, 47.517201 ], [ 16.787109, 47.279229 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.918945, 48.777913 ], [ 17.094727, 48.893615 ], [ 17.314453, 48.893615 ], [ 17.446289, 49.066668 ] ] } } +, +{ "type": "Feature", "properties": { "name": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.743164, 48.048710 ], [ 16.875000, 48.107431 ], [ 17.138672, 48.107431 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 16.918945, 48.777913 ], [ 17.050781, 48.574790 ], [ 17.006836, 48.224673 ], [ 17.094727, 48.107431 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.138672, 48.136767 ], [ 17.226562, 48.195387 ] ] } } +, +{ "type": "Feature", "properties": { "name": "65" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.094727, 48.107431 ], [ 17.182617, 48.048710 ], [ 17.182617, 47.872144 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.094727, 48.107431 ], [ 17.270508, 48.224673 ], [ 17.446289, 48.224673 ], [ 17.534180, 48.312428 ], [ 17.709961, 48.370848 ], [ 17.797852, 48.632909 ], [ 17.929688, 48.690960 ], [ 17.973633, 48.893615 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.973633, 48.893615 ], [ 18.193359, 48.806863 ], [ 18.237305, 48.719961 ] ] } } +, +{ "type": "Feature", "properties": { "name": "58" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.622070, 48.312428 ], [ 17.753906, 48.253941 ], [ 18.017578, 48.341646 ], [ 18.149414, 48.312428 ] ] } } +, +{ "type": "Feature", "properties": { "name": "575" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.105469, 48.312428 ], [ 18.193359, 47.960502 ], [ 18.193359, 47.813155 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.226562, 47.872144 ], [ 16.875000, 47.960502 ], [ 16.875000, 48.019324 ], [ 16.743164, 48.019324 ], [ 16.743164, 48.078079 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.699219, 47.606163 ], [ 17.050781, 47.576526 ], [ 17.578125, 47.694974 ] ] } } +, +{ "type": "Feature", "properties": { "name": "60" }, "geometry": { "type": "LineString", "coordinates": [ [ 17.885742, 47.665387 ], [ 17.578125, 47.665387 ], [ 17.226562, 47.872144 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.237305, 48.719961 ], [ 18.457031, 48.719961 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.457031, 48.719961 ], [ 18.764648, 48.777913 ], [ 18.764648, 48.632909 ], [ 18.896484, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.896484, 48.574790 ], [ 18.940430, 48.748945 ], [ 18.852539, 48.893615 ], [ 18.940430, 49.095452 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.940430, 48.603858 ], [ 19.116211, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { "name": "571" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.149414, 48.312428 ], [ 18.237305, 48.370848 ], [ 18.632812, 48.370848 ], [ 18.764648, 48.516604 ], [ 18.940430, 48.603858 ] ] } } +, +{ "type": "Feature", "properties": { "name": "77" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.116211, 48.661943 ], [ 19.116211, 48.835797 ] ] } } +, +{ "type": "Feature", "properties": { "name": "77" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.116211, 48.574790 ], [ 19.116211, 48.661943 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.116211, 48.574790 ], [ 19.160156, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { "name": "77" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.896484, 48.107431 ], [ 18.852539, 48.136767 ], [ 18.852539, 48.195387 ], [ 19.072266, 48.341646 ], [ 19.116211, 48.574790 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.072266, 48.574790 ], [ 19.291992, 48.545705 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 16.347656, 48.048710 ], [ 16.918945, 47.279229 ], [ 16.918945, 47.279229 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 17.666016, 47.665387 ], [ 17.709961, 47.576526 ] ] } } +, +{ "type": "Feature", "properties": { "name": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.544922, 45.120053 ], [ 18.588867, 45.120053 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.764648, 45.490946 ], [ 18.808594, 45.490946 ] ] } } +, +{ "type": "Feature", "properties": { "name": "73" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.940430, 45.398450 ], [ 18.808594, 45.490946 ] ] } } +, +{ "type": "Feature", "properties": { "name": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.588867, 45.120053 ], [ 18.808594, 45.058001 ], [ 19.335938, 45.058001 ] ] } } +, +{ "type": "Feature", "properties": { "name": "73" }, "geometry": { "type": "LineString", "coordinates": [ [ 18.720703, 45.089036 ], [ 18.808594, 45.274886 ], [ 18.720703, 45.305803 ], [ 18.720703, 45.398450 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.808594, 45.274886 ], [ 18.984375, 45.367584 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.808594, 45.552525 ], [ 19.072266, 45.521744 ], [ 19.116211, 45.614037 ], [ 18.984375, 45.644768 ], [ 18.984375, 45.706179 ], [ 19.116211, 45.767523 ] ] } } +, +{ "type": "Feature", "properties": { "name": "662" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.423828, 45.243953 ], [ 19.335938, 45.367584 ], [ 19.248047, 45.367584 ], [ 19.291992, 45.521744 ], [ 19.204102, 45.552525 ], [ 19.160156, 45.828799 ], [ 19.204102, 45.859412 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.072266, 45.305803 ], [ 18.940430, 45.398450 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.863281, 45.305803 ], [ 19.819336, 45.243953 ], [ 19.511719, 45.274886 ], [ 19.291992, 45.213004 ], [ 19.072266, 45.305803 ] ] } } +, +{ "type": "Feature", "properties": { "name": "662" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.423828, 45.026950 ], [ 19.423828, 45.243953 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.995117, 45.981695 ], [ 19.995117, 45.920587 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.907227, 45.274886 ], [ 19.731445, 45.367584 ], [ 19.687500, 45.798170 ], [ 19.731445, 45.920587 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.643555, 45.798170 ], [ 20.039062, 45.614037 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.995117, 45.920587 ], [ 20.083008, 45.920587 ], [ 20.126953, 45.798170 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.126953, 45.798170 ], [ 20.039062, 45.614037 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.039062, 45.521744 ], [ 19.907227, 45.460131 ], [ 19.819336, 45.336702 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.863281, 45.243953 ], [ 19.819336, 45.243953 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.819336, 45.243953 ], [ 19.819336, 45.213004 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.819336, 45.336702 ], [ 19.863281, 45.243953 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.907227, 45.274886 ], [ 19.819336, 45.213004 ], [ 19.863281, 45.089036 ], [ 19.731445, 44.715514 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.434570, 44.809122 ], [ 19.995117, 45.089036 ], [ 19.863281, 45.243953 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.039062, 45.614037 ], [ 20.039062, 45.521744 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.170898, 45.583290 ], [ 20.039062, 45.614037 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.302734, 45.490946 ], [ 20.170898, 45.583290 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.610352, 46.073231 ], [ 20.610352, 46.073231 ], [ 20.522461, 45.951150 ], [ 20.698242, 45.859412 ], [ 20.698242, 45.736860 ], [ 20.566406, 45.644768 ], [ 20.434570, 45.367584 ], [ 20.126953, 45.398450 ], [ 19.863281, 45.305803 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.390625, 45.367584 ], [ 20.302734, 45.490946 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.390625, 45.367584 ], [ 20.390625, 45.213004 ] ] } } +, +{ "type": "Feature", "properties": { "name": "671" }, "geometry": { "type": "LineString", "coordinates": [ [ 21.225586, 45.767523 ], [ 21.181641, 46.012224 ], [ 21.225586, 46.042736 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 21.225586, 45.767523 ], [ 21.049805, 45.736860 ], [ 21.005859, 45.798170 ], [ 20.698242, 45.798170 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 21.269531, 45.243953 ], [ 21.445312, 45.274886 ], [ 21.708984, 45.026950 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 21.884766, 45.583290 ], [ 21.840820, 45.490946 ], [ 21.840820, 45.429299 ], [ 21.928711, 45.398450 ], [ 21.840820, 45.026950 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.544922, 44.809122 ], [ 18.676758, 44.933696 ], [ 18.720703, 45.089036 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.544922, 44.527843 ], [ 18.588867, 44.527843 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.632812, 44.465151 ], [ 18.588867, 44.527843 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.588867, 44.527843 ], [ 18.720703, 44.276671 ], [ 18.632812, 44.119142 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.588867, 44.527843 ], [ 18.764648, 44.527843 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.808594, 44.465151 ], [ 18.632812, 44.465151 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.764648, 44.527843 ], [ 18.808594, 44.465151 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.984375, 44.402392 ], [ 18.808594, 44.465151 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.940430, 44.182204 ], [ 18.896484, 44.245199 ], [ 18.720703, 44.245199 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.072266, 45.058001 ], [ 18.984375, 45.367584 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.731445, 44.715514 ], [ 19.555664, 44.777936 ], [ 19.291992, 44.653024 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.379883, 45.026950 ], [ 19.423828, 45.026950 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 18.588867, 44.527843 ], [ 18.588867, 44.621754 ], [ 18.544922, 44.653024 ] ], [ [ 18.544922, 44.809122 ], [ 18.808594, 44.871443 ], [ 19.028320, 44.840291 ], [ 19.204102, 44.746733 ], [ 19.335938, 44.840291 ], [ 19.291992, 44.933696 ], [ 19.423828, 45.058001 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.116211, 44.402392 ], [ 18.984375, 44.402392 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.291992, 44.653024 ], [ 19.160156, 44.527843 ], [ 19.160156, 44.276671 ], [ 19.028320, 44.150681 ], [ 18.940430, 44.182204 ], [ 18.940430, 44.056012 ], [ 18.852539, 43.992815 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.291992, 44.496505 ], [ 19.204102, 44.527843 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.632812, 44.119142 ], [ 18.588867, 44.087585 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 18.852539, 43.992815 ], [ 18.808594, 43.929550 ], [ 18.720703, 43.897892 ] ] } } +, +{ "type": "Feature", "properties": { "name": "762" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.072266, 43.707594 ], [ 19.028320, 43.739352 ] ] } } +, +{ "type": "Feature", "properties": { "name": "762" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.072266, 43.707594 ], [ 19.072266, 43.707594 ] ] } } +, +{ "type": "Feature", "properties": { "name": "761" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.731445, 43.802819 ], [ 19.511719, 43.834527 ], [ 19.511719, 43.771094 ], [ 19.072266, 43.707594 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.643555, 43.389082 ], [ 19.643555, 43.357138 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.731445, 44.715514 ], [ 19.731445, 44.746733 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.907227, 45.274886 ], [ 20.083008, 45.213004 ], [ 20.083008, 45.120053 ], [ 20.478516, 44.809122 ] ] } } +, +{ "type": "Feature", "properties": { "name": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.335938, 45.058001 ], [ 20.258789, 44.809122 ], [ 20.478516, 44.809122 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.346680, 44.746733 ], [ 20.302734, 44.621754 ], [ 20.039062, 44.653024 ], [ 19.995117, 44.590467 ], [ 19.907227, 44.590467 ], [ 19.731445, 44.715514 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.258789, 44.809122 ], [ 20.346680, 44.715514 ], [ 20.434570, 44.715514 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.731445, 44.715514 ], [ 19.731445, 44.527843 ], [ 19.907227, 44.402392 ], [ 19.863281, 44.276671 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.248047, 44.527843 ], [ 19.423828, 44.496505 ], [ 19.863281, 44.276671 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.863281, 44.276671 ], [ 20.039062, 44.276671 ], [ 20.214844, 44.370987 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.390625, 45.213004 ], [ 20.390625, 45.026950 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.390625, 45.026950 ], [ 20.522461, 44.809122 ] ] } } +, +{ "type": "Feature", "properties": { "name": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.478516, 44.809122 ], [ 20.654297, 44.871443 ], [ 20.742188, 44.995883 ], [ 20.874023, 45.058001 ], [ 21.269531, 45.089036 ], [ 21.313477, 45.182037 ], [ 21.225586, 45.274886 ], [ 21.181641, 45.644768 ], [ 21.225586, 45.767523 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.478516, 44.777936 ], [ 20.478516, 44.684277 ], [ 20.698242, 44.465151 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.654297, 44.559163 ], [ 20.698242, 44.308127 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.214844, 44.370987 ], [ 20.566406, 44.339565 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.566406, 44.339565 ], [ 20.698242, 44.308127 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.698242, 44.308127 ], [ 20.698242, 44.245199 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 21.181641, 44.621754 ], [ 20.961914, 44.590467 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.961914, 44.590467 ], [ 20.961914, 44.559163 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.961914, 44.590467 ], [ 21.093750, 44.621754 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.698242, 44.245199 ], [ 20.917969, 44.024422 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.775391, 43.897892 ], [ 19.599609, 43.834527 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.863281, 43.866218 ], [ 19.819336, 43.866218 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 19.819336, 43.866218 ], [ 19.775391, 43.897892 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.039062, 43.834527 ], [ 19.907227, 44.024422 ], [ 19.863281, 44.276671 ] ] } } +, +{ "type": "Feature", "properties": { "name": "761" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.039062, 43.834527 ], [ 19.951172, 43.802819 ], [ 19.819336, 43.866218 ], [ 19.731445, 43.802819 ] ] } } +, +{ "type": "Feature", "properties": { "name": "761" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.390625, 43.897892 ], [ 20.302734, 43.866218 ], [ 20.126953, 43.929550 ], [ 20.039062, 43.834527 ] ] } } +, +{ "type": "Feature", "properties": { "name": "763" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.434570, 44.809122 ], [ 20.434570, 44.684277 ], [ 20.302734, 44.590467 ], [ 20.214844, 44.370987 ], [ 20.302734, 44.276671 ], [ 20.258789, 44.182204 ], [ 20.478516, 44.150681 ], [ 20.390625, 43.897892 ] ] } } +, +{ "type": "Feature", "properties": { "name": "761" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.566406, 43.897892 ], [ 20.390625, 43.897892 ] ] } } +, +{ "type": "Feature", "properties": { "name": "761" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.786133, 43.961191 ], [ 20.566406, 43.897892 ] ] } } +, +{ "type": "Feature", "properties": { "name": "761" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.566406, 43.897892 ], [ 20.698242, 43.707594 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.698242, 43.707594 ], [ 20.698242, 43.739352 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 21.093750, 44.182204 ], [ 21.005859, 44.150681 ], [ 21.005859, 44.056012 ], [ 20.786133, 43.929550 ], [ 20.742188, 43.707594 ] ] } } +, +{ "type": "Feature", "properties": { "name": "761" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.698242, 43.707594 ], [ 21.005859, 43.612217 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.874023, 43.644026 ], [ 20.961914, 43.612217 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.698242, 43.707594 ], [ 20.566406, 43.644026 ], [ 20.610352, 43.452919 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.708984, 44.653024 ], [ 21.577148, 44.809122 ], [ 21.577148, 44.995883 ], [ 21.708984, 45.058001 ], [ 21.928711, 45.026950 ], [ 22.016602, 44.933696 ], [ 22.148438, 44.933696 ], [ 22.192383, 44.995883 ], [ 22.280273, 44.995883 ] ], [ [ 22.280273, 44.995883 ], [ 22.324219, 44.933696 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 21.181641, 44.621754 ], [ 21.269531, 44.590467 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 20.698242, 44.245199 ], [ 21.093750, 44.245199 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 20.478516, 44.809122 ], [ 20.610352, 44.684277 ], [ 20.610352, 44.590467 ], [ 20.917969, 44.590467 ], [ 21.049805, 44.496505 ], [ 21.093750, 44.150681 ], [ 21.269531, 44.024422 ] ] } } +, +{ "type": "Feature", "properties": { "name": "70" }, "geometry": { "type": "LineString", "coordinates": [ [ 21.577148, 45.798170 ], [ 21.225586, 45.767523 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 21.093750, 44.621754 ], [ 21.489258, 44.590467 ], [ 21.665039, 44.465151 ], [ 21.840820, 44.496505 ], [ 21.884766, 44.370987 ], [ 21.972656, 44.433780 ], [ 21.972656, 44.370987 ], [ 22.192383, 44.339565 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 22.016602, 44.056012 ], [ 22.060547, 44.056012 ] ], [ [ 21.269531, 44.590467 ], [ 21.313477, 44.465151 ], [ 21.533203, 44.245199 ], [ 21.928711, 44.213710 ], [ 22.016602, 44.056012 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ 21.137695, 44.621754 ], [ 21.533203, 44.746733 ], [ 21.533203, 44.684277 ], [ 21.621094, 44.653024 ], [ 21.928711, 44.653024 ], [ 22.060547, 44.465151 ], [ 22.192383, 44.465151 ] ], [ [ 22.192383, 44.465151 ], [ 22.324219, 44.684277 ] ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 22.192383, 44.339565 ], [ 22.192383, 44.465151 ] ] } } +, +{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 22.324219, 44.308127 ], [ 22.192383, 44.339565 ] ] } } +, +{ "type": "Feature", "properties": { "name": "75" }, "geometry": { "type": "LineString", "coordinates": [ [ 21.269531, 44.024422 ], [ 21.269531, 43.961191 ], [ 21.401367, 43.961191 ], [ 21.445312, 43.802819 ] ] } } +, +{ "type": "Feature", "properties": { "name": "761" }, "geometry": { "type": "LineString", "coordinates": [ [ 21.401367, 43.866218 ], [ 21.621094, 43.866218 ] ] } } +, +{ "type": "Feature", "properties": { "name": "763" }, "geometry": { "type": "LineString", "coordinates": [ [ 19.731445, 43.802819 ], [ 19.687500, 43.675818 ], [ 19.819336, 43.484812 ], [ 19.643555, 43.452919 ], [ 19.687500, 43.325178 ] ] } } +] } +] } diff --git a/tests/pbf/roads-1-1-0.pbf b/tests/pbf/roads-1-1-0.pbf new file mode 100644 index 000000000..22a26fbf4 Binary files /dev/null and b/tests/pbf/roads-1-1-0.pbf differ diff --git a/tests/pbf/scalerank-0-filter.json b/tests/pbf/scalerank-0-filter.json new file mode 100644 index 000000000..c2b996d42 --- /dev/null +++ b/tests/pbf/scalerank-0-filter.json @@ -0,0 +1 @@ +{"*":["SCALERANK","eq",0]} diff --git a/tests/pbf/sf-zips.json b/tests/pbf/sf-zips.json new file mode 100644 index 000000000..397ab74df --- /dev/null +++ b/tests/pbf/sf-zips.json @@ -0,0 +1,27 @@ +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "bin-ids": "236,237,510,514", "ZCTA5CE10": "94129", "GEOID10": "94129", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5968455, "AWATER10": 14697, "INTPTLAT10": "+37.7973402", "INTPTLON10": "-122.4644664" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.466660, 37.805851 ], [ -122.463570, 37.804901 ], [ -122.461681, 37.804901 ], [ -122.458420, 37.805444 ], [ -122.454472, 37.806529 ], [ -122.452412, 37.806258 ], [ -122.448120, 37.806936 ], [ -122.448120, 37.806393 ], [ -122.448463, 37.806122 ], [ -122.448292, 37.804766 ], [ -122.451553, 37.803409 ], [ -122.450180, 37.802867 ], [ -122.450008, 37.802460 ], [ -122.447605, 37.800697 ], [ -122.447262, 37.798527 ], [ -122.448120, 37.798255 ], [ -122.448292, 37.797848 ], [ -122.447948, 37.797441 ], [ -122.448635, 37.797441 ], [ -122.448635, 37.797034 ], [ -122.447948, 37.796899 ], [ -122.447948, 37.796492 ], [ -122.448978, 37.796356 ], [ -122.447433, 37.795814 ], [ -122.447433, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.448635, 37.795542 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.794728 ], [ -122.447948, 37.793101 ], [ -122.448463, 37.792829 ], [ -122.448635, 37.791880 ], [ -122.470951, 37.787267 ], [ -122.473354, 37.787132 ], [ -122.475586, 37.786725 ], [ -122.479877, 37.786860 ], [ -122.483826, 37.787674 ], [ -122.484512, 37.789167 ], [ -122.483997, 37.789709 ], [ -122.484341, 37.790116 ], [ -122.484341, 37.789709 ], [ -122.485027, 37.789574 ], [ -122.485886, 37.790795 ], [ -122.483654, 37.794050 ], [ -122.482109, 37.798527 ], [ -122.481766, 37.798527 ], [ -122.481937, 37.798798 ], [ -122.481594, 37.798798 ], [ -122.481766, 37.798933 ], [ -122.480221, 37.801375 ], [ -122.479877, 37.802867 ], [ -122.478676, 37.805444 ], [ -122.478333, 37.808156 ], [ -122.477818, 37.808428 ], [ -122.477989, 37.810598 ], [ -122.477646, 37.810598 ], [ -122.477818, 37.811005 ], [ -122.476444, 37.810869 ], [ -122.476101, 37.809648 ], [ -122.474728, 37.809241 ], [ -122.472668, 37.808970 ], [ -122.470608, 37.808563 ], [ -122.469234, 37.807750 ], [ -122.468719, 37.807071 ], [ -122.468376, 37.806800 ], [ -122.468204, 37.806936 ], [ -122.468204, 37.806665 ], [ -122.466660, 37.805851 ] ], [ [ -122.452583, 37.803274 ], [ -122.452412, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.451210, 37.803138 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.466660, 37.805851 ], [ -122.466145, 37.806393 ], [ -122.465973, 37.806258 ], [ -122.466660, 37.805851 ] ] ], [ [ [ -122.469921, 37.809377 ], [ -122.469406, 37.809106 ], [ -122.470093, 37.809241 ], [ -122.469921, 37.809377 ] ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "bin-ids": "529,531", "ZCTA5CE10": "94123", "GEOID10": "94123", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2646572, "AWATER10": 218721, "INTPTLAT10": "+37.8009336", "INTPTLON10": "-122.4383664" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.435760, 37.807614 ], [ -122.435589, 37.807207 ], [ -122.435589, 37.806936 ], [ -122.433014, 37.807343 ], [ -122.433014, 37.807071 ], [ -122.434387, 37.806936 ], [ -122.434044, 37.806800 ], [ -122.433014, 37.806936 ], [ -122.432842, 37.806800 ], [ -122.434044, 37.806665 ], [ -122.434044, 37.806393 ], [ -122.433872, 37.806122 ], [ -122.433872, 37.805851 ], [ -122.433701, 37.805580 ], [ -122.432671, 37.805715 ], [ -122.432327, 37.805986 ], [ -122.431641, 37.803274 ], [ -122.425289, 37.804088 ], [ -122.424946, 37.803138 ], [ -122.426491, 37.803003 ], [ -122.426319, 37.802053 ], [ -122.424774, 37.802324 ], [ -122.424603, 37.801239 ], [ -122.426147, 37.801104 ], [ -122.425976, 37.800154 ], [ -122.424431, 37.800426 ], [ -122.423744, 37.796628 ], [ -122.433529, 37.795407 ], [ -122.433357, 37.794457 ], [ -122.434902, 37.794322 ], [ -122.435074, 37.795271 ], [ -122.436790, 37.795000 ], [ -122.436619, 37.794050 ], [ -122.440739, 37.793508 ], [ -122.440910, 37.794457 ], [ -122.441769, 37.794322 ], [ -122.441597, 37.793372 ], [ -122.446404, 37.792829 ], [ -122.446232, 37.791880 ], [ -122.447605, 37.791744 ], [ -122.448635, 37.794728 ], [ -122.448978, 37.795000 ], [ -122.448635, 37.795542 ], [ -122.447777, 37.795407 ], [ -122.447433, 37.795542 ], [ -122.447433, 37.795814 ], [ -122.448978, 37.796356 ], [ -122.447948, 37.796492 ], [ -122.447948, 37.796899 ], [ -122.448635, 37.797034 ], [ -122.448635, 37.797441 ], [ -122.447948, 37.797441 ], [ -122.448292, 37.797848 ], [ -122.448120, 37.798255 ], [ -122.447262, 37.798527 ], [ -122.447605, 37.800697 ], [ -122.450008, 37.802460 ], [ -122.450180, 37.802867 ], [ -122.451553, 37.803409 ], [ -122.448292, 37.804766 ], [ -122.448463, 37.806122 ], [ -122.448120, 37.806393 ], [ -122.448120, 37.806936 ], [ -122.448635, 37.808563 ], [ -122.443142, 37.809784 ], [ -122.439537, 37.808835 ], [ -122.440910, 37.806936 ], [ -122.435760, 37.807614 ] ] ], [ [ [ -122.452583, 37.803274 ], [ -122.451210, 37.803138 ], [ -122.450008, 37.802460 ], [ -122.452583, 37.803274 ] ] ], [ [ [ -122.433872, 37.806122 ], [ -122.432842, 37.806393 ], [ -122.432842, 37.806122 ], [ -122.433872, 37.806122 ] ] ], [ [ [ -122.435589, 37.807207 ], [ -122.433529, 37.807614 ], [ -122.433529, 37.807478 ], [ -122.435589, 37.807207 ] ] ], [ [ [ -122.434044, 37.806393 ], [ -122.432842, 37.806665 ], [ -122.432842, 37.806529 ], [ -122.434044, 37.806393 ] ] ], [ [ [ -122.433872, 37.805851 ], [ -122.432842, 37.805986 ], [ -122.432842, 37.805851 ], [ -122.433872, 37.805851 ] ] ], [ [ [ -122.433872, 37.807885 ], [ -122.433701, 37.808156 ], [ -122.433701, 37.807885 ], [ -122.433872, 37.807885 ] ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94121", "GEOID10": "94121", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 7980073, "AWATER10": 61283, "INTPTLAT10": "+37.7767691", "INTPTLON10": "-122.4947073" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.485886, 37.790795 ], [ -122.485027, 37.789574 ], [ -122.484341, 37.789709 ], [ -122.484341, 37.790116 ], [ -122.483997, 37.789709 ], [ -122.484512, 37.789167 ], [ -122.483826, 37.787674 ], [ -122.479877, 37.786860 ], [ -122.476616, 37.786860 ], [ -122.475586, 37.773021 ], [ -122.471638, 37.773157 ], [ -122.471809, 37.772750 ], [ -122.472496, 37.772343 ], [ -122.474899, 37.772479 ], [ -122.478676, 37.772207 ], [ -122.479191, 37.771936 ], [ -122.479362, 37.771258 ], [ -122.478333, 37.769358 ], [ -122.478161, 37.767729 ], [ -122.477303, 37.766237 ], [ -122.477303, 37.765423 ], [ -122.510262, 37.763930 ], [ -122.510433, 37.767322 ], [ -122.511120, 37.771258 ], [ -122.513180, 37.770715 ], [ -122.513180, 37.776007 ], [ -122.513351, 37.777363 ], [ -122.514553, 37.778449 ], [ -122.514553, 37.779263 ], [ -122.514896, 37.779670 ], [ -122.514553, 37.779941 ], [ -122.514553, 37.780484 ], [ -122.514725, 37.781162 ], [ -122.514210, 37.781434 ], [ -122.513695, 37.781434 ], [ -122.513523, 37.782655 ], [ -122.513180, 37.782790 ], [ -122.513008, 37.783197 ], [ -122.512493, 37.783740 ], [ -122.512665, 37.784147 ], [ -122.512150, 37.783740 ], [ -122.511978, 37.784283 ], [ -122.511292, 37.784283 ], [ -122.511292, 37.784554 ], [ -122.509747, 37.784825 ], [ -122.509060, 37.785639 ], [ -122.508030, 37.786182 ], [ -122.507000, 37.787403 ], [ -122.506485, 37.787539 ], [ -122.506142, 37.787810 ], [ -122.505970, 37.788217 ], [ -122.502708, 37.788081 ], [ -122.500477, 37.788353 ], [ -122.500134, 37.788624 ], [ -122.499962, 37.788488 ], [ -122.499619, 37.788760 ], [ -122.499447, 37.788488 ], [ -122.498589, 37.788353 ], [ -122.498074, 37.787946 ], [ -122.497559, 37.787946 ], [ -122.497387, 37.787539 ], [ -122.496529, 37.787267 ], [ -122.494812, 37.787810 ], [ -122.494640, 37.788081 ], [ -122.493954, 37.787539 ], [ -122.493439, 37.787674 ], [ -122.492752, 37.787946 ], [ -122.492409, 37.787810 ], [ -122.491207, 37.788217 ], [ -122.489834, 37.789438 ], [ -122.488976, 37.789302 ], [ -122.487946, 37.789574 ], [ -122.487431, 37.789438 ], [ -122.485886, 37.790795 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94132", "GEOID10": "94132", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8078894, "AWATER10": 1299131, "INTPTLAT10": "+37.7222142", "INTPTLON10": "-122.4840831" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.490005, 37.738006 ], [ -122.488461, 37.737055 ], [ -122.486229, 37.736784 ], [ -122.483311, 37.737463 ], [ -122.482452, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.475414, 37.737463 ], [ -122.475243, 37.734612 ], [ -122.475071, 37.734747 ], [ -122.471638, 37.734747 ], [ -122.471981, 37.731082 ], [ -122.472153, 37.731082 ], [ -122.472496, 37.721578 ], [ -122.464428, 37.721713 ], [ -122.463913, 37.722392 ], [ -122.462196, 37.723071 ], [ -122.462196, 37.721713 ], [ -122.462711, 37.721713 ], [ -122.462711, 37.718590 ], [ -122.462540, 37.711257 ], [ -122.460823, 37.710578 ], [ -122.464256, 37.710578 ], [ -122.465973, 37.710171 ], [ -122.467690, 37.709220 ], [ -122.468891, 37.708270 ], [ -122.497730, 37.708134 ], [ -122.498245, 37.708134 ], [ -122.498245, 37.710714 ], [ -122.498417, 37.714924 ], [ -122.498760, 37.715875 ], [ -122.499962, 37.717504 ], [ -122.500305, 37.718590 ], [ -122.500477, 37.720627 ], [ -122.502708, 37.723343 ], [ -122.503052, 37.724022 ], [ -122.503052, 37.725244 ], [ -122.503567, 37.725379 ], [ -122.505283, 37.726330 ], [ -122.506313, 37.727416 ], [ -122.507172, 37.732575 ], [ -122.506828, 37.735426 ], [ -122.505283, 37.735426 ], [ -122.505283, 37.735562 ], [ -122.502022, 37.735562 ], [ -122.500477, 37.735155 ], [ -122.498589, 37.734204 ], [ -122.496872, 37.733933 ], [ -122.491379, 37.734069 ], [ -122.491379, 37.737327 ], [ -122.490349, 37.737870 ], [ -122.490005, 37.738006 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94116", "GEOID10": "94116", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6699058, "AWATER10": 97204, "INTPTLAT10": "+37.7453994", "INTPTLON10": "-122.4860655" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.510433, 37.764065 ], [ -122.509918, 37.763930 ], [ -122.508202, 37.751037 ], [ -122.470951, 37.752665 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.754837 ], [ -122.470093, 37.754701 ], [ -122.470264, 37.753887 ], [ -122.469578, 37.753615 ], [ -122.469063, 37.752937 ], [ -122.468376, 37.753208 ], [ -122.467861, 37.752665 ], [ -122.463398, 37.753073 ], [ -122.461338, 37.751308 ], [ -122.460308, 37.749815 ], [ -122.458591, 37.748051 ], [ -122.458763, 37.747643 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.746829 ], [ -122.460823, 37.745336 ], [ -122.461338, 37.745607 ], [ -122.463741, 37.743707 ], [ -122.467690, 37.743435 ], [ -122.468548, 37.741535 ], [ -122.471294, 37.741399 ], [ -122.470951, 37.737598 ], [ -122.470608, 37.736648 ], [ -122.471638, 37.734747 ], [ -122.475071, 37.734747 ], [ -122.475243, 37.734612 ], [ -122.475414, 37.737463 ], [ -122.481766, 37.737191 ], [ -122.482452, 37.737463 ], [ -122.483311, 37.737463 ], [ -122.486229, 37.736784 ], [ -122.488461, 37.737055 ], [ -122.490005, 37.738006 ], [ -122.491379, 37.737327 ], [ -122.491379, 37.734069 ], [ -122.496872, 37.733933 ], [ -122.498589, 37.734204 ], [ -122.500477, 37.735155 ], [ -122.502022, 37.735562 ], [ -122.505283, 37.735562 ], [ -122.505283, 37.735426 ], [ -122.506828, 37.735426 ], [ -122.506657, 37.736241 ], [ -122.510433, 37.764065 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94118", "GEOID10": "94118", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5047718, "AWATER10": 59174, "INTPTLAT10": "+37.7800933", "INTPTLON10": "-122.4626054" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.447948, 37.793101 ], [ -122.446575, 37.786318 ], [ -122.447605, 37.785097 ], [ -122.446404, 37.785368 ], [ -122.445889, 37.782519 ], [ -122.444515, 37.782519 ], [ -122.443829, 37.781841 ], [ -122.445545, 37.781298 ], [ -122.445374, 37.780077 ], [ -122.446232, 37.779941 ], [ -122.446060, 37.778720 ], [ -122.445374, 37.778856 ], [ -122.444859, 37.776007 ], [ -122.446404, 37.775871 ], [ -122.446918, 37.777635 ], [ -122.453270, 37.776821 ], [ -122.452755, 37.775057 ], [ -122.463741, 37.773564 ], [ -122.464600, 37.772479 ], [ -122.459106, 37.771258 ], [ -122.459621, 37.770579 ], [ -122.464428, 37.769629 ], [ -122.467003, 37.768001 ], [ -122.469063, 37.769086 ], [ -122.471294, 37.769086 ], [ -122.472324, 37.768544 ], [ -122.472668, 37.767594 ], [ -122.473183, 37.767051 ], [ -122.477303, 37.766101 ], [ -122.478161, 37.767729 ], [ -122.478333, 37.769358 ], [ -122.479362, 37.771258 ], [ -122.479191, 37.771936 ], [ -122.478676, 37.772207 ], [ -122.474899, 37.772479 ], [ -122.472496, 37.772343 ], [ -122.471981, 37.772479 ], [ -122.471638, 37.773021 ], [ -122.471638, 37.773157 ], [ -122.475586, 37.773021 ], [ -122.476616, 37.786860 ], [ -122.475586, 37.786725 ], [ -122.473354, 37.787132 ], [ -122.470951, 37.787267 ], [ -122.459450, 37.789709 ], [ -122.448978, 37.791744 ], [ -122.448635, 37.792015 ], [ -122.448292, 37.792965 ], [ -122.447948, 37.793101 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94117", "GEOID10": "94117", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4373050, "AWATER10": 1625, "INTPTLAT10": "+37.7694362", "INTPTLON10": "-122.4476618" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.430096, 37.778856 ], [ -122.428379, 37.770443 ], [ -122.429237, 37.770308 ], [ -122.429066, 37.769493 ], [ -122.435760, 37.769086 ], [ -122.435589, 37.767322 ], [ -122.438164, 37.767187 ], [ -122.438507, 37.766237 ], [ -122.439537, 37.766644 ], [ -122.441254, 37.765287 ], [ -122.443314, 37.765287 ], [ -122.442970, 37.763523 ], [ -122.443829, 37.763251 ], [ -122.445374, 37.761894 ], [ -122.446747, 37.761758 ], [ -122.446404, 37.760944 ], [ -122.447090, 37.759723 ], [ -122.447605, 37.759180 ], [ -122.448463, 37.759044 ], [ -122.448635, 37.759587 ], [ -122.451553, 37.759451 ], [ -122.453270, 37.759180 ], [ -122.453957, 37.758773 ], [ -122.454987, 37.758773 ], [ -122.455330, 37.759044 ], [ -122.456532, 37.759180 ], [ -122.456875, 37.759859 ], [ -122.456017, 37.760266 ], [ -122.455845, 37.760808 ], [ -122.456703, 37.761080 ], [ -122.457905, 37.760944 ], [ -122.459106, 37.761894 ], [ -122.457047, 37.761894 ], [ -122.456360, 37.762573 ], [ -122.456017, 37.763794 ], [ -122.456017, 37.764065 ], [ -122.457561, 37.763523 ], [ -122.457733, 37.765965 ], [ -122.458420, 37.766101 ], [ -122.461166, 37.766237 ], [ -122.477303, 37.765423 ], [ -122.477474, 37.766101 ], [ -122.475243, 37.766508 ], [ -122.472839, 37.767322 ], [ -122.472324, 37.768544 ], [ -122.471294, 37.769086 ], [ -122.469063, 37.769086 ], [ -122.467003, 37.768001 ], [ -122.464428, 37.769629 ], [ -122.461853, 37.770308 ], [ -122.459965, 37.770443 ], [ -122.459106, 37.771258 ], [ -122.464600, 37.772479 ], [ -122.463741, 37.773564 ], [ -122.452755, 37.775057 ], [ -122.453270, 37.776821 ], [ -122.446918, 37.777635 ], [ -122.446404, 37.775871 ], [ -122.444859, 37.776007 ], [ -122.445030, 37.776956 ], [ -122.441597, 37.777363 ], [ -122.441425, 37.776414 ], [ -122.440395, 37.776549 ], [ -122.439880, 37.776685 ], [ -122.440052, 37.777635 ], [ -122.430096, 37.778856 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94122", "GEOID10": "94122", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6124844, "AWATER10": 0, "INTPTLAT10": "+37.7587992", "INTPTLON10": "-122.4851269" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.458763, 37.766237 ], [ -122.457733, 37.765965 ], [ -122.457561, 37.763523 ], [ -122.460823, 37.762573 ], [ -122.460651, 37.760537 ], [ -122.459965, 37.759316 ], [ -122.463226, 37.758773 ], [ -122.462540, 37.756737 ], [ -122.463570, 37.756330 ], [ -122.463741, 37.753751 ], [ -122.463398, 37.753073 ], [ -122.467861, 37.752665 ], [ -122.468376, 37.753208 ], [ -122.469063, 37.752937 ], [ -122.469578, 37.753615 ], [ -122.470264, 37.753887 ], [ -122.470093, 37.754701 ], [ -122.470951, 37.754837 ], [ -122.471123, 37.753480 ], [ -122.470951, 37.752665 ], [ -122.508202, 37.751037 ], [ -122.509918, 37.764065 ], [ -122.461166, 37.766237 ], [ -122.458763, 37.766237 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94115", "GEOID10": "94115", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2889809, "AWATER10": 0, "INTPTLAT10": "+37.7859692", "INTPTLON10": "-122.4372531" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.430267, 37.795814 ], [ -122.426834, 37.779263 ], [ -122.428207, 37.779127 ], [ -122.428036, 37.778177 ], [ -122.429237, 37.778042 ], [ -122.429924, 37.777906 ], [ -122.430096, 37.778856 ], [ -122.440052, 37.777635 ], [ -122.439880, 37.776685 ], [ -122.440395, 37.776549 ], [ -122.441425, 37.776414 ], [ -122.441597, 37.777363 ], [ -122.445030, 37.776956 ], [ -122.445374, 37.778856 ], [ -122.446060, 37.778720 ], [ -122.446232, 37.779941 ], [ -122.445374, 37.780077 ], [ -122.445545, 37.781298 ], [ -122.443829, 37.781841 ], [ -122.444515, 37.782519 ], [ -122.445889, 37.782519 ], [ -122.446404, 37.785368 ], [ -122.447605, 37.785097 ], [ -122.446575, 37.786318 ], [ -122.447605, 37.791744 ], [ -122.446232, 37.791880 ], [ -122.446404, 37.792829 ], [ -122.441597, 37.793372 ], [ -122.441769, 37.794322 ], [ -122.440910, 37.794457 ], [ -122.440739, 37.793508 ], [ -122.436619, 37.794050 ], [ -122.436790, 37.795000 ], [ -122.435074, 37.795271 ], [ -122.434902, 37.794322 ], [ -122.433357, 37.794457 ], [ -122.433529, 37.795407 ], [ -122.430267, 37.795814 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94131", "GEOID10": "94131", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 5379947, "AWATER10": 50540, "INTPTLAT10": "+37.7459165", "INTPTLON10": "-122.4414731" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.456017, 37.764065 ], [ -122.456360, 37.762573 ], [ -122.457047, 37.761894 ], [ -122.459106, 37.761894 ], [ -122.457905, 37.760944 ], [ -122.456703, 37.761080 ], [ -122.455845, 37.760808 ], [ -122.456017, 37.760266 ], [ -122.456875, 37.759859 ], [ -122.456875, 37.759451 ], [ -122.455845, 37.759044 ], [ -122.455330, 37.759044 ], [ -122.454987, 37.758773 ], [ -122.453785, 37.758773 ], [ -122.452927, 37.758094 ], [ -122.453785, 37.757416 ], [ -122.453270, 37.756737 ], [ -122.452412, 37.757008 ], [ -122.452068, 37.756601 ], [ -122.451038, 37.756737 ], [ -122.450352, 37.757416 ], [ -122.447948, 37.757551 ], [ -122.446918, 37.756601 ], [ -122.445889, 37.756466 ], [ -122.445030, 37.756601 ], [ -122.444515, 37.756466 ], [ -122.444172, 37.755923 ], [ -122.444000, 37.754158 ], [ -122.442970, 37.754023 ], [ -122.442455, 37.754430 ], [ -122.442284, 37.755108 ], [ -122.442970, 37.755516 ], [ -122.441254, 37.756194 ], [ -122.441082, 37.755923 ], [ -122.441082, 37.756194 ], [ -122.440052, 37.756330 ], [ -122.440052, 37.755787 ], [ -122.440395, 37.755108 ], [ -122.442455, 37.752394 ], [ -122.442799, 37.752394 ], [ -122.443485, 37.749408 ], [ -122.444344, 37.748322 ], [ -122.444172, 37.747508 ], [ -122.444859, 37.746965 ], [ -122.444515, 37.746693 ], [ -122.444000, 37.746829 ], [ -122.442455, 37.748186 ], [ -122.441425, 37.748593 ], [ -122.438164, 37.748729 ], [ -122.438164, 37.747779 ], [ -122.424946, 37.748593 ], [ -122.423916, 37.740856 ], [ -122.425117, 37.737870 ], [ -122.427864, 37.735562 ], [ -122.432327, 37.733254 ], [ -122.431984, 37.732983 ], [ -122.432156, 37.732983 ], [ -122.435074, 37.731489 ], [ -122.435932, 37.731625 ], [ -122.439537, 37.730131 ], [ -122.443657, 37.728366 ], [ -122.444344, 37.728231 ], [ -122.444344, 37.734612 ], [ -122.445374, 37.734612 ], [ -122.446232, 37.735155 ], [ -122.446404, 37.735562 ], [ -122.446060, 37.735562 ], [ -122.444687, 37.737598 ], [ -122.442455, 37.737598 ], [ -122.442627, 37.739499 ], [ -122.444000, 37.740042 ], [ -122.444687, 37.740856 ], [ -122.446060, 37.741128 ], [ -122.446232, 37.742078 ], [ -122.446575, 37.742485 ], [ -122.449150, 37.742892 ], [ -122.450180, 37.743571 ], [ -122.451725, 37.745607 ], [ -122.449493, 37.746693 ], [ -122.450867, 37.746965 ], [ -122.452068, 37.748322 ], [ -122.452068, 37.751172 ], [ -122.452927, 37.751172 ], [ -122.453098, 37.749001 ], [ -122.454128, 37.749001 ], [ -122.453957, 37.750629 ], [ -122.454472, 37.751308 ], [ -122.454643, 37.751308 ], [ -122.454643, 37.747100 ], [ -122.455502, 37.747100 ], [ -122.455845, 37.746422 ], [ -122.458763, 37.746829 ], [ -122.459106, 37.747236 ], [ -122.458763, 37.747643 ], [ -122.458591, 37.748051 ], [ -122.460308, 37.749815 ], [ -122.461338, 37.751308 ], [ -122.463398, 37.753073 ], [ -122.463741, 37.753615 ], [ -122.463570, 37.756330 ], [ -122.462540, 37.756737 ], [ -122.463226, 37.758773 ], [ -122.459965, 37.759316 ], [ -122.460651, 37.760537 ], [ -122.460823, 37.762573 ], [ -122.456017, 37.764065 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94127", "GEOID10": "94127", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4585709, "AWATER10": 9359, "INTPTLAT10": "+37.7360266", "INTPTLON10": "-122.4572070" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.454472, 37.751308 ], [ -122.453957, 37.750629 ], [ -122.454128, 37.749001 ], [ -122.453098, 37.749001 ], [ -122.452927, 37.751172 ], [ -122.452068, 37.751172 ], [ -122.452068, 37.748322 ], [ -122.450867, 37.746965 ], [ -122.449493, 37.746693 ], [ -122.451725, 37.745607 ], [ -122.450180, 37.743571 ], [ -122.449150, 37.742892 ], [ -122.446575, 37.742485 ], [ -122.446232, 37.742078 ], [ -122.446060, 37.741128 ], [ -122.444687, 37.740856 ], [ -122.444000, 37.740042 ], [ -122.442799, 37.739770 ], [ -122.442455, 37.739499 ], [ -122.442627, 37.738277 ], [ -122.442455, 37.737598 ], [ -122.444687, 37.737598 ], [ -122.446060, 37.735562 ], [ -122.446404, 37.735562 ], [ -122.446232, 37.735155 ], [ -122.445374, 37.734612 ], [ -122.444344, 37.734612 ], [ -122.444344, 37.730675 ], [ -122.453442, 37.730675 ], [ -122.453442, 37.731625 ], [ -122.457561, 37.731082 ], [ -122.457390, 37.730675 ], [ -122.459278, 37.730810 ], [ -122.459965, 37.729860 ], [ -122.459965, 37.728774 ], [ -122.460995, 37.728638 ], [ -122.460823, 37.727552 ], [ -122.462025, 37.727416 ], [ -122.462540, 37.727145 ], [ -122.462711, 37.725515 ], [ -122.462196, 37.725244 ], [ -122.462196, 37.723071 ], [ -122.463913, 37.722392 ], [ -122.464428, 37.721713 ], [ -122.472496, 37.721578 ], [ -122.471981, 37.728774 ], [ -122.472324, 37.728774 ], [ -122.471809, 37.734204 ], [ -122.470608, 37.736648 ], [ -122.470951, 37.737598 ], [ -122.471294, 37.741399 ], [ -122.468548, 37.741535 ], [ -122.467690, 37.743435 ], [ -122.463741, 37.743707 ], [ -122.461338, 37.745607 ], [ -122.460823, 37.745336 ], [ -122.459106, 37.746829 ], [ -122.459450, 37.747100 ], [ -122.459106, 37.747236 ], [ -122.458763, 37.746829 ], [ -122.455845, 37.746422 ], [ -122.455502, 37.747100 ], [ -122.454643, 37.747100 ], [ -122.454643, 37.751308 ], [ -122.454472, 37.751308 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94109", "GEOID10": "94109", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3077724, "AWATER10": 295382, "INTPTLAT10": "+37.7953881", "INTPTLON10": "-122.4224441" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.420998, 37.812903 ], [ -122.419968, 37.808835 ], [ -122.419281, 37.808428 ], [ -122.419109, 37.807750 ], [ -122.420826, 37.807614 ], [ -122.420483, 37.806665 ], [ -122.418938, 37.806800 ], [ -122.418251, 37.803681 ], [ -122.418079, 37.803138 ], [ -122.419796, 37.802867 ], [ -122.419624, 37.802053 ], [ -122.417908, 37.802189 ], [ -122.417221, 37.798527 ], [ -122.415504, 37.798662 ], [ -122.413960, 37.790523 ], [ -122.412243, 37.790659 ], [ -122.411728, 37.788217 ], [ -122.412415, 37.788081 ], [ -122.412415, 37.787810 ], [ -122.413273, 37.787674 ], [ -122.413101, 37.786725 ], [ -122.414818, 37.786453 ], [ -122.414303, 37.783740 ], [ -122.419109, 37.783062 ], [ -122.418938, 37.782112 ], [ -122.420483, 37.781976 ], [ -122.420826, 37.782926 ], [ -122.422543, 37.782655 ], [ -122.422371, 37.781705 ], [ -122.423916, 37.781569 ], [ -122.424088, 37.782519 ], [ -122.427349, 37.782112 ], [ -122.430267, 37.795814 ], [ -122.423744, 37.796628 ], [ -122.424431, 37.800426 ], [ -122.425976, 37.800154 ], [ -122.426147, 37.801104 ], [ -122.424603, 37.801239 ], [ -122.424774, 37.802324 ], [ -122.426319, 37.802053 ], [ -122.426491, 37.803003 ], [ -122.424946, 37.803138 ], [ -122.425289, 37.804088 ], [ -122.431641, 37.803274 ], [ -122.432327, 37.805986 ], [ -122.432156, 37.806122 ], [ -122.432671, 37.808428 ], [ -122.432327, 37.808563 ], [ -122.431984, 37.807207 ], [ -122.431469, 37.807343 ], [ -122.431812, 37.808970 ], [ -122.431297, 37.809106 ], [ -122.430954, 37.807343 ], [ -122.430267, 37.807478 ], [ -122.430611, 37.809106 ], [ -122.430096, 37.809241 ], [ -122.429752, 37.807885 ], [ -122.428207, 37.808428 ], [ -122.427006, 37.808156 ], [ -122.427521, 37.808699 ], [ -122.428036, 37.808563 ], [ -122.427521, 37.808835 ], [ -122.426834, 37.808156 ], [ -122.426491, 37.809920 ], [ -122.425804, 37.810462 ], [ -122.424946, 37.810733 ], [ -122.425976, 37.812089 ], [ -122.425117, 37.812632 ], [ -122.420998, 37.812903 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94133", "GEOID10": "94133", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1955594, "AWATER10": 646917, "INTPTLAT10": "+37.8045315", "INTPTLON10": "-122.4108520" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.420998, 37.812903 ], [ -122.407436, 37.812768 ], [ -122.398510, 37.807207 ], [ -122.402287, 37.805173 ], [ -122.403488, 37.805037 ], [ -122.403488, 37.805308 ], [ -122.404518, 37.806122 ], [ -122.405720, 37.806665 ], [ -122.405891, 37.806529 ], [ -122.405376, 37.805715 ], [ -122.405205, 37.804766 ], [ -122.405891, 37.804630 ], [ -122.405720, 37.803816 ], [ -122.405033, 37.803816 ], [ -122.404861, 37.802867 ], [ -122.403145, 37.803138 ], [ -122.401943, 37.796899 ], [ -122.403488, 37.796628 ], [ -122.403488, 37.796356 ], [ -122.414818, 37.795000 ], [ -122.415504, 37.798662 ], [ -122.417221, 37.798527 ], [ -122.417908, 37.802189 ], [ -122.419624, 37.802053 ], [ -122.419796, 37.802867 ], [ -122.418079, 37.803138 ], [ -122.418251, 37.803681 ], [ -122.418938, 37.806800 ], [ -122.420483, 37.806665 ], [ -122.420826, 37.807614 ], [ -122.419109, 37.807750 ], [ -122.419281, 37.808428 ], [ -122.419968, 37.808835 ], [ -122.420998, 37.812903 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94108", "GEOID10": "94108", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 698151, "AWATER10": 0, "INTPTLAT10": "+37.7920162", "INTPTLON10": "-122.4085835" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.404346, 37.796356 ], [ -122.403316, 37.795542 ], [ -122.405033, 37.795271 ], [ -122.403488, 37.787810 ], [ -122.404690, 37.786725 ], [ -122.406406, 37.786589 ], [ -122.406750, 37.788488 ], [ -122.408466, 37.788353 ], [ -122.408638, 37.789167 ], [ -122.411900, 37.788760 ], [ -122.412243, 37.790659 ], [ -122.413960, 37.790523 ], [ -122.414818, 37.795000 ], [ -122.404346, 37.796356 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94111", "GEOID10": "94111", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 891134, "AWATER10": 494314, "INTPTLAT10": "+37.7993699", "INTPTLON10": "-122.3984087" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.398510, 37.807207 ], [ -122.393360, 37.801918 ], [ -122.388897, 37.796628 ], [ -122.391472, 37.793915 ], [ -122.392159, 37.793915 ], [ -122.392502, 37.793643 ], [ -122.394390, 37.795000 ], [ -122.396622, 37.794593 ], [ -122.396278, 37.793372 ], [ -122.399197, 37.791066 ], [ -122.399540, 37.791337 ], [ -122.400055, 37.793643 ], [ -122.401257, 37.793508 ], [ -122.401257, 37.794050 ], [ -122.404690, 37.793508 ], [ -122.405033, 37.795271 ], [ -122.403316, 37.795542 ], [ -122.404346, 37.796356 ], [ -122.403488, 37.796356 ], [ -122.403488, 37.796628 ], [ -122.401943, 37.796899 ], [ -122.403145, 37.803138 ], [ -122.404861, 37.802867 ], [ -122.405033, 37.803816 ], [ -122.405548, 37.803681 ], [ -122.405720, 37.803816 ], [ -122.405891, 37.804630 ], [ -122.405205, 37.804766 ], [ -122.405376, 37.805715 ], [ -122.405891, 37.806529 ], [ -122.405720, 37.806665 ], [ -122.404346, 37.805986 ], [ -122.403488, 37.805308 ], [ -122.403488, 37.805037 ], [ -122.402287, 37.805173 ], [ -122.398510, 37.807207 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94104", "GEOID10": "94104", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 200857, "AWATER10": 0, "INTPTLAT10": "+37.7914115", "INTPTLON10": "-122.4021291" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.401257, 37.794050 ], [ -122.401257, 37.793508 ], [ -122.400055, 37.793643 ], [ -122.399540, 37.791337 ], [ -122.399197, 37.791066 ], [ -122.403488, 37.787810 ], [ -122.404690, 37.793508 ], [ -122.401257, 37.794050 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94130", "GEOID10": "94130", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 2281270, "AWATER10": 0, "INTPTLAT10": "+37.8206879", "INTPTLON10": "-122.3695372" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.373276, 37.832294 ], [ -122.368641, 37.831209 ], [ -122.362804, 37.822667 ], [ -122.363491, 37.820904 ], [ -122.360573, 37.820090 ], [ -122.360573, 37.819819 ], [ -122.363663, 37.820497 ], [ -122.364349, 37.818734 ], [ -122.364864, 37.818463 ], [ -122.365036, 37.818463 ], [ -122.371044, 37.816022 ], [ -122.370358, 37.814259 ], [ -122.369671, 37.813310 ], [ -122.368984, 37.812768 ], [ -122.367268, 37.812361 ], [ -122.366066, 37.812768 ], [ -122.364178, 37.813988 ], [ -122.362289, 37.814124 ], [ -122.361603, 37.814531 ], [ -122.359200, 37.815073 ], [ -122.359028, 37.814802 ], [ -122.358856, 37.814259 ], [ -122.359200, 37.813446 ], [ -122.361088, 37.812496 ], [ -122.361259, 37.810733 ], [ -122.360916, 37.808156 ], [ -122.361603, 37.808021 ], [ -122.362118, 37.807071 ], [ -122.362804, 37.807207 ], [ -122.367268, 37.807750 ], [ -122.368641, 37.808156 ], [ -122.371559, 37.809377 ], [ -122.372761, 37.810869 ], [ -122.372761, 37.811276 ], [ -122.372246, 37.811276 ], [ -122.371731, 37.812361 ], [ -122.371559, 37.813039 ], [ -122.371731, 37.813446 ], [ -122.371387, 37.813581 ], [ -122.371216, 37.814531 ], [ -122.371387, 37.815209 ], [ -122.379112, 37.826870 ], [ -122.377567, 37.830531 ], [ -122.373276, 37.832294 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94103", "GEOID10": "94103", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3518047, "AWATER10": 0, "INTPTLAT10": "+37.7731516", "INTPTLON10": "-122.4111634" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.402802, 37.788081 ], [ -122.401772, 37.787267 ], [ -122.402630, 37.786725 ], [ -122.400398, 37.785097 ], [ -122.399368, 37.785911 ], [ -122.397823, 37.784690 ], [ -122.405548, 37.778449 ], [ -122.403660, 37.776956 ], [ -122.403145, 37.777363 ], [ -122.401943, 37.776414 ], [ -122.402458, 37.776007 ], [ -122.399368, 37.773564 ], [ -122.403831, 37.770036 ], [ -122.403488, 37.769765 ], [ -122.402115, 37.769901 ], [ -122.401772, 37.767458 ], [ -122.400742, 37.767458 ], [ -122.399712, 37.766644 ], [ -122.399712, 37.766237 ], [ -122.400742, 37.766237 ], [ -122.400570, 37.763658 ], [ -122.401428, 37.763523 ], [ -122.401600, 37.764880 ], [ -122.410355, 37.764337 ], [ -122.410526, 37.765558 ], [ -122.427521, 37.764608 ], [ -122.427692, 37.765694 ], [ -122.426491, 37.765830 ], [ -122.426662, 37.768951 ], [ -122.427006, 37.769222 ], [ -122.409153, 37.783197 ], [ -122.408638, 37.783469 ], [ -122.408638, 37.783604 ], [ -122.403488, 37.787810 ], [ -122.402802, 37.788081 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94114", "GEOID10": "94114", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 3692567, "AWATER10": 0, "INTPTLAT10": "+37.7580586", "INTPTLON10": "-122.4354080" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.428379, 37.770443 ], [ -122.428207, 37.769493 ], [ -122.426319, 37.769629 ], [ -122.427006, 37.769222 ], [ -122.426662, 37.768951 ], [ -122.426491, 37.765830 ], [ -122.427692, 37.765694 ], [ -122.427521, 37.764608 ], [ -122.426319, 37.764608 ], [ -122.426319, 37.763930 ], [ -122.427177, 37.763794 ], [ -122.427177, 37.762980 ], [ -122.426319, 37.762980 ], [ -122.426147, 37.762166 ], [ -122.424774, 37.748593 ], [ -122.438164, 37.747779 ], [ -122.438164, 37.748729 ], [ -122.441425, 37.748593 ], [ -122.442455, 37.748186 ], [ -122.444000, 37.746829 ], [ -122.444515, 37.746693 ], [ -122.444859, 37.746965 ], [ -122.444172, 37.747508 ], [ -122.444344, 37.748322 ], [ -122.443485, 37.749408 ], [ -122.442799, 37.752394 ], [ -122.442455, 37.752394 ], [ -122.440395, 37.755108 ], [ -122.440052, 37.755787 ], [ -122.440052, 37.756330 ], [ -122.441082, 37.756194 ], [ -122.441082, 37.756058 ], [ -122.441254, 37.756194 ], [ -122.442970, 37.755516 ], [ -122.442284, 37.755108 ], [ -122.442455, 37.754430 ], [ -122.442970, 37.754023 ], [ -122.444000, 37.754158 ], [ -122.444172, 37.755923 ], [ -122.444687, 37.756601 ], [ -122.445889, 37.756466 ], [ -122.446918, 37.756601 ], [ -122.447948, 37.757551 ], [ -122.450352, 37.757416 ], [ -122.451038, 37.756737 ], [ -122.452068, 37.756601 ], [ -122.452412, 37.757008 ], [ -122.453270, 37.756737 ], [ -122.453785, 37.757416 ], [ -122.452927, 37.758094 ], [ -122.453957, 37.758773 ], [ -122.453270, 37.759180 ], [ -122.451553, 37.759451 ], [ -122.448635, 37.759587 ], [ -122.448463, 37.759044 ], [ -122.447605, 37.759180 ], [ -122.447090, 37.759723 ], [ -122.446404, 37.760944 ], [ -122.446747, 37.761758 ], [ -122.445374, 37.761894 ], [ -122.443829, 37.763251 ], [ -122.442970, 37.763523 ], [ -122.443314, 37.765287 ], [ -122.441254, 37.765287 ], [ -122.439537, 37.766644 ], [ -122.438507, 37.766237 ], [ -122.438164, 37.767187 ], [ -122.435589, 37.767322 ], [ -122.435760, 37.769086 ], [ -122.429066, 37.769493 ], [ -122.429237, 37.770308 ], [ -122.428379, 37.770443 ] ] ], [ [ [ -122.441597, 37.755108 ], [ -122.442799, 37.752530 ], [ -122.442455, 37.753751 ], [ -122.441597, 37.755108 ] ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94110", "GEOID10": "94110", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6019827, "AWATER10": 12207, "INTPTLAT10": "+37.7500215", "INTPTLON10": "-122.4152015" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.410526, 37.765558 ], [ -122.410355, 37.764337 ], [ -122.405033, 37.764608 ], [ -122.405205, 37.763523 ], [ -122.406235, 37.761351 ], [ -122.406578, 37.760266 ], [ -122.405891, 37.758909 ], [ -122.403488, 37.756873 ], [ -122.402973, 37.752801 ], [ -122.403831, 37.749408 ], [ -122.405033, 37.749136 ], [ -122.404003, 37.748322 ], [ -122.404861, 37.745336 ], [ -122.405205, 37.744386 ], [ -122.405376, 37.744521 ], [ -122.406235, 37.743571 ], [ -122.405891, 37.743435 ], [ -122.407436, 37.741399 ], [ -122.407951, 37.739227 ], [ -122.407780, 37.737734 ], [ -122.408295, 37.737598 ], [ -122.408295, 37.736648 ], [ -122.408810, 37.735833 ], [ -122.410011, 37.734747 ], [ -122.414474, 37.732439 ], [ -122.415161, 37.732168 ], [ -122.418938, 37.732168 ], [ -122.418938, 37.732847 ], [ -122.418251, 37.732983 ], [ -122.420139, 37.732983 ], [ -122.421856, 37.734612 ], [ -122.421856, 37.735155 ], [ -122.422199, 37.735155 ], [ -122.422886, 37.734340 ], [ -122.423916, 37.734612 ], [ -122.424946, 37.735562 ], [ -122.427349, 37.735698 ], [ -122.425117, 37.737870 ], [ -122.423916, 37.740856 ], [ -122.424603, 37.744657 ], [ -122.426147, 37.762166 ], [ -122.426319, 37.762980 ], [ -122.427177, 37.762980 ], [ -122.427177, 37.763794 ], [ -122.426319, 37.763930 ], [ -122.426319, 37.764608 ], [ -122.410526, 37.765558 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94102", "GEOID10": "94102", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1732577, "AWATER10": 0, "INTPTLAT10": "+37.7795835", "INTPTLON10": "-122.4193398" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.408638, 37.789167 ], [ -122.408466, 37.788353 ], [ -122.406750, 37.788488 ], [ -122.406406, 37.786589 ], [ -122.404690, 37.786725 ], [ -122.408638, 37.783604 ], [ -122.408638, 37.783469 ], [ -122.409153, 37.783197 ], [ -122.426319, 37.769629 ], [ -122.428207, 37.769493 ], [ -122.429924, 37.777906 ], [ -122.428036, 37.778177 ], [ -122.428207, 37.779127 ], [ -122.426834, 37.779263 ], [ -122.427349, 37.782112 ], [ -122.424088, 37.782519 ], [ -122.423916, 37.781569 ], [ -122.422371, 37.781705 ], [ -122.422543, 37.782655 ], [ -122.420826, 37.782926 ], [ -122.420654, 37.781976 ], [ -122.418938, 37.782112 ], [ -122.419109, 37.783062 ], [ -122.414303, 37.783740 ], [ -122.414818, 37.786453 ], [ -122.413101, 37.786725 ], [ -122.413273, 37.787674 ], [ -122.412415, 37.787810 ], [ -122.412415, 37.788081 ], [ -122.411728, 37.788217 ], [ -122.411900, 37.788760 ], [ -122.408638, 37.789167 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94105", "GEOID10": "94105", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 942025, "AWATER10": 223684, "INTPTLAT10": "+37.7896493", "INTPTLON10": "-122.3930670" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.388897, 37.796628 ], [ -122.385120, 37.791337 ], [ -122.385635, 37.790930 ], [ -122.385464, 37.790523 ], [ -122.386322, 37.790252 ], [ -122.387867, 37.788760 ], [ -122.387695, 37.787132 ], [ -122.388554, 37.786996 ], [ -122.392159, 37.784147 ], [ -122.392330, 37.784283 ], [ -122.391472, 37.785097 ], [ -122.391472, 37.785639 ], [ -122.390099, 37.786725 ], [ -122.391815, 37.785504 ], [ -122.393360, 37.784961 ], [ -122.394218, 37.785097 ], [ -122.394047, 37.785232 ], [ -122.395592, 37.786318 ], [ -122.397823, 37.784690 ], [ -122.399368, 37.785911 ], [ -122.400398, 37.785097 ], [ -122.402630, 37.786725 ], [ -122.401772, 37.787267 ], [ -122.402802, 37.788081 ], [ -122.403488, 37.787810 ], [ -122.396278, 37.793372 ], [ -122.396622, 37.794593 ], [ -122.394390, 37.795000 ], [ -122.392502, 37.793643 ], [ -122.392159, 37.793915 ], [ -122.391472, 37.793915 ], [ -122.388897, 37.796628 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94158", "GEOID10": "94158", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 1800349, "AWATER10": 1246229, "INTPTLAT10": "+37.7698930", "INTPTLON10": "-122.3870114" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.387524, 37.780484 ], [ -122.387524, 37.780891 ], [ -122.384777, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.387524, 37.781027 ], [ -122.387695, 37.781434 ], [ -122.385464, 37.781569 ], [ -122.385464, 37.781705 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.387695, 37.781841 ], [ -122.387867, 37.782248 ], [ -122.384777, 37.782519 ], [ -122.384777, 37.782790 ], [ -122.381687, 37.783469 ], [ -122.377911, 37.753615 ], [ -122.379971, 37.753344 ], [ -122.380142, 37.754566 ], [ -122.381516, 37.754566 ], [ -122.382889, 37.754430 ], [ -122.383404, 37.754701 ], [ -122.384090, 37.754701 ], [ -122.384090, 37.754973 ], [ -122.380829, 37.755244 ], [ -122.380829, 37.755516 ], [ -122.381172, 37.755923 ], [ -122.381344, 37.756466 ], [ -122.381344, 37.757959 ], [ -122.384777, 37.757687 ], [ -122.385464, 37.758094 ], [ -122.386322, 37.758094 ], [ -122.386665, 37.760673 ], [ -122.387524, 37.760537 ], [ -122.387867, 37.764337 ], [ -122.393703, 37.764065 ], [ -122.393875, 37.766101 ], [ -122.396622, 37.767865 ], [ -122.400742, 37.771122 ], [ -122.398510, 37.772886 ], [ -122.397823, 37.772343 ], [ -122.397480, 37.773429 ], [ -122.396107, 37.774514 ], [ -122.396450, 37.774650 ], [ -122.394218, 37.776414 ], [ -122.392502, 37.775192 ], [ -122.390270, 37.776685 ], [ -122.390442, 37.776956 ], [ -122.390442, 37.777092 ], [ -122.387695, 37.778177 ], [ -122.387695, 37.778313 ], [ -122.387352, 37.778313 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778856 ], [ -122.384777, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.387352, 37.778992 ], [ -122.387352, 37.779263 ], [ -122.387524, 37.779670 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.780484 ] ], [ [ -122.387524, 37.779670 ], [ -122.384777, 37.779670 ], [ -122.384777, 37.779941 ], [ -122.387524, 37.779670 ] ], [ [ -122.387524, 37.780077 ], [ -122.384777, 37.780077 ], [ -122.384777, 37.780348 ], [ -122.387524, 37.780077 ] ], [ [ -122.387524, 37.780484 ], [ -122.384777, 37.780484 ], [ -122.384777, 37.780755 ], [ -122.387524, 37.780484 ] ], [ [ -122.387352, 37.779263 ], [ -122.384777, 37.779263 ], [ -122.384777, 37.779534 ], [ -122.387352, 37.779263 ] ], [ [ -122.387352, 37.778585 ], [ -122.385120, 37.778585 ], [ -122.385120, 37.778856 ], [ -122.387352, 37.778585 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94112", "GEOID10": "94112", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 8720166, "AWATER10": 0, "INTPTLAT10": "+37.7203669", "INTPTLON10": "-122.4429361" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.426662, 37.736376 ], [ -122.426491, 37.736241 ], [ -122.427349, 37.735698 ], [ -122.424946, 37.735562 ], [ -122.423916, 37.734612 ], [ -122.422886, 37.734340 ], [ -122.422199, 37.735155 ], [ -122.421856, 37.735155 ], [ -122.421856, 37.734612 ], [ -122.420139, 37.732983 ], [ -122.418251, 37.732983 ], [ -122.418938, 37.732847 ], [ -122.418938, 37.732168 ], [ -122.415161, 37.732168 ], [ -122.421684, 37.731761 ], [ -122.421684, 37.731082 ], [ -122.420139, 37.731489 ], [ -122.420483, 37.728910 ], [ -122.423744, 37.728774 ], [ -122.423058, 37.727280 ], [ -122.424088, 37.725923 ], [ -122.423573, 37.725651 ], [ -122.422886, 37.723886 ], [ -122.423744, 37.723750 ], [ -122.424774, 37.722121 ], [ -122.424603, 37.721713 ], [ -122.426319, 37.718590 ], [ -122.427349, 37.715060 ], [ -122.425632, 37.714517 ], [ -122.426662, 37.711257 ], [ -122.427177, 37.711257 ], [ -122.426147, 37.710986 ], [ -122.426662, 37.710171 ], [ -122.429924, 37.711529 ], [ -122.430096, 37.710850 ], [ -122.429237, 37.709628 ], [ -122.428379, 37.709220 ], [ -122.428379, 37.708405 ], [ -122.434044, 37.708134 ], [ -122.440395, 37.708405 ], [ -122.452240, 37.708134 ], [ -122.468891, 37.708270 ], [ -122.467690, 37.709220 ], [ -122.465973, 37.710171 ], [ -122.464256, 37.710578 ], [ -122.460823, 37.710578 ], [ -122.462540, 37.711257 ], [ -122.462711, 37.718590 ], [ -122.462711, 37.721713 ], [ -122.462196, 37.721713 ], [ -122.462196, 37.725244 ], [ -122.462711, 37.725515 ], [ -122.462540, 37.727145 ], [ -122.462025, 37.727416 ], [ -122.460823, 37.727552 ], [ -122.460995, 37.728638 ], [ -122.459965, 37.728774 ], [ -122.459965, 37.729860 ], [ -122.459278, 37.730810 ], [ -122.457390, 37.730675 ], [ -122.457561, 37.731082 ], [ -122.453442, 37.731625 ], [ -122.453442, 37.730675 ], [ -122.444344, 37.730675 ], [ -122.444344, 37.728231 ], [ -122.443657, 37.728366 ], [ -122.439537, 37.730131 ], [ -122.435932, 37.731625 ], [ -122.435074, 37.731489 ], [ -122.432156, 37.732983 ], [ -122.431984, 37.732983 ], [ -122.432327, 37.733254 ], [ -122.428551, 37.735019 ], [ -122.426662, 37.736376 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94134", "GEOID10": "94134", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 6210550, "AWATER10": 90877, "INTPTLAT10": "+37.7210461", "INTPTLON10": "-122.4135554" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.406921, 37.738006 ], [ -122.406578, 37.735698 ], [ -122.405033, 37.733661 ], [ -122.402802, 37.729317 ], [ -122.398853, 37.718590 ], [ -122.397995, 37.715467 ], [ -122.398510, 37.715467 ], [ -122.396450, 37.712887 ], [ -122.395763, 37.710850 ], [ -122.394047, 37.711257 ], [ -122.390785, 37.711122 ], [ -122.390957, 37.710307 ], [ -122.393703, 37.708270 ], [ -122.423744, 37.708270 ], [ -122.428379, 37.708405 ], [ -122.428379, 37.709220 ], [ -122.429237, 37.709628 ], [ -122.430096, 37.710850 ], [ -122.429924, 37.711529 ], [ -122.426662, 37.710171 ], [ -122.426147, 37.710986 ], [ -122.427177, 37.711257 ], [ -122.426662, 37.711257 ], [ -122.425632, 37.714517 ], [ -122.427349, 37.715060 ], [ -122.426319, 37.718590 ], [ -122.424603, 37.721713 ], [ -122.424774, 37.722121 ], [ -122.423744, 37.723750 ], [ -122.422886, 37.723886 ], [ -122.423573, 37.725651 ], [ -122.424088, 37.725923 ], [ -122.423058, 37.727280 ], [ -122.423744, 37.728774 ], [ -122.420483, 37.728910 ], [ -122.420139, 37.731489 ], [ -122.421684, 37.731082 ], [ -122.421684, 37.731761 ], [ -122.419453, 37.732032 ], [ -122.416019, 37.732032 ], [ -122.414474, 37.732439 ], [ -122.409496, 37.735019 ], [ -122.408466, 37.736241 ], [ -122.408295, 37.737598 ], [ -122.406921, 37.738006 ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94107", "GEOID10": "94107", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 4647665, "AWATER10": 227634, "INTPTLAT10": "+37.7604596", "INTPTLON10": "-122.3997237" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -122.391472, 37.785639 ], [ -122.391472, 37.785097 ], [ -122.392330, 37.784283 ], [ -122.392159, 37.784147 ], [ -122.388554, 37.786996 ], [ -122.387695, 37.787132 ], [ -122.387867, 37.788760 ], [ -122.386322, 37.790252 ], [ -122.385464, 37.790523 ], [ -122.385635, 37.790930 ], [ -122.385120, 37.791337 ], [ -122.381687, 37.783469 ], [ -122.384777, 37.782790 ], [ -122.384777, 37.782519 ], [ -122.387867, 37.782248 ], [ -122.387695, 37.781841 ], [ -122.385635, 37.781976 ], [ -122.385464, 37.781841 ], [ -122.384777, 37.781841 ], [ -122.385464, 37.781705 ], [ -122.385464, 37.781569 ], [ -122.387695, 37.781434 ], [ -122.387524, 37.781027 ], [ -122.384777, 37.781298 ], [ -122.384777, 37.781027 ], [ -122.387524, 37.780891 ], [ -122.387524, 37.780484 ], [ -122.387524, 37.780077 ], [ -122.387524, 37.779670 ], [ -122.387352, 37.779263 ], [ -122.387352, 37.778992 ], [ -122.384777, 37.779127 ], [ -122.384777, 37.778992 ], [ -122.387352, 37.778856 ], [ -122.387352, 37.778585 ], [ -122.387352, 37.778313 ], [ -122.387695, 37.778313 ], [ -122.387695, 37.778177 ], [ -122.390442, 37.777092 ], [ -122.390442, 37.776956 ], [ -122.390270, 37.776685 ], [ -122.392502, 37.775192 ], [ -122.394218, 37.776414 ], [ -122.396450, 37.774650 ], [ -122.396107, 37.774514 ], [ -122.397480, 37.773429 ], [ -122.397823, 37.772343 ], [ -122.398510, 37.772886 ], [ -122.400742, 37.771122 ], [ -122.396622, 37.767865 ], [ -122.393875, 37.766101 ], [ -122.393703, 37.764065 ], [ -122.387867, 37.764337 ], [ -122.387524, 37.760537 ], [ -122.386665, 37.760673 ], [ -122.386322, 37.758094 ], [ -122.385464, 37.758094 ], [ -122.384777, 37.757687 ], [ -122.381344, 37.757959 ], [ -122.381344, 37.756466 ], [ -122.381172, 37.755923 ], [ -122.380829, 37.755516 ], [ -122.380829, 37.755244 ], [ -122.384090, 37.754973 ], [ -122.384090, 37.754701 ], [ -122.383404, 37.754701 ], [ -122.382889, 37.754430 ], [ -122.381516, 37.754566 ], [ -122.380142, 37.754566 ], [ -122.379971, 37.753344 ], [ -122.386837, 37.752937 ], [ -122.386494, 37.750358 ], [ -122.393188, 37.749951 ], [ -122.393188, 37.751444 ], [ -122.395248, 37.751308 ], [ -122.395248, 37.749815 ], [ -122.403831, 37.749408 ], [ -122.402973, 37.752801 ], [ -122.403316, 37.756194 ], [ -122.403831, 37.757144 ], [ -122.406063, 37.759180 ], [ -122.406578, 37.760673 ], [ -122.405376, 37.763116 ], [ -122.405033, 37.764608 ], [ -122.401600, 37.764880 ], [ -122.401428, 37.763523 ], [ -122.400570, 37.763658 ], [ -122.400742, 37.766237 ], [ -122.399712, 37.766237 ], [ -122.399712, 37.766644 ], [ -122.400742, 37.767458 ], [ -122.401772, 37.767458 ], [ -122.402115, 37.769901 ], [ -122.403488, 37.769765 ], [ -122.403831, 37.770036 ], [ -122.399368, 37.773564 ], [ -122.402458, 37.776007 ], [ -122.401943, 37.776414 ], [ -122.403145, 37.777363 ], [ -122.403660, 37.776956 ], [ -122.405548, 37.778449 ], [ -122.395592, 37.786318 ], [ -122.394047, 37.785232 ], [ -122.394218, 37.785097 ], [ -122.393360, 37.784961 ], [ -122.391815, 37.785504 ], [ -122.391472, 37.785639 ] ] ], [ [ [ -122.387524, 37.779670 ], [ -122.384777, 37.779941 ], [ -122.384777, 37.779670 ], [ -122.387524, 37.779670 ] ] ], [ [ [ -122.387524, 37.780077 ], [ -122.384777, 37.780348 ], [ -122.384777, 37.780077 ], [ -122.387524, 37.780077 ] ] ], [ [ [ -122.387524, 37.780484 ], [ -122.384777, 37.780755 ], [ -122.384777, 37.780484 ], [ -122.387524, 37.780484 ] ] ], [ [ [ -122.387352, 37.779263 ], [ -122.384777, 37.779534 ], [ -122.384777, 37.779263 ], [ -122.387352, 37.779263 ] ] ], [ [ [ -122.387352, 37.778585 ], [ -122.385120, 37.778856 ], [ -122.385120, 37.778585 ], [ -122.387352, 37.778585 ] ] ] ] } } +{ "type": "Feature", "tippecanoe": { "layer": "sfzips", "minzoom": 11, "maxzoom": 11 }, "properties": { "ZCTA5CE10": "94124", "GEOID10": "94124", "CLASSFP10": "B5", "MTFCC10": "G6350", "FUNCSTAT10": "S", "ALAND10": 12765980, "AWATER10": 2804039, "INTPTLAT10": "+37.7288947", "INTPTLON10": "-122.3827787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.377911, 37.753615 ], [ -122.376022, 37.752530 ], [ -122.373104, 37.746015 ], [ -122.367611, 37.740178 ], [ -122.368298, 37.739770 ], [ -122.373447, 37.739635 ], [ -122.373962, 37.739499 ], [ -122.373447, 37.738684 ], [ -122.372761, 37.738277 ], [ -122.367439, 37.738277 ], [ -122.370701, 37.737327 ], [ -122.371216, 37.737055 ], [ -122.372932, 37.737055 ], [ -122.373619, 37.737191 ], [ -122.375679, 37.738413 ], [ -122.376366, 37.738413 ], [ -122.376537, 37.738277 ], [ -122.376022, 37.738006 ], [ -122.375164, 37.737870 ], [ -122.374821, 37.737327 ], [ -122.375164, 37.736241 ], [ -122.376022, 37.735833 ], [ -122.375851, 37.735019 ], [ -122.375336, 37.735426 ], [ -122.374821, 37.734883 ], [ -122.375164, 37.734612 ], [ -122.374821, 37.734476 ], [ -122.374992, 37.733933 ], [ -122.375679, 37.732711 ], [ -122.375164, 37.732983 ], [ -122.374992, 37.732711 ], [ -122.374649, 37.732847 ], [ -122.374821, 37.732575 ], [ -122.374134, 37.732575 ], [ -122.373447, 37.732983 ], [ -122.372589, 37.733933 ], [ -122.371902, 37.734204 ], [ -122.369671, 37.732304 ], [ -122.367096, 37.735426 ], [ -122.367439, 37.735426 ], [ -122.367096, 37.735562 ], [ -122.366753, 37.735426 ], [ -122.366924, 37.734883 ], [ -122.369499, 37.732439 ], [ -122.369499, 37.732168 ], [ -122.368813, 37.731896 ], [ -122.368641, 37.732304 ], [ -122.368298, 37.732304 ], [ -122.367439, 37.731896 ], [ -122.366753, 37.732168 ], [ -122.365208, 37.733797 ], [ -122.366581, 37.732168 ], [ -122.365379, 37.732983 ], [ -122.366238, 37.731896 ], [ -122.366066, 37.731896 ], [ -122.365036, 37.732847 ], [ -122.365723, 37.731761 ], [ -122.365723, 37.731625 ], [ -122.364864, 37.732575 ], [ -122.365036, 37.732032 ], [ -122.363663, 37.731218 ], [ -122.362804, 37.732168 ], [ -122.362633, 37.732032 ], [ -122.363319, 37.731082 ], [ -122.362804, 37.730810 ], [ -122.362118, 37.731625 ], [ -122.361774, 37.731489 ], [ -122.362633, 37.730675 ], [ -122.361946, 37.730131 ], [ -122.360916, 37.729860 ], [ -122.360744, 37.730267 ], [ -122.359886, 37.730267 ], [ -122.358856, 37.729724 ], [ -122.359028, 37.729453 ], [ -122.361946, 37.728774 ], [ -122.362289, 37.728502 ], [ -122.361431, 37.728502 ], [ -122.357655, 37.729453 ], [ -122.357483, 37.729181 ], [ -122.357826, 37.728910 ], [ -122.360401, 37.728231 ], [ -122.359886, 37.728095 ], [ -122.357140, 37.728774 ], [ -122.356968, 37.728774 ], [ -122.357140, 37.727959 ], [ -122.356796, 37.727959 ], [ -122.358170, 37.718590 ], [ -122.358513, 37.715875 ], [ -122.360401, 37.708270 ], [ -122.381001, 37.708405 ], [ -122.393703, 37.708270 ], [ -122.390957, 37.710307 ], [ -122.390785, 37.711122 ], [ -122.394047, 37.711257 ], [ -122.395763, 37.710850 ], [ -122.396450, 37.712887 ], [ -122.398510, 37.715467 ], [ -122.397995, 37.715467 ], [ -122.398853, 37.718590 ], [ -122.402802, 37.729317 ], [ -122.405033, 37.733661 ], [ -122.406578, 37.735698 ], [ -122.406921, 37.738006 ], [ -122.407780, 37.737734 ], [ -122.407951, 37.737870 ], [ -122.407951, 37.739227 ], [ -122.407436, 37.741399 ], [ -122.405891, 37.743435 ], [ -122.406235, 37.743571 ], [ -122.405376, 37.744521 ], [ -122.405205, 37.744386 ], [ -122.404003, 37.748322 ], [ -122.405033, 37.749136 ], [ -122.402973, 37.749544 ], [ -122.402115, 37.749408 ], [ -122.395248, 37.749815 ], [ -122.395248, 37.751308 ], [ -122.393188, 37.751444 ], [ -122.393188, 37.749951 ], [ -122.386494, 37.750358 ], [ -122.386837, 37.752937 ], [ -122.381001, 37.753208 ], [ -122.377911, 37.753615 ] ] ] } } diff --git a/tests/pbf/yearbuilt-accum-bldgsqft.pbf.json b/tests/pbf/yearbuilt-accum-bldgsqft.pbf.json new file mode 100644 index 000000000..8749b98af --- /dev/null +++ b/tests/pbf/yearbuilt-accum-bldgsqft.pbf.json @@ -0,0 +1,7 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "parsed", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 510, "properties": { "bldgsqft": 1765, "felt:sum:bldgsqft": 4857699 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.718590 ] } } +, +{ "type": "Feature", "id": 514, "properties": { "bldgsqft": 3050 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.718590 ] } } +] } +] } diff --git a/tests/pbf/yearbuilt-accum.pbf.json b/tests/pbf/yearbuilt-accum.pbf.json new file mode 100644 index 000000000..183bac43d --- /dev/null +++ b/tests/pbf/yearbuilt-accum.pbf.json @@ -0,0 +1,7 @@ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "parsed", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "id": 510, "properties": { "blklot": "0858005", "block_num": "0858", "from_st": "222", "landuse": "RESIDENT", "lot_num": "005", "mapblklot": "0858005", "st_type": "ST", "street": "WALLER", "to_st": "222", "bldgsqft": 1765, "cie": 0, "med": 0, "mips": 0, "objectid": 11031, "pdr": 0, "resunits": 1, "retail": 0, "shape_area": 2279.71121678, "shape_leng": 212.495847301, "total_uses": 0, "visitor": 0, "yrbuilt": 1900, "felt:count:bldgsqft": 1134, "felt:max:bldgsqft": 517232, "felt:min:bldgsqft": 0, "felt:sum:bldgsqft": 4857699, "felt:count:cie": 1134, "felt:max:cie": 20780, "felt:min:cie": 0, "felt:sum:cie": 159842, "felt:count:med": 1134, "felt:max:med": 13747, "felt:min:med": 0, "felt:sum:med": 65490, "felt:count:mips": 1134, "felt:max:mips": 35150, "felt:min:mips": 0, "felt:sum:mips": 493890, "felt:count:objectid": 1134, "felt:max:objectid": 155370, "felt:min:objectid": 10714, "felt:sum:objectid": 38161243, "felt:count:pdr": 1134, "felt:max:pdr": 18000, "felt:min:pdr": 0, "felt:sum:pdr": 259718, "felt:count:resunits": 1134, "felt:max:resunits": 94, "felt:min:resunits": 0, "felt:sum:resunits": 4269, "felt:count:retail": 1134, "felt:max:retail": 12898, "felt:min:retail": 0, "felt:sum:retail": 425966, "felt:count:shape_area": 1134, "felt:max:shape_area": 187422.348941, "felt:min:shape_area": 824.484455232, "felt:sum:shape_area": 3770890.8948438765, "felt:count:shape_leng": 1134, "felt:max:shape_leng": 2741.43546213, "felt:min:shape_leng": 121.331962321, "felt:sum:shape_leng": 306327.034212475, "felt:count:total_uses": 1134, "felt:max:total_uses": 63028, "felt:min:total_uses": 0, "felt:sum:total_uses": 1425446, "felt:count:visitor": 1134, "felt:max:visitor": 15000, "felt:min:visitor": 0, "felt:sum:visitor": 20540, "felt:count:yrbuilt": 1134, "felt:max:yrbuilt": 2014, "felt:min:yrbuilt": 1878, "felt:sum:yrbuilt": 2165833, "felt:cluster_size": 113, "felt:mean:bldgsqft": 4283.685185185185, "felt:mean:cie": 140.9541446208113, "felt:mean:med": 57.75132275132275, "felt:mean:mips": 435.5291005291005, "felt:mean:objectid": 33651.8897707231, "felt:mean:pdr": 229.02821869488538, "felt:mean:resunits": 3.7645502645502648, "felt:mean:retail": 375.63139329805997, "felt:mean:shape_area": 3325.3006127371047, "felt:mean:shape_leng": 270.1296597993607, "felt:mean:total_uses": 1257.0070546737214, "felt:mean:visitor": 18.112874779541447, "felt:mean:yrbuilt": 1909.905643738977 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.718590 ] } } +, +{ "type": "Feature", "id": 514, "properties": { "blklot": "0858003", "block_num": "0858", "from_st": "210", "landuse": "MIXRES", "lot_num": "003", "mapblklot": "0858003", "st_type": "ST", "street": "WALLER", "to_st": "210", "bldgsqft": 3050, "cie": 0, "med": 0, "mips": 1678, "objectid": 10950, "pdr": 0, "resunits": 2, "retail": 0, "shape_area": 1885.04187192, "shape_leng": 201.483365997, "total_uses": 1678, "visitor": 0, "yrbuilt": 1900, "felt:cluster_size": 1 }, "geometry": { "type": "Point", "coordinates": [ -122.343750, 37.718590 ] } } +] } +] } diff --git a/tests/pbf/yearbuilt.pbf b/tests/pbf/yearbuilt.pbf new file mode 100644 index 000000000..892ec1723 Binary files /dev/null and b/tests/pbf/yearbuilt.pbf differ diff --git a/tests/raw-tiles/nothing.json b/tests/raw-tiles/nothing.json index ca5d76d14..beea00c33 100644 --- a/tests/raw-tiles/nothing.json +++ b/tests/raw-tiles/nothing.json @@ -1,14 +1,15 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "180.000000,85.051129,-180.000000,-85.051129", +"antimeridian_adjusted_bounds": "0.000000,85.051129,0.000000,85.051129", "bounds": "-180.000000,85.051129,180.000000,85.051129", -"center": "-179.989014,85.051129,14", +"center": "0.000000,85.051129,0", "description": "tests/raw-tiles/nothing", "format": "pbf", "generator_options": "./tippecanoe -q -f -e tests/raw-tiles/nothing tests/raw-tiles/nothing.geojson", -"json": "{\"vector_layers\":[{\"id\":\"nothing\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":14,\"fields\":{}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"nothing\",\"count\":1,\"geometry\":\"Point\",\"attributeCount\":0,\"attributes\":[]}]}}", -"maxzoom": "14", +"json": "{\"vector_layers\":[{\"id\":\"nothing\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":0,\"fields\":{}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"nothing\",\"count\":1,\"geometry\":\"Point\",\"attributeCount\":0,\"attributes\":[]}]}}", +"maxzoom": "0", "minzoom": "0", "name": "tests/raw-tiles/nothing", +"tippecanoe_decisions": "{\"basezoom\":14,\"droprate\":2.5,\"retain_points_multiplier\":1}", "type": "overlay", "version": "2" }, "features": [ diff --git a/tests/tl_2022_11_tract/in.json.gz b/tests/tl_2022_11_tract/in.json.gz new file mode 100644 index 000000000..150c02995 Binary files /dev/null and b/tests/tl_2022_11_tract/in.json.gz differ diff --git a/tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json b/tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json new file mode 100644 index 000000000..f4993c676 --- /dev/null +++ b/tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json @@ -0,0 +1,1216 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-77.119756,38.791645,-76.909390,38.995845", +"bounds": "-77.119756,38.791645,-76.909390,38.995845", +"center": "-76.909390,38.791645,13", +"description": "tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json.check.mbtiles -z14 -Z12 --coalesce-densest-as-needed --generate-variable-depth-tile-pyramid -M25000 tests/tl_2022_11_tract/in.json.gz", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":12,\"maxzoom\":13,\"fields\":{\"ALAND\":\"Number\",\"AWATER\":\"Number\",\"COUNTYFP\":\"String\",\"FUNCSTAT\":\"String\",\"GEOID\":\"String\",\"INTPTLAT\":\"String\",\"INTPTLON\":\"String\",\"MTFCC\":\"String\",\"NAME\":\"String\",\"NAMELSAD\":\"String\",\"STATEFP\":\"String\",\"TRACTCE\":\"String\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":206,\"geometry\":\"Polygon\",\"attributeCount\":12,\"attributes\":[{\"attribute\":\"ALAND\",\"count\":206,\"type\":\"number\",\"values\":[1017741,1033168,1033208,1037012,1042156,1069487,1084591,1109091,1115359,1136289,1168294,117635,119532,120715,1209113,1219204,1226616,1232841,124124,1294556,1306709,1369580,1423609,1427114,143156,1441865,1471925,148928,152450,1541239,1542277,1582882,163863,164749,1676650,168769,1688582,1706484,171910,172840,174883,1816287,183977,185309,1867106,1905262,194755,198509,199776,200745,200969,2010924,2024710,204237,204529,207186,207646,2102150,2106150,210636,213338,219939,224811,229696,232137,232951,236694,2381079,244750,246292,246895,247945,251302,252684,2566768,2602393,260891,263879,266513,2667590,271037,271866,273491,274180,274746,280108,285156,2855501,288793,290284,292105,295290,295339,296819,300632,303970,305616,305651,308153,308465],\"min\":93419,\"max\":6514228},{\"attribute\":\"AWATER\",\"count\":61,\"type\":\"number\",\"values\":[0,1059,11205,1132,1275,129100,136359,14058,141529,149901,159593,167978,189666,200980,2305,2414,2427,243648,26550,2933589,29503,307257,312419,31550,31909,3427,366232,367035,3755,3756,39895,439661,4682,477741,4996393,5139082,516665,5261,5274,5298,5609,566,5705,5767,60195,6261,65762,669985,67073,69,7006,71,7175,7303,75151,7722,7820,7884,82685,8983,9432],\"min\":0,\"max\":5139082},{\"attribute\":\"COUNTYFP\",\"count\":1,\"type\":\"string\",\"values\":[\"001\"]},{\"attribute\":\"FUNCSTAT\",\"count\":1,\"type\":\"string\",\"values\":[\"S\"]},{\"attribute\":\"GEOID\",\"count\":206,\"type\":\"string\",\"values\":[\"11001000101\",\"11001000102\",\"11001000201\",\"11001000202\",\"11001000300\",\"11001000400\",\"11001000501\",\"11001000502\",\"11001000600\",\"11001000702\",\"11001000703\",\"11001000704\",\"11001000802\",\"11001000803\",\"11001000804\",\"11001000902\",\"11001000903\",\"11001000904\",\"11001001002\",\"11001001003\",\"11001001004\",\"11001001100\",\"11001001200\",\"11001001301\",\"11001001303\",\"11001001304\",\"11001001401\",\"11001001402\",\"11001001500\",\"11001001600\",\"11001001702\",\"11001001803\",\"11001001804\",\"11001001901\",\"11001001902\",\"11001002001\",\"11001002002\",\"11001002101\",\"11001002102\",\"11001002201\",\"11001002202\",\"11001002301\",\"11001002302\",\"11001002400\",\"11001002501\",\"11001002503\",\"11001002504\",\"11001002600\",\"11001002702\",\"11001002703\",\"11001002704\",\"11001002801\",\"11001002802\",\"11001002900\",\"11001003000\",\"11001003100\",\"11001003200\",\"11001003301\",\"11001003302\",\"11001003400\",\"11001003500\",\"11001003600\",\"11001003701\",\"11001003702\",\"11001003801\",\"11001003802\",\"11001003901\",\"11001003902\",\"11001004001\",\"11001004002\",\"11001004100\",\"11001004201\",\"11001004202\",\"11001004300\",\"11001004401\",\"11001004402\",\"11001004600\",\"11001004702\",\"11001004703\",\"11001004704\",\"11001004801\",\"11001004802\",\"11001004901\",\"11001004902\",\"11001005001\",\"11001005003\",\"11001005004\",\"11001005202\",\"11001005203\",\"11001005302\",\"11001005303\",\"11001005501\",\"11001005502\",\"11001005503\",\"11001005601\",\"11001005602\",\"11001005801\",\"11001005802\",\"11001005900\",\"11001006400\"]},{\"attribute\":\"INTPTLAT\",\"count\":206,\"type\":\"string\",\"values\":[\"+38.8132364\",\"+38.8260370\",\"+38.8266510\",\"+38.8292038\",\"+38.8307312\",\"+38.8328939\",\"+38.8349280\",\"+38.8354183\",\"+38.8356929\",\"+38.8417979\",\"+38.8420148\",\"+38.8445818\",\"+38.8484714\",\"+38.8503364\",\"+38.8512668\",\"+38.8525662\",\"+38.8555543\",\"+38.8568592\",\"+38.8574823\",\"+38.8591090\",\"+38.8609955\",\"+38.8640724\",\"+38.8660433\",\"+38.8660921\",\"+38.8675208\",\"+38.8681789\",\"+38.8688572\",\"+38.8716327\",\"+38.8717861\",\"+38.8738481\",\"+38.8741656\",\"+38.8753461\",\"+38.8771811\",\"+38.8779453\",\"+38.8779576\",\"+38.8781777\",\"+38.8786426\",\"+38.8798620\",\"+38.8809933\",\"+38.8812697\",\"+38.8818529\",\"+38.8827718\",\"+38.8832158\",\"+38.8836933\",\"+38.8838480\",\"+38.8843295\",\"+38.8843563\",\"+38.8851712\",\"+38.8863224\",\"+38.8863842\",\"+38.8871944\",\"+38.8875984\",\"+38.8877413\",\"+38.8877585\",\"+38.8879464\",\"+38.8883180\",\"+38.8915403\",\"+38.8918285\",\"+38.8918309\",\"+38.8922212\",\"+38.8931572\",\"+38.8931710\",\"+38.8942107\",\"+38.8959944\",\"+38.8961726\",\"+38.8962674\",\"+38.8963061\",\"+38.8964252\",\"+38.8965543\",\"+38.8970372\",\"+38.8973521\",\"+38.8975634\",\"+38.8979674\",\"+38.8985783\",\"+38.8985960\",\"+38.8988888\",\"+38.9008601\",\"+38.9009808\",\"+38.9011144\",\"+38.9015402\",\"+38.9015543\",\"+38.9015670\",\"+38.9026971\",\"+38.9033936\",\"+38.9034762\",\"+38.9035769\",\"+38.9039498\",\"+38.9039988\",\"+38.9041579\",\"+38.9045660\",\"+38.9052766\",\"+38.9054220\",\"+38.9055926\",\"+38.9058867\",\"+38.9062118\",\"+38.9062488\",\"+38.9063048\",\"+38.9072520\",\"+38.9074041\",\"+38.9076530\"]},{\"attribute\":\"INTPTLON\",\"count\":206,\"type\":\"string\",\"values\":[\"-076.9192026\",\"-076.9210632\",\"-076.9212121\",\"-076.9250522\",\"-076.9311353\",\"-076.9313427\",\"-076.9321955\",\"-076.9325520\",\"-076.9353432\",\"-076.9359151\",\"-076.9388146\",\"-076.9407751\",\"-076.9445542\",\"-076.9474550\",\"-076.9477195\",\"-076.9490606\",\"-076.9523616\",\"-076.9545101\",\"-076.9553332\",\"-076.9585043\",\"-076.9585469\",\"-076.9606349\",\"-076.9638007\",\"-076.9675363\",\"-076.9681631\",\"-076.9697843\",\"-076.9704836\",\"-076.9706266\",\"-076.9742464\",\"-076.9743021\",\"-076.9743805\",\"-076.9748514\",\"-076.9751650\",\"-076.9752566\",\"-076.9777180\",\"-076.9796257\",\"-076.9798185\",\"-076.9801087\",\"-076.9804319\",\"-076.9812669\",\"-076.9814483\",\"-076.9820932\",\"-076.9827594\",\"-076.9845276\",\"-076.9850206\",\"-076.9855591\",\"-076.9864892\",\"-076.9866524\",\"-076.9866786\",\"-076.9868380\",\"-076.9870248\",\"-076.9870900\",\"-076.9873112\",\"-076.9888946\",\"-076.9895582\",\"-076.9899590\",\"-076.9907773\",\"-076.9910210\",\"-076.9911234\",\"-076.9913622\",\"-076.9925272\",\"-076.9931121\",\"-076.9950319\",\"-076.9959451\",\"-076.9963306\",\"-076.9965578\",\"-076.9966527\",\"-076.9972580\",\"-076.9977787\",\"-076.9982439\",\"-076.9984594\",\"-076.9985582\",\"-076.9987071\",\"-076.9990184\",\"-076.9991203\",\"-076.9994636\",\"-076.9994857\",\"-076.9999179\",\"-077.0006040\",\"-077.0008008\",\"-077.0009082\",\"-077.0010516\",\"-077.0013085\",\"-077.0033314\",\"-077.0037886\",\"-077.0043421\",\"-077.0046255\",\"-077.0051999\",\"-077.0054956\",\"-077.0062645\",\"-077.0063018\",\"-077.0063567\",\"-077.0070741\",\"-077.0095843\",\"-077.0111677\",\"-077.0114293\",\"-077.0114342\",\"-077.0114767\",\"-077.0117577\",\"-077.0118821\"]},{\"attribute\":\"MTFCC\",\"count\":1,\"type\":\"string\",\"values\":[\"G5020\"]},{\"attribute\":\"NAME\",\"count\":206,\"type\":\"string\",\"values\":[\"1.01\",\"1.02\",\"10.02\",\"10.03\",\"10.04\",\"101\",\"102.01\",\"102.02\",\"103\",\"104\",\"105\",\"106.01\",\"106.02\",\"106.03\",\"107\",\"108\",\"109\",\"11\",\"110.01\",\"110.02\",\"111\",\"12\",\"13.01\",\"13.03\",\"13.04\",\"14.01\",\"14.02\",\"15\",\"16\",\"17.02\",\"18.03\",\"18.04\",\"19.01\",\"19.02\",\"2.01\",\"2.02\",\"20.01\",\"20.02\",\"21.01\",\"21.02\",\"22.01\",\"22.02\",\"23.01\",\"23.02\",\"24\",\"25.01\",\"25.03\",\"25.04\",\"26\",\"27.02\",\"27.03\",\"27.04\",\"28.01\",\"28.02\",\"29\",\"3\",\"30\",\"31\",\"32\",\"33.01\",\"33.02\",\"34\",\"35\",\"36\",\"37.01\",\"37.02\",\"38.01\",\"38.02\",\"39.01\",\"39.02\",\"4\",\"40.01\",\"40.02\",\"41\",\"42.01\",\"42.02\",\"43\",\"44.01\",\"44.02\",\"46\",\"47.02\",\"47.03\",\"47.04\",\"48.01\",\"48.02\",\"49.01\",\"49.02\",\"5.01\",\"5.02\",\"50.01\",\"50.03\",\"50.04\",\"52.02\",\"52.03\",\"53.02\",\"53.03\",\"55.01\",\"55.02\",\"55.03\",\"56.01\"]},{\"attribute\":\"NAMELSAD\",\"count\":206,\"type\":\"string\",\"values\":[\"Census Tract 1.01\",\"Census Tract 1.02\",\"Census Tract 10.02\",\"Census Tract 10.03\",\"Census Tract 10.04\",\"Census Tract 101\",\"Census Tract 102.01\",\"Census Tract 102.02\",\"Census Tract 103\",\"Census Tract 104\",\"Census Tract 105\",\"Census Tract 106.01\",\"Census Tract 106.02\",\"Census Tract 106.03\",\"Census Tract 107\",\"Census Tract 108\",\"Census Tract 109\",\"Census Tract 11\",\"Census Tract 110.01\",\"Census Tract 110.02\",\"Census Tract 111\",\"Census Tract 12\",\"Census Tract 13.01\",\"Census Tract 13.03\",\"Census Tract 13.04\",\"Census Tract 14.01\",\"Census Tract 14.02\",\"Census Tract 15\",\"Census Tract 16\",\"Census Tract 17.02\",\"Census Tract 18.03\",\"Census Tract 18.04\",\"Census Tract 19.01\",\"Census Tract 19.02\",\"Census Tract 2.01\",\"Census Tract 2.02\",\"Census Tract 20.01\",\"Census Tract 20.02\",\"Census Tract 21.01\",\"Census Tract 21.02\",\"Census Tract 22.01\",\"Census Tract 22.02\",\"Census Tract 23.01\",\"Census Tract 23.02\",\"Census Tract 24\",\"Census Tract 25.01\",\"Census Tract 25.03\",\"Census Tract 25.04\",\"Census Tract 26\",\"Census Tract 27.02\",\"Census Tract 27.03\",\"Census Tract 27.04\",\"Census Tract 28.01\",\"Census Tract 28.02\",\"Census Tract 29\",\"Census Tract 3\",\"Census Tract 30\",\"Census Tract 31\",\"Census Tract 32\",\"Census Tract 33.01\",\"Census Tract 33.02\",\"Census Tract 34\",\"Census Tract 35\",\"Census Tract 36\",\"Census Tract 37.01\",\"Census Tract 37.02\",\"Census Tract 38.01\",\"Census Tract 38.02\",\"Census Tract 39.01\",\"Census Tract 39.02\",\"Census Tract 4\",\"Census Tract 40.01\",\"Census Tract 40.02\",\"Census Tract 41\",\"Census Tract 42.01\",\"Census Tract 42.02\",\"Census Tract 43\",\"Census Tract 44.01\",\"Census Tract 44.02\",\"Census Tract 46\",\"Census Tract 47.02\",\"Census Tract 47.03\",\"Census Tract 47.04\",\"Census Tract 48.01\",\"Census Tract 48.02\",\"Census Tract 49.01\",\"Census Tract 49.02\",\"Census Tract 5.01\",\"Census Tract 5.02\",\"Census Tract 50.01\",\"Census Tract 50.03\",\"Census Tract 50.04\",\"Census Tract 52.02\",\"Census Tract 52.03\",\"Census Tract 53.02\",\"Census Tract 53.03\",\"Census Tract 55.01\",\"Census Tract 55.02\",\"Census Tract 55.03\",\"Census Tract 56.01\"]},{\"attribute\":\"STATEFP\",\"count\":1,\"type\":\"string\",\"values\":[\"11\"]},{\"attribute\":\"TRACTCE\",\"count\":206,\"type\":\"string\",\"values\":[\"000101\",\"000102\",\"000201\",\"000202\",\"000300\",\"000400\",\"000501\",\"000502\",\"000600\",\"000702\",\"000703\",\"000704\",\"000802\",\"000803\",\"000804\",\"000902\",\"000903\",\"000904\",\"001002\",\"001003\",\"001004\",\"001100\",\"001200\",\"001301\",\"001303\",\"001304\",\"001401\",\"001402\",\"001500\",\"001600\",\"001702\",\"001803\",\"001804\",\"001901\",\"001902\",\"002001\",\"002002\",\"002101\",\"002102\",\"002201\",\"002202\",\"002301\",\"002302\",\"002400\",\"002501\",\"002503\",\"002504\",\"002600\",\"002702\",\"002703\",\"002704\",\"002801\",\"002802\",\"002900\",\"003000\",\"003100\",\"003200\",\"003301\",\"003302\",\"003400\",\"003500\",\"003600\",\"003701\",\"003702\",\"003801\",\"003802\",\"003901\",\"003902\",\"004001\",\"004002\",\"004100\",\"004201\",\"004202\",\"004300\",\"004401\",\"004402\",\"004600\",\"004702\",\"004703\",\"004704\",\"004801\",\"004802\",\"004901\",\"004902\",\"005001\",\"005003\",\"005004\",\"005202\",\"005203\",\"005302\",\"005303\",\"005501\",\"005502\",\"005503\",\"005601\",\"005602\",\"005801\",\"005802\",\"005900\",\"006400\"]}]}]}}", +"maxzoom": "13", +"minzoom": "12", +"name": "tests/tl_2022_11_tract/out/-z14_-Z12_--coalesce-densest-as-needed_--generate-variable-depth-tile-pyramid_-M25000.json.check.mbtiles", +"strategies": "[{},{},{},{},{},{},{},{},{},{},{},{},{\"coalesced_as_needed\":87,\"tile_size_desired\":39190,\"truncated_zooms\":3},{\"truncated_zooms\":18},{}]", +"tippecanoe_decisions": "{\"basezoom\":14,\"droprate\":2.5,\"retain_points_multiplier\":1}", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1170, "y": 1566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000904", "GEOID": "11001000904", "NAME": "9.04", "NAMELSAD": "Census Tract 9.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2024710, "AWATER": 75151, "INTPTLAT": "+38.9366243", "INTPTLON": "-077.1036767" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.104025, 38.927349 ], [ -77.104111, 38.927416 ], [ -77.104368, 38.927666 ], [ -77.104626, 38.927883 ], [ -77.104948, 38.928200 ], [ -77.105098, 38.928334 ], [ -77.105248, 38.928451 ], [ -77.105720, 38.928868 ], [ -77.105763, 38.928918 ], [ -77.106042, 38.929185 ], [ -77.106493, 38.929586 ], [ -77.106578, 38.929653 ], [ -77.106600, 38.929669 ], [ -77.106643, 38.929719 ], [ -77.106686, 38.929736 ], [ -77.106707, 38.929769 ], [ -77.106750, 38.929820 ], [ -77.106771, 38.929853 ], [ -77.106814, 38.929920 ], [ -77.106836, 38.929953 ], [ -77.106857, 38.930003 ], [ -77.106857, 38.930037 ], [ -77.106879, 38.930087 ], [ -77.106900, 38.930153 ], [ -77.106900, 38.930187 ], [ -77.106922, 38.930254 ], [ -77.106943, 38.930320 ], [ -77.106965, 38.930471 ], [ -77.106986, 38.930571 ], [ -77.107008, 38.930621 ], [ -77.107029, 38.930671 ], [ -77.107050, 38.930721 ], [ -77.107072, 38.930754 ], [ -77.107093, 38.930804 ], [ -77.107115, 38.930854 ], [ -77.107158, 38.930888 ], [ -77.107179, 38.930938 ], [ -77.107222, 38.930971 ], [ -77.107265, 38.931021 ], [ -77.107286, 38.931055 ], [ -77.107329, 38.931088 ], [ -77.107716, 38.931422 ], [ -77.107844, 38.931522 ], [ -77.107909, 38.931589 ], [ -77.107995, 38.931656 ], [ -77.108274, 38.931889 ], [ -77.108402, 38.931973 ], [ -77.108510, 38.932073 ], [ -77.108681, 38.932223 ], [ -77.108746, 38.932273 ], [ -77.108831, 38.932373 ], [ -77.108853, 38.932407 ], [ -77.108982, 38.932490 ], [ -77.109067, 38.932590 ], [ -77.109175, 38.932674 ], [ -77.109561, 38.933024 ], [ -77.109625, 38.933091 ], [ -77.109668, 38.933125 ], [ -77.109754, 38.933208 ], [ -77.109840, 38.933308 ], [ -77.109904, 38.933408 ], [ -77.110333, 38.933976 ], [ -77.110634, 38.934376 ], [ -77.110720, 38.934510 ], [ -77.110763, 38.934577 ], [ -77.110784, 38.934593 ], [ -77.110934, 38.934794 ], [ -77.111363, 38.935378 ], [ -77.111578, 38.935695 ], [ -77.111664, 38.935778 ], [ -77.111664, 38.935795 ], [ -77.111685, 38.935829 ], [ -77.111728, 38.935862 ], [ -77.111750, 38.935912 ], [ -77.111814, 38.935995 ], [ -77.111857, 38.936062 ], [ -77.111878, 38.936112 ], [ -77.111921, 38.936146 ], [ -77.111943, 38.936196 ], [ -77.111964, 38.936246 ], [ -77.111986, 38.936296 ], [ -77.112007, 38.936363 ], [ -77.112072, 38.936530 ], [ -77.112072, 38.936563 ], [ -77.112072, 38.936613 ], [ -77.112093, 38.936680 ], [ -77.112093, 38.936730 ], [ -77.112093, 38.936813 ], [ -77.112093, 38.936897 ], [ -77.112093, 38.936964 ], [ -77.112093, 38.937014 ], [ -77.112072, 38.937064 ], [ -77.112072, 38.937130 ], [ -77.112050, 38.937180 ], [ -77.112050, 38.937247 ], [ -77.112029, 38.937381 ], [ -77.111964, 38.937815 ], [ -77.111964, 38.937898 ], [ -77.111964, 38.937982 ], [ -77.111964, 38.938015 ], [ -77.112007, 38.938499 ], [ -77.112029, 38.938866 ], [ -77.112050, 38.939000 ], [ -77.112050, 38.939100 ], [ -77.112093, 38.939217 ], [ -77.112136, 38.939317 ], [ -77.112222, 38.939467 ], [ -77.112501, 38.940001 ], [ -77.112544, 38.940085 ], [ -77.112565, 38.940151 ], [ -77.112565, 38.940218 ], [ -77.112179, 38.940519 ], [ -77.112093, 38.940585 ], [ -77.111921, 38.940719 ], [ -77.111900, 38.940735 ], [ -77.109025, 38.942905 ], [ -77.108917, 38.943005 ], [ -77.108831, 38.943055 ], [ -77.106128, 38.945158 ], [ -77.104840, 38.946043 ], [ -77.104111, 38.946627 ], [ -77.102501, 38.947895 ], [ -77.101364, 38.948663 ], [ -77.100956, 38.948946 ], [ -77.100613, 38.949163 ], [ -77.100592, 38.949147 ], [ -77.100570, 38.949097 ], [ -77.100527, 38.949046 ], [ -77.100506, 38.948996 ], [ -77.100484, 38.948946 ], [ -77.100484, 38.948896 ], [ -77.100484, 38.948830 ], [ -77.100484, 38.948796 ], [ -77.100506, 38.948779 ], [ -77.100527, 38.948746 ], [ -77.100549, 38.948696 ], [ -77.100592, 38.948663 ], [ -77.100613, 38.948646 ], [ -77.100420, 38.948512 ], [ -77.099583, 38.947912 ], [ -77.099283, 38.947678 ], [ -77.098982, 38.947478 ], [ -77.098768, 38.947311 ], [ -77.098446, 38.947061 ], [ -77.097545, 38.946410 ], [ -77.097330, 38.946260 ], [ -77.096901, 38.945959 ], [ -77.096879, 38.945926 ], [ -77.096751, 38.945842 ], [ -77.096751, 38.945692 ], [ -77.096772, 38.945425 ], [ -77.096751, 38.944824 ], [ -77.096751, 38.944240 ], [ -77.096772, 38.943239 ], [ -77.096751, 38.943155 ], [ -77.096751, 38.943072 ], [ -77.096751, 38.942204 ], [ -77.096751, 38.941336 ], [ -77.096751, 38.941270 ], [ -77.096751, 38.941086 ], [ -77.096751, 38.940318 ], [ -77.096751, 38.939450 ], [ -77.096751, 38.939367 ], [ -77.096751, 38.938499 ], [ -77.096751, 38.938432 ], [ -77.096751, 38.938349 ], [ -77.096729, 38.938282 ], [ -77.096708, 38.938132 ], [ -77.096686, 38.938032 ], [ -77.096665, 38.937998 ], [ -77.096622, 38.937815 ], [ -77.096579, 38.937681 ], [ -77.096515, 38.937564 ], [ -77.096472, 38.937431 ], [ -77.096429, 38.937297 ], [ -77.096407, 38.937247 ], [ -77.096300, 38.936930 ], [ -77.096279, 38.936863 ], [ -77.096257, 38.936847 ], [ -77.095978, 38.935979 ], [ -77.095957, 38.935912 ], [ -77.096064, 38.935929 ], [ -77.096128, 38.935945 ], [ -77.096214, 38.935945 ], [ -77.096300, 38.935945 ], [ -77.096386, 38.935945 ], [ -77.096429, 38.935945 ], [ -77.098875, 38.935962 ], [ -77.098918, 38.935962 ], [ -77.098961, 38.935962 ], [ -77.099004, 38.935945 ], [ -77.099068, 38.935929 ], [ -77.099111, 38.935929 ], [ -77.099154, 38.935912 ], [ -77.099476, 38.935795 ], [ -77.099755, 38.935712 ], [ -77.099862, 38.935678 ], [ -77.099905, 38.935678 ], [ -77.099948, 38.935678 ], [ -77.100012, 38.935678 ], [ -77.100034, 38.935678 ], [ -77.100077, 38.935695 ], [ -77.100120, 38.935695 ], [ -77.100163, 38.935695 ], [ -77.100227, 38.935695 ], [ -77.100270, 38.935695 ], [ -77.100334, 38.935695 ], [ -77.100399, 38.935678 ], [ -77.100441, 38.935662 ], [ -77.100463, 38.935662 ], [ -77.100549, 38.935628 ], [ -77.100592, 38.935595 ], [ -77.100635, 38.935561 ], [ -77.100677, 38.935511 ], [ -77.100720, 38.935461 ], [ -77.100785, 38.935411 ], [ -77.100935, 38.935261 ], [ -77.101021, 38.935161 ], [ -77.100935, 38.935111 ], [ -77.100635, 38.934894 ], [ -77.100270, 38.934610 ], [ -77.100184, 38.934543 ], [ -77.100141, 38.934510 ], [ -77.100077, 38.934426 ], [ -77.100055, 38.934393 ], [ -77.100012, 38.934360 ], [ -77.099991, 38.934326 ], [ -77.099948, 38.934276 ], [ -77.099841, 38.934076 ], [ -77.099626, 38.933759 ], [ -77.099583, 38.933709 ], [ -77.099540, 38.933659 ], [ -77.099519, 38.933625 ], [ -77.099454, 38.933559 ], [ -77.099433, 38.933542 ], [ -77.099390, 38.933508 ], [ -77.099304, 38.933442 ], [ -77.099197, 38.933358 ], [ -77.099133, 38.933308 ], [ -77.099111, 38.933291 ], [ -77.099068, 38.933258 ], [ -77.099025, 38.933241 ], [ -77.098918, 38.933191 ], [ -77.098832, 38.933141 ], [ -77.098746, 38.933108 ], [ -77.098639, 38.933058 ], [ -77.098446, 38.932991 ], [ -77.098103, 38.932891 ], [ -77.097201, 38.932590 ], [ -77.097094, 38.932540 ], [ -77.097158, 38.932474 ], [ -77.098296, 38.931472 ], [ -77.099605, 38.930320 ], [ -77.099733, 38.930220 ], [ -77.100270, 38.929753 ], [ -77.100399, 38.929636 ], [ -77.100570, 38.929486 ], [ -77.101021, 38.929085 ], [ -77.101450, 38.928701 ], [ -77.101579, 38.928601 ], [ -77.101686, 38.928501 ], [ -77.101729, 38.928451 ], [ -77.101772, 38.928417 ], [ -77.101815, 38.928384 ], [ -77.101858, 38.928351 ], [ -77.101901, 38.928317 ], [ -77.101943, 38.928284 ], [ -77.101965, 38.928267 ], [ -77.102008, 38.928250 ], [ -77.102051, 38.928217 ], [ -77.102094, 38.928184 ], [ -77.102501, 38.927983 ], [ -77.102909, 38.927766 ], [ -77.103016, 38.927716 ], [ -77.103124, 38.927666 ], [ -77.103252, 38.927616 ], [ -77.103360, 38.927566 ], [ -77.103467, 38.927516 ], [ -77.103746, 38.927433 ], [ -77.103810, 38.927416 ], [ -77.104025, 38.927349 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000902", "GEOID": "11001000902", "NAME": "9.02", "NAMELSAD": "Census Tract 9.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1867106, "AWATER": 307257, "INTPTLAT": "+38.9285125", "INTPTLON": "-077.1077517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.105162, 38.917299 ], [ -77.105162, 38.917333 ], [ -77.105184, 38.917349 ], [ -77.105205, 38.917349 ], [ -77.105227, 38.917333 ], [ -77.105269, 38.917333 ], [ -77.105291, 38.917333 ], [ -77.105312, 38.917349 ], [ -77.105334, 38.917366 ], [ -77.105334, 38.917383 ], [ -77.105355, 38.917416 ], [ -77.105355, 38.917450 ], [ -77.105355, 38.917466 ], [ -77.105377, 38.917450 ], [ -77.105420, 38.917450 ], [ -77.105441, 38.917466 ], [ -77.105441, 38.917483 ], [ -77.105441, 38.917500 ], [ -77.105463, 38.917516 ], [ -77.105484, 38.917550 ], [ -77.105505, 38.917566 ], [ -77.105505, 38.917583 ], [ -77.105527, 38.917600 ], [ -77.105548, 38.917616 ], [ -77.105591, 38.917633 ], [ -77.105591, 38.917650 ], [ -77.105570, 38.917683 ], [ -77.105591, 38.917700 ], [ -77.105591, 38.917717 ], [ -77.105591, 38.917733 ], [ -77.105591, 38.917750 ], [ -77.105613, 38.917767 ], [ -77.105613, 38.917800 ], [ -77.105613, 38.917817 ], [ -77.105613, 38.917834 ], [ -77.105613, 38.917850 ], [ -77.105634, 38.917867 ], [ -77.105634, 38.917900 ], [ -77.105656, 38.917900 ], [ -77.105677, 38.917917 ], [ -77.105656, 38.917934 ], [ -77.105677, 38.917950 ], [ -77.105656, 38.917984 ], [ -77.105677, 38.918000 ], [ -77.105699, 38.918000 ], [ -77.105699, 38.918034 ], [ -77.105699, 38.918051 ], [ -77.105720, 38.918067 ], [ -77.105720, 38.918084 ], [ -77.105742, 38.918117 ], [ -77.105720, 38.918134 ], [ -77.105742, 38.918151 ], [ -77.105720, 38.918167 ], [ -77.105720, 38.918184 ], [ -77.105720, 38.918217 ], [ -77.105742, 38.918234 ], [ -77.105720, 38.918251 ], [ -77.105720, 38.918268 ], [ -77.105720, 38.918301 ], [ -77.105742, 38.918318 ], [ -77.105763, 38.918301 ], [ -77.105784, 38.918318 ], [ -77.105806, 38.918334 ], [ -77.105827, 38.918351 ], [ -77.105827, 38.918368 ], [ -77.105827, 38.918384 ], [ -77.105827, 38.918401 ], [ -77.105827, 38.918435 ], [ -77.105849, 38.918451 ], [ -77.105849, 38.918468 ], [ -77.105870, 38.918485 ], [ -77.105870, 38.918518 ], [ -77.105892, 38.918518 ], [ -77.105913, 38.918535 ], [ -77.105935, 38.918535 ], [ -77.105935, 38.918568 ], [ -77.105935, 38.918585 ], [ -77.105956, 38.918601 ], [ -77.105978, 38.918601 ], [ -77.105999, 38.918601 ], [ -77.106020, 38.918618 ], [ -77.106042, 38.918635 ], [ -77.106042, 38.918668 ], [ -77.106063, 38.918685 ], [ -77.106063, 38.918702 ], [ -77.106085, 38.918718 ], [ -77.106106, 38.918752 ], [ -77.106128, 38.918785 ], [ -77.106149, 38.918802 ], [ -77.106149, 38.918819 ], [ -77.106171, 38.918835 ], [ -77.106171, 38.918852 ], [ -77.106192, 38.918885 ], [ -77.106192, 38.918902 ], [ -77.106192, 38.918919 ], [ -77.106214, 38.918952 ], [ -77.106214, 38.918969 ], [ -77.106235, 38.919002 ], [ -77.106214, 38.919036 ], [ -77.106214, 38.919069 ], [ -77.106214, 38.919086 ], [ -77.106235, 38.919102 ], [ -77.106256, 38.919119 ], [ -77.106278, 38.919136 ], [ -77.106256, 38.919169 ], [ -77.106278, 38.919186 ], [ -77.106299, 38.919186 ], [ -77.106321, 38.919202 ], [ -77.106342, 38.919219 ], [ -77.106342, 38.919253 ], [ -77.106342, 38.919269 ], [ -77.106364, 38.919286 ], [ -77.106385, 38.919303 ], [ -77.106407, 38.919319 ], [ -77.106428, 38.919319 ], [ -77.106471, 38.919353 ], [ -77.106471, 38.919369 ], [ -77.106471, 38.919386 ], [ -77.106471, 38.919420 ], [ -77.106493, 38.919436 ], [ -77.106514, 38.919470 ], [ -77.106535, 38.919470 ], [ -77.106557, 38.919486 ], [ -77.106578, 38.919503 ], [ -77.106557, 38.919536 ], [ -77.106578, 38.919553 ], [ -77.106600, 38.919536 ], [ -77.106621, 38.919536 ], [ -77.106643, 38.919553 ], [ -77.106664, 38.919586 ], [ -77.106664, 38.919603 ], [ -77.106686, 38.919637 ], [ -77.106707, 38.919653 ], [ -77.106729, 38.919687 ], [ -77.106750, 38.919720 ], [ -77.106771, 38.919737 ], [ -77.106793, 38.919770 ], [ -77.106814, 38.919787 ], [ -77.106836, 38.919804 ], [ -77.106836, 38.919837 ], [ -77.106857, 38.919854 ], [ -77.106879, 38.919887 ], [ -77.106857, 38.919904 ], [ -77.106836, 38.919920 ], [ -77.106814, 38.919937 ], [ -77.106793, 38.919954 ], [ -77.106793, 38.919987 ], [ -77.106793, 38.920004 ], [ -77.106793, 38.920021 ], [ -77.106814, 38.920037 ], [ -77.106836, 38.920037 ], [ -77.106857, 38.920021 ], [ -77.106879, 38.920004 ], [ -77.106922, 38.919987 ], [ -77.106943, 38.919970 ], [ -77.106965, 38.919987 ], [ -77.106986, 38.920004 ], [ -77.106986, 38.920021 ], [ -77.107008, 38.920054 ], [ -77.107093, 38.920171 ], [ -77.107222, 38.920221 ], [ -77.107244, 38.920254 ], [ -77.107244, 38.920271 ], [ -77.107265, 38.920288 ], [ -77.107286, 38.920304 ], [ -77.107308, 38.920321 ], [ -77.107329, 38.920338 ], [ -77.107351, 38.920354 ], [ -77.107394, 38.920371 ], [ -77.107415, 38.920388 ], [ -77.107437, 38.920405 ], [ -77.107480, 38.920438 ], [ -77.107501, 38.920455 ], [ -77.107501, 38.920488 ], [ -77.107522, 38.920521 ], [ -77.107544, 38.920538 ], [ -77.107565, 38.920571 ], [ -77.107565, 38.920605 ], [ -77.107587, 38.920638 ], [ -77.107630, 38.920655 ], [ -77.107630, 38.920688 ], [ -77.107651, 38.920722 ], [ -77.107673, 38.920738 ], [ -77.107673, 38.920755 ], [ -77.107673, 38.920772 ], [ -77.107694, 38.920788 ], [ -77.107716, 38.920772 ], [ -77.107737, 38.920788 ], [ -77.107737, 38.920822 ], [ -77.107759, 38.920839 ], [ -77.107780, 38.920855 ], [ -77.107801, 38.920872 ], [ -77.107823, 38.920872 ], [ -77.107844, 38.920889 ], [ -77.107866, 38.920905 ], [ -77.107887, 38.920905 ], [ -77.107909, 38.920922 ], [ -77.107930, 38.920939 ], [ -77.107973, 38.920955 ], [ -77.107995, 38.920955 ], [ -77.108016, 38.920972 ], [ -77.108037, 38.920989 ], [ -77.108059, 38.921006 ], [ -77.108080, 38.921039 ], [ -77.108102, 38.921056 ], [ -77.108123, 38.921072 ], [ -77.108145, 38.921106 ], [ -77.108166, 38.921122 ], [ -77.108188, 38.921139 ], [ -77.108188, 38.921172 ], [ -77.108209, 38.921206 ], [ -77.108209, 38.921239 ], [ -77.108188, 38.921256 ], [ -77.108209, 38.921273 ], [ -77.108231, 38.921273 ], [ -77.108252, 38.921289 ], [ -77.108274, 38.921323 ], [ -77.108295, 38.921339 ], [ -77.108316, 38.921339 ], [ -77.108338, 38.921339 ], [ -77.108359, 38.921373 ], [ -77.108381, 38.921389 ], [ -77.108402, 38.921406 ], [ -77.108424, 38.921423 ], [ -77.108424, 38.921456 ], [ -77.108445, 38.921473 ], [ -77.108445, 38.921490 ], [ -77.108467, 38.921523 ], [ -77.108488, 38.921540 ], [ -77.108488, 38.921556 ], [ -77.108488, 38.921573 ], [ -77.108510, 38.921590 ], [ -77.108531, 38.921623 ], [ -77.108510, 38.921640 ], [ -77.108531, 38.921640 ], [ -77.108552, 38.921640 ], [ -77.108574, 38.921623 ], [ -77.108595, 38.921606 ], [ -77.108617, 38.921623 ], [ -77.108617, 38.921640 ], [ -77.108638, 38.921657 ], [ -77.108660, 38.921673 ], [ -77.108681, 38.921707 ], [ -77.108703, 38.921723 ], [ -77.108724, 38.921723 ], [ -77.108746, 38.921723 ], [ -77.108746, 38.921740 ], [ -77.108746, 38.921757 ], [ -77.108746, 38.921790 ], [ -77.108746, 38.921807 ], [ -77.108767, 38.921824 ], [ -77.108788, 38.921840 ], [ -77.108810, 38.921824 ], [ -77.108853, 38.921824 ], [ -77.108831, 38.921840 ], [ -77.108831, 38.921874 ], [ -77.108874, 38.921874 ], [ -77.108896, 38.921857 ], [ -77.108917, 38.921857 ], [ -77.108960, 38.921857 ], [ -77.108960, 38.921840 ], [ -77.109003, 38.921857 ], [ -77.109003, 38.921874 ], [ -77.109025, 38.921890 ], [ -77.109046, 38.921907 ], [ -77.109067, 38.921907 ], [ -77.109089, 38.921924 ], [ -77.109110, 38.921940 ], [ -77.109132, 38.921957 ], [ -77.109132, 38.921974 ], [ -77.109132, 38.922007 ], [ -77.109153, 38.922007 ], [ -77.109175, 38.922041 ], [ -77.109196, 38.922057 ], [ -77.109218, 38.922074 ], [ -77.109239, 38.922074 ], [ -77.109261, 38.922091 ], [ -77.109282, 38.922091 ], [ -77.109303, 38.922107 ], [ -77.109346, 38.922124 ], [ -77.109346, 38.922141 ], [ -77.109368, 38.922157 ], [ -77.109389, 38.922191 ], [ -77.109368, 38.922207 ], [ -77.109368, 38.922224 ], [ -77.109368, 38.922241 ], [ -77.109389, 38.922241 ], [ -77.109389, 38.922224 ], [ -77.109411, 38.922224 ], [ -77.109454, 38.922241 ], [ -77.109475, 38.922241 ], [ -77.109518, 38.922258 ], [ -77.109540, 38.922291 ], [ -77.109582, 38.922308 ], [ -77.109604, 38.922324 ], [ -77.109647, 38.922341 ], [ -77.109690, 38.922358 ], [ -77.109711, 38.922374 ], [ -77.109711, 38.922408 ], [ -77.109733, 38.922408 ], [ -77.109776, 38.922425 ], [ -77.109797, 38.922441 ], [ -77.109840, 38.922458 ], [ -77.109861, 38.922475 ], [ -77.109883, 38.922508 ], [ -77.109883, 38.922525 ], [ -77.109904, 38.922558 ], [ -77.109904, 38.922575 ], [ -77.109926, 38.922608 ], [ -77.109926, 38.922625 ], [ -77.109969, 38.922642 ], [ -77.109990, 38.922658 ], [ -77.110012, 38.922675 ], [ -77.110012, 38.922692 ], [ -77.110033, 38.922708 ], [ -77.110054, 38.922708 ], [ -77.110097, 38.922708 ], [ -77.110119, 38.922725 ], [ -77.110119, 38.922758 ], [ -77.110140, 38.922758 ], [ -77.110183, 38.922775 ], [ -77.110205, 38.922792 ], [ -77.110226, 38.922808 ], [ -77.110248, 38.922808 ], [ -77.110269, 38.922808 ], [ -77.110291, 38.922825 ], [ -77.110312, 38.922859 ], [ -77.110333, 38.922859 ], [ -77.110355, 38.922892 ], [ -77.110376, 38.922909 ], [ -77.110376, 38.922925 ], [ -77.110376, 38.922959 ], [ -77.110398, 38.922975 ], [ -77.110419, 38.922959 ], [ -77.110441, 38.922975 ], [ -77.110462, 38.922992 ], [ -77.110505, 38.923009 ], [ -77.110527, 38.923009 ], [ -77.110569, 38.923025 ], [ -77.110569, 38.923059 ], [ -77.110591, 38.923092 ], [ -77.110612, 38.923109 ], [ -77.110634, 38.923126 ], [ -77.110634, 38.923159 ], [ -77.110634, 38.923176 ], [ -77.110677, 38.923192 ], [ -77.110677, 38.923209 ], [ -77.110720, 38.923209 ], [ -77.110741, 38.923226 ], [ -77.110763, 38.923243 ], [ -77.110806, 38.923276 ], [ -77.110827, 38.923293 ], [ -77.110848, 38.923309 ], [ -77.110870, 38.923343 ], [ -77.110891, 38.923359 ], [ -77.110891, 38.923393 ], [ -77.110891, 38.923409 ], [ -77.110913, 38.923426 ], [ -77.110934, 38.923426 ], [ -77.110956, 38.923426 ], [ -77.110977, 38.923443 ], [ -77.110999, 38.923460 ], [ -77.111020, 38.923460 ], [ -77.111063, 38.923476 ], [ -77.111084, 38.923476 ], [ -77.111106, 38.923493 ], [ -77.111127, 38.923493 ], [ -77.111149, 38.923510 ], [ -77.111170, 38.923526 ], [ -77.111170, 38.923560 ], [ -77.111213, 38.923560 ], [ -77.111213, 38.923576 ], [ -77.111256, 38.923576 ], [ -77.111278, 38.923593 ], [ -77.111256, 38.923626 ], [ -77.111278, 38.923643 ], [ -77.111299, 38.923660 ], [ -77.111320, 38.923660 ], [ -77.111342, 38.923677 ], [ -77.111342, 38.923710 ], [ -77.111385, 38.923743 ], [ -77.111385, 38.923760 ], [ -77.111406, 38.923777 ], [ -77.111406, 38.923810 ], [ -77.111406, 38.923843 ], [ -77.111449, 38.923827 ], [ -77.111471, 38.923843 ], [ -77.111492, 38.923843 ], [ -77.111514, 38.923860 ], [ -77.111557, 38.923877 ], [ -77.111557, 38.923894 ], [ -77.111578, 38.923910 ], [ -77.111599, 38.923910 ], [ -77.111621, 38.923927 ], [ -77.111664, 38.923944 ], [ -77.111685, 38.923977 ], [ -77.111707, 38.923977 ], [ -77.111728, 38.923994 ], [ -77.111771, 38.924010 ], [ -77.111793, 38.924010 ], [ -77.111814, 38.924027 ], [ -77.111835, 38.924044 ], [ -77.111814, 38.924061 ], [ -77.111835, 38.924094 ], [ -77.111857, 38.924094 ], [ -77.111900, 38.924094 ], [ -77.111900, 38.924111 ], [ -77.111943, 38.924111 ], [ -77.111964, 38.924127 ], [ -77.111964, 38.924144 ], [ -77.111964, 38.924177 ], [ -77.111964, 38.924194 ], [ -77.111986, 38.924211 ], [ -77.112007, 38.924227 ], [ -77.112007, 38.924244 ], [ -77.112007, 38.924261 ], [ -77.112050, 38.924261 ], [ -77.112072, 38.924261 ], [ -77.112093, 38.924278 ], [ -77.112114, 38.924294 ], [ -77.112136, 38.924278 ], [ -77.112157, 38.924294 ], [ -77.112179, 38.924311 ], [ -77.112179, 38.924344 ], [ -77.112179, 38.924361 ], [ -77.112222, 38.924361 ], [ -77.112222, 38.924394 ], [ -77.112243, 38.924428 ], [ -77.112265, 38.924444 ], [ -77.112286, 38.924444 ], [ -77.112308, 38.924444 ], [ -77.112350, 38.924428 ], [ -77.112393, 38.924444 ], [ -77.112415, 38.924461 ], [ -77.112436, 38.924478 ], [ -77.112436, 38.924511 ], [ -77.112458, 38.924511 ], [ -77.112479, 38.924528 ], [ -77.112501, 38.924545 ], [ -77.112522, 38.924561 ], [ -77.112522, 38.924595 ], [ -77.112565, 38.924611 ], [ -77.112586, 38.924628 ], [ -77.112608, 38.924645 ], [ -77.112629, 38.924645 ], [ -77.112651, 38.924661 ], [ -77.112672, 38.924678 ], [ -77.112694, 38.924695 ], [ -77.112694, 38.924712 ], [ -77.112715, 38.924728 ], [ -77.112715, 38.924745 ], [ -77.112737, 38.924778 ], [ -77.112737, 38.924795 ], [ -77.112758, 38.924812 ], [ -77.112780, 38.924828 ], [ -77.112801, 38.924845 ], [ -77.112801, 38.924878 ], [ -77.112758, 38.924878 ], [ -77.112737, 38.924878 ], [ -77.112737, 38.924895 ], [ -77.112737, 38.924912 ], [ -77.112758, 38.924945 ], [ -77.112780, 38.924945 ], [ -77.112801, 38.924945 ], [ -77.112823, 38.924962 ], [ -77.112844, 38.924979 ], [ -77.112844, 38.925012 ], [ -77.112844, 38.925029 ], [ -77.112844, 38.925045 ], [ -77.112865, 38.925045 ], [ -77.112887, 38.925062 ], [ -77.112908, 38.925079 ], [ -77.112908, 38.925062 ], [ -77.112951, 38.925062 ], [ -77.112951, 38.925079 ], [ -77.112994, 38.925112 ], [ -77.113016, 38.925129 ], [ -77.113037, 38.925146 ], [ -77.113101, 38.925246 ], [ -77.113187, 38.925313 ], [ -77.113209, 38.925313 ], [ -77.113230, 38.925329 ], [ -77.113230, 38.925346 ], [ -77.113273, 38.925363 ], [ -77.113295, 38.925363 ], [ -77.113316, 38.925363 ], [ -77.113338, 38.925363 ], [ -77.113359, 38.925379 ], [ -77.113380, 38.925396 ], [ -77.113402, 38.925413 ], [ -77.113402, 38.925446 ], [ -77.113402, 38.925463 ], [ -77.113423, 38.925479 ], [ -77.113423, 38.925513 ], [ -77.113423, 38.925530 ], [ -77.113445, 38.925546 ], [ -77.113466, 38.925580 ], [ -77.113488, 38.925596 ], [ -77.113509, 38.925613 ], [ -77.113509, 38.925630 ], [ -77.113531, 38.925646 ], [ -77.113531, 38.925663 ], [ -77.113552, 38.925696 ], [ -77.113552, 38.925730 ], [ -77.113552, 38.925747 ], [ -77.113595, 38.925747 ], [ -77.113616, 38.925747 ], [ -77.113616, 38.925763 ], [ -77.113638, 38.925780 ], [ -77.113659, 38.925797 ], [ -77.113659, 38.925830 ], [ -77.113681, 38.925847 ], [ -77.113681, 38.925863 ], [ -77.113702, 38.925847 ], [ -77.113724, 38.925847 ], [ -77.113745, 38.925863 ], [ -77.113745, 38.925897 ], [ -77.113745, 38.925913 ], [ -77.113745, 38.925947 ], [ -77.113745, 38.925964 ], [ -77.113767, 38.925980 ], [ -77.113788, 38.925997 ], [ -77.113831, 38.925997 ], [ -77.113853, 38.926014 ], [ -77.113874, 38.926030 ], [ -77.113895, 38.926047 ], [ -77.113917, 38.926064 ], [ -77.113938, 38.926097 ], [ -77.113938, 38.926114 ], [ -77.113938, 38.926130 ], [ -77.113981, 38.926130 ], [ -77.114003, 38.926130 ], [ -77.114024, 38.926164 ], [ -77.114024, 38.926181 ], [ -77.114024, 38.926214 ], [ -77.114024, 38.926231 ], [ -77.114024, 38.926264 ], [ -77.114024, 38.926281 ], [ -77.114067, 38.926281 ], [ -77.114089, 38.926297 ], [ -77.114089, 38.926314 ], [ -77.114110, 38.926331 ], [ -77.114110, 38.926364 ], [ -77.114131, 38.926381 ], [ -77.114131, 38.926414 ], [ -77.114153, 38.926431 ], [ -77.114174, 38.926464 ], [ -77.114174, 38.926481 ], [ -77.114196, 38.926498 ], [ -77.114217, 38.926514 ], [ -77.114217, 38.926531 ], [ -77.114239, 38.926565 ], [ -77.114239, 38.926581 ], [ -77.114239, 38.926598 ], [ -77.114282, 38.926615 ], [ -77.114282, 38.926598 ], [ -77.114303, 38.926615 ], [ -77.114346, 38.926631 ], [ -77.114367, 38.926648 ], [ -77.114389, 38.926665 ], [ -77.114389, 38.926681 ], [ -77.114410, 38.926715 ], [ -77.114410, 38.926731 ], [ -77.114432, 38.926765 ], [ -77.114453, 38.926782 ], [ -77.114453, 38.926798 ], [ -77.114475, 38.926815 ], [ -77.114475, 38.926848 ], [ -77.114518, 38.926865 ], [ -77.114518, 38.926882 ], [ -77.114518, 38.926915 ], [ -77.114518, 38.926932 ], [ -77.114539, 38.926948 ], [ -77.114582, 38.926965 ], [ -77.114625, 38.926982 ], [ -77.114625, 38.926999 ], [ -77.114646, 38.927032 ], [ -77.114668, 38.927049 ], [ -77.114689, 38.927049 ], [ -77.114732, 38.927065 ], [ -77.114754, 38.927082 ], [ -77.114775, 38.927115 ], [ -77.114775, 38.927149 ], [ -77.114775, 38.927165 ], [ -77.114775, 38.927182 ], [ -77.114754, 38.927199 ], [ -77.114775, 38.927216 ], [ -77.114797, 38.927216 ], [ -77.114818, 38.927216 ], [ -77.114797, 38.927232 ], [ -77.114818, 38.927249 ], [ -77.114818, 38.927282 ], [ -77.114840, 38.927299 ], [ -77.114861, 38.927316 ], [ -77.114882, 38.927316 ], [ -77.114904, 38.927332 ], [ -77.114904, 38.927349 ], [ -77.114904, 38.927366 ], [ -77.114925, 38.927382 ], [ -77.114947, 38.927382 ], [ -77.114947, 38.927349 ], [ -77.114925, 38.927332 ], [ -77.114968, 38.927349 ], [ -77.114990, 38.927366 ], [ -77.115054, 38.927366 ], [ -77.115076, 38.927382 ], [ -77.115119, 38.927399 ], [ -77.115140, 38.927399 ], [ -77.115161, 38.927433 ], [ -77.115204, 38.927466 ], [ -77.115204, 38.927483 ], [ -77.115226, 38.927516 ], [ -77.115247, 38.927533 ], [ -77.115269, 38.927549 ], [ -77.115290, 38.927583 ], [ -77.115290, 38.927599 ], [ -77.115312, 38.927616 ], [ -77.115333, 38.927650 ], [ -77.115333, 38.927666 ], [ -77.115355, 38.927650 ], [ -77.115376, 38.927633 ], [ -77.115397, 38.927650 ], [ -77.115440, 38.927666 ], [ -77.115440, 38.927683 ], [ -77.115462, 38.927716 ], [ -77.115483, 38.927716 ], [ -77.115505, 38.927716 ], [ -77.115526, 38.927716 ], [ -77.115505, 38.927750 ], [ -77.115505, 38.927783 ], [ -77.115505, 38.927816 ], [ -77.115548, 38.927833 ], [ -77.115569, 38.927833 ], [ -77.115591, 38.927850 ], [ -77.115612, 38.927867 ], [ -77.115633, 38.927900 ], [ -77.115676, 38.927917 ], [ -77.115698, 38.927933 ], [ -77.115698, 38.927950 ], [ -77.115719, 38.927983 ], [ -77.115741, 38.928000 ], [ -77.115762, 38.928017 ], [ -77.115784, 38.928017 ], [ -77.115805, 38.928033 ], [ -77.115827, 38.928067 ], [ -77.115805, 38.928084 ], [ -77.115827, 38.928100 ], [ -77.115848, 38.928100 ], [ -77.115870, 38.928100 ], [ -77.115891, 38.928117 ], [ -77.115891, 38.928150 ], [ -77.115912, 38.928150 ], [ -77.115955, 38.928167 ], [ -77.115955, 38.928184 ], [ -77.115977, 38.928217 ], [ -77.115977, 38.928234 ], [ -77.115998, 38.928267 ], [ -77.116020, 38.928284 ], [ -77.116041, 38.928317 ], [ -77.116041, 38.928334 ], [ -77.116041, 38.928351 ], [ -77.116020, 38.928367 ], [ -77.115998, 38.928367 ], [ -77.116020, 38.928401 ], [ -77.116020, 38.928417 ], [ -77.116041, 38.928401 ], [ -77.116084, 38.928401 ], [ -77.116106, 38.928417 ], [ -77.116106, 38.928434 ], [ -77.116127, 38.928451 ], [ -77.116127, 38.928467 ], [ -77.116148, 38.928484 ], [ -77.116170, 38.928501 ], [ -77.116191, 38.928518 ], [ -77.116191, 38.928551 ], [ -77.116213, 38.928568 ], [ -77.116213, 38.928584 ], [ -77.116191, 38.928651 ], [ -77.116191, 38.928668 ], [ -77.116191, 38.928701 ], [ -77.116213, 38.928718 ], [ -77.116234, 38.928751 ], [ -77.116234, 38.928768 ], [ -77.116256, 38.928801 ], [ -77.116277, 38.928818 ], [ -77.116299, 38.928835 ], [ -77.116320, 38.928851 ], [ -77.116342, 38.928868 ], [ -77.116320, 38.928885 ], [ -77.116320, 38.928918 ], [ -77.116320, 38.928935 ], [ -77.116320, 38.929002 ], [ -77.116342, 38.929102 ], [ -77.116363, 38.929118 ], [ -77.116363, 38.929135 ], [ -77.116385, 38.929169 ], [ -77.116406, 38.929185 ], [ -77.116406, 38.929202 ], [ -77.116427, 38.929235 ], [ -77.116427, 38.929269 ], [ -77.116427, 38.929302 ], [ -77.116427, 38.929335 ], [ -77.116449, 38.929352 ], [ -77.116449, 38.929386 ], [ -77.116427, 38.929419 ], [ -77.116427, 38.929436 ], [ -77.116406, 38.929452 ], [ -77.116406, 38.929469 ], [ -77.116406, 38.929502 ], [ -77.116427, 38.929569 ], [ -77.116470, 38.929636 ], [ -77.116513, 38.929703 ], [ -77.116513, 38.929719 ], [ -77.116535, 38.929736 ], [ -77.116556, 38.929753 ], [ -77.116556, 38.929786 ], [ -77.116578, 38.929803 ], [ -77.116599, 38.929820 ], [ -77.116599, 38.929836 ], [ -77.116621, 38.929853 ], [ -77.116642, 38.929870 ], [ -77.116642, 38.929903 ], [ -77.116663, 38.929920 ], [ -77.116685, 38.929953 ], [ -77.116706, 38.929970 ], [ -77.116706, 38.929986 ], [ -77.116728, 38.930003 ], [ -77.116728, 38.930037 ], [ -77.116749, 38.930037 ], [ -77.116771, 38.930053 ], [ -77.116771, 38.930087 ], [ -77.116792, 38.930103 ], [ -77.116814, 38.930137 ], [ -77.116835, 38.930153 ], [ -77.116835, 38.930170 ], [ -77.116857, 38.930220 ], [ -77.116878, 38.930237 ], [ -77.116899, 38.930254 ], [ -77.116921, 38.930270 ], [ -77.116921, 38.930287 ], [ -77.116942, 38.930304 ], [ -77.116942, 38.930320 ], [ -77.116964, 38.930354 ], [ -77.116964, 38.930370 ], [ -77.116985, 38.930387 ], [ -77.117007, 38.930404 ], [ -77.117007, 38.930420 ], [ -77.117028, 38.930454 ], [ -77.117050, 38.930471 ], [ -77.117071, 38.930504 ], [ -77.117071, 38.930521 ], [ -77.117093, 38.930537 ], [ -77.117114, 38.930571 ], [ -77.117136, 38.930587 ], [ -77.117136, 38.930604 ], [ -77.117157, 38.930637 ], [ -77.117178, 38.930654 ], [ -77.117178, 38.930671 ], [ -77.117200, 38.930688 ], [ -77.117221, 38.930721 ], [ -77.117221, 38.930738 ], [ -77.117243, 38.930754 ], [ -77.117264, 38.930771 ], [ -77.117286, 38.930804 ], [ -77.117307, 38.930838 ], [ -77.117329, 38.930854 ], [ -77.117329, 38.930871 ], [ -77.117350, 38.930888 ], [ -77.117350, 38.930905 ], [ -77.117372, 38.930921 ], [ -77.117372, 38.930938 ], [ -77.117393, 38.930971 ], [ -77.117414, 38.930988 ], [ -77.117436, 38.931021 ], [ -77.117436, 38.931038 ], [ -77.117457, 38.931055 ], [ -77.117479, 38.931088 ], [ -77.117479, 38.931105 ], [ -77.117500, 38.931122 ], [ -77.117522, 38.931138 ], [ -77.117543, 38.931172 ], [ -77.117565, 38.931205 ], [ -77.117565, 38.931222 ], [ -77.117586, 38.931255 ], [ -77.117608, 38.931255 ], [ -77.117608, 38.931288 ], [ -77.117629, 38.931322 ], [ -77.117651, 38.931339 ], [ -77.117672, 38.931372 ], [ -77.117693, 38.931405 ], [ -77.117715, 38.931422 ], [ -77.117715, 38.931439 ], [ -77.117736, 38.931472 ], [ -77.117758, 38.931472 ], [ -77.117758, 38.931505 ], [ -77.117779, 38.931522 ], [ -77.117801, 38.931539 ], [ -77.117801, 38.931556 ], [ -77.117822, 38.931589 ], [ -77.117844, 38.931622 ], [ -77.117865, 38.931656 ], [ -77.117887, 38.931672 ], [ -77.117908, 38.931689 ], [ -77.117908, 38.931706 ], [ -77.117929, 38.931739 ], [ -77.117951, 38.931756 ], [ -77.117951, 38.931773 ], [ -77.117972, 38.931789 ], [ -77.117972, 38.931806 ], [ -77.117994, 38.931823 ], [ -77.117994, 38.931839 ], [ -77.118015, 38.931873 ], [ -77.118037, 38.931889 ], [ -77.118058, 38.931906 ], [ -77.118058, 38.931939 ], [ -77.118080, 38.931956 ], [ -77.118101, 38.931990 ], [ -77.118123, 38.932006 ], [ -77.118144, 38.932040 ], [ -77.118144, 38.932056 ], [ -77.118165, 38.932073 ], [ -77.118165, 38.932090 ], [ -77.118187, 38.932106 ], [ -77.118208, 38.932140 ], [ -77.118230, 38.932156 ], [ -77.118230, 38.932173 ], [ -77.118251, 38.932207 ], [ -77.118273, 38.932223 ], [ -77.118294, 38.932240 ], [ -77.118294, 38.932257 ], [ -77.118316, 38.932290 ], [ -77.118337, 38.932307 ], [ -77.118337, 38.932323 ], [ -77.118359, 38.932357 ], [ -77.118380, 38.932373 ], [ -77.118380, 38.932390 ], [ -77.118402, 38.932407 ], [ -77.118423, 38.932440 ], [ -77.118423, 38.932457 ], [ -77.118444, 38.932474 ], [ -77.118466, 38.932490 ], [ -77.118466, 38.932507 ], [ -77.118487, 38.932524 ], [ -77.118509, 38.932557 ], [ -77.118509, 38.932574 ], [ -77.118530, 38.932590 ], [ -77.118552, 38.932624 ], [ -77.118552, 38.932641 ], [ -77.118573, 38.932657 ], [ -77.118573, 38.932674 ], [ -77.118595, 38.932691 ], [ -77.118616, 38.932707 ], [ -77.118616, 38.932724 ], [ -77.118638, 38.932757 ], [ -77.118659, 38.932791 ], [ -77.118680, 38.932807 ], [ -77.118702, 38.932841 ], [ -77.118723, 38.932857 ], [ -77.118723, 38.932891 ], [ -77.118745, 38.932891 ], [ -77.118745, 38.932924 ], [ -77.118766, 38.932941 ], [ -77.118788, 38.932974 ], [ -77.118809, 38.932991 ], [ -77.118831, 38.933024 ], [ -77.118852, 38.933041 ], [ -77.118852, 38.933058 ], [ -77.118874, 38.933091 ], [ -77.118895, 38.933108 ], [ -77.118895, 38.933141 ], [ -77.118917, 38.933158 ], [ -77.118938, 38.933175 ], [ -77.118938, 38.933191 ], [ -77.118959, 38.933208 ], [ -77.118981, 38.933241 ], [ -77.119002, 38.933258 ], [ -77.119002, 38.933275 ], [ -77.119024, 38.933308 ], [ -77.119045, 38.933325 ], [ -77.119067, 38.933358 ], [ -77.119067, 38.933375 ], [ -77.119088, 38.933392 ], [ -77.119088, 38.933408 ], [ -77.119110, 38.933425 ], [ -77.119131, 38.933458 ], [ -77.119153, 38.933475 ], [ -77.119153, 38.933492 ], [ -77.119174, 38.933525 ], [ -77.119195, 38.933542 ], [ -77.119195, 38.933559 ], [ -77.119217, 38.933592 ], [ -77.119238, 38.933609 ], [ -77.119260, 38.933642 ], [ -77.119281, 38.933659 ], [ -77.119281, 38.933675 ], [ -77.119303, 38.933709 ], [ -77.119324, 38.933725 ], [ -77.119324, 38.933742 ], [ -77.119346, 38.933776 ], [ -77.119367, 38.933792 ], [ -77.119367, 38.933809 ], [ -77.119389, 38.933826 ], [ -77.119410, 38.933859 ], [ -77.119431, 38.933876 ], [ -77.119431, 38.933909 ], [ -77.119453, 38.933926 ], [ -77.119474, 38.933959 ], [ -77.119496, 38.933993 ], [ -77.119517, 38.934009 ], [ -77.119539, 38.934043 ], [ -77.119560, 38.934059 ], [ -77.119582, 38.934093 ], [ -77.119582, 38.934109 ], [ -77.119603, 38.934143 ], [ -77.119625, 38.934159 ], [ -77.119646, 38.934193 ], [ -77.119668, 38.934210 ], [ -77.119689, 38.934226 ], [ -77.119753, 38.934343 ], [ -77.118852, 38.935361 ], [ -77.117393, 38.936396 ], [ -77.117221, 38.936513 ], [ -77.117200, 38.936530 ], [ -77.117136, 38.936580 ], [ -77.117050, 38.936663 ], [ -77.116985, 38.936730 ], [ -77.116899, 38.936763 ], [ -77.116835, 38.936813 ], [ -77.116814, 38.936830 ], [ -77.116792, 38.936847 ], [ -77.116792, 38.936863 ], [ -77.116771, 38.936880 ], [ -77.116749, 38.936913 ], [ -77.116148, 38.937464 ], [ -77.116020, 38.937548 ], [ -77.115183, 38.938165 ], [ -77.114840, 38.938432 ], [ -77.114131, 38.939000 ], [ -77.113960, 38.939133 ], [ -77.112565, 38.940218 ], [ -77.112565, 38.940151 ], [ -77.112544, 38.940085 ], [ -77.112501, 38.940001 ], [ -77.112222, 38.939467 ], [ -77.112136, 38.939317 ], [ -77.112093, 38.939217 ], [ -77.112050, 38.939100 ], [ -77.112050, 38.939000 ], [ -77.112029, 38.938866 ], [ -77.112007, 38.938499 ], [ -77.111964, 38.938015 ], [ -77.111964, 38.937982 ], [ -77.111964, 38.937898 ], [ -77.111964, 38.937815 ], [ -77.112029, 38.937381 ], [ -77.112050, 38.937247 ], [ -77.112050, 38.937180 ], [ -77.112072, 38.937130 ], [ -77.112072, 38.937064 ], [ -77.112093, 38.937014 ], [ -77.112093, 38.936964 ], [ -77.112093, 38.936897 ], [ -77.112093, 38.936813 ], [ -77.112093, 38.936730 ], [ -77.112093, 38.936680 ], [ -77.112072, 38.936613 ], [ -77.112072, 38.936563 ], [ -77.112072, 38.936530 ], [ -77.112007, 38.936363 ], [ -77.111986, 38.936296 ], [ -77.111964, 38.936246 ], [ -77.111943, 38.936196 ], [ -77.111921, 38.936146 ], [ -77.111878, 38.936112 ], [ -77.111857, 38.936062 ], [ -77.111814, 38.935995 ], [ -77.111750, 38.935912 ], [ -77.111728, 38.935862 ], [ -77.111685, 38.935829 ], [ -77.111664, 38.935795 ], [ -77.111664, 38.935778 ], [ -77.111578, 38.935695 ], [ -77.111363, 38.935378 ], [ -77.110934, 38.934794 ], [ -77.110784, 38.934593 ], [ -77.110763, 38.934577 ], [ -77.110720, 38.934510 ], [ -77.110634, 38.934376 ], [ -77.110333, 38.933976 ], [ -77.109904, 38.933408 ], [ -77.109840, 38.933308 ], [ -77.109754, 38.933208 ], [ -77.109668, 38.933125 ], [ -77.109625, 38.933091 ], [ -77.109561, 38.933024 ], [ -77.109175, 38.932674 ], [ -77.109067, 38.932590 ], [ -77.108982, 38.932490 ], [ -77.108853, 38.932407 ], [ -77.108831, 38.932373 ], [ -77.108746, 38.932273 ], [ -77.108681, 38.932223 ], [ -77.108510, 38.932073 ], [ -77.108402, 38.931973 ], [ -77.108274, 38.931889 ], [ -77.107995, 38.931656 ], [ -77.107909, 38.931589 ], [ -77.107844, 38.931522 ], [ -77.107716, 38.931422 ], [ -77.107329, 38.931088 ], [ -77.107286, 38.931055 ], [ -77.107265, 38.931021 ], [ -77.107222, 38.930971 ], [ -77.107179, 38.930938 ], [ -77.107158, 38.930888 ], [ -77.107115, 38.930854 ], [ -77.107093, 38.930804 ], [ -77.107072, 38.930754 ], [ -77.107050, 38.930721 ], [ -77.107029, 38.930671 ], [ -77.107008, 38.930621 ], [ -77.106986, 38.930571 ], [ -77.106965, 38.930471 ], [ -77.106943, 38.930320 ], [ -77.106922, 38.930254 ], [ -77.106900, 38.930187 ], [ -77.106900, 38.930153 ], [ -77.106879, 38.930087 ], [ -77.106857, 38.930037 ], [ -77.106857, 38.930003 ], [ -77.106836, 38.929953 ], [ -77.106814, 38.929920 ], [ -77.106771, 38.929853 ], [ -77.106750, 38.929820 ], [ -77.106707, 38.929769 ], [ -77.106686, 38.929736 ], [ -77.106643, 38.929719 ], [ -77.106600, 38.929669 ], [ -77.106578, 38.929653 ], [ -77.106493, 38.929586 ], [ -77.106042, 38.929185 ], [ -77.105763, 38.928918 ], [ -77.105720, 38.928868 ], [ -77.105248, 38.928451 ], [ -77.105098, 38.928334 ], [ -77.104948, 38.928200 ], [ -77.104626, 38.927883 ], [ -77.104368, 38.927666 ], [ -77.104111, 38.927416 ], [ -77.104025, 38.927349 ], [ -77.103810, 38.927416 ], [ -77.103746, 38.927433 ], [ -77.103467, 38.927516 ], [ -77.103360, 38.927566 ], [ -77.103252, 38.927616 ], [ -77.103124, 38.927666 ], [ -77.103016, 38.927716 ], [ -77.102909, 38.927766 ], [ -77.102501, 38.927983 ], [ -77.102094, 38.928184 ], [ -77.102051, 38.928217 ], [ -77.102008, 38.928250 ], [ -77.101965, 38.928267 ], [ -77.101943, 38.928284 ], [ -77.101901, 38.928317 ], [ -77.101858, 38.928351 ], [ -77.101815, 38.928384 ], [ -77.101772, 38.928417 ], [ -77.101729, 38.928451 ], [ -77.101686, 38.928501 ], [ -77.101579, 38.928601 ], [ -77.101450, 38.928701 ], [ -77.101021, 38.929085 ], [ -77.100570, 38.929486 ], [ -77.100399, 38.929636 ], [ -77.100270, 38.929753 ], [ -77.099733, 38.930220 ], [ -77.099605, 38.930320 ], [ -77.098296, 38.931472 ], [ -77.097158, 38.932474 ], [ -77.097094, 38.932540 ], [ -77.096922, 38.932507 ], [ -77.096837, 38.932490 ], [ -77.096686, 38.932457 ], [ -77.096601, 38.932440 ], [ -77.096429, 38.932407 ], [ -77.096343, 38.932390 ], [ -77.096300, 38.932390 ], [ -77.096171, 38.932373 ], [ -77.095957, 38.932357 ], [ -77.095742, 38.932340 ], [ -77.095613, 38.932340 ], [ -77.095420, 38.932340 ], [ -77.095270, 38.932340 ], [ -77.095077, 38.932357 ], [ -77.094948, 38.932373 ], [ -77.094755, 38.932390 ], [ -77.094691, 38.932407 ], [ -77.094176, 38.932474 ], [ -77.093253, 38.932607 ], [ -77.093318, 38.932490 ], [ -77.093575, 38.932340 ], [ -77.094111, 38.932040 ], [ -77.094197, 38.932006 ], [ -77.094283, 38.931973 ], [ -77.094326, 38.931956 ], [ -77.094970, 38.931739 ], [ -77.094991, 38.931739 ], [ -77.095013, 38.931722 ], [ -77.095056, 38.931706 ], [ -77.095227, 38.931572 ], [ -77.095249, 38.931556 ], [ -77.095270, 38.931539 ], [ -77.095292, 38.931522 ], [ -77.095292, 38.931505 ], [ -77.095313, 38.931489 ], [ -77.095506, 38.931088 ], [ -77.095506, 38.931071 ], [ -77.095528, 38.931038 ], [ -77.095549, 38.931021 ], [ -77.095571, 38.931005 ], [ -77.095592, 38.930971 ], [ -77.095635, 38.930938 ], [ -77.095656, 38.930938 ], [ -77.096021, 38.930688 ], [ -77.096064, 38.930654 ], [ -77.096107, 38.930621 ], [ -77.096128, 38.930604 ], [ -77.096150, 38.930587 ], [ -77.096171, 38.930537 ], [ -77.096236, 38.930420 ], [ -77.096257, 38.930387 ], [ -77.096300, 38.930287 ], [ -77.096343, 38.930187 ], [ -77.096364, 38.930153 ], [ -77.096386, 38.930053 ], [ -77.096407, 38.930020 ], [ -77.096407, 38.929970 ], [ -77.096429, 38.929920 ], [ -77.096429, 38.929870 ], [ -77.096429, 38.929853 ], [ -77.096429, 38.929803 ], [ -77.096429, 38.929753 ], [ -77.096407, 38.929736 ], [ -77.096386, 38.929686 ], [ -77.096386, 38.929669 ], [ -77.096364, 38.929636 ], [ -77.096343, 38.929603 ], [ -77.096322, 38.929569 ], [ -77.096279, 38.929536 ], [ -77.096257, 38.929519 ], [ -77.096236, 38.929486 ], [ -77.096150, 38.929436 ], [ -77.096086, 38.929402 ], [ -77.095935, 38.929302 ], [ -77.095914, 38.929285 ], [ -77.095850, 38.929252 ], [ -77.095807, 38.929235 ], [ -77.095785, 38.929219 ], [ -77.095742, 38.929185 ], [ -77.095721, 38.929152 ], [ -77.095721, 38.929135 ], [ -77.095699, 38.929102 ], [ -77.095699, 38.929085 ], [ -77.095678, 38.929035 ], [ -77.095678, 38.929002 ], [ -77.095656, 38.928952 ], [ -77.095656, 38.928885 ], [ -77.095635, 38.928768 ], [ -77.095613, 38.928701 ], [ -77.095592, 38.928601 ], [ -77.095592, 38.928534 ], [ -77.095571, 38.928351 ], [ -77.095549, 38.928200 ], [ -77.095528, 38.928067 ], [ -77.095485, 38.927833 ], [ -77.095463, 38.927599 ], [ -77.095442, 38.927566 ], [ -77.095442, 38.927499 ], [ -77.095442, 38.927433 ], [ -77.095442, 38.927349 ], [ -77.095442, 38.927282 ], [ -77.095442, 38.927249 ], [ -77.095442, 38.927216 ], [ -77.095442, 38.927182 ], [ -77.095442, 38.927115 ], [ -77.095442, 38.927082 ], [ -77.095485, 38.926999 ], [ -77.095528, 38.926915 ], [ -77.095549, 38.926848 ], [ -77.095592, 38.926798 ], [ -77.095635, 38.926748 ], [ -77.095678, 38.926698 ], [ -77.095721, 38.926648 ], [ -77.095764, 38.926598 ], [ -77.095807, 38.926548 ], [ -77.095850, 38.926514 ], [ -77.095914, 38.926464 ], [ -77.095957, 38.926414 ], [ -77.096021, 38.926364 ], [ -77.096128, 38.926264 ], [ -77.096214, 38.926181 ], [ -77.096279, 38.926114 ], [ -77.096322, 38.926080 ], [ -77.096343, 38.926030 ], [ -77.096386, 38.925997 ], [ -77.096407, 38.925947 ], [ -77.096450, 38.925913 ], [ -77.096472, 38.925863 ], [ -77.096493, 38.925813 ], [ -77.096515, 38.925780 ], [ -77.096558, 38.925730 ], [ -77.096579, 38.925680 ], [ -77.096708, 38.925396 ], [ -77.096729, 38.925346 ], [ -77.096751, 38.925313 ], [ -77.096794, 38.925262 ], [ -77.096815, 38.925229 ], [ -77.096837, 38.925212 ], [ -77.096858, 38.925179 ], [ -77.096922, 38.925062 ], [ -77.096987, 38.924929 ], [ -77.097030, 38.924845 ], [ -77.097051, 38.924795 ], [ -77.097073, 38.924712 ], [ -77.097094, 38.924661 ], [ -77.097158, 38.924578 ], [ -77.097201, 38.924511 ], [ -77.097244, 38.924428 ], [ -77.097266, 38.924378 ], [ -77.097330, 38.924294 ], [ -77.097373, 38.924244 ], [ -77.097416, 38.924194 ], [ -77.097480, 38.924094 ], [ -77.097566, 38.923977 ], [ -77.097631, 38.923877 ], [ -77.097695, 38.923760 ], [ -77.097824, 38.923593 ], [ -77.097974, 38.923443 ], [ -77.098017, 38.923393 ], [ -77.098060, 38.923326 ], [ -77.098103, 38.923276 ], [ -77.098210, 38.923126 ], [ -77.098231, 38.923092 ], [ -77.098274, 38.923025 ], [ -77.098360, 38.922892 ], [ -77.098532, 38.922692 ], [ -77.098596, 38.922558 ], [ -77.098725, 38.922374 ], [ -77.098746, 38.922324 ], [ -77.098768, 38.922308 ], [ -77.098789, 38.922308 ], [ -77.098811, 38.922291 ], [ -77.098832, 38.922258 ], [ -77.098918, 38.922224 ], [ -77.098961, 38.922224 ], [ -77.099004, 38.922207 ], [ -77.099047, 38.922207 ], [ -77.099090, 38.922207 ], [ -77.099218, 38.922207 ], [ -77.099283, 38.922207 ], [ -77.099347, 38.922207 ], [ -77.099433, 38.922074 ], [ -77.099390, 38.922024 ], [ -77.099347, 38.921990 ], [ -77.098918, 38.921556 ], [ -77.098832, 38.921490 ], [ -77.098725, 38.921356 ], [ -77.098682, 38.921323 ], [ -77.098639, 38.921273 ], [ -77.098639, 38.921239 ], [ -77.098596, 38.921189 ], [ -77.098575, 38.921139 ], [ -77.098854, 38.920939 ], [ -77.098875, 38.920922 ], [ -77.098939, 38.920872 ], [ -77.098982, 38.920788 ], [ -77.099004, 38.920738 ], [ -77.099111, 38.920622 ], [ -77.099133, 38.920538 ], [ -77.099175, 38.920471 ], [ -77.099304, 38.920388 ], [ -77.099519, 38.920421 ], [ -77.099648, 38.920405 ], [ -77.099690, 38.920371 ], [ -77.099712, 38.920204 ], [ -77.099712, 38.920171 ], [ -77.099776, 38.920054 ], [ -77.099884, 38.920004 ], [ -77.100034, 38.919937 ], [ -77.100205, 38.919904 ], [ -77.100334, 38.919904 ], [ -77.100506, 38.919854 ], [ -77.100549, 38.919770 ], [ -77.100635, 38.919737 ], [ -77.100742, 38.919804 ], [ -77.100763, 38.919870 ], [ -77.100849, 38.919987 ], [ -77.100935, 38.920087 ], [ -77.101107, 38.920187 ], [ -77.101300, 38.920154 ], [ -77.101772, 38.919904 ], [ -77.101815, 38.919887 ], [ -77.101901, 38.920004 ], [ -77.101965, 38.920021 ], [ -77.102029, 38.919970 ], [ -77.102115, 38.919920 ], [ -77.102158, 38.919887 ], [ -77.102373, 38.919820 ], [ -77.102437, 38.919787 ], [ -77.102480, 38.919770 ], [ -77.102523, 38.919720 ], [ -77.102544, 38.919670 ], [ -77.102566, 38.919586 ], [ -77.102566, 38.919536 ], [ -77.102587, 38.919503 ], [ -77.102609, 38.919453 ], [ -77.102673, 38.919369 ], [ -77.102802, 38.919236 ], [ -77.102995, 38.919102 ], [ -77.103081, 38.918952 ], [ -77.103124, 38.918785 ], [ -77.103124, 38.918635 ], [ -77.103188, 38.918468 ], [ -77.103231, 38.918384 ], [ -77.105162, 38.917299 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001003", "GEOID": "11001001003", "NAME": "10.03", "NAMELSAD": "Census Tract 10.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 982460, "AWATER": 0, "INTPTLAT": "+38.9492362", "INTPTLON": "-077.0930741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.088618, 38.943155 ], [ -77.089391, 38.943155 ], [ -77.089927, 38.943155 ], [ -77.090614, 38.943155 ], [ -77.090700, 38.943155 ], [ -77.091408, 38.943155 ], [ -77.091794, 38.943155 ], [ -77.092137, 38.943155 ], [ -77.092609, 38.943155 ], [ -77.092760, 38.943155 ], [ -77.092910, 38.943155 ], [ -77.093081, 38.943155 ], [ -77.093339, 38.943356 ], [ -77.093661, 38.943589 ], [ -77.093940, 38.943773 ], [ -77.094240, 38.943990 ], [ -77.094584, 38.944240 ], [ -77.094798, 38.944407 ], [ -77.096751, 38.945842 ], [ -77.096879, 38.945926 ], [ -77.096901, 38.945959 ], [ -77.097330, 38.946260 ], [ -77.097545, 38.946410 ], [ -77.098446, 38.947061 ], [ -77.098768, 38.947311 ], [ -77.098982, 38.947478 ], [ -77.099283, 38.947678 ], [ -77.099583, 38.947912 ], [ -77.100420, 38.948512 ], [ -77.100613, 38.948646 ], [ -77.100592, 38.948663 ], [ -77.100549, 38.948696 ], [ -77.100527, 38.948746 ], [ -77.100506, 38.948779 ], [ -77.100484, 38.948796 ], [ -77.100484, 38.948830 ], [ -77.100484, 38.948896 ], [ -77.100484, 38.948946 ], [ -77.100506, 38.948996 ], [ -77.100527, 38.949046 ], [ -77.100570, 38.949097 ], [ -77.100592, 38.949147 ], [ -77.100613, 38.949163 ], [ -77.100270, 38.949447 ], [ -77.099905, 38.949697 ], [ -77.099690, 38.949864 ], [ -77.098832, 38.950548 ], [ -77.098274, 38.950966 ], [ -77.098167, 38.951066 ], [ -77.097609, 38.951500 ], [ -77.096815, 38.952117 ], [ -77.096386, 38.952451 ], [ -77.095485, 38.953168 ], [ -77.095356, 38.953252 ], [ -77.095270, 38.953318 ], [ -77.095249, 38.953335 ], [ -77.094326, 38.954053 ], [ -77.093811, 38.954453 ], [ -77.093790, 38.954470 ], [ -77.093489, 38.954720 ], [ -77.092609, 38.955404 ], [ -77.091537, 38.956205 ], [ -77.091236, 38.956472 ], [ -77.091129, 38.956389 ], [ -77.090657, 38.956055 ], [ -77.090507, 38.955955 ], [ -77.090335, 38.955855 ], [ -77.090249, 38.955771 ], [ -77.089455, 38.955221 ], [ -77.088854, 38.954803 ], [ -77.088661, 38.954703 ], [ -77.088618, 38.954520 ], [ -77.088618, 38.954353 ], [ -77.088618, 38.953318 ], [ -77.088618, 38.952100 ], [ -77.088618, 38.951983 ], [ -77.088640, 38.951817 ], [ -77.088618, 38.951266 ], [ -77.088618, 38.951032 ], [ -77.088640, 38.950765 ], [ -77.088618, 38.950365 ], [ -77.088618, 38.949697 ], [ -77.088618, 38.948880 ], [ -77.088618, 38.948796 ], [ -77.088618, 38.948479 ], [ -77.088640, 38.948012 ], [ -77.088640, 38.947895 ], [ -77.088618, 38.947812 ], [ -77.088618, 38.947177 ], [ -77.088618, 38.947094 ], [ -77.088640, 38.947027 ], [ -77.088618, 38.946627 ], [ -77.088618, 38.946360 ], [ -77.088618, 38.946293 ], [ -77.088640, 38.946143 ], [ -77.088618, 38.945876 ], [ -77.088618, 38.945609 ], [ -77.088640, 38.945542 ], [ -77.088640, 38.945459 ], [ -77.088640, 38.945158 ], [ -77.088640, 38.944941 ], [ -77.088640, 38.944791 ], [ -77.088640, 38.944591 ], [ -77.088640, 38.943957 ], [ -77.088618, 38.943556 ], [ -77.088640, 38.943239 ], [ -77.088618, 38.943155 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001004", "GEOID": "11001001004", "NAME": "10.04", "NAMELSAD": "Census Tract 10.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1471925, "AWATER": 0, "INTPTLAT": "+38.9487665", "INTPTLON": "-077.0853886" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.086215, 38.938165 ], [ -77.086451, 38.938332 ], [ -77.086623, 38.938432 ], [ -77.087009, 38.938733 ], [ -77.087245, 38.938900 ], [ -77.087631, 38.939183 ], [ -77.088103, 38.939517 ], [ -77.088447, 38.939784 ], [ -77.088768, 38.940001 ], [ -77.088962, 38.940135 ], [ -77.089155, 38.940285 ], [ -77.089627, 38.940635 ], [ -77.090077, 38.940969 ], [ -77.090249, 38.941103 ], [ -77.090442, 38.941219 ], [ -77.090764, 38.941470 ], [ -77.090850, 38.941537 ], [ -77.091022, 38.941653 ], [ -77.091751, 38.942187 ], [ -77.091858, 38.942271 ], [ -77.091987, 38.942354 ], [ -77.092545, 38.942772 ], [ -77.092609, 38.942822 ], [ -77.092717, 38.942888 ], [ -77.092845, 38.942989 ], [ -77.093081, 38.943155 ], [ -77.092910, 38.943155 ], [ -77.092760, 38.943155 ], [ -77.092609, 38.943155 ], [ -77.092137, 38.943155 ], [ -77.091794, 38.943155 ], [ -77.091408, 38.943155 ], [ -77.090700, 38.943155 ], [ -77.090614, 38.943155 ], [ -77.089927, 38.943155 ], [ -77.089391, 38.943155 ], [ -77.088618, 38.943155 ], [ -77.088640, 38.943239 ], [ -77.088618, 38.943556 ], [ -77.088640, 38.943957 ], [ -77.088640, 38.944591 ], [ -77.088640, 38.944791 ], [ -77.088640, 38.944941 ], [ -77.088640, 38.945158 ], [ -77.088640, 38.945459 ], [ -77.088640, 38.945542 ], [ -77.088618, 38.945609 ], [ -77.088618, 38.945876 ], [ -77.088640, 38.946143 ], [ -77.088618, 38.946293 ], [ -77.088618, 38.946360 ], [ -77.088618, 38.946627 ], [ -77.088640, 38.947027 ], [ -77.088618, 38.947094 ], [ -77.088618, 38.947177 ], [ -77.088618, 38.947812 ], [ -77.088640, 38.947895 ], [ -77.088640, 38.948012 ], [ -77.088618, 38.948479 ], [ -77.088618, 38.948796 ], [ -77.088618, 38.948880 ], [ -77.088618, 38.949697 ], [ -77.088618, 38.950365 ], [ -77.088640, 38.950765 ], [ -77.088618, 38.951032 ], [ -77.088618, 38.951266 ], [ -77.088640, 38.951817 ], [ -77.088618, 38.951983 ], [ -77.088618, 38.952100 ], [ -77.088618, 38.953318 ], [ -77.088618, 38.954353 ], [ -77.088618, 38.954520 ], [ -77.088661, 38.954703 ], [ -77.088854, 38.954803 ], [ -77.089455, 38.955221 ], [ -77.090249, 38.955771 ], [ -77.090335, 38.955855 ], [ -77.090507, 38.955955 ], [ -77.090657, 38.956055 ], [ -77.091129, 38.956389 ], [ -77.091236, 38.956472 ], [ -77.090850, 38.956772 ], [ -77.090614, 38.956956 ], [ -77.090507, 38.957039 ], [ -77.088876, 38.958341 ], [ -77.088704, 38.958474 ], [ -77.088511, 38.958608 ], [ -77.088447, 38.958675 ], [ -77.088211, 38.958875 ], [ -77.087696, 38.959275 ], [ -77.087588, 38.959342 ], [ -77.086837, 38.959926 ], [ -77.086580, 38.960126 ], [ -77.085764, 38.960744 ], [ -77.085700, 38.960744 ], [ -77.085657, 38.960643 ], [ -77.085378, 38.960093 ], [ -77.085271, 38.959876 ], [ -77.085056, 38.959459 ], [ -77.084906, 38.959159 ], [ -77.084842, 38.959042 ], [ -77.084327, 38.958024 ], [ -77.083855, 38.957123 ], [ -77.083812, 38.957023 ], [ -77.083383, 38.956172 ], [ -77.083254, 38.955955 ], [ -77.082932, 38.955304 ], [ -77.082632, 38.954703 ], [ -77.082589, 38.954603 ], [ -77.082181, 38.953819 ], [ -77.081966, 38.953402 ], [ -77.081945, 38.953352 ], [ -77.081881, 38.953235 ], [ -77.081730, 38.952935 ], [ -77.081516, 38.952517 ], [ -77.081280, 38.952067 ], [ -77.080958, 38.951466 ], [ -77.080808, 38.951132 ], [ -77.080786, 38.951116 ], [ -77.080765, 38.951049 ], [ -77.080743, 38.951016 ], [ -77.080700, 38.950899 ], [ -77.080679, 38.950799 ], [ -77.080636, 38.950699 ], [ -77.080615, 38.950598 ], [ -77.080486, 38.950064 ], [ -77.080486, 38.950048 ], [ -77.080400, 38.949681 ], [ -77.080379, 38.949597 ], [ -77.080271, 38.949163 ], [ -77.080271, 38.949097 ], [ -77.080250, 38.949030 ], [ -77.080228, 38.948946 ], [ -77.080207, 38.948896 ], [ -77.080185, 38.948863 ], [ -77.080185, 38.948813 ], [ -77.080142, 38.948746 ], [ -77.080121, 38.948679 ], [ -77.080100, 38.948646 ], [ -77.079928, 38.948329 ], [ -77.079756, 38.948045 ], [ -77.079670, 38.947912 ], [ -77.079563, 38.947728 ], [ -77.079370, 38.947361 ], [ -77.079198, 38.947077 ], [ -77.078919, 38.946577 ], [ -77.078876, 38.946510 ], [ -77.078748, 38.946276 ], [ -77.078619, 38.946026 ], [ -77.078533, 38.945876 ], [ -77.078490, 38.945809 ], [ -77.079091, 38.945926 ], [ -77.079113, 38.945892 ], [ -77.079113, 38.945859 ], [ -77.079134, 38.945842 ], [ -77.079134, 38.945826 ], [ -77.079306, 38.945609 ], [ -77.079456, 38.945459 ], [ -77.079628, 38.945242 ], [ -77.079799, 38.945041 ], [ -77.079928, 38.944891 ], [ -77.080035, 38.944774 ], [ -77.080121, 38.944674 ], [ -77.080228, 38.944557 ], [ -77.080379, 38.944357 ], [ -77.080507, 38.944224 ], [ -77.080979, 38.943656 ], [ -77.081258, 38.943339 ], [ -77.081409, 38.943155 ], [ -77.081666, 38.942872 ], [ -77.081966, 38.942521 ], [ -77.082288, 38.942137 ], [ -77.082524, 38.941870 ], [ -77.082717, 38.941637 ], [ -77.082846, 38.941487 ], [ -77.082996, 38.941303 ], [ -77.083082, 38.941203 ], [ -77.083125, 38.941153 ], [ -77.083426, 38.940802 ], [ -77.083533, 38.940685 ], [ -77.083833, 38.940335 ], [ -77.083962, 38.940185 ], [ -77.084155, 38.939951 ], [ -77.084413, 38.939667 ], [ -77.084606, 38.939417 ], [ -77.085078, 38.938883 ], [ -77.085464, 38.938416 ], [ -77.085636, 38.938232 ], [ -77.085657, 38.938249 ], [ -77.085721, 38.938265 ], [ -77.085764, 38.938265 ], [ -77.085786, 38.938265 ], [ -77.085807, 38.938282 ], [ -77.085893, 38.938265 ], [ -77.085958, 38.938265 ], [ -77.085979, 38.938265 ], [ -77.086022, 38.938249 ], [ -77.086086, 38.938232 ], [ -77.086151, 38.938215 ], [ -77.086215, 38.938165 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000903", "GEOID": "11001000903", "NAME": "9.03", "NAMELSAD": "Census Tract 9.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 928101, "AWATER": 0, "INTPTLAT": "+38.9376821", "INTPTLON": "-077.0933310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.095270, 38.932340 ], [ -77.095420, 38.932340 ], [ -77.095613, 38.932340 ], [ -77.095742, 38.932340 ], [ -77.095957, 38.932357 ], [ -77.096171, 38.932373 ], [ -77.096300, 38.932390 ], [ -77.096343, 38.932390 ], [ -77.096429, 38.932407 ], [ -77.096601, 38.932440 ], [ -77.096686, 38.932457 ], [ -77.096837, 38.932490 ], [ -77.096922, 38.932507 ], [ -77.097094, 38.932540 ], [ -77.097201, 38.932590 ], [ -77.098103, 38.932891 ], [ -77.098446, 38.932991 ], [ -77.098639, 38.933058 ], [ -77.098746, 38.933108 ], [ -77.098832, 38.933141 ], [ -77.098918, 38.933191 ], [ -77.099025, 38.933241 ], [ -77.099068, 38.933258 ], [ -77.099111, 38.933291 ], [ -77.099133, 38.933308 ], [ -77.099197, 38.933358 ], [ -77.099304, 38.933442 ], [ -77.099390, 38.933508 ], [ -77.099433, 38.933542 ], [ -77.099454, 38.933559 ], [ -77.099519, 38.933625 ], [ -77.099540, 38.933659 ], [ -77.099583, 38.933709 ], [ -77.099626, 38.933759 ], [ -77.099841, 38.934076 ], [ -77.099948, 38.934276 ], [ -77.099991, 38.934326 ], [ -77.100012, 38.934360 ], [ -77.100055, 38.934393 ], [ -77.100077, 38.934426 ], [ -77.100141, 38.934510 ], [ -77.100184, 38.934543 ], [ -77.100270, 38.934610 ], [ -77.100635, 38.934894 ], [ -77.100935, 38.935111 ], [ -77.101021, 38.935161 ], [ -77.100935, 38.935261 ], [ -77.100785, 38.935411 ], [ -77.100720, 38.935461 ], [ -77.100677, 38.935511 ], [ -77.100635, 38.935561 ], [ -77.100592, 38.935595 ], [ -77.100549, 38.935628 ], [ -77.100463, 38.935662 ], [ -77.100441, 38.935662 ], [ -77.100399, 38.935678 ], [ -77.100334, 38.935695 ], [ -77.100270, 38.935695 ], [ -77.100227, 38.935695 ], [ -77.100163, 38.935695 ], [ -77.100120, 38.935695 ], [ -77.100077, 38.935695 ], [ -77.100034, 38.935678 ], [ -77.100012, 38.935678 ], [ -77.099948, 38.935678 ], [ -77.099905, 38.935678 ], [ -77.099862, 38.935678 ], [ -77.099755, 38.935712 ], [ -77.099476, 38.935795 ], [ -77.099154, 38.935912 ], [ -77.099111, 38.935929 ], [ -77.099068, 38.935929 ], [ -77.099004, 38.935945 ], [ -77.098961, 38.935962 ], [ -77.098918, 38.935962 ], [ -77.098875, 38.935962 ], [ -77.096429, 38.935945 ], [ -77.096386, 38.935945 ], [ -77.096300, 38.935945 ], [ -77.096214, 38.935945 ], [ -77.096128, 38.935945 ], [ -77.096064, 38.935929 ], [ -77.095957, 38.935912 ], [ -77.095978, 38.935979 ], [ -77.096257, 38.936847 ], [ -77.096279, 38.936863 ], [ -77.096300, 38.936930 ], [ -77.096407, 38.937247 ], [ -77.096429, 38.937297 ], [ -77.096472, 38.937431 ], [ -77.096515, 38.937564 ], [ -77.096579, 38.937681 ], [ -77.096622, 38.937815 ], [ -77.096665, 38.937998 ], [ -77.096686, 38.938032 ], [ -77.096708, 38.938132 ], [ -77.096729, 38.938282 ], [ -77.096751, 38.938349 ], [ -77.096751, 38.938432 ], [ -77.096751, 38.938499 ], [ -77.096751, 38.939367 ], [ -77.096751, 38.939450 ], [ -77.096751, 38.940318 ], [ -77.096751, 38.941086 ], [ -77.096751, 38.941270 ], [ -77.096751, 38.941336 ], [ -77.096751, 38.942204 ], [ -77.096751, 38.943072 ], [ -77.096751, 38.943155 ], [ -77.096772, 38.943239 ], [ -77.096751, 38.944240 ], [ -77.096751, 38.944824 ], [ -77.096772, 38.945425 ], [ -77.096751, 38.945692 ], [ -77.096751, 38.945842 ], [ -77.094798, 38.944407 ], [ -77.094584, 38.944240 ], [ -77.094240, 38.943990 ], [ -77.093940, 38.943773 ], [ -77.093661, 38.943589 ], [ -77.093339, 38.943356 ], [ -77.093081, 38.943155 ], [ -77.092845, 38.942989 ], [ -77.092717, 38.942888 ], [ -77.092609, 38.942822 ], [ -77.092545, 38.942772 ], [ -77.091987, 38.942354 ], [ -77.091858, 38.942271 ], [ -77.091751, 38.942187 ], [ -77.091022, 38.941653 ], [ -77.090850, 38.941537 ], [ -77.090764, 38.941470 ], [ -77.090442, 38.941219 ], [ -77.090249, 38.941103 ], [ -77.090077, 38.940969 ], [ -77.089627, 38.940635 ], [ -77.089155, 38.940285 ], [ -77.088962, 38.940135 ], [ -77.088768, 38.940001 ], [ -77.088447, 38.939784 ], [ -77.088103, 38.939517 ], [ -77.087631, 38.939183 ], [ -77.087245, 38.938900 ], [ -77.087009, 38.938733 ], [ -77.086623, 38.938432 ], [ -77.086451, 38.938332 ], [ -77.086215, 38.938165 ], [ -77.086151, 38.938215 ], [ -77.086086, 38.938232 ], [ -77.086022, 38.938249 ], [ -77.085979, 38.938265 ], [ -77.085958, 38.938265 ], [ -77.085893, 38.938265 ], [ -77.085807, 38.938282 ], [ -77.085786, 38.938265 ], [ -77.085764, 38.938265 ], [ -77.085721, 38.938265 ], [ -77.085657, 38.938249 ], [ -77.085636, 38.938232 ], [ -77.085593, 38.938199 ], [ -77.085550, 38.938182 ], [ -77.085550, 38.938165 ], [ -77.085485, 38.938098 ], [ -77.085464, 38.938048 ], [ -77.085443, 38.937998 ], [ -77.085443, 38.937965 ], [ -77.085443, 38.937932 ], [ -77.085443, 38.937898 ], [ -77.085443, 38.937865 ], [ -77.085464, 38.937831 ], [ -77.085464, 38.937798 ], [ -77.085485, 38.937748 ], [ -77.085507, 38.937731 ], [ -77.085528, 38.937698 ], [ -77.085571, 38.937665 ], [ -77.085614, 38.937631 ], [ -77.085636, 38.937614 ], [ -77.085700, 38.937581 ], [ -77.085721, 38.937581 ], [ -77.085786, 38.937548 ], [ -77.085829, 38.937548 ], [ -77.085872, 38.937531 ], [ -77.085936, 38.937531 ], [ -77.085958, 38.937531 ], [ -77.086000, 38.937531 ], [ -77.086065, 38.937548 ], [ -77.086086, 38.937564 ], [ -77.086172, 38.937598 ], [ -77.086537, 38.937164 ], [ -77.086730, 38.936947 ], [ -77.086945, 38.936680 ], [ -77.087331, 38.936246 ], [ -77.087717, 38.935778 ], [ -77.088017, 38.935445 ], [ -77.088082, 38.935361 ], [ -77.088168, 38.935294 ], [ -77.088168, 38.935278 ], [ -77.088211, 38.935261 ], [ -77.088361, 38.935128 ], [ -77.088683, 38.934894 ], [ -77.088790, 38.934827 ], [ -77.089026, 38.934643 ], [ -77.089155, 38.934543 ], [ -77.089713, 38.934126 ], [ -77.090485, 38.933542 ], [ -77.090614, 38.933442 ], [ -77.090721, 38.933375 ], [ -77.090786, 38.933342 ], [ -77.090828, 38.933308 ], [ -77.090871, 38.933291 ], [ -77.090936, 38.933258 ], [ -77.090957, 38.933241 ], [ -77.091000, 38.933225 ], [ -77.091064, 38.933191 ], [ -77.091150, 38.933158 ], [ -77.091215, 38.933141 ], [ -77.091322, 38.933108 ], [ -77.091515, 38.933058 ], [ -77.091858, 38.932974 ], [ -77.092223, 38.932874 ], [ -77.093017, 38.932674 ], [ -77.093103, 38.932641 ], [ -77.093146, 38.932624 ], [ -77.093189, 38.932607 ], [ -77.093253, 38.932607 ], [ -77.094176, 38.932474 ], [ -77.094691, 38.932407 ], [ -77.094755, 38.932390 ], [ -77.094948, 38.932373 ], [ -77.095077, 38.932357 ], [ -77.095270, 38.932340 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000803", "GEOID": "11001000803", "NAME": "8.03", "NAMELSAD": "Census Tract 8.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308153, "AWATER": 0, "INTPTLAT": "+38.9336425", "INTPTLON": "-077.0835217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.086172, 38.937598 ], [ -77.086086, 38.937564 ], [ -77.086065, 38.937548 ], [ -77.086000, 38.937531 ], [ -77.085958, 38.937531 ], [ -77.085936, 38.937531 ], [ -77.085872, 38.937531 ], [ -77.085829, 38.937548 ], [ -77.085786, 38.937548 ], [ -77.085721, 38.937581 ], [ -77.085700, 38.937581 ], [ -77.085636, 38.937614 ], [ -77.085614, 38.937631 ], [ -77.085571, 38.937665 ], [ -77.085485, 38.937581 ], [ -77.085378, 38.937531 ], [ -77.085357, 38.937498 ], [ -77.084885, 38.937180 ], [ -77.084713, 38.937047 ], [ -77.084627, 38.936980 ], [ -77.084284, 38.936730 ], [ -77.084262, 38.936713 ], [ -77.084219, 38.936696 ], [ -77.084048, 38.936563 ], [ -77.083619, 38.936262 ], [ -77.083383, 38.936062 ], [ -77.082009, 38.935077 ], [ -77.081816, 38.934944 ], [ -77.081752, 38.934894 ], [ -77.081580, 38.934760 ], [ -77.081366, 38.934610 ], [ -77.080894, 38.934260 ], [ -77.080228, 38.933759 ], [ -77.080121, 38.933692 ], [ -77.080100, 38.933058 ], [ -77.079971, 38.932407 ], [ -77.079885, 38.932056 ], [ -77.080314, 38.930905 ], [ -77.080572, 38.930237 ], [ -77.080679, 38.930254 ], [ -77.080808, 38.930270 ], [ -77.080936, 38.930270 ], [ -77.081108, 38.930287 ], [ -77.081280, 38.930287 ], [ -77.081559, 38.930287 ], [ -77.083039, 38.930287 ], [ -77.083726, 38.930270 ], [ -77.083812, 38.930287 ], [ -77.083983, 38.930270 ], [ -77.084327, 38.930871 ], [ -77.084627, 38.931372 ], [ -77.084863, 38.931806 ], [ -77.084906, 38.931873 ], [ -77.084928, 38.931923 ], [ -77.085078, 38.932156 ], [ -77.085121, 38.932257 ], [ -77.085185, 38.932357 ], [ -77.085228, 38.932440 ], [ -77.085292, 38.932540 ], [ -77.085421, 38.932774 ], [ -77.085593, 38.933058 ], [ -77.085764, 38.933392 ], [ -77.085829, 38.933492 ], [ -77.086043, 38.933859 ], [ -77.086065, 38.933909 ], [ -77.086086, 38.933942 ], [ -77.086129, 38.934026 ], [ -77.086258, 38.934260 ], [ -77.086408, 38.934510 ], [ -77.086473, 38.934560 ], [ -77.086494, 38.934660 ], [ -77.086558, 38.934777 ], [ -77.086601, 38.934827 ], [ -77.086644, 38.934911 ], [ -77.086687, 38.934961 ], [ -77.086709, 38.934994 ], [ -77.086751, 38.935061 ], [ -77.086816, 38.935128 ], [ -77.086880, 38.935194 ], [ -77.086966, 38.935261 ], [ -77.087009, 38.935311 ], [ -77.087073, 38.935361 ], [ -77.087159, 38.935428 ], [ -77.087202, 38.935461 ], [ -77.087309, 38.935545 ], [ -77.087352, 38.935578 ], [ -77.087374, 38.935595 ], [ -77.087417, 38.935628 ], [ -77.087610, 38.935728 ], [ -77.087717, 38.935778 ], [ -77.087331, 38.936246 ], [ -77.086945, 38.936680 ], [ -77.086730, 38.936947 ], [ -77.086537, 38.937164 ], [ -77.086172, 38.937598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000804", "GEOID": "11001000804", "NAME": "8.04", "NAMELSAD": "Census Tract 8.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2566768, "AWATER": 167978, "INTPTLAT": "+38.9221746", "INTPTLON": "-077.0918347" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.100892, 38.911222 ], [ -77.100914, 38.911239 ], [ -77.100935, 38.911239 ], [ -77.100956, 38.911255 ], [ -77.100978, 38.911272 ], [ -77.100999, 38.911289 ], [ -77.101021, 38.911289 ], [ -77.101042, 38.911305 ], [ -77.101085, 38.911322 ], [ -77.101107, 38.911339 ], [ -77.101107, 38.911372 ], [ -77.101128, 38.911372 ], [ -77.101150, 38.911389 ], [ -77.101171, 38.911406 ], [ -77.101214, 38.911389 ], [ -77.101235, 38.911422 ], [ -77.101257, 38.911439 ], [ -77.101300, 38.911439 ], [ -77.101321, 38.911456 ], [ -77.101343, 38.911472 ], [ -77.101364, 38.911506 ], [ -77.101386, 38.911522 ], [ -77.101407, 38.911539 ], [ -77.101429, 38.911539 ], [ -77.101429, 38.911556 ], [ -77.101450, 38.911573 ], [ -77.101471, 38.911573 ], [ -77.101493, 38.911556 ], [ -77.101514, 38.911539 ], [ -77.101557, 38.911556 ], [ -77.101579, 38.911573 ], [ -77.101579, 38.911589 ], [ -77.101600, 38.911606 ], [ -77.101622, 38.911623 ], [ -77.101643, 38.911639 ], [ -77.101665, 38.911656 ], [ -77.101707, 38.911673 ], [ -77.101729, 38.911689 ], [ -77.101750, 38.911706 ], [ -77.101750, 38.911723 ], [ -77.101772, 38.911740 ], [ -77.101772, 38.911756 ], [ -77.101815, 38.911773 ], [ -77.101836, 38.911790 ], [ -77.101879, 38.911806 ], [ -77.101901, 38.911823 ], [ -77.101922, 38.911840 ], [ -77.101943, 38.911840 ], [ -77.101965, 38.911873 ], [ -77.101986, 38.911890 ], [ -77.102008, 38.911907 ], [ -77.102029, 38.911907 ], [ -77.102051, 38.911923 ], [ -77.102072, 38.911940 ], [ -77.102072, 38.911957 ], [ -77.102094, 38.911990 ], [ -77.102115, 38.912023 ], [ -77.102137, 38.912040 ], [ -77.102158, 38.912057 ], [ -77.102180, 38.912057 ], [ -77.102201, 38.912073 ], [ -77.102222, 38.912090 ], [ -77.102244, 38.912124 ], [ -77.102265, 38.912140 ], [ -77.102287, 38.912174 ], [ -77.102308, 38.912190 ], [ -77.102330, 38.912207 ], [ -77.102351, 38.912240 ], [ -77.102351, 38.912257 ], [ -77.102373, 38.912274 ], [ -77.102394, 38.912307 ], [ -77.102416, 38.912324 ], [ -77.102416, 38.912341 ], [ -77.102458, 38.912341 ], [ -77.102480, 38.912341 ], [ -77.102501, 38.912341 ], [ -77.102544, 38.912357 ], [ -77.102566, 38.912357 ], [ -77.102587, 38.912374 ], [ -77.102609, 38.912407 ], [ -77.102630, 38.912424 ], [ -77.102652, 38.912441 ], [ -77.102673, 38.912474 ], [ -77.102673, 38.912491 ], [ -77.102695, 38.912508 ], [ -77.102695, 38.912524 ], [ -77.102673, 38.912558 ], [ -77.102716, 38.912574 ], [ -77.102759, 38.912591 ], [ -77.102780, 38.912608 ], [ -77.102802, 38.912608 ], [ -77.102823, 38.912624 ], [ -77.102866, 38.912624 ], [ -77.102888, 38.912641 ], [ -77.102909, 38.912658 ], [ -77.102952, 38.912658 ], [ -77.102973, 38.912691 ], [ -77.102995, 38.912708 ], [ -77.103016, 38.912725 ], [ -77.103038, 38.912758 ], [ -77.103059, 38.912775 ], [ -77.103081, 38.912808 ], [ -77.103102, 38.912825 ], [ -77.103124, 38.912858 ], [ -77.103145, 38.912892 ], [ -77.103167, 38.912908 ], [ -77.103188, 38.912942 ], [ -77.103209, 38.912975 ], [ -77.103209, 38.912992 ], [ -77.103231, 38.913025 ], [ -77.103252, 38.913059 ], [ -77.103274, 38.913075 ], [ -77.103295, 38.913109 ], [ -77.103317, 38.913142 ], [ -77.103338, 38.913159 ], [ -77.103360, 38.913192 ], [ -77.103381, 38.913226 ], [ -77.103403, 38.913259 ], [ -77.103403, 38.913276 ], [ -77.103424, 38.913309 ], [ -77.103424, 38.913326 ], [ -77.103424, 38.913359 ], [ -77.103424, 38.913376 ], [ -77.103446, 38.913409 ], [ -77.103446, 38.913426 ], [ -77.103467, 38.913459 ], [ -77.103467, 38.913476 ], [ -77.103467, 38.913509 ], [ -77.103467, 38.913526 ], [ -77.103467, 38.913559 ], [ -77.103467, 38.913593 ], [ -77.103467, 38.913626 ], [ -77.103467, 38.913643 ], [ -77.103467, 38.913676 ], [ -77.103467, 38.913776 ], [ -77.103467, 38.913810 ], [ -77.103467, 38.913827 ], [ -77.103488, 38.913843 ], [ -77.103488, 38.913877 ], [ -77.103488, 38.913910 ], [ -77.103488, 38.913943 ], [ -77.103488, 38.913960 ], [ -77.103488, 38.913994 ], [ -77.103488, 38.914010 ], [ -77.103488, 38.914027 ], [ -77.103488, 38.914060 ], [ -77.103488, 38.914077 ], [ -77.103488, 38.914094 ], [ -77.103488, 38.914127 ], [ -77.103488, 38.914144 ], [ -77.103488, 38.914160 ], [ -77.103488, 38.914177 ], [ -77.103488, 38.914194 ], [ -77.103488, 38.914227 ], [ -77.103488, 38.914244 ], [ -77.103488, 38.914261 ], [ -77.103510, 38.914277 ], [ -77.103510, 38.914294 ], [ -77.103510, 38.914327 ], [ -77.103510, 38.914344 ], [ -77.103531, 38.914361 ], [ -77.103531, 38.914378 ], [ -77.103531, 38.914394 ], [ -77.103553, 38.914428 ], [ -77.103553, 38.914444 ], [ -77.103574, 38.914461 ], [ -77.103574, 38.914478 ], [ -77.103574, 38.914494 ], [ -77.103596, 38.914511 ], [ -77.103596, 38.914544 ], [ -77.103596, 38.914561 ], [ -77.103596, 38.914595 ], [ -77.103596, 38.914611 ], [ -77.103596, 38.914628 ], [ -77.103596, 38.914645 ], [ -77.103617, 38.914678 ], [ -77.103617, 38.914695 ], [ -77.103617, 38.914711 ], [ -77.103617, 38.914728 ], [ -77.103639, 38.914762 ], [ -77.103639, 38.914778 ], [ -77.103639, 38.914795 ], [ -77.103660, 38.914812 ], [ -77.103660, 38.914845 ], [ -77.103682, 38.914862 ], [ -77.103682, 38.914878 ], [ -77.103703, 38.914912 ], [ -77.103703, 38.914929 ], [ -77.103724, 38.914945 ], [ -77.103724, 38.914962 ], [ -77.103746, 38.914979 ], [ -77.103746, 38.915012 ], [ -77.103767, 38.915029 ], [ -77.103767, 38.915045 ], [ -77.103789, 38.915062 ], [ -77.103789, 38.915095 ], [ -77.103789, 38.915112 ], [ -77.103810, 38.915129 ], [ -77.103832, 38.915146 ], [ -77.103832, 38.915162 ], [ -77.103853, 38.915196 ], [ -77.103875, 38.915212 ], [ -77.103875, 38.915229 ], [ -77.103896, 38.915246 ], [ -77.103918, 38.915262 ], [ -77.103918, 38.915279 ], [ -77.103939, 38.915296 ], [ -77.103939, 38.915329 ], [ -77.103961, 38.915363 ], [ -77.103982, 38.915396 ], [ -77.103982, 38.915429 ], [ -77.103982, 38.915446 ], [ -77.103982, 38.915463 ], [ -77.103982, 38.915479 ], [ -77.104003, 38.915496 ], [ -77.104003, 38.915513 ], [ -77.104003, 38.915546 ], [ -77.104003, 38.915563 ], [ -77.104003, 38.915580 ], [ -77.104003, 38.915596 ], [ -77.104003, 38.915613 ], [ -77.104025, 38.915646 ], [ -77.104025, 38.915663 ], [ -77.104025, 38.915680 ], [ -77.104046, 38.915697 ], [ -77.104046, 38.915713 ], [ -77.104046, 38.915730 ], [ -77.104068, 38.915763 ], [ -77.104068, 38.915780 ], [ -77.104089, 38.915797 ], [ -77.104089, 38.915830 ], [ -77.104089, 38.915847 ], [ -77.104111, 38.915863 ], [ -77.104111, 38.915880 ], [ -77.104111, 38.915897 ], [ -77.104132, 38.915914 ], [ -77.104132, 38.915947 ], [ -77.104154, 38.915964 ], [ -77.104175, 38.915980 ], [ -77.104175, 38.915997 ], [ -77.104197, 38.916014 ], [ -77.104197, 38.916030 ], [ -77.104218, 38.916047 ], [ -77.104218, 38.916081 ], [ -77.104239, 38.916097 ], [ -77.104239, 38.916131 ], [ -77.104261, 38.916147 ], [ -77.104282, 38.916164 ], [ -77.104282, 38.916181 ], [ -77.104304, 38.916197 ], [ -77.104325, 38.916214 ], [ -77.104347, 38.916231 ], [ -77.104347, 38.916247 ], [ -77.104368, 38.916264 ], [ -77.104368, 38.916281 ], [ -77.104390, 38.916298 ], [ -77.104411, 38.916314 ], [ -77.104433, 38.916331 ], [ -77.104454, 38.916348 ], [ -77.104475, 38.916364 ], [ -77.104475, 38.916381 ], [ -77.104497, 38.916398 ], [ -77.104518, 38.916414 ], [ -77.104540, 38.916431 ], [ -77.104561, 38.916448 ], [ -77.104583, 38.916464 ], [ -77.104583, 38.916481 ], [ -77.104604, 38.916515 ], [ -77.104626, 38.916531 ], [ -77.104647, 38.916548 ], [ -77.104669, 38.916581 ], [ -77.104690, 38.916598 ], [ -77.104690, 38.916615 ], [ -77.104712, 38.916648 ], [ -77.104733, 38.916665 ], [ -77.104754, 38.916698 ], [ -77.104776, 38.916715 ], [ -77.104819, 38.916748 ], [ -77.104819, 38.916765 ], [ -77.104840, 38.916782 ], [ -77.104862, 38.916815 ], [ -77.104883, 38.916848 ], [ -77.104905, 38.916882 ], [ -77.104926, 38.916899 ], [ -77.104948, 38.916932 ], [ -77.104969, 38.916949 ], [ -77.104990, 38.916982 ], [ -77.105012, 38.916999 ], [ -77.105012, 38.917015 ], [ -77.105033, 38.917049 ], [ -77.105055, 38.917066 ], [ -77.105076, 38.917082 ], [ -77.105098, 38.917116 ], [ -77.105098, 38.917132 ], [ -77.105098, 38.917166 ], [ -77.105098, 38.917182 ], [ -77.105141, 38.917199 ], [ -77.105162, 38.917216 ], [ -77.105162, 38.917249 ], [ -77.105141, 38.917266 ], [ -77.105141, 38.917283 ], [ -77.105162, 38.917299 ], [ -77.103231, 38.918384 ], [ -77.103188, 38.918468 ], [ -77.103124, 38.918635 ], [ -77.103124, 38.918785 ], [ -77.103081, 38.918952 ], [ -77.102995, 38.919102 ], [ -77.102802, 38.919236 ], [ -77.102673, 38.919369 ], [ -77.102609, 38.919453 ], [ -77.102587, 38.919503 ], [ -77.102566, 38.919536 ], [ -77.102566, 38.919586 ], [ -77.102544, 38.919670 ], [ -77.102523, 38.919720 ], [ -77.102480, 38.919770 ], [ -77.102437, 38.919787 ], [ -77.102373, 38.919820 ], [ -77.102158, 38.919887 ], [ -77.102115, 38.919920 ], [ -77.102029, 38.919970 ], [ -77.101965, 38.920021 ], [ -77.101901, 38.920004 ], [ -77.101815, 38.919887 ], [ -77.101772, 38.919904 ], [ -77.101300, 38.920154 ], [ -77.101107, 38.920187 ], [ -77.100935, 38.920087 ], [ -77.100849, 38.919987 ], [ -77.100763, 38.919870 ], [ -77.100742, 38.919804 ], [ -77.100635, 38.919737 ], [ -77.100549, 38.919770 ], [ -77.100506, 38.919854 ], [ -77.100334, 38.919904 ], [ -77.100205, 38.919904 ], [ -77.100034, 38.919937 ], [ -77.099884, 38.920004 ], [ -77.099776, 38.920054 ], [ -77.099712, 38.920171 ], [ -77.099712, 38.920204 ], [ -77.099690, 38.920371 ], [ -77.099648, 38.920405 ], [ -77.099519, 38.920421 ], [ -77.099304, 38.920388 ], [ -77.099175, 38.920471 ], [ -77.099133, 38.920538 ], [ -77.099111, 38.920622 ], [ -77.099004, 38.920738 ], [ -77.098982, 38.920788 ], [ -77.098939, 38.920872 ], [ -77.098875, 38.920922 ], [ -77.098854, 38.920939 ], [ -77.098575, 38.921139 ], [ -77.098596, 38.921189 ], [ -77.098639, 38.921239 ], [ -77.098639, 38.921273 ], [ -77.098682, 38.921323 ], [ -77.098725, 38.921356 ], [ -77.098832, 38.921490 ], [ -77.098918, 38.921556 ], [ -77.099347, 38.921990 ], [ -77.099390, 38.922024 ], [ -77.099433, 38.922074 ], [ -77.099347, 38.922207 ], [ -77.099283, 38.922207 ], [ -77.099218, 38.922207 ], [ -77.099090, 38.922207 ], [ -77.099047, 38.922207 ], [ -77.099004, 38.922207 ], [ -77.098961, 38.922224 ], [ -77.098918, 38.922224 ], [ -77.098832, 38.922258 ], [ -77.098811, 38.922291 ], [ -77.098789, 38.922308 ], [ -77.098768, 38.922308 ], [ -77.098746, 38.922324 ], [ -77.098725, 38.922374 ], [ -77.098596, 38.922558 ], [ -77.098532, 38.922692 ], [ -77.098360, 38.922892 ], [ -77.098274, 38.923025 ], [ -77.098231, 38.923092 ], [ -77.098210, 38.923126 ], [ -77.098103, 38.923276 ], [ -77.098060, 38.923326 ], [ -77.098017, 38.923393 ], [ -77.097974, 38.923443 ], [ -77.097824, 38.923593 ], [ -77.097695, 38.923760 ], [ -77.097631, 38.923877 ], [ -77.097566, 38.923977 ], [ -77.097480, 38.924094 ], [ -77.097416, 38.924194 ], [ -77.097373, 38.924244 ], [ -77.097330, 38.924294 ], [ -77.097266, 38.924378 ], [ -77.097244, 38.924428 ], [ -77.097201, 38.924511 ], [ -77.097158, 38.924578 ], [ -77.097094, 38.924661 ], [ -77.097073, 38.924712 ], [ -77.097051, 38.924795 ], [ -77.097030, 38.924845 ], [ -77.096987, 38.924929 ], [ -77.096922, 38.925062 ], [ -77.096858, 38.925179 ], [ -77.096837, 38.925212 ], [ -77.096815, 38.925229 ], [ -77.096794, 38.925262 ], [ -77.096751, 38.925313 ], [ -77.096729, 38.925346 ], [ -77.096708, 38.925396 ], [ -77.096579, 38.925680 ], [ -77.096558, 38.925730 ], [ -77.096515, 38.925780 ], [ -77.096493, 38.925813 ], [ -77.096472, 38.925863 ], [ -77.096450, 38.925913 ], [ -77.096407, 38.925947 ], [ -77.096386, 38.925997 ], [ -77.096343, 38.926030 ], [ -77.096322, 38.926080 ], [ -77.096279, 38.926114 ], [ -77.096214, 38.926181 ], [ -77.096128, 38.926264 ], [ -77.096021, 38.926364 ], [ -77.095957, 38.926414 ], [ -77.095914, 38.926464 ], [ -77.095850, 38.926514 ], [ -77.095807, 38.926548 ], [ -77.095764, 38.926598 ], [ -77.095721, 38.926648 ], [ -77.095678, 38.926698 ], [ -77.095635, 38.926748 ], [ -77.095592, 38.926798 ], [ -77.095549, 38.926848 ], [ -77.095528, 38.926915 ], [ -77.095485, 38.926999 ], [ -77.095442, 38.927082 ], [ -77.095442, 38.927115 ], [ -77.095442, 38.927182 ], [ -77.095442, 38.927216 ], [ -77.095442, 38.927249 ], [ -77.095442, 38.927282 ], [ -77.095442, 38.927349 ], [ -77.095442, 38.927433 ], [ -77.095442, 38.927499 ], [ -77.095442, 38.927566 ], [ -77.095463, 38.927599 ], [ -77.095485, 38.927833 ], [ -77.095528, 38.928067 ], [ -77.095549, 38.928200 ], [ -77.095571, 38.928351 ], [ -77.095592, 38.928534 ], [ -77.095592, 38.928601 ], [ -77.095613, 38.928701 ], [ -77.095635, 38.928768 ], [ -77.095656, 38.928885 ], [ -77.095656, 38.928952 ], [ -77.095678, 38.929002 ], [ -77.095678, 38.929035 ], [ -77.095699, 38.929085 ], [ -77.095699, 38.929102 ], [ -77.095721, 38.929135 ], [ -77.095721, 38.929152 ], [ -77.095742, 38.929185 ], [ -77.095785, 38.929219 ], [ -77.095807, 38.929235 ], [ -77.095850, 38.929252 ], [ -77.095914, 38.929285 ], [ -77.095935, 38.929302 ], [ -77.096086, 38.929402 ], [ -77.096150, 38.929436 ], [ -77.096236, 38.929486 ], [ -77.096257, 38.929519 ], [ -77.096279, 38.929536 ], [ -77.096322, 38.929569 ], [ -77.096343, 38.929603 ], [ -77.096364, 38.929636 ], [ -77.096386, 38.929669 ], [ -77.096386, 38.929686 ], [ -77.096407, 38.929736 ], [ -77.096429, 38.929753 ], [ -77.096429, 38.929803 ], [ -77.096429, 38.929853 ], [ -77.096429, 38.929870 ], [ -77.096429, 38.929920 ], [ -77.096407, 38.929970 ], [ -77.096407, 38.930020 ], [ -77.096386, 38.930053 ], [ -77.096364, 38.930153 ], [ -77.096343, 38.930187 ], [ -77.096300, 38.930287 ], [ -77.096257, 38.930387 ], [ -77.096236, 38.930420 ], [ -77.096171, 38.930537 ], [ -77.096150, 38.930587 ], [ -77.096128, 38.930604 ], [ -77.096107, 38.930621 ], [ -77.096064, 38.930654 ], [ -77.096021, 38.930688 ], [ -77.095656, 38.930938 ], [ -77.095635, 38.930938 ], [ -77.095592, 38.930971 ], [ -77.095571, 38.931005 ], [ -77.095549, 38.931021 ], [ -77.095528, 38.931038 ], [ -77.095506, 38.931071 ], [ -77.095506, 38.931088 ], [ -77.095313, 38.931489 ], [ -77.095292, 38.931505 ], [ -77.095292, 38.931522 ], [ -77.095270, 38.931539 ], [ -77.095249, 38.931556 ], [ -77.095227, 38.931572 ], [ -77.095056, 38.931706 ], [ -77.095013, 38.931722 ], [ -77.094991, 38.931739 ], [ -77.094970, 38.931739 ], [ -77.094326, 38.931956 ], [ -77.094283, 38.931973 ], [ -77.094197, 38.932006 ], [ -77.094111, 38.932040 ], [ -77.093575, 38.932340 ], [ -77.093318, 38.932490 ], [ -77.093253, 38.932607 ], [ -77.093189, 38.932607 ], [ -77.093146, 38.932624 ], [ -77.093103, 38.932641 ], [ -77.093017, 38.932674 ], [ -77.092223, 38.932874 ], [ -77.091858, 38.932974 ], [ -77.091515, 38.933058 ], [ -77.091322, 38.933108 ], [ -77.091215, 38.933141 ], [ -77.091150, 38.933158 ], [ -77.091064, 38.933191 ], [ -77.091000, 38.933225 ], [ -77.090957, 38.933241 ], [ -77.090936, 38.933258 ], [ -77.090871, 38.933291 ], [ -77.090828, 38.933308 ], [ -77.090786, 38.933342 ], [ -77.090721, 38.933375 ], [ -77.090614, 38.933442 ], [ -77.090485, 38.933542 ], [ -77.089713, 38.934126 ], [ -77.089155, 38.934543 ], [ -77.089026, 38.934643 ], [ -77.088790, 38.934827 ], [ -77.088683, 38.934894 ], [ -77.088361, 38.935128 ], [ -77.088211, 38.935261 ], [ -77.088168, 38.935278 ], [ -77.088168, 38.935294 ], [ -77.088082, 38.935361 ], [ -77.088017, 38.935445 ], [ -77.087717, 38.935778 ], [ -77.087610, 38.935728 ], [ -77.087417, 38.935628 ], [ -77.087374, 38.935595 ], [ -77.087352, 38.935578 ], [ -77.087309, 38.935545 ], [ -77.087202, 38.935461 ], [ -77.087159, 38.935428 ], [ -77.087073, 38.935361 ], [ -77.087009, 38.935311 ], [ -77.086966, 38.935261 ], [ -77.086880, 38.935194 ], [ -77.086816, 38.935128 ], [ -77.086751, 38.935061 ], [ -77.086709, 38.934994 ], [ -77.086687, 38.934961 ], [ -77.086644, 38.934911 ], [ -77.086601, 38.934827 ], [ -77.086558, 38.934777 ], [ -77.086494, 38.934660 ], [ -77.086473, 38.934560 ], [ -77.086408, 38.934510 ], [ -77.086258, 38.934260 ], [ -77.086129, 38.934026 ], [ -77.086086, 38.933942 ], [ -77.086065, 38.933909 ], [ -77.086043, 38.933859 ], [ -77.085829, 38.933492 ], [ -77.085764, 38.933392 ], [ -77.085593, 38.933058 ], [ -77.085421, 38.932774 ], [ -77.085292, 38.932540 ], [ -77.085228, 38.932440 ], [ -77.085185, 38.932357 ], [ -77.085121, 38.932257 ], [ -77.085078, 38.932156 ], [ -77.084928, 38.931923 ], [ -77.084906, 38.931873 ], [ -77.084863, 38.931806 ], [ -77.084627, 38.931372 ], [ -77.084327, 38.930871 ], [ -77.083983, 38.930270 ], [ -77.083812, 38.930287 ], [ -77.083726, 38.930270 ], [ -77.083039, 38.930287 ], [ -77.081559, 38.930287 ], [ -77.081280, 38.930287 ], [ -77.081108, 38.930287 ], [ -77.080936, 38.930270 ], [ -77.080808, 38.930270 ], [ -77.080679, 38.930254 ], [ -77.080572, 38.930237 ], [ -77.081237, 38.927833 ], [ -77.081645, 38.926247 ], [ -77.081923, 38.924962 ], [ -77.081945, 38.924828 ], [ -77.081988, 38.924645 ], [ -77.082524, 38.921707 ], [ -77.082567, 38.921490 ], [ -77.082610, 38.921189 ], [ -77.082567, 38.919303 ], [ -77.086000, 38.919169 ], [ -77.086344, 38.919169 ], [ -77.086558, 38.919169 ], [ -77.088747, 38.919169 ], [ -77.088747, 38.919086 ], [ -77.088747, 38.919019 ], [ -77.088747, 38.918702 ], [ -77.088768, 38.918535 ], [ -77.088768, 38.918485 ], [ -77.088768, 38.918251 ], [ -77.088768, 38.918201 ], [ -77.088768, 38.918034 ], [ -77.088768, 38.917917 ], [ -77.088768, 38.917650 ], [ -77.088768, 38.917600 ], [ -77.088768, 38.917550 ], [ -77.088768, 38.917416 ], [ -77.088768, 38.917283 ], [ -77.088768, 38.917249 ], [ -77.088768, 38.917166 ], [ -77.088747, 38.917049 ], [ -77.088726, 38.916899 ], [ -77.088726, 38.916748 ], [ -77.088726, 38.916565 ], [ -77.088704, 38.916431 ], [ -77.088854, 38.916431 ], [ -77.089756, 38.916431 ], [ -77.090421, 38.916431 ], [ -77.090893, 38.916431 ], [ -77.090957, 38.916448 ], [ -77.091172, 38.916448 ], [ -77.091322, 38.916431 ], [ -77.091472, 38.916431 ], [ -77.091601, 38.916414 ], [ -77.091858, 38.916398 ], [ -77.092180, 38.916364 ], [ -77.092330, 38.916348 ], [ -77.092481, 38.916314 ], [ -77.092695, 38.916264 ], [ -77.092738, 38.916247 ], [ -77.092781, 38.916231 ], [ -77.092953, 38.916197 ], [ -77.093039, 38.916164 ], [ -77.093146, 38.916131 ], [ -77.093275, 38.916097 ], [ -77.093318, 38.916064 ], [ -77.093575, 38.915980 ], [ -77.093983, 38.915830 ], [ -77.094090, 38.915780 ], [ -77.094111, 38.915780 ], [ -77.094305, 38.915697 ], [ -77.094390, 38.915663 ], [ -77.094669, 38.915630 ], [ -77.096300, 38.914544 ], [ -77.096386, 38.914327 ], [ -77.096386, 38.914311 ], [ -77.096407, 38.914294 ], [ -77.096407, 38.914277 ], [ -77.096407, 38.914244 ], [ -77.096407, 38.914227 ], [ -77.096386, 38.914194 ], [ -77.096386, 38.914177 ], [ -77.096364, 38.914144 ], [ -77.096343, 38.914110 ], [ -77.097416, 38.913409 ], [ -77.097523, 38.913392 ], [ -77.097738, 38.913392 ], [ -77.097802, 38.913326 ], [ -77.098103, 38.913092 ], [ -77.099562, 38.911990 ], [ -77.100849, 38.911205 ], [ -77.100892, 38.911222 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000802", "GEOID": "11001000802", "NAME": "8.02", "NAMELSAD": "Census Tract 8.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1688582, "AWATER": 669985, "INTPTLAT": "+38.9126765", "INTPTLON": "-077.0896118" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079799, 38.902339 ], [ -77.079842, 38.902322 ], [ -77.079885, 38.902322 ], [ -77.079928, 38.902322 ], [ -77.079949, 38.902305 ], [ -77.079992, 38.902305 ], [ -77.080035, 38.902305 ], [ -77.080057, 38.902305 ], [ -77.080100, 38.902289 ], [ -77.080164, 38.902289 ], [ -77.080185, 38.902305 ], [ -77.080228, 38.902305 ], [ -77.080250, 38.902305 ], [ -77.080293, 38.902322 ], [ -77.080314, 38.902322 ], [ -77.080357, 38.902322 ], [ -77.080400, 38.902322 ], [ -77.080443, 38.902322 ], [ -77.080486, 38.902322 ], [ -77.080529, 38.902322 ], [ -77.080572, 38.902322 ], [ -77.080615, 38.902322 ], [ -77.080679, 38.902322 ], [ -77.080743, 38.902322 ], [ -77.080765, 38.902322 ], [ -77.080808, 38.902322 ], [ -77.080829, 38.902322 ], [ -77.080851, 38.902322 ], [ -77.080894, 38.902322 ], [ -77.080915, 38.902322 ], [ -77.080958, 38.902322 ], [ -77.080979, 38.902322 ], [ -77.081001, 38.902322 ], [ -77.081022, 38.902322 ], [ -77.081044, 38.902322 ], [ -77.081087, 38.902322 ], [ -77.081108, 38.902322 ], [ -77.081130, 38.902322 ], [ -77.081151, 38.902322 ], [ -77.081194, 38.902322 ], [ -77.081215, 38.902322 ], [ -77.081237, 38.902322 ], [ -77.081258, 38.902322 ], [ -77.081301, 38.902322 ], [ -77.081344, 38.902322 ], [ -77.081366, 38.902305 ], [ -77.081387, 38.902305 ], [ -77.081430, 38.902305 ], [ -77.081451, 38.902305 ], [ -77.081494, 38.902305 ], [ -77.081516, 38.902305 ], [ -77.081537, 38.902305 ], [ -77.081559, 38.902305 ], [ -77.081580, 38.902305 ], [ -77.081602, 38.902305 ], [ -77.081645, 38.902305 ], [ -77.081666, 38.902305 ], [ -77.081709, 38.902305 ], [ -77.081730, 38.902305 ], [ -77.081752, 38.902305 ], [ -77.081773, 38.902305 ], [ -77.081816, 38.902305 ], [ -77.081838, 38.902305 ], [ -77.081881, 38.902305 ], [ -77.081902, 38.902305 ], [ -77.081945, 38.902305 ], [ -77.081988, 38.902305 ], [ -77.082009, 38.902305 ], [ -77.082052, 38.902305 ], [ -77.082074, 38.902305 ], [ -77.082117, 38.902305 ], [ -77.082138, 38.902289 ], [ -77.082160, 38.902289 ], [ -77.082224, 38.902289 ], [ -77.082245, 38.902289 ], [ -77.082288, 38.902289 ], [ -77.082310, 38.902289 ], [ -77.082331, 38.902289 ], [ -77.082396, 38.902289 ], [ -77.082438, 38.902289 ], [ -77.082481, 38.902289 ], [ -77.082503, 38.902289 ], [ -77.082524, 38.902289 ], [ -77.082546, 38.902289 ], [ -77.082567, 38.902289 ], [ -77.082589, 38.902289 ], [ -77.082632, 38.902272 ], [ -77.083189, 38.902355 ], [ -77.083361, 38.902389 ], [ -77.083597, 38.902456 ], [ -77.083919, 38.902522 ], [ -77.084563, 38.902689 ], [ -77.084885, 38.902790 ], [ -77.085035, 38.902790 ], [ -77.085292, 38.902773 ], [ -77.085764, 38.902840 ], [ -77.086086, 38.902957 ], [ -77.086236, 38.902990 ], [ -77.086473, 38.902990 ], [ -77.086580, 38.903007 ], [ -77.086687, 38.903090 ], [ -77.086837, 38.903224 ], [ -77.087073, 38.903341 ], [ -77.087374, 38.903407 ], [ -77.087567, 38.903474 ], [ -77.087739, 38.903491 ], [ -77.087996, 38.903541 ], [ -77.088296, 38.903641 ], [ -77.088554, 38.903708 ], [ -77.089005, 38.903892 ], [ -77.089155, 38.903975 ], [ -77.089477, 38.904142 ], [ -77.089949, 38.904292 ], [ -77.090464, 38.904510 ], [ -77.090936, 38.904710 ], [ -77.091429, 38.905044 ], [ -77.091880, 38.905328 ], [ -77.091901, 38.905328 ], [ -77.091944, 38.905344 ], [ -77.091966, 38.905361 ], [ -77.091987, 38.905361 ], [ -77.092009, 38.905361 ], [ -77.092052, 38.905378 ], [ -77.092073, 38.905395 ], [ -77.092116, 38.905395 ], [ -77.092137, 38.905411 ], [ -77.092159, 38.905411 ], [ -77.092180, 38.905428 ], [ -77.092202, 38.905428 ], [ -77.092223, 38.905445 ], [ -77.092266, 38.905461 ], [ -77.092288, 38.905461 ], [ -77.092309, 38.905461 ], [ -77.092330, 38.905478 ], [ -77.092352, 38.905478 ], [ -77.092373, 38.905495 ], [ -77.092395, 38.905495 ], [ -77.092416, 38.905495 ], [ -77.092438, 38.905511 ], [ -77.092459, 38.905511 ], [ -77.092481, 38.905528 ], [ -77.092502, 38.905528 ], [ -77.092524, 38.905545 ], [ -77.092545, 38.905545 ], [ -77.092566, 38.905545 ], [ -77.092588, 38.905562 ], [ -77.092631, 38.905578 ], [ -77.092652, 38.905578 ], [ -77.092674, 38.905595 ], [ -77.092695, 38.905595 ], [ -77.092738, 38.905612 ], [ -77.092760, 38.905612 ], [ -77.092781, 38.905612 ], [ -77.092803, 38.905628 ], [ -77.092824, 38.905645 ], [ -77.092845, 38.905645 ], [ -77.092867, 38.905645 ], [ -77.092888, 38.905662 ], [ -77.092910, 38.905662 ], [ -77.092931, 38.905678 ], [ -77.092953, 38.905678 ], [ -77.092996, 38.905695 ], [ -77.093017, 38.905695 ], [ -77.093039, 38.905712 ], [ -77.093060, 38.905712 ], [ -77.093081, 38.905729 ], [ -77.093103, 38.905729 ], [ -77.093124, 38.905729 ], [ -77.093146, 38.905745 ], [ -77.093167, 38.905745 ], [ -77.093210, 38.905762 ], [ -77.093253, 38.905779 ], [ -77.093296, 38.905812 ], [ -77.093339, 38.905829 ], [ -77.093360, 38.905829 ], [ -77.093382, 38.905845 ], [ -77.093403, 38.905862 ], [ -77.093446, 38.905879 ], [ -77.093468, 38.905896 ], [ -77.093511, 38.905912 ], [ -77.093532, 38.905929 ], [ -77.093575, 38.905962 ], [ -77.093596, 38.905979 ], [ -77.093618, 38.905996 ], [ -77.093661, 38.906046 ], [ -77.093704, 38.906062 ], [ -77.093704, 38.906079 ], [ -77.093725, 38.906079 ], [ -77.093768, 38.906113 ], [ -77.093790, 38.906129 ], [ -77.093811, 38.906146 ], [ -77.093832, 38.906163 ], [ -77.093854, 38.906179 ], [ -77.093875, 38.906196 ], [ -77.093897, 38.906196 ], [ -77.093918, 38.906213 ], [ -77.093940, 38.906229 ], [ -77.093961, 38.906246 ], [ -77.093983, 38.906263 ], [ -77.094004, 38.906263 ], [ -77.094026, 38.906280 ], [ -77.094047, 38.906296 ], [ -77.094069, 38.906313 ], [ -77.094090, 38.906313 ], [ -77.094111, 38.906346 ], [ -77.094133, 38.906363 ], [ -77.094154, 38.906363 ], [ -77.094176, 38.906396 ], [ -77.094197, 38.906413 ], [ -77.094219, 38.906413 ], [ -77.094240, 38.906430 ], [ -77.094262, 38.906447 ], [ -77.094283, 38.906463 ], [ -77.094305, 38.906480 ], [ -77.094326, 38.906480 ], [ -77.094347, 38.906497 ], [ -77.094369, 38.906513 ], [ -77.094369, 38.906530 ], [ -77.094390, 38.906547 ], [ -77.094412, 38.906563 ], [ -77.094433, 38.906580 ], [ -77.094455, 38.906580 ], [ -77.094476, 38.906597 ], [ -77.094498, 38.906614 ], [ -77.094519, 38.906630 ], [ -77.094541, 38.906647 ], [ -77.094584, 38.906680 ], [ -77.094626, 38.906697 ], [ -77.094648, 38.906714 ], [ -77.094669, 38.906730 ], [ -77.094691, 38.906747 ], [ -77.094712, 38.906764 ], [ -77.094734, 38.906797 ], [ -77.094755, 38.906814 ], [ -77.094798, 38.906831 ], [ -77.094820, 38.906847 ], [ -77.094841, 38.906864 ], [ -77.094884, 38.906897 ], [ -77.094905, 38.906914 ], [ -77.094927, 38.906914 ], [ -77.094948, 38.906931 ], [ -77.094970, 38.906964 ], [ -77.095013, 38.906981 ], [ -77.095013, 38.906998 ], [ -77.095077, 38.907031 ], [ -77.095098, 38.907048 ], [ -77.095120, 38.907064 ], [ -77.095141, 38.907081 ], [ -77.095163, 38.907098 ], [ -77.095184, 38.907114 ], [ -77.095206, 38.907131 ], [ -77.095227, 38.907148 ], [ -77.095249, 38.907165 ], [ -77.095270, 38.907165 ], [ -77.095292, 38.907181 ], [ -77.095313, 38.907198 ], [ -77.095335, 38.907215 ], [ -77.095356, 38.907231 ], [ -77.095377, 38.907248 ], [ -77.095399, 38.907265 ], [ -77.095420, 38.907281 ], [ -77.095442, 38.907298 ], [ -77.095463, 38.907315 ], [ -77.095485, 38.907332 ], [ -77.095506, 38.907348 ], [ -77.095528, 38.907365 ], [ -77.095549, 38.907382 ], [ -77.095592, 38.907398 ], [ -77.095613, 38.907415 ], [ -77.095635, 38.907448 ], [ -77.095678, 38.907465 ], [ -77.095678, 38.907482 ], [ -77.095721, 38.907498 ], [ -77.095742, 38.907515 ], [ -77.095764, 38.907532 ], [ -77.095785, 38.907549 ], [ -77.095807, 38.907565 ], [ -77.095850, 38.907582 ], [ -77.095871, 38.907599 ], [ -77.095871, 38.907615 ], [ -77.095914, 38.907632 ], [ -77.095935, 38.907649 ], [ -77.095957, 38.907665 ], [ -77.095978, 38.907682 ], [ -77.096000, 38.907699 ], [ -77.096021, 38.907716 ], [ -77.096064, 38.907732 ], [ -77.096086, 38.907766 ], [ -77.096107, 38.907782 ], [ -77.096150, 38.907799 ], [ -77.096171, 38.907816 ], [ -77.096193, 38.907849 ], [ -77.096236, 38.907866 ], [ -77.096257, 38.907883 ], [ -77.096279, 38.907899 ], [ -77.096300, 38.907916 ], [ -77.096322, 38.907933 ], [ -77.096343, 38.907949 ], [ -77.096364, 38.907966 ], [ -77.096386, 38.907983 ], [ -77.096407, 38.907999 ], [ -77.096429, 38.908016 ], [ -77.096450, 38.908016 ], [ -77.096472, 38.908033 ], [ -77.096493, 38.908050 ], [ -77.096515, 38.908066 ], [ -77.096536, 38.908083 ], [ -77.096558, 38.908100 ], [ -77.096579, 38.908116 ], [ -77.096601, 38.908133 ], [ -77.096622, 38.908150 ], [ -77.096643, 38.908166 ], [ -77.096665, 38.908166 ], [ -77.096686, 38.908183 ], [ -77.096708, 38.908200 ], [ -77.096729, 38.908216 ], [ -77.096751, 38.908233 ], [ -77.096772, 38.908250 ], [ -77.096794, 38.908267 ], [ -77.096815, 38.908283 ], [ -77.096815, 38.908300 ], [ -77.096858, 38.908317 ], [ -77.096858, 38.908333 ], [ -77.096901, 38.908350 ], [ -77.096922, 38.908367 ], [ -77.096944, 38.908383 ], [ -77.096965, 38.908400 ], [ -77.096987, 38.908417 ], [ -77.097008, 38.908417 ], [ -77.097030, 38.908434 ], [ -77.097030, 38.908450 ], [ -77.097051, 38.908467 ], [ -77.097073, 38.908484 ], [ -77.097116, 38.908500 ], [ -77.097116, 38.908517 ], [ -77.097158, 38.908534 ], [ -77.097180, 38.908550 ], [ -77.097201, 38.908567 ], [ -77.097223, 38.908584 ], [ -77.097244, 38.908601 ], [ -77.097266, 38.908617 ], [ -77.097287, 38.908634 ], [ -77.097330, 38.908667 ], [ -77.097352, 38.908667 ], [ -77.097373, 38.908684 ], [ -77.097394, 38.908701 ], [ -77.097416, 38.908717 ], [ -77.097416, 38.908734 ], [ -77.097437, 38.908734 ], [ -77.097459, 38.908751 ], [ -77.097480, 38.908767 ], [ -77.097502, 38.908784 ], [ -77.097523, 38.908801 ], [ -77.097545, 38.908818 ], [ -77.097566, 38.908834 ], [ -77.097588, 38.908851 ], [ -77.097609, 38.908868 ], [ -77.097631, 38.908884 ], [ -77.097652, 38.908884 ], [ -77.097673, 38.908901 ], [ -77.097695, 38.908918 ], [ -77.097716, 38.908934 ], [ -77.097738, 38.908951 ], [ -77.097759, 38.908968 ], [ -77.097781, 38.908985 ], [ -77.097824, 38.909018 ], [ -77.097845, 38.909035 ], [ -77.097867, 38.909051 ], [ -77.097888, 38.909068 ], [ -77.097909, 38.909085 ], [ -77.097931, 38.909101 ], [ -77.097952, 38.909118 ], [ -77.097974, 38.909135 ], [ -77.097995, 38.909135 ], [ -77.098017, 38.909152 ], [ -77.098038, 38.909168 ], [ -77.098060, 38.909185 ], [ -77.098103, 38.909218 ], [ -77.098124, 38.909218 ], [ -77.098124, 38.909235 ], [ -77.098167, 38.909252 ], [ -77.098188, 38.909268 ], [ -77.098210, 38.909285 ], [ -77.098231, 38.909302 ], [ -77.098253, 38.909318 ], [ -77.098274, 38.909335 ], [ -77.098296, 38.909352 ], [ -77.098317, 38.909369 ], [ -77.098339, 38.909385 ], [ -77.098360, 38.909402 ], [ -77.098382, 38.909419 ], [ -77.098403, 38.909435 ], [ -77.098446, 38.909452 ], [ -77.098446, 38.909469 ], [ -77.098467, 38.909485 ], [ -77.098489, 38.909502 ], [ -77.098532, 38.909519 ], [ -77.098553, 38.909536 ], [ -77.098575, 38.909552 ], [ -77.098596, 38.909569 ], [ -77.098618, 38.909586 ], [ -77.098660, 38.909619 ], [ -77.098682, 38.909636 ], [ -77.098703, 38.909652 ], [ -77.098725, 38.909669 ], [ -77.098746, 38.909686 ], [ -77.098768, 38.909703 ], [ -77.098811, 38.909719 ], [ -77.098832, 38.909736 ], [ -77.098854, 38.909753 ], [ -77.098875, 38.909786 ], [ -77.098897, 38.909803 ], [ -77.098939, 38.909819 ], [ -77.098961, 38.909836 ], [ -77.098982, 38.909853 ], [ -77.099004, 38.909870 ], [ -77.099025, 38.909886 ], [ -77.099047, 38.909886 ], [ -77.099047, 38.909903 ], [ -77.099068, 38.909920 ], [ -77.099090, 38.909936 ], [ -77.099111, 38.909953 ], [ -77.099133, 38.909970 ], [ -77.099154, 38.909970 ], [ -77.099175, 38.909986 ], [ -77.099197, 38.910003 ], [ -77.099218, 38.910020 ], [ -77.099240, 38.910036 ], [ -77.099261, 38.910053 ], [ -77.099283, 38.910070 ], [ -77.099304, 38.910087 ], [ -77.099326, 38.910087 ], [ -77.099347, 38.910103 ], [ -77.099369, 38.910120 ], [ -77.099390, 38.910137 ], [ -77.099411, 38.910153 ], [ -77.099433, 38.910170 ], [ -77.099454, 38.910187 ], [ -77.099476, 38.910203 ], [ -77.099497, 38.910220 ], [ -77.099519, 38.910237 ], [ -77.099540, 38.910254 ], [ -77.099562, 38.910270 ], [ -77.099583, 38.910287 ], [ -77.099605, 38.910304 ], [ -77.099626, 38.910320 ], [ -77.099648, 38.910337 ], [ -77.099669, 38.910354 ], [ -77.099690, 38.910370 ], [ -77.099733, 38.910387 ], [ -77.099755, 38.910404 ], [ -77.099776, 38.910420 ], [ -77.099819, 38.910454 ], [ -77.099862, 38.910487 ], [ -77.099884, 38.910504 ], [ -77.099905, 38.910521 ], [ -77.099926, 38.910537 ], [ -77.099948, 38.910554 ], [ -77.099969, 38.910571 ], [ -77.099991, 38.910571 ], [ -77.099991, 38.910587 ], [ -77.100012, 38.910587 ], [ -77.100034, 38.910621 ], [ -77.100055, 38.910638 ], [ -77.100077, 38.910638 ], [ -77.100098, 38.910654 ], [ -77.100120, 38.910671 ], [ -77.100141, 38.910688 ], [ -77.100184, 38.910721 ], [ -77.100205, 38.910738 ], [ -77.100248, 38.910771 ], [ -77.100270, 38.910771 ], [ -77.100270, 38.910788 ], [ -77.100313, 38.910805 ], [ -77.100334, 38.910821 ], [ -77.100356, 38.910838 ], [ -77.100377, 38.910855 ], [ -77.100399, 38.910871 ], [ -77.100463, 38.910921 ], [ -77.100484, 38.910938 ], [ -77.100506, 38.910955 ], [ -77.100527, 38.910955 ], [ -77.100549, 38.910988 ], [ -77.100570, 38.911005 ], [ -77.100613, 38.911022 ], [ -77.100635, 38.911038 ], [ -77.100699, 38.911105 ], [ -77.100720, 38.911122 ], [ -77.100742, 38.911138 ], [ -77.100763, 38.911155 ], [ -77.100806, 38.911155 ], [ -77.100828, 38.911172 ], [ -77.100849, 38.911205 ], [ -77.099562, 38.911990 ], [ -77.098103, 38.913092 ], [ -77.097802, 38.913326 ], [ -77.097738, 38.913392 ], [ -77.097523, 38.913392 ], [ -77.097416, 38.913409 ], [ -77.096343, 38.914110 ], [ -77.096364, 38.914144 ], [ -77.096386, 38.914177 ], [ -77.096386, 38.914194 ], [ -77.096407, 38.914227 ], [ -77.096407, 38.914244 ], [ -77.096407, 38.914277 ], [ -77.096407, 38.914294 ], [ -77.096386, 38.914311 ], [ -77.096386, 38.914327 ], [ -77.096300, 38.914544 ], [ -77.094669, 38.915630 ], [ -77.094390, 38.915663 ], [ -77.094305, 38.915697 ], [ -77.094111, 38.915780 ], [ -77.094090, 38.915780 ], [ -77.093983, 38.915830 ], [ -77.093575, 38.915980 ], [ -77.093318, 38.916064 ], [ -77.093275, 38.916097 ], [ -77.093146, 38.916131 ], [ -77.093039, 38.916164 ], [ -77.092953, 38.916197 ], [ -77.092781, 38.916231 ], [ -77.092738, 38.916247 ], [ -77.092695, 38.916264 ], [ -77.092481, 38.916314 ], [ -77.092330, 38.916348 ], [ -77.092180, 38.916364 ], [ -77.091858, 38.916398 ], [ -77.091601, 38.916414 ], [ -77.091472, 38.916431 ], [ -77.091322, 38.916431 ], [ -77.091172, 38.916448 ], [ -77.090957, 38.916448 ], [ -77.090893, 38.916431 ], [ -77.090421, 38.916431 ], [ -77.089756, 38.916431 ], [ -77.088854, 38.916431 ], [ -77.088704, 38.916431 ], [ -77.088726, 38.916565 ], [ -77.088726, 38.916748 ], [ -77.088726, 38.916899 ], [ -77.088747, 38.917049 ], [ -77.088768, 38.917166 ], [ -77.088768, 38.917249 ], [ -77.088768, 38.917283 ], [ -77.088768, 38.917416 ], [ -77.088768, 38.917550 ], [ -77.088768, 38.917600 ], [ -77.088768, 38.917650 ], [ -77.088768, 38.917917 ], [ -77.088768, 38.918034 ], [ -77.088768, 38.918201 ], [ -77.088768, 38.918251 ], [ -77.088768, 38.918485 ], [ -77.088768, 38.918535 ], [ -77.088747, 38.918702 ], [ -77.088747, 38.919019 ], [ -77.088747, 38.919086 ], [ -77.088747, 38.919169 ], [ -77.086558, 38.919169 ], [ -77.086344, 38.919169 ], [ -77.086000, 38.919169 ], [ -77.082567, 38.919303 ], [ -77.082546, 38.918668 ], [ -77.081838, 38.917416 ], [ -77.081709, 38.917232 ], [ -77.081473, 38.916899 ], [ -77.081301, 38.916631 ], [ -77.081001, 38.916214 ], [ -77.080915, 38.915997 ], [ -77.080700, 38.915363 ], [ -77.080550, 38.915029 ], [ -77.080400, 38.914845 ], [ -77.079349, 38.914044 ], [ -77.079241, 38.913860 ], [ -77.079113, 38.913743 ], [ -77.078962, 38.913443 ], [ -77.078834, 38.913109 ], [ -77.078812, 38.912741 ], [ -77.079005, 38.912741 ], [ -77.079005, 38.912675 ], [ -77.079263, 38.912675 ], [ -77.079241, 38.912624 ], [ -77.079241, 38.912257 ], [ -77.079220, 38.911957 ], [ -77.079198, 38.911890 ], [ -77.079027, 38.911806 ], [ -77.078705, 38.911172 ], [ -77.078490, 38.910821 ], [ -77.078362, 38.910638 ], [ -77.078362, 38.905779 ], [ -77.078404, 38.905779 ], [ -77.079413, 38.905628 ], [ -77.079864, 38.905411 ], [ -77.079885, 38.905194 ], [ -77.079906, 38.905077 ], [ -77.079906, 38.904877 ], [ -77.079220, 38.902456 ], [ -77.079241, 38.902456 ], [ -77.079284, 38.902439 ], [ -77.079306, 38.902422 ], [ -77.079327, 38.902406 ], [ -77.079349, 38.902406 ], [ -77.079370, 38.902389 ], [ -77.079413, 38.902389 ], [ -77.079434, 38.902389 ], [ -77.079456, 38.902389 ], [ -77.079477, 38.902389 ], [ -77.079520, 38.902389 ], [ -77.079542, 38.902389 ], [ -77.079585, 38.902389 ], [ -77.079606, 38.902372 ], [ -77.079649, 38.902372 ], [ -77.079670, 38.902355 ], [ -77.079713, 38.902355 ], [ -77.079756, 38.902339 ], [ -77.079799, 38.902339 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001100", "GEOID": "11001001100", "NAME": "11", "NAMELSAD": "Census Tract 11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1676650, "AWATER": 0, "INTPTLAT": "+38.9572432", "INTPTLON": "-077.0776732" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078876, 38.946510 ], [ -77.078919, 38.946577 ], [ -77.079198, 38.947077 ], [ -77.079370, 38.947361 ], [ -77.079563, 38.947728 ], [ -77.079670, 38.947912 ], [ -77.079756, 38.948045 ], [ -77.079928, 38.948329 ], [ -77.080100, 38.948646 ], [ -77.080121, 38.948679 ], [ -77.080142, 38.948746 ], [ -77.080185, 38.948813 ], [ -77.080185, 38.948863 ], [ -77.080207, 38.948896 ], [ -77.080228, 38.948946 ], [ -77.080250, 38.949030 ], [ -77.080271, 38.949097 ], [ -77.080271, 38.949163 ], [ -77.080379, 38.949597 ], [ -77.080400, 38.949681 ], [ -77.080486, 38.950048 ], [ -77.080486, 38.950064 ], [ -77.080615, 38.950598 ], [ -77.080636, 38.950699 ], [ -77.080679, 38.950799 ], [ -77.080700, 38.950899 ], [ -77.080743, 38.951016 ], [ -77.080765, 38.951049 ], [ -77.080786, 38.951116 ], [ -77.080808, 38.951132 ], [ -77.080958, 38.951466 ], [ -77.081280, 38.952067 ], [ -77.081516, 38.952517 ], [ -77.081730, 38.952935 ], [ -77.081881, 38.953235 ], [ -77.081945, 38.953352 ], [ -77.081966, 38.953402 ], [ -77.082181, 38.953819 ], [ -77.082589, 38.954603 ], [ -77.082632, 38.954703 ], [ -77.082932, 38.955304 ], [ -77.083254, 38.955955 ], [ -77.083383, 38.956172 ], [ -77.083812, 38.957023 ], [ -77.083855, 38.957123 ], [ -77.084327, 38.958024 ], [ -77.084842, 38.959042 ], [ -77.084906, 38.959159 ], [ -77.085056, 38.959459 ], [ -77.085271, 38.959876 ], [ -77.085378, 38.960093 ], [ -77.085657, 38.960643 ], [ -77.085700, 38.960744 ], [ -77.078362, 38.960744 ], [ -77.078362, 38.946760 ], [ -77.078383, 38.946744 ], [ -77.078426, 38.946727 ], [ -77.078469, 38.946693 ], [ -77.078533, 38.946560 ], [ -77.078619, 38.946560 ], [ -77.078662, 38.946577 ], [ -77.078726, 38.946560 ], [ -77.078769, 38.946543 ], [ -77.078834, 38.946527 ], [ -77.078876, 38.946510 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001200", "GEOID": "11001001200", "NAME": "12", "NAMELSAD": "Census Tract 12", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1219204, "AWATER": 0, "INTPTLAT": "+38.9462221", "INTPTLON": "-077.0705215" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078362, 38.945575 ], [ -77.078383, 38.945625 ], [ -77.078490, 38.945809 ], [ -77.078533, 38.945876 ], [ -77.078619, 38.946026 ], [ -77.078748, 38.946276 ], [ -77.078876, 38.946510 ], [ -77.078834, 38.946527 ], [ -77.078769, 38.946543 ], [ -77.078726, 38.946560 ], [ -77.078662, 38.946577 ], [ -77.078619, 38.946560 ], [ -77.078533, 38.946560 ], [ -77.078469, 38.946693 ], [ -77.078426, 38.946727 ], [ -77.078383, 38.946744 ], [ -77.078362, 38.946760 ], [ -77.078362, 38.945575 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001002", "GEOID": "11001001002", "NAME": "10.02", "NAMELSAD": "Census Tract 10.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 889722, "AWATER": 0, "INTPTLAT": "+38.9384216", "INTPTLON": "-077.0788872" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078362, 38.933492 ], [ -77.079048, 38.933492 ], [ -77.079456, 38.933492 ], [ -77.079563, 38.933492 ], [ -77.079606, 38.933475 ], [ -77.079649, 38.933475 ], [ -77.079692, 38.933458 ], [ -77.079735, 38.933442 ], [ -77.079756, 38.933425 ], [ -77.079864, 38.933508 ], [ -77.079906, 38.933542 ], [ -77.080121, 38.933692 ], [ -77.080228, 38.933759 ], [ -77.080894, 38.934260 ], [ -77.081366, 38.934610 ], [ -77.081580, 38.934760 ], [ -77.081752, 38.934894 ], [ -77.081816, 38.934944 ], [ -77.082009, 38.935077 ], [ -77.083383, 38.936062 ], [ -77.083619, 38.936262 ], [ -77.084048, 38.936563 ], [ -77.084219, 38.936696 ], [ -77.084262, 38.936713 ], [ -77.084284, 38.936730 ], [ -77.084627, 38.936980 ], [ -77.084713, 38.937047 ], [ -77.084885, 38.937180 ], [ -77.085357, 38.937498 ], [ -77.085378, 38.937531 ], [ -77.085485, 38.937581 ], [ -77.085571, 38.937665 ], [ -77.085528, 38.937698 ], [ -77.085507, 38.937731 ], [ -77.085485, 38.937748 ], [ -77.085464, 38.937798 ], [ -77.085464, 38.937831 ], [ -77.085443, 38.937865 ], [ -77.085443, 38.937898 ], [ -77.085443, 38.937932 ], [ -77.085443, 38.937965 ], [ -77.085443, 38.937998 ], [ -77.085464, 38.938048 ], [ -77.085485, 38.938098 ], [ -77.085550, 38.938165 ], [ -77.085550, 38.938182 ], [ -77.085593, 38.938199 ], [ -77.085636, 38.938232 ], [ -77.085464, 38.938416 ], [ -77.085078, 38.938883 ], [ -77.084606, 38.939417 ], [ -77.084413, 38.939667 ], [ -77.084155, 38.939951 ], [ -77.083962, 38.940185 ], [ -77.083833, 38.940335 ], [ -77.083533, 38.940685 ], [ -77.083426, 38.940802 ], [ -77.083125, 38.941153 ], [ -77.083082, 38.941203 ], [ -77.082996, 38.941303 ], [ -77.082846, 38.941487 ], [ -77.082717, 38.941637 ], [ -77.082524, 38.941870 ], [ -77.082288, 38.942137 ], [ -77.081966, 38.942521 ], [ -77.081666, 38.942872 ], [ -77.081409, 38.943155 ], [ -77.081258, 38.943339 ], [ -77.080979, 38.943656 ], [ -77.080507, 38.944224 ], [ -77.080379, 38.944357 ], [ -77.080228, 38.944557 ], [ -77.080121, 38.944674 ], [ -77.080035, 38.944774 ], [ -77.079928, 38.944891 ], [ -77.079799, 38.945041 ], [ -77.079628, 38.945242 ], [ -77.079456, 38.945459 ], [ -77.079306, 38.945609 ], [ -77.079134, 38.945826 ], [ -77.079134, 38.945842 ], [ -77.079113, 38.945859 ], [ -77.079113, 38.945892 ], [ -77.079091, 38.945926 ], [ -77.078490, 38.945809 ], [ -77.078383, 38.945625 ], [ -77.078362, 38.945575 ], [ -77.078362, 38.933492 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000704", "GEOID": "11001000704", "NAME": "7.04", "NAMELSAD": "Census Tract 7.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 332346, "AWATER": 0, "INTPTLAT": "+38.9300215", "INTPTLON": "-077.0752384" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.079692, 38.933458 ], [ -77.079649, 38.933475 ], [ -77.079606, 38.933475 ], [ -77.079563, 38.933492 ], [ -77.079456, 38.933492 ], [ -77.079048, 38.933492 ], [ -77.078362, 38.933492 ], [ -77.078362, 38.932407 ], [ -77.078791, 38.932724 ], [ -77.079155, 38.932991 ], [ -77.079756, 38.933425 ], [ -77.079735, 38.933442 ], [ -77.079692, 38.933458 ] ] ], [ [ [ -77.078362, 38.926197 ], [ -77.078555, 38.926181 ], [ -77.078855, 38.926181 ], [ -77.078984, 38.926181 ], [ -77.079177, 38.926197 ], [ -77.079413, 38.926164 ], [ -77.079756, 38.926064 ], [ -77.079992, 38.925964 ], [ -77.080507, 38.925997 ], [ -77.081301, 38.926047 ], [ -77.081387, 38.926097 ], [ -77.081430, 38.926114 ], [ -77.081473, 38.926130 ], [ -77.081516, 38.926147 ], [ -77.081559, 38.926181 ], [ -77.081623, 38.926231 ], [ -77.081645, 38.926247 ], [ -77.081237, 38.927833 ], [ -77.080572, 38.930237 ], [ -77.080314, 38.930905 ], [ -77.079885, 38.932056 ], [ -77.079971, 38.932407 ], [ -77.080100, 38.933058 ], [ -77.080121, 38.933692 ], [ -77.079906, 38.933542 ], [ -77.079864, 38.933508 ], [ -77.079756, 38.933425 ], [ -77.079155, 38.932991 ], [ -77.078791, 38.932724 ], [ -77.078362, 38.932407 ], [ -77.078362, 38.926197 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000702", "GEOID": "11001000702", "NAME": "7.02", "NAMELSAD": "Census Tract 7.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308967, "AWATER": 0, "INTPTLAT": "+38.9241271", "INTPTLON": "-077.0778930" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078362, 38.922541 ], [ -77.078512, 38.922541 ], [ -77.078769, 38.922541 ], [ -77.078962, 38.922541 ], [ -77.079327, 38.922541 ], [ -77.079756, 38.922541 ], [ -77.079992, 38.922541 ], [ -77.080700, 38.922541 ], [ -77.080743, 38.922124 ], [ -77.080765, 38.921924 ], [ -77.080786, 38.921757 ], [ -77.080786, 38.921673 ], [ -77.080829, 38.921673 ], [ -77.080915, 38.921657 ], [ -77.081816, 38.921540 ], [ -77.082009, 38.921523 ], [ -77.082267, 38.921490 ], [ -77.082567, 38.921490 ], [ -77.082524, 38.921707 ], [ -77.081988, 38.924645 ], [ -77.081945, 38.924828 ], [ -77.081923, 38.924962 ], [ -77.081645, 38.926247 ], [ -77.081623, 38.926231 ], [ -77.081559, 38.926181 ], [ -77.081516, 38.926147 ], [ -77.081473, 38.926130 ], [ -77.081430, 38.926114 ], [ -77.081387, 38.926097 ], [ -77.081301, 38.926047 ], [ -77.080507, 38.925997 ], [ -77.079992, 38.925964 ], [ -77.079756, 38.926064 ], [ -77.079413, 38.926164 ], [ -77.079177, 38.926197 ], [ -77.078984, 38.926181 ], [ -77.078855, 38.926181 ], [ -77.078555, 38.926181 ], [ -77.078362, 38.926197 ], [ -77.078362, 38.922541 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000300", "GEOID": "11001000300", "NAME": "3", "NAMELSAD": "Census Tract 3", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1042156, "AWATER": 2305, "INTPTLAT": "+38.9179099", "INTPTLON": "-077.0748728" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078362, 38.912691 ], [ -77.078555, 38.912691 ], [ -77.079005, 38.912675 ], [ -77.079005, 38.912741 ], [ -77.078812, 38.912741 ], [ -77.078834, 38.913109 ], [ -77.078962, 38.913443 ], [ -77.079113, 38.913743 ], [ -77.079241, 38.913860 ], [ -77.079349, 38.914044 ], [ -77.080400, 38.914845 ], [ -77.080550, 38.915029 ], [ -77.080700, 38.915363 ], [ -77.080915, 38.915997 ], [ -77.081001, 38.916214 ], [ -77.081301, 38.916631 ], [ -77.081473, 38.916899 ], [ -77.081709, 38.917232 ], [ -77.081838, 38.917416 ], [ -77.082546, 38.918668 ], [ -77.082567, 38.919303 ], [ -77.082610, 38.921189 ], [ -77.082567, 38.921490 ], [ -77.082267, 38.921490 ], [ -77.082009, 38.921523 ], [ -77.081816, 38.921540 ], [ -77.080915, 38.921657 ], [ -77.080829, 38.921673 ], [ -77.080786, 38.921673 ], [ -77.080786, 38.921757 ], [ -77.080765, 38.921924 ], [ -77.080743, 38.922124 ], [ -77.080700, 38.922541 ], [ -77.079992, 38.922541 ], [ -77.079756, 38.922541 ], [ -77.079327, 38.922541 ], [ -77.078962, 38.922541 ], [ -77.078769, 38.922541 ], [ -77.078512, 38.922541 ], [ -77.078362, 38.922541 ], [ -77.078362, 38.912691 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000201", "GEOID": "11001000201", "NAME": "2.01", "NAMELSAD": "Census Tract 2.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 505004, "AWATER": 0, "INTPTLAT": "+38.9092171", "INTPTLON": "-077.0743418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078362, 38.910638 ], [ -77.078490, 38.910821 ], [ -77.078705, 38.911172 ], [ -77.079027, 38.911806 ], [ -77.079198, 38.911890 ], [ -77.079220, 38.911957 ], [ -77.079241, 38.912257 ], [ -77.079241, 38.912624 ], [ -77.079263, 38.912675 ], [ -77.079005, 38.912675 ], [ -77.078555, 38.912691 ], [ -77.078362, 38.912691 ], [ -77.078362, 38.910638 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000202", "GEOID": "11001000202", "NAME": "2.02", "NAMELSAD": "Census Tract 2.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 776435, "AWATER": 439661, "INTPTLAT": "+38.9063048", "INTPTLON": "-077.0696362" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078362, 38.902355 ], [ -77.078383, 38.902355 ], [ -77.078404, 38.902339 ], [ -77.078426, 38.902339 ], [ -77.078447, 38.902339 ], [ -77.078469, 38.902339 ], [ -77.078512, 38.902322 ], [ -77.078555, 38.902322 ], [ -77.078598, 38.902322 ], [ -77.078640, 38.902322 ], [ -77.078683, 38.902322 ], [ -77.078726, 38.902305 ], [ -77.078748, 38.902305 ], [ -77.078791, 38.902305 ], [ -77.078834, 38.902305 ], [ -77.078876, 38.902289 ], [ -77.078898, 38.902305 ], [ -77.078941, 38.902305 ], [ -77.078984, 38.902305 ], [ -77.079005, 38.902322 ], [ -77.079048, 38.902322 ], [ -77.079070, 38.902339 ], [ -77.079091, 38.902339 ], [ -77.079134, 38.902355 ], [ -77.079155, 38.902389 ], [ -77.079155, 38.902422 ], [ -77.079177, 38.902439 ], [ -77.079220, 38.902456 ], [ -77.079906, 38.904877 ], [ -77.079906, 38.905077 ], [ -77.079885, 38.905194 ], [ -77.079864, 38.905411 ], [ -77.079413, 38.905628 ], [ -77.078404, 38.905779 ], [ -77.078362, 38.905779 ], [ -77.078362, 38.902355 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1170, "y": 1565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 262144 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001004", "GEOID": "11001001004", "NAME": "10.04", "NAMELSAD": "Census Tract 10.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1471925, "AWATER": 0, "INTPTLAT": "+38.9487665", "INTPTLON": "-077.0853886" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.089204, 38.958074 ], [ -77.088870, 38.958337 ], [ -77.088704, 38.958474 ], [ -77.088522, 38.958616 ], [ -77.088447, 38.958675 ], [ -77.088211, 38.958871 ], [ -77.087696, 38.959275 ], [ -77.087588, 38.959342 ], [ -77.086843, 38.959922 ], [ -77.086580, 38.960122 ], [ -77.085727, 38.960777 ], [ -77.085657, 38.960635 ], [ -77.085378, 38.960093 ], [ -77.085266, 38.959872 ], [ -77.085056, 38.959459 ], [ -77.084901, 38.959159 ], [ -77.084842, 38.959042 ], [ -77.084350, 38.958074 ], [ -77.089204, 38.958074 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001100", "GEOID": "11001001100", "NAME": "11", "NAMELSAD": "Census Tract 11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1676650, "AWATER": 0, "INTPTLAT": "+38.9572432", "INTPTLON": "-077.0776732" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.084350, 38.958074 ], [ -77.084842, 38.959042 ], [ -77.084901, 38.959159 ], [ -77.085056, 38.959459 ], [ -77.085266, 38.959872 ], [ -77.085378, 38.960093 ], [ -77.085657, 38.960635 ], [ -77.085727, 38.960777 ], [ -77.085287, 38.961123 ], [ -77.084638, 38.961640 ], [ -77.084021, 38.962120 ], [ -77.083758, 38.962329 ], [ -77.082975, 38.962942 ], [ -77.082599, 38.963234 ], [ -77.082165, 38.963572 ], [ -77.080470, 38.964890 ], [ -77.080357, 38.964952 ], [ -77.080266, 38.965048 ], [ -77.078362, 38.966544 ], [ -77.078362, 38.958074 ], [ -77.084350, 38.958074 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1171, "y": 1568 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007301", "GEOID": "11001007301", "NAME": "73.01", "NAMELSAD": "Census Tract 73.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684643, "AWATER": 5139082, "INTPTLAT": "+38.8349280", "INTPTLON": "-077.0244450" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.039115, 38.819598 ], [ -77.039201, 38.819665 ], [ -77.039266, 38.819732 ], [ -77.039330, 38.819782 ], [ -77.039373, 38.819816 ], [ -77.039416, 38.819849 ], [ -77.039480, 38.819866 ], [ -77.039545, 38.819866 ], [ -77.039609, 38.819883 ], [ -77.039652, 38.819883 ], [ -77.039716, 38.819883 ], [ -77.039802, 38.819966 ], [ -77.039888, 38.820067 ], [ -77.039909, 38.820133 ], [ -77.039974, 38.820250 ], [ -77.039931, 38.820451 ], [ -77.039974, 38.820501 ], [ -77.039995, 38.820518 ], [ -77.039995, 38.820568 ], [ -77.040017, 38.820585 ], [ -77.040038, 38.820618 ], [ -77.040038, 38.820652 ], [ -77.040017, 38.820668 ], [ -77.039995, 38.820702 ], [ -77.039974, 38.820719 ], [ -77.039952, 38.820769 ], [ -77.039952, 38.820802 ], [ -77.039931, 38.820852 ], [ -77.039888, 38.820902 ], [ -77.039845, 38.820953 ], [ -77.039802, 38.821003 ], [ -77.039738, 38.821053 ], [ -77.039673, 38.821086 ], [ -77.039609, 38.821120 ], [ -77.039566, 38.821137 ], [ -77.039545, 38.821153 ], [ -77.039545, 38.821203 ], [ -77.039545, 38.821254 ], [ -77.039545, 38.821270 ], [ -77.039502, 38.821287 ], [ -77.039502, 38.821304 ], [ -77.039502, 38.821337 ], [ -77.039502, 38.821354 ], [ -77.039480, 38.821404 ], [ -77.039459, 38.821437 ], [ -77.039437, 38.821454 ], [ -77.039459, 38.821554 ], [ -77.039480, 38.821588 ], [ -77.039480, 38.821605 ], [ -77.039480, 38.821655 ], [ -77.039545, 38.821705 ], [ -77.039587, 38.821705 ], [ -77.039630, 38.821722 ], [ -77.039652, 38.821772 ], [ -77.039695, 38.821822 ], [ -77.039759, 38.821822 ], [ -77.039802, 38.821839 ], [ -77.039888, 38.821855 ], [ -77.039931, 38.821872 ], [ -77.040060, 38.821889 ], [ -77.040102, 38.821906 ], [ -77.040231, 38.821972 ], [ -77.040381, 38.821989 ], [ -77.040510, 38.821972 ], [ -77.040596, 38.821989 ], [ -77.040639, 38.822023 ], [ -77.040682, 38.822039 ], [ -77.040725, 38.822073 ], [ -77.040746, 38.822089 ], [ -77.040811, 38.822173 ], [ -77.040854, 38.822240 ], [ -77.040875, 38.822340 ], [ -77.040918, 38.822407 ], [ -77.040982, 38.822558 ], [ -77.040982, 38.822591 ], [ -77.040982, 38.822608 ], [ -77.041004, 38.822675 ], [ -77.041025, 38.822725 ], [ -77.041090, 38.822892 ], [ -77.041090, 38.822925 ], [ -77.041111, 38.822942 ], [ -77.041090, 38.823059 ], [ -77.041090, 38.823076 ], [ -77.041068, 38.823193 ], [ -77.041068, 38.823226 ], [ -77.041068, 38.823260 ], [ -77.041047, 38.823293 ], [ -77.041004, 38.823310 ], [ -77.040982, 38.823343 ], [ -77.040939, 38.823377 ], [ -77.040875, 38.823393 ], [ -77.040789, 38.823444 ], [ -77.040768, 38.823477 ], [ -77.040682, 38.823561 ], [ -77.040639, 38.823577 ], [ -77.040617, 38.823594 ], [ -77.040617, 38.823611 ], [ -77.040596, 38.823611 ], [ -77.040532, 38.823627 ], [ -77.040510, 38.823644 ], [ -77.040424, 38.823644 ], [ -77.040403, 38.823661 ], [ -77.040381, 38.823661 ], [ -77.040339, 38.823678 ], [ -77.040274, 38.823678 ], [ -77.040253, 38.823711 ], [ -77.040188, 38.823711 ], [ -77.040167, 38.823728 ], [ -77.040124, 38.823728 ], [ -77.040102, 38.823744 ], [ -77.040060, 38.823744 ], [ -77.040038, 38.823761 ], [ -77.040017, 38.823761 ], [ -77.039974, 38.823744 ], [ -77.039802, 38.823744 ], [ -77.039781, 38.823761 ], [ -77.039759, 38.823761 ], [ -77.039738, 38.823761 ], [ -77.039716, 38.823778 ], [ -77.039695, 38.823795 ], [ -77.039673, 38.823811 ], [ -77.039673, 38.823828 ], [ -77.039673, 38.823845 ], [ -77.039673, 38.823861 ], [ -77.039673, 38.823878 ], [ -77.039673, 38.823895 ], [ -77.039652, 38.823928 ], [ -77.017357, 38.823928 ], [ -77.017357, 38.823895 ], [ -77.017357, 38.823594 ], [ -77.017357, 38.823577 ], [ -77.017357, 38.823360 ], [ -77.017379, 38.823243 ], [ -77.017379, 38.822491 ], [ -77.017379, 38.822407 ], [ -77.017379, 38.822374 ], [ -77.017379, 38.822290 ], [ -77.017379, 38.822223 ], [ -77.017379, 38.822156 ], [ -77.017379, 38.822106 ], [ -77.017400, 38.821956 ], [ -77.017422, 38.821906 ], [ -77.017422, 38.821855 ], [ -77.017465, 38.821705 ], [ -77.017486, 38.821655 ], [ -77.017550, 38.821488 ], [ -77.017615, 38.821337 ], [ -77.017722, 38.821170 ], [ -77.017872, 38.820969 ], [ -77.018065, 38.820819 ], [ -77.018216, 38.820802 ], [ -77.018280, 38.820785 ], [ -77.020040, 38.820702 ], [ -77.020233, 38.820685 ], [ -77.020469, 38.820652 ], [ -77.021928, 38.820518 ], [ -77.022228, 38.820485 ], [ -77.022464, 38.820468 ], [ -77.023001, 38.820401 ], [ -77.023602, 38.820334 ], [ -77.024202, 38.820267 ], [ -77.024739, 38.820200 ], [ -77.025211, 38.820150 ], [ -77.025361, 38.820133 ], [ -77.025468, 38.820117 ], [ -77.025511, 38.820117 ], [ -77.025661, 38.820100 ], [ -77.025704, 38.820100 ], [ -77.025726, 38.820100 ], [ -77.025747, 38.820100 ], [ -77.027464, 38.819983 ], [ -77.039115, 38.819598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009807", "GEOID": "11001009807", "NAME": "98.07", "NAMELSAD": "Census Tract 98.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1037012, "AWATER": 0, "INTPTLAT": "+38.8292038", "INTPTLON": "-077.0117577" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.012079, 38.821889 ], [ -77.012701, 38.823042 ], [ -77.015812, 38.823711 ], [ -77.016521, 38.823761 ], [ -77.016821, 38.823845 ], [ -77.017078, 38.823744 ], [ -77.017357, 38.823594 ], [ -77.017357, 38.823895 ], [ -77.017357, 38.823928 ], [ -77.007143, 38.823928 ], [ -77.007294, 38.823861 ], [ -77.007358, 38.823845 ], [ -77.007551, 38.823778 ], [ -77.007637, 38.823744 ], [ -77.007723, 38.823711 ], [ -77.007809, 38.823678 ], [ -77.007873, 38.823661 ], [ -77.007959, 38.823661 ], [ -77.008023, 38.823644 ], [ -77.008088, 38.823627 ], [ -77.008109, 38.823627 ], [ -77.008216, 38.823611 ], [ -77.008388, 38.823611 ], [ -77.008474, 38.823594 ], [ -77.008603, 38.823594 ], [ -77.008967, 38.823611 ], [ -77.009525, 38.823594 ], [ -77.009568, 38.823594 ], [ -77.009654, 38.823594 ], [ -77.010319, 38.823611 ], [ -77.010663, 38.823594 ], [ -77.010877, 38.823594 ], [ -77.010963, 38.823611 ], [ -77.011735, 38.823594 ], [ -77.011800, 38.823594 ], [ -77.011843, 38.823594 ], [ -77.011886, 38.823577 ], [ -77.011714, 38.823226 ], [ -77.011564, 38.822858 ], [ -77.011542, 38.822825 ], [ -77.011628, 38.822658 ], [ -77.011693, 38.822524 ], [ -77.011800, 38.822323 ], [ -77.011929, 38.822089 ], [ -77.012057, 38.821872 ], [ -77.012079, 38.821889 ] ] ], [ [ [ -77.002187, 38.821956 ], [ -77.002423, 38.822140 ], [ -77.002466, 38.822156 ], [ -77.002552, 38.822223 ], [ -77.002594, 38.822240 ], [ -77.002702, 38.822290 ], [ -77.002788, 38.822340 ], [ -77.002873, 38.822374 ], [ -77.003174, 38.822507 ], [ -77.004461, 38.823092 ], [ -77.004547, 38.823109 ], [ -77.004654, 38.823176 ], [ -77.004762, 38.823210 ], [ -77.004869, 38.823260 ], [ -77.005041, 38.823360 ], [ -77.005148, 38.823410 ], [ -77.005234, 38.823460 ], [ -77.005427, 38.823594 ], [ -77.005470, 38.823627 ], [ -77.005513, 38.823661 ], [ -77.005620, 38.823744 ], [ -77.005706, 38.823811 ], [ -77.005770, 38.823878 ], [ -77.005835, 38.823928 ], [ -77.002101, 38.823928 ], [ -77.002122, 38.823928 ], [ -77.002208, 38.823895 ], [ -77.001994, 38.823611 ], [ -77.001972, 38.823577 ], [ -77.001951, 38.823527 ], [ -77.001929, 38.823460 ], [ -77.001929, 38.823427 ], [ -77.001929, 38.823393 ], [ -77.001929, 38.823377 ], [ -77.001908, 38.823327 ], [ -77.001908, 38.823310 ], [ -77.001929, 38.823276 ], [ -77.001951, 38.822741 ], [ -77.001972, 38.822240 ], [ -77.001972, 38.822206 ], [ -77.001994, 38.822173 ], [ -77.002015, 38.822140 ], [ -77.002037, 38.822123 ], [ -77.002122, 38.822023 ], [ -77.002187, 38.821956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009811", "GEOID": "11001009811", "NAME": "98.11", "NAMELSAD": "Census Tract 98.11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 467511, "AWATER": 0, "INTPTLAT": "+38.8266510", "INTPTLON": "-076.9984594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002187, 38.821956 ], [ -77.002122, 38.822023 ], [ -77.002037, 38.822123 ], [ -77.002015, 38.822140 ], [ -77.001994, 38.822173 ], [ -77.001972, 38.822206 ], [ -77.001972, 38.822240 ], [ -77.001951, 38.822741 ], [ -77.001929, 38.823276 ], [ -77.001908, 38.823310 ], [ -77.001908, 38.823327 ], [ -77.001929, 38.823377 ], [ -77.001929, 38.823393 ], [ -77.001929, 38.823427 ], [ -77.001929, 38.823460 ], [ -77.001951, 38.823527 ], [ -77.001972, 38.823577 ], [ -77.001994, 38.823611 ], [ -77.002208, 38.823895 ], [ -77.002122, 38.823928 ], [ -77.002101, 38.823928 ], [ -76.997852, 38.823928 ], [ -76.998024, 38.823795 ], [ -76.998088, 38.823761 ], [ -76.998088, 38.823744 ], [ -76.998153, 38.823694 ], [ -76.998410, 38.823510 ], [ -76.998496, 38.823444 ], [ -76.998560, 38.823377 ], [ -76.998582, 38.823360 ], [ -76.998925, 38.823092 ], [ -76.999161, 38.822925 ], [ -76.999269, 38.822825 ], [ -77.000062, 38.822206 ], [ -77.000127, 38.822156 ], [ -77.000234, 38.822056 ], [ -77.001028, 38.821437 ], [ -77.001243, 38.821270 ], [ -77.001371, 38.821354 ], [ -77.001843, 38.821705 ], [ -77.002058, 38.821872 ], [ -77.002187, 38.821956 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010900", "GEOID": "11001010900", "NAME": "109", "NAMELSAD": "Census Tract 109", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2381079, "AWATER": 2933589, "INTPTLAT": "+38.8132364", "INTPTLON": "-077.0238475" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.001243, 38.821270 ], [ -77.001307, 38.821220 ], [ -77.001565, 38.821003 ], [ -77.004483, 38.818662 ], [ -77.006478, 38.817057 ], [ -77.006607, 38.816940 ], [ -77.009182, 38.814951 ], [ -77.015405, 38.810085 ], [ -77.016327, 38.809350 ], [ -77.020383, 38.806189 ], [ -77.020726, 38.805922 ], [ -77.021778, 38.805136 ], [ -77.022271, 38.804785 ], [ -77.022357, 38.804684 ], [ -77.022464, 38.804601 ], [ -77.024331, 38.803112 ], [ -77.035511, 38.794366 ], [ -77.036433, 38.793647 ], [ -77.037356, 38.792928 ], [ -77.037399, 38.792895 ], [ -77.037506, 38.792811 ], [ -77.037570, 38.792761 ], [ -77.037828, 38.792560 ], [ -77.037935, 38.792493 ], [ -77.038021, 38.792410 ], [ -77.039008, 38.791640 ], [ -77.038987, 38.792410 ], [ -77.038987, 38.792493 ], [ -77.038987, 38.792543 ], [ -77.038987, 38.792761 ], [ -77.038987, 38.792828 ], [ -77.038987, 38.792911 ], [ -77.038987, 38.793664 ], [ -77.038987, 38.793697 ], [ -77.039008, 38.794400 ], [ -77.039008, 38.794467 ], [ -77.039008, 38.794534 ], [ -77.039008, 38.794734 ], [ -77.039051, 38.795888 ], [ -77.039073, 38.796875 ], [ -77.039073, 38.796908 ], [ -77.039073, 38.796992 ], [ -77.039073, 38.797159 ], [ -77.039073, 38.797293 ], [ -77.039094, 38.797561 ], [ -77.039094, 38.797594 ], [ -77.039094, 38.797644 ], [ -77.039094, 38.797828 ], [ -77.039115, 38.798163 ], [ -77.039158, 38.799450 ], [ -77.039158, 38.799500 ], [ -77.039158, 38.799735 ], [ -77.039180, 38.800036 ], [ -77.039180, 38.800303 ], [ -77.039180, 38.800487 ], [ -77.039115, 38.800821 ], [ -77.038965, 38.801674 ], [ -77.038622, 38.803480 ], [ -77.038236, 38.805086 ], [ -77.038043, 38.805972 ], [ -77.037721, 38.808146 ], [ -77.037635, 38.808564 ], [ -77.037292, 38.810520 ], [ -77.037292, 38.812242 ], [ -77.037334, 38.813396 ], [ -77.037356, 38.814182 ], [ -77.037356, 38.814483 ], [ -77.037356, 38.814533 ], [ -77.037334, 38.814633 ], [ -77.037356, 38.814700 ], [ -77.037377, 38.814733 ], [ -77.037420, 38.814783 ], [ -77.037420, 38.814850 ], [ -77.037442, 38.814934 ], [ -77.037463, 38.815001 ], [ -77.037528, 38.815034 ], [ -77.037592, 38.815084 ], [ -77.037678, 38.815135 ], [ -77.037742, 38.815185 ], [ -77.037828, 38.815252 ], [ -77.037892, 38.815319 ], [ -77.038021, 38.815436 ], [ -77.038064, 38.815519 ], [ -77.038150, 38.815603 ], [ -77.038214, 38.815770 ], [ -77.038279, 38.815870 ], [ -77.038300, 38.815971 ], [ -77.038343, 38.816021 ], [ -77.038364, 38.816071 ], [ -77.038407, 38.816088 ], [ -77.038407, 38.816138 ], [ -77.038429, 38.816205 ], [ -77.038450, 38.816238 ], [ -77.038450, 38.816288 ], [ -77.038472, 38.816506 ], [ -77.038493, 38.816623 ], [ -77.038515, 38.816706 ], [ -77.038536, 38.816806 ], [ -77.038558, 38.816890 ], [ -77.038558, 38.816974 ], [ -77.038558, 38.817041 ], [ -77.038536, 38.817057 ], [ -77.038536, 38.817074 ], [ -77.038558, 38.817091 ], [ -77.038579, 38.817107 ], [ -77.038600, 38.817174 ], [ -77.038622, 38.817258 ], [ -77.038643, 38.817341 ], [ -77.038665, 38.817408 ], [ -77.038686, 38.817459 ], [ -77.038708, 38.817509 ], [ -77.038708, 38.817559 ], [ -77.038686, 38.817592 ], [ -77.038708, 38.817642 ], [ -77.038729, 38.817626 ], [ -77.038772, 38.817676 ], [ -77.038751, 38.817709 ], [ -77.038751, 38.817726 ], [ -77.038772, 38.817810 ], [ -77.038794, 38.817860 ], [ -77.038815, 38.817876 ], [ -77.038836, 38.817927 ], [ -77.038815, 38.817943 ], [ -77.038794, 38.817977 ], [ -77.038794, 38.817994 ], [ -77.038858, 38.818027 ], [ -77.038836, 38.818111 ], [ -77.038815, 38.818127 ], [ -77.038858, 38.818161 ], [ -77.038858, 38.818211 ], [ -77.038858, 38.818244 ], [ -77.038858, 38.818311 ], [ -77.038879, 38.818378 ], [ -77.038901, 38.818428 ], [ -77.038901, 38.818462 ], [ -77.038922, 38.818512 ], [ -77.038944, 38.818579 ], [ -77.038965, 38.818629 ], [ -77.038965, 38.818662 ], [ -77.038987, 38.818679 ], [ -77.038987, 38.818696 ], [ -77.038987, 38.818729 ], [ -77.038965, 38.818746 ], [ -77.038965, 38.818779 ], [ -77.039073, 38.818813 ], [ -77.039051, 38.818863 ], [ -77.039115, 38.818880 ], [ -77.039094, 38.818930 ], [ -77.039030, 38.818913 ], [ -77.039030, 38.818930 ], [ -77.039008, 38.818946 ], [ -77.038987, 38.818980 ], [ -77.038944, 38.819013 ], [ -77.038922, 38.819030 ], [ -77.038901, 38.819064 ], [ -77.038879, 38.819080 ], [ -77.038858, 38.819130 ], [ -77.038858, 38.819164 ], [ -77.038858, 38.819264 ], [ -77.038858, 38.819331 ], [ -77.038901, 38.819364 ], [ -77.038901, 38.819398 ], [ -77.038879, 38.819431 ], [ -77.038922, 38.819465 ], [ -77.038922, 38.819498 ], [ -77.038944, 38.819532 ], [ -77.038987, 38.819532 ], [ -77.039030, 38.819532 ], [ -77.039115, 38.819598 ], [ -77.027464, 38.819983 ], [ -77.025747, 38.820100 ], [ -77.025726, 38.820100 ], [ -77.025704, 38.820100 ], [ -77.025661, 38.820100 ], [ -77.025511, 38.820117 ], [ -77.025468, 38.820117 ], [ -77.025361, 38.820133 ], [ -77.025211, 38.820150 ], [ -77.024739, 38.820200 ], [ -77.024202, 38.820267 ], [ -77.023602, 38.820334 ], [ -77.023001, 38.820401 ], [ -77.022464, 38.820468 ], [ -77.022228, 38.820485 ], [ -77.021928, 38.820518 ], [ -77.020469, 38.820652 ], [ -77.020233, 38.820685 ], [ -77.020040, 38.820702 ], [ -77.018280, 38.820785 ], [ -77.018216, 38.820802 ], [ -77.018065, 38.820819 ], [ -77.017872, 38.820969 ], [ -77.017722, 38.821170 ], [ -77.017615, 38.821337 ], [ -77.017550, 38.821488 ], [ -77.017486, 38.821655 ], [ -77.017465, 38.821705 ], [ -77.017422, 38.821855 ], [ -77.017422, 38.821906 ], [ -77.017400, 38.821956 ], [ -77.017379, 38.822106 ], [ -77.017379, 38.822156 ], [ -77.017379, 38.822223 ], [ -77.017379, 38.822290 ], [ -77.017379, 38.822374 ], [ -77.017379, 38.822407 ], [ -77.017379, 38.822491 ], [ -77.017379, 38.823243 ], [ -77.017357, 38.823360 ], [ -77.017357, 38.823577 ], [ -77.017357, 38.823594 ], [ -77.017078, 38.823744 ], [ -77.016821, 38.823845 ], [ -77.016521, 38.823761 ], [ -77.015812, 38.823711 ], [ -77.012701, 38.823042 ], [ -77.012079, 38.821889 ], [ -77.012057, 38.821872 ], [ -77.011929, 38.822089 ], [ -77.011800, 38.822323 ], [ -77.011693, 38.822524 ], [ -77.011628, 38.822658 ], [ -77.011542, 38.822825 ], [ -77.011564, 38.822858 ], [ -77.011714, 38.823226 ], [ -77.011886, 38.823577 ], [ -77.011843, 38.823594 ], [ -77.011800, 38.823594 ], [ -77.011735, 38.823594 ], [ -77.010963, 38.823611 ], [ -77.010877, 38.823594 ], [ -77.010663, 38.823594 ], [ -77.010319, 38.823611 ], [ -77.009654, 38.823594 ], [ -77.009568, 38.823594 ], [ -77.009525, 38.823594 ], [ -77.008967, 38.823611 ], [ -77.008603, 38.823594 ], [ -77.008474, 38.823594 ], [ -77.008388, 38.823611 ], [ -77.008216, 38.823611 ], [ -77.008109, 38.823627 ], [ -77.008088, 38.823627 ], [ -77.008023, 38.823644 ], [ -77.007959, 38.823661 ], [ -77.007873, 38.823661 ], [ -77.007809, 38.823678 ], [ -77.007723, 38.823711 ], [ -77.007637, 38.823744 ], [ -77.007551, 38.823778 ], [ -77.007358, 38.823845 ], [ -77.007294, 38.823861 ], [ -77.007143, 38.823928 ], [ -77.005835, 38.823928 ], [ -77.005770, 38.823878 ], [ -77.005706, 38.823811 ], [ -77.005620, 38.823744 ], [ -77.005513, 38.823661 ], [ -77.005470, 38.823627 ], [ -77.005427, 38.823594 ], [ -77.005234, 38.823460 ], [ -77.005148, 38.823410 ], [ -77.005041, 38.823360 ], [ -77.004869, 38.823260 ], [ -77.004762, 38.823210 ], [ -77.004654, 38.823176 ], [ -77.004547, 38.823109 ], [ -77.004461, 38.823092 ], [ -77.003174, 38.822507 ], [ -77.002873, 38.822374 ], [ -77.002788, 38.822340 ], [ -77.002702, 38.822290 ], [ -77.002594, 38.822240 ], [ -77.002552, 38.822223 ], [ -77.002466, 38.822156 ], [ -77.002423, 38.822140 ], [ -77.002187, 38.821956 ], [ -77.002058, 38.821872 ], [ -77.001843, 38.821705 ], [ -77.001371, 38.821354 ], [ -77.001243, 38.821270 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1171, "y": 1567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000102", "GEOID": "11001000102", "NAME": "1.02", "NAMELSAD": "Census Tract 1.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1706484, "AWATER": 516665, "INTPTLAT": "+38.9054220", "INTPTLON": "-077.0620045" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.059693, 38.892369 ], [ -77.059801, 38.892352 ], [ -77.059886, 38.892336 ], [ -77.060037, 38.892319 ], [ -77.060359, 38.892269 ], [ -77.060530, 38.892235 ], [ -77.060916, 38.892169 ], [ -77.061002, 38.892152 ], [ -77.061517, 38.892068 ], [ -77.061732, 38.892035 ], [ -77.062118, 38.891968 ], [ -77.062461, 38.891901 ], [ -77.062504, 38.891901 ], [ -77.062547, 38.891885 ], [ -77.063019, 38.891818 ], [ -77.063255, 38.891784 ], [ -77.063406, 38.891768 ], [ -77.063534, 38.891751 ], [ -77.063642, 38.891751 ], [ -77.063749, 38.891751 ], [ -77.063985, 38.891751 ], [ -77.064157, 38.891768 ], [ -77.064350, 38.891801 ], [ -77.064629, 38.891834 ], [ -77.064693, 38.891851 ], [ -77.064693, 38.891885 ], [ -77.064693, 38.891901 ], [ -77.064693, 38.891918 ], [ -77.064693, 38.891935 ], [ -77.064693, 38.891951 ], [ -77.064693, 38.891968 ], [ -77.064693, 38.891985 ], [ -77.064693, 38.892018 ], [ -77.064693, 38.892035 ], [ -77.064693, 38.892052 ], [ -77.064693, 38.892068 ], [ -77.064693, 38.892085 ], [ -77.064693, 38.892102 ], [ -77.064693, 38.892118 ], [ -77.064714, 38.892135 ], [ -77.064714, 38.892235 ], [ -77.064736, 38.892252 ], [ -77.064736, 38.892285 ], [ -77.064736, 38.892319 ], [ -77.064714, 38.892352 ], [ -77.064693, 38.892352 ], [ -77.064693, 38.892369 ], [ -77.059693, 38.892369 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010800", "GEOID": "11001010800", "NAME": "108", "NAMELSAD": "Census Tract 108", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 661580, "AWATER": 0, "INTPTLAT": "+38.8973521", "INTPTLON": "-077.0446120" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.039480, 38.892369 ], [ -77.039480, 38.892102 ], [ -77.040660, 38.892102 ], [ -77.040703, 38.892118 ], [ -77.040725, 38.892118 ], [ -77.040746, 38.892118 ], [ -77.040789, 38.892135 ], [ -77.040811, 38.892135 ], [ -77.040832, 38.892152 ], [ -77.040854, 38.892169 ], [ -77.040875, 38.892185 ], [ -77.040918, 38.892202 ], [ -77.041068, 38.892302 ], [ -77.041197, 38.892369 ], [ -77.039480, 38.892369 ] ] ], [ [ [ -77.013173, 38.892085 ], [ -77.013624, 38.892085 ], [ -77.014010, 38.892085 ], [ -77.014225, 38.892085 ], [ -77.014675, 38.892085 ], [ -77.014997, 38.892085 ], [ -77.015040, 38.892085 ], [ -77.015233, 38.892085 ], [ -77.015576, 38.892068 ], [ -77.015834, 38.892018 ], [ -77.016242, 38.891885 ], [ -77.016392, 38.891784 ], [ -77.017550, 38.892118 ], [ -77.018495, 38.892369 ], [ -77.012830, 38.892369 ], [ -77.012980, 38.892252 ], [ -77.013173, 38.892085 ] ] ], [ [ [ -76.996543, 38.892369 ], [ -76.996307, 38.892269 ], [ -76.996157, 38.892219 ], [ -76.995664, 38.892018 ], [ -76.995385, 38.891901 ], [ -76.995149, 38.891818 ], [ -76.994956, 38.891718 ], [ -76.994956, 38.891617 ], [ -76.994956, 38.891417 ], [ -76.994956, 38.891150 ], [ -76.994956, 38.891016 ], [ -76.994956, 38.890983 ], [ -76.994956, 38.890933 ], [ -76.994956, 38.890866 ], [ -76.994956, 38.890265 ], [ -76.994956, 38.889797 ], [ -76.995084, 38.889797 ], [ -76.995578, 38.889797 ], [ -76.995685, 38.889797 ], [ -76.996157, 38.889797 ], [ -76.996350, 38.889797 ], [ -76.997273, 38.889797 ], [ -76.997681, 38.889814 ], [ -76.998432, 38.889814 ], [ -76.998539, 38.889814 ], [ -76.999183, 38.889814 ], [ -76.999505, 38.889814 ], [ -77.000191, 38.889797 ], [ -77.000427, 38.889797 ], [ -77.000577, 38.889814 ], [ -77.000663, 38.889814 ], [ -77.002037, 38.889814 ], [ -77.002573, 38.889814 ], [ -77.003109, 38.889797 ], [ -77.003281, 38.889797 ], [ -77.003517, 38.889814 ], [ -77.003517, 38.889914 ], [ -77.003517, 38.890933 ], [ -77.003517, 38.891016 ], [ -77.003517, 38.891367 ], [ -77.003517, 38.891801 ], [ -77.003517, 38.891918 ], [ -77.003775, 38.891868 ], [ -77.004354, 38.891918 ], [ -77.004418, 38.891784 ], [ -77.004504, 38.891667 ], [ -77.004676, 38.891517 ], [ -77.004890, 38.891400 ], [ -77.005255, 38.891250 ], [ -77.005513, 38.891133 ], [ -77.005920, 38.890966 ], [ -77.005920, 38.891250 ], [ -77.005920, 38.891400 ], [ -77.005920, 38.891834 ], [ -77.005899, 38.892018 ], [ -77.005877, 38.892118 ], [ -77.005877, 38.892369 ], [ -76.996543, 38.892369 ] ] ], [ [ [ -76.994956, 38.891718 ], [ -76.995149, 38.891818 ], [ -76.995385, 38.891901 ], [ -76.995664, 38.892018 ], [ -76.996157, 38.892219 ], [ -76.996307, 38.892269 ], [ -76.996543, 38.892369 ], [ -76.994956, 38.892369 ], [ -76.994956, 38.892135 ], [ -76.994956, 38.892018 ], [ -76.994956, 38.891918 ], [ -76.994956, 38.891718 ] ] ], [ [ [ -76.994956, 38.889797 ], [ -76.994956, 38.890265 ], [ -76.994956, 38.890866 ], [ -76.994956, 38.890933 ], [ -76.994956, 38.890983 ], [ -76.994956, 38.891016 ], [ -76.994956, 38.891150 ], [ -76.994956, 38.891417 ], [ -76.994956, 38.891617 ], [ -76.994956, 38.891718 ], [ -76.994956, 38.891918 ], [ -76.994956, 38.892018 ], [ -76.994956, 38.892135 ], [ -76.994956, 38.892369 ], [ -76.990471, 38.892369 ], [ -76.990471, 38.890365 ], [ -76.990943, 38.890365 ], [ -76.991436, 38.890365 ], [ -76.991522, 38.890365 ], [ -76.991522, 38.890114 ], [ -76.991522, 38.889797 ], [ -76.991801, 38.889797 ], [ -76.992638, 38.889797 ], [ -76.993089, 38.889797 ], [ -76.993754, 38.889797 ], [ -76.994290, 38.889797 ], [ -76.994956, 38.889797 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "980000", "GEOID": "11001980000", "NAME": "9800", "NAMELSAD": "Census Tract 9800", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 6514228, "AWATER": 4996393, "INTPTLAT": "+38.8809933", "INTPTLON": "-077.0363219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.032206, 38.850688 ], [ -77.032206, 38.850721 ], [ -77.032206, 38.850754 ], [ -77.032206, 38.850788 ], [ -77.032206, 38.850821 ], [ -77.032206, 38.850838 ], [ -77.032206, 38.850871 ], [ -77.032206, 38.850905 ], [ -77.032206, 38.850921 ], [ -77.032228, 38.850955 ], [ -77.032206, 38.850988 ], [ -77.032206, 38.851005 ], [ -77.032206, 38.851038 ], [ -77.032206, 38.851072 ], [ -77.032206, 38.851105 ], [ -77.032206, 38.851139 ], [ -77.032206, 38.851172 ], [ -77.032206, 38.851206 ], [ -77.032206, 38.851222 ], [ -77.032206, 38.851256 ], [ -77.032206, 38.851289 ], [ -77.032206, 38.851323 ], [ -77.032206, 38.851356 ], [ -77.032185, 38.851389 ], [ -77.032185, 38.851423 ], [ -77.032185, 38.851456 ], [ -77.032185, 38.851473 ], [ -77.032206, 38.851506 ], [ -77.032206, 38.851540 ], [ -77.032206, 38.851573 ], [ -77.032206, 38.851607 ], [ -77.032206, 38.851640 ], [ -77.032206, 38.851673 ], [ -77.032206, 38.851707 ], [ -77.032206, 38.851724 ], [ -77.032228, 38.851757 ], [ -77.032228, 38.851790 ], [ -77.032228, 38.851824 ], [ -77.032228, 38.851841 ], [ -77.032249, 38.851874 ], [ -77.032249, 38.851891 ], [ -77.032249, 38.851924 ], [ -77.032249, 38.851958 ], [ -77.032270, 38.851991 ], [ -77.032270, 38.852008 ], [ -77.032270, 38.852041 ], [ -77.032270, 38.852074 ], [ -77.032270, 38.852108 ], [ -77.032270, 38.852141 ], [ -77.032270, 38.852175 ], [ -77.032270, 38.852191 ], [ -77.032270, 38.852225 ], [ -77.032249, 38.852242 ], [ -77.032249, 38.852275 ], [ -77.032249, 38.852292 ], [ -77.032270, 38.852308 ], [ -77.032270, 38.852342 ], [ -77.032292, 38.852359 ], [ -77.032292, 38.852392 ], [ -77.032313, 38.852409 ], [ -77.032313, 38.852442 ], [ -77.032335, 38.852476 ], [ -77.032335, 38.852509 ], [ -77.032356, 38.852526 ], [ -77.032356, 38.852559 ], [ -77.032378, 38.852593 ], [ -77.032378, 38.852626 ], [ -77.032378, 38.852659 ], [ -77.032399, 38.852693 ], [ -77.032399, 38.852709 ], [ -77.032421, 38.852743 ], [ -77.032421, 38.852776 ], [ -77.032442, 38.852810 ], [ -77.032442, 38.852843 ], [ -77.032442, 38.852877 ], [ -77.032464, 38.852910 ], [ -77.032464, 38.852943 ], [ -77.032464, 38.852977 ], [ -77.032485, 38.853010 ], [ -77.032485, 38.853044 ], [ -77.032485, 38.853077 ], [ -77.032485, 38.853111 ], [ -77.032506, 38.853144 ], [ -77.032506, 38.853177 ], [ -77.032506, 38.853211 ], [ -77.032506, 38.853244 ], [ -77.032528, 38.853278 ], [ -77.032528, 38.853311 ], [ -77.032528, 38.853344 ], [ -77.032528, 38.853378 ], [ -77.032549, 38.853395 ], [ -77.032549, 38.853428 ], [ -77.032549, 38.853461 ], [ -77.032549, 38.853478 ], [ -77.032571, 38.853512 ], [ -77.032571, 38.853545 ], [ -77.032571, 38.853562 ], [ -77.032592, 38.853595 ], [ -77.032592, 38.853629 ], [ -77.032614, 38.853662 ], [ -77.032614, 38.853679 ], [ -77.032614, 38.853712 ], [ -77.032614, 38.853746 ], [ -77.032635, 38.853779 ], [ -77.032635, 38.853796 ], [ -77.032635, 38.853829 ], [ -77.032657, 38.853846 ], [ -77.032657, 38.853863 ], [ -77.032657, 38.853896 ], [ -77.032657, 38.853929 ], [ -77.032657, 38.853946 ], [ -77.032657, 38.853963 ], [ -77.032657, 38.853996 ], [ -77.032657, 38.854013 ], [ -77.032657, 38.854046 ], [ -77.032657, 38.854063 ], [ -77.032657, 38.854096 ], [ -77.032657, 38.854113 ], [ -77.032678, 38.854147 ], [ -77.032678, 38.854180 ], [ -77.032678, 38.854197 ], [ -77.032678, 38.854230 ], [ -77.032700, 38.854264 ], [ -77.032700, 38.854280 ], [ -77.032700, 38.854314 ], [ -77.032721, 38.854330 ], [ -77.032721, 38.854364 ], [ -77.032743, 38.854397 ], [ -77.032743, 38.854414 ], [ -77.032743, 38.854447 ], [ -77.032764, 38.854464 ], [ -77.032764, 38.854481 ], [ -77.032764, 38.854497 ], [ -77.032785, 38.854514 ], [ -77.032785, 38.854548 ], [ -77.032785, 38.854564 ], [ -77.032807, 38.854598 ], [ -77.032807, 38.854631 ], [ -77.032807, 38.854648 ], [ -77.032807, 38.854681 ], [ -77.032828, 38.854698 ], [ -77.032828, 38.854715 ], [ -77.032828, 38.854748 ], [ -77.032828, 38.854765 ], [ -77.032828, 38.854798 ], [ -77.032828, 38.854815 ], [ -77.032828, 38.854848 ], [ -77.032828, 38.854865 ], [ -77.032828, 38.854899 ], [ -77.032828, 38.854932 ], [ -77.032828, 38.854949 ], [ -77.032828, 38.854982 ], [ -77.032828, 38.854999 ], [ -77.032828, 38.855032 ], [ -77.032850, 38.855049 ], [ -77.032850, 38.855082 ], [ -77.032871, 38.855099 ], [ -77.032893, 38.855132 ], [ -77.032936, 38.855216 ], [ -77.032936, 38.855249 ], [ -77.032957, 38.855266 ], [ -77.032979, 38.855283 ], [ -77.032979, 38.855316 ], [ -77.033000, 38.855333 ], [ -77.033000, 38.855350 ], [ -77.033021, 38.855366 ], [ -77.033021, 38.855383 ], [ -77.033043, 38.855400 ], [ -77.033043, 38.855433 ], [ -77.033064, 38.855450 ], [ -77.033064, 38.855467 ], [ -77.033086, 38.855483 ], [ -77.033086, 38.855500 ], [ -77.033107, 38.855533 ], [ -77.033107, 38.855550 ], [ -77.033129, 38.855567 ], [ -77.033129, 38.855584 ], [ -77.033150, 38.855617 ], [ -77.033150, 38.855634 ], [ -77.033172, 38.855650 ], [ -77.033193, 38.855684 ], [ -77.033193, 38.855701 ], [ -77.033215, 38.855717 ], [ -77.033215, 38.855734 ], [ -77.033236, 38.855767 ], [ -77.033257, 38.855784 ], [ -77.033257, 38.855801 ], [ -77.033279, 38.855818 ], [ -77.033300, 38.855851 ], [ -77.033300, 38.855868 ], [ -77.033322, 38.855884 ], [ -77.033322, 38.855901 ], [ -77.033343, 38.855935 ], [ -77.033365, 38.855951 ], [ -77.033365, 38.855968 ], [ -77.033386, 38.855985 ], [ -77.033386, 38.856018 ], [ -77.033408, 38.856035 ], [ -77.033408, 38.856051 ], [ -77.033429, 38.856085 ], [ -77.033429, 38.856102 ], [ -77.033451, 38.856118 ], [ -77.033451, 38.856135 ], [ -77.033472, 38.856168 ], [ -77.033472, 38.856185 ], [ -77.033494, 38.856202 ], [ -77.033515, 38.856235 ], [ -77.033515, 38.856252 ], [ -77.033536, 38.856269 ], [ -77.033536, 38.856302 ], [ -77.033558, 38.856319 ], [ -77.033558, 38.856336 ], [ -77.033558, 38.856369 ], [ -77.033579, 38.856386 ], [ -77.033579, 38.856402 ], [ -77.033601, 38.856419 ], [ -77.033601, 38.856453 ], [ -77.033622, 38.856469 ], [ -77.033644, 38.856486 ], [ -77.033644, 38.856503 ], [ -77.033665, 38.856536 ], [ -77.033687, 38.856553 ], [ -77.033687, 38.856569 ], [ -77.033708, 38.856586 ], [ -77.033708, 38.856603 ], [ -77.033730, 38.856636 ], [ -77.033730, 38.856653 ], [ -77.033751, 38.856670 ], [ -77.033751, 38.856703 ], [ -77.033772, 38.856720 ], [ -77.033794, 38.856737 ], [ -77.033794, 38.856753 ], [ -77.033815, 38.856787 ], [ -77.033815, 38.856803 ], [ -77.033815, 38.856820 ], [ -77.033837, 38.856854 ], [ -77.033837, 38.856870 ], [ -77.033858, 38.856887 ], [ -77.033858, 38.856904 ], [ -77.033880, 38.856920 ], [ -77.033901, 38.856954 ], [ -77.033901, 38.856971 ], [ -77.033923, 38.856987 ], [ -77.033923, 38.857004 ], [ -77.033944, 38.857037 ], [ -77.033944, 38.857054 ], [ -77.033966, 38.857071 ], [ -77.033966, 38.857104 ], [ -77.033987, 38.857121 ], [ -77.034009, 38.857138 ], [ -77.034009, 38.857154 ], [ -77.034009, 38.857188 ], [ -77.034030, 38.857204 ], [ -77.034030, 38.857221 ], [ -77.034051, 38.857238 ], [ -77.034051, 38.857271 ], [ -77.034073, 38.857288 ], [ -77.034073, 38.857305 ], [ -77.034073, 38.857338 ], [ -77.034094, 38.857355 ], [ -77.034094, 38.857372 ], [ -77.034094, 38.857388 ], [ -77.034094, 38.857422 ], [ -77.034116, 38.857438 ], [ -77.034116, 38.857455 ], [ -77.034116, 38.857472 ], [ -77.034116, 38.857505 ], [ -77.034137, 38.857522 ], [ -77.034137, 38.857539 ], [ -77.034137, 38.857555 ], [ -77.034137, 38.857589 ], [ -77.034137, 38.857605 ], [ -77.034159, 38.857622 ], [ -77.034159, 38.857656 ], [ -77.034159, 38.857672 ], [ -77.034202, 38.857706 ], [ -77.034202, 38.857739 ], [ -77.034223, 38.857756 ], [ -77.034245, 38.857773 ], [ -77.034266, 38.857806 ], [ -77.034287, 38.857823 ], [ -77.034309, 38.857839 ], [ -77.034330, 38.857856 ], [ -77.034352, 38.857890 ], [ -77.034373, 38.857906 ], [ -77.034373, 38.857923 ], [ -77.034395, 38.857940 ], [ -77.034416, 38.857956 ], [ -77.034438, 38.857973 ], [ -77.034438, 38.857990 ], [ -77.034459, 38.858023 ], [ -77.034481, 38.858040 ], [ -77.034481, 38.858057 ], [ -77.034502, 38.858073 ], [ -77.034502, 38.858107 ], [ -77.034523, 38.858123 ], [ -77.034545, 38.858157 ], [ -77.034545, 38.858174 ], [ -77.034566, 38.858190 ], [ -77.034588, 38.858224 ], [ -77.034588, 38.858257 ], [ -77.034609, 38.858274 ], [ -77.034609, 38.858291 ], [ -77.034631, 38.858324 ], [ -77.034631, 38.858341 ], [ -77.034652, 38.858357 ], [ -77.034652, 38.858374 ], [ -77.034674, 38.858408 ], [ -77.034674, 38.858424 ], [ -77.034695, 38.858458 ], [ -77.034695, 38.858474 ], [ -77.034717, 38.858508 ], [ -77.034738, 38.858524 ], [ -77.034738, 38.858541 ], [ -77.034738, 38.858558 ], [ -77.034760, 38.858591 ], [ -77.034781, 38.858608 ], [ -77.034781, 38.858625 ], [ -77.034781, 38.858641 ], [ -77.034802, 38.858675 ], [ -77.034824, 38.858708 ], [ -77.034824, 38.858725 ], [ -77.034845, 38.858758 ], [ -77.034845, 38.858775 ], [ -77.034867, 38.858792 ], [ -77.034867, 38.858809 ], [ -77.034888, 38.858842 ], [ -77.034888, 38.858859 ], [ -77.034910, 38.858875 ], [ -77.034910, 38.858892 ], [ -77.034931, 38.858925 ], [ -77.034953, 38.858959 ], [ -77.034953, 38.858976 ], [ -77.034974, 38.859009 ], [ -77.034974, 38.859026 ], [ -77.034996, 38.859042 ], [ -77.034996, 38.859059 ], [ -77.034996, 38.859093 ], [ -77.035017, 38.859109 ], [ -77.035017, 38.859126 ], [ -77.035017, 38.859143 ], [ -77.035038, 38.859176 ], [ -77.035038, 38.859210 ], [ -77.035038, 38.859226 ], [ -77.035038, 38.859260 ], [ -77.035038, 38.859293 ], [ -77.035060, 38.859310 ], [ -77.035060, 38.859343 ], [ -77.035081, 38.859377 ], [ -77.035103, 38.859393 ], [ -77.035103, 38.859410 ], [ -77.035124, 38.859427 ], [ -77.035146, 38.859443 ], [ -77.035167, 38.859460 ], [ -77.035167, 38.859477 ], [ -77.035189, 38.859510 ], [ -77.035210, 38.859544 ], [ -77.035232, 38.859560 ], [ -77.035253, 38.859577 ], [ -77.035275, 38.859594 ], [ -77.035296, 38.859627 ], [ -77.035296, 38.859644 ], [ -77.035317, 38.859661 ], [ -77.035317, 38.859677 ], [ -77.035360, 38.859711 ], [ -77.035360, 38.859728 ], [ -77.035382, 38.859744 ], [ -77.035403, 38.859778 ], [ -77.035425, 38.859794 ], [ -77.035468, 38.859811 ], [ -77.035511, 38.859828 ], [ -77.035532, 38.859844 ], [ -77.035575, 38.859878 ], [ -77.035618, 38.859895 ], [ -77.035639, 38.859911 ], [ -77.035661, 38.859928 ], [ -77.035682, 38.859945 ], [ -77.035704, 38.859961 ], [ -77.035725, 38.859978 ], [ -77.035747, 38.859995 ], [ -77.035747, 38.860012 ], [ -77.035789, 38.860028 ], [ -77.035811, 38.860045 ], [ -77.035832, 38.860078 ], [ -77.035854, 38.860095 ], [ -77.035897, 38.860129 ], [ -77.035897, 38.860145 ], [ -77.035918, 38.860162 ], [ -77.035940, 38.860179 ], [ -77.035961, 38.860195 ], [ -77.035983, 38.860212 ], [ -77.036004, 38.860229 ], [ -77.036026, 38.860262 ], [ -77.036047, 38.860279 ], [ -77.036090, 38.860312 ], [ -77.036111, 38.860329 ], [ -77.036133, 38.860346 ], [ -77.036176, 38.860379 ], [ -77.036197, 38.860396 ], [ -77.036219, 38.860413 ], [ -77.036262, 38.860446 ], [ -77.036283, 38.860463 ], [ -77.036304, 38.860479 ], [ -77.036326, 38.860496 ], [ -77.036369, 38.860530 ], [ -77.036390, 38.860546 ], [ -77.036433, 38.860563 ], [ -77.036455, 38.860596 ], [ -77.036498, 38.860613 ], [ -77.036519, 38.860630 ], [ -77.036541, 38.860663 ], [ -77.036583, 38.860680 ], [ -77.036605, 38.860697 ], [ -77.036648, 38.860730 ], [ -77.036648, 38.860747 ], [ -77.036691, 38.860763 ], [ -77.036712, 38.860797 ], [ -77.036734, 38.860814 ], [ -77.036777, 38.860847 ], [ -77.036798, 38.860880 ], [ -77.036819, 38.860897 ], [ -77.036819, 38.860931 ], [ -77.036841, 38.860964 ], [ -77.036841, 38.860981 ], [ -77.036841, 38.861014 ], [ -77.036819, 38.861031 ], [ -77.036798, 38.861031 ], [ -77.036777, 38.861047 ], [ -77.036777, 38.861064 ], [ -77.036777, 38.861098 ], [ -77.036798, 38.861114 ], [ -77.036819, 38.861114 ], [ -77.036862, 38.861131 ], [ -77.036884, 38.861148 ], [ -77.036927, 38.861148 ], [ -77.036970, 38.861148 ], [ -77.037013, 38.861148 ], [ -77.037055, 38.861164 ], [ -77.037098, 38.861164 ], [ -77.037141, 38.861148 ], [ -77.037184, 38.861148 ], [ -77.037206, 38.861148 ], [ -77.037249, 38.861148 ], [ -77.037292, 38.861148 ], [ -77.037334, 38.861148 ], [ -77.037356, 38.861148 ], [ -77.037399, 38.861148 ], [ -77.037420, 38.861164 ], [ -77.037463, 38.861164 ], [ -77.037485, 38.861181 ], [ -77.037506, 38.861198 ], [ -77.037528, 38.861215 ], [ -77.037549, 38.861231 ], [ -77.037570, 38.861265 ], [ -77.037592, 38.861298 ], [ -77.037613, 38.861315 ], [ -77.037635, 38.861332 ], [ -77.037635, 38.861365 ], [ -77.037635, 38.861382 ], [ -77.037635, 38.861415 ], [ -77.037635, 38.861432 ], [ -77.037635, 38.861465 ], [ -77.037656, 38.861482 ], [ -77.037656, 38.861515 ], [ -77.037678, 38.861549 ], [ -77.037699, 38.861582 ], [ -77.037699, 38.861599 ], [ -77.037678, 38.861616 ], [ -77.037678, 38.861632 ], [ -77.037678, 38.861666 ], [ -77.037699, 38.861666 ], [ -77.037721, 38.861682 ], [ -77.037742, 38.861716 ], [ -77.037742, 38.861733 ], [ -77.037742, 38.861749 ], [ -77.037764, 38.861799 ], [ -77.037764, 38.861816 ], [ -77.037764, 38.861833 ], [ -77.037785, 38.861849 ], [ -77.037785, 38.861883 ], [ -77.037807, 38.861916 ], [ -77.037807, 38.861950 ], [ -77.037807, 38.861983 ], [ -77.037807, 38.862000 ], [ -77.037828, 38.862017 ], [ -77.037828, 38.862050 ], [ -77.037828, 38.862083 ], [ -77.037849, 38.862117 ], [ -77.037849, 38.862150 ], [ -77.037849, 38.862167 ], [ -77.037849, 38.862184 ], [ -77.037871, 38.862217 ], [ -77.037871, 38.862250 ], [ -77.037871, 38.862267 ], [ -77.037871, 38.862284 ], [ -77.037871, 38.862301 ], [ -77.037871, 38.862334 ], [ -77.037871, 38.862351 ], [ -77.037892, 38.862384 ], [ -77.037892, 38.862418 ], [ -77.037892, 38.862451 ], [ -77.037892, 38.862468 ], [ -77.037892, 38.862501 ], [ -77.037892, 38.862518 ], [ -77.037892, 38.862535 ], [ -77.037914, 38.862568 ], [ -77.037914, 38.862601 ], [ -77.037914, 38.862635 ], [ -77.037935, 38.862668 ], [ -77.037935, 38.862702 ], [ -77.037957, 38.862735 ], [ -77.037957, 38.862768 ], [ -77.037957, 38.862802 ], [ -77.037957, 38.862819 ], [ -77.037957, 38.862852 ], [ -77.037957, 38.862885 ], [ -77.037978, 38.862919 ], [ -77.037978, 38.862952 ], [ -77.037978, 38.862986 ], [ -77.038000, 38.863002 ], [ -77.038000, 38.863036 ], [ -77.038000, 38.863069 ], [ -77.038000, 38.863103 ], [ -77.038000, 38.863119 ], [ -77.038000, 38.863153 ], [ -77.038000, 38.863186 ], [ -77.038000, 38.863220 ], [ -77.038021, 38.863236 ], [ -77.038043, 38.863253 ], [ -77.038064, 38.863270 ], [ -77.038085, 38.863286 ], [ -77.038107, 38.863303 ], [ -77.038128, 38.863303 ], [ -77.038150, 38.863320 ], [ -77.038150, 38.863337 ], [ -77.038171, 38.863353 ], [ -77.038193, 38.863353 ], [ -77.038236, 38.863370 ], [ -77.038257, 38.863370 ], [ -77.038300, 38.863370 ], [ -77.038343, 38.863370 ], [ -77.038364, 38.863370 ], [ -77.038407, 38.863370 ], [ -77.038450, 38.863370 ], [ -77.038493, 38.863353 ], [ -77.038515, 38.863353 ], [ -77.038558, 38.863353 ], [ -77.038579, 38.863353 ], [ -77.038600, 38.863353 ], [ -77.038643, 38.863353 ], [ -77.038665, 38.863353 ], [ -77.038686, 38.863353 ], [ -77.038729, 38.863337 ], [ -77.038751, 38.863337 ], [ -77.038794, 38.863337 ], [ -77.038836, 38.863337 ], [ -77.038858, 38.863337 ], [ -77.038901, 38.863337 ], [ -77.038944, 38.863337 ], [ -77.038987, 38.863337 ], [ -77.039030, 38.863337 ], [ -77.039073, 38.863337 ], [ -77.039094, 38.863337 ], [ -77.039137, 38.863320 ], [ -77.039158, 38.863320 ], [ -77.039180, 38.863320 ], [ -77.039223, 38.863320 ], [ -77.039244, 38.863320 ], [ -77.039287, 38.863320 ], [ -77.039309, 38.863320 ], [ -77.039330, 38.863320 ], [ -77.039373, 38.863320 ], [ -77.039394, 38.863320 ], [ -77.039416, 38.863303 ], [ -77.039459, 38.863303 ], [ -77.039480, 38.863303 ], [ -77.039523, 38.863303 ], [ -77.039566, 38.863286 ], [ -77.039587, 38.863286 ], [ -77.039630, 38.863270 ], [ -77.039652, 38.863253 ], [ -77.039695, 38.863253 ], [ -77.039738, 38.863236 ], [ -77.039759, 38.863220 ], [ -77.039781, 38.863220 ], [ -77.039802, 38.863203 ], [ -77.039802, 38.863169 ], [ -77.039802, 38.863136 ], [ -77.039802, 38.863103 ], [ -77.039802, 38.863086 ], [ -77.039802, 38.863052 ], [ -77.039802, 38.863036 ], [ -77.039802, 38.863002 ], [ -77.039802, 38.862969 ], [ -77.039802, 38.862952 ], [ -77.039802, 38.862936 ], [ -77.039802, 38.862919 ], [ -77.039802, 38.862885 ], [ -77.039802, 38.862869 ], [ -77.039802, 38.862852 ], [ -77.039802, 38.862819 ], [ -77.039824, 38.862785 ], [ -77.039824, 38.862768 ], [ -77.039824, 38.862752 ], [ -77.039845, 38.862718 ], [ -77.039845, 38.862685 ], [ -77.039866, 38.862668 ], [ -77.039909, 38.862635 ], [ -77.039931, 38.862601 ], [ -77.039952, 38.862585 ], [ -77.039974, 38.862568 ], [ -77.039995, 38.862551 ], [ -77.040017, 38.862535 ], [ -77.040060, 38.862518 ], [ -77.040081, 38.862501 ], [ -77.040102, 38.862468 ], [ -77.040124, 38.862451 ], [ -77.040167, 38.862434 ], [ -77.040188, 38.862418 ], [ -77.040231, 38.862401 ], [ -77.040253, 38.862401 ], [ -77.040274, 38.862384 ], [ -77.040296, 38.862384 ], [ -77.040339, 38.862367 ], [ -77.040360, 38.862367 ], [ -77.040403, 38.862384 ], [ -77.040446, 38.862401 ], [ -77.040467, 38.862418 ], [ -77.040489, 38.862434 ], [ -77.040532, 38.862451 ], [ -77.040553, 38.862451 ], [ -77.040575, 38.862468 ], [ -77.040596, 38.862468 ], [ -77.040617, 38.862484 ], [ -77.040639, 38.862501 ], [ -77.040660, 38.862501 ], [ -77.040682, 38.862518 ], [ -77.040725, 38.862535 ], [ -77.040746, 38.862551 ], [ -77.040768, 38.862551 ], [ -77.040789, 38.862568 ], [ -77.040811, 38.862585 ], [ -77.040832, 38.862601 ], [ -77.040875, 38.862618 ], [ -77.040896, 38.862651 ], [ -77.040918, 38.862668 ], [ -77.040939, 38.862685 ], [ -77.040961, 38.862702 ], [ -77.041004, 38.862735 ], [ -77.041025, 38.862752 ], [ -77.041047, 38.862768 ], [ -77.041068, 38.862785 ], [ -77.041111, 38.862802 ], [ -77.041132, 38.862835 ], [ -77.041154, 38.862835 ], [ -77.041197, 38.862852 ], [ -77.041218, 38.862852 ], [ -77.041240, 38.862869 ], [ -77.041261, 38.862885 ], [ -77.041283, 38.862902 ], [ -77.041304, 38.862936 ], [ -77.041326, 38.862952 ], [ -77.041326, 38.862969 ], [ -77.041411, 38.863019 ], [ -77.041454, 38.863052 ], [ -77.041454, 38.863069 ], [ -77.041476, 38.863069 ], [ -77.041497, 38.863086 ], [ -77.041519, 38.863103 ], [ -77.041540, 38.863119 ], [ -77.041562, 38.863136 ], [ -77.041583, 38.863169 ], [ -77.041626, 38.863186 ], [ -77.041669, 38.863203 ], [ -77.041669, 38.863220 ], [ -77.041712, 38.863236 ], [ -77.041755, 38.863253 ], [ -77.041798, 38.863270 ], [ -77.041841, 38.863286 ], [ -77.041883, 38.863286 ], [ -77.041905, 38.863303 ], [ -77.041948, 38.863303 ], [ -77.041991, 38.863320 ], [ -77.042034, 38.863337 ], [ -77.042055, 38.863353 ], [ -77.042098, 38.863370 ], [ -77.042120, 38.863370 ], [ -77.042162, 38.863387 ], [ -77.042184, 38.863403 ], [ -77.042227, 38.863420 ], [ -77.042270, 38.863420 ], [ -77.042291, 38.863437 ], [ -77.042334, 38.863437 ], [ -77.042377, 38.863453 ], [ -77.042420, 38.863453 ], [ -77.042463, 38.863453 ], [ -77.042484, 38.863453 ], [ -77.042506, 38.863437 ], [ -77.042527, 38.863437 ], [ -77.042549, 38.863420 ], [ -77.042570, 38.863403 ], [ -77.042592, 38.863370 ], [ -77.042592, 38.863353 ], [ -77.042592, 38.863337 ], [ -77.042656, 38.863303 ], [ -77.042763, 38.863370 ], [ -77.042720, 38.863420 ], [ -77.042720, 38.863437 ], [ -77.042699, 38.863470 ], [ -77.042677, 38.863487 ], [ -77.042634, 38.863504 ], [ -77.042634, 38.863520 ], [ -77.042634, 38.863537 ], [ -77.042634, 38.863554 ], [ -77.042441, 38.863938 ], [ -77.042527, 38.863704 ], [ -77.042506, 38.863687 ], [ -77.042463, 38.863687 ], [ -77.042420, 38.863687 ], [ -77.042398, 38.863687 ], [ -77.042356, 38.863704 ], [ -77.042334, 38.863704 ], [ -77.042291, 38.863721 ], [ -77.042270, 38.863721 ], [ -77.042227, 38.863721 ], [ -77.042205, 38.863738 ], [ -77.042184, 38.863754 ], [ -77.042120, 38.863754 ], [ -77.042098, 38.863754 ], [ -77.042055, 38.863754 ], [ -77.042034, 38.863738 ], [ -77.041991, 38.863738 ], [ -77.041948, 38.863721 ], [ -77.041926, 38.863704 ], [ -77.041883, 38.863704 ], [ -77.041862, 38.863704 ], [ -77.041819, 38.863687 ], [ -77.041798, 38.863687 ], [ -77.041776, 38.863671 ], [ -77.041733, 38.863671 ], [ -77.041712, 38.863671 ], [ -77.041690, 38.863671 ], [ -77.041669, 38.863671 ], [ -77.041626, 38.863671 ], [ -77.041583, 38.863671 ], [ -77.041540, 38.863671 ], [ -77.041497, 38.863671 ], [ -77.041454, 38.863671 ], [ -77.041411, 38.863671 ], [ -77.041368, 38.863687 ], [ -77.041347, 38.863687 ], [ -77.041304, 38.863687 ], [ -77.041283, 38.863687 ], [ -77.041283, 38.863704 ], [ -77.041218, 38.863738 ], [ -77.041197, 38.863738 ], [ -77.041154, 38.863738 ], [ -77.041132, 38.863738 ], [ -77.041090, 38.863738 ], [ -77.041068, 38.863738 ], [ -77.041025, 38.863738 ], [ -77.040982, 38.863738 ], [ -77.040961, 38.863671 ], [ -77.040918, 38.863654 ], [ -77.040896, 38.863654 ], [ -77.040854, 38.863654 ], [ -77.040832, 38.863654 ], [ -77.040789, 38.863654 ], [ -77.040746, 38.863654 ], [ -77.040725, 38.863671 ], [ -77.040703, 38.863671 ], [ -77.040660, 38.863671 ], [ -77.040639, 38.863671 ], [ -77.040617, 38.863687 ], [ -77.040575, 38.863687 ], [ -77.040553, 38.863687 ], [ -77.040532, 38.863687 ], [ -77.040489, 38.863687 ], [ -77.040467, 38.863687 ], [ -77.040446, 38.863687 ], [ -77.040403, 38.863687 ], [ -77.040381, 38.863704 ], [ -77.040360, 38.863704 ], [ -77.040317, 38.863704 ], [ -77.040231, 38.863721 ], [ -77.040210, 38.863738 ], [ -77.040167, 38.863754 ], [ -77.040124, 38.863754 ], [ -77.040102, 38.863771 ], [ -77.040081, 38.863771 ], [ -77.040060, 38.863771 ], [ -77.040038, 38.863771 ], [ -77.039974, 38.863788 ], [ -77.039931, 38.863804 ], [ -77.039888, 38.863804 ], [ -77.039845, 38.863821 ], [ -77.039802, 38.863821 ], [ -77.039759, 38.863838 ], [ -77.039738, 38.863854 ], [ -77.039673, 38.863871 ], [ -77.039630, 38.863871 ], [ -77.039609, 38.863871 ], [ -77.039566, 38.863871 ], [ -77.039545, 38.863871 ], [ -77.039502, 38.863888 ], [ -77.039459, 38.863888 ], [ -77.039416, 38.863888 ], [ -77.039394, 38.863888 ], [ -77.039373, 38.863888 ], [ -77.039330, 38.863888 ], [ -77.039309, 38.863888 ], [ -77.039287, 38.863888 ], [ -77.039266, 38.863888 ], [ -77.039244, 38.863905 ], [ -77.039223, 38.863905 ], [ -77.039180, 38.863905 ], [ -77.039158, 38.863905 ], [ -77.039137, 38.863905 ], [ -77.039115, 38.863905 ], [ -77.039073, 38.863905 ], [ -77.039051, 38.863905 ], [ -77.039030, 38.863905 ], [ -77.038965, 38.863921 ], [ -77.038922, 38.863921 ], [ -77.038879, 38.863921 ], [ -77.038836, 38.863938 ], [ -77.038815, 38.863938 ], [ -77.038794, 38.863938 ], [ -77.038772, 38.863938 ], [ -77.038751, 38.863938 ], [ -77.038708, 38.863955 ], [ -77.038686, 38.863955 ], [ -77.038665, 38.863955 ], [ -77.038643, 38.863971 ], [ -77.038600, 38.863988 ], [ -77.038579, 38.864005 ], [ -77.038536, 38.864005 ], [ -77.038493, 38.863988 ], [ -77.038450, 38.863988 ], [ -77.038407, 38.864005 ], [ -77.038364, 38.864005 ], [ -77.038321, 38.864005 ], [ -77.038279, 38.864022 ], [ -77.038236, 38.864022 ], [ -77.038214, 38.864038 ], [ -77.038193, 38.864055 ], [ -77.038171, 38.864072 ], [ -77.038128, 38.864088 ], [ -77.038107, 38.864105 ], [ -77.038085, 38.864105 ], [ -77.038064, 38.864138 ], [ -77.038043, 38.864155 ], [ -77.038021, 38.864172 ], [ -77.038000, 38.864189 ], [ -77.037978, 38.864205 ], [ -77.037957, 38.864239 ], [ -77.037935, 38.864255 ], [ -77.037935, 38.864272 ], [ -77.037914, 38.864289 ], [ -77.037914, 38.864306 ], [ -77.037892, 38.864322 ], [ -77.037892, 38.864339 ], [ -77.037892, 38.864356 ], [ -77.037871, 38.864372 ], [ -77.037871, 38.864389 ], [ -77.037871, 38.864406 ], [ -77.037849, 38.864439 ], [ -77.037849, 38.864473 ], [ -77.037828, 38.864506 ], [ -77.037807, 38.864539 ], [ -77.037807, 38.864556 ], [ -77.037807, 38.864573 ], [ -77.037785, 38.864590 ], [ -77.037785, 38.864606 ], [ -77.037764, 38.864640 ], [ -77.037764, 38.864690 ], [ -77.037742, 38.864723 ], [ -77.037742, 38.864740 ], [ -77.037742, 38.864773 ], [ -77.037721, 38.864824 ], [ -77.037721, 38.864840 ], [ -77.037721, 38.864874 ], [ -77.037721, 38.864890 ], [ -77.037721, 38.864924 ], [ -77.037742, 38.864940 ], [ -77.037742, 38.864957 ], [ -77.037742, 38.865024 ], [ -77.037721, 38.865041 ], [ -77.037721, 38.865057 ], [ -77.037721, 38.865091 ], [ -77.037721, 38.865108 ], [ -77.037721, 38.865141 ], [ -77.037742, 38.865174 ], [ -77.037742, 38.865224 ], [ -77.037742, 38.865258 ], [ -77.037742, 38.865291 ], [ -77.037742, 38.865325 ], [ -77.037764, 38.865358 ], [ -77.037764, 38.865392 ], [ -77.037764, 38.865425 ], [ -77.037764, 38.865442 ], [ -77.037764, 38.865475 ], [ -77.037785, 38.865509 ], [ -77.037785, 38.865542 ], [ -77.037785, 38.865559 ], [ -77.037785, 38.865592 ], [ -77.037785, 38.865642 ], [ -77.037807, 38.865676 ], [ -77.037828, 38.865709 ], [ -77.037828, 38.865742 ], [ -77.037828, 38.865759 ], [ -77.037828, 38.865793 ], [ -77.037828, 38.865826 ], [ -77.037828, 38.865859 ], [ -77.037849, 38.865893 ], [ -77.037849, 38.865909 ], [ -77.037849, 38.865926 ], [ -77.037849, 38.865943 ], [ -77.037849, 38.865960 ], [ -77.037871, 38.865993 ], [ -77.037871, 38.866026 ], [ -77.037871, 38.866060 ], [ -77.037871, 38.866077 ], [ -77.037871, 38.866110 ], [ -77.037871, 38.866127 ], [ -77.037871, 38.866177 ], [ -77.037892, 38.866210 ], [ -77.037892, 38.866244 ], [ -77.037892, 38.866294 ], [ -77.037914, 38.866327 ], [ -77.037914, 38.866361 ], [ -77.037935, 38.866394 ], [ -77.037935, 38.866444 ], [ -77.037957, 38.866478 ], [ -77.037957, 38.866511 ], [ -77.037978, 38.866544 ], [ -77.037978, 38.866578 ], [ -77.037978, 38.866611 ], [ -77.038000, 38.866661 ], [ -77.038000, 38.866695 ], [ -77.038021, 38.866711 ], [ -77.038021, 38.866745 ], [ -77.038043, 38.866778 ], [ -77.038043, 38.866795 ], [ -77.038064, 38.866845 ], [ -77.038085, 38.866879 ], [ -77.038085, 38.866912 ], [ -77.038107, 38.866945 ], [ -77.038128, 38.866979 ], [ -77.038128, 38.867012 ], [ -77.038128, 38.867046 ], [ -77.038150, 38.867062 ], [ -77.038150, 38.867096 ], [ -77.038150, 38.867112 ], [ -77.038171, 38.867129 ], [ -77.038171, 38.867163 ], [ -77.038193, 38.867196 ], [ -77.038214, 38.867213 ], [ -77.038214, 38.867246 ], [ -77.038236, 38.867263 ], [ -77.038236, 38.867296 ], [ -77.038257, 38.867313 ], [ -77.038257, 38.867346 ], [ -77.038257, 38.867380 ], [ -77.038279, 38.867396 ], [ -77.038279, 38.867413 ], [ -77.038279, 38.867447 ], [ -77.038321, 38.867530 ], [ -77.038343, 38.867547 ], [ -77.038364, 38.867580 ], [ -77.038386, 38.867630 ], [ -77.038407, 38.867680 ], [ -77.038429, 38.867714 ], [ -77.038450, 38.867747 ], [ -77.038472, 38.867781 ], [ -77.038493, 38.867814 ], [ -77.038515, 38.867848 ], [ -77.038515, 38.867898 ], [ -77.038536, 38.867931 ], [ -77.038558, 38.867964 ], [ -77.038579, 38.867998 ], [ -77.038579, 38.868031 ], [ -77.038600, 38.868065 ], [ -77.038600, 38.868098 ], [ -77.038600, 38.868115 ], [ -77.038622, 38.868148 ], [ -77.038643, 38.868165 ], [ -77.038643, 38.868198 ], [ -77.038643, 38.868215 ], [ -77.038665, 38.868265 ], [ -77.038686, 38.868282 ], [ -77.038686, 38.868315 ], [ -77.038708, 38.868332 ], [ -77.038729, 38.868365 ], [ -77.038729, 38.868382 ], [ -77.038751, 38.868432 ], [ -77.038751, 38.868466 ], [ -77.038772, 38.868482 ], [ -77.038794, 38.868516 ], [ -77.038815, 38.868549 ], [ -77.038836, 38.868583 ], [ -77.038858, 38.868616 ], [ -77.038901, 38.868649 ], [ -77.038922, 38.868700 ], [ -77.038944, 38.868733 ], [ -77.038965, 38.868766 ], [ -77.038987, 38.868816 ], [ -77.039008, 38.868867 ], [ -77.039030, 38.868900 ], [ -77.039030, 38.868933 ], [ -77.039051, 38.868967 ], [ -77.039073, 38.869017 ], [ -77.039094, 38.869050 ], [ -77.039115, 38.869067 ], [ -77.039115, 38.869101 ], [ -77.039137, 38.869117 ], [ -77.039158, 38.869151 ], [ -77.039158, 38.869167 ], [ -77.039180, 38.869201 ], [ -77.039180, 38.869234 ], [ -77.039201, 38.869251 ], [ -77.039201, 38.869268 ], [ -77.039223, 38.869301 ], [ -77.039244, 38.869318 ], [ -77.039244, 38.869334 ], [ -77.039309, 38.869468 ], [ -77.039330, 38.869485 ], [ -77.039373, 38.869568 ], [ -77.039394, 38.869585 ], [ -77.039394, 38.869618 ], [ -77.039416, 38.869635 ], [ -77.039437, 38.869652 ], [ -77.039437, 38.869685 ], [ -77.039459, 38.869735 ], [ -77.039480, 38.869752 ], [ -77.039480, 38.869769 ], [ -77.039502, 38.869802 ], [ -77.039502, 38.869819 ], [ -77.039523, 38.869836 ], [ -77.039523, 38.869852 ], [ -77.039545, 38.869869 ], [ -77.039566, 38.869902 ], [ -77.039566, 38.869919 ], [ -77.039587, 38.869936 ], [ -77.039587, 38.869953 ], [ -77.039609, 38.869969 ], [ -77.039630, 38.869986 ], [ -77.039652, 38.870019 ], [ -77.039652, 38.870036 ], [ -77.039673, 38.870053 ], [ -77.039695, 38.870069 ], [ -77.039695, 38.870086 ], [ -77.039716, 38.870103 ], [ -77.039716, 38.870120 ], [ -77.039738, 38.870153 ], [ -77.039759, 38.870170 ], [ -77.039759, 38.870186 ], [ -77.039824, 38.870320 ], [ -77.039845, 38.870337 ], [ -77.039866, 38.870353 ], [ -77.039866, 38.870387 ], [ -77.039888, 38.870404 ], [ -77.039888, 38.870437 ], [ -77.039909, 38.870454 ], [ -77.039931, 38.870487 ], [ -77.039952, 38.870521 ], [ -77.039974, 38.870537 ], [ -77.039995, 38.870554 ], [ -77.039995, 38.870571 ], [ -77.040017, 38.870604 ], [ -77.040038, 38.870621 ], [ -77.040060, 38.870654 ], [ -77.040081, 38.870671 ], [ -77.040081, 38.870704 ], [ -77.040102, 38.870721 ], [ -77.040124, 38.870738 ], [ -77.040124, 38.870771 ], [ -77.040145, 38.870788 ], [ -77.040167, 38.870821 ], [ -77.040188, 38.870855 ], [ -77.040210, 38.870871 ], [ -77.040231, 38.870905 ], [ -77.040253, 38.870922 ], [ -77.040274, 38.870938 ], [ -77.040296, 38.870972 ], [ -77.040317, 38.870988 ], [ -77.040339, 38.871005 ], [ -77.040360, 38.871022 ], [ -77.040381, 38.871055 ], [ -77.040381, 38.871072 ], [ -77.040403, 38.871105 ], [ -77.040424, 38.871139 ], [ -77.040446, 38.871155 ], [ -77.040467, 38.871189 ], [ -77.040489, 38.871206 ], [ -77.040510, 38.871239 ], [ -77.040532, 38.871256 ], [ -77.040553, 38.871289 ], [ -77.040575, 38.871306 ], [ -77.040596, 38.871322 ], [ -77.040617, 38.871356 ], [ -77.040639, 38.871389 ], [ -77.040660, 38.871406 ], [ -77.040682, 38.871439 ], [ -77.040703, 38.871456 ], [ -77.040725, 38.871490 ], [ -77.040746, 38.871506 ], [ -77.040768, 38.871540 ], [ -77.040789, 38.871556 ], [ -77.040832, 38.871573 ], [ -77.040854, 38.871590 ], [ -77.040896, 38.871623 ], [ -77.040918, 38.871640 ], [ -77.040918, 38.871673 ], [ -77.040961, 38.871690 ], [ -77.040982, 38.871707 ], [ -77.041004, 38.871740 ], [ -77.041025, 38.871774 ], [ -77.041047, 38.871807 ], [ -77.041090, 38.871857 ], [ -77.041175, 38.871941 ], [ -77.041240, 38.872024 ], [ -77.041283, 38.872074 ], [ -77.041326, 38.872124 ], [ -77.041390, 38.872208 ], [ -77.041433, 38.872241 ], [ -77.041476, 38.872291 ], [ -77.041519, 38.872342 ], [ -77.041562, 38.872392 ], [ -77.041605, 38.872425 ], [ -77.041626, 38.872475 ], [ -77.041669, 38.872525 ], [ -77.041712, 38.872575 ], [ -77.041755, 38.872609 ], [ -77.041819, 38.872642 ], [ -77.041841, 38.872659 ], [ -77.041862, 38.872676 ], [ -77.041926, 38.872709 ], [ -77.041969, 38.872742 ], [ -77.042034, 38.872776 ], [ -77.042098, 38.872809 ], [ -77.042141, 38.872843 ], [ -77.042162, 38.872876 ], [ -77.042184, 38.872893 ], [ -77.042205, 38.872943 ], [ -77.042205, 38.872960 ], [ -77.042270, 38.873043 ], [ -77.042334, 38.873110 ], [ -77.042377, 38.873177 ], [ -77.042484, 38.873244 ], [ -77.042570, 38.873327 ], [ -77.042656, 38.873411 ], [ -77.042677, 38.873444 ], [ -77.042720, 38.873477 ], [ -77.042763, 38.873511 ], [ -77.042785, 38.873544 ], [ -77.042828, 38.873594 ], [ -77.042849, 38.873628 ], [ -77.042913, 38.873678 ], [ -77.042956, 38.873745 ], [ -77.042999, 38.873795 ], [ -77.043064, 38.873845 ], [ -77.043107, 38.873895 ], [ -77.043171, 38.873945 ], [ -77.043278, 38.874045 ], [ -77.043321, 38.874112 ], [ -77.043386, 38.874162 ], [ -77.043493, 38.874229 ], [ -77.043793, 38.874263 ], [ -77.043858, 38.874279 ], [ -77.043922, 38.874313 ], [ -77.043986, 38.874363 ], [ -77.044051, 38.874396 ], [ -77.044094, 38.874446 ], [ -77.044137, 38.874463 ], [ -77.044158, 38.874497 ], [ -77.044222, 38.874530 ], [ -77.044287, 38.874580 ], [ -77.044351, 38.874630 ], [ -77.044394, 38.874664 ], [ -77.044458, 38.874697 ], [ -77.044501, 38.874747 ], [ -77.044566, 38.874781 ], [ -77.044630, 38.874814 ], [ -77.044673, 38.874864 ], [ -77.044716, 38.874881 ], [ -77.044759, 38.874914 ], [ -77.044802, 38.874931 ], [ -77.044823, 38.874964 ], [ -77.044866, 38.874998 ], [ -77.044909, 38.875014 ], [ -77.044952, 38.875064 ], [ -77.044995, 38.875098 ], [ -77.045059, 38.875131 ], [ -77.045102, 38.875181 ], [ -77.045145, 38.875215 ], [ -77.045188, 38.875248 ], [ -77.045231, 38.875282 ], [ -77.045274, 38.875298 ], [ -77.045295, 38.875315 ], [ -77.045338, 38.875348 ], [ -77.045360, 38.875365 ], [ -77.045403, 38.875399 ], [ -77.045424, 38.875415 ], [ -77.045424, 38.875432 ], [ -77.045467, 38.875449 ], [ -77.045510, 38.875465 ], [ -77.045553, 38.875499 ], [ -77.045574, 38.875499 ], [ -77.045596, 38.875516 ], [ -77.045617, 38.875516 ], [ -77.045639, 38.875532 ], [ -77.045660, 38.875549 ], [ -77.045681, 38.875566 ], [ -77.045724, 38.875582 ], [ -77.045746, 38.875582 ], [ -77.045767, 38.875582 ], [ -77.045810, 38.875599 ], [ -77.045832, 38.875599 ], [ -77.045853, 38.875616 ], [ -77.045896, 38.875616 ], [ -77.045918, 38.875616 ], [ -77.045960, 38.875616 ], [ -77.046003, 38.875616 ], [ -77.046046, 38.875616 ], [ -77.046068, 38.875616 ], [ -77.046111, 38.875616 ], [ -77.046154, 38.875599 ], [ -77.046196, 38.875599 ], [ -77.046239, 38.875599 ], [ -77.046261, 38.875582 ], [ -77.046304, 38.875582 ], [ -77.046325, 38.875566 ], [ -77.046347, 38.875549 ], [ -77.046368, 38.875549 ], [ -77.046390, 38.875532 ], [ -77.046432, 38.875532 ], [ -77.046454, 38.875516 ], [ -77.046475, 38.875499 ], [ -77.046497, 38.875482 ], [ -77.046540, 38.875465 ], [ -77.046561, 38.875465 ], [ -77.046583, 38.875449 ], [ -77.046626, 38.875432 ], [ -77.046647, 38.875415 ], [ -77.046690, 38.875399 ], [ -77.046733, 38.875382 ], [ -77.046776, 38.875365 ], [ -77.046797, 38.875348 ], [ -77.046819, 38.875332 ], [ -77.046905, 38.875282 ], [ -77.046990, 38.875232 ], [ -77.047055, 38.875181 ], [ -77.047076, 38.875148 ], [ -77.047098, 38.875131 ], [ -77.047119, 38.875115 ], [ -77.047141, 38.875098 ], [ -77.047162, 38.875064 ], [ -77.047162, 38.875048 ], [ -77.047184, 38.875014 ], [ -77.047205, 38.874998 ], [ -77.047205, 38.874981 ], [ -77.047205, 38.874964 ], [ -77.047226, 38.874914 ], [ -77.047226, 38.874897 ], [ -77.047226, 38.874881 ], [ -77.047205, 38.874847 ], [ -77.047205, 38.874831 ], [ -77.047184, 38.874797 ], [ -77.047184, 38.874781 ], [ -77.047184, 38.874764 ], [ -77.047162, 38.874730 ], [ -77.047162, 38.874714 ], [ -77.047141, 38.874697 ], [ -77.047141, 38.874680 ], [ -77.047141, 38.874664 ], [ -77.047119, 38.874647 ], [ -77.047119, 38.874613 ], [ -77.047076, 38.874547 ], [ -77.047055, 38.874547 ], [ -77.047033, 38.874530 ], [ -77.047012, 38.874513 ], [ -77.046990, 38.874480 ], [ -77.046969, 38.874463 ], [ -77.046947, 38.874463 ], [ -77.046926, 38.874446 ], [ -77.046905, 38.874430 ], [ -77.046905, 38.874413 ], [ -77.046883, 38.874396 ], [ -77.046862, 38.874380 ], [ -77.046862, 38.874363 ], [ -77.046840, 38.874346 ], [ -77.046819, 38.874329 ], [ -77.046797, 38.874313 ], [ -77.046797, 38.874296 ], [ -77.046776, 38.874279 ], [ -77.046754, 38.874263 ], [ -77.046733, 38.874246 ], [ -77.046711, 38.874229 ], [ -77.046711, 38.874213 ], [ -77.046690, 38.874196 ], [ -77.046669, 38.874179 ], [ -77.046626, 38.874146 ], [ -77.046626, 38.874129 ], [ -77.046604, 38.874096 ], [ -77.046583, 38.874079 ], [ -77.046583, 38.874062 ], [ -77.046561, 38.874062 ], [ -77.046540, 38.874045 ], [ -77.046475, 38.874029 ], [ -77.046454, 38.874029 ], [ -77.046432, 38.874012 ], [ -77.046411, 38.873995 ], [ -77.046390, 38.873979 ], [ -77.046390, 38.873962 ], [ -77.046390, 38.873945 ], [ -77.046390, 38.873929 ], [ -77.046390, 38.873895 ], [ -77.046390, 38.873878 ], [ -77.046390, 38.873862 ], [ -77.046368, 38.873812 ], [ -77.046368, 38.873795 ], [ -77.046368, 38.873728 ], [ -77.046368, 38.873711 ], [ -77.046390, 38.873695 ], [ -77.046390, 38.873678 ], [ -77.046390, 38.873645 ], [ -77.046390, 38.873628 ], [ -77.046390, 38.873611 ], [ -77.046411, 38.873594 ], [ -77.046411, 38.873561 ], [ -77.046411, 38.873544 ], [ -77.046432, 38.873528 ], [ -77.046432, 38.873511 ], [ -77.046432, 38.873494 ], [ -77.046454, 38.873461 ], [ -77.046475, 38.873411 ], [ -77.046497, 38.873394 ], [ -77.046497, 38.873361 ], [ -77.046497, 38.873344 ], [ -77.046518, 38.873327 ], [ -77.046518, 38.873310 ], [ -77.046518, 38.873294 ], [ -77.046518, 38.873260 ], [ -77.046540, 38.873244 ], [ -77.046540, 38.873227 ], [ -77.046540, 38.873210 ], [ -77.046540, 38.873193 ], [ -77.046540, 38.873177 ], [ -77.046540, 38.873160 ], [ -77.046540, 38.873093 ], [ -77.046540, 38.873060 ], [ -77.046540, 38.873043 ], [ -77.046540, 38.873026 ], [ -77.046518, 38.873010 ], [ -77.046518, 38.872976 ], [ -77.046518, 38.872960 ], [ -77.046497, 38.872943 ], [ -77.046497, 38.872926 ], [ -77.046497, 38.872910 ], [ -77.046475, 38.872893 ], [ -77.046454, 38.872876 ], [ -77.046454, 38.872843 ], [ -77.046432, 38.872826 ], [ -77.046432, 38.872809 ], [ -77.046411, 38.872793 ], [ -77.046411, 38.872776 ], [ -77.046411, 38.872759 ], [ -77.046390, 38.872726 ], [ -77.046390, 38.872709 ], [ -77.046368, 38.872676 ], [ -77.046347, 38.872659 ], [ -77.046347, 38.872642 ], [ -77.046325, 38.872626 ], [ -77.046325, 38.872609 ], [ -77.046304, 38.872575 ], [ -77.046304, 38.872559 ], [ -77.046282, 38.872542 ], [ -77.046261, 38.872525 ], [ -77.046261, 38.872509 ], [ -77.046261, 38.872492 ], [ -77.046239, 38.872475 ], [ -77.046239, 38.872458 ], [ -77.046239, 38.872358 ], [ -77.046261, 38.872342 ], [ -77.046261, 38.872325 ], [ -77.046282, 38.872308 ], [ -77.046304, 38.872291 ], [ -77.046304, 38.872275 ], [ -77.046325, 38.872258 ], [ -77.046347, 38.872241 ], [ -77.046347, 38.872208 ], [ -77.046368, 38.872191 ], [ -77.046390, 38.872174 ], [ -77.046390, 38.872158 ], [ -77.046411, 38.872158 ], [ -77.046432, 38.872141 ], [ -77.046454, 38.872124 ], [ -77.046475, 38.872108 ], [ -77.046475, 38.872091 ], [ -77.046497, 38.872074 ], [ -77.046518, 38.872058 ], [ -77.046540, 38.872041 ], [ -77.046540, 38.872024 ], [ -77.046561, 38.872007 ], [ -77.046583, 38.871991 ], [ -77.046604, 38.871991 ], [ -77.046647, 38.871957 ], [ -77.046711, 38.871907 ], [ -77.046754, 38.871890 ], [ -77.046797, 38.871857 ], [ -77.046819, 38.871840 ], [ -77.046840, 38.871840 ], [ -77.046862, 38.871824 ], [ -77.046905, 38.871824 ], [ -77.046926, 38.871824 ], [ -77.046947, 38.871807 ], [ -77.046969, 38.871807 ], [ -77.046990, 38.871790 ], [ -77.047012, 38.871790 ], [ -77.047055, 38.871790 ], [ -77.047076, 38.871790 ], [ -77.047098, 38.871790 ], [ -77.047119, 38.871774 ], [ -77.047141, 38.871774 ], [ -77.047184, 38.871774 ], [ -77.047205, 38.871757 ], [ -77.047226, 38.871757 ], [ -77.047269, 38.871757 ], [ -77.047355, 38.871740 ], [ -77.047377, 38.871723 ], [ -77.047420, 38.871723 ], [ -77.047441, 38.871723 ], [ -77.047484, 38.871723 ], [ -77.047505, 38.871707 ], [ -77.047527, 38.871707 ], [ -77.047548, 38.871690 ], [ -77.047591, 38.871690 ], [ -77.047613, 38.871690 ], [ -77.047634, 38.871673 ], [ -77.047677, 38.871673 ], [ -77.047698, 38.871673 ], [ -77.047763, 38.871657 ], [ -77.047806, 38.871657 ], [ -77.047827, 38.871657 ], [ -77.047849, 38.871657 ], [ -77.047870, 38.871640 ], [ -77.047913, 38.871640 ], [ -77.047956, 38.871623 ], [ -77.047977, 38.871623 ], [ -77.048063, 38.871590 ], [ -77.048106, 38.871573 ], [ -77.048128, 38.871573 ], [ -77.048149, 38.871573 ], [ -77.048213, 38.871573 ], [ -77.048278, 38.871556 ], [ -77.048321, 38.871540 ], [ -77.048364, 38.871540 ], [ -77.048385, 38.871523 ], [ -77.048407, 38.871523 ], [ -77.048450, 38.871506 ], [ -77.048492, 38.871490 ], [ -77.048535, 38.871473 ], [ -77.048557, 38.871473 ], [ -77.048621, 38.871456 ], [ -77.048664, 38.871439 ], [ -77.048707, 38.871439 ], [ -77.048728, 38.871423 ], [ -77.048750, 38.871423 ], [ -77.048793, 38.871406 ], [ -77.048814, 38.871406 ], [ -77.048836, 38.871389 ], [ -77.048900, 38.871356 ], [ -77.048922, 38.871339 ], [ -77.048965, 38.871356 ], [ -77.049029, 38.871339 ], [ -77.049050, 38.871339 ], [ -77.049072, 38.871339 ], [ -77.049115, 38.871322 ], [ -77.049158, 38.871306 ], [ -77.049179, 38.871306 ], [ -77.049201, 38.871306 ], [ -77.049243, 38.871306 ], [ -77.049265, 38.871306 ], [ -77.049329, 38.871322 ], [ -77.049372, 38.871322 ], [ -77.049437, 38.871339 ], [ -77.049458, 38.871339 ], [ -77.049479, 38.871356 ], [ -77.049501, 38.871356 ], [ -77.049522, 38.871373 ], [ -77.049544, 38.871373 ], [ -77.049565, 38.871389 ], [ -77.049587, 38.871406 ], [ -77.049608, 38.871406 ], [ -77.049630, 38.871423 ], [ -77.049651, 38.871423 ], [ -77.049694, 38.871439 ], [ -77.049737, 38.871456 ], [ -77.049758, 38.871473 ], [ -77.049780, 38.871473 ], [ -77.049801, 38.871490 ], [ -77.049823, 38.871490 ], [ -77.049844, 38.871506 ], [ -77.049866, 38.871523 ], [ -77.049887, 38.871523 ], [ -77.049909, 38.871540 ], [ -77.049930, 38.871540 ], [ -77.049952, 38.871556 ], [ -77.049973, 38.871556 ], [ -77.050016, 38.871590 ], [ -77.050037, 38.871590 ], [ -77.050059, 38.871606 ], [ -77.050080, 38.871623 ], [ -77.050102, 38.871623 ], [ -77.050123, 38.871640 ], [ -77.050145, 38.871640 ], [ -77.050231, 38.871690 ], [ -77.050252, 38.871707 ], [ -77.050273, 38.871723 ], [ -77.050316, 38.871757 ], [ -77.050359, 38.871790 ], [ -77.050359, 38.871807 ], [ -77.050402, 38.871840 ], [ -77.050424, 38.871840 ], [ -77.050424, 38.871857 ], [ -77.050445, 38.871874 ], [ -77.050445, 38.871890 ], [ -77.050467, 38.871907 ], [ -77.050488, 38.871924 ], [ -77.050531, 38.871957 ], [ -77.050552, 38.871974 ], [ -77.050552, 38.871991 ], [ -77.050574, 38.872024 ], [ -77.050595, 38.872041 ], [ -77.050617, 38.872058 ], [ -77.050703, 38.872174 ], [ -77.050788, 38.872342 ], [ -77.050788, 38.872375 ], [ -77.051024, 38.872726 ], [ -77.051218, 38.873010 ], [ -77.051411, 38.873310 ], [ -77.051411, 38.873344 ], [ -77.051454, 38.873361 ], [ -77.051475, 38.873444 ], [ -77.051497, 38.873461 ], [ -77.051518, 38.873494 ], [ -77.051518, 38.873528 ], [ -77.051561, 38.873578 ], [ -77.051604, 38.873661 ], [ -77.051625, 38.873745 ], [ -77.051625, 38.873778 ], [ -77.051647, 38.873795 ], [ -77.051647, 38.873845 ], [ -77.051668, 38.873862 ], [ -77.051668, 38.873878 ], [ -77.051668, 38.873912 ], [ -77.051690, 38.873929 ], [ -77.051690, 38.873945 ], [ -77.051690, 38.873962 ], [ -77.051690, 38.873995 ], [ -77.051690, 38.874012 ], [ -77.051690, 38.874045 ], [ -77.051690, 38.874062 ], [ -77.051690, 38.874079 ], [ -77.051690, 38.874112 ], [ -77.051690, 38.874129 ], [ -77.051690, 38.874146 ], [ -77.051690, 38.874179 ], [ -77.051690, 38.874196 ], [ -77.051690, 38.874229 ], [ -77.051690, 38.874246 ], [ -77.051690, 38.874279 ], [ -77.051690, 38.874296 ], [ -77.051690, 38.874329 ], [ -77.051690, 38.874346 ], [ -77.051690, 38.874380 ], [ -77.051690, 38.874396 ], [ -77.051690, 38.874463 ], [ -77.051690, 38.874497 ], [ -77.051690, 38.874513 ], [ -77.051690, 38.874530 ], [ -77.051690, 38.874563 ], [ -77.051711, 38.874580 ], [ -77.051711, 38.874613 ], [ -77.051711, 38.874630 ], [ -77.051690, 38.874664 ], [ -77.051690, 38.874680 ], [ -77.051690, 38.874697 ], [ -77.051690, 38.874730 ], [ -77.051690, 38.874747 ], [ -77.051690, 38.874781 ], [ -77.051690, 38.874797 ], [ -77.051668, 38.874831 ], [ -77.051668, 38.874847 ], [ -77.051668, 38.874881 ], [ -77.051668, 38.874897 ], [ -77.051668, 38.874931 ], [ -77.051668, 38.874964 ], [ -77.051647, 38.874981 ], [ -77.051647, 38.875014 ], [ -77.051647, 38.875031 ], [ -77.051647, 38.875064 ], [ -77.051647, 38.875081 ], [ -77.051647, 38.875098 ], [ -77.051625, 38.875115 ], [ -77.051625, 38.875131 ], [ -77.051625, 38.875165 ], [ -77.051604, 38.875198 ], [ -77.051604, 38.875215 ], [ -77.051604, 38.875265 ], [ -77.051604, 38.875282 ], [ -77.051539, 38.875298 ], [ -77.051539, 38.875315 ], [ -77.051539, 38.875332 ], [ -77.051539, 38.875348 ], [ -77.051539, 38.875365 ], [ -77.051539, 38.875382 ], [ -77.051539, 38.875415 ], [ -77.051539, 38.875449 ], [ -77.051539, 38.875465 ], [ -77.051539, 38.875499 ], [ -77.051518, 38.875532 ], [ -77.051518, 38.875566 ], [ -77.051561, 38.875616 ], [ -77.051539, 38.875666 ], [ -77.051518, 38.875683 ], [ -77.051518, 38.875716 ], [ -77.051518, 38.875766 ], [ -77.051497, 38.875783 ], [ -77.051497, 38.875816 ], [ -77.051497, 38.875833 ], [ -77.051497, 38.875866 ], [ -77.051475, 38.875883 ], [ -77.051475, 38.875900 ], [ -77.051475, 38.875933 ], [ -77.051454, 38.875967 ], [ -77.051454, 38.875983 ], [ -77.051432, 38.876017 ], [ -77.051432, 38.876033 ], [ -77.051411, 38.876067 ], [ -77.051411, 38.876084 ], [ -77.051411, 38.876100 ], [ -77.051411, 38.876134 ], [ -77.051411, 38.876150 ], [ -77.051411, 38.876184 ], [ -77.051432, 38.876200 ], [ -77.051432, 38.876234 ], [ -77.051432, 38.876267 ], [ -77.051432, 38.876284 ], [ -77.051432, 38.876317 ], [ -77.051454, 38.876334 ], [ -77.051454, 38.876367 ], [ -77.051475, 38.876384 ], [ -77.051475, 38.876401 ], [ -77.051475, 38.876434 ], [ -77.051497, 38.876451 ], [ -77.051497, 38.876484 ], [ -77.051518, 38.876518 ], [ -77.051518, 38.876535 ], [ -77.051518, 38.876568 ], [ -77.051539, 38.876585 ], [ -77.051561, 38.876601 ], [ -77.051561, 38.876635 ], [ -77.051582, 38.876651 ], [ -77.051604, 38.876668 ], [ -77.051604, 38.876702 ], [ -77.051625, 38.876718 ], [ -77.051647, 38.876752 ], [ -77.051668, 38.876768 ], [ -77.051668, 38.876785 ], [ -77.051690, 38.876802 ], [ -77.051690, 38.876835 ], [ -77.051711, 38.876852 ], [ -77.051733, 38.876869 ], [ -77.051733, 38.876902 ], [ -77.051754, 38.876919 ], [ -77.051775, 38.876935 ], [ -77.051797, 38.876952 ], [ -77.051840, 38.876969 ], [ -77.051861, 38.876986 ], [ -77.051883, 38.877002 ], [ -77.051904, 38.877019 ], [ -77.051926, 38.877052 ], [ -77.051947, 38.877069 ], [ -77.051969, 38.877086 ], [ -77.051990, 38.877102 ], [ -77.051990, 38.877136 ], [ -77.052011, 38.877169 ], [ -77.052054, 38.877186 ], [ -77.052076, 38.877219 ], [ -77.052097, 38.877253 ], [ -77.052119, 38.877286 ], [ -77.052140, 38.877320 ], [ -77.052162, 38.877336 ], [ -77.052183, 38.877370 ], [ -77.052205, 38.877403 ], [ -77.052226, 38.877420 ], [ -77.052248, 38.877453 ], [ -77.052269, 38.877470 ], [ -77.052312, 38.877503 ], [ -77.052333, 38.877520 ], [ -77.052355, 38.877554 ], [ -77.052376, 38.877587 ], [ -77.052398, 38.877604 ], [ -77.052419, 38.877637 ], [ -77.052441, 38.877670 ], [ -77.052462, 38.877687 ], [ -77.052484, 38.877721 ], [ -77.052505, 38.877737 ], [ -77.052526, 38.877754 ], [ -77.052548, 38.877787 ], [ -77.052569, 38.877804 ], [ -77.052591, 38.877837 ], [ -77.052612, 38.877854 ], [ -77.052634, 38.877888 ], [ -77.052655, 38.877904 ], [ -77.052677, 38.877938 ], [ -77.052698, 38.877954 ], [ -77.052720, 38.877971 ], [ -77.052741, 38.878005 ], [ -77.052763, 38.878038 ], [ -77.052805, 38.878055 ], [ -77.052827, 38.878071 ], [ -77.052848, 38.878105 ], [ -77.052891, 38.878138 ], [ -77.052913, 38.878155 ], [ -77.052934, 38.878188 ], [ -77.052956, 38.878205 ], [ -77.052999, 38.878238 ], [ -77.053020, 38.878255 ], [ -77.053041, 38.878289 ], [ -77.053084, 38.878305 ], [ -77.053106, 38.878339 ], [ -77.053149, 38.878355 ], [ -77.053170, 38.878389 ], [ -77.053192, 38.878405 ], [ -77.053213, 38.878439 ], [ -77.053170, 38.878522 ], [ -77.053235, 38.878539 ], [ -77.053299, 38.878572 ], [ -77.053320, 38.878589 ], [ -77.053342, 38.878606 ], [ -77.053363, 38.878639 ], [ -77.053363, 38.878656 ], [ -77.053385, 38.878689 ], [ -77.053406, 38.878706 ], [ -77.053428, 38.878740 ], [ -77.053428, 38.878756 ], [ -77.053449, 38.878790 ], [ -77.053471, 38.878806 ], [ -77.053492, 38.878840 ], [ -77.053492, 38.878856 ], [ -77.053514, 38.878890 ], [ -77.053514, 38.878907 ], [ -77.053514, 38.878940 ], [ -77.053535, 38.878957 ], [ -77.053535, 38.878990 ], [ -77.053535, 38.879007 ], [ -77.053578, 38.879007 ], [ -77.053599, 38.878990 ], [ -77.053621, 38.878973 ], [ -77.053621, 38.878957 ], [ -77.053621, 38.878923 ], [ -77.053621, 38.878890 ], [ -77.053621, 38.878873 ], [ -77.053621, 38.878840 ], [ -77.053642, 38.878823 ], [ -77.053685, 38.878823 ], [ -77.053707, 38.878840 ], [ -77.053728, 38.878856 ], [ -77.053750, 38.878873 ], [ -77.053750, 38.878907 ], [ -77.053771, 38.878923 ], [ -77.053771, 38.878940 ], [ -77.053771, 38.878957 ], [ -77.053750, 38.878990 ], [ -77.053728, 38.879024 ], [ -77.053707, 38.879024 ], [ -77.053685, 38.879040 ], [ -77.053664, 38.879057 ], [ -77.053664, 38.879090 ], [ -77.053642, 38.879107 ], [ -77.053664, 38.879124 ], [ -77.053664, 38.879140 ], [ -77.053685, 38.879174 ], [ -77.053707, 38.879191 ], [ -77.053707, 38.879224 ], [ -77.053728, 38.879241 ], [ -77.053750, 38.879257 ], [ -77.053750, 38.879274 ], [ -77.053792, 38.879307 ], [ -77.053814, 38.879341 ], [ -77.053857, 38.879391 ], [ -77.053900, 38.879441 ], [ -77.053900, 38.879458 ], [ -77.053921, 38.879491 ], [ -77.053964, 38.879525 ], [ -77.053986, 38.879558 ], [ -77.054007, 38.879575 ], [ -77.054050, 38.879608 ], [ -77.054071, 38.879642 ], [ -77.054114, 38.879675 ], [ -77.054136, 38.879708 ], [ -77.054157, 38.879742 ], [ -77.054200, 38.879775 ], [ -77.054243, 38.879792 ], [ -77.054265, 38.879825 ], [ -77.054307, 38.879859 ], [ -77.054350, 38.879875 ], [ -77.054393, 38.879909 ], [ -77.054436, 38.879942 ], [ -77.054458, 38.879942 ], [ -77.054501, 38.879976 ], [ -77.054522, 38.879992 ], [ -77.054565, 38.880026 ], [ -77.054608, 38.880059 ], [ -77.054672, 38.880076 ], [ -77.054715, 38.880109 ], [ -77.054758, 38.880126 ], [ -77.054801, 38.880159 ], [ -77.054844, 38.880176 ], [ -77.054887, 38.880193 ], [ -77.054930, 38.880193 ], [ -77.054973, 38.880209 ], [ -77.055016, 38.880226 ], [ -77.055058, 38.880243 ], [ -77.055123, 38.880243 ], [ -77.055144, 38.880260 ], [ -77.055209, 38.880276 ], [ -77.055252, 38.880276 ], [ -77.055273, 38.880293 ], [ -77.055316, 38.880293 ], [ -77.055337, 38.880276 ], [ -77.055316, 38.880260 ], [ -77.055316, 38.880243 ], [ -77.055273, 38.880209 ], [ -77.055316, 38.880226 ], [ -77.055359, 38.880226 ], [ -77.055380, 38.880243 ], [ -77.055402, 38.880260 ], [ -77.055466, 38.880243 ], [ -77.055488, 38.880276 ], [ -77.055509, 38.880293 ], [ -77.055573, 38.880343 ], [ -77.055638, 38.880326 ], [ -77.055702, 38.880326 ], [ -77.055724, 38.880326 ], [ -77.055767, 38.880360 ], [ -77.055809, 38.880360 ], [ -77.055852, 38.880377 ], [ -77.055895, 38.880377 ], [ -77.055938, 38.880377 ], [ -77.056003, 38.880393 ], [ -77.056024, 38.880393 ], [ -77.056067, 38.880393 ], [ -77.056131, 38.880393 ], [ -77.056174, 38.880393 ], [ -77.056217, 38.880393 ], [ -77.056282, 38.880393 ], [ -77.056324, 38.880393 ], [ -77.056389, 38.880427 ], [ -77.056453, 38.880393 ], [ -77.056496, 38.880360 ], [ -77.056539, 38.880377 ], [ -77.056603, 38.880377 ], [ -77.056646, 38.880377 ], [ -77.056711, 38.880360 ], [ -77.056754, 38.880360 ], [ -77.056797, 38.880360 ], [ -77.056818, 38.880360 ], [ -77.056861, 38.880343 ], [ -77.056947, 38.880343 ], [ -77.057033, 38.880326 ], [ -77.057140, 38.880310 ], [ -77.057204, 38.880310 ], [ -77.057312, 38.880293 ], [ -77.057397, 38.880276 ], [ -77.057462, 38.880276 ], [ -77.057505, 38.880260 ], [ -77.057569, 38.880260 ], [ -77.057633, 38.880260 ], [ -77.057655, 38.880260 ], [ -77.057719, 38.880243 ], [ -77.057784, 38.880243 ], [ -77.057827, 38.880243 ], [ -77.057891, 38.880260 ], [ -77.057934, 38.880260 ], [ -77.057998, 38.880276 ], [ -77.058063, 38.880293 ], [ -77.058127, 38.880326 ], [ -77.058191, 38.880343 ], [ -77.058256, 38.880360 ], [ -77.058299, 38.880377 ], [ -77.058342, 38.880393 ], [ -77.058406, 38.880393 ], [ -77.058513, 38.880427 ], [ -77.058599, 38.880443 ], [ -77.058642, 38.880460 ], [ -77.058685, 38.880477 ], [ -77.058706, 38.880493 ], [ -77.058728, 38.880510 ], [ -77.058749, 38.880544 ], [ -77.058771, 38.880560 ], [ -77.058792, 38.880577 ], [ -77.058835, 38.880610 ], [ -77.058856, 38.880644 ], [ -77.058878, 38.880661 ], [ -77.058899, 38.880694 ], [ -77.058921, 38.880711 ], [ -77.058964, 38.880744 ], [ -77.058985, 38.880761 ], [ -77.059007, 38.880794 ], [ -77.059050, 38.880811 ], [ -77.059071, 38.880844 ], [ -77.059093, 38.880878 ], [ -77.059135, 38.880911 ], [ -77.059200, 38.880978 ], [ -77.059221, 38.881061 ], [ -77.059243, 38.881078 ], [ -77.059264, 38.881095 ], [ -77.059264, 38.881128 ], [ -77.059286, 38.881145 ], [ -77.059307, 38.881178 ], [ -77.059307, 38.881195 ], [ -77.059329, 38.881228 ], [ -77.059350, 38.881262 ], [ -77.059414, 38.881345 ], [ -77.061732, 38.885070 ], [ -77.061796, 38.885170 ], [ -77.061818, 38.885187 ], [ -77.061839, 38.885237 ], [ -77.061861, 38.885271 ], [ -77.061861, 38.885287 ], [ -77.061882, 38.885304 ], [ -77.061903, 38.885321 ], [ -77.061903, 38.885354 ], [ -77.061925, 38.885371 ], [ -77.061946, 38.885404 ], [ -77.061989, 38.885454 ], [ -77.062011, 38.885488 ], [ -77.062011, 38.885504 ], [ -77.062032, 38.885538 ], [ -77.062054, 38.885571 ], [ -77.062097, 38.885621 ], [ -77.062118, 38.885655 ], [ -77.062140, 38.885688 ], [ -77.062140, 38.885705 ], [ -77.062161, 38.885738 ], [ -77.062182, 38.885772 ], [ -77.062204, 38.885805 ], [ -77.062225, 38.885822 ], [ -77.062247, 38.885872 ], [ -77.062268, 38.885889 ], [ -77.062290, 38.885922 ], [ -77.062311, 38.885955 ], [ -77.062311, 38.885972 ], [ -77.062333, 38.886006 ], [ -77.062354, 38.886022 ], [ -77.062376, 38.886056 ], [ -77.062397, 38.886089 ], [ -77.062397, 38.886106 ], [ -77.062418, 38.886139 ], [ -77.062440, 38.886173 ], [ -77.062461, 38.886206 ], [ -77.062483, 38.886223 ], [ -77.062504, 38.886256 ], [ -77.062526, 38.886289 ], [ -77.062526, 38.886323 ], [ -77.062547, 38.886356 ], [ -77.062569, 38.886373 ], [ -77.062590, 38.886406 ], [ -77.062612, 38.886440 ], [ -77.062633, 38.886473 ], [ -77.062633, 38.886490 ], [ -77.062654, 38.886523 ], [ -77.062676, 38.886557 ], [ -77.062697, 38.886590 ], [ -77.062740, 38.886624 ], [ -77.062740, 38.886657 ], [ -77.062762, 38.886674 ], [ -77.062783, 38.886707 ], [ -77.062783, 38.886724 ], [ -77.062805, 38.886740 ], [ -77.062826, 38.886774 ], [ -77.062848, 38.886807 ], [ -77.062848, 38.886824 ], [ -77.062891, 38.886857 ], [ -77.062891, 38.886874 ], [ -77.062912, 38.886907 ], [ -77.062933, 38.886924 ], [ -77.062933, 38.886958 ], [ -77.062955, 38.886974 ], [ -77.062955, 38.886991 ], [ -77.062976, 38.887008 ], [ -77.062998, 38.887024 ], [ -77.062998, 38.887041 ], [ -77.063019, 38.887058 ], [ -77.063041, 38.887091 ], [ -77.063062, 38.887125 ], [ -77.063062, 38.887141 ], [ -77.063084, 38.887175 ], [ -77.063105, 38.887191 ], [ -77.063127, 38.887208 ], [ -77.063127, 38.887242 ], [ -77.063148, 38.887258 ], [ -77.063169, 38.887275 ], [ -77.063191, 38.887308 ], [ -77.063212, 38.887342 ], [ -77.063212, 38.887358 ], [ -77.063234, 38.887375 ], [ -77.063255, 38.887409 ], [ -77.063277, 38.887442 ], [ -77.063277, 38.887459 ], [ -77.063298, 38.887492 ], [ -77.063320, 38.887542 ], [ -77.063341, 38.887576 ], [ -77.063363, 38.887576 ], [ -77.063363, 38.887609 ], [ -77.063384, 38.887626 ], [ -77.063406, 38.887659 ], [ -77.063427, 38.887676 ], [ -77.063427, 38.887692 ], [ -77.063448, 38.887709 ], [ -77.063448, 38.887726 ], [ -77.063470, 38.887726 ], [ -77.063470, 38.887759 ], [ -77.063491, 38.887776 ], [ -77.063513, 38.887793 ], [ -77.063513, 38.887809 ], [ -77.063534, 38.887826 ], [ -77.063534, 38.887859 ], [ -77.063556, 38.887876 ], [ -77.063556, 38.887893 ], [ -77.063577, 38.887893 ], [ -77.063577, 38.887926 ], [ -77.063599, 38.887926 ], [ -77.063599, 38.887943 ], [ -77.063620, 38.887976 ], [ -77.063642, 38.887993 ], [ -77.063642, 38.888027 ], [ -77.063684, 38.888060 ], [ -77.063684, 38.888093 ], [ -77.063706, 38.888093 ], [ -77.063706, 38.888110 ], [ -77.063727, 38.888143 ], [ -77.063727, 38.888160 ], [ -77.063749, 38.888177 ], [ -77.063770, 38.888194 ], [ -77.063770, 38.888227 ], [ -77.063792, 38.888244 ], [ -77.063813, 38.888277 ], [ -77.063835, 38.888294 ], [ -77.063856, 38.888327 ], [ -77.063878, 38.888377 ], [ -77.063899, 38.888394 ], [ -77.063899, 38.888411 ], [ -77.063920, 38.888444 ], [ -77.063942, 38.888477 ], [ -77.063963, 38.888494 ], [ -77.063985, 38.888528 ], [ -77.064006, 38.888561 ], [ -77.064028, 38.888594 ], [ -77.064028, 38.888611 ], [ -77.064049, 38.888644 ], [ -77.064071, 38.888661 ], [ -77.064071, 38.888678 ], [ -77.064092, 38.888695 ], [ -77.064092, 38.888711 ], [ -77.064135, 38.888761 ], [ -77.064178, 38.888828 ], [ -77.064242, 38.888962 ], [ -77.064307, 38.889095 ], [ -77.064328, 38.889146 ], [ -77.064350, 38.889246 ], [ -77.064350, 38.889279 ], [ -77.064371, 38.889329 ], [ -77.064371, 38.889363 ], [ -77.064393, 38.889413 ], [ -77.064393, 38.889446 ], [ -77.064393, 38.889463 ], [ -77.064414, 38.889496 ], [ -77.064414, 38.889530 ], [ -77.064414, 38.889563 ], [ -77.064393, 38.889596 ], [ -77.064393, 38.889647 ], [ -77.064371, 38.889663 ], [ -77.064350, 38.889680 ], [ -77.064328, 38.889713 ], [ -77.064307, 38.889747 ], [ -77.064285, 38.889764 ], [ -77.064264, 38.889780 ], [ -77.064242, 38.889797 ], [ -77.064221, 38.889814 ], [ -77.064178, 38.889864 ], [ -77.064135, 38.889914 ], [ -77.064092, 38.889947 ], [ -77.064049, 38.889964 ], [ -77.064028, 38.889981 ], [ -77.064006, 38.889997 ], [ -77.063942, 38.890031 ], [ -77.063899, 38.890047 ], [ -77.063835, 38.890081 ], [ -77.063813, 38.890098 ], [ -77.063792, 38.890114 ], [ -77.063792, 38.890148 ], [ -77.063770, 38.890164 ], [ -77.063770, 38.890181 ], [ -77.063770, 38.890248 ], [ -77.063792, 38.890281 ], [ -77.063813, 38.890315 ], [ -77.063835, 38.890348 ], [ -77.063878, 38.890365 ], [ -77.063899, 38.890381 ], [ -77.063920, 38.890415 ], [ -77.063942, 38.890448 ], [ -77.063942, 38.890482 ], [ -77.063963, 38.890532 ], [ -77.063985, 38.890565 ], [ -77.064028, 38.890599 ], [ -77.064028, 38.890632 ], [ -77.064049, 38.890665 ], [ -77.064071, 38.890749 ], [ -77.064049, 38.890816 ], [ -77.064006, 38.890883 ], [ -77.063985, 38.890899 ], [ -77.063985, 38.890949 ], [ -77.064006, 38.890983 ], [ -77.064028, 38.891016 ], [ -77.064071, 38.891016 ], [ -77.064092, 38.891050 ], [ -77.064135, 38.891083 ], [ -77.064157, 38.891100 ], [ -77.064178, 38.891116 ], [ -77.064199, 38.891150 ], [ -77.064221, 38.891200 ], [ -77.064242, 38.891233 ], [ -77.064264, 38.891300 ], [ -77.064285, 38.891333 ], [ -77.064307, 38.891367 ], [ -77.064328, 38.891417 ], [ -77.064371, 38.891417 ], [ -77.064393, 38.891417 ], [ -77.064414, 38.891417 ], [ -77.064435, 38.891417 ], [ -77.064457, 38.891450 ], [ -77.064457, 38.891467 ], [ -77.064457, 38.891484 ], [ -77.064478, 38.891517 ], [ -77.064521, 38.891551 ], [ -77.064543, 38.891567 ], [ -77.064543, 38.891584 ], [ -77.064564, 38.891617 ], [ -77.064586, 38.891651 ], [ -77.064586, 38.891667 ], [ -77.064629, 38.891718 ], [ -77.064693, 38.891851 ], [ -77.064629, 38.891834 ], [ -77.064350, 38.891801 ], [ -77.064157, 38.891768 ], [ -77.063985, 38.891751 ], [ -77.063749, 38.891751 ], [ -77.063642, 38.891751 ], [ -77.063534, 38.891751 ], [ -77.063406, 38.891768 ], [ -77.063255, 38.891784 ], [ -77.063019, 38.891818 ], [ -77.062547, 38.891885 ], [ -77.062504, 38.891901 ], [ -77.062461, 38.891901 ], [ -77.062118, 38.891968 ], [ -77.061732, 38.892035 ], [ -77.061517, 38.892068 ], [ -77.061002, 38.892152 ], [ -77.060916, 38.892169 ], [ -77.060530, 38.892235 ], [ -77.060359, 38.892269 ], [ -77.060037, 38.892319 ], [ -77.059886, 38.892336 ], [ -77.059801, 38.892352 ], [ -77.059693, 38.892369 ], [ -77.041197, 38.892369 ], [ -77.041068, 38.892302 ], [ -77.040918, 38.892202 ], [ -77.040875, 38.892185 ], [ -77.040854, 38.892169 ], [ -77.040832, 38.892152 ], [ -77.040811, 38.892135 ], [ -77.040789, 38.892135 ], [ -77.040746, 38.892118 ], [ -77.040725, 38.892118 ], [ -77.040703, 38.892118 ], [ -77.040660, 38.892102 ], [ -77.039480, 38.892102 ], [ -77.039480, 38.892369 ], [ -77.018495, 38.892369 ], [ -77.017550, 38.892118 ], [ -77.016392, 38.891784 ], [ -77.016242, 38.891885 ], [ -77.015834, 38.892018 ], [ -77.015576, 38.892068 ], [ -77.015233, 38.892085 ], [ -77.015040, 38.892085 ], [ -77.014997, 38.892085 ], [ -77.014675, 38.892085 ], [ -77.014225, 38.892085 ], [ -77.014010, 38.892085 ], [ -77.013624, 38.892085 ], [ -77.013173, 38.892085 ], [ -77.012980, 38.892252 ], [ -77.012830, 38.892369 ], [ -77.005877, 38.892369 ], [ -77.005877, 38.892118 ], [ -77.005899, 38.892018 ], [ -77.005920, 38.891834 ], [ -77.005920, 38.891400 ], [ -77.005920, 38.891250 ], [ -77.005920, 38.890966 ], [ -77.005513, 38.891133 ], [ -77.005255, 38.891250 ], [ -77.004890, 38.891400 ], [ -77.004676, 38.891517 ], [ -77.004504, 38.891667 ], [ -77.004418, 38.891784 ], [ -77.004354, 38.891918 ], [ -77.003775, 38.891868 ], [ -77.003517, 38.891918 ], [ -77.003517, 38.891801 ], [ -77.003517, 38.891367 ], [ -77.003517, 38.891016 ], [ -77.003517, 38.890933 ], [ -77.003517, 38.889914 ], [ -77.003517, 38.889814 ], [ -77.003517, 38.889697 ], [ -77.003517, 38.889146 ], [ -77.002037, 38.889162 ], [ -77.002037, 38.888678 ], [ -77.002037, 38.888594 ], [ -77.002037, 38.887676 ], [ -77.002037, 38.887592 ], [ -77.002294, 38.887592 ], [ -77.002466, 38.887592 ], [ -77.002959, 38.887592 ], [ -77.003260, 38.887609 ], [ -77.003517, 38.887609 ], [ -77.003517, 38.887542 ], [ -77.003517, 38.886039 ], [ -77.003646, 38.886039 ], [ -77.004225, 38.886039 ], [ -77.004526, 38.886039 ], [ -77.004590, 38.886039 ], [ -77.004933, 38.886039 ], [ -77.005084, 38.886039 ], [ -77.005641, 38.886039 ], [ -77.005706, 38.886039 ], [ -77.005877, 38.886039 ], [ -77.005877, 38.885070 ], [ -77.006006, 38.885070 ], [ -77.007251, 38.885070 ], [ -77.007487, 38.885070 ], [ -77.008924, 38.885070 ], [ -77.009053, 38.885070 ], [ -77.009053, 38.884218 ], [ -77.009053, 38.884118 ], [ -77.009053, 38.884051 ], [ -77.009053, 38.883984 ], [ -77.009053, 38.883851 ], [ -77.009246, 38.883984 ], [ -77.009418, 38.884118 ], [ -77.010341, 38.884803 ], [ -77.010534, 38.884937 ], [ -77.010577, 38.884970 ], [ -77.010791, 38.885070 ], [ -77.011199, 38.885421 ], [ -77.011843, 38.885805 ], [ -77.012143, 38.886022 ], [ -77.012272, 38.886139 ], [ -77.012744, 38.886473 ], [ -77.012980, 38.886674 ], [ -77.013366, 38.886991 ], [ -77.013516, 38.887141 ], [ -77.013559, 38.887175 ], [ -77.013731, 38.887409 ], [ -77.013795, 38.887559 ], [ -77.013924, 38.887559 ], [ -77.014053, 38.887559 ], [ -77.014761, 38.887559 ], [ -77.015169, 38.887559 ], [ -77.015362, 38.887559 ], [ -77.015984, 38.887559 ], [ -77.016263, 38.887559 ], [ -77.016392, 38.887559 ], [ -77.016585, 38.887559 ], [ -77.017207, 38.887559 ], [ -77.017272, 38.887559 ], [ -77.017550, 38.887576 ], [ -77.017808, 38.887559 ], [ -77.018752, 38.887559 ], [ -77.019589, 38.887559 ], [ -77.019911, 38.887559 ], [ -77.021670, 38.887559 ], [ -77.021906, 38.887559 ], [ -77.022228, 38.887559 ], [ -77.022936, 38.887559 ], [ -77.023215, 38.887559 ], [ -77.023537, 38.887559 ], [ -77.023880, 38.887559 ], [ -77.024009, 38.887559 ], [ -77.024159, 38.887559 ], [ -77.024310, 38.887559 ], [ -77.024374, 38.887559 ], [ -77.025812, 38.887559 ], [ -77.025983, 38.887559 ], [ -77.026112, 38.887559 ], [ -77.027957, 38.887559 ], [ -77.028065, 38.887559 ], [ -77.028172, 38.887559 ], [ -77.028794, 38.887559 ], [ -77.030704, 38.887559 ], [ -77.031176, 38.887559 ], [ -77.031670, 38.887559 ], [ -77.031970, 38.887576 ], [ -77.031949, 38.887292 ], [ -77.031949, 38.885955 ], [ -77.031949, 38.884970 ], [ -77.031991, 38.884369 ], [ -77.032077, 38.883801 ], [ -77.032142, 38.883550 ], [ -77.032185, 38.883450 ], [ -77.032206, 38.883417 ], [ -77.032592, 38.882782 ], [ -77.032614, 38.882732 ], [ -77.032700, 38.882615 ], [ -77.032614, 38.882565 ], [ -77.032549, 38.882515 ], [ -77.032485, 38.882464 ], [ -77.032356, 38.882398 ], [ -77.030318, 38.881028 ], [ -77.030210, 38.880928 ], [ -77.029953, 38.880794 ], [ -77.026863, 38.878606 ], [ -77.024910, 38.877203 ], [ -77.023773, 38.876401 ], [ -77.023194, 38.875399 ], [ -77.022572, 38.874363 ], [ -77.021284, 38.872174 ], [ -77.021048, 38.871556 ], [ -77.020319, 38.870019 ], [ -77.020168, 38.868950 ], [ -77.020147, 38.859594 ], [ -77.020147, 38.858909 ], [ -77.020147, 38.857321 ], [ -77.022679, 38.855901 ], [ -77.032206, 38.850688 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010202", "GEOID": "11001010202", "NAME": "102.02", "NAMELSAD": "Census Tract 102.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1069487, "AWATER": 136359, "INTPTLAT": "+38.8843563", "INTPTLON": "-077.0245770" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.017550, 38.879291 ], [ -77.018216, 38.879291 ], [ -77.018881, 38.879291 ], [ -77.019031, 38.879291 ], [ -77.019889, 38.879291 ], [ -77.020168, 38.879274 ], [ -77.020748, 38.879274 ], [ -77.021391, 38.879274 ], [ -77.021756, 38.879291 ], [ -77.021906, 38.879291 ], [ -77.021971, 38.879191 ], [ -77.021992, 38.879174 ], [ -77.022057, 38.879107 ], [ -77.022722, 38.878639 ], [ -77.021778, 38.877888 ], [ -77.021735, 38.877854 ], [ -77.021670, 38.877804 ], [ -77.021413, 38.877570 ], [ -77.021134, 38.877303 ], [ -77.021284, 38.877186 ], [ -77.021477, 38.877036 ], [ -77.021863, 38.876501 ], [ -77.023773, 38.876401 ], [ -77.024910, 38.877203 ], [ -77.026863, 38.878606 ], [ -77.029953, 38.880794 ], [ -77.030210, 38.880928 ], [ -77.030318, 38.881028 ], [ -77.032356, 38.882398 ], [ -77.032485, 38.882464 ], [ -77.032549, 38.882515 ], [ -77.032614, 38.882565 ], [ -77.032700, 38.882615 ], [ -77.032614, 38.882732 ], [ -77.032592, 38.882782 ], [ -77.032206, 38.883417 ], [ -77.032185, 38.883450 ], [ -77.032142, 38.883550 ], [ -77.032077, 38.883801 ], [ -77.031991, 38.884369 ], [ -77.031949, 38.884970 ], [ -77.031949, 38.885955 ], [ -77.031949, 38.887292 ], [ -77.031970, 38.887576 ], [ -77.031670, 38.887559 ], [ -77.031176, 38.887559 ], [ -77.030704, 38.887559 ], [ -77.028794, 38.887559 ], [ -77.028172, 38.887559 ], [ -77.028065, 38.887559 ], [ -77.027957, 38.887559 ], [ -77.026112, 38.887559 ], [ -77.025983, 38.887559 ], [ -77.025812, 38.887559 ], [ -77.024374, 38.887559 ], [ -77.024310, 38.887559 ], [ -77.024159, 38.887559 ], [ -77.024009, 38.887559 ], [ -77.023880, 38.887559 ], [ -77.023537, 38.887559 ], [ -77.023215, 38.887559 ], [ -77.022936, 38.887559 ], [ -77.022228, 38.887559 ], [ -77.021906, 38.887559 ], [ -77.021670, 38.887559 ], [ -77.019911, 38.887559 ], [ -77.019589, 38.887559 ], [ -77.018752, 38.887559 ], [ -77.017808, 38.887559 ], [ -77.017550, 38.887576 ], [ -77.017550, 38.887308 ], [ -77.017550, 38.886356 ], [ -77.017550, 38.886039 ], [ -77.017550, 38.885738 ], [ -77.017550, 38.885154 ], [ -77.017550, 38.885070 ], [ -77.017550, 38.884686 ], [ -77.017550, 38.884602 ], [ -77.017550, 38.884385 ], [ -77.017550, 38.883918 ], [ -77.017550, 38.883751 ], [ -77.017550, 38.883233 ], [ -77.017550, 38.883133 ], [ -77.017550, 38.882648 ], [ -77.017550, 38.882531 ], [ -77.017550, 38.882348 ], [ -77.017550, 38.882297 ], [ -77.017550, 38.882097 ], [ -77.017550, 38.881512 ], [ -77.017550, 38.881379 ], [ -77.017550, 38.881279 ], [ -77.017550, 38.880844 ], [ -77.017550, 38.880443 ], [ -77.017550, 38.880326 ], [ -77.017550, 38.879892 ], [ -77.017550, 38.879408 ], [ -77.017550, 38.879291 ] ] ], [ [ [ -77.015212, 38.876451 ], [ -77.015362, 38.876451 ], [ -77.016199, 38.876451 ], [ -77.016735, 38.876451 ], [ -77.017550, 38.876451 ], [ -77.018881, 38.876451 ], [ -77.019889, 38.876451 ], [ -77.020082, 38.876501 ], [ -77.020211, 38.876535 ], [ -77.020340, 38.876585 ], [ -77.020469, 38.876651 ], [ -77.020640, 38.876768 ], [ -77.020769, 38.876885 ], [ -77.020919, 38.877036 ], [ -77.021134, 38.877303 ], [ -77.021413, 38.877570 ], [ -77.021670, 38.877804 ], [ -77.021735, 38.877854 ], [ -77.021778, 38.877888 ], [ -77.022722, 38.878639 ], [ -77.022057, 38.879107 ], [ -77.021992, 38.879174 ], [ -77.021971, 38.879191 ], [ -77.021906, 38.879291 ], [ -77.021756, 38.879291 ], [ -77.021391, 38.879274 ], [ -77.020748, 38.879274 ], [ -77.020168, 38.879274 ], [ -77.019889, 38.879291 ], [ -77.019031, 38.879291 ], [ -77.018881, 38.879291 ], [ -77.018216, 38.879291 ], [ -77.017550, 38.879291 ], [ -77.017379, 38.879291 ], [ -77.016692, 38.879274 ], [ -77.016220, 38.879274 ], [ -77.016070, 38.879274 ], [ -77.015941, 38.879274 ], [ -77.015383, 38.879274 ], [ -77.015190, 38.879274 ], [ -77.015190, 38.879207 ], [ -77.015190, 38.878806 ], [ -77.015212, 38.878405 ], [ -77.015212, 38.878289 ], [ -77.015212, 38.877637 ], [ -77.015212, 38.877520 ], [ -77.015190, 38.876685 ], [ -77.015190, 38.876635 ], [ -77.015212, 38.876451 ] ] ], [ [ [ -77.013667, 38.872041 ], [ -77.014332, 38.872041 ], [ -77.014611, 38.872041 ], [ -77.015018, 38.872041 ], [ -77.015147, 38.872041 ], [ -77.016027, 38.872041 ], [ -77.016392, 38.872041 ], [ -77.016907, 38.872041 ], [ -77.016993, 38.872041 ], [ -77.017400, 38.872041 ], [ -77.017422, 38.872041 ], [ -77.017486, 38.872058 ], [ -77.017508, 38.872058 ], [ -77.017550, 38.872091 ], [ -77.017550, 38.872108 ], [ -77.017550, 38.872308 ], [ -77.017550, 38.872692 ], [ -77.017550, 38.872976 ], [ -77.017550, 38.873427 ], [ -77.017550, 38.873494 ], [ -77.017550, 38.873878 ], [ -77.017550, 38.874329 ], [ -77.017550, 38.874647 ], [ -77.017550, 38.874764 ], [ -77.017550, 38.875566 ], [ -77.017550, 38.875733 ], [ -77.017550, 38.876251 ], [ -77.017550, 38.876384 ], [ -77.017550, 38.876451 ], [ -77.016735, 38.876451 ], [ -77.016199, 38.876451 ], [ -77.015362, 38.876451 ], [ -77.015212, 38.876451 ], [ -77.015083, 38.876451 ], [ -77.013860, 38.876451 ], [ -77.013924, 38.876267 ], [ -77.014053, 38.875883 ], [ -77.014139, 38.875666 ], [ -77.014289, 38.875248 ], [ -77.014396, 38.874931 ], [ -77.014418, 38.874831 ], [ -77.014439, 38.874747 ], [ -77.014439, 38.874664 ], [ -77.014439, 38.874497 ], [ -77.014439, 38.874329 ], [ -77.014439, 38.874162 ], [ -77.014418, 38.873979 ], [ -77.014418, 38.873945 ], [ -77.014396, 38.873895 ], [ -77.014375, 38.873862 ], [ -77.014353, 38.873828 ], [ -77.014332, 38.873795 ], [ -77.014289, 38.873761 ], [ -77.014246, 38.873728 ], [ -77.014203, 38.873695 ], [ -77.014160, 38.873678 ], [ -77.014117, 38.873661 ], [ -77.013323, 38.873444 ], [ -77.013173, 38.873411 ], [ -77.013237, 38.873244 ], [ -77.013366, 38.872976 ], [ -77.013624, 38.872375 ], [ -77.013645, 38.872342 ], [ -77.013645, 38.872325 ], [ -77.013667, 38.872258 ], [ -77.013667, 38.872225 ], [ -77.013667, 38.872174 ], [ -77.013667, 38.872041 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "011002", "GEOID": "11001011002", "NAME": "110.02", "NAMELSAD": "Census Tract 110.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 498112, "AWATER": 367035, "INTPTLAT": "+38.8681789", "INTPTLON": "-077.0182455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.021134, 38.877303 ], [ -77.020919, 38.877036 ], [ -77.020769, 38.876885 ], [ -77.020640, 38.876768 ], [ -77.020469, 38.876651 ], [ -77.020340, 38.876585 ], [ -77.020211, 38.876535 ], [ -77.020082, 38.876501 ], [ -77.019889, 38.876451 ], [ -77.018881, 38.876451 ], [ -77.017550, 38.876451 ], [ -77.017550, 38.876384 ], [ -77.017550, 38.876251 ], [ -77.017550, 38.875733 ], [ -77.017550, 38.875566 ], [ -77.017550, 38.874764 ], [ -77.017550, 38.874647 ], [ -77.017550, 38.874329 ], [ -77.017550, 38.873878 ], [ -77.017550, 38.873494 ], [ -77.017550, 38.873427 ], [ -77.017550, 38.872976 ], [ -77.017550, 38.872692 ], [ -77.017550, 38.872308 ], [ -77.017550, 38.872108 ], [ -77.017550, 38.872091 ], [ -77.017508, 38.872058 ], [ -77.017486, 38.872058 ], [ -77.017422, 38.872041 ], [ -77.017400, 38.872041 ], [ -77.016993, 38.872041 ], [ -77.016907, 38.872041 ], [ -77.016392, 38.872041 ], [ -77.016027, 38.872041 ], [ -77.015147, 38.872041 ], [ -77.015018, 38.872041 ], [ -77.014611, 38.872041 ], [ -77.014332, 38.872041 ], [ -77.014825, 38.870771 ], [ -77.014847, 38.870654 ], [ -77.014825, 38.870537 ], [ -77.015319, 38.869468 ], [ -77.015319, 38.868917 ], [ -77.015319, 38.868248 ], [ -77.015297, 38.865291 ], [ -77.015297, 38.864857 ], [ -77.015319, 38.864623 ], [ -77.015319, 38.864088 ], [ -77.015340, 38.862100 ], [ -77.015362, 38.860028 ], [ -77.020147, 38.857321 ], [ -77.020147, 38.858909 ], [ -77.020147, 38.859594 ], [ -77.020168, 38.868950 ], [ -77.020319, 38.870019 ], [ -77.021048, 38.871556 ], [ -77.021284, 38.872174 ], [ -77.022572, 38.874363 ], [ -77.023194, 38.875399 ], [ -77.023773, 38.876401 ], [ -77.021863, 38.876501 ], [ -77.021477, 38.877036 ], [ -77.021284, 38.877186 ], [ -77.021134, 38.877303 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006500", "GEOID": "11001006500", "NAME": "65", "NAMELSAD": "Census Tract 65", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 509297, "AWATER": 0, "INTPTLAT": "+38.8838480", "INTPTLON": "-077.0033314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009096, 38.881546 ], [ -77.009096, 38.881629 ], [ -77.009118, 38.881679 ], [ -77.009118, 38.881897 ], [ -77.009096, 38.882080 ], [ -77.009118, 38.882314 ], [ -77.009075, 38.883049 ], [ -77.009053, 38.883199 ], [ -77.009053, 38.883851 ], [ -77.009053, 38.883984 ], [ -77.009053, 38.884051 ], [ -77.009053, 38.884118 ], [ -77.009053, 38.884218 ], [ -77.009053, 38.885070 ], [ -77.008924, 38.885070 ], [ -77.007487, 38.885070 ], [ -77.007251, 38.885070 ], [ -77.006006, 38.885070 ], [ -77.005877, 38.885070 ], [ -77.005877, 38.886039 ], [ -77.005706, 38.886039 ], [ -77.005641, 38.886039 ], [ -77.005084, 38.886039 ], [ -77.004933, 38.886039 ], [ -77.004590, 38.886039 ], [ -77.004526, 38.886039 ], [ -77.004225, 38.886039 ], [ -77.003646, 38.886039 ], [ -77.003517, 38.886039 ], [ -77.003517, 38.887542 ], [ -77.003517, 38.887609 ], [ -77.003260, 38.887609 ], [ -77.002959, 38.887592 ], [ -77.002466, 38.887592 ], [ -77.002294, 38.887592 ], [ -77.002037, 38.887592 ], [ -77.002037, 38.887342 ], [ -77.002037, 38.887191 ], [ -77.000577, 38.886590 ], [ -76.999354, 38.886089 ], [ -76.998453, 38.885705 ], [ -76.996179, 38.884803 ], [ -76.996179, 38.884669 ], [ -76.996179, 38.884552 ], [ -76.996179, 38.884335 ], [ -76.996179, 38.884268 ], [ -76.996179, 38.883951 ], [ -76.996179, 38.883767 ], [ -76.996264, 38.883801 ], [ -76.996329, 38.883801 ], [ -76.996393, 38.883784 ], [ -76.996415, 38.883784 ], [ -76.996458, 38.883784 ], [ -76.997080, 38.883600 ], [ -76.997831, 38.883417 ], [ -76.998346, 38.883266 ], [ -76.998453, 38.883250 ], [ -76.998453, 38.883149 ], [ -76.998453, 38.882732 ], [ -76.998539, 38.882732 ], [ -76.999397, 38.882732 ], [ -76.999505, 38.882732 ], [ -77.000470, 38.882732 ], [ -77.000513, 38.882715 ], [ -77.000577, 38.882698 ], [ -77.000706, 38.882648 ], [ -77.001908, 38.882331 ], [ -77.001951, 38.882331 ], [ -77.002037, 38.882297 ], [ -77.002037, 38.881997 ], [ -77.002037, 38.881262 ], [ -77.002037, 38.881245 ], [ -77.002037, 38.881195 ], [ -77.002037, 38.880811 ], [ -77.002037, 38.880727 ], [ -77.002037, 38.880644 ], [ -77.002037, 38.880477 ], [ -77.002316, 38.880544 ], [ -77.002423, 38.880577 ], [ -77.002552, 38.880610 ], [ -77.002637, 38.880627 ], [ -77.002788, 38.880661 ], [ -77.002873, 38.880677 ], [ -77.002959, 38.880694 ], [ -77.003131, 38.880727 ], [ -77.003174, 38.880744 ], [ -77.003410, 38.880761 ], [ -77.003517, 38.880777 ], [ -77.003882, 38.880794 ], [ -77.004011, 38.880794 ], [ -77.004204, 38.880811 ], [ -77.004333, 38.880811 ], [ -77.004676, 38.880811 ], [ -77.005169, 38.880828 ], [ -77.005727, 38.880844 ], [ -77.006199, 38.880861 ], [ -77.006285, 38.880861 ], [ -77.006435, 38.880878 ], [ -77.006521, 38.880894 ], [ -77.006671, 38.880911 ], [ -77.006757, 38.880928 ], [ -77.006822, 38.880928 ], [ -77.007401, 38.881045 ], [ -77.007723, 38.881128 ], [ -77.007830, 38.881145 ], [ -77.007916, 38.881178 ], [ -77.008002, 38.881195 ], [ -77.008195, 38.881245 ], [ -77.008238, 38.881262 ], [ -77.008367, 38.881312 ], [ -77.008452, 38.881345 ], [ -77.008624, 38.881412 ], [ -77.008710, 38.881429 ], [ -77.008753, 38.881446 ], [ -77.008989, 38.881512 ], [ -77.009010, 38.881512 ], [ -77.009096, 38.881546 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010500", "GEOID": "11001010500", "NAME": "105", "NAMELSAD": "Census Tract 105", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 749891, "AWATER": 0, "INTPTLAT": "+38.8818529", "INTPTLON": "-077.0133789" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.017550, 38.887576 ], [ -77.017272, 38.887559 ], [ -77.017207, 38.887559 ], [ -77.016585, 38.887559 ], [ -77.016392, 38.887559 ], [ -77.016263, 38.887559 ], [ -77.015984, 38.887559 ], [ -77.015362, 38.887559 ], [ -77.015169, 38.887559 ], [ -77.014761, 38.887559 ], [ -77.014053, 38.887559 ], [ -77.013924, 38.887559 ], [ -77.013795, 38.887559 ], [ -77.013731, 38.887409 ], [ -77.013559, 38.887175 ], [ -77.013516, 38.887141 ], [ -77.013366, 38.886991 ], [ -77.012980, 38.886674 ], [ -77.012744, 38.886473 ], [ -77.012272, 38.886139 ], [ -77.012143, 38.886022 ], [ -77.011843, 38.885805 ], [ -77.011199, 38.885421 ], [ -77.010791, 38.885070 ], [ -77.010577, 38.884970 ], [ -77.010534, 38.884937 ], [ -77.010341, 38.884803 ], [ -77.009418, 38.884118 ], [ -77.009246, 38.883984 ], [ -77.009053, 38.883851 ], [ -77.009053, 38.883199 ], [ -77.009075, 38.883049 ], [ -77.009118, 38.882314 ], [ -77.009096, 38.882080 ], [ -77.009118, 38.881897 ], [ -77.009118, 38.881679 ], [ -77.009096, 38.881629 ], [ -77.009096, 38.881546 ], [ -77.009118, 38.881529 ], [ -77.009118, 38.881429 ], [ -77.009096, 38.880343 ], [ -77.009139, 38.879825 ], [ -77.009118, 38.879291 ], [ -77.009118, 38.878405 ], [ -77.009118, 38.878172 ], [ -77.009139, 38.877520 ], [ -77.009118, 38.876902 ], [ -77.009096, 38.876468 ], [ -77.009268, 38.876468 ], [ -77.009397, 38.876468 ], [ -77.009676, 38.876451 ], [ -77.009890, 38.876451 ], [ -77.010298, 38.876451 ], [ -77.010534, 38.876451 ], [ -77.010641, 38.876451 ], [ -77.010963, 38.876451 ], [ -77.011006, 38.876451 ], [ -77.011199, 38.876451 ], [ -77.011392, 38.876451 ], [ -77.011843, 38.876451 ], [ -77.012165, 38.876451 ], [ -77.012615, 38.876451 ], [ -77.013860, 38.876451 ], [ -77.015083, 38.876451 ], [ -77.015212, 38.876451 ], [ -77.015190, 38.876635 ], [ -77.015190, 38.876685 ], [ -77.015212, 38.877520 ], [ -77.015212, 38.877637 ], [ -77.015212, 38.878289 ], [ -77.015212, 38.878405 ], [ -77.015190, 38.878806 ], [ -77.015190, 38.879207 ], [ -77.015190, 38.879274 ], [ -77.015383, 38.879274 ], [ -77.015941, 38.879274 ], [ -77.016070, 38.879274 ], [ -77.016220, 38.879274 ], [ -77.016692, 38.879274 ], [ -77.017379, 38.879291 ], [ -77.017550, 38.879291 ], [ -77.017550, 38.879408 ], [ -77.017550, 38.879892 ], [ -77.017550, 38.880326 ], [ -77.017550, 38.880443 ], [ -77.017550, 38.880844 ], [ -77.017550, 38.881279 ], [ -77.017550, 38.881379 ], [ -77.017550, 38.881512 ], [ -77.017550, 38.882097 ], [ -77.017550, 38.882297 ], [ -77.017550, 38.882348 ], [ -77.017550, 38.882531 ], [ -77.017550, 38.882648 ], [ -77.017550, 38.883133 ], [ -77.017550, 38.883233 ], [ -77.017550, 38.883751 ], [ -77.017550, 38.883918 ], [ -77.017550, 38.884385 ], [ -77.017550, 38.884602 ], [ -77.017550, 38.884686 ], [ -77.017550, 38.885070 ], [ -77.017550, 38.885154 ], [ -77.017550, 38.885738 ], [ -77.017550, 38.886039 ], [ -77.017550, 38.886356 ], [ -77.017550, 38.887308 ], [ -77.017550, 38.887576 ] ] ], [ [ [ -77.009096, 38.881546 ], [ -77.009010, 38.881512 ], [ -77.008989, 38.881512 ], [ -77.008753, 38.881446 ], [ -77.008710, 38.881429 ], [ -77.008624, 38.881412 ], [ -77.008452, 38.881345 ], [ -77.008367, 38.881312 ], [ -77.008238, 38.881262 ], [ -77.008195, 38.881245 ], [ -77.008002, 38.881195 ], [ -77.007916, 38.881178 ], [ -77.007830, 38.881145 ], [ -77.007723, 38.881128 ], [ -77.007401, 38.881045 ], [ -77.006822, 38.880928 ], [ -77.006757, 38.880928 ], [ -77.006671, 38.880911 ], [ -77.006521, 38.880894 ], [ -77.006435, 38.880878 ], [ -77.006285, 38.880861 ], [ -77.006199, 38.880861 ], [ -77.005727, 38.880844 ], [ -77.005663, 38.880661 ], [ -77.005491, 38.880209 ], [ -77.005169, 38.879291 ], [ -77.005062, 38.878973 ], [ -77.004955, 38.878673 ], [ -77.004848, 38.878405 ], [ -77.004654, 38.877871 ], [ -77.004633, 38.877804 ], [ -77.004526, 38.877520 ], [ -77.004204, 38.876484 ], [ -77.005727, 38.876484 ], [ -77.005877, 38.876484 ], [ -77.006178, 38.876484 ], [ -77.006693, 38.876484 ], [ -77.007337, 38.876484 ], [ -77.007444, 38.876484 ], [ -77.007551, 38.876484 ], [ -77.007680, 38.876468 ], [ -77.007723, 38.876468 ], [ -77.007787, 38.876468 ], [ -77.007852, 38.876468 ], [ -77.007916, 38.876468 ], [ -77.007959, 38.876468 ], [ -77.008023, 38.876468 ], [ -77.008088, 38.876468 ], [ -77.008131, 38.876468 ], [ -77.008216, 38.876468 ], [ -77.008410, 38.876468 ], [ -77.008731, 38.876468 ], [ -77.008924, 38.876468 ], [ -77.009032, 38.876468 ], [ -77.009096, 38.876468 ], [ -77.009118, 38.876902 ], [ -77.009139, 38.877520 ], [ -77.009118, 38.878172 ], [ -77.009118, 38.878405 ], [ -77.009118, 38.879291 ], [ -77.009139, 38.879825 ], [ -77.009096, 38.880343 ], [ -77.009118, 38.881429 ], [ -77.009118, 38.881529 ], [ -77.009096, 38.881546 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006600", "GEOID": "11001006600", "NAME": "66", "NAMELSAD": "Census Tract 66", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 285156, "AWATER": 0, "INTPTLAT": "+38.8877585", "INTPTLON": "-076.9982439" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994956, 38.884602 ], [ -76.995084, 38.884602 ], [ -76.995234, 38.884602 ], [ -76.995277, 38.884602 ], [ -76.995299, 38.884586 ], [ -76.995342, 38.884586 ], [ -76.995406, 38.884552 ], [ -76.995428, 38.884552 ], [ -76.995428, 38.884536 ], [ -76.995449, 38.884502 ], [ -76.996179, 38.884803 ], [ -76.998453, 38.885705 ], [ -76.999354, 38.886089 ], [ -77.000577, 38.886590 ], [ -77.002037, 38.887191 ], [ -77.002037, 38.887342 ], [ -77.002037, 38.887592 ], [ -77.002037, 38.887676 ], [ -77.002037, 38.888594 ], [ -77.002037, 38.888678 ], [ -77.002037, 38.889162 ], [ -77.003517, 38.889146 ], [ -77.003517, 38.889697 ], [ -77.003517, 38.889814 ], [ -77.003281, 38.889797 ], [ -77.003109, 38.889797 ], [ -77.002573, 38.889814 ], [ -77.002037, 38.889814 ], [ -77.000663, 38.889814 ], [ -77.000577, 38.889814 ], [ -77.000427, 38.889797 ], [ -77.000191, 38.889797 ], [ -76.999505, 38.889814 ], [ -76.999183, 38.889814 ], [ -76.998539, 38.889814 ], [ -76.998432, 38.889814 ], [ -76.997681, 38.889814 ], [ -76.997273, 38.889797 ], [ -76.996350, 38.889797 ], [ -76.996157, 38.889797 ], [ -76.995685, 38.889797 ], [ -76.995578, 38.889797 ], [ -76.995084, 38.889797 ], [ -76.994956, 38.889797 ], [ -76.994956, 38.889680 ], [ -76.994956, 38.888828 ], [ -76.994956, 38.888761 ], [ -76.994956, 38.888678 ], [ -76.994956, 38.887893 ], [ -76.994956, 38.887709 ], [ -76.994956, 38.887592 ], [ -76.994956, 38.887509 ], [ -76.994956, 38.887375 ], [ -76.994956, 38.886807 ], [ -76.994956, 38.886089 ], [ -76.994956, 38.886022 ], [ -76.994956, 38.885955 ], [ -76.994956, 38.884669 ], [ -76.994956, 38.884602 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007203", "GEOID": "11001007203", "NAME": "72.03", "NAMELSAD": "Census Tract 72.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 384178, "AWATER": 0, "INTPTLAT": "+38.8781777", "INTPTLON": "-076.9994857" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.005727, 38.880844 ], [ -77.005169, 38.880828 ], [ -77.004676, 38.880811 ], [ -77.004333, 38.880811 ], [ -77.004204, 38.880811 ], [ -77.004011, 38.880794 ], [ -77.003882, 38.880794 ], [ -77.003517, 38.880777 ], [ -77.003410, 38.880761 ], [ -77.003174, 38.880744 ], [ -77.003131, 38.880727 ], [ -77.002959, 38.880694 ], [ -77.002873, 38.880677 ], [ -77.002788, 38.880661 ], [ -77.002637, 38.880627 ], [ -77.002552, 38.880610 ], [ -77.002423, 38.880577 ], [ -77.002316, 38.880544 ], [ -77.002037, 38.880477 ], [ -77.001886, 38.880443 ], [ -77.001500, 38.880326 ], [ -77.000577, 38.880076 ], [ -77.000470, 38.880042 ], [ -77.000299, 38.879992 ], [ -76.999741, 38.879842 ], [ -76.999097, 38.879658 ], [ -76.998818, 38.879575 ], [ -76.998689, 38.879541 ], [ -76.998603, 38.879525 ], [ -76.997895, 38.879324 ], [ -76.997402, 38.879174 ], [ -76.996651, 38.879007 ], [ -76.996179, 38.878907 ], [ -76.995857, 38.878823 ], [ -76.995513, 38.878756 ], [ -76.994977, 38.878639 ], [ -76.994827, 38.878606 ], [ -76.993732, 38.878372 ], [ -76.993325, 38.878272 ], [ -76.992960, 38.878188 ], [ -76.992359, 38.878071 ], [ -76.991909, 38.877938 ], [ -76.991630, 38.877837 ], [ -76.991522, 38.877771 ], [ -76.991522, 38.877704 ], [ -76.991522, 38.877537 ], [ -76.991522, 38.877219 ], [ -76.991544, 38.876501 ], [ -76.991801, 38.876484 ], [ -76.992660, 38.876468 ], [ -76.993754, 38.876468 ], [ -76.994956, 38.876468 ], [ -76.995149, 38.876468 ], [ -76.996007, 38.876468 ], [ -76.996179, 38.876484 ], [ -76.996372, 38.876468 ], [ -76.996779, 38.876468 ], [ -76.997530, 38.876484 ], [ -76.997766, 38.876484 ], [ -76.998024, 38.876484 ], [ -76.999376, 38.876484 ], [ -76.999505, 38.876484 ], [ -76.999612, 38.876484 ], [ -77.000577, 38.876484 ], [ -77.001758, 38.876484 ], [ -77.001951, 38.876484 ], [ -77.002037, 38.876484 ], [ -77.002165, 38.876484 ], [ -77.002831, 38.876484 ], [ -77.002959, 38.876484 ], [ -77.003517, 38.876484 ], [ -77.003689, 38.876484 ], [ -77.004054, 38.876484 ], [ -77.004204, 38.876484 ], [ -77.004526, 38.877520 ], [ -77.004633, 38.877804 ], [ -77.004654, 38.877871 ], [ -77.004848, 38.878405 ], [ -77.004955, 38.878673 ], [ -77.005062, 38.878973 ], [ -77.005169, 38.879291 ], [ -77.005491, 38.880209 ], [ -77.005663, 38.880661 ], [ -77.005727, 38.880844 ] ] ], [ [ [ -77.002037, 38.882297 ], [ -77.001951, 38.882331 ], [ -77.001908, 38.882331 ], [ -77.000706, 38.882648 ], [ -77.000577, 38.882698 ], [ -77.000513, 38.882715 ], [ -77.000470, 38.882732 ], [ -76.999505, 38.882732 ], [ -76.999397, 38.882732 ], [ -76.998539, 38.882732 ], [ -76.998453, 38.882732 ], [ -76.998453, 38.883149 ], [ -76.998453, 38.883250 ], [ -76.998346, 38.883266 ], [ -76.997831, 38.883417 ], [ -76.997080, 38.883600 ], [ -76.996458, 38.883784 ], [ -76.996415, 38.883784 ], [ -76.996393, 38.883784 ], [ -76.996329, 38.883801 ], [ -76.996264, 38.883801 ], [ -76.996179, 38.883767 ], [ -76.996179, 38.883951 ], [ -76.996179, 38.884268 ], [ -76.996179, 38.884335 ], [ -76.996179, 38.884552 ], [ -76.996179, 38.884669 ], [ -76.996179, 38.884803 ], [ -76.995449, 38.884502 ], [ -76.995428, 38.884536 ], [ -76.995428, 38.884552 ], [ -76.995406, 38.884552 ], [ -76.995342, 38.884586 ], [ -76.995299, 38.884586 ], [ -76.995277, 38.884602 ], [ -76.995234, 38.884602 ], [ -76.995084, 38.884602 ], [ -76.994956, 38.884602 ], [ -76.994848, 38.884602 ], [ -76.993968, 38.884586 ], [ -76.993797, 38.884586 ], [ -76.993775, 38.884586 ], [ -76.993754, 38.884586 ], [ -76.993754, 38.884185 ], [ -76.993754, 38.884101 ], [ -76.993754, 38.883817 ], [ -76.993754, 38.883801 ], [ -76.992638, 38.883350 ], [ -76.992509, 38.883300 ], [ -76.991909, 38.883049 ], [ -76.991694, 38.882966 ], [ -76.991522, 38.882882 ], [ -76.991522, 38.882799 ], [ -76.991522, 38.882648 ], [ -76.991522, 38.881880 ], [ -76.991522, 38.881512 ], [ -76.991522, 38.881362 ], [ -76.991522, 38.881262 ], [ -76.991522, 38.880427 ], [ -76.991522, 38.879742 ], [ -76.991522, 38.879274 ], [ -76.991522, 38.878405 ], [ -76.991522, 38.878339 ], [ -76.991522, 38.878222 ], [ -76.991522, 38.878105 ], [ -76.991522, 38.878088 ], [ -76.991522, 38.877954 ], [ -76.991522, 38.877771 ], [ -76.991630, 38.877837 ], [ -76.991909, 38.877938 ], [ -76.992359, 38.878071 ], [ -76.992960, 38.878188 ], [ -76.993325, 38.878272 ], [ -76.993732, 38.878372 ], [ -76.994827, 38.878606 ], [ -76.994977, 38.878639 ], [ -76.995513, 38.878756 ], [ -76.995857, 38.878823 ], [ -76.996179, 38.878907 ], [ -76.996651, 38.879007 ], [ -76.997402, 38.879174 ], [ -76.997895, 38.879324 ], [ -76.998603, 38.879525 ], [ -76.998689, 38.879541 ], [ -76.998818, 38.879575 ], [ -76.999097, 38.879658 ], [ -76.999741, 38.879842 ], [ -77.000299, 38.879992 ], [ -77.000470, 38.880042 ], [ -77.000577, 38.880076 ], [ -77.001500, 38.880326 ], [ -77.001886, 38.880443 ], [ -77.002037, 38.880477 ], [ -77.002037, 38.880644 ], [ -77.002037, 38.880727 ], [ -77.002037, 38.880811 ], [ -77.002037, 38.881195 ], [ -77.002037, 38.881245 ], [ -77.002037, 38.881262 ], [ -77.002037, 38.881997 ], [ -77.002037, 38.882297 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006400", "GEOID": "11001006400", "NAME": "64", "NAMELSAD": "Census Tract 64", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 691410, "AWATER": 243648, "INTPTLAT": "+38.8688572", "INTPTLON": "-077.0114342" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009096, 38.876468 ], [ -77.009096, 38.875632 ], [ -77.009096, 38.874897 ], [ -77.009096, 38.874714 ], [ -77.009075, 38.874630 ], [ -77.009075, 38.874396 ], [ -77.009075, 38.874279 ], [ -77.009075, 38.873511 ], [ -77.009075, 38.872976 ], [ -77.009075, 38.872809 ], [ -77.009075, 38.872692 ], [ -77.009075, 38.872458 ], [ -77.009075, 38.872091 ], [ -77.009075, 38.872024 ], [ -77.009075, 38.871606 ], [ -77.009075, 38.871439 ], [ -77.009053, 38.871339 ], [ -77.009032, 38.871206 ], [ -77.008967, 38.871055 ], [ -77.008924, 38.870905 ], [ -77.008882, 38.870805 ], [ -77.008796, 38.870621 ], [ -77.008710, 38.870454 ], [ -77.008624, 38.870320 ], [ -77.008495, 38.870170 ], [ -77.008324, 38.870003 ], [ -77.008195, 38.869919 ], [ -77.008023, 38.869802 ], [ -77.007766, 38.869669 ], [ -77.007422, 38.869501 ], [ -77.005706, 38.868800 ], [ -77.005448, 38.868700 ], [ -77.006328, 38.867279 ], [ -77.008173, 38.864473 ], [ -77.009118, 38.863587 ], [ -77.013688, 38.860997 ], [ -77.015362, 38.860028 ], [ -77.015340, 38.862100 ], [ -77.015319, 38.864088 ], [ -77.015319, 38.864623 ], [ -77.015297, 38.864857 ], [ -77.015297, 38.865291 ], [ -77.015319, 38.868248 ], [ -77.015319, 38.868917 ], [ -77.015319, 38.869468 ], [ -77.014825, 38.870537 ], [ -77.014847, 38.870654 ], [ -77.014825, 38.870771 ], [ -77.014332, 38.872041 ], [ -77.013667, 38.872041 ], [ -77.013667, 38.872174 ], [ -77.013667, 38.872225 ], [ -77.013667, 38.872258 ], [ -77.013645, 38.872325 ], [ -77.013645, 38.872342 ], [ -77.013624, 38.872375 ], [ -77.013366, 38.872976 ], [ -77.013237, 38.873244 ], [ -77.013173, 38.873411 ], [ -77.013323, 38.873444 ], [ -77.014117, 38.873661 ], [ -77.014160, 38.873678 ], [ -77.014203, 38.873695 ], [ -77.014246, 38.873728 ], [ -77.014289, 38.873761 ], [ -77.014332, 38.873795 ], [ -77.014353, 38.873828 ], [ -77.014375, 38.873862 ], [ -77.014396, 38.873895 ], [ -77.014418, 38.873945 ], [ -77.014418, 38.873979 ], [ -77.014439, 38.874162 ], [ -77.014439, 38.874329 ], [ -77.014439, 38.874497 ], [ -77.014439, 38.874664 ], [ -77.014439, 38.874747 ], [ -77.014418, 38.874831 ], [ -77.014396, 38.874931 ], [ -77.014289, 38.875248 ], [ -77.014139, 38.875666 ], [ -77.014053, 38.875883 ], [ -77.013924, 38.876267 ], [ -77.013860, 38.876451 ], [ -77.012615, 38.876451 ], [ -77.012165, 38.876451 ], [ -77.011843, 38.876451 ], [ -77.011392, 38.876451 ], [ -77.011199, 38.876451 ], [ -77.011006, 38.876451 ], [ -77.010963, 38.876451 ], [ -77.010641, 38.876451 ], [ -77.010534, 38.876451 ], [ -77.010298, 38.876451 ], [ -77.009890, 38.876451 ], [ -77.009676, 38.876451 ], [ -77.009397, 38.876468 ], [ -77.009268, 38.876468 ], [ -77.009096, 38.876468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007201", "GEOID": "11001007201", "NAME": "72.01", "NAMELSAD": "Census Tract 72.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 781457, "AWATER": 312419, "INTPTLAT": "+38.8738481", "INTPTLON": "-076.9999179" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009096, 38.876468 ], [ -77.009032, 38.876468 ], [ -77.008924, 38.876468 ], [ -77.008731, 38.876468 ], [ -77.008410, 38.876468 ], [ -77.008216, 38.876468 ], [ -77.008131, 38.876468 ], [ -77.008088, 38.876468 ], [ -77.008023, 38.876468 ], [ -77.007959, 38.876468 ], [ -77.007916, 38.876468 ], [ -77.007852, 38.876468 ], [ -77.007787, 38.876468 ], [ -77.007723, 38.876468 ], [ -77.007680, 38.876468 ], [ -77.007551, 38.876484 ], [ -77.007444, 38.876484 ], [ -77.007337, 38.876484 ], [ -77.006693, 38.876484 ], [ -77.006178, 38.876484 ], [ -77.005877, 38.876484 ], [ -77.005727, 38.876484 ], [ -77.004204, 38.876484 ], [ -77.004054, 38.876484 ], [ -77.003689, 38.876484 ], [ -77.003517, 38.876484 ], [ -77.002959, 38.876484 ], [ -77.002831, 38.876484 ], [ -77.002165, 38.876484 ], [ -77.002037, 38.876484 ], [ -77.001951, 38.876484 ], [ -77.001758, 38.876484 ], [ -77.000577, 38.876484 ], [ -76.999612, 38.876484 ], [ -76.999505, 38.876484 ], [ -76.999376, 38.876484 ], [ -76.998024, 38.876484 ], [ -76.997766, 38.876484 ], [ -76.997530, 38.876484 ], [ -76.996779, 38.876468 ], [ -76.996372, 38.876468 ], [ -76.996179, 38.876484 ], [ -76.996007, 38.876468 ], [ -76.995149, 38.876468 ], [ -76.994956, 38.876468 ], [ -76.993754, 38.876468 ], [ -76.992660, 38.876468 ], [ -76.991801, 38.876484 ], [ -76.991544, 38.876501 ], [ -76.991479, 38.874597 ], [ -76.991458, 38.874380 ], [ -76.991415, 38.874029 ], [ -76.991372, 38.873695 ], [ -76.991286, 38.873294 ], [ -76.991265, 38.873227 ], [ -76.991222, 38.873093 ], [ -76.991158, 38.872960 ], [ -76.991093, 38.872826 ], [ -76.990921, 38.872475 ], [ -76.990771, 38.872225 ], [ -76.990471, 38.871840 ], [ -76.990471, 38.871122 ], [ -76.992445, 38.870120 ], [ -76.992660, 38.870120 ], [ -76.993818, 38.870103 ], [ -76.995471, 38.870069 ], [ -76.999526, 38.870487 ], [ -77.000706, 38.870604 ], [ -77.003410, 38.870871 ], [ -77.005384, 38.868783 ], [ -77.005448, 38.868700 ], [ -77.005706, 38.868800 ], [ -77.007422, 38.869501 ], [ -77.007766, 38.869669 ], [ -77.008023, 38.869802 ], [ -77.008195, 38.869919 ], [ -77.008324, 38.870003 ], [ -77.008495, 38.870170 ], [ -77.008624, 38.870320 ], [ -77.008710, 38.870454 ], [ -77.008796, 38.870621 ], [ -77.008882, 38.870805 ], [ -77.008924, 38.870905 ], [ -77.008967, 38.871055 ], [ -77.009032, 38.871206 ], [ -77.009053, 38.871339 ], [ -77.009075, 38.871439 ], [ -77.009075, 38.871606 ], [ -77.009075, 38.872024 ], [ -77.009075, 38.872091 ], [ -77.009075, 38.872458 ], [ -77.009075, 38.872692 ], [ -77.009075, 38.872809 ], [ -77.009075, 38.872976 ], [ -77.009075, 38.873511 ], [ -77.009075, 38.874279 ], [ -77.009075, 38.874396 ], [ -77.009075, 38.874630 ], [ -77.009096, 38.874714 ], [ -77.009096, 38.874897 ], [ -77.009096, 38.875632 ], [ -77.009096, 38.876468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007401", "GEOID": "11001007401", "NAME": "74.01", "NAMELSAD": "Census Tract 74.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1209113, "AWATER": 200980, "INTPTLAT": "+38.8675208", "INTPTLON": "-076.9991203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.003410, 38.870871 ], [ -77.000706, 38.870604 ], [ -76.999526, 38.870487 ], [ -76.995471, 38.870069 ], [ -76.993818, 38.870103 ], [ -76.992660, 38.870120 ], [ -76.992445, 38.870120 ], [ -76.990471, 38.871122 ], [ -76.990471, 38.867430 ], [ -76.990600, 38.867279 ], [ -76.991072, 38.866661 ], [ -76.991115, 38.866611 ], [ -76.991136, 38.866578 ], [ -76.991286, 38.866394 ], [ -76.991329, 38.866310 ], [ -76.991501, 38.866093 ], [ -76.991608, 38.865926 ], [ -76.991694, 38.865826 ], [ -76.991758, 38.865759 ], [ -76.991844, 38.865659 ], [ -76.991930, 38.865575 ], [ -76.991994, 38.865509 ], [ -76.992252, 38.865241 ], [ -76.992424, 38.865091 ], [ -76.992445, 38.865074 ], [ -76.992488, 38.865041 ], [ -76.992574, 38.864957 ], [ -76.992702, 38.864857 ], [ -76.992488, 38.864690 ], [ -76.992338, 38.864573 ], [ -76.992316, 38.864556 ], [ -76.991823, 38.864222 ], [ -76.991758, 38.864172 ], [ -76.991415, 38.863955 ], [ -76.991415, 38.863938 ], [ -76.991394, 38.863921 ], [ -76.991351, 38.863871 ], [ -76.991115, 38.863570 ], [ -76.991093, 38.863520 ], [ -76.991050, 38.863470 ], [ -76.991007, 38.863420 ], [ -76.991222, 38.863320 ], [ -76.991501, 38.863153 ], [ -76.992230, 38.862768 ], [ -76.992660, 38.862535 ], [ -76.992981, 38.862367 ], [ -76.993089, 38.862301 ], [ -76.993132, 38.862284 ], [ -76.993153, 38.862267 ], [ -76.993217, 38.862217 ], [ -76.993239, 38.862217 ], [ -76.993260, 38.862184 ], [ -76.993282, 38.862150 ], [ -76.993539, 38.861833 ], [ -76.993625, 38.861733 ], [ -76.993754, 38.861565 ], [ -76.993818, 38.861448 ], [ -76.994011, 38.861148 ], [ -76.994162, 38.860931 ], [ -76.994226, 38.860797 ], [ -76.994312, 38.860646 ], [ -76.994183, 38.860496 ], [ -76.994033, 38.860296 ], [ -76.993861, 38.860028 ], [ -76.993754, 38.859778 ], [ -76.993647, 38.859443 ], [ -76.993604, 38.859159 ], [ -76.993582, 38.858942 ], [ -76.993604, 38.858474 ], [ -76.993625, 38.857706 ], [ -76.993647, 38.857188 ], [ -76.993647, 38.856703 ], [ -76.993647, 38.855918 ], [ -76.993625, 38.855734 ], [ -76.993539, 38.855467 ], [ -76.993432, 38.855199 ], [ -76.993260, 38.854899 ], [ -76.993089, 38.854648 ], [ -76.992853, 38.854397 ], [ -76.992595, 38.854163 ], [ -76.992338, 38.853979 ], [ -76.992059, 38.853812 ], [ -76.991973, 38.853746 ], [ -76.992145, 38.853595 ], [ -76.992252, 38.853478 ], [ -76.992273, 38.853461 ], [ -76.992273, 38.853445 ], [ -76.992466, 38.853562 ], [ -76.996093, 38.855834 ], [ -76.998754, 38.857505 ], [ -77.002594, 38.859878 ], [ -77.002723, 38.859961 ], [ -77.002981, 38.860112 ], [ -77.002959, 38.860179 ], [ -77.002938, 38.860245 ], [ -77.002873, 38.860362 ], [ -77.002809, 38.860496 ], [ -77.002916, 38.860496 ], [ -77.003002, 38.860530 ], [ -77.003303, 38.860646 ], [ -77.003431, 38.860680 ], [ -77.003131, 38.861031 ], [ -77.002938, 38.861315 ], [ -77.002895, 38.861365 ], [ -77.002873, 38.861398 ], [ -77.002852, 38.861415 ], [ -77.002809, 38.861499 ], [ -77.002788, 38.861515 ], [ -77.002680, 38.861699 ], [ -77.002659, 38.861716 ], [ -77.002594, 38.861816 ], [ -77.002380, 38.862167 ], [ -77.002337, 38.862234 ], [ -77.002294, 38.862317 ], [ -77.002273, 38.862334 ], [ -77.002251, 38.862367 ], [ -77.002208, 38.862434 ], [ -77.002187, 38.862484 ], [ -77.002165, 38.862551 ], [ -77.002144, 38.862601 ], [ -77.002101, 38.862702 ], [ -77.002079, 38.862752 ], [ -77.002058, 38.862819 ], [ -77.002015, 38.862936 ], [ -77.002015, 38.863002 ], [ -77.001994, 38.863052 ], [ -77.001994, 38.863136 ], [ -77.001929, 38.863487 ], [ -77.001822, 38.864189 ], [ -77.001801, 38.864289 ], [ -77.001779, 38.864356 ], [ -77.001758, 38.864606 ], [ -77.001736, 38.864640 ], [ -77.001715, 38.864824 ], [ -77.001736, 38.864874 ], [ -77.001715, 38.865124 ], [ -77.001736, 38.865208 ], [ -77.001736, 38.865291 ], [ -77.001736, 38.865341 ], [ -77.001758, 38.865375 ], [ -77.001758, 38.865408 ], [ -77.001779, 38.865492 ], [ -77.001801, 38.865525 ], [ -77.001801, 38.865559 ], [ -77.001843, 38.865609 ], [ -77.001972, 38.865859 ], [ -77.001994, 38.865893 ], [ -77.002037, 38.865976 ], [ -77.002101, 38.866077 ], [ -77.002208, 38.866277 ], [ -77.002294, 38.866461 ], [ -77.002337, 38.866528 ], [ -77.002358, 38.866561 ], [ -77.002358, 38.866594 ], [ -77.002380, 38.866628 ], [ -77.002401, 38.866711 ], [ -77.002401, 38.866745 ], [ -77.002401, 38.866778 ], [ -77.002401, 38.866812 ], [ -77.002401, 38.866845 ], [ -77.002401, 38.866912 ], [ -77.002401, 38.866979 ], [ -77.002401, 38.867012 ], [ -77.002401, 38.867079 ], [ -77.002380, 38.867112 ], [ -77.002358, 38.867179 ], [ -77.002337, 38.867246 ], [ -77.002337, 38.867263 ], [ -77.002316, 38.867313 ], [ -77.002273, 38.867380 ], [ -77.002294, 38.867413 ], [ -77.002316, 38.867430 ], [ -77.002401, 38.867480 ], [ -77.003303, 38.867848 ], [ -77.003689, 38.868015 ], [ -77.005448, 38.868700 ], [ -77.005384, 38.868783 ], [ -77.003410, 38.870871 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007301", "GEOID": "11001007301", "NAME": "73.01", "NAMELSAD": "Census Tract 73.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684643, "AWATER": 5139082, "INTPTLAT": "+38.8349280", "INTPTLON": "-077.0244450" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.039545, 38.821254 ], [ -77.039545, 38.821270 ], [ -77.039502, 38.821287 ], [ -77.039502, 38.821304 ], [ -77.039502, 38.821337 ], [ -77.039502, 38.821354 ], [ -77.039480, 38.821404 ], [ -77.039459, 38.821437 ], [ -77.039437, 38.821454 ], [ -77.039459, 38.821554 ], [ -77.039480, 38.821588 ], [ -77.039480, 38.821605 ], [ -77.039480, 38.821655 ], [ -77.039545, 38.821705 ], [ -77.039587, 38.821705 ], [ -77.039630, 38.821722 ], [ -77.039652, 38.821772 ], [ -77.039695, 38.821822 ], [ -77.039759, 38.821822 ], [ -77.039802, 38.821839 ], [ -77.039888, 38.821855 ], [ -77.039931, 38.821872 ], [ -77.040060, 38.821889 ], [ -77.040102, 38.821906 ], [ -77.040231, 38.821972 ], [ -77.040381, 38.821989 ], [ -77.040510, 38.821972 ], [ -77.040596, 38.821989 ], [ -77.040639, 38.822023 ], [ -77.040682, 38.822039 ], [ -77.040725, 38.822073 ], [ -77.040746, 38.822089 ], [ -77.040811, 38.822173 ], [ -77.040854, 38.822240 ], [ -77.040875, 38.822340 ], [ -77.040918, 38.822407 ], [ -77.040982, 38.822558 ], [ -77.040982, 38.822591 ], [ -77.040982, 38.822608 ], [ -77.041004, 38.822658 ], [ -77.041025, 38.822708 ], [ -77.041090, 38.822875 ], [ -77.041090, 38.822925 ], [ -77.041111, 38.822942 ], [ -77.041090, 38.823042 ], [ -77.041090, 38.823076 ], [ -77.041068, 38.823193 ], [ -77.041068, 38.823226 ], [ -77.041068, 38.823260 ], [ -77.041047, 38.823293 ], [ -77.041004, 38.823310 ], [ -77.040982, 38.823327 ], [ -77.040939, 38.823377 ], [ -77.040875, 38.823377 ], [ -77.040789, 38.823444 ], [ -77.040768, 38.823477 ], [ -77.040682, 38.823544 ], [ -77.040639, 38.823561 ], [ -77.040617, 38.823594 ], [ -77.040596, 38.823611 ], [ -77.040532, 38.823611 ], [ -77.040510, 38.823627 ], [ -77.040424, 38.823644 ], [ -77.040403, 38.823644 ], [ -77.040381, 38.823661 ], [ -77.040339, 38.823678 ], [ -77.040274, 38.823678 ], [ -77.040253, 38.823711 ], [ -77.040188, 38.823711 ], [ -77.040167, 38.823728 ], [ -77.040124, 38.823711 ], [ -77.040102, 38.823728 ], [ -77.040060, 38.823744 ], [ -77.040038, 38.823744 ], [ -77.040017, 38.823744 ], [ -77.039974, 38.823744 ], [ -77.039802, 38.823744 ], [ -77.039781, 38.823744 ], [ -77.039759, 38.823744 ], [ -77.039738, 38.823761 ], [ -77.039716, 38.823778 ], [ -77.039695, 38.823795 ], [ -77.039673, 38.823811 ], [ -77.039673, 38.823828 ], [ -77.039673, 38.823845 ], [ -77.039673, 38.823861 ], [ -77.039673, 38.823878 ], [ -77.039652, 38.823928 ], [ -77.039630, 38.823945 ], [ -77.039587, 38.823962 ], [ -77.039587, 38.823979 ], [ -77.039523, 38.824012 ], [ -77.039502, 38.824029 ], [ -77.039459, 38.824029 ], [ -77.039394, 38.824045 ], [ -77.039373, 38.824045 ], [ -77.039330, 38.824062 ], [ -77.039244, 38.824062 ], [ -77.039201, 38.824079 ], [ -77.039180, 38.824079 ], [ -77.039115, 38.824096 ], [ -77.039073, 38.824096 ], [ -77.039073, 38.824129 ], [ -77.039051, 38.824146 ], [ -77.039030, 38.824162 ], [ -77.039008, 38.824229 ], [ -77.038965, 38.824263 ], [ -77.038944, 38.824313 ], [ -77.038901, 38.824363 ], [ -77.038879, 38.824363 ], [ -77.038858, 38.824413 ], [ -77.038836, 38.824413 ], [ -77.038794, 38.824447 ], [ -77.038772, 38.824463 ], [ -77.038794, 38.824497 ], [ -77.038794, 38.824530 ], [ -77.038794, 38.824547 ], [ -77.038836, 38.824564 ], [ -77.038815, 38.824580 ], [ -77.038815, 38.824614 ], [ -77.038794, 38.824647 ], [ -77.038794, 38.824697 ], [ -77.038751, 38.824747 ], [ -77.038751, 38.824881 ], [ -77.038751, 38.824965 ], [ -77.038665, 38.825065 ], [ -77.038622, 38.825416 ], [ -77.038600, 38.825500 ], [ -77.038643, 38.825567 ], [ -77.038665, 38.825667 ], [ -77.038622, 38.825767 ], [ -77.038600, 38.825918 ], [ -77.038536, 38.826035 ], [ -77.038579, 38.826085 ], [ -77.038558, 38.826185 ], [ -77.038515, 38.826252 ], [ -77.038493, 38.826352 ], [ -77.038450, 38.826436 ], [ -77.038450, 38.826519 ], [ -77.038386, 38.826820 ], [ -77.038321, 38.826921 ], [ -77.038300, 38.827088 ], [ -77.038321, 38.827121 ], [ -77.038386, 38.827171 ], [ -77.038364, 38.827272 ], [ -77.038300, 38.827322 ], [ -77.038300, 38.827355 ], [ -77.038279, 38.827422 ], [ -77.038257, 38.827472 ], [ -77.038279, 38.827506 ], [ -77.038257, 38.827522 ], [ -77.038236, 38.827539 ], [ -77.038193, 38.827573 ], [ -77.038193, 38.827589 ], [ -77.038193, 38.827606 ], [ -77.038171, 38.827639 ], [ -77.038150, 38.827656 ], [ -77.038128, 38.827673 ], [ -77.038128, 38.827690 ], [ -77.038128, 38.827706 ], [ -77.038128, 38.827723 ], [ -77.038128, 38.827740 ], [ -77.038128, 38.827756 ], [ -77.038128, 38.827773 ], [ -77.038150, 38.827790 ], [ -77.038150, 38.827807 ], [ -77.038150, 38.827840 ], [ -77.038150, 38.827857 ], [ -77.038150, 38.827874 ], [ -77.038150, 38.827890 ], [ -77.038150, 38.827940 ], [ -77.038128, 38.827940 ], [ -77.038128, 38.828007 ], [ -77.038128, 38.828024 ], [ -77.038107, 38.828041 ], [ -77.038085, 38.828057 ], [ -77.038064, 38.828074 ], [ -77.038064, 38.828091 ], [ -77.038064, 38.828108 ], [ -77.038043, 38.828124 ], [ -77.038043, 38.828141 ], [ -77.038064, 38.828158 ], [ -77.038064, 38.828174 ], [ -77.038064, 38.828191 ], [ -77.038043, 38.828208 ], [ -77.038043, 38.828225 ], [ -77.038021, 38.828241 ], [ -77.038021, 38.828258 ], [ -77.038021, 38.828291 ], [ -77.038021, 38.828325 ], [ -77.038043, 38.828342 ], [ -77.038043, 38.828358 ], [ -77.038043, 38.828375 ], [ -77.038021, 38.828392 ], [ -77.038000, 38.828408 ], [ -77.038000, 38.828425 ], [ -77.038021, 38.828459 ], [ -77.038000, 38.828475 ], [ -77.037978, 38.828576 ], [ -77.037957, 38.828592 ], [ -77.037978, 38.828609 ], [ -77.037978, 38.828626 ], [ -77.037978, 38.828659 ], [ -77.037978, 38.828676 ], [ -77.037957, 38.828693 ], [ -77.037957, 38.828726 ], [ -77.037935, 38.828743 ], [ -77.037935, 38.828776 ], [ -77.037957, 38.828793 ], [ -77.037935, 38.828826 ], [ -77.037935, 38.828843 ], [ -77.037914, 38.828893 ], [ -77.037871, 38.828943 ], [ -77.037871, 38.828960 ], [ -77.037849, 38.828977 ], [ -77.037828, 38.828993 ], [ -77.037828, 38.829010 ], [ -77.037828, 38.829027 ], [ -77.037849, 38.829060 ], [ -77.037849, 38.829077 ], [ -77.037828, 38.829144 ], [ -77.037807, 38.829161 ], [ -77.037785, 38.829177 ], [ -77.037764, 38.829194 ], [ -77.037764, 38.829211 ], [ -77.037764, 38.829228 ], [ -77.037764, 38.829244 ], [ -77.037785, 38.829278 ], [ -77.037807, 38.829294 ], [ -77.037807, 38.829311 ], [ -77.037785, 38.829328 ], [ -77.037742, 38.829378 ], [ -77.037764, 38.829411 ], [ -77.037764, 38.829428 ], [ -77.037764, 38.829445 ], [ -77.037721, 38.829462 ], [ -77.037699, 38.829495 ], [ -77.037699, 38.829545 ], [ -77.037721, 38.829595 ], [ -77.037742, 38.829629 ], [ -77.037742, 38.829746 ], [ -77.037764, 38.829762 ], [ -77.037764, 38.829813 ], [ -77.037742, 38.829846 ], [ -77.037721, 38.829863 ], [ -77.037742, 38.829913 ], [ -77.037742, 38.829996 ], [ -77.037742, 38.830030 ], [ -77.037742, 38.830130 ], [ -77.037785, 38.830180 ], [ -77.037785, 38.830197 ], [ -77.037828, 38.830197 ], [ -77.037828, 38.830214 ], [ -77.037807, 38.830247 ], [ -77.037807, 38.830297 ], [ -77.037828, 38.830314 ], [ -77.037828, 38.830347 ], [ -77.037828, 38.830398 ], [ -77.037849, 38.830448 ], [ -77.037871, 38.830481 ], [ -77.037849, 38.830498 ], [ -77.037871, 38.830531 ], [ -77.037957, 38.830615 ], [ -77.038021, 38.830665 ], [ -77.038021, 38.830715 ], [ -77.038000, 38.830732 ], [ -77.038064, 38.830815 ], [ -77.038128, 38.830882 ], [ -77.038150, 38.830933 ], [ -77.038193, 38.830983 ], [ -77.038236, 38.831033 ], [ -77.038257, 38.831050 ], [ -77.038257, 38.831100 ], [ -77.038279, 38.831167 ], [ -77.038343, 38.831217 ], [ -77.038407, 38.831233 ], [ -77.038407, 38.831284 ], [ -77.038472, 38.831384 ], [ -77.038493, 38.831401 ], [ -77.038536, 38.831434 ], [ -77.038536, 38.831467 ], [ -77.038558, 38.831518 ], [ -77.038622, 38.831551 ], [ -77.038622, 38.831601 ], [ -77.038643, 38.831601 ], [ -77.038686, 38.831635 ], [ -77.038708, 38.831701 ], [ -77.038751, 38.831735 ], [ -77.038794, 38.831735 ], [ -77.038815, 38.831752 ], [ -77.038815, 38.831768 ], [ -77.038858, 38.831802 ], [ -77.038858, 38.831835 ], [ -77.038879, 38.831852 ], [ -77.038901, 38.831885 ], [ -77.038944, 38.831919 ], [ -77.039008, 38.831952 ], [ -77.039030, 38.832036 ], [ -77.039115, 38.832103 ], [ -77.039158, 38.832153 ], [ -77.039223, 38.832186 ], [ -77.039330, 38.832270 ], [ -77.039545, 38.832387 ], [ -77.039673, 38.832470 ], [ -77.039716, 38.832520 ], [ -77.039738, 38.832537 ], [ -77.039781, 38.832554 ], [ -77.039845, 38.832571 ], [ -77.039931, 38.832587 ], [ -77.039952, 38.832587 ], [ -77.040403, 38.832871 ], [ -77.040467, 38.832871 ], [ -77.040532, 38.832938 ], [ -77.040596, 38.832972 ], [ -77.040639, 38.832988 ], [ -77.040703, 38.833022 ], [ -77.040768, 38.833055 ], [ -77.040832, 38.833105 ], [ -77.040896, 38.833156 ], [ -77.041004, 38.833206 ], [ -77.041712, 38.833624 ], [ -77.041776, 38.833674 ], [ -77.041883, 38.833707 ], [ -77.041991, 38.833724 ], [ -77.042034, 38.833724 ], [ -77.042120, 38.833707 ], [ -77.042184, 38.833691 ], [ -77.042270, 38.833657 ], [ -77.042377, 38.833607 ], [ -77.042441, 38.833540 ], [ -77.042527, 38.833473 ], [ -77.042549, 38.833406 ], [ -77.042570, 38.833323 ], [ -77.042570, 38.833239 ], [ -77.042549, 38.833156 ], [ -77.042549, 38.833122 ], [ -77.042527, 38.833072 ], [ -77.042527, 38.833039 ], [ -77.042527, 38.833022 ], [ -77.042506, 38.832972 ], [ -77.042484, 38.832955 ], [ -77.042463, 38.832905 ], [ -77.042420, 38.832838 ], [ -77.042398, 38.832688 ], [ -77.042334, 38.832654 ], [ -77.042334, 38.832621 ], [ -77.042334, 38.832587 ], [ -77.042291, 38.832554 ], [ -77.042291, 38.832504 ], [ -77.042270, 38.832470 ], [ -77.042227, 38.832403 ], [ -77.042227, 38.832370 ], [ -77.042205, 38.832320 ], [ -77.042205, 38.832236 ], [ -77.042184, 38.832220 ], [ -77.042184, 38.832169 ], [ -77.042141, 38.832086 ], [ -77.042141, 38.831969 ], [ -77.042077, 38.831835 ], [ -77.042055, 38.831835 ], [ -77.042034, 38.831785 ], [ -77.042012, 38.831735 ], [ -77.041991, 38.831668 ], [ -77.041991, 38.831635 ], [ -77.041991, 38.831601 ], [ -77.041948, 38.831584 ], [ -77.041969, 38.831568 ], [ -77.041969, 38.831518 ], [ -77.041969, 38.831484 ], [ -77.042012, 38.831451 ], [ -77.042034, 38.831434 ], [ -77.042077, 38.831417 ], [ -77.042120, 38.831417 ], [ -77.042098, 38.831367 ], [ -77.042098, 38.831334 ], [ -77.042270, 38.831267 ], [ -77.042377, 38.831217 ], [ -77.042420, 38.831217 ], [ -77.042463, 38.831250 ], [ -77.042506, 38.831250 ], [ -77.042549, 38.831217 ], [ -77.042806, 38.831183 ], [ -77.042871, 38.831200 ], [ -77.042913, 38.831217 ], [ -77.042999, 38.831250 ], [ -77.043042, 38.831284 ], [ -77.043085, 38.831350 ], [ -77.043128, 38.831350 ], [ -77.043149, 38.831367 ], [ -77.043171, 38.831417 ], [ -77.043192, 38.831434 ], [ -77.043278, 38.831501 ], [ -77.043278, 38.831534 ], [ -77.043321, 38.831618 ], [ -77.043300, 38.831635 ], [ -77.043343, 38.831685 ], [ -77.043343, 38.831718 ], [ -77.043343, 38.831735 ], [ -77.043364, 38.831852 ], [ -77.043407, 38.831869 ], [ -77.043450, 38.831902 ], [ -77.043471, 38.832086 ], [ -77.043493, 38.832119 ], [ -77.043493, 38.832186 ], [ -77.043514, 38.832220 ], [ -77.043536, 38.832303 ], [ -77.043536, 38.832370 ], [ -77.043557, 38.832420 ], [ -77.043600, 38.832470 ], [ -77.043600, 38.832571 ], [ -77.043600, 38.832587 ], [ -77.043600, 38.832637 ], [ -77.043643, 38.832704 ], [ -77.043664, 38.832754 ], [ -77.043664, 38.832855 ], [ -77.043686, 38.832888 ], [ -77.043707, 38.832938 ], [ -77.043729, 38.832955 ], [ -77.043750, 38.833022 ], [ -77.043793, 38.833072 ], [ -77.043772, 38.833105 ], [ -77.043750, 38.833139 ], [ -77.043772, 38.833172 ], [ -77.043836, 38.833189 ], [ -77.043836, 38.833222 ], [ -77.043793, 38.833256 ], [ -77.043793, 38.833323 ], [ -77.043772, 38.833356 ], [ -77.043793, 38.833373 ], [ -77.043836, 38.833406 ], [ -77.043900, 38.833440 ], [ -77.043922, 38.833473 ], [ -77.043965, 38.833507 ], [ -77.044051, 38.833523 ], [ -77.044158, 38.833523 ], [ -77.044179, 38.833523 ], [ -77.044201, 38.833557 ], [ -77.044222, 38.833590 ], [ -77.044244, 38.833590 ], [ -77.044308, 38.833624 ], [ -77.044330, 38.833691 ], [ -77.044394, 38.833741 ], [ -77.044437, 38.833824 ], [ -77.044458, 38.833891 ], [ -77.044480, 38.833925 ], [ -77.044544, 38.834058 ], [ -77.044523, 38.834092 ], [ -77.044566, 38.834142 ], [ -77.044630, 38.834225 ], [ -77.044630, 38.834259 ], [ -77.044652, 38.834342 ], [ -77.044652, 38.834359 ], [ -77.044694, 38.834443 ], [ -77.044716, 38.834476 ], [ -77.044716, 38.834576 ], [ -77.044780, 38.834643 ], [ -77.044780, 38.834710 ], [ -77.044823, 38.834760 ], [ -77.044802, 38.834794 ], [ -77.044845, 38.834877 ], [ -77.044866, 38.834944 ], [ -77.044888, 38.834978 ], [ -77.044888, 38.834994 ], [ -77.044888, 38.835044 ], [ -77.044909, 38.835061 ], [ -77.044888, 38.835078 ], [ -77.044909, 38.835095 ], [ -77.044909, 38.835178 ], [ -77.044952, 38.835195 ], [ -77.044952, 38.835262 ], [ -77.044995, 38.835295 ], [ -77.044995, 38.835379 ], [ -77.044995, 38.835412 ], [ -77.045016, 38.835462 ], [ -77.045016, 38.835512 ], [ -77.045016, 38.835529 ], [ -77.045016, 38.835613 ], [ -77.045038, 38.835629 ], [ -77.045038, 38.835663 ], [ -77.045038, 38.835780 ], [ -77.045081, 38.835830 ], [ -77.045102, 38.835863 ], [ -77.045124, 38.835880 ], [ -77.045209, 38.835930 ], [ -77.045188, 38.835964 ], [ -77.045102, 38.836014 ], [ -77.045038, 38.836081 ], [ -77.045059, 38.836114 ], [ -77.045081, 38.836164 ], [ -77.045124, 38.836181 ], [ -77.045145, 38.836248 ], [ -77.045145, 38.836315 ], [ -77.045145, 38.836382 ], [ -77.045145, 38.836448 ], [ -77.045188, 38.836499 ], [ -77.045209, 38.836532 ], [ -77.045209, 38.836582 ], [ -77.045209, 38.836632 ], [ -77.045231, 38.836649 ], [ -77.045231, 38.836682 ], [ -77.045209, 38.836733 ], [ -77.045252, 38.836850 ], [ -77.045252, 38.836916 ], [ -77.045252, 38.836967 ], [ -77.045274, 38.837017 ], [ -77.045274, 38.837033 ], [ -77.045295, 38.837150 ], [ -77.045317, 38.837184 ], [ -77.045317, 38.837251 ], [ -77.045295, 38.837267 ], [ -77.045274, 38.837267 ], [ -77.045252, 38.837301 ], [ -77.045274, 38.837334 ], [ -77.045317, 38.837418 ], [ -77.045317, 38.837669 ], [ -77.045317, 38.837719 ], [ -77.045360, 38.837752 ], [ -77.045381, 38.837769 ], [ -77.045424, 38.837819 ], [ -77.045424, 38.837836 ], [ -77.045445, 38.837869 ], [ -77.045445, 38.837886 ], [ -77.045424, 38.837936 ], [ -77.045424, 38.837969 ], [ -77.045424, 38.837986 ], [ -77.045424, 38.838036 ], [ -77.045424, 38.838120 ], [ -77.045424, 38.838153 ], [ -77.045403, 38.838187 ], [ -77.045424, 38.838203 ], [ -77.045403, 38.838254 ], [ -77.045360, 38.838287 ], [ -77.045338, 38.838320 ], [ -77.045317, 38.838354 ], [ -77.045274, 38.838421 ], [ -77.045274, 38.838471 ], [ -77.045317, 38.838488 ], [ -77.045317, 38.838521 ], [ -77.045338, 38.838588 ], [ -77.045360, 38.838655 ], [ -77.045381, 38.838688 ], [ -77.045403, 38.838738 ], [ -77.045467, 38.838772 ], [ -77.045510, 38.838788 ], [ -77.045531, 38.838839 ], [ -77.045574, 38.838855 ], [ -77.045617, 38.838872 ], [ -77.045681, 38.838855 ], [ -77.045767, 38.838922 ], [ -77.045918, 38.838989 ], [ -77.045960, 38.839039 ], [ -77.046003, 38.839089 ], [ -77.046046, 38.839173 ], [ -77.046046, 38.839206 ], [ -77.046175, 38.839290 ], [ -77.046196, 38.839306 ], [ -77.046196, 38.839357 ], [ -77.046196, 38.839373 ], [ -77.046175, 38.839390 ], [ -77.046196, 38.839440 ], [ -77.046239, 38.839457 ], [ -77.046261, 38.839490 ], [ -77.046304, 38.839540 ], [ -77.046304, 38.839657 ], [ -77.046347, 38.839691 ], [ -77.046347, 38.839724 ], [ -77.046390, 38.839758 ], [ -77.046411, 38.839774 ], [ -77.046411, 38.839808 ], [ -77.046411, 38.839841 ], [ -77.046475, 38.839858 ], [ -77.046497, 38.839891 ], [ -77.046497, 38.839925 ], [ -77.046475, 38.839942 ], [ -77.046475, 38.839958 ], [ -77.046454, 38.839975 ], [ -77.046432, 38.840042 ], [ -77.046411, 38.840042 ], [ -77.046411, 38.840075 ], [ -77.046368, 38.840059 ], [ -77.046325, 38.840075 ], [ -77.046304, 38.840092 ], [ -77.046239, 38.840075 ], [ -77.046132, 38.839992 ], [ -77.046068, 38.839975 ], [ -77.045982, 38.839958 ], [ -77.045960, 38.839992 ], [ -77.045853, 38.840008 ], [ -77.045832, 38.840042 ], [ -77.045875, 38.840142 ], [ -77.045982, 38.840326 ], [ -77.046111, 38.840410 ], [ -77.046175, 38.840426 ], [ -77.046196, 38.840426 ], [ -77.046261, 38.840443 ], [ -77.046432, 38.840527 ], [ -77.046733, 38.840627 ], [ -77.047012, 38.840660 ], [ -77.047441, 38.840660 ], [ -77.047484, 38.840660 ], [ -77.047613, 38.840827 ], [ -77.047741, 38.840961 ], [ -77.048020, 38.841262 ], [ -77.047999, 38.841262 ], [ -77.047956, 38.841262 ], [ -77.047935, 38.841262 ], [ -77.047892, 38.841279 ], [ -77.047849, 38.841279 ], [ -77.047806, 38.841279 ], [ -77.047784, 38.841279 ], [ -77.047763, 38.841279 ], [ -77.047720, 38.841295 ], [ -77.047698, 38.841295 ], [ -77.047677, 38.841295 ], [ -77.047634, 38.841312 ], [ -77.047591, 38.841312 ], [ -77.047570, 38.841312 ], [ -77.047527, 38.841312 ], [ -77.047484, 38.841312 ], [ -77.047441, 38.841312 ], [ -77.047398, 38.841312 ], [ -77.047355, 38.841312 ], [ -77.047334, 38.841312 ], [ -77.047291, 38.841312 ], [ -77.047248, 38.841312 ], [ -77.047205, 38.841312 ], [ -77.047162, 38.841312 ], [ -77.047119, 38.841312 ], [ -77.047076, 38.841312 ], [ -77.047055, 38.841312 ], [ -77.047012, 38.841312 ], [ -77.046969, 38.841312 ], [ -77.046947, 38.841312 ], [ -77.046905, 38.841312 ], [ -77.046862, 38.841295 ], [ -77.046819, 38.841295 ], [ -77.046797, 38.841295 ], [ -77.046754, 38.841295 ], [ -77.046733, 38.841295 ], [ -77.046690, 38.841279 ], [ -77.046647, 38.841279 ], [ -77.046626, 38.841262 ], [ -77.046583, 38.841262 ], [ -77.046540, 38.841262 ], [ -77.046518, 38.841245 ], [ -77.046475, 38.841245 ], [ -77.046454, 38.841245 ], [ -77.046411, 38.841229 ], [ -77.046390, 38.841229 ], [ -77.046347, 38.841212 ], [ -77.046325, 38.841212 ], [ -77.046282, 38.841195 ], [ -77.046261, 38.841178 ], [ -77.046239, 38.841178 ], [ -77.046196, 38.841162 ], [ -77.046175, 38.841162 ], [ -77.046132, 38.841178 ], [ -77.046132, 38.841145 ], [ -77.046111, 38.841145 ], [ -77.046068, 38.841128 ], [ -77.046046, 38.841128 ], [ -77.046025, 38.841112 ], [ -77.045982, 38.841112 ], [ -77.045960, 38.841095 ], [ -77.045918, 38.841078 ], [ -77.045896, 38.841078 ], [ -77.045853, 38.841061 ], [ -77.045832, 38.841045 ], [ -77.045789, 38.841028 ], [ -77.045767, 38.841011 ], [ -77.045724, 38.840995 ], [ -77.045703, 38.840995 ], [ -77.045681, 38.840978 ], [ -77.045660, 38.840995 ], [ -77.045639, 38.840978 ], [ -77.045639, 38.840961 ], [ -77.045617, 38.840944 ], [ -77.045596, 38.840928 ], [ -77.045553, 38.840911 ], [ -77.045531, 38.840894 ], [ -77.045510, 38.840878 ], [ -77.045488, 38.840861 ], [ -77.045445, 38.840844 ], [ -77.045424, 38.840827 ], [ -77.045403, 38.840811 ], [ -77.045360, 38.840794 ], [ -77.045338, 38.840761 ], [ -77.045317, 38.840744 ], [ -77.045295, 38.840727 ], [ -77.045252, 38.840710 ], [ -77.045231, 38.840694 ], [ -77.045209, 38.840677 ], [ -77.045188, 38.840644 ], [ -77.045166, 38.840627 ], [ -77.045124, 38.840610 ], [ -77.045102, 38.840577 ], [ -77.045081, 38.840560 ], [ -77.045059, 38.840543 ], [ -77.045038, 38.840510 ], [ -77.045016, 38.840493 ], [ -77.044995, 38.840476 ], [ -77.044973, 38.840443 ], [ -77.044952, 38.840426 ], [ -77.044930, 38.840410 ], [ -77.044930, 38.840393 ], [ -77.044909, 38.840359 ], [ -77.044888, 38.840343 ], [ -77.044866, 38.840326 ], [ -77.044866, 38.840309 ], [ -77.044845, 38.840293 ], [ -77.044823, 38.840259 ], [ -77.044802, 38.840242 ], [ -77.044780, 38.840226 ], [ -77.044759, 38.840226 ], [ -77.044737, 38.840209 ], [ -77.044694, 38.840209 ], [ -77.044673, 38.840209 ], [ -77.044630, 38.840209 ], [ -77.044609, 38.840209 ], [ -77.044566, 38.840192 ], [ -77.044544, 38.840192 ], [ -77.044523, 38.840192 ], [ -77.044480, 38.840192 ], [ -77.044458, 38.840176 ], [ -77.044415, 38.840176 ], [ -77.044373, 38.840176 ], [ -77.044330, 38.840159 ], [ -77.044287, 38.840176 ], [ -77.044244, 38.840176 ], [ -77.044222, 38.840176 ], [ -77.044179, 38.840192 ], [ -77.044137, 38.840209 ], [ -77.044115, 38.840209 ], [ -77.044072, 38.840226 ], [ -77.044051, 38.840226 ], [ -77.044029, 38.840226 ], [ -77.043986, 38.840209 ], [ -77.043965, 38.840209 ], [ -77.043943, 38.840192 ], [ -77.043900, 38.840192 ], [ -77.043879, 38.840209 ], [ -77.043836, 38.840226 ], [ -77.043815, 38.840226 ], [ -77.043793, 38.840242 ], [ -77.043772, 38.840259 ], [ -77.043729, 38.840276 ], [ -77.043707, 38.840293 ], [ -77.043686, 38.840309 ], [ -77.043664, 38.840326 ], [ -77.043643, 38.840343 ], [ -77.043622, 38.840359 ], [ -77.043600, 38.840376 ], [ -77.043579, 38.840393 ], [ -77.043579, 38.840426 ], [ -77.043557, 38.840443 ], [ -77.043536, 38.840460 ], [ -77.043514, 38.840476 ], [ -77.043493, 38.840493 ], [ -77.043471, 38.840510 ], [ -77.043450, 38.840527 ], [ -77.043428, 38.840543 ], [ -77.043407, 38.840560 ], [ -77.043386, 38.840543 ], [ -77.043386, 38.840527 ], [ -77.043386, 38.840510 ], [ -77.043386, 38.840476 ], [ -77.043386, 38.840460 ], [ -77.043386, 38.840443 ], [ -77.043364, 38.840410 ], [ -77.043343, 38.840393 ], [ -77.043343, 38.840376 ], [ -77.043321, 38.840359 ], [ -77.043321, 38.840326 ], [ -77.043321, 38.840309 ], [ -77.043300, 38.840293 ], [ -77.043278, 38.840276 ], [ -77.043278, 38.840259 ], [ -77.043278, 38.840226 ], [ -77.043278, 38.840209 ], [ -77.043278, 38.840192 ], [ -77.043278, 38.840159 ], [ -77.043278, 38.840142 ], [ -77.043257, 38.840125 ], [ -77.043257, 38.840109 ], [ -77.043235, 38.840092 ], [ -77.043235, 38.840059 ], [ -77.043214, 38.840042 ], [ -77.043214, 38.840025 ], [ -77.043192, 38.840008 ], [ -77.043192, 38.839992 ], [ -77.043171, 38.839958 ], [ -77.043149, 38.839942 ], [ -77.043128, 38.839925 ], [ -77.043107, 38.839908 ], [ -77.043107, 38.839891 ], [ -77.043107, 38.839875 ], [ -77.043107, 38.839858 ], [ -77.043085, 38.839825 ], [ -77.043064, 38.839808 ], [ -77.043064, 38.839791 ], [ -77.042999, 38.839758 ], [ -77.042978, 38.839758 ], [ -77.042956, 38.839741 ], [ -77.042935, 38.839724 ], [ -77.042892, 38.839724 ], [ -77.042871, 38.839724 ], [ -77.042849, 38.839708 ], [ -77.042828, 38.839708 ], [ -77.042806, 38.839691 ], [ -77.042763, 38.839691 ], [ -77.042742, 38.839674 ], [ -77.042699, 38.839674 ], [ -77.042677, 38.839674 ], [ -77.042656, 38.839657 ], [ -77.042634, 38.839657 ], [ -77.042592, 38.839657 ], [ -77.042570, 38.839657 ], [ -77.042549, 38.839641 ], [ -77.042527, 38.839641 ], [ -77.042484, 38.839641 ], [ -77.042463, 38.839641 ], [ -77.042441, 38.839641 ], [ -77.042398, 38.839624 ], [ -77.042377, 38.839624 ], [ -77.042334, 38.839624 ], [ -77.042313, 38.839624 ], [ -77.042291, 38.839607 ], [ -77.042270, 38.839607 ], [ -77.042227, 38.839607 ], [ -77.042205, 38.839607 ], [ -77.042184, 38.839591 ], [ -77.042141, 38.839591 ], [ -77.042120, 38.839591 ], [ -77.042098, 38.839574 ], [ -77.042077, 38.839574 ], [ -77.042034, 38.839574 ], [ -77.042012, 38.839557 ], [ -77.041991, 38.839557 ], [ -77.041948, 38.839557 ], [ -77.041926, 38.839557 ], [ -77.041905, 38.839540 ], [ -77.041883, 38.839540 ], [ -77.041862, 38.839540 ], [ -77.041841, 38.839524 ], [ -77.041798, 38.839524 ], [ -77.041776, 38.839507 ], [ -77.041755, 38.839507 ], [ -77.041733, 38.839507 ], [ -77.041690, 38.839507 ], [ -77.041669, 38.839507 ], [ -77.041647, 38.839507 ], [ -77.041626, 38.839507 ], [ -77.041583, 38.839507 ], [ -77.041562, 38.839507 ], [ -77.041540, 38.839507 ], [ -77.041519, 38.839524 ], [ -77.041476, 38.839524 ], [ -77.041454, 38.839524 ], [ -77.041411, 38.839524 ], [ -77.041390, 38.839524 ], [ -77.041368, 38.839524 ], [ -77.041347, 38.839524 ], [ -77.041326, 38.839524 ], [ -77.041283, 38.839524 ], [ -77.041261, 38.839540 ], [ -77.041240, 38.839540 ], [ -77.041218, 38.839540 ], [ -77.041197, 38.839540 ], [ -77.041175, 38.839557 ], [ -77.041154, 38.839557 ], [ -77.041132, 38.839574 ], [ -77.041111, 38.839591 ], [ -77.041090, 38.839607 ], [ -77.041047, 38.839607 ], [ -77.040939, 38.839574 ], [ -77.040918, 38.839557 ], [ -77.040896, 38.839540 ], [ -77.040875, 38.839524 ], [ -77.040789, 38.839490 ], [ -77.040768, 38.839490 ], [ -77.040725, 38.839474 ], [ -77.040703, 38.839474 ], [ -77.040682, 38.839457 ], [ -77.040639, 38.839440 ], [ -77.040596, 38.839423 ], [ -77.040575, 38.839407 ], [ -77.040553, 38.839407 ], [ -77.040532, 38.839390 ], [ -77.040510, 38.839373 ], [ -77.040467, 38.839373 ], [ -77.040446, 38.839357 ], [ -77.040381, 38.839340 ], [ -77.040381, 38.839323 ], [ -77.040317, 38.839323 ], [ -77.040296, 38.839323 ], [ -77.040188, 38.839306 ], [ -77.040167, 38.839306 ], [ -77.040145, 38.839306 ], [ -77.040124, 38.839290 ], [ -77.039974, 38.839273 ], [ -77.039952, 38.839273 ], [ -77.039888, 38.839273 ], [ -77.039824, 38.839273 ], [ -77.039781, 38.839273 ], [ -77.039759, 38.839273 ], [ -77.039695, 38.839273 ], [ -77.039652, 38.839273 ], [ -77.039609, 38.839273 ], [ -77.039587, 38.839290 ], [ -77.039502, 38.839290 ], [ -77.039459, 38.839290 ], [ -77.039394, 38.839290 ], [ -77.039351, 38.839273 ], [ -77.039266, 38.839273 ], [ -77.039201, 38.839256 ], [ -77.039180, 38.839273 ], [ -77.039115, 38.839256 ], [ -77.039094, 38.839256 ], [ -77.039030, 38.839256 ], [ -77.038987, 38.839256 ], [ -77.038965, 38.839240 ], [ -77.038922, 38.839240 ], [ -77.038901, 38.839240 ], [ -77.038665, 38.839256 ], [ -77.038622, 38.839256 ], [ -77.038600, 38.839256 ], [ -77.038536, 38.839256 ], [ -77.038450, 38.839273 ], [ -77.038386, 38.839273 ], [ -77.038343, 38.839273 ], [ -77.038257, 38.839290 ], [ -77.038193, 38.839290 ], [ -77.038171, 38.839290 ], [ -77.038150, 38.839273 ], [ -77.038107, 38.839273 ], [ -77.038043, 38.839273 ], [ -77.038021, 38.839290 ], [ -77.037957, 38.839290 ], [ -77.037914, 38.839306 ], [ -77.037828, 38.839306 ], [ -77.037785, 38.839306 ], [ -77.037721, 38.839323 ], [ -77.037613, 38.839323 ], [ -77.037570, 38.839323 ], [ -77.037528, 38.839323 ], [ -77.037485, 38.839340 ], [ -77.037420, 38.839340 ], [ -77.037420, 38.839357 ], [ -77.037399, 38.839373 ], [ -77.037313, 38.839373 ], [ -77.037270, 38.839357 ], [ -77.037206, 38.839373 ], [ -77.037034, 38.839373 ], [ -77.036970, 38.839390 ], [ -77.036798, 38.839407 ], [ -77.036777, 38.839407 ], [ -77.036755, 38.839423 ], [ -77.036734, 38.839440 ], [ -77.036691, 38.839474 ], [ -77.036648, 38.839507 ], [ -77.036626, 38.839524 ], [ -77.036626, 38.839557 ], [ -77.036605, 38.839574 ], [ -77.036583, 38.839574 ], [ -77.036541, 38.839557 ], [ -77.036498, 38.839557 ], [ -77.036476, 38.839557 ], [ -77.036433, 38.839540 ], [ -77.036347, 38.839540 ], [ -77.036304, 38.839540 ], [ -77.036262, 38.839540 ], [ -77.036197, 38.839557 ], [ -77.036176, 38.839557 ], [ -77.036111, 38.839574 ], [ -77.036090, 38.839591 ], [ -77.036047, 38.839591 ], [ -77.036026, 38.839607 ], [ -77.036004, 38.839624 ], [ -77.035983, 38.839641 ], [ -77.035961, 38.839657 ], [ -77.035918, 38.839657 ], [ -77.035897, 38.839674 ], [ -77.035875, 38.839691 ], [ -77.035811, 38.839708 ], [ -77.035789, 38.839708 ], [ -77.035768, 38.839708 ], [ -77.035725, 38.839724 ], [ -77.035704, 38.839741 ], [ -77.035661, 38.839758 ], [ -77.035639, 38.839758 ], [ -77.035596, 38.839741 ], [ -77.035575, 38.839741 ], [ -77.035511, 38.839741 ], [ -77.035489, 38.839758 ], [ -77.035468, 38.839758 ], [ -77.035425, 38.839774 ], [ -77.035360, 38.839791 ], [ -77.035296, 38.839841 ], [ -77.035275, 38.839841 ], [ -77.035210, 38.839858 ], [ -77.035189, 38.839875 ], [ -77.035146, 38.839875 ], [ -77.035124, 38.839891 ], [ -77.035038, 38.839942 ], [ -77.034996, 38.839942 ], [ -77.034974, 38.839958 ], [ -77.034867, 38.839975 ], [ -77.034824, 38.839992 ], [ -77.034802, 38.839992 ], [ -77.034781, 38.840008 ], [ -77.034695, 38.840025 ], [ -77.034652, 38.840025 ], [ -77.034631, 38.840042 ], [ -77.034609, 38.840059 ], [ -77.034588, 38.840092 ], [ -77.034566, 38.840125 ], [ -77.034566, 38.840142 ], [ -77.034545, 38.840176 ], [ -77.034545, 38.840209 ], [ -77.034545, 38.840242 ], [ -77.034545, 38.840259 ], [ -77.034545, 38.840309 ], [ -77.034545, 38.840359 ], [ -77.034545, 38.840393 ], [ -77.034545, 38.840443 ], [ -77.034545, 38.840476 ], [ -77.034545, 38.840577 ], [ -77.034545, 38.840627 ], [ -77.034545, 38.840710 ], [ -77.034545, 38.840761 ], [ -77.034545, 38.840777 ], [ -77.034545, 38.840794 ], [ -77.034523, 38.840811 ], [ -77.034502, 38.840827 ], [ -77.034502, 38.840844 ], [ -77.034416, 38.840878 ], [ -77.034373, 38.840878 ], [ -77.034352, 38.840894 ], [ -77.034287, 38.840878 ], [ -77.034245, 38.840878 ], [ -77.034223, 38.840878 ], [ -77.034202, 38.840861 ], [ -77.034202, 38.840894 ], [ -77.034202, 38.840911 ], [ -77.034180, 38.840928 ], [ -77.034180, 38.840961 ], [ -77.034202, 38.840978 ], [ -77.034245, 38.841028 ], [ -77.034266, 38.841061 ], [ -77.034266, 38.841095 ], [ -77.034266, 38.841112 ], [ -77.034266, 38.841145 ], [ -77.034266, 38.841162 ], [ -77.034245, 38.841178 ], [ -77.034223, 38.841195 ], [ -77.034202, 38.841212 ], [ -77.034180, 38.841229 ], [ -77.034159, 38.841245 ], [ -77.034159, 38.841312 ], [ -77.034137, 38.841396 ], [ -77.034137, 38.841429 ], [ -77.034137, 38.841479 ], [ -77.034116, 38.841546 ], [ -77.034116, 38.841563 ], [ -77.034137, 38.841579 ], [ -77.034094, 38.841596 ], [ -77.034073, 38.841613 ], [ -77.034051, 38.841630 ], [ -77.034030, 38.841646 ], [ -77.034009, 38.841680 ], [ -77.034009, 38.841713 ], [ -77.034009, 38.841730 ], [ -77.034009, 38.841747 ], [ -77.034009, 38.841780 ], [ -77.034009, 38.841797 ], [ -77.034009, 38.841830 ], [ -77.034009, 38.841847 ], [ -77.034009, 38.841880 ], [ -77.034009, 38.841897 ], [ -77.033987, 38.841914 ], [ -77.033987, 38.841947 ], [ -77.033987, 38.841964 ], [ -77.033987, 38.841997 ], [ -77.033987, 38.842014 ], [ -77.033987, 38.842047 ], [ -77.033966, 38.842064 ], [ -77.033966, 38.842098 ], [ -77.033966, 38.842114 ], [ -77.033966, 38.842131 ], [ -77.033966, 38.842164 ], [ -77.033966, 38.842181 ], [ -77.033966, 38.842215 ], [ -77.033966, 38.842231 ], [ -77.033966, 38.842265 ], [ -77.033944, 38.842281 ], [ -77.033944, 38.842298 ], [ -77.033944, 38.842332 ], [ -77.033944, 38.842348 ], [ -77.033944, 38.842365 ], [ -77.033944, 38.842398 ], [ -77.033944, 38.842415 ], [ -77.033944, 38.842432 ], [ -77.033944, 38.842449 ], [ -77.033944, 38.842482 ], [ -77.033944, 38.842499 ], [ -77.033944, 38.842515 ], [ -77.033944, 38.842549 ], [ -77.033944, 38.842566 ], [ -77.033944, 38.842582 ], [ -77.033944, 38.842616 ], [ -77.033944, 38.842649 ], [ -77.033923, 38.842683 ], [ -77.033923, 38.842716 ], [ -77.033923, 38.842749 ], [ -77.033901, 38.842783 ], [ -77.033901, 38.842816 ], [ -77.033880, 38.842833 ], [ -77.033858, 38.842866 ], [ -77.033858, 38.842883 ], [ -77.033858, 38.842900 ], [ -77.033837, 38.842933 ], [ -77.033837, 38.842950 ], [ -77.033815, 38.842967 ], [ -77.033815, 38.842983 ], [ -77.033794, 38.843000 ], [ -77.033794, 38.843017 ], [ -77.033772, 38.843034 ], [ -77.033772, 38.843050 ], [ -77.033751, 38.843067 ], [ -77.033730, 38.843100 ], [ -77.033730, 38.843117 ], [ -77.033708, 38.843134 ], [ -77.033708, 38.843151 ], [ -77.033687, 38.843167 ], [ -77.033687, 38.843184 ], [ -77.033687, 38.843217 ], [ -77.033665, 38.843234 ], [ -77.033665, 38.843251 ], [ -77.033665, 38.843284 ], [ -77.033644, 38.843301 ], [ -77.033644, 38.843318 ], [ -77.033622, 38.843334 ], [ -77.033622, 38.843368 ], [ -77.033601, 38.843384 ], [ -77.033601, 38.843401 ], [ -77.033579, 38.843435 ], [ -77.033579, 38.843451 ], [ -77.033558, 38.843468 ], [ -77.033536, 38.843485 ], [ -77.033515, 38.843518 ], [ -77.033515, 38.843535 ], [ -77.033494, 38.843552 ], [ -77.033494, 38.843585 ], [ -77.033494, 38.843602 ], [ -77.033494, 38.843618 ], [ -77.033472, 38.843635 ], [ -77.033472, 38.843669 ], [ -77.033451, 38.843685 ], [ -77.033429, 38.843702 ], [ -77.033429, 38.843735 ], [ -77.033408, 38.843752 ], [ -77.033408, 38.843769 ], [ -77.033386, 38.843802 ], [ -77.033386, 38.843819 ], [ -77.033365, 38.843836 ], [ -77.033365, 38.843869 ], [ -77.033365, 38.843886 ], [ -77.033343, 38.843903 ], [ -77.033343, 38.843936 ], [ -77.033322, 38.843953 ], [ -77.033322, 38.843986 ], [ -77.033300, 38.844003 ], [ -77.033300, 38.844020 ], [ -77.033300, 38.844053 ], [ -77.033279, 38.844070 ], [ -77.033279, 38.844086 ], [ -77.033279, 38.844120 ], [ -77.033257, 38.844137 ], [ -77.033257, 38.844153 ], [ -77.033236, 38.844187 ], [ -77.033236, 38.844203 ], [ -77.033215, 38.844237 ], [ -77.033193, 38.844254 ], [ -77.033193, 38.844270 ], [ -77.033172, 38.844287 ], [ -77.033172, 38.844320 ], [ -77.033172, 38.844337 ], [ -77.033150, 38.844354 ], [ -77.033150, 38.844387 ], [ -77.033150, 38.844404 ], [ -77.033129, 38.844488 ], [ -77.033107, 38.844488 ], [ -77.033064, 38.844521 ], [ -77.033064, 38.844554 ], [ -77.033064, 38.844571 ], [ -77.033064, 38.844588 ], [ -77.033064, 38.844604 ], [ -77.033043, 38.844638 ], [ -77.033043, 38.844655 ], [ -77.033043, 38.844671 ], [ -77.033021, 38.844705 ], [ -77.033021, 38.844721 ], [ -77.033021, 38.844738 ], [ -77.033021, 38.844772 ], [ -77.033000, 38.844788 ], [ -77.033000, 38.844822 ], [ -77.033000, 38.844838 ], [ -77.033000, 38.844872 ], [ -77.033000, 38.844889 ], [ -77.032979, 38.844922 ], [ -77.032979, 38.844939 ], [ -77.032979, 38.844972 ], [ -77.032957, 38.844989 ], [ -77.032957, 38.845022 ], [ -77.032957, 38.845039 ], [ -77.032957, 38.845072 ], [ -77.032936, 38.845089 ], [ -77.032936, 38.845123 ], [ -77.032936, 38.845139 ], [ -77.032936, 38.845173 ], [ -77.032936, 38.845189 ], [ -77.032914, 38.845223 ], [ -77.032914, 38.845240 ], [ -77.032914, 38.845273 ], [ -77.032893, 38.845290 ], [ -77.032893, 38.845323 ], [ -77.032871, 38.845340 ], [ -77.032871, 38.845373 ], [ -77.032871, 38.845390 ], [ -77.032871, 38.845423 ], [ -77.032871, 38.845440 ], [ -77.032850, 38.845474 ], [ -77.032850, 38.845490 ], [ -77.032850, 38.845524 ], [ -77.032850, 38.845540 ], [ -77.032850, 38.845557 ], [ -77.032828, 38.845591 ], [ -77.032828, 38.845607 ], [ -77.032828, 38.845624 ], [ -77.032828, 38.845641 ], [ -77.032807, 38.845674 ], [ -77.032807, 38.845691 ], [ -77.032807, 38.845724 ], [ -77.032807, 38.845741 ], [ -77.032807, 38.845758 ], [ -77.032807, 38.845774 ], [ -77.032807, 38.845808 ], [ -77.032785, 38.845858 ], [ -77.032764, 38.845875 ], [ -77.032764, 38.845908 ], [ -77.032764, 38.845941 ], [ -77.032764, 38.845958 ], [ -77.032764, 38.845975 ], [ -77.032743, 38.845992 ], [ -77.032743, 38.846008 ], [ -77.032743, 38.846042 ], [ -77.032721, 38.846058 ], [ -77.032721, 38.846075 ], [ -77.032721, 38.846092 ], [ -77.032721, 38.846125 ], [ -77.032700, 38.846142 ], [ -77.032700, 38.846159 ], [ -77.032700, 38.846175 ], [ -77.032700, 38.846192 ], [ -77.032678, 38.846209 ], [ -77.032678, 38.846226 ], [ -77.032678, 38.846242 ], [ -77.032678, 38.846276 ], [ -77.032657, 38.846292 ], [ -77.032657, 38.846309 ], [ -77.032657, 38.846326 ], [ -77.032657, 38.846359 ], [ -77.032657, 38.846376 ], [ -77.032635, 38.846409 ], [ -77.032635, 38.846426 ], [ -77.032635, 38.846443 ], [ -77.032635, 38.846476 ], [ -77.032614, 38.846493 ], [ -77.032614, 38.846510 ], [ -77.032614, 38.846543 ], [ -77.032614, 38.846560 ], [ -77.032592, 38.846593 ], [ -77.032592, 38.846610 ], [ -77.032592, 38.846643 ], [ -77.032571, 38.846677 ], [ -77.032571, 38.846693 ], [ -77.032571, 38.846727 ], [ -77.032549, 38.846744 ], [ -77.032549, 38.846777 ], [ -77.032528, 38.846794 ], [ -77.032528, 38.846827 ], [ -77.032528, 38.846861 ], [ -77.032528, 38.846877 ], [ -77.032528, 38.846911 ], [ -77.032506, 38.846927 ], [ -77.032506, 38.846961 ], [ -77.032506, 38.846994 ], [ -77.032506, 38.847011 ], [ -77.032506, 38.847028 ], [ -77.032485, 38.847061 ], [ -77.032485, 38.847095 ], [ -77.032485, 38.847111 ], [ -77.032464, 38.847145 ], [ -77.032464, 38.847161 ], [ -77.032464, 38.847195 ], [ -77.032464, 38.847212 ], [ -77.032464, 38.847245 ], [ -77.032464, 38.847262 ], [ -77.032464, 38.847278 ], [ -77.032442, 38.847312 ], [ -77.032442, 38.847329 ], [ -77.032442, 38.847345 ], [ -77.032442, 38.847362 ], [ -77.032442, 38.847395 ], [ -77.032421, 38.847412 ], [ -77.032421, 38.847446 ], [ -77.032399, 38.847462 ], [ -77.032421, 38.847479 ], [ -77.032399, 38.847512 ], [ -77.032399, 38.847546 ], [ -77.032378, 38.847563 ], [ -77.032378, 38.847596 ], [ -77.032378, 38.847613 ], [ -77.032378, 38.847629 ], [ -77.032378, 38.847663 ], [ -77.032378, 38.847679 ], [ -77.032378, 38.847713 ], [ -77.032378, 38.847730 ], [ -77.032378, 38.847763 ], [ -77.032378, 38.847780 ], [ -77.032378, 38.847813 ], [ -77.032378, 38.847830 ], [ -77.032356, 38.847863 ], [ -77.032270, 38.848014 ], [ -77.032292, 38.848131 ], [ -77.032292, 38.848181 ], [ -77.032292, 38.848198 ], [ -77.032292, 38.848231 ], [ -77.032292, 38.848248 ], [ -77.032292, 38.848264 ], [ -77.032292, 38.848281 ], [ -77.032292, 38.848298 ], [ -77.032292, 38.848331 ], [ -77.032292, 38.848348 ], [ -77.032292, 38.848365 ], [ -77.032292, 38.848398 ], [ -77.032313, 38.848415 ], [ -77.032313, 38.848432 ], [ -77.032292, 38.848448 ], [ -77.032292, 38.848482 ], [ -77.032292, 38.848498 ], [ -77.032292, 38.848515 ], [ -77.032292, 38.848599 ], [ -77.032292, 38.848699 ], [ -77.032292, 38.848782 ], [ -77.032292, 38.848799 ], [ -77.032292, 38.848833 ], [ -77.032292, 38.848849 ], [ -77.032292, 38.848883 ], [ -77.032270, 38.848916 ], [ -77.032270, 38.848933 ], [ -77.032270, 38.848966 ], [ -77.032270, 38.849000 ], [ -77.032270, 38.849033 ], [ -77.032270, 38.849067 ], [ -77.032270, 38.849100 ], [ -77.032270, 38.849133 ], [ -77.032270, 38.849167 ], [ -77.032270, 38.849234 ], [ -77.032270, 38.849267 ], [ -77.032270, 38.849284 ], [ -77.032270, 38.849317 ], [ -77.032270, 38.849351 ], [ -77.032270, 38.849367 ], [ -77.032270, 38.849401 ], [ -77.032270, 38.849417 ], [ -77.032270, 38.849451 ], [ -77.032270, 38.849468 ], [ -77.032270, 38.849484 ], [ -77.032270, 38.849501 ], [ -77.032249, 38.849518 ], [ -77.032249, 38.849551 ], [ -77.032249, 38.849568 ], [ -77.032249, 38.849601 ], [ -77.032249, 38.849618 ], [ -77.032249, 38.849651 ], [ -77.032249, 38.849668 ], [ -77.032249, 38.849702 ], [ -77.032228, 38.849735 ], [ -77.032228, 38.849768 ], [ -77.032228, 38.849785 ], [ -77.032228, 38.849819 ], [ -77.032206, 38.849835 ], [ -77.032206, 38.849852 ], [ -77.032185, 38.849885 ], [ -77.032185, 38.850069 ], [ -77.032185, 38.850086 ], [ -77.032142, 38.850286 ], [ -77.032142, 38.850303 ], [ -77.032142, 38.850337 ], [ -77.032142, 38.850370 ], [ -77.032142, 38.850387 ], [ -77.032163, 38.850420 ], [ -77.032163, 38.850454 ], [ -77.032163, 38.850487 ], [ -77.032163, 38.850504 ], [ -77.032185, 38.850537 ], [ -77.032185, 38.850571 ], [ -77.032185, 38.850604 ], [ -77.032185, 38.850637 ], [ -77.032185, 38.850654 ], [ -77.032206, 38.850688 ], [ -77.022679, 38.855901 ], [ -77.020147, 38.857321 ], [ -77.015362, 38.860028 ], [ -77.013688, 38.860997 ], [ -77.009118, 38.863587 ], [ -77.008173, 38.864473 ], [ -77.006328, 38.867279 ], [ -77.005448, 38.868700 ], [ -77.003689, 38.868015 ], [ -77.003303, 38.867848 ], [ -77.002401, 38.867480 ], [ -77.002316, 38.867430 ], [ -77.002294, 38.867413 ], [ -77.002273, 38.867380 ], [ -77.002316, 38.867313 ], [ -77.002337, 38.867263 ], [ -77.002337, 38.867246 ], [ -77.002358, 38.867179 ], [ -77.002380, 38.867112 ], [ -77.002401, 38.867079 ], [ -77.002401, 38.867012 ], [ -77.002401, 38.866979 ], [ -77.002401, 38.866912 ], [ -77.002401, 38.866845 ], [ -77.002401, 38.866812 ], [ -77.002401, 38.866778 ], [ -77.002401, 38.866745 ], [ -77.002401, 38.866711 ], [ -77.002380, 38.866628 ], [ -77.002358, 38.866594 ], [ -77.002358, 38.866561 ], [ -77.002337, 38.866528 ], [ -77.002294, 38.866461 ], [ -77.002208, 38.866277 ], [ -77.002101, 38.866077 ], [ -77.002037, 38.865976 ], [ -77.001994, 38.865893 ], [ -77.001972, 38.865859 ], [ -77.001843, 38.865609 ], [ -77.001801, 38.865559 ], [ -77.001801, 38.865525 ], [ -77.001779, 38.865492 ], [ -77.001758, 38.865408 ], [ -77.001758, 38.865375 ], [ -77.001736, 38.865341 ], [ -77.001736, 38.865291 ], [ -77.001736, 38.865208 ], [ -77.001715, 38.865124 ], [ -77.001736, 38.864874 ], [ -77.001715, 38.864824 ], [ -77.001736, 38.864640 ], [ -77.001758, 38.864606 ], [ -77.001779, 38.864356 ], [ -77.001801, 38.864289 ], [ -77.001822, 38.864189 ], [ -77.001929, 38.863487 ], [ -77.001994, 38.863136 ], [ -77.001994, 38.863052 ], [ -77.002015, 38.863002 ], [ -77.002015, 38.862936 ], [ -77.002058, 38.862819 ], [ -77.002079, 38.862752 ], [ -77.002101, 38.862702 ], [ -77.002144, 38.862601 ], [ -77.002165, 38.862551 ], [ -77.002187, 38.862484 ], [ -77.002208, 38.862434 ], [ -77.002251, 38.862367 ], [ -77.002273, 38.862334 ], [ -77.002294, 38.862317 ], [ -77.002337, 38.862234 ], [ -77.002380, 38.862167 ], [ -77.002594, 38.861816 ], [ -77.002659, 38.861716 ], [ -77.002680, 38.861699 ], [ -77.002788, 38.861515 ], [ -77.002809, 38.861499 ], [ -77.002852, 38.861415 ], [ -77.002873, 38.861398 ], [ -77.002895, 38.861365 ], [ -77.002938, 38.861315 ], [ -77.003131, 38.861031 ], [ -77.003431, 38.860680 ], [ -77.003303, 38.860646 ], [ -77.003002, 38.860530 ], [ -77.003024, 38.860479 ], [ -77.003045, 38.860413 ], [ -77.003109, 38.860262 ], [ -77.003131, 38.860195 ], [ -77.003174, 38.860129 ], [ -77.003195, 38.860045 ], [ -77.003238, 38.859911 ], [ -77.003388, 38.859377 ], [ -77.003431, 38.859176 ], [ -77.003582, 38.858692 ], [ -77.003603, 38.858591 ], [ -77.003667, 38.858391 ], [ -77.003732, 38.858190 ], [ -77.003796, 38.857990 ], [ -77.003860, 38.857789 ], [ -77.003925, 38.857589 ], [ -77.004075, 38.857238 ], [ -77.004204, 38.856937 ], [ -77.004483, 38.856252 ], [ -77.004697, 38.855767 ], [ -77.004848, 38.855400 ], [ -77.004955, 38.855183 ], [ -77.005041, 38.854965 ], [ -77.005105, 38.854848 ], [ -77.005212, 38.854631 ], [ -77.005277, 38.854531 ], [ -77.005320, 38.854414 ], [ -77.005384, 38.854314 ], [ -77.005448, 38.854180 ], [ -77.005599, 38.853946 ], [ -77.005663, 38.853812 ], [ -77.005813, 38.853562 ], [ -77.006049, 38.853194 ], [ -77.006135, 38.853077 ], [ -77.006199, 38.852960 ], [ -77.006371, 38.852676 ], [ -77.006521, 38.852409 ], [ -77.006779, 38.851991 ], [ -77.007015, 38.851607 ], [ -77.007058, 38.851523 ], [ -77.007101, 38.851473 ], [ -77.007208, 38.851323 ], [ -77.007530, 38.850838 ], [ -77.007658, 38.850621 ], [ -77.007809, 38.850370 ], [ -77.007937, 38.850119 ], [ -77.007980, 38.850069 ], [ -77.008023, 38.849869 ], [ -77.008023, 38.849752 ], [ -77.008045, 38.849234 ], [ -77.008131, 38.848198 ], [ -77.008131, 38.847947 ], [ -77.008216, 38.846944 ], [ -77.008345, 38.845139 ], [ -77.008345, 38.845039 ], [ -77.008710, 38.842365 ], [ -77.008860, 38.841145 ], [ -77.009010, 38.840025 ], [ -77.009053, 38.839875 ], [ -77.009139, 38.839557 ], [ -77.009654, 38.838755 ], [ -77.009804, 38.838538 ], [ -77.009976, 38.838304 ], [ -77.010169, 38.838053 ], [ -77.010298, 38.837886 ], [ -77.010598, 38.837468 ], [ -77.010663, 38.837401 ], [ -77.010963, 38.836983 ], [ -77.011070, 38.836850 ], [ -77.011564, 38.836181 ], [ -77.011971, 38.835613 ], [ -77.012529, 38.834861 ], [ -77.012959, 38.834276 ], [ -77.013431, 38.833640 ], [ -77.013710, 38.833239 ], [ -77.014010, 38.832855 ], [ -77.014246, 38.832571 ], [ -77.014439, 38.832337 ], [ -77.014589, 38.832136 ], [ -77.014718, 38.831986 ], [ -77.014890, 38.831718 ], [ -77.014954, 38.831635 ], [ -77.014976, 38.831618 ], [ -77.015061, 38.831518 ], [ -77.015147, 38.831417 ], [ -77.015212, 38.831367 ], [ -77.015276, 38.831300 ], [ -77.015426, 38.831167 ], [ -77.015662, 38.830933 ], [ -77.015877, 38.830732 ], [ -77.016091, 38.830548 ], [ -77.016478, 38.830180 ], [ -77.016563, 38.830097 ], [ -77.016628, 38.830063 ], [ -77.016671, 38.830013 ], [ -77.016692, 38.829980 ], [ -77.016735, 38.829946 ], [ -77.016757, 38.829896 ], [ -77.016757, 38.829863 ], [ -77.016778, 38.829829 ], [ -77.016799, 38.829779 ], [ -77.016821, 38.829662 ], [ -77.016842, 38.829612 ], [ -77.016885, 38.829528 ], [ -77.017014, 38.829328 ], [ -77.017057, 38.829244 ], [ -77.017078, 38.829211 ], [ -77.017143, 38.829060 ], [ -77.017186, 38.828927 ], [ -77.017207, 38.828843 ], [ -77.017229, 38.828810 ], [ -77.017293, 38.828442 ], [ -77.017293, 38.828342 ], [ -77.017314, 38.828241 ], [ -77.017336, 38.828074 ], [ -77.017336, 38.827773 ], [ -77.017357, 38.827355 ], [ -77.017357, 38.827222 ], [ -77.017357, 38.825199 ], [ -77.017357, 38.824296 ], [ -77.017357, 38.823895 ], [ -77.017357, 38.823594 ], [ -77.017357, 38.823577 ], [ -77.017357, 38.823343 ], [ -77.017379, 38.823226 ], [ -77.017379, 38.822491 ], [ -77.017379, 38.822407 ], [ -77.017379, 38.822374 ], [ -77.017379, 38.822290 ], [ -77.017379, 38.822223 ], [ -77.017379, 38.822156 ], [ -77.017379, 38.822106 ], [ -77.017400, 38.821956 ], [ -77.017422, 38.821906 ], [ -77.017422, 38.821855 ], [ -77.017465, 38.821705 ], [ -77.017486, 38.821655 ], [ -77.017550, 38.821488 ], [ -77.017615, 38.821337 ], [ -77.017679, 38.821254 ], [ -77.039545, 38.821254 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010400", "GEOID": "11001010400", "NAME": "104", "NAMELSAD": "Census Tract 104", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2602393, "AWATER": 7006, "INTPTLAT": "+38.8512668", "INTPTLON": "-077.0009082" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.007744, 38.835680 ], [ -77.007873, 38.835847 ], [ -77.008088, 38.836432 ], [ -77.008946, 38.838454 ], [ -77.009075, 38.838772 ], [ -77.009161, 38.838889 ], [ -77.009182, 38.839189 ], [ -77.009139, 38.839557 ], [ -77.009053, 38.839875 ], [ -77.009010, 38.840025 ], [ -77.008860, 38.841145 ], [ -77.008710, 38.842365 ], [ -77.008345, 38.845039 ], [ -77.008345, 38.845139 ], [ -77.008216, 38.846944 ], [ -77.008131, 38.847947 ], [ -77.008131, 38.848198 ], [ -77.008045, 38.849234 ], [ -77.008023, 38.849752 ], [ -77.008023, 38.849869 ], [ -77.007980, 38.850069 ], [ -77.007937, 38.850119 ], [ -77.007809, 38.850370 ], [ -77.007658, 38.850621 ], [ -77.007530, 38.850838 ], [ -77.007208, 38.851323 ], [ -77.007101, 38.851473 ], [ -77.007058, 38.851523 ], [ -77.007015, 38.851607 ], [ -77.006779, 38.851991 ], [ -77.006521, 38.852409 ], [ -77.006371, 38.852676 ], [ -77.006199, 38.852960 ], [ -77.006135, 38.853077 ], [ -77.006049, 38.853194 ], [ -77.005813, 38.853562 ], [ -77.005663, 38.853812 ], [ -77.005599, 38.853946 ], [ -77.005448, 38.854180 ], [ -77.005384, 38.854314 ], [ -77.005320, 38.854414 ], [ -77.005277, 38.854531 ], [ -77.005212, 38.854631 ], [ -77.005105, 38.854848 ], [ -77.005041, 38.854965 ], [ -77.004955, 38.855183 ], [ -77.004848, 38.855400 ], [ -77.004697, 38.855767 ], [ -77.004483, 38.856252 ], [ -77.004204, 38.856937 ], [ -77.004075, 38.857238 ], [ -77.003925, 38.857589 ], [ -77.003860, 38.857789 ], [ -77.003796, 38.857990 ], [ -77.003732, 38.858190 ], [ -77.003667, 38.858391 ], [ -77.003603, 38.858591 ], [ -77.003582, 38.858692 ], [ -77.003431, 38.859176 ], [ -77.003388, 38.859377 ], [ -77.003238, 38.859911 ], [ -77.003195, 38.860045 ], [ -77.003174, 38.860129 ], [ -77.003131, 38.860195 ], [ -77.003109, 38.860262 ], [ -77.003045, 38.860413 ], [ -77.003024, 38.860479 ], [ -77.003002, 38.860530 ], [ -77.002916, 38.860496 ], [ -77.002809, 38.860496 ], [ -77.002873, 38.860362 ], [ -77.002938, 38.860245 ], [ -77.002959, 38.860179 ], [ -77.002981, 38.860112 ], [ -77.002723, 38.859961 ], [ -77.002594, 38.859878 ], [ -76.998754, 38.857505 ], [ -76.996093, 38.855834 ], [ -76.992466, 38.853562 ], [ -76.992273, 38.853445 ], [ -76.990943, 38.852659 ], [ -76.990471, 38.852359 ], [ -76.990471, 38.844337 ], [ -76.990578, 38.844304 ], [ -76.990986, 38.844237 ], [ -76.991651, 38.844120 ], [ -76.992166, 38.844036 ], [ -76.992424, 38.843986 ], [ -76.993003, 38.843886 ], [ -76.993282, 38.843852 ], [ -76.993368, 38.843836 ], [ -76.993496, 38.843802 ], [ -76.994226, 38.843685 ], [ -76.994483, 38.843635 ], [ -76.994698, 38.843602 ], [ -76.995320, 38.843501 ], [ -76.995900, 38.843401 ], [ -76.996629, 38.843284 ], [ -76.996994, 38.843234 ], [ -76.997294, 38.843184 ], [ -76.997445, 38.843167 ], [ -76.997552, 38.843151 ], [ -76.997681, 38.843151 ], [ -76.998217, 38.843117 ], [ -76.998453, 38.843100 ], [ -76.998560, 38.843100 ], [ -76.999483, 38.843050 ], [ -76.999698, 38.843050 ], [ -76.999762, 38.843050 ], [ -76.999848, 38.843067 ], [ -76.999869, 38.843084 ], [ -76.999955, 38.843134 ], [ -77.000062, 38.843084 ], [ -77.000105, 38.843067 ], [ -77.000170, 38.843034 ], [ -77.000277, 38.843000 ], [ -77.000492, 38.842967 ], [ -77.000577, 38.842933 ], [ -77.000771, 38.842900 ], [ -77.001543, 38.842716 ], [ -77.001779, 38.842666 ], [ -77.001972, 38.842616 ], [ -77.002079, 38.842582 ], [ -77.002187, 38.842549 ], [ -77.002251, 38.842532 ], [ -77.002337, 38.842499 ], [ -77.002401, 38.842465 ], [ -77.002444, 38.842432 ], [ -77.002552, 38.842382 ], [ -77.002616, 38.842348 ], [ -77.002659, 38.842315 ], [ -77.002788, 38.842231 ], [ -77.002831, 38.842181 ], [ -77.002873, 38.842131 ], [ -77.002895, 38.842114 ], [ -77.002959, 38.842031 ], [ -77.003024, 38.841947 ], [ -77.003496, 38.841329 ], [ -77.004204, 38.840410 ], [ -77.004440, 38.840092 ], [ -77.004547, 38.839975 ], [ -77.004955, 38.839423 ], [ -77.005320, 38.838939 ], [ -77.005491, 38.838722 ], [ -77.005663, 38.838471 ], [ -77.005899, 38.838187 ], [ -77.006028, 38.838020 ], [ -77.006135, 38.837869 ], [ -77.006371, 38.837568 ], [ -77.006564, 38.837284 ], [ -77.006843, 38.836933 ], [ -77.007079, 38.836616 ], [ -77.007551, 38.835964 ], [ -77.007573, 38.835947 ], [ -77.007616, 38.835880 ], [ -77.007680, 38.835797 ], [ -77.007701, 38.835746 ], [ -77.007744, 38.835680 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009803", "GEOID": "11001009803", "NAME": "98.03", "NAMELSAD": "Census Tract 98.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 531060, "AWATER": 3756, "INTPTLAT": "+38.8356929", "INTPTLON": "-077.0043421" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.000556, 38.841880 ], [ -77.000556, 38.841780 ], [ -77.000556, 38.841630 ], [ -77.000577, 38.841279 ], [ -77.000577, 38.840995 ], [ -77.000577, 38.840978 ], [ -77.000556, 38.840610 ], [ -77.000577, 38.840393 ], [ -77.000577, 38.840309 ], [ -77.000577, 38.840209 ], [ -77.000577, 38.839891 ], [ -77.000577, 38.839524 ], [ -77.000577, 38.838554 ], [ -77.000556, 38.838454 ], [ -77.000556, 38.837886 ], [ -77.000577, 38.837518 ], [ -77.000556, 38.837234 ], [ -77.000577, 38.837100 ], [ -77.000577, 38.837033 ], [ -77.000577, 38.836967 ], [ -77.000599, 38.836900 ], [ -77.000620, 38.836833 ], [ -77.000642, 38.836699 ], [ -77.000663, 38.836649 ], [ -77.000685, 38.836549 ], [ -77.000706, 38.836499 ], [ -77.000706, 38.836465 ], [ -77.000728, 38.836382 ], [ -77.000749, 38.836315 ], [ -77.000749, 38.836281 ], [ -77.000771, 38.836231 ], [ -77.000771, 38.836164 ], [ -77.000771, 38.836114 ], [ -77.000771, 38.836031 ], [ -77.000771, 38.835964 ], [ -77.000771, 38.835914 ], [ -77.000749, 38.835863 ], [ -77.000749, 38.835797 ], [ -77.000620, 38.835312 ], [ -77.000599, 38.835245 ], [ -77.000599, 38.835195 ], [ -77.000577, 38.835128 ], [ -77.000577, 38.835061 ], [ -77.000577, 38.834961 ], [ -77.000556, 38.834861 ], [ -77.000556, 38.834025 ], [ -77.000556, 38.833975 ], [ -77.001007, 38.833975 ], [ -77.001243, 38.833941 ], [ -77.001736, 38.833724 ], [ -77.002273, 38.833340 ], [ -77.002745, 38.832805 ], [ -77.003002, 38.832236 ], [ -77.003324, 38.831618 ], [ -77.003517, 38.831384 ], [ -77.003860, 38.830983 ], [ -77.003946, 38.830999 ], [ -77.005169, 38.831133 ], [ -77.005877, 38.831200 ], [ -77.006671, 38.831284 ], [ -77.007229, 38.831350 ], [ -77.007680, 38.831401 ], [ -77.007766, 38.831467 ], [ -77.007787, 38.831518 ], [ -77.007787, 38.831551 ], [ -77.007809, 38.831584 ], [ -77.007852, 38.831651 ], [ -77.007916, 38.831768 ], [ -77.008066, 38.832019 ], [ -77.008088, 38.832069 ], [ -77.008131, 38.832169 ], [ -77.008173, 38.832286 ], [ -77.008216, 38.832387 ], [ -77.008259, 38.832487 ], [ -77.008281, 38.832571 ], [ -77.008302, 38.832637 ], [ -77.008324, 38.832704 ], [ -77.008345, 38.832771 ], [ -77.008345, 38.832838 ], [ -77.008367, 38.832922 ], [ -77.008388, 38.833072 ], [ -77.008388, 38.833156 ], [ -77.008388, 38.833256 ], [ -77.008388, 38.833373 ], [ -77.008388, 38.833440 ], [ -77.008410, 38.833640 ], [ -77.008345, 38.833824 ], [ -77.008302, 38.833941 ], [ -77.008216, 38.834276 ], [ -77.008195, 38.834326 ], [ -77.008002, 38.834911 ], [ -77.007959, 38.835061 ], [ -77.007895, 38.835245 ], [ -77.007787, 38.835596 ], [ -77.007766, 38.835629 ], [ -77.007744, 38.835680 ], [ -77.007701, 38.835746 ], [ -77.007680, 38.835797 ], [ -77.007616, 38.835880 ], [ -77.007573, 38.835947 ], [ -77.007551, 38.835964 ], [ -77.007079, 38.836616 ], [ -77.006843, 38.836933 ], [ -77.006564, 38.837284 ], [ -77.006371, 38.837568 ], [ -77.006135, 38.837869 ], [ -77.006028, 38.838020 ], [ -77.005899, 38.838187 ], [ -77.005663, 38.838471 ], [ -77.005491, 38.838722 ], [ -77.005320, 38.838939 ], [ -77.004955, 38.839423 ], [ -77.004547, 38.839975 ], [ -77.004440, 38.840092 ], [ -77.004204, 38.840410 ], [ -77.003925, 38.840259 ], [ -77.003753, 38.840192 ], [ -77.003732, 38.840176 ], [ -77.003689, 38.840176 ], [ -77.003646, 38.840159 ], [ -77.003624, 38.840159 ], [ -77.003539, 38.840142 ], [ -77.003474, 38.840142 ], [ -77.003431, 38.840142 ], [ -77.003410, 38.840142 ], [ -77.003367, 38.840159 ], [ -77.003324, 38.840159 ], [ -77.003281, 38.840176 ], [ -77.003260, 38.840176 ], [ -77.003217, 38.840192 ], [ -77.003174, 38.840209 ], [ -77.003152, 38.840226 ], [ -77.003109, 38.840242 ], [ -77.003067, 38.840276 ], [ -77.002959, 38.840376 ], [ -77.002766, 38.840560 ], [ -77.002659, 38.840677 ], [ -77.002530, 38.840811 ], [ -77.002358, 38.840961 ], [ -77.002187, 38.841145 ], [ -77.001929, 38.841379 ], [ -77.001758, 38.841563 ], [ -77.001715, 38.841596 ], [ -77.001672, 38.841646 ], [ -77.001629, 38.841663 ], [ -77.001607, 38.841680 ], [ -77.001565, 38.841713 ], [ -77.001543, 38.841713 ], [ -77.001479, 38.841747 ], [ -77.001457, 38.841763 ], [ -77.001371, 38.841797 ], [ -77.001307, 38.841813 ], [ -77.001286, 38.841830 ], [ -77.001221, 38.841847 ], [ -77.001178, 38.841847 ], [ -77.001135, 38.841864 ], [ -77.001050, 38.841864 ], [ -77.000985, 38.841880 ], [ -77.000899, 38.841880 ], [ -77.000749, 38.841880 ], [ -77.000728, 38.841880 ], [ -77.000556, 38.841880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009807", "GEOID": "11001009807", "NAME": "98.07", "NAMELSAD": "Census Tract 98.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1037012, "AWATER": 0, "INTPTLAT": "+38.8292038", "INTPTLON": "-077.0117577" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.012079, 38.821889 ], [ -77.012701, 38.823026 ], [ -77.015812, 38.823711 ], [ -77.016521, 38.823761 ], [ -77.016821, 38.823845 ], [ -77.017078, 38.823744 ], [ -77.017357, 38.823594 ], [ -77.017357, 38.823895 ], [ -77.017357, 38.824296 ], [ -77.017357, 38.825199 ], [ -77.017357, 38.827222 ], [ -77.017357, 38.827355 ], [ -77.017336, 38.827773 ], [ -77.017336, 38.828074 ], [ -77.017314, 38.828241 ], [ -77.017293, 38.828342 ], [ -77.017293, 38.828442 ], [ -77.017229, 38.828810 ], [ -77.017207, 38.828843 ], [ -77.017186, 38.828927 ], [ -77.017143, 38.829060 ], [ -77.017078, 38.829211 ], [ -77.017057, 38.829244 ], [ -77.017014, 38.829328 ], [ -77.016885, 38.829528 ], [ -77.016842, 38.829612 ], [ -77.016821, 38.829662 ], [ -77.016799, 38.829779 ], [ -77.016778, 38.829829 ], [ -77.016757, 38.829863 ], [ -77.016757, 38.829896 ], [ -77.016735, 38.829946 ], [ -77.016692, 38.829980 ], [ -77.016671, 38.830013 ], [ -77.016628, 38.830063 ], [ -77.016563, 38.830097 ], [ -77.016478, 38.830180 ], [ -77.016091, 38.830548 ], [ -77.015877, 38.830732 ], [ -77.015662, 38.830933 ], [ -77.015426, 38.831167 ], [ -77.015276, 38.831300 ], [ -77.015212, 38.831367 ], [ -77.015147, 38.831417 ], [ -77.015061, 38.831518 ], [ -77.014976, 38.831618 ], [ -77.014954, 38.831635 ], [ -77.014890, 38.831718 ], [ -77.014718, 38.831986 ], [ -77.014589, 38.832136 ], [ -77.014439, 38.832337 ], [ -77.014246, 38.832571 ], [ -77.014010, 38.832855 ], [ -77.013710, 38.833239 ], [ -77.013431, 38.833640 ], [ -77.012959, 38.834276 ], [ -77.012529, 38.834861 ], [ -77.011971, 38.835613 ], [ -77.011564, 38.836181 ], [ -77.011070, 38.836850 ], [ -77.010963, 38.836983 ], [ -77.010663, 38.837401 ], [ -77.010598, 38.837468 ], [ -77.010298, 38.837886 ], [ -77.010169, 38.838053 ], [ -77.009976, 38.838304 ], [ -77.009804, 38.838538 ], [ -77.009654, 38.838755 ], [ -77.009139, 38.839557 ], [ -77.009182, 38.839189 ], [ -77.009161, 38.838889 ], [ -77.009075, 38.838772 ], [ -77.008946, 38.838454 ], [ -77.008088, 38.836432 ], [ -77.007873, 38.835847 ], [ -77.007744, 38.835680 ], [ -77.007766, 38.835629 ], [ -77.007787, 38.835596 ], [ -77.007895, 38.835245 ], [ -77.007959, 38.835061 ], [ -77.008002, 38.834911 ], [ -77.008195, 38.834326 ], [ -77.008216, 38.834276 ], [ -77.008302, 38.833941 ], [ -77.008345, 38.833824 ], [ -77.008410, 38.833640 ], [ -77.008388, 38.833440 ], [ -77.008388, 38.833373 ], [ -77.008388, 38.833256 ], [ -77.008388, 38.833156 ], [ -77.008388, 38.833072 ], [ -77.008367, 38.832922 ], [ -77.008345, 38.832838 ], [ -77.008345, 38.832771 ], [ -77.008324, 38.832704 ], [ -77.008302, 38.832637 ], [ -77.008281, 38.832571 ], [ -77.008259, 38.832487 ], [ -77.008216, 38.832387 ], [ -77.008173, 38.832286 ], [ -77.008131, 38.832169 ], [ -77.008088, 38.832069 ], [ -77.008066, 38.832019 ], [ -77.007916, 38.831768 ], [ -77.007852, 38.831651 ], [ -77.007809, 38.831584 ], [ -77.007787, 38.831551 ], [ -77.007787, 38.831518 ], [ -77.007766, 38.831467 ], [ -77.007680, 38.831401 ], [ -77.007658, 38.830832 ], [ -77.007680, 38.830581 ], [ -77.007680, 38.830347 ], [ -77.007658, 38.830297 ], [ -77.007658, 38.830214 ], [ -77.007658, 38.829629 ], [ -77.007658, 38.829194 ], [ -77.007658, 38.827790 ], [ -77.007658, 38.827623 ], [ -77.007680, 38.827456 ], [ -77.007658, 38.827288 ], [ -77.007658, 38.827205 ], [ -77.007658, 38.827088 ], [ -77.007637, 38.826971 ], [ -77.007616, 38.826854 ], [ -77.007594, 38.826770 ], [ -77.007573, 38.826620 ], [ -77.007530, 38.826536 ], [ -77.007508, 38.826453 ], [ -77.007465, 38.826352 ], [ -77.007422, 38.826269 ], [ -77.007380, 38.826152 ], [ -77.007337, 38.826068 ], [ -77.007251, 38.825934 ], [ -77.007122, 38.825734 ], [ -77.007079, 38.825667 ], [ -77.006993, 38.825533 ], [ -77.006757, 38.825165 ], [ -77.006736, 38.825149 ], [ -77.006564, 38.824881 ], [ -77.006457, 38.824731 ], [ -77.006350, 38.824530 ], [ -77.006242, 38.824396 ], [ -77.006178, 38.824313 ], [ -77.006114, 38.824229 ], [ -77.006049, 38.824146 ], [ -77.006006, 38.824096 ], [ -77.006028, 38.824079 ], [ -77.006092, 38.824062 ], [ -77.006199, 38.824029 ], [ -77.006264, 38.824029 ], [ -77.006350, 38.824012 ], [ -77.006371, 38.824012 ], [ -77.006392, 38.824012 ], [ -77.006478, 38.824012 ], [ -77.006521, 38.824012 ], [ -77.006543, 38.824012 ], [ -77.006607, 38.824012 ], [ -77.006671, 38.824012 ], [ -77.006736, 38.824012 ], [ -77.006865, 38.823995 ], [ -77.006950, 38.823979 ], [ -77.007015, 38.823962 ], [ -77.007079, 38.823945 ], [ -77.007101, 38.823928 ], [ -77.007143, 38.823928 ], [ -77.007294, 38.823861 ], [ -77.007358, 38.823845 ], [ -77.007551, 38.823778 ], [ -77.007637, 38.823744 ], [ -77.007723, 38.823711 ], [ -77.007809, 38.823678 ], [ -77.007873, 38.823661 ], [ -77.007959, 38.823644 ], [ -77.008023, 38.823644 ], [ -77.008088, 38.823627 ], [ -77.008109, 38.823627 ], [ -77.008216, 38.823611 ], [ -77.008388, 38.823594 ], [ -77.008474, 38.823594 ], [ -77.008603, 38.823594 ], [ -77.008967, 38.823594 ], [ -77.009525, 38.823594 ], [ -77.009568, 38.823594 ], [ -77.009654, 38.823594 ], [ -77.010319, 38.823594 ], [ -77.010663, 38.823594 ], [ -77.010877, 38.823594 ], [ -77.010963, 38.823594 ], [ -77.011735, 38.823594 ], [ -77.011800, 38.823594 ], [ -77.011843, 38.823594 ], [ -77.011886, 38.823577 ], [ -77.011714, 38.823226 ], [ -77.011564, 38.822858 ], [ -77.011542, 38.822825 ], [ -77.011628, 38.822658 ], [ -77.011693, 38.822524 ], [ -77.011800, 38.822323 ], [ -77.011929, 38.822089 ], [ -77.012057, 38.821872 ], [ -77.012079, 38.821889 ] ] ], [ [ [ -77.002187, 38.821956 ], [ -77.002423, 38.822140 ], [ -77.002466, 38.822156 ], [ -77.002552, 38.822223 ], [ -77.002594, 38.822240 ], [ -77.002702, 38.822290 ], [ -77.002788, 38.822340 ], [ -77.002873, 38.822374 ], [ -77.003174, 38.822507 ], [ -77.004461, 38.823076 ], [ -77.004547, 38.823109 ], [ -77.004654, 38.823159 ], [ -77.004762, 38.823210 ], [ -77.004869, 38.823260 ], [ -77.005041, 38.823360 ], [ -77.005148, 38.823410 ], [ -77.005234, 38.823460 ], [ -77.005427, 38.823594 ], [ -77.005470, 38.823627 ], [ -77.005513, 38.823661 ], [ -77.005620, 38.823744 ], [ -77.005706, 38.823811 ], [ -77.005770, 38.823878 ], [ -77.005835, 38.823928 ], [ -77.005899, 38.823995 ], [ -77.006006, 38.824096 ], [ -77.006049, 38.824146 ], [ -77.006114, 38.824229 ], [ -77.006178, 38.824313 ], [ -77.006242, 38.824396 ], [ -77.006350, 38.824530 ], [ -77.006457, 38.824731 ], [ -77.006564, 38.824881 ], [ -77.006736, 38.825149 ], [ -77.006757, 38.825165 ], [ -77.006993, 38.825533 ], [ -77.007079, 38.825667 ], [ -77.007122, 38.825734 ], [ -77.007251, 38.825934 ], [ -77.007337, 38.826068 ], [ -77.007380, 38.826152 ], [ -77.007422, 38.826269 ], [ -77.007465, 38.826352 ], [ -77.007508, 38.826453 ], [ -77.007530, 38.826536 ], [ -77.007573, 38.826620 ], [ -77.007594, 38.826770 ], [ -77.007616, 38.826854 ], [ -77.007637, 38.826971 ], [ -77.007658, 38.827088 ], [ -77.007658, 38.827205 ], [ -77.007658, 38.827288 ], [ -77.007680, 38.827456 ], [ -77.007658, 38.827623 ], [ -77.007658, 38.827790 ], [ -77.007658, 38.829194 ], [ -77.007658, 38.829629 ], [ -77.007658, 38.830214 ], [ -77.007658, 38.830297 ], [ -77.007680, 38.830347 ], [ -77.007680, 38.830581 ], [ -77.007658, 38.830832 ], [ -77.007680, 38.831401 ], [ -77.007229, 38.831350 ], [ -77.006671, 38.831284 ], [ -77.005877, 38.831200 ], [ -77.005169, 38.831133 ], [ -77.003946, 38.830999 ], [ -77.003860, 38.830983 ], [ -77.003710, 38.830966 ], [ -77.003539, 38.830966 ], [ -77.003367, 38.830949 ], [ -77.003324, 38.830949 ], [ -77.002594, 38.830949 ], [ -77.002015, 38.830949 ], [ -77.002015, 38.830498 ], [ -77.002015, 38.830097 ], [ -77.002015, 38.829796 ], [ -77.002015, 38.829345 ], [ -77.002015, 38.829228 ], [ -77.002037, 38.829077 ], [ -77.002037, 38.828910 ], [ -77.002058, 38.828709 ], [ -77.002079, 38.828609 ], [ -77.002101, 38.828559 ], [ -77.002144, 38.828342 ], [ -77.002187, 38.828174 ], [ -77.002208, 38.828074 ], [ -77.002316, 38.827790 ], [ -77.002337, 38.827756 ], [ -77.002358, 38.827706 ], [ -77.002358, 38.827656 ], [ -77.002380, 38.827623 ], [ -77.002401, 38.827522 ], [ -77.002401, 38.827489 ], [ -77.002401, 38.827439 ], [ -77.002423, 38.827389 ], [ -77.002423, 38.827355 ], [ -77.002423, 38.827288 ], [ -77.002401, 38.827238 ], [ -77.002401, 38.827188 ], [ -77.002401, 38.827138 ], [ -77.002380, 38.827088 ], [ -77.002380, 38.827038 ], [ -77.002358, 38.827004 ], [ -77.002337, 38.826954 ], [ -77.002316, 38.826904 ], [ -77.002294, 38.826854 ], [ -77.002122, 38.826519 ], [ -77.002079, 38.826402 ], [ -77.001929, 38.826102 ], [ -77.001801, 38.825817 ], [ -77.001650, 38.825550 ], [ -77.001436, 38.825082 ], [ -77.001414, 38.825048 ], [ -77.001414, 38.824998 ], [ -77.001393, 38.824931 ], [ -77.001371, 38.824881 ], [ -77.001371, 38.824831 ], [ -77.001371, 38.824798 ], [ -77.001350, 38.824731 ], [ -77.001350, 38.824647 ], [ -77.001371, 38.824580 ], [ -77.001371, 38.824513 ], [ -77.001393, 38.824463 ], [ -77.001393, 38.824430 ], [ -77.001436, 38.824363 ], [ -77.001436, 38.824346 ], [ -77.001457, 38.824313 ], [ -77.001479, 38.824296 ], [ -77.001522, 38.824246 ], [ -77.001543, 38.824213 ], [ -77.001565, 38.824196 ], [ -77.001629, 38.824162 ], [ -77.001650, 38.824146 ], [ -77.001672, 38.824129 ], [ -77.001715, 38.824112 ], [ -77.001908, 38.824012 ], [ -77.002122, 38.823928 ], [ -77.002208, 38.823878 ], [ -77.001994, 38.823594 ], [ -77.001972, 38.823561 ], [ -77.001951, 38.823510 ], [ -77.001929, 38.823460 ], [ -77.001929, 38.823427 ], [ -77.001929, 38.823393 ], [ -77.001929, 38.823360 ], [ -77.001908, 38.823327 ], [ -77.001908, 38.823310 ], [ -77.001929, 38.823276 ], [ -77.001951, 38.822741 ], [ -77.001972, 38.822240 ], [ -77.001972, 38.822206 ], [ -77.001994, 38.822173 ], [ -77.002015, 38.822140 ], [ -77.002037, 38.822123 ], [ -77.002122, 38.822023 ], [ -77.002187, 38.821956 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009804", "GEOID": "11001009804", "NAME": "98.04", "NAMELSAD": "Census Tract 98.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 518363, "AWATER": 5609, "INTPTLAT": "+38.8420148", "INTPTLON": "-076.9972580" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.000556, 38.833975 ], [ -77.000556, 38.834025 ], [ -77.000556, 38.834861 ], [ -77.000577, 38.834961 ], [ -77.000577, 38.835061 ], [ -77.000577, 38.835128 ], [ -77.000599, 38.835195 ], [ -77.000599, 38.835245 ], [ -77.000620, 38.835312 ], [ -77.000749, 38.835797 ], [ -77.000749, 38.835863 ], [ -77.000771, 38.835914 ], [ -77.000771, 38.835964 ], [ -77.000771, 38.836031 ], [ -77.000771, 38.836114 ], [ -77.000771, 38.836164 ], [ -77.000771, 38.836231 ], [ -77.000749, 38.836281 ], [ -77.000749, 38.836315 ], [ -77.000728, 38.836382 ], [ -77.000706, 38.836465 ], [ -77.000706, 38.836499 ], [ -77.000685, 38.836549 ], [ -77.000663, 38.836649 ], [ -77.000642, 38.836699 ], [ -77.000620, 38.836833 ], [ -77.000599, 38.836900 ], [ -77.000577, 38.836967 ], [ -77.000577, 38.837033 ], [ -77.000577, 38.837100 ], [ -77.000556, 38.837234 ], [ -77.000577, 38.837518 ], [ -77.000556, 38.837886 ], [ -77.000556, 38.838454 ], [ -77.000577, 38.838554 ], [ -77.000577, 38.839524 ], [ -77.000577, 38.839891 ], [ -77.000577, 38.840209 ], [ -77.000577, 38.840309 ], [ -77.000577, 38.840393 ], [ -77.000556, 38.840610 ], [ -77.000577, 38.840978 ], [ -77.000577, 38.840995 ], [ -77.000577, 38.841279 ], [ -77.000556, 38.841630 ], [ -77.000556, 38.841780 ], [ -77.000556, 38.841880 ], [ -77.000728, 38.841880 ], [ -77.000749, 38.841880 ], [ -77.000899, 38.841880 ], [ -77.000985, 38.841880 ], [ -77.001050, 38.841864 ], [ -77.001135, 38.841864 ], [ -77.001178, 38.841847 ], [ -77.001221, 38.841847 ], [ -77.001286, 38.841830 ], [ -77.001307, 38.841813 ], [ -77.001371, 38.841797 ], [ -77.001457, 38.841763 ], [ -77.001479, 38.841747 ], [ -77.001543, 38.841713 ], [ -77.001565, 38.841713 ], [ -77.001607, 38.841680 ], [ -77.001629, 38.841663 ], [ -77.001672, 38.841646 ], [ -77.001715, 38.841596 ], [ -77.001758, 38.841563 ], [ -77.001929, 38.841379 ], [ -77.002187, 38.841145 ], [ -77.002358, 38.840961 ], [ -77.002530, 38.840811 ], [ -77.002659, 38.840677 ], [ -77.002766, 38.840560 ], [ -77.002959, 38.840376 ], [ -77.003067, 38.840276 ], [ -77.003109, 38.840242 ], [ -77.003152, 38.840226 ], [ -77.003174, 38.840209 ], [ -77.003217, 38.840192 ], [ -77.003260, 38.840176 ], [ -77.003281, 38.840176 ], [ -77.003324, 38.840159 ], [ -77.003367, 38.840159 ], [ -77.003410, 38.840142 ], [ -77.003431, 38.840142 ], [ -77.003474, 38.840142 ], [ -77.003539, 38.840142 ], [ -77.003624, 38.840159 ], [ -77.003646, 38.840159 ], [ -77.003689, 38.840176 ], [ -77.003732, 38.840176 ], [ -77.003753, 38.840192 ], [ -77.003925, 38.840259 ], [ -77.004204, 38.840410 ], [ -77.003496, 38.841329 ], [ -77.003024, 38.841947 ], [ -77.002959, 38.842031 ], [ -77.002895, 38.842114 ], [ -77.002873, 38.842131 ], [ -77.002831, 38.842181 ], [ -77.002788, 38.842231 ], [ -77.002659, 38.842315 ], [ -77.002616, 38.842348 ], [ -77.002552, 38.842382 ], [ -77.002444, 38.842432 ], [ -77.002401, 38.842465 ], [ -77.002337, 38.842499 ], [ -77.002251, 38.842532 ], [ -77.002187, 38.842549 ], [ -77.002079, 38.842582 ], [ -77.001972, 38.842616 ], [ -77.001779, 38.842666 ], [ -77.001543, 38.842716 ], [ -77.000771, 38.842900 ], [ -77.000577, 38.842933 ], [ -77.000492, 38.842967 ], [ -77.000277, 38.843000 ], [ -77.000170, 38.843034 ], [ -77.000105, 38.843067 ], [ -77.000062, 38.843084 ], [ -76.999955, 38.843134 ], [ -76.999869, 38.843084 ], [ -76.999848, 38.843067 ], [ -76.999762, 38.843050 ], [ -76.999698, 38.843050 ], [ -76.999483, 38.843050 ], [ -76.998560, 38.843100 ], [ -76.998453, 38.843100 ], [ -76.998217, 38.843117 ], [ -76.997681, 38.843151 ], [ -76.997552, 38.843151 ], [ -76.997445, 38.843167 ], [ -76.997294, 38.843184 ], [ -76.996994, 38.843234 ], [ -76.996629, 38.843284 ], [ -76.995900, 38.843401 ], [ -76.995320, 38.843501 ], [ -76.994698, 38.843602 ], [ -76.994483, 38.843635 ], [ -76.994226, 38.843685 ], [ -76.993968, 38.842298 ], [ -76.993968, 38.842231 ], [ -76.993668, 38.840593 ], [ -76.993647, 38.840493 ], [ -76.993625, 38.840460 ], [ -76.993625, 38.840410 ], [ -76.993625, 38.840326 ], [ -76.993604, 38.840242 ], [ -76.993604, 38.840159 ], [ -76.993604, 38.840075 ], [ -76.993604, 38.839875 ], [ -76.993582, 38.839507 ], [ -76.993561, 38.839089 ], [ -76.993561, 38.838889 ], [ -76.993561, 38.838805 ], [ -76.993539, 38.838454 ], [ -76.993518, 38.838053 ], [ -76.993518, 38.837769 ], [ -76.993496, 38.837568 ], [ -76.993496, 38.837501 ], [ -76.993496, 38.837485 ], [ -76.993775, 38.837485 ], [ -76.994462, 38.837468 ], [ -76.994741, 38.837451 ], [ -76.995170, 38.837351 ], [ -76.995428, 38.837234 ], [ -76.995471, 38.837201 ], [ -76.995535, 38.837201 ], [ -76.995556, 38.837184 ], [ -76.995599, 38.837167 ], [ -76.995685, 38.837150 ], [ -76.995707, 38.837117 ], [ -76.995728, 38.837100 ], [ -76.995771, 38.837084 ], [ -76.995857, 38.837050 ], [ -76.995900, 38.837017 ], [ -76.995943, 38.837000 ], [ -76.995964, 38.836967 ], [ -76.996007, 38.836933 ], [ -76.996028, 38.836883 ], [ -76.996093, 38.836850 ], [ -76.996114, 38.836833 ], [ -76.996157, 38.836799 ], [ -76.996200, 38.836766 ], [ -76.996222, 38.836749 ], [ -76.996243, 38.836716 ], [ -76.996286, 38.836699 ], [ -76.996329, 38.836682 ], [ -76.996350, 38.836666 ], [ -76.996458, 38.836649 ], [ -76.996522, 38.836649 ], [ -76.996586, 38.836632 ], [ -76.996629, 38.836616 ], [ -76.996672, 38.836599 ], [ -76.996715, 38.836565 ], [ -76.996758, 38.836532 ], [ -76.996715, 38.836499 ], [ -76.996672, 38.836465 ], [ -76.996737, 38.836465 ], [ -76.996779, 38.836499 ], [ -76.996822, 38.836465 ], [ -76.996865, 38.836432 ], [ -76.996887, 38.836382 ], [ -76.997166, 38.836181 ], [ -76.997745, 38.835446 ], [ -76.998045, 38.835228 ], [ -76.998839, 38.834794 ], [ -76.999741, 38.834276 ], [ -77.000299, 38.833991 ], [ -77.000556, 38.833975 ] ] ], [ [ [ -76.990471, 38.832688 ], [ -76.990728, 38.832487 ], [ -76.990836, 38.832403 ], [ -76.990900, 38.832353 ], [ -76.991050, 38.832470 ], [ -76.991286, 38.832637 ], [ -76.991351, 38.832704 ], [ -76.991544, 38.832554 ], [ -76.991651, 38.832487 ], [ -76.991737, 38.832454 ], [ -76.991844, 38.832387 ], [ -76.991909, 38.832353 ], [ -76.992016, 38.832303 ], [ -76.992123, 38.832253 ], [ -76.992166, 38.832236 ], [ -76.992230, 38.832203 ], [ -76.992338, 38.832169 ], [ -76.992424, 38.832136 ], [ -76.992509, 38.832119 ], [ -76.992660, 38.832069 ], [ -76.992724, 38.832069 ], [ -76.992810, 38.832036 ], [ -76.992981, 38.832019 ], [ -76.993046, 38.832019 ], [ -76.993153, 38.832002 ], [ -76.993260, 38.831986 ], [ -76.993389, 38.831986 ], [ -76.993454, 38.831986 ], [ -76.993840, 38.831986 ], [ -76.994226, 38.831986 ], [ -76.994312, 38.831986 ], [ -76.994526, 38.831986 ], [ -76.994634, 38.831986 ], [ -76.995792, 38.831986 ], [ -76.996887, 38.831986 ], [ -76.998045, 38.831986 ], [ -76.999011, 38.831986 ], [ -76.999097, 38.831986 ], [ -76.999118, 38.831986 ], [ -76.999140, 38.831986 ], [ -76.999161, 38.832002 ], [ -76.999204, 38.832019 ], [ -76.999247, 38.832052 ], [ -76.999397, 38.831952 ], [ -76.999483, 38.831902 ], [ -76.999805, 38.831685 ], [ -77.000191, 38.831434 ], [ -77.000406, 38.831300 ], [ -77.000427, 38.831284 ], [ -77.000470, 38.831284 ], [ -77.000492, 38.831267 ], [ -77.000535, 38.831267 ], [ -77.000556, 38.831267 ], [ -77.000556, 38.830966 ], [ -77.000685, 38.830966 ], [ -77.000856, 38.830949 ], [ -77.001736, 38.830949 ], [ -77.002015, 38.830949 ], [ -77.002594, 38.830949 ], [ -77.003324, 38.830949 ], [ -77.003367, 38.830949 ], [ -77.003539, 38.830966 ], [ -77.003710, 38.830966 ], [ -77.003860, 38.830983 ], [ -77.003517, 38.831384 ], [ -77.003324, 38.831618 ], [ -77.003002, 38.832236 ], [ -77.002745, 38.832805 ], [ -77.002273, 38.833340 ], [ -77.001736, 38.833724 ], [ -77.001243, 38.833941 ], [ -77.001007, 38.833975 ], [ -77.000556, 38.833975 ], [ -77.000299, 38.833991 ], [ -76.999741, 38.834276 ], [ -76.998839, 38.834794 ], [ -76.998045, 38.835228 ], [ -76.997745, 38.835446 ], [ -76.997166, 38.836181 ], [ -76.996887, 38.836382 ], [ -76.996865, 38.836432 ], [ -76.996822, 38.836465 ], [ -76.996779, 38.836499 ], [ -76.996737, 38.836465 ], [ -76.996672, 38.836465 ], [ -76.996715, 38.836499 ], [ -76.996758, 38.836532 ], [ -76.996715, 38.836565 ], [ -76.996672, 38.836599 ], [ -76.996629, 38.836616 ], [ -76.996586, 38.836632 ], [ -76.996522, 38.836649 ], [ -76.996458, 38.836649 ], [ -76.996350, 38.836666 ], [ -76.996329, 38.836682 ], [ -76.996286, 38.836699 ], [ -76.996243, 38.836716 ], [ -76.996222, 38.836749 ], [ -76.996200, 38.836766 ], [ -76.996157, 38.836799 ], [ -76.996114, 38.836833 ], [ -76.996093, 38.836850 ], [ -76.996028, 38.836883 ], [ -76.996007, 38.836933 ], [ -76.995964, 38.836967 ], [ -76.995943, 38.837000 ], [ -76.995900, 38.837017 ], [ -76.995857, 38.837050 ], [ -76.995771, 38.837084 ], [ -76.995728, 38.837100 ], [ -76.995707, 38.837117 ], [ -76.995685, 38.837150 ], [ -76.995599, 38.837167 ], [ -76.995556, 38.837184 ], [ -76.995535, 38.837201 ], [ -76.995471, 38.837201 ], [ -76.995428, 38.837234 ], [ -76.995170, 38.837351 ], [ -76.994741, 38.837451 ], [ -76.994462, 38.837468 ], [ -76.993775, 38.837485 ], [ -76.993496, 38.837485 ], [ -76.993496, 38.837418 ], [ -76.993475, 38.837368 ], [ -76.993475, 38.837301 ], [ -76.993454, 38.837234 ], [ -76.993432, 38.837167 ], [ -76.993389, 38.837067 ], [ -76.993368, 38.837000 ], [ -76.993346, 38.836950 ], [ -76.993303, 38.836866 ], [ -76.993282, 38.836850 ], [ -76.993239, 38.836783 ], [ -76.993196, 38.836699 ], [ -76.992939, 38.836348 ], [ -76.992810, 38.836164 ], [ -76.992702, 38.836014 ], [ -76.992681, 38.835997 ], [ -76.992617, 38.835863 ], [ -76.992424, 38.835579 ], [ -76.992381, 38.835546 ], [ -76.992316, 38.835446 ], [ -76.992252, 38.835379 ], [ -76.992209, 38.835312 ], [ -76.992166, 38.835278 ], [ -76.992145, 38.835245 ], [ -76.992059, 38.835178 ], [ -76.992016, 38.835145 ], [ -76.991951, 38.835095 ], [ -76.991930, 38.835078 ], [ -76.991887, 38.835028 ], [ -76.991758, 38.834944 ], [ -76.991715, 38.834927 ], [ -76.991415, 38.834727 ], [ -76.990964, 38.834426 ], [ -76.990921, 38.834393 ], [ -76.990900, 38.834393 ], [ -76.990814, 38.834342 ], [ -76.990793, 38.834326 ], [ -76.990685, 38.834259 ], [ -76.990535, 38.834142 ], [ -76.990471, 38.834108 ], [ -76.990471, 38.832688 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009811", "GEOID": "11001009811", "NAME": "98.11", "NAMELSAD": "Census Tract 98.11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 467511, "AWATER": 0, "INTPTLAT": "+38.8266510", "INTPTLON": "-076.9984594" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.002187, 38.821956 ], [ -77.002122, 38.822023 ], [ -77.002037, 38.822123 ], [ -77.002015, 38.822140 ], [ -77.001994, 38.822173 ], [ -77.001972, 38.822206 ], [ -77.001972, 38.822240 ], [ -77.001951, 38.822741 ], [ -77.001929, 38.823276 ], [ -77.001908, 38.823310 ], [ -77.001908, 38.823327 ], [ -77.001929, 38.823360 ], [ -77.001929, 38.823393 ], [ -77.001929, 38.823427 ], [ -77.001929, 38.823460 ], [ -77.001951, 38.823510 ], [ -77.001972, 38.823561 ], [ -77.001994, 38.823594 ], [ -77.002208, 38.823878 ], [ -77.002122, 38.823928 ], [ -77.001908, 38.824012 ], [ -77.001715, 38.824112 ], [ -77.001672, 38.824129 ], [ -77.001650, 38.824146 ], [ -77.001629, 38.824162 ], [ -77.001565, 38.824196 ], [ -77.001543, 38.824213 ], [ -77.001522, 38.824246 ], [ -77.001479, 38.824296 ], [ -77.001457, 38.824313 ], [ -77.001436, 38.824346 ], [ -77.001436, 38.824363 ], [ -77.001393, 38.824430 ], [ -77.001393, 38.824463 ], [ -77.001371, 38.824513 ], [ -77.001371, 38.824580 ], [ -77.001350, 38.824647 ], [ -77.001350, 38.824731 ], [ -77.001371, 38.824798 ], [ -77.001371, 38.824831 ], [ -77.001371, 38.824881 ], [ -77.001393, 38.824931 ], [ -77.001414, 38.824998 ], [ -77.001414, 38.825048 ], [ -77.001436, 38.825082 ], [ -77.001650, 38.825550 ], [ -77.001801, 38.825817 ], [ -77.001929, 38.826102 ], [ -77.002079, 38.826402 ], [ -77.002122, 38.826519 ], [ -77.002294, 38.826854 ], [ -77.002316, 38.826904 ], [ -77.002337, 38.826954 ], [ -77.002358, 38.827004 ], [ -77.002380, 38.827038 ], [ -77.002380, 38.827088 ], [ -77.002401, 38.827138 ], [ -77.002401, 38.827188 ], [ -77.002401, 38.827238 ], [ -77.002423, 38.827288 ], [ -77.002423, 38.827355 ], [ -77.002423, 38.827389 ], [ -77.002401, 38.827439 ], [ -77.002401, 38.827489 ], [ -77.002401, 38.827522 ], [ -77.002380, 38.827623 ], [ -77.002358, 38.827656 ], [ -77.002358, 38.827706 ], [ -77.002337, 38.827756 ], [ -77.002316, 38.827790 ], [ -77.002208, 38.828074 ], [ -77.002187, 38.828174 ], [ -77.002144, 38.828342 ], [ -77.002101, 38.828559 ], [ -77.002079, 38.828609 ], [ -77.002058, 38.828709 ], [ -77.002037, 38.828910 ], [ -77.002037, 38.829077 ], [ -77.002015, 38.829228 ], [ -77.002015, 38.829345 ], [ -77.002015, 38.829796 ], [ -77.002015, 38.830097 ], [ -77.002015, 38.830498 ], [ -77.002015, 38.830949 ], [ -77.001736, 38.830949 ], [ -77.000856, 38.830949 ], [ -77.000685, 38.830966 ], [ -77.000556, 38.830966 ], [ -77.000556, 38.830180 ], [ -77.000556, 38.830080 ], [ -77.000556, 38.829779 ], [ -77.000556, 38.829294 ], [ -77.000556, 38.829211 ], [ -76.999419, 38.829194 ], [ -76.998947, 38.829211 ], [ -76.998496, 38.829211 ], [ -76.998324, 38.829194 ], [ -76.996844, 38.829194 ], [ -76.996350, 38.829211 ], [ -76.996200, 38.829211 ], [ -76.995792, 38.829194 ], [ -76.995578, 38.829194 ], [ -76.995106, 38.829211 ], [ -76.994891, 38.829194 ], [ -76.994698, 38.829194 ], [ -76.993647, 38.829194 ], [ -76.993046, 38.829194 ], [ -76.992831, 38.829211 ], [ -76.992488, 38.829194 ], [ -76.991351, 38.829194 ], [ -76.991115, 38.829144 ], [ -76.991179, 38.829094 ], [ -76.991265, 38.829027 ], [ -76.991479, 38.828860 ], [ -76.991565, 38.828776 ], [ -76.991630, 38.828743 ], [ -76.991737, 38.828659 ], [ -76.992016, 38.828442 ], [ -76.992252, 38.828258 ], [ -76.992488, 38.828074 ], [ -76.992617, 38.827957 ], [ -76.992638, 38.827940 ], [ -76.992788, 38.827840 ], [ -76.993046, 38.827639 ], [ -76.993089, 38.827606 ], [ -76.993260, 38.827472 ], [ -76.993475, 38.827305 ], [ -76.993690, 38.827138 ], [ -76.993861, 38.827004 ], [ -76.994097, 38.826820 ], [ -76.994333, 38.826636 ], [ -76.994569, 38.826453 ], [ -76.994784, 38.826285 ], [ -76.995020, 38.826102 ], [ -76.995234, 38.825934 ], [ -76.995449, 38.825767 ], [ -76.995664, 38.825600 ], [ -76.995835, 38.825466 ], [ -76.995921, 38.825383 ], [ -76.996071, 38.825266 ], [ -76.996179, 38.825182 ], [ -76.996222, 38.825149 ], [ -76.996522, 38.824915 ], [ -76.996672, 38.824798 ], [ -76.996930, 38.824614 ], [ -76.998024, 38.823795 ], [ -76.998088, 38.823761 ], [ -76.998088, 38.823744 ], [ -76.998153, 38.823694 ], [ -76.998410, 38.823510 ], [ -76.998496, 38.823427 ], [ -76.998560, 38.823377 ], [ -76.998582, 38.823360 ], [ -76.998925, 38.823092 ], [ -76.999161, 38.822909 ], [ -76.999269, 38.822825 ], [ -77.000062, 38.822206 ], [ -77.000127, 38.822156 ], [ -77.000234, 38.822056 ], [ -77.001028, 38.821437 ], [ -77.001243, 38.821270 ], [ -77.001371, 38.821354 ], [ -77.001843, 38.821705 ], [ -77.002058, 38.821872 ], [ -77.002187, 38.821956 ] ] ], [ [ [ -76.990900, 38.832353 ], [ -76.991651, 38.831768 ], [ -76.992745, 38.830899 ], [ -76.992853, 38.830815 ], [ -76.993196, 38.830548 ], [ -76.993411, 38.830381 ], [ -76.993690, 38.830164 ], [ -76.993754, 38.830113 ], [ -76.993861, 38.830030 ], [ -76.993968, 38.829946 ], [ -76.994290, 38.829696 ], [ -76.994762, 38.829345 ], [ -76.994805, 38.829294 ], [ -76.994827, 38.829261 ], [ -76.994848, 38.829244 ], [ -76.994891, 38.829194 ], [ -76.995106, 38.829211 ], [ -76.995578, 38.829194 ], [ -76.995792, 38.829194 ], [ -76.996200, 38.829211 ], [ -76.996350, 38.829211 ], [ -76.996844, 38.829194 ], [ -76.998324, 38.829194 ], [ -76.998496, 38.829211 ], [ -76.998947, 38.829211 ], [ -76.999419, 38.829194 ], [ -77.000556, 38.829211 ], [ -77.000556, 38.829294 ], [ -77.000556, 38.829779 ], [ -77.000556, 38.830080 ], [ -77.000556, 38.830180 ], [ -77.000556, 38.830966 ], [ -77.000556, 38.831267 ], [ -77.000535, 38.831267 ], [ -77.000492, 38.831267 ], [ -77.000470, 38.831284 ], [ -77.000427, 38.831284 ], [ -77.000406, 38.831300 ], [ -77.000191, 38.831434 ], [ -76.999805, 38.831685 ], [ -76.999483, 38.831902 ], [ -76.999397, 38.831952 ], [ -76.999247, 38.832052 ], [ -76.999204, 38.832019 ], [ -76.999161, 38.832002 ], [ -76.999140, 38.831986 ], [ -76.999118, 38.831986 ], [ -76.999097, 38.831986 ], [ -76.999011, 38.831986 ], [ -76.998045, 38.831986 ], [ -76.996887, 38.831986 ], [ -76.995792, 38.831986 ], [ -76.994634, 38.831986 ], [ -76.994526, 38.831986 ], [ -76.994312, 38.831986 ], [ -76.994226, 38.831986 ], [ -76.993840, 38.831986 ], [ -76.993454, 38.831986 ], [ -76.993389, 38.831986 ], [ -76.993260, 38.831986 ], [ -76.993153, 38.832002 ], [ -76.993046, 38.832019 ], [ -76.992981, 38.832019 ], [ -76.992810, 38.832036 ], [ -76.992724, 38.832069 ], [ -76.992660, 38.832069 ], [ -76.992509, 38.832119 ], [ -76.992424, 38.832136 ], [ -76.992338, 38.832169 ], [ -76.992230, 38.832203 ], [ -76.992166, 38.832236 ], [ -76.992123, 38.832253 ], [ -76.992016, 38.832303 ], [ -76.991909, 38.832353 ], [ -76.991844, 38.832387 ], [ -76.991737, 38.832454 ], [ -76.991651, 38.832487 ], [ -76.991544, 38.832554 ], [ -76.991351, 38.832704 ], [ -76.991286, 38.832637 ], [ -76.991050, 38.832470 ], [ -76.990900, 38.832353 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008002", "GEOID": "11001008002", "NAME": "80.02", "NAMELSAD": "Census Tract 80.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 578961, "AWATER": 0, "INTPTLAT": "+38.8915403", "INTPTLON": "-076.9827594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.889229 ], [ -76.991394, 38.889229 ], [ -76.991415, 38.889229 ], [ -76.991544, 38.889229 ], [ -76.991522, 38.889797 ], [ -76.991522, 38.890114 ], [ -76.991522, 38.890365 ], [ -76.991436, 38.890365 ], [ -76.990943, 38.890365 ], [ -76.990471, 38.890365 ], [ -76.990471, 38.889229 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006700", "GEOID": "11001006700", "NAME": "67", "NAMELSAD": "Census Tract 67", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 428358, "AWATER": 0, "INTPTLAT": "+38.8875984", "INTPTLON": "-076.9899590" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.994956, 38.884602 ], [ -76.994956, 38.884669 ], [ -76.994956, 38.885955 ], [ -76.994956, 38.886022 ], [ -76.994956, 38.886089 ], [ -76.994956, 38.886807 ], [ -76.994956, 38.887375 ], [ -76.994956, 38.887509 ], [ -76.994956, 38.887592 ], [ -76.994956, 38.887709 ], [ -76.994956, 38.887893 ], [ -76.994956, 38.888678 ], [ -76.994956, 38.888761 ], [ -76.994956, 38.888828 ], [ -76.994956, 38.889680 ], [ -76.994956, 38.889797 ], [ -76.994290, 38.889797 ], [ -76.993754, 38.889797 ], [ -76.993089, 38.889797 ], [ -76.992638, 38.889797 ], [ -76.991801, 38.889797 ], [ -76.991522, 38.889797 ], [ -76.991544, 38.889229 ], [ -76.991415, 38.889229 ], [ -76.991394, 38.889229 ], [ -76.990471, 38.889229 ], [ -76.990471, 38.885371 ], [ -76.991522, 38.885104 ], [ -76.992638, 38.884803 ], [ -76.993368, 38.884602 ], [ -76.993539, 38.884552 ], [ -76.993561, 38.884552 ], [ -76.993604, 38.884552 ], [ -76.993647, 38.884552 ], [ -76.993690, 38.884552 ], [ -76.993754, 38.884586 ], [ -76.993775, 38.884586 ], [ -76.993797, 38.884586 ], [ -76.993968, 38.884586 ], [ -76.994848, 38.884602 ], [ -76.994956, 38.884602 ] ] ], [ [ [ -76.993754, 38.884586 ], [ -76.993690, 38.884552 ], [ -76.993647, 38.884552 ], [ -76.993604, 38.884552 ], [ -76.993561, 38.884552 ], [ -76.993539, 38.884552 ], [ -76.993368, 38.884602 ], [ -76.992638, 38.884803 ], [ -76.991522, 38.885104 ], [ -76.990471, 38.885371 ], [ -76.990471, 38.882481 ], [ -76.990492, 38.882481 ], [ -76.991029, 38.882698 ], [ -76.991136, 38.882732 ], [ -76.991351, 38.882815 ], [ -76.991522, 38.882882 ], [ -76.991694, 38.882966 ], [ -76.991909, 38.883049 ], [ -76.992509, 38.883300 ], [ -76.992638, 38.883350 ], [ -76.993754, 38.883801 ], [ -76.993754, 38.883817 ], [ -76.993754, 38.884101 ], [ -76.993754, 38.884185 ], [ -76.993754, 38.884586 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007100", "GEOID": "11001007100", "NAME": "71", "NAMELSAD": "Census Tract 71", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 602223, "AWATER": 149901, "INTPTLAT": "+38.8771811", "INTPTLON": "-076.9868380" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991522, 38.882882 ], [ -76.991351, 38.882815 ], [ -76.991136, 38.882732 ], [ -76.991029, 38.882698 ], [ -76.990492, 38.882481 ], [ -76.990471, 38.882481 ], [ -76.990471, 38.871840 ], [ -76.990771, 38.872225 ], [ -76.990921, 38.872475 ], [ -76.991093, 38.872826 ], [ -76.991158, 38.872960 ], [ -76.991222, 38.873093 ], [ -76.991265, 38.873227 ], [ -76.991286, 38.873294 ], [ -76.991372, 38.873695 ], [ -76.991415, 38.874029 ], [ -76.991458, 38.874380 ], [ -76.991479, 38.874597 ], [ -76.991544, 38.876501 ], [ -76.991522, 38.877219 ], [ -76.991522, 38.877537 ], [ -76.991522, 38.877704 ], [ -76.991522, 38.877771 ], [ -76.991522, 38.877954 ], [ -76.991522, 38.878088 ], [ -76.991522, 38.878105 ], [ -76.991522, 38.878222 ], [ -76.991522, 38.878339 ], [ -76.991522, 38.878405 ], [ -76.991522, 38.879274 ], [ -76.991522, 38.879742 ], [ -76.991522, 38.880427 ], [ -76.991522, 38.881262 ], [ -76.991522, 38.881362 ], [ -76.991522, 38.881512 ], [ -76.991522, 38.881880 ], [ -76.991522, 38.882648 ], [ -76.991522, 38.882799 ], [ -76.991522, 38.882882 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007503", "GEOID": "11001007503", "NAME": "75.03", "NAMELSAD": "Census Tract 75.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 515179, "AWATER": 0, "INTPTLAT": "+38.8640724", "INTPTLON": "-076.9870900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.862568 ], [ -76.990685, 38.862785 ], [ -76.991029, 38.863119 ], [ -76.991222, 38.863320 ], [ -76.991007, 38.863420 ], [ -76.991050, 38.863470 ], [ -76.991093, 38.863520 ], [ -76.991115, 38.863570 ], [ -76.991351, 38.863871 ], [ -76.991394, 38.863921 ], [ -76.991415, 38.863938 ], [ -76.991415, 38.863955 ], [ -76.991758, 38.864172 ], [ -76.991823, 38.864222 ], [ -76.992316, 38.864556 ], [ -76.992338, 38.864573 ], [ -76.992488, 38.864690 ], [ -76.992702, 38.864857 ], [ -76.992574, 38.864957 ], [ -76.992488, 38.865041 ], [ -76.992445, 38.865074 ], [ -76.992424, 38.865091 ], [ -76.992252, 38.865241 ], [ -76.991994, 38.865509 ], [ -76.991930, 38.865575 ], [ -76.991844, 38.865659 ], [ -76.991758, 38.865759 ], [ -76.991694, 38.865826 ], [ -76.991608, 38.865926 ], [ -76.991501, 38.866093 ], [ -76.991329, 38.866310 ], [ -76.991286, 38.866394 ], [ -76.991136, 38.866578 ], [ -76.991115, 38.866611 ], [ -76.991072, 38.866661 ], [ -76.990600, 38.867279 ], [ -76.990471, 38.867430 ], [ -76.990471, 38.862568 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007407", "GEOID": "11001007407", "NAME": "74.07", "NAMELSAD": "Census Tract 74.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 608700, "AWATER": 0, "INTPTLAT": "+38.8574823", "INTPTLON": "-076.9850206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994312, 38.860646 ], [ -76.994226, 38.860797 ], [ -76.994162, 38.860931 ], [ -76.994011, 38.861148 ], [ -76.993818, 38.861448 ], [ -76.993754, 38.861565 ], [ -76.993625, 38.861733 ], [ -76.993539, 38.861833 ], [ -76.993282, 38.862150 ], [ -76.993260, 38.862184 ], [ -76.993239, 38.862217 ], [ -76.993217, 38.862217 ], [ -76.993153, 38.862267 ], [ -76.993132, 38.862284 ], [ -76.993089, 38.862301 ], [ -76.992981, 38.862367 ], [ -76.992660, 38.862535 ], [ -76.992230, 38.862768 ], [ -76.991501, 38.863153 ], [ -76.991222, 38.863320 ], [ -76.991029, 38.863119 ], [ -76.990685, 38.862785 ], [ -76.990471, 38.862568 ], [ -76.990471, 38.858474 ], [ -76.990814, 38.858474 ], [ -76.990879, 38.858474 ], [ -76.990964, 38.858474 ], [ -76.991050, 38.858474 ], [ -76.991093, 38.858458 ], [ -76.991308, 38.858441 ], [ -76.991501, 38.858424 ], [ -76.991544, 38.858424 ], [ -76.991801, 38.858424 ], [ -76.992166, 38.858424 ], [ -76.993132, 38.858408 ], [ -76.993260, 38.858408 ], [ -76.993604, 38.858474 ], [ -76.993582, 38.858942 ], [ -76.993604, 38.859159 ], [ -76.993647, 38.859443 ], [ -76.993754, 38.859778 ], [ -76.993861, 38.860028 ], [ -76.994033, 38.860296 ], [ -76.994183, 38.860496 ], [ -76.994312, 38.860646 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007406", "GEOID": "11001007406", "NAME": "74.06", "NAMELSAD": "Census Tract 74.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 360152, "AWATER": 0, "INTPTLAT": "+38.8555543", "INTPTLON": "-076.9895582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.853244 ], [ -76.990771, 38.853311 ], [ -76.991415, 38.853512 ], [ -76.991823, 38.853679 ], [ -76.991973, 38.853746 ], [ -76.992059, 38.853812 ], [ -76.992338, 38.853979 ], [ -76.992595, 38.854163 ], [ -76.992853, 38.854397 ], [ -76.993089, 38.854648 ], [ -76.993260, 38.854899 ], [ -76.993432, 38.855199 ], [ -76.993539, 38.855467 ], [ -76.993625, 38.855734 ], [ -76.993647, 38.855918 ], [ -76.993647, 38.856703 ], [ -76.993647, 38.857188 ], [ -76.993625, 38.857706 ], [ -76.993604, 38.858474 ], [ -76.993260, 38.858408 ], [ -76.993132, 38.858408 ], [ -76.992166, 38.858424 ], [ -76.991801, 38.858424 ], [ -76.991544, 38.858424 ], [ -76.991501, 38.858424 ], [ -76.991308, 38.858441 ], [ -76.991093, 38.858458 ], [ -76.991050, 38.858474 ], [ -76.990964, 38.858474 ], [ -76.990879, 38.858474 ], [ -76.990814, 38.858474 ], [ -76.990471, 38.858474 ], [ -76.990471, 38.853244 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007404", "GEOID": "11001007404", "NAME": "74.04", "NAMELSAD": "Census Tract 74.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 826388, "AWATER": 0, "INTPTLAT": "+38.8503364", "INTPTLON": "-076.9820932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.852359 ], [ -76.990943, 38.852659 ], [ -76.992273, 38.853445 ], [ -76.992273, 38.853461 ], [ -76.992252, 38.853478 ], [ -76.992145, 38.853595 ], [ -76.991973, 38.853746 ], [ -76.991823, 38.853679 ], [ -76.991415, 38.853512 ], [ -76.990771, 38.853311 ], [ -76.990471, 38.853244 ], [ -76.990471, 38.852359 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007304", "GEOID": "11001007304", "NAME": "73.04", "NAMELSAD": "Census Tract 73.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1232841, "AWATER": 8983, "INTPTLAT": "+38.8417979", "INTPTLON": "-076.9855591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.838287 ], [ -76.991522, 38.838086 ], [ -76.991994, 38.837986 ], [ -76.992488, 38.837802 ], [ -76.992788, 38.837602 ], [ -76.993496, 38.837485 ], [ -76.993496, 38.837501 ], [ -76.993496, 38.837568 ], [ -76.993518, 38.837769 ], [ -76.993518, 38.838053 ], [ -76.993539, 38.838454 ], [ -76.993561, 38.838805 ], [ -76.993561, 38.838889 ], [ -76.993561, 38.839089 ], [ -76.993582, 38.839507 ], [ -76.993604, 38.839875 ], [ -76.993604, 38.840075 ], [ -76.993604, 38.840159 ], [ -76.993604, 38.840242 ], [ -76.993625, 38.840326 ], [ -76.993625, 38.840410 ], [ -76.993625, 38.840460 ], [ -76.993647, 38.840493 ], [ -76.993668, 38.840593 ], [ -76.993968, 38.842231 ], [ -76.993968, 38.842298 ], [ -76.994226, 38.843685 ], [ -76.993496, 38.843802 ], [ -76.993368, 38.843836 ], [ -76.993282, 38.843852 ], [ -76.993003, 38.843886 ], [ -76.992424, 38.843986 ], [ -76.992166, 38.844036 ], [ -76.991651, 38.844120 ], [ -76.990986, 38.844237 ], [ -76.990578, 38.844304 ], [ -76.990471, 38.844337 ], [ -76.990471, 38.838287 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009700", "GEOID": "11001009700", "NAME": "97", "NAMELSAD": "Census Tract 97", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 403051, "AWATER": 3427, "INTPTLAT": "+38.8354183", "INTPTLON": "-076.9870248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.829662 ], [ -76.990750, 38.829411 ], [ -76.991050, 38.829194 ], [ -76.991072, 38.829161 ], [ -76.991115, 38.829144 ], [ -76.991351, 38.829194 ], [ -76.992488, 38.829194 ], [ -76.992831, 38.829211 ], [ -76.993046, 38.829194 ], [ -76.993647, 38.829194 ], [ -76.994698, 38.829194 ], [ -76.994891, 38.829194 ], [ -76.994848, 38.829244 ], [ -76.994827, 38.829261 ], [ -76.994805, 38.829294 ], [ -76.994762, 38.829345 ], [ -76.994290, 38.829696 ], [ -76.993968, 38.829946 ], [ -76.993861, 38.830030 ], [ -76.993754, 38.830113 ], [ -76.993690, 38.830164 ], [ -76.993411, 38.830381 ], [ -76.993196, 38.830548 ], [ -76.992853, 38.830815 ], [ -76.992745, 38.830899 ], [ -76.991651, 38.831768 ], [ -76.990900, 38.832353 ], [ -76.990836, 38.832403 ], [ -76.990728, 38.832487 ], [ -76.990471, 38.832688 ], [ -76.990471, 38.834108 ], [ -76.990535, 38.834142 ], [ -76.990685, 38.834259 ], [ -76.990793, 38.834326 ], [ -76.990814, 38.834342 ], [ -76.990900, 38.834393 ], [ -76.990921, 38.834393 ], [ -76.990964, 38.834426 ], [ -76.991415, 38.834727 ], [ -76.991715, 38.834927 ], [ -76.991758, 38.834944 ], [ -76.991887, 38.835028 ], [ -76.991930, 38.835078 ], [ -76.991951, 38.835095 ], [ -76.992016, 38.835145 ], [ -76.992059, 38.835178 ], [ -76.992145, 38.835245 ], [ -76.992166, 38.835278 ], [ -76.992209, 38.835312 ], [ -76.992252, 38.835379 ], [ -76.992316, 38.835446 ], [ -76.992381, 38.835546 ], [ -76.992424, 38.835579 ], [ -76.992617, 38.835863 ], [ -76.992681, 38.835997 ], [ -76.992702, 38.836014 ], [ -76.992810, 38.836164 ], [ -76.992939, 38.836348 ], [ -76.993196, 38.836699 ], [ -76.993239, 38.836783 ], [ -76.993282, 38.836850 ], [ -76.993303, 38.836866 ], [ -76.993346, 38.836950 ], [ -76.993368, 38.837000 ], [ -76.993389, 38.837067 ], [ -76.993432, 38.837167 ], [ -76.993454, 38.837234 ], [ -76.993475, 38.837301 ], [ -76.993475, 38.837368 ], [ -76.993496, 38.837418 ], [ -76.993496, 38.837485 ], [ -76.992788, 38.837602 ], [ -76.992488, 38.837802 ], [ -76.991994, 38.837986 ], [ -76.991522, 38.838086 ], [ -76.990471, 38.838287 ], [ -76.990471, 38.829662 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010900", "GEOID": "11001010900", "NAME": "109", "NAMELSAD": "Census Tract 109", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2381079, "AWATER": 2933589, "INTPTLAT": "+38.8132364", "INTPTLON": "-077.0238475" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.001243, 38.821270 ], [ -77.001264, 38.821254 ], [ -77.017679, 38.821254 ], [ -77.017615, 38.821337 ], [ -77.017550, 38.821488 ], [ -77.017486, 38.821655 ], [ -77.017465, 38.821705 ], [ -77.017422, 38.821855 ], [ -77.017422, 38.821906 ], [ -77.017400, 38.821956 ], [ -77.017379, 38.822106 ], [ -77.017379, 38.822156 ], [ -77.017379, 38.822223 ], [ -77.017379, 38.822290 ], [ -77.017379, 38.822374 ], [ -77.017379, 38.822407 ], [ -77.017379, 38.822491 ], [ -77.017379, 38.823226 ], [ -77.017357, 38.823343 ], [ -77.017357, 38.823577 ], [ -77.017357, 38.823594 ], [ -77.017078, 38.823744 ], [ -77.016821, 38.823845 ], [ -77.016521, 38.823761 ], [ -77.015812, 38.823711 ], [ -77.012701, 38.823026 ], [ -77.012079, 38.821889 ], [ -77.012057, 38.821872 ], [ -77.011929, 38.822089 ], [ -77.011800, 38.822323 ], [ -77.011693, 38.822524 ], [ -77.011628, 38.822658 ], [ -77.011542, 38.822825 ], [ -77.011564, 38.822858 ], [ -77.011714, 38.823226 ], [ -77.011886, 38.823577 ], [ -77.011843, 38.823594 ], [ -77.011800, 38.823594 ], [ -77.011735, 38.823594 ], [ -77.010963, 38.823594 ], [ -77.010877, 38.823594 ], [ -77.010663, 38.823594 ], [ -77.010319, 38.823594 ], [ -77.009654, 38.823594 ], [ -77.009568, 38.823594 ], [ -77.009525, 38.823594 ], [ -77.008967, 38.823594 ], [ -77.008603, 38.823594 ], [ -77.008474, 38.823594 ], [ -77.008388, 38.823594 ], [ -77.008216, 38.823611 ], [ -77.008109, 38.823627 ], [ -77.008088, 38.823627 ], [ -77.008023, 38.823644 ], [ -77.007959, 38.823644 ], [ -77.007873, 38.823661 ], [ -77.007809, 38.823678 ], [ -77.007723, 38.823711 ], [ -77.007637, 38.823744 ], [ -77.007551, 38.823778 ], [ -77.007358, 38.823845 ], [ -77.007294, 38.823861 ], [ -77.007143, 38.823928 ], [ -77.007101, 38.823928 ], [ -77.007079, 38.823945 ], [ -77.007015, 38.823962 ], [ -77.006950, 38.823979 ], [ -77.006865, 38.823995 ], [ -77.006736, 38.824012 ], [ -77.006671, 38.824012 ], [ -77.006607, 38.824012 ], [ -77.006543, 38.824012 ], [ -77.006521, 38.824012 ], [ -77.006478, 38.824012 ], [ -77.006392, 38.824012 ], [ -77.006371, 38.824012 ], [ -77.006350, 38.824012 ], [ -77.006264, 38.824029 ], [ -77.006199, 38.824029 ], [ -77.006092, 38.824062 ], [ -77.006028, 38.824079 ], [ -77.006006, 38.824096 ], [ -77.005899, 38.823995 ], [ -77.005835, 38.823928 ], [ -77.005770, 38.823878 ], [ -77.005706, 38.823811 ], [ -77.005620, 38.823744 ], [ -77.005513, 38.823661 ], [ -77.005470, 38.823627 ], [ -77.005427, 38.823594 ], [ -77.005234, 38.823460 ], [ -77.005148, 38.823410 ], [ -77.005041, 38.823360 ], [ -77.004869, 38.823260 ], [ -77.004762, 38.823210 ], [ -77.004654, 38.823159 ], [ -77.004547, 38.823109 ], [ -77.004461, 38.823076 ], [ -77.003174, 38.822507 ], [ -77.002873, 38.822374 ], [ -77.002788, 38.822340 ], [ -77.002702, 38.822290 ], [ -77.002594, 38.822240 ], [ -77.002552, 38.822223 ], [ -77.002466, 38.822156 ], [ -77.002423, 38.822140 ], [ -77.002187, 38.821956 ], [ -77.002058, 38.821872 ], [ -77.001843, 38.821705 ], [ -77.001371, 38.821354 ], [ -77.001243, 38.821270 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1171, "y": 1566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001402", "GEOID": "11001001402", "NAME": "14.02", "NAMELSAD": "Census Tract 14.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 895209, "AWATER": 0, "INTPTLAT": "+38.9606051", "INTPTLON": "-077.0630933" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.056046, 38.958675 ], [ -77.056088, 38.958608 ], [ -77.056110, 38.958558 ], [ -77.056153, 38.958508 ], [ -77.056174, 38.958458 ], [ -77.056239, 38.958374 ], [ -77.056282, 38.958341 ], [ -77.056303, 38.958308 ], [ -77.056324, 38.958291 ], [ -77.056346, 38.958274 ], [ -77.056367, 38.958257 ], [ -77.056389, 38.958241 ], [ -77.056410, 38.958224 ], [ -77.056432, 38.958224 ], [ -77.056518, 38.958157 ], [ -77.056711, 38.958024 ], [ -77.056775, 38.957974 ], [ -77.056818, 38.957924 ], [ -77.056839, 38.957890 ], [ -77.056882, 38.957857 ], [ -77.056904, 38.957807 ], [ -77.056925, 38.957774 ], [ -77.056947, 38.957707 ], [ -77.056947, 38.957690 ], [ -77.056968, 38.957657 ], [ -77.056990, 38.957590 ], [ -77.057011, 38.957557 ], [ -77.057011, 38.957540 ], [ -77.057076, 38.957340 ], [ -77.057097, 38.957306 ], [ -77.057118, 38.957206 ], [ -77.057161, 38.957089 ], [ -77.057183, 38.957023 ], [ -77.057183, 38.956989 ], [ -77.057204, 38.956956 ], [ -77.057247, 38.956906 ], [ -77.057269, 38.956856 ], [ -77.057290, 38.956839 ], [ -77.057333, 38.956806 ], [ -77.057354, 38.956789 ], [ -77.057397, 38.956772 ], [ -77.057419, 38.956756 ], [ -77.057462, 38.956739 ], [ -77.057505, 38.956722 ], [ -77.057526, 38.956722 ], [ -77.057590, 38.956722 ], [ -77.057612, 38.956722 ], [ -77.057655, 38.956722 ], [ -77.057676, 38.956722 ], [ -77.057784, 38.956722 ], [ -77.057848, 38.956722 ], [ -77.057912, 38.956722 ], [ -77.057934, 38.956722 ], [ -77.057977, 38.956722 ], [ -77.058020, 38.956722 ], [ -77.058063, 38.956706 ], [ -77.058084, 38.956756 ], [ -77.058084, 38.956789 ], [ -77.058105, 38.956806 ], [ -77.058127, 38.956839 ], [ -77.058148, 38.956873 ], [ -77.058170, 38.956889 ], [ -77.058320, 38.957006 ], [ -77.058342, 38.957023 ], [ -77.058470, 38.957123 ], [ -77.058578, 38.957206 ], [ -77.058663, 38.957290 ], [ -77.058728, 38.957323 ], [ -77.058771, 38.957356 ], [ -77.058792, 38.957373 ], [ -77.058856, 38.957407 ], [ -77.058921, 38.957440 ], [ -77.059007, 38.957473 ], [ -77.059093, 38.957507 ], [ -77.059135, 38.957523 ], [ -77.059200, 38.957540 ], [ -77.059307, 38.957557 ], [ -77.059350, 38.957573 ], [ -77.059371, 38.957573 ], [ -77.059672, 38.957640 ], [ -77.059844, 38.957690 ], [ -77.060015, 38.957724 ], [ -77.060144, 38.957740 ], [ -77.060337, 38.957774 ], [ -77.060401, 38.957774 ], [ -77.060595, 38.957807 ], [ -77.060852, 38.957824 ], [ -77.061002, 38.957840 ], [ -77.061346, 38.957874 ], [ -77.061732, 38.957890 ], [ -77.062054, 38.957924 ], [ -77.062140, 38.957924 ], [ -77.062676, 38.957974 ], [ -77.063212, 38.958007 ], [ -77.063298, 38.958024 ], [ -77.063406, 38.958041 ], [ -77.063448, 38.958041 ], [ -77.063513, 38.958057 ], [ -77.063599, 38.958074 ], [ -77.063642, 38.958091 ], [ -77.063770, 38.958124 ], [ -77.063942, 38.958174 ], [ -77.064092, 38.958224 ], [ -77.064264, 38.958274 ], [ -77.064521, 38.958341 ], [ -77.064886, 38.958424 ], [ -77.064929, 38.958441 ], [ -77.064950, 38.958441 ], [ -77.065122, 38.958474 ], [ -77.065187, 38.958491 ], [ -77.065251, 38.958508 ], [ -77.065337, 38.958524 ], [ -77.065508, 38.958558 ], [ -77.065594, 38.958575 ], [ -77.065723, 38.958591 ], [ -77.065787, 38.958591 ], [ -77.065916, 38.958608 ], [ -77.066023, 38.958608 ], [ -77.066152, 38.958541 ], [ -77.066195, 38.958508 ], [ -77.066324, 38.958424 ], [ -77.066667, 38.958174 ], [ -77.066903, 38.958007 ], [ -77.067053, 38.957907 ], [ -77.067096, 38.957874 ], [ -77.067118, 38.957857 ], [ -77.067139, 38.957840 ], [ -77.067268, 38.957757 ], [ -77.067375, 38.957673 ], [ -77.067397, 38.957657 ], [ -77.067418, 38.957640 ], [ -77.067440, 38.957623 ], [ -77.067482, 38.957590 ], [ -77.067676, 38.957407 ], [ -77.067804, 38.957290 ], [ -77.067933, 38.957140 ], [ -77.068019, 38.957056 ], [ -77.068040, 38.957006 ], [ -77.068083, 38.956973 ], [ -77.068126, 38.956889 ], [ -77.068148, 38.956856 ], [ -77.068233, 38.956722 ], [ -77.068384, 38.956489 ], [ -77.068470, 38.956355 ], [ -77.068555, 38.956222 ], [ -77.068620, 38.956122 ], [ -77.068727, 38.955955 ], [ -77.068834, 38.955788 ], [ -77.068877, 38.955738 ], [ -77.068899, 38.955688 ], [ -77.068920, 38.955638 ], [ -77.068942, 38.955571 ], [ -77.068985, 38.955488 ], [ -77.069006, 38.955421 ], [ -77.069049, 38.955287 ], [ -77.069113, 38.955137 ], [ -77.069156, 38.955004 ], [ -77.069199, 38.954854 ], [ -77.069221, 38.954820 ], [ -77.069221, 38.954770 ], [ -77.069221, 38.954753 ], [ -77.069221, 38.954720 ], [ -77.069221, 38.954687 ], [ -77.069221, 38.954653 ], [ -77.069221, 38.954637 ], [ -77.069242, 38.954620 ], [ -77.069306, 38.954436 ], [ -77.069414, 38.954336 ], [ -77.069499, 38.954453 ], [ -77.069564, 38.954603 ], [ -77.069628, 38.954687 ], [ -77.069736, 38.954887 ], [ -77.069907, 38.955171 ], [ -77.070122, 38.955538 ], [ -77.070186, 38.955671 ], [ -77.070401, 38.956038 ], [ -77.070529, 38.956255 ], [ -77.070980, 38.957006 ], [ -77.071109, 38.957223 ], [ -77.071280, 38.957523 ], [ -77.071409, 38.957740 ], [ -77.071602, 38.958091 ], [ -77.071731, 38.958324 ], [ -77.071753, 38.958358 ], [ -77.072096, 38.958942 ], [ -77.072139, 38.959025 ], [ -77.072225, 38.959175 ], [ -77.072525, 38.959692 ], [ -77.072890, 38.960326 ], [ -77.073147, 38.960744 ], [ -77.056196, 38.960744 ], [ -77.056196, 38.960610 ], [ -77.056196, 38.960343 ], [ -77.056196, 38.960260 ], [ -77.056196, 38.960193 ], [ -77.056196, 38.960126 ], [ -77.056196, 38.960009 ], [ -77.056196, 38.959959 ], [ -77.056174, 38.959876 ], [ -77.056153, 38.959776 ], [ -77.056131, 38.959692 ], [ -77.056110, 38.959626 ], [ -77.056088, 38.959509 ], [ -77.056024, 38.959008 ], [ -77.056003, 38.958975 ], [ -77.056003, 38.958925 ], [ -77.056003, 38.958892 ], [ -77.056003, 38.958858 ], [ -77.056003, 38.958825 ], [ -77.056003, 38.958791 ], [ -77.056024, 38.958725 ], [ -77.056046, 38.958675 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001500", "GEOID": "11001001500", "NAME": "15", "NAMELSAD": "Census Tract 15", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684714, "AWATER": 39895, "INTPTLAT": "+38.9741576", "INTPTLON": "-077.0558797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.044737, 38.960744 ], [ -77.044845, 38.960710 ], [ -77.045166, 38.960593 ], [ -77.045574, 38.960477 ], [ -77.045918, 38.960427 ], [ -77.046239, 38.960393 ], [ -77.046647, 38.960377 ], [ -77.047012, 38.960377 ], [ -77.047205, 38.960393 ], [ -77.047398, 38.960410 ], [ -77.047570, 38.960427 ], [ -77.047741, 38.960460 ], [ -77.047870, 38.960477 ], [ -77.048106, 38.960527 ], [ -77.048299, 38.960577 ], [ -77.048450, 38.960627 ], [ -77.048492, 38.960643 ], [ -77.048578, 38.960677 ], [ -77.048643, 38.960710 ], [ -77.048707, 38.960727 ], [ -77.048750, 38.960744 ], [ -77.044737, 38.960744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001901", "GEOID": "11001001901", "NAME": "19.01", "NAMELSAD": "Census Tract 19.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 769304, "AWATER": 0, "INTPTLAT": "+38.9646853", "INTPTLON": "-077.0236327" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.019889, 38.960744 ], [ -77.019889, 38.960677 ], [ -77.019889, 38.960160 ], [ -77.019889, 38.959459 ], [ -77.019889, 38.959375 ], [ -77.019889, 38.959225 ], [ -77.019889, 38.958858 ], [ -77.019889, 38.958725 ], [ -77.020211, 38.958725 ], [ -77.020361, 38.958741 ], [ -77.020469, 38.958741 ], [ -77.020619, 38.958741 ], [ -77.020769, 38.958741 ], [ -77.020833, 38.958741 ], [ -77.021155, 38.958725 ], [ -77.021327, 38.958791 ], [ -77.021692, 38.958908 ], [ -77.022057, 38.959025 ], [ -77.022336, 38.959108 ], [ -77.022443, 38.959159 ], [ -77.022958, 38.959325 ], [ -77.023151, 38.959392 ], [ -77.023516, 38.959509 ], [ -77.023880, 38.959626 ], [ -77.024095, 38.959692 ], [ -77.024181, 38.959726 ], [ -77.024310, 38.959776 ], [ -77.025275, 38.960093 ], [ -77.025940, 38.960310 ], [ -77.026777, 38.960577 ], [ -77.027056, 38.960660 ], [ -77.027292, 38.960744 ], [ -77.019889, 38.960744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001902", "GEOID": "11001001902", "NAME": "19.02", "NAMELSAD": "Census Tract 19.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 877346, "AWATER": 0, "INTPTLAT": "+38.9639299", "INTPTLON": "-077.0156458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009246, 38.960193 ], [ -77.009354, 38.960160 ], [ -77.009418, 38.960160 ], [ -77.010555, 38.960160 ], [ -77.010963, 38.960160 ], [ -77.011242, 38.960160 ], [ -77.011607, 38.960160 ], [ -77.011886, 38.960160 ], [ -77.012122, 38.960160 ], [ -77.012165, 38.960160 ], [ -77.012186, 38.960176 ], [ -77.012229, 38.960176 ], [ -77.012315, 38.960193 ], [ -77.013409, 38.958725 ], [ -77.013602, 38.958725 ], [ -77.013667, 38.958725 ], [ -77.014096, 38.958725 ], [ -77.014761, 38.958725 ], [ -77.015190, 38.958725 ], [ -77.016156, 38.958725 ], [ -77.016370, 38.958725 ], [ -77.016671, 38.958741 ], [ -77.016907, 38.958741 ], [ -77.016993, 38.958741 ], [ -77.017100, 38.958741 ], [ -77.017422, 38.958741 ], [ -77.017808, 38.958725 ], [ -77.018023, 38.958741 ], [ -77.018173, 38.958741 ], [ -77.018495, 38.958741 ], [ -77.018774, 38.958725 ], [ -77.019310, 38.958741 ], [ -77.019653, 38.958725 ], [ -77.019889, 38.958725 ], [ -77.019889, 38.958858 ], [ -77.019889, 38.959225 ], [ -77.019889, 38.959375 ], [ -77.019889, 38.959459 ], [ -77.019889, 38.960160 ], [ -77.019889, 38.960677 ], [ -77.019889, 38.960744 ], [ -77.009461, 38.960744 ], [ -77.009439, 38.960694 ], [ -77.009397, 38.960560 ], [ -77.009354, 38.960460 ], [ -77.009268, 38.960210 ], [ -77.009246, 38.960193 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009505", "GEOID": "11001009505", "NAME": "95.05", "NAMELSAD": "Census Tract 95.05", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1033208, "AWATER": 0, "INTPTLAT": "+38.9618925", "INTPTLON": "-077.0051999" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009032, 38.954820 ], [ -77.009032, 38.955304 ], [ -77.009053, 38.955705 ], [ -77.009032, 38.956188 ], [ -77.009032, 38.956589 ], [ -77.009032, 38.956856 ], [ -77.009032, 38.957306 ], [ -77.009053, 38.957657 ], [ -77.009032, 38.958391 ], [ -77.009032, 38.958508 ], [ -77.009032, 38.958641 ], [ -77.009032, 38.958725 ], [ -77.009053, 38.958808 ], [ -77.009053, 38.958892 ], [ -77.009053, 38.959142 ], [ -77.009053, 38.959442 ], [ -77.009032, 38.959559 ], [ -77.009053, 38.959576 ], [ -77.009053, 38.959609 ], [ -77.009053, 38.959642 ], [ -77.009053, 38.959692 ], [ -77.009096, 38.959759 ], [ -77.009096, 38.959809 ], [ -77.009161, 38.959943 ], [ -77.009182, 38.960043 ], [ -77.009246, 38.960193 ], [ -77.009268, 38.960210 ], [ -77.009354, 38.960460 ], [ -77.009397, 38.960560 ], [ -77.009439, 38.960694 ], [ -77.009461, 38.960744 ], [ -76.999333, 38.960744 ], [ -76.999376, 38.960727 ], [ -76.999483, 38.960643 ], [ -76.999547, 38.960593 ], [ -76.999655, 38.960510 ], [ -76.999719, 38.960443 ], [ -76.999784, 38.960393 ], [ -76.999912, 38.960293 ], [ -76.999934, 38.960260 ], [ -76.999955, 38.960243 ], [ -77.000062, 38.960143 ], [ -77.000084, 38.960093 ], [ -77.000191, 38.959976 ], [ -77.000256, 38.959926 ], [ -77.000341, 38.959809 ], [ -77.000449, 38.959676 ], [ -77.000492, 38.959609 ], [ -77.000556, 38.959542 ], [ -77.000921, 38.959058 ], [ -77.001050, 38.958858 ], [ -77.001135, 38.958775 ], [ -77.001243, 38.958608 ], [ -77.001414, 38.958191 ], [ -77.002230, 38.956873 ], [ -77.002294, 38.956772 ], [ -77.002466, 38.956505 ], [ -77.002509, 38.956439 ], [ -77.002573, 38.956355 ], [ -77.002659, 38.956289 ], [ -77.002745, 38.956222 ], [ -77.002938, 38.956122 ], [ -77.003109, 38.956055 ], [ -77.003345, 38.955988 ], [ -77.003839, 38.955871 ], [ -77.003925, 38.955855 ], [ -77.004654, 38.955688 ], [ -77.004976, 38.955688 ], [ -77.005298, 38.955621 ], [ -77.006049, 38.955454 ], [ -77.006264, 38.955404 ], [ -77.006779, 38.955271 ], [ -77.007272, 38.955171 ], [ -77.007701, 38.955070 ], [ -77.008216, 38.954954 ], [ -77.008839, 38.954820 ], [ -77.008882, 38.954820 ], [ -77.008903, 38.954820 ], [ -77.008989, 38.954820 ], [ -77.009032, 38.954820 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001004", "GEOID": "11001001004", "NAME": "10.04", "NAMELSAD": "Census Tract 10.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1471925, "AWATER": 0, "INTPTLAT": "+38.9487665", "INTPTLON": "-077.0853886" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.081795, 38.953068 ], [ -77.081730, 38.952935 ], [ -77.081516, 38.952517 ], [ -77.081280, 38.952067 ], [ -77.080979, 38.951466 ], [ -77.080808, 38.951132 ], [ -77.080786, 38.951116 ], [ -77.080765, 38.951049 ], [ -77.080743, 38.951016 ], [ -77.080700, 38.950899 ], [ -77.080679, 38.950799 ], [ -77.080636, 38.950699 ], [ -77.080615, 38.950598 ], [ -77.080486, 38.950064 ], [ -77.080486, 38.950048 ], [ -77.080400, 38.949681 ], [ -77.080379, 38.949597 ], [ -77.080271, 38.949163 ], [ -77.080271, 38.949097 ], [ -77.080250, 38.949030 ], [ -77.080228, 38.948946 ], [ -77.080207, 38.948896 ], [ -77.080207, 38.948863 ], [ -77.080185, 38.948813 ], [ -77.080142, 38.948746 ], [ -77.080121, 38.948679 ], [ -77.080100, 38.948646 ], [ -77.079928, 38.948329 ], [ -77.079756, 38.948045 ], [ -77.079670, 38.947912 ], [ -77.079563, 38.947728 ], [ -77.079370, 38.947361 ], [ -77.079198, 38.947077 ], [ -77.078919, 38.946577 ], [ -77.078876, 38.946510 ], [ -77.078748, 38.946276 ], [ -77.078619, 38.946026 ], [ -77.078533, 38.945876 ], [ -77.078490, 38.945809 ], [ -77.079091, 38.945926 ], [ -77.079113, 38.945892 ], [ -77.079113, 38.945859 ], [ -77.079134, 38.945842 ], [ -77.079134, 38.945826 ], [ -77.079306, 38.945609 ], [ -77.079456, 38.945459 ], [ -77.079628, 38.945242 ], [ -77.079799, 38.945041 ], [ -77.079928, 38.944891 ], [ -77.080035, 38.944774 ], [ -77.080121, 38.944674 ], [ -77.080228, 38.944557 ], [ -77.080400, 38.944357 ], [ -77.080507, 38.944224 ], [ -77.081001, 38.943656 ], [ -77.081280, 38.943339 ], [ -77.081430, 38.943155 ], [ -77.081666, 38.942872 ], [ -77.081795, 38.942722 ], [ -77.081795, 38.953068 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000803", "GEOID": "11001000803", "NAME": "8.03", "NAMELSAD": "Census Tract 8.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308153, "AWATER": 0, "INTPTLAT": "+38.9336425", "INTPTLON": "-077.0835217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.081795, 38.934911 ], [ -77.081773, 38.934894 ], [ -77.081580, 38.934760 ], [ -77.081366, 38.934610 ], [ -77.080894, 38.934260 ], [ -77.080228, 38.933759 ], [ -77.080121, 38.933692 ], [ -77.080121, 38.933058 ], [ -77.079971, 38.932407 ], [ -77.079885, 38.932056 ], [ -77.080314, 38.930905 ], [ -77.080572, 38.930237 ], [ -77.080700, 38.930254 ], [ -77.080829, 38.930270 ], [ -77.080958, 38.930270 ], [ -77.081108, 38.930287 ], [ -77.081280, 38.930287 ], [ -77.081559, 38.930287 ], [ -77.081795, 38.930287 ], [ -77.081795, 38.934911 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000804", "GEOID": "11001000804", "NAME": "8.04", "NAMELSAD": "Census Tract 8.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2566768, "AWATER": 167978, "INTPTLAT": "+38.9221746", "INTPTLON": "-077.0918347" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.081795, 38.930287 ], [ -77.081559, 38.930287 ], [ -77.081280, 38.930287 ], [ -77.081108, 38.930287 ], [ -77.080958, 38.930270 ], [ -77.080829, 38.930270 ], [ -77.080700, 38.930254 ], [ -77.080572, 38.930237 ], [ -77.081258, 38.927833 ], [ -77.081645, 38.926247 ], [ -77.081795, 38.925580 ], [ -77.081795, 38.930287 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000802", "GEOID": "11001000802", "NAME": "8.02", "NAMELSAD": "Census Tract 8.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1688582, "AWATER": 669985, "INTPTLAT": "+38.9126765", "INTPTLON": "-077.0896118" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079799, 38.902339 ], [ -77.079842, 38.902322 ], [ -77.079885, 38.902322 ], [ -77.079928, 38.902322 ], [ -77.079949, 38.902305 ], [ -77.079992, 38.902305 ], [ -77.080035, 38.902305 ], [ -77.080057, 38.902305 ], [ -77.080100, 38.902289 ], [ -77.080164, 38.902289 ], [ -77.080185, 38.902305 ], [ -77.080228, 38.902305 ], [ -77.080250, 38.902305 ], [ -77.080293, 38.902322 ], [ -77.080336, 38.902322 ], [ -77.080357, 38.902322 ], [ -77.080400, 38.902322 ], [ -77.080443, 38.902322 ], [ -77.080486, 38.902322 ], [ -77.080529, 38.902322 ], [ -77.080572, 38.902322 ], [ -77.080615, 38.902322 ], [ -77.080679, 38.902322 ], [ -77.080765, 38.902322 ], [ -77.080786, 38.902322 ], [ -77.080808, 38.902322 ], [ -77.080829, 38.902322 ], [ -77.080851, 38.902322 ], [ -77.080894, 38.902322 ], [ -77.080915, 38.902322 ], [ -77.080958, 38.902322 ], [ -77.080979, 38.902322 ], [ -77.081001, 38.902322 ], [ -77.081044, 38.902322 ], [ -77.081065, 38.902322 ], [ -77.081087, 38.902322 ], [ -77.081108, 38.902322 ], [ -77.081130, 38.902322 ], [ -77.081151, 38.902322 ], [ -77.081194, 38.902322 ], [ -77.081215, 38.902322 ], [ -77.081237, 38.902322 ], [ -77.081280, 38.902322 ], [ -77.081301, 38.902322 ], [ -77.081344, 38.902322 ], [ -77.081366, 38.902305 ], [ -77.081387, 38.902305 ], [ -77.081430, 38.902305 ], [ -77.081473, 38.902305 ], [ -77.081494, 38.902305 ], [ -77.081516, 38.902305 ], [ -77.081537, 38.902305 ], [ -77.081559, 38.902305 ], [ -77.081580, 38.902305 ], [ -77.081623, 38.902305 ], [ -77.081645, 38.902305 ], [ -77.081687, 38.902305 ], [ -77.081709, 38.902305 ], [ -77.081730, 38.902305 ], [ -77.081752, 38.902305 ], [ -77.081795, 38.902305 ], [ -77.081795, 38.917366 ], [ -77.081730, 38.917232 ], [ -77.081494, 38.916899 ], [ -77.081301, 38.916631 ], [ -77.081001, 38.916214 ], [ -77.080915, 38.915997 ], [ -77.080700, 38.915363 ], [ -77.080550, 38.915029 ], [ -77.080400, 38.914845 ], [ -77.079349, 38.914044 ], [ -77.079241, 38.913860 ], [ -77.079113, 38.913743 ], [ -77.078962, 38.913443 ], [ -77.078834, 38.913109 ], [ -77.078812, 38.912741 ], [ -77.079005, 38.912741 ], [ -77.079005, 38.912675 ], [ -77.079263, 38.912675 ], [ -77.079241, 38.912624 ], [ -77.079241, 38.912257 ], [ -77.079220, 38.911957 ], [ -77.079198, 38.911890 ], [ -77.079027, 38.911806 ], [ -77.078705, 38.911172 ], [ -77.078490, 38.910821 ], [ -77.077696, 38.909686 ], [ -77.077589, 38.909235 ], [ -77.077546, 38.908617 ], [ -77.077868, 38.908133 ], [ -77.077911, 38.906714 ], [ -77.078319, 38.906730 ], [ -77.078340, 38.906263 ], [ -77.078297, 38.906246 ], [ -77.078297, 38.906046 ], [ -77.078297, 38.905929 ], [ -77.078297, 38.905862 ], [ -77.078297, 38.905779 ], [ -77.078404, 38.905779 ], [ -77.079413, 38.905628 ], [ -77.079864, 38.905411 ], [ -77.079885, 38.905194 ], [ -77.079906, 38.905077 ], [ -77.079906, 38.904877 ], [ -77.079220, 38.902456 ], [ -77.079241, 38.902456 ], [ -77.079284, 38.902439 ], [ -77.079306, 38.902422 ], [ -77.079327, 38.902406 ], [ -77.079349, 38.902406 ], [ -77.079370, 38.902389 ], [ -77.079413, 38.902389 ], [ -77.079434, 38.902389 ], [ -77.079456, 38.902389 ], [ -77.079477, 38.902389 ], [ -77.079520, 38.902389 ], [ -77.079542, 38.902389 ], [ -77.079585, 38.902389 ], [ -77.079606, 38.902372 ], [ -77.079649, 38.902372 ], [ -77.079670, 38.902355 ], [ -77.079713, 38.902355 ], [ -77.079756, 38.902339 ], [ -77.079799, 38.902339 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001100", "GEOID": "11001001100", "NAME": "11", "NAMELSAD": "Census Tract 11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1676650, "AWATER": 0, "INTPTLAT": "+38.9572432", "INTPTLON": "-077.0776732" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078876, 38.946510 ], [ -77.078919, 38.946577 ], [ -77.079198, 38.947077 ], [ -77.079370, 38.947361 ], [ -77.079563, 38.947728 ], [ -77.079670, 38.947912 ], [ -77.079756, 38.948045 ], [ -77.079928, 38.948329 ], [ -77.080100, 38.948646 ], [ -77.080121, 38.948679 ], [ -77.080142, 38.948746 ], [ -77.080185, 38.948813 ], [ -77.080207, 38.948863 ], [ -77.080207, 38.948896 ], [ -77.080228, 38.948946 ], [ -77.080250, 38.949030 ], [ -77.080271, 38.949097 ], [ -77.080271, 38.949163 ], [ -77.080379, 38.949597 ], [ -77.080400, 38.949681 ], [ -77.080486, 38.950048 ], [ -77.080486, 38.950064 ], [ -77.080615, 38.950598 ], [ -77.080636, 38.950699 ], [ -77.080679, 38.950799 ], [ -77.080700, 38.950899 ], [ -77.080743, 38.951016 ], [ -77.080765, 38.951049 ], [ -77.080786, 38.951116 ], [ -77.080808, 38.951132 ], [ -77.080979, 38.951466 ], [ -77.081280, 38.952067 ], [ -77.081516, 38.952517 ], [ -77.081730, 38.952935 ], [ -77.081795, 38.953068 ], [ -77.081795, 38.960744 ], [ -77.073147, 38.960744 ], [ -77.072890, 38.960326 ], [ -77.072525, 38.959692 ], [ -77.072225, 38.959175 ], [ -77.072139, 38.959025 ], [ -77.072096, 38.958942 ], [ -77.071753, 38.958358 ], [ -77.071731, 38.958324 ], [ -77.071602, 38.958091 ], [ -77.071409, 38.957740 ], [ -77.071280, 38.957523 ], [ -77.071109, 38.957223 ], [ -77.070980, 38.957006 ], [ -77.070529, 38.956255 ], [ -77.070401, 38.956038 ], [ -77.070186, 38.955671 ], [ -77.070122, 38.955538 ], [ -77.069907, 38.955171 ], [ -77.069736, 38.954887 ], [ -77.069628, 38.954687 ], [ -77.069564, 38.954603 ], [ -77.069499, 38.954453 ], [ -77.069414, 38.954336 ], [ -77.069499, 38.954203 ], [ -77.069521, 38.954186 ], [ -77.069564, 38.954019 ], [ -77.069585, 38.953969 ], [ -77.069628, 38.953886 ], [ -77.069800, 38.953385 ], [ -77.069821, 38.953302 ], [ -77.069843, 38.953252 ], [ -77.069843, 38.953001 ], [ -77.069843, 38.952417 ], [ -77.069843, 38.952100 ], [ -77.070401, 38.952100 ], [ -77.070894, 38.952100 ], [ -77.071517, 38.952100 ], [ -77.071710, 38.952100 ], [ -77.072160, 38.952100 ], [ -77.072868, 38.952100 ], [ -77.073083, 38.952100 ], [ -77.073491, 38.952100 ], [ -77.073619, 38.952100 ], [ -77.073641, 38.952100 ], [ -77.073684, 38.952117 ], [ -77.073705, 38.952134 ], [ -77.073727, 38.952150 ], [ -77.073834, 38.952017 ], [ -77.074220, 38.951583 ], [ -77.074306, 38.951466 ], [ -77.074435, 38.951316 ], [ -77.074649, 38.951066 ], [ -77.074757, 38.950949 ], [ -77.074885, 38.950799 ], [ -77.074928, 38.950732 ], [ -77.075100, 38.950548 ], [ -77.075379, 38.950231 ], [ -77.075636, 38.949914 ], [ -77.075787, 38.949731 ], [ -77.075958, 38.949564 ], [ -77.076559, 38.948846 ], [ -77.076752, 38.948629 ], [ -77.076924, 38.948429 ], [ -77.077074, 38.948245 ], [ -77.077160, 38.948129 ], [ -77.077353, 38.947895 ], [ -77.077503, 38.947728 ], [ -77.077632, 38.947578 ], [ -77.077675, 38.947528 ], [ -77.077804, 38.947394 ], [ -77.077932, 38.947227 ], [ -77.078018, 38.947144 ], [ -77.078125, 38.947011 ], [ -77.078276, 38.946827 ], [ -77.078297, 38.946794 ], [ -77.078319, 38.946777 ], [ -77.078340, 38.946777 ], [ -77.078383, 38.946744 ], [ -77.078426, 38.946727 ], [ -77.078469, 38.946693 ], [ -77.078533, 38.946560 ], [ -77.078619, 38.946560 ], [ -77.078662, 38.946577 ], [ -77.078726, 38.946560 ], [ -77.078769, 38.946543 ], [ -77.078834, 38.946527 ], [ -77.078876, 38.946510 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001200", "GEOID": "11001001200", "NAME": "12", "NAMELSAD": "Census Tract 12", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1219204, "AWATER": 0, "INTPTLAT": "+38.9462221", "INTPTLON": "-077.0705215" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.061646, 38.940969 ], [ -77.062161, 38.940952 ], [ -77.062268, 38.940952 ], [ -77.062354, 38.940936 ], [ -77.062397, 38.940936 ], [ -77.062483, 38.940919 ], [ -77.062590, 38.940902 ], [ -77.062697, 38.940886 ], [ -77.062976, 38.940836 ], [ -77.063062, 38.940819 ], [ -77.063234, 38.940786 ], [ -77.063384, 38.940752 ], [ -77.063406, 38.940735 ], [ -77.063470, 38.940719 ], [ -77.063491, 38.940719 ], [ -77.063556, 38.940702 ], [ -77.063577, 38.940702 ], [ -77.063706, 38.940669 ], [ -77.063727, 38.940669 ], [ -77.063856, 38.940635 ], [ -77.064028, 38.940602 ], [ -77.064157, 38.940569 ], [ -77.064328, 38.940535 ], [ -77.064393, 38.940535 ], [ -77.064457, 38.940519 ], [ -77.064607, 38.940502 ], [ -77.064650, 38.940502 ], [ -77.064693, 38.940502 ], [ -77.064822, 38.940485 ], [ -77.064886, 38.940485 ], [ -77.065058, 38.940468 ], [ -77.065122, 38.940468 ], [ -77.065551, 38.940468 ], [ -77.065701, 38.940485 ], [ -77.065809, 38.940485 ], [ -77.065938, 38.940502 ], [ -77.065980, 38.940502 ], [ -77.066174, 38.940519 ], [ -77.066281, 38.940519 ], [ -77.066388, 38.940535 ], [ -77.066731, 38.940585 ], [ -77.066796, 38.940602 ], [ -77.066946, 38.940619 ], [ -77.066989, 38.940635 ], [ -77.067096, 38.940652 ], [ -77.067375, 38.940619 ], [ -77.067397, 38.940602 ], [ -77.067440, 38.940602 ], [ -77.067461, 38.940602 ], [ -77.067482, 38.940585 ], [ -77.067504, 38.940569 ], [ -77.067525, 38.940552 ], [ -77.067547, 38.940535 ], [ -77.067547, 38.940519 ], [ -77.067568, 38.940502 ], [ -77.067590, 38.940485 ], [ -77.067611, 38.940468 ], [ -77.067633, 38.940452 ], [ -77.067654, 38.940452 ], [ -77.067676, 38.940519 ], [ -77.067676, 38.940535 ], [ -77.067697, 38.940585 ], [ -77.067740, 38.940669 ], [ -77.067761, 38.940752 ], [ -77.067826, 38.940819 ], [ -77.067847, 38.940869 ], [ -77.067869, 38.940902 ], [ -77.067912, 38.940969 ], [ -77.067976, 38.941053 ], [ -77.068040, 38.941119 ], [ -77.068105, 38.941186 ], [ -77.068470, 38.941537 ], [ -77.068534, 38.941603 ], [ -77.068555, 38.941637 ], [ -77.068620, 38.941720 ], [ -77.068641, 38.941754 ], [ -77.068684, 38.941820 ], [ -77.068706, 38.941870 ], [ -77.068748, 38.941937 ], [ -77.068791, 38.942037 ], [ -77.068856, 38.942171 ], [ -77.068877, 38.942204 ], [ -77.069199, 38.942204 ], [ -77.069328, 38.942204 ], [ -77.069671, 38.942204 ], [ -77.070143, 38.942204 ], [ -77.072396, 38.942221 ], [ -77.072504, 38.942221 ], [ -77.074606, 38.942221 ], [ -77.074757, 38.942221 ], [ -77.074821, 38.942221 ], [ -77.075078, 38.942221 ], [ -77.076001, 38.942221 ], [ -77.076495, 38.942221 ], [ -77.076559, 38.942321 ], [ -77.076623, 38.942421 ], [ -77.076967, 38.943055 ], [ -77.077031, 38.943155 ], [ -77.077246, 38.943573 ], [ -77.077460, 38.943940 ], [ -77.077932, 38.944774 ], [ -77.077975, 38.944874 ], [ -77.078104, 38.945091 ], [ -77.078319, 38.945492 ], [ -77.078383, 38.945625 ], [ -77.078490, 38.945809 ], [ -77.078533, 38.945876 ], [ -77.078619, 38.946026 ], [ -77.078748, 38.946276 ], [ -77.078876, 38.946510 ], [ -77.078834, 38.946527 ], [ -77.078769, 38.946543 ], [ -77.078726, 38.946560 ], [ -77.078662, 38.946577 ], [ -77.078619, 38.946560 ], [ -77.078533, 38.946560 ], [ -77.078469, 38.946693 ], [ -77.078426, 38.946727 ], [ -77.078383, 38.946744 ], [ -77.078340, 38.946777 ], [ -77.078319, 38.946777 ], [ -77.078297, 38.946794 ], [ -77.078276, 38.946827 ], [ -77.078125, 38.947011 ], [ -77.078018, 38.947144 ], [ -77.077932, 38.947227 ], [ -77.077804, 38.947394 ], [ -77.077675, 38.947528 ], [ -77.077632, 38.947578 ], [ -77.077503, 38.947728 ], [ -77.077353, 38.947895 ], [ -77.077160, 38.948129 ], [ -77.077074, 38.948245 ], [ -77.076924, 38.948429 ], [ -77.076752, 38.948629 ], [ -77.076559, 38.948846 ], [ -77.075958, 38.949564 ], [ -77.075787, 38.949731 ], [ -77.075636, 38.949914 ], [ -77.075379, 38.950231 ], [ -77.075100, 38.950548 ], [ -77.074928, 38.950732 ], [ -77.074885, 38.950799 ], [ -77.074757, 38.950949 ], [ -77.074649, 38.951066 ], [ -77.074435, 38.951316 ], [ -77.074306, 38.951466 ], [ -77.074220, 38.951583 ], [ -77.073834, 38.952017 ], [ -77.073727, 38.952150 ], [ -77.073705, 38.952134 ], [ -77.073684, 38.952117 ], [ -77.073641, 38.952100 ], [ -77.073619, 38.952100 ], [ -77.073491, 38.952100 ], [ -77.073083, 38.952100 ], [ -77.072868, 38.952100 ], [ -77.072160, 38.952100 ], [ -77.071710, 38.952100 ], [ -77.071517, 38.952100 ], [ -77.070894, 38.952100 ], [ -77.070401, 38.952100 ], [ -77.069843, 38.952100 ], [ -77.069843, 38.952417 ], [ -77.069843, 38.953001 ], [ -77.069843, 38.953252 ], [ -77.069821, 38.953302 ], [ -77.069800, 38.953385 ], [ -77.069628, 38.953886 ], [ -77.069585, 38.953969 ], [ -77.069564, 38.954019 ], [ -77.069521, 38.954186 ], [ -77.069499, 38.954203 ], [ -77.069414, 38.954336 ], [ -77.069349, 38.954236 ], [ -77.069328, 38.954169 ], [ -77.069242, 38.954019 ], [ -77.069199, 38.953952 ], [ -77.068856, 38.953385 ], [ -77.068813, 38.953302 ], [ -77.068770, 38.953218 ], [ -77.068748, 38.953168 ], [ -77.068169, 38.952200 ], [ -77.068126, 38.952100 ], [ -77.067912, 38.951750 ], [ -77.067719, 38.951416 ], [ -77.067311, 38.950732 ], [ -77.066710, 38.949681 ], [ -77.066259, 38.948896 ], [ -77.066216, 38.948830 ], [ -77.066066, 38.948563 ], [ -77.065744, 38.948012 ], [ -77.065680, 38.947895 ], [ -77.065616, 38.947795 ], [ -77.065358, 38.947328 ], [ -77.065122, 38.946944 ], [ -77.064993, 38.946727 ], [ -77.064886, 38.946527 ], [ -77.064672, 38.946159 ], [ -77.064350, 38.945625 ], [ -77.064285, 38.945475 ], [ -77.064199, 38.945375 ], [ -77.064178, 38.945342 ], [ -77.064135, 38.945242 ], [ -77.063985, 38.944991 ], [ -77.063556, 38.944257 ], [ -77.062912, 38.943155 ], [ -77.062848, 38.943039 ], [ -77.062247, 38.942021 ], [ -77.061646, 38.940969 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001002", "GEOID": "11001001002", "NAME": "10.02", "NAMELSAD": "Census Tract 10.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 889722, "AWATER": 0, "INTPTLAT": "+38.9384216", "INTPTLON": "-077.0788872" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.072418, 38.933475 ], [ -77.072546, 38.933475 ], [ -77.072911, 38.933475 ], [ -77.073233, 38.933475 ], [ -77.073598, 38.933475 ], [ -77.073855, 38.933475 ], [ -77.073963, 38.933475 ], [ -77.074842, 38.933475 ], [ -77.075186, 38.933475 ], [ -77.075293, 38.933475 ], [ -77.075851, 38.933492 ], [ -77.076344, 38.933492 ], [ -77.076623, 38.933492 ], [ -77.076924, 38.933492 ], [ -77.077053, 38.933492 ], [ -77.077503, 38.933492 ], [ -77.079048, 38.933492 ], [ -77.079456, 38.933492 ], [ -77.079563, 38.933492 ], [ -77.079606, 38.933475 ], [ -77.079649, 38.933475 ], [ -77.079692, 38.933458 ], [ -77.079735, 38.933442 ], [ -77.079756, 38.933425 ], [ -77.079864, 38.933508 ], [ -77.079906, 38.933542 ], [ -77.080121, 38.933692 ], [ -77.080228, 38.933759 ], [ -77.080894, 38.934260 ], [ -77.081366, 38.934610 ], [ -77.081580, 38.934760 ], [ -77.081773, 38.934894 ], [ -77.081795, 38.934911 ], [ -77.081795, 38.942722 ], [ -77.081666, 38.942872 ], [ -77.081430, 38.943155 ], [ -77.081280, 38.943339 ], [ -77.081001, 38.943656 ], [ -77.080507, 38.944224 ], [ -77.080400, 38.944357 ], [ -77.080228, 38.944557 ], [ -77.080121, 38.944674 ], [ -77.080035, 38.944774 ], [ -77.079928, 38.944891 ], [ -77.079799, 38.945041 ], [ -77.079628, 38.945242 ], [ -77.079456, 38.945459 ], [ -77.079306, 38.945609 ], [ -77.079134, 38.945826 ], [ -77.079134, 38.945842 ], [ -77.079113, 38.945859 ], [ -77.079113, 38.945892 ], [ -77.079091, 38.945926 ], [ -77.078490, 38.945809 ], [ -77.078383, 38.945625 ], [ -77.078319, 38.945492 ], [ -77.078104, 38.945091 ], [ -77.077975, 38.944874 ], [ -77.077932, 38.944774 ], [ -77.077460, 38.943940 ], [ -77.077246, 38.943573 ], [ -77.077031, 38.943155 ], [ -77.076967, 38.943055 ], [ -77.076623, 38.942421 ], [ -77.076559, 38.942321 ], [ -77.076495, 38.942221 ], [ -77.076344, 38.941954 ], [ -77.076216, 38.941687 ], [ -77.075894, 38.941103 ], [ -77.075744, 38.940819 ], [ -77.075679, 38.940735 ], [ -77.075422, 38.940235 ], [ -77.075036, 38.939550 ], [ -77.074263, 38.938132 ], [ -77.073834, 38.937364 ], [ -77.073791, 38.937281 ], [ -77.073576, 38.936897 ], [ -77.073448, 38.936680 ], [ -77.073255, 38.936279 ], [ -77.073212, 38.936229 ], [ -77.073147, 38.936079 ], [ -77.073104, 38.935979 ], [ -77.072890, 38.935511 ], [ -77.072611, 38.934894 ], [ -77.072525, 38.934727 ], [ -77.072525, 38.934694 ], [ -77.072504, 38.934627 ], [ -77.072482, 38.934577 ], [ -77.072461, 38.934477 ], [ -77.072439, 38.934410 ], [ -77.072439, 38.934360 ], [ -77.072418, 38.934276 ], [ -77.072418, 38.934226 ], [ -77.072418, 38.933993 ], [ -77.072418, 38.933892 ], [ -77.072396, 38.933709 ], [ -77.072396, 38.933609 ], [ -77.072418, 38.933475 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000704", "GEOID": "11001000704", "NAME": "7.04", "NAMELSAD": "Census Tract 7.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 332346, "AWATER": 0, "INTPTLAT": "+38.9300215", "INTPTLON": "-077.0752384" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.079692, 38.933458 ], [ -77.079649, 38.933475 ], [ -77.079606, 38.933475 ], [ -77.079563, 38.933492 ], [ -77.079456, 38.933492 ], [ -77.079048, 38.933492 ], [ -77.077503, 38.933492 ], [ -77.077053, 38.933492 ], [ -77.076924, 38.933492 ], [ -77.076623, 38.933492 ], [ -77.076344, 38.933492 ], [ -77.075851, 38.933492 ], [ -77.075293, 38.933475 ], [ -77.075186, 38.933475 ], [ -77.074842, 38.933475 ], [ -77.073963, 38.933475 ], [ -77.073855, 38.933475 ], [ -77.073598, 38.933475 ], [ -77.073233, 38.933475 ], [ -77.072911, 38.933475 ], [ -77.072546, 38.933475 ], [ -77.072418, 38.933475 ], [ -77.072418, 38.933358 ], [ -77.072439, 38.933241 ], [ -77.072461, 38.932941 ], [ -77.072482, 38.932824 ], [ -77.072525, 38.932540 ], [ -77.072546, 38.932474 ], [ -77.072654, 38.931873 ], [ -77.072933, 38.930120 ], [ -77.072997, 38.929653 ], [ -77.073019, 38.929502 ], [ -77.073104, 38.929018 ], [ -77.073126, 38.928818 ], [ -77.073147, 38.928601 ], [ -77.073169, 38.928451 ], [ -77.073190, 38.928317 ], [ -77.073190, 38.928167 ], [ -77.073190, 38.928084 ], [ -77.073190, 38.927983 ], [ -77.073190, 38.927599 ], [ -77.073190, 38.927533 ], [ -77.073190, 38.927282 ], [ -77.073190, 38.926581 ], [ -77.073190, 38.926181 ], [ -77.073598, 38.926181 ], [ -77.073855, 38.926181 ], [ -77.073855, 38.925730 ], [ -77.073855, 38.925580 ], [ -77.074628, 38.925580 ], [ -77.074606, 38.925730 ], [ -77.075872, 38.925747 ], [ -77.077053, 38.925747 ], [ -77.077053, 38.925897 ], [ -77.077053, 38.926114 ], [ -77.077053, 38.926181 ], [ -77.077031, 38.926281 ], [ -77.077053, 38.926548 ], [ -77.077031, 38.926848 ], [ -77.077053, 38.927132 ], [ -77.077031, 38.927366 ], [ -77.077031, 38.927533 ], [ -77.077031, 38.927599 ], [ -77.077053, 38.927950 ], [ -77.077053, 38.928000 ], [ -77.077053, 38.928200 ], [ -77.077053, 38.928501 ], [ -77.077031, 38.928818 ], [ -77.077053, 38.929018 ], [ -77.077053, 38.929102 ], [ -77.077053, 38.929269 ], [ -77.077053, 38.929769 ], [ -77.077053, 38.930020 ], [ -77.077053, 38.930554 ], [ -77.077031, 38.930804 ], [ -77.077031, 38.931005 ], [ -77.077031, 38.931172 ], [ -77.077010, 38.931205 ], [ -77.077010, 38.931405 ], [ -77.077160, 38.931539 ], [ -77.077246, 38.931589 ], [ -77.077675, 38.931906 ], [ -77.078083, 38.932207 ], [ -77.078276, 38.932357 ], [ -77.078791, 38.932724 ], [ -77.079155, 38.932991 ], [ -77.079756, 38.933425 ], [ -77.079735, 38.933442 ], [ -77.079692, 38.933458 ] ] ], [ [ [ -77.077053, 38.926181 ], [ -77.077696, 38.926181 ], [ -77.077975, 38.926197 ], [ -77.078297, 38.926197 ], [ -77.078555, 38.926181 ], [ -77.078855, 38.926181 ], [ -77.078984, 38.926181 ], [ -77.079177, 38.926197 ], [ -77.079413, 38.926164 ], [ -77.079756, 38.926064 ], [ -77.079992, 38.925964 ], [ -77.080507, 38.925997 ], [ -77.081301, 38.926047 ], [ -77.081409, 38.926097 ], [ -77.081430, 38.926114 ], [ -77.081473, 38.926130 ], [ -77.081516, 38.926147 ], [ -77.081559, 38.926181 ], [ -77.081623, 38.926231 ], [ -77.081645, 38.926247 ], [ -77.081258, 38.927833 ], [ -77.080572, 38.930237 ], [ -77.080314, 38.930905 ], [ -77.079885, 38.932056 ], [ -77.079971, 38.932407 ], [ -77.080121, 38.933058 ], [ -77.080121, 38.933692 ], [ -77.079906, 38.933542 ], [ -77.079864, 38.933508 ], [ -77.079756, 38.933425 ], [ -77.079155, 38.932991 ], [ -77.078791, 38.932724 ], [ -77.078276, 38.932357 ], [ -77.078083, 38.932207 ], [ -77.077675, 38.931906 ], [ -77.077246, 38.931589 ], [ -77.077160, 38.931539 ], [ -77.077010, 38.931405 ], [ -77.077010, 38.931205 ], [ -77.077031, 38.931172 ], [ -77.077031, 38.931005 ], [ -77.077031, 38.930804 ], [ -77.077053, 38.930554 ], [ -77.077053, 38.930020 ], [ -77.077053, 38.929769 ], [ -77.077053, 38.929269 ], [ -77.077053, 38.929102 ], [ -77.077053, 38.929018 ], [ -77.077031, 38.928818 ], [ -77.077053, 38.928501 ], [ -77.077053, 38.928200 ], [ -77.077053, 38.928000 ], [ -77.077053, 38.927950 ], [ -77.077031, 38.927599 ], [ -77.077031, 38.927533 ], [ -77.077031, 38.927366 ], [ -77.077053, 38.927132 ], [ -77.077031, 38.926848 ], [ -77.077053, 38.926548 ], [ -77.077031, 38.926281 ], [ -77.077053, 38.926181 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000600", "GEOID": "11001000600", "NAME": "6", "NAMELSAD": "Census Tract 6", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1441865, "AWATER": 71, "INTPTLAT": "+38.9368114", "INTPTLON": "-077.0675114" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.056775, 38.932574 ], [ -77.056882, 38.932574 ], [ -77.056990, 38.932574 ], [ -77.057076, 38.932574 ], [ -77.057161, 38.932590 ], [ -77.057204, 38.932607 ], [ -77.057590, 38.932674 ], [ -77.057655, 38.932691 ], [ -77.057805, 38.932707 ], [ -77.057827, 38.932707 ], [ -77.057869, 38.932707 ], [ -77.057912, 38.932707 ], [ -77.057934, 38.932707 ], [ -77.057977, 38.932691 ], [ -77.057998, 38.932691 ], [ -77.058020, 38.932674 ], [ -77.058063, 38.932657 ], [ -77.058084, 38.932641 ], [ -77.058105, 38.932624 ], [ -77.058127, 38.932607 ], [ -77.058170, 38.932557 ], [ -77.058191, 38.932507 ], [ -77.058234, 38.932440 ], [ -77.058256, 38.932390 ], [ -77.058277, 38.932357 ], [ -77.058320, 38.932290 ], [ -77.058363, 38.932173 ], [ -77.058384, 38.932106 ], [ -77.058406, 38.932040 ], [ -77.058427, 38.931956 ], [ -77.058427, 38.931873 ], [ -77.058449, 38.931789 ], [ -77.058449, 38.931739 ], [ -77.058449, 38.931639 ], [ -77.058449, 38.931539 ], [ -77.058449, 38.931505 ], [ -77.058449, 38.931489 ], [ -77.058449, 38.931455 ], [ -77.058470, 38.931422 ], [ -77.058492, 38.931372 ], [ -77.058513, 38.931355 ], [ -77.058535, 38.931322 ], [ -77.058556, 38.931305 ], [ -77.058771, 38.931122 ], [ -77.059093, 38.930888 ], [ -77.059200, 38.930821 ], [ -77.059436, 38.930671 ], [ -77.059736, 38.930471 ], [ -77.059865, 38.930387 ], [ -77.059886, 38.930370 ], [ -77.059929, 38.930370 ], [ -77.059994, 38.930337 ], [ -77.060058, 38.930320 ], [ -77.060122, 38.930320 ], [ -77.060144, 38.930304 ], [ -77.060208, 38.930304 ], [ -77.060251, 38.930304 ], [ -77.060401, 38.930287 ], [ -77.060831, 38.930270 ], [ -77.061024, 38.930237 ], [ -77.061110, 38.930237 ], [ -77.061152, 38.930237 ], [ -77.061560, 38.930203 ], [ -77.061882, 38.930170 ], [ -77.062140, 38.930153 ], [ -77.062290, 38.930137 ], [ -77.062569, 38.930237 ], [ -77.062740, 38.930304 ], [ -77.062912, 38.930370 ], [ -77.063148, 38.930471 ], [ -77.063255, 38.930504 ], [ -77.063942, 38.930788 ], [ -77.064500, 38.931005 ], [ -77.064586, 38.931038 ], [ -77.064672, 38.931071 ], [ -77.064757, 38.931088 ], [ -77.065272, 38.931205 ], [ -77.065701, 38.931322 ], [ -77.066023, 38.931389 ], [ -77.066259, 38.931439 ], [ -77.066388, 38.931472 ], [ -77.066603, 38.931505 ], [ -77.066710, 38.931522 ], [ -77.066839, 38.931539 ], [ -77.066967, 38.931556 ], [ -77.067096, 38.931556 ], [ -77.067204, 38.931556 ], [ -77.067611, 38.931572 ], [ -77.068641, 38.931606 ], [ -77.068791, 38.931622 ], [ -77.068877, 38.931622 ], [ -77.069199, 38.931622 ], [ -77.069607, 38.931656 ], [ -77.070873, 38.931756 ], [ -77.071002, 38.931756 ], [ -77.071259, 38.931773 ], [ -77.071602, 38.931806 ], [ -77.072418, 38.931856 ], [ -77.072439, 38.931873 ], [ -77.072482, 38.931873 ], [ -77.072525, 38.931873 ], [ -77.072568, 38.931873 ], [ -77.072654, 38.931873 ], [ -77.072546, 38.932474 ], [ -77.072525, 38.932540 ], [ -77.072482, 38.932824 ], [ -77.072461, 38.932941 ], [ -77.072439, 38.933241 ], [ -77.072418, 38.933358 ], [ -77.072418, 38.933475 ], [ -77.072396, 38.933609 ], [ -77.072396, 38.933709 ], [ -77.072418, 38.933892 ], [ -77.072418, 38.933993 ], [ -77.072418, 38.934226 ], [ -77.072418, 38.934276 ], [ -77.072439, 38.934360 ], [ -77.072439, 38.934410 ], [ -77.072461, 38.934477 ], [ -77.072482, 38.934577 ], [ -77.072504, 38.934627 ], [ -77.072525, 38.934694 ], [ -77.072525, 38.934727 ], [ -77.072611, 38.934894 ], [ -77.072890, 38.935511 ], [ -77.073104, 38.935979 ], [ -77.073147, 38.936079 ], [ -77.073212, 38.936229 ], [ -77.073255, 38.936279 ], [ -77.073448, 38.936680 ], [ -77.073576, 38.936897 ], [ -77.073791, 38.937281 ], [ -77.073834, 38.937364 ], [ -77.074263, 38.938132 ], [ -77.075036, 38.939550 ], [ -77.075422, 38.940235 ], [ -77.075679, 38.940735 ], [ -77.075744, 38.940819 ], [ -77.075894, 38.941103 ], [ -77.076216, 38.941687 ], [ -77.076344, 38.941954 ], [ -77.076495, 38.942221 ], [ -77.076001, 38.942221 ], [ -77.075078, 38.942221 ], [ -77.074821, 38.942221 ], [ -77.074757, 38.942221 ], [ -77.074606, 38.942221 ], [ -77.072504, 38.942221 ], [ -77.072396, 38.942221 ], [ -77.070143, 38.942204 ], [ -77.069671, 38.942204 ], [ -77.069328, 38.942204 ], [ -77.069199, 38.942204 ], [ -77.068877, 38.942204 ], [ -77.068856, 38.942171 ], [ -77.068791, 38.942037 ], [ -77.068748, 38.941937 ], [ -77.068706, 38.941870 ], [ -77.068684, 38.941820 ], [ -77.068641, 38.941754 ], [ -77.068620, 38.941720 ], [ -77.068555, 38.941637 ], [ -77.068534, 38.941603 ], [ -77.068470, 38.941537 ], [ -77.068105, 38.941186 ], [ -77.068040, 38.941119 ], [ -77.067976, 38.941053 ], [ -77.067912, 38.940969 ], [ -77.067869, 38.940902 ], [ -77.067847, 38.940869 ], [ -77.067826, 38.940819 ], [ -77.067761, 38.940752 ], [ -77.067740, 38.940669 ], [ -77.067697, 38.940585 ], [ -77.067676, 38.940535 ], [ -77.067676, 38.940519 ], [ -77.067654, 38.940452 ], [ -77.067633, 38.940452 ], [ -77.067611, 38.940468 ], [ -77.067590, 38.940485 ], [ -77.067568, 38.940502 ], [ -77.067547, 38.940519 ], [ -77.067547, 38.940535 ], [ -77.067525, 38.940552 ], [ -77.067504, 38.940569 ], [ -77.067482, 38.940585 ], [ -77.067461, 38.940602 ], [ -77.067440, 38.940602 ], [ -77.067397, 38.940602 ], [ -77.067375, 38.940619 ], [ -77.067096, 38.940652 ], [ -77.066989, 38.940635 ], [ -77.066946, 38.940619 ], [ -77.066796, 38.940602 ], [ -77.066731, 38.940585 ], [ -77.066388, 38.940535 ], [ -77.066281, 38.940519 ], [ -77.066174, 38.940519 ], [ -77.065980, 38.940502 ], [ -77.065938, 38.940502 ], [ -77.065809, 38.940485 ], [ -77.065701, 38.940485 ], [ -77.065551, 38.940468 ], [ -77.065122, 38.940468 ], [ -77.065058, 38.940468 ], [ -77.064886, 38.940485 ], [ -77.064822, 38.940485 ], [ -77.064693, 38.940502 ], [ -77.064650, 38.940502 ], [ -77.064607, 38.940502 ], [ -77.064457, 38.940519 ], [ -77.064393, 38.940535 ], [ -77.064328, 38.940535 ], [ -77.064157, 38.940569 ], [ -77.064028, 38.940602 ], [ -77.063856, 38.940635 ], [ -77.063727, 38.940669 ], [ -77.063706, 38.940669 ], [ -77.063577, 38.940702 ], [ -77.063556, 38.940702 ], [ -77.063491, 38.940719 ], [ -77.063470, 38.940719 ], [ -77.063406, 38.940735 ], [ -77.063384, 38.940752 ], [ -77.063234, 38.940786 ], [ -77.063062, 38.940819 ], [ -77.062976, 38.940836 ], [ -77.062697, 38.940886 ], [ -77.062590, 38.940902 ], [ -77.062483, 38.940919 ], [ -77.062397, 38.940936 ], [ -77.062354, 38.940936 ], [ -77.062268, 38.940952 ], [ -77.062161, 38.940952 ], [ -77.061646, 38.940969 ], [ -77.061517, 38.940735 ], [ -77.061217, 38.940235 ], [ -77.061002, 38.939851 ], [ -77.060809, 38.939517 ], [ -77.060723, 38.939384 ], [ -77.060680, 38.939317 ], [ -77.060316, 38.938699 ], [ -77.060251, 38.938566 ], [ -77.060058, 38.938232 ], [ -77.059994, 38.938115 ], [ -77.059393, 38.937097 ], [ -77.059329, 38.936980 ], [ -77.059286, 38.936930 ], [ -77.059243, 38.936830 ], [ -77.059178, 38.936713 ], [ -77.058985, 38.936379 ], [ -77.058513, 38.935561 ], [ -77.058363, 38.935328 ], [ -77.058127, 38.934911 ], [ -77.057955, 38.934610 ], [ -77.057741, 38.934243 ], [ -77.057633, 38.934076 ], [ -77.057312, 38.933508 ], [ -77.056947, 38.932891 ], [ -77.056775, 38.932574 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000502", "GEOID": "11001000502", "NAME": "5.02", "NAMELSAD": "Census Tract 5.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 581507, "AWATER": 0, "INTPTLAT": "+38.9283547", "INTPTLON": "-077.0595624" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.066388, 38.931472 ], [ -77.066259, 38.931439 ], [ -77.066023, 38.931389 ], [ -77.065701, 38.931322 ], [ -77.065272, 38.931205 ], [ -77.064757, 38.931088 ], [ -77.064672, 38.931071 ], [ -77.064586, 38.931038 ], [ -77.064500, 38.931005 ], [ -77.063942, 38.930788 ], [ -77.063255, 38.930504 ], [ -77.063148, 38.930471 ], [ -77.062912, 38.930370 ], [ -77.062740, 38.930304 ], [ -77.062569, 38.930237 ], [ -77.062290, 38.930137 ], [ -77.062140, 38.930153 ], [ -77.061882, 38.930170 ], [ -77.061560, 38.930203 ], [ -77.061152, 38.930237 ], [ -77.061110, 38.930237 ], [ -77.061024, 38.930237 ], [ -77.060831, 38.930270 ], [ -77.060401, 38.930287 ], [ -77.060251, 38.930304 ], [ -77.060208, 38.930304 ], [ -77.060144, 38.930304 ], [ -77.060122, 38.930320 ], [ -77.060058, 38.930320 ], [ -77.059994, 38.930337 ], [ -77.059929, 38.930370 ], [ -77.059886, 38.930370 ], [ -77.059865, 38.930387 ], [ -77.059736, 38.930471 ], [ -77.059436, 38.930671 ], [ -77.059200, 38.930821 ], [ -77.059093, 38.930888 ], [ -77.058771, 38.931122 ], [ -77.058556, 38.931305 ], [ -77.058535, 38.931322 ], [ -77.058513, 38.931355 ], [ -77.058492, 38.931372 ], [ -77.058470, 38.931422 ], [ -77.058449, 38.931455 ], [ -77.058449, 38.931489 ], [ -77.058449, 38.931505 ], [ -77.058449, 38.931539 ], [ -77.058449, 38.931639 ], [ -77.058449, 38.931739 ], [ -77.058449, 38.931789 ], [ -77.058427, 38.931873 ], [ -77.058427, 38.931956 ], [ -77.058406, 38.932040 ], [ -77.058384, 38.932106 ], [ -77.058363, 38.932173 ], [ -77.058320, 38.932290 ], [ -77.058277, 38.932357 ], [ -77.058256, 38.932390 ], [ -77.058234, 38.932440 ], [ -77.058191, 38.932507 ], [ -77.058170, 38.932557 ], [ -77.058127, 38.932607 ], [ -77.058105, 38.932624 ], [ -77.058084, 38.932641 ], [ -77.058063, 38.932657 ], [ -77.058020, 38.932674 ], [ -77.057998, 38.932691 ], [ -77.057977, 38.932691 ], [ -77.057934, 38.932707 ], [ -77.057912, 38.932707 ], [ -77.057869, 38.932707 ], [ -77.057827, 38.932707 ], [ -77.057805, 38.932707 ], [ -77.057655, 38.932691 ], [ -77.057590, 38.932674 ], [ -77.057204, 38.932607 ], [ -77.057161, 38.932590 ], [ -77.057076, 38.932574 ], [ -77.056990, 38.932574 ], [ -77.056882, 38.932574 ], [ -77.056775, 38.932574 ], [ -77.056732, 38.932490 ], [ -77.056496, 38.932106 ], [ -77.056260, 38.931689 ], [ -77.056174, 38.931572 ], [ -77.055938, 38.931172 ], [ -77.055702, 38.930754 ], [ -77.055552, 38.930487 ], [ -77.055080, 38.929669 ], [ -77.054715, 38.929035 ], [ -77.054329, 38.928367 ], [ -77.054157, 38.928084 ], [ -77.054114, 38.928000 ], [ -77.053707, 38.927316 ], [ -77.053535, 38.927032 ], [ -77.053363, 38.926715 ], [ -77.053277, 38.926565 ], [ -77.052977, 38.926064 ], [ -77.052677, 38.925530 ], [ -77.052805, 38.925546 ], [ -77.053514, 38.925646 ], [ -77.053664, 38.925663 ], [ -77.053921, 38.925696 ], [ -77.054372, 38.925747 ], [ -77.054780, 38.925797 ], [ -77.055123, 38.925847 ], [ -77.055230, 38.925863 ], [ -77.055316, 38.925880 ], [ -77.055852, 38.925947 ], [ -77.056303, 38.925997 ], [ -77.056346, 38.926014 ], [ -77.056432, 38.926014 ], [ -77.056539, 38.926030 ], [ -77.056882, 38.926080 ], [ -77.056947, 38.926080 ], [ -77.057097, 38.926097 ], [ -77.057526, 38.926164 ], [ -77.057633, 38.926164 ], [ -77.057633, 38.926080 ], [ -77.057633, 38.926030 ], [ -77.057633, 38.925329 ], [ -77.057633, 38.924945 ], [ -77.057633, 38.924678 ], [ -77.057633, 38.923710 ], [ -77.057633, 38.923359 ], [ -77.057655, 38.923276 ], [ -77.057719, 38.923209 ], [ -77.058084, 38.923493 ], [ -77.058449, 38.923793 ], [ -77.058728, 38.923994 ], [ -77.059028, 38.924227 ], [ -77.059329, 38.924478 ], [ -77.059414, 38.924528 ], [ -77.059500, 38.924611 ], [ -77.059779, 38.924812 ], [ -77.060144, 38.925112 ], [ -77.060423, 38.925313 ], [ -77.060595, 38.925446 ], [ -77.060723, 38.925563 ], [ -77.060809, 38.925630 ], [ -77.060852, 38.925663 ], [ -77.061260, 38.925980 ], [ -77.061367, 38.926064 ], [ -77.061453, 38.926114 ], [ -77.061560, 38.926214 ], [ -77.061625, 38.926264 ], [ -77.061667, 38.926297 ], [ -77.061732, 38.926347 ], [ -77.061818, 38.926414 ], [ -77.061925, 38.926498 ], [ -77.062097, 38.926631 ], [ -77.062740, 38.927132 ], [ -77.063041, 38.927366 ], [ -77.063062, 38.927382 ], [ -77.063234, 38.927516 ], [ -77.063470, 38.927533 ], [ -77.063749, 38.927516 ], [ -77.064114, 38.927533 ], [ -77.064564, 38.927516 ], [ -77.064800, 38.927533 ], [ -77.065251, 38.927533 ], [ -77.065358, 38.927516 ], [ -77.066045, 38.927516 ], [ -77.066388, 38.927533 ], [ -77.066388, 38.928000 ], [ -77.066388, 38.928434 ], [ -77.066388, 38.929002 ], [ -77.066388, 38.929085 ], [ -77.066388, 38.929452 ], [ -77.066388, 38.929970 ], [ -77.066388, 38.930070 ], [ -77.066388, 38.930270 ], [ -77.066388, 38.930337 ], [ -77.066388, 38.930955 ], [ -77.066388, 38.931472 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001301", "GEOID": "11001001301", "NAME": "13.01", "NAMELSAD": "Census Tract 13.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2855501, "AWATER": 26550, "INTPTLAT": "+38.9519215", "INTPTLON": "-077.0520508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.040489, 38.959592 ], [ -77.040510, 38.959542 ], [ -77.040553, 38.959425 ], [ -77.040639, 38.959342 ], [ -77.040918, 38.959092 ], [ -77.041090, 38.958925 ], [ -77.041111, 38.958775 ], [ -77.041175, 38.958591 ], [ -77.041283, 38.958441 ], [ -77.041476, 38.958291 ], [ -77.041819, 38.958141 ], [ -77.041905, 38.958091 ], [ -77.041926, 38.958074 ], [ -77.041991, 38.958041 ], [ -77.042055, 38.957974 ], [ -77.042098, 38.957924 ], [ -77.042120, 38.957890 ], [ -77.042141, 38.957857 ], [ -77.042141, 38.957573 ], [ -77.042141, 38.957356 ], [ -77.042141, 38.956806 ], [ -77.042205, 38.956522 ], [ -77.042291, 38.956339 ], [ -77.042334, 38.956138 ], [ -77.042291, 38.955905 ], [ -77.042162, 38.955604 ], [ -77.042077, 38.955388 ], [ -77.042077, 38.955287 ], [ -77.042077, 38.955087 ], [ -77.042098, 38.954987 ], [ -77.042141, 38.954670 ], [ -77.042184, 38.954587 ], [ -77.042334, 38.954436 ], [ -77.042656, 38.954286 ], [ -77.042763, 38.954203 ], [ -77.042956, 38.953936 ], [ -77.043149, 38.953752 ], [ -77.043364, 38.953535 ], [ -77.043579, 38.953368 ], [ -77.043793, 38.953185 ], [ -77.044137, 38.952885 ], [ -77.044265, 38.952734 ], [ -77.044630, 38.952284 ], [ -77.044737, 38.952134 ], [ -77.044845, 38.951967 ], [ -77.044866, 38.951650 ], [ -77.044888, 38.951449 ], [ -77.044973, 38.951233 ], [ -77.045317, 38.950882 ], [ -77.045724, 38.950498 ], [ -77.046068, 38.950315 ], [ -77.046604, 38.950048 ], [ -77.046947, 38.949831 ], [ -77.047055, 38.949647 ], [ -77.047055, 38.949597 ], [ -77.047012, 38.949380 ], [ -77.046862, 38.948996 ], [ -77.046883, 38.948896 ], [ -77.046969, 38.948663 ], [ -77.046990, 38.948496 ], [ -77.046990, 38.948446 ], [ -77.046947, 38.948279 ], [ -77.046840, 38.948195 ], [ -77.046540, 38.948112 ], [ -77.046347, 38.948045 ], [ -77.046239, 38.947978 ], [ -77.046003, 38.947862 ], [ -77.045832, 38.947795 ], [ -77.045574, 38.947778 ], [ -77.045274, 38.947862 ], [ -77.045081, 38.948029 ], [ -77.045016, 38.948245 ], [ -77.044952, 38.948346 ], [ -77.044845, 38.948512 ], [ -77.044737, 38.948596 ], [ -77.044609, 38.948613 ], [ -77.044458, 38.948613 ], [ -77.044330, 38.948563 ], [ -77.044201, 38.948496 ], [ -77.044094, 38.948412 ], [ -77.044029, 38.948212 ], [ -77.043986, 38.948112 ], [ -77.044137, 38.947795 ], [ -77.044652, 38.947344 ], [ -77.044737, 38.947278 ], [ -77.045166, 38.946610 ], [ -77.045445, 38.946159 ], [ -77.045681, 38.945709 ], [ -77.045810, 38.945592 ], [ -77.046025, 38.945475 ], [ -77.046239, 38.945442 ], [ -77.046604, 38.945575 ], [ -77.047055, 38.945692 ], [ -77.047548, 38.945692 ], [ -77.047763, 38.945659 ], [ -77.047977, 38.945559 ], [ -77.048171, 38.945258 ], [ -77.048428, 38.944824 ], [ -77.048621, 38.944657 ], [ -77.048707, 38.944607 ], [ -77.049179, 38.944324 ], [ -77.049372, 38.944140 ], [ -77.049651, 38.943773 ], [ -77.049673, 38.943856 ], [ -77.049737, 38.943973 ], [ -77.049737, 38.944007 ], [ -77.049844, 38.944207 ], [ -77.049930, 38.944290 ], [ -77.049952, 38.944307 ], [ -77.049994, 38.944324 ], [ -77.050037, 38.944357 ], [ -77.050059, 38.944374 ], [ -77.050080, 38.944407 ], [ -77.050102, 38.944440 ], [ -77.050123, 38.944474 ], [ -77.050231, 38.944607 ], [ -77.050316, 38.944724 ], [ -77.050488, 38.944841 ], [ -77.050509, 38.944874 ], [ -77.050531, 38.944891 ], [ -77.050617, 38.944941 ], [ -77.050638, 38.944975 ], [ -77.050660, 38.944991 ], [ -77.050745, 38.945058 ], [ -77.050767, 38.945091 ], [ -77.050831, 38.945141 ], [ -77.050853, 38.945175 ], [ -77.050896, 38.945208 ], [ -77.050939, 38.945275 ], [ -77.050960, 38.945292 ], [ -77.051003, 38.945375 ], [ -77.051046, 38.945425 ], [ -77.051132, 38.945542 ], [ -77.051196, 38.945625 ], [ -77.051346, 38.945842 ], [ -77.051411, 38.945959 ], [ -77.051432, 38.945993 ], [ -77.051475, 38.946059 ], [ -77.051497, 38.946126 ], [ -77.051539, 38.946226 ], [ -77.051582, 38.946310 ], [ -77.051582, 38.946343 ], [ -77.051625, 38.946443 ], [ -77.051647, 38.946493 ], [ -77.051647, 38.946560 ], [ -77.051668, 38.946660 ], [ -77.051668, 38.946693 ], [ -77.051668, 38.946777 ], [ -77.051668, 38.946860 ], [ -77.051668, 38.946877 ], [ -77.051668, 38.946910 ], [ -77.051647, 38.947077 ], [ -77.051625, 38.947111 ], [ -77.051625, 38.947127 ], [ -77.051625, 38.947211 ], [ -77.051604, 38.947261 ], [ -77.051604, 38.947344 ], [ -77.051582, 38.947461 ], [ -77.051539, 38.947595 ], [ -77.051518, 38.947678 ], [ -77.051497, 38.947745 ], [ -77.051475, 38.947795 ], [ -77.051475, 38.947862 ], [ -77.051454, 38.947912 ], [ -77.051454, 38.947978 ], [ -77.051432, 38.947995 ], [ -77.051432, 38.948062 ], [ -77.051454, 38.948112 ], [ -77.051454, 38.948195 ], [ -77.051475, 38.948262 ], [ -77.051475, 38.948362 ], [ -77.051497, 38.948446 ], [ -77.051518, 38.948479 ], [ -77.051518, 38.948512 ], [ -77.051539, 38.948546 ], [ -77.051561, 38.948646 ], [ -77.051582, 38.948696 ], [ -77.051625, 38.948796 ], [ -77.051647, 38.948863 ], [ -77.052805, 38.948813 ], [ -77.052827, 38.948796 ], [ -77.052848, 38.948796 ], [ -77.052956, 38.948746 ], [ -77.052977, 38.948746 ], [ -77.052999, 38.948729 ], [ -77.053020, 38.948729 ], [ -77.053084, 38.948696 ], [ -77.053127, 38.948679 ], [ -77.053149, 38.948679 ], [ -77.053256, 38.948646 ], [ -77.053277, 38.948629 ], [ -77.053320, 38.948629 ], [ -77.053342, 38.948613 ], [ -77.053363, 38.948613 ], [ -77.053535, 38.948546 ], [ -77.053664, 38.948496 ], [ -77.053750, 38.948479 ], [ -77.053792, 38.948462 ], [ -77.053814, 38.948446 ], [ -77.053964, 38.948396 ], [ -77.054029, 38.948379 ], [ -77.054157, 38.948329 ], [ -77.054243, 38.948312 ], [ -77.054372, 38.948262 ], [ -77.054501, 38.948229 ], [ -77.054694, 38.948179 ], [ -77.054844, 38.948129 ], [ -77.054973, 38.948095 ], [ -77.055187, 38.948045 ], [ -77.055359, 38.948012 ], [ -77.055445, 38.947995 ], [ -77.055509, 38.947995 ], [ -77.055595, 38.947978 ], [ -77.055681, 38.947962 ], [ -77.055788, 38.947945 ], [ -77.056067, 38.947912 ], [ -77.056217, 38.947912 ], [ -77.056367, 38.947895 ], [ -77.056646, 38.947895 ], [ -77.056711, 38.947895 ], [ -77.057204, 38.947895 ], [ -77.057912, 38.947895 ], [ -77.061625, 38.947895 ], [ -77.061753, 38.947895 ], [ -77.062032, 38.947895 ], [ -77.063212, 38.947895 ], [ -77.063985, 38.947895 ], [ -77.064435, 38.947895 ], [ -77.064843, 38.947895 ], [ -77.065144, 38.947895 ], [ -77.065337, 38.947895 ], [ -77.065680, 38.947895 ], [ -77.065744, 38.948012 ], [ -77.066066, 38.948563 ], [ -77.066216, 38.948830 ], [ -77.066259, 38.948896 ], [ -77.066710, 38.949681 ], [ -77.067311, 38.950732 ], [ -77.067719, 38.951416 ], [ -77.067912, 38.951750 ], [ -77.068126, 38.952100 ], [ -77.068169, 38.952200 ], [ -77.068748, 38.953168 ], [ -77.068770, 38.953218 ], [ -77.068813, 38.953302 ], [ -77.068856, 38.953385 ], [ -77.069199, 38.953952 ], [ -77.069242, 38.954019 ], [ -77.069328, 38.954169 ], [ -77.069349, 38.954236 ], [ -77.069414, 38.954336 ], [ -77.069306, 38.954436 ], [ -77.069242, 38.954620 ], [ -77.069221, 38.954637 ], [ -77.069221, 38.954653 ], [ -77.069221, 38.954687 ], [ -77.069221, 38.954720 ], [ -77.069221, 38.954753 ], [ -77.069221, 38.954770 ], [ -77.069221, 38.954820 ], [ -77.069199, 38.954854 ], [ -77.069156, 38.955004 ], [ -77.069113, 38.955137 ], [ -77.069049, 38.955287 ], [ -77.069006, 38.955421 ], [ -77.068985, 38.955488 ], [ -77.068942, 38.955571 ], [ -77.068920, 38.955638 ], [ -77.068899, 38.955688 ], [ -77.068877, 38.955738 ], [ -77.068834, 38.955788 ], [ -77.068727, 38.955955 ], [ -77.068620, 38.956122 ], [ -77.068555, 38.956222 ], [ -77.068470, 38.956355 ], [ -77.068384, 38.956489 ], [ -77.068233, 38.956722 ], [ -77.068148, 38.956856 ], [ -77.068126, 38.956889 ], [ -77.068083, 38.956973 ], [ -77.068040, 38.957006 ], [ -77.068019, 38.957056 ], [ -77.067933, 38.957140 ], [ -77.067804, 38.957290 ], [ -77.067676, 38.957407 ], [ -77.067482, 38.957590 ], [ -77.067440, 38.957623 ], [ -77.067418, 38.957640 ], [ -77.067397, 38.957657 ], [ -77.067375, 38.957673 ], [ -77.067268, 38.957757 ], [ -77.067139, 38.957840 ], [ -77.067118, 38.957857 ], [ -77.067096, 38.957874 ], [ -77.067053, 38.957907 ], [ -77.066903, 38.958007 ], [ -77.066667, 38.958174 ], [ -77.066324, 38.958424 ], [ -77.066195, 38.958508 ], [ -77.066152, 38.958541 ], [ -77.066023, 38.958608 ], [ -77.065916, 38.958608 ], [ -77.065787, 38.958591 ], [ -77.065723, 38.958591 ], [ -77.065594, 38.958575 ], [ -77.065508, 38.958558 ], [ -77.065337, 38.958524 ], [ -77.065251, 38.958508 ], [ -77.065187, 38.958491 ], [ -77.065122, 38.958474 ], [ -77.064950, 38.958441 ], [ -77.064929, 38.958441 ], [ -77.064886, 38.958424 ], [ -77.064521, 38.958341 ], [ -77.064264, 38.958274 ], [ -77.064092, 38.958224 ], [ -77.063942, 38.958174 ], [ -77.063770, 38.958124 ], [ -77.063642, 38.958091 ], [ -77.063599, 38.958074 ], [ -77.063513, 38.958057 ], [ -77.063448, 38.958041 ], [ -77.063406, 38.958041 ], [ -77.063298, 38.958024 ], [ -77.063212, 38.958007 ], [ -77.062676, 38.957974 ], [ -77.062140, 38.957924 ], [ -77.062054, 38.957924 ], [ -77.061732, 38.957890 ], [ -77.061346, 38.957874 ], [ -77.061002, 38.957840 ], [ -77.060852, 38.957824 ], [ -77.060595, 38.957807 ], [ -77.060401, 38.957774 ], [ -77.060337, 38.957774 ], [ -77.060144, 38.957740 ], [ -77.060015, 38.957724 ], [ -77.059844, 38.957690 ], [ -77.059672, 38.957640 ], [ -77.059371, 38.957573 ], [ -77.059350, 38.957573 ], [ -77.059307, 38.957557 ], [ -77.059200, 38.957540 ], [ -77.059135, 38.957523 ], [ -77.059093, 38.957507 ], [ -77.059007, 38.957473 ], [ -77.058921, 38.957440 ], [ -77.058856, 38.957407 ], [ -77.058792, 38.957373 ], [ -77.058771, 38.957356 ], [ -77.058728, 38.957323 ], [ -77.058663, 38.957290 ], [ -77.058578, 38.957206 ], [ -77.058470, 38.957123 ], [ -77.058342, 38.957023 ], [ -77.058320, 38.957006 ], [ -77.058170, 38.956889 ], [ -77.058148, 38.956873 ], [ -77.058127, 38.956839 ], [ -77.058105, 38.956806 ], [ -77.058084, 38.956789 ], [ -77.058084, 38.956756 ], [ -77.058063, 38.956706 ], [ -77.058020, 38.956722 ], [ -77.057977, 38.956722 ], [ -77.057934, 38.956722 ], [ -77.057912, 38.956722 ], [ -77.057848, 38.956722 ], [ -77.057784, 38.956722 ], [ -77.057676, 38.956722 ], [ -77.057655, 38.956722 ], [ -77.057612, 38.956722 ], [ -77.057590, 38.956722 ], [ -77.057526, 38.956722 ], [ -77.057505, 38.956722 ], [ -77.057462, 38.956739 ], [ -77.057419, 38.956756 ], [ -77.057397, 38.956772 ], [ -77.057354, 38.956789 ], [ -77.057333, 38.956806 ], [ -77.057290, 38.956839 ], [ -77.057269, 38.956856 ], [ -77.057247, 38.956906 ], [ -77.057204, 38.956956 ], [ -77.057183, 38.956989 ], [ -77.057183, 38.957023 ], [ -77.057161, 38.957089 ], [ -77.057118, 38.957206 ], [ -77.057097, 38.957306 ], [ -77.057076, 38.957340 ], [ -77.057011, 38.957540 ], [ -77.057011, 38.957557 ], [ -77.056990, 38.957590 ], [ -77.056968, 38.957657 ], [ -77.056947, 38.957690 ], [ -77.056947, 38.957707 ], [ -77.056925, 38.957774 ], [ -77.056904, 38.957807 ], [ -77.056882, 38.957857 ], [ -77.056839, 38.957890 ], [ -77.056818, 38.957924 ], [ -77.056775, 38.957974 ], [ -77.056711, 38.958024 ], [ -77.056518, 38.958157 ], [ -77.056432, 38.958224 ], [ -77.056410, 38.958224 ], [ -77.056389, 38.958241 ], [ -77.056367, 38.958257 ], [ -77.056346, 38.958274 ], [ -77.056324, 38.958291 ], [ -77.056303, 38.958308 ], [ -77.056282, 38.958341 ], [ -77.056239, 38.958374 ], [ -77.056174, 38.958458 ], [ -77.056153, 38.958508 ], [ -77.056110, 38.958558 ], [ -77.056088, 38.958608 ], [ -77.056046, 38.958675 ], [ -77.056024, 38.958725 ], [ -77.056003, 38.958791 ], [ -77.056003, 38.958825 ], [ -77.056003, 38.958858 ], [ -77.056003, 38.958892 ], [ -77.056003, 38.958925 ], [ -77.056003, 38.958975 ], [ -77.056024, 38.959008 ], [ -77.056088, 38.959509 ], [ -77.056110, 38.959626 ], [ -77.056131, 38.959692 ], [ -77.056153, 38.959776 ], [ -77.056174, 38.959876 ], [ -77.056196, 38.959959 ], [ -77.056196, 38.960009 ], [ -77.056196, 38.960126 ], [ -77.056196, 38.960193 ], [ -77.056196, 38.960260 ], [ -77.056196, 38.960343 ], [ -77.056196, 38.960610 ], [ -77.056196, 38.960744 ], [ -77.048750, 38.960744 ], [ -77.048707, 38.960727 ], [ -77.048643, 38.960710 ], [ -77.048578, 38.960677 ], [ -77.048492, 38.960643 ], [ -77.048450, 38.960627 ], [ -77.048299, 38.960577 ], [ -77.048106, 38.960527 ], [ -77.047870, 38.960477 ], [ -77.047741, 38.960460 ], [ -77.047570, 38.960427 ], [ -77.047398, 38.960410 ], [ -77.047205, 38.960393 ], [ -77.047012, 38.960377 ], [ -77.046647, 38.960377 ], [ -77.046239, 38.960393 ], [ -77.045918, 38.960427 ], [ -77.045574, 38.960477 ], [ -77.045166, 38.960593 ], [ -77.044845, 38.960710 ], [ -77.044737, 38.960744 ], [ -77.042742, 38.960744 ], [ -77.042527, 38.960593 ], [ -77.042270, 38.960443 ], [ -77.042184, 38.960393 ], [ -77.042120, 38.960343 ], [ -77.041969, 38.960226 ], [ -77.041798, 38.960126 ], [ -77.041562, 38.960060 ], [ -77.041304, 38.960026 ], [ -77.041090, 38.960009 ], [ -77.040896, 38.959976 ], [ -77.040789, 38.959909 ], [ -77.040639, 38.959776 ], [ -77.040553, 38.959692 ], [ -77.040489, 38.959592 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001303", "GEOID": "11001001303", "NAME": "13.03", "NAMELSAD": "Census Tract 13.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 889581, "AWATER": 5274, "INTPTLAT": "+38.9446266", "INTPTLON": "-077.0589323" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.051539, 38.939684 ], [ -77.051625, 38.939717 ], [ -77.051711, 38.939767 ], [ -77.051754, 38.939801 ], [ -77.051797, 38.939834 ], [ -77.051840, 38.939884 ], [ -77.051883, 38.939918 ], [ -77.051883, 38.939934 ], [ -77.052076, 38.940118 ], [ -77.052183, 38.940235 ], [ -77.052205, 38.940251 ], [ -77.052226, 38.940285 ], [ -77.052398, 38.940452 ], [ -77.052698, 38.940702 ], [ -77.052784, 38.940769 ], [ -77.052827, 38.940802 ], [ -77.052891, 38.940836 ], [ -77.052934, 38.940836 ], [ -77.052999, 38.940852 ], [ -77.053063, 38.940869 ], [ -77.053127, 38.940886 ], [ -77.053192, 38.940886 ], [ -77.053235, 38.940886 ], [ -77.053320, 38.940869 ], [ -77.053363, 38.940869 ], [ -77.053707, 38.940836 ], [ -77.053750, 38.940836 ], [ -77.053964, 38.940802 ], [ -77.054329, 38.940752 ], [ -77.054715, 38.940685 ], [ -77.054994, 38.940652 ], [ -77.055166, 38.940669 ], [ -77.055295, 38.940669 ], [ -77.055423, 38.940685 ], [ -77.055466, 38.940702 ], [ -77.055552, 38.940719 ], [ -77.055638, 38.940735 ], [ -77.055702, 38.940752 ], [ -77.055788, 38.940786 ], [ -77.056046, 38.940869 ], [ -77.056088, 38.940902 ], [ -77.056153, 38.940919 ], [ -77.056196, 38.940919 ], [ -77.056303, 38.940936 ], [ -77.056346, 38.940936 ], [ -77.056389, 38.940952 ], [ -77.056475, 38.940952 ], [ -77.057076, 38.940952 ], [ -77.057440, 38.940952 ], [ -77.057698, 38.940969 ], [ -77.057848, 38.940969 ], [ -77.058620, 38.940969 ], [ -77.059329, 38.940969 ], [ -77.059865, 38.940969 ], [ -77.060251, 38.940969 ], [ -77.060401, 38.940969 ], [ -77.060702, 38.940969 ], [ -77.061238, 38.940969 ], [ -77.061431, 38.940969 ], [ -77.061560, 38.940969 ], [ -77.061646, 38.940969 ], [ -77.062247, 38.942021 ], [ -77.062848, 38.943039 ], [ -77.062912, 38.943155 ], [ -77.063556, 38.944257 ], [ -77.063985, 38.944991 ], [ -77.064135, 38.945242 ], [ -77.064178, 38.945342 ], [ -77.064199, 38.945375 ], [ -77.064285, 38.945475 ], [ -77.064350, 38.945625 ], [ -77.064672, 38.946159 ], [ -77.064886, 38.946527 ], [ -77.064993, 38.946727 ], [ -77.065122, 38.946944 ], [ -77.065358, 38.947328 ], [ -77.065616, 38.947795 ], [ -77.065680, 38.947895 ], [ -77.065337, 38.947895 ], [ -77.065144, 38.947895 ], [ -77.064843, 38.947895 ], [ -77.064435, 38.947895 ], [ -77.063985, 38.947895 ], [ -77.063212, 38.947895 ], [ -77.062032, 38.947895 ], [ -77.061753, 38.947895 ], [ -77.061625, 38.947895 ], [ -77.057912, 38.947895 ], [ -77.057204, 38.947895 ], [ -77.056711, 38.947895 ], [ -77.056646, 38.947895 ], [ -77.056367, 38.947895 ], [ -77.056217, 38.947912 ], [ -77.056067, 38.947912 ], [ -77.055788, 38.947945 ], [ -77.055681, 38.947962 ], [ -77.055595, 38.947978 ], [ -77.055509, 38.947995 ], [ -77.055445, 38.947995 ], [ -77.055359, 38.948012 ], [ -77.055187, 38.948045 ], [ -77.054973, 38.948095 ], [ -77.054844, 38.948129 ], [ -77.054694, 38.948179 ], [ -77.054501, 38.948229 ], [ -77.054372, 38.948262 ], [ -77.054243, 38.948312 ], [ -77.054157, 38.948329 ], [ -77.054029, 38.948379 ], [ -77.053964, 38.948396 ], [ -77.053814, 38.948446 ], [ -77.053792, 38.948462 ], [ -77.053750, 38.948479 ], [ -77.053664, 38.948496 ], [ -77.053535, 38.948546 ], [ -77.053363, 38.948613 ], [ -77.053342, 38.948613 ], [ -77.053320, 38.948629 ], [ -77.053277, 38.948629 ], [ -77.053256, 38.948646 ], [ -77.053149, 38.948679 ], [ -77.053127, 38.948679 ], [ -77.053084, 38.948696 ], [ -77.053020, 38.948729 ], [ -77.052999, 38.948729 ], [ -77.052977, 38.948746 ], [ -77.052956, 38.948746 ], [ -77.052848, 38.948796 ], [ -77.052827, 38.948796 ], [ -77.052805, 38.948813 ], [ -77.051647, 38.948863 ], [ -77.051625, 38.948796 ], [ -77.051582, 38.948696 ], [ -77.051561, 38.948646 ], [ -77.051539, 38.948546 ], [ -77.051518, 38.948512 ], [ -77.051518, 38.948479 ], [ -77.051497, 38.948446 ], [ -77.051475, 38.948362 ], [ -77.051475, 38.948262 ], [ -77.051454, 38.948195 ], [ -77.051454, 38.948112 ], [ -77.051432, 38.948062 ], [ -77.051432, 38.947995 ], [ -77.051454, 38.947978 ], [ -77.051454, 38.947912 ], [ -77.051475, 38.947862 ], [ -77.051475, 38.947795 ], [ -77.051497, 38.947745 ], [ -77.051518, 38.947678 ], [ -77.051539, 38.947595 ], [ -77.051582, 38.947461 ], [ -77.051604, 38.947344 ], [ -77.051604, 38.947261 ], [ -77.051625, 38.947211 ], [ -77.051625, 38.947127 ], [ -77.051625, 38.947111 ], [ -77.051647, 38.947077 ], [ -77.051668, 38.946910 ], [ -77.051668, 38.946877 ], [ -77.051668, 38.946860 ], [ -77.051668, 38.946777 ], [ -77.051668, 38.946693 ], [ -77.051668, 38.946660 ], [ -77.051647, 38.946560 ], [ -77.051647, 38.946493 ], [ -77.051625, 38.946443 ], [ -77.051582, 38.946343 ], [ -77.051582, 38.946310 ], [ -77.051539, 38.946226 ], [ -77.051497, 38.946126 ], [ -77.051475, 38.946059 ], [ -77.051432, 38.945993 ], [ -77.051411, 38.945959 ], [ -77.051346, 38.945842 ], [ -77.051196, 38.945625 ], [ -77.051132, 38.945542 ], [ -77.051046, 38.945425 ], [ -77.051003, 38.945375 ], [ -77.050960, 38.945292 ], [ -77.050939, 38.945275 ], [ -77.050896, 38.945208 ], [ -77.050853, 38.945175 ], [ -77.050831, 38.945141 ], [ -77.050767, 38.945091 ], [ -77.050745, 38.945058 ], [ -77.050660, 38.944991 ], [ -77.050638, 38.944975 ], [ -77.050617, 38.944941 ], [ -77.050531, 38.944891 ], [ -77.050509, 38.944874 ], [ -77.050488, 38.944841 ], [ -77.050316, 38.944724 ], [ -77.050231, 38.944607 ], [ -77.050123, 38.944474 ], [ -77.050102, 38.944440 ], [ -77.050080, 38.944407 ], [ -77.050059, 38.944374 ], [ -77.050037, 38.944357 ], [ -77.049994, 38.944324 ], [ -77.049952, 38.944307 ], [ -77.049930, 38.944290 ], [ -77.049844, 38.944207 ], [ -77.049737, 38.944007 ], [ -77.049737, 38.943973 ], [ -77.049673, 38.943856 ], [ -77.049651, 38.943773 ], [ -77.049780, 38.943689 ], [ -77.049801, 38.943606 ], [ -77.049909, 38.943539 ], [ -77.050016, 38.943256 ], [ -77.050316, 38.942788 ], [ -77.050917, 38.942171 ], [ -77.051153, 38.941720 ], [ -77.051260, 38.941537 ], [ -77.051303, 38.941386 ], [ -77.051346, 38.941236 ], [ -77.051346, 38.940986 ], [ -77.051282, 38.940769 ], [ -77.051218, 38.940535 ], [ -77.051218, 38.940502 ], [ -77.051196, 38.940452 ], [ -77.051196, 38.940402 ], [ -77.051218, 38.940335 ], [ -77.051432, 38.939968 ], [ -77.051539, 38.939667 ], [ -77.051539, 38.939684 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002600", "GEOID": "11001002600", "NAME": "26", "NAMELSAD": "Census Tract 26", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2106150, "AWATER": 60195, "INTPTLAT": "+38.9464323", "INTPTLON": "-077.0404553" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.041197, 38.960710 ], [ -77.041154, 38.960694 ], [ -77.040875, 38.960627 ], [ -77.040446, 38.960543 ], [ -77.040360, 38.960527 ], [ -77.040317, 38.960510 ], [ -77.040253, 38.960493 ], [ -77.040210, 38.960477 ], [ -77.040145, 38.960443 ], [ -77.040102, 38.960427 ], [ -77.040081, 38.960410 ], [ -77.040017, 38.960360 ], [ -77.039995, 38.960343 ], [ -77.039974, 38.960310 ], [ -77.039952, 38.960293 ], [ -77.039931, 38.960276 ], [ -77.039845, 38.960176 ], [ -77.039824, 38.960160 ], [ -77.039802, 38.960126 ], [ -77.039781, 38.960093 ], [ -77.039738, 38.960076 ], [ -77.039695, 38.960026 ], [ -77.039630, 38.960009 ], [ -77.039609, 38.959993 ], [ -77.039566, 38.959976 ], [ -77.039545, 38.959976 ], [ -77.039523, 38.959959 ], [ -77.039480, 38.959959 ], [ -77.039459, 38.959943 ], [ -77.039416, 38.959943 ], [ -77.039309, 38.959943 ], [ -77.039266, 38.959943 ], [ -77.039201, 38.959926 ], [ -77.039158, 38.959926 ], [ -77.039115, 38.959909 ], [ -77.039094, 38.959909 ], [ -77.039008, 38.959893 ], [ -77.038987, 38.959876 ], [ -77.038922, 38.959859 ], [ -77.038879, 38.959843 ], [ -77.038815, 38.959809 ], [ -77.038794, 38.959793 ], [ -77.038751, 38.959776 ], [ -77.038708, 38.959726 ], [ -77.038665, 38.959692 ], [ -77.038643, 38.959659 ], [ -77.038622, 38.959626 ], [ -77.038600, 38.959592 ], [ -77.038600, 38.959542 ], [ -77.038600, 38.959509 ], [ -77.038600, 38.959476 ], [ -77.038600, 38.959442 ], [ -77.038622, 38.959392 ], [ -77.038643, 38.959359 ], [ -77.038665, 38.959325 ], [ -77.038708, 38.959292 ], [ -77.038729, 38.959275 ], [ -77.038751, 38.959275 ], [ -77.038794, 38.959259 ], [ -77.038815, 38.959242 ], [ -77.038836, 38.959225 ], [ -77.038879, 38.959225 ], [ -77.038901, 38.959209 ], [ -77.038944, 38.959209 ], [ -77.038965, 38.959209 ], [ -77.039094, 38.959209 ], [ -77.039158, 38.959209 ], [ -77.039201, 38.959192 ], [ -77.039244, 38.959192 ], [ -77.039266, 38.959175 ], [ -77.039309, 38.959159 ], [ -77.039330, 38.959142 ], [ -77.039373, 38.959125 ], [ -77.039394, 38.959092 ], [ -77.039437, 38.959075 ], [ -77.039459, 38.959042 ], [ -77.039480, 38.959025 ], [ -77.039502, 38.958992 ], [ -77.039523, 38.958958 ], [ -77.039545, 38.958925 ], [ -77.039566, 38.958892 ], [ -77.039566, 38.958858 ], [ -77.039566, 38.958808 ], [ -77.039587, 38.958775 ], [ -77.039587, 38.958725 ], [ -77.039587, 38.958641 ], [ -77.039587, 38.958458 ], [ -77.039587, 38.958408 ], [ -77.039587, 38.958324 ], [ -77.039587, 38.958291 ], [ -77.039609, 38.958191 ], [ -77.039630, 38.958141 ], [ -77.039652, 38.958057 ], [ -77.039652, 38.958041 ], [ -77.039673, 38.958007 ], [ -77.039695, 38.957940 ], [ -77.039738, 38.957824 ], [ -77.039759, 38.957790 ], [ -77.039781, 38.957740 ], [ -77.039781, 38.957707 ], [ -77.039802, 38.957640 ], [ -77.039802, 38.957590 ], [ -77.039802, 38.957507 ], [ -77.039802, 38.957490 ], [ -77.039802, 38.957423 ], [ -77.039802, 38.957373 ], [ -77.039802, 38.957340 ], [ -77.039802, 38.957290 ], [ -77.039781, 38.957240 ], [ -77.039738, 38.957089 ], [ -77.039716, 38.957039 ], [ -77.039673, 38.956839 ], [ -77.039652, 38.956789 ], [ -77.039630, 38.956722 ], [ -77.039609, 38.956672 ], [ -77.039566, 38.956622 ], [ -77.039545, 38.956572 ], [ -77.039502, 38.956522 ], [ -77.039459, 38.956472 ], [ -77.039416, 38.956439 ], [ -77.039373, 38.956389 ], [ -77.039330, 38.956355 ], [ -77.039266, 38.956322 ], [ -77.039223, 38.956289 ], [ -77.039158, 38.956255 ], [ -77.039094, 38.956222 ], [ -77.039051, 38.956222 ], [ -77.038944, 38.956155 ], [ -77.038901, 38.956138 ], [ -77.038815, 38.956105 ], [ -77.038794, 38.956105 ], [ -77.038708, 38.956072 ], [ -77.038665, 38.956072 ], [ -77.038622, 38.956055 ], [ -77.038579, 38.956055 ], [ -77.038536, 38.956038 ], [ -77.038450, 38.956038 ], [ -77.038407, 38.956038 ], [ -77.038321, 38.956038 ], [ -77.038214, 38.956038 ], [ -77.038128, 38.956055 ], [ -77.038085, 38.956072 ], [ -77.037935, 38.956105 ], [ -77.037914, 38.956105 ], [ -77.037828, 38.956138 ], [ -77.037742, 38.956138 ], [ -77.037678, 38.956155 ], [ -77.037592, 38.956172 ], [ -77.037485, 38.956188 ], [ -77.037442, 38.956188 ], [ -77.037270, 38.956205 ], [ -77.037141, 38.956205 ], [ -77.037034, 38.956205 ], [ -77.036390, 38.956205 ], [ -77.036412, 38.954436 ], [ -77.036390, 38.953919 ], [ -77.036390, 38.953368 ], [ -77.036390, 38.952951 ], [ -77.036412, 38.952534 ], [ -77.036412, 38.951867 ], [ -77.036412, 38.950799 ], [ -77.036412, 38.950515 ], [ -77.036412, 38.949731 ], [ -77.036412, 38.948262 ], [ -77.036412, 38.947394 ], [ -77.036433, 38.947244 ], [ -77.036412, 38.946126 ], [ -77.036412, 38.945058 ], [ -77.036433, 38.943990 ], [ -77.036412, 38.942938 ], [ -77.036433, 38.941870 ], [ -77.036433, 38.940802 ], [ -77.036433, 38.939734 ], [ -77.036433, 38.939100 ], [ -77.036433, 38.938950 ], [ -77.036433, 38.938599 ], [ -77.036433, 38.938232 ], [ -77.036691, 38.938149 ], [ -77.036862, 38.938082 ], [ -77.037013, 38.938032 ], [ -77.037163, 38.937965 ], [ -77.037292, 38.937915 ], [ -77.037420, 38.937848 ], [ -77.037613, 38.937765 ], [ -77.037742, 38.937698 ], [ -77.038000, 38.937564 ], [ -77.038622, 38.937214 ], [ -77.038815, 38.937114 ], [ -77.038858, 38.937097 ], [ -77.038901, 38.937080 ], [ -77.038987, 38.937047 ], [ -77.039115, 38.936997 ], [ -77.039244, 38.936964 ], [ -77.039287, 38.936930 ], [ -77.039523, 38.936880 ], [ -77.039652, 38.936847 ], [ -77.039802, 38.936813 ], [ -77.039952, 38.936763 ], [ -77.040017, 38.936730 ], [ -77.040124, 38.936696 ], [ -77.040167, 38.936680 ], [ -77.040210, 38.936663 ], [ -77.040231, 38.936646 ], [ -77.040339, 38.936596 ], [ -77.040403, 38.936563 ], [ -77.040510, 38.936496 ], [ -77.040553, 38.936479 ], [ -77.040639, 38.936429 ], [ -77.040703, 38.936379 ], [ -77.040746, 38.936363 ], [ -77.040832, 38.936329 ], [ -77.040918, 38.936279 ], [ -77.040961, 38.936262 ], [ -77.041025, 38.936246 ], [ -77.041111, 38.936212 ], [ -77.041218, 38.936196 ], [ -77.041261, 38.936179 ], [ -77.041304, 38.936179 ], [ -77.041390, 38.936162 ], [ -77.041433, 38.936146 ], [ -77.041540, 38.936146 ], [ -77.041626, 38.936146 ], [ -77.041712, 38.936146 ], [ -77.041969, 38.936146 ], [ -77.042077, 38.936146 ], [ -77.042248, 38.936129 ], [ -77.042356, 38.936129 ], [ -77.042613, 38.936079 ], [ -77.042656, 38.936079 ], [ -77.042720, 38.936062 ], [ -77.042871, 38.936046 ], [ -77.042999, 38.936029 ], [ -77.043085, 38.936012 ], [ -77.043235, 38.935995 ], [ -77.043321, 38.935995 ], [ -77.043364, 38.935995 ], [ -77.043428, 38.935995 ], [ -77.043643, 38.935979 ], [ -77.044265, 38.935979 ], [ -77.044780, 38.935979 ], [ -77.044845, 38.935979 ], [ -77.044995, 38.935979 ], [ -77.045081, 38.935962 ], [ -77.045124, 38.935945 ], [ -77.045188, 38.935945 ], [ -77.045252, 38.935929 ], [ -77.045403, 38.935879 ], [ -77.045467, 38.935862 ], [ -77.045488, 38.935845 ], [ -77.045531, 38.935829 ], [ -77.045574, 38.935812 ], [ -77.045832, 38.935695 ], [ -77.046154, 38.935561 ], [ -77.046432, 38.935461 ], [ -77.046518, 38.935428 ], [ -77.046647, 38.935378 ], [ -77.046754, 38.935344 ], [ -77.047570, 38.935111 ], [ -77.047698, 38.935044 ], [ -77.047977, 38.934944 ], [ -77.048299, 38.934810 ], [ -77.048020, 38.935044 ], [ -77.047956, 38.935194 ], [ -77.047870, 38.935378 ], [ -77.047827, 38.935545 ], [ -77.047806, 38.935712 ], [ -77.047806, 38.935745 ], [ -77.047806, 38.935895 ], [ -77.047827, 38.936029 ], [ -77.047870, 38.936212 ], [ -77.047870, 38.936346 ], [ -77.047849, 38.936530 ], [ -77.047849, 38.936680 ], [ -77.047827, 38.936780 ], [ -77.047849, 38.936897 ], [ -77.047849, 38.936913 ], [ -77.047870, 38.936964 ], [ -77.047913, 38.936997 ], [ -77.047999, 38.937114 ], [ -77.048063, 38.937180 ], [ -77.048106, 38.937197 ], [ -77.048192, 38.937231 ], [ -77.048278, 38.937264 ], [ -77.048364, 38.937281 ], [ -77.048664, 38.937297 ], [ -77.048836, 38.937314 ], [ -77.048879, 38.937314 ], [ -77.049029, 38.937297 ], [ -77.049158, 38.937281 ], [ -77.049308, 38.937231 ], [ -77.049651, 38.937197 ], [ -77.049737, 38.937164 ], [ -77.049844, 38.937164 ], [ -77.050016, 38.937164 ], [ -77.050295, 38.937180 ], [ -77.050445, 38.937214 ], [ -77.050896, 38.937314 ], [ -77.051368, 38.937431 ], [ -77.051561, 38.937514 ], [ -77.051733, 38.937564 ], [ -77.051840, 38.937631 ], [ -77.051861, 38.937631 ], [ -77.051969, 38.937715 ], [ -77.051990, 38.937731 ], [ -77.052033, 38.937781 ], [ -77.052054, 38.937831 ], [ -77.052097, 38.937932 ], [ -77.052097, 38.937965 ], [ -77.052097, 38.937998 ], [ -77.052097, 38.938098 ], [ -77.052097, 38.938149 ], [ -77.052054, 38.938249 ], [ -77.051818, 38.938866 ], [ -77.051690, 38.939183 ], [ -77.051604, 38.939517 ], [ -77.051539, 38.939667 ], [ -77.051432, 38.939968 ], [ -77.051218, 38.940335 ], [ -77.051196, 38.940402 ], [ -77.051196, 38.940452 ], [ -77.051218, 38.940502 ], [ -77.051218, 38.940535 ], [ -77.051282, 38.940769 ], [ -77.051346, 38.940986 ], [ -77.051346, 38.941236 ], [ -77.051303, 38.941386 ], [ -77.051260, 38.941537 ], [ -77.051153, 38.941720 ], [ -77.050917, 38.942171 ], [ -77.050316, 38.942788 ], [ -77.050016, 38.943256 ], [ -77.049909, 38.943539 ], [ -77.049801, 38.943606 ], [ -77.049780, 38.943689 ], [ -77.049651, 38.943773 ], [ -77.049372, 38.944140 ], [ -77.049179, 38.944324 ], [ -77.048707, 38.944607 ], [ -77.048621, 38.944657 ], [ -77.048428, 38.944824 ], [ -77.048171, 38.945258 ], [ -77.047977, 38.945559 ], [ -77.047763, 38.945659 ], [ -77.047548, 38.945692 ], [ -77.047055, 38.945692 ], [ -77.046604, 38.945575 ], [ -77.046239, 38.945442 ], [ -77.046025, 38.945475 ], [ -77.045810, 38.945592 ], [ -77.045681, 38.945709 ], [ -77.045445, 38.946159 ], [ -77.045166, 38.946610 ], [ -77.044737, 38.947278 ], [ -77.044652, 38.947344 ], [ -77.044137, 38.947795 ], [ -77.043986, 38.948112 ], [ -77.044029, 38.948212 ], [ -77.044094, 38.948412 ], [ -77.044201, 38.948496 ], [ -77.044330, 38.948563 ], [ -77.044458, 38.948613 ], [ -77.044609, 38.948613 ], [ -77.044737, 38.948596 ], [ -77.044845, 38.948512 ], [ -77.044952, 38.948346 ], [ -77.045016, 38.948245 ], [ -77.045081, 38.948029 ], [ -77.045274, 38.947862 ], [ -77.045574, 38.947778 ], [ -77.045832, 38.947795 ], [ -77.046003, 38.947862 ], [ -77.046239, 38.947978 ], [ -77.046347, 38.948045 ], [ -77.046540, 38.948112 ], [ -77.046840, 38.948195 ], [ -77.046947, 38.948279 ], [ -77.046990, 38.948446 ], [ -77.046990, 38.948496 ], [ -77.046969, 38.948663 ], [ -77.046883, 38.948896 ], [ -77.046862, 38.948996 ], [ -77.047012, 38.949380 ], [ -77.047055, 38.949597 ], [ -77.047055, 38.949647 ], [ -77.046947, 38.949831 ], [ -77.046604, 38.950048 ], [ -77.046068, 38.950315 ], [ -77.045724, 38.950498 ], [ -77.045317, 38.950882 ], [ -77.044973, 38.951233 ], [ -77.044888, 38.951449 ], [ -77.044866, 38.951650 ], [ -77.044845, 38.951967 ], [ -77.044737, 38.952134 ], [ -77.044630, 38.952284 ], [ -77.044265, 38.952734 ], [ -77.044137, 38.952885 ], [ -77.043793, 38.953185 ], [ -77.043579, 38.953368 ], [ -77.043364, 38.953535 ], [ -77.043149, 38.953752 ], [ -77.042956, 38.953936 ], [ -77.042763, 38.954203 ], [ -77.042656, 38.954286 ], [ -77.042334, 38.954436 ], [ -77.042184, 38.954587 ], [ -77.042141, 38.954670 ], [ -77.042098, 38.954987 ], [ -77.042077, 38.955087 ], [ -77.042077, 38.955287 ], [ -77.042077, 38.955388 ], [ -77.042162, 38.955604 ], [ -77.042291, 38.955905 ], [ -77.042334, 38.956138 ], [ -77.042291, 38.956339 ], [ -77.042205, 38.956522 ], [ -77.042141, 38.956806 ], [ -77.042141, 38.957356 ], [ -77.042141, 38.957573 ], [ -77.042141, 38.957857 ], [ -77.042120, 38.957890 ], [ -77.042098, 38.957924 ], [ -77.042055, 38.957974 ], [ -77.041991, 38.958041 ], [ -77.041926, 38.958074 ], [ -77.041905, 38.958091 ], [ -77.041819, 38.958141 ], [ -77.041476, 38.958291 ], [ -77.041283, 38.958441 ], [ -77.041175, 38.958591 ], [ -77.041111, 38.958775 ], [ -77.041090, 38.958925 ], [ -77.040918, 38.959092 ], [ -77.040639, 38.959342 ], [ -77.040553, 38.959425 ], [ -77.040510, 38.959542 ], [ -77.040489, 38.959592 ], [ -77.040553, 38.959692 ], [ -77.040639, 38.959776 ], [ -77.040789, 38.959909 ], [ -77.040896, 38.959976 ], [ -77.041090, 38.960009 ], [ -77.041304, 38.960026 ], [ -77.041562, 38.960060 ], [ -77.041798, 38.960126 ], [ -77.041969, 38.960226 ], [ -77.042120, 38.960343 ], [ -77.042184, 38.960393 ], [ -77.042120, 38.960427 ], [ -77.041991, 38.960543 ], [ -77.041905, 38.960593 ], [ -77.041883, 38.960627 ], [ -77.041841, 38.960643 ], [ -77.041798, 38.960660 ], [ -77.041755, 38.960710 ], [ -77.041712, 38.960744 ], [ -77.041583, 38.960744 ], [ -77.041197, 38.960710 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001304", "GEOID": "11001001304", "NAME": "13.04", "NAMELSAD": "Census Tract 13.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 707155, "AWATER": 9432, "INTPTLAT": "+38.9367508", "INTPTLON": "-077.0554702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.048020, 38.935044 ], [ -77.048299, 38.934810 ], [ -77.048557, 38.934543 ], [ -77.048857, 38.934226 ], [ -77.048943, 38.934159 ], [ -77.049136, 38.933976 ], [ -77.049243, 38.933892 ], [ -77.049308, 38.933826 ], [ -77.049351, 38.933809 ], [ -77.049608, 38.933725 ], [ -77.049758, 38.933659 ], [ -77.049909, 38.933575 ], [ -77.050188, 38.933425 ], [ -77.050359, 38.933325 ], [ -77.050402, 38.933308 ], [ -77.050445, 38.933275 ], [ -77.050488, 38.933225 ], [ -77.050574, 38.933258 ], [ -77.050745, 38.933375 ], [ -77.050831, 38.933408 ], [ -77.051003, 38.933492 ], [ -77.051411, 38.933659 ], [ -77.051775, 38.933859 ], [ -77.052248, 38.933742 ], [ -77.052956, 38.933542 ], [ -77.054586, 38.932707 ], [ -77.054951, 38.931572 ], [ -77.054565, 38.930905 ], [ -77.054865, 38.930854 ], [ -77.055702, 38.930754 ], [ -77.055938, 38.931172 ], [ -77.056174, 38.931572 ], [ -77.056260, 38.931689 ], [ -77.056496, 38.932106 ], [ -77.056732, 38.932490 ], [ -77.056775, 38.932574 ], [ -77.056947, 38.932891 ], [ -77.057312, 38.933508 ], [ -77.057633, 38.934076 ], [ -77.057741, 38.934243 ], [ -77.057955, 38.934610 ], [ -77.058127, 38.934911 ], [ -77.058363, 38.935328 ], [ -77.058513, 38.935561 ], [ -77.058985, 38.936379 ], [ -77.059178, 38.936713 ], [ -77.059243, 38.936830 ], [ -77.059286, 38.936930 ], [ -77.059329, 38.936980 ], [ -77.059393, 38.937097 ], [ -77.059994, 38.938115 ], [ -77.060058, 38.938232 ], [ -77.060251, 38.938566 ], [ -77.060316, 38.938699 ], [ -77.060680, 38.939317 ], [ -77.060723, 38.939384 ], [ -77.060809, 38.939517 ], [ -77.061002, 38.939851 ], [ -77.061217, 38.940235 ], [ -77.061517, 38.940735 ], [ -77.061646, 38.940969 ], [ -77.061560, 38.940969 ], [ -77.061431, 38.940969 ], [ -77.061238, 38.940969 ], [ -77.060702, 38.940969 ], [ -77.060401, 38.940969 ], [ -77.060251, 38.940969 ], [ -77.059865, 38.940969 ], [ -77.059329, 38.940969 ], [ -77.058620, 38.940969 ], [ -77.057848, 38.940969 ], [ -77.057698, 38.940969 ], [ -77.057440, 38.940952 ], [ -77.057076, 38.940952 ], [ -77.056475, 38.940952 ], [ -77.056389, 38.940952 ], [ -77.056346, 38.940936 ], [ -77.056303, 38.940936 ], [ -77.056196, 38.940919 ], [ -77.056153, 38.940919 ], [ -77.056088, 38.940902 ], [ -77.056046, 38.940869 ], [ -77.055788, 38.940786 ], [ -77.055702, 38.940752 ], [ -77.055638, 38.940735 ], [ -77.055552, 38.940719 ], [ -77.055466, 38.940702 ], [ -77.055423, 38.940685 ], [ -77.055295, 38.940669 ], [ -77.055166, 38.940669 ], [ -77.054994, 38.940652 ], [ -77.054715, 38.940685 ], [ -77.054329, 38.940752 ], [ -77.053964, 38.940802 ], [ -77.053750, 38.940836 ], [ -77.053707, 38.940836 ], [ -77.053363, 38.940869 ], [ -77.053320, 38.940869 ], [ -77.053235, 38.940886 ], [ -77.053192, 38.940886 ], [ -77.053127, 38.940886 ], [ -77.053063, 38.940869 ], [ -77.052999, 38.940852 ], [ -77.052934, 38.940836 ], [ -77.052891, 38.940836 ], [ -77.052827, 38.940802 ], [ -77.052784, 38.940769 ], [ -77.052698, 38.940702 ], [ -77.052398, 38.940452 ], [ -77.052226, 38.940285 ], [ -77.052205, 38.940251 ], [ -77.052183, 38.940235 ], [ -77.052076, 38.940118 ], [ -77.051883, 38.939934 ], [ -77.051883, 38.939918 ], [ -77.051840, 38.939884 ], [ -77.051797, 38.939834 ], [ -77.051754, 38.939801 ], [ -77.051711, 38.939767 ], [ -77.051625, 38.939717 ], [ -77.051539, 38.939684 ], [ -77.051539, 38.939667 ], [ -77.051604, 38.939517 ], [ -77.051690, 38.939183 ], [ -77.051818, 38.938866 ], [ -77.052054, 38.938249 ], [ -77.052097, 38.938149 ], [ -77.052097, 38.938098 ], [ -77.052097, 38.937998 ], [ -77.052097, 38.937965 ], [ -77.052097, 38.937932 ], [ -77.052054, 38.937831 ], [ -77.052033, 38.937781 ], [ -77.051990, 38.937731 ], [ -77.051969, 38.937715 ], [ -77.051861, 38.937631 ], [ -77.051840, 38.937631 ], [ -77.051733, 38.937564 ], [ -77.051561, 38.937514 ], [ -77.051368, 38.937431 ], [ -77.050896, 38.937314 ], [ -77.050445, 38.937214 ], [ -77.050295, 38.937180 ], [ -77.050016, 38.937164 ], [ -77.049844, 38.937164 ], [ -77.049737, 38.937164 ], [ -77.049651, 38.937197 ], [ -77.049308, 38.937231 ], [ -77.049158, 38.937281 ], [ -77.049029, 38.937297 ], [ -77.048879, 38.937314 ], [ -77.048836, 38.937314 ], [ -77.048664, 38.937297 ], [ -77.048364, 38.937281 ], [ -77.048278, 38.937264 ], [ -77.048192, 38.937231 ], [ -77.048106, 38.937197 ], [ -77.048063, 38.937180 ], [ -77.047999, 38.937114 ], [ -77.047913, 38.936997 ], [ -77.047870, 38.936964 ], [ -77.047849, 38.936913 ], [ -77.047849, 38.936897 ], [ -77.047827, 38.936780 ], [ -77.047849, 38.936680 ], [ -77.047849, 38.936530 ], [ -77.047870, 38.936346 ], [ -77.047870, 38.936212 ], [ -77.047827, 38.936029 ], [ -77.047806, 38.935895 ], [ -77.047806, 38.935745 ], [ -77.047806, 38.935712 ], [ -77.047827, 38.935545 ], [ -77.047870, 38.935378 ], [ -77.047956, 38.935194 ], [ -77.048020, 38.935044 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000501", "GEOID": "11001000501", "NAME": "5.01", "NAMELSAD": "Census Tract 5.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 940249, "AWATER": 29503, "INTPTLAT": "+38.9264548", "INTPTLON": "-077.0514340" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.058320, 38.917767 ], [ -77.058363, 38.917783 ], [ -77.058492, 38.917884 ], [ -77.058792, 38.918117 ], [ -77.058878, 38.918184 ], [ -77.059071, 38.918318 ], [ -77.058985, 38.918301 ], [ -77.058921, 38.918301 ], [ -77.058878, 38.918318 ], [ -77.058728, 38.918451 ], [ -77.058535, 38.918601 ], [ -77.058363, 38.918735 ], [ -77.058020, 38.919036 ], [ -77.057955, 38.919086 ], [ -77.057891, 38.919136 ], [ -77.057805, 38.919169 ], [ -77.057655, 38.919253 ], [ -77.057440, 38.919336 ], [ -77.057290, 38.919369 ], [ -77.057161, 38.919386 ], [ -77.057033, 38.919403 ], [ -77.056754, 38.919436 ], [ -77.056625, 38.919470 ], [ -77.056561, 38.919486 ], [ -77.056539, 38.919503 ], [ -77.056518, 38.919520 ], [ -77.056518, 38.919553 ], [ -77.056518, 38.919570 ], [ -77.056518, 38.919603 ], [ -77.056603, 38.919687 ], [ -77.056625, 38.919770 ], [ -77.056646, 38.919804 ], [ -77.056732, 38.919920 ], [ -77.056797, 38.919987 ], [ -77.056861, 38.920071 ], [ -77.056904, 38.920104 ], [ -77.056947, 38.920171 ], [ -77.056947, 38.920221 ], [ -77.056947, 38.920254 ], [ -77.056925, 38.920271 ], [ -77.056904, 38.920288 ], [ -77.056882, 38.920304 ], [ -77.056839, 38.920321 ], [ -77.056711, 38.920338 ], [ -77.056668, 38.920338 ], [ -77.056582, 38.920354 ], [ -77.056496, 38.920354 ], [ -77.056432, 38.920354 ], [ -77.056389, 38.920354 ], [ -77.056367, 38.920338 ], [ -77.056303, 38.920338 ], [ -77.056217, 38.920304 ], [ -77.056110, 38.920238 ], [ -77.055960, 38.920171 ], [ -77.055895, 38.920137 ], [ -77.055852, 38.920104 ], [ -77.055809, 38.920104 ], [ -77.055767, 38.920104 ], [ -77.055745, 38.920104 ], [ -77.055681, 38.920154 ], [ -77.055595, 38.920271 ], [ -77.055445, 38.920438 ], [ -77.055380, 38.920505 ], [ -77.055295, 38.920571 ], [ -77.055166, 38.920655 ], [ -77.054994, 38.920755 ], [ -77.054865, 38.920839 ], [ -77.054758, 38.920872 ], [ -77.054715, 38.920889 ], [ -77.054522, 38.920955 ], [ -77.054243, 38.921039 ], [ -77.054179, 38.921056 ], [ -77.054093, 38.921089 ], [ -77.054071, 38.921106 ], [ -77.054050, 38.921122 ], [ -77.054029, 38.921156 ], [ -77.054029, 38.921172 ], [ -77.054050, 38.921206 ], [ -77.054093, 38.921289 ], [ -77.054200, 38.921540 ], [ -77.054307, 38.921723 ], [ -77.054350, 38.921807 ], [ -77.054393, 38.921840 ], [ -77.054479, 38.921940 ], [ -77.054586, 38.922007 ], [ -77.054651, 38.922041 ], [ -77.054887, 38.922157 ], [ -77.055101, 38.922258 ], [ -77.055337, 38.922341 ], [ -77.055466, 38.922391 ], [ -77.055573, 38.922441 ], [ -77.055659, 38.922491 ], [ -77.055724, 38.922525 ], [ -77.055745, 38.922541 ], [ -77.055788, 38.922558 ], [ -77.055831, 38.922608 ], [ -77.055895, 38.922642 ], [ -77.055938, 38.922692 ], [ -77.055981, 38.922758 ], [ -77.056003, 38.922775 ], [ -77.056003, 38.922808 ], [ -77.056024, 38.922825 ], [ -77.056046, 38.922859 ], [ -77.056067, 38.922925 ], [ -77.056067, 38.922959 ], [ -77.056088, 38.922992 ], [ -77.056088, 38.923009 ], [ -77.056088, 38.923042 ], [ -77.056088, 38.923076 ], [ -77.056088, 38.923142 ], [ -77.056067, 38.923276 ], [ -77.056582, 38.923243 ], [ -77.057118, 38.923226 ], [ -77.057505, 38.923192 ], [ -77.057719, 38.923209 ], [ -77.057655, 38.923276 ], [ -77.057633, 38.923359 ], [ -77.057633, 38.923710 ], [ -77.057633, 38.924678 ], [ -77.057633, 38.924945 ], [ -77.057633, 38.925329 ], [ -77.057633, 38.926030 ], [ -77.057633, 38.926080 ], [ -77.057633, 38.926164 ], [ -77.057526, 38.926164 ], [ -77.057097, 38.926097 ], [ -77.056947, 38.926080 ], [ -77.056882, 38.926080 ], [ -77.056539, 38.926030 ], [ -77.056432, 38.926014 ], [ -77.056346, 38.926014 ], [ -77.056303, 38.925997 ], [ -77.055852, 38.925947 ], [ -77.055316, 38.925880 ], [ -77.055230, 38.925863 ], [ -77.055123, 38.925847 ], [ -77.054780, 38.925797 ], [ -77.054372, 38.925747 ], [ -77.053921, 38.925696 ], [ -77.053664, 38.925663 ], [ -77.053514, 38.925646 ], [ -77.052805, 38.925546 ], [ -77.052677, 38.925530 ], [ -77.052977, 38.926064 ], [ -77.053277, 38.926565 ], [ -77.053363, 38.926715 ], [ -77.053535, 38.927032 ], [ -77.053707, 38.927316 ], [ -77.054114, 38.928000 ], [ -77.054157, 38.928084 ], [ -77.054329, 38.928367 ], [ -77.054715, 38.929035 ], [ -77.055080, 38.929669 ], [ -77.055552, 38.930487 ], [ -77.055702, 38.930754 ], [ -77.054865, 38.930854 ], [ -77.054565, 38.930905 ], [ -77.054951, 38.931572 ], [ -77.054586, 38.932707 ], [ -77.052956, 38.933542 ], [ -77.052248, 38.933742 ], [ -77.051775, 38.933859 ], [ -77.051411, 38.933659 ], [ -77.051003, 38.933492 ], [ -77.050831, 38.933408 ], [ -77.050745, 38.933375 ], [ -77.050574, 38.933258 ], [ -77.050488, 38.933225 ], [ -77.050767, 38.933008 ], [ -77.050853, 38.932824 ], [ -77.050745, 38.932607 ], [ -77.050316, 38.932273 ], [ -77.050188, 38.932223 ], [ -77.049737, 38.932190 ], [ -77.049479, 38.932173 ], [ -77.048857, 38.932023 ], [ -77.048385, 38.931906 ], [ -77.047784, 38.931739 ], [ -77.047377, 38.931622 ], [ -77.047248, 38.931522 ], [ -77.047119, 38.931439 ], [ -77.046969, 38.931322 ], [ -77.046797, 38.931105 ], [ -77.046368, 38.930654 ], [ -77.045746, 38.929803 ], [ -77.045360, 38.929402 ], [ -77.044952, 38.929052 ], [ -77.044673, 38.928768 ], [ -77.044523, 38.928501 ], [ -77.044501, 38.928351 ], [ -77.044523, 38.928117 ], [ -77.044566, 38.927933 ], [ -77.044587, 38.927867 ], [ -77.044673, 38.927616 ], [ -77.044694, 38.927483 ], [ -77.044694, 38.927449 ], [ -77.044673, 38.927149 ], [ -77.044780, 38.926798 ], [ -77.044909, 38.926581 ], [ -77.045531, 38.926231 ], [ -77.046154, 38.925964 ], [ -77.046304, 38.925947 ], [ -77.046604, 38.926047 ], [ -77.046733, 38.926197 ], [ -77.047055, 38.926715 ], [ -77.047677, 38.927015 ], [ -77.048256, 38.927399 ], [ -77.048943, 38.928000 ], [ -77.049115, 38.928084 ], [ -77.049329, 38.928134 ], [ -77.049501, 38.928134 ], [ -77.049673, 38.928084 ], [ -77.049801, 38.927883 ], [ -77.049866, 38.927700 ], [ -77.049437, 38.925563 ], [ -77.049222, 38.925313 ], [ -77.048922, 38.924979 ], [ -77.048814, 38.924728 ], [ -77.048728, 38.924478 ], [ -77.048621, 38.924010 ], [ -77.048600, 38.923677 ], [ -77.048557, 38.923343 ], [ -77.048514, 38.923042 ], [ -77.048535, 38.922775 ], [ -77.048578, 38.922575 ], [ -77.048686, 38.922408 ], [ -77.048943, 38.922207 ], [ -77.049308, 38.921974 ], [ -77.049329, 38.921957 ], [ -77.049544, 38.921874 ], [ -77.049737, 38.921690 ], [ -77.050059, 38.921406 ], [ -77.050166, 38.921239 ], [ -77.050252, 38.921106 ], [ -77.050338, 38.920922 ], [ -77.050359, 38.920889 ], [ -77.050402, 38.920822 ], [ -77.050488, 38.920755 ], [ -77.050552, 38.920705 ], [ -77.050617, 38.920638 ], [ -77.050660, 38.920571 ], [ -77.050788, 38.920338 ], [ -77.050917, 38.920087 ], [ -77.051003, 38.919937 ], [ -77.051067, 38.919870 ], [ -77.051110, 38.919854 ], [ -77.051218, 38.919770 ], [ -77.051346, 38.919737 ], [ -77.051625, 38.919637 ], [ -77.051840, 38.919570 ], [ -77.051947, 38.919586 ], [ -77.052119, 38.919603 ], [ -77.052226, 38.919603 ], [ -77.052376, 38.919720 ], [ -77.052548, 38.919804 ], [ -77.052763, 38.919920 ], [ -77.052848, 38.919954 ], [ -77.052891, 38.919987 ], [ -77.052999, 38.920037 ], [ -77.053020, 38.920054 ], [ -77.053106, 38.920071 ], [ -77.053256, 38.920087 ], [ -77.053363, 38.920087 ], [ -77.053471, 38.920071 ], [ -77.053578, 38.920054 ], [ -77.053685, 38.920054 ], [ -77.053857, 38.920037 ], [ -77.054071, 38.920021 ], [ -77.054243, 38.919987 ], [ -77.054501, 38.919937 ], [ -77.054565, 38.919920 ], [ -77.054651, 38.919887 ], [ -77.054715, 38.919837 ], [ -77.054844, 38.919737 ], [ -77.054908, 38.919670 ], [ -77.054930, 38.919620 ], [ -77.055016, 38.919436 ], [ -77.055080, 38.919336 ], [ -77.055123, 38.919236 ], [ -77.055144, 38.919186 ], [ -77.055187, 38.919136 ], [ -77.055316, 38.919036 ], [ -77.055466, 38.918952 ], [ -77.055595, 38.918885 ], [ -77.056046, 38.918702 ], [ -77.056174, 38.918652 ], [ -77.056324, 38.918601 ], [ -77.056582, 38.918568 ], [ -77.056861, 38.918501 ], [ -77.057011, 38.918485 ], [ -77.057097, 38.918451 ], [ -77.057247, 38.918384 ], [ -77.057483, 38.918268 ], [ -77.057698, 38.918151 ], [ -77.057869, 38.918034 ], [ -77.057955, 38.917984 ], [ -77.058256, 38.917717 ], [ -77.058320, 38.917767 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002704", "GEOID": "11001002704", "NAME": "27.04", "NAMELSAD": "Census Tract 27.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295339, "AWATER": 2427, "INTPTLAT": "+38.9345766", "INTPTLON": "-077.0427534" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.036433, 38.938232 ], [ -77.036433, 38.938048 ], [ -77.036433, 38.937915 ], [ -77.036433, 38.937731 ], [ -77.036433, 38.937431 ], [ -77.036433, 38.937281 ], [ -77.036433, 38.937064 ], [ -77.036455, 38.936930 ], [ -77.036455, 38.936797 ], [ -77.036433, 38.936730 ], [ -77.036433, 38.936379 ], [ -77.036433, 38.936079 ], [ -77.036455, 38.935395 ], [ -77.036455, 38.934961 ], [ -77.036605, 38.935027 ], [ -77.036991, 38.935178 ], [ -77.037055, 38.935194 ], [ -77.036905, 38.935445 ], [ -77.036884, 38.935461 ], [ -77.036884, 38.935478 ], [ -77.036905, 38.935495 ], [ -77.037270, 38.935628 ], [ -77.037828, 38.935862 ], [ -77.037849, 38.935862 ], [ -77.037892, 38.935862 ], [ -77.037935, 38.935862 ], [ -77.038000, 38.935862 ], [ -77.038043, 38.935845 ], [ -77.038064, 38.935728 ], [ -77.038107, 38.935428 ], [ -77.038708, 38.934510 ], [ -77.038729, 38.934460 ], [ -77.038815, 38.934393 ], [ -77.038815, 38.934326 ], [ -77.038815, 38.934176 ], [ -77.039523, 38.934176 ], [ -77.039931, 38.934176 ], [ -77.040038, 38.934176 ], [ -77.040532, 38.934159 ], [ -77.041283, 38.934159 ], [ -77.042012, 38.934159 ], [ -77.043471, 38.934176 ], [ -77.044115, 38.934176 ], [ -77.044179, 38.934176 ], [ -77.044179, 38.933809 ], [ -77.044179, 38.933291 ], [ -77.044179, 38.933008 ], [ -77.044179, 38.932741 ], [ -77.044737, 38.932941 ], [ -77.045081, 38.933074 ], [ -77.045166, 38.933108 ], [ -77.045209, 38.933125 ], [ -77.045231, 38.933125 ], [ -77.045274, 38.933141 ], [ -77.045295, 38.933141 ], [ -77.045317, 38.933158 ], [ -77.045338, 38.933158 ], [ -77.045360, 38.933175 ], [ -77.045381, 38.933191 ], [ -77.045403, 38.933208 ], [ -77.045596, 38.933125 ], [ -77.046175, 38.932874 ], [ -77.046518, 38.932741 ], [ -77.046690, 38.932691 ], [ -77.046754, 38.932657 ], [ -77.046776, 38.932641 ], [ -77.046797, 38.932624 ], [ -77.046819, 38.932607 ], [ -77.047334, 38.932590 ], [ -77.047462, 38.932590 ], [ -77.048492, 38.932590 ], [ -77.048879, 38.932590 ], [ -77.049072, 38.932624 ], [ -77.049329, 38.932691 ], [ -77.049673, 38.932824 ], [ -77.050016, 38.932974 ], [ -77.050188, 38.933058 ], [ -77.050424, 38.933191 ], [ -77.050488, 38.933225 ], [ -77.050445, 38.933275 ], [ -77.050402, 38.933308 ], [ -77.050359, 38.933325 ], [ -77.050188, 38.933425 ], [ -77.049909, 38.933575 ], [ -77.049758, 38.933659 ], [ -77.049608, 38.933725 ], [ -77.049351, 38.933809 ], [ -77.049308, 38.933826 ], [ -77.049243, 38.933892 ], [ -77.049136, 38.933976 ], [ -77.048943, 38.934159 ], [ -77.048857, 38.934226 ], [ -77.048557, 38.934543 ], [ -77.048299, 38.934810 ], [ -77.047977, 38.934944 ], [ -77.047698, 38.935044 ], [ -77.047570, 38.935111 ], [ -77.046754, 38.935344 ], [ -77.046647, 38.935378 ], [ -77.046518, 38.935428 ], [ -77.046432, 38.935461 ], [ -77.046154, 38.935561 ], [ -77.045832, 38.935695 ], [ -77.045574, 38.935812 ], [ -77.045531, 38.935829 ], [ -77.045488, 38.935845 ], [ -77.045467, 38.935862 ], [ -77.045403, 38.935879 ], [ -77.045252, 38.935929 ], [ -77.045188, 38.935945 ], [ -77.045124, 38.935945 ], [ -77.045081, 38.935962 ], [ -77.044995, 38.935979 ], [ -77.044845, 38.935979 ], [ -77.044780, 38.935979 ], [ -77.044265, 38.935979 ], [ -77.043643, 38.935979 ], [ -77.043428, 38.935995 ], [ -77.043364, 38.935995 ], [ -77.043321, 38.935995 ], [ -77.043235, 38.935995 ], [ -77.043085, 38.936012 ], [ -77.042999, 38.936029 ], [ -77.042871, 38.936046 ], [ -77.042720, 38.936062 ], [ -77.042656, 38.936079 ], [ -77.042613, 38.936079 ], [ -77.042356, 38.936129 ], [ -77.042248, 38.936129 ], [ -77.042077, 38.936146 ], [ -77.041969, 38.936146 ], [ -77.041712, 38.936146 ], [ -77.041626, 38.936146 ], [ -77.041540, 38.936146 ], [ -77.041433, 38.936146 ], [ -77.041390, 38.936162 ], [ -77.041304, 38.936179 ], [ -77.041261, 38.936179 ], [ -77.041218, 38.936196 ], [ -77.041111, 38.936212 ], [ -77.041025, 38.936246 ], [ -77.040961, 38.936262 ], [ -77.040918, 38.936279 ], [ -77.040832, 38.936329 ], [ -77.040746, 38.936363 ], [ -77.040703, 38.936379 ], [ -77.040639, 38.936429 ], [ -77.040553, 38.936479 ], [ -77.040510, 38.936496 ], [ -77.040403, 38.936563 ], [ -77.040339, 38.936596 ], [ -77.040231, 38.936646 ], [ -77.040210, 38.936663 ], [ -77.040167, 38.936680 ], [ -77.040124, 38.936696 ], [ -77.040017, 38.936730 ], [ -77.039952, 38.936763 ], [ -77.039802, 38.936813 ], [ -77.039652, 38.936847 ], [ -77.039523, 38.936880 ], [ -77.039287, 38.936930 ], [ -77.039244, 38.936964 ], [ -77.039115, 38.936997 ], [ -77.038987, 38.937047 ], [ -77.038901, 38.937080 ], [ -77.038858, 38.937097 ], [ -77.038815, 38.937114 ], [ -77.038622, 38.937214 ], [ -77.038000, 38.937564 ], [ -77.037742, 38.937698 ], [ -77.037613, 38.937765 ], [ -77.037420, 38.937848 ], [ -77.037292, 38.937915 ], [ -77.037163, 38.937965 ], [ -77.037013, 38.938032 ], [ -77.036862, 38.938082 ], [ -77.036691, 38.938149 ], [ -77.036433, 38.938232 ] ] ], [ [ [ -77.036476, 38.927149 ], [ -77.036691, 38.927115 ], [ -77.036819, 38.927082 ], [ -77.037120, 38.927015 ], [ -77.037163, 38.927015 ], [ -77.037249, 38.926999 ], [ -77.037399, 38.926999 ], [ -77.037420, 38.926982 ], [ -77.037463, 38.926982 ], [ -77.037570, 38.926948 ], [ -77.037592, 38.926965 ], [ -77.037635, 38.926982 ], [ -77.037678, 38.926999 ], [ -77.037699, 38.927015 ], [ -77.037807, 38.927049 ], [ -77.037892, 38.927082 ], [ -77.038000, 38.927099 ], [ -77.038064, 38.927115 ], [ -77.038171, 38.927132 ], [ -77.038236, 38.927149 ], [ -77.038279, 38.927149 ], [ -77.038386, 38.927165 ], [ -77.038558, 38.927165 ], [ -77.038708, 38.927182 ], [ -77.038815, 38.927182 ], [ -77.038944, 38.927182 ], [ -77.039030, 38.927182 ], [ -77.039137, 38.927182 ], [ -77.039802, 38.927182 ], [ -77.041047, 38.927182 ], [ -77.041218, 38.927182 ], [ -77.041368, 38.927182 ], [ -77.041390, 38.927182 ], [ -77.041540, 38.927182 ], [ -77.041690, 38.927199 ], [ -77.041755, 38.927199 ], [ -77.041841, 38.927216 ], [ -77.041883, 38.927232 ], [ -77.041905, 38.927232 ], [ -77.041991, 38.927266 ], [ -77.042055, 38.927299 ], [ -77.042098, 38.927299 ], [ -77.042184, 38.927349 ], [ -77.042227, 38.927366 ], [ -77.042463, 38.927499 ], [ -77.042592, 38.927549 ], [ -77.042785, 38.927683 ], [ -77.042828, 38.927716 ], [ -77.042892, 38.927750 ], [ -77.042935, 38.927783 ], [ -77.043064, 38.927867 ], [ -77.043364, 38.927967 ], [ -77.043471, 38.927983 ], [ -77.043664, 38.928000 ], [ -77.043836, 38.928017 ], [ -77.044029, 38.928050 ], [ -77.044265, 38.928084 ], [ -77.044458, 38.928100 ], [ -77.044523, 38.928117 ], [ -77.044501, 38.928351 ], [ -77.044523, 38.928501 ], [ -77.044673, 38.928768 ], [ -77.044952, 38.929052 ], [ -77.045360, 38.929402 ], [ -77.045746, 38.929803 ], [ -77.046368, 38.930654 ], [ -77.046797, 38.931105 ], [ -77.046969, 38.931322 ], [ -77.047119, 38.931439 ], [ -77.047248, 38.931522 ], [ -77.047377, 38.931622 ], [ -77.047784, 38.931739 ], [ -77.048385, 38.931906 ], [ -77.048857, 38.932023 ], [ -77.049479, 38.932173 ], [ -77.049737, 38.932190 ], [ -77.050188, 38.932223 ], [ -77.050316, 38.932273 ], [ -77.050745, 38.932607 ], [ -77.050853, 38.932824 ], [ -77.050767, 38.933008 ], [ -77.050488, 38.933225 ], [ -77.050424, 38.933191 ], [ -77.050188, 38.933058 ], [ -77.050016, 38.932974 ], [ -77.049673, 38.932824 ], [ -77.049329, 38.932691 ], [ -77.049072, 38.932624 ], [ -77.048879, 38.932590 ], [ -77.048492, 38.932590 ], [ -77.047462, 38.932590 ], [ -77.047334, 38.932590 ], [ -77.046819, 38.932607 ], [ -77.046797, 38.932624 ], [ -77.046776, 38.932641 ], [ -77.046754, 38.932657 ], [ -77.046690, 38.932691 ], [ -77.046518, 38.932741 ], [ -77.046175, 38.932874 ], [ -77.045596, 38.933125 ], [ -77.045403, 38.933208 ], [ -77.045381, 38.933191 ], [ -77.045360, 38.933175 ], [ -77.045338, 38.933158 ], [ -77.045317, 38.933158 ], [ -77.045295, 38.933141 ], [ -77.045274, 38.933141 ], [ -77.045231, 38.933125 ], [ -77.045209, 38.933125 ], [ -77.045166, 38.933108 ], [ -77.045081, 38.933074 ], [ -77.044737, 38.932941 ], [ -77.044179, 38.932741 ], [ -77.044094, 38.932691 ], [ -77.043943, 38.932624 ], [ -77.043922, 38.932607 ], [ -77.043900, 38.932590 ], [ -77.043900, 38.932574 ], [ -77.043815, 38.932557 ], [ -77.043557, 38.932474 ], [ -77.043514, 38.932440 ], [ -77.043407, 38.932407 ], [ -77.043321, 38.932373 ], [ -77.043300, 38.932373 ], [ -77.043235, 38.932357 ], [ -77.043192, 38.932340 ], [ -77.043107, 38.932340 ], [ -77.043042, 38.932340 ], [ -77.042999, 38.932340 ], [ -77.042162, 38.932323 ], [ -77.041798, 38.932340 ], [ -77.041283, 38.932323 ], [ -77.040725, 38.932323 ], [ -77.040660, 38.932340 ], [ -77.040575, 38.932340 ], [ -77.040510, 38.932357 ], [ -77.040167, 38.932424 ], [ -77.039909, 38.932474 ], [ -77.039459, 38.932557 ], [ -77.039394, 38.932574 ], [ -77.039330, 38.932574 ], [ -77.039201, 38.932574 ], [ -77.039137, 38.932574 ], [ -77.039115, 38.932574 ], [ -77.039073, 38.932574 ], [ -77.039030, 38.932574 ], [ -77.038836, 38.932524 ], [ -77.038686, 38.932507 ], [ -77.038600, 38.932474 ], [ -77.038043, 38.932257 ], [ -77.036626, 38.931706 ], [ -77.036455, 38.931656 ], [ -77.036455, 38.931556 ], [ -77.036455, 38.931472 ], [ -77.036455, 38.930587 ], [ -77.036455, 38.930537 ], [ -77.036455, 38.930454 ], [ -77.036455, 38.929986 ], [ -77.036455, 38.929853 ], [ -77.036476, 38.929235 ], [ -77.036476, 38.929169 ], [ -77.036476, 38.929102 ], [ -77.036476, 38.928684 ], [ -77.036476, 38.928584 ], [ -77.036476, 38.928000 ], [ -77.036476, 38.927232 ], [ -77.036476, 38.927149 ] ] ], [ [ [ -77.041047, 38.925196 ], [ -77.041519, 38.924878 ], [ -77.042012, 38.924545 ], [ -77.042441, 38.924244 ], [ -77.042849, 38.923977 ], [ -77.043300, 38.923677 ], [ -77.043536, 38.923510 ], [ -77.043664, 38.923426 ], [ -77.043343, 38.923243 ], [ -77.043386, 38.923243 ], [ -77.043407, 38.923243 ], [ -77.043450, 38.923243 ], [ -77.043836, 38.923243 ], [ -77.044330, 38.923243 ], [ -77.044587, 38.923243 ], [ -77.044694, 38.923243 ], [ -77.046046, 38.923243 ], [ -77.046583, 38.923243 ], [ -77.047141, 38.923243 ], [ -77.047269, 38.923243 ], [ -77.047334, 38.923243 ], [ -77.047527, 38.923259 ], [ -77.047591, 38.923276 ], [ -77.047698, 38.923276 ], [ -77.048385, 38.923326 ], [ -77.048450, 38.923343 ], [ -77.048557, 38.923343 ], [ -77.048600, 38.923677 ], [ -77.048621, 38.924010 ], [ -77.048728, 38.924478 ], [ -77.048814, 38.924728 ], [ -77.048922, 38.924979 ], [ -77.049222, 38.925313 ], [ -77.049437, 38.925563 ], [ -77.049866, 38.927700 ], [ -77.049801, 38.927883 ], [ -77.049673, 38.928084 ], [ -77.049501, 38.928134 ], [ -77.049329, 38.928134 ], [ -77.049115, 38.928084 ], [ -77.048943, 38.928000 ], [ -77.048256, 38.927399 ], [ -77.047677, 38.927015 ], [ -77.047055, 38.926715 ], [ -77.046733, 38.926197 ], [ -77.046604, 38.926047 ], [ -77.046304, 38.925947 ], [ -77.046154, 38.925964 ], [ -77.045531, 38.926231 ], [ -77.044909, 38.926581 ], [ -77.044780, 38.926798 ], [ -77.044673, 38.927149 ], [ -77.044694, 38.927449 ], [ -77.044694, 38.927483 ], [ -77.044673, 38.927616 ], [ -77.044587, 38.927867 ], [ -77.044566, 38.927933 ], [ -77.044523, 38.928117 ], [ -77.044458, 38.928100 ], [ -77.044265, 38.928084 ], [ -77.044029, 38.928050 ], [ -77.043836, 38.928017 ], [ -77.043664, 38.928000 ], [ -77.043471, 38.927983 ], [ -77.043364, 38.927967 ], [ -77.043064, 38.927867 ], [ -77.042935, 38.927783 ], [ -77.042892, 38.927750 ], [ -77.042828, 38.927716 ], [ -77.042785, 38.927683 ], [ -77.042592, 38.927549 ], [ -77.042463, 38.927499 ], [ -77.042227, 38.927366 ], [ -77.042184, 38.927349 ], [ -77.042098, 38.927299 ], [ -77.042055, 38.927299 ], [ -77.041991, 38.927266 ], [ -77.041905, 38.927232 ], [ -77.041883, 38.927232 ], [ -77.041841, 38.927216 ], [ -77.041755, 38.927199 ], [ -77.041690, 38.927199 ], [ -77.041540, 38.927182 ], [ -77.041390, 38.927182 ], [ -77.041368, 38.927182 ], [ -77.041218, 38.927182 ], [ -77.041197, 38.927065 ], [ -77.041197, 38.926965 ], [ -77.041218, 38.926865 ], [ -77.041218, 38.926832 ], [ -77.041218, 38.926815 ], [ -77.041218, 38.926782 ], [ -77.041497, 38.926264 ], [ -77.041519, 38.926181 ], [ -77.041540, 38.926147 ], [ -77.041540, 38.926064 ], [ -77.041562, 38.925813 ], [ -77.041605, 38.925463 ], [ -77.041583, 38.925463 ], [ -77.041540, 38.925446 ], [ -77.041519, 38.925446 ], [ -77.041154, 38.925262 ], [ -77.041111, 38.925246 ], [ -77.041090, 38.925229 ], [ -77.041068, 38.925212 ], [ -77.041047, 38.925196 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002703", "GEOID": "11001002703", "NAME": "27.03", "NAMELSAD": "Census Tract 27.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 163863, "AWATER": 0, "INTPTLAT": "+38.9334921", "INTPTLON": "-077.0397435" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.036455, 38.934961 ], [ -77.036455, 38.934860 ], [ -77.036455, 38.934426 ], [ -77.036455, 38.934360 ], [ -77.036455, 38.934126 ], [ -77.036455, 38.933291 ], [ -77.036455, 38.932924 ], [ -77.036455, 38.932607 ], [ -77.036455, 38.932490 ], [ -77.036455, 38.932273 ], [ -77.036455, 38.931806 ], [ -77.036455, 38.931656 ], [ -77.036626, 38.931706 ], [ -77.038043, 38.932257 ], [ -77.038600, 38.932474 ], [ -77.038686, 38.932507 ], [ -77.038836, 38.932524 ], [ -77.039030, 38.932574 ], [ -77.039073, 38.932574 ], [ -77.039115, 38.932574 ], [ -77.039137, 38.932574 ], [ -77.039201, 38.932574 ], [ -77.039330, 38.932574 ], [ -77.039394, 38.932574 ], [ -77.039459, 38.932557 ], [ -77.039909, 38.932474 ], [ -77.040167, 38.932424 ], [ -77.040510, 38.932357 ], [ -77.040575, 38.932340 ], [ -77.040660, 38.932340 ], [ -77.040725, 38.932323 ], [ -77.041283, 38.932323 ], [ -77.041798, 38.932340 ], [ -77.042162, 38.932323 ], [ -77.042999, 38.932340 ], [ -77.043042, 38.932340 ], [ -77.043107, 38.932340 ], [ -77.043192, 38.932340 ], [ -77.043235, 38.932357 ], [ -77.043300, 38.932373 ], [ -77.043321, 38.932373 ], [ -77.043407, 38.932407 ], [ -77.043514, 38.932440 ], [ -77.043557, 38.932474 ], [ -77.043815, 38.932557 ], [ -77.043900, 38.932574 ], [ -77.043900, 38.932590 ], [ -77.043922, 38.932607 ], [ -77.043943, 38.932624 ], [ -77.044094, 38.932691 ], [ -77.044179, 38.932741 ], [ -77.044179, 38.933008 ], [ -77.044179, 38.933291 ], [ -77.044179, 38.933809 ], [ -77.044179, 38.934176 ], [ -77.044115, 38.934176 ], [ -77.043471, 38.934176 ], [ -77.042012, 38.934159 ], [ -77.041283, 38.934159 ], [ -77.040532, 38.934159 ], [ -77.040038, 38.934176 ], [ -77.039931, 38.934176 ], [ -77.039523, 38.934176 ], [ -77.038815, 38.934176 ], [ -77.038815, 38.934326 ], [ -77.038815, 38.934393 ], [ -77.038729, 38.934460 ], [ -77.038708, 38.934510 ], [ -77.038107, 38.935428 ], [ -77.038064, 38.935728 ], [ -77.038043, 38.935845 ], [ -77.038000, 38.935862 ], [ -77.037935, 38.935862 ], [ -77.037892, 38.935862 ], [ -77.037849, 38.935862 ], [ -77.037828, 38.935862 ], [ -77.037270, 38.935628 ], [ -77.036905, 38.935495 ], [ -77.036884, 38.935478 ], [ -77.036884, 38.935461 ], [ -77.036905, 38.935445 ], [ -77.037055, 38.935194 ], [ -77.036991, 38.935178 ], [ -77.036605, 38.935027 ], [ -77.036455, 38.934961 ] ] ], [ [ [ -77.043664, 38.923426 ], [ -77.043536, 38.923510 ], [ -77.043300, 38.923677 ], [ -77.042849, 38.923977 ], [ -77.042441, 38.924244 ], [ -77.042012, 38.924545 ], [ -77.041519, 38.924878 ], [ -77.041047, 38.925196 ], [ -77.041068, 38.925212 ], [ -77.041090, 38.925229 ], [ -77.041111, 38.925246 ], [ -77.041154, 38.925262 ], [ -77.041519, 38.925446 ], [ -77.041540, 38.925446 ], [ -77.041583, 38.925463 ], [ -77.041605, 38.925463 ], [ -77.041562, 38.925813 ], [ -77.041540, 38.926064 ], [ -77.041540, 38.926147 ], [ -77.041519, 38.926181 ], [ -77.041497, 38.926264 ], [ -77.041218, 38.926782 ], [ -77.041218, 38.926815 ], [ -77.041218, 38.926832 ], [ -77.041218, 38.926865 ], [ -77.041197, 38.926965 ], [ -77.041197, 38.927065 ], [ -77.041218, 38.927182 ], [ -77.041047, 38.927182 ], [ -77.039802, 38.927182 ], [ -77.039137, 38.927182 ], [ -77.039030, 38.927182 ], [ -77.038944, 38.927182 ], [ -77.038815, 38.927182 ], [ -77.038708, 38.927182 ], [ -77.038558, 38.927165 ], [ -77.038386, 38.927165 ], [ -77.038279, 38.927149 ], [ -77.038236, 38.927149 ], [ -77.038171, 38.927132 ], [ -77.038064, 38.927115 ], [ -77.038000, 38.927099 ], [ -77.037892, 38.927082 ], [ -77.037807, 38.927049 ], [ -77.037699, 38.927015 ], [ -77.037678, 38.926999 ], [ -77.037635, 38.926982 ], [ -77.037592, 38.926965 ], [ -77.037570, 38.926948 ], [ -77.037463, 38.926982 ], [ -77.037420, 38.926982 ], [ -77.037399, 38.926999 ], [ -77.037249, 38.926999 ], [ -77.037163, 38.927015 ], [ -77.037120, 38.927015 ], [ -77.036819, 38.927082 ], [ -77.036691, 38.927115 ], [ -77.036476, 38.926531 ], [ -77.036583, 38.926464 ], [ -77.036841, 38.926331 ], [ -77.036927, 38.926281 ], [ -77.037957, 38.925630 ], [ -77.038364, 38.925396 ], [ -77.038450, 38.925363 ], [ -77.038643, 38.925229 ], [ -77.038815, 38.925129 ], [ -77.039137, 38.924945 ], [ -77.039459, 38.924762 ], [ -77.039652, 38.924645 ], [ -77.039931, 38.924478 ], [ -77.040145, 38.924344 ], [ -77.040339, 38.924227 ], [ -77.040403, 38.924177 ], [ -77.040961, 38.923810 ], [ -77.041347, 38.923560 ], [ -77.041411, 38.923510 ], [ -77.041540, 38.923426 ], [ -77.041819, 38.923243 ], [ -77.041862, 38.923209 ], [ -77.042098, 38.923059 ], [ -77.042334, 38.922892 ], [ -77.042677, 38.922658 ], [ -77.042720, 38.922825 ], [ -77.042742, 38.922842 ], [ -77.042742, 38.922875 ], [ -77.042763, 38.922892 ], [ -77.042785, 38.922925 ], [ -77.042806, 38.922959 ], [ -77.042828, 38.922992 ], [ -77.042871, 38.923025 ], [ -77.042892, 38.923042 ], [ -77.042913, 38.923059 ], [ -77.042999, 38.923126 ], [ -77.043021, 38.923142 ], [ -77.043107, 38.923176 ], [ -77.043149, 38.923192 ], [ -77.043171, 38.923209 ], [ -77.043214, 38.923209 ], [ -77.043257, 38.923226 ], [ -77.043321, 38.923243 ], [ -77.043343, 38.923243 ], [ -77.043664, 38.923426 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000702", "GEOID": "11001000702", "NAME": "7.02", "NAMELSAD": "Census Tract 7.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308967, "AWATER": 0, "INTPTLAT": "+38.9241271", "INTPTLON": "-077.0778930" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.073190, 38.926181 ], [ -77.073190, 38.924762 ], [ -77.073190, 38.924695 ], [ -77.073190, 38.924461 ], [ -77.073190, 38.924394 ], [ -77.073190, 38.924061 ], [ -77.073169, 38.923610 ], [ -77.073169, 38.923426 ], [ -77.073169, 38.923126 ], [ -77.073169, 38.923076 ], [ -77.073169, 38.923042 ], [ -77.073147, 38.922992 ], [ -77.073147, 38.922959 ], [ -77.073126, 38.922909 ], [ -77.073083, 38.922859 ], [ -77.072911, 38.922541 ], [ -77.073190, 38.922541 ], [ -77.073276, 38.922541 ], [ -77.074285, 38.922541 ], [ -77.074692, 38.922541 ], [ -77.076023, 38.922541 ], [ -77.076344, 38.922541 ], [ -77.077053, 38.922541 ], [ -77.077160, 38.922541 ], [ -77.077503, 38.922541 ], [ -77.077804, 38.922541 ], [ -77.077911, 38.922541 ], [ -77.078512, 38.922541 ], [ -77.078769, 38.922541 ], [ -77.078962, 38.922541 ], [ -77.079327, 38.922541 ], [ -77.079756, 38.922541 ], [ -77.079992, 38.922541 ], [ -77.080722, 38.922541 ], [ -77.080743, 38.922124 ], [ -77.080765, 38.921924 ], [ -77.080786, 38.921757 ], [ -77.080786, 38.921673 ], [ -77.080851, 38.921673 ], [ -77.080915, 38.921657 ], [ -77.081795, 38.921540 ], [ -77.081795, 38.925580 ], [ -77.081645, 38.926247 ], [ -77.081623, 38.926231 ], [ -77.081559, 38.926181 ], [ -77.081516, 38.926147 ], [ -77.081473, 38.926130 ], [ -77.081430, 38.926114 ], [ -77.081409, 38.926097 ], [ -77.081301, 38.926047 ], [ -77.080507, 38.925997 ], [ -77.079992, 38.925964 ], [ -77.079756, 38.926064 ], [ -77.079413, 38.926164 ], [ -77.079177, 38.926197 ], [ -77.078984, 38.926181 ], [ -77.078855, 38.926181 ], [ -77.078555, 38.926181 ], [ -77.078297, 38.926197 ], [ -77.077975, 38.926197 ], [ -77.077696, 38.926181 ], [ -77.077053, 38.926181 ], [ -77.077053, 38.926114 ], [ -77.077053, 38.925897 ], [ -77.077053, 38.925747 ], [ -77.075872, 38.925747 ], [ -77.074606, 38.925730 ], [ -77.074628, 38.925580 ], [ -77.073855, 38.925580 ], [ -77.073855, 38.925730 ], [ -77.073855, 38.926181 ], [ -77.073598, 38.926181 ], [ -77.073190, 38.926181 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000300", "GEOID": "11001000300", "NAME": "3", "NAMELSAD": "Census Tract 3", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1042156, "AWATER": 2305, "INTPTLAT": "+38.9179099", "INTPTLON": "-077.0748728" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.069242, 38.912675 ], [ -77.069414, 38.912658 ], [ -77.070808, 38.912624 ], [ -77.071066, 38.912608 ], [ -77.071173, 38.912608 ], [ -77.072675, 38.912591 ], [ -77.073083, 38.912591 ], [ -77.073298, 38.912591 ], [ -77.073941, 38.912574 ], [ -77.074113, 38.912591 ], [ -77.074327, 38.912591 ], [ -77.074478, 38.912591 ], [ -77.075529, 38.912624 ], [ -77.075636, 38.912624 ], [ -77.076044, 38.912624 ], [ -77.076173, 38.912641 ], [ -77.076409, 38.912641 ], [ -77.077460, 38.912675 ], [ -77.077975, 38.912675 ], [ -77.078555, 38.912691 ], [ -77.079005, 38.912675 ], [ -77.079005, 38.912741 ], [ -77.078812, 38.912741 ], [ -77.078834, 38.913109 ], [ -77.078962, 38.913443 ], [ -77.079113, 38.913743 ], [ -77.079241, 38.913860 ], [ -77.079349, 38.914044 ], [ -77.080400, 38.914845 ], [ -77.080550, 38.915029 ], [ -77.080700, 38.915363 ], [ -77.080915, 38.915997 ], [ -77.081001, 38.916214 ], [ -77.081301, 38.916631 ], [ -77.081494, 38.916899 ], [ -77.081730, 38.917232 ], [ -77.081795, 38.917366 ], [ -77.081795, 38.921540 ], [ -77.080915, 38.921657 ], [ -77.080851, 38.921673 ], [ -77.080786, 38.921673 ], [ -77.080786, 38.921757 ], [ -77.080765, 38.921924 ], [ -77.080743, 38.922124 ], [ -77.080722, 38.922541 ], [ -77.079992, 38.922541 ], [ -77.079756, 38.922541 ], [ -77.079327, 38.922541 ], [ -77.078962, 38.922541 ], [ -77.078769, 38.922541 ], [ -77.078512, 38.922541 ], [ -77.077911, 38.922541 ], [ -77.077804, 38.922541 ], [ -77.077503, 38.922541 ], [ -77.077160, 38.922541 ], [ -77.077053, 38.922541 ], [ -77.076344, 38.922541 ], [ -77.076023, 38.922541 ], [ -77.074692, 38.922541 ], [ -77.074285, 38.922541 ], [ -77.073276, 38.922541 ], [ -77.073190, 38.922541 ], [ -77.072911, 38.922541 ], [ -77.072847, 38.922441 ], [ -77.072761, 38.922308 ], [ -77.072675, 38.922174 ], [ -77.072461, 38.921824 ], [ -77.072225, 38.921406 ], [ -77.072010, 38.921072 ], [ -77.071967, 38.920989 ], [ -77.071946, 38.920939 ], [ -77.071795, 38.920705 ], [ -77.071645, 38.920471 ], [ -77.071581, 38.920371 ], [ -77.071538, 38.920271 ], [ -77.071474, 38.920187 ], [ -77.071431, 38.920137 ], [ -77.071409, 38.920104 ], [ -77.071345, 38.920021 ], [ -77.071259, 38.919937 ], [ -77.070873, 38.919486 ], [ -77.070637, 38.919202 ], [ -77.070529, 38.919069 ], [ -77.070186, 38.918668 ], [ -77.069864, 38.918284 ], [ -77.069521, 38.917900 ], [ -77.069457, 38.917817 ], [ -77.069371, 38.917717 ], [ -77.069392, 38.917700 ], [ -77.069414, 38.917667 ], [ -77.069435, 38.917650 ], [ -77.069435, 38.917616 ], [ -77.069435, 38.917583 ], [ -77.069414, 38.916915 ], [ -77.069414, 38.916598 ], [ -77.069371, 38.915863 ], [ -77.069371, 38.915630 ], [ -77.069349, 38.915463 ], [ -77.069328, 38.914895 ], [ -77.069328, 38.914561 ], [ -77.069306, 38.914311 ], [ -77.069306, 38.914144 ], [ -77.069285, 38.913960 ], [ -77.069285, 38.913660 ], [ -77.069263, 38.913376 ], [ -77.069242, 38.912775 ], [ -77.069242, 38.912758 ], [ -77.069242, 38.912675 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000201", "GEOID": "11001000201", "NAME": "2.01", "NAMELSAD": "Census Tract 2.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 505004, "AWATER": 0, "INTPTLAT": "+38.9092171", "INTPTLON": "-077.0743418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.071495, 38.905111 ], [ -77.072139, 38.905244 ], [ -77.072632, 38.905328 ], [ -77.073727, 38.905495 ], [ -77.074006, 38.905528 ], [ -77.074156, 38.905545 ], [ -77.074242, 38.905545 ], [ -77.074628, 38.905528 ], [ -77.075422, 38.905528 ], [ -77.075744, 38.905528 ], [ -77.076044, 38.905545 ], [ -77.076216, 38.905578 ], [ -77.076602, 38.905662 ], [ -77.076988, 38.905745 ], [ -77.077289, 38.905829 ], [ -77.077525, 38.905896 ], [ -77.077761, 38.905946 ], [ -77.077804, 38.905962 ], [ -77.077932, 38.905996 ], [ -77.078040, 38.906012 ], [ -77.078104, 38.906029 ], [ -77.078190, 38.906029 ], [ -77.078297, 38.906046 ], [ -77.078297, 38.906246 ], [ -77.078340, 38.906263 ], [ -77.078319, 38.906730 ], [ -77.077911, 38.906714 ], [ -77.077868, 38.908133 ], [ -77.077546, 38.908617 ], [ -77.077589, 38.909235 ], [ -77.077696, 38.909686 ], [ -77.078490, 38.910821 ], [ -77.078705, 38.911172 ], [ -77.079027, 38.911806 ], [ -77.079198, 38.911890 ], [ -77.079220, 38.911957 ], [ -77.079241, 38.912257 ], [ -77.079241, 38.912624 ], [ -77.079263, 38.912675 ], [ -77.079005, 38.912675 ], [ -77.078555, 38.912691 ], [ -77.077975, 38.912675 ], [ -77.077460, 38.912675 ], [ -77.076409, 38.912641 ], [ -77.076173, 38.912641 ], [ -77.076044, 38.912624 ], [ -77.075636, 38.912624 ], [ -77.075529, 38.912624 ], [ -77.074478, 38.912591 ], [ -77.074327, 38.912591 ], [ -77.074113, 38.912591 ], [ -77.073941, 38.912574 ], [ -77.073298, 38.912591 ], [ -77.073083, 38.912591 ], [ -77.073061, 38.911522 ], [ -77.069328, 38.911606 ], [ -77.069199, 38.911606 ], [ -77.069178, 38.911255 ], [ -77.069178, 38.910971 ], [ -77.069156, 38.910688 ], [ -77.069156, 38.910621 ], [ -77.069113, 38.909836 ], [ -77.069113, 38.909703 ], [ -77.069113, 38.909502 ], [ -77.069092, 38.909235 ], [ -77.069070, 38.908801 ], [ -77.069070, 38.908717 ], [ -77.069199, 38.908717 ], [ -77.069457, 38.908701 ], [ -77.069972, 38.908701 ], [ -77.070251, 38.908684 ], [ -77.070379, 38.908684 ], [ -77.070487, 38.908684 ], [ -77.070680, 38.908684 ], [ -77.071130, 38.908667 ], [ -77.071538, 38.908667 ], [ -77.071559, 38.908651 ], [ -77.071602, 38.908651 ], [ -77.071624, 38.908634 ], [ -77.071624, 38.908617 ], [ -77.071645, 38.908584 ], [ -77.071624, 38.908233 ], [ -77.071624, 38.908033 ], [ -77.071602, 38.907899 ], [ -77.071602, 38.907682 ], [ -77.071602, 38.907482 ], [ -77.071581, 38.906998 ], [ -77.071559, 38.906831 ], [ -77.071559, 38.906747 ], [ -77.071559, 38.906680 ], [ -77.071538, 38.906129 ], [ -77.071538, 38.905929 ], [ -77.071517, 38.905829 ], [ -77.071495, 38.905478 ], [ -77.071495, 38.905111 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000400", "GEOID": "11001000400", "NAME": "4", "NAMELSAD": "Census Tract 4", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1541239, "AWATER": 69, "INTPTLAT": "+38.9227989", "INTPTLON": "-077.0649214" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.054071, 38.921106 ], [ -77.054093, 38.921089 ], [ -77.054179, 38.921056 ], [ -77.054243, 38.921039 ], [ -77.054522, 38.920955 ], [ -77.054715, 38.920889 ], [ -77.054758, 38.920872 ], [ -77.054865, 38.920839 ], [ -77.054994, 38.920755 ], [ -77.055166, 38.920655 ], [ -77.055295, 38.920571 ], [ -77.055380, 38.920505 ], [ -77.055445, 38.920438 ], [ -77.055595, 38.920271 ], [ -77.055681, 38.920154 ], [ -77.055745, 38.920104 ], [ -77.055767, 38.920104 ], [ -77.055809, 38.920104 ], [ -77.055852, 38.920104 ], [ -77.055895, 38.920137 ], [ -77.055960, 38.920171 ], [ -77.056110, 38.920238 ], [ -77.056217, 38.920304 ], [ -77.056303, 38.920338 ], [ -77.056367, 38.920338 ], [ -77.056389, 38.920354 ], [ -77.056432, 38.920354 ], [ -77.056496, 38.920354 ], [ -77.056582, 38.920354 ], [ -77.056668, 38.920338 ], [ -77.056711, 38.920338 ], [ -77.056839, 38.920321 ], [ -77.056882, 38.920304 ], [ -77.056904, 38.920288 ], [ -77.056925, 38.920271 ], [ -77.056947, 38.920254 ], [ -77.056947, 38.920221 ], [ -77.056947, 38.920171 ], [ -77.056904, 38.920104 ], [ -77.056861, 38.920071 ], [ -77.056797, 38.919987 ], [ -77.056732, 38.919920 ], [ -77.056646, 38.919804 ], [ -77.056625, 38.919770 ], [ -77.056603, 38.919687 ], [ -77.056518, 38.919603 ], [ -77.056518, 38.919570 ], [ -77.056518, 38.919553 ], [ -77.056518, 38.919520 ], [ -77.056539, 38.919503 ], [ -77.056561, 38.919486 ], [ -77.056625, 38.919470 ], [ -77.056754, 38.919436 ], [ -77.057033, 38.919403 ], [ -77.057161, 38.919386 ], [ -77.057290, 38.919369 ], [ -77.057440, 38.919336 ], [ -77.057655, 38.919253 ], [ -77.057805, 38.919169 ], [ -77.057891, 38.919136 ], [ -77.057955, 38.919086 ], [ -77.058020, 38.919036 ], [ -77.058363, 38.918735 ], [ -77.058535, 38.918601 ], [ -77.058728, 38.918451 ], [ -77.058878, 38.918318 ], [ -77.058921, 38.918301 ], [ -77.058985, 38.918301 ], [ -77.059071, 38.918318 ], [ -77.059329, 38.918318 ], [ -77.059350, 38.918318 ], [ -77.059479, 38.918334 ], [ -77.059715, 38.918334 ], [ -77.060058, 38.918351 ], [ -77.060401, 38.918351 ], [ -77.060938, 38.918368 ], [ -77.061195, 38.918384 ], [ -77.061453, 38.918384 ], [ -77.063556, 38.918418 ], [ -77.063813, 38.918451 ], [ -77.066882, 38.918652 ], [ -77.067246, 38.918635 ], [ -77.067311, 38.918635 ], [ -77.067375, 38.917750 ], [ -77.067375, 38.917733 ], [ -77.067375, 38.917700 ], [ -77.067375, 38.917683 ], [ -77.067397, 38.917650 ], [ -77.067418, 38.917633 ], [ -77.067461, 38.917583 ], [ -77.067482, 38.917566 ], [ -77.067590, 38.917500 ], [ -77.067611, 38.917500 ], [ -77.067912, 38.917349 ], [ -77.068598, 38.917032 ], [ -77.068748, 38.916965 ], [ -77.068856, 38.917099 ], [ -77.069242, 38.917566 ], [ -77.069371, 38.917717 ], [ -77.069457, 38.917817 ], [ -77.069521, 38.917900 ], [ -77.069864, 38.918284 ], [ -77.070186, 38.918668 ], [ -77.070529, 38.919069 ], [ -77.070637, 38.919202 ], [ -77.070873, 38.919486 ], [ -77.071259, 38.919937 ], [ -77.071345, 38.920021 ], [ -77.071409, 38.920104 ], [ -77.071431, 38.920137 ], [ -77.071474, 38.920187 ], [ -77.071538, 38.920271 ], [ -77.071581, 38.920371 ], [ -77.071645, 38.920471 ], [ -77.071795, 38.920705 ], [ -77.071946, 38.920939 ], [ -77.071967, 38.920989 ], [ -77.072010, 38.921072 ], [ -77.072225, 38.921406 ], [ -77.072461, 38.921824 ], [ -77.072675, 38.922174 ], [ -77.072761, 38.922308 ], [ -77.072847, 38.922441 ], [ -77.072911, 38.922541 ], [ -77.073083, 38.922859 ], [ -77.073126, 38.922909 ], [ -77.073147, 38.922959 ], [ -77.073147, 38.922992 ], [ -77.073169, 38.923042 ], [ -77.073169, 38.923076 ], [ -77.073169, 38.923126 ], [ -77.073169, 38.923426 ], [ -77.073169, 38.923610 ], [ -77.073190, 38.924061 ], [ -77.073190, 38.924394 ], [ -77.073190, 38.924461 ], [ -77.073190, 38.924695 ], [ -77.073190, 38.924762 ], [ -77.073190, 38.926181 ], [ -77.073190, 38.926581 ], [ -77.073190, 38.927282 ], [ -77.073190, 38.927533 ], [ -77.073190, 38.927599 ], [ -77.073190, 38.927983 ], [ -77.073190, 38.928084 ], [ -77.073190, 38.928167 ], [ -77.073190, 38.928317 ], [ -77.073169, 38.928451 ], [ -77.073147, 38.928601 ], [ -77.073126, 38.928818 ], [ -77.073104, 38.929018 ], [ -77.073019, 38.929502 ], [ -77.072997, 38.929653 ], [ -77.072933, 38.930120 ], [ -77.072654, 38.931873 ], [ -77.072568, 38.931873 ], [ -77.072525, 38.931873 ], [ -77.072482, 38.931873 ], [ -77.072439, 38.931873 ], [ -77.072418, 38.931856 ], [ -77.071602, 38.931806 ], [ -77.071259, 38.931773 ], [ -77.071002, 38.931756 ], [ -77.070873, 38.931756 ], [ -77.069607, 38.931656 ], [ -77.069199, 38.931622 ], [ -77.068877, 38.931622 ], [ -77.068791, 38.931622 ], [ -77.068641, 38.931606 ], [ -77.067611, 38.931572 ], [ -77.067204, 38.931556 ], [ -77.067096, 38.931556 ], [ -77.066967, 38.931556 ], [ -77.066839, 38.931539 ], [ -77.066710, 38.931522 ], [ -77.066603, 38.931505 ], [ -77.066388, 38.931472 ], [ -77.066388, 38.930955 ], [ -77.066388, 38.930337 ], [ -77.066388, 38.930270 ], [ -77.066388, 38.930070 ], [ -77.066388, 38.929970 ], [ -77.066388, 38.929452 ], [ -77.066388, 38.929085 ], [ -77.066388, 38.929002 ], [ -77.066388, 38.928434 ], [ -77.066388, 38.928000 ], [ -77.066388, 38.927533 ], [ -77.066045, 38.927516 ], [ -77.065358, 38.927516 ], [ -77.065251, 38.927533 ], [ -77.064800, 38.927533 ], [ -77.064564, 38.927516 ], [ -77.064114, 38.927533 ], [ -77.063749, 38.927516 ], [ -77.063470, 38.927533 ], [ -77.063234, 38.927516 ], [ -77.063062, 38.927382 ], [ -77.063041, 38.927366 ], [ -77.062740, 38.927132 ], [ -77.062097, 38.926631 ], [ -77.061925, 38.926498 ], [ -77.061818, 38.926414 ], [ -77.061732, 38.926347 ], [ -77.061667, 38.926297 ], [ -77.061625, 38.926264 ], [ -77.061560, 38.926214 ], [ -77.061453, 38.926114 ], [ -77.061367, 38.926064 ], [ -77.061260, 38.925980 ], [ -77.060852, 38.925663 ], [ -77.060809, 38.925630 ], [ -77.060723, 38.925563 ], [ -77.060595, 38.925446 ], [ -77.060423, 38.925313 ], [ -77.060144, 38.925112 ], [ -77.059779, 38.924812 ], [ -77.059500, 38.924611 ], [ -77.059414, 38.924528 ], [ -77.059329, 38.924478 ], [ -77.059028, 38.924227 ], [ -77.058728, 38.923994 ], [ -77.058449, 38.923793 ], [ -77.058084, 38.923493 ], [ -77.057719, 38.923209 ], [ -77.057505, 38.923192 ], [ -77.057118, 38.923226 ], [ -77.056582, 38.923243 ], [ -77.056067, 38.923276 ], [ -77.056088, 38.923142 ], [ -77.056088, 38.923076 ], [ -77.056088, 38.923042 ], [ -77.056088, 38.923009 ], [ -77.056088, 38.922992 ], [ -77.056067, 38.922959 ], [ -77.056067, 38.922925 ], [ -77.056046, 38.922859 ], [ -77.056024, 38.922825 ], [ -77.056003, 38.922808 ], [ -77.056003, 38.922775 ], [ -77.055981, 38.922758 ], [ -77.055938, 38.922692 ], [ -77.055895, 38.922642 ], [ -77.055831, 38.922608 ], [ -77.055788, 38.922558 ], [ -77.055745, 38.922541 ], [ -77.055724, 38.922525 ], [ -77.055659, 38.922491 ], [ -77.055573, 38.922441 ], [ -77.055466, 38.922391 ], [ -77.055337, 38.922341 ], [ -77.055101, 38.922258 ], [ -77.054887, 38.922157 ], [ -77.054651, 38.922041 ], [ -77.054586, 38.922007 ], [ -77.054479, 38.921940 ], [ -77.054393, 38.921840 ], [ -77.054350, 38.921807 ], [ -77.054307, 38.921723 ], [ -77.054200, 38.921540 ], [ -77.054093, 38.921289 ], [ -77.054050, 38.921206 ], [ -77.054029, 38.921172 ], [ -77.054029, 38.921156 ], [ -77.054050, 38.921122 ], [ -77.054071, 38.921106 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000202", "GEOID": "11001000202", "NAME": "2.02", "NAMELSAD": "Census Tract 2.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 776435, "AWATER": 439661, "INTPTLAT": "+38.9063048", "INTPTLON": "-077.0696362" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.062805, 38.901070 ], [ -77.065938, 38.901120 ], [ -77.068706, 38.901020 ], [ -77.069263, 38.900585 ], [ -77.069349, 38.900585 ], [ -77.069371, 38.900602 ], [ -77.069392, 38.900602 ], [ -77.069435, 38.900619 ], [ -77.069457, 38.900619 ], [ -77.069478, 38.900635 ], [ -77.069521, 38.900652 ], [ -77.069542, 38.900652 ], [ -77.069564, 38.900669 ], [ -77.069607, 38.900686 ], [ -77.069650, 38.900702 ], [ -77.069671, 38.900719 ], [ -77.069693, 38.900736 ], [ -77.069714, 38.900736 ], [ -77.069757, 38.900752 ], [ -77.069778, 38.900769 ], [ -77.069800, 38.900786 ], [ -77.069843, 38.900802 ], [ -77.069864, 38.900802 ], [ -77.069886, 38.900819 ], [ -77.069907, 38.900836 ], [ -77.069950, 38.900853 ], [ -77.069972, 38.900869 ], [ -77.069993, 38.900869 ], [ -77.070036, 38.900886 ], [ -77.070057, 38.900886 ], [ -77.070079, 38.900903 ], [ -77.070122, 38.900919 ], [ -77.070143, 38.900936 ], [ -77.070165, 38.900936 ], [ -77.070186, 38.900953 ], [ -77.070208, 38.900953 ], [ -77.070229, 38.900969 ], [ -77.070251, 38.900969 ], [ -77.070272, 38.900986 ], [ -77.070293, 38.900986 ], [ -77.070315, 38.901003 ], [ -77.070358, 38.901036 ], [ -77.070465, 38.901103 ], [ -77.070572, 38.901170 ], [ -77.070658, 38.901187 ], [ -77.070680, 38.901187 ], [ -77.070723, 38.901187 ], [ -77.070744, 38.901187 ], [ -77.070765, 38.901187 ], [ -77.070787, 38.901170 ], [ -77.070808, 38.901170 ], [ -77.070830, 38.901153 ], [ -77.070873, 38.901153 ], [ -77.070916, 38.901153 ], [ -77.070937, 38.901136 ], [ -77.070980, 38.901136 ], [ -77.071023, 38.901136 ], [ -77.071044, 38.901136 ], [ -77.071066, 38.901136 ], [ -77.071087, 38.901136 ], [ -77.071109, 38.901136 ], [ -77.071152, 38.901136 ], [ -77.071173, 38.901136 ], [ -77.071195, 38.901136 ], [ -77.071302, 38.901136 ], [ -77.071345, 38.901136 ], [ -77.071366, 38.901136 ], [ -77.071409, 38.901136 ], [ -77.071431, 38.901136 ], [ -77.071474, 38.901136 ], [ -77.071495, 38.901136 ], [ -77.071517, 38.901136 ], [ -77.071559, 38.901120 ], [ -77.071581, 38.901120 ], [ -77.071602, 38.901120 ], [ -77.071645, 38.901120 ], [ -77.071667, 38.901103 ], [ -77.071688, 38.901103 ], [ -77.071710, 38.901103 ], [ -77.071731, 38.901086 ], [ -77.071753, 38.901086 ], [ -77.071795, 38.901086 ], [ -77.071817, 38.901070 ], [ -77.071860, 38.901070 ], [ -77.071881, 38.901070 ], [ -77.071903, 38.901070 ], [ -77.071946, 38.901070 ], [ -77.071967, 38.901070 ], [ -77.072010, 38.901070 ], [ -77.072031, 38.901070 ], [ -77.072074, 38.901070 ], [ -77.072096, 38.901070 ], [ -77.072117, 38.901070 ], [ -77.072160, 38.901070 ], [ -77.072182, 38.901070 ], [ -77.072203, 38.901070 ], [ -77.072225, 38.901070 ], [ -77.072246, 38.901070 ], [ -77.072289, 38.901070 ], [ -77.072310, 38.901070 ], [ -77.072353, 38.901070 ], [ -77.072375, 38.901070 ], [ -77.072396, 38.901070 ], [ -77.072439, 38.901070 ], [ -77.072461, 38.901070 ], [ -77.072482, 38.901070 ], [ -77.072504, 38.901053 ], [ -77.072525, 38.901053 ], [ -77.072568, 38.901053 ], [ -77.072589, 38.901053 ], [ -77.072611, 38.901053 ], [ -77.072632, 38.901053 ], [ -77.072675, 38.901053 ], [ -77.072697, 38.901053 ], [ -77.072740, 38.901070 ], [ -77.072761, 38.901070 ], [ -77.072804, 38.901070 ], [ -77.072847, 38.901070 ], [ -77.072890, 38.901070 ], [ -77.072911, 38.901086 ], [ -77.072954, 38.901086 ], [ -77.072976, 38.901086 ], [ -77.073019, 38.901086 ], [ -77.073040, 38.901086 ], [ -77.073083, 38.901103 ], [ -77.073104, 38.901103 ], [ -77.073147, 38.901103 ], [ -77.073190, 38.901103 ], [ -77.073212, 38.901103 ], [ -77.073233, 38.901103 ], [ -77.073255, 38.901120 ], [ -77.073298, 38.901120 ], [ -77.073319, 38.901120 ], [ -77.073340, 38.901120 ], [ -77.073362, 38.901120 ], [ -77.073405, 38.901120 ], [ -77.073426, 38.901136 ], [ -77.073448, 38.901136 ], [ -77.073491, 38.901153 ], [ -77.073512, 38.901153 ], [ -77.073555, 38.901170 ], [ -77.073576, 38.901170 ], [ -77.073619, 38.901187 ], [ -77.073641, 38.901187 ], [ -77.073662, 38.901187 ], [ -77.073705, 38.901203 ], [ -77.073727, 38.901203 ], [ -77.073748, 38.901220 ], [ -77.073791, 38.901237 ], [ -77.073834, 38.901237 ], [ -77.073877, 38.901253 ], [ -77.073898, 38.901253 ], [ -77.073920, 38.901270 ], [ -77.073941, 38.901270 ], [ -77.073963, 38.901287 ], [ -77.073984, 38.901287 ], [ -77.074027, 38.901303 ], [ -77.074049, 38.901303 ], [ -77.074070, 38.901320 ], [ -77.074091, 38.901320 ], [ -77.074113, 38.901320 ], [ -77.074156, 38.901337 ], [ -77.074177, 38.901337 ], [ -77.074220, 38.901337 ], [ -77.074242, 38.901354 ], [ -77.074285, 38.901354 ], [ -77.074306, 38.901370 ], [ -77.074349, 38.901370 ], [ -77.074392, 38.901387 ], [ -77.074413, 38.901387 ], [ -77.074456, 38.901404 ], [ -77.074478, 38.901404 ], [ -77.074521, 38.901420 ], [ -77.074542, 38.901420 ], [ -77.074585, 38.901420 ], [ -77.074628, 38.901437 ], [ -77.074649, 38.901437 ], [ -77.074692, 38.901437 ], [ -77.074714, 38.901454 ], [ -77.074757, 38.901454 ], [ -77.074800, 38.901454 ], [ -77.075036, 38.901521 ], [ -77.075164, 38.901554 ], [ -77.075207, 38.901571 ], [ -77.075250, 38.901571 ], [ -77.075293, 38.901587 ], [ -77.075315, 38.901587 ], [ -77.075336, 38.901604 ], [ -77.075379, 38.901604 ], [ -77.075400, 38.901621 ], [ -77.075443, 38.901621 ], [ -77.075465, 38.901637 ], [ -77.075508, 38.901637 ], [ -77.075529, 38.901654 ], [ -77.075572, 38.901671 ], [ -77.075593, 38.901671 ], [ -77.075615, 38.901688 ], [ -77.075658, 38.901688 ], [ -77.075679, 38.901704 ], [ -77.075701, 38.901704 ], [ -77.075722, 38.901721 ], [ -77.075765, 38.901721 ], [ -77.075787, 38.901738 ], [ -77.075808, 38.901754 ], [ -77.075830, 38.901754 ], [ -77.075851, 38.901771 ], [ -77.075872, 38.901788 ], [ -77.075894, 38.901788 ], [ -77.075937, 38.901804 ], [ -77.075980, 38.901804 ], [ -77.076001, 38.901804 ], [ -77.076023, 38.901804 ], [ -77.076066, 38.901804 ], [ -77.076087, 38.901804 ], [ -77.076108, 38.901821 ], [ -77.076130, 38.901821 ], [ -77.076216, 38.901855 ], [ -77.076237, 38.901855 ], [ -77.076280, 38.901871 ], [ -77.076302, 38.901871 ], [ -77.076344, 38.901888 ], [ -77.076366, 38.901888 ], [ -77.076409, 38.901905 ], [ -77.076430, 38.901905 ], [ -77.076452, 38.901921 ], [ -77.076495, 38.901938 ], [ -77.076516, 38.901938 ], [ -77.076538, 38.901955 ], [ -77.076559, 38.901955 ], [ -77.076602, 38.901955 ], [ -77.076645, 38.901955 ], [ -77.076666, 38.901955 ], [ -77.076709, 38.901971 ], [ -77.076752, 38.901971 ], [ -77.076774, 38.901988 ], [ -77.076795, 38.902005 ], [ -77.076817, 38.902021 ], [ -77.076859, 38.902038 ], [ -77.076881, 38.902055 ], [ -77.076924, 38.902055 ], [ -77.076945, 38.902072 ], [ -77.076988, 38.902088 ], [ -77.077031, 38.902105 ], [ -77.077053, 38.902105 ], [ -77.077096, 38.902122 ], [ -77.077138, 38.902122 ], [ -77.077181, 38.902138 ], [ -77.077224, 38.902138 ], [ -77.077267, 38.902155 ], [ -77.077310, 38.902155 ], [ -77.077353, 38.902155 ], [ -77.077396, 38.902155 ], [ -77.077439, 38.902155 ], [ -77.077482, 38.902172 ], [ -77.077525, 38.902172 ], [ -77.077546, 38.902172 ], [ -77.077568, 38.902188 ], [ -77.077568, 38.902222 ], [ -77.077610, 38.902239 ], [ -77.077632, 38.902255 ], [ -77.077653, 38.902255 ], [ -77.077675, 38.902255 ], [ -77.077718, 38.902255 ], [ -77.077739, 38.902239 ], [ -77.077782, 38.902239 ], [ -77.077825, 38.902239 ], [ -77.077847, 38.902255 ], [ -77.077889, 38.902255 ], [ -77.077932, 38.902255 ], [ -77.077954, 38.902255 ], [ -77.077997, 38.902272 ], [ -77.078018, 38.902272 ], [ -77.078061, 38.902289 ], [ -77.078083, 38.902289 ], [ -77.078104, 38.902305 ], [ -77.078125, 38.902322 ], [ -77.078147, 38.902339 ], [ -77.078168, 38.902339 ], [ -77.078233, 38.902372 ], [ -77.078276, 38.902372 ], [ -77.078297, 38.902372 ], [ -77.078319, 38.902372 ], [ -77.078340, 38.902355 ], [ -77.078383, 38.902355 ], [ -77.078404, 38.902339 ], [ -77.078426, 38.902339 ], [ -77.078447, 38.902339 ], [ -77.078469, 38.902339 ], [ -77.078512, 38.902322 ], [ -77.078555, 38.902322 ], [ -77.078598, 38.902322 ], [ -77.078640, 38.902322 ], [ -77.078683, 38.902322 ], [ -77.078726, 38.902305 ], [ -77.078748, 38.902305 ], [ -77.078791, 38.902305 ], [ -77.078834, 38.902305 ], [ -77.078876, 38.902289 ], [ -77.078898, 38.902305 ], [ -77.078941, 38.902305 ], [ -77.078984, 38.902305 ], [ -77.079005, 38.902322 ], [ -77.079048, 38.902322 ], [ -77.079070, 38.902339 ], [ -77.079091, 38.902339 ], [ -77.079134, 38.902355 ], [ -77.079155, 38.902389 ], [ -77.079155, 38.902422 ], [ -77.079177, 38.902439 ], [ -77.079220, 38.902456 ], [ -77.079906, 38.904877 ], [ -77.079906, 38.905077 ], [ -77.079885, 38.905194 ], [ -77.079864, 38.905411 ], [ -77.079413, 38.905628 ], [ -77.078404, 38.905779 ], [ -77.078297, 38.905779 ], [ -77.078297, 38.905862 ], [ -77.078297, 38.905929 ], [ -77.078297, 38.906046 ], [ -77.078190, 38.906029 ], [ -77.078104, 38.906029 ], [ -77.078040, 38.906012 ], [ -77.077932, 38.905996 ], [ -77.077804, 38.905962 ], [ -77.077761, 38.905946 ], [ -77.077525, 38.905896 ], [ -77.077289, 38.905829 ], [ -77.076988, 38.905745 ], [ -77.076602, 38.905662 ], [ -77.076216, 38.905578 ], [ -77.076044, 38.905545 ], [ -77.075744, 38.905528 ], [ -77.075422, 38.905528 ], [ -77.074628, 38.905528 ], [ -77.074242, 38.905545 ], [ -77.074156, 38.905545 ], [ -77.074006, 38.905528 ], [ -77.073727, 38.905495 ], [ -77.072632, 38.905328 ], [ -77.072139, 38.905244 ], [ -77.071495, 38.905111 ], [ -77.071495, 38.905478 ], [ -77.071517, 38.905829 ], [ -77.071538, 38.905929 ], [ -77.071538, 38.906129 ], [ -77.071559, 38.906680 ], [ -77.071559, 38.906747 ], [ -77.071559, 38.906831 ], [ -77.071581, 38.906998 ], [ -77.071602, 38.907482 ], [ -77.071602, 38.907682 ], [ -77.071602, 38.907899 ], [ -77.071624, 38.908033 ], [ -77.071624, 38.908233 ], [ -77.071645, 38.908584 ], [ -77.071624, 38.908617 ], [ -77.071624, 38.908634 ], [ -77.071602, 38.908651 ], [ -77.071559, 38.908651 ], [ -77.071538, 38.908667 ], [ -77.071130, 38.908667 ], [ -77.070680, 38.908684 ], [ -77.070487, 38.908684 ], [ -77.070379, 38.908684 ], [ -77.070251, 38.908684 ], [ -77.069972, 38.908701 ], [ -77.069457, 38.908701 ], [ -77.069199, 38.908717 ], [ -77.069070, 38.908717 ], [ -77.069070, 38.908801 ], [ -77.069092, 38.909235 ], [ -77.069113, 38.909502 ], [ -77.069113, 38.909703 ], [ -77.069113, 38.909836 ], [ -77.069156, 38.910621 ], [ -77.069156, 38.910688 ], [ -77.069178, 38.910971 ], [ -77.069178, 38.911255 ], [ -77.069199, 38.911606 ], [ -77.069328, 38.911606 ], [ -77.073061, 38.911522 ], [ -77.073083, 38.912591 ], [ -77.072675, 38.912591 ], [ -77.071173, 38.912608 ], [ -77.071066, 38.912608 ], [ -77.070808, 38.912624 ], [ -77.069414, 38.912658 ], [ -77.069242, 38.912675 ], [ -77.069242, 38.912758 ], [ -77.069242, 38.912775 ], [ -77.069263, 38.913376 ], [ -77.069285, 38.913660 ], [ -77.069285, 38.913960 ], [ -77.069306, 38.914144 ], [ -77.069306, 38.914311 ], [ -77.069328, 38.914561 ], [ -77.069328, 38.914895 ], [ -77.069349, 38.915463 ], [ -77.069371, 38.915630 ], [ -77.069371, 38.915863 ], [ -77.069414, 38.916598 ], [ -77.069414, 38.916915 ], [ -77.069435, 38.917583 ], [ -77.069435, 38.917616 ], [ -77.069435, 38.917650 ], [ -77.069414, 38.917667 ], [ -77.069392, 38.917700 ], [ -77.069371, 38.917717 ], [ -77.069242, 38.917566 ], [ -77.068856, 38.917099 ], [ -77.068748, 38.916965 ], [ -77.068534, 38.916698 ], [ -77.068169, 38.916231 ], [ -77.067997, 38.916030 ], [ -77.067912, 38.915914 ], [ -77.067890, 38.915880 ], [ -77.067826, 38.915797 ], [ -77.067783, 38.915763 ], [ -77.067740, 38.915697 ], [ -77.067568, 38.915363 ], [ -77.067504, 38.915246 ], [ -77.067204, 38.914695 ], [ -77.067118, 38.914544 ], [ -77.066882, 38.914077 ], [ -77.066731, 38.913827 ], [ -77.066689, 38.913726 ], [ -77.066624, 38.913610 ], [ -77.066517, 38.913409 ], [ -77.066174, 38.912758 ], [ -77.066131, 38.912675 ], [ -77.066066, 38.912541 ], [ -77.066045, 38.912524 ], [ -77.066023, 38.912474 ], [ -77.065809, 38.912090 ], [ -77.065680, 38.911823 ], [ -77.065530, 38.911539 ], [ -77.065380, 38.911255 ], [ -77.065187, 38.910921 ], [ -77.065144, 38.910805 ], [ -77.065058, 38.910654 ], [ -77.064993, 38.910554 ], [ -77.064950, 38.910454 ], [ -77.064908, 38.910354 ], [ -77.064843, 38.910270 ], [ -77.064672, 38.909936 ], [ -77.064607, 38.909819 ], [ -77.064478, 38.909586 ], [ -77.064350, 38.909318 ], [ -77.064285, 38.909185 ], [ -77.064221, 38.909068 ], [ -77.064157, 38.908951 ], [ -77.064092, 38.908834 ], [ -77.063920, 38.908517 ], [ -77.063856, 38.908400 ], [ -77.063577, 38.907866 ], [ -77.063491, 38.907716 ], [ -77.063448, 38.907599 ], [ -77.063384, 38.907515 ], [ -77.063084, 38.906947 ], [ -77.063041, 38.906831 ], [ -77.062955, 38.906697 ], [ -77.062912, 38.906597 ], [ -77.062848, 38.906463 ], [ -77.062848, 38.906413 ], [ -77.062826, 38.906363 ], [ -77.062826, 38.906129 ], [ -77.062826, 38.906029 ], [ -77.062826, 38.905812 ], [ -77.062826, 38.905645 ], [ -77.062826, 38.905612 ], [ -77.062805, 38.905361 ], [ -77.062805, 38.905177 ], [ -77.062805, 38.905044 ], [ -77.062805, 38.904877 ], [ -77.062805, 38.904793 ], [ -77.062805, 38.904710 ], [ -77.062783, 38.904526 ], [ -77.062783, 38.904309 ], [ -77.062783, 38.904176 ], [ -77.062783, 38.903975 ], [ -77.062783, 38.903842 ], [ -77.062762, 38.903608 ], [ -77.062762, 38.903407 ], [ -77.062762, 38.903391 ], [ -77.062762, 38.903224 ], [ -77.062762, 38.903057 ], [ -77.062762, 38.903040 ], [ -77.062762, 38.903007 ], [ -77.062762, 38.902873 ], [ -77.062740, 38.902606 ], [ -77.062740, 38.902573 ], [ -77.062740, 38.902522 ], [ -77.062740, 38.902305 ], [ -77.062740, 38.902105 ], [ -77.062740, 38.902072 ], [ -77.062740, 38.902038 ], [ -77.062805, 38.901070 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000102", "GEOID": "11001000102", "NAME": "1.02", "NAMELSAD": "Census Tract 1.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1706484, "AWATER": 516665, "INTPTLAT": "+38.9054220", "INTPTLON": "-077.0620045" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.055917, 38.893004 ], [ -77.056239, 38.892953 ], [ -77.056947, 38.892820 ], [ -77.057633, 38.892703 ], [ -77.058921, 38.892503 ], [ -77.059350, 38.892436 ], [ -77.059672, 38.892369 ], [ -77.059801, 38.892352 ], [ -77.059886, 38.892336 ], [ -77.060037, 38.892319 ], [ -77.060359, 38.892252 ], [ -77.060530, 38.892235 ], [ -77.060916, 38.892152 ], [ -77.061002, 38.892152 ], [ -77.061517, 38.892052 ], [ -77.061732, 38.892018 ], [ -77.062118, 38.891951 ], [ -77.062461, 38.891901 ], [ -77.062504, 38.891901 ], [ -77.062547, 38.891885 ], [ -77.063019, 38.891801 ], [ -77.063255, 38.891768 ], [ -77.063406, 38.891768 ], [ -77.063534, 38.891751 ], [ -77.063642, 38.891751 ], [ -77.063749, 38.891751 ], [ -77.063985, 38.891751 ], [ -77.064157, 38.891768 ], [ -77.064350, 38.891801 ], [ -77.064629, 38.891834 ], [ -77.064693, 38.891851 ], [ -77.064693, 38.891885 ], [ -77.064693, 38.891901 ], [ -77.064693, 38.891918 ], [ -77.064693, 38.891935 ], [ -77.064693, 38.891951 ], [ -77.064693, 38.891968 ], [ -77.064693, 38.892018 ], [ -77.064693, 38.892035 ], [ -77.064693, 38.892052 ], [ -77.064693, 38.892068 ], [ -77.064693, 38.892102 ], [ -77.064693, 38.892118 ], [ -77.064714, 38.892135 ], [ -77.064714, 38.892219 ], [ -77.064736, 38.892252 ], [ -77.064736, 38.892285 ], [ -77.064736, 38.892319 ], [ -77.064714, 38.892336 ], [ -77.064693, 38.892352 ], [ -77.064693, 38.892369 ], [ -77.064714, 38.892469 ], [ -77.064757, 38.892586 ], [ -77.064757, 38.892603 ], [ -77.064779, 38.892619 ], [ -77.064800, 38.892636 ], [ -77.064822, 38.892670 ], [ -77.064822, 38.892686 ], [ -77.064843, 38.892703 ], [ -77.064822, 38.892753 ], [ -77.064843, 38.892770 ], [ -77.064843, 38.892820 ], [ -77.064865, 38.892853 ], [ -77.064865, 38.892870 ], [ -77.064908, 38.892987 ], [ -77.064950, 38.893104 ], [ -77.064993, 38.893254 ], [ -77.065015, 38.893287 ], [ -77.065015, 38.893321 ], [ -77.065036, 38.893371 ], [ -77.065058, 38.893404 ], [ -77.065079, 38.893438 ], [ -77.065101, 38.893488 ], [ -77.065101, 38.893505 ], [ -77.065122, 38.893538 ], [ -77.065122, 38.893555 ], [ -77.065144, 38.893605 ], [ -77.065165, 38.893638 ], [ -77.065187, 38.893672 ], [ -77.065229, 38.893722 ], [ -77.065251, 38.893755 ], [ -77.065272, 38.893772 ], [ -77.065272, 38.893789 ], [ -77.065294, 38.893805 ], [ -77.065337, 38.893839 ], [ -77.065337, 38.893872 ], [ -77.065358, 38.893905 ], [ -77.065380, 38.893939 ], [ -77.065401, 38.893956 ], [ -77.065465, 38.894056 ], [ -77.065508, 38.894139 ], [ -77.065573, 38.894223 ], [ -77.065616, 38.894306 ], [ -77.065701, 38.894457 ], [ -77.065787, 38.894540 ], [ -77.065809, 38.894557 ], [ -77.065852, 38.894557 ], [ -77.065873, 38.894557 ], [ -77.065916, 38.894540 ], [ -77.066002, 38.894523 ], [ -77.065980, 38.894607 ], [ -77.065938, 38.894624 ], [ -77.065938, 38.894640 ], [ -77.065895, 38.894657 ], [ -77.065873, 38.894690 ], [ -77.065873, 38.894724 ], [ -77.065895, 38.894824 ], [ -77.065938, 38.894891 ], [ -77.066023, 38.894991 ], [ -77.066109, 38.895108 ], [ -77.066174, 38.895225 ], [ -77.066195, 38.895258 ], [ -77.066216, 38.895292 ], [ -77.066216, 38.895325 ], [ -77.066259, 38.895375 ], [ -77.066281, 38.895392 ], [ -77.066281, 38.895425 ], [ -77.066302, 38.895459 ], [ -77.066302, 38.895492 ], [ -77.066324, 38.895509 ], [ -77.066345, 38.895542 ], [ -77.066345, 38.895559 ], [ -77.066345, 38.895575 ], [ -77.066367, 38.895626 ], [ -77.066367, 38.895642 ], [ -77.066367, 38.895676 ], [ -77.066388, 38.895726 ], [ -77.066431, 38.895776 ], [ -77.066431, 38.895793 ], [ -77.066453, 38.895826 ], [ -77.066453, 38.895843 ], [ -77.066474, 38.895876 ], [ -77.066495, 38.895893 ], [ -77.066517, 38.895943 ], [ -77.066538, 38.895960 ], [ -77.066538, 38.895976 ], [ -77.066560, 38.896010 ], [ -77.066581, 38.896043 ], [ -77.066603, 38.896076 ], [ -77.066624, 38.896110 ], [ -77.066646, 38.896127 ], [ -77.066667, 38.896177 ], [ -77.066689, 38.896210 ], [ -77.066689, 38.896227 ], [ -77.066710, 38.896243 ], [ -77.066710, 38.896260 ], [ -77.066731, 38.896310 ], [ -77.066753, 38.896344 ], [ -77.066774, 38.896410 ], [ -77.066796, 38.896444 ], [ -77.066817, 38.896477 ], [ -77.066839, 38.896494 ], [ -77.066860, 38.896527 ], [ -77.066882, 38.896577 ], [ -77.066903, 38.896611 ], [ -77.066925, 38.896628 ], [ -77.066925, 38.896661 ], [ -77.066946, 38.896678 ], [ -77.066946, 38.896694 ], [ -77.066967, 38.896728 ], [ -77.066967, 38.896744 ], [ -77.066989, 38.896761 ], [ -77.066989, 38.896795 ], [ -77.067010, 38.896811 ], [ -77.067010, 38.896828 ], [ -77.067032, 38.896861 ], [ -77.067053, 38.896878 ], [ -77.067053, 38.896895 ], [ -77.067075, 38.896928 ], [ -77.067096, 38.896945 ], [ -77.067096, 38.896978 ], [ -77.067118, 38.896995 ], [ -77.067139, 38.897028 ], [ -77.067139, 38.897045 ], [ -77.067161, 38.897062 ], [ -77.067161, 38.897095 ], [ -77.067182, 38.897112 ], [ -77.067182, 38.897129 ], [ -77.067204, 38.897145 ], [ -77.067225, 38.897162 ], [ -77.067204, 38.897229 ], [ -77.067246, 38.897296 ], [ -77.067246, 38.897312 ], [ -77.067246, 38.897329 ], [ -77.067268, 38.897346 ], [ -77.067268, 38.897362 ], [ -77.067268, 38.897396 ], [ -77.067268, 38.897412 ], [ -77.067289, 38.897429 ], [ -77.067289, 38.897446 ], [ -77.067289, 38.897479 ], [ -77.067289, 38.897496 ], [ -77.067289, 38.897529 ], [ -77.067311, 38.897546 ], [ -77.067311, 38.897563 ], [ -77.067311, 38.897579 ], [ -77.067311, 38.897596 ], [ -77.067311, 38.897630 ], [ -77.067311, 38.897663 ], [ -77.067311, 38.897696 ], [ -77.067311, 38.897713 ], [ -77.067332, 38.897746 ], [ -77.067332, 38.897780 ], [ -77.067332, 38.897813 ], [ -77.067354, 38.897830 ], [ -77.067354, 38.897847 ], [ -77.067354, 38.897880 ], [ -77.067375, 38.897913 ], [ -77.067397, 38.897930 ], [ -77.067418, 38.897964 ], [ -77.067418, 38.897980 ], [ -77.067440, 38.897997 ], [ -77.067461, 38.898014 ], [ -77.067461, 38.898047 ], [ -77.067461, 38.898080 ], [ -77.067461, 38.898097 ], [ -77.067482, 38.898097 ], [ -77.067504, 38.898080 ], [ -77.067525, 38.898064 ], [ -77.067547, 38.898047 ], [ -77.067568, 38.898047 ], [ -77.067590, 38.898097 ], [ -77.067568, 38.898097 ], [ -77.067525, 38.898114 ], [ -77.067482, 38.898131 ], [ -77.067461, 38.898147 ], [ -77.067461, 38.898181 ], [ -77.067461, 38.898214 ], [ -77.067461, 38.898231 ], [ -77.067461, 38.898247 ], [ -77.067482, 38.898264 ], [ -77.067482, 38.898281 ], [ -77.067482, 38.898314 ], [ -77.067504, 38.898348 ], [ -77.067504, 38.898381 ], [ -77.067525, 38.898398 ], [ -77.067525, 38.898414 ], [ -77.067547, 38.898431 ], [ -77.067547, 38.898465 ], [ -77.067568, 38.898498 ], [ -77.067568, 38.898515 ], [ -77.067590, 38.898548 ], [ -77.067590, 38.898565 ], [ -77.067590, 38.898598 ], [ -77.067590, 38.898632 ], [ -77.067590, 38.898665 ], [ -77.067611, 38.898682 ], [ -77.067611, 38.898715 ], [ -77.067611, 38.898748 ], [ -77.067611, 38.898765 ], [ -77.067611, 38.898799 ], [ -77.067611, 38.898832 ], [ -77.067611, 38.898849 ], [ -77.067611, 38.898865 ], [ -77.067611, 38.898899 ], [ -77.067611, 38.898949 ], [ -77.067611, 38.898966 ], [ -77.067590, 38.898982 ], [ -77.067590, 38.898999 ], [ -77.067568, 38.899032 ], [ -77.067547, 38.899049 ], [ -77.067525, 38.899082 ], [ -77.067525, 38.899133 ], [ -77.067568, 38.899233 ], [ -77.067568, 38.899249 ], [ -77.067590, 38.899266 ], [ -77.067590, 38.899283 ], [ -77.067611, 38.899300 ], [ -77.067633, 38.899316 ], [ -77.067633, 38.899350 ], [ -77.067654, 38.899366 ], [ -77.067654, 38.899383 ], [ -77.067676, 38.899400 ], [ -77.067676, 38.899416 ], [ -77.067676, 38.899433 ], [ -77.067697, 38.899467 ], [ -77.067697, 38.899483 ], [ -77.067719, 38.899500 ], [ -77.067740, 38.899533 ], [ -77.067826, 38.899600 ], [ -77.067847, 38.899617 ], [ -77.067869, 38.899634 ], [ -77.067890, 38.899634 ], [ -77.067912, 38.899650 ], [ -77.067933, 38.899650 ], [ -77.067976, 38.899667 ], [ -77.067997, 38.899667 ], [ -77.068019, 38.899684 ], [ -77.068040, 38.899700 ], [ -77.068062, 38.899717 ], [ -77.068083, 38.899734 ], [ -77.068083, 38.899750 ], [ -77.068105, 38.899767 ], [ -77.068126, 38.899801 ], [ -77.068148, 38.899817 ], [ -77.068148, 38.899834 ], [ -77.068148, 38.899851 ], [ -77.068148, 38.899867 ], [ -77.068148, 38.899884 ], [ -77.068148, 38.899917 ], [ -77.068212, 38.899951 ], [ -77.068233, 38.899968 ], [ -77.068255, 38.899968 ], [ -77.068276, 38.899984 ], [ -77.068298, 38.900001 ], [ -77.068319, 38.900018 ], [ -77.068341, 38.900034 ], [ -77.068341, 38.900051 ], [ -77.068362, 38.900068 ], [ -77.068384, 38.900084 ], [ -77.068384, 38.900101 ], [ -77.068405, 38.900118 ], [ -77.068427, 38.900135 ], [ -77.068448, 38.900151 ], [ -77.068470, 38.900168 ], [ -77.068491, 38.900168 ], [ -77.068512, 38.900185 ], [ -77.068534, 38.900201 ], [ -77.068555, 38.900218 ], [ -77.068577, 38.900235 ], [ -77.068598, 38.900251 ], [ -77.068620, 38.900268 ], [ -77.068641, 38.900285 ], [ -77.068663, 38.900301 ], [ -77.068684, 38.900318 ], [ -77.068706, 38.900335 ], [ -77.068748, 38.900352 ], [ -77.068770, 38.900368 ], [ -77.068791, 38.900385 ], [ -77.068813, 38.900402 ], [ -77.068834, 38.900418 ], [ -77.068877, 38.900435 ], [ -77.068899, 38.900452 ], [ -77.068920, 38.900468 ], [ -77.068942, 38.900468 ], [ -77.068963, 38.900485 ], [ -77.069006, 38.900502 ], [ -77.069027, 38.900502 ], [ -77.069049, 38.900502 ], [ -77.069092, 38.900519 ], [ -77.069113, 38.900519 ], [ -77.069156, 38.900535 ], [ -77.069178, 38.900552 ], [ -77.069263, 38.900585 ], [ -77.068706, 38.901020 ], [ -77.065938, 38.901120 ], [ -77.062805, 38.901070 ], [ -77.062740, 38.902038 ], [ -77.062740, 38.902072 ], [ -77.062740, 38.902105 ], [ -77.062740, 38.902305 ], [ -77.062740, 38.902522 ], [ -77.062740, 38.902573 ], [ -77.062740, 38.902606 ], [ -77.062762, 38.902873 ], [ -77.062762, 38.903007 ], [ -77.062762, 38.903040 ], [ -77.062762, 38.903057 ], [ -77.062762, 38.903224 ], [ -77.062762, 38.903391 ], [ -77.062762, 38.903407 ], [ -77.062762, 38.903608 ], [ -77.062783, 38.903842 ], [ -77.062783, 38.903975 ], [ -77.062783, 38.904176 ], [ -77.062783, 38.904309 ], [ -77.062783, 38.904526 ], [ -77.062805, 38.904710 ], [ -77.062805, 38.904793 ], [ -77.062805, 38.904877 ], [ -77.062805, 38.905044 ], [ -77.062805, 38.905177 ], [ -77.062805, 38.905361 ], [ -77.062826, 38.905612 ], [ -77.062826, 38.905645 ], [ -77.062826, 38.905812 ], [ -77.062826, 38.906029 ], [ -77.062826, 38.906129 ], [ -77.062826, 38.906363 ], [ -77.062848, 38.906413 ], [ -77.062848, 38.906463 ], [ -77.062912, 38.906597 ], [ -77.062955, 38.906697 ], [ -77.063041, 38.906831 ], [ -77.063084, 38.906947 ], [ -77.063384, 38.907515 ], [ -77.063448, 38.907599 ], [ -77.063491, 38.907716 ], [ -77.063577, 38.907866 ], [ -77.063856, 38.908400 ], [ -77.063920, 38.908517 ], [ -77.064092, 38.908834 ], [ -77.064157, 38.908951 ], [ -77.064221, 38.909068 ], [ -77.064285, 38.909185 ], [ -77.064350, 38.909318 ], [ -77.064478, 38.909586 ], [ -77.064607, 38.909819 ], [ -77.064672, 38.909936 ], [ -77.064843, 38.910270 ], [ -77.064908, 38.910354 ], [ -77.064950, 38.910454 ], [ -77.064993, 38.910554 ], [ -77.065058, 38.910654 ], [ -77.065144, 38.910805 ], [ -77.065187, 38.910921 ], [ -77.065380, 38.911255 ], [ -77.065530, 38.911539 ], [ -77.065680, 38.911823 ], [ -77.065809, 38.912090 ], [ -77.066023, 38.912474 ], [ -77.066045, 38.912524 ], [ -77.066066, 38.912541 ], [ -77.066131, 38.912675 ], [ -77.066174, 38.912758 ], [ -77.066517, 38.913409 ], [ -77.066624, 38.913610 ], [ -77.066689, 38.913726 ], [ -77.066731, 38.913827 ], [ -77.066882, 38.914077 ], [ -77.067118, 38.914544 ], [ -77.067204, 38.914695 ], [ -77.067504, 38.915246 ], [ -77.067568, 38.915363 ], [ -77.067740, 38.915697 ], [ -77.067783, 38.915763 ], [ -77.067826, 38.915797 ], [ -77.067890, 38.915880 ], [ -77.067912, 38.915914 ], [ -77.067997, 38.916030 ], [ -77.068169, 38.916231 ], [ -77.068534, 38.916698 ], [ -77.068748, 38.916965 ], [ -77.068598, 38.917032 ], [ -77.067912, 38.917349 ], [ -77.067611, 38.917500 ], [ -77.067590, 38.917500 ], [ -77.067482, 38.917566 ], [ -77.067461, 38.917583 ], [ -77.067418, 38.917633 ], [ -77.067397, 38.917650 ], [ -77.067375, 38.917683 ], [ -77.067375, 38.917700 ], [ -77.067375, 38.917733 ], [ -77.067375, 38.917750 ], [ -77.067311, 38.918635 ], [ -77.067246, 38.918635 ], [ -77.066882, 38.918652 ], [ -77.063813, 38.918451 ], [ -77.063556, 38.918418 ], [ -77.061453, 38.918384 ], [ -77.061195, 38.918384 ], [ -77.060938, 38.918368 ], [ -77.060401, 38.918351 ], [ -77.060058, 38.918351 ], [ -77.059715, 38.918334 ], [ -77.059479, 38.918334 ], [ -77.059350, 38.918318 ], [ -77.059329, 38.918318 ], [ -77.059071, 38.918318 ], [ -77.058878, 38.918184 ], [ -77.058792, 38.918117 ], [ -77.058492, 38.917884 ], [ -77.058363, 38.917783 ], [ -77.058320, 38.917767 ], [ -77.058256, 38.917717 ], [ -77.058191, 38.917667 ], [ -77.058277, 38.917600 ], [ -77.058320, 38.917550 ], [ -77.058363, 38.917516 ], [ -77.058384, 38.917483 ], [ -77.058406, 38.917399 ], [ -77.058470, 38.917349 ], [ -77.058492, 38.917316 ], [ -77.058513, 38.917266 ], [ -77.058535, 38.917216 ], [ -77.058556, 38.917149 ], [ -77.058578, 38.917099 ], [ -77.058599, 38.917049 ], [ -77.058620, 38.916965 ], [ -77.058642, 38.916899 ], [ -77.058663, 38.916748 ], [ -77.058685, 38.916682 ], [ -77.058706, 38.916631 ], [ -77.058706, 38.916581 ], [ -77.058728, 38.916515 ], [ -77.058771, 38.916398 ], [ -77.058771, 38.916348 ], [ -77.058792, 38.916298 ], [ -77.058792, 38.916247 ], [ -77.058792, 38.916181 ], [ -77.058792, 38.916081 ], [ -77.058792, 38.916047 ], [ -77.058771, 38.916014 ], [ -77.058771, 38.915964 ], [ -77.058771, 38.915930 ], [ -77.058771, 38.915880 ], [ -77.058792, 38.915830 ], [ -77.058792, 38.915797 ], [ -77.058814, 38.915747 ], [ -77.058792, 38.915713 ], [ -77.058771, 38.915646 ], [ -77.058749, 38.915596 ], [ -77.058749, 38.915563 ], [ -77.058706, 38.915530 ], [ -77.058685, 38.915479 ], [ -77.058663, 38.915463 ], [ -77.058620, 38.915446 ], [ -77.058556, 38.915429 ], [ -77.058470, 38.915413 ], [ -77.058427, 38.915396 ], [ -77.058406, 38.915379 ], [ -77.058299, 38.915296 ], [ -77.058256, 38.915262 ], [ -77.058213, 38.915212 ], [ -77.058127, 38.915129 ], [ -77.058063, 38.915079 ], [ -77.058020, 38.915045 ], [ -77.057977, 38.915012 ], [ -77.057955, 38.914995 ], [ -77.057869, 38.914929 ], [ -77.057827, 38.914912 ], [ -77.057784, 38.914862 ], [ -77.057719, 38.914828 ], [ -77.057676, 38.914795 ], [ -77.057612, 38.914745 ], [ -77.057526, 38.914678 ], [ -77.057505, 38.914661 ], [ -77.057440, 38.914628 ], [ -77.057397, 38.914595 ], [ -77.057333, 38.914544 ], [ -77.057290, 38.914511 ], [ -77.057247, 38.914494 ], [ -77.057204, 38.914478 ], [ -77.057183, 38.914461 ], [ -77.057140, 38.914428 ], [ -77.057118, 38.914411 ], [ -77.057076, 38.914394 ], [ -77.057011, 38.914361 ], [ -77.056947, 38.914311 ], [ -77.056818, 38.914244 ], [ -77.056732, 38.914211 ], [ -77.056689, 38.914177 ], [ -77.056668, 38.914160 ], [ -77.056625, 38.914127 ], [ -77.056561, 38.914094 ], [ -77.056475, 38.914044 ], [ -77.056432, 38.914027 ], [ -77.056324, 38.913977 ], [ -77.056239, 38.913943 ], [ -77.056196, 38.913893 ], [ -77.056153, 38.913860 ], [ -77.056131, 38.913827 ], [ -77.056110, 38.913793 ], [ -77.056088, 38.913760 ], [ -77.056067, 38.913726 ], [ -77.056024, 38.913710 ], [ -77.055981, 38.913676 ], [ -77.055917, 38.913643 ], [ -77.055831, 38.913593 ], [ -77.055767, 38.913576 ], [ -77.055745, 38.913559 ], [ -77.055616, 38.913476 ], [ -77.055595, 38.913443 ], [ -77.055552, 38.913409 ], [ -77.055531, 38.913376 ], [ -77.055488, 38.913359 ], [ -77.055466, 38.913342 ], [ -77.055445, 38.913309 ], [ -77.055423, 38.913259 ], [ -77.055402, 38.913226 ], [ -77.055380, 38.913192 ], [ -77.055337, 38.913175 ], [ -77.055316, 38.913142 ], [ -77.055273, 38.913092 ], [ -77.055230, 38.913042 ], [ -77.055187, 38.912992 ], [ -77.055080, 38.912942 ], [ -77.054994, 38.912875 ], [ -77.054887, 38.912841 ], [ -77.054844, 38.912825 ], [ -77.054715, 38.912775 ], [ -77.054608, 38.912741 ], [ -77.054565, 38.912725 ], [ -77.054522, 38.912708 ], [ -77.054501, 38.912691 ], [ -77.054350, 38.912641 ], [ -77.054307, 38.912624 ], [ -77.054265, 38.912624 ], [ -77.054222, 38.912608 ], [ -77.054114, 38.912574 ], [ -77.054050, 38.912558 ], [ -77.053964, 38.912524 ], [ -77.053814, 38.912491 ], [ -77.053771, 38.912474 ], [ -77.053685, 38.912441 ], [ -77.053642, 38.912424 ], [ -77.053492, 38.912391 ], [ -77.053406, 38.912357 ], [ -77.053256, 38.912307 ], [ -77.053127, 38.912257 ], [ -77.053084, 38.912257 ], [ -77.053041, 38.912240 ], [ -77.052999, 38.912224 ], [ -77.052956, 38.912207 ], [ -77.052934, 38.912190 ], [ -77.052848, 38.912157 ], [ -77.052805, 38.912140 ], [ -77.052763, 38.912124 ], [ -77.052720, 38.912090 ], [ -77.052677, 38.912073 ], [ -77.052526, 38.911990 ], [ -77.052484, 38.911973 ], [ -77.052462, 38.911940 ], [ -77.052355, 38.911856 ], [ -77.052269, 38.911790 ], [ -77.052226, 38.911756 ], [ -77.052205, 38.911723 ], [ -77.052097, 38.911639 ], [ -77.052054, 38.911623 ], [ -77.052033, 38.911606 ], [ -77.052011, 38.911573 ], [ -77.051990, 38.911556 ], [ -77.051947, 38.911539 ], [ -77.051840, 38.911456 ], [ -77.051797, 38.911439 ], [ -77.051754, 38.911406 ], [ -77.051711, 38.911372 ], [ -77.051668, 38.911356 ], [ -77.051604, 38.911272 ], [ -77.051518, 38.911205 ], [ -77.051454, 38.911138 ], [ -77.051411, 38.911088 ], [ -77.051325, 38.911022 ], [ -77.051303, 38.910971 ], [ -77.051260, 38.910938 ], [ -77.051239, 38.910905 ], [ -77.051196, 38.910855 ], [ -77.051153, 38.910805 ], [ -77.051196, 38.910771 ], [ -77.051260, 38.910754 ], [ -77.051346, 38.910721 ], [ -77.051411, 38.910704 ], [ -77.051497, 38.910671 ], [ -77.051733, 38.910621 ], [ -77.051775, 38.910621 ], [ -77.051840, 38.910621 ], [ -77.052033, 38.910604 ], [ -77.052569, 38.910604 ], [ -77.052977, 38.910604 ], [ -77.053363, 38.910587 ], [ -77.054222, 38.910587 ], [ -77.054586, 38.910571 ], [ -77.054822, 38.910571 ], [ -77.054951, 38.910571 ], [ -77.055230, 38.910571 ], [ -77.056003, 38.910554 ], [ -77.056324, 38.910554 ], [ -77.056646, 38.910554 ], [ -77.057011, 38.910554 ], [ -77.057140, 38.910537 ], [ -77.057140, 38.910437 ], [ -77.057118, 38.910120 ], [ -77.057118, 38.909903 ], [ -77.057118, 38.909602 ], [ -77.057097, 38.909335 ], [ -77.057097, 38.909068 ], [ -77.057097, 38.908834 ], [ -77.057097, 38.908601 ], [ -77.057097, 38.908517 ], [ -77.057076, 38.908200 ], [ -77.057054, 38.907899 ], [ -77.057076, 38.907766 ], [ -77.057076, 38.907682 ], [ -77.057054, 38.907549 ], [ -77.057076, 38.907348 ], [ -77.057054, 38.907098 ], [ -77.057054, 38.906864 ], [ -77.057054, 38.906313 ], [ -77.057033, 38.906079 ], [ -77.057033, 38.905879 ], [ -77.057033, 38.905612 ], [ -77.057011, 38.905411 ], [ -77.057011, 38.905328 ], [ -77.057011, 38.905228 ], [ -77.056904, 38.905228 ], [ -77.056754, 38.905244 ], [ -77.056496, 38.905244 ], [ -77.056067, 38.905261 ], [ -77.055917, 38.905244 ], [ -77.055788, 38.905244 ], [ -77.055724, 38.905244 ], [ -77.055488, 38.905244 ], [ -77.055423, 38.905244 ], [ -77.055595, 38.905011 ], [ -77.055702, 38.904827 ], [ -77.055852, 38.904677 ], [ -77.055938, 38.904543 ], [ -77.056196, 38.904209 ], [ -77.056389, 38.903992 ], [ -77.056453, 38.903908 ], [ -77.056518, 38.903892 ], [ -77.056561, 38.903825 ], [ -77.056646, 38.903775 ], [ -77.056711, 38.903725 ], [ -77.056775, 38.903658 ], [ -77.056818, 38.903641 ], [ -77.056839, 38.903608 ], [ -77.057269, 38.903107 ], [ -77.057376, 38.902957 ], [ -77.057548, 38.902756 ], [ -77.057612, 38.902639 ], [ -77.057655, 38.902539 ], [ -77.057741, 38.902489 ], [ -77.057805, 38.902406 ], [ -77.057848, 38.902339 ], [ -77.057891, 38.902272 ], [ -77.057977, 38.902322 ], [ -77.057998, 38.902289 ], [ -77.058020, 38.902222 ], [ -77.058063, 38.902188 ], [ -77.058127, 38.902122 ], [ -77.058213, 38.902021 ], [ -77.058256, 38.901971 ], [ -77.058256, 38.901955 ], [ -77.058299, 38.901905 ], [ -77.058342, 38.901838 ], [ -77.058363, 38.901804 ], [ -77.058363, 38.901788 ], [ -77.058406, 38.901754 ], [ -77.058406, 38.901721 ], [ -77.058470, 38.901621 ], [ -77.058492, 38.901571 ], [ -77.058513, 38.901554 ], [ -77.058535, 38.901504 ], [ -77.058556, 38.901470 ], [ -77.058556, 38.901437 ], [ -77.058578, 38.901420 ], [ -77.058578, 38.901387 ], [ -77.058578, 38.901354 ], [ -77.058599, 38.901337 ], [ -77.058599, 38.901287 ], [ -77.058599, 38.901253 ], [ -77.058578, 38.901220 ], [ -77.058578, 38.901203 ], [ -77.058556, 38.901187 ], [ -77.058578, 38.901153 ], [ -77.058535, 38.901036 ], [ -77.058427, 38.900936 ], [ -77.058406, 38.900903 ], [ -77.058342, 38.900886 ], [ -77.058277, 38.900819 ], [ -77.058234, 38.900786 ], [ -77.058170, 38.900736 ], [ -77.058127, 38.900702 ], [ -77.058084, 38.900686 ], [ -77.058041, 38.900652 ], [ -77.057998, 38.900619 ], [ -77.057912, 38.900569 ], [ -77.057869, 38.900535 ], [ -77.057827, 38.900519 ], [ -77.057762, 38.900468 ], [ -77.057741, 38.900452 ], [ -77.057719, 38.900435 ], [ -77.057698, 38.900418 ], [ -77.057655, 38.900368 ], [ -77.057633, 38.900368 ], [ -77.057612, 38.900335 ], [ -77.057569, 38.900318 ], [ -77.057526, 38.900285 ], [ -77.057505, 38.900235 ], [ -77.057440, 38.900185 ], [ -77.057440, 38.900168 ], [ -77.057419, 38.900151 ], [ -77.057397, 38.900135 ], [ -77.057376, 38.900101 ], [ -77.057376, 38.900068 ], [ -77.057376, 38.900018 ], [ -77.057376, 38.900001 ], [ -77.057376, 38.899934 ], [ -77.057397, 38.899901 ], [ -77.057397, 38.899867 ], [ -77.057419, 38.899817 ], [ -77.057419, 38.899784 ], [ -77.057440, 38.899750 ], [ -77.057462, 38.899734 ], [ -77.057483, 38.899700 ], [ -77.057419, 38.899667 ], [ -77.057290, 38.899567 ], [ -77.057312, 38.899533 ], [ -77.057354, 38.899483 ], [ -77.057376, 38.899467 ], [ -77.057376, 38.899433 ], [ -77.057376, 38.899416 ], [ -77.057397, 38.899383 ], [ -77.057397, 38.899366 ], [ -77.057376, 38.899350 ], [ -77.057354, 38.899333 ], [ -77.057333, 38.899333 ], [ -77.057354, 38.899300 ], [ -77.057140, 38.899032 ], [ -77.057118, 38.899049 ], [ -77.057011, 38.898932 ], [ -77.056882, 38.898815 ], [ -77.056861, 38.898765 ], [ -77.056839, 38.898732 ], [ -77.056775, 38.898682 ], [ -77.056754, 38.898665 ], [ -77.056732, 38.898648 ], [ -77.056689, 38.898598 ], [ -77.056689, 38.898581 ], [ -77.056668, 38.898565 ], [ -77.056646, 38.898531 ], [ -77.056646, 38.898481 ], [ -77.056625, 38.898448 ], [ -77.056625, 38.898381 ], [ -77.056646, 38.897847 ], [ -77.056646, 38.897663 ], [ -77.056689, 38.896711 ], [ -77.056689, 38.896527 ], [ -77.056689, 38.896243 ], [ -77.056689, 38.895609 ], [ -77.056711, 38.895509 ], [ -77.056689, 38.895325 ], [ -77.056689, 38.895208 ], [ -77.056689, 38.895125 ], [ -77.056668, 38.895008 ], [ -77.056646, 38.894907 ], [ -77.056625, 38.894791 ], [ -77.056625, 38.894724 ], [ -77.056603, 38.894674 ], [ -77.056582, 38.894607 ], [ -77.056561, 38.894507 ], [ -77.056539, 38.894473 ], [ -77.056518, 38.894390 ], [ -77.056475, 38.894290 ], [ -77.056453, 38.894256 ], [ -77.056432, 38.894206 ], [ -77.056282, 38.893889 ], [ -77.056174, 38.893638 ], [ -77.056153, 38.893555 ], [ -77.055938, 38.893087 ], [ -77.055917, 38.893004 ] ] ], [ [ [ -77.051196, 38.910771 ], [ -77.050681, 38.910203 ], [ -77.050381, 38.909920 ], [ -77.050102, 38.909736 ], [ -77.050080, 38.909636 ], [ -77.050059, 38.909485 ], [ -77.050102, 38.909369 ], [ -77.050231, 38.909185 ], [ -77.050402, 38.909051 ], [ -77.050681, 38.908918 ], [ -77.051046, 38.908818 ], [ -77.051561, 38.908734 ], [ -77.052076, 38.908801 ], [ -77.052526, 38.908834 ], [ -77.052698, 38.908818 ], [ -77.052805, 38.908818 ], [ -77.052934, 38.908784 ], [ -77.053127, 38.908701 ], [ -77.053385, 38.908550 ], [ -77.053556, 38.908434 ], [ -77.053685, 38.908216 ], [ -77.053835, 38.907983 ], [ -77.054007, 38.907816 ], [ -77.054200, 38.907649 ], [ -77.054307, 38.907498 ], [ -77.054458, 38.907215 ], [ -77.054501, 38.907098 ], [ -77.054543, 38.907048 ], [ -77.054651, 38.906714 ], [ -77.054822, 38.906346 ], [ -77.055037, 38.905929 ], [ -77.055209, 38.905628 ], [ -77.055423, 38.905244 ], [ -77.055488, 38.905244 ], [ -77.055724, 38.905244 ], [ -77.055788, 38.905244 ], [ -77.055917, 38.905244 ], [ -77.056067, 38.905261 ], [ -77.056496, 38.905244 ], [ -77.056754, 38.905244 ], [ -77.056904, 38.905228 ], [ -77.057011, 38.905228 ], [ -77.057011, 38.905328 ], [ -77.057011, 38.905411 ], [ -77.057033, 38.905612 ], [ -77.057033, 38.905879 ], [ -77.057033, 38.906079 ], [ -77.057054, 38.906313 ], [ -77.057054, 38.906864 ], [ -77.057054, 38.907098 ], [ -77.057076, 38.907348 ], [ -77.057054, 38.907549 ], [ -77.057076, 38.907682 ], [ -77.057076, 38.907766 ], [ -77.057054, 38.907899 ], [ -77.057076, 38.908200 ], [ -77.057097, 38.908517 ], [ -77.057097, 38.908601 ], [ -77.057097, 38.908834 ], [ -77.057097, 38.909068 ], [ -77.057097, 38.909335 ], [ -77.057118, 38.909602 ], [ -77.057118, 38.909903 ], [ -77.057118, 38.910120 ], [ -77.057140, 38.910437 ], [ -77.057140, 38.910537 ], [ -77.057011, 38.910554 ], [ -77.056646, 38.910554 ], [ -77.056324, 38.910554 ], [ -77.056003, 38.910554 ], [ -77.055230, 38.910571 ], [ -77.054951, 38.910571 ], [ -77.054822, 38.910571 ], [ -77.054586, 38.910571 ], [ -77.054222, 38.910587 ], [ -77.053363, 38.910587 ], [ -77.052977, 38.910604 ], [ -77.052569, 38.910604 ], [ -77.052033, 38.910604 ], [ -77.051840, 38.910621 ], [ -77.051775, 38.910621 ], [ -77.051733, 38.910621 ], [ -77.051497, 38.910671 ], [ -77.051411, 38.910704 ], [ -77.051346, 38.910721 ], [ -77.051260, 38.910754 ], [ -77.051196, 38.910771 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004100", "GEOID": "11001004100", "NAME": "41", "NAMELSAD": "Census Tract 41", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 788701, "AWATER": 7303, "INTPTLAT": "+38.9159337", "INTPTLON": "-077.0516151" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.050166, 38.921239 ], [ -77.050123, 38.921156 ], [ -77.049952, 38.920839 ], [ -77.049179, 38.919536 ], [ -77.049136, 38.919470 ], [ -77.049115, 38.919420 ], [ -77.049050, 38.919319 ], [ -77.049029, 38.919269 ], [ -77.049007, 38.919236 ], [ -77.048943, 38.919136 ], [ -77.048943, 38.919102 ], [ -77.048857, 38.918985 ], [ -77.048814, 38.918919 ], [ -77.048793, 38.918902 ], [ -77.048750, 38.918869 ], [ -77.048728, 38.918852 ], [ -77.048686, 38.918819 ], [ -77.048643, 38.918802 ], [ -77.048600, 38.918802 ], [ -77.048514, 38.918768 ], [ -77.048450, 38.918752 ], [ -77.048299, 38.918718 ], [ -77.048235, 38.918685 ], [ -77.048171, 38.918668 ], [ -77.047935, 38.918618 ], [ -77.047849, 38.918585 ], [ -77.047806, 38.918585 ], [ -77.047784, 38.918568 ], [ -77.047720, 38.918551 ], [ -77.047698, 38.918535 ], [ -77.047677, 38.918518 ], [ -77.047634, 38.918485 ], [ -77.047634, 38.918468 ], [ -77.047591, 38.918435 ], [ -77.047570, 38.918384 ], [ -77.047527, 38.918301 ], [ -77.047226, 38.917733 ], [ -77.047012, 38.917333 ], [ -77.046990, 38.917249 ], [ -77.046776, 38.916832 ], [ -77.046733, 38.916765 ], [ -77.046690, 38.916698 ], [ -77.046690, 38.916682 ], [ -77.046583, 38.916515 ], [ -77.046475, 38.916398 ], [ -77.046390, 38.916281 ], [ -77.046282, 38.915997 ], [ -77.046218, 38.915830 ], [ -77.046196, 38.915296 ], [ -77.046175, 38.914845 ], [ -77.046175, 38.914762 ], [ -77.046089, 38.914428 ], [ -77.046154, 38.914378 ], [ -77.046239, 38.914327 ], [ -77.046368, 38.914227 ], [ -77.046390, 38.914211 ], [ -77.046561, 38.914027 ], [ -77.046626, 38.913977 ], [ -77.046647, 38.913960 ], [ -77.046776, 38.913827 ], [ -77.046819, 38.913810 ], [ -77.046840, 38.913776 ], [ -77.046862, 38.913760 ], [ -77.046883, 38.913726 ], [ -77.046905, 38.913693 ], [ -77.046905, 38.913676 ], [ -77.046947, 38.913626 ], [ -77.046969, 38.913576 ], [ -77.047012, 38.913509 ], [ -77.047119, 38.913309 ], [ -77.047248, 38.913075 ], [ -77.047441, 38.912741 ], [ -77.047462, 38.912691 ], [ -77.047527, 38.912641 ], [ -77.047548, 38.912608 ], [ -77.047591, 38.912558 ], [ -77.047698, 38.912441 ], [ -77.047741, 38.912407 ], [ -77.047870, 38.912257 ], [ -77.047977, 38.912157 ], [ -77.048020, 38.912107 ], [ -77.048106, 38.912040 ], [ -77.048128, 38.912007 ], [ -77.048192, 38.911973 ], [ -77.048450, 38.911773 ], [ -77.048471, 38.911740 ], [ -77.048600, 38.911639 ], [ -77.048664, 38.911589 ], [ -77.048793, 38.911506 ], [ -77.048728, 38.911406 ], [ -77.048728, 38.911272 ], [ -77.048750, 38.911122 ], [ -77.048750, 38.911105 ], [ -77.048750, 38.910921 ], [ -77.048771, 38.910704 ], [ -77.048771, 38.910621 ], [ -77.048793, 38.910504 ], [ -77.048793, 38.910404 ], [ -77.048793, 38.910320 ], [ -77.048793, 38.910203 ], [ -77.048793, 38.910120 ], [ -77.048793, 38.909736 ], [ -77.048793, 38.909636 ], [ -77.048900, 38.909636 ], [ -77.049329, 38.909636 ], [ -77.049522, 38.909636 ], [ -77.049973, 38.909636 ], [ -77.050080, 38.909636 ], [ -77.050102, 38.909736 ], [ -77.050381, 38.909920 ], [ -77.050681, 38.910203 ], [ -77.051196, 38.910771 ], [ -77.051153, 38.910805 ], [ -77.051196, 38.910855 ], [ -77.051239, 38.910905 ], [ -77.051260, 38.910938 ], [ -77.051303, 38.910971 ], [ -77.051325, 38.911022 ], [ -77.051411, 38.911088 ], [ -77.051454, 38.911138 ], [ -77.051518, 38.911205 ], [ -77.051604, 38.911272 ], [ -77.051668, 38.911356 ], [ -77.051711, 38.911372 ], [ -77.051754, 38.911406 ], [ -77.051797, 38.911439 ], [ -77.051840, 38.911456 ], [ -77.051947, 38.911539 ], [ -77.051990, 38.911556 ], [ -77.052011, 38.911573 ], [ -77.052033, 38.911606 ], [ -77.052054, 38.911623 ], [ -77.052097, 38.911639 ], [ -77.052205, 38.911723 ], [ -77.052226, 38.911756 ], [ -77.052269, 38.911790 ], [ -77.052355, 38.911856 ], [ -77.052462, 38.911940 ], [ -77.052484, 38.911973 ], [ -77.052526, 38.911990 ], [ -77.052677, 38.912073 ], [ -77.052720, 38.912090 ], [ -77.052763, 38.912124 ], [ -77.052805, 38.912140 ], [ -77.052848, 38.912157 ], [ -77.052934, 38.912190 ], [ -77.052956, 38.912207 ], [ -77.052999, 38.912224 ], [ -77.053041, 38.912240 ], [ -77.053084, 38.912257 ], [ -77.053127, 38.912257 ], [ -77.053256, 38.912307 ], [ -77.053406, 38.912357 ], [ -77.053492, 38.912391 ], [ -77.053642, 38.912424 ], [ -77.053685, 38.912441 ], [ -77.053771, 38.912474 ], [ -77.053814, 38.912491 ], [ -77.053964, 38.912524 ], [ -77.054050, 38.912558 ], [ -77.054114, 38.912574 ], [ -77.054222, 38.912608 ], [ -77.054265, 38.912624 ], [ -77.054307, 38.912624 ], [ -77.054350, 38.912641 ], [ -77.054501, 38.912691 ], [ -77.054522, 38.912708 ], [ -77.054565, 38.912725 ], [ -77.054608, 38.912741 ], [ -77.054715, 38.912775 ], [ -77.054844, 38.912825 ], [ -77.054887, 38.912841 ], [ -77.054994, 38.912875 ], [ -77.055080, 38.912942 ], [ -77.055187, 38.912992 ], [ -77.055230, 38.913042 ], [ -77.055273, 38.913092 ], [ -77.055316, 38.913142 ], [ -77.055337, 38.913175 ], [ -77.055380, 38.913192 ], [ -77.055402, 38.913226 ], [ -77.055423, 38.913259 ], [ -77.055445, 38.913309 ], [ -77.055466, 38.913342 ], [ -77.055488, 38.913359 ], [ -77.055531, 38.913376 ], [ -77.055552, 38.913409 ], [ -77.055595, 38.913443 ], [ -77.055616, 38.913476 ], [ -77.055745, 38.913559 ], [ -77.055767, 38.913576 ], [ -77.055831, 38.913593 ], [ -77.055917, 38.913643 ], [ -77.055981, 38.913676 ], [ -77.056024, 38.913710 ], [ -77.056067, 38.913726 ], [ -77.056088, 38.913760 ], [ -77.056110, 38.913793 ], [ -77.056131, 38.913827 ], [ -77.056153, 38.913860 ], [ -77.056196, 38.913893 ], [ -77.056239, 38.913943 ], [ -77.056324, 38.913977 ], [ -77.056432, 38.914027 ], [ -77.056475, 38.914044 ], [ -77.056561, 38.914094 ], [ -77.056625, 38.914127 ], [ -77.056668, 38.914160 ], [ -77.056689, 38.914177 ], [ -77.056732, 38.914211 ], [ -77.056818, 38.914244 ], [ -77.056947, 38.914311 ], [ -77.057011, 38.914361 ], [ -77.057076, 38.914394 ], [ -77.057118, 38.914411 ], [ -77.057140, 38.914428 ], [ -77.057183, 38.914461 ], [ -77.057204, 38.914478 ], [ -77.057247, 38.914494 ], [ -77.057290, 38.914511 ], [ -77.057333, 38.914544 ], [ -77.057397, 38.914595 ], [ -77.057440, 38.914628 ], [ -77.057505, 38.914661 ], [ -77.057526, 38.914678 ], [ -77.057612, 38.914745 ], [ -77.057676, 38.914795 ], [ -77.057719, 38.914828 ], [ -77.057784, 38.914862 ], [ -77.057827, 38.914912 ], [ -77.057869, 38.914929 ], [ -77.057955, 38.914995 ], [ -77.057977, 38.915012 ], [ -77.058020, 38.915045 ], [ -77.058063, 38.915079 ], [ -77.058127, 38.915129 ], [ -77.058213, 38.915212 ], [ -77.058256, 38.915262 ], [ -77.058299, 38.915296 ], [ -77.058406, 38.915379 ], [ -77.058427, 38.915396 ], [ -77.058470, 38.915413 ], [ -77.058556, 38.915429 ], [ -77.058620, 38.915446 ], [ -77.058663, 38.915463 ], [ -77.058685, 38.915479 ], [ -77.058706, 38.915530 ], [ -77.058749, 38.915563 ], [ -77.058749, 38.915596 ], [ -77.058771, 38.915646 ], [ -77.058792, 38.915713 ], [ -77.058814, 38.915747 ], [ -77.058792, 38.915797 ], [ -77.058792, 38.915830 ], [ -77.058771, 38.915880 ], [ -77.058771, 38.915930 ], [ -77.058771, 38.915964 ], [ -77.058771, 38.916014 ], [ -77.058792, 38.916047 ], [ -77.058792, 38.916081 ], [ -77.058792, 38.916181 ], [ -77.058792, 38.916247 ], [ -77.058792, 38.916298 ], [ -77.058771, 38.916348 ], [ -77.058771, 38.916398 ], [ -77.058728, 38.916515 ], [ -77.058706, 38.916581 ], [ -77.058706, 38.916631 ], [ -77.058685, 38.916682 ], [ -77.058663, 38.916748 ], [ -77.058642, 38.916899 ], [ -77.058620, 38.916965 ], [ -77.058599, 38.917049 ], [ -77.058578, 38.917099 ], [ -77.058556, 38.917149 ], [ -77.058535, 38.917216 ], [ -77.058513, 38.917266 ], [ -77.058492, 38.917316 ], [ -77.058470, 38.917349 ], [ -77.058406, 38.917399 ], [ -77.058384, 38.917483 ], [ -77.058363, 38.917516 ], [ -77.058320, 38.917550 ], [ -77.058277, 38.917600 ], [ -77.058191, 38.917667 ], [ -77.058256, 38.917717 ], [ -77.057955, 38.917984 ], [ -77.057869, 38.918034 ], [ -77.057698, 38.918151 ], [ -77.057483, 38.918268 ], [ -77.057247, 38.918384 ], [ -77.057097, 38.918451 ], [ -77.057011, 38.918485 ], [ -77.056861, 38.918501 ], [ -77.056582, 38.918568 ], [ -77.056324, 38.918601 ], [ -77.056174, 38.918652 ], [ -77.056046, 38.918702 ], [ -77.055595, 38.918885 ], [ -77.055466, 38.918952 ], [ -77.055316, 38.919036 ], [ -77.055187, 38.919136 ], [ -77.055144, 38.919186 ], [ -77.055123, 38.919236 ], [ -77.055080, 38.919336 ], [ -77.055016, 38.919436 ], [ -77.054930, 38.919620 ], [ -77.054908, 38.919670 ], [ -77.054844, 38.919737 ], [ -77.054715, 38.919837 ], [ -77.054651, 38.919887 ], [ -77.054565, 38.919920 ], [ -77.054501, 38.919937 ], [ -77.054243, 38.919987 ], [ -77.054071, 38.920021 ], [ -77.053857, 38.920037 ], [ -77.053685, 38.920054 ], [ -77.053578, 38.920054 ], [ -77.053471, 38.920071 ], [ -77.053363, 38.920087 ], [ -77.053256, 38.920087 ], [ -77.053106, 38.920071 ], [ -77.053020, 38.920054 ], [ -77.052999, 38.920037 ], [ -77.052891, 38.919987 ], [ -77.052848, 38.919954 ], [ -77.052763, 38.919920 ], [ -77.052548, 38.919804 ], [ -77.052376, 38.919720 ], [ -77.052226, 38.919603 ], [ -77.052119, 38.919603 ], [ -77.051947, 38.919586 ], [ -77.051840, 38.919570 ], [ -77.051625, 38.919637 ], [ -77.051346, 38.919737 ], [ -77.051218, 38.919770 ], [ -77.051110, 38.919854 ], [ -77.051067, 38.919870 ], [ -77.051003, 38.919937 ], [ -77.050917, 38.920087 ], [ -77.050788, 38.920338 ], [ -77.050660, 38.920571 ], [ -77.050617, 38.920638 ], [ -77.050552, 38.920705 ], [ -77.050488, 38.920755 ], [ -77.050402, 38.920822 ], [ -77.050359, 38.920889 ], [ -77.050338, 38.920922 ], [ -77.050252, 38.921106 ], [ -77.050166, 38.921239 ] ] ], [ [ [ -77.043171, 38.923209 ], [ -77.043149, 38.923192 ], [ -77.043107, 38.923176 ], [ -77.043021, 38.923142 ], [ -77.042999, 38.923126 ], [ -77.042913, 38.923059 ], [ -77.042892, 38.923042 ], [ -77.042871, 38.923025 ], [ -77.042828, 38.922992 ], [ -77.042806, 38.922959 ], [ -77.042785, 38.922925 ], [ -77.042763, 38.922892 ], [ -77.042742, 38.922875 ], [ -77.042742, 38.922842 ], [ -77.042720, 38.922825 ], [ -77.042677, 38.922658 ], [ -77.042956, 38.922475 ], [ -77.042999, 38.922458 ], [ -77.043042, 38.922425 ], [ -77.043085, 38.922391 ], [ -77.043107, 38.922358 ], [ -77.043128, 38.922324 ], [ -77.043171, 38.922291 ], [ -77.043235, 38.922191 ], [ -77.043278, 38.922107 ], [ -77.043321, 38.922024 ], [ -77.043450, 38.921707 ], [ -77.043579, 38.921406 ], [ -77.043707, 38.921106 ], [ -77.043707, 38.921089 ], [ -77.043879, 38.920688 ], [ -77.043922, 38.920588 ], [ -77.044029, 38.920371 ], [ -77.044287, 38.919837 ], [ -77.044351, 38.919720 ], [ -77.044394, 38.919670 ], [ -77.044394, 38.919637 ], [ -77.044437, 38.919603 ], [ -77.044780, 38.919052 ], [ -77.045209, 38.918384 ], [ -77.045274, 38.918268 ], [ -77.045488, 38.917934 ], [ -77.045553, 38.917817 ], [ -77.045789, 38.917450 ], [ -77.046068, 38.917015 ], [ -77.046068, 38.916965 ], [ -77.046089, 38.916932 ], [ -77.046111, 38.916865 ], [ -77.046239, 38.916648 ], [ -77.046239, 38.916615 ], [ -77.046261, 38.916598 ], [ -77.046282, 38.916498 ], [ -77.046304, 38.916448 ], [ -77.046304, 38.916364 ], [ -77.046282, 38.916314 ], [ -77.046304, 38.916247 ], [ -77.046282, 38.915997 ], [ -77.046390, 38.916281 ], [ -77.046475, 38.916398 ], [ -77.046583, 38.916515 ], [ -77.046690, 38.916682 ], [ -77.046690, 38.916698 ], [ -77.046733, 38.916765 ], [ -77.046776, 38.916832 ], [ -77.046990, 38.917249 ], [ -77.047012, 38.917333 ], [ -77.047226, 38.917733 ], [ -77.047527, 38.918301 ], [ -77.047570, 38.918384 ], [ -77.047591, 38.918435 ], [ -77.047634, 38.918468 ], [ -77.047634, 38.918485 ], [ -77.047677, 38.918518 ], [ -77.047698, 38.918535 ], [ -77.047720, 38.918551 ], [ -77.047784, 38.918568 ], [ -77.047806, 38.918585 ], [ -77.047849, 38.918585 ], [ -77.047935, 38.918618 ], [ -77.048171, 38.918668 ], [ -77.048235, 38.918685 ], [ -77.048299, 38.918718 ], [ -77.048450, 38.918752 ], [ -77.048514, 38.918768 ], [ -77.048600, 38.918802 ], [ -77.048643, 38.918802 ], [ -77.048686, 38.918819 ], [ -77.048728, 38.918852 ], [ -77.048750, 38.918869 ], [ -77.048793, 38.918902 ], [ -77.048814, 38.918919 ], [ -77.048857, 38.918985 ], [ -77.048943, 38.919102 ], [ -77.048943, 38.919136 ], [ -77.049007, 38.919236 ], [ -77.049029, 38.919269 ], [ -77.049050, 38.919319 ], [ -77.049115, 38.919420 ], [ -77.049136, 38.919470 ], [ -77.049179, 38.919536 ], [ -77.049952, 38.920839 ], [ -77.050123, 38.921156 ], [ -77.050166, 38.921239 ], [ -77.050059, 38.921406 ], [ -77.049737, 38.921690 ], [ -77.049544, 38.921874 ], [ -77.049329, 38.921957 ], [ -77.049308, 38.921974 ], [ -77.048943, 38.922207 ], [ -77.048686, 38.922408 ], [ -77.048578, 38.922575 ], [ -77.048535, 38.922775 ], [ -77.048514, 38.923042 ], [ -77.048557, 38.923343 ], [ -77.048450, 38.923343 ], [ -77.048385, 38.923326 ], [ -77.047698, 38.923276 ], [ -77.047591, 38.923276 ], [ -77.047527, 38.923259 ], [ -77.047334, 38.923243 ], [ -77.047269, 38.923243 ], [ -77.047141, 38.923243 ], [ -77.046583, 38.923243 ], [ -77.046046, 38.923243 ], [ -77.044694, 38.923243 ], [ -77.044587, 38.923243 ], [ -77.044330, 38.923243 ], [ -77.043836, 38.923243 ], [ -77.043450, 38.923243 ], [ -77.043407, 38.923243 ], [ -77.043386, 38.923243 ], [ -77.043343, 38.923243 ], [ -77.043321, 38.923243 ], [ -77.043257, 38.923226 ], [ -77.043214, 38.923209 ], [ -77.043171, 38.923209 ] ] ], [ [ [ -77.042677, 38.922658 ], [ -77.042656, 38.922608 ], [ -77.042634, 38.922508 ], [ -77.042549, 38.922241 ], [ -77.042398, 38.921723 ], [ -77.042055, 38.920688 ], [ -77.042012, 38.920588 ], [ -77.041733, 38.919770 ], [ -77.041712, 38.919703 ], [ -77.041712, 38.919687 ], [ -77.041690, 38.919653 ], [ -77.041690, 38.919637 ], [ -77.041690, 38.919586 ], [ -77.041669, 38.919536 ], [ -77.041669, 38.919470 ], [ -77.041669, 38.918735 ], [ -77.041669, 38.918251 ], [ -77.041669, 38.918184 ], [ -77.041669, 38.918117 ], [ -77.041669, 38.918084 ], [ -77.041647, 38.918051 ], [ -77.041647, 38.918000 ], [ -77.041647, 38.917967 ], [ -77.041647, 38.917934 ], [ -77.041647, 38.917817 ], [ -77.041647, 38.917099 ], [ -77.041647, 38.916982 ], [ -77.041647, 38.916865 ], [ -77.041647, 38.916782 ], [ -77.041776, 38.916715 ], [ -77.042184, 38.916515 ], [ -77.042742, 38.916247 ], [ -77.043343, 38.915930 ], [ -77.043428, 38.915880 ], [ -77.043579, 38.915813 ], [ -77.044072, 38.915546 ], [ -77.044244, 38.915446 ], [ -77.044458, 38.915346 ], [ -77.044716, 38.915212 ], [ -77.044909, 38.915112 ], [ -77.045038, 38.915029 ], [ -77.045252, 38.914912 ], [ -77.045724, 38.914645 ], [ -77.045982, 38.914494 ], [ -77.046089, 38.914428 ], [ -77.046175, 38.914762 ], [ -77.046175, 38.914845 ], [ -77.046196, 38.915296 ], [ -77.046218, 38.915830 ], [ -77.046282, 38.915997 ], [ -77.046304, 38.916247 ], [ -77.046282, 38.916314 ], [ -77.046304, 38.916364 ], [ -77.046304, 38.916448 ], [ -77.046282, 38.916498 ], [ -77.046261, 38.916598 ], [ -77.046239, 38.916615 ], [ -77.046239, 38.916648 ], [ -77.046111, 38.916865 ], [ -77.046089, 38.916932 ], [ -77.046068, 38.916965 ], [ -77.046068, 38.917015 ], [ -77.045789, 38.917450 ], [ -77.045553, 38.917817 ], [ -77.045488, 38.917934 ], [ -77.045274, 38.918268 ], [ -77.045209, 38.918384 ], [ -77.044780, 38.919052 ], [ -77.044437, 38.919603 ], [ -77.044394, 38.919637 ], [ -77.044394, 38.919670 ], [ -77.044351, 38.919720 ], [ -77.044287, 38.919837 ], [ -77.044029, 38.920371 ], [ -77.043922, 38.920588 ], [ -77.043879, 38.920688 ], [ -77.043707, 38.921089 ], [ -77.043707, 38.921106 ], [ -77.043579, 38.921406 ], [ -77.043450, 38.921707 ], [ -77.043321, 38.922024 ], [ -77.043278, 38.922107 ], [ -77.043235, 38.922191 ], [ -77.043171, 38.922291 ], [ -77.043128, 38.922324 ], [ -77.043107, 38.922358 ], [ -77.043085, 38.922391 ], [ -77.043042, 38.922425 ], [ -77.042999, 38.922458 ], [ -77.042956, 38.922475 ], [ -77.042677, 38.922658 ] ] ], [ [ [ -77.041712, 38.919703 ], [ -77.041733, 38.919770 ], [ -77.042012, 38.920588 ], [ -77.042055, 38.920688 ], [ -77.042398, 38.921723 ], [ -77.042549, 38.922241 ], [ -77.042634, 38.922508 ], [ -77.042656, 38.922608 ], [ -77.042677, 38.922658 ], [ -77.042334, 38.922892 ], [ -77.042098, 38.923059 ], [ -77.041862, 38.923209 ], [ -77.041819, 38.923243 ], [ -77.041540, 38.923426 ], [ -77.041411, 38.923510 ], [ -77.041347, 38.923560 ], [ -77.040961, 38.923810 ], [ -77.040403, 38.924177 ], [ -77.040339, 38.924227 ], [ -77.040145, 38.924344 ], [ -77.039931, 38.924478 ], [ -77.039652, 38.924645 ], [ -77.039459, 38.924762 ], [ -77.039137, 38.924945 ], [ -77.038815, 38.925129 ], [ -77.038643, 38.925229 ], [ -77.038450, 38.925363 ], [ -77.038364, 38.925396 ], [ -77.037957, 38.925630 ], [ -77.036927, 38.926281 ], [ -77.036841, 38.926331 ], [ -77.036583, 38.926464 ], [ -77.036476, 38.926531 ], [ -77.036476, 38.926264 ], [ -77.036476, 38.926181 ], [ -77.036476, 38.925880 ], [ -77.036476, 38.925797 ], [ -77.036476, 38.925596 ], [ -77.036476, 38.924828 ], [ -77.036476, 38.924762 ], [ -77.036476, 38.924227 ], [ -77.036476, 38.923426 ], [ -77.036476, 38.923243 ], [ -77.036476, 38.923209 ], [ -77.036476, 38.923176 ], [ -77.036476, 38.922725 ], [ -77.036648, 38.922658 ], [ -77.036755, 38.922591 ], [ -77.036841, 38.922541 ], [ -77.037141, 38.922374 ], [ -77.037270, 38.922291 ], [ -77.037506, 38.922157 ], [ -77.037871, 38.921940 ], [ -77.038450, 38.921606 ], [ -77.038772, 38.921406 ], [ -77.038879, 38.921356 ], [ -77.039201, 38.921156 ], [ -77.040038, 38.920672 ], [ -77.040360, 38.920488 ], [ -77.040703, 38.920271 ], [ -77.040854, 38.920187 ], [ -77.040811, 38.920021 ], [ -77.040768, 38.919920 ], [ -77.040746, 38.919854 ], [ -77.041540, 38.919687 ], [ -77.041690, 38.919653 ], [ -77.041712, 38.919687 ], [ -77.041712, 38.919703 ] ] ], [ [ [ -77.041647, 38.916782 ], [ -77.041647, 38.916865 ], [ -77.041647, 38.916982 ], [ -77.041647, 38.917099 ], [ -77.041647, 38.917817 ], [ -77.041647, 38.917934 ], [ -77.041647, 38.917967 ], [ -77.041647, 38.918000 ], [ -77.041647, 38.918051 ], [ -77.041669, 38.918084 ], [ -77.041669, 38.918117 ], [ -77.041669, 38.918184 ], [ -77.041669, 38.918251 ], [ -77.041669, 38.918735 ], [ -77.041669, 38.919470 ], [ -77.041669, 38.919536 ], [ -77.041690, 38.919586 ], [ -77.041690, 38.919637 ], [ -77.041690, 38.919653 ], [ -77.041540, 38.919687 ], [ -77.040746, 38.919854 ], [ -77.040768, 38.919920 ], [ -77.040811, 38.920021 ], [ -77.040854, 38.920187 ], [ -77.040703, 38.920271 ], [ -77.040360, 38.920488 ], [ -77.040038, 38.920672 ], [ -77.039201, 38.921156 ], [ -77.038879, 38.921356 ], [ -77.038772, 38.921406 ], [ -77.038450, 38.921606 ], [ -77.037871, 38.921940 ], [ -77.037506, 38.922157 ], [ -77.037270, 38.922291 ], [ -77.037141, 38.922374 ], [ -77.036841, 38.922541 ], [ -77.036755, 38.922591 ], [ -77.036648, 38.922658 ], [ -77.036476, 38.922725 ], [ -77.036476, 38.922608 ], [ -77.036476, 38.921673 ], [ -77.036476, 38.920955 ], [ -77.036498, 38.920354 ], [ -77.036498, 38.920304 ], [ -77.036498, 38.919854 ], [ -77.036498, 38.919286 ], [ -77.036498, 38.919136 ], [ -77.038472, 38.918518 ], [ -77.038536, 38.918501 ], [ -77.038879, 38.918401 ], [ -77.038965, 38.918384 ], [ -77.039609, 38.918201 ], [ -77.039952, 38.918117 ], [ -77.040124, 38.918067 ], [ -77.040145, 38.918051 ], [ -77.040188, 38.918034 ], [ -77.040210, 38.918017 ], [ -77.040231, 38.918000 ], [ -77.040253, 38.917984 ], [ -77.040360, 38.917867 ], [ -77.040424, 38.917783 ], [ -77.040467, 38.917717 ], [ -77.040553, 38.917600 ], [ -77.040832, 38.917249 ], [ -77.040854, 38.917232 ], [ -77.040875, 38.917199 ], [ -77.040896, 38.917182 ], [ -77.040918, 38.917166 ], [ -77.041025, 38.917116 ], [ -77.041218, 38.916999 ], [ -77.041283, 38.916965 ], [ -77.041433, 38.916882 ], [ -77.041540, 38.916832 ], [ -77.041647, 38.916782 ] ] ], [ [ [ -77.043772, 38.910203 ], [ -77.043793, 38.910270 ], [ -77.044308, 38.911122 ], [ -77.044737, 38.911873 ], [ -77.044866, 38.912107 ], [ -77.045145, 38.912608 ], [ -77.045209, 38.912675 ], [ -77.045467, 38.913125 ], [ -77.045918, 38.914077 ], [ -77.046089, 38.914428 ], [ -77.045982, 38.914494 ], [ -77.045724, 38.914645 ], [ -77.045252, 38.914912 ], [ -77.045038, 38.915029 ], [ -77.044909, 38.915112 ], [ -77.044716, 38.915212 ], [ -77.044458, 38.915346 ], [ -77.044244, 38.915446 ], [ -77.044072, 38.915546 ], [ -77.043579, 38.915813 ], [ -77.043428, 38.915880 ], [ -77.043343, 38.915930 ], [ -77.042742, 38.916247 ], [ -77.042184, 38.916515 ], [ -77.041776, 38.916715 ], [ -77.041647, 38.916782 ], [ -77.041647, 38.916648 ], [ -77.041647, 38.916281 ], [ -77.041647, 38.915580 ], [ -77.041647, 38.914828 ], [ -77.041647, 38.914177 ], [ -77.041647, 38.914094 ], [ -77.041540, 38.914094 ], [ -77.040961, 38.914094 ], [ -77.040596, 38.914094 ], [ -77.040188, 38.914094 ], [ -77.039266, 38.914094 ], [ -77.039351, 38.914010 ], [ -77.039459, 38.913893 ], [ -77.039609, 38.913726 ], [ -77.039952, 38.913359 ], [ -77.040317, 38.912958 ], [ -77.040660, 38.912608 ], [ -77.041218, 38.912007 ], [ -77.041347, 38.911873 ], [ -77.041669, 38.911539 ], [ -77.042055, 38.911122 ], [ -77.042227, 38.910938 ], [ -77.042592, 38.910537 ], [ -77.042978, 38.910137 ], [ -77.043021, 38.910170 ], [ -77.043064, 38.910187 ], [ -77.043085, 38.910203 ], [ -77.043128, 38.910220 ], [ -77.043171, 38.910220 ], [ -77.043235, 38.910237 ], [ -77.043278, 38.910254 ], [ -77.043343, 38.910254 ], [ -77.043386, 38.910254 ], [ -77.043428, 38.910254 ], [ -77.043493, 38.910254 ], [ -77.043557, 38.910254 ], [ -77.043600, 38.910237 ], [ -77.043643, 38.910237 ], [ -77.043707, 38.910220 ], [ -77.043772, 38.910203 ] ] ], [ [ [ -77.046089, 38.914428 ], [ -77.045918, 38.914077 ], [ -77.045467, 38.913125 ], [ -77.045209, 38.912675 ], [ -77.045145, 38.912608 ], [ -77.044866, 38.912107 ], [ -77.044737, 38.911873 ], [ -77.044308, 38.911122 ], [ -77.043793, 38.910270 ], [ -77.043772, 38.910203 ], [ -77.043707, 38.910220 ], [ -77.043643, 38.910237 ], [ -77.043600, 38.910237 ], [ -77.043557, 38.910254 ], [ -77.043493, 38.910254 ], [ -77.043428, 38.910254 ], [ -77.043386, 38.910254 ], [ -77.043343, 38.910254 ], [ -77.043278, 38.910254 ], [ -77.043235, 38.910237 ], [ -77.043171, 38.910220 ], [ -77.043128, 38.910220 ], [ -77.043085, 38.910203 ], [ -77.043064, 38.910187 ], [ -77.043021, 38.910170 ], [ -77.042978, 38.910137 ], [ -77.042935, 38.910120 ], [ -77.042892, 38.910103 ], [ -77.042871, 38.910070 ], [ -77.042849, 38.910053 ], [ -77.042806, 38.910020 ], [ -77.042785, 38.910003 ], [ -77.042763, 38.909970 ], [ -77.042742, 38.909936 ], [ -77.042720, 38.909903 ], [ -77.042699, 38.909870 ], [ -77.042677, 38.909836 ], [ -77.042677, 38.909803 ], [ -77.042656, 38.909769 ], [ -77.042656, 38.909719 ], [ -77.042656, 38.909686 ], [ -77.042634, 38.909636 ], [ -77.042634, 38.909586 ], [ -77.042656, 38.909569 ], [ -77.042656, 38.909536 ], [ -77.042656, 38.909502 ], [ -77.042677, 38.909435 ], [ -77.042720, 38.909385 ], [ -77.042742, 38.909352 ], [ -77.042742, 38.909318 ], [ -77.042785, 38.909285 ], [ -77.042806, 38.909252 ], [ -77.042828, 38.909235 ], [ -77.042871, 38.909202 ], [ -77.042913, 38.909168 ], [ -77.042935, 38.909168 ], [ -77.042956, 38.909152 ], [ -77.043021, 38.909118 ], [ -77.043107, 38.909085 ], [ -77.043192, 38.909051 ], [ -77.043235, 38.909051 ], [ -77.043278, 38.909035 ], [ -77.043343, 38.909035 ], [ -77.043407, 38.909018 ], [ -77.043428, 38.909018 ], [ -77.043471, 38.909018 ], [ -77.043514, 38.909035 ], [ -77.043579, 38.909035 ], [ -77.043643, 38.909051 ], [ -77.043686, 38.909051 ], [ -77.043750, 38.909068 ], [ -77.043815, 38.909101 ], [ -77.043858, 38.909118 ], [ -77.043900, 38.909135 ], [ -77.044137, 38.908884 ], [ -77.044201, 38.908834 ], [ -77.044437, 38.908567 ], [ -77.044673, 38.908333 ], [ -77.044909, 38.908066 ], [ -77.044995, 38.907983 ], [ -77.045338, 38.907599 ], [ -77.045596, 38.907332 ], [ -77.045681, 38.907248 ], [ -77.046347, 38.907248 ], [ -77.046626, 38.907248 ], [ -77.047076, 38.907248 ], [ -77.047355, 38.907248 ], [ -77.047548, 38.907248 ], [ -77.048235, 38.907248 ], [ -77.048407, 38.907248 ], [ -77.048686, 38.907231 ], [ -77.048793, 38.907231 ], [ -77.048793, 38.907749 ], [ -77.048793, 38.907899 ], [ -77.048793, 38.908150 ], [ -77.048793, 38.908484 ], [ -77.048793, 38.908567 ], [ -77.048793, 38.909636 ], [ -77.048793, 38.909736 ], [ -77.048793, 38.910120 ], [ -77.048793, 38.910203 ], [ -77.048793, 38.910320 ], [ -77.048793, 38.910404 ], [ -77.048793, 38.910504 ], [ -77.048771, 38.910621 ], [ -77.048771, 38.910704 ], [ -77.048750, 38.910921 ], [ -77.048750, 38.911105 ], [ -77.048750, 38.911122 ], [ -77.048728, 38.911272 ], [ -77.048728, 38.911406 ], [ -77.048793, 38.911506 ], [ -77.048664, 38.911589 ], [ -77.048600, 38.911639 ], [ -77.048471, 38.911740 ], [ -77.048450, 38.911773 ], [ -77.048192, 38.911973 ], [ -77.048128, 38.912007 ], [ -77.048106, 38.912040 ], [ -77.048020, 38.912107 ], [ -77.047977, 38.912157 ], [ -77.047870, 38.912257 ], [ -77.047741, 38.912407 ], [ -77.047698, 38.912441 ], [ -77.047591, 38.912558 ], [ -77.047548, 38.912608 ], [ -77.047527, 38.912641 ], [ -77.047462, 38.912691 ], [ -77.047441, 38.912741 ], [ -77.047248, 38.913075 ], [ -77.047119, 38.913309 ], [ -77.047012, 38.913509 ], [ -77.046969, 38.913576 ], [ -77.046947, 38.913626 ], [ -77.046905, 38.913676 ], [ -77.046905, 38.913693 ], [ -77.046883, 38.913726 ], [ -77.046862, 38.913760 ], [ -77.046840, 38.913776 ], [ -77.046819, 38.913810 ], [ -77.046776, 38.913827 ], [ -77.046647, 38.913960 ], [ -77.046626, 38.913977 ], [ -77.046561, 38.914027 ], [ -77.046390, 38.914211 ], [ -77.046368, 38.914227 ], [ -77.046239, 38.914327 ], [ -77.046154, 38.914378 ], [ -77.046089, 38.914428 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004201", "GEOID": "11001004201", "NAME": "42.01", "NAMELSAD": "Census Tract 42.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 204529, "AWATER": 0, "INTPTLAT": "+38.9162076", "INTPTLON": "-077.0388456" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.041647, 38.914094 ], [ -77.041647, 38.914177 ], [ -77.041647, 38.914828 ], [ -77.041647, 38.915580 ], [ -77.041647, 38.916281 ], [ -77.041647, 38.916648 ], [ -77.041647, 38.916782 ], [ -77.041540, 38.916832 ], [ -77.041433, 38.916882 ], [ -77.041283, 38.916965 ], [ -77.041218, 38.916999 ], [ -77.041025, 38.917116 ], [ -77.040918, 38.917166 ], [ -77.040896, 38.917182 ], [ -77.040875, 38.917199 ], [ -77.040854, 38.917232 ], [ -77.040832, 38.917249 ], [ -77.040553, 38.917600 ], [ -77.040467, 38.917717 ], [ -77.040424, 38.917783 ], [ -77.040360, 38.917867 ], [ -77.040253, 38.917984 ], [ -77.040231, 38.918000 ], [ -77.040210, 38.918017 ], [ -77.040188, 38.918034 ], [ -77.040145, 38.918051 ], [ -77.040124, 38.918067 ], [ -77.039952, 38.918117 ], [ -77.039609, 38.918201 ], [ -77.038965, 38.918384 ], [ -77.038879, 38.918401 ], [ -77.038536, 38.918501 ], [ -77.038472, 38.918518 ], [ -77.036498, 38.919136 ], [ -77.036498, 38.919002 ], [ -77.036498, 38.918935 ], [ -77.036498, 38.918518 ], [ -77.036498, 38.918117 ], [ -77.036498, 38.918034 ], [ -77.036498, 38.918017 ], [ -77.036498, 38.917299 ], [ -77.036498, 38.917199 ], [ -77.036498, 38.917166 ], [ -77.036476, 38.916999 ], [ -77.036476, 38.916798 ], [ -77.036476, 38.916414 ], [ -77.036498, 38.916281 ], [ -77.036498, 38.916231 ], [ -77.036498, 38.915813 ], [ -77.036498, 38.915563 ], [ -77.036498, 38.915496 ], [ -77.036498, 38.915196 ], [ -77.036498, 38.914895 ], [ -77.036498, 38.914828 ], [ -77.036498, 38.914261 ], [ -77.036498, 38.914094 ], [ -77.036648, 38.914094 ], [ -77.037163, 38.914094 ], [ -77.038064, 38.914094 ], [ -77.038472, 38.914094 ], [ -77.038600, 38.914094 ], [ -77.038836, 38.914094 ], [ -77.039201, 38.914094 ], [ -77.039266, 38.914094 ], [ -77.040188, 38.914094 ], [ -77.040596, 38.914094 ], [ -77.040961, 38.914094 ], [ -77.041540, 38.914094 ], [ -77.041647, 38.914094 ] ] ], [ [ [ -77.036498, 38.914094 ], [ -77.036498, 38.914010 ], [ -77.036498, 38.913559 ], [ -77.036498, 38.913426 ], [ -77.036498, 38.913342 ], [ -77.036498, 38.912958 ], [ -77.036498, 38.912691 ], [ -77.036519, 38.912608 ], [ -77.036498, 38.912224 ], [ -77.036519, 38.911873 ], [ -77.036519, 38.911205 ], [ -77.036519, 38.911122 ], [ -77.036691, 38.911122 ], [ -77.036798, 38.911122 ], [ -77.036884, 38.911122 ], [ -77.036970, 38.911122 ], [ -77.037206, 38.911122 ], [ -77.037764, 38.911122 ], [ -77.038150, 38.911122 ], [ -77.038321, 38.911122 ], [ -77.038386, 38.911122 ], [ -77.038472, 38.911122 ], [ -77.038794, 38.911122 ], [ -77.040017, 38.911122 ], [ -77.041669, 38.911122 ], [ -77.041669, 38.911189 ], [ -77.041669, 38.911305 ], [ -77.041669, 38.911539 ], [ -77.041347, 38.911873 ], [ -77.041218, 38.912007 ], [ -77.040660, 38.912608 ], [ -77.040317, 38.912958 ], [ -77.039952, 38.913359 ], [ -77.039609, 38.913726 ], [ -77.039459, 38.913893 ], [ -77.039351, 38.914010 ], [ -77.039266, 38.914094 ], [ -77.039201, 38.914094 ], [ -77.038836, 38.914094 ], [ -77.038600, 38.914094 ], [ -77.038472, 38.914094 ], [ -77.038064, 38.914094 ], [ -77.037163, 38.914094 ], [ -77.036648, 38.914094 ], [ -77.036498, 38.914094 ] ] ], [ [ [ -77.036176, 38.907131 ], [ -77.036240, 38.907081 ], [ -77.036283, 38.907064 ], [ -77.036347, 38.907048 ], [ -77.036369, 38.907031 ], [ -77.036390, 38.907031 ], [ -77.036433, 38.907031 ], [ -77.036476, 38.907014 ], [ -77.036519, 38.907014 ], [ -77.036605, 38.907014 ], [ -77.036648, 38.907014 ], [ -77.036691, 38.907031 ], [ -77.036712, 38.907031 ], [ -77.036777, 38.907064 ], [ -77.036798, 38.907064 ], [ -77.036819, 38.907081 ], [ -77.036819, 38.907098 ], [ -77.036862, 38.907131 ], [ -77.036927, 38.907248 ], [ -77.036862, 38.907348 ], [ -77.037656, 38.907632 ], [ -77.037785, 38.907682 ], [ -77.038150, 38.907799 ], [ -77.038493, 38.907916 ], [ -77.039073, 38.908116 ], [ -77.039201, 38.908166 ], [ -77.039480, 38.908267 ], [ -77.039931, 38.908417 ], [ -77.040210, 38.908517 ], [ -77.041669, 38.909035 ], [ -77.042720, 38.909385 ], [ -77.042677, 38.909435 ], [ -77.042656, 38.909502 ], [ -77.042656, 38.909536 ], [ -77.042656, 38.909569 ], [ -77.042634, 38.909586 ], [ -77.042634, 38.909636 ], [ -77.042656, 38.909686 ], [ -77.042656, 38.909719 ], [ -77.042656, 38.909769 ], [ -77.042677, 38.909803 ], [ -77.042677, 38.909836 ], [ -77.042699, 38.909870 ], [ -77.042720, 38.909903 ], [ -77.042742, 38.909936 ], [ -77.042763, 38.909970 ], [ -77.042785, 38.910003 ], [ -77.042806, 38.910020 ], [ -77.042849, 38.910053 ], [ -77.042871, 38.910070 ], [ -77.042892, 38.910103 ], [ -77.042935, 38.910120 ], [ -77.042978, 38.910137 ], [ -77.042592, 38.910537 ], [ -77.042227, 38.910938 ], [ -77.042055, 38.911122 ], [ -77.041669, 38.911539 ], [ -77.041669, 38.911305 ], [ -77.041669, 38.911189 ], [ -77.041669, 38.911122 ], [ -77.040017, 38.911122 ], [ -77.038794, 38.911122 ], [ -77.038472, 38.911122 ], [ -77.038386, 38.911122 ], [ -77.038321, 38.911122 ], [ -77.038150, 38.911122 ], [ -77.037764, 38.911122 ], [ -77.037206, 38.911122 ], [ -77.036970, 38.911122 ], [ -77.036884, 38.911122 ], [ -77.036798, 38.911122 ], [ -77.036691, 38.911122 ], [ -77.036519, 38.911122 ], [ -77.036519, 38.911005 ], [ -77.036519, 38.910454 ], [ -77.036519, 38.910387 ], [ -77.036519, 38.909786 ], [ -77.036519, 38.909719 ], [ -77.036519, 38.909636 ], [ -77.036519, 38.909552 ], [ -77.036519, 38.909085 ], [ -77.036519, 38.908701 ], [ -77.036519, 38.908317 ], [ -77.036519, 38.907465 ], [ -77.036390, 38.907448 ], [ -77.036347, 38.907448 ], [ -77.036304, 38.907432 ], [ -77.036262, 38.907415 ], [ -77.036240, 38.907415 ], [ -77.036219, 38.907382 ], [ -77.036176, 38.907348 ], [ -77.036154, 38.907315 ], [ -77.036154, 38.907298 ], [ -77.036133, 38.907265 ], [ -77.036133, 38.907248 ], [ -77.036133, 38.907215 ], [ -77.036133, 38.907181 ], [ -77.036154, 38.907148 ], [ -77.036176, 38.907131 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005601", "GEOID": "11001005601", "NAME": "56.01", "NAMELSAD": "Census Tract 56.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 185309, "AWATER": 1275, "INTPTLAT": "+38.9015670", "INTPTLON": "-077.0524317" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.050123, 38.899600 ], [ -77.050123, 38.899567 ], [ -77.050273, 38.899567 ], [ -77.050402, 38.899567 ], [ -77.050488, 38.899567 ], [ -77.050595, 38.899567 ], [ -77.050831, 38.899583 ], [ -77.050939, 38.899583 ], [ -77.051046, 38.899567 ], [ -77.051325, 38.899567 ], [ -77.051432, 38.899567 ], [ -77.051518, 38.899567 ], [ -77.051647, 38.899567 ], [ -77.051818, 38.899567 ], [ -77.051947, 38.899567 ], [ -77.052205, 38.899567 ], [ -77.052333, 38.899567 ], [ -77.052484, 38.899567 ], [ -77.052591, 38.899567 ], [ -77.052677, 38.899583 ], [ -77.052763, 38.899583 ], [ -77.052870, 38.899583 ], [ -77.052999, 38.899567 ], [ -77.053041, 38.899567 ], [ -77.053149, 38.899567 ], [ -77.053192, 38.899583 ], [ -77.053235, 38.899583 ], [ -77.053256, 38.899600 ], [ -77.053277, 38.899617 ], [ -77.053299, 38.899634 ], [ -77.053299, 38.899667 ], [ -77.053299, 38.899750 ], [ -77.053299, 38.899834 ], [ -77.053299, 38.899968 ], [ -77.053299, 38.900034 ], [ -77.053320, 38.900151 ], [ -77.053299, 38.900218 ], [ -77.053299, 38.900301 ], [ -77.053299, 38.900352 ], [ -77.053299, 38.900452 ], [ -77.053299, 38.900519 ], [ -77.053299, 38.900585 ], [ -77.053299, 38.900619 ], [ -77.053299, 38.900669 ], [ -77.053299, 38.900702 ], [ -77.053621, 38.900702 ], [ -77.053685, 38.900702 ], [ -77.053750, 38.900686 ], [ -77.053835, 38.900686 ], [ -77.054071, 38.900702 ], [ -77.054436, 38.900686 ], [ -77.054479, 38.900686 ], [ -77.054565, 38.900702 ], [ -77.054586, 38.900702 ], [ -77.054629, 38.900702 ], [ -77.054672, 38.900719 ], [ -77.054694, 38.900752 ], [ -77.054737, 38.900819 ], [ -77.054737, 38.900836 ], [ -77.054737, 38.900869 ], [ -77.054758, 38.900936 ], [ -77.054758, 38.901053 ], [ -77.054758, 38.901120 ], [ -77.054737, 38.901504 ], [ -77.054758, 38.901838 ], [ -77.054737, 38.902272 ], [ -77.054737, 38.902289 ], [ -77.054737, 38.902489 ], [ -77.055252, 38.902489 ], [ -77.056110, 38.902522 ], [ -77.056303, 38.902522 ], [ -77.056518, 38.902522 ], [ -77.056882, 38.902522 ], [ -77.056968, 38.902539 ], [ -77.057569, 38.902539 ], [ -77.057590, 38.902539 ], [ -77.057655, 38.902539 ], [ -77.057612, 38.902639 ], [ -77.057548, 38.902756 ], [ -77.057376, 38.902957 ], [ -77.057269, 38.903107 ], [ -77.056839, 38.903608 ], [ -77.056818, 38.903641 ], [ -77.056775, 38.903658 ], [ -77.056711, 38.903725 ], [ -77.056646, 38.903775 ], [ -77.056561, 38.903825 ], [ -77.056518, 38.903892 ], [ -77.056453, 38.903908 ], [ -77.056389, 38.903992 ], [ -77.056196, 38.904209 ], [ -77.055938, 38.904543 ], [ -77.055917, 38.904526 ], [ -77.055788, 38.904493 ], [ -77.055509, 38.904409 ], [ -77.055273, 38.904309 ], [ -77.054780, 38.904142 ], [ -77.054758, 38.904126 ], [ -77.054093, 38.903908 ], [ -77.053771, 38.903792 ], [ -77.053299, 38.903641 ], [ -77.051411, 38.902973 ], [ -77.051260, 38.902890 ], [ -77.051196, 38.902840 ], [ -77.051153, 38.902806 ], [ -77.051003, 38.902689 ], [ -77.050724, 38.902740 ], [ -77.050745, 38.902673 ], [ -77.050767, 38.902606 ], [ -77.050767, 38.902589 ], [ -77.050767, 38.902522 ], [ -77.050788, 38.902456 ], [ -77.050745, 38.902322 ], [ -77.050745, 38.902305 ], [ -77.050703, 38.902255 ], [ -77.050660, 38.902205 ], [ -77.050617, 38.902155 ], [ -77.050552, 38.902105 ], [ -77.050531, 38.902088 ], [ -77.050488, 38.902072 ], [ -77.050402, 38.902038 ], [ -77.050359, 38.902021 ], [ -77.050273, 38.902005 ], [ -77.050188, 38.901988 ], [ -77.050123, 38.901988 ], [ -77.050123, 38.901237 ], [ -77.050123, 38.900836 ], [ -77.050123, 38.900819 ], [ -77.050123, 38.900786 ], [ -77.050123, 38.900769 ], [ -77.050123, 38.900702 ], [ -77.050123, 38.900652 ], [ -77.050123, 38.900635 ], [ -77.050123, 38.900502 ], [ -77.050123, 38.900418 ], [ -77.050123, 38.900335 ], [ -77.050123, 38.900285 ], [ -77.050123, 38.900251 ], [ -77.050123, 38.900168 ], [ -77.050123, 38.900084 ], [ -77.050123, 38.900001 ], [ -77.050123, 38.899851 ], [ -77.050123, 38.899801 ], [ -77.050123, 38.899734 ], [ -77.050123, 38.899650 ], [ -77.050123, 38.899600 ] ] ], [ [ [ -77.048793, 38.909636 ], [ -77.048793, 38.908567 ], [ -77.048793, 38.908484 ], [ -77.048793, 38.908150 ], [ -77.048793, 38.907899 ], [ -77.048793, 38.907749 ], [ -77.048793, 38.907231 ], [ -77.049029, 38.907231 ], [ -77.049608, 38.907248 ], [ -77.050102, 38.907248 ], [ -77.050209, 38.907248 ], [ -77.050617, 38.907248 ], [ -77.051411, 38.907248 ], [ -77.051389, 38.907148 ], [ -77.051389, 38.906814 ], [ -77.051389, 38.906179 ], [ -77.051389, 38.905411 ], [ -77.051411, 38.905261 ], [ -77.051411, 38.905127 ], [ -77.051411, 38.905111 ], [ -77.051411, 38.904560 ], [ -77.051411, 38.904443 ], [ -77.051411, 38.904409 ], [ -77.051411, 38.904226 ], [ -77.051411, 38.903825 ], [ -77.051411, 38.903741 ], [ -77.051411, 38.903140 ], [ -77.051411, 38.902973 ], [ -77.053299, 38.903641 ], [ -77.053771, 38.903792 ], [ -77.054093, 38.903908 ], [ -77.054758, 38.904126 ], [ -77.054780, 38.904142 ], [ -77.055273, 38.904309 ], [ -77.055509, 38.904409 ], [ -77.055788, 38.904493 ], [ -77.055917, 38.904526 ], [ -77.055938, 38.904543 ], [ -77.055852, 38.904677 ], [ -77.055702, 38.904827 ], [ -77.055595, 38.905011 ], [ -77.055423, 38.905244 ], [ -77.055209, 38.905628 ], [ -77.055037, 38.905929 ], [ -77.054822, 38.906346 ], [ -77.054651, 38.906714 ], [ -77.054543, 38.907048 ], [ -77.054501, 38.907098 ], [ -77.054458, 38.907215 ], [ -77.054307, 38.907498 ], [ -77.054200, 38.907649 ], [ -77.054007, 38.907816 ], [ -77.053835, 38.907983 ], [ -77.053685, 38.908216 ], [ -77.053556, 38.908434 ], [ -77.053385, 38.908550 ], [ -77.053127, 38.908701 ], [ -77.052934, 38.908784 ], [ -77.052805, 38.908818 ], [ -77.052698, 38.908818 ], [ -77.052526, 38.908834 ], [ -77.052076, 38.908801 ], [ -77.051561, 38.908734 ], [ -77.051046, 38.908818 ], [ -77.050681, 38.908918 ], [ -77.050402, 38.909051 ], [ -77.050231, 38.909185 ], [ -77.050102, 38.909369 ], [ -77.050059, 38.909485 ], [ -77.050080, 38.909636 ], [ -77.049973, 38.909636 ], [ -77.049522, 38.909636 ], [ -77.049329, 38.909636 ], [ -77.048900, 38.909636 ], [ -77.048793, 38.909636 ] ] ], [ [ [ -77.050531, 38.902088 ], [ -77.050552, 38.902105 ], [ -77.050617, 38.902155 ], [ -77.050660, 38.902205 ], [ -77.050703, 38.902255 ], [ -77.050745, 38.902305 ], [ -77.050745, 38.902322 ], [ -77.050788, 38.902456 ], [ -77.050767, 38.902522 ], [ -77.050767, 38.902589 ], [ -77.050767, 38.902606 ], [ -77.050745, 38.902673 ], [ -77.050724, 38.902740 ], [ -77.051003, 38.902689 ], [ -77.051153, 38.902806 ], [ -77.051196, 38.902840 ], [ -77.051260, 38.902890 ], [ -77.051411, 38.902973 ], [ -77.051411, 38.903140 ], [ -77.051411, 38.903741 ], [ -77.051411, 38.903825 ], [ -77.051411, 38.904226 ], [ -77.051411, 38.904409 ], [ -77.051411, 38.904443 ], [ -77.051411, 38.904560 ], [ -77.051411, 38.905111 ], [ -77.051411, 38.905127 ], [ -77.051411, 38.905261 ], [ -77.051389, 38.905411 ], [ -77.051389, 38.906179 ], [ -77.051389, 38.906814 ], [ -77.051389, 38.907148 ], [ -77.051411, 38.907248 ], [ -77.050617, 38.907248 ], [ -77.050209, 38.907248 ], [ -77.050102, 38.907248 ], [ -77.049608, 38.907248 ], [ -77.049029, 38.907231 ], [ -77.048793, 38.907231 ], [ -77.048686, 38.907231 ], [ -77.048407, 38.907248 ], [ -77.048235, 38.907248 ], [ -77.047548, 38.907248 ], [ -77.047355, 38.907248 ], [ -77.047076, 38.907248 ], [ -77.046626, 38.907248 ], [ -77.046347, 38.907248 ], [ -77.045681, 38.907248 ], [ -77.045767, 38.907148 ], [ -77.046175, 38.906714 ], [ -77.046647, 38.906229 ], [ -77.046990, 38.905845 ], [ -77.047205, 38.905612 ], [ -77.047420, 38.905361 ], [ -77.047484, 38.905311 ], [ -77.047634, 38.905194 ], [ -77.047913, 38.904860 ], [ -77.048171, 38.904576 ], [ -77.048407, 38.904343 ], [ -77.048600, 38.904142 ], [ -77.048686, 38.904042 ], [ -77.048879, 38.903758 ], [ -77.048986, 38.903691 ], [ -77.049029, 38.903675 ], [ -77.049136, 38.903574 ], [ -77.049308, 38.903407 ], [ -77.049716, 38.902973 ], [ -77.049651, 38.902923 ], [ -77.049587, 38.902890 ], [ -77.049544, 38.902840 ], [ -77.049501, 38.902773 ], [ -77.049479, 38.902723 ], [ -77.049458, 38.902689 ], [ -77.049437, 38.902623 ], [ -77.049437, 38.902556 ], [ -77.049437, 38.902522 ], [ -77.049458, 38.902456 ], [ -77.049458, 38.902422 ], [ -77.049501, 38.902339 ], [ -77.049522, 38.902305 ], [ -77.049565, 38.902172 ], [ -77.049673, 38.902105 ], [ -77.049737, 38.902072 ], [ -77.049801, 38.902038 ], [ -77.049887, 38.902021 ], [ -77.049952, 38.902005 ], [ -77.050037, 38.901988 ], [ -77.050123, 38.901988 ], [ -77.050188, 38.901988 ], [ -77.050273, 38.902005 ], [ -77.050359, 38.902021 ], [ -77.050402, 38.902038 ], [ -77.050488, 38.902072 ], [ -77.050531, 38.902088 ] ] ], [ [ [ -77.057655, 38.902539 ], [ -77.057590, 38.902539 ], [ -77.057569, 38.902539 ], [ -77.056968, 38.902539 ], [ -77.056882, 38.902522 ], [ -77.056518, 38.902522 ], [ -77.056303, 38.902522 ], [ -77.056110, 38.902522 ], [ -77.055252, 38.902489 ], [ -77.054737, 38.902489 ], [ -77.054737, 38.902289 ], [ -77.054737, 38.902272 ], [ -77.054758, 38.901838 ], [ -77.054737, 38.901504 ], [ -77.054758, 38.901120 ], [ -77.054758, 38.901053 ], [ -77.054758, 38.900936 ], [ -77.054737, 38.900869 ], [ -77.054737, 38.900836 ], [ -77.054737, 38.900819 ], [ -77.054694, 38.900752 ], [ -77.054672, 38.900719 ], [ -77.054629, 38.900702 ], [ -77.054586, 38.900702 ], [ -77.054565, 38.900702 ], [ -77.054479, 38.900686 ], [ -77.054436, 38.900686 ], [ -77.054071, 38.900702 ], [ -77.053835, 38.900686 ], [ -77.053750, 38.900686 ], [ -77.053685, 38.900702 ], [ -77.053621, 38.900702 ], [ -77.053299, 38.900702 ], [ -77.053299, 38.900669 ], [ -77.053299, 38.900619 ], [ -77.053299, 38.900585 ], [ -77.053299, 38.900519 ], [ -77.053299, 38.900452 ], [ -77.053299, 38.900352 ], [ -77.053299, 38.900301 ], [ -77.053299, 38.900218 ], [ -77.053320, 38.900151 ], [ -77.053299, 38.900034 ], [ -77.053299, 38.899968 ], [ -77.053299, 38.899834 ], [ -77.053299, 38.899750 ], [ -77.053299, 38.899667 ], [ -77.053299, 38.899634 ], [ -77.053277, 38.899617 ], [ -77.053256, 38.899600 ], [ -77.053235, 38.899583 ], [ -77.053192, 38.899583 ], [ -77.053149, 38.899567 ], [ -77.053041, 38.899567 ], [ -77.052999, 38.899567 ], [ -77.052870, 38.899583 ], [ -77.052763, 38.899583 ], [ -77.052677, 38.899583 ], [ -77.052591, 38.899567 ], [ -77.052484, 38.899567 ], [ -77.052333, 38.899567 ], [ -77.052205, 38.899567 ], [ -77.051947, 38.899567 ], [ -77.051818, 38.899567 ], [ -77.051647, 38.899567 ], [ -77.051518, 38.899567 ], [ -77.051432, 38.899567 ], [ -77.051325, 38.899567 ], [ -77.051046, 38.899567 ], [ -77.050939, 38.899583 ], [ -77.050831, 38.899583 ], [ -77.050595, 38.899567 ], [ -77.050488, 38.899567 ], [ -77.050402, 38.899567 ], [ -77.050273, 38.899567 ], [ -77.050123, 38.899567 ], [ -77.050123, 38.899550 ], [ -77.050123, 38.899483 ], [ -77.050123, 38.899416 ], [ -77.050123, 38.899366 ], [ -77.050123, 38.899283 ], [ -77.050123, 38.899149 ], [ -77.050145, 38.898932 ], [ -77.050145, 38.898882 ], [ -77.050123, 38.898715 ], [ -77.050123, 38.898682 ], [ -77.050123, 38.898632 ], [ -77.050123, 38.898548 ], [ -77.050123, 38.898498 ], [ -77.050123, 38.898331 ], [ -77.050123, 38.898281 ], [ -77.050123, 38.898231 ], [ -77.050123, 38.898181 ], [ -77.050123, 38.898131 ], [ -77.050123, 38.898097 ], [ -77.050123, 38.898064 ], [ -77.050123, 38.898014 ], [ -77.050123, 38.897947 ], [ -77.050123, 38.897813 ], [ -77.050123, 38.897663 ], [ -77.050123, 38.897596 ], [ -77.050123, 38.897546 ], [ -77.050123, 38.897479 ], [ -77.050123, 38.897412 ], [ -77.050123, 38.897362 ], [ -77.050123, 38.897179 ], [ -77.050123, 38.897145 ], [ -77.050123, 38.897112 ], [ -77.050123, 38.897012 ], [ -77.050123, 38.896978 ], [ -77.050123, 38.896911 ], [ -77.050123, 38.896778 ], [ -77.050123, 38.896728 ], [ -77.050102, 38.896611 ], [ -77.050102, 38.896494 ], [ -77.050102, 38.896444 ], [ -77.050102, 38.896360 ], [ -77.050123, 38.896110 ], [ -77.050102, 38.896026 ], [ -77.051368, 38.895909 ], [ -77.051582, 38.895960 ], [ -77.051690, 38.895976 ], [ -77.052033, 38.896026 ], [ -77.052183, 38.896043 ], [ -77.052355, 38.896060 ], [ -77.052441, 38.896076 ], [ -77.052526, 38.896093 ], [ -77.052612, 38.896110 ], [ -77.052698, 38.896160 ], [ -77.052741, 38.896193 ], [ -77.052805, 38.896243 ], [ -77.052848, 38.896294 ], [ -77.052891, 38.896344 ], [ -77.052913, 38.896394 ], [ -77.052934, 38.896444 ], [ -77.052956, 38.896511 ], [ -77.052956, 38.896628 ], [ -77.052891, 38.896811 ], [ -77.052848, 38.896978 ], [ -77.052827, 38.897062 ], [ -77.052805, 38.897112 ], [ -77.052827, 38.897245 ], [ -77.052805, 38.897396 ], [ -77.052784, 38.897713 ], [ -77.052784, 38.897730 ], [ -77.052805, 38.897947 ], [ -77.052805, 38.898047 ], [ -77.052827, 38.898131 ], [ -77.052848, 38.898164 ], [ -77.052870, 38.898231 ], [ -77.052891, 38.898314 ], [ -77.052956, 38.898448 ], [ -77.053020, 38.898548 ], [ -77.053127, 38.898682 ], [ -77.053149, 38.898632 ], [ -77.053192, 38.898581 ], [ -77.053213, 38.898548 ], [ -77.053235, 38.898531 ], [ -77.053256, 38.898515 ], [ -77.053299, 38.898481 ], [ -77.053320, 38.898047 ], [ -77.053320, 38.897997 ], [ -77.053299, 38.897913 ], [ -77.053299, 38.897863 ], [ -77.053320, 38.897780 ], [ -77.053320, 38.897746 ], [ -77.053320, 38.897713 ], [ -77.053320, 38.897680 ], [ -77.053342, 38.897663 ], [ -77.053342, 38.897630 ], [ -77.053363, 38.897579 ], [ -77.053363, 38.897546 ], [ -77.053385, 38.897513 ], [ -77.053406, 38.897446 ], [ -77.053428, 38.897429 ], [ -77.053449, 38.897396 ], [ -77.053514, 38.897379 ], [ -77.053578, 38.897362 ], [ -77.053621, 38.897346 ], [ -77.053707, 38.897346 ], [ -77.053814, 38.897346 ], [ -77.054029, 38.897346 ], [ -77.054093, 38.897362 ], [ -77.054136, 38.897346 ], [ -77.054265, 38.897346 ], [ -77.054350, 38.897346 ], [ -77.054458, 38.897346 ], [ -77.054629, 38.897362 ], [ -77.054758, 38.897346 ], [ -77.054780, 38.897346 ], [ -77.054822, 38.897346 ], [ -77.054865, 38.897346 ], [ -77.054973, 38.897346 ], [ -77.054994, 38.897346 ], [ -77.055037, 38.897346 ], [ -77.055101, 38.897346 ], [ -77.055144, 38.897346 ], [ -77.055187, 38.897346 ], [ -77.055230, 38.897346 ], [ -77.055252, 38.897346 ], [ -77.055295, 38.897346 ], [ -77.055337, 38.897346 ], [ -77.055380, 38.897346 ], [ -77.055466, 38.897379 ], [ -77.055552, 38.897396 ], [ -77.055681, 38.897396 ], [ -77.055745, 38.897412 ], [ -77.055852, 38.897463 ], [ -77.055874, 38.897496 ], [ -77.055917, 38.897546 ], [ -77.055938, 38.897563 ], [ -77.055960, 38.897579 ], [ -77.055981, 38.897596 ], [ -77.056003, 38.897613 ], [ -77.056110, 38.897646 ], [ -77.056282, 38.897663 ], [ -77.056410, 38.897663 ], [ -77.056496, 38.897663 ], [ -77.056646, 38.897663 ], [ -77.056646, 38.897847 ], [ -77.056625, 38.898381 ], [ -77.056625, 38.898448 ], [ -77.056646, 38.898481 ], [ -77.056646, 38.898531 ], [ -77.056668, 38.898565 ], [ -77.056689, 38.898581 ], [ -77.056689, 38.898598 ], [ -77.056732, 38.898648 ], [ -77.056754, 38.898665 ], [ -77.056775, 38.898682 ], [ -77.056839, 38.898732 ], [ -77.056861, 38.898765 ], [ -77.056882, 38.898815 ], [ -77.057011, 38.898932 ], [ -77.057118, 38.899049 ], [ -77.057140, 38.899032 ], [ -77.057354, 38.899300 ], [ -77.057333, 38.899333 ], [ -77.057354, 38.899333 ], [ -77.057376, 38.899350 ], [ -77.057397, 38.899366 ], [ -77.057397, 38.899383 ], [ -77.057376, 38.899416 ], [ -77.057376, 38.899433 ], [ -77.057376, 38.899467 ], [ -77.057354, 38.899483 ], [ -77.057312, 38.899533 ], [ -77.057290, 38.899567 ], [ -77.057419, 38.899667 ], [ -77.057483, 38.899700 ], [ -77.057462, 38.899734 ], [ -77.057440, 38.899750 ], [ -77.057419, 38.899784 ], [ -77.057419, 38.899817 ], [ -77.057397, 38.899867 ], [ -77.057397, 38.899901 ], [ -77.057376, 38.899934 ], [ -77.057376, 38.900001 ], [ -77.057376, 38.900018 ], [ -77.057376, 38.900068 ], [ -77.057376, 38.900101 ], [ -77.057397, 38.900135 ], [ -77.057419, 38.900151 ], [ -77.057440, 38.900168 ], [ -77.057440, 38.900185 ], [ -77.057505, 38.900235 ], [ -77.057526, 38.900285 ], [ -77.057569, 38.900318 ], [ -77.057612, 38.900335 ], [ -77.057633, 38.900368 ], [ -77.057655, 38.900368 ], [ -77.057698, 38.900418 ], [ -77.057719, 38.900435 ], [ -77.057741, 38.900452 ], [ -77.057762, 38.900468 ], [ -77.057827, 38.900519 ], [ -77.057869, 38.900535 ], [ -77.057912, 38.900569 ], [ -77.057998, 38.900619 ], [ -77.058041, 38.900652 ], [ -77.058084, 38.900686 ], [ -77.058127, 38.900702 ], [ -77.058170, 38.900736 ], [ -77.058234, 38.900786 ], [ -77.058277, 38.900819 ], [ -77.058342, 38.900886 ], [ -77.058406, 38.900903 ], [ -77.058427, 38.900936 ], [ -77.058535, 38.901036 ], [ -77.058578, 38.901153 ], [ -77.058556, 38.901187 ], [ -77.058578, 38.901203 ], [ -77.058578, 38.901220 ], [ -77.058599, 38.901253 ], [ -77.058599, 38.901287 ], [ -77.058599, 38.901337 ], [ -77.058578, 38.901354 ], [ -77.058578, 38.901387 ], [ -77.058578, 38.901420 ], [ -77.058556, 38.901437 ], [ -77.058556, 38.901470 ], [ -77.058535, 38.901504 ], [ -77.058513, 38.901554 ], [ -77.058492, 38.901571 ], [ -77.058470, 38.901621 ], [ -77.058406, 38.901721 ], [ -77.058406, 38.901754 ], [ -77.058363, 38.901788 ], [ -77.058363, 38.901804 ], [ -77.058342, 38.901838 ], [ -77.058299, 38.901905 ], [ -77.058256, 38.901955 ], [ -77.058256, 38.901971 ], [ -77.058213, 38.902021 ], [ -77.058127, 38.902122 ], [ -77.058063, 38.902188 ], [ -77.058020, 38.902222 ], [ -77.057998, 38.902289 ], [ -77.057977, 38.902322 ], [ -77.057891, 38.902272 ], [ -77.057848, 38.902339 ], [ -77.057805, 38.902406 ], [ -77.057741, 38.902489 ], [ -77.057655, 38.902539 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010700", "GEOID": "11001010700", "NAME": "107", "NAMELSAD": "Census Tract 107", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 891588, "AWATER": 0, "INTPTLAT": "+38.9039988", "INTPTLON": "-077.0419809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.043900, 38.909135 ], [ -77.043858, 38.909118 ], [ -77.043815, 38.909101 ], [ -77.043750, 38.909068 ], [ -77.043686, 38.909051 ], [ -77.043643, 38.909051 ], [ -77.043579, 38.909035 ], [ -77.043514, 38.909035 ], [ -77.043471, 38.909018 ], [ -77.043428, 38.909018 ], [ -77.043407, 38.909018 ], [ -77.043343, 38.909035 ], [ -77.043278, 38.909035 ], [ -77.043235, 38.909051 ], [ -77.043192, 38.909051 ], [ -77.043107, 38.909085 ], [ -77.043021, 38.909118 ], [ -77.042956, 38.909152 ], [ -77.042935, 38.909168 ], [ -77.042913, 38.909168 ], [ -77.042871, 38.909202 ], [ -77.042828, 38.909235 ], [ -77.042806, 38.909252 ], [ -77.042785, 38.909285 ], [ -77.042742, 38.909318 ], [ -77.042742, 38.909352 ], [ -77.042720, 38.909385 ], [ -77.041669, 38.909035 ], [ -77.040210, 38.908517 ], [ -77.039931, 38.908417 ], [ -77.039480, 38.908267 ], [ -77.039201, 38.908166 ], [ -77.039073, 38.908116 ], [ -77.038493, 38.907916 ], [ -77.038150, 38.907799 ], [ -77.037785, 38.907682 ], [ -77.037656, 38.907632 ], [ -77.036862, 38.907348 ], [ -77.036927, 38.907248 ], [ -77.036862, 38.907131 ], [ -77.036819, 38.907098 ], [ -77.036819, 38.907081 ], [ -77.036798, 38.907064 ], [ -77.036777, 38.907064 ], [ -77.036712, 38.907031 ], [ -77.036691, 38.907031 ], [ -77.036648, 38.907014 ], [ -77.036605, 38.907014 ], [ -77.036519, 38.907014 ], [ -77.036519, 38.905645 ], [ -77.036541, 38.904994 ], [ -77.036541, 38.904309 ], [ -77.036541, 38.903858 ], [ -77.036541, 38.903741 ], [ -77.036541, 38.903441 ], [ -77.036541, 38.903090 ], [ -77.036541, 38.902522 ], [ -77.036541, 38.901637 ], [ -77.036541, 38.901337 ], [ -77.036541, 38.900853 ], [ -77.036541, 38.900719 ], [ -77.036541, 38.900201 ], [ -77.037957, 38.900201 ], [ -77.037935, 38.899934 ], [ -77.037935, 38.898748 ], [ -77.039244, 38.898748 ], [ -77.039459, 38.898815 ], [ -77.039652, 38.898882 ], [ -77.040231, 38.899082 ], [ -77.041175, 38.899416 ], [ -77.041690, 38.899600 ], [ -77.041798, 38.899617 ], [ -77.041883, 38.899650 ], [ -77.041991, 38.899684 ], [ -77.042334, 38.899801 ], [ -77.042785, 38.899968 ], [ -77.042892, 38.900001 ], [ -77.042935, 38.900018 ], [ -77.043192, 38.900101 ], [ -77.043450, 38.900201 ], [ -77.043600, 38.900251 ], [ -77.043664, 38.900268 ], [ -77.044780, 38.900669 ], [ -77.044888, 38.900702 ], [ -77.045038, 38.900752 ], [ -77.045295, 38.900836 ], [ -77.046154, 38.901153 ], [ -77.046390, 38.901237 ], [ -77.046647, 38.901320 ], [ -77.047055, 38.901454 ], [ -77.047935, 38.901771 ], [ -77.048256, 38.901871 ], [ -77.048836, 38.902088 ], [ -77.049372, 38.902289 ], [ -77.049565, 38.902172 ], [ -77.049522, 38.902305 ], [ -77.049501, 38.902339 ], [ -77.049458, 38.902422 ], [ -77.049458, 38.902456 ], [ -77.049437, 38.902522 ], [ -77.049437, 38.902556 ], [ -77.049437, 38.902623 ], [ -77.049458, 38.902689 ], [ -77.049479, 38.902723 ], [ -77.049501, 38.902773 ], [ -77.049544, 38.902840 ], [ -77.049587, 38.902890 ], [ -77.049651, 38.902923 ], [ -77.049716, 38.902973 ], [ -77.049308, 38.903407 ], [ -77.049136, 38.903574 ], [ -77.049029, 38.903675 ], [ -77.048986, 38.903691 ], [ -77.048879, 38.903758 ], [ -77.048686, 38.904042 ], [ -77.048600, 38.904142 ], [ -77.048407, 38.904343 ], [ -77.048171, 38.904576 ], [ -77.047913, 38.904860 ], [ -77.047634, 38.905194 ], [ -77.047484, 38.905311 ], [ -77.047420, 38.905361 ], [ -77.047205, 38.905612 ], [ -77.046990, 38.905845 ], [ -77.046647, 38.906229 ], [ -77.046175, 38.906714 ], [ -77.045767, 38.907148 ], [ -77.045681, 38.907248 ], [ -77.045596, 38.907332 ], [ -77.045338, 38.907599 ], [ -77.044995, 38.907983 ], [ -77.044909, 38.908066 ], [ -77.044673, 38.908333 ], [ -77.044437, 38.908567 ], [ -77.044201, 38.908834 ], [ -77.044137, 38.908884 ], [ -77.043900, 38.909135 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010800", "GEOID": "11001010800", "NAME": "108", "NAMELSAD": "Census Tract 108", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 661580, "AWATER": 0, "INTPTLAT": "+38.8973521", "INTPTLON": "-077.0446120" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.050123, 38.901988 ], [ -77.050037, 38.901988 ], [ -77.049952, 38.902005 ], [ -77.049887, 38.902021 ], [ -77.049801, 38.902038 ], [ -77.049737, 38.902072 ], [ -77.049673, 38.902105 ], [ -77.049565, 38.902172 ], [ -77.049372, 38.902289 ], [ -77.048836, 38.902088 ], [ -77.048256, 38.901871 ], [ -77.047935, 38.901771 ], [ -77.047055, 38.901454 ], [ -77.046647, 38.901320 ], [ -77.046390, 38.901237 ], [ -77.046154, 38.901153 ], [ -77.045295, 38.900836 ], [ -77.045038, 38.900752 ], [ -77.044888, 38.900702 ], [ -77.044780, 38.900669 ], [ -77.043664, 38.900268 ], [ -77.043600, 38.900251 ], [ -77.043450, 38.900201 ], [ -77.043192, 38.900101 ], [ -77.042935, 38.900018 ], [ -77.042892, 38.900001 ], [ -77.042785, 38.899968 ], [ -77.042334, 38.899801 ], [ -77.041991, 38.899684 ], [ -77.041883, 38.899650 ], [ -77.041798, 38.899617 ], [ -77.041690, 38.899600 ], [ -77.041175, 38.899416 ], [ -77.040231, 38.899082 ], [ -77.039652, 38.898882 ], [ -77.039459, 38.898815 ], [ -77.039459, 38.898632 ], [ -77.039459, 38.898314 ], [ -77.039459, 38.898231 ], [ -77.039459, 38.898164 ], [ -77.039459, 38.897830 ], [ -77.039480, 38.897463 ], [ -77.039459, 38.897346 ], [ -77.039459, 38.897262 ], [ -77.039459, 38.896928 ], [ -77.039459, 38.896611 ], [ -77.039459, 38.896394 ], [ -77.039459, 38.896294 ], [ -77.039459, 38.895843 ], [ -77.039459, 38.895542 ], [ -77.039459, 38.895392 ], [ -77.039459, 38.895292 ], [ -77.039459, 38.894824 ], [ -77.039459, 38.894523 ], [ -77.039459, 38.894340 ], [ -77.039459, 38.893922 ], [ -77.039459, 38.893638 ], [ -77.039459, 38.893605 ], [ -77.039459, 38.893521 ], [ -77.039480, 38.892102 ], [ -77.040660, 38.892102 ], [ -77.040703, 38.892118 ], [ -77.040725, 38.892102 ], [ -77.040746, 38.892118 ], [ -77.040789, 38.892118 ], [ -77.040811, 38.892135 ], [ -77.040832, 38.892152 ], [ -77.040854, 38.892152 ], [ -77.040875, 38.892169 ], [ -77.040918, 38.892202 ], [ -77.041068, 38.892302 ], [ -77.041583, 38.892569 ], [ -77.041647, 38.892603 ], [ -77.041733, 38.892636 ], [ -77.041883, 38.892703 ], [ -77.041969, 38.892753 ], [ -77.043192, 38.893371 ], [ -77.043471, 38.893505 ], [ -77.043922, 38.893755 ], [ -77.044072, 38.893855 ], [ -77.044544, 38.894106 ], [ -77.044759, 38.894223 ], [ -77.045081, 38.894440 ], [ -77.045209, 38.894523 ], [ -77.045295, 38.894590 ], [ -77.045510, 38.894707 ], [ -77.046669, 38.895308 ], [ -77.047377, 38.895676 ], [ -77.047420, 38.895709 ], [ -77.047613, 38.895809 ], [ -77.048020, 38.896010 ], [ -77.048128, 38.896010 ], [ -77.048278, 38.896026 ], [ -77.048492, 38.896026 ], [ -77.048600, 38.896026 ], [ -77.048793, 38.896010 ], [ -77.050102, 38.896026 ], [ -77.050123, 38.896110 ], [ -77.050102, 38.896360 ], [ -77.050102, 38.896444 ], [ -77.050102, 38.896494 ], [ -77.050102, 38.896611 ], [ -77.050123, 38.896728 ], [ -77.050123, 38.896778 ], [ -77.050123, 38.896911 ], [ -77.050123, 38.896978 ], [ -77.050123, 38.897012 ], [ -77.050123, 38.897112 ], [ -77.050123, 38.897145 ], [ -77.050123, 38.897179 ], [ -77.050123, 38.897362 ], [ -77.050123, 38.897412 ], [ -77.050123, 38.897479 ], [ -77.050123, 38.897546 ], [ -77.050123, 38.897596 ], [ -77.050123, 38.897663 ], [ -77.050123, 38.897813 ], [ -77.050123, 38.897947 ], [ -77.050123, 38.898014 ], [ -77.050123, 38.898064 ], [ -77.050123, 38.898097 ], [ -77.050123, 38.898131 ], [ -77.050123, 38.898181 ], [ -77.050123, 38.898231 ], [ -77.050123, 38.898281 ], [ -77.050123, 38.898331 ], [ -77.050123, 38.898498 ], [ -77.050123, 38.898548 ], [ -77.050123, 38.898632 ], [ -77.050123, 38.898682 ], [ -77.050123, 38.898715 ], [ -77.050145, 38.898882 ], [ -77.050145, 38.898932 ], [ -77.050123, 38.899149 ], [ -77.050123, 38.899283 ], [ -77.050123, 38.899366 ], [ -77.050123, 38.899416 ], [ -77.050123, 38.899483 ], [ -77.050123, 38.899550 ], [ -77.050123, 38.899567 ], [ -77.050123, 38.899600 ], [ -77.050123, 38.899650 ], [ -77.050123, 38.899734 ], [ -77.050123, 38.899801 ], [ -77.050123, 38.899851 ], [ -77.050123, 38.900001 ], [ -77.050123, 38.900084 ], [ -77.050123, 38.900168 ], [ -77.050123, 38.900251 ], [ -77.050123, 38.900285 ], [ -77.050123, 38.900335 ], [ -77.050123, 38.900418 ], [ -77.050123, 38.900502 ], [ -77.050123, 38.900635 ], [ -77.050123, 38.900652 ], [ -77.050123, 38.900702 ], [ -77.050123, 38.900769 ], [ -77.050123, 38.900786 ], [ -77.050123, 38.900819 ], [ -77.050123, 38.900836 ], [ -77.050123, 38.901237 ], [ -77.050123, 38.901988 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002001", "GEOID": "11001002001", "NAME": "20.01", "NAMELSAD": "Census Tract 20.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 632724, "AWATER": 1132, "INTPTLAT": "+38.9597034", "INTPTLON": "-077.0351061" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.029009, 38.960744 ], [ -77.029245, 38.960543 ], [ -77.029481, 38.960326 ], [ -77.029502, 38.960293 ], [ -77.029524, 38.960276 ], [ -77.029567, 38.960260 ], [ -77.029610, 38.960226 ], [ -77.029631, 38.960226 ], [ -77.029674, 38.960226 ], [ -77.029696, 38.960210 ], [ -77.029974, 38.960026 ], [ -77.030017, 38.959993 ], [ -77.030103, 38.959926 ], [ -77.030125, 38.959926 ], [ -77.030146, 38.959876 ], [ -77.030361, 38.959642 ], [ -77.030597, 38.959375 ], [ -77.030725, 38.959242 ], [ -77.030811, 38.959142 ], [ -77.031155, 38.958741 ], [ -77.031369, 38.958458 ], [ -77.031476, 38.958341 ], [ -77.031562, 38.958224 ], [ -77.031713, 38.958057 ], [ -77.031798, 38.957957 ], [ -77.032034, 38.957690 ], [ -77.032228, 38.957440 ], [ -77.032313, 38.957356 ], [ -77.032378, 38.957273 ], [ -77.032506, 38.957106 ], [ -77.032571, 38.957056 ], [ -77.032657, 38.956939 ], [ -77.032700, 38.956889 ], [ -77.032936, 38.956606 ], [ -77.032979, 38.956572 ], [ -77.033172, 38.956355 ], [ -77.033408, 38.956188 ], [ -77.033751, 38.955654 ], [ -77.033772, 38.955621 ], [ -77.034202, 38.955137 ], [ -77.034588, 38.954653 ], [ -77.035038, 38.954119 ], [ -77.035189, 38.953936 ], [ -77.035596, 38.953469 ], [ -77.035875, 38.953135 ], [ -77.036026, 38.952935 ], [ -77.036111, 38.952851 ], [ -77.036240, 38.952701 ], [ -77.036412, 38.952534 ], [ -77.036390, 38.952951 ], [ -77.036390, 38.953368 ], [ -77.036390, 38.953919 ], [ -77.036412, 38.954436 ], [ -77.036390, 38.956205 ], [ -77.037034, 38.956205 ], [ -77.037141, 38.956205 ], [ -77.037270, 38.956205 ], [ -77.037442, 38.956188 ], [ -77.037485, 38.956188 ], [ -77.037592, 38.956172 ], [ -77.037678, 38.956155 ], [ -77.037742, 38.956138 ], [ -77.037828, 38.956138 ], [ -77.037914, 38.956105 ], [ -77.037935, 38.956105 ], [ -77.038085, 38.956072 ], [ -77.038128, 38.956055 ], [ -77.038214, 38.956038 ], [ -77.038321, 38.956038 ], [ -77.038407, 38.956038 ], [ -77.038450, 38.956038 ], [ -77.038536, 38.956038 ], [ -77.038579, 38.956055 ], [ -77.038622, 38.956055 ], [ -77.038665, 38.956072 ], [ -77.038708, 38.956072 ], [ -77.038794, 38.956105 ], [ -77.038815, 38.956105 ], [ -77.038901, 38.956138 ], [ -77.038944, 38.956155 ], [ -77.039051, 38.956222 ], [ -77.039094, 38.956222 ], [ -77.039158, 38.956255 ], [ -77.039223, 38.956289 ], [ -77.039266, 38.956322 ], [ -77.039330, 38.956355 ], [ -77.039373, 38.956389 ], [ -77.039416, 38.956439 ], [ -77.039459, 38.956472 ], [ -77.039502, 38.956522 ], [ -77.039545, 38.956572 ], [ -77.039566, 38.956622 ], [ -77.039609, 38.956672 ], [ -77.039630, 38.956722 ], [ -77.039652, 38.956789 ], [ -77.039673, 38.956839 ], [ -77.039716, 38.957039 ], [ -77.039738, 38.957089 ], [ -77.039781, 38.957240 ], [ -77.039802, 38.957290 ], [ -77.039802, 38.957340 ], [ -77.039802, 38.957373 ], [ -77.039802, 38.957423 ], [ -77.039802, 38.957490 ], [ -77.039802, 38.957507 ], [ -77.039802, 38.957590 ], [ -77.039802, 38.957640 ], [ -77.039781, 38.957707 ], [ -77.039781, 38.957740 ], [ -77.039759, 38.957790 ], [ -77.039738, 38.957824 ], [ -77.039695, 38.957940 ], [ -77.039673, 38.958007 ], [ -77.039652, 38.958041 ], [ -77.039652, 38.958057 ], [ -77.039630, 38.958141 ], [ -77.039609, 38.958191 ], [ -77.039587, 38.958291 ], [ -77.039587, 38.958324 ], [ -77.039587, 38.958408 ], [ -77.039587, 38.958458 ], [ -77.039587, 38.958641 ], [ -77.039587, 38.958725 ], [ -77.039587, 38.958775 ], [ -77.039566, 38.958808 ], [ -77.039566, 38.958858 ], [ -77.039566, 38.958892 ], [ -77.039545, 38.958925 ], [ -77.039523, 38.958958 ], [ -77.039502, 38.958992 ], [ -77.039480, 38.959025 ], [ -77.039459, 38.959042 ], [ -77.039437, 38.959075 ], [ -77.039394, 38.959092 ], [ -77.039373, 38.959125 ], [ -77.039330, 38.959142 ], [ -77.039309, 38.959159 ], [ -77.039266, 38.959175 ], [ -77.039244, 38.959192 ], [ -77.039201, 38.959192 ], [ -77.039158, 38.959209 ], [ -77.039094, 38.959209 ], [ -77.038965, 38.959209 ], [ -77.038944, 38.959209 ], [ -77.038901, 38.959209 ], [ -77.038879, 38.959225 ], [ -77.038836, 38.959225 ], [ -77.038815, 38.959242 ], [ -77.038794, 38.959259 ], [ -77.038751, 38.959275 ], [ -77.038729, 38.959275 ], [ -77.038708, 38.959292 ], [ -77.038665, 38.959325 ], [ -77.038643, 38.959359 ], [ -77.038622, 38.959392 ], [ -77.038600, 38.959442 ], [ -77.038600, 38.959476 ], [ -77.038600, 38.959509 ], [ -77.038600, 38.959542 ], [ -77.038600, 38.959592 ], [ -77.038622, 38.959626 ], [ -77.038643, 38.959659 ], [ -77.038665, 38.959692 ], [ -77.038708, 38.959726 ], [ -77.038751, 38.959776 ], [ -77.038794, 38.959793 ], [ -77.038815, 38.959809 ], [ -77.038879, 38.959843 ], [ -77.038922, 38.959859 ], [ -77.038987, 38.959876 ], [ -77.039008, 38.959893 ], [ -77.039094, 38.959909 ], [ -77.039115, 38.959909 ], [ -77.039158, 38.959926 ], [ -77.039201, 38.959926 ], [ -77.039266, 38.959943 ], [ -77.039309, 38.959943 ], [ -77.039416, 38.959943 ], [ -77.039459, 38.959943 ], [ -77.039480, 38.959959 ], [ -77.039523, 38.959959 ], [ -77.039545, 38.959976 ], [ -77.039566, 38.959976 ], [ -77.039609, 38.959993 ], [ -77.039630, 38.960009 ], [ -77.039695, 38.960026 ], [ -77.039738, 38.960076 ], [ -77.039781, 38.960093 ], [ -77.039802, 38.960126 ], [ -77.039824, 38.960160 ], [ -77.039845, 38.960176 ], [ -77.039931, 38.960276 ], [ -77.039952, 38.960293 ], [ -77.039974, 38.960310 ], [ -77.039995, 38.960343 ], [ -77.040017, 38.960360 ], [ -77.040081, 38.960410 ], [ -77.040102, 38.960427 ], [ -77.040145, 38.960443 ], [ -77.040210, 38.960477 ], [ -77.040253, 38.960493 ], [ -77.040317, 38.960510 ], [ -77.040360, 38.960527 ], [ -77.040446, 38.960543 ], [ -77.040875, 38.960627 ], [ -77.041154, 38.960694 ], [ -77.041197, 38.960710 ], [ -77.041583, 38.960744 ], [ -77.041712, 38.960744 ], [ -77.041755, 38.960710 ], [ -77.041798, 38.960660 ], [ -77.041841, 38.960643 ], [ -77.041883, 38.960627 ], [ -77.041905, 38.960593 ], [ -77.041991, 38.960543 ], [ -77.042120, 38.960427 ], [ -77.042184, 38.960393 ], [ -77.042270, 38.960443 ], [ -77.042527, 38.960593 ], [ -77.042742, 38.960744 ], [ -77.029009, 38.960744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002002", "GEOID": "11001002002", "NAME": "20.02", "NAMELSAD": "Census Tract 20.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 849376, "AWATER": 0, "INTPTLAT": "+38.9525009", "INTPTLON": "-077.0310824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.028043, 38.960744 ], [ -77.028108, 38.960026 ], [ -77.028151, 38.959342 ], [ -77.028215, 38.958708 ], [ -77.028215, 38.958508 ], [ -77.028236, 38.958341 ], [ -77.028236, 38.958291 ], [ -77.028236, 38.958124 ], [ -77.028236, 38.958041 ], [ -77.028236, 38.957957 ], [ -77.028215, 38.957807 ], [ -77.028215, 38.957640 ], [ -77.028215, 38.957573 ], [ -77.028193, 38.957490 ], [ -77.028172, 38.957273 ], [ -77.028151, 38.957173 ], [ -77.028129, 38.957023 ], [ -77.028108, 38.956856 ], [ -77.028065, 38.956522 ], [ -77.028022, 38.956222 ], [ -77.028000, 38.956122 ], [ -77.028000, 38.956005 ], [ -77.027957, 38.955705 ], [ -77.027893, 38.955221 ], [ -77.027872, 38.955154 ], [ -77.027850, 38.955037 ], [ -77.027829, 38.954753 ], [ -77.027786, 38.954503 ], [ -77.027721, 38.954086 ], [ -77.027721, 38.954003 ], [ -77.027571, 38.952901 ], [ -77.027550, 38.952818 ], [ -77.027550, 38.952801 ], [ -77.027421, 38.951867 ], [ -77.027400, 38.951616 ], [ -77.027271, 38.950799 ], [ -77.027271, 38.950715 ], [ -77.027249, 38.950632 ], [ -77.027249, 38.950532 ], [ -77.027228, 38.950448 ], [ -77.027228, 38.950365 ], [ -77.027206, 38.950281 ], [ -77.027164, 38.949931 ], [ -77.027121, 38.949731 ], [ -77.027078, 38.949330 ], [ -77.027035, 38.949080 ], [ -77.027035, 38.948996 ], [ -77.027013, 38.948830 ], [ -77.026992, 38.948763 ], [ -77.026949, 38.948462 ], [ -77.026949, 38.948396 ], [ -77.026949, 38.948329 ], [ -77.026927, 38.948262 ], [ -77.026799, 38.947378 ], [ -77.026777, 38.947194 ], [ -77.026670, 38.946393 ], [ -77.026584, 38.946126 ], [ -77.027013, 38.946126 ], [ -77.027464, 38.946126 ], [ -77.027786, 38.946126 ], [ -77.028215, 38.946126 ], [ -77.028923, 38.946126 ], [ -77.029631, 38.946126 ], [ -77.029824, 38.946393 ], [ -77.029846, 38.946410 ], [ -77.030039, 38.946593 ], [ -77.030232, 38.946777 ], [ -77.030425, 38.946977 ], [ -77.030683, 38.947227 ], [ -77.030704, 38.947244 ], [ -77.030790, 38.947344 ], [ -77.030962, 38.947528 ], [ -77.031026, 38.947611 ], [ -77.031069, 38.947645 ], [ -77.031090, 38.947661 ], [ -77.031112, 38.947678 ], [ -77.031455, 38.948012 ], [ -77.031627, 38.948179 ], [ -77.031691, 38.948229 ], [ -77.032721, 38.948262 ], [ -77.032850, 38.948262 ], [ -77.033086, 38.948262 ], [ -77.033751, 38.948262 ], [ -77.034416, 38.948262 ], [ -77.034502, 38.948262 ], [ -77.035382, 38.948262 ], [ -77.036283, 38.948262 ], [ -77.036412, 38.948262 ], [ -77.036412, 38.949731 ], [ -77.036412, 38.950515 ], [ -77.036412, 38.950799 ], [ -77.036412, 38.951867 ], [ -77.036412, 38.952534 ], [ -77.036240, 38.952701 ], [ -77.036111, 38.952851 ], [ -77.036026, 38.952935 ], [ -77.035875, 38.953135 ], [ -77.035596, 38.953469 ], [ -77.035189, 38.953936 ], [ -77.035038, 38.954119 ], [ -77.034588, 38.954653 ], [ -77.034202, 38.955137 ], [ -77.033772, 38.955621 ], [ -77.033751, 38.955654 ], [ -77.033408, 38.956188 ], [ -77.033172, 38.956355 ], [ -77.032979, 38.956572 ], [ -77.032936, 38.956606 ], [ -77.032700, 38.956889 ], [ -77.032657, 38.956939 ], [ -77.032571, 38.957056 ], [ -77.032506, 38.957106 ], [ -77.032378, 38.957273 ], [ -77.032313, 38.957356 ], [ -77.032228, 38.957440 ], [ -77.032034, 38.957690 ], [ -77.031798, 38.957957 ], [ -77.031713, 38.958057 ], [ -77.031562, 38.958224 ], [ -77.031476, 38.958341 ], [ -77.031369, 38.958458 ], [ -77.031155, 38.958741 ], [ -77.030811, 38.959142 ], [ -77.030725, 38.959242 ], [ -77.030597, 38.959375 ], [ -77.030361, 38.959642 ], [ -77.030146, 38.959876 ], [ -77.030125, 38.959926 ], [ -77.030103, 38.959926 ], [ -77.030017, 38.959993 ], [ -77.029974, 38.960026 ], [ -77.029696, 38.960210 ], [ -77.029674, 38.960226 ], [ -77.029631, 38.960226 ], [ -77.029610, 38.960226 ], [ -77.029567, 38.960260 ], [ -77.029524, 38.960276 ], [ -77.029502, 38.960293 ], [ -77.029481, 38.960326 ], [ -77.029245, 38.960543 ], [ -77.029009, 38.960744 ], [ -77.028043, 38.960744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002501", "GEOID": "11001002501", "NAME": "25.01", "NAMELSAD": "Census Tract 25.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 543460, "AWATER": 0, "INTPTLAT": "+38.9446515", "INTPTLON": "-077.0317348" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.025511, 38.941870 ], [ -77.025661, 38.941870 ], [ -77.025812, 38.941870 ], [ -77.025940, 38.941870 ], [ -77.026134, 38.941870 ], [ -77.026627, 38.941870 ], [ -77.027142, 38.941870 ], [ -77.027593, 38.941870 ], [ -77.029073, 38.941870 ], [ -77.029696, 38.941870 ], [ -77.030318, 38.941870 ], [ -77.030768, 38.941870 ], [ -77.031412, 38.941870 ], [ -77.032056, 38.941870 ], [ -77.032592, 38.941870 ], [ -77.032721, 38.941870 ], [ -77.032871, 38.941870 ], [ -77.033536, 38.941870 ], [ -77.033944, 38.941870 ], [ -77.035232, 38.941870 ], [ -77.036433, 38.941870 ], [ -77.036412, 38.942938 ], [ -77.036433, 38.943990 ], [ -77.036412, 38.945058 ], [ -77.036412, 38.946126 ], [ -77.036433, 38.947244 ], [ -77.036412, 38.947394 ], [ -77.036412, 38.948262 ], [ -77.036283, 38.948262 ], [ -77.035382, 38.948262 ], [ -77.034502, 38.948262 ], [ -77.034416, 38.948262 ], [ -77.033751, 38.948262 ], [ -77.033086, 38.948262 ], [ -77.032850, 38.948262 ], [ -77.032721, 38.948262 ], [ -77.031691, 38.948229 ], [ -77.031627, 38.948179 ], [ -77.031455, 38.948012 ], [ -77.031112, 38.947678 ], [ -77.031090, 38.947661 ], [ -77.031069, 38.947645 ], [ -77.031026, 38.947611 ], [ -77.030962, 38.947528 ], [ -77.030790, 38.947344 ], [ -77.030704, 38.947244 ], [ -77.030683, 38.947227 ], [ -77.030425, 38.946977 ], [ -77.030232, 38.946777 ], [ -77.030039, 38.946593 ], [ -77.029846, 38.946410 ], [ -77.029824, 38.946393 ], [ -77.029631, 38.946126 ], [ -77.028923, 38.946126 ], [ -77.028215, 38.946126 ], [ -77.027786, 38.946126 ], [ -77.027464, 38.946126 ], [ -77.027013, 38.946126 ], [ -77.026584, 38.946126 ], [ -77.026477, 38.945659 ], [ -77.026348, 38.945158 ], [ -77.026327, 38.945058 ], [ -77.026305, 38.944975 ], [ -77.026155, 38.944407 ], [ -77.026091, 38.944107 ], [ -77.026069, 38.944073 ], [ -77.026048, 38.943990 ], [ -77.026026, 38.943906 ], [ -77.025898, 38.943389 ], [ -77.025769, 38.942922 ], [ -77.025704, 38.942655 ], [ -77.025619, 38.942288 ], [ -77.025533, 38.941971 ], [ -77.025511, 38.941870 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002101", "GEOID": "11001002101", "NAME": "21.01", "NAMELSAD": "Census Tract 21.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 600992, "AWATER": 0, "INTPTLAT": "+38.9559119", "INTPTLON": "-077.0241312" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027292, 38.960744 ], [ -77.027056, 38.960660 ], [ -77.026777, 38.960577 ], [ -77.025940, 38.960310 ], [ -77.025275, 38.960093 ], [ -77.024310, 38.959776 ], [ -77.024181, 38.959726 ], [ -77.024095, 38.959692 ], [ -77.023880, 38.959626 ], [ -77.023516, 38.959509 ], [ -77.023151, 38.959392 ], [ -77.022958, 38.959325 ], [ -77.022443, 38.959159 ], [ -77.022336, 38.959108 ], [ -77.022057, 38.959025 ], [ -77.021692, 38.958908 ], [ -77.021327, 38.958791 ], [ -77.021155, 38.958725 ], [ -77.020833, 38.958741 ], [ -77.020769, 38.958741 ], [ -77.020619, 38.958741 ], [ -77.020469, 38.958741 ], [ -77.020361, 38.958741 ], [ -77.020211, 38.958725 ], [ -77.019889, 38.958725 ], [ -77.019889, 38.958708 ], [ -77.019932, 38.958458 ], [ -77.019954, 38.958341 ], [ -77.019954, 38.958308 ], [ -77.019954, 38.958241 ], [ -77.019954, 38.958174 ], [ -77.019954, 38.958074 ], [ -77.019954, 38.957907 ], [ -77.019954, 38.957807 ], [ -77.019932, 38.957523 ], [ -77.019932, 38.957440 ], [ -77.019889, 38.956439 ], [ -77.019868, 38.956355 ], [ -77.019825, 38.955371 ], [ -77.019825, 38.955137 ], [ -77.019804, 38.954937 ], [ -77.019804, 38.954670 ], [ -77.019782, 38.954303 ], [ -77.019761, 38.953919 ], [ -77.019718, 38.953135 ], [ -77.019718, 38.953068 ], [ -77.019696, 38.952467 ], [ -77.019675, 38.952150 ], [ -77.019675, 38.952084 ], [ -77.019889, 38.952067 ], [ -77.020769, 38.952050 ], [ -77.021177, 38.952034 ], [ -77.021563, 38.952034 ], [ -77.021842, 38.952017 ], [ -77.022099, 38.952017 ], [ -77.022207, 38.952017 ], [ -77.022958, 38.951983 ], [ -77.023730, 38.951967 ], [ -77.023816, 38.951967 ], [ -77.023923, 38.951967 ], [ -77.023988, 38.951967 ], [ -77.024610, 38.951950 ], [ -77.024760, 38.951933 ], [ -77.024910, 38.951933 ], [ -77.025297, 38.951917 ], [ -77.025554, 38.951917 ], [ -77.026219, 38.951900 ], [ -77.027271, 38.951867 ], [ -77.027421, 38.951867 ], [ -77.027550, 38.952801 ], [ -77.027550, 38.952818 ], [ -77.027571, 38.952901 ], [ -77.027721, 38.954003 ], [ -77.027721, 38.954086 ], [ -77.027786, 38.954503 ], [ -77.027829, 38.954753 ], [ -77.027850, 38.955037 ], [ -77.027872, 38.955154 ], [ -77.027893, 38.955221 ], [ -77.027957, 38.955705 ], [ -77.028000, 38.956005 ], [ -77.028000, 38.956122 ], [ -77.028022, 38.956222 ], [ -77.028065, 38.956522 ], [ -77.028108, 38.956856 ], [ -77.028129, 38.957023 ], [ -77.028151, 38.957173 ], [ -77.028172, 38.957273 ], [ -77.028193, 38.957490 ], [ -77.028215, 38.957573 ], [ -77.028215, 38.957640 ], [ -77.028215, 38.957807 ], [ -77.028236, 38.957957 ], [ -77.028236, 38.958041 ], [ -77.028236, 38.958124 ], [ -77.028236, 38.958291 ], [ -77.028236, 38.958341 ], [ -77.028215, 38.958508 ], [ -77.028215, 38.958708 ], [ -77.028151, 38.959342 ], [ -77.028108, 38.960026 ], [ -77.028043, 38.960744 ], [ -77.027292, 38.960744 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002102", "GEOID": "11001002102", "NAME": "21.02", "NAMELSAD": "Census Tract 21.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 725975, "AWATER": 0, "INTPTLAT": "+38.9557854", "INTPTLON": "-077.0142356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009246, 38.960193 ], [ -77.009182, 38.960043 ], [ -77.009161, 38.959943 ], [ -77.009096, 38.959809 ], [ -77.009096, 38.959759 ], [ -77.009053, 38.959692 ], [ -77.009053, 38.959642 ], [ -77.009053, 38.959609 ], [ -77.009053, 38.959576 ], [ -77.009032, 38.959559 ], [ -77.009053, 38.959442 ], [ -77.009053, 38.959142 ], [ -77.009053, 38.958892 ], [ -77.009053, 38.958808 ], [ -77.009032, 38.958725 ], [ -77.009032, 38.958641 ], [ -77.009032, 38.958508 ], [ -77.009032, 38.958391 ], [ -77.009053, 38.957657 ], [ -77.009032, 38.957306 ], [ -77.009032, 38.956856 ], [ -77.009032, 38.956589 ], [ -77.009032, 38.956188 ], [ -77.009053, 38.955705 ], [ -77.009032, 38.955304 ], [ -77.009032, 38.954820 ], [ -77.009032, 38.954620 ], [ -77.009032, 38.954537 ], [ -77.009032, 38.954470 ], [ -77.009032, 38.954103 ], [ -77.009053, 38.953786 ], [ -77.009032, 38.953535 ], [ -77.009032, 38.953452 ], [ -77.009053, 38.953335 ], [ -77.009053, 38.953118 ], [ -77.009053, 38.953035 ], [ -77.009053, 38.952968 ], [ -77.009032, 38.952851 ], [ -77.009032, 38.952818 ], [ -77.009032, 38.952751 ], [ -77.009010, 38.952517 ], [ -77.009010, 38.952401 ], [ -77.009139, 38.952401 ], [ -77.009482, 38.952401 ], [ -77.010126, 38.952367 ], [ -77.010663, 38.952367 ], [ -77.010684, 38.952351 ], [ -77.011306, 38.952334 ], [ -77.012272, 38.952317 ], [ -77.012422, 38.952300 ], [ -77.013302, 38.952284 ], [ -77.013366, 38.952284 ], [ -77.013452, 38.952267 ], [ -77.015276, 38.952217 ], [ -77.015769, 38.952200 ], [ -77.015877, 38.952200 ], [ -77.016070, 38.952200 ], [ -77.016113, 38.952200 ], [ -77.016199, 38.952184 ], [ -77.016263, 38.952184 ], [ -77.016284, 38.952184 ], [ -77.016327, 38.952184 ], [ -77.016456, 38.952167 ], [ -77.016821, 38.952167 ], [ -77.017207, 38.952150 ], [ -77.017593, 38.952134 ], [ -77.018323, 38.952117 ], [ -77.018967, 38.952100 ], [ -77.019353, 38.952084 ], [ -77.019567, 38.952084 ], [ -77.019675, 38.952084 ], [ -77.019675, 38.952150 ], [ -77.019696, 38.952467 ], [ -77.019718, 38.953068 ], [ -77.019718, 38.953135 ], [ -77.019761, 38.953919 ], [ -77.019782, 38.954303 ], [ -77.019804, 38.954670 ], [ -77.019804, 38.954937 ], [ -77.019825, 38.955137 ], [ -77.019825, 38.955371 ], [ -77.019868, 38.956355 ], [ -77.019889, 38.956439 ], [ -77.019932, 38.957440 ], [ -77.019932, 38.957523 ], [ -77.019954, 38.957807 ], [ -77.019954, 38.957907 ], [ -77.019954, 38.958074 ], [ -77.019954, 38.958174 ], [ -77.019954, 38.958241 ], [ -77.019954, 38.958308 ], [ -77.019954, 38.958341 ], [ -77.019932, 38.958458 ], [ -77.019889, 38.958708 ], [ -77.019889, 38.958725 ], [ -77.019653, 38.958725 ], [ -77.019310, 38.958741 ], [ -77.018774, 38.958725 ], [ -77.018495, 38.958741 ], [ -77.018173, 38.958741 ], [ -77.018023, 38.958741 ], [ -77.017808, 38.958725 ], [ -77.017422, 38.958741 ], [ -77.017100, 38.958741 ], [ -77.016993, 38.958741 ], [ -77.016907, 38.958741 ], [ -77.016671, 38.958741 ], [ -77.016370, 38.958725 ], [ -77.016156, 38.958725 ], [ -77.015190, 38.958725 ], [ -77.014761, 38.958725 ], [ -77.014096, 38.958725 ], [ -77.013667, 38.958725 ], [ -77.013602, 38.958725 ], [ -77.013409, 38.958725 ], [ -77.012315, 38.960193 ], [ -77.012229, 38.960176 ], [ -77.012186, 38.960176 ], [ -77.012165, 38.960160 ], [ -77.012122, 38.960160 ], [ -77.011886, 38.960160 ], [ -77.011607, 38.960160 ], [ -77.011242, 38.960160 ], [ -77.010963, 38.960160 ], [ -77.010555, 38.960160 ], [ -77.009418, 38.960160 ], [ -77.009354, 38.960160 ], [ -77.009246, 38.960193 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002201", "GEOID": "11001002201", "NAME": "22.01", "NAMELSAD": "Census Tract 22.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 415173, "AWATER": 0, "INTPTLAT": "+38.9491337", "INTPTLON": "-077.0232932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027421, 38.951867 ], [ -77.027271, 38.951867 ], [ -77.026219, 38.951900 ], [ -77.025554, 38.951917 ], [ -77.025297, 38.951917 ], [ -77.024910, 38.951933 ], [ -77.024760, 38.951933 ], [ -77.024610, 38.951950 ], [ -77.023988, 38.951967 ], [ -77.023923, 38.951967 ], [ -77.023816, 38.951967 ], [ -77.023730, 38.951967 ], [ -77.022958, 38.951983 ], [ -77.022207, 38.952017 ], [ -77.022099, 38.952017 ], [ -77.021842, 38.952017 ], [ -77.021563, 38.952034 ], [ -77.021177, 38.952034 ], [ -77.020769, 38.952050 ], [ -77.019889, 38.952067 ], [ -77.019675, 38.952084 ], [ -77.019632, 38.951016 ], [ -77.019610, 38.950465 ], [ -77.019589, 38.950398 ], [ -77.019589, 38.950248 ], [ -77.019589, 38.950031 ], [ -77.019567, 38.949948 ], [ -77.019567, 38.949914 ], [ -77.019567, 38.949631 ], [ -77.019546, 38.949397 ], [ -77.019546, 38.949213 ], [ -77.019546, 38.949130 ], [ -77.019525, 38.948813 ], [ -77.019503, 38.948462 ], [ -77.019482, 38.948145 ], [ -77.019460, 38.947645 ], [ -77.019460, 38.947394 ], [ -77.019460, 38.947311 ], [ -77.019417, 38.946326 ], [ -77.020233, 38.946310 ], [ -77.020748, 38.946293 ], [ -77.021091, 38.946276 ], [ -77.021220, 38.946276 ], [ -77.021413, 38.946276 ], [ -77.021821, 38.946260 ], [ -77.022529, 38.946243 ], [ -77.022700, 38.946226 ], [ -77.023258, 38.946209 ], [ -77.023537, 38.946209 ], [ -77.024159, 38.946193 ], [ -77.024910, 38.946176 ], [ -77.025275, 38.946159 ], [ -77.025833, 38.946143 ], [ -77.026412, 38.946126 ], [ -77.026584, 38.946126 ], [ -77.026670, 38.946393 ], [ -77.026777, 38.947194 ], [ -77.026799, 38.947378 ], [ -77.026927, 38.948262 ], [ -77.026949, 38.948329 ], [ -77.026949, 38.948396 ], [ -77.026949, 38.948462 ], [ -77.026992, 38.948763 ], [ -77.027013, 38.948830 ], [ -77.027035, 38.948996 ], [ -77.027035, 38.949080 ], [ -77.027078, 38.949330 ], [ -77.027121, 38.949731 ], [ -77.027164, 38.949931 ], [ -77.027206, 38.950281 ], [ -77.027228, 38.950365 ], [ -77.027228, 38.950448 ], [ -77.027249, 38.950532 ], [ -77.027249, 38.950632 ], [ -77.027271, 38.950715 ], [ -77.027271, 38.950799 ], [ -77.027400, 38.951616 ], [ -77.027421, 38.951867 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002301", "GEOID": "11001002301", "NAME": "23.01", "NAMELSAD": "Census Tract 23.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 407679, "AWATER": 0, "INTPTLAT": "+38.9425520", "INTPTLON": "-077.0165915" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.016070, 38.946426 ], [ -77.016006, 38.946393 ], [ -77.015705, 38.945776 ], [ -77.015662, 38.945726 ], [ -77.014740, 38.945392 ], [ -77.014225, 38.945191 ], [ -77.014096, 38.945141 ], [ -77.013581, 38.944924 ], [ -77.013495, 38.944891 ], [ -77.012615, 38.944390 ], [ -77.011843, 38.944407 ], [ -77.011671, 38.944407 ], [ -77.011650, 38.944407 ], [ -77.011628, 38.944407 ], [ -77.011607, 38.944390 ], [ -77.011585, 38.944374 ], [ -77.011542, 38.944324 ], [ -77.011564, 38.944307 ], [ -77.011607, 38.944274 ], [ -77.011671, 38.944240 ], [ -77.011757, 38.944157 ], [ -77.011843, 38.944090 ], [ -77.011843, 38.944073 ], [ -77.012014, 38.943923 ], [ -77.012143, 38.943823 ], [ -77.012165, 38.943806 ], [ -77.012186, 38.943756 ], [ -77.012208, 38.943723 ], [ -77.012401, 38.943289 ], [ -77.012422, 38.943222 ], [ -77.012444, 38.943189 ], [ -77.012572, 38.942938 ], [ -77.012594, 38.942872 ], [ -77.012637, 38.942805 ], [ -77.012680, 38.942755 ], [ -77.012722, 38.942705 ], [ -77.012744, 38.942671 ], [ -77.012808, 38.942588 ], [ -77.012873, 38.942521 ], [ -77.012980, 38.942421 ], [ -77.013130, 38.942271 ], [ -77.013302, 38.942137 ], [ -77.013409, 38.942054 ], [ -77.013516, 38.941954 ], [ -77.013752, 38.941720 ], [ -77.014182, 38.941303 ], [ -77.014246, 38.941236 ], [ -77.014375, 38.941086 ], [ -77.014568, 38.940836 ], [ -77.014611, 38.940752 ], [ -77.014847, 38.940402 ], [ -77.014997, 38.940135 ], [ -77.015083, 38.940001 ], [ -77.015190, 38.939851 ], [ -77.015190, 38.939818 ], [ -77.015212, 38.939801 ], [ -77.015254, 38.939751 ], [ -77.015426, 38.939617 ], [ -77.016242, 38.938883 ], [ -77.016456, 38.938699 ], [ -77.016542, 38.938616 ], [ -77.016864, 38.938315 ], [ -77.017186, 38.938032 ], [ -77.017207, 38.938015 ], [ -77.017272, 38.937965 ], [ -77.017336, 38.937915 ], [ -77.017400, 38.937881 ], [ -77.017443, 38.937865 ], [ -77.017508, 38.937815 ], [ -77.017593, 38.937781 ], [ -77.017636, 38.937765 ], [ -77.017722, 38.937731 ], [ -77.017765, 38.937715 ], [ -77.018044, 38.937648 ], [ -77.018237, 38.937598 ], [ -77.018344, 38.937564 ], [ -77.018452, 38.937531 ], [ -77.018752, 38.937464 ], [ -77.018881, 38.937431 ], [ -77.019031, 38.937397 ], [ -77.018988, 38.937481 ], [ -77.018988, 38.937531 ], [ -77.018988, 38.937598 ], [ -77.018988, 38.937648 ], [ -77.018988, 38.937715 ], [ -77.018988, 38.937765 ], [ -77.019031, 38.938833 ], [ -77.019053, 38.939283 ], [ -77.019095, 38.939918 ], [ -77.019117, 38.940318 ], [ -77.019138, 38.940652 ], [ -77.019138, 38.940986 ], [ -77.019160, 38.941370 ], [ -77.019203, 38.942054 ], [ -77.019203, 38.942187 ], [ -77.019224, 38.942571 ], [ -77.019246, 38.942571 ], [ -77.019331, 38.942571 ], [ -77.019396, 38.942571 ], [ -77.019460, 38.942588 ], [ -77.019546, 38.942621 ], [ -77.019610, 38.942638 ], [ -77.019675, 38.942671 ], [ -77.019739, 38.942722 ], [ -77.019782, 38.942755 ], [ -77.019825, 38.942788 ], [ -77.019846, 38.942838 ], [ -77.019889, 38.942872 ], [ -77.019911, 38.942922 ], [ -77.019932, 38.942972 ], [ -77.019932, 38.943022 ], [ -77.019954, 38.943072 ], [ -77.019954, 38.943105 ], [ -77.019954, 38.943172 ], [ -77.019932, 38.943206 ], [ -77.019932, 38.943256 ], [ -77.019911, 38.943289 ], [ -77.019889, 38.943339 ], [ -77.019868, 38.943372 ], [ -77.019846, 38.943406 ], [ -77.019825, 38.943439 ], [ -77.019782, 38.943473 ], [ -77.019739, 38.943506 ], [ -77.019696, 38.943539 ], [ -77.019653, 38.943573 ], [ -77.019589, 38.943606 ], [ -77.019546, 38.943623 ], [ -77.019482, 38.943639 ], [ -77.019439, 38.943656 ], [ -77.019353, 38.943673 ], [ -77.019267, 38.943673 ], [ -77.019289, 38.943823 ], [ -77.019289, 38.943873 ], [ -77.019289, 38.943923 ], [ -77.019310, 38.944190 ], [ -77.019310, 38.944524 ], [ -77.019331, 38.944724 ], [ -77.019353, 38.945258 ], [ -77.019374, 38.945592 ], [ -77.019374, 38.945709 ], [ -77.019396, 38.945959 ], [ -77.019417, 38.946326 ], [ -77.018495, 38.946360 ], [ -77.017486, 38.946393 ], [ -77.017336, 38.946393 ], [ -77.017100, 38.946393 ], [ -77.016799, 38.946410 ], [ -77.016649, 38.946410 ], [ -77.016070, 38.946426 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002504", "GEOID": "11001002504", "NAME": "25.04", "NAMELSAD": "Census Tract 25.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 311721, "AWATER": 0, "INTPTLAT": "+38.9394498", "INTPTLON": "-077.0329275" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.029717, 38.936279 ], [ -77.030017, 38.936363 ], [ -77.030854, 38.936596 ], [ -77.030962, 38.936613 ], [ -77.031841, 38.936847 ], [ -77.032249, 38.936964 ], [ -77.032721, 38.937080 ], [ -77.033172, 38.937197 ], [ -77.033622, 38.937314 ], [ -77.033708, 38.937347 ], [ -77.033794, 38.937364 ], [ -77.033901, 38.937381 ], [ -77.034009, 38.937397 ], [ -77.034137, 38.937414 ], [ -77.034180, 38.937414 ], [ -77.034287, 38.937431 ], [ -77.034352, 38.937431 ], [ -77.034802, 38.937431 ], [ -77.035232, 38.937431 ], [ -77.036433, 38.937431 ], [ -77.036433, 38.937731 ], [ -77.036433, 38.937915 ], [ -77.036433, 38.938048 ], [ -77.036433, 38.938232 ], [ -77.036433, 38.938599 ], [ -77.036433, 38.938950 ], [ -77.036433, 38.939100 ], [ -77.036433, 38.939734 ], [ -77.036433, 38.940802 ], [ -77.036433, 38.941870 ], [ -77.035232, 38.941870 ], [ -77.033944, 38.941870 ], [ -77.033536, 38.941870 ], [ -77.032871, 38.941870 ], [ -77.032721, 38.941870 ], [ -77.032592, 38.941870 ], [ -77.032056, 38.941870 ], [ -77.031412, 38.941870 ], [ -77.030768, 38.941870 ], [ -77.030318, 38.941870 ], [ -77.029696, 38.941870 ], [ -77.029696, 38.941570 ], [ -77.029696, 38.941270 ], [ -77.029696, 38.940802 ], [ -77.029696, 38.940118 ], [ -77.029696, 38.939734 ], [ -77.029696, 38.939384 ], [ -77.029696, 38.938749 ], [ -77.029696, 38.938666 ], [ -77.029696, 38.937681 ], [ -77.029696, 38.937598 ], [ -77.029696, 38.936997 ], [ -77.029696, 38.936830 ], [ -77.029717, 38.936279 ] ] ], [ [ [ -77.036433, 38.937431 ], [ -77.035232, 38.937431 ], [ -77.034802, 38.937431 ], [ -77.034352, 38.937431 ], [ -77.034287, 38.937431 ], [ -77.034180, 38.937414 ], [ -77.034137, 38.937414 ], [ -77.034009, 38.937397 ], [ -77.033901, 38.937381 ], [ -77.033794, 38.937364 ], [ -77.033708, 38.937347 ], [ -77.033622, 38.937314 ], [ -77.033172, 38.937197 ], [ -77.032721, 38.937080 ], [ -77.032721, 38.936463 ], [ -77.032721, 38.936262 ], [ -77.032721, 38.936212 ], [ -77.032721, 38.935595 ], [ -77.032721, 38.935528 ], [ -77.032721, 38.935294 ], [ -77.032721, 38.934927 ], [ -77.032721, 38.934560 ], [ -77.032721, 38.934126 ], [ -77.032721, 38.933859 ], [ -77.032721, 38.933575 ], [ -77.032721, 38.933475 ], [ -77.032721, 38.933408 ], [ -77.032721, 38.933158 ], [ -77.032721, 38.933091 ], [ -77.032721, 38.932474 ], [ -77.032721, 38.931990 ], [ -77.032721, 38.931873 ], [ -77.032871, 38.931906 ], [ -77.033515, 38.932140 ], [ -77.034438, 38.932507 ], [ -77.035124, 38.932774 ], [ -77.035768, 38.933024 ], [ -77.036304, 38.933225 ], [ -77.036455, 38.933291 ], [ -77.036455, 38.934126 ], [ -77.036455, 38.934360 ], [ -77.036455, 38.934426 ], [ -77.036455, 38.934860 ], [ -77.036455, 38.934961 ], [ -77.036455, 38.935395 ], [ -77.036433, 38.936079 ], [ -77.036433, 38.936379 ], [ -77.036433, 38.936730 ], [ -77.036455, 38.936797 ], [ -77.036455, 38.936930 ], [ -77.036433, 38.937064 ], [ -77.036433, 38.937281 ], [ -77.036433, 38.937431 ] ] ], [ [ [ -77.025297, 38.935111 ], [ -77.025361, 38.935111 ], [ -77.025447, 38.935111 ], [ -77.025490, 38.935128 ], [ -77.025511, 38.935128 ], [ -77.025833, 38.935211 ], [ -77.025898, 38.935261 ], [ -77.025940, 38.935278 ], [ -77.025983, 38.935294 ], [ -77.026284, 38.935378 ], [ -77.026713, 38.935495 ], [ -77.027099, 38.935595 ], [ -77.027185, 38.935612 ], [ -77.027507, 38.935695 ], [ -77.028043, 38.935845 ], [ -77.028387, 38.935929 ], [ -77.028494, 38.935962 ], [ -77.029717, 38.936279 ], [ -77.029696, 38.936830 ], [ -77.029696, 38.936997 ], [ -77.029696, 38.937598 ], [ -77.029696, 38.937681 ], [ -77.029696, 38.938666 ], [ -77.029696, 38.938749 ], [ -77.029696, 38.939384 ], [ -77.029696, 38.939734 ], [ -77.029696, 38.940118 ], [ -77.029696, 38.940802 ], [ -77.029696, 38.941270 ], [ -77.029696, 38.941570 ], [ -77.029696, 38.941870 ], [ -77.029073, 38.941870 ], [ -77.027593, 38.941870 ], [ -77.027142, 38.941870 ], [ -77.026627, 38.941870 ], [ -77.026134, 38.941870 ], [ -77.025940, 38.941870 ], [ -77.025812, 38.941870 ], [ -77.025661, 38.941870 ], [ -77.025511, 38.941870 ], [ -77.025490, 38.941770 ], [ -77.025383, 38.941336 ], [ -77.025232, 38.940802 ], [ -77.025082, 38.940235 ], [ -77.024953, 38.939734 ], [ -77.024846, 38.939267 ], [ -77.024760, 38.938983 ], [ -77.024717, 38.938783 ], [ -77.024674, 38.938683 ], [ -77.024653, 38.938566 ], [ -77.024632, 38.938466 ], [ -77.024610, 38.938299 ], [ -77.024503, 38.937614 ], [ -77.024310, 38.936413 ], [ -77.024310, 38.936396 ], [ -77.024288, 38.936329 ], [ -77.024288, 38.936296 ], [ -77.024417, 38.936246 ], [ -77.025232, 38.935128 ], [ -77.025297, 38.935111 ] ] ], [ [ [ -77.032549, 38.930354 ], [ -77.032657, 38.930337 ], [ -77.032700, 38.931188 ], [ -77.032700, 38.931339 ], [ -77.032721, 38.931472 ], [ -77.032721, 38.931873 ], [ -77.032721, 38.931990 ], [ -77.032721, 38.932474 ], [ -77.032721, 38.933091 ], [ -77.032721, 38.933158 ], [ -77.032721, 38.933408 ], [ -77.032721, 38.933475 ], [ -77.032721, 38.933575 ], [ -77.032721, 38.933859 ], [ -77.032721, 38.934126 ], [ -77.032721, 38.934560 ], [ -77.032721, 38.934927 ], [ -77.032721, 38.935294 ], [ -77.032721, 38.935528 ], [ -77.032721, 38.935595 ], [ -77.032721, 38.936212 ], [ -77.032721, 38.936262 ], [ -77.032721, 38.936463 ], [ -77.032721, 38.937080 ], [ -77.032249, 38.936964 ], [ -77.031841, 38.936847 ], [ -77.030962, 38.936613 ], [ -77.030854, 38.936596 ], [ -77.030017, 38.936363 ], [ -77.029717, 38.936279 ], [ -77.028494, 38.935962 ], [ -77.028387, 38.935929 ], [ -77.028043, 38.935845 ], [ -77.027507, 38.935695 ], [ -77.027185, 38.935612 ], [ -77.027099, 38.935595 ], [ -77.026713, 38.935495 ], [ -77.026284, 38.935378 ], [ -77.025983, 38.935294 ], [ -77.025940, 38.935278 ], [ -77.025898, 38.935261 ], [ -77.025833, 38.935211 ], [ -77.025511, 38.935128 ], [ -77.025490, 38.935128 ], [ -77.025447, 38.935111 ], [ -77.025361, 38.935111 ], [ -77.025297, 38.935111 ], [ -77.025232, 38.935128 ], [ -77.026048, 38.934059 ], [ -77.026262, 38.933759 ], [ -77.026498, 38.933458 ], [ -77.026820, 38.933024 ], [ -77.026842, 38.932958 ], [ -77.026863, 38.932908 ], [ -77.026863, 38.932857 ], [ -77.026842, 38.932807 ], [ -77.026820, 38.932741 ], [ -77.026949, 38.932724 ], [ -77.026992, 38.932691 ], [ -77.027056, 38.932657 ], [ -77.027099, 38.932590 ], [ -77.027206, 38.932457 ], [ -77.027249, 38.932407 ], [ -77.027314, 38.932307 ], [ -77.027442, 38.932173 ], [ -77.027485, 38.932140 ], [ -77.027528, 38.932106 ], [ -77.027571, 38.932073 ], [ -77.027614, 38.932040 ], [ -77.027657, 38.932023 ], [ -77.027743, 38.931990 ], [ -77.028108, 38.931873 ], [ -77.028258, 38.931823 ], [ -77.028580, 38.931706 ], [ -77.029309, 38.931455 ], [ -77.029696, 38.931322 ], [ -77.030725, 38.930971 ], [ -77.030854, 38.930938 ], [ -77.030940, 38.930905 ], [ -77.030983, 38.930888 ], [ -77.032335, 38.930420 ], [ -77.032549, 38.930354 ] ] ], [ [ [ -77.032528, 38.926531 ], [ -77.032614, 38.926498 ], [ -77.032721, 38.926481 ], [ -77.033107, 38.926464 ], [ -77.033601, 38.926431 ], [ -77.034931, 38.926347 ], [ -77.035468, 38.926331 ], [ -77.035983, 38.926314 ], [ -77.036326, 38.926297 ], [ -77.036476, 38.926264 ], [ -77.036476, 38.926531 ], [ -77.036691, 38.927115 ], [ -77.036476, 38.927149 ], [ -77.036476, 38.927232 ], [ -77.036476, 38.928000 ], [ -77.036476, 38.928584 ], [ -77.036476, 38.928684 ], [ -77.036476, 38.929102 ], [ -77.036476, 38.929169 ], [ -77.036476, 38.929235 ], [ -77.036455, 38.929853 ], [ -77.036455, 38.929986 ], [ -77.036455, 38.930454 ], [ -77.036455, 38.930537 ], [ -77.036455, 38.930587 ], [ -77.036455, 38.931472 ], [ -77.036455, 38.931556 ], [ -77.036455, 38.931656 ], [ -77.036455, 38.931806 ], [ -77.036455, 38.932273 ], [ -77.036455, 38.932490 ], [ -77.036455, 38.932607 ], [ -77.036455, 38.932924 ], [ -77.036455, 38.933291 ], [ -77.036304, 38.933225 ], [ -77.035768, 38.933024 ], [ -77.035124, 38.932774 ], [ -77.034438, 38.932507 ], [ -77.033515, 38.932140 ], [ -77.032871, 38.931906 ], [ -77.032721, 38.931873 ], [ -77.032721, 38.931472 ], [ -77.032700, 38.931339 ], [ -77.032700, 38.931188 ], [ -77.032657, 38.930337 ], [ -77.032657, 38.930320 ], [ -77.032657, 38.930203 ], [ -77.032657, 38.930153 ], [ -77.032657, 38.930120 ], [ -77.032657, 38.929669 ], [ -77.032657, 38.929653 ], [ -77.032614, 38.928801 ], [ -77.032592, 38.928534 ], [ -77.032506, 38.927533 ], [ -77.032399, 38.926565 ], [ -77.032528, 38.926531 ] ] ], [ [ [ -77.027056, 38.926798 ], [ -77.027099, 38.927082 ], [ -77.027185, 38.927433 ], [ -77.027271, 38.927733 ], [ -77.027335, 38.928000 ], [ -77.027400, 38.928284 ], [ -77.027442, 38.928434 ], [ -77.027507, 38.928701 ], [ -77.027550, 38.928885 ], [ -77.027636, 38.929269 ], [ -77.027721, 38.929586 ], [ -77.027743, 38.929669 ], [ -77.027786, 38.929836 ], [ -77.027872, 38.930203 ], [ -77.027979, 38.930688 ], [ -77.028172, 38.931472 ], [ -77.028236, 38.931722 ], [ -77.028258, 38.931823 ], [ -77.028108, 38.931873 ], [ -77.027743, 38.931990 ], [ -77.027657, 38.932023 ], [ -77.027614, 38.932040 ], [ -77.027571, 38.932073 ], [ -77.027528, 38.932106 ], [ -77.027485, 38.932140 ], [ -77.027442, 38.932173 ], [ -77.027314, 38.932307 ], [ -77.027249, 38.932407 ], [ -77.027206, 38.932457 ], [ -77.027099, 38.932590 ], [ -77.027056, 38.932657 ], [ -77.026992, 38.932691 ], [ -77.026949, 38.932724 ], [ -77.026820, 38.932741 ], [ -77.026842, 38.932807 ], [ -77.026863, 38.932857 ], [ -77.026863, 38.932908 ], [ -77.026842, 38.932958 ], [ -77.026820, 38.933024 ], [ -77.026498, 38.933458 ], [ -77.026262, 38.933759 ], [ -77.026048, 38.934059 ], [ -77.025232, 38.935128 ], [ -77.024417, 38.936246 ], [ -77.024288, 38.936296 ], [ -77.024202, 38.935762 ], [ -77.024138, 38.935311 ], [ -77.024117, 38.935228 ], [ -77.024117, 38.935128 ], [ -77.024095, 38.934977 ], [ -77.024009, 38.934510 ], [ -77.024009, 38.934426 ], [ -77.023988, 38.934310 ], [ -77.023988, 38.934243 ], [ -77.023966, 38.934176 ], [ -77.023923, 38.933909 ], [ -77.023902, 38.933792 ], [ -77.023880, 38.933642 ], [ -77.023816, 38.933158 ], [ -77.023795, 38.933008 ], [ -77.023773, 38.932807 ], [ -77.023752, 38.932724 ], [ -77.023709, 38.932407 ], [ -77.023666, 38.932040 ], [ -77.023623, 38.931823 ], [ -77.023559, 38.931355 ], [ -77.023537, 38.931272 ], [ -77.023537, 38.931188 ], [ -77.023516, 38.931055 ], [ -77.023451, 38.930671 ], [ -77.023451, 38.930604 ], [ -77.023365, 38.930020 ], [ -77.023301, 38.929619 ], [ -77.023215, 38.929035 ], [ -77.023172, 38.928701 ], [ -77.023151, 38.928534 ], [ -77.023087, 38.928117 ], [ -77.023065, 38.927900 ], [ -77.023022, 38.927616 ], [ -77.022958, 38.927232 ], [ -77.023022, 38.927199 ], [ -77.023065, 38.927182 ], [ -77.023172, 38.927149 ], [ -77.023237, 38.927115 ], [ -77.023323, 38.927099 ], [ -77.023408, 38.927082 ], [ -77.023473, 38.927082 ], [ -77.023516, 38.927065 ], [ -77.024417, 38.926982 ], [ -77.025082, 38.926932 ], [ -77.025769, 38.926865 ], [ -77.025940, 38.926848 ], [ -77.026155, 38.926832 ], [ -77.026348, 38.926815 ], [ -77.026627, 38.926798 ], [ -77.026970, 38.926748 ], [ -77.027035, 38.926748 ], [ -77.027056, 38.926798 ] ] ], [ [ [ -77.032399, 38.926565 ], [ -77.032506, 38.927533 ], [ -77.032592, 38.928534 ], [ -77.032614, 38.928801 ], [ -77.032657, 38.929653 ], [ -77.032657, 38.929669 ], [ -77.032657, 38.930120 ], [ -77.032657, 38.930153 ], [ -77.032657, 38.930203 ], [ -77.032657, 38.930320 ], [ -77.032657, 38.930337 ], [ -77.032549, 38.930354 ], [ -77.032335, 38.930420 ], [ -77.030983, 38.930888 ], [ -77.030940, 38.930905 ], [ -77.030854, 38.930938 ], [ -77.030725, 38.930971 ], [ -77.029696, 38.931322 ], [ -77.029309, 38.931455 ], [ -77.028580, 38.931706 ], [ -77.028258, 38.931823 ], [ -77.028236, 38.931722 ], [ -77.028172, 38.931472 ], [ -77.027979, 38.930688 ], [ -77.027872, 38.930203 ], [ -77.027786, 38.929836 ], [ -77.027743, 38.929669 ], [ -77.027721, 38.929586 ], [ -77.027636, 38.929269 ], [ -77.027550, 38.928885 ], [ -77.027507, 38.928701 ], [ -77.027442, 38.928434 ], [ -77.027400, 38.928284 ], [ -77.027335, 38.928000 ], [ -77.027271, 38.927733 ], [ -77.027185, 38.927433 ], [ -77.027099, 38.927082 ], [ -77.027056, 38.926798 ], [ -77.027035, 38.926748 ], [ -77.027099, 38.926748 ], [ -77.027185, 38.926731 ], [ -77.028279, 38.926731 ], [ -77.028730, 38.926731 ], [ -77.029588, 38.926731 ], [ -77.029696, 38.926748 ], [ -77.029867, 38.926748 ], [ -77.029974, 38.926748 ], [ -77.031283, 38.926748 ], [ -77.031455, 38.926731 ], [ -77.031562, 38.926731 ], [ -77.031841, 38.926731 ], [ -77.031991, 38.926731 ], [ -77.032056, 38.926715 ], [ -77.032163, 38.926681 ], [ -77.032399, 38.926565 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002400", "GEOID": "11001002400", "NAME": "24", "NAMELSAD": "Census Tract 24", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 556408, "AWATER": 0, "INTPTLAT": "+38.9417822", "INTPTLON": "-077.0224058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.019417, 38.946326 ], [ -77.019396, 38.945959 ], [ -77.019374, 38.945709 ], [ -77.019374, 38.945592 ], [ -77.019353, 38.945258 ], [ -77.019331, 38.944724 ], [ -77.019310, 38.944524 ], [ -77.019310, 38.944190 ], [ -77.019289, 38.943923 ], [ -77.019289, 38.943873 ], [ -77.019289, 38.943823 ], [ -77.019267, 38.943673 ], [ -77.019353, 38.943673 ], [ -77.019439, 38.943656 ], [ -77.019482, 38.943639 ], [ -77.019546, 38.943623 ], [ -77.019589, 38.943606 ], [ -77.019653, 38.943573 ], [ -77.019696, 38.943539 ], [ -77.019739, 38.943506 ], [ -77.019782, 38.943473 ], [ -77.019825, 38.943439 ], [ -77.019846, 38.943406 ], [ -77.019868, 38.943372 ], [ -77.019889, 38.943339 ], [ -77.019911, 38.943289 ], [ -77.019932, 38.943256 ], [ -77.019932, 38.943206 ], [ -77.019954, 38.943172 ], [ -77.019954, 38.943105 ], [ -77.019954, 38.943072 ], [ -77.019932, 38.943022 ], [ -77.019932, 38.942972 ], [ -77.019911, 38.942922 ], [ -77.019889, 38.942872 ], [ -77.019846, 38.942838 ], [ -77.019825, 38.942788 ], [ -77.019782, 38.942755 ], [ -77.019739, 38.942722 ], [ -77.019675, 38.942671 ], [ -77.019610, 38.942638 ], [ -77.019546, 38.942621 ], [ -77.019460, 38.942588 ], [ -77.019396, 38.942571 ], [ -77.019331, 38.942571 ], [ -77.019246, 38.942571 ], [ -77.019224, 38.942571 ], [ -77.019203, 38.942187 ], [ -77.019203, 38.942054 ], [ -77.019160, 38.941370 ], [ -77.019138, 38.940986 ], [ -77.019138, 38.940652 ], [ -77.019117, 38.940318 ], [ -77.019095, 38.939918 ], [ -77.019053, 38.939283 ], [ -77.019031, 38.938833 ], [ -77.018988, 38.937765 ], [ -77.018988, 38.937715 ], [ -77.018988, 38.937648 ], [ -77.018988, 38.937598 ], [ -77.018988, 38.937531 ], [ -77.018988, 38.937481 ], [ -77.019031, 38.937397 ], [ -77.019503, 38.937281 ], [ -77.019567, 38.937264 ], [ -77.019632, 38.937264 ], [ -77.019675, 38.937247 ], [ -77.019739, 38.937231 ], [ -77.019782, 38.937231 ], [ -77.021241, 38.937047 ], [ -77.021370, 38.937030 ], [ -77.021456, 38.937014 ], [ -77.021971, 38.936897 ], [ -77.022636, 38.936730 ], [ -77.023087, 38.936613 ], [ -77.023344, 38.936563 ], [ -77.024031, 38.936379 ], [ -77.024288, 38.936296 ], [ -77.024288, 38.936329 ], [ -77.024310, 38.936396 ], [ -77.024310, 38.936413 ], [ -77.024503, 38.937614 ], [ -77.024610, 38.938299 ], [ -77.024632, 38.938466 ], [ -77.024653, 38.938566 ], [ -77.024674, 38.938683 ], [ -77.024717, 38.938783 ], [ -77.024760, 38.938983 ], [ -77.024846, 38.939267 ], [ -77.024953, 38.939734 ], [ -77.025082, 38.940235 ], [ -77.025232, 38.940802 ], [ -77.025383, 38.941336 ], [ -77.025490, 38.941770 ], [ -77.025511, 38.941870 ], [ -77.025533, 38.941971 ], [ -77.025619, 38.942288 ], [ -77.025704, 38.942655 ], [ -77.025769, 38.942922 ], [ -77.025898, 38.943389 ], [ -77.026026, 38.943906 ], [ -77.026048, 38.943990 ], [ -77.026069, 38.944073 ], [ -77.026091, 38.944107 ], [ -77.026155, 38.944407 ], [ -77.026305, 38.944975 ], [ -77.026327, 38.945058 ], [ -77.026348, 38.945158 ], [ -77.026477, 38.945659 ], [ -77.026584, 38.946126 ], [ -77.026412, 38.946126 ], [ -77.025833, 38.946143 ], [ -77.025275, 38.946159 ], [ -77.024910, 38.946176 ], [ -77.024159, 38.946193 ], [ -77.023537, 38.946209 ], [ -77.023258, 38.946209 ], [ -77.022700, 38.946226 ], [ -77.022529, 38.946243 ], [ -77.021821, 38.946260 ], [ -77.021413, 38.946276 ], [ -77.021220, 38.946276 ], [ -77.021091, 38.946276 ], [ -77.020748, 38.946293 ], [ -77.020233, 38.946310 ], [ -77.019417, 38.946326 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003200", "GEOID": "11001003200", "NAME": "32", "NAMELSAD": "Census Tract 32", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 447929, "AWATER": 0, "INTPTLAT": "+38.9322375", "INTPTLON": "-077.0211591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.022958, 38.927232 ], [ -77.023022, 38.927616 ], [ -77.023065, 38.927900 ], [ -77.023087, 38.928117 ], [ -77.023151, 38.928534 ], [ -77.023172, 38.928701 ], [ -77.023215, 38.929035 ], [ -77.023301, 38.929619 ], [ -77.023365, 38.930020 ], [ -77.023451, 38.930604 ], [ -77.023451, 38.930671 ], [ -77.023516, 38.931055 ], [ -77.023537, 38.931188 ], [ -77.023537, 38.931272 ], [ -77.023559, 38.931355 ], [ -77.023623, 38.931823 ], [ -77.023666, 38.932040 ], [ -77.023709, 38.932407 ], [ -77.023752, 38.932724 ], [ -77.023773, 38.932807 ], [ -77.023795, 38.933008 ], [ -77.023816, 38.933158 ], [ -77.023880, 38.933642 ], [ -77.023902, 38.933792 ], [ -77.023923, 38.933909 ], [ -77.023966, 38.934176 ], [ -77.023988, 38.934243 ], [ -77.023988, 38.934310 ], [ -77.024009, 38.934426 ], [ -77.024009, 38.934510 ], [ -77.024095, 38.934977 ], [ -77.024117, 38.935128 ], [ -77.024117, 38.935228 ], [ -77.024138, 38.935311 ], [ -77.024202, 38.935762 ], [ -77.024288, 38.936296 ], [ -77.024031, 38.936379 ], [ -77.023344, 38.936563 ], [ -77.023087, 38.936613 ], [ -77.022636, 38.936730 ], [ -77.021971, 38.936897 ], [ -77.021456, 38.937014 ], [ -77.021370, 38.937030 ], [ -77.021241, 38.937047 ], [ -77.019782, 38.937231 ], [ -77.019739, 38.937231 ], [ -77.019675, 38.937247 ], [ -77.019632, 38.937264 ], [ -77.019567, 38.937264 ], [ -77.019503, 38.937281 ], [ -77.019031, 38.937397 ], [ -77.019074, 38.937247 ], [ -77.019160, 38.937080 ], [ -77.019181, 38.937030 ], [ -77.019203, 38.936997 ], [ -77.019203, 38.936964 ], [ -77.019224, 38.936930 ], [ -77.019224, 38.936897 ], [ -77.019224, 38.936813 ], [ -77.019224, 38.936730 ], [ -77.019224, 38.936580 ], [ -77.019224, 38.936196 ], [ -77.019203, 38.935862 ], [ -77.019203, 38.935561 ], [ -77.019181, 38.935211 ], [ -77.019181, 38.934894 ], [ -77.019181, 38.934810 ], [ -77.019160, 38.934376 ], [ -77.019160, 38.934243 ], [ -77.019160, 38.934176 ], [ -77.019160, 38.934159 ], [ -77.019138, 38.934026 ], [ -77.019117, 38.933976 ], [ -77.019095, 38.933909 ], [ -77.019031, 38.933609 ], [ -77.019010, 38.933525 ], [ -77.018924, 38.933175 ], [ -77.018795, 38.932691 ], [ -77.018645, 38.932056 ], [ -77.018495, 38.931505 ], [ -77.018495, 38.931439 ], [ -77.018409, 38.931105 ], [ -77.018344, 38.930821 ], [ -77.018280, 38.930554 ], [ -77.018259, 38.930471 ], [ -77.018173, 38.930153 ], [ -77.018065, 38.929736 ], [ -77.018065, 38.929686 ], [ -77.018044, 38.929603 ], [ -77.018001, 38.929386 ], [ -77.017980, 38.929319 ], [ -77.017958, 38.929185 ], [ -77.017937, 38.929135 ], [ -77.017937, 38.929102 ], [ -77.017937, 38.929085 ], [ -77.017937, 38.929035 ], [ -77.017937, 38.929018 ], [ -77.017958, 38.929002 ], [ -77.017980, 38.928885 ], [ -77.018023, 38.928768 ], [ -77.018044, 38.928718 ], [ -77.018108, 38.928484 ], [ -77.018108, 38.928434 ], [ -77.018108, 38.928401 ], [ -77.018108, 38.928351 ], [ -77.018108, 38.928317 ], [ -77.018087, 38.928284 ], [ -77.018087, 38.928250 ], [ -77.018065, 38.928200 ], [ -77.018044, 38.928167 ], [ -77.018001, 38.928117 ], [ -77.017958, 38.928084 ], [ -77.017937, 38.928050 ], [ -77.017872, 38.928017 ], [ -77.017829, 38.927983 ], [ -77.017808, 38.927933 ], [ -77.017851, 38.927950 ], [ -77.018001, 38.927967 ], [ -77.018087, 38.927983 ], [ -77.018216, 38.927983 ], [ -77.018323, 38.927983 ], [ -77.018430, 38.927983 ], [ -77.018473, 38.927983 ], [ -77.018645, 38.927983 ], [ -77.019010, 38.927967 ], [ -77.019160, 38.927950 ], [ -77.019267, 38.927933 ], [ -77.019331, 38.927933 ], [ -77.020040, 38.927883 ], [ -77.020190, 38.927833 ], [ -77.020254, 38.927766 ], [ -77.020319, 38.927700 ], [ -77.020447, 38.927533 ], [ -77.020984, 38.927483 ], [ -77.021263, 38.927466 ], [ -77.021885, 38.927399 ], [ -77.022550, 38.927349 ], [ -77.022614, 38.927332 ], [ -77.022700, 38.927316 ], [ -77.022808, 38.927282 ], [ -77.022893, 38.927249 ], [ -77.022958, 38.927232 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002202", "GEOID": "11001002202", "NAME": "22.02", "NAMELSAD": "Census Tract 22.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 698895, "AWATER": 566, "INTPTLAT": "+38.9479653", "INTPTLON": "-077.0118821" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009203, 38.945692 ], [ -77.009354, 38.945575 ], [ -77.009418, 38.945525 ], [ -77.009482, 38.945492 ], [ -77.009568, 38.945442 ], [ -77.009997, 38.945175 ], [ -77.010405, 38.944924 ], [ -77.010748, 38.944708 ], [ -77.010813, 38.944674 ], [ -77.010856, 38.944641 ], [ -77.010920, 38.944607 ], [ -77.011006, 38.944557 ], [ -77.011049, 38.944541 ], [ -77.011178, 38.944491 ], [ -77.011220, 38.944474 ], [ -77.011285, 38.944440 ], [ -77.011456, 38.944374 ], [ -77.011499, 38.944340 ], [ -77.011542, 38.944324 ], [ -77.011585, 38.944374 ], [ -77.011607, 38.944390 ], [ -77.011628, 38.944407 ], [ -77.011650, 38.944407 ], [ -77.011671, 38.944407 ], [ -77.011843, 38.944407 ], [ -77.012615, 38.944390 ], [ -77.013495, 38.944891 ], [ -77.013581, 38.944924 ], [ -77.014096, 38.945141 ], [ -77.014225, 38.945191 ], [ -77.014740, 38.945392 ], [ -77.015662, 38.945726 ], [ -77.015705, 38.945776 ], [ -77.016006, 38.946393 ], [ -77.016070, 38.946426 ], [ -77.016649, 38.946410 ], [ -77.016799, 38.946410 ], [ -77.017100, 38.946393 ], [ -77.017336, 38.946393 ], [ -77.017486, 38.946393 ], [ -77.018495, 38.946360 ], [ -77.019417, 38.946326 ], [ -77.019460, 38.947311 ], [ -77.019460, 38.947394 ], [ -77.019460, 38.947645 ], [ -77.019482, 38.948145 ], [ -77.019503, 38.948462 ], [ -77.019525, 38.948813 ], [ -77.019546, 38.949130 ], [ -77.019546, 38.949213 ], [ -77.019546, 38.949397 ], [ -77.019567, 38.949631 ], [ -77.019567, 38.949914 ], [ -77.019567, 38.949948 ], [ -77.019589, 38.950031 ], [ -77.019589, 38.950248 ], [ -77.019589, 38.950398 ], [ -77.019610, 38.950465 ], [ -77.019632, 38.951016 ], [ -77.019675, 38.952084 ], [ -77.019567, 38.952084 ], [ -77.019353, 38.952084 ], [ -77.018967, 38.952100 ], [ -77.018323, 38.952117 ], [ -77.017593, 38.952134 ], [ -77.017207, 38.952150 ], [ -77.016821, 38.952167 ], [ -77.016456, 38.952167 ], [ -77.016327, 38.952184 ], [ -77.016284, 38.952184 ], [ -77.016263, 38.952184 ], [ -77.016199, 38.952184 ], [ -77.016113, 38.952200 ], [ -77.016070, 38.952200 ], [ -77.015877, 38.952200 ], [ -77.015769, 38.952200 ], [ -77.015276, 38.952217 ], [ -77.013452, 38.952267 ], [ -77.013366, 38.952284 ], [ -77.013302, 38.952284 ], [ -77.012422, 38.952300 ], [ -77.012272, 38.952317 ], [ -77.011306, 38.952334 ], [ -77.010684, 38.952351 ], [ -77.010663, 38.952367 ], [ -77.010126, 38.952367 ], [ -77.009482, 38.952401 ], [ -77.009139, 38.952401 ], [ -77.009010, 38.952401 ], [ -77.008989, 38.952117 ], [ -77.008946, 38.951716 ], [ -77.008903, 38.951233 ], [ -77.008903, 38.951032 ], [ -77.008882, 38.950882 ], [ -77.008882, 38.950865 ], [ -77.008860, 38.950498 ], [ -77.008839, 38.950265 ], [ -77.008817, 38.949764 ], [ -77.008774, 38.949397 ], [ -77.008753, 38.948946 ], [ -77.008710, 38.948613 ], [ -77.008688, 38.948296 ], [ -77.008688, 38.948162 ], [ -77.008710, 38.947628 ], [ -77.008710, 38.947394 ], [ -77.008667, 38.947094 ], [ -77.008646, 38.946677 ], [ -77.008667, 38.946493 ], [ -77.008731, 38.946343 ], [ -77.008796, 38.946193 ], [ -77.008882, 38.946043 ], [ -77.008903, 38.946009 ], [ -77.008946, 38.945959 ], [ -77.008989, 38.945909 ], [ -77.009203, 38.945692 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009510", "GEOID": "11001009510", "NAME": "95.10", "NAMELSAD": "Census Tract 95.10", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 841510, "AWATER": 0, "INTPTLAT": "+38.9455978", "INTPTLON": "-077.0046255" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009010, 38.952401 ], [ -77.008860, 38.952401 ], [ -77.008646, 38.952401 ], [ -77.008410, 38.952401 ], [ -77.008324, 38.952401 ], [ -77.008002, 38.952384 ], [ -77.007937, 38.952384 ], [ -77.007830, 38.952367 ], [ -77.007830, 38.952034 ], [ -77.007830, 38.952000 ], [ -77.007830, 38.951933 ], [ -77.007830, 38.951800 ], [ -77.007658, 38.951800 ], [ -77.007551, 38.951800 ], [ -77.007465, 38.951817 ], [ -77.007401, 38.951817 ], [ -77.007251, 38.951833 ], [ -77.007101, 38.951867 ], [ -77.006629, 38.951967 ], [ -77.006457, 38.952000 ], [ -77.006350, 38.952017 ], [ -77.006307, 38.952034 ], [ -77.006221, 38.952034 ], [ -77.006178, 38.952050 ], [ -77.006092, 38.952050 ], [ -77.006049, 38.952050 ], [ -77.006006, 38.952034 ], [ -77.005963, 38.952034 ], [ -77.005920, 38.952034 ], [ -77.005663, 38.951983 ], [ -77.005556, 38.951950 ], [ -77.005384, 38.951917 ], [ -77.005298, 38.951900 ], [ -77.005169, 38.951867 ], [ -77.005126, 38.951850 ], [ -77.005062, 38.951833 ], [ -77.004955, 38.951783 ], [ -77.004848, 38.951733 ], [ -77.004805, 38.951716 ], [ -77.004697, 38.951666 ], [ -77.004590, 38.951583 ], [ -77.004547, 38.951566 ], [ -77.004504, 38.951533 ], [ -77.004461, 38.951500 ], [ -77.004333, 38.951366 ], [ -77.004268, 38.951299 ], [ -77.004204, 38.951233 ], [ -77.004204, 38.951216 ], [ -77.004182, 38.951182 ], [ -77.004161, 38.951166 ], [ -77.004118, 38.951149 ], [ -77.004097, 38.951132 ], [ -77.004011, 38.951099 ], [ -77.003968, 38.951082 ], [ -77.003946, 38.951049 ], [ -77.003903, 38.951016 ], [ -77.003882, 38.950982 ], [ -77.003860, 38.950949 ], [ -77.003839, 38.950915 ], [ -77.003818, 38.950882 ], [ -77.003796, 38.950849 ], [ -77.003775, 38.950815 ], [ -77.003775, 38.950782 ], [ -77.003753, 38.950732 ], [ -77.003732, 38.950665 ], [ -77.003710, 38.950532 ], [ -77.003710, 38.950398 ], [ -77.003667, 38.950131 ], [ -77.003667, 38.950098 ], [ -77.003646, 38.950014 ], [ -77.003624, 38.949964 ], [ -77.003603, 38.949864 ], [ -77.003582, 38.949831 ], [ -77.003539, 38.949781 ], [ -77.003539, 38.949747 ], [ -77.003474, 38.949664 ], [ -77.003410, 38.949564 ], [ -77.003388, 38.949547 ], [ -77.003303, 38.949430 ], [ -77.002959, 38.948980 ], [ -77.002659, 38.947912 ], [ -77.003238, 38.946310 ], [ -77.003109, 38.946343 ], [ -77.003024, 38.946376 ], [ -77.002294, 38.946660 ], [ -77.001607, 38.946944 ], [ -77.001071, 38.947161 ], [ -77.001007, 38.947161 ], [ -77.000985, 38.947177 ], [ -77.000556, 38.947344 ], [ -77.000492, 38.947361 ], [ -77.000449, 38.947278 ], [ -77.000320, 38.946977 ], [ -77.000320, 38.946944 ], [ -77.000041, 38.946276 ], [ -76.997638, 38.940735 ], [ -76.997895, 38.940735 ], [ -76.998303, 38.940735 ], [ -76.998990, 38.940735 ], [ -76.999140, 38.940735 ], [ -76.999226, 38.940735 ], [ -76.999483, 38.940735 ], [ -76.999655, 38.940735 ], [ -76.999934, 38.940735 ], [ -77.000191, 38.940735 ], [ -77.002294, 38.940735 ], [ -77.002852, 38.940735 ], [ -77.002981, 38.940735 ], [ -77.003195, 38.940735 ], [ -77.003388, 38.940735 ], [ -77.003796, 38.940735 ], [ -77.004375, 38.940735 ], [ -77.004569, 38.940735 ], [ -77.004654, 38.940735 ], [ -77.004676, 38.940735 ], [ -77.004740, 38.940752 ], [ -77.004826, 38.940752 ], [ -77.004912, 38.940769 ], [ -77.004998, 38.940786 ], [ -77.005062, 38.940802 ], [ -77.005105, 38.940836 ], [ -77.005169, 38.940852 ], [ -77.005234, 38.940869 ], [ -77.005298, 38.940902 ], [ -77.005363, 38.940936 ], [ -77.005405, 38.940952 ], [ -77.005470, 38.940986 ], [ -77.005835, 38.941253 ], [ -77.005942, 38.941320 ], [ -77.006972, 38.942004 ], [ -77.007101, 38.942087 ], [ -77.007143, 38.942104 ], [ -77.007186, 38.942137 ], [ -77.007251, 38.942154 ], [ -77.007315, 38.942187 ], [ -77.007380, 38.942204 ], [ -77.007444, 38.942221 ], [ -77.007487, 38.942238 ], [ -77.007723, 38.942304 ], [ -77.007830, 38.942338 ], [ -77.008023, 38.942371 ], [ -77.008131, 38.942404 ], [ -77.008216, 38.942421 ], [ -77.008345, 38.942488 ], [ -77.008495, 38.942555 ], [ -77.008753, 38.942705 ], [ -77.008946, 38.942822 ], [ -77.009010, 38.942855 ], [ -77.009139, 38.942938 ], [ -77.009268, 38.943022 ], [ -77.009332, 38.943055 ], [ -77.009461, 38.943139 ], [ -77.009568, 38.943239 ], [ -77.009654, 38.943289 ], [ -77.009697, 38.943322 ], [ -77.009783, 38.943406 ], [ -77.009783, 38.943422 ], [ -77.010427, 38.944090 ], [ -77.010534, 38.944207 ], [ -77.010791, 38.944474 ], [ -77.010920, 38.944607 ], [ -77.010856, 38.944641 ], [ -77.010813, 38.944674 ], [ -77.010748, 38.944708 ], [ -77.010405, 38.944924 ], [ -77.009997, 38.945175 ], [ -77.009568, 38.945442 ], [ -77.009482, 38.945492 ], [ -77.009418, 38.945525 ], [ -77.009354, 38.945575 ], [ -77.009203, 38.945692 ], [ -77.008989, 38.945909 ], [ -77.008946, 38.945959 ], [ -77.008903, 38.946009 ], [ -77.008882, 38.946043 ], [ -77.008796, 38.946193 ], [ -77.008731, 38.946343 ], [ -77.008667, 38.946493 ], [ -77.008646, 38.946677 ], [ -77.008667, 38.947094 ], [ -77.008710, 38.947394 ], [ -77.008710, 38.947628 ], [ -77.008688, 38.948162 ], [ -77.008688, 38.948296 ], [ -77.008710, 38.948613 ], [ -77.008753, 38.948946 ], [ -77.008774, 38.949397 ], [ -77.008817, 38.949764 ], [ -77.008839, 38.950265 ], [ -77.008860, 38.950498 ], [ -77.008882, 38.950865 ], [ -77.008882, 38.950882 ], [ -77.008903, 38.951032 ], [ -77.008903, 38.951233 ], [ -77.008946, 38.951716 ], [ -77.008989, 38.952117 ], [ -77.009010, 38.952401 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009507", "GEOID": "11001009507", "NAME": "95.07", "NAMELSAD": "Census Tract 95.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295290, "AWATER": 0, "INTPTLAT": "+38.9584945", "INTPTLON": "-076.9977787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002294, 38.956772 ], [ -77.002230, 38.956873 ], [ -77.001414, 38.958191 ], [ -77.001243, 38.958608 ], [ -77.001135, 38.958775 ], [ -77.001050, 38.958858 ], [ -77.000921, 38.959058 ], [ -77.000556, 38.959542 ], [ -77.000492, 38.959609 ], [ -77.000449, 38.959676 ], [ -77.000341, 38.959809 ], [ -77.000256, 38.959926 ], [ -77.000191, 38.959976 ], [ -77.000084, 38.960093 ], [ -77.000062, 38.960143 ], [ -76.999955, 38.960243 ], [ -76.999934, 38.960260 ], [ -76.999912, 38.960293 ], [ -76.999784, 38.960393 ], [ -76.999719, 38.960443 ], [ -76.999655, 38.960510 ], [ -76.999547, 38.960593 ], [ -76.999483, 38.960643 ], [ -76.999376, 38.960727 ], [ -76.999333, 38.960744 ], [ -76.996093, 38.960744 ], [ -76.995707, 38.960427 ], [ -76.995621, 38.960377 ], [ -76.995041, 38.959909 ], [ -76.994441, 38.959442 ], [ -76.994355, 38.959359 ], [ -76.994269, 38.959292 ], [ -76.994226, 38.959275 ], [ -76.993690, 38.958858 ], [ -76.993260, 38.958524 ], [ -76.993239, 38.958508 ], [ -76.993067, 38.958374 ], [ -76.992874, 38.958224 ], [ -76.992745, 38.958107 ], [ -76.992638, 38.958024 ], [ -76.992531, 38.957940 ], [ -76.992230, 38.957707 ], [ -76.992145, 38.957640 ], [ -76.992102, 38.957607 ], [ -76.992059, 38.957573 ], [ -76.992037, 38.957557 ], [ -76.992016, 38.957540 ], [ -76.991951, 38.957507 ], [ -76.991909, 38.957457 ], [ -76.991844, 38.957423 ], [ -76.991844, 38.957407 ], [ -76.991630, 38.957240 ], [ -76.991673, 38.957240 ], [ -76.991737, 38.957223 ], [ -76.991801, 38.957223 ], [ -76.991823, 38.957206 ], [ -76.991909, 38.957206 ], [ -76.991930, 38.957206 ], [ -76.991973, 38.957206 ], [ -76.992424, 38.957256 ], [ -76.992466, 38.957256 ], [ -76.992681, 38.957273 ], [ -76.992853, 38.957273 ], [ -76.993303, 38.957273 ], [ -76.994183, 38.957273 ], [ -76.994376, 38.957273 ], [ -76.995320, 38.957273 ], [ -76.995771, 38.957273 ], [ -76.997037, 38.957273 ], [ -76.997144, 38.957273 ], [ -76.997252, 38.957256 ], [ -76.997402, 38.957240 ], [ -76.997530, 38.957223 ], [ -76.997573, 38.957223 ], [ -76.997681, 38.957190 ], [ -76.997788, 38.957173 ], [ -76.997831, 38.957156 ], [ -76.997938, 38.957123 ], [ -76.998045, 38.957073 ], [ -76.998131, 38.957039 ], [ -76.998217, 38.957006 ], [ -76.998303, 38.956973 ], [ -76.998367, 38.956923 ], [ -76.998475, 38.956873 ], [ -76.998539, 38.956823 ], [ -76.998582, 38.956806 ], [ -76.998646, 38.956756 ], [ -76.998754, 38.956672 ], [ -76.998818, 38.956606 ], [ -76.998882, 38.956522 ], [ -76.998925, 38.956505 ], [ -76.998968, 38.956439 ], [ -76.999032, 38.956339 ], [ -76.999226, 38.956105 ], [ -76.999354, 38.955955 ], [ -76.999440, 38.955871 ], [ -76.999505, 38.955805 ], [ -76.999547, 38.955771 ], [ -76.999633, 38.955705 ], [ -76.999655, 38.955671 ], [ -76.999741, 38.955621 ], [ -76.999848, 38.955538 ], [ -76.999891, 38.955504 ], [ -77.000277, 38.955287 ], [ -77.000470, 38.955438 ], [ -77.000856, 38.955688 ], [ -77.001843, 38.956439 ], [ -77.001886, 38.956472 ], [ -77.002294, 38.956772 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009508", "GEOID": "11001009508", "NAME": "95.08", "NAMELSAD": "Census Tract 95.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 962212, "AWATER": 0, "INTPTLAT": "+38.9536826", "INTPTLON": "-076.9985582" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.009032, 38.954820 ], [ -77.008989, 38.954820 ], [ -77.008903, 38.954820 ], [ -77.008882, 38.954820 ], [ -77.008839, 38.954820 ], [ -77.008216, 38.954954 ], [ -77.007701, 38.955070 ], [ -77.007272, 38.955171 ], [ -77.006779, 38.955271 ], [ -77.006264, 38.955404 ], [ -77.006049, 38.955454 ], [ -77.005298, 38.955621 ], [ -77.004976, 38.955688 ], [ -77.004654, 38.955688 ], [ -77.003925, 38.955855 ], [ -77.003839, 38.955871 ], [ -77.003345, 38.955988 ], [ -77.003109, 38.956055 ], [ -77.002938, 38.956122 ], [ -77.002745, 38.956222 ], [ -77.002659, 38.956289 ], [ -77.002573, 38.956355 ], [ -77.002509, 38.956439 ], [ -77.002466, 38.956505 ], [ -77.002294, 38.956772 ], [ -77.001886, 38.956472 ], [ -77.001843, 38.956439 ], [ -77.000856, 38.955688 ], [ -77.000470, 38.955438 ], [ -77.000277, 38.955287 ], [ -76.999891, 38.955504 ], [ -76.999848, 38.955538 ], [ -76.999741, 38.955621 ], [ -76.999655, 38.955671 ], [ -76.999633, 38.955705 ], [ -76.999547, 38.955771 ], [ -76.999505, 38.955805 ], [ -76.999440, 38.955871 ], [ -76.999354, 38.955955 ], [ -76.999226, 38.956105 ], [ -76.999032, 38.956339 ], [ -76.998968, 38.956439 ], [ -76.998925, 38.956505 ], [ -76.998882, 38.956522 ], [ -76.998818, 38.956606 ], [ -76.998754, 38.956672 ], [ -76.998646, 38.956756 ], [ -76.998582, 38.956806 ], [ -76.998539, 38.956823 ], [ -76.998475, 38.956873 ], [ -76.998367, 38.956923 ], [ -76.998303, 38.956973 ], [ -76.998217, 38.957006 ], [ -76.998131, 38.957039 ], [ -76.998045, 38.957073 ], [ -76.997938, 38.957123 ], [ -76.997831, 38.957156 ], [ -76.997788, 38.957173 ], [ -76.997681, 38.957190 ], [ -76.997573, 38.957223 ], [ -76.997530, 38.957223 ], [ -76.997402, 38.957240 ], [ -76.997252, 38.957256 ], [ -76.997144, 38.957273 ], [ -76.997037, 38.957273 ], [ -76.995771, 38.957273 ], [ -76.995320, 38.957273 ], [ -76.994376, 38.957273 ], [ -76.994183, 38.957273 ], [ -76.993303, 38.957273 ], [ -76.992853, 38.957273 ], [ -76.992681, 38.957273 ], [ -76.992466, 38.957256 ], [ -76.992424, 38.957256 ], [ -76.991973, 38.957206 ], [ -76.991930, 38.957206 ], [ -76.991909, 38.957206 ], [ -76.991823, 38.957206 ], [ -76.991801, 38.957223 ], [ -76.991737, 38.957223 ], [ -76.991673, 38.957240 ], [ -76.991630, 38.957240 ], [ -76.991522, 38.957156 ], [ -76.991458, 38.957106 ], [ -76.991179, 38.956889 ], [ -76.991072, 38.956806 ], [ -76.990986, 38.956739 ], [ -76.990921, 38.956689 ], [ -76.990836, 38.956639 ], [ -76.990492, 38.956355 ], [ -76.990471, 38.956339 ], [ -76.990471, 38.952401 ], [ -76.990557, 38.952401 ], [ -76.990814, 38.952401 ], [ -76.991522, 38.952401 ], [ -76.991587, 38.952401 ], [ -76.991673, 38.952401 ], [ -76.991866, 38.952401 ], [ -76.992123, 38.952401 ], [ -76.992617, 38.952384 ], [ -76.992702, 38.952384 ], [ -76.992810, 38.952384 ], [ -76.993067, 38.952367 ], [ -76.993260, 38.952367 ], [ -76.993818, 38.952351 ], [ -76.993947, 38.952351 ], [ -76.994097, 38.952334 ], [ -76.994140, 38.952334 ], [ -76.994247, 38.952334 ], [ -76.994398, 38.952317 ], [ -76.994548, 38.952300 ], [ -76.994634, 38.952284 ], [ -76.994762, 38.952250 ], [ -76.994805, 38.952234 ], [ -76.994956, 38.952200 ], [ -76.995170, 38.952150 ], [ -76.995428, 38.952100 ], [ -76.995792, 38.952034 ], [ -76.995986, 38.952000 ], [ -76.996243, 38.951967 ], [ -76.996865, 38.951883 ], [ -76.997445, 38.951833 ], [ -76.997917, 38.951833 ], [ -76.998003, 38.951833 ], [ -76.998110, 38.951850 ], [ -76.998217, 38.951867 ], [ -76.998367, 38.951883 ], [ -76.998560, 38.951883 ], [ -76.998775, 38.951867 ], [ -76.999054, 38.951833 ], [ -76.999462, 38.951750 ], [ -76.999848, 38.951616 ], [ -77.000320, 38.951349 ], [ -77.000642, 38.951082 ], [ -77.002015, 38.951049 ], [ -77.000899, 38.948329 ], [ -77.000492, 38.947361 ], [ -77.000556, 38.947344 ], [ -77.000985, 38.947177 ], [ -77.001007, 38.947161 ], [ -77.001071, 38.947161 ], [ -77.001607, 38.946944 ], [ -77.002294, 38.946660 ], [ -77.003024, 38.946376 ], [ -77.003109, 38.946343 ], [ -77.003238, 38.946310 ], [ -77.002659, 38.947912 ], [ -77.002959, 38.948980 ], [ -77.003303, 38.949430 ], [ -77.003388, 38.949547 ], [ -77.003410, 38.949564 ], [ -77.003474, 38.949664 ], [ -77.003539, 38.949747 ], [ -77.003539, 38.949781 ], [ -77.003582, 38.949831 ], [ -77.003603, 38.949864 ], [ -77.003624, 38.949964 ], [ -77.003646, 38.950014 ], [ -77.003667, 38.950098 ], [ -77.003667, 38.950131 ], [ -77.003710, 38.950398 ], [ -77.003710, 38.950532 ], [ -77.003732, 38.950665 ], [ -77.003753, 38.950732 ], [ -77.003775, 38.950782 ], [ -77.003775, 38.950815 ], [ -77.003796, 38.950849 ], [ -77.003818, 38.950882 ], [ -77.003839, 38.950915 ], [ -77.003860, 38.950949 ], [ -77.003882, 38.950982 ], [ -77.003903, 38.951016 ], [ -77.003946, 38.951049 ], [ -77.003968, 38.951082 ], [ -77.004011, 38.951099 ], [ -77.004097, 38.951132 ], [ -77.004118, 38.951149 ], [ -77.004161, 38.951166 ], [ -77.004182, 38.951182 ], [ -77.004204, 38.951216 ], [ -77.004204, 38.951233 ], [ -77.004268, 38.951299 ], [ -77.004333, 38.951366 ], [ -77.004461, 38.951500 ], [ -77.004504, 38.951533 ], [ -77.004547, 38.951566 ], [ -77.004590, 38.951583 ], [ -77.004697, 38.951666 ], [ -77.004805, 38.951716 ], [ -77.004848, 38.951733 ], [ -77.004955, 38.951783 ], [ -77.005062, 38.951833 ], [ -77.005126, 38.951850 ], [ -77.005169, 38.951867 ], [ -77.005298, 38.951900 ], [ -77.005384, 38.951917 ], [ -77.005556, 38.951950 ], [ -77.005663, 38.951983 ], [ -77.005920, 38.952034 ], [ -77.005963, 38.952034 ], [ -77.006006, 38.952034 ], [ -77.006049, 38.952050 ], [ -77.006092, 38.952050 ], [ -77.006178, 38.952050 ], [ -77.006221, 38.952034 ], [ -77.006307, 38.952034 ], [ -77.006350, 38.952017 ], [ -77.006457, 38.952000 ], [ -77.006629, 38.951967 ], [ -77.007101, 38.951867 ], [ -77.007251, 38.951833 ], [ -77.007401, 38.951817 ], [ -77.007465, 38.951817 ], [ -77.007551, 38.951800 ], [ -77.007658, 38.951800 ], [ -77.007830, 38.951800 ], [ -77.007830, 38.951933 ], [ -77.007830, 38.952000 ], [ -77.007830, 38.952034 ], [ -77.007830, 38.952367 ], [ -77.007937, 38.952384 ], [ -77.008002, 38.952384 ], [ -77.008324, 38.952401 ], [ -77.008410, 38.952401 ], [ -77.008646, 38.952401 ], [ -77.008860, 38.952401 ], [ -77.009010, 38.952401 ], [ -77.009010, 38.952517 ], [ -77.009032, 38.952751 ], [ -77.009032, 38.952818 ], [ -77.009032, 38.952851 ], [ -77.009053, 38.952968 ], [ -77.009053, 38.953035 ], [ -77.009053, 38.953118 ], [ -77.009053, 38.953335 ], [ -77.009032, 38.953452 ], [ -77.009032, 38.953535 ], [ -77.009053, 38.953786 ], [ -77.009032, 38.954103 ], [ -77.009032, 38.954470 ], [ -77.009032, 38.954537 ], [ -77.009032, 38.954620 ], [ -77.009032, 38.954820 ] ] ], [ [ [ -76.990471, 38.946276 ], [ -76.991308, 38.946276 ], [ -76.991951, 38.946276 ], [ -76.992509, 38.946276 ], [ -76.992638, 38.946276 ], [ -76.992767, 38.946276 ], [ -76.993260, 38.946276 ], [ -76.993861, 38.946276 ], [ -76.994312, 38.946276 ], [ -76.994827, 38.946276 ], [ -76.994956, 38.946276 ], [ -76.995492, 38.946276 ], [ -76.996608, 38.946276 ], [ -76.996930, 38.946260 ], [ -76.997037, 38.946276 ], [ -76.997144, 38.946276 ], [ -76.997638, 38.946276 ], [ -76.998088, 38.946276 ], [ -76.998367, 38.946276 ], [ -76.998990, 38.946276 ], [ -76.999118, 38.946276 ], [ -77.000041, 38.946276 ], [ -77.000320, 38.946944 ], [ -77.000320, 38.946977 ], [ -77.000449, 38.947278 ], [ -77.000492, 38.947361 ], [ -77.000899, 38.948329 ], [ -77.002015, 38.951049 ], [ -77.000642, 38.951082 ], [ -77.000320, 38.951349 ], [ -76.999848, 38.951616 ], [ -76.999462, 38.951750 ], [ -76.999054, 38.951833 ], [ -76.998775, 38.951867 ], [ -76.998560, 38.951883 ], [ -76.998367, 38.951883 ], [ -76.998217, 38.951867 ], [ -76.998110, 38.951850 ], [ -76.998003, 38.951833 ], [ -76.997917, 38.951833 ], [ -76.997445, 38.951833 ], [ -76.996865, 38.951883 ], [ -76.996243, 38.951967 ], [ -76.995986, 38.952000 ], [ -76.995792, 38.952034 ], [ -76.995428, 38.952100 ], [ -76.995170, 38.952150 ], [ -76.994956, 38.952200 ], [ -76.994805, 38.952234 ], [ -76.994762, 38.952250 ], [ -76.994634, 38.952284 ], [ -76.994548, 38.952300 ], [ -76.994398, 38.952317 ], [ -76.994247, 38.952334 ], [ -76.994140, 38.952334 ], [ -76.994097, 38.952334 ], [ -76.993947, 38.952351 ], [ -76.993818, 38.952351 ], [ -76.993260, 38.952367 ], [ -76.993067, 38.952367 ], [ -76.992810, 38.952384 ], [ -76.992702, 38.952384 ], [ -76.992617, 38.952384 ], [ -76.992123, 38.952401 ], [ -76.991866, 38.952401 ], [ -76.991673, 38.952401 ], [ -76.991587, 38.952401 ], [ -76.991522, 38.952401 ], [ -76.990814, 38.952401 ], [ -76.990557, 38.952401 ], [ -76.990471, 38.952401 ], [ -76.990471, 38.946276 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002302", "GEOID": "11001002302", "NAME": "23.02", "NAMELSAD": "Census Tract 23.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2010924, "AWATER": 5298, "INTPTLAT": "+38.9341270", "INTPTLON": "-077.0095843" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.014267, 38.926297 ], [ -77.014418, 38.926331 ], [ -77.014461, 38.926347 ], [ -77.014868, 38.926481 ], [ -77.014976, 38.926514 ], [ -77.015061, 38.926565 ], [ -77.015169, 38.926615 ], [ -77.016091, 38.927149 ], [ -77.016671, 38.927483 ], [ -77.016735, 38.927533 ], [ -77.016971, 38.927633 ], [ -77.017121, 38.927716 ], [ -77.017186, 38.927750 ], [ -77.017250, 38.927783 ], [ -77.017336, 38.927816 ], [ -77.017379, 38.927816 ], [ -77.017550, 38.927883 ], [ -77.017593, 38.927900 ], [ -77.017679, 38.927917 ], [ -77.017808, 38.927933 ], [ -77.017829, 38.927983 ], [ -77.017872, 38.928017 ], [ -77.017937, 38.928050 ], [ -77.017958, 38.928084 ], [ -77.018001, 38.928117 ], [ -77.018044, 38.928167 ], [ -77.018065, 38.928200 ], [ -77.018087, 38.928250 ], [ -77.018087, 38.928284 ], [ -77.018108, 38.928317 ], [ -77.018108, 38.928351 ], [ -77.018108, 38.928401 ], [ -77.018108, 38.928434 ], [ -77.018108, 38.928484 ], [ -77.018044, 38.928718 ], [ -77.018023, 38.928768 ], [ -77.017980, 38.928885 ], [ -77.017958, 38.929002 ], [ -77.017937, 38.929018 ], [ -77.017937, 38.929035 ], [ -77.017937, 38.929085 ], [ -77.017937, 38.929102 ], [ -77.017937, 38.929135 ], [ -77.017958, 38.929185 ], [ -77.017980, 38.929319 ], [ -77.018001, 38.929386 ], [ -77.018044, 38.929603 ], [ -77.018065, 38.929686 ], [ -77.018065, 38.929736 ], [ -77.018173, 38.930153 ], [ -77.018259, 38.930471 ], [ -77.018280, 38.930554 ], [ -77.018344, 38.930821 ], [ -77.018409, 38.931105 ], [ -77.018495, 38.931439 ], [ -77.018495, 38.931505 ], [ -77.018645, 38.932056 ], [ -77.018795, 38.932691 ], [ -77.018924, 38.933175 ], [ -77.019010, 38.933525 ], [ -77.019031, 38.933609 ], [ -77.019095, 38.933909 ], [ -77.019117, 38.933976 ], [ -77.019138, 38.934026 ], [ -77.019160, 38.934159 ], [ -77.019160, 38.934176 ], [ -77.019160, 38.934243 ], [ -77.019160, 38.934376 ], [ -77.019181, 38.934810 ], [ -77.019181, 38.934894 ], [ -77.019181, 38.935211 ], [ -77.019203, 38.935561 ], [ -77.019203, 38.935862 ], [ -77.019224, 38.936196 ], [ -77.019224, 38.936580 ], [ -77.019224, 38.936730 ], [ -77.019224, 38.936813 ], [ -77.019224, 38.936897 ], [ -77.019224, 38.936930 ], [ -77.019203, 38.936964 ], [ -77.019203, 38.936997 ], [ -77.019181, 38.937030 ], [ -77.019160, 38.937080 ], [ -77.019074, 38.937247 ], [ -77.019031, 38.937397 ], [ -77.018881, 38.937431 ], [ -77.018752, 38.937464 ], [ -77.018452, 38.937531 ], [ -77.018344, 38.937564 ], [ -77.018237, 38.937598 ], [ -77.018044, 38.937648 ], [ -77.017765, 38.937715 ], [ -77.017722, 38.937731 ], [ -77.017636, 38.937765 ], [ -77.017593, 38.937781 ], [ -77.017508, 38.937815 ], [ -77.017443, 38.937865 ], [ -77.017400, 38.937881 ], [ -77.017336, 38.937915 ], [ -77.017272, 38.937965 ], [ -77.017207, 38.938015 ], [ -77.017186, 38.938032 ], [ -77.016864, 38.938315 ], [ -77.016542, 38.938616 ], [ -77.016456, 38.938699 ], [ -77.016242, 38.938883 ], [ -77.015426, 38.939617 ], [ -77.015254, 38.939751 ], [ -77.015212, 38.939801 ], [ -77.015190, 38.939818 ], [ -77.015190, 38.939851 ], [ -77.015083, 38.940001 ], [ -77.014997, 38.940135 ], [ -77.014847, 38.940402 ], [ -77.014611, 38.940752 ], [ -77.014568, 38.940836 ], [ -77.014375, 38.941086 ], [ -77.014246, 38.941236 ], [ -77.014182, 38.941303 ], [ -77.013752, 38.941720 ], [ -77.013516, 38.941954 ], [ -77.013409, 38.942054 ], [ -77.013302, 38.942137 ], [ -77.013130, 38.942271 ], [ -77.012980, 38.942421 ], [ -77.012873, 38.942521 ], [ -77.012808, 38.942588 ], [ -77.012744, 38.942671 ], [ -77.012722, 38.942705 ], [ -77.012680, 38.942755 ], [ -77.012637, 38.942805 ], [ -77.012594, 38.942872 ], [ -77.012572, 38.942938 ], [ -77.012444, 38.943189 ], [ -77.012422, 38.943222 ], [ -77.012401, 38.943289 ], [ -77.012208, 38.943723 ], [ -77.012186, 38.943756 ], [ -77.012165, 38.943806 ], [ -77.012143, 38.943823 ], [ -77.012014, 38.943923 ], [ -77.011843, 38.944073 ], [ -77.011843, 38.944090 ], [ -77.011757, 38.944157 ], [ -77.011671, 38.944240 ], [ -77.011607, 38.944274 ], [ -77.011564, 38.944307 ], [ -77.011542, 38.944324 ], [ -77.011499, 38.944340 ], [ -77.011456, 38.944374 ], [ -77.011285, 38.944440 ], [ -77.011220, 38.944474 ], [ -77.011178, 38.944491 ], [ -77.011049, 38.944541 ], [ -77.011006, 38.944557 ], [ -77.010920, 38.944607 ], [ -77.010791, 38.944474 ], [ -77.010534, 38.944207 ], [ -77.010427, 38.944090 ], [ -77.009783, 38.943422 ], [ -77.009783, 38.943406 ], [ -77.009697, 38.943322 ], [ -77.009654, 38.943289 ], [ -77.009568, 38.943239 ], [ -77.009461, 38.943139 ], [ -77.009332, 38.943055 ], [ -77.009268, 38.943022 ], [ -77.009139, 38.942938 ], [ -77.009010, 38.942855 ], [ -77.008946, 38.942822 ], [ -77.008753, 38.942705 ], [ -77.008495, 38.942555 ], [ -77.008345, 38.942488 ], [ -77.008216, 38.942421 ], [ -77.008131, 38.942404 ], [ -77.008023, 38.942371 ], [ -77.008216, 38.941937 ], [ -77.008324, 38.941603 ], [ -77.008345, 38.941353 ], [ -77.008367, 38.941053 ], [ -77.008345, 38.940852 ], [ -77.008302, 38.940619 ], [ -77.008195, 38.940335 ], [ -77.008045, 38.940035 ], [ -77.007594, 38.939200 ], [ -77.006886, 38.937865 ], [ -77.006843, 38.937798 ], [ -77.006779, 38.937665 ], [ -77.006693, 38.937498 ], [ -77.006607, 38.937331 ], [ -77.006543, 38.937164 ], [ -77.006457, 38.936880 ], [ -77.006392, 38.936680 ], [ -77.006350, 38.936596 ], [ -77.006071, 38.936630 ], [ -77.005856, 38.936646 ], [ -77.005749, 38.936663 ], [ -77.005620, 38.936680 ], [ -77.004504, 38.936813 ], [ -77.004375, 38.936813 ], [ -77.004247, 38.936813 ], [ -77.004139, 38.936813 ], [ -77.003989, 38.936780 ], [ -77.003667, 38.936713 ], [ -77.003539, 38.936663 ], [ -77.003345, 38.936596 ], [ -77.003174, 38.936546 ], [ -77.003045, 38.936463 ], [ -77.002809, 38.936313 ], [ -77.002702, 38.936246 ], [ -77.002616, 38.936196 ], [ -77.002552, 38.936162 ], [ -77.002423, 38.936146 ], [ -77.002273, 38.936146 ], [ -77.002122, 38.936146 ], [ -77.002101, 38.936062 ], [ -77.002058, 38.935762 ], [ -77.001951, 38.935294 ], [ -77.001886, 38.934860 ], [ -77.001801, 38.934443 ], [ -77.001715, 38.934009 ], [ -77.001328, 38.931990 ], [ -77.001328, 38.931973 ], [ -77.001307, 38.931806 ], [ -77.001221, 38.931606 ], [ -77.000985, 38.931205 ], [ -77.001114, 38.931155 ], [ -77.001221, 38.931105 ], [ -77.001457, 38.930971 ], [ -77.001908, 38.930721 ], [ -77.002079, 38.930637 ], [ -77.002208, 38.930571 ], [ -77.002444, 38.930437 ], [ -77.002659, 38.930320 ], [ -77.002788, 38.930254 ], [ -77.003045, 38.930103 ], [ -77.003174, 38.930037 ], [ -77.003260, 38.929970 ], [ -77.003345, 38.929920 ], [ -77.003496, 38.929820 ], [ -77.003539, 38.929769 ], [ -77.003667, 38.929686 ], [ -77.003796, 38.929569 ], [ -77.003882, 38.929486 ], [ -77.003968, 38.929402 ], [ -77.004054, 38.929319 ], [ -77.004247, 38.929068 ], [ -77.004268, 38.929052 ], [ -77.004848, 38.928367 ], [ -77.004890, 38.928334 ], [ -77.004912, 38.928284 ], [ -77.005019, 38.928167 ], [ -77.005255, 38.927900 ], [ -77.005363, 38.927766 ], [ -77.005363, 38.927750 ], [ -77.005749, 38.927299 ], [ -77.005792, 38.927266 ], [ -77.005835, 38.927216 ], [ -77.005877, 38.927182 ], [ -77.005920, 38.927149 ], [ -77.005963, 38.927132 ], [ -77.006006, 38.927099 ], [ -77.006092, 38.927065 ], [ -77.006156, 38.927049 ], [ -77.006178, 38.927032 ], [ -77.006264, 38.927015 ], [ -77.006285, 38.927015 ], [ -77.006371, 38.926999 ], [ -77.006564, 38.926965 ], [ -77.006886, 38.926915 ], [ -77.007315, 38.926865 ], [ -77.007895, 38.926798 ], [ -77.007959, 38.926782 ], [ -77.008109, 38.926765 ], [ -77.008410, 38.926731 ], [ -77.008924, 38.926681 ], [ -77.009032, 38.926665 ], [ -77.009225, 38.926631 ], [ -77.009568, 38.926581 ], [ -77.010126, 38.926514 ], [ -77.011156, 38.926381 ], [ -77.011392, 38.926347 ], [ -77.011993, 38.926281 ], [ -77.012143, 38.926281 ], [ -77.012401, 38.926264 ], [ -77.012465, 38.926264 ], [ -77.012508, 38.926264 ], [ -77.012658, 38.926264 ], [ -77.013838, 38.926264 ], [ -77.013881, 38.926264 ], [ -77.014031, 38.926264 ], [ -77.014160, 38.926281 ], [ -77.014267, 38.926297 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009511", "GEOID": "11001009511", "NAME": "95.11", "NAMELSAD": "Census Tract 95.11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 719468, "AWATER": 0, "INTPTLAT": "+38.9372097", "INTPTLON": "-077.0010516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.008023, 38.942371 ], [ -77.007830, 38.942338 ], [ -77.007723, 38.942304 ], [ -77.007487, 38.942238 ], [ -77.007444, 38.942221 ], [ -77.007380, 38.942204 ], [ -77.007315, 38.942187 ], [ -77.007251, 38.942154 ], [ -77.007186, 38.942137 ], [ -77.007143, 38.942104 ], [ -77.007101, 38.942087 ], [ -77.006972, 38.942004 ], [ -77.005942, 38.941320 ], [ -77.005835, 38.941253 ], [ -77.005470, 38.940986 ], [ -77.005405, 38.940952 ], [ -77.005363, 38.940936 ], [ -77.005298, 38.940902 ], [ -77.005234, 38.940869 ], [ -77.005169, 38.940852 ], [ -77.005105, 38.940836 ], [ -77.005062, 38.940802 ], [ -77.004998, 38.940786 ], [ -77.004912, 38.940769 ], [ -77.004826, 38.940752 ], [ -77.004740, 38.940752 ], [ -77.004676, 38.940735 ], [ -77.004654, 38.940735 ], [ -77.004569, 38.940735 ], [ -77.004375, 38.940735 ], [ -77.003796, 38.940735 ], [ -77.003388, 38.940735 ], [ -77.003195, 38.940735 ], [ -77.002981, 38.940735 ], [ -77.002852, 38.940735 ], [ -77.002294, 38.940735 ], [ -77.000191, 38.940735 ], [ -76.999934, 38.940735 ], [ -76.999655, 38.940735 ], [ -76.999483, 38.940735 ], [ -76.999226, 38.940735 ], [ -76.999140, 38.940735 ], [ -76.998990, 38.940735 ], [ -76.998303, 38.940735 ], [ -76.997895, 38.940735 ], [ -76.997638, 38.940735 ], [ -76.996114, 38.937180 ], [ -76.995084, 38.934543 ], [ -76.995063, 38.934477 ], [ -76.994977, 38.934226 ], [ -76.994827, 38.933742 ], [ -76.994956, 38.933692 ], [ -76.995063, 38.933625 ], [ -76.995363, 38.933492 ], [ -76.995428, 38.933458 ], [ -76.995792, 38.933325 ], [ -76.996071, 38.933208 ], [ -76.996179, 38.933158 ], [ -76.996436, 38.933058 ], [ -76.996779, 38.932908 ], [ -76.997209, 38.932724 ], [ -76.997552, 38.932590 ], [ -76.997788, 38.932507 ], [ -76.998003, 38.932407 ], [ -76.998260, 38.932307 ], [ -76.998539, 38.932207 ], [ -76.998689, 38.932140 ], [ -76.999140, 38.931956 ], [ -77.000062, 38.931589 ], [ -77.000556, 38.931389 ], [ -77.000706, 38.931339 ], [ -77.000985, 38.931205 ], [ -77.001221, 38.931606 ], [ -77.001307, 38.931806 ], [ -77.001328, 38.931973 ], [ -77.001328, 38.931990 ], [ -77.001715, 38.934009 ], [ -77.001801, 38.934443 ], [ -77.001886, 38.934860 ], [ -77.001951, 38.935294 ], [ -77.002058, 38.935762 ], [ -77.002101, 38.936062 ], [ -77.002122, 38.936146 ], [ -77.002273, 38.936146 ], [ -77.002423, 38.936146 ], [ -77.002552, 38.936162 ], [ -77.002616, 38.936196 ], [ -77.002702, 38.936246 ], [ -77.002809, 38.936313 ], [ -77.003045, 38.936463 ], [ -77.003174, 38.936546 ], [ -77.003345, 38.936596 ], [ -77.003539, 38.936663 ], [ -77.003667, 38.936713 ], [ -77.003989, 38.936780 ], [ -77.004139, 38.936813 ], [ -77.004247, 38.936813 ], [ -77.004375, 38.936813 ], [ -77.004504, 38.936813 ], [ -77.005620, 38.936680 ], [ -77.005749, 38.936663 ], [ -77.005856, 38.936646 ], [ -77.006071, 38.936630 ], [ -77.006350, 38.936596 ], [ -77.006392, 38.936680 ], [ -77.006457, 38.936880 ], [ -77.006543, 38.937164 ], [ -77.006607, 38.937331 ], [ -77.006693, 38.937498 ], [ -77.006779, 38.937665 ], [ -77.006843, 38.937798 ], [ -77.006886, 38.937865 ], [ -77.007594, 38.939200 ], [ -77.008045, 38.940035 ], [ -77.008195, 38.940335 ], [ -77.008302, 38.940619 ], [ -77.008345, 38.940852 ], [ -77.008367, 38.941053 ], [ -77.008345, 38.941353 ], [ -77.008324, 38.941603 ], [ -77.008216, 38.941937 ], [ -77.008023, 38.942371 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009504", "GEOID": "11001009504", "NAME": "95.04", "NAMELSAD": "Census Tract 95.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1033168, "AWATER": 0, "INTPTLAT": "+38.9409032", "INTPTLON": "-076.9931121" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.934543 ], [ -76.990600, 38.934543 ], [ -76.991158, 38.934510 ], [ -76.991243, 38.934510 ], [ -76.991673, 38.934493 ], [ -76.992102, 38.934460 ], [ -76.992681, 38.934443 ], [ -76.992788, 38.934426 ], [ -76.992874, 38.934426 ], [ -76.992939, 38.934426 ], [ -76.992981, 38.934426 ], [ -76.993024, 38.934410 ], [ -76.993067, 38.934410 ], [ -76.993239, 38.934310 ], [ -76.993325, 38.934260 ], [ -76.993346, 38.934260 ], [ -76.993518, 38.934176 ], [ -76.993883, 38.934026 ], [ -76.993990, 38.933976 ], [ -76.994183, 38.933926 ], [ -76.994247, 38.933909 ], [ -76.994269, 38.933892 ], [ -76.994290, 38.933892 ], [ -76.994333, 38.933892 ], [ -76.994355, 38.933909 ], [ -76.994398, 38.933942 ], [ -76.994569, 38.933909 ], [ -76.994698, 38.933826 ], [ -76.994827, 38.933742 ], [ -76.994977, 38.934226 ], [ -76.995063, 38.934477 ], [ -76.995084, 38.934543 ], [ -76.996114, 38.937180 ], [ -76.997638, 38.940735 ], [ -77.000041, 38.946276 ], [ -76.999118, 38.946276 ], [ -76.998990, 38.946276 ], [ -76.998367, 38.946276 ], [ -76.998088, 38.946276 ], [ -76.997638, 38.946276 ], [ -76.997144, 38.946276 ], [ -76.997037, 38.946276 ], [ -76.996930, 38.946260 ], [ -76.996608, 38.946276 ], [ -76.995492, 38.946276 ], [ -76.994956, 38.946276 ], [ -76.994827, 38.946276 ], [ -76.994312, 38.946276 ], [ -76.993861, 38.946276 ], [ -76.993260, 38.946276 ], [ -76.992767, 38.946276 ], [ -76.992638, 38.946276 ], [ -76.992509, 38.946276 ], [ -76.991951, 38.946276 ], [ -76.991308, 38.946276 ], [ -76.990471, 38.946276 ], [ -76.990471, 38.934543 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009201", "GEOID": "11001009201", "NAME": "92.01", "NAMELSAD": "Census Tract 92.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 629781, "AWATER": 0, "INTPTLAT": "+38.9287161", "INTPTLON": "-076.9990184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.005899, 38.926431 ], [ -77.005963, 38.926481 ], [ -77.005985, 38.926498 ], [ -77.006049, 38.926581 ], [ -77.006114, 38.926665 ], [ -77.006199, 38.926798 ], [ -77.006242, 38.926898 ], [ -77.006285, 38.927015 ], [ -77.006264, 38.927015 ], [ -77.006178, 38.927032 ], [ -77.006156, 38.927049 ], [ -77.006092, 38.927065 ], [ -77.006006, 38.927099 ], [ -77.005963, 38.927132 ], [ -77.005920, 38.927149 ], [ -77.005877, 38.927182 ], [ -77.005835, 38.927216 ], [ -77.005792, 38.927266 ], [ -77.005749, 38.927299 ], [ -77.005363, 38.927750 ], [ -77.005363, 38.927766 ], [ -77.005255, 38.927900 ], [ -77.005019, 38.928167 ], [ -77.004912, 38.928284 ], [ -77.004890, 38.928334 ], [ -77.004848, 38.928367 ], [ -77.004268, 38.929052 ], [ -77.004247, 38.929068 ], [ -77.004054, 38.929319 ], [ -77.003968, 38.929402 ], [ -77.003882, 38.929486 ], [ -77.003796, 38.929569 ], [ -77.003667, 38.929686 ], [ -77.003539, 38.929769 ], [ -77.003496, 38.929820 ], [ -77.003345, 38.929920 ], [ -77.003260, 38.929970 ], [ -77.003174, 38.930037 ], [ -77.003045, 38.930103 ], [ -77.002788, 38.930254 ], [ -77.002659, 38.930320 ], [ -77.002444, 38.930437 ], [ -77.002208, 38.930571 ], [ -77.002079, 38.930637 ], [ -77.001908, 38.930721 ], [ -77.001457, 38.930971 ], [ -77.001221, 38.931105 ], [ -77.001114, 38.931155 ], [ -77.000985, 38.931205 ], [ -77.000706, 38.931339 ], [ -77.000556, 38.931389 ], [ -77.000062, 38.931589 ], [ -76.999140, 38.931956 ], [ -76.998689, 38.932140 ], [ -76.998539, 38.932207 ], [ -76.998260, 38.932307 ], [ -76.998003, 38.932407 ], [ -76.997788, 38.932507 ], [ -76.997552, 38.932590 ], [ -76.997209, 38.932724 ], [ -76.996779, 38.932908 ], [ -76.996436, 38.933058 ], [ -76.996179, 38.933158 ], [ -76.996071, 38.933208 ], [ -76.995792, 38.933325 ], [ -76.995428, 38.933458 ], [ -76.995363, 38.933492 ], [ -76.995063, 38.933625 ], [ -76.994956, 38.933692 ], [ -76.994827, 38.933742 ], [ -76.994720, 38.933342 ], [ -76.994591, 38.932807 ], [ -76.994483, 38.932373 ], [ -76.994312, 38.931389 ], [ -76.994226, 38.930905 ], [ -76.994140, 38.930237 ], [ -76.994119, 38.929786 ], [ -76.994097, 38.929252 ], [ -76.994097, 38.928634 ], [ -76.994140, 38.927917 ], [ -76.994162, 38.927433 ], [ -76.994312, 38.926498 ], [ -76.994419, 38.925913 ], [ -76.994483, 38.925580 ], [ -76.994634, 38.925580 ], [ -76.994805, 38.925580 ], [ -76.994956, 38.925580 ], [ -76.995471, 38.925580 ], [ -76.996157, 38.925580 ], [ -76.996264, 38.925580 ], [ -76.996608, 38.925580 ], [ -76.997166, 38.925580 ], [ -76.997809, 38.925580 ], [ -76.998432, 38.925580 ], [ -76.998796, 38.925580 ], [ -76.999505, 38.925580 ], [ -77.000127, 38.925580 ], [ -77.000148, 38.925580 ], [ -77.000427, 38.925580 ], [ -77.000556, 38.925596 ], [ -77.000685, 38.925596 ], [ -77.001328, 38.925596 ], [ -77.001650, 38.925596 ], [ -77.001994, 38.925596 ], [ -77.002444, 38.925596 ], [ -77.002659, 38.925596 ], [ -77.003045, 38.925596 ], [ -77.003109, 38.925596 ], [ -77.003238, 38.925596 ], [ -77.003388, 38.925613 ], [ -77.003496, 38.925630 ], [ -77.003624, 38.925646 ], [ -77.003796, 38.925680 ], [ -77.003925, 38.925696 ], [ -77.004032, 38.925730 ], [ -77.004182, 38.925763 ], [ -77.004268, 38.925797 ], [ -77.004375, 38.925830 ], [ -77.004440, 38.925847 ], [ -77.004590, 38.925897 ], [ -77.004676, 38.925930 ], [ -77.004719, 38.925947 ], [ -77.004869, 38.925997 ], [ -77.005084, 38.926064 ], [ -77.005363, 38.926147 ], [ -77.005448, 38.926181 ], [ -77.005470, 38.926197 ], [ -77.005577, 38.926231 ], [ -77.005620, 38.926247 ], [ -77.005663, 38.926264 ], [ -77.005684, 38.926281 ], [ -77.005727, 38.926297 ], [ -77.005749, 38.926314 ], [ -77.005792, 38.926331 ], [ -77.005835, 38.926381 ], [ -77.005899, 38.926431 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003702", "GEOID": "11001003702", "NAME": "37.02", "NAMELSAD": "Census Tract 37.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 119532, "AWATER": 0, "INTPTLAT": "+38.9249042", "INTPTLON": "-077.0343972" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.032399, 38.926565 ], [ -77.032335, 38.925747 ], [ -77.032335, 38.925646 ], [ -77.032313, 38.925496 ], [ -77.032313, 38.925429 ], [ -77.032249, 38.924828 ], [ -77.032228, 38.924762 ], [ -77.032206, 38.924545 ], [ -77.032185, 38.924278 ], [ -77.032142, 38.923760 ], [ -77.032120, 38.923626 ], [ -77.034073, 38.923493 ], [ -77.034695, 38.923460 ], [ -77.034824, 38.923443 ], [ -77.034888, 38.923443 ], [ -77.035296, 38.923426 ], [ -77.035296, 38.923293 ], [ -77.035489, 38.923276 ], [ -77.036476, 38.923243 ], [ -77.036476, 38.923426 ], [ -77.036476, 38.924227 ], [ -77.036476, 38.924762 ], [ -77.036476, 38.924828 ], [ -77.036476, 38.925596 ], [ -77.036476, 38.925797 ], [ -77.036476, 38.925880 ], [ -77.036476, 38.926181 ], [ -77.036476, 38.926264 ], [ -77.036326, 38.926297 ], [ -77.035983, 38.926314 ], [ -77.035468, 38.926331 ], [ -77.034931, 38.926347 ], [ -77.033601, 38.926431 ], [ -77.033107, 38.926464 ], [ -77.032721, 38.926481 ], [ -77.032614, 38.926498 ], [ -77.032528, 38.926531 ], [ -77.032399, 38.926565 ] ] ], [ [ [ -77.036498, 38.919136 ], [ -77.036498, 38.919286 ], [ -77.036498, 38.919854 ], [ -77.036498, 38.920304 ], [ -77.036498, 38.920354 ], [ -77.036476, 38.920955 ], [ -77.036476, 38.921673 ], [ -77.036476, 38.922608 ], [ -77.036476, 38.922725 ], [ -77.036476, 38.923176 ], [ -77.036476, 38.923209 ], [ -77.036476, 38.923243 ], [ -77.035489, 38.923276 ], [ -77.035296, 38.923293 ], [ -77.035296, 38.923426 ], [ -77.034888, 38.923443 ], [ -77.034824, 38.923443 ], [ -77.034695, 38.923460 ], [ -77.034073, 38.923493 ], [ -77.032120, 38.923626 ], [ -77.032056, 38.923009 ], [ -77.032034, 38.922692 ], [ -77.032013, 38.922425 ], [ -77.031991, 38.922341 ], [ -77.031927, 38.921657 ], [ -77.031863, 38.921089 ], [ -77.031863, 38.920989 ], [ -77.031841, 38.920755 ], [ -77.031841, 38.920672 ], [ -77.031841, 38.920638 ], [ -77.031841, 38.920605 ], [ -77.031841, 38.920555 ], [ -77.031841, 38.920505 ], [ -77.031841, 38.920421 ], [ -77.031863, 38.920321 ], [ -77.031927, 38.920104 ], [ -77.031927, 38.920054 ], [ -77.032206, 38.920004 ], [ -77.033300, 38.919770 ], [ -77.033558, 38.919703 ], [ -77.033880, 38.919637 ], [ -77.033923, 38.919620 ], [ -77.033966, 38.919603 ], [ -77.034009, 38.919586 ], [ -77.034030, 38.919570 ], [ -77.034073, 38.919553 ], [ -77.034094, 38.919520 ], [ -77.034330, 38.919269 ], [ -77.034416, 38.919186 ], [ -77.034717, 38.919169 ], [ -77.034845, 38.919186 ], [ -77.035489, 38.919186 ], [ -77.035897, 38.919186 ], [ -77.036304, 38.919186 ], [ -77.036347, 38.919186 ], [ -77.036498, 38.919136 ] ] ], [ [ [ -77.036347, 38.919186 ], [ -77.036304, 38.919186 ], [ -77.035897, 38.919186 ], [ -77.035489, 38.919186 ], [ -77.034845, 38.919186 ], [ -77.034717, 38.919169 ], [ -77.034416, 38.919186 ], [ -77.034330, 38.919269 ], [ -77.034094, 38.919520 ], [ -77.034073, 38.919553 ], [ -77.034030, 38.919570 ], [ -77.034009, 38.919586 ], [ -77.033966, 38.919603 ], [ -77.033923, 38.919620 ], [ -77.033880, 38.919637 ], [ -77.033558, 38.919703 ], [ -77.033300, 38.919770 ], [ -77.032206, 38.920004 ], [ -77.031927, 38.920054 ], [ -77.031949, 38.920021 ], [ -77.031949, 38.919970 ], [ -77.031949, 38.919954 ], [ -77.031949, 38.919269 ], [ -77.031949, 38.919186 ], [ -77.031949, 38.918117 ], [ -77.031949, 38.916999 ], [ -77.031949, 38.916364 ], [ -77.031949, 38.916281 ], [ -77.031949, 38.915563 ], [ -77.031949, 38.915262 ], [ -77.031949, 38.914828 ], [ -77.031949, 38.914478 ], [ -77.031949, 38.914177 ], [ -77.031949, 38.914094 ], [ -77.032313, 38.914094 ], [ -77.033257, 38.914094 ], [ -77.034395, 38.914094 ], [ -77.034545, 38.914094 ], [ -77.034695, 38.914094 ], [ -77.035339, 38.914094 ], [ -77.036154, 38.914094 ], [ -77.036498, 38.914094 ], [ -77.036498, 38.914261 ], [ -77.036498, 38.914828 ], [ -77.036498, 38.914895 ], [ -77.036498, 38.915196 ], [ -77.036498, 38.915496 ], [ -77.036498, 38.915563 ], [ -77.036498, 38.915813 ], [ -77.036498, 38.916231 ], [ -77.036498, 38.916281 ], [ -77.036476, 38.916414 ], [ -77.036476, 38.916798 ], [ -77.036476, 38.916999 ], [ -77.036498, 38.917166 ], [ -77.036498, 38.917199 ], [ -77.036498, 38.917299 ], [ -77.036498, 38.918017 ], [ -77.036498, 38.918034 ], [ -77.036498, 38.918117 ], [ -77.036498, 38.918518 ], [ -77.036498, 38.918935 ], [ -77.036498, 38.919002 ], [ -77.036498, 38.919136 ], [ -77.036347, 38.919186 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003600", "GEOID": "11001003600", "NAME": "36", "NAMELSAD": "Census Tract 36", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 305616, "AWATER": 0, "INTPTLAT": "+38.9236744", "INTPTLON": "-077.0296273" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.031927, 38.920054 ], [ -77.031927, 38.920104 ], [ -77.031863, 38.920321 ], [ -77.031841, 38.920421 ], [ -77.031841, 38.920505 ], [ -77.031841, 38.920555 ], [ -77.031841, 38.920605 ], [ -77.031841, 38.920638 ], [ -77.031841, 38.920672 ], [ -77.031841, 38.920755 ], [ -77.031863, 38.920989 ], [ -77.031863, 38.921089 ], [ -77.031927, 38.921657 ], [ -77.031991, 38.922341 ], [ -77.032013, 38.922425 ], [ -77.032034, 38.922692 ], [ -77.032056, 38.923009 ], [ -77.032120, 38.923626 ], [ -77.032142, 38.923760 ], [ -77.032185, 38.924278 ], [ -77.032206, 38.924545 ], [ -77.032228, 38.924762 ], [ -77.032249, 38.924828 ], [ -77.032313, 38.925429 ], [ -77.032313, 38.925496 ], [ -77.032335, 38.925646 ], [ -77.032335, 38.925747 ], [ -77.032399, 38.926565 ], [ -77.032163, 38.926681 ], [ -77.032056, 38.926715 ], [ -77.031991, 38.926731 ], [ -77.031841, 38.926731 ], [ -77.031562, 38.926731 ], [ -77.031455, 38.926731 ], [ -77.031283, 38.926748 ], [ -77.029974, 38.926748 ], [ -77.029867, 38.926748 ], [ -77.029696, 38.926748 ], [ -77.029588, 38.926731 ], [ -77.028730, 38.926731 ], [ -77.028279, 38.926731 ], [ -77.027185, 38.926731 ], [ -77.027099, 38.926748 ], [ -77.027035, 38.926748 ], [ -77.027035, 38.926715 ], [ -77.027035, 38.926631 ], [ -77.027035, 38.926414 ], [ -77.027035, 38.926130 ], [ -77.027035, 38.925847 ], [ -77.027035, 38.925747 ], [ -77.027035, 38.924762 ], [ -77.027035, 38.923910 ], [ -77.027035, 38.923843 ], [ -77.027035, 38.923760 ], [ -77.027035, 38.923476 ], [ -77.027035, 38.923025 ], [ -77.027035, 38.922658 ], [ -77.027035, 38.922425 ], [ -77.027035, 38.920755 ], [ -77.028000, 38.920705 ], [ -77.028086, 38.920705 ], [ -77.028387, 38.920688 ], [ -77.028451, 38.920688 ], [ -77.028666, 38.920672 ], [ -77.028730, 38.920672 ], [ -77.028794, 38.920655 ], [ -77.028837, 38.920655 ], [ -77.028859, 38.920655 ], [ -77.029395, 38.920555 ], [ -77.029481, 38.920521 ], [ -77.029674, 38.920505 ], [ -77.029974, 38.920438 ], [ -77.030253, 38.920388 ], [ -77.031498, 38.920154 ], [ -77.031927, 38.920054 ] ] ], [ [ [ -77.023945, 38.917767 ], [ -77.023945, 38.917700 ], [ -77.023945, 38.917099 ], [ -77.023945, 38.916982 ], [ -77.024138, 38.916999 ], [ -77.024696, 38.916999 ], [ -77.025254, 38.916999 ], [ -77.025318, 38.916999 ], [ -77.025747, 38.916999 ], [ -77.025983, 38.916999 ], [ -77.026198, 38.916999 ], [ -77.027035, 38.916999 ], [ -77.027228, 38.916999 ], [ -77.027571, 38.916999 ], [ -77.027957, 38.916999 ], [ -77.028086, 38.916999 ], [ -77.028644, 38.916999 ], [ -77.029459, 38.916999 ], [ -77.029610, 38.916999 ], [ -77.029760, 38.916999 ], [ -77.029974, 38.916999 ], [ -77.031369, 38.916999 ], [ -77.031949, 38.916999 ], [ -77.031949, 38.918117 ], [ -77.031949, 38.919186 ], [ -77.031949, 38.919269 ], [ -77.031949, 38.919954 ], [ -77.031949, 38.919970 ], [ -77.031949, 38.920021 ], [ -77.031927, 38.920054 ], [ -77.031498, 38.920154 ], [ -77.030253, 38.920388 ], [ -77.029974, 38.920438 ], [ -77.029674, 38.920505 ], [ -77.029481, 38.920521 ], [ -77.029395, 38.920555 ], [ -77.028859, 38.920655 ], [ -77.028837, 38.920655 ], [ -77.028794, 38.920655 ], [ -77.028730, 38.920672 ], [ -77.028666, 38.920672 ], [ -77.028451, 38.920688 ], [ -77.028387, 38.920688 ], [ -77.028086, 38.920705 ], [ -77.028000, 38.920705 ], [ -77.027035, 38.920755 ], [ -77.026820, 38.920772 ], [ -77.026756, 38.920772 ], [ -77.026713, 38.920772 ], [ -77.026691, 38.920755 ], [ -77.026520, 38.920705 ], [ -77.026477, 38.920688 ], [ -77.026091, 38.920571 ], [ -77.026026, 38.920555 ], [ -77.025983, 38.920538 ], [ -77.025962, 38.920521 ], [ -77.025919, 38.920488 ], [ -77.025898, 38.920488 ], [ -77.025855, 38.920455 ], [ -77.025833, 38.920438 ], [ -77.025661, 38.920221 ], [ -77.025447, 38.919970 ], [ -77.025232, 38.919737 ], [ -77.025146, 38.919637 ], [ -77.025104, 38.919586 ], [ -77.025082, 38.919536 ], [ -77.025018, 38.919470 ], [ -77.024996, 38.919420 ], [ -77.024846, 38.919186 ], [ -77.024589, 38.918735 ], [ -77.024589, 38.918702 ], [ -77.024503, 38.918568 ], [ -77.024460, 38.918501 ], [ -77.024395, 38.918401 ], [ -77.024310, 38.918251 ], [ -77.024267, 38.918151 ], [ -77.024095, 38.917934 ], [ -77.024052, 38.917867 ], [ -77.023966, 38.917800 ], [ -77.023945, 38.917767 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005202", "GEOID": "11001005202", "NAME": "52.02", "NAMELSAD": "Census Tract 52.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 246292, "AWATER": 0, "INTPTLAT": "+38.9111270", "INTPTLON": "-077.0344946" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.034566, 38.906563 ], [ -77.034802, 38.906647 ], [ -77.035038, 38.906730 ], [ -77.035425, 38.906864 ], [ -77.036176, 38.907131 ], [ -77.036154, 38.907148 ], [ -77.036133, 38.907181 ], [ -77.036133, 38.907215 ], [ -77.036133, 38.907248 ], [ -77.036133, 38.907265 ], [ -77.036154, 38.907298 ], [ -77.036154, 38.907315 ], [ -77.036176, 38.907348 ], [ -77.036219, 38.907382 ], [ -77.036240, 38.907415 ], [ -77.036262, 38.907415 ], [ -77.036304, 38.907432 ], [ -77.036347, 38.907448 ], [ -77.036390, 38.907448 ], [ -77.036519, 38.907465 ], [ -77.036519, 38.908317 ], [ -77.036519, 38.908701 ], [ -77.036519, 38.909085 ], [ -77.036519, 38.909552 ], [ -77.036519, 38.909636 ], [ -77.036519, 38.909719 ], [ -77.036519, 38.909786 ], [ -77.036519, 38.910387 ], [ -77.036519, 38.910454 ], [ -77.036519, 38.911005 ], [ -77.036519, 38.911122 ], [ -77.036519, 38.911205 ], [ -77.036519, 38.911873 ], [ -77.036498, 38.912224 ], [ -77.036519, 38.912608 ], [ -77.036498, 38.912691 ], [ -77.036498, 38.912958 ], [ -77.036498, 38.913342 ], [ -77.036498, 38.913426 ], [ -77.036498, 38.913559 ], [ -77.036498, 38.914010 ], [ -77.036498, 38.914094 ], [ -77.036154, 38.914094 ], [ -77.035339, 38.914094 ], [ -77.034695, 38.914094 ], [ -77.034545, 38.914094 ], [ -77.034395, 38.914094 ], [ -77.033257, 38.914094 ], [ -77.032313, 38.914094 ], [ -77.031949, 38.914094 ], [ -77.031949, 38.913693 ], [ -77.031949, 38.913342 ], [ -77.031949, 38.912608 ], [ -77.031949, 38.911873 ], [ -77.031949, 38.911122 ], [ -77.031949, 38.911005 ], [ -77.031949, 38.910955 ], [ -77.031949, 38.910888 ], [ -77.031949, 38.910387 ], [ -77.031949, 38.909652 ], [ -77.032142, 38.909652 ], [ -77.032614, 38.909652 ], [ -77.032743, 38.909652 ], [ -77.033987, 38.909652 ], [ -77.034416, 38.909652 ], [ -77.034545, 38.909652 ], [ -77.034545, 38.908951 ], [ -77.034545, 38.908918 ], [ -77.034545, 38.908701 ], [ -77.034545, 38.908434 ], [ -77.034566, 38.907933 ], [ -77.034566, 38.907732 ], [ -77.034566, 38.907248 ], [ -77.034566, 38.906697 ], [ -77.034566, 38.906563 ] ] ], [ [ [ -77.031949, 38.916999 ], [ -77.031369, 38.916999 ], [ -77.029974, 38.916999 ], [ -77.029760, 38.916999 ], [ -77.029610, 38.916999 ], [ -77.029459, 38.916999 ], [ -77.028644, 38.916999 ], [ -77.028086, 38.916999 ], [ -77.027957, 38.916999 ], [ -77.027571, 38.916999 ], [ -77.027228, 38.916999 ], [ -77.027035, 38.916999 ], [ -77.026198, 38.916999 ], [ -77.025983, 38.916999 ], [ -77.025747, 38.916999 ], [ -77.025318, 38.916999 ], [ -77.025254, 38.916999 ], [ -77.024696, 38.916999 ], [ -77.024138, 38.916999 ], [ -77.023945, 38.916982 ], [ -77.022936, 38.916715 ], [ -77.022700, 38.916615 ], [ -77.022507, 38.916531 ], [ -77.022142, 38.916364 ], [ -77.021885, 38.916264 ], [ -77.021906, 38.915563 ], [ -77.021906, 38.915463 ], [ -77.021906, 38.915262 ], [ -77.021906, 38.914327 ], [ -77.021906, 38.914094 ], [ -77.022936, 38.914094 ], [ -77.023065, 38.914094 ], [ -77.023451, 38.914077 ], [ -77.023966, 38.914077 ], [ -77.024310, 38.914077 ], [ -77.024353, 38.914094 ], [ -77.025576, 38.914077 ], [ -77.025661, 38.914077 ], [ -77.025983, 38.914077 ], [ -77.027035, 38.914094 ], [ -77.028065, 38.914094 ], [ -77.029610, 38.914094 ], [ -77.029738, 38.914094 ], [ -77.030253, 38.914094 ], [ -77.030919, 38.914094 ], [ -77.031670, 38.914094 ], [ -77.031777, 38.914094 ], [ -77.031949, 38.914094 ], [ -77.031949, 38.914177 ], [ -77.031949, 38.914478 ], [ -77.031949, 38.914828 ], [ -77.031949, 38.915262 ], [ -77.031949, 38.915563 ], [ -77.031949, 38.916281 ], [ -77.031949, 38.916364 ], [ -77.031949, 38.916999 ] ] ], [ [ [ -77.031949, 38.909652 ], [ -77.031949, 38.910387 ], [ -77.031949, 38.910888 ], [ -77.031949, 38.910955 ], [ -77.031949, 38.911005 ], [ -77.031949, 38.911122 ], [ -77.031949, 38.911873 ], [ -77.031949, 38.912608 ], [ -77.031949, 38.913342 ], [ -77.031949, 38.913693 ], [ -77.031949, 38.914094 ], [ -77.031777, 38.914094 ], [ -77.031670, 38.914094 ], [ -77.030919, 38.914094 ], [ -77.030253, 38.914094 ], [ -77.029738, 38.914094 ], [ -77.029610, 38.914094 ], [ -77.028065, 38.914094 ], [ -77.027035, 38.914094 ], [ -77.027035, 38.913977 ], [ -77.027035, 38.912608 ], [ -77.027035, 38.911756 ], [ -77.027035, 38.911255 ], [ -77.027035, 38.911122 ], [ -77.027035, 38.910938 ], [ -77.027035, 38.910888 ], [ -77.027035, 38.910704 ], [ -77.027035, 38.910671 ], [ -77.027035, 38.910604 ], [ -77.027035, 38.910554 ], [ -77.027035, 38.910471 ], [ -77.027035, 38.909636 ], [ -77.027335, 38.909652 ], [ -77.027400, 38.909636 ], [ -77.027571, 38.909636 ], [ -77.028086, 38.909636 ], [ -77.028065, 38.909936 ], [ -77.028065, 38.909986 ], [ -77.028065, 38.910103 ], [ -77.028086, 38.910170 ], [ -77.028086, 38.910254 ], [ -77.028966, 38.909870 ], [ -77.028987, 38.909920 ], [ -77.029030, 38.909970 ], [ -77.029052, 38.909986 ], [ -77.029116, 38.910036 ], [ -77.029138, 38.910053 ], [ -77.029181, 38.910087 ], [ -77.029223, 38.910103 ], [ -77.029266, 38.910120 ], [ -77.029288, 38.910137 ], [ -77.029374, 38.910153 ], [ -77.029438, 38.910170 ], [ -77.029502, 38.910187 ], [ -77.029567, 38.910187 ], [ -77.029631, 38.910187 ], [ -77.029653, 38.910187 ], [ -77.029738, 38.910187 ], [ -77.029803, 38.910170 ], [ -77.029846, 38.910153 ], [ -77.029910, 38.910137 ], [ -77.029953, 38.910137 ], [ -77.029974, 38.910120 ], [ -77.030039, 38.910087 ], [ -77.030060, 38.910070 ], [ -77.030103, 38.910053 ], [ -77.030125, 38.910020 ], [ -77.030168, 38.910003 ], [ -77.030189, 38.909970 ], [ -77.030210, 38.909936 ], [ -77.030232, 38.909920 ], [ -77.030253, 38.909886 ], [ -77.030275, 38.909853 ], [ -77.030296, 38.909819 ], [ -77.030318, 38.909769 ], [ -77.030318, 38.909703 ], [ -77.030318, 38.909669 ], [ -77.030554, 38.909636 ], [ -77.030811, 38.909636 ], [ -77.030897, 38.909636 ], [ -77.031069, 38.909652 ], [ -77.031369, 38.909652 ], [ -77.031777, 38.909636 ], [ -77.031949, 38.909652 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003500", "GEOID": "11001003500", "NAME": "35", "NAMELSAD": "Census Tract 35", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 382021, "AWATER": 0, "INTPTLAT": "+38.9223765", "INTPTLON": "-077.0243410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027035, 38.926748 ], [ -77.026970, 38.926748 ], [ -77.026627, 38.926798 ], [ -77.026348, 38.926815 ], [ -77.026155, 38.926832 ], [ -77.025940, 38.926848 ], [ -77.025769, 38.926865 ], [ -77.025082, 38.926932 ], [ -77.024417, 38.926982 ], [ -77.023516, 38.927065 ], [ -77.023473, 38.927082 ], [ -77.023408, 38.927082 ], [ -77.023323, 38.927099 ], [ -77.023237, 38.927115 ], [ -77.023172, 38.927149 ], [ -77.023065, 38.927182 ], [ -77.023022, 38.927199 ], [ -77.022958, 38.927232 ], [ -77.022893, 38.926848 ], [ -77.022893, 38.926765 ], [ -77.022872, 38.926631 ], [ -77.022872, 38.926565 ], [ -77.022829, 38.926347 ], [ -77.022808, 38.926147 ], [ -77.022765, 38.925830 ], [ -77.022743, 38.925780 ], [ -77.022743, 38.925696 ], [ -77.022657, 38.925162 ], [ -77.022614, 38.924812 ], [ -77.022550, 38.924378 ], [ -77.022507, 38.924177 ], [ -77.022486, 38.923877 ], [ -77.022293, 38.922642 ], [ -77.022250, 38.922341 ], [ -77.022142, 38.921590 ], [ -77.022099, 38.921306 ], [ -77.022057, 38.921039 ], [ -77.022057, 38.920955 ], [ -77.022035, 38.920872 ], [ -77.021928, 38.920071 ], [ -77.021928, 38.919987 ], [ -77.021906, 38.919887 ], [ -77.021906, 38.919770 ], [ -77.021885, 38.919486 ], [ -77.021885, 38.918985 ], [ -77.021885, 38.918601 ], [ -77.021885, 38.917750 ], [ -77.021885, 38.916865 ], [ -77.021885, 38.916448 ], [ -77.021885, 38.916264 ], [ -77.022142, 38.916364 ], [ -77.022507, 38.916531 ], [ -77.022700, 38.916615 ], [ -77.022936, 38.916715 ], [ -77.023945, 38.916982 ], [ -77.023945, 38.917099 ], [ -77.023945, 38.917700 ], [ -77.023945, 38.917767 ], [ -77.023966, 38.917800 ], [ -77.024052, 38.917867 ], [ -77.024095, 38.917934 ], [ -77.024267, 38.918151 ], [ -77.024310, 38.918251 ], [ -77.024395, 38.918401 ], [ -77.024460, 38.918501 ], [ -77.024503, 38.918568 ], [ -77.024589, 38.918702 ], [ -77.024589, 38.918735 ], [ -77.024846, 38.919186 ], [ -77.024996, 38.919420 ], [ -77.025018, 38.919470 ], [ -77.025082, 38.919536 ], [ -77.025104, 38.919586 ], [ -77.025146, 38.919637 ], [ -77.025232, 38.919737 ], [ -77.025447, 38.919970 ], [ -77.025661, 38.920221 ], [ -77.025833, 38.920438 ], [ -77.025855, 38.920455 ], [ -77.025898, 38.920488 ], [ -77.025919, 38.920488 ], [ -77.025962, 38.920521 ], [ -77.025983, 38.920538 ], [ -77.026026, 38.920555 ], [ -77.026091, 38.920571 ], [ -77.026477, 38.920688 ], [ -77.026520, 38.920705 ], [ -77.026691, 38.920755 ], [ -77.026713, 38.920772 ], [ -77.026756, 38.920772 ], [ -77.026820, 38.920772 ], [ -77.027035, 38.920755 ], [ -77.027035, 38.922425 ], [ -77.027035, 38.922658 ], [ -77.027035, 38.923025 ], [ -77.027035, 38.923476 ], [ -77.027035, 38.923760 ], [ -77.027035, 38.923843 ], [ -77.027035, 38.923910 ], [ -77.027035, 38.924762 ], [ -77.027035, 38.925747 ], [ -77.027035, 38.925847 ], [ -77.027035, 38.926130 ], [ -77.027035, 38.926414 ], [ -77.027035, 38.926631 ], [ -77.027035, 38.926715 ], [ -77.027035, 38.926748 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003400", "GEOID": "11001003400", "NAME": "34", "NAMELSAD": "Census Tract 34", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 911458, "AWATER": 159593, "INTPTLAT": "+38.9221674", "INTPTLON": "-077.0177044" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.022700, 38.927316 ], [ -77.022614, 38.927332 ], [ -77.022550, 38.927349 ], [ -77.021885, 38.927399 ], [ -77.021263, 38.927466 ], [ -77.020984, 38.927483 ], [ -77.020447, 38.927533 ], [ -77.020319, 38.927700 ], [ -77.020254, 38.927766 ], [ -77.020190, 38.927833 ], [ -77.020040, 38.927883 ], [ -77.019331, 38.927933 ], [ -77.019267, 38.927933 ], [ -77.019160, 38.927950 ], [ -77.019010, 38.927967 ], [ -77.018645, 38.927983 ], [ -77.018473, 38.927983 ], [ -77.018430, 38.927983 ], [ -77.018323, 38.927983 ], [ -77.018216, 38.927983 ], [ -77.018087, 38.927983 ], [ -77.018001, 38.927967 ], [ -77.017851, 38.927950 ], [ -77.017808, 38.927933 ], [ -77.017679, 38.927917 ], [ -77.017593, 38.927900 ], [ -77.017550, 38.927883 ], [ -77.017379, 38.927816 ], [ -77.017336, 38.927816 ], [ -77.017250, 38.927783 ], [ -77.017186, 38.927750 ], [ -77.017121, 38.927716 ], [ -77.016971, 38.927633 ], [ -77.016735, 38.927533 ], [ -77.016671, 38.927483 ], [ -77.016091, 38.927149 ], [ -77.015169, 38.926615 ], [ -77.015061, 38.926565 ], [ -77.014976, 38.926514 ], [ -77.014868, 38.926481 ], [ -77.014461, 38.926347 ], [ -77.014418, 38.926331 ], [ -77.014267, 38.926297 ], [ -77.014160, 38.926281 ], [ -77.014031, 38.926264 ], [ -77.013881, 38.926264 ], [ -77.013838, 38.926264 ], [ -77.012658, 38.926264 ], [ -77.012508, 38.926264 ], [ -77.012465, 38.926264 ], [ -77.012401, 38.926264 ], [ -77.012143, 38.926281 ], [ -77.012143, 38.925797 ], [ -77.012143, 38.924695 ], [ -77.012143, 38.924194 ], [ -77.012143, 38.924161 ], [ -77.012143, 38.923626 ], [ -77.012143, 38.923476 ], [ -77.012143, 38.923376 ], [ -77.012143, 38.923076 ], [ -77.012143, 38.922541 ], [ -77.012143, 38.922374 ], [ -77.012143, 38.922007 ], [ -77.012143, 38.921473 ], [ -77.012143, 38.921306 ], [ -77.012250, 38.921306 ], [ -77.012637, 38.921306 ], [ -77.012658, 38.921306 ], [ -77.012701, 38.921289 ], [ -77.012722, 38.921289 ], [ -77.012873, 38.921206 ], [ -77.012959, 38.921172 ], [ -77.013066, 38.921122 ], [ -77.013216, 38.921072 ], [ -77.013280, 38.921039 ], [ -77.013409, 38.920989 ], [ -77.013559, 38.920939 ], [ -77.013624, 38.920922 ], [ -77.013774, 38.920889 ], [ -77.013924, 38.920839 ], [ -77.014053, 38.920822 ], [ -77.014267, 38.920772 ], [ -77.014418, 38.920738 ], [ -77.014546, 38.920722 ], [ -77.014632, 38.920705 ], [ -77.014933, 38.920672 ], [ -77.014911, 38.920622 ], [ -77.014868, 38.920221 ], [ -77.014804, 38.919653 ], [ -77.014740, 38.919169 ], [ -77.014740, 38.919102 ], [ -77.014675, 38.918668 ], [ -77.014632, 38.918184 ], [ -77.014611, 38.918101 ], [ -77.014611, 38.918067 ], [ -77.014611, 38.918017 ], [ -77.014568, 38.917717 ], [ -77.014568, 38.917683 ], [ -77.014568, 38.917633 ], [ -77.014568, 38.917583 ], [ -77.014503, 38.916999 ], [ -77.014418, 38.916281 ], [ -77.014418, 38.916214 ], [ -77.014375, 38.915964 ], [ -77.014375, 38.915880 ], [ -77.014332, 38.915563 ], [ -77.014332, 38.915479 ], [ -77.014310, 38.915313 ], [ -77.014289, 38.915162 ], [ -77.014267, 38.915045 ], [ -77.014267, 38.914979 ], [ -77.014246, 38.914828 ], [ -77.014246, 38.914745 ], [ -77.014182, 38.914311 ], [ -77.014160, 38.914077 ], [ -77.014074, 38.913342 ], [ -77.014053, 38.913059 ], [ -77.014053, 38.913042 ], [ -77.014053, 38.913008 ], [ -77.014053, 38.912992 ], [ -77.014074, 38.912958 ], [ -77.014074, 38.912925 ], [ -77.014203, 38.912992 ], [ -77.014546, 38.913125 ], [ -77.015169, 38.913392 ], [ -77.015705, 38.913626 ], [ -77.015855, 38.913693 ], [ -77.016091, 38.913793 ], [ -77.016220, 38.913843 ], [ -77.016349, 38.913893 ], [ -77.016757, 38.914077 ], [ -77.016885, 38.914127 ], [ -77.017057, 38.914211 ], [ -77.017314, 38.914311 ], [ -77.017829, 38.914528 ], [ -77.018108, 38.914645 ], [ -77.018151, 38.914661 ], [ -77.018409, 38.914778 ], [ -77.018924, 38.914995 ], [ -77.019739, 38.915346 ], [ -77.019975, 38.915446 ], [ -77.020040, 38.915479 ], [ -77.020104, 38.915513 ], [ -77.020662, 38.915730 ], [ -77.020812, 38.915813 ], [ -77.021198, 38.915964 ], [ -77.021756, 38.916197 ], [ -77.021885, 38.916264 ], [ -77.021885, 38.916448 ], [ -77.021885, 38.916865 ], [ -77.021885, 38.917750 ], [ -77.021885, 38.918601 ], [ -77.021885, 38.918985 ], [ -77.021885, 38.919486 ], [ -77.021906, 38.919770 ], [ -77.021906, 38.919887 ], [ -77.021928, 38.919987 ], [ -77.021928, 38.920071 ], [ -77.022035, 38.920872 ], [ -77.022057, 38.920955 ], [ -77.022057, 38.921039 ], [ -77.022099, 38.921306 ], [ -77.022142, 38.921590 ], [ -77.022250, 38.922341 ], [ -77.022293, 38.922642 ], [ -77.022486, 38.923877 ], [ -77.022507, 38.924177 ], [ -77.022550, 38.924378 ], [ -77.022614, 38.924812 ], [ -77.022657, 38.925162 ], [ -77.022743, 38.925696 ], [ -77.022743, 38.925780 ], [ -77.022765, 38.925830 ], [ -77.022808, 38.926147 ], [ -77.022829, 38.926347 ], [ -77.022872, 38.926565 ], [ -77.022872, 38.926631 ], [ -77.022893, 38.926765 ], [ -77.022893, 38.926848 ], [ -77.022958, 38.927232 ], [ -77.022893, 38.927249 ], [ -77.022808, 38.927282 ], [ -77.022700, 38.927316 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004901", "GEOID": "11001004901", "NAME": "49.01", "NAMELSAD": "Census Tract 49.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 271866, "AWATER": 0, "INTPTLAT": "+38.9113296", "INTPTLON": "-077.0244761" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.027035, 38.914094 ], [ -77.025983, 38.914077 ], [ -77.025661, 38.914077 ], [ -77.025576, 38.914077 ], [ -77.024353, 38.914094 ], [ -77.024310, 38.914077 ], [ -77.023966, 38.914077 ], [ -77.023451, 38.914077 ], [ -77.023065, 38.914094 ], [ -77.022936, 38.914094 ], [ -77.021906, 38.914094 ], [ -77.021906, 38.913526 ], [ -77.021906, 38.913025 ], [ -77.021906, 38.912608 ], [ -77.021906, 38.912391 ], [ -77.021906, 38.912307 ], [ -77.021906, 38.912257 ], [ -77.021906, 38.912107 ], [ -77.021906, 38.911489 ], [ -77.021906, 38.911122 ], [ -77.021906, 38.910137 ], [ -77.021906, 38.909636 ], [ -77.021906, 38.908567 ], [ -77.022936, 38.908567 ], [ -77.023966, 38.908567 ], [ -77.024589, 38.908567 ], [ -77.024975, 38.908567 ], [ -77.025125, 38.908567 ], [ -77.025383, 38.908567 ], [ -77.025983, 38.908567 ], [ -77.026498, 38.908567 ], [ -77.026885, 38.908567 ], [ -77.027035, 38.908567 ], [ -77.027035, 38.909636 ], [ -77.027035, 38.910471 ], [ -77.027035, 38.910554 ], [ -77.027035, 38.910604 ], [ -77.027035, 38.910671 ], [ -77.027035, 38.910704 ], [ -77.027035, 38.910888 ], [ -77.027035, 38.910938 ], [ -77.027035, 38.911122 ], [ -77.027035, 38.911255 ], [ -77.027035, 38.911756 ], [ -77.027035, 38.912608 ], [ -77.027035, 38.913977 ], [ -77.027035, 38.914094 ] ] ], [ [ [ -77.021885, 38.916264 ], [ -77.021756, 38.916197 ], [ -77.021198, 38.915964 ], [ -77.020812, 38.915813 ], [ -77.020662, 38.915730 ], [ -77.020104, 38.915513 ], [ -77.020040, 38.915479 ], [ -77.019975, 38.915446 ], [ -77.019739, 38.915346 ], [ -77.018924, 38.914995 ], [ -77.018409, 38.914778 ], [ -77.018151, 38.914661 ], [ -77.018108, 38.914645 ], [ -77.017894, 38.914094 ], [ -77.017808, 38.913893 ], [ -77.017787, 38.913810 ], [ -77.017765, 38.913710 ], [ -77.017722, 38.913610 ], [ -77.017636, 38.913376 ], [ -77.017508, 38.912992 ], [ -77.017465, 38.912875 ], [ -77.017357, 38.912608 ], [ -77.017336, 38.912524 ], [ -77.017207, 38.912190 ], [ -77.017121, 38.911940 ], [ -77.017100, 38.911856 ], [ -77.016950, 38.911472 ], [ -77.016821, 38.911122 ], [ -77.016628, 38.910571 ], [ -77.016606, 38.910521 ], [ -77.016563, 38.910404 ], [ -77.016499, 38.910237 ], [ -77.016284, 38.909636 ], [ -77.016156, 38.909252 ], [ -77.015898, 38.908567 ], [ -77.016177, 38.908567 ], [ -77.016628, 38.908567 ], [ -77.017035, 38.908567 ], [ -77.018538, 38.908567 ], [ -77.018924, 38.908567 ], [ -77.019889, 38.908567 ], [ -77.020833, 38.908567 ], [ -77.021778, 38.908567 ], [ -77.021906, 38.908567 ], [ -77.021906, 38.909636 ], [ -77.021906, 38.910137 ], [ -77.021906, 38.911122 ], [ -77.021906, 38.911489 ], [ -77.021906, 38.912107 ], [ -77.021906, 38.912257 ], [ -77.021906, 38.912307 ], [ -77.021906, 38.912391 ], [ -77.021906, 38.912608 ], [ -77.021906, 38.913025 ], [ -77.021906, 38.913526 ], [ -77.021906, 38.914094 ], [ -77.021906, 38.914327 ], [ -77.021906, 38.915262 ], [ -77.021906, 38.915463 ], [ -77.021906, 38.915563 ], [ -77.021885, 38.916264 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005203", "GEOID": "11001005203", "NAME": "52.03", "NAMELSAD": "Census Tract 52.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 93419, "AWATER": 0, "INTPTLAT": "+38.9077655", "INTPTLON": "-077.0331441" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.031627, 38.905378 ], [ -77.031648, 38.905344 ], [ -77.031691, 38.905328 ], [ -77.031713, 38.905328 ], [ -77.031777, 38.905311 ], [ -77.031841, 38.905294 ], [ -77.031863, 38.905294 ], [ -77.031884, 38.905294 ], [ -77.031906, 38.905294 ], [ -77.031949, 38.905294 ], [ -77.031991, 38.905294 ], [ -77.032034, 38.905294 ], [ -77.032056, 38.905294 ], [ -77.032120, 38.905311 ], [ -77.032142, 38.905311 ], [ -77.032185, 38.905328 ], [ -77.032228, 38.905344 ], [ -77.032249, 38.905361 ], [ -77.032270, 38.905378 ], [ -77.032313, 38.905411 ], [ -77.032356, 38.905445 ], [ -77.032378, 38.905495 ], [ -77.032378, 38.905511 ], [ -77.032399, 38.905545 ], [ -77.032399, 38.905578 ], [ -77.032421, 38.905595 ], [ -77.032399, 38.905645 ], [ -77.032399, 38.905712 ], [ -77.032378, 38.905729 ], [ -77.032356, 38.905795 ], [ -77.034566, 38.906563 ], [ -77.034566, 38.906697 ], [ -77.034566, 38.907248 ], [ -77.034566, 38.907732 ], [ -77.034566, 38.907933 ], [ -77.034545, 38.908434 ], [ -77.034545, 38.908701 ], [ -77.034545, 38.908918 ], [ -77.034545, 38.908951 ], [ -77.034545, 38.909652 ], [ -77.034416, 38.909652 ], [ -77.033987, 38.909652 ], [ -77.032743, 38.909652 ], [ -77.032614, 38.909652 ], [ -77.032142, 38.909652 ], [ -77.031949, 38.909652 ], [ -77.031949, 38.909569 ], [ -77.031949, 38.909051 ], [ -77.031949, 38.908834 ], [ -77.031949, 38.908717 ], [ -77.031949, 38.907732 ], [ -77.031949, 38.907649 ], [ -77.031949, 38.907231 ], [ -77.031949, 38.905996 ], [ -77.031863, 38.905979 ], [ -77.031820, 38.905979 ], [ -77.031798, 38.905979 ], [ -77.031755, 38.905979 ], [ -77.031713, 38.905962 ], [ -77.031670, 38.905946 ], [ -77.031627, 38.905929 ], [ -77.031605, 38.905912 ], [ -77.031584, 38.905896 ], [ -77.031562, 38.905862 ], [ -77.031519, 38.905795 ], [ -77.031498, 38.905762 ], [ -77.031498, 38.905745 ], [ -77.031498, 38.905712 ], [ -77.031498, 38.905645 ], [ -77.031498, 38.905612 ], [ -77.031519, 38.905511 ], [ -77.031584, 38.905411 ], [ -77.031605, 38.905395 ], [ -77.031627, 38.905378 ] ] ], [ [ [ -77.031949, 38.909652 ], [ -77.031777, 38.909636 ], [ -77.031369, 38.909652 ], [ -77.031069, 38.909652 ], [ -77.030897, 38.909636 ], [ -77.030811, 38.909636 ], [ -77.030554, 38.909636 ], [ -77.030318, 38.909669 ], [ -77.030318, 38.909602 ], [ -77.030318, 38.909569 ], [ -77.030318, 38.909536 ], [ -77.030296, 38.909485 ], [ -77.030275, 38.909452 ], [ -77.030275, 38.909419 ], [ -77.030253, 38.909385 ], [ -77.030232, 38.909369 ], [ -77.030232, 38.909352 ], [ -77.030210, 38.909335 ], [ -77.030189, 38.909302 ], [ -77.030146, 38.909285 ], [ -77.030060, 38.909218 ], [ -77.030017, 38.909168 ], [ -77.029996, 38.909168 ], [ -77.029932, 38.909135 ], [ -77.029846, 38.909118 ], [ -77.029803, 38.909101 ], [ -77.029696, 38.909101 ], [ -77.029631, 38.909101 ], [ -77.029610, 38.908567 ], [ -77.029610, 38.907231 ], [ -77.029610, 38.907048 ], [ -77.029610, 38.906513 ], [ -77.029610, 38.906430 ], [ -77.029610, 38.906380 ], [ -77.029610, 38.906146 ], [ -77.029610, 38.906096 ], [ -77.029610, 38.905645 ], [ -77.029610, 38.905261 ], [ -77.029610, 38.905194 ], [ -77.029610, 38.904827 ], [ -77.030017, 38.904977 ], [ -77.030554, 38.905161 ], [ -77.030811, 38.905244 ], [ -77.031519, 38.905511 ], [ -77.031498, 38.905612 ], [ -77.031498, 38.905645 ], [ -77.031498, 38.905712 ], [ -77.031498, 38.905745 ], [ -77.031498, 38.905762 ], [ -77.031519, 38.905795 ], [ -77.031562, 38.905862 ], [ -77.031584, 38.905896 ], [ -77.031605, 38.905912 ], [ -77.031627, 38.905929 ], [ -77.031670, 38.905946 ], [ -77.031713, 38.905962 ], [ -77.031755, 38.905979 ], [ -77.031798, 38.905979 ], [ -77.031820, 38.905979 ], [ -77.031863, 38.905979 ], [ -77.031949, 38.905996 ], [ -77.031949, 38.907231 ], [ -77.031949, 38.907649 ], [ -77.031949, 38.907732 ], [ -77.031949, 38.908717 ], [ -77.031949, 38.908834 ], [ -77.031949, 38.909051 ], [ -77.031949, 38.909569 ], [ -77.031949, 38.909652 ] ] ], [ [ [ -77.036519, 38.907014 ], [ -77.036476, 38.907014 ], [ -77.036433, 38.907031 ], [ -77.036390, 38.907031 ], [ -77.036369, 38.907031 ], [ -77.036347, 38.907048 ], [ -77.036283, 38.907064 ], [ -77.036240, 38.907081 ], [ -77.036176, 38.907131 ], [ -77.035425, 38.906864 ], [ -77.035038, 38.906730 ], [ -77.034802, 38.906647 ], [ -77.034566, 38.906563 ], [ -77.032356, 38.905795 ], [ -77.032378, 38.905729 ], [ -77.032399, 38.905712 ], [ -77.032399, 38.905645 ], [ -77.032421, 38.905595 ], [ -77.032399, 38.905578 ], [ -77.032399, 38.905545 ], [ -77.032378, 38.905511 ], [ -77.032378, 38.905495 ], [ -77.032356, 38.905445 ], [ -77.032313, 38.905411 ], [ -77.032270, 38.905378 ], [ -77.032249, 38.905361 ], [ -77.032228, 38.905344 ], [ -77.032185, 38.905328 ], [ -77.032142, 38.905311 ], [ -77.032120, 38.905311 ], [ -77.032056, 38.905294 ], [ -77.032034, 38.905294 ], [ -77.031991, 38.905294 ], [ -77.031949, 38.905294 ], [ -77.031906, 38.905294 ], [ -77.031884, 38.905294 ], [ -77.031863, 38.905294 ], [ -77.031841, 38.905294 ], [ -77.031777, 38.905311 ], [ -77.031713, 38.905328 ], [ -77.031691, 38.905328 ], [ -77.031648, 38.905344 ], [ -77.031627, 38.905378 ], [ -77.031605, 38.905395 ], [ -77.031584, 38.905411 ], [ -77.031519, 38.905511 ], [ -77.030811, 38.905244 ], [ -77.030554, 38.905161 ], [ -77.030017, 38.904977 ], [ -77.029610, 38.904827 ], [ -77.028880, 38.904576 ], [ -77.028344, 38.904393 ], [ -77.028086, 38.904309 ], [ -77.027528, 38.904109 ], [ -77.027035, 38.903942 ], [ -77.026842, 38.903875 ], [ -77.026584, 38.903792 ], [ -77.026284, 38.903691 ], [ -77.025983, 38.903574 ], [ -77.025704, 38.903474 ], [ -77.025254, 38.903324 ], [ -77.024846, 38.903174 ], [ -77.024503, 38.903057 ], [ -77.024310, 38.902990 ], [ -77.024245, 38.902973 ], [ -77.024095, 38.902923 ], [ -77.023923, 38.902923 ], [ -77.023966, 38.902522 ], [ -77.023988, 38.902088 ], [ -77.024159, 38.902088 ], [ -77.024353, 38.902021 ], [ -77.025983, 38.901454 ], [ -77.026284, 38.901354 ], [ -77.026541, 38.901270 ], [ -77.027035, 38.901103 ], [ -77.027743, 38.900853 ], [ -77.028065, 38.900736 ], [ -77.029631, 38.900218 ], [ -77.030060, 38.900068 ], [ -77.030275, 38.900001 ], [ -77.030339, 38.899984 ], [ -77.030489, 38.899901 ], [ -77.031949, 38.899383 ], [ -77.033536, 38.898849 ], [ -77.033644, 38.898782 ], [ -77.033858, 38.898765 ], [ -77.035060, 38.898765 ], [ -77.035103, 38.898765 ], [ -77.035146, 38.898865 ], [ -77.035146, 38.899016 ], [ -77.035146, 38.899851 ], [ -77.035146, 38.900068 ], [ -77.035124, 38.900201 ], [ -77.035468, 38.900201 ], [ -77.035596, 38.900201 ], [ -77.036541, 38.900201 ], [ -77.036541, 38.900719 ], [ -77.036541, 38.900853 ], [ -77.036541, 38.901337 ], [ -77.036541, 38.901637 ], [ -77.036541, 38.902522 ], [ -77.036541, 38.903090 ], [ -77.036541, 38.903441 ], [ -77.036541, 38.903741 ], [ -77.036541, 38.903858 ], [ -77.036541, 38.904309 ], [ -77.036541, 38.904994 ], [ -77.036519, 38.905645 ], [ -77.036519, 38.907014 ] ] ], [ [ [ -77.029803, 38.910170 ], [ -77.029738, 38.910187 ], [ -77.029653, 38.910187 ], [ -77.029631, 38.910187 ], [ -77.029567, 38.910187 ], [ -77.029502, 38.910187 ], [ -77.029438, 38.910170 ], [ -77.029374, 38.910153 ], [ -77.029288, 38.910137 ], [ -77.029266, 38.910120 ], [ -77.029223, 38.910103 ], [ -77.029181, 38.910087 ], [ -77.029138, 38.910053 ], [ -77.029116, 38.910036 ], [ -77.029052, 38.909986 ], [ -77.029030, 38.909970 ], [ -77.028987, 38.909920 ], [ -77.028966, 38.909870 ], [ -77.028086, 38.910254 ], [ -77.028086, 38.910170 ], [ -77.028065, 38.910103 ], [ -77.028065, 38.909986 ], [ -77.028065, 38.909936 ], [ -77.028086, 38.909636 ], [ -77.027571, 38.909636 ], [ -77.027400, 38.909636 ], [ -77.027335, 38.909652 ], [ -77.027035, 38.909636 ], [ -77.027035, 38.908567 ], [ -77.027035, 38.907231 ], [ -77.027035, 38.906497 ], [ -77.027035, 38.906113 ], [ -77.027035, 38.905762 ], [ -77.027035, 38.905645 ], [ -77.027035, 38.905261 ], [ -77.027035, 38.905011 ], [ -77.027035, 38.904593 ], [ -77.027035, 38.904159 ], [ -77.027035, 38.903942 ], [ -77.027528, 38.904109 ], [ -77.028086, 38.904309 ], [ -77.028344, 38.904393 ], [ -77.028880, 38.904576 ], [ -77.029610, 38.904827 ], [ -77.029610, 38.905194 ], [ -77.029610, 38.905261 ], [ -77.029610, 38.905645 ], [ -77.029610, 38.906096 ], [ -77.029610, 38.906146 ], [ -77.029610, 38.906380 ], [ -77.029610, 38.906430 ], [ -77.029610, 38.906513 ], [ -77.029610, 38.907048 ], [ -77.029610, 38.907231 ], [ -77.029610, 38.908567 ], [ -77.029631, 38.909101 ], [ -77.029696, 38.909101 ], [ -77.029803, 38.909101 ], [ -77.029846, 38.909118 ], [ -77.029932, 38.909135 ], [ -77.029996, 38.909168 ], [ -77.030017, 38.909168 ], [ -77.030060, 38.909218 ], [ -77.030146, 38.909285 ], [ -77.030189, 38.909302 ], [ -77.030210, 38.909335 ], [ -77.030232, 38.909352 ], [ -77.030232, 38.909369 ], [ -77.030253, 38.909385 ], [ -77.030275, 38.909419 ], [ -77.030275, 38.909452 ], [ -77.030296, 38.909485 ], [ -77.030318, 38.909536 ], [ -77.030318, 38.909569 ], [ -77.030318, 38.909602 ], [ -77.030318, 38.909669 ], [ -77.030318, 38.909703 ], [ -77.030318, 38.909769 ], [ -77.030296, 38.909819 ], [ -77.030275, 38.909853 ], [ -77.030253, 38.909886 ], [ -77.030232, 38.909920 ], [ -77.030210, 38.909936 ], [ -77.030189, 38.909970 ], [ -77.030168, 38.910003 ], [ -77.030125, 38.910020 ], [ -77.030103, 38.910053 ], [ -77.030060, 38.910070 ], [ -77.030039, 38.910087 ], [ -77.029974, 38.910120 ], [ -77.029953, 38.910137 ], [ -77.029910, 38.910137 ], [ -77.029846, 38.910153 ], [ -77.029803, 38.910170 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005802", "GEOID": "11001005802", "NAME": "58.02", "NAMELSAD": "Census Tract 58.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 682488, "AWATER": 0, "INTPTLAT": "+38.8979674", "INTPTLON": "-077.0265766" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.021906, 38.902940 ], [ -77.021906, 38.902907 ], [ -77.021906, 38.902522 ], [ -77.021906, 38.902272 ], [ -77.021906, 38.902105 ], [ -77.021906, 38.901955 ], [ -77.021906, 38.901604 ], [ -77.021906, 38.901337 ], [ -77.021906, 38.901003 ], [ -77.021906, 38.900869 ], [ -77.021906, 38.900769 ], [ -77.021906, 38.900519 ], [ -77.021906, 38.899951 ], [ -77.021906, 38.899817 ], [ -77.021906, 38.899684 ], [ -77.021906, 38.899149 ], [ -77.021906, 38.898799 ], [ -77.021906, 38.898448 ], [ -77.021906, 38.898331 ], [ -77.021906, 38.898197 ], [ -77.021906, 38.897913 ], [ -77.021906, 38.897546 ], [ -77.021906, 38.897463 ], [ -77.021906, 38.897279 ], [ -77.021906, 38.897129 ], [ -77.021906, 38.896327 ], [ -77.021906, 38.896243 ], [ -77.021906, 38.896127 ], [ -77.021906, 38.895008 ], [ -77.021906, 38.894791 ], [ -77.021906, 38.894356 ], [ -77.021906, 38.894106 ], [ -77.021906, 38.893889 ], [ -77.021906, 38.893872 ], [ -77.021906, 38.893789 ], [ -77.021906, 38.893638 ], [ -77.021906, 38.893571 ], [ -77.021906, 38.893287 ], [ -77.022958, 38.893605 ], [ -77.023344, 38.893705 ], [ -77.023902, 38.893855 ], [ -77.023966, 38.893872 ], [ -77.026005, 38.894440 ], [ -77.027056, 38.894740 ], [ -77.028086, 38.895024 ], [ -77.028794, 38.895225 ], [ -77.029631, 38.895442 ], [ -77.029889, 38.895492 ], [ -77.030210, 38.895509 ], [ -77.030768, 38.895509 ], [ -77.031949, 38.895492 ], [ -77.031949, 38.896110 ], [ -77.032163, 38.896143 ], [ -77.032485, 38.896227 ], [ -77.032850, 38.896344 ], [ -77.033043, 38.896377 ], [ -77.033193, 38.896394 ], [ -77.033365, 38.896394 ], [ -77.033644, 38.896394 ], [ -77.033644, 38.897346 ], [ -77.033644, 38.898314 ], [ -77.033644, 38.898431 ], [ -77.033644, 38.898615 ], [ -77.033644, 38.898782 ], [ -77.033536, 38.898849 ], [ -77.031949, 38.899383 ], [ -77.030489, 38.899901 ], [ -77.030339, 38.899984 ], [ -77.030275, 38.900001 ], [ -77.030060, 38.900068 ], [ -77.029631, 38.900218 ], [ -77.028065, 38.900736 ], [ -77.027743, 38.900853 ], [ -77.027035, 38.901103 ], [ -77.026541, 38.901270 ], [ -77.026284, 38.901354 ], [ -77.025983, 38.901454 ], [ -77.024353, 38.902021 ], [ -77.024159, 38.902088 ], [ -77.023988, 38.902088 ], [ -77.023966, 38.902522 ], [ -77.023923, 38.902923 ], [ -77.023451, 38.902940 ], [ -77.022936, 38.902940 ], [ -77.022851, 38.902940 ], [ -77.022550, 38.902940 ], [ -77.022121, 38.902940 ], [ -77.021906, 38.902940 ] ] ], [ [ [ -77.027035, 38.903942 ], [ -77.027035, 38.904159 ], [ -77.027035, 38.904593 ], [ -77.027035, 38.905011 ], [ -77.027035, 38.905261 ], [ -77.027035, 38.905645 ], [ -77.027035, 38.905762 ], [ -77.027035, 38.906113 ], [ -77.027035, 38.906497 ], [ -77.027035, 38.907231 ], [ -77.027035, 38.908567 ], [ -77.026885, 38.908567 ], [ -77.026498, 38.908567 ], [ -77.025983, 38.908567 ], [ -77.025383, 38.908567 ], [ -77.025125, 38.908567 ], [ -77.024975, 38.908567 ], [ -77.024589, 38.908567 ], [ -77.023966, 38.908567 ], [ -77.022936, 38.908567 ], [ -77.021906, 38.908567 ], [ -77.021906, 38.908450 ], [ -77.021906, 38.907231 ], [ -77.021906, 38.906964 ], [ -77.021906, 38.906614 ], [ -77.021906, 38.905862 ], [ -77.021906, 38.905645 ], [ -77.021906, 38.905044 ], [ -77.021906, 38.904693 ], [ -77.021906, 38.904159 ], [ -77.021906, 38.903174 ], [ -77.021906, 38.902940 ], [ -77.022121, 38.902940 ], [ -77.022550, 38.902940 ], [ -77.022851, 38.902940 ], [ -77.022936, 38.902940 ], [ -77.023451, 38.902940 ], [ -77.023923, 38.902923 ], [ -77.024095, 38.902923 ], [ -77.024245, 38.902973 ], [ -77.024310, 38.902990 ], [ -77.024503, 38.903057 ], [ -77.024846, 38.903174 ], [ -77.025254, 38.903324 ], [ -77.025704, 38.903474 ], [ -77.025983, 38.903574 ], [ -77.026284, 38.903691 ], [ -77.026584, 38.903792 ], [ -77.026842, 38.903875 ], [ -77.027035, 38.903942 ] ] ], [ [ [ -77.021906, 38.902940 ], [ -77.021906, 38.903174 ], [ -77.021906, 38.904159 ], [ -77.021906, 38.904693 ], [ -77.021906, 38.905044 ], [ -77.021906, 38.905645 ], [ -77.021906, 38.905862 ], [ -77.021906, 38.906614 ], [ -77.021906, 38.906964 ], [ -77.021906, 38.907231 ], [ -77.021906, 38.908450 ], [ -77.021906, 38.908567 ], [ -77.021778, 38.908567 ], [ -77.020833, 38.908567 ], [ -77.019889, 38.908567 ], [ -77.018924, 38.908567 ], [ -77.018538, 38.908567 ], [ -77.017035, 38.908567 ], [ -77.016628, 38.908567 ], [ -77.016177, 38.908567 ], [ -77.015898, 38.908567 ], [ -77.015426, 38.907231 ], [ -77.015169, 38.906463 ], [ -77.014890, 38.905645 ], [ -77.014868, 38.905545 ], [ -77.014804, 38.905411 ], [ -77.015233, 38.905194 ], [ -77.015705, 38.905044 ], [ -77.015812, 38.904994 ], [ -77.015877, 38.904977 ], [ -77.015984, 38.904944 ], [ -77.016177, 38.904877 ], [ -77.016220, 38.904810 ], [ -77.017035, 38.904526 ], [ -77.018001, 38.904192 ], [ -77.018130, 38.904159 ], [ -77.018216, 38.904159 ], [ -77.018602, 38.904025 ], [ -77.018924, 38.903908 ], [ -77.019224, 38.903808 ], [ -77.019911, 38.903574 ], [ -77.020748, 38.903274 ], [ -77.020876, 38.903240 ], [ -77.021499, 38.903023 ], [ -77.021692, 38.902957 ], [ -77.021906, 38.902940 ] ] ], [ [ [ -77.013710, 38.902506 ], [ -77.013881, 38.902506 ], [ -77.013924, 38.902506 ], [ -77.014203, 38.902506 ], [ -77.014546, 38.902522 ], [ -77.014675, 38.902522 ], [ -77.015018, 38.902522 ], [ -77.015169, 38.902522 ], [ -77.015426, 38.902522 ], [ -77.015941, 38.902522 ], [ -77.016048, 38.902522 ], [ -77.016177, 38.902522 ], [ -77.016413, 38.902522 ], [ -77.017400, 38.902522 ], [ -77.017636, 38.902522 ], [ -77.017937, 38.902522 ], [ -77.018602, 38.902522 ], [ -77.018924, 38.902522 ], [ -77.019482, 38.902522 ], [ -77.019911, 38.902522 ], [ -77.021499, 38.902522 ], [ -77.021906, 38.902522 ], [ -77.021906, 38.902907 ], [ -77.021906, 38.902940 ], [ -77.021692, 38.902957 ], [ -77.021499, 38.903023 ], [ -77.020876, 38.903240 ], [ -77.020748, 38.903274 ], [ -77.019911, 38.903574 ], [ -77.019224, 38.903808 ], [ -77.018924, 38.903908 ], [ -77.018602, 38.904025 ], [ -77.018216, 38.904159 ], [ -77.018130, 38.904159 ], [ -77.018001, 38.904192 ], [ -77.017035, 38.904526 ], [ -77.016220, 38.904810 ], [ -77.016177, 38.904877 ], [ -77.015984, 38.904944 ], [ -77.015877, 38.904977 ], [ -77.015812, 38.904994 ], [ -77.015705, 38.905044 ], [ -77.015233, 38.905194 ], [ -77.014804, 38.905411 ], [ -77.014761, 38.905361 ], [ -77.014761, 38.905328 ], [ -77.014697, 38.905211 ], [ -77.014654, 38.905127 ], [ -77.014568, 38.904877 ], [ -77.014503, 38.904677 ], [ -77.014396, 38.904376 ], [ -77.014332, 38.904192 ], [ -77.014246, 38.903959 ], [ -77.014182, 38.903808 ], [ -77.014160, 38.903741 ], [ -77.014096, 38.903558 ], [ -77.013860, 38.902873 ], [ -77.013774, 38.902689 ], [ -77.013710, 38.902506 ] ] ], [ [ [ -77.021906, 38.902105 ], [ -77.021692, 38.902072 ], [ -77.021649, 38.902055 ], [ -77.021606, 38.902055 ], [ -77.021520, 38.902021 ], [ -77.020898, 38.901821 ], [ -77.020426, 38.901637 ], [ -77.020254, 38.901587 ], [ -77.019997, 38.901504 ], [ -77.019911, 38.901470 ], [ -77.019739, 38.901404 ], [ -77.019482, 38.901320 ], [ -77.018924, 38.901120 ], [ -77.018924, 38.900986 ], [ -77.018924, 38.900869 ], [ -77.018924, 38.900235 ], [ -77.018924, 38.899934 ], [ -77.018924, 38.899801 ], [ -77.018924, 38.899667 ], [ -77.018924, 38.899116 ], [ -77.018924, 38.898581 ], [ -77.018924, 38.898314 ], [ -77.018924, 38.898030 ], [ -77.018924, 38.897613 ], [ -77.018924, 38.897329 ], [ -77.018924, 38.896895 ], [ -77.018924, 38.896527 ], [ -77.018924, 38.896127 ], [ -77.018924, 38.896076 ], [ -77.018924, 38.895776 ], [ -77.018924, 38.895475 ], [ -77.018924, 38.895358 ], [ -77.018924, 38.894891 ], [ -77.018924, 38.894807 ], [ -77.019010, 38.894674 ], [ -77.019696, 38.894473 ], [ -77.019889, 38.894406 ], [ -77.019911, 38.893588 ], [ -77.019911, 38.893287 ], [ -77.019911, 38.893004 ], [ -77.019889, 38.892837 ], [ -77.019889, 38.892753 ], [ -77.020705, 38.892987 ], [ -77.020748, 38.893004 ], [ -77.021542, 38.893204 ], [ -77.021906, 38.893287 ], [ -77.021906, 38.893571 ], [ -77.021906, 38.893638 ], [ -77.021906, 38.893789 ], [ -77.021906, 38.893872 ], [ -77.021906, 38.893889 ], [ -77.021906, 38.894106 ], [ -77.021906, 38.894356 ], [ -77.021906, 38.894791 ], [ -77.021906, 38.895008 ], [ -77.021906, 38.896127 ], [ -77.021906, 38.896243 ], [ -77.021906, 38.896327 ], [ -77.021906, 38.897129 ], [ -77.021906, 38.897279 ], [ -77.021906, 38.897463 ], [ -77.021906, 38.897546 ], [ -77.021906, 38.897913 ], [ -77.021906, 38.898197 ], [ -77.021906, 38.898331 ], [ -77.021906, 38.898448 ], [ -77.021906, 38.898799 ], [ -77.021906, 38.899149 ], [ -77.021906, 38.899684 ], [ -77.021906, 38.899817 ], [ -77.021906, 38.899951 ], [ -77.021906, 38.900519 ], [ -77.021906, 38.900769 ], [ -77.021906, 38.900869 ], [ -77.021906, 38.901003 ], [ -77.021906, 38.901337 ], [ -77.021906, 38.901604 ], [ -77.021906, 38.901955 ], [ -77.021906, 38.902105 ] ] ], [ [ [ -77.013173, 38.892085 ], [ -77.013624, 38.892085 ], [ -77.014010, 38.892085 ], [ -77.014225, 38.892085 ], [ -77.014675, 38.892085 ], [ -77.014997, 38.892085 ], [ -77.015040, 38.892085 ], [ -77.015233, 38.892085 ], [ -77.015576, 38.892068 ], [ -77.015834, 38.892018 ], [ -77.016242, 38.891885 ], [ -77.016392, 38.891784 ], [ -77.017550, 38.892102 ], [ -77.018580, 38.892386 ], [ -77.019889, 38.892753 ], [ -77.019889, 38.892837 ], [ -77.019911, 38.893004 ], [ -77.019911, 38.893287 ], [ -77.019911, 38.893588 ], [ -77.019889, 38.894406 ], [ -77.019696, 38.894473 ], [ -77.019010, 38.894674 ], [ -77.018924, 38.894807 ], [ -77.018924, 38.894891 ], [ -77.018924, 38.895358 ], [ -77.018924, 38.895475 ], [ -77.018924, 38.895776 ], [ -77.018924, 38.896076 ], [ -77.018924, 38.896127 ], [ -77.018924, 38.896527 ], [ -77.018924, 38.896895 ], [ -77.018924, 38.897329 ], [ -77.018924, 38.897613 ], [ -77.018924, 38.898030 ], [ -77.018924, 38.898314 ], [ -77.018924, 38.898581 ], [ -77.018924, 38.899116 ], [ -77.018924, 38.899667 ], [ -77.018924, 38.899801 ], [ -77.018924, 38.899934 ], [ -77.018924, 38.900235 ], [ -77.018924, 38.900869 ], [ -77.018924, 38.900986 ], [ -77.018924, 38.901120 ], [ -77.018795, 38.901086 ], [ -77.018173, 38.900869 ], [ -77.018130, 38.900853 ], [ -77.017722, 38.900702 ], [ -77.017314, 38.900569 ], [ -77.016521, 38.900301 ], [ -77.016199, 38.900151 ], [ -77.015984, 38.900051 ], [ -77.015662, 38.899934 ], [ -77.015233, 38.899767 ], [ -77.014246, 38.899433 ], [ -77.014074, 38.899383 ], [ -77.013645, 38.899233 ], [ -77.012422, 38.898849 ], [ -77.012336, 38.898815 ], [ -77.012293, 38.898799 ], [ -77.011907, 38.898632 ], [ -77.011178, 38.898331 ], [ -77.010255, 38.897947 ], [ -77.009289, 38.897563 ], [ -77.009225, 38.897529 ], [ -77.009053, 38.897463 ], [ -77.009053, 38.897346 ], [ -77.009053, 38.897129 ], [ -77.009053, 38.896511 ], [ -77.009053, 38.896127 ], [ -77.009053, 38.895425 ], [ -77.009053, 38.895108 ], [ -77.009482, 38.894791 ], [ -77.009847, 38.894774 ], [ -77.009890, 38.894774 ], [ -77.009933, 38.894774 ], [ -77.010062, 38.894791 ], [ -77.010276, 38.894791 ], [ -77.010469, 38.894791 ], [ -77.010620, 38.894791 ], [ -77.010877, 38.894791 ], [ -77.010942, 38.894791 ], [ -77.010899, 38.894690 ], [ -77.010748, 38.894206 ], [ -77.010663, 38.893939 ], [ -77.010877, 38.893772 ], [ -77.011027, 38.893672 ], [ -77.011156, 38.893571 ], [ -77.011907, 38.893054 ], [ -77.012165, 38.892853 ], [ -77.012422, 38.892670 ], [ -77.012744, 38.892436 ], [ -77.012980, 38.892235 ], [ -77.013173, 38.892085 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003301", "GEOID": "11001003301", "NAME": "33.01", "NAMELSAD": "Census Tract 33.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 442120, "AWATER": 0, "INTPTLAT": "+38.9204778", "INTPTLON": "-077.0114293" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.014267, 38.915045 ], [ -77.014289, 38.915162 ], [ -77.014310, 38.915313 ], [ -77.014332, 38.915479 ], [ -77.014332, 38.915563 ], [ -77.014375, 38.915880 ], [ -77.014375, 38.915964 ], [ -77.014418, 38.916214 ], [ -77.014418, 38.916281 ], [ -77.014503, 38.916999 ], [ -77.014568, 38.917583 ], [ -77.014568, 38.917633 ], [ -77.014568, 38.917683 ], [ -77.014568, 38.917717 ], [ -77.014611, 38.918017 ], [ -77.014611, 38.918067 ], [ -77.014611, 38.918101 ], [ -77.014632, 38.918184 ], [ -77.014675, 38.918668 ], [ -77.014740, 38.919102 ], [ -77.014740, 38.919169 ], [ -77.014804, 38.919653 ], [ -77.014868, 38.920221 ], [ -77.014911, 38.920622 ], [ -77.014933, 38.920672 ], [ -77.014632, 38.920705 ], [ -77.014546, 38.920722 ], [ -77.014418, 38.920738 ], [ -77.014267, 38.920772 ], [ -77.014053, 38.920822 ], [ -77.013924, 38.920839 ], [ -77.013774, 38.920889 ], [ -77.013624, 38.920922 ], [ -77.013559, 38.920939 ], [ -77.013409, 38.920989 ], [ -77.013280, 38.921039 ], [ -77.013216, 38.921072 ], [ -77.013066, 38.921122 ], [ -77.012959, 38.921172 ], [ -77.012873, 38.921206 ], [ -77.012722, 38.921289 ], [ -77.012701, 38.921289 ], [ -77.012658, 38.921306 ], [ -77.012637, 38.921306 ], [ -77.012250, 38.921306 ], [ -77.012143, 38.921306 ], [ -77.012143, 38.921473 ], [ -77.012143, 38.922007 ], [ -77.012143, 38.922374 ], [ -77.012143, 38.922541 ], [ -77.012143, 38.923076 ], [ -77.012143, 38.923376 ], [ -77.012143, 38.923476 ], [ -77.012143, 38.923626 ], [ -77.012143, 38.924161 ], [ -77.012143, 38.924194 ], [ -77.012143, 38.924695 ], [ -77.012143, 38.925797 ], [ -77.012143, 38.926281 ], [ -77.011993, 38.926281 ], [ -77.011392, 38.926347 ], [ -77.011156, 38.926381 ], [ -77.010126, 38.926514 ], [ -77.009568, 38.926581 ], [ -77.009225, 38.926631 ], [ -77.009032, 38.926665 ], [ -77.008924, 38.926681 ], [ -77.008967, 38.925830 ], [ -77.008967, 38.925129 ], [ -77.008967, 38.925029 ], [ -77.008967, 38.924511 ], [ -77.008967, 38.924428 ], [ -77.008967, 38.923443 ], [ -77.008967, 38.922591 ], [ -77.008967, 38.922374 ], [ -77.008967, 38.921306 ], [ -77.008967, 38.920972 ], [ -77.008989, 38.920221 ], [ -77.008989, 38.919169 ], [ -77.008989, 38.918101 ], [ -77.008989, 38.916899 ], [ -77.009032, 38.916882 ], [ -77.009096, 38.916865 ], [ -77.009118, 38.916848 ], [ -77.009182, 38.916832 ], [ -77.012143, 38.915797 ], [ -77.012744, 38.915563 ], [ -77.014267, 38.915045 ] ] ], [ [ [ -77.006285, 38.927015 ], [ -77.006242, 38.926898 ], [ -77.006199, 38.926798 ], [ -77.006114, 38.926665 ], [ -77.006049, 38.926581 ], [ -77.005985, 38.926498 ], [ -77.005963, 38.926481 ], [ -77.005899, 38.926431 ], [ -77.005835, 38.926381 ], [ -77.005792, 38.926331 ], [ -77.005749, 38.926314 ], [ -77.005727, 38.926297 ], [ -77.005684, 38.926281 ], [ -77.005663, 38.926264 ], [ -77.005620, 38.926247 ], [ -77.005577, 38.926231 ], [ -77.005470, 38.926197 ], [ -77.005448, 38.926181 ], [ -77.005363, 38.926147 ], [ -77.005084, 38.926064 ], [ -77.004869, 38.925997 ], [ -77.004719, 38.925947 ], [ -77.004676, 38.925930 ], [ -77.004590, 38.925897 ], [ -77.004440, 38.925847 ], [ -77.004375, 38.925830 ], [ -77.004268, 38.925797 ], [ -77.004182, 38.925763 ], [ -77.004032, 38.925730 ], [ -77.003925, 38.925696 ], [ -77.003796, 38.925680 ], [ -77.003624, 38.925646 ], [ -77.003496, 38.925630 ], [ -77.003388, 38.925613 ], [ -77.003238, 38.925596 ], [ -77.003109, 38.925596 ], [ -77.003045, 38.925596 ], [ -77.002659, 38.925596 ], [ -77.002444, 38.925596 ], [ -77.002680, 38.925463 ], [ -77.002852, 38.925363 ], [ -77.002873, 38.925346 ], [ -77.002916, 38.925329 ], [ -77.002938, 38.925313 ], [ -77.002959, 38.925279 ], [ -77.002981, 38.925246 ], [ -77.003045, 38.925029 ], [ -77.003152, 38.924712 ], [ -77.003238, 38.924411 ], [ -77.003367, 38.924010 ], [ -77.003560, 38.923426 ], [ -77.003303, 38.923426 ], [ -77.002509, 38.923443 ], [ -77.002037, 38.923443 ], [ -77.001522, 38.923443 ], [ -77.000942, 38.923443 ], [ -77.000706, 38.923443 ], [ -77.000556, 38.923443 ], [ -77.000556, 38.923359 ], [ -77.000556, 38.922975 ], [ -77.000556, 38.922374 ], [ -77.000556, 38.921673 ], [ -77.000556, 38.921289 ], [ -77.000556, 38.921223 ], [ -77.000556, 38.920371 ], [ -77.000556, 38.920221 ], [ -77.000556, 38.919820 ], [ -77.000556, 38.919753 ], [ -77.002015, 38.919236 ], [ -77.003517, 38.918718 ], [ -77.004826, 38.918268 ], [ -77.005105, 38.918167 ], [ -77.005341, 38.918084 ], [ -77.005556, 38.918017 ], [ -77.006071, 38.917834 ], [ -77.006693, 38.917616 ], [ -77.006993, 38.917516 ], [ -77.007122, 38.917466 ], [ -77.008324, 38.917066 ], [ -77.008924, 38.916915 ], [ -77.008989, 38.916899 ], [ -77.008989, 38.918101 ], [ -77.008989, 38.919169 ], [ -77.008989, 38.920221 ], [ -77.008967, 38.920972 ], [ -77.008967, 38.921306 ], [ -77.008967, 38.922374 ], [ -77.008967, 38.922591 ], [ -77.008967, 38.923443 ], [ -77.008967, 38.924428 ], [ -77.008967, 38.924511 ], [ -77.008967, 38.925029 ], [ -77.008967, 38.925129 ], [ -77.008967, 38.925830 ], [ -77.008924, 38.926681 ], [ -77.008410, 38.926731 ], [ -77.008109, 38.926765 ], [ -77.007959, 38.926782 ], [ -77.007895, 38.926798 ], [ -77.007315, 38.926865 ], [ -77.006886, 38.926915 ], [ -77.006564, 38.926965 ], [ -77.006371, 38.926999 ], [ -77.006285, 38.927015 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003302", "GEOID": "11001003302", "NAME": "33.02", "NAMELSAD": "Census Tract 33.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 204237, "AWATER": 0, "INTPTLAT": "+38.9139237", "INTPTLON": "-077.0111677" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.009010, 38.910788 ], [ -77.009118, 38.910821 ], [ -77.009804, 38.911122 ], [ -77.009847, 38.911138 ], [ -77.009869, 38.911138 ], [ -77.010040, 38.911222 ], [ -77.010255, 38.911305 ], [ -77.011242, 38.911723 ], [ -77.011435, 38.911806 ], [ -77.012143, 38.912107 ], [ -77.012486, 38.912257 ], [ -77.012980, 38.912457 ], [ -77.013302, 38.912608 ], [ -77.013538, 38.912708 ], [ -77.013602, 38.912725 ], [ -77.013924, 38.912858 ], [ -77.014074, 38.912925 ], [ -77.014074, 38.912958 ], [ -77.014053, 38.912992 ], [ -77.014053, 38.913008 ], [ -77.014053, 38.913042 ], [ -77.014053, 38.913059 ], [ -77.014074, 38.913342 ], [ -77.014160, 38.914077 ], [ -77.014182, 38.914311 ], [ -77.014246, 38.914745 ], [ -77.014246, 38.914828 ], [ -77.014267, 38.914979 ], [ -77.014267, 38.915045 ], [ -77.012744, 38.915563 ], [ -77.012143, 38.915797 ], [ -77.009182, 38.916832 ], [ -77.009118, 38.916848 ], [ -77.009096, 38.916865 ], [ -77.009032, 38.916882 ], [ -77.008989, 38.916899 ], [ -77.008989, 38.916815 ], [ -77.008989, 38.916181 ], [ -77.008989, 38.915563 ], [ -77.009010, 38.914828 ], [ -77.009010, 38.914077 ], [ -77.008989, 38.913610 ], [ -77.008989, 38.913342 ], [ -77.009010, 38.912591 ], [ -77.009010, 38.911856 ], [ -77.009010, 38.911573 ], [ -77.009010, 38.911422 ], [ -77.009010, 38.911105 ], [ -77.009010, 38.910788 ] ] ], [ [ [ -77.018108, 38.914645 ], [ -77.017829, 38.914528 ], [ -77.017314, 38.914311 ], [ -77.017057, 38.914211 ], [ -77.016885, 38.914127 ], [ -77.016757, 38.914077 ], [ -77.016349, 38.913893 ], [ -77.016220, 38.913843 ], [ -77.016091, 38.913793 ], [ -77.015855, 38.913693 ], [ -77.015705, 38.913626 ], [ -77.015169, 38.913392 ], [ -77.014546, 38.913125 ], [ -77.014203, 38.912992 ], [ -77.014074, 38.912925 ], [ -77.013924, 38.912858 ], [ -77.013602, 38.912725 ], [ -77.013538, 38.912708 ], [ -77.013302, 38.912608 ], [ -77.012980, 38.912457 ], [ -77.012486, 38.912257 ], [ -77.012143, 38.912107 ], [ -77.011435, 38.911806 ], [ -77.011242, 38.911723 ], [ -77.010255, 38.911305 ], [ -77.010040, 38.911222 ], [ -77.009869, 38.911138 ], [ -77.009847, 38.911138 ], [ -77.009804, 38.911122 ], [ -77.009118, 38.910821 ], [ -77.009010, 38.910788 ], [ -77.009010, 38.910387 ], [ -77.009010, 38.909636 ], [ -77.009010, 38.909085 ], [ -77.009010, 38.908567 ], [ -77.008989, 38.907682 ], [ -77.008989, 38.907365 ], [ -77.008989, 38.907265 ], [ -77.009075, 38.907265 ], [ -77.009161, 38.907265 ], [ -77.009289, 38.907231 ], [ -77.009547, 38.907131 ], [ -77.010083, 38.906981 ], [ -77.010126, 38.906981 ], [ -77.010190, 38.906947 ], [ -77.012165, 38.906263 ], [ -77.012229, 38.906296 ], [ -77.012615, 38.906146 ], [ -77.013237, 38.905962 ], [ -77.013431, 38.905879 ], [ -77.013645, 38.905812 ], [ -77.014160, 38.905645 ], [ -77.014654, 38.905461 ], [ -77.014804, 38.905411 ], [ -77.014868, 38.905545 ], [ -77.014890, 38.905645 ], [ -77.015169, 38.906463 ], [ -77.015426, 38.907231 ], [ -77.015898, 38.908567 ], [ -77.016156, 38.909252 ], [ -77.016284, 38.909636 ], [ -77.016499, 38.910237 ], [ -77.016563, 38.910404 ], [ -77.016606, 38.910521 ], [ -77.016628, 38.910571 ], [ -77.016821, 38.911122 ], [ -77.016950, 38.911472 ], [ -77.017100, 38.911856 ], [ -77.017121, 38.911940 ], [ -77.017207, 38.912190 ], [ -77.017336, 38.912524 ], [ -77.017357, 38.912608 ], [ -77.017465, 38.912875 ], [ -77.017508, 38.912992 ], [ -77.017636, 38.913376 ], [ -77.017722, 38.913610 ], [ -77.017765, 38.913710 ], [ -77.017787, 38.913810 ], [ -77.017808, 38.913893 ], [ -77.017894, 38.914094 ], [ -77.018108, 38.914645 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008701", "GEOID": "11001008701", "NAME": "87.01", "NAMELSAD": "Census Tract 87.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 382686, "AWATER": 0, "INTPTLAT": "+38.9141018", "INTPTLON": "-077.0062645" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.005320, 38.909202 ], [ -77.005599, 38.909318 ], [ -77.005684, 38.909352 ], [ -77.005877, 38.909435 ], [ -77.006006, 38.909485 ], [ -77.006199, 38.909569 ], [ -77.006371, 38.909652 ], [ -77.006929, 38.909886 ], [ -77.007701, 38.910203 ], [ -77.008045, 38.910354 ], [ -77.008281, 38.910454 ], [ -77.008796, 38.910688 ], [ -77.009010, 38.910788 ], [ -77.009010, 38.911105 ], [ -77.009010, 38.911422 ], [ -77.009010, 38.911573 ], [ -77.009010, 38.911856 ], [ -77.009010, 38.912591 ], [ -77.008989, 38.913342 ], [ -77.008989, 38.913610 ], [ -77.009010, 38.914077 ], [ -77.009010, 38.914828 ], [ -77.008989, 38.915563 ], [ -77.008989, 38.916181 ], [ -77.008989, 38.916815 ], [ -77.008989, 38.916899 ], [ -77.008924, 38.916915 ], [ -77.008324, 38.917066 ], [ -77.007122, 38.917466 ], [ -77.006993, 38.917516 ], [ -77.006693, 38.917616 ], [ -77.006071, 38.917834 ], [ -77.005556, 38.918017 ], [ -77.005341, 38.918084 ], [ -77.005105, 38.918167 ], [ -77.004826, 38.918268 ], [ -77.003517, 38.918718 ], [ -77.003517, 38.918652 ], [ -77.003496, 38.918101 ], [ -77.003496, 38.917834 ], [ -77.003496, 38.917667 ], [ -77.003496, 38.917633 ], [ -77.003496, 38.917550 ], [ -77.003496, 38.917283 ], [ -77.003496, 38.916999 ], [ -77.003496, 38.916698 ], [ -77.003496, 38.916348 ], [ -77.003496, 38.916281 ], [ -77.003496, 38.915964 ], [ -77.003496, 38.915646 ], [ -77.003496, 38.915563 ], [ -77.003496, 38.914812 ], [ -77.003496, 38.914745 ], [ -77.003496, 38.914595 ], [ -77.003496, 38.914077 ], [ -77.003496, 38.913342 ], [ -77.003496, 38.913159 ], [ -77.003496, 38.912758 ], [ -77.003496, 38.912591 ], [ -77.004139, 38.912608 ], [ -77.004375, 38.912591 ], [ -77.004569, 38.911856 ], [ -77.004783, 38.911122 ], [ -77.004933, 38.910571 ], [ -77.004955, 38.910487 ], [ -77.005126, 38.909853 ], [ -77.005277, 38.909352 ], [ -77.005320, 38.909202 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009204", "GEOID": "11001009204", "NAME": "92.04", "NAMELSAD": "Census Tract 92.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308465, "AWATER": 0, "INTPTLAT": "+38.9234161", "INTPTLON": "-076.9987071" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994483, 38.925580 ], [ -76.994634, 38.924995 ], [ -76.994805, 38.924411 ], [ -76.994934, 38.923977 ], [ -76.995020, 38.923760 ], [ -76.995084, 38.923576 ], [ -76.995363, 38.922909 ], [ -76.995642, 38.922258 ], [ -76.995943, 38.921573 ], [ -76.996028, 38.921373 ], [ -76.996179, 38.921323 ], [ -76.996372, 38.921256 ], [ -76.999526, 38.920087 ], [ -77.000556, 38.919753 ], [ -77.000556, 38.919820 ], [ -77.000556, 38.920221 ], [ -77.000556, 38.920371 ], [ -77.000556, 38.921223 ], [ -77.000556, 38.921289 ], [ -77.000556, 38.921673 ], [ -77.000556, 38.922374 ], [ -77.000556, 38.922975 ], [ -77.000556, 38.923359 ], [ -77.000556, 38.923443 ], [ -77.000706, 38.923443 ], [ -77.000942, 38.923443 ], [ -77.001522, 38.923443 ], [ -77.002037, 38.923443 ], [ -77.002509, 38.923443 ], [ -77.003303, 38.923426 ], [ -77.003560, 38.923426 ], [ -77.003367, 38.924010 ], [ -77.003238, 38.924411 ], [ -77.003152, 38.924712 ], [ -77.003045, 38.925029 ], [ -77.002981, 38.925246 ], [ -77.002959, 38.925279 ], [ -77.002938, 38.925313 ], [ -77.002916, 38.925329 ], [ -77.002873, 38.925346 ], [ -77.002852, 38.925363 ], [ -77.002680, 38.925463 ], [ -77.002444, 38.925596 ], [ -77.001994, 38.925596 ], [ -77.001650, 38.925596 ], [ -77.001328, 38.925596 ], [ -77.000685, 38.925596 ], [ -77.000556, 38.925596 ], [ -77.000427, 38.925580 ], [ -77.000148, 38.925580 ], [ -77.000127, 38.925580 ], [ -76.999505, 38.925580 ], [ -76.998796, 38.925580 ], [ -76.998432, 38.925580 ], [ -76.997809, 38.925580 ], [ -76.997166, 38.925580 ], [ -76.996608, 38.925580 ], [ -76.996264, 38.925580 ], [ -76.996157, 38.925580 ], [ -76.995471, 38.925580 ], [ -76.994956, 38.925580 ], [ -76.994805, 38.925580 ], [ -76.994634, 38.925580 ], [ -76.994483, 38.925580 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008702", "GEOID": "11001008702", "NAME": "87.02", "NAMELSAD": "Census Tract 87.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 486411, "AWATER": 0, "INTPTLAT": "+38.9150961", "INTPTLON": "-077.0013085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002509, 38.907999 ], [ -77.002873, 38.908166 ], [ -77.003131, 38.908267 ], [ -77.003260, 38.908333 ], [ -77.003410, 38.908383 ], [ -77.003775, 38.908550 ], [ -77.003818, 38.908567 ], [ -77.004268, 38.908751 ], [ -77.004333, 38.908784 ], [ -77.004375, 38.908801 ], [ -77.004397, 38.908818 ], [ -77.004504, 38.908868 ], [ -77.004590, 38.908901 ], [ -77.004719, 38.908951 ], [ -77.004805, 38.909001 ], [ -77.005084, 38.909118 ], [ -77.005320, 38.909202 ], [ -77.005277, 38.909352 ], [ -77.005126, 38.909853 ], [ -77.004955, 38.910487 ], [ -77.004933, 38.910571 ], [ -77.004783, 38.911122 ], [ -77.004569, 38.911856 ], [ -77.004375, 38.912591 ], [ -77.004139, 38.912608 ], [ -77.003496, 38.912591 ], [ -77.003496, 38.912758 ], [ -77.003496, 38.913159 ], [ -77.003496, 38.913342 ], [ -77.003496, 38.914077 ], [ -77.003496, 38.914595 ], [ -77.003496, 38.914745 ], [ -77.003496, 38.914812 ], [ -77.003496, 38.915563 ], [ -77.003496, 38.915646 ], [ -77.003496, 38.915964 ], [ -77.003496, 38.916281 ], [ -77.003496, 38.916348 ], [ -77.003496, 38.916698 ], [ -77.003496, 38.916999 ], [ -77.003496, 38.917283 ], [ -77.003496, 38.917550 ], [ -77.003496, 38.917633 ], [ -77.003496, 38.917667 ], [ -77.003496, 38.917834 ], [ -77.003496, 38.918101 ], [ -77.003517, 38.918652 ], [ -77.003517, 38.918718 ], [ -77.002015, 38.919236 ], [ -77.000556, 38.919753 ], [ -76.999526, 38.920087 ], [ -76.996372, 38.921256 ], [ -76.996179, 38.921323 ], [ -76.996028, 38.921373 ], [ -76.996071, 38.921273 ], [ -76.996264, 38.920872 ], [ -76.996651, 38.920037 ], [ -76.996908, 38.919470 ], [ -76.997659, 38.918101 ], [ -76.998925, 38.915563 ], [ -76.998990, 38.915446 ], [ -77.000148, 38.913159 ], [ -77.000513, 38.912424 ], [ -77.001479, 38.910437 ], [ -77.001715, 38.909970 ], [ -77.001801, 38.909803 ], [ -77.002423, 38.908333 ], [ -77.002509, 38.907999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004704", "GEOID": "11001004704", "NAME": "47.04", "NAMELSAD": "Census Tract 47.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 198509, "AWATER": 0, "INTPTLAT": "+38.9045660", "INTPTLON": "-077.0114767" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.013710, 38.902506 ], [ -77.013774, 38.902689 ], [ -77.013860, 38.902873 ], [ -77.014096, 38.903558 ], [ -77.014160, 38.903741 ], [ -77.014182, 38.903808 ], [ -77.014246, 38.903959 ], [ -77.014332, 38.904192 ], [ -77.014396, 38.904376 ], [ -77.014503, 38.904677 ], [ -77.014568, 38.904877 ], [ -77.014654, 38.905127 ], [ -77.014697, 38.905211 ], [ -77.014761, 38.905328 ], [ -77.014761, 38.905361 ], [ -77.014804, 38.905411 ], [ -77.014654, 38.905461 ], [ -77.014160, 38.905645 ], [ -77.013645, 38.905812 ], [ -77.013431, 38.905879 ], [ -77.013237, 38.905962 ], [ -77.012615, 38.906146 ], [ -77.012229, 38.906296 ], [ -77.012165, 38.906263 ], [ -77.010190, 38.906947 ], [ -77.010126, 38.906981 ], [ -77.010083, 38.906981 ], [ -77.009547, 38.907131 ], [ -77.009289, 38.907231 ], [ -77.009161, 38.907265 ], [ -77.009075, 38.907265 ], [ -77.008989, 38.907265 ], [ -77.008989, 38.906313 ], [ -77.008989, 38.905745 ], [ -77.009053, 38.905645 ], [ -77.009053, 38.905127 ], [ -77.009053, 38.904677 ], [ -77.009053, 38.904493 ], [ -77.009053, 38.904292 ], [ -77.009053, 38.903725 ], [ -77.009053, 38.903190 ], [ -77.009053, 38.902606 ], [ -77.009053, 38.902506 ], [ -77.009246, 38.902506 ], [ -77.009847, 38.902506 ], [ -77.011220, 38.902506 ], [ -77.011306, 38.902522 ], [ -77.011693, 38.902506 ], [ -77.012165, 38.902506 ], [ -77.012293, 38.902506 ], [ -77.012401, 38.902522 ], [ -77.013581, 38.902506 ], [ -77.013710, 38.902506 ] ] ], [ [ [ -77.021906, 38.902522 ], [ -77.021499, 38.902522 ], [ -77.019911, 38.902522 ], [ -77.019482, 38.902522 ], [ -77.018924, 38.902522 ], [ -77.018602, 38.902522 ], [ -77.017937, 38.902522 ], [ -77.017636, 38.902522 ], [ -77.017400, 38.902522 ], [ -77.016413, 38.902522 ], [ -77.016177, 38.902522 ], [ -77.016048, 38.902522 ], [ -77.015941, 38.902522 ], [ -77.015426, 38.902522 ], [ -77.015169, 38.902522 ], [ -77.015018, 38.902522 ], [ -77.014675, 38.902522 ], [ -77.014546, 38.902522 ], [ -77.014203, 38.902506 ], [ -77.013924, 38.902506 ], [ -77.013881, 38.902506 ], [ -77.013710, 38.902506 ], [ -77.013581, 38.902506 ], [ -77.012401, 38.902522 ], [ -77.012293, 38.902506 ], [ -77.012165, 38.902506 ], [ -77.011693, 38.902506 ], [ -77.011306, 38.902522 ], [ -77.011220, 38.902506 ], [ -77.009847, 38.902506 ], [ -77.009246, 38.902506 ], [ -77.009053, 38.902506 ], [ -77.009053, 38.901303 ], [ -77.009053, 38.900402 ], [ -77.009053, 38.900201 ], [ -77.009053, 38.899567 ], [ -77.009053, 38.899066 ], [ -77.009053, 38.898915 ], [ -77.009075, 38.897863 ], [ -77.009053, 38.897546 ], [ -77.009053, 38.897463 ], [ -77.009225, 38.897529 ], [ -77.009289, 38.897563 ], [ -77.010255, 38.897947 ], [ -77.011178, 38.898331 ], [ -77.011907, 38.898632 ], [ -77.012293, 38.898799 ], [ -77.012336, 38.898815 ], [ -77.012422, 38.898849 ], [ -77.013645, 38.899233 ], [ -77.014074, 38.899383 ], [ -77.014246, 38.899433 ], [ -77.015233, 38.899767 ], [ -77.015662, 38.899934 ], [ -77.015984, 38.900051 ], [ -77.016199, 38.900151 ], [ -77.016521, 38.900301 ], [ -77.017314, 38.900569 ], [ -77.017722, 38.900702 ], [ -77.018130, 38.900853 ], [ -77.018173, 38.900869 ], [ -77.018795, 38.901086 ], [ -77.018924, 38.901120 ], [ -77.019482, 38.901320 ], [ -77.019739, 38.901404 ], [ -77.019911, 38.901470 ], [ -77.019997, 38.901504 ], [ -77.020254, 38.901587 ], [ -77.020426, 38.901637 ], [ -77.020898, 38.901821 ], [ -77.021520, 38.902021 ], [ -77.021606, 38.902055 ], [ -77.021649, 38.902055 ], [ -77.021692, 38.902072 ], [ -77.021906, 38.902105 ], [ -77.021906, 38.902272 ], [ -77.021906, 38.902522 ] ] ], [ [ [ -77.009010, 38.910788 ], [ -77.008796, 38.910688 ], [ -77.008281, 38.910454 ], [ -77.008045, 38.910354 ], [ -77.007701, 38.910203 ], [ -77.006929, 38.909886 ], [ -77.006371, 38.909652 ], [ -77.006199, 38.909569 ], [ -77.006006, 38.909485 ], [ -77.005877, 38.909435 ], [ -77.005684, 38.909352 ], [ -77.005599, 38.909318 ], [ -77.005320, 38.909202 ], [ -77.005084, 38.909118 ], [ -77.004805, 38.909001 ], [ -77.004719, 38.908951 ], [ -77.004590, 38.908901 ], [ -77.004504, 38.908868 ], [ -77.004397, 38.908818 ], [ -77.004375, 38.908801 ], [ -77.004333, 38.908784 ], [ -77.004268, 38.908751 ], [ -77.003818, 38.908567 ], [ -77.003775, 38.908550 ], [ -77.003410, 38.908383 ], [ -77.003260, 38.908333 ], [ -77.003131, 38.908267 ], [ -77.002873, 38.908166 ], [ -77.002509, 38.907999 ], [ -77.003345, 38.905645 ], [ -77.005470, 38.905645 ], [ -77.005877, 38.905645 ], [ -77.006671, 38.905645 ], [ -77.007208, 38.905645 ], [ -77.007658, 38.905645 ], [ -77.008195, 38.905645 ], [ -77.008924, 38.905645 ], [ -77.008989, 38.905645 ], [ -77.009053, 38.905645 ], [ -77.008989, 38.905745 ], [ -77.008989, 38.906313 ], [ -77.008989, 38.907265 ], [ -77.008989, 38.907365 ], [ -77.008989, 38.907682 ], [ -77.009010, 38.908567 ], [ -77.009010, 38.909085 ], [ -77.009010, 38.909636 ], [ -77.009010, 38.910387 ], [ -77.009010, 38.910788 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010603", "GEOID": "11001010603", "NAME": "106.03", "NAMELSAD": "Census Tract 106.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 464270, "AWATER": 0, "INTPTLAT": "+38.9011144", "INTPTLON": "-077.0063567" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -77.005727, 38.896010 ], [ -77.005920, 38.896026 ], [ -77.006135, 38.895976 ], [ -77.006328, 38.895976 ], [ -77.006521, 38.895960 ], [ -77.006714, 38.895976 ], [ -77.006907, 38.896026 ], [ -77.006993, 38.896060 ], [ -77.007165, 38.896143 ], [ -77.007294, 38.896243 ], [ -77.007551, 38.896661 ], [ -77.007594, 38.896744 ], [ -77.007637, 38.896828 ], [ -77.007701, 38.896878 ], [ -77.007766, 38.896911 ], [ -77.008109, 38.897162 ], [ -77.008195, 38.897212 ], [ -77.009053, 38.897546 ], [ -77.009075, 38.897863 ], [ -77.009053, 38.898915 ], [ -77.009053, 38.899066 ], [ -77.009053, 38.899567 ], [ -77.009053, 38.900201 ], [ -77.009053, 38.900402 ], [ -77.009053, 38.901303 ], [ -77.009053, 38.902506 ], [ -77.009053, 38.902606 ], [ -77.009053, 38.903190 ], [ -77.009053, 38.903725 ], [ -77.009053, 38.904292 ], [ -77.009053, 38.904493 ], [ -77.009053, 38.904677 ], [ -77.009053, 38.905127 ], [ -77.009053, 38.905645 ], [ -77.008989, 38.905645 ], [ -77.008924, 38.905645 ], [ -77.008195, 38.905645 ], [ -77.007658, 38.905645 ], [ -77.007208, 38.905645 ], [ -77.006671, 38.905645 ], [ -77.005877, 38.905645 ], [ -77.005470, 38.905645 ], [ -77.003345, 38.905645 ], [ -77.004011, 38.903741 ], [ -77.004139, 38.903124 ], [ -77.004418, 38.902506 ], [ -77.004182, 38.902506 ], [ -77.003560, 38.902506 ], [ -77.003560, 38.901855 ], [ -77.003560, 38.901804 ], [ -77.003560, 38.901671 ], [ -77.003560, 38.901621 ], [ -77.003560, 38.901320 ], [ -77.003560, 38.900853 ], [ -77.003560, 38.900686 ], [ -77.003560, 38.900418 ], [ -77.003560, 38.900201 ], [ -77.003539, 38.900151 ], [ -77.003517, 38.900051 ], [ -77.003496, 38.899851 ], [ -77.003496, 38.898915 ], [ -77.003496, 38.897830 ], [ -77.003496, 38.897429 ], [ -77.003496, 38.897329 ], [ -77.003968, 38.897346 ], [ -77.004611, 38.897346 ], [ -77.004762, 38.897346 ], [ -77.004805, 38.897212 ], [ -77.004955, 38.896761 ], [ -77.005019, 38.896611 ], [ -77.005041, 38.896594 ], [ -77.005148, 38.896410 ], [ -77.005191, 38.896310 ], [ -77.005212, 38.896277 ], [ -77.005234, 38.896243 ], [ -77.005277, 38.896227 ], [ -77.005320, 38.896193 ], [ -77.005577, 38.896043 ], [ -77.005727, 38.896010 ] ] ], [ [ [ -76.994956, 38.900201 ], [ -76.996157, 38.900201 ], [ -76.997616, 38.900201 ], [ -76.998003, 38.900201 ], [ -76.998432, 38.900201 ], [ -76.998539, 38.900201 ], [ -76.999505, 38.900201 ], [ -76.999934, 38.900201 ], [ -77.000449, 38.900201 ], [ -77.000556, 38.900201 ], [ -77.001286, 38.900201 ], [ -77.001843, 38.900201 ], [ -77.002037, 38.900201 ], [ -77.002165, 38.900201 ], [ -77.002766, 38.900201 ], [ -77.003560, 38.900201 ], [ -77.003560, 38.900418 ], [ -77.003560, 38.900686 ], [ -77.003560, 38.900853 ], [ -77.003560, 38.901320 ], [ -77.003560, 38.901621 ], [ -77.003560, 38.901671 ], [ -77.003560, 38.901804 ], [ -77.003560, 38.901855 ], [ -77.003560, 38.902506 ], [ -77.004182, 38.902506 ], [ -77.004418, 38.902506 ], [ -77.004139, 38.903124 ], [ -77.004011, 38.903741 ], [ -77.003345, 38.905645 ], [ -77.002509, 38.907999 ], [ -77.002251, 38.907899 ], [ -77.002208, 38.907883 ], [ -77.002015, 38.907799 ], [ -77.001822, 38.907716 ], [ -77.001457, 38.907565 ], [ -77.000856, 38.907298 ], [ -77.000792, 38.907281 ], [ -77.000470, 38.907148 ], [ -77.000363, 38.907098 ], [ -77.000213, 38.907048 ], [ -76.999569, 38.906764 ], [ -76.999419, 38.906697 ], [ -76.998324, 38.906229 ], [ -76.997809, 38.905996 ], [ -76.997359, 38.905812 ], [ -76.997101, 38.905695 ], [ -76.996672, 38.905511 ], [ -76.996415, 38.905411 ], [ -76.996157, 38.905294 ], [ -76.995986, 38.905228 ], [ -76.995170, 38.904877 ], [ -76.995041, 38.904827 ], [ -76.994891, 38.904760 ], [ -76.994505, 38.904593 ], [ -76.993904, 38.904326 ], [ -76.993754, 38.904276 ], [ -76.993132, 38.903992 ], [ -76.993518, 38.903725 ], [ -76.993582, 38.903691 ], [ -76.993754, 38.903574 ], [ -76.993861, 38.903491 ], [ -76.994634, 38.902990 ], [ -76.994956, 38.902790 ], [ -76.994956, 38.902706 ], [ -76.994956, 38.902506 ], [ -76.994956, 38.902105 ], [ -76.994956, 38.902072 ], [ -76.994956, 38.901320 ], [ -76.994956, 38.900201 ] ] ], [ [ [ -76.998453, 38.893087 ], [ -76.998925, 38.893087 ], [ -76.999505, 38.893087 ], [ -76.999569, 38.893087 ], [ -77.000127, 38.893087 ], [ -77.000213, 38.893087 ], [ -77.000320, 38.893087 ], [ -77.000577, 38.893087 ], [ -77.000577, 38.893404 ], [ -77.000577, 38.893505 ], [ -77.000577, 38.893588 ], [ -77.000577, 38.893855 ], [ -77.000577, 38.893922 ], [ -77.000577, 38.894072 ], [ -77.000620, 38.894072 ], [ -77.000706, 38.894089 ], [ -77.000749, 38.894089 ], [ -77.000771, 38.894106 ], [ -77.000813, 38.894123 ], [ -77.000856, 38.894123 ], [ -77.000899, 38.894139 ], [ -77.001371, 38.894340 ], [ -77.002037, 38.894607 ], [ -77.002122, 38.894640 ], [ -77.002294, 38.894707 ], [ -77.002466, 38.894774 ], [ -77.002659, 38.894857 ], [ -77.002745, 38.894891 ], [ -77.003303, 38.895125 ], [ -77.003496, 38.895208 ], [ -77.003496, 38.895342 ], [ -77.003496, 38.895392 ], [ -77.003496, 38.895642 ], [ -77.003496, 38.896110 ], [ -77.003496, 38.896795 ], [ -77.003496, 38.897329 ], [ -77.003496, 38.897429 ], [ -77.003496, 38.897830 ], [ -77.003496, 38.898915 ], [ -77.003496, 38.899851 ], [ -77.003517, 38.900051 ], [ -77.003539, 38.900151 ], [ -77.003560, 38.900201 ], [ -77.002766, 38.900201 ], [ -77.002165, 38.900201 ], [ -77.002037, 38.900201 ], [ -77.001843, 38.900201 ], [ -77.001286, 38.900201 ], [ -77.000556, 38.900201 ], [ -77.000449, 38.900201 ], [ -76.999934, 38.900201 ], [ -76.999505, 38.900201 ], [ -76.998539, 38.900201 ], [ -76.998432, 38.900201 ], [ -76.998432, 38.900084 ], [ -76.998432, 38.899350 ], [ -76.998432, 38.898915 ], [ -76.998453, 38.898431 ], [ -76.998453, 38.898131 ], [ -76.998432, 38.897863 ], [ -76.998453, 38.897763 ], [ -76.998453, 38.897429 ], [ -76.998432, 38.897329 ], [ -76.998432, 38.897229 ], [ -76.998432, 38.896728 ], [ -76.998432, 38.896110 ], [ -76.998432, 38.895559 ], [ -76.998432, 38.895459 ], [ -76.998453, 38.894791 ], [ -76.998453, 38.894724 ], [ -76.998453, 38.894189 ], [ -76.998453, 38.894089 ], [ -76.998453, 38.894039 ], [ -76.998453, 38.893956 ], [ -76.998453, 38.893772 ], [ -76.998453, 38.893688 ], [ -76.998453, 38.893638 ], [ -76.998453, 38.893588 ], [ -76.998453, 38.893338 ], [ -76.998453, 38.893171 ], [ -76.998453, 38.893087 ] ] ], [ [ [ -77.005877, 38.893621 ], [ -77.005727, 38.893571 ], [ -77.003796, 38.893571 ], [ -77.003624, 38.893571 ], [ -77.003582, 38.893571 ], [ -77.003517, 38.893588 ], [ -77.003496, 38.894791 ], [ -77.003496, 38.895208 ], [ -77.003303, 38.895125 ], [ -77.002745, 38.894891 ], [ -77.002659, 38.894857 ], [ -77.002466, 38.894774 ], [ -77.002294, 38.894707 ], [ -77.002122, 38.894640 ], [ -77.002037, 38.894607 ], [ -77.001371, 38.894340 ], [ -77.000899, 38.894139 ], [ -77.000856, 38.894123 ], [ -77.000813, 38.894123 ], [ -77.000771, 38.894106 ], [ -77.000749, 38.894089 ], [ -77.000706, 38.894089 ], [ -77.000620, 38.894072 ], [ -77.000577, 38.894072 ], [ -77.000577, 38.893922 ], [ -77.000577, 38.893855 ], [ -77.000577, 38.893588 ], [ -77.000577, 38.893505 ], [ -77.000577, 38.893404 ], [ -77.000577, 38.893087 ], [ -77.000320, 38.893087 ], [ -77.000213, 38.893087 ], [ -77.000127, 38.893087 ], [ -76.999569, 38.893087 ], [ -76.999505, 38.893087 ], [ -76.998925, 38.893087 ], [ -76.998453, 38.893087 ], [ -76.998367, 38.893070 ], [ -76.998217, 38.893037 ], [ -76.998153, 38.893020 ], [ -76.997724, 38.892837 ], [ -76.997166, 38.892619 ], [ -76.996307, 38.892269 ], [ -76.996157, 38.892219 ], [ -76.995664, 38.892018 ], [ -76.995385, 38.891901 ], [ -76.995149, 38.891801 ], [ -76.994956, 38.891718 ], [ -76.994956, 38.891617 ], [ -76.994956, 38.891417 ], [ -76.994956, 38.891150 ], [ -76.994956, 38.891016 ], [ -76.994956, 38.890983 ], [ -76.994956, 38.890933 ], [ -76.994956, 38.890866 ], [ -76.994956, 38.890265 ], [ -76.994956, 38.889797 ], [ -76.995084, 38.889797 ], [ -76.995578, 38.889797 ], [ -76.995685, 38.889797 ], [ -76.996157, 38.889797 ], [ -76.996350, 38.889797 ], [ -76.997273, 38.889797 ], [ -76.997681, 38.889814 ], [ -76.998432, 38.889814 ], [ -76.998539, 38.889814 ], [ -76.999183, 38.889814 ], [ -76.999505, 38.889814 ], [ -77.000191, 38.889797 ], [ -77.000427, 38.889797 ], [ -77.000577, 38.889814 ], [ -77.000663, 38.889814 ], [ -77.002037, 38.889814 ], [ -77.002573, 38.889814 ], [ -77.003109, 38.889797 ], [ -77.003281, 38.889797 ], [ -77.003517, 38.889814 ], [ -77.003517, 38.889914 ], [ -77.003517, 38.890933 ], [ -77.003517, 38.891016 ], [ -77.003517, 38.891350 ], [ -77.003517, 38.891801 ], [ -77.003517, 38.891918 ], [ -77.003775, 38.891868 ], [ -77.004354, 38.891918 ], [ -77.004418, 38.891784 ], [ -77.004504, 38.891667 ], [ -77.004676, 38.891517 ], [ -77.004890, 38.891400 ], [ -77.005255, 38.891250 ], [ -77.005513, 38.891133 ], [ -77.005920, 38.890966 ], [ -77.005920, 38.891233 ], [ -77.005920, 38.891400 ], [ -77.005920, 38.891834 ], [ -77.005899, 38.892018 ], [ -77.005877, 38.892118 ], [ -77.005877, 38.892586 ], [ -77.005877, 38.893471 ], [ -77.005877, 38.893621 ] ] ], [ [ [ -76.994956, 38.891718 ], [ -76.995149, 38.891801 ], [ -76.995385, 38.891901 ], [ -76.995664, 38.892018 ], [ -76.996157, 38.892219 ], [ -76.996307, 38.892269 ], [ -76.997166, 38.892619 ], [ -76.997724, 38.892837 ], [ -76.998153, 38.893020 ], [ -76.998217, 38.893037 ], [ -76.998367, 38.893070 ], [ -76.998453, 38.893087 ], [ -76.998453, 38.893171 ], [ -76.998453, 38.893338 ], [ -76.998453, 38.893588 ], [ -76.998453, 38.893638 ], [ -76.998453, 38.893688 ], [ -76.998453, 38.893772 ], [ -76.998453, 38.893956 ], [ -76.998453, 38.894039 ], [ -76.998453, 38.894089 ], [ -76.998453, 38.894189 ], [ -76.998453, 38.894724 ], [ -76.998453, 38.894791 ], [ -76.998432, 38.895459 ], [ -76.998432, 38.895559 ], [ -76.998432, 38.896110 ], [ -76.998432, 38.896728 ], [ -76.998432, 38.897229 ], [ -76.998432, 38.897329 ], [ -76.998453, 38.897429 ], [ -76.998453, 38.897763 ], [ -76.998432, 38.897863 ], [ -76.998453, 38.898131 ], [ -76.998453, 38.898431 ], [ -76.998432, 38.898915 ], [ -76.998432, 38.899350 ], [ -76.998432, 38.900084 ], [ -76.998432, 38.900201 ], [ -76.998003, 38.900201 ], [ -76.997616, 38.900201 ], [ -76.996157, 38.900201 ], [ -76.994956, 38.900201 ], [ -76.994956, 38.899750 ], [ -76.994956, 38.899366 ], [ -76.994956, 38.898899 ], [ -76.994956, 38.897396 ], [ -76.994956, 38.897329 ], [ -76.994956, 38.897245 ], [ -76.994956, 38.896110 ], [ -76.994956, 38.896026 ], [ -76.994956, 38.895659 ], [ -76.994956, 38.895575 ], [ -76.994956, 38.895475 ], [ -76.994956, 38.895425 ], [ -76.994956, 38.895375 ], [ -76.994956, 38.894774 ], [ -76.994956, 38.894223 ], [ -76.994956, 38.893772 ], [ -76.994956, 38.893571 ], [ -76.994956, 38.892636 ], [ -76.994956, 38.892135 ], [ -76.994956, 38.892018 ], [ -76.994956, 38.891918 ], [ -76.994956, 38.891718 ] ] ], [ [ [ -76.994956, 38.889797 ], [ -76.994956, 38.890265 ], [ -76.994956, 38.890866 ], [ -76.994956, 38.890933 ], [ -76.994956, 38.890983 ], [ -76.994956, 38.891016 ], [ -76.994956, 38.891150 ], [ -76.994956, 38.891417 ], [ -76.994956, 38.891617 ], [ -76.994956, 38.891718 ], [ -76.994956, 38.891918 ], [ -76.994956, 38.892018 ], [ -76.994956, 38.892135 ], [ -76.994956, 38.892636 ], [ -76.994956, 38.893571 ], [ -76.994956, 38.893772 ], [ -76.994956, 38.894223 ], [ -76.994956, 38.894774 ], [ -76.994956, 38.895375 ], [ -76.993754, 38.895876 ], [ -76.993110, 38.896143 ], [ -76.992638, 38.896327 ], [ -76.991522, 38.896778 ], [ -76.990471, 38.897212 ], [ -76.990471, 38.890365 ], [ -76.990943, 38.890365 ], [ -76.991436, 38.890365 ], [ -76.991522, 38.890365 ], [ -76.991522, 38.890114 ], [ -76.991522, 38.889797 ], [ -76.991801, 38.889797 ], [ -76.992638, 38.889797 ], [ -76.993089, 38.889797 ], [ -76.993754, 38.889797 ], [ -76.994290, 38.889797 ], [ -76.994956, 38.889797 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "980000", "GEOID": "11001980000", "NAME": "9800", "NAMELSAD": "Census Tract 9800", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 6514228, "AWATER": 4996393, "INTPTLAT": "+38.8809933", "INTPTLON": "-077.0363219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.064350, 38.889697 ], [ -77.064328, 38.889713 ], [ -77.064307, 38.889747 ], [ -77.064285, 38.889764 ], [ -77.064264, 38.889780 ], [ -77.064242, 38.889797 ], [ -77.064221, 38.889814 ], [ -77.064178, 38.889864 ], [ -77.064135, 38.889914 ], [ -77.064092, 38.889947 ], [ -77.064049, 38.889964 ], [ -77.064028, 38.889981 ], [ -77.064006, 38.889997 ], [ -77.063942, 38.890031 ], [ -77.063899, 38.890047 ], [ -77.063835, 38.890081 ], [ -77.063813, 38.890098 ], [ -77.063792, 38.890114 ], [ -77.063792, 38.890148 ], [ -77.063770, 38.890164 ], [ -77.063770, 38.890181 ], [ -77.063770, 38.890248 ], [ -77.063792, 38.890281 ], [ -77.063813, 38.890315 ], [ -77.063835, 38.890348 ], [ -77.063878, 38.890365 ], [ -77.063899, 38.890381 ], [ -77.063920, 38.890415 ], [ -77.063942, 38.890448 ], [ -77.063942, 38.890482 ], [ -77.063963, 38.890532 ], [ -77.063985, 38.890565 ], [ -77.064028, 38.890599 ], [ -77.064028, 38.890632 ], [ -77.064049, 38.890665 ], [ -77.064071, 38.890749 ], [ -77.064049, 38.890816 ], [ -77.064006, 38.890883 ], [ -77.063985, 38.890899 ], [ -77.063985, 38.890949 ], [ -77.064006, 38.890983 ], [ -77.064028, 38.891016 ], [ -77.064071, 38.891016 ], [ -77.064092, 38.891033 ], [ -77.064135, 38.891066 ], [ -77.064157, 38.891083 ], [ -77.064178, 38.891116 ], [ -77.064199, 38.891150 ], [ -77.064221, 38.891183 ], [ -77.064242, 38.891233 ], [ -77.064264, 38.891300 ], [ -77.064285, 38.891333 ], [ -77.064307, 38.891367 ], [ -77.064328, 38.891400 ], [ -77.064328, 38.891417 ], [ -77.064371, 38.891417 ], [ -77.064393, 38.891417 ], [ -77.064414, 38.891417 ], [ -77.064435, 38.891417 ], [ -77.064457, 38.891450 ], [ -77.064457, 38.891467 ], [ -77.064457, 38.891484 ], [ -77.064478, 38.891500 ], [ -77.064521, 38.891551 ], [ -77.064543, 38.891551 ], [ -77.064543, 38.891567 ], [ -77.064543, 38.891584 ], [ -77.064564, 38.891617 ], [ -77.064586, 38.891634 ], [ -77.064586, 38.891651 ], [ -77.064629, 38.891718 ], [ -77.064693, 38.891851 ], [ -77.064629, 38.891834 ], [ -77.064350, 38.891801 ], [ -77.064157, 38.891768 ], [ -77.063985, 38.891751 ], [ -77.063749, 38.891751 ], [ -77.063642, 38.891751 ], [ -77.063534, 38.891751 ], [ -77.063406, 38.891768 ], [ -77.063255, 38.891768 ], [ -77.063019, 38.891801 ], [ -77.062547, 38.891885 ], [ -77.062504, 38.891901 ], [ -77.062461, 38.891901 ], [ -77.062118, 38.891951 ], [ -77.061732, 38.892018 ], [ -77.061517, 38.892052 ], [ -77.061002, 38.892152 ], [ -77.060916, 38.892152 ], [ -77.060530, 38.892235 ], [ -77.060359, 38.892252 ], [ -77.060037, 38.892319 ], [ -77.059886, 38.892336 ], [ -77.059801, 38.892352 ], [ -77.059672, 38.892369 ], [ -77.059350, 38.892436 ], [ -77.058921, 38.892503 ], [ -77.057633, 38.892703 ], [ -77.056947, 38.892820 ], [ -77.056239, 38.892953 ], [ -77.055917, 38.893004 ], [ -77.055938, 38.893087 ], [ -77.056153, 38.893555 ], [ -77.056174, 38.893638 ], [ -77.056282, 38.893889 ], [ -77.056432, 38.894206 ], [ -77.056453, 38.894256 ], [ -77.056475, 38.894290 ], [ -77.056518, 38.894390 ], [ -77.056539, 38.894473 ], [ -77.056561, 38.894507 ], [ -77.056582, 38.894607 ], [ -77.056603, 38.894674 ], [ -77.056625, 38.894724 ], [ -77.056625, 38.894791 ], [ -77.056646, 38.894907 ], [ -77.056668, 38.895008 ], [ -77.056689, 38.895125 ], [ -77.056689, 38.895208 ], [ -77.056689, 38.895325 ], [ -77.056711, 38.895509 ], [ -77.056689, 38.895609 ], [ -77.056689, 38.896243 ], [ -77.056689, 38.896527 ], [ -77.056689, 38.896711 ], [ -77.056646, 38.897663 ], [ -77.056496, 38.897663 ], [ -77.056410, 38.897663 ], [ -77.056282, 38.897663 ], [ -77.056110, 38.897646 ], [ -77.056003, 38.897613 ], [ -77.055981, 38.897596 ], [ -77.055960, 38.897579 ], [ -77.055938, 38.897563 ], [ -77.055917, 38.897546 ], [ -77.055874, 38.897496 ], [ -77.055852, 38.897463 ], [ -77.055745, 38.897412 ], [ -77.055681, 38.897396 ], [ -77.055552, 38.897396 ], [ -77.055466, 38.897379 ], [ -77.055380, 38.897346 ], [ -77.055337, 38.897346 ], [ -77.055295, 38.897346 ], [ -77.055252, 38.897346 ], [ -77.055230, 38.897346 ], [ -77.055187, 38.897346 ], [ -77.055144, 38.897346 ], [ -77.055101, 38.897346 ], [ -77.055037, 38.897346 ], [ -77.054994, 38.897346 ], [ -77.054973, 38.897346 ], [ -77.054865, 38.897346 ], [ -77.054822, 38.897346 ], [ -77.054780, 38.897346 ], [ -77.054758, 38.897346 ], [ -77.054629, 38.897362 ], [ -77.054458, 38.897346 ], [ -77.054350, 38.897346 ], [ -77.054265, 38.897346 ], [ -77.054136, 38.897346 ], [ -77.054093, 38.897362 ], [ -77.054029, 38.897346 ], [ -77.053814, 38.897346 ], [ -77.053707, 38.897346 ], [ -77.053621, 38.897346 ], [ -77.053578, 38.897362 ], [ -77.053514, 38.897379 ], [ -77.053449, 38.897396 ], [ -77.053428, 38.897429 ], [ -77.053406, 38.897446 ], [ -77.053385, 38.897513 ], [ -77.053363, 38.897546 ], [ -77.053363, 38.897579 ], [ -77.053342, 38.897630 ], [ -77.053342, 38.897663 ], [ -77.053320, 38.897680 ], [ -77.053320, 38.897713 ], [ -77.053320, 38.897746 ], [ -77.053320, 38.897780 ], [ -77.053299, 38.897863 ], [ -77.053299, 38.897913 ], [ -77.053320, 38.897997 ], [ -77.053320, 38.898047 ], [ -77.053299, 38.898481 ], [ -77.053256, 38.898515 ], [ -77.053235, 38.898531 ], [ -77.053213, 38.898548 ], [ -77.053192, 38.898581 ], [ -77.053149, 38.898632 ], [ -77.053127, 38.898682 ], [ -77.053020, 38.898548 ], [ -77.052956, 38.898448 ], [ -77.052891, 38.898314 ], [ -77.052870, 38.898231 ], [ -77.052848, 38.898164 ], [ -77.052827, 38.898131 ], [ -77.052805, 38.898047 ], [ -77.052805, 38.897947 ], [ -77.052784, 38.897730 ], [ -77.052784, 38.897713 ], [ -77.052805, 38.897396 ], [ -77.052827, 38.897245 ], [ -77.052805, 38.897112 ], [ -77.052827, 38.897062 ], [ -77.052848, 38.896978 ], [ -77.052891, 38.896811 ], [ -77.052956, 38.896628 ], [ -77.052956, 38.896511 ], [ -77.052934, 38.896444 ], [ -77.052913, 38.896394 ], [ -77.052891, 38.896344 ], [ -77.052848, 38.896294 ], [ -77.052805, 38.896243 ], [ -77.052741, 38.896193 ], [ -77.052698, 38.896160 ], [ -77.052612, 38.896110 ], [ -77.052526, 38.896093 ], [ -77.052441, 38.896076 ], [ -77.052355, 38.896060 ], [ -77.052183, 38.896043 ], [ -77.052033, 38.896026 ], [ -77.051690, 38.895976 ], [ -77.051582, 38.895960 ], [ -77.051368, 38.895909 ], [ -77.050102, 38.896026 ], [ -77.048793, 38.896010 ], [ -77.048600, 38.896026 ], [ -77.048492, 38.896026 ], [ -77.048278, 38.896026 ], [ -77.048128, 38.896010 ], [ -77.048020, 38.896010 ], [ -77.047613, 38.895809 ], [ -77.047420, 38.895709 ], [ -77.047377, 38.895676 ], [ -77.046669, 38.895308 ], [ -77.045510, 38.894707 ], [ -77.045295, 38.894590 ], [ -77.045209, 38.894523 ], [ -77.045081, 38.894440 ], [ -77.044759, 38.894223 ], [ -77.044544, 38.894106 ], [ -77.044072, 38.893855 ], [ -77.043922, 38.893755 ], [ -77.043471, 38.893505 ], [ -77.043192, 38.893371 ], [ -77.041969, 38.892753 ], [ -77.041883, 38.892703 ], [ -77.041733, 38.892636 ], [ -77.041647, 38.892603 ], [ -77.041583, 38.892569 ], [ -77.041068, 38.892302 ], [ -77.040918, 38.892202 ], [ -77.040875, 38.892169 ], [ -77.040854, 38.892152 ], [ -77.040832, 38.892152 ], [ -77.040811, 38.892135 ], [ -77.040789, 38.892118 ], [ -77.040746, 38.892118 ], [ -77.040725, 38.892102 ], [ -77.040703, 38.892118 ], [ -77.040660, 38.892102 ], [ -77.039480, 38.892102 ], [ -77.039459, 38.893521 ], [ -77.039459, 38.893605 ], [ -77.039459, 38.893638 ], [ -77.039459, 38.893922 ], [ -77.039459, 38.894340 ], [ -77.039459, 38.894523 ], [ -77.039459, 38.894824 ], [ -77.039459, 38.895292 ], [ -77.039459, 38.895392 ], [ -77.039459, 38.895542 ], [ -77.039459, 38.895843 ], [ -77.039459, 38.896294 ], [ -77.039459, 38.896394 ], [ -77.039459, 38.896611 ], [ -77.039459, 38.896928 ], [ -77.039459, 38.897262 ], [ -77.039459, 38.897346 ], [ -77.039480, 38.897463 ], [ -77.039459, 38.897830 ], [ -77.039459, 38.898164 ], [ -77.039459, 38.898231 ], [ -77.039459, 38.898314 ], [ -77.039459, 38.898632 ], [ -77.039459, 38.898815 ], [ -77.039244, 38.898748 ], [ -77.037935, 38.898748 ], [ -77.037935, 38.899934 ], [ -77.037957, 38.900201 ], [ -77.036541, 38.900201 ], [ -77.035596, 38.900201 ], [ -77.035468, 38.900201 ], [ -77.035124, 38.900201 ], [ -77.035146, 38.900068 ], [ -77.035146, 38.899851 ], [ -77.035146, 38.899016 ], [ -77.035146, 38.898865 ], [ -77.035103, 38.898765 ], [ -77.035060, 38.898765 ], [ -77.033858, 38.898765 ], [ -77.033644, 38.898782 ], [ -77.033644, 38.898615 ], [ -77.033644, 38.898431 ], [ -77.033644, 38.898314 ], [ -77.033644, 38.897346 ], [ -77.033644, 38.896394 ], [ -77.033365, 38.896394 ], [ -77.033193, 38.896394 ], [ -77.033043, 38.896377 ], [ -77.032850, 38.896344 ], [ -77.032485, 38.896227 ], [ -77.032163, 38.896143 ], [ -77.031949, 38.896110 ], [ -77.031949, 38.895492 ], [ -77.030768, 38.895509 ], [ -77.030210, 38.895509 ], [ -77.029889, 38.895492 ], [ -77.029631, 38.895442 ], [ -77.028794, 38.895225 ], [ -77.028086, 38.895024 ], [ -77.027056, 38.894740 ], [ -77.026005, 38.894440 ], [ -77.023966, 38.893872 ], [ -77.023902, 38.893855 ], [ -77.023344, 38.893705 ], [ -77.022958, 38.893605 ], [ -77.021906, 38.893287 ], [ -77.021542, 38.893204 ], [ -77.020748, 38.893004 ], [ -77.020705, 38.892987 ], [ -77.019889, 38.892753 ], [ -77.018580, 38.892386 ], [ -77.017550, 38.892102 ], [ -77.016392, 38.891784 ], [ -77.016242, 38.891885 ], [ -77.015834, 38.892018 ], [ -77.015576, 38.892068 ], [ -77.015233, 38.892085 ], [ -77.015040, 38.892085 ], [ -77.014997, 38.892085 ], [ -77.014675, 38.892085 ], [ -77.014225, 38.892085 ], [ -77.014010, 38.892085 ], [ -77.013624, 38.892085 ], [ -77.013173, 38.892085 ], [ -77.012980, 38.892235 ], [ -77.012744, 38.892436 ], [ -77.012422, 38.892670 ], [ -77.012165, 38.892853 ], [ -77.011907, 38.893054 ], [ -77.011156, 38.893571 ], [ -77.011027, 38.893672 ], [ -77.010877, 38.893772 ], [ -77.010663, 38.893939 ], [ -77.010748, 38.894206 ], [ -77.010899, 38.894690 ], [ -77.010942, 38.894791 ], [ -77.010877, 38.894791 ], [ -77.010620, 38.894791 ], [ -77.010469, 38.894791 ], [ -77.010276, 38.894791 ], [ -77.010062, 38.894791 ], [ -77.009933, 38.894774 ], [ -77.009890, 38.894774 ], [ -77.009847, 38.894774 ], [ -77.009482, 38.894791 ], [ -77.009053, 38.895108 ], [ -77.009053, 38.895425 ], [ -77.009053, 38.896127 ], [ -77.009053, 38.896511 ], [ -77.009053, 38.897129 ], [ -77.009053, 38.897346 ], [ -77.009053, 38.897463 ], [ -77.009053, 38.897546 ], [ -77.008195, 38.897212 ], [ -77.008109, 38.897162 ], [ -77.007766, 38.896911 ], [ -77.007701, 38.896878 ], [ -77.007637, 38.896828 ], [ -77.007594, 38.896744 ], [ -77.007551, 38.896661 ], [ -77.007294, 38.896243 ], [ -77.007165, 38.896143 ], [ -77.006993, 38.896060 ], [ -77.006907, 38.896026 ], [ -77.006714, 38.895976 ], [ -77.006521, 38.895960 ], [ -77.006328, 38.895976 ], [ -77.006135, 38.895976 ], [ -77.005920, 38.896026 ], [ -77.005727, 38.896010 ], [ -77.005577, 38.896043 ], [ -77.005320, 38.896193 ], [ -77.005277, 38.896227 ], [ -77.005234, 38.896243 ], [ -77.005212, 38.896277 ], [ -77.005191, 38.896310 ], [ -77.005148, 38.896410 ], [ -77.005041, 38.896594 ], [ -77.005019, 38.896611 ], [ -77.004955, 38.896761 ], [ -77.004805, 38.897212 ], [ -77.004762, 38.897346 ], [ -77.004611, 38.897346 ], [ -77.003968, 38.897346 ], [ -77.003496, 38.897329 ], [ -77.003496, 38.896795 ], [ -77.003496, 38.896110 ], [ -77.003496, 38.895642 ], [ -77.003496, 38.895392 ], [ -77.003496, 38.895342 ], [ -77.003496, 38.895208 ], [ -77.003496, 38.894791 ], [ -77.003517, 38.893588 ], [ -77.003582, 38.893571 ], [ -77.003624, 38.893571 ], [ -77.003796, 38.893571 ], [ -77.005727, 38.893571 ], [ -77.005877, 38.893621 ], [ -77.005877, 38.893471 ], [ -77.005877, 38.892586 ], [ -77.005877, 38.892118 ], [ -77.005899, 38.892018 ], [ -77.005920, 38.891834 ], [ -77.005920, 38.891400 ], [ -77.005920, 38.891233 ], [ -77.005920, 38.890966 ], [ -77.005513, 38.891133 ], [ -77.005255, 38.891250 ], [ -77.004890, 38.891400 ], [ -77.004676, 38.891517 ], [ -77.004504, 38.891667 ], [ -77.004418, 38.891784 ], [ -77.004354, 38.891918 ], [ -77.003775, 38.891868 ], [ -77.003517, 38.891918 ], [ -77.003517, 38.891801 ], [ -77.003517, 38.891350 ], [ -77.003517, 38.891016 ], [ -77.003517, 38.890933 ], [ -77.003517, 38.889914 ], [ -77.003517, 38.889814 ], [ -77.003517, 38.889697 ], [ -77.064350, 38.889697 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006600", "GEOID": "11001006600", "NAME": "66", "NAMELSAD": "Census Tract 66", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 285156, "AWATER": 0, "INTPTLAT": "+38.8877585", "INTPTLON": "-076.9982439" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.003517, 38.889697 ], [ -77.003517, 38.889814 ], [ -77.003281, 38.889797 ], [ -77.003109, 38.889797 ], [ -77.002573, 38.889814 ], [ -77.002037, 38.889814 ], [ -77.000663, 38.889814 ], [ -77.000577, 38.889814 ], [ -77.000427, 38.889797 ], [ -77.000191, 38.889797 ], [ -76.999505, 38.889814 ], [ -76.999183, 38.889814 ], [ -76.998539, 38.889814 ], [ -76.998432, 38.889814 ], [ -76.997681, 38.889814 ], [ -76.997273, 38.889797 ], [ -76.996350, 38.889797 ], [ -76.996157, 38.889797 ], [ -76.995685, 38.889797 ], [ -76.995578, 38.889797 ], [ -76.995084, 38.889797 ], [ -76.994956, 38.889797 ], [ -76.994956, 38.889697 ], [ -77.003517, 38.889697 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009301", "GEOID": "11001009301", "NAME": "93.01", "NAMELSAD": "Census Tract 93.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1109091, "AWATER": 0, "INTPTLAT": "+38.9307613", "INTPTLON": "-076.9864892" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994162, 38.927433 ], [ -76.994140, 38.927917 ], [ -76.994097, 38.928634 ], [ -76.994097, 38.929252 ], [ -76.994119, 38.929786 ], [ -76.994140, 38.930237 ], [ -76.994226, 38.930905 ], [ -76.994312, 38.931389 ], [ -76.994483, 38.932373 ], [ -76.994591, 38.932807 ], [ -76.994720, 38.933342 ], [ -76.994827, 38.933742 ], [ -76.994698, 38.933826 ], [ -76.994569, 38.933909 ], [ -76.994398, 38.933942 ], [ -76.994355, 38.933909 ], [ -76.994333, 38.933892 ], [ -76.994290, 38.933892 ], [ -76.994269, 38.933892 ], [ -76.994247, 38.933909 ], [ -76.994183, 38.933926 ], [ -76.993990, 38.933976 ], [ -76.993883, 38.934026 ], [ -76.993518, 38.934176 ], [ -76.993346, 38.934260 ], [ -76.993325, 38.934260 ], [ -76.993239, 38.934310 ], [ -76.993067, 38.934410 ], [ -76.993024, 38.934410 ], [ -76.992981, 38.934426 ], [ -76.992939, 38.934426 ], [ -76.992874, 38.934426 ], [ -76.992788, 38.934426 ], [ -76.992681, 38.934443 ], [ -76.992102, 38.934460 ], [ -76.991673, 38.934493 ], [ -76.991243, 38.934510 ], [ -76.991158, 38.934510 ], [ -76.990600, 38.934543 ], [ -76.990471, 38.934543 ], [ -76.990471, 38.927616 ], [ -76.990600, 38.927599 ], [ -76.990707, 38.927599 ], [ -76.990836, 38.927583 ], [ -76.991630, 38.927549 ], [ -76.992059, 38.927533 ], [ -76.992316, 38.927516 ], [ -76.992424, 38.927516 ], [ -76.992917, 38.927483 ], [ -76.993454, 38.927466 ], [ -76.993668, 38.927449 ], [ -76.994076, 38.927433 ], [ -76.994119, 38.927433 ], [ -76.994162, 38.927433 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009302", "GEOID": "11001009302", "NAME": "93.02", "NAMELSAD": "Census Tract 93.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 391905, "AWATER": 0, "INTPTLAT": "+38.9251636", "INTPTLON": "-076.9907773" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.923042 ], [ -76.992402, 38.922491 ], [ -76.993883, 38.922041 ], [ -76.994870, 38.921740 ], [ -76.995900, 38.921423 ], [ -76.995964, 38.921406 ], [ -76.996028, 38.921373 ], [ -76.995943, 38.921573 ], [ -76.995642, 38.922258 ], [ -76.995363, 38.922909 ], [ -76.995084, 38.923576 ], [ -76.995020, 38.923760 ], [ -76.994934, 38.923977 ], [ -76.994805, 38.924411 ], [ -76.994634, 38.924995 ], [ -76.994483, 38.925580 ], [ -76.994419, 38.925913 ], [ -76.994312, 38.926498 ], [ -76.994162, 38.927433 ], [ -76.994119, 38.927433 ], [ -76.994076, 38.927433 ], [ -76.993668, 38.927449 ], [ -76.993454, 38.927466 ], [ -76.992917, 38.927483 ], [ -76.992424, 38.927516 ], [ -76.992316, 38.927516 ], [ -76.992059, 38.927533 ], [ -76.991630, 38.927549 ], [ -76.990836, 38.927583 ], [ -76.990707, 38.927599 ], [ -76.990600, 38.927599 ], [ -76.990471, 38.927616 ], [ -76.990471, 38.923042 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009102", "GEOID": "11001009102", "NAME": "91.02", "NAMELSAD": "Census Tract 91.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1816287, "AWATER": 0, "INTPTLAT": "+38.9187926", "INTPTLON": "-076.9888946" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.913877 ], [ -76.990492, 38.913877 ], [ -76.990728, 38.913710 ], [ -76.991029, 38.913593 ], [ -76.991565, 38.913409 ], [ -76.991737, 38.913359 ], [ -76.991887, 38.913309 ], [ -76.991973, 38.913276 ], [ -76.992102, 38.913226 ], [ -76.992381, 38.913125 ], [ -76.992617, 38.913042 ], [ -76.992660, 38.913025 ], [ -76.992767, 38.912992 ], [ -76.992853, 38.912958 ], [ -76.993711, 38.912658 ], [ -76.994505, 38.912374 ], [ -76.994848, 38.912257 ], [ -76.996436, 38.911706 ], [ -76.996865, 38.911556 ], [ -76.997273, 38.911406 ], [ -76.998131, 38.911105 ], [ -76.998303, 38.911055 ], [ -76.998367, 38.911038 ], [ -76.998410, 38.911022 ], [ -76.998518, 38.910988 ], [ -76.999247, 38.910738 ], [ -77.000062, 38.910454 ], [ -77.000363, 38.910437 ], [ -77.000513, 38.910404 ], [ -77.001350, 38.910120 ], [ -77.001715, 38.909970 ], [ -77.001479, 38.910437 ], [ -77.000513, 38.912424 ], [ -77.000148, 38.913159 ], [ -76.998990, 38.915446 ], [ -76.998925, 38.915563 ], [ -76.997659, 38.918101 ], [ -76.996908, 38.919470 ], [ -76.996651, 38.920037 ], [ -76.996264, 38.920872 ], [ -76.996071, 38.921273 ], [ -76.996028, 38.921373 ], [ -76.995964, 38.921406 ], [ -76.995900, 38.921423 ], [ -76.994870, 38.921740 ], [ -76.993883, 38.922041 ], [ -76.992402, 38.922491 ], [ -76.990471, 38.923042 ], [ -76.990471, 38.913877 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008803", "GEOID": "11001008803", "NAME": "88.03", "NAMELSAD": "Census Tract 88.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1168294, "AWATER": 0, "INTPTLAT": "+38.9104603", "INTPTLON": "-076.9913622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002509, 38.907999 ], [ -77.002423, 38.908333 ], [ -77.001801, 38.909803 ], [ -77.001715, 38.909970 ], [ -77.001350, 38.910120 ], [ -77.000513, 38.910404 ], [ -77.000363, 38.910437 ], [ -77.000062, 38.910454 ], [ -76.999247, 38.910738 ], [ -76.998518, 38.910988 ], [ -76.998410, 38.911022 ], [ -76.998367, 38.911038 ], [ -76.998303, 38.911055 ], [ -76.998131, 38.911105 ], [ -76.997273, 38.911406 ], [ -76.996865, 38.911556 ], [ -76.996436, 38.911706 ], [ -76.994848, 38.912257 ], [ -76.994505, 38.912374 ], [ -76.993711, 38.912658 ], [ -76.992853, 38.912958 ], [ -76.992767, 38.912992 ], [ -76.992660, 38.913025 ], [ -76.992617, 38.913042 ], [ -76.992381, 38.913125 ], [ -76.992102, 38.913226 ], [ -76.991973, 38.913276 ], [ -76.991887, 38.913309 ], [ -76.991737, 38.913359 ], [ -76.991565, 38.913409 ], [ -76.991029, 38.913593 ], [ -76.990728, 38.913710 ], [ -76.990492, 38.913877 ], [ -76.990471, 38.913877 ], [ -76.990471, 38.906313 ], [ -76.990879, 38.905962 ], [ -76.991308, 38.905578 ], [ -76.991801, 38.905144 ], [ -76.992209, 38.904777 ], [ -76.992488, 38.904526 ], [ -76.992810, 38.904259 ], [ -76.993132, 38.903992 ], [ -76.993754, 38.904276 ], [ -76.993904, 38.904326 ], [ -76.994505, 38.904593 ], [ -76.994891, 38.904760 ], [ -76.995041, 38.904827 ], [ -76.995170, 38.904877 ], [ -76.995986, 38.905228 ], [ -76.996157, 38.905294 ], [ -76.996415, 38.905411 ], [ -76.996672, 38.905511 ], [ -76.997101, 38.905695 ], [ -76.997359, 38.905812 ], [ -76.997809, 38.905996 ], [ -76.998324, 38.906229 ], [ -76.999419, 38.906697 ], [ -76.999569, 38.906764 ], [ -77.000213, 38.907048 ], [ -77.000363, 38.907098 ], [ -77.000470, 38.907148 ], [ -77.000792, 38.907281 ], [ -77.000856, 38.907298 ], [ -77.001457, 38.907565 ], [ -77.001822, 38.907716 ], [ -77.002015, 38.907799 ], [ -77.002208, 38.907883 ], [ -77.002251, 38.907899 ], [ -77.002509, 38.907999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008410", "GEOID": "11001008410", "NAME": "84.10", "NAMELSAD": "Census Tract 84.10", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 219939, "AWATER": 0, "INTPTLAT": "+38.9015543", "INTPTLON": "-076.9911234" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.990471, 38.900201 ], [ -76.991522, 38.900201 ], [ -76.992638, 38.900201 ], [ -76.993754, 38.900201 ], [ -76.994956, 38.900201 ], [ -76.994956, 38.901320 ], [ -76.994956, 38.902072 ], [ -76.994956, 38.902105 ], [ -76.994956, 38.902506 ], [ -76.994956, 38.902706 ], [ -76.994956, 38.902790 ], [ -76.994634, 38.902990 ], [ -76.993861, 38.903491 ], [ -76.993754, 38.903574 ], [ -76.993582, 38.903691 ], [ -76.993518, 38.903725 ], [ -76.993132, 38.903992 ], [ -76.992896, 38.903892 ], [ -76.992638, 38.903792 ], [ -76.992230, 38.903625 ], [ -76.991522, 38.903324 ], [ -76.990643, 38.902940 ], [ -76.990471, 38.902873 ], [ -76.990471, 38.900201 ] ] ], [ [ [ -76.990471, 38.902873 ], [ -76.990643, 38.902940 ], [ -76.991522, 38.903324 ], [ -76.992230, 38.903625 ], [ -76.992638, 38.903792 ], [ -76.992896, 38.903892 ], [ -76.993132, 38.903992 ], [ -76.992810, 38.904259 ], [ -76.992488, 38.904526 ], [ -76.992209, 38.904777 ], [ -76.991801, 38.905144 ], [ -76.991308, 38.905578 ], [ -76.990879, 38.905962 ], [ -76.990471, 38.906313 ], [ -76.990471, 38.902873 ] ] ], [ [ [ -76.990471, 38.897212 ], [ -76.991522, 38.896778 ], [ -76.992638, 38.896327 ], [ -76.993110, 38.896143 ], [ -76.993754, 38.895876 ], [ -76.994956, 38.895375 ], [ -76.994956, 38.895425 ], [ -76.994956, 38.895475 ], [ -76.994956, 38.895575 ], [ -76.994956, 38.895659 ], [ -76.994956, 38.896026 ], [ -76.994956, 38.896110 ], [ -76.994956, 38.897245 ], [ -76.994956, 38.897329 ], [ -76.994956, 38.897396 ], [ -76.994956, 38.898899 ], [ -76.994956, 38.899366 ], [ -76.994956, 38.899750 ], [ -76.994956, 38.900201 ], [ -76.993754, 38.900201 ], [ -76.992638, 38.900201 ], [ -76.991522, 38.900201 ], [ -76.990471, 38.900201 ], [ -76.990471, 38.897212 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008002", "GEOID": "11001008002", "NAME": "80.02", "NAMELSAD": "Census Tract 80.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 578961, "AWATER": 0, "INTPTLAT": "+38.8915403", "INTPTLON": "-076.9827594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990471, 38.889697 ], [ -76.991522, 38.889697 ], [ -76.991522, 38.889797 ], [ -76.991522, 38.890114 ], [ -76.991522, 38.890365 ], [ -76.991436, 38.890365 ], [ -76.990943, 38.890365 ], [ -76.990471, 38.890365 ], [ -76.990471, 38.889697 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006700", "GEOID": "11001006700", "NAME": "67", "NAMELSAD": "Census Tract 67", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 428358, "AWATER": 0, "INTPTLAT": "+38.8875984", "INTPTLON": "-076.9899590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994956, 38.889697 ], [ -76.994956, 38.889797 ], [ -76.994290, 38.889797 ], [ -76.993754, 38.889797 ], [ -76.993089, 38.889797 ], [ -76.992638, 38.889797 ], [ -76.991801, 38.889797 ], [ -76.991522, 38.889797 ], [ -76.991522, 38.889697 ], [ -76.994956, 38.889697 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1171, "y": 1565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 262144 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001401", "GEOID": "11001001401", "NAME": "14.01", "NAMELSAD": "Census Tract 14.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 788095, "AWATER": 0, "INTPTLAT": "+38.9653036", "INTPTLON": "-077.0706075" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.077423, 38.967305 ], [ -77.077101, 38.967559 ], [ -77.076709, 38.967843 ], [ -77.076640, 38.967889 ], [ -77.075803, 38.968543 ], [ -77.075679, 38.968639 ], [ -77.075620, 38.968685 ], [ -77.074773, 38.969340 ], [ -77.074247, 38.969757 ], [ -77.074183, 38.969807 ], [ -77.073212, 38.970550 ], [ -77.073110, 38.970633 ], [ -77.072986, 38.970725 ], [ -77.072922, 38.970779 ], [ -77.072804, 38.970871 ], [ -77.071645, 38.971788 ], [ -77.071576, 38.971688 ], [ -77.071243, 38.971238 ], [ -77.071189, 38.971163 ], [ -77.070894, 38.970766 ], [ -77.070733, 38.970537 ], [ -77.070680, 38.970466 ], [ -77.070562, 38.970299 ], [ -77.070181, 38.969761 ], [ -77.070138, 38.969699 ], [ -77.070106, 38.969624 ], [ -77.069977, 38.969332 ], [ -77.069660, 38.968635 ], [ -77.069489, 38.968231 ], [ -77.069290, 38.967780 ], [ -77.069215, 38.967622 ], [ -77.068813, 38.966729 ], [ -77.068786, 38.966662 ], [ -77.068512, 38.966049 ], [ -77.068405, 38.965811 ], [ -77.067761, 38.965811 ], [ -77.066925, 38.965811 ], [ -77.066377, 38.965816 ], [ -77.064849, 38.965811 ], [ -77.063883, 38.965807 ], [ -77.063786, 38.965807 ], [ -77.062896, 38.965811 ], [ -77.062435, 38.965807 ], [ -77.062370, 38.965811 ], [ -77.062193, 38.965811 ], [ -77.062043, 38.965811 ], [ -77.062215, 38.965611 ], [ -77.062392, 38.965411 ], [ -77.062606, 38.965152 ], [ -77.062821, 38.964902 ], [ -77.062966, 38.964735 ], [ -77.063153, 38.964514 ], [ -77.063347, 38.964289 ], [ -77.063566, 38.964035 ], [ -77.063599, 38.963993 ], [ -77.063781, 38.963784 ], [ -77.063819, 38.963734 ], [ -77.063878, 38.963668 ], [ -77.064409, 38.963046 ], [ -77.065997, 38.961194 ], [ -77.066061, 38.961119 ], [ -77.066093, 38.961086 ], [ -77.066125, 38.961061 ], [ -77.066174, 38.961040 ], [ -77.066233, 38.961015 ], [ -77.066302, 38.961023 ], [ -77.066860, 38.961023 ], [ -77.067086, 38.961023 ], [ -77.067279, 38.961019 ], [ -77.067638, 38.961019 ], [ -77.067976, 38.961015 ], [ -77.068362, 38.961019 ], [ -77.069027, 38.961015 ], [ -77.069172, 38.961019 ], [ -77.069854, 38.961019 ], [ -77.070213, 38.961015 ], [ -77.070599, 38.961015 ], [ -77.070696, 38.961015 ], [ -77.070830, 38.961015 ], [ -77.070991, 38.961019 ], [ -77.071329, 38.961019 ], [ -77.071602, 38.961015 ], [ -77.071994, 38.961019 ], [ -77.072359, 38.961019 ], [ -77.073308, 38.961019 ], [ -77.073925, 38.962074 ], [ -77.074521, 38.963092 ], [ -77.074682, 38.963380 ], [ -77.075046, 38.963997 ], [ -77.075368, 38.964556 ], [ -77.075572, 38.964902 ], [ -77.075749, 38.965211 ], [ -77.076082, 38.965786 ], [ -77.076151, 38.965907 ], [ -77.076280, 38.966124 ], [ -77.076522, 38.966546 ], [ -77.076575, 38.966629 ], [ -77.076623, 38.966717 ], [ -77.076790, 38.966913 ], [ -77.076865, 38.967009 ], [ -77.076924, 38.967063 ], [ -77.076983, 38.967104 ], [ -77.077063, 38.967155 ], [ -77.077165, 38.967217 ], [ -77.077208, 38.967221 ], [ -77.077294, 38.967238 ], [ -77.077315, 38.967246 ], [ -77.077342, 38.967255 ], [ -77.077369, 38.967271 ], [ -77.077423, 38.967305 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001402", "GEOID": "11001001402", "NAME": "14.02", "NAMELSAD": "Census Tract 14.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 895209, "AWATER": 0, "INTPTLAT": "+38.9606051", "INTPTLON": "-077.0630933" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.056056, 38.958675 ], [ -77.056083, 38.958616 ], [ -77.056115, 38.958562 ], [ -77.056153, 38.958508 ], [ -77.056185, 38.958462 ], [ -77.056249, 38.958378 ], [ -77.056287, 38.958337 ], [ -77.056308, 38.958316 ], [ -77.056324, 38.958295 ], [ -77.056341, 38.958278 ], [ -77.056362, 38.958262 ], [ -77.056383, 38.958245 ], [ -77.056410, 38.958228 ], [ -77.056437, 38.958220 ], [ -77.056528, 38.958157 ], [ -77.056653, 38.958074 ], [ -77.063583, 38.958074 ], [ -77.063599, 38.958078 ], [ -77.063647, 38.958095 ], [ -77.063776, 38.958132 ], [ -77.063937, 38.958182 ], [ -77.064103, 38.958232 ], [ -77.064269, 38.958278 ], [ -77.064521, 38.958341 ], [ -77.064886, 38.958429 ], [ -77.064929, 38.958437 ], [ -77.064961, 38.958445 ], [ -77.065122, 38.958479 ], [ -77.065181, 38.958499 ], [ -77.065256, 38.958516 ], [ -77.065337, 38.958533 ], [ -77.065519, 38.958562 ], [ -77.065589, 38.958575 ], [ -77.065723, 38.958591 ], [ -77.065793, 38.958595 ], [ -77.065927, 38.958608 ], [ -77.066034, 38.958616 ], [ -77.066163, 38.958549 ], [ -77.066200, 38.958512 ], [ -77.066318, 38.958429 ], [ -77.066678, 38.958178 ], [ -77.066829, 38.958074 ], [ -77.071593, 38.958074 ], [ -77.071602, 38.958091 ], [ -77.071742, 38.958320 ], [ -77.071763, 38.958358 ], [ -77.072107, 38.958950 ], [ -77.072150, 38.959025 ], [ -77.072230, 38.959171 ], [ -77.072536, 38.959688 ], [ -77.072901, 38.960318 ], [ -77.073255, 38.960931 ], [ -77.073308, 38.961019 ], [ -77.072359, 38.961019 ], [ -77.071994, 38.961019 ], [ -77.071602, 38.961015 ], [ -77.071329, 38.961019 ], [ -77.070991, 38.961019 ], [ -77.070830, 38.961015 ], [ -77.070696, 38.961015 ], [ -77.070599, 38.961015 ], [ -77.070213, 38.961015 ], [ -77.069854, 38.961019 ], [ -77.069172, 38.961019 ], [ -77.069027, 38.961015 ], [ -77.068362, 38.961019 ], [ -77.067976, 38.961015 ], [ -77.067638, 38.961019 ], [ -77.067279, 38.961019 ], [ -77.067086, 38.961023 ], [ -77.066860, 38.961023 ], [ -77.066302, 38.961023 ], [ -77.066233, 38.961015 ], [ -77.066174, 38.961040 ], [ -77.066125, 38.961061 ], [ -77.066093, 38.961086 ], [ -77.066061, 38.961119 ], [ -77.065997, 38.961194 ], [ -77.064409, 38.963046 ], [ -77.063878, 38.963668 ], [ -77.063819, 38.963734 ], [ -77.063781, 38.963784 ], [ -77.063599, 38.963993 ], [ -77.063566, 38.964035 ], [ -77.063347, 38.964289 ], [ -77.063153, 38.964514 ], [ -77.062966, 38.964735 ], [ -77.062821, 38.964902 ], [ -77.062606, 38.965152 ], [ -77.062392, 38.965411 ], [ -77.062215, 38.965611 ], [ -77.062043, 38.965811 ], [ -77.061866, 38.965811 ], [ -77.059763, 38.965816 ], [ -77.059227, 38.965816 ], [ -77.059125, 38.965878 ], [ -77.058975, 38.965786 ], [ -77.058846, 38.965699 ], [ -77.058696, 38.965590 ], [ -77.058551, 38.965486 ], [ -77.058347, 38.965344 ], [ -77.058277, 38.965290 ], [ -77.057794, 38.964948 ], [ -77.057574, 38.964790 ], [ -77.057505, 38.964735 ], [ -77.057172, 38.964498 ], [ -77.057086, 38.964435 ], [ -77.056872, 38.964281 ], [ -77.056684, 38.964147 ], [ -77.056480, 38.964001 ], [ -77.056373, 38.963922 ], [ -77.056324, 38.963884 ], [ -77.056308, 38.963868 ], [ -77.056265, 38.963826 ], [ -77.056233, 38.963776 ], [ -77.056217, 38.963747 ], [ -77.056201, 38.963705 ], [ -77.056196, 38.963672 ], [ -77.056190, 38.963634 ], [ -77.056185, 38.963597 ], [ -77.056190, 38.963376 ], [ -77.056190, 38.963184 ], [ -77.056190, 38.963104 ], [ -77.056190, 38.962908 ], [ -77.056196, 38.962646 ], [ -77.056201, 38.962320 ], [ -77.056201, 38.961182 ], [ -77.056201, 38.961157 ], [ -77.056196, 38.961015 ], [ -77.056196, 38.960873 ], [ -77.056206, 38.960614 ], [ -77.056206, 38.960347 ], [ -77.056206, 38.960256 ], [ -77.056206, 38.960193 ], [ -77.056206, 38.960130 ], [ -77.056196, 38.960005 ], [ -77.056190, 38.959955 ], [ -77.056180, 38.959880 ], [ -77.056158, 38.959780 ], [ -77.056137, 38.959692 ], [ -77.056121, 38.959630 ], [ -77.056099, 38.959505 ], [ -77.056019, 38.959004 ], [ -77.056013, 38.958979 ], [ -77.056003, 38.958921 ], [ -77.056003, 38.958887 ], [ -77.056003, 38.958858 ], [ -77.056003, 38.958825 ], [ -77.056013, 38.958791 ], [ -77.056029, 38.958733 ], [ -77.056056, 38.958675 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001600", "GEOID": "11001001600", "NAME": "16", "NAMELSAD": "Census Tract 16", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2667590, "AWATER": 7820, "INTPTLAT": "+38.9849725", "INTPTLON": "-077.0382324" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.037045, 38.972026 ], [ -77.037072, 38.972018 ], [ -77.037131, 38.972001 ], [ -77.037184, 38.971988 ], [ -77.037211, 38.971984 ], [ -77.037270, 38.971980 ], [ -77.037329, 38.971980 ], [ -77.037383, 38.971980 ], [ -77.037469, 38.971993 ], [ -77.037549, 38.972009 ], [ -77.037646, 38.972034 ], [ -77.037710, 38.972055 ], [ -77.037742, 38.972068 ], [ -77.037796, 38.972093 ], [ -77.037823, 38.972105 ], [ -77.037849, 38.972118 ], [ -77.037871, 38.972134 ], [ -77.037892, 38.972151 ], [ -77.037908, 38.972172 ], [ -77.037930, 38.972193 ], [ -77.037946, 38.972214 ], [ -77.037962, 38.972234 ], [ -77.037973, 38.972259 ], [ -77.037984, 38.972285 ], [ -77.037989, 38.972305 ], [ -77.037994, 38.972326 ], [ -77.038000, 38.972351 ], [ -77.038000, 38.972372 ], [ -77.037994, 38.972414 ], [ -77.037989, 38.972435 ], [ -77.037984, 38.972456 ], [ -77.037973, 38.972493 ], [ -77.037951, 38.972531 ], [ -77.037941, 38.972547 ], [ -77.037919, 38.972568 ], [ -77.037876, 38.972606 ], [ -77.037855, 38.972622 ], [ -77.037833, 38.972639 ], [ -77.037780, 38.972672 ], [ -77.037726, 38.972706 ], [ -77.037662, 38.972739 ], [ -77.037629, 38.972756 ], [ -77.037603, 38.972772 ], [ -77.037576, 38.972793 ], [ -77.037549, 38.972814 ], [ -77.037528, 38.972835 ], [ -77.037506, 38.972856 ], [ -77.037485, 38.972881 ], [ -77.037474, 38.972910 ], [ -77.037463, 38.972935 ], [ -77.037458, 38.972960 ], [ -77.037452, 38.972985 ], [ -77.037452, 38.973010 ], [ -77.037452, 38.973035 ], [ -77.037458, 38.973056 ], [ -77.037469, 38.973077 ], [ -77.037479, 38.973098 ], [ -77.037490, 38.973119 ], [ -77.037506, 38.973139 ], [ -77.037528, 38.973160 ], [ -77.037544, 38.973173 ], [ -77.037560, 38.973185 ], [ -77.037581, 38.973202 ], [ -77.037608, 38.973215 ], [ -77.037635, 38.973227 ], [ -77.037662, 38.973235 ], [ -77.037683, 38.973240 ], [ -77.037710, 38.973244 ], [ -77.037737, 38.973248 ], [ -77.037796, 38.973248 ], [ -77.037828, 38.973248 ], [ -77.037866, 38.973244 ], [ -77.038005, 38.973227 ], [ -77.038069, 38.973215 ], [ -77.038144, 38.973206 ], [ -77.038305, 38.973177 ], [ -77.038466, 38.973139 ], [ -77.038643, 38.973089 ], [ -77.038670, 38.973085 ], [ -77.038745, 38.973060 ], [ -77.038772, 38.973052 ], [ -77.038954, 38.973002 ], [ -77.039233, 38.972927 ], [ -77.039480, 38.972856 ], [ -77.039507, 38.972852 ], [ -77.039593, 38.972839 ], [ -77.039652, 38.972835 ], [ -77.039738, 38.972831 ], [ -77.039770, 38.972835 ], [ -77.039888, 38.972835 ], [ -77.039845, 38.972914 ], [ -77.039813, 38.972981 ], [ -77.039797, 38.973019 ], [ -77.039775, 38.973056 ], [ -77.039765, 38.973098 ], [ -77.039754, 38.973135 ], [ -77.039748, 38.973181 ], [ -77.039743, 38.973219 ], [ -77.039738, 38.973252 ], [ -77.039722, 38.973310 ], [ -77.039700, 38.973398 ], [ -77.039695, 38.973436 ], [ -77.039684, 38.973473 ], [ -77.039673, 38.973511 ], [ -77.039657, 38.973544 ], [ -77.039625, 38.973611 ], [ -77.039604, 38.973644 ], [ -77.039582, 38.973673 ], [ -77.039545, 38.973728 ], [ -77.039507, 38.973765 ], [ -77.039491, 38.973811 ], [ -77.039459, 38.973869 ], [ -77.039421, 38.973944 ], [ -77.039405, 38.973986 ], [ -77.039394, 38.974028 ], [ -77.039394, 38.974069 ], [ -77.039400, 38.974111 ], [ -77.039405, 38.974157 ], [ -77.039421, 38.974232 ], [ -77.039427, 38.974265 ], [ -77.039437, 38.974299 ], [ -77.039448, 38.974332 ], [ -77.039464, 38.974361 ], [ -77.039486, 38.974382 ], [ -77.039512, 38.974407 ], [ -77.039566, 38.974436 ], [ -77.039593, 38.974457 ], [ -77.039614, 38.974482 ], [ -77.039625, 38.974516 ], [ -77.039636, 38.974549 ], [ -77.039663, 38.974599 ], [ -77.039695, 38.974624 ], [ -77.039722, 38.974649 ], [ -77.039759, 38.974670 ], [ -77.039791, 38.974691 ], [ -77.039840, 38.974724 ], [ -77.039899, 38.974783 ], [ -77.039931, 38.974812 ], [ -77.039963, 38.974845 ], [ -77.039984, 38.974879 ], [ -77.039984, 38.974916 ], [ -77.039974, 38.974954 ], [ -77.039947, 38.974991 ], [ -77.039920, 38.975020 ], [ -77.039893, 38.975054 ], [ -77.039872, 38.975083 ], [ -77.039850, 38.975108 ], [ -77.039818, 38.975158 ], [ -77.039770, 38.975221 ], [ -77.039738, 38.975258 ], [ -77.039727, 38.975287 ], [ -77.039722, 38.975325 ], [ -77.039722, 38.975358 ], [ -77.039722, 38.975387 ], [ -77.039716, 38.975421 ], [ -77.039700, 38.975450 ], [ -77.039679, 38.975512 ], [ -77.039673, 38.975542 ], [ -77.039668, 38.975588 ], [ -77.039652, 38.975617 ], [ -77.039641, 38.975650 ], [ -77.039641, 38.975683 ], [ -77.039641, 38.975800 ], [ -77.039647, 38.975838 ], [ -77.039652, 38.975875 ], [ -77.039663, 38.975913 ], [ -77.039673, 38.975950 ], [ -77.039689, 38.976030 ], [ -77.039706, 38.976071 ], [ -77.039716, 38.976109 ], [ -77.039738, 38.976146 ], [ -77.039775, 38.976221 ], [ -77.039818, 38.976288 ], [ -77.039824, 38.976322 ], [ -77.039840, 38.976351 ], [ -77.039861, 38.976376 ], [ -77.039893, 38.976392 ], [ -77.039947, 38.976426 ], [ -77.039974, 38.976451 ], [ -77.039995, 38.976476 ], [ -77.040038, 38.976488 ], [ -77.040070, 38.976505 ], [ -77.040102, 38.976522 ], [ -77.040183, 38.976568 ], [ -77.040274, 38.976609 ], [ -77.040317, 38.976634 ], [ -77.040355, 38.976663 ], [ -77.040473, 38.976739 ], [ -77.040499, 38.976764 ], [ -77.040532, 38.976784 ], [ -77.040553, 38.976801 ], [ -77.040585, 38.976822 ], [ -77.040650, 38.976839 ], [ -77.040698, 38.976834 ], [ -77.040746, 38.976839 ], [ -77.040794, 38.976868 ], [ -77.040827, 38.976905 ], [ -77.040880, 38.976935 ], [ -77.040913, 38.976947 ], [ -77.040945, 38.976955 ], [ -77.041020, 38.976964 ], [ -77.041057, 38.976964 ], [ -77.041132, 38.976976 ], [ -77.041197, 38.977001 ], [ -77.041229, 38.977018 ], [ -77.041261, 38.977039 ], [ -77.041288, 38.977055 ], [ -77.041320, 38.977080 ], [ -77.041352, 38.977101 ], [ -77.041374, 38.977126 ], [ -77.041390, 38.977172 ], [ -77.041427, 38.977206 ], [ -77.041492, 38.977247 ], [ -77.041519, 38.977268 ], [ -77.041567, 38.977306 ], [ -77.041621, 38.977343 ], [ -77.041653, 38.977368 ], [ -77.041680, 38.977393 ], [ -77.041717, 38.977414 ], [ -77.041787, 38.977452 ], [ -77.041857, 38.977489 ], [ -77.041894, 38.977502 ], [ -77.041964, 38.977523 ], [ -77.042001, 38.977535 ], [ -77.042028, 38.977552 ], [ -77.042055, 38.977573 ], [ -77.042077, 38.977593 ], [ -77.042109, 38.977614 ], [ -77.042141, 38.977635 ], [ -77.042162, 38.977656 ], [ -77.042232, 38.977714 ], [ -77.042259, 38.977735 ], [ -77.042302, 38.977764 ], [ -77.042393, 38.977810 ], [ -77.042479, 38.977865 ], [ -77.042516, 38.977881 ], [ -77.042549, 38.977902 ], [ -77.042618, 38.977935 ], [ -77.042656, 38.977948 ], [ -77.042688, 38.977965 ], [ -77.042742, 38.977990 ], [ -77.042785, 38.978006 ], [ -77.042871, 38.978040 ], [ -77.042913, 38.978052 ], [ -77.042978, 38.978069 ], [ -77.043021, 38.978073 ], [ -77.043117, 38.978094 ], [ -77.043176, 38.978106 ], [ -77.043225, 38.978123 ], [ -77.043332, 38.978144 ], [ -77.043380, 38.978169 ], [ -77.043439, 38.978177 ], [ -77.043477, 38.978186 ], [ -77.043509, 38.978194 ], [ -77.043546, 38.978206 ], [ -77.043584, 38.978223 ], [ -77.043622, 38.978236 ], [ -77.043697, 38.978252 ], [ -77.043750, 38.978273 ], [ -77.043799, 38.978302 ], [ -77.043815, 38.978348 ], [ -77.043815, 38.978377 ], [ -77.043815, 38.978411 ], [ -77.043820, 38.978465 ], [ -77.043825, 38.978494 ], [ -77.043847, 38.978561 ], [ -77.043858, 38.978598 ], [ -77.043868, 38.978653 ], [ -77.043874, 38.978690 ], [ -77.043890, 38.978724 ], [ -77.043900, 38.978753 ], [ -77.043911, 38.978790 ], [ -77.043911, 38.978824 ], [ -77.043906, 38.978861 ], [ -77.043900, 38.978932 ], [ -77.043911, 38.978965 ], [ -77.043927, 38.979003 ], [ -77.043943, 38.979036 ], [ -77.043965, 38.979074 ], [ -77.043976, 38.979111 ], [ -77.043981, 38.979153 ], [ -77.044024, 38.979278 ], [ -77.044040, 38.979320 ], [ -77.044078, 38.979399 ], [ -77.044094, 38.979441 ], [ -77.044110, 38.979478 ], [ -77.044126, 38.979520 ], [ -77.044147, 38.979562 ], [ -77.044174, 38.979599 ], [ -77.044196, 38.979637 ], [ -77.044228, 38.979670 ], [ -77.044265, 38.979699 ], [ -77.044297, 38.979716 ], [ -77.044330, 38.979737 ], [ -77.044356, 38.979758 ], [ -77.044383, 38.979787 ], [ -77.044415, 38.979812 ], [ -77.044453, 38.979841 ], [ -77.044523, 38.979891 ], [ -77.044550, 38.979920 ], [ -77.044576, 38.979950 ], [ -77.044598, 38.979983 ], [ -77.044598, 38.980033 ], [ -77.044587, 38.980071 ], [ -77.044555, 38.980116 ], [ -77.044517, 38.980146 ], [ -77.044485, 38.980175 ], [ -77.044448, 38.980204 ], [ -77.044367, 38.980267 ], [ -77.044319, 38.980296 ], [ -77.044271, 38.980321 ], [ -77.044222, 38.980337 ], [ -77.044174, 38.980358 ], [ -77.044035, 38.980442 ], [ -77.043986, 38.980463 ], [ -77.043943, 38.980488 ], [ -77.043879, 38.980546 ], [ -77.043820, 38.980579 ], [ -77.043777, 38.980596 ], [ -77.043734, 38.980608 ], [ -77.043686, 38.980629 ], [ -77.043638, 38.980642 ], [ -77.043600, 38.980654 ], [ -77.043557, 38.980663 ], [ -77.043509, 38.980650 ], [ -77.043541, 38.980638 ], [ -77.043557, 38.980604 ], [ -77.043530, 38.980579 ], [ -77.043509, 38.980554 ], [ -77.043471, 38.980542 ], [ -77.043418, 38.980533 ], [ -77.043375, 38.980533 ], [ -77.043332, 38.980538 ], [ -77.043278, 38.980529 ], [ -77.043251, 38.980504 ], [ -77.043230, 38.980479 ], [ -77.043192, 38.980475 ], [ -77.043149, 38.980458 ], [ -77.043101, 38.980437 ], [ -77.043058, 38.980404 ], [ -77.043015, 38.980375 ], [ -77.042967, 38.980354 ], [ -77.042887, 38.980308 ], [ -77.042785, 38.980283 ], [ -77.042726, 38.980250 ], [ -77.042683, 38.980237 ], [ -77.042618, 38.980212 ], [ -77.042586, 38.980162 ], [ -77.042554, 38.980154 ], [ -77.042522, 38.980137 ], [ -77.042500, 38.980112 ], [ -77.042474, 38.980062 ], [ -77.042441, 38.980037 ], [ -77.042420, 38.980012 ], [ -77.042388, 38.979995 ], [ -77.042356, 38.979987 ], [ -77.042318, 38.979987 ], [ -77.042275, 38.979995 ], [ -77.042205, 38.980004 ], [ -77.042109, 38.980012 ], [ -77.042055, 38.980020 ], [ -77.041948, 38.980033 ], [ -77.041905, 38.980041 ], [ -77.041857, 38.980058 ], [ -77.041824, 38.980079 ], [ -77.041814, 38.980104 ], [ -77.041819, 38.980162 ], [ -77.041830, 38.980187 ], [ -77.041824, 38.980221 ], [ -77.041819, 38.980250 ], [ -77.041819, 38.980283 ], [ -77.041814, 38.980317 ], [ -77.041798, 38.980367 ], [ -77.041771, 38.980400 ], [ -77.041723, 38.980458 ], [ -77.041690, 38.980483 ], [ -77.041658, 38.980496 ], [ -77.041637, 38.980496 ], [ -77.041599, 38.980508 ], [ -77.041465, 38.980513 ], [ -77.041460, 38.980500 ], [ -77.041406, 38.980500 ], [ -77.041250, 38.980521 ], [ -77.041197, 38.980525 ], [ -77.041132, 38.980567 ], [ -77.041084, 38.980596 ], [ -77.040998, 38.980654 ], [ -77.040945, 38.980684 ], [ -77.040896, 38.980709 ], [ -77.040843, 38.980734 ], [ -77.040392, 38.981034 ], [ -77.040355, 38.981259 ], [ -77.040038, 38.981501 ], [ -77.039942, 38.981647 ], [ -77.039856, 38.982164 ], [ -77.039958, 38.982468 ], [ -77.040145, 38.982643 ], [ -77.040333, 38.982819 ], [ -77.040580, 38.982910 ], [ -77.040784, 38.983123 ], [ -77.040886, 38.983177 ], [ -77.041084, 38.983231 ], [ -77.041605, 38.983215 ], [ -77.041712, 38.983306 ], [ -77.041728, 38.983423 ], [ -77.042377, 38.983978 ], [ -77.042854, 38.984007 ], [ -77.043031, 38.984020 ], [ -77.043273, 38.984036 ], [ -77.043391, 38.984040 ], [ -77.043563, 38.983990 ], [ -77.043648, 38.983953 ], [ -77.043841, 38.983928 ], [ -77.044340, 38.983869 ], [ -77.044979, 38.983911 ], [ -77.045757, 38.984153 ], [ -77.046132, 38.984453 ], [ -77.047586, 38.985362 ], [ -77.048986, 38.985633 ], [ -77.050037, 38.986067 ], [ -77.051765, 38.986951 ], [ -77.051620, 38.987147 ], [ -77.051765, 38.987243 ], [ -77.050450, 38.988173 ], [ -77.049614, 38.988823 ], [ -77.047130, 38.990824 ], [ -77.046706, 38.991166 ], [ -77.046508, 38.991325 ], [ -77.046078, 38.991621 ], [ -77.045435, 38.992067 ], [ -77.044861, 38.992509 ], [ -77.044201, 38.993018 ], [ -77.043917, 38.993239 ], [ -77.042554, 38.994289 ], [ -77.042329, 38.994477 ], [ -77.041846, 38.994931 ], [ -77.041733, 38.995031 ], [ -77.041374, 38.995361 ], [ -77.040880, 38.995844 ], [ -77.037941, 38.993564 ], [ -77.037522, 38.993255 ], [ -77.037190, 38.992993 ], [ -77.036825, 38.992705 ], [ -77.036498, 38.992421 ], [ -77.036272, 38.992209 ], [ -77.036219, 38.992159 ], [ -77.036133, 38.992063 ], [ -77.035677, 38.991704 ], [ -77.034979, 38.991091 ], [ -77.034078, 38.990391 ], [ -77.033526, 38.989961 ], [ -77.032882, 38.989457 ], [ -77.032828, 38.989415 ], [ -77.032362, 38.989044 ], [ -77.031117, 38.988093 ], [ -77.031069, 38.988056 ], [ -77.029631, 38.986926 ], [ -77.029604, 38.986905 ], [ -77.028408, 38.985967 ], [ -77.028102, 38.985721 ], [ -77.026992, 38.984870 ], [ -77.026868, 38.984774 ], [ -77.026595, 38.984512 ], [ -77.026579, 38.983832 ], [ -77.026568, 38.983678 ], [ -77.026557, 38.982798 ], [ -77.026552, 38.982727 ], [ -77.026541, 38.982051 ], [ -77.026525, 38.981442 ], [ -77.026488, 38.980358 ], [ -77.026477, 38.979987 ], [ -77.026455, 38.979391 ], [ -77.026423, 38.978340 ], [ -77.026423, 38.978302 ], [ -77.026423, 38.978231 ], [ -77.026423, 38.978136 ], [ -77.026429, 38.978052 ], [ -77.026429, 38.977981 ], [ -77.027872, 38.977985 ], [ -77.027957, 38.977981 ], [ -77.028633, 38.977981 ], [ -77.029679, 38.977985 ], [ -77.029781, 38.977985 ], [ -77.030130, 38.977985 ], [ -77.031069, 38.977990 ], [ -77.031841, 38.977990 ], [ -77.032040, 38.977985 ], [ -77.032512, 38.977990 ], [ -77.032828, 38.977985 ], [ -77.032855, 38.977990 ], [ -77.032887, 38.977994 ], [ -77.032914, 38.978002 ], [ -77.032941, 38.978010 ], [ -77.032962, 38.978023 ], [ -77.033177, 38.977823 ], [ -77.033408, 38.977606 ], [ -77.033510, 38.977506 ], [ -77.033756, 38.977272 ], [ -77.034062, 38.976985 ], [ -77.034116, 38.976930 ], [ -77.034443, 38.976618 ], [ -77.034679, 38.976401 ], [ -77.034953, 38.976142 ], [ -77.035253, 38.975850 ], [ -77.035543, 38.975579 ], [ -77.035924, 38.975225 ], [ -77.036160, 38.975004 ], [ -77.036181, 38.974987 ], [ -77.036262, 38.974933 ], [ -77.036363, 38.974866 ], [ -77.036363, 38.973123 ], [ -77.036369, 38.972268 ], [ -77.036444, 38.972259 ], [ -77.036471, 38.972255 ], [ -77.036541, 38.972230 ], [ -77.036857, 38.972105 ], [ -77.036916, 38.972080 ], [ -77.036943, 38.972068 ], [ -77.037045, 38.972026 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001500", "GEOID": "11001001500", "NAME": "15", "NAMELSAD": "Census Tract 15", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684714, "AWATER": 39895, "INTPTLAT": "+38.9741576", "INTPTLON": "-077.0558797" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.039958, 38.982468 ], [ -77.039856, 38.982164 ], [ -77.039942, 38.981647 ], [ -77.040038, 38.981501 ], [ -77.040355, 38.981259 ], [ -77.040392, 38.981034 ], [ -77.040843, 38.980734 ], [ -77.040896, 38.980709 ], [ -77.040945, 38.980684 ], [ -77.040998, 38.980654 ], [ -77.041084, 38.980596 ], [ -77.041132, 38.980567 ], [ -77.041197, 38.980525 ], [ -77.041250, 38.980521 ], [ -77.041406, 38.980500 ], [ -77.041460, 38.980500 ], [ -77.041465, 38.980513 ], [ -77.041599, 38.980508 ], [ -77.041637, 38.980496 ], [ -77.041658, 38.980496 ], [ -77.041690, 38.980483 ], [ -77.041723, 38.980458 ], [ -77.041771, 38.980400 ], [ -77.041798, 38.980367 ], [ -77.041814, 38.980317 ], [ -77.041819, 38.980283 ], [ -77.041819, 38.980250 ], [ -77.041824, 38.980221 ], [ -77.041830, 38.980187 ], [ -77.041819, 38.980162 ], [ -77.041814, 38.980104 ], [ -77.041824, 38.980079 ], [ -77.041857, 38.980058 ], [ -77.041905, 38.980041 ], [ -77.041948, 38.980033 ], [ -77.042055, 38.980020 ], [ -77.042109, 38.980012 ], [ -77.042205, 38.980004 ], [ -77.042275, 38.979995 ], [ -77.042318, 38.979987 ], [ -77.042356, 38.979987 ], [ -77.042388, 38.979995 ], [ -77.042420, 38.980012 ], [ -77.042441, 38.980037 ], [ -77.042474, 38.980062 ], [ -77.042500, 38.980112 ], [ -77.042522, 38.980137 ], [ -77.042554, 38.980154 ], [ -77.042586, 38.980162 ], [ -77.042618, 38.980212 ], [ -77.042683, 38.980237 ], [ -77.042726, 38.980250 ], [ -77.042785, 38.980283 ], [ -77.042887, 38.980308 ], [ -77.042967, 38.980354 ], [ -77.043015, 38.980375 ], [ -77.043058, 38.980404 ], [ -77.043101, 38.980437 ], [ -77.043149, 38.980458 ], [ -77.043192, 38.980475 ], [ -77.043230, 38.980479 ], [ -77.043251, 38.980504 ], [ -77.043278, 38.980529 ], [ -77.043332, 38.980538 ], [ -77.043375, 38.980533 ], [ -77.043418, 38.980533 ], [ -77.043471, 38.980542 ], [ -77.043509, 38.980554 ], [ -77.043530, 38.980579 ], [ -77.043557, 38.980604 ], [ -77.043541, 38.980638 ], [ -77.043509, 38.980650 ], [ -77.043557, 38.980663 ], [ -77.043600, 38.980654 ], [ -77.043638, 38.980642 ], [ -77.043686, 38.980629 ], [ -77.043734, 38.980608 ], [ -77.043777, 38.980596 ], [ -77.043820, 38.980579 ], [ -77.043879, 38.980546 ], [ -77.043943, 38.980488 ], [ -77.043986, 38.980463 ], [ -77.044035, 38.980442 ], [ -77.044174, 38.980358 ], [ -77.044222, 38.980337 ], [ -77.044271, 38.980321 ], [ -77.044319, 38.980296 ], [ -77.044367, 38.980267 ], [ -77.044448, 38.980204 ], [ -77.044485, 38.980175 ], [ -77.044517, 38.980146 ], [ -77.044555, 38.980116 ], [ -77.044587, 38.980071 ], [ -77.044598, 38.980033 ], [ -77.044598, 38.979983 ], [ -77.044576, 38.979950 ], [ -77.044550, 38.979920 ], [ -77.044523, 38.979891 ], [ -77.044453, 38.979841 ], [ -77.044415, 38.979812 ], [ -77.044383, 38.979787 ], [ -77.044356, 38.979758 ], [ -77.044330, 38.979737 ], [ -77.044297, 38.979716 ], [ -77.044265, 38.979699 ], [ -77.044228, 38.979670 ], [ -77.044196, 38.979637 ], [ -77.044174, 38.979599 ], [ -77.044147, 38.979562 ], [ -77.044126, 38.979520 ], [ -77.044110, 38.979478 ], [ -77.044094, 38.979441 ], [ -77.044078, 38.979399 ], [ -77.044040, 38.979320 ], [ -77.044024, 38.979278 ], [ -77.043981, 38.979153 ], [ -77.043976, 38.979111 ], [ -77.043965, 38.979074 ], [ -77.043943, 38.979036 ], [ -77.043927, 38.979003 ], [ -77.043911, 38.978965 ], [ -77.043900, 38.978932 ], [ -77.043906, 38.978861 ], [ -77.043911, 38.978824 ], [ -77.043911, 38.978790 ], [ -77.043900, 38.978753 ], [ -77.043890, 38.978724 ], [ -77.043874, 38.978690 ], [ -77.043868, 38.978653 ], [ -77.043858, 38.978598 ], [ -77.043847, 38.978561 ], [ -77.043825, 38.978494 ], [ -77.043820, 38.978465 ], [ -77.043815, 38.978411 ], [ -77.043815, 38.978377 ], [ -77.043815, 38.978348 ], [ -77.043799, 38.978302 ], [ -77.043750, 38.978273 ], [ -77.043697, 38.978252 ], [ -77.043622, 38.978236 ], [ -77.043584, 38.978223 ], [ -77.043546, 38.978206 ], [ -77.043509, 38.978194 ], [ -77.043477, 38.978186 ], [ -77.043439, 38.978177 ], [ -77.043380, 38.978169 ], [ -77.043332, 38.978144 ], [ -77.043225, 38.978123 ], [ -77.043176, 38.978106 ], [ -77.043117, 38.978094 ], [ -77.043021, 38.978073 ], [ -77.042978, 38.978069 ], [ -77.042913, 38.978052 ], [ -77.042871, 38.978040 ], [ -77.042785, 38.978006 ], [ -77.042742, 38.977990 ], [ -77.042688, 38.977965 ], [ -77.042656, 38.977948 ], [ -77.042618, 38.977935 ], [ -77.042549, 38.977902 ], [ -77.042516, 38.977881 ], [ -77.042479, 38.977865 ], [ -77.042393, 38.977810 ], [ -77.042302, 38.977764 ], [ -77.042259, 38.977735 ], [ -77.042232, 38.977714 ], [ -77.042162, 38.977656 ], [ -77.042141, 38.977635 ], [ -77.042109, 38.977614 ], [ -77.042077, 38.977593 ], [ -77.042055, 38.977573 ], [ -77.042028, 38.977552 ], [ -77.042001, 38.977535 ], [ -77.041964, 38.977523 ], [ -77.041894, 38.977502 ], [ -77.041857, 38.977489 ], [ -77.041787, 38.977452 ], [ -77.041717, 38.977414 ], [ -77.041680, 38.977393 ], [ -77.041653, 38.977368 ], [ -77.041621, 38.977343 ], [ -77.041567, 38.977306 ], [ -77.041519, 38.977268 ], [ -77.041492, 38.977247 ], [ -77.041427, 38.977206 ], [ -77.041390, 38.977172 ], [ -77.041374, 38.977126 ], [ -77.041352, 38.977101 ], [ -77.041320, 38.977080 ], [ -77.041288, 38.977055 ], [ -77.041261, 38.977039 ], [ -77.041229, 38.977018 ], [ -77.041197, 38.977001 ], [ -77.041132, 38.976976 ], [ -77.041057, 38.976964 ], [ -77.041020, 38.976964 ], [ -77.040945, 38.976955 ], [ -77.040913, 38.976947 ], [ -77.040880, 38.976935 ], [ -77.040827, 38.976905 ], [ -77.040794, 38.976868 ], [ -77.040746, 38.976839 ], [ -77.040698, 38.976834 ], [ -77.040650, 38.976839 ], [ -77.040585, 38.976822 ], [ -77.040553, 38.976801 ], [ -77.040532, 38.976784 ], [ -77.040499, 38.976764 ], [ -77.040473, 38.976739 ], [ -77.040355, 38.976663 ], [ -77.040317, 38.976634 ], [ -77.040274, 38.976609 ], [ -77.040183, 38.976568 ], [ -77.040102, 38.976522 ], [ -77.040070, 38.976505 ], [ -77.040038, 38.976488 ], [ -77.039995, 38.976476 ], [ -77.039974, 38.976451 ], [ -77.039947, 38.976426 ], [ -77.039893, 38.976392 ], [ -77.039861, 38.976376 ], [ -77.039840, 38.976351 ], [ -77.039824, 38.976322 ], [ -77.039818, 38.976288 ], [ -77.039775, 38.976221 ], [ -77.039738, 38.976146 ], [ -77.039716, 38.976109 ], [ -77.039706, 38.976071 ], [ -77.039689, 38.976030 ], [ -77.039673, 38.975950 ], [ -77.039663, 38.975913 ], [ -77.039652, 38.975875 ], [ -77.039647, 38.975838 ], [ -77.039641, 38.975800 ], [ -77.039641, 38.975683 ], [ -77.039641, 38.975650 ], [ -77.039652, 38.975617 ], [ -77.039668, 38.975588 ], [ -77.039673, 38.975542 ], [ -77.039679, 38.975512 ], [ -77.039700, 38.975450 ], [ -77.039716, 38.975421 ], [ -77.039722, 38.975387 ], [ -77.039722, 38.975358 ], [ -77.039722, 38.975325 ], [ -77.039727, 38.975287 ], [ -77.039738, 38.975258 ], [ -77.039770, 38.975221 ], [ -77.039818, 38.975158 ], [ -77.039850, 38.975108 ], [ -77.039872, 38.975083 ], [ -77.039893, 38.975054 ], [ -77.039920, 38.975020 ], [ -77.039947, 38.974991 ], [ -77.039974, 38.974954 ], [ -77.039984, 38.974916 ], [ -77.039984, 38.974879 ], [ -77.039963, 38.974845 ], [ -77.039931, 38.974812 ], [ -77.039899, 38.974783 ], [ -77.039840, 38.974724 ], [ -77.039791, 38.974691 ], [ -77.039759, 38.974670 ], [ -77.039722, 38.974649 ], [ -77.039695, 38.974624 ], [ -77.039663, 38.974599 ], [ -77.039636, 38.974549 ], [ -77.039625, 38.974516 ], [ -77.039614, 38.974482 ], [ -77.039593, 38.974457 ], [ -77.039566, 38.974436 ], [ -77.039512, 38.974407 ], [ -77.039486, 38.974382 ], [ -77.039464, 38.974361 ], [ -77.039448, 38.974332 ], [ -77.039437, 38.974299 ], [ -77.039427, 38.974265 ], [ -77.039421, 38.974232 ], [ -77.039405, 38.974157 ], [ -77.039400, 38.974111 ], [ -77.039394, 38.974069 ], [ -77.039394, 38.974028 ], [ -77.039405, 38.973986 ], [ -77.039421, 38.973944 ], [ -77.039459, 38.973869 ], [ -77.039491, 38.973811 ], [ -77.039507, 38.973765 ], [ -77.039545, 38.973728 ], [ -77.039582, 38.973673 ], [ -77.039604, 38.973644 ], [ -77.039625, 38.973611 ], [ -77.039657, 38.973544 ], [ -77.039673, 38.973511 ], [ -77.039684, 38.973473 ], [ -77.039695, 38.973436 ], [ -77.039700, 38.973398 ], [ -77.039722, 38.973310 ], [ -77.039738, 38.973252 ], [ -77.039743, 38.973219 ], [ -77.039748, 38.973181 ], [ -77.039754, 38.973135 ], [ -77.039765, 38.973098 ], [ -77.039775, 38.973056 ], [ -77.039797, 38.973019 ], [ -77.039813, 38.972981 ], [ -77.039845, 38.972914 ], [ -77.039888, 38.972835 ], [ -77.040065, 38.972835 ], [ -77.040092, 38.972835 ], [ -77.040113, 38.972777 ], [ -77.040124, 38.972756 ], [ -77.040135, 38.972727 ], [ -77.040140, 38.972697 ], [ -77.040151, 38.972668 ], [ -77.040167, 38.972614 ], [ -77.040188, 38.972543 ], [ -77.040194, 38.972526 ], [ -77.040199, 38.972493 ], [ -77.040199, 38.972472 ], [ -77.040204, 38.972439 ], [ -77.040210, 38.972360 ], [ -77.040199, 38.972339 ], [ -77.040199, 38.972322 ], [ -77.040199, 38.972301 ], [ -77.040204, 38.972285 ], [ -77.040199, 38.972209 ], [ -77.040199, 38.972193 ], [ -77.040194, 38.972155 ], [ -77.040194, 38.972122 ], [ -77.040204, 38.972097 ], [ -77.040204, 38.972072 ], [ -77.040204, 38.972038 ], [ -77.040204, 38.972018 ], [ -77.040199, 38.971988 ], [ -77.040204, 38.971972 ], [ -77.040204, 38.971943 ], [ -77.040199, 38.971917 ], [ -77.040188, 38.971892 ], [ -77.040167, 38.971876 ], [ -77.040151, 38.971859 ], [ -77.040178, 38.971842 ], [ -77.040215, 38.971830 ], [ -77.040247, 38.971822 ], [ -77.040274, 38.971822 ], [ -77.040339, 38.971805 ], [ -77.040360, 38.971792 ], [ -77.040414, 38.971772 ], [ -77.040440, 38.971763 ], [ -77.040462, 38.971755 ], [ -77.040494, 38.971747 ], [ -77.040542, 38.971726 ], [ -77.040585, 38.971701 ], [ -77.040607, 38.971688 ], [ -77.040671, 38.971642 ], [ -77.040735, 38.971588 ], [ -77.040752, 38.971571 ], [ -77.040794, 38.971530 ], [ -77.040848, 38.971484 ], [ -77.040875, 38.971459 ], [ -77.040902, 38.971430 ], [ -77.040955, 38.971371 ], [ -77.040977, 38.971342 ], [ -77.041004, 38.971313 ], [ -77.041020, 38.971296 ], [ -77.041031, 38.971284 ], [ -77.041063, 38.971254 ], [ -77.041095, 38.971234 ], [ -77.041181, 38.971200 ], [ -77.041234, 38.971188 ], [ -77.041283, 38.971167 ], [ -77.041304, 38.971158 ], [ -77.041385, 38.971142 ], [ -77.041411, 38.971138 ], [ -77.041444, 38.971133 ], [ -77.041588, 38.971092 ], [ -77.041642, 38.971075 ], [ -77.041674, 38.971067 ], [ -77.041733, 38.971054 ], [ -77.041830, 38.971042 ], [ -77.041883, 38.971033 ], [ -77.041905, 38.971029 ], [ -77.041932, 38.971021 ], [ -77.041964, 38.971008 ], [ -77.042023, 38.971004 ], [ -77.042077, 38.971004 ], [ -77.042173, 38.971000 ], [ -77.042200, 38.971004 ], [ -77.042264, 38.971008 ], [ -77.042286, 38.971008 ], [ -77.042323, 38.971017 ], [ -77.042356, 38.971021 ], [ -77.042409, 38.971042 ], [ -77.042425, 38.971058 ], [ -77.042452, 38.971100 ], [ -77.042463, 38.971129 ], [ -77.042479, 38.971163 ], [ -77.042500, 38.971179 ], [ -77.042527, 38.971192 ], [ -77.042554, 38.971208 ], [ -77.042586, 38.971225 ], [ -77.042613, 38.971238 ], [ -77.042640, 38.971246 ], [ -77.042683, 38.971250 ], [ -77.042726, 38.971259 ], [ -77.042769, 38.971267 ], [ -77.042817, 38.971271 ], [ -77.042860, 38.971279 ], [ -77.042903, 38.971288 ], [ -77.043074, 38.971309 ], [ -77.043128, 38.971313 ], [ -77.043241, 38.971317 ], [ -77.043294, 38.971317 ], [ -77.043364, 38.971309 ], [ -77.043391, 38.971309 ], [ -77.043412, 38.971309 ], [ -77.043434, 38.971304 ], [ -77.043482, 38.971300 ], [ -77.043525, 38.971288 ], [ -77.043568, 38.971275 ], [ -77.043611, 38.971259 ], [ -77.043670, 38.971229 ], [ -77.043691, 38.971221 ], [ -77.043718, 38.971213 ], [ -77.043815, 38.971196 ], [ -77.043841, 38.971196 ], [ -77.043858, 38.971213 ], [ -77.043917, 38.971188 ], [ -77.043938, 38.971171 ], [ -77.044029, 38.971150 ], [ -77.044078, 38.971133 ], [ -77.044120, 38.971125 ], [ -77.044196, 38.971100 ], [ -77.044297, 38.971063 ], [ -77.044319, 38.971050 ], [ -77.044383, 38.971012 ], [ -77.044405, 38.970996 ], [ -77.044421, 38.970979 ], [ -77.044448, 38.970954 ], [ -77.044496, 38.970908 ], [ -77.044512, 38.970896 ], [ -77.044652, 38.970766 ], [ -77.044668, 38.970750 ], [ -77.044727, 38.970666 ], [ -77.044737, 38.970645 ], [ -77.044748, 38.970625 ], [ -77.044759, 38.970604 ], [ -77.044770, 38.970583 ], [ -77.044780, 38.970566 ], [ -77.044791, 38.970541 ], [ -77.044807, 38.970487 ], [ -77.044812, 38.970466 ], [ -77.044812, 38.970445 ], [ -77.044812, 38.970429 ], [ -77.044818, 38.970391 ], [ -77.044823, 38.970374 ], [ -77.044845, 38.970345 ], [ -77.044861, 38.970316 ], [ -77.044861, 38.970295 ], [ -77.044866, 38.970274 ], [ -77.044871, 38.970233 ], [ -77.044877, 38.970216 ], [ -77.044888, 38.970170 ], [ -77.044898, 38.970149 ], [ -77.044914, 38.970128 ], [ -77.044920, 38.970112 ], [ -77.044941, 38.970062 ], [ -77.044957, 38.970003 ], [ -77.044963, 38.969982 ], [ -77.044973, 38.969966 ], [ -77.044984, 38.969945 ], [ -77.045006, 38.969903 ], [ -77.045086, 38.969778 ], [ -77.045102, 38.969757 ], [ -77.045113, 38.969736 ], [ -77.045118, 38.969720 ], [ -77.045118, 38.969682 ], [ -77.045118, 38.969661 ], [ -77.045124, 38.969636 ], [ -77.045129, 38.969615 ], [ -77.045129, 38.969574 ], [ -77.045134, 38.969549 ], [ -77.045140, 38.969528 ], [ -77.045145, 38.969486 ], [ -77.045145, 38.969465 ], [ -77.045134, 38.969440 ], [ -77.045150, 38.969411 ], [ -77.045156, 38.969390 ], [ -77.045156, 38.969369 ], [ -77.045156, 38.969277 ], [ -77.045156, 38.969236 ], [ -77.045161, 38.969211 ], [ -77.045172, 38.969165 ], [ -77.045183, 38.969123 ], [ -77.045188, 38.969081 ], [ -77.045204, 38.969052 ], [ -77.045226, 38.969023 ], [ -77.045338, 38.968960 ], [ -77.045424, 38.968902 ], [ -77.045558, 38.968815 ], [ -77.045612, 38.968789 ], [ -77.045633, 38.968777 ], [ -77.045676, 38.968752 ], [ -77.045698, 38.968739 ], [ -77.045746, 38.968714 ], [ -77.045799, 38.968677 ], [ -77.045842, 38.968644 ], [ -77.045869, 38.968614 ], [ -77.045885, 38.968598 ], [ -77.045901, 38.968564 ], [ -77.045918, 38.968531 ], [ -77.045944, 38.968493 ], [ -77.045950, 38.968477 ], [ -77.045955, 38.968443 ], [ -77.045971, 38.968414 ], [ -77.045993, 38.968385 ], [ -77.046019, 38.968368 ], [ -77.046036, 38.968347 ], [ -77.046068, 38.968327 ], [ -77.046089, 38.968335 ], [ -77.046105, 38.968352 ], [ -77.046116, 38.968339 ], [ -77.046116, 38.968314 ], [ -77.046116, 38.968289 ], [ -77.046132, 38.968276 ], [ -77.046180, 38.968256 ], [ -77.046202, 38.968247 ], [ -77.046218, 38.968235 ], [ -77.046223, 38.968214 ], [ -77.046229, 38.968193 ], [ -77.046250, 38.968172 ], [ -77.046272, 38.968151 ], [ -77.046331, 38.968110 ], [ -77.046363, 38.968093 ], [ -77.046395, 38.968072 ], [ -77.046422, 38.968055 ], [ -77.046449, 38.968030 ], [ -77.046502, 38.967980 ], [ -77.046518, 38.967968 ], [ -77.046551, 38.967934 ], [ -77.046567, 38.967918 ], [ -77.046583, 38.967901 ], [ -77.046620, 38.967859 ], [ -77.046674, 38.967809 ], [ -77.046701, 38.967768 ], [ -77.046711, 38.967751 ], [ -77.046728, 38.967705 ], [ -77.046733, 38.967684 ], [ -77.046754, 38.967638 ], [ -77.046770, 38.967576 ], [ -77.046781, 38.967555 ], [ -77.046792, 38.967513 ], [ -77.046803, 38.967492 ], [ -77.046808, 38.967472 ], [ -77.046819, 38.967430 ], [ -77.046824, 38.967409 ], [ -77.046851, 38.967346 ], [ -77.046872, 38.967296 ], [ -77.046878, 38.967275 ], [ -77.046883, 38.967238 ], [ -77.046888, 38.967217 ], [ -77.046905, 38.967171 ], [ -77.046910, 38.967138 ], [ -77.046910, 38.967117 ], [ -77.046910, 38.967100 ], [ -77.046910, 38.967067 ], [ -77.046905, 38.967034 ], [ -77.046905, 38.967017 ], [ -77.046905, 38.966984 ], [ -77.046915, 38.966958 ], [ -77.046910, 38.966925 ], [ -77.046899, 38.966900 ], [ -77.046888, 38.966879 ], [ -77.046905, 38.966858 ], [ -77.046910, 38.966842 ], [ -77.046910, 38.966804 ], [ -77.046894, 38.966775 ], [ -77.046878, 38.966742 ], [ -77.046878, 38.966692 ], [ -77.046888, 38.966637 ], [ -77.046888, 38.966616 ], [ -77.046894, 38.966596 ], [ -77.046905, 38.966546 ], [ -77.046910, 38.966500 ], [ -77.046921, 38.966454 ], [ -77.046926, 38.966429 ], [ -77.046931, 38.966408 ], [ -77.046942, 38.966387 ], [ -77.046958, 38.966345 ], [ -77.046969, 38.966329 ], [ -77.047039, 38.966183 ], [ -77.047049, 38.966166 ], [ -77.047071, 38.966124 ], [ -77.047082, 38.966103 ], [ -77.047098, 38.966087 ], [ -77.047125, 38.966049 ], [ -77.047141, 38.966008 ], [ -77.047146, 38.965991 ], [ -77.047173, 38.965953 ], [ -77.047194, 38.965899 ], [ -77.047205, 38.965882 ], [ -77.047221, 38.965837 ], [ -77.047226, 38.965820 ], [ -77.047232, 38.965803 ], [ -77.047248, 38.965757 ], [ -77.047259, 38.965741 ], [ -77.047280, 38.965711 ], [ -77.047291, 38.965695 ], [ -77.047312, 38.965670 ], [ -77.047318, 38.965649 ], [ -77.047334, 38.965628 ], [ -77.047350, 38.965595 ], [ -77.047361, 38.965557 ], [ -77.047371, 38.965540 ], [ -77.047393, 38.965511 ], [ -77.047409, 38.965478 ], [ -77.047446, 38.965403 ], [ -77.047468, 38.965349 ], [ -77.047489, 38.965286 ], [ -77.047495, 38.965257 ], [ -77.047495, 38.965244 ], [ -77.047505, 38.965186 ], [ -77.047516, 38.965148 ], [ -77.047538, 38.965123 ], [ -77.047564, 38.965107 ], [ -77.047580, 38.965086 ], [ -77.047591, 38.965065 ], [ -77.047602, 38.965044 ], [ -77.047602, 38.965027 ], [ -77.047602, 38.964998 ], [ -77.047613, 38.964973 ], [ -77.047618, 38.964944 ], [ -77.047623, 38.964919 ], [ -77.047623, 38.964898 ], [ -77.047623, 38.964877 ], [ -77.047623, 38.964852 ], [ -77.047591, 38.964852 ], [ -77.047618, 38.964785 ], [ -77.047629, 38.964769 ], [ -77.047623, 38.964748 ], [ -77.047602, 38.964735 ], [ -77.047591, 38.964719 ], [ -77.047564, 38.964685 ], [ -77.047554, 38.964656 ], [ -77.047538, 38.964631 ], [ -77.047516, 38.964610 ], [ -77.047495, 38.964585 ], [ -77.047484, 38.964552 ], [ -77.047468, 38.964527 ], [ -77.047446, 38.964493 ], [ -77.047398, 38.964435 ], [ -77.047387, 38.964414 ], [ -77.047350, 38.964381 ], [ -77.047339, 38.964360 ], [ -77.047318, 38.964322 ], [ -77.047307, 38.964289 ], [ -77.047291, 38.964268 ], [ -77.047275, 38.964243 ], [ -77.047253, 38.964222 ], [ -77.047232, 38.964210 ], [ -77.047210, 38.964193 ], [ -77.047167, 38.964151 ], [ -77.047157, 38.964135 ], [ -77.047141, 38.964122 ], [ -77.047119, 38.964110 ], [ -77.047098, 38.964085 ], [ -77.047044, 38.964022 ], [ -77.047023, 38.963989 ], [ -77.046964, 38.963935 ], [ -77.046947, 38.963918 ], [ -77.046931, 38.963905 ], [ -77.046915, 38.963893 ], [ -77.046888, 38.963859 ], [ -77.046840, 38.963809 ], [ -77.046813, 38.963780 ], [ -77.046803, 38.963764 ], [ -77.046781, 38.963730 ], [ -77.046770, 38.963697 ], [ -77.046765, 38.963672 ], [ -77.046717, 38.963626 ], [ -77.046652, 38.963526 ], [ -77.046636, 38.963509 ], [ -77.046610, 38.963480 ], [ -77.046593, 38.963463 ], [ -77.046572, 38.963447 ], [ -77.046556, 38.963434 ], [ -77.046540, 38.963417 ], [ -77.046481, 38.963367 ], [ -77.046443, 38.963330 ], [ -77.046427, 38.963313 ], [ -77.046411, 38.963296 ], [ -77.046395, 38.963280 ], [ -77.046390, 38.963263 ], [ -77.046368, 38.963230 ], [ -77.046347, 38.963196 ], [ -77.046304, 38.963155 ], [ -77.046293, 38.963142 ], [ -77.046282, 38.963121 ], [ -77.046272, 38.963104 ], [ -77.046255, 38.963088 ], [ -77.046239, 38.963075 ], [ -77.046170, 38.963013 ], [ -77.046137, 38.962988 ], [ -77.046116, 38.962975 ], [ -77.046095, 38.962967 ], [ -77.046073, 38.962954 ], [ -77.045998, 38.962913 ], [ -77.045971, 38.962892 ], [ -77.045934, 38.962879 ], [ -77.045901, 38.962875 ], [ -77.045875, 38.962875 ], [ -77.045842, 38.962867 ], [ -77.045816, 38.962854 ], [ -77.045794, 38.962842 ], [ -77.045778, 38.962821 ], [ -77.045751, 38.962800 ], [ -77.045676, 38.962762 ], [ -77.045633, 38.962750 ], [ -77.045537, 38.962700 ], [ -77.045521, 38.962683 ], [ -77.045499, 38.962667 ], [ -77.045456, 38.962637 ], [ -77.045413, 38.962612 ], [ -77.045386, 38.962600 ], [ -77.045333, 38.962587 ], [ -77.045285, 38.962571 ], [ -77.045258, 38.962558 ], [ -77.045242, 38.962546 ], [ -77.045204, 38.962500 ], [ -77.045172, 38.962496 ], [ -77.045140, 38.962491 ], [ -77.045102, 38.962487 ], [ -77.045059, 38.962483 ], [ -77.044989, 38.962454 ], [ -77.044952, 38.962433 ], [ -77.044925, 38.962412 ], [ -77.044904, 38.962391 ], [ -77.044866, 38.962370 ], [ -77.044829, 38.962354 ], [ -77.044786, 38.962333 ], [ -77.044732, 38.962295 ], [ -77.044689, 38.962270 ], [ -77.044646, 38.962245 ], [ -77.044609, 38.962216 ], [ -77.044566, 38.962191 ], [ -77.044544, 38.962174 ], [ -77.044480, 38.962124 ], [ -77.044458, 38.962108 ], [ -77.044415, 38.962074 ], [ -77.044394, 38.962062 ], [ -77.044367, 38.962045 ], [ -77.044319, 38.962016 ], [ -77.044297, 38.961999 ], [ -77.044255, 38.961970 ], [ -77.044120, 38.961874 ], [ -77.044072, 38.961841 ], [ -77.044024, 38.961807 ], [ -77.044002, 38.961791 ], [ -77.043981, 38.961774 ], [ -77.043954, 38.961741 ], [ -77.043927, 38.961707 ], [ -77.043906, 38.961690 ], [ -77.043852, 38.961653 ], [ -77.043820, 38.961636 ], [ -77.043799, 38.961624 ], [ -77.043788, 38.961620 ], [ -77.043750, 38.961599 ], [ -77.043718, 38.961565 ], [ -77.043697, 38.961553 ], [ -77.043664, 38.961528 ], [ -77.043648, 38.961511 ], [ -77.043627, 38.961486 ], [ -77.043611, 38.961465 ], [ -77.043595, 38.961449 ], [ -77.043579, 38.961432 ], [ -77.043563, 38.961411 ], [ -77.043520, 38.961365 ], [ -77.043718, 38.961244 ], [ -77.044083, 38.961048 ], [ -77.044582, 38.960798 ], [ -77.044845, 38.960702 ], [ -77.045177, 38.960598 ], [ -77.045569, 38.960477 ], [ -77.045918, 38.960422 ], [ -77.046245, 38.960385 ], [ -77.046652, 38.960368 ], [ -77.047017, 38.960377 ], [ -77.047210, 38.960385 ], [ -77.047398, 38.960406 ], [ -77.047580, 38.960431 ], [ -77.047741, 38.960452 ], [ -77.047881, 38.960477 ], [ -77.048112, 38.960527 ], [ -77.048305, 38.960581 ], [ -77.048460, 38.960623 ], [ -77.048503, 38.960643 ], [ -77.048578, 38.960673 ], [ -77.048648, 38.960702 ], [ -77.048718, 38.960727 ], [ -77.048804, 38.960764 ], [ -77.048868, 38.960798 ], [ -77.048938, 38.960831 ], [ -77.049088, 38.960910 ], [ -77.049158, 38.960952 ], [ -77.049217, 38.960990 ], [ -77.049286, 38.961040 ], [ -77.049351, 38.961086 ], [ -77.049420, 38.961136 ], [ -77.049673, 38.961340 ], [ -77.049716, 38.961382 ], [ -77.049764, 38.961415 ], [ -77.049807, 38.961449 ], [ -77.049876, 38.961507 ], [ -77.049919, 38.961544 ], [ -77.049962, 38.961574 ], [ -77.050005, 38.961603 ], [ -77.050048, 38.961632 ], [ -77.050155, 38.961699 ], [ -77.050225, 38.961728 ], [ -77.050349, 38.961786 ], [ -77.050418, 38.961811 ], [ -77.050558, 38.961853 ], [ -77.050627, 38.961874 ], [ -77.050703, 38.961887 ], [ -77.050778, 38.961903 ], [ -77.050906, 38.961920 ], [ -77.050971, 38.961928 ], [ -77.051041, 38.961932 ], [ -77.051105, 38.961937 ], [ -77.051175, 38.961941 ], [ -77.051255, 38.961941 ], [ -77.051464, 38.961949 ], [ -77.051663, 38.961941 ], [ -77.051856, 38.961924 ], [ -77.052054, 38.961882 ], [ -77.052215, 38.961836 ], [ -77.052698, 38.961674 ], [ -77.053224, 38.961424 ], [ -77.053379, 38.961365 ], [ -77.053492, 38.961332 ], [ -77.053594, 38.961303 ], [ -77.053674, 38.961282 ], [ -77.053750, 38.961265 ], [ -77.053830, 38.961244 ], [ -77.054120, 38.961182 ], [ -77.054307, 38.961148 ], [ -77.054554, 38.961111 ], [ -77.054817, 38.961077 ], [ -77.054865, 38.961073 ], [ -77.054924, 38.961065 ], [ -77.055176, 38.961040 ], [ -77.055380, 38.961027 ], [ -77.055552, 38.961019 ], [ -77.055750, 38.961015 ], [ -77.055928, 38.961015 ], [ -77.056196, 38.961015 ], [ -77.056201, 38.961157 ], [ -77.056201, 38.961182 ], [ -77.056201, 38.962320 ], [ -77.056196, 38.962646 ], [ -77.056190, 38.962908 ], [ -77.056190, 38.963104 ], [ -77.056190, 38.963184 ], [ -77.056190, 38.963376 ], [ -77.056185, 38.963597 ], [ -77.056190, 38.963634 ], [ -77.056196, 38.963672 ], [ -77.056201, 38.963705 ], [ -77.056217, 38.963747 ], [ -77.056233, 38.963776 ], [ -77.056265, 38.963826 ], [ -77.056308, 38.963868 ], [ -77.056324, 38.963884 ], [ -77.056373, 38.963922 ], [ -77.056480, 38.964001 ], [ -77.056684, 38.964147 ], [ -77.056872, 38.964281 ], [ -77.057086, 38.964435 ], [ -77.057172, 38.964498 ], [ -77.057505, 38.964735 ], [ -77.057574, 38.964790 ], [ -77.057794, 38.964948 ], [ -77.058277, 38.965290 ], [ -77.058347, 38.965344 ], [ -77.058551, 38.965486 ], [ -77.058696, 38.965590 ], [ -77.058846, 38.965699 ], [ -77.058975, 38.965786 ], [ -77.059125, 38.965878 ], [ -77.059227, 38.965816 ], [ -77.059763, 38.965816 ], [ -77.061866, 38.965811 ], [ -77.062043, 38.965811 ], [ -77.062193, 38.965811 ], [ -77.062370, 38.965811 ], [ -77.062435, 38.965807 ], [ -77.062896, 38.965811 ], [ -77.063786, 38.965807 ], [ -77.063883, 38.965807 ], [ -77.064849, 38.965811 ], [ -77.066377, 38.965816 ], [ -77.066925, 38.965811 ], [ -77.067761, 38.965811 ], [ -77.068405, 38.965811 ], [ -77.068512, 38.966049 ], [ -77.068786, 38.966662 ], [ -77.068813, 38.966729 ], [ -77.069215, 38.967622 ], [ -77.069290, 38.967780 ], [ -77.069489, 38.968231 ], [ -77.069660, 38.968635 ], [ -77.069977, 38.969332 ], [ -77.070106, 38.969624 ], [ -77.070138, 38.969699 ], [ -77.070181, 38.969761 ], [ -77.070562, 38.970299 ], [ -77.070680, 38.970466 ], [ -77.070733, 38.970537 ], [ -77.070894, 38.970766 ], [ -77.071189, 38.971163 ], [ -77.071243, 38.971238 ], [ -77.071576, 38.971688 ], [ -77.071645, 38.971788 ], [ -77.071248, 38.972088 ], [ -77.071227, 38.972105 ], [ -77.070513, 38.972668 ], [ -77.070395, 38.972764 ], [ -77.070251, 38.972868 ], [ -77.070213, 38.972898 ], [ -77.070095, 38.972981 ], [ -77.069575, 38.973398 ], [ -77.069285, 38.973619 ], [ -77.068968, 38.973869 ], [ -77.068732, 38.974053 ], [ -77.068695, 38.974082 ], [ -77.066984, 38.975408 ], [ -77.066844, 38.975517 ], [ -77.066721, 38.975613 ], [ -77.066549, 38.975750 ], [ -77.066131, 38.976084 ], [ -77.066120, 38.976092 ], [ -77.065997, 38.976171 ], [ -77.065879, 38.976284 ], [ -77.065127, 38.976864 ], [ -77.065101, 38.976889 ], [ -77.065085, 38.976901 ], [ -77.063894, 38.977827 ], [ -77.063861, 38.977852 ], [ -77.063046, 38.978498 ], [ -77.062923, 38.978594 ], [ -77.062762, 38.978724 ], [ -77.062671, 38.978794 ], [ -77.062129, 38.979207 ], [ -77.061474, 38.979729 ], [ -77.061211, 38.979941 ], [ -77.061169, 38.979975 ], [ -77.061110, 38.980020 ], [ -77.059720, 38.981096 ], [ -77.058497, 38.982047 ], [ -77.057387, 38.982919 ], [ -77.056646, 38.983482 ], [ -77.056598, 38.983519 ], [ -77.056577, 38.983536 ], [ -77.056287, 38.983769 ], [ -77.055906, 38.984074 ], [ -77.055820, 38.984136 ], [ -77.055021, 38.984749 ], [ -77.054340, 38.985300 ], [ -77.053041, 38.986275 ], [ -77.052988, 38.986317 ], [ -77.052360, 38.986788 ], [ -77.052328, 38.986817 ], [ -77.051765, 38.987243 ], [ -77.051620, 38.987147 ], [ -77.051765, 38.986951 ], [ -77.050037, 38.986067 ], [ -77.048986, 38.985633 ], [ -77.047586, 38.985362 ], [ -77.046132, 38.984453 ], [ -77.045757, 38.984153 ], [ -77.044979, 38.983911 ], [ -77.044340, 38.983869 ], [ -77.043841, 38.983928 ], [ -77.043648, 38.983953 ], [ -77.043563, 38.983990 ], [ -77.043391, 38.984040 ], [ -77.043273, 38.984036 ], [ -77.043031, 38.984020 ], [ -77.042854, 38.984007 ], [ -77.042377, 38.983978 ], [ -77.041728, 38.983423 ], [ -77.041712, 38.983306 ], [ -77.041605, 38.983215 ], [ -77.041084, 38.983231 ], [ -77.040886, 38.983177 ], [ -77.040784, 38.983123 ], [ -77.040580, 38.982910 ], [ -77.040333, 38.982819 ], [ -77.040145, 38.982643 ], [ -77.039958, 38.982468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001803", "GEOID": "11001001803", "NAME": "18.03", "NAMELSAD": "Census Tract 18.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1136289, "AWATER": 31909, "INTPTLAT": "+38.9672412", "INTPTLON": "-077.0419173" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.044297, 38.971063 ], [ -77.044196, 38.971100 ], [ -77.044120, 38.971125 ], [ -77.044078, 38.971133 ], [ -77.044029, 38.971150 ], [ -77.043938, 38.971171 ], [ -77.043917, 38.971188 ], [ -77.043858, 38.971213 ], [ -77.043841, 38.971196 ], [ -77.043815, 38.971196 ], [ -77.043718, 38.971213 ], [ -77.043691, 38.971221 ], [ -77.043670, 38.971229 ], [ -77.043611, 38.971259 ], [ -77.043568, 38.971275 ], [ -77.043525, 38.971288 ], [ -77.043482, 38.971300 ], [ -77.043434, 38.971304 ], [ -77.043412, 38.971309 ], [ -77.043391, 38.971309 ], [ -77.043364, 38.971309 ], [ -77.043294, 38.971317 ], [ -77.043241, 38.971317 ], [ -77.043128, 38.971313 ], [ -77.043074, 38.971309 ], [ -77.042903, 38.971288 ], [ -77.042860, 38.971279 ], [ -77.042817, 38.971271 ], [ -77.042769, 38.971267 ], [ -77.042726, 38.971259 ], [ -77.042683, 38.971250 ], [ -77.042640, 38.971246 ], [ -77.042613, 38.971238 ], [ -77.042586, 38.971225 ], [ -77.042554, 38.971208 ], [ -77.042527, 38.971192 ], [ -77.042500, 38.971179 ], [ -77.042479, 38.971163 ], [ -77.042463, 38.971129 ], [ -77.042452, 38.971100 ], [ -77.042425, 38.971058 ], [ -77.042409, 38.971042 ], [ -77.042356, 38.971021 ], [ -77.042323, 38.971017 ], [ -77.042286, 38.971008 ], [ -77.042264, 38.971008 ], [ -77.042200, 38.971004 ], [ -77.042173, 38.971000 ], [ -77.042077, 38.971004 ], [ -77.042023, 38.971004 ], [ -77.041964, 38.971008 ], [ -77.041932, 38.971021 ], [ -77.041905, 38.971029 ], [ -77.041883, 38.971033 ], [ -77.041830, 38.971042 ], [ -77.041733, 38.971054 ], [ -77.041674, 38.971067 ], [ -77.041642, 38.971075 ], [ -77.041588, 38.971092 ], [ -77.041444, 38.971133 ], [ -77.041411, 38.971138 ], [ -77.041385, 38.971142 ], [ -77.041304, 38.971158 ], [ -77.041283, 38.971167 ], [ -77.041234, 38.971188 ], [ -77.041181, 38.971200 ], [ -77.041095, 38.971234 ], [ -77.041063, 38.971254 ], [ -77.041031, 38.971284 ], [ -77.041020, 38.971296 ], [ -77.041004, 38.971313 ], [ -77.040977, 38.971342 ], [ -77.040955, 38.971371 ], [ -77.040902, 38.971430 ], [ -77.040875, 38.971459 ], [ -77.040848, 38.971484 ], [ -77.040794, 38.971530 ], [ -77.040752, 38.971571 ], [ -77.040735, 38.971588 ], [ -77.040671, 38.971642 ], [ -77.040607, 38.971688 ], [ -77.040585, 38.971701 ], [ -77.040542, 38.971726 ], [ -77.040494, 38.971747 ], [ -77.040462, 38.971755 ], [ -77.040440, 38.971763 ], [ -77.040414, 38.971772 ], [ -77.040360, 38.971792 ], [ -77.040339, 38.971805 ], [ -77.040274, 38.971822 ], [ -77.040247, 38.971822 ], [ -77.040215, 38.971830 ], [ -77.040178, 38.971842 ], [ -77.040151, 38.971859 ], [ -77.040167, 38.971876 ], [ -77.040188, 38.971892 ], [ -77.040199, 38.971917 ], [ -77.040204, 38.971943 ], [ -77.040204, 38.971972 ], [ -77.040199, 38.971988 ], [ -77.040204, 38.972018 ], [ -77.040204, 38.972038 ], [ -77.040204, 38.972072 ], [ -77.040204, 38.972097 ], [ -77.040194, 38.972122 ], [ -77.040194, 38.972155 ], [ -77.040199, 38.972193 ], [ -77.040199, 38.972209 ], [ -77.040204, 38.972285 ], [ -77.040199, 38.972301 ], [ -77.040199, 38.972322 ], [ -77.040199, 38.972339 ], [ -77.040210, 38.972360 ], [ -77.040204, 38.972439 ], [ -77.040199, 38.972472 ], [ -77.040199, 38.972493 ], [ -77.040194, 38.972526 ], [ -77.040188, 38.972543 ], [ -77.040167, 38.972614 ], [ -77.040151, 38.972668 ], [ -77.040140, 38.972697 ], [ -77.040135, 38.972727 ], [ -77.040124, 38.972756 ], [ -77.040113, 38.972777 ], [ -77.040092, 38.972835 ], [ -77.040065, 38.972835 ], [ -77.039888, 38.972835 ], [ -77.039770, 38.972835 ], [ -77.039738, 38.972831 ], [ -77.039652, 38.972835 ], [ -77.039593, 38.972839 ], [ -77.039507, 38.972852 ], [ -77.039480, 38.972856 ], [ -77.039233, 38.972927 ], [ -77.038954, 38.973002 ], [ -77.038772, 38.973052 ], [ -77.038745, 38.973060 ], [ -77.038670, 38.973085 ], [ -77.038643, 38.973089 ], [ -77.038466, 38.973139 ], [ -77.038305, 38.973177 ], [ -77.038144, 38.973206 ], [ -77.038069, 38.973215 ], [ -77.038005, 38.973227 ], [ -77.037866, 38.973244 ], [ -77.037828, 38.973248 ], [ -77.037796, 38.973248 ], [ -77.037737, 38.973248 ], [ -77.037710, 38.973244 ], [ -77.037683, 38.973240 ], [ -77.037662, 38.973235 ], [ -77.037635, 38.973227 ], [ -77.037608, 38.973215 ], [ -77.037581, 38.973202 ], [ -77.037560, 38.973185 ], [ -77.037544, 38.973173 ], [ -77.037528, 38.973160 ], [ -77.037506, 38.973139 ], [ -77.037490, 38.973119 ], [ -77.037479, 38.973098 ], [ -77.037469, 38.973077 ], [ -77.037458, 38.973056 ], [ -77.037452, 38.973035 ], [ -77.037452, 38.973010 ], [ -77.037452, 38.972985 ], [ -77.037458, 38.972960 ], [ -77.037463, 38.972935 ], [ -77.037474, 38.972910 ], [ -77.037485, 38.972881 ], [ -77.037506, 38.972856 ], [ -77.037528, 38.972835 ], [ -77.037549, 38.972814 ], [ -77.037576, 38.972793 ], [ -77.037603, 38.972772 ], [ -77.037629, 38.972756 ], [ -77.037662, 38.972739 ], [ -77.037726, 38.972706 ], [ -77.037780, 38.972672 ], [ -77.037833, 38.972639 ], [ -77.037855, 38.972622 ], [ -77.037876, 38.972606 ], [ -77.037919, 38.972568 ], [ -77.037941, 38.972547 ], [ -77.037951, 38.972531 ], [ -77.037973, 38.972493 ], [ -77.037984, 38.972456 ], [ -77.037989, 38.972435 ], [ -77.037994, 38.972414 ], [ -77.038000, 38.972372 ], [ -77.038000, 38.972351 ], [ -77.037994, 38.972326 ], [ -77.037989, 38.972305 ], [ -77.037984, 38.972285 ], [ -77.037973, 38.972259 ], [ -77.037962, 38.972234 ], [ -77.037946, 38.972214 ], [ -77.037930, 38.972193 ], [ -77.037908, 38.972172 ], [ -77.037892, 38.972151 ], [ -77.037871, 38.972134 ], [ -77.037849, 38.972118 ], [ -77.037823, 38.972105 ], [ -77.037796, 38.972093 ], [ -77.037742, 38.972068 ], [ -77.037710, 38.972055 ], [ -77.037646, 38.972034 ], [ -77.037549, 38.972009 ], [ -77.037469, 38.971993 ], [ -77.037383, 38.971980 ], [ -77.037329, 38.971980 ], [ -77.037270, 38.971980 ], [ -77.037211, 38.971984 ], [ -77.037184, 38.971988 ], [ -77.037131, 38.972001 ], [ -77.037072, 38.972018 ], [ -77.037045, 38.972026 ], [ -77.036943, 38.972068 ], [ -77.036916, 38.972080 ], [ -77.036857, 38.972105 ], [ -77.036541, 38.972230 ], [ -77.036471, 38.972255 ], [ -77.036444, 38.972259 ], [ -77.036369, 38.972268 ], [ -77.036219, 38.972268 ], [ -77.035891, 38.972268 ], [ -77.034529, 38.972264 ], [ -77.033413, 38.972264 ], [ -77.033413, 38.971842 ], [ -77.033413, 38.971505 ], [ -77.033413, 38.970812 ], [ -77.033413, 38.970721 ], [ -77.033413, 38.970028 ], [ -77.033413, 38.970003 ], [ -77.033376, 38.969924 ], [ -77.033413, 38.969649 ], [ -77.033413, 38.969603 ], [ -77.033413, 38.968981 ], [ -77.033418, 38.968272 ], [ -77.033413, 38.967830 ], [ -77.033413, 38.967567 ], [ -77.033413, 38.967480 ], [ -77.033413, 38.966850 ], [ -77.033418, 38.966137 ], [ -77.033418, 38.965428 ], [ -77.033413, 38.964927 ], [ -77.033413, 38.964569 ], [ -77.033413, 38.964014 ], [ -77.033413, 38.963780 ], [ -77.033413, 38.963238 ], [ -77.033413, 38.963155 ], [ -77.033418, 38.962933 ], [ -77.033418, 38.962600 ], [ -77.033418, 38.962195 ], [ -77.033424, 38.962041 ], [ -77.034336, 38.962170 ], [ -77.034792, 38.962241 ], [ -77.034969, 38.962279 ], [ -77.035870, 38.962475 ], [ -77.036299, 38.962566 ], [ -77.036385, 38.962583 ], [ -77.036417, 38.962591 ], [ -77.037603, 38.962883 ], [ -77.038230, 38.963013 ], [ -77.038600, 38.963092 ], [ -77.039003, 38.963130 ], [ -77.039115, 38.963142 ], [ -77.039770, 38.963096 ], [ -77.040043, 38.963075 ], [ -77.040263, 38.963034 ], [ -77.040381, 38.963000 ], [ -77.040644, 38.962917 ], [ -77.041009, 38.962750 ], [ -77.043284, 38.961507 ], [ -77.043380, 38.961457 ], [ -77.043461, 38.961394 ], [ -77.043520, 38.961365 ], [ -77.043563, 38.961411 ], [ -77.043579, 38.961432 ], [ -77.043595, 38.961449 ], [ -77.043611, 38.961465 ], [ -77.043627, 38.961486 ], [ -77.043648, 38.961511 ], [ -77.043664, 38.961528 ], [ -77.043697, 38.961553 ], [ -77.043718, 38.961565 ], [ -77.043750, 38.961599 ], [ -77.043788, 38.961620 ], [ -77.043799, 38.961624 ], [ -77.043820, 38.961636 ], [ -77.043852, 38.961653 ], [ -77.043906, 38.961690 ], [ -77.043927, 38.961707 ], [ -77.043954, 38.961741 ], [ -77.043981, 38.961774 ], [ -77.044002, 38.961791 ], [ -77.044024, 38.961807 ], [ -77.044072, 38.961841 ], [ -77.044120, 38.961874 ], [ -77.044255, 38.961970 ], [ -77.044297, 38.961999 ], [ -77.044319, 38.962016 ], [ -77.044367, 38.962045 ], [ -77.044394, 38.962062 ], [ -77.044415, 38.962074 ], [ -77.044458, 38.962108 ], [ -77.044480, 38.962124 ], [ -77.044544, 38.962174 ], [ -77.044566, 38.962191 ], [ -77.044609, 38.962216 ], [ -77.044646, 38.962245 ], [ -77.044689, 38.962270 ], [ -77.044732, 38.962295 ], [ -77.044786, 38.962333 ], [ -77.044829, 38.962354 ], [ -77.044866, 38.962370 ], [ -77.044904, 38.962391 ], [ -77.044925, 38.962412 ], [ -77.044952, 38.962433 ], [ -77.044989, 38.962454 ], [ -77.045059, 38.962483 ], [ -77.045102, 38.962487 ], [ -77.045140, 38.962491 ], [ -77.045172, 38.962496 ], [ -77.045204, 38.962500 ], [ -77.045242, 38.962546 ], [ -77.045258, 38.962558 ], [ -77.045285, 38.962571 ], [ -77.045333, 38.962587 ], [ -77.045386, 38.962600 ], [ -77.045413, 38.962612 ], [ -77.045456, 38.962637 ], [ -77.045499, 38.962667 ], [ -77.045521, 38.962683 ], [ -77.045537, 38.962700 ], [ -77.045633, 38.962750 ], [ -77.045676, 38.962762 ], [ -77.045751, 38.962800 ], [ -77.045778, 38.962821 ], [ -77.045794, 38.962842 ], [ -77.045816, 38.962854 ], [ -77.045842, 38.962867 ], [ -77.045875, 38.962875 ], [ -77.045901, 38.962875 ], [ -77.045934, 38.962879 ], [ -77.045971, 38.962892 ], [ -77.045998, 38.962913 ], [ -77.046073, 38.962954 ], [ -77.046095, 38.962967 ], [ -77.046116, 38.962975 ], [ -77.046137, 38.962988 ], [ -77.046170, 38.963013 ], [ -77.046239, 38.963075 ], [ -77.046255, 38.963088 ], [ -77.046272, 38.963104 ], [ -77.046282, 38.963121 ], [ -77.046293, 38.963142 ], [ -77.046304, 38.963155 ], [ -77.046347, 38.963196 ], [ -77.046368, 38.963230 ], [ -77.046390, 38.963263 ], [ -77.046395, 38.963280 ], [ -77.046411, 38.963296 ], [ -77.046427, 38.963313 ], [ -77.046443, 38.963330 ], [ -77.046481, 38.963367 ], [ -77.046540, 38.963417 ], [ -77.046556, 38.963434 ], [ -77.046572, 38.963447 ], [ -77.046593, 38.963463 ], [ -77.046610, 38.963480 ], [ -77.046636, 38.963509 ], [ -77.046652, 38.963526 ], [ -77.046717, 38.963626 ], [ -77.046765, 38.963672 ], [ -77.046770, 38.963697 ], [ -77.046781, 38.963730 ], [ -77.046803, 38.963764 ], [ -77.046813, 38.963780 ], [ -77.046840, 38.963809 ], [ -77.046888, 38.963859 ], [ -77.046915, 38.963893 ], [ -77.046931, 38.963905 ], [ -77.046947, 38.963918 ], [ -77.046964, 38.963935 ], [ -77.047023, 38.963989 ], [ -77.047044, 38.964022 ], [ -77.047098, 38.964085 ], [ -77.047119, 38.964110 ], [ -77.047141, 38.964122 ], [ -77.047157, 38.964135 ], [ -77.047167, 38.964151 ], [ -77.047210, 38.964193 ], [ -77.047232, 38.964210 ], [ -77.047253, 38.964222 ], [ -77.047275, 38.964243 ], [ -77.047291, 38.964268 ], [ -77.047307, 38.964289 ], [ -77.047318, 38.964322 ], [ -77.047339, 38.964360 ], [ -77.047350, 38.964381 ], [ -77.047387, 38.964414 ], [ -77.047398, 38.964435 ], [ -77.047446, 38.964493 ], [ -77.047468, 38.964527 ], [ -77.047484, 38.964552 ], [ -77.047495, 38.964585 ], [ -77.047516, 38.964610 ], [ -77.047538, 38.964631 ], [ -77.047554, 38.964656 ], [ -77.047564, 38.964685 ], [ -77.047591, 38.964719 ], [ -77.047602, 38.964735 ], [ -77.047623, 38.964748 ], [ -77.047629, 38.964769 ], [ -77.047618, 38.964785 ], [ -77.047591, 38.964852 ], [ -77.047623, 38.964852 ], [ -77.047623, 38.964877 ], [ -77.047623, 38.964898 ], [ -77.047623, 38.964919 ], [ -77.047618, 38.964944 ], [ -77.047613, 38.964973 ], [ -77.047602, 38.964998 ], [ -77.047602, 38.965027 ], [ -77.047602, 38.965044 ], [ -77.047591, 38.965065 ], [ -77.047580, 38.965086 ], [ -77.047564, 38.965107 ], [ -77.047538, 38.965123 ], [ -77.047516, 38.965148 ], [ -77.047505, 38.965186 ], [ -77.047495, 38.965244 ], [ -77.047495, 38.965257 ], [ -77.047489, 38.965286 ], [ -77.047468, 38.965349 ], [ -77.047446, 38.965403 ], [ -77.047409, 38.965478 ], [ -77.047393, 38.965511 ], [ -77.047371, 38.965540 ], [ -77.047361, 38.965557 ], [ -77.047350, 38.965595 ], [ -77.047334, 38.965628 ], [ -77.047318, 38.965649 ], [ -77.047312, 38.965670 ], [ -77.047291, 38.965695 ], [ -77.047280, 38.965711 ], [ -77.047259, 38.965741 ], [ -77.047248, 38.965757 ], [ -77.047232, 38.965803 ], [ -77.047226, 38.965820 ], [ -77.047221, 38.965837 ], [ -77.047205, 38.965882 ], [ -77.047194, 38.965899 ], [ -77.047173, 38.965953 ], [ -77.047146, 38.965991 ], [ -77.047141, 38.966008 ], [ -77.047125, 38.966049 ], [ -77.047098, 38.966087 ], [ -77.047082, 38.966103 ], [ -77.047071, 38.966124 ], [ -77.047049, 38.966166 ], [ -77.047039, 38.966183 ], [ -77.046969, 38.966329 ], [ -77.046958, 38.966345 ], [ -77.046942, 38.966387 ], [ -77.046931, 38.966408 ], [ -77.046926, 38.966429 ], [ -77.046921, 38.966454 ], [ -77.046910, 38.966500 ], [ -77.046905, 38.966546 ], [ -77.046894, 38.966596 ], [ -77.046888, 38.966616 ], [ -77.046888, 38.966637 ], [ -77.046878, 38.966692 ], [ -77.046878, 38.966742 ], [ -77.046894, 38.966775 ], [ -77.046910, 38.966804 ], [ -77.046910, 38.966842 ], [ -77.046905, 38.966858 ], [ -77.046888, 38.966879 ], [ -77.046899, 38.966900 ], [ -77.046910, 38.966925 ], [ -77.046915, 38.966958 ], [ -77.046905, 38.966984 ], [ -77.046905, 38.967017 ], [ -77.046905, 38.967034 ], [ -77.046910, 38.967067 ], [ -77.046910, 38.967100 ], [ -77.046910, 38.967117 ], [ -77.046910, 38.967138 ], [ -77.046905, 38.967171 ], [ -77.046888, 38.967217 ], [ -77.046883, 38.967238 ], [ -77.046878, 38.967275 ], [ -77.046872, 38.967296 ], [ -77.046851, 38.967346 ], [ -77.046824, 38.967409 ], [ -77.046819, 38.967430 ], [ -77.046808, 38.967472 ], [ -77.046803, 38.967492 ], [ -77.046792, 38.967513 ], [ -77.046781, 38.967555 ], [ -77.046770, 38.967576 ], [ -77.046754, 38.967638 ], [ -77.046733, 38.967684 ], [ -77.046728, 38.967705 ], [ -77.046711, 38.967751 ], [ -77.046701, 38.967768 ], [ -77.046674, 38.967809 ], [ -77.046620, 38.967859 ], [ -77.046583, 38.967901 ], [ -77.046567, 38.967918 ], [ -77.046551, 38.967934 ], [ -77.046518, 38.967968 ], [ -77.046502, 38.967980 ], [ -77.046449, 38.968030 ], [ -77.046422, 38.968055 ], [ -77.046395, 38.968072 ], [ -77.046363, 38.968093 ], [ -77.046331, 38.968110 ], [ -77.046272, 38.968151 ], [ -77.046250, 38.968172 ], [ -77.046229, 38.968193 ], [ -77.046223, 38.968214 ], [ -77.046218, 38.968235 ], [ -77.046202, 38.968247 ], [ -77.046180, 38.968256 ], [ -77.046132, 38.968276 ], [ -77.046116, 38.968289 ], [ -77.046116, 38.968314 ], [ -77.046116, 38.968339 ], [ -77.046105, 38.968352 ], [ -77.046089, 38.968335 ], [ -77.046068, 38.968327 ], [ -77.046036, 38.968347 ], [ -77.046019, 38.968368 ], [ -77.045993, 38.968385 ], [ -77.045971, 38.968414 ], [ -77.045955, 38.968443 ], [ -77.045950, 38.968477 ], [ -77.045944, 38.968493 ], [ -77.045918, 38.968531 ], [ -77.045901, 38.968564 ], [ -77.045885, 38.968598 ], [ -77.045869, 38.968614 ], [ -77.045842, 38.968644 ], [ -77.045799, 38.968677 ], [ -77.045746, 38.968714 ], [ -77.045698, 38.968739 ], [ -77.045676, 38.968752 ], [ -77.045633, 38.968777 ], [ -77.045612, 38.968789 ], [ -77.045558, 38.968815 ], [ -77.045424, 38.968902 ], [ -77.045338, 38.968960 ], [ -77.045226, 38.969023 ], [ -77.045204, 38.969052 ], [ -77.045188, 38.969081 ], [ -77.045183, 38.969123 ], [ -77.045172, 38.969165 ], [ -77.045161, 38.969211 ], [ -77.045156, 38.969236 ], [ -77.045156, 38.969277 ], [ -77.045156, 38.969369 ], [ -77.045156, 38.969390 ], [ -77.045150, 38.969411 ], [ -77.045134, 38.969440 ], [ -77.045145, 38.969465 ], [ -77.045145, 38.969486 ], [ -77.045140, 38.969528 ], [ -77.045134, 38.969549 ], [ -77.045129, 38.969574 ], [ -77.045129, 38.969615 ], [ -77.045124, 38.969636 ], [ -77.045118, 38.969661 ], [ -77.045118, 38.969682 ], [ -77.045118, 38.969720 ], [ -77.045113, 38.969736 ], [ -77.045102, 38.969757 ], [ -77.045086, 38.969778 ], [ -77.045006, 38.969903 ], [ -77.044984, 38.969945 ], [ -77.044973, 38.969966 ], [ -77.044963, 38.969982 ], [ -77.044957, 38.970003 ], [ -77.044941, 38.970062 ], [ -77.044920, 38.970112 ], [ -77.044914, 38.970128 ], [ -77.044898, 38.970149 ], [ -77.044888, 38.970170 ], [ -77.044877, 38.970216 ], [ -77.044871, 38.970233 ], [ -77.044866, 38.970274 ], [ -77.044861, 38.970295 ], [ -77.044861, 38.970316 ], [ -77.044845, 38.970345 ], [ -77.044823, 38.970374 ], [ -77.044818, 38.970391 ], [ -77.044812, 38.970429 ], [ -77.044812, 38.970445 ], [ -77.044812, 38.970466 ], [ -77.044807, 38.970487 ], [ -77.044791, 38.970541 ], [ -77.044780, 38.970566 ], [ -77.044770, 38.970583 ], [ -77.044759, 38.970604 ], [ -77.044748, 38.970625 ], [ -77.044737, 38.970645 ], [ -77.044727, 38.970666 ], [ -77.044668, 38.970750 ], [ -77.044652, 38.970766 ], [ -77.044512, 38.970896 ], [ -77.044496, 38.970908 ], [ -77.044448, 38.970954 ], [ -77.044421, 38.970979 ], [ -77.044405, 38.970996 ], [ -77.044383, 38.971012 ], [ -77.044319, 38.971050 ], [ -77.044297, 38.971063 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010300", "GEOID": "11001010300", "NAME": "103", "NAMELSAD": "Census Tract 103", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1084591, "AWATER": 0, "INTPTLAT": "+38.9761556", "INTPTLON": "-077.0271875" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.025404, 38.969924 ], [ -77.025597, 38.969924 ], [ -77.025865, 38.969924 ], [ -77.026885, 38.969924 ], [ -77.027121, 38.969928 ], [ -77.027260, 38.969924 ], [ -77.027206, 38.970575 ], [ -77.027164, 38.971008 ], [ -77.027115, 38.971471 ], [ -77.027078, 38.971830 ], [ -77.027035, 38.972218 ], [ -77.027019, 38.972355 ], [ -77.027126, 38.972280 ], [ -77.027153, 38.972268 ], [ -77.027185, 38.972259 ], [ -77.027217, 38.972264 ], [ -77.028022, 38.972264 ], [ -77.028467, 38.972264 ], [ -77.028580, 38.972264 ], [ -77.028676, 38.972264 ], [ -77.029690, 38.972264 ], [ -77.029899, 38.972259 ], [ -77.030044, 38.972264 ], [ -77.030232, 38.972264 ], [ -77.031042, 38.972264 ], [ -77.032303, 38.972264 ], [ -77.033413, 38.972264 ], [ -77.034529, 38.972264 ], [ -77.035891, 38.972268 ], [ -77.036219, 38.972268 ], [ -77.036369, 38.972268 ], [ -77.036363, 38.973123 ], [ -77.036363, 38.974866 ], [ -77.036262, 38.974933 ], [ -77.036181, 38.974987 ], [ -77.036160, 38.975004 ], [ -77.035924, 38.975225 ], [ -77.035543, 38.975579 ], [ -77.035253, 38.975850 ], [ -77.034953, 38.976142 ], [ -77.034679, 38.976401 ], [ -77.034443, 38.976618 ], [ -77.034116, 38.976930 ], [ -77.034062, 38.976985 ], [ -77.033756, 38.977272 ], [ -77.033510, 38.977506 ], [ -77.033408, 38.977606 ], [ -77.033177, 38.977823 ], [ -77.032962, 38.978023 ], [ -77.032941, 38.978010 ], [ -77.032914, 38.978002 ], [ -77.032887, 38.977994 ], [ -77.032855, 38.977990 ], [ -77.032828, 38.977985 ], [ -77.032512, 38.977990 ], [ -77.032040, 38.977985 ], [ -77.031841, 38.977990 ], [ -77.031069, 38.977990 ], [ -77.030130, 38.977985 ], [ -77.029781, 38.977985 ], [ -77.029679, 38.977985 ], [ -77.028633, 38.977981 ], [ -77.027957, 38.977981 ], [ -77.027872, 38.977985 ], [ -77.026429, 38.977981 ], [ -77.026429, 38.978052 ], [ -77.026423, 38.978136 ], [ -77.026423, 38.978231 ], [ -77.026423, 38.978302 ], [ -77.026423, 38.978340 ], [ -77.026455, 38.979391 ], [ -77.026477, 38.979987 ], [ -77.026488, 38.980358 ], [ -77.026525, 38.981442 ], [ -77.026541, 38.982051 ], [ -77.026552, 38.982727 ], [ -77.026557, 38.982798 ], [ -77.026568, 38.983678 ], [ -77.026579, 38.983832 ], [ -77.026595, 38.984512 ], [ -77.025731, 38.983832 ], [ -77.024256, 38.982719 ], [ -77.023167, 38.981855 ], [ -77.023146, 38.981839 ], [ -77.022352, 38.981330 ], [ -77.022336, 38.981380 ], [ -77.020388, 38.979875 ], [ -77.019498, 38.979086 ], [ -77.019133, 38.978803 ], [ -77.018790, 38.978532 ], [ -77.018602, 38.978382 ], [ -77.018564, 38.978357 ], [ -77.018843, 38.978206 ], [ -77.019262, 38.977948 ], [ -77.019353, 38.977890 ], [ -77.019578, 38.977702 ], [ -77.019745, 38.977560 ], [ -77.019777, 38.977531 ], [ -77.019830, 38.977477 ], [ -77.019884, 38.977418 ], [ -77.019938, 38.977360 ], [ -77.019986, 38.977297 ], [ -77.020136, 38.977106 ], [ -77.020292, 38.976897 ], [ -77.020544, 38.976530 ], [ -77.020791, 38.976184 ], [ -77.021064, 38.975804 ], [ -77.021171, 38.975654 ], [ -77.021466, 38.975237 ], [ -77.021697, 38.974916 ], [ -77.021767, 38.974816 ], [ -77.021821, 38.974737 ], [ -77.022089, 38.974353 ], [ -77.022137, 38.974282 ], [ -77.022191, 38.974207 ], [ -77.022239, 38.974140 ], [ -77.022293, 38.974078 ], [ -77.022346, 38.974011 ], [ -77.022405, 38.973953 ], [ -77.022641, 38.973719 ], [ -77.022765, 38.973611 ], [ -77.022856, 38.973511 ], [ -77.023060, 38.973206 ], [ -77.023339, 38.972797 ], [ -77.023644, 38.972347 ], [ -77.024213, 38.971534 ], [ -77.024261, 38.971471 ], [ -77.024401, 38.971275 ], [ -77.024841, 38.970683 ], [ -77.025007, 38.970462 ], [ -77.025281, 38.970095 ], [ -77.025313, 38.970049 ], [ -77.025404, 38.969924 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001804", "GEOID": "11001001804", "NAME": "18.04", "NAMELSAD": "Census Tract 18.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 601755, "AWATER": 0, "INTPTLAT": "+38.9670945", "INTPTLON": "-077.0304334" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.033413, 38.972264 ], [ -77.032303, 38.972264 ], [ -77.031042, 38.972264 ], [ -77.030232, 38.972264 ], [ -77.030044, 38.972264 ], [ -77.029899, 38.972259 ], [ -77.029690, 38.972264 ], [ -77.028676, 38.972264 ], [ -77.028580, 38.972264 ], [ -77.028467, 38.972264 ], [ -77.028022, 38.972264 ], [ -77.027217, 38.972264 ], [ -77.027185, 38.972259 ], [ -77.027153, 38.972268 ], [ -77.027126, 38.972280 ], [ -77.027019, 38.972355 ], [ -77.027035, 38.972218 ], [ -77.027078, 38.971830 ], [ -77.027115, 38.971471 ], [ -77.027164, 38.971008 ], [ -77.027206, 38.970575 ], [ -77.027260, 38.969924 ], [ -77.027303, 38.969469 ], [ -77.027330, 38.969144 ], [ -77.027346, 38.968977 ], [ -77.027362, 38.968815 ], [ -77.027373, 38.968631 ], [ -77.027400, 38.968318 ], [ -77.027405, 38.968260 ], [ -77.027448, 38.967814 ], [ -77.027469, 38.967580 ], [ -77.027475, 38.967534 ], [ -77.027480, 38.967451 ], [ -77.027491, 38.967384 ], [ -77.027496, 38.967288 ], [ -77.027582, 38.966345 ], [ -77.027598, 38.966133 ], [ -77.027657, 38.965465 ], [ -77.027689, 38.965173 ], [ -77.027705, 38.964952 ], [ -77.027737, 38.964585 ], [ -77.027780, 38.964001 ], [ -77.027802, 38.963772 ], [ -77.027807, 38.963693 ], [ -77.027818, 38.963547 ], [ -77.027850, 38.963175 ], [ -77.027877, 38.962800 ], [ -77.027888, 38.962700 ], [ -77.027893, 38.962629 ], [ -77.027904, 38.962500 ], [ -77.027974, 38.961636 ], [ -77.027995, 38.961428 ], [ -77.028006, 38.961290 ], [ -77.028011, 38.961227 ], [ -77.028054, 38.961261 ], [ -77.028156, 38.961294 ], [ -77.028515, 38.961340 ], [ -77.028671, 38.961365 ], [ -77.028982, 38.961398 ], [ -77.029143, 38.961419 ], [ -77.029567, 38.961486 ], [ -77.029690, 38.961507 ], [ -77.031997, 38.961836 ], [ -77.033424, 38.962041 ], [ -77.033418, 38.962195 ], [ -77.033418, 38.962600 ], [ -77.033418, 38.962933 ], [ -77.033413, 38.963155 ], [ -77.033413, 38.963238 ], [ -77.033413, 38.963780 ], [ -77.033413, 38.964014 ], [ -77.033413, 38.964569 ], [ -77.033413, 38.964927 ], [ -77.033418, 38.965428 ], [ -77.033418, 38.966137 ], [ -77.033413, 38.966850 ], [ -77.033413, 38.967480 ], [ -77.033413, 38.967567 ], [ -77.033413, 38.967830 ], [ -77.033418, 38.968272 ], [ -77.033413, 38.968981 ], [ -77.033413, 38.969603 ], [ -77.033413, 38.969649 ], [ -77.033376, 38.969924 ], [ -77.033413, 38.970003 ], [ -77.033413, 38.970028 ], [ -77.033413, 38.970721 ], [ -77.033413, 38.970812 ], [ -77.033413, 38.971505 ], [ -77.033413, 38.971842 ], [ -77.033413, 38.972264 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001702", "GEOID": "11001001702", "NAME": "17.02", "NAMELSAD": "Census Tract 17.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 939295, "AWATER": 0, "INTPTLAT": "+38.9717231", "INTPTLON": "-077.0160682" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.018564, 38.978357 ], [ -77.018441, 38.978261 ], [ -77.018387, 38.978219 ], [ -77.017239, 38.977335 ], [ -77.015721, 38.976167 ], [ -77.014584, 38.975329 ], [ -77.014546, 38.975300 ], [ -77.013940, 38.974787 ], [ -77.013828, 38.974687 ], [ -77.013398, 38.974311 ], [ -77.013339, 38.974265 ], [ -77.012824, 38.973882 ], [ -77.010915, 38.972443 ], [ -77.010051, 38.971696 ], [ -77.009761, 38.971405 ], [ -77.009413, 38.971096 ], [ -77.008817, 38.970629 ], [ -77.008517, 38.970395 ], [ -77.008570, 38.970349 ], [ -77.008624, 38.970308 ], [ -77.008849, 38.970107 ], [ -77.008924, 38.970041 ], [ -77.008989, 38.969986 ], [ -77.009021, 38.969949 ], [ -77.009032, 38.969920 ], [ -77.009037, 38.969895 ], [ -77.009043, 38.969874 ], [ -77.009037, 38.969695 ], [ -77.009037, 38.969098 ], [ -77.009043, 38.968218 ], [ -77.009048, 38.967421 ], [ -77.009043, 38.967338 ], [ -77.009043, 38.966754 ], [ -77.009043, 38.966420 ], [ -77.009043, 38.966333 ], [ -77.009037, 38.965816 ], [ -77.009037, 38.965749 ], [ -77.009037, 38.965682 ], [ -77.009043, 38.965611 ], [ -77.009053, 38.965511 ], [ -77.009059, 38.965419 ], [ -77.009075, 38.965328 ], [ -77.009096, 38.965190 ], [ -77.009112, 38.965098 ], [ -77.009123, 38.965044 ], [ -77.009134, 38.965019 ], [ -77.009155, 38.964998 ], [ -77.009182, 38.964981 ], [ -77.009085, 38.964898 ], [ -77.009026, 38.964848 ], [ -77.008962, 38.964790 ], [ -77.008924, 38.964756 ], [ -77.009498, 38.963989 ], [ -77.009536, 38.963939 ], [ -77.009557, 38.963905 ], [ -77.011344, 38.965390 ], [ -77.012165, 38.966170 ], [ -77.012562, 38.966587 ], [ -77.012921, 38.966992 ], [ -77.013136, 38.967301 ], [ -77.013731, 38.968181 ], [ -77.013865, 38.968393 ], [ -77.014766, 38.969936 ], [ -77.014852, 38.969924 ], [ -77.014890, 38.969920 ], [ -77.014959, 38.969924 ], [ -77.015153, 38.969924 ], [ -77.015474, 38.969924 ], [ -77.016022, 38.969924 ], [ -77.016161, 38.969924 ], [ -77.018028, 38.969924 ], [ -77.019798, 38.969924 ], [ -77.019895, 38.969924 ], [ -77.020233, 38.969924 ], [ -77.020769, 38.969924 ], [ -77.021080, 38.969924 ], [ -77.021161, 38.969924 ], [ -77.021322, 38.969924 ], [ -77.021343, 38.969928 ], [ -77.021407, 38.969924 ], [ -77.021552, 38.969920 ], [ -77.022448, 38.969924 ], [ -77.023178, 38.969924 ], [ -77.023226, 38.969924 ], [ -77.023328, 38.969924 ], [ -77.023457, 38.969924 ], [ -77.024111, 38.969924 ], [ -77.024208, 38.969924 ], [ -77.025216, 38.969924 ], [ -77.025404, 38.969924 ], [ -77.025313, 38.970049 ], [ -77.025281, 38.970095 ], [ -77.025007, 38.970462 ], [ -77.024841, 38.970683 ], [ -77.024401, 38.971275 ], [ -77.024261, 38.971471 ], [ -77.024213, 38.971534 ], [ -77.023644, 38.972347 ], [ -77.023339, 38.972797 ], [ -77.023060, 38.973206 ], [ -77.022856, 38.973511 ], [ -77.022765, 38.973611 ], [ -77.022641, 38.973719 ], [ -77.022405, 38.973953 ], [ -77.022346, 38.974011 ], [ -77.022293, 38.974078 ], [ -77.022239, 38.974140 ], [ -77.022191, 38.974207 ], [ -77.022137, 38.974282 ], [ -77.022089, 38.974353 ], [ -77.021821, 38.974737 ], [ -77.021767, 38.974816 ], [ -77.021697, 38.974916 ], [ -77.021466, 38.975237 ], [ -77.021171, 38.975654 ], [ -77.021064, 38.975804 ], [ -77.020791, 38.976184 ], [ -77.020544, 38.976530 ], [ -77.020292, 38.976897 ], [ -77.020136, 38.977106 ], [ -77.019986, 38.977297 ], [ -77.019938, 38.977360 ], [ -77.019884, 38.977418 ], [ -77.019830, 38.977477 ], [ -77.019777, 38.977531 ], [ -77.019745, 38.977560 ], [ -77.019578, 38.977702 ], [ -77.019353, 38.977890 ], [ -77.019262, 38.977948 ], [ -77.018843, 38.978206 ], [ -77.018564, 38.978357 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001901", "GEOID": "11001001901", "NAME": "19.01", "NAMELSAD": "Census Tract 19.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 769304, "AWATER": 0, "INTPTLAT": "+38.9646853", "INTPTLON": "-077.0236327" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027260, 38.969924 ], [ -77.027121, 38.969928 ], [ -77.026885, 38.969924 ], [ -77.025865, 38.969924 ], [ -77.025597, 38.969924 ], [ -77.025404, 38.969924 ], [ -77.025216, 38.969924 ], [ -77.024208, 38.969924 ], [ -77.024111, 38.969924 ], [ -77.023457, 38.969924 ], [ -77.023328, 38.969924 ], [ -77.023226, 38.969924 ], [ -77.023178, 38.969924 ], [ -77.022448, 38.969924 ], [ -77.021552, 38.969920 ], [ -77.021407, 38.969924 ], [ -77.021343, 38.969928 ], [ -77.021322, 38.969924 ], [ -77.021161, 38.969924 ], [ -77.021080, 38.969924 ], [ -77.020769, 38.969924 ], [ -77.020233, 38.969924 ], [ -77.019895, 38.969924 ], [ -77.019895, 38.969849 ], [ -77.019889, 38.969786 ], [ -77.019895, 38.969407 ], [ -77.019895, 38.969006 ], [ -77.019895, 38.968764 ], [ -77.019895, 38.968631 ], [ -77.019895, 38.968560 ], [ -77.019895, 38.967939 ], [ -77.019895, 38.967643 ], [ -77.019895, 38.967388 ], [ -77.019895, 38.967288 ], [ -77.019895, 38.966712 ], [ -77.019895, 38.966216 ], [ -77.019895, 38.966137 ], [ -77.019895, 38.965540 ], [ -77.019895, 38.964948 ], [ -77.019895, 38.964869 ], [ -77.019895, 38.964364 ], [ -77.019895, 38.963855 ], [ -77.019895, 38.963772 ], [ -77.019895, 38.963709 ], [ -77.019895, 38.963401 ], [ -77.019895, 38.963238 ], [ -77.019895, 38.962700 ], [ -77.019895, 38.962625 ], [ -77.019895, 38.962508 ], [ -77.019895, 38.962270 ], [ -77.019889, 38.962074 ], [ -77.019889, 38.962007 ], [ -77.019889, 38.961937 ], [ -77.019895, 38.961657 ], [ -77.019889, 38.961519 ], [ -77.019889, 38.961315 ], [ -77.019895, 38.961002 ], [ -77.019895, 38.960669 ], [ -77.019895, 38.960164 ], [ -77.019895, 38.959451 ], [ -77.019895, 38.959375 ], [ -77.019895, 38.959225 ], [ -77.019895, 38.958862 ], [ -77.019895, 38.958733 ], [ -77.020217, 38.958733 ], [ -77.020356, 38.958737 ], [ -77.020463, 38.958741 ], [ -77.020624, 38.958741 ], [ -77.020764, 38.958741 ], [ -77.020828, 38.958741 ], [ -77.021150, 38.958733 ], [ -77.021332, 38.958791 ], [ -77.021697, 38.958908 ], [ -77.022067, 38.959033 ], [ -77.022330, 38.959117 ], [ -77.022437, 38.959154 ], [ -77.022958, 38.959321 ], [ -77.023162, 38.959388 ], [ -77.023521, 38.959505 ], [ -77.023886, 38.959626 ], [ -77.024090, 38.959692 ], [ -77.024192, 38.959726 ], [ -77.024320, 38.959768 ], [ -77.025286, 38.960085 ], [ -77.025946, 38.960301 ], [ -77.026777, 38.960568 ], [ -77.027056, 38.960660 ], [ -77.027491, 38.960815 ], [ -77.027603, 38.960856 ], [ -77.027678, 38.960860 ], [ -77.027834, 38.960890 ], [ -77.027920, 38.960919 ], [ -77.027990, 38.960961 ], [ -77.028027, 38.961015 ], [ -77.028027, 38.961040 ], [ -77.028011, 38.961194 ], [ -77.028011, 38.961227 ], [ -77.028006, 38.961290 ], [ -77.027995, 38.961428 ], [ -77.027974, 38.961636 ], [ -77.027904, 38.962500 ], [ -77.027893, 38.962629 ], [ -77.027888, 38.962700 ], [ -77.027877, 38.962800 ], [ -77.027850, 38.963175 ], [ -77.027818, 38.963547 ], [ -77.027807, 38.963693 ], [ -77.027802, 38.963772 ], [ -77.027780, 38.964001 ], [ -77.027737, 38.964585 ], [ -77.027705, 38.964952 ], [ -77.027689, 38.965173 ], [ -77.027657, 38.965465 ], [ -77.027598, 38.966133 ], [ -77.027582, 38.966345 ], [ -77.027496, 38.967288 ], [ -77.027491, 38.967384 ], [ -77.027480, 38.967451 ], [ -77.027475, 38.967534 ], [ -77.027469, 38.967580 ], [ -77.027448, 38.967814 ], [ -77.027405, 38.968260 ], [ -77.027400, 38.968318 ], [ -77.027373, 38.968631 ], [ -77.027362, 38.968815 ], [ -77.027346, 38.968977 ], [ -77.027330, 38.969144 ], [ -77.027303, 38.969469 ], [ -77.027260, 38.969924 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001902", "GEOID": "11001001902", "NAME": "19.02", "NAMELSAD": "Census Tract 19.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 877346, "AWATER": 0, "INTPTLAT": "+38.9639299", "INTPTLON": "-077.0156458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009246, 38.960185 ], [ -77.009348, 38.960164 ], [ -77.009413, 38.960160 ], [ -77.010555, 38.960164 ], [ -77.010958, 38.960160 ], [ -77.011237, 38.960164 ], [ -77.011612, 38.960160 ], [ -77.011880, 38.960164 ], [ -77.012132, 38.960164 ], [ -77.012165, 38.960164 ], [ -77.012197, 38.960168 ], [ -77.012229, 38.960172 ], [ -77.012326, 38.960197 ], [ -77.013420, 38.958733 ], [ -77.013597, 38.958733 ], [ -77.013667, 38.958733 ], [ -77.014090, 38.958733 ], [ -77.014756, 38.958733 ], [ -77.015185, 38.958733 ], [ -77.016166, 38.958733 ], [ -77.016365, 38.958733 ], [ -77.016676, 38.958737 ], [ -77.016912, 38.958737 ], [ -77.017003, 38.958737 ], [ -77.017094, 38.958737 ], [ -77.017432, 38.958737 ], [ -77.017803, 38.958733 ], [ -77.018028, 38.958737 ], [ -77.018183, 38.958737 ], [ -77.018495, 38.958737 ], [ -77.018779, 38.958733 ], [ -77.019315, 38.958737 ], [ -77.019659, 38.958733 ], [ -77.019895, 38.958733 ], [ -77.019895, 38.958862 ], [ -77.019895, 38.959225 ], [ -77.019895, 38.959375 ], [ -77.019895, 38.959451 ], [ -77.019895, 38.960164 ], [ -77.019895, 38.960669 ], [ -77.019895, 38.961002 ], [ -77.019889, 38.961315 ], [ -77.019889, 38.961519 ], [ -77.019895, 38.961657 ], [ -77.019889, 38.961937 ], [ -77.019889, 38.962007 ], [ -77.019889, 38.962074 ], [ -77.019895, 38.962270 ], [ -77.019895, 38.962508 ], [ -77.019895, 38.962625 ], [ -77.019895, 38.962700 ], [ -77.019895, 38.963238 ], [ -77.019895, 38.963401 ], [ -77.019895, 38.963709 ], [ -77.019895, 38.963772 ], [ -77.019895, 38.963855 ], [ -77.019895, 38.964364 ], [ -77.019895, 38.964869 ], [ -77.019895, 38.964948 ], [ -77.019895, 38.965540 ], [ -77.019895, 38.966137 ], [ -77.019895, 38.966216 ], [ -77.019895, 38.966712 ], [ -77.019895, 38.967288 ], [ -77.019895, 38.967388 ], [ -77.019895, 38.967643 ], [ -77.019895, 38.967939 ], [ -77.019895, 38.968560 ], [ -77.019895, 38.968631 ], [ -77.019895, 38.968764 ], [ -77.019895, 38.969006 ], [ -77.019895, 38.969407 ], [ -77.019889, 38.969786 ], [ -77.019895, 38.969849 ], [ -77.019895, 38.969924 ], [ -77.019798, 38.969924 ], [ -77.018028, 38.969924 ], [ -77.016161, 38.969924 ], [ -77.016022, 38.969924 ], [ -77.015474, 38.969924 ], [ -77.015153, 38.969924 ], [ -77.014959, 38.969924 ], [ -77.014890, 38.969920 ], [ -77.014852, 38.969924 ], [ -77.014766, 38.969936 ], [ -77.013865, 38.968393 ], [ -77.013731, 38.968181 ], [ -77.013136, 38.967301 ], [ -77.012921, 38.966992 ], [ -77.012562, 38.966587 ], [ -77.012165, 38.966170 ], [ -77.011344, 38.965390 ], [ -77.009557, 38.963905 ], [ -77.009600, 38.963851 ], [ -77.010459, 38.962696 ], [ -77.010711, 38.962358 ], [ -77.010630, 38.962291 ], [ -77.010459, 38.962083 ], [ -77.010089, 38.961624 ], [ -77.009853, 38.961340 ], [ -77.009724, 38.961169 ], [ -77.009676, 38.961107 ], [ -77.009649, 38.961065 ], [ -77.009606, 38.960998 ], [ -77.009574, 38.960948 ], [ -77.009531, 38.960865 ], [ -77.009488, 38.960781 ], [ -77.009450, 38.960698 ], [ -77.009391, 38.960552 ], [ -77.009354, 38.960456 ], [ -77.009262, 38.960214 ], [ -77.009246, 38.960185 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009505", "GEOID": "11001009505", "NAME": "95.05", "NAMELSAD": "Census Tract 95.05", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1033208, "AWATER": 0, "INTPTLAT": "+38.9618925", "INTPTLON": "-077.0051999" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009045, 38.958074 ], [ -77.009043, 38.958399 ], [ -77.009043, 38.958508 ], [ -77.009043, 38.958650 ], [ -77.009043, 38.958729 ], [ -77.009048, 38.958808 ], [ -77.009048, 38.958892 ], [ -77.009048, 38.959150 ], [ -77.009048, 38.959446 ], [ -77.009043, 38.959551 ], [ -77.009048, 38.959580 ], [ -77.009048, 38.959609 ], [ -77.009053, 38.959647 ], [ -77.009064, 38.959692 ], [ -77.009091, 38.959759 ], [ -77.009107, 38.959809 ], [ -77.009155, 38.959943 ], [ -77.009187, 38.960034 ], [ -77.009246, 38.960185 ], [ -77.009262, 38.960214 ], [ -77.009354, 38.960456 ], [ -77.009391, 38.960552 ], [ -77.009450, 38.960698 ], [ -77.009488, 38.960781 ], [ -77.009531, 38.960865 ], [ -77.009574, 38.960948 ], [ -77.009606, 38.960998 ], [ -77.009649, 38.961065 ], [ -77.009676, 38.961107 ], [ -77.009724, 38.961169 ], [ -77.009853, 38.961340 ], [ -77.010089, 38.961624 ], [ -77.010459, 38.962083 ], [ -77.010630, 38.962291 ], [ -77.010711, 38.962358 ], [ -77.010459, 38.962696 ], [ -77.009600, 38.963851 ], [ -77.009557, 38.963905 ], [ -77.009536, 38.963939 ], [ -77.009498, 38.963989 ], [ -77.008924, 38.964756 ], [ -77.008962, 38.964790 ], [ -77.009026, 38.964848 ], [ -77.009085, 38.964898 ], [ -77.009182, 38.964981 ], [ -77.009155, 38.964998 ], [ -77.009134, 38.965019 ], [ -77.009123, 38.965044 ], [ -77.009112, 38.965098 ], [ -77.009096, 38.965190 ], [ -77.009075, 38.965328 ], [ -77.009059, 38.965419 ], [ -77.009053, 38.965511 ], [ -77.009043, 38.965611 ], [ -77.009037, 38.965682 ], [ -77.009037, 38.965749 ], [ -77.009037, 38.965816 ], [ -77.009043, 38.966333 ], [ -77.009043, 38.966420 ], [ -77.009043, 38.966754 ], [ -77.009043, 38.967338 ], [ -77.009048, 38.967421 ], [ -77.009043, 38.968218 ], [ -77.009037, 38.969098 ], [ -77.009037, 38.969695 ], [ -77.009043, 38.969874 ], [ -77.009037, 38.969895 ], [ -77.009032, 38.969920 ], [ -77.009021, 38.969949 ], [ -77.008989, 38.969986 ], [ -77.008924, 38.970041 ], [ -77.008849, 38.970107 ], [ -77.008624, 38.970308 ], [ -77.008570, 38.970349 ], [ -77.008517, 38.970395 ], [ -77.007707, 38.969770 ], [ -77.006510, 38.968860 ], [ -77.006103, 38.968539 ], [ -77.005250, 38.967876 ], [ -77.004601, 38.967355 ], [ -77.004477, 38.967259 ], [ -77.003555, 38.966550 ], [ -77.003345, 38.966383 ], [ -77.002509, 38.965732 ], [ -77.002434, 38.965674 ], [ -77.001495, 38.964952 ], [ -77.000792, 38.964398 ], [ -77.000701, 38.964327 ], [ -77.000159, 38.963901 ], [ -77.000138, 38.963889 ], [ -77.000052, 38.963818 ], [ -76.999944, 38.963738 ], [ -76.999735, 38.963576 ], [ -76.999306, 38.963242 ], [ -76.999151, 38.963117 ], [ -76.999070, 38.963054 ], [ -76.998984, 38.962988 ], [ -76.998872, 38.962900 ], [ -76.998818, 38.962854 ], [ -76.998748, 38.962804 ], [ -76.998695, 38.962758 ], [ -76.998614, 38.962696 ], [ -76.998539, 38.962637 ], [ -76.998464, 38.962579 ], [ -76.997895, 38.962133 ], [ -76.997879, 38.962120 ], [ -76.997799, 38.962058 ], [ -76.997691, 38.961978 ], [ -76.997337, 38.961703 ], [ -76.997225, 38.961615 ], [ -76.997289, 38.961603 ], [ -76.997439, 38.961557 ], [ -76.997536, 38.961528 ], [ -76.997702, 38.961474 ], [ -76.997745, 38.961461 ], [ -76.997868, 38.961424 ], [ -76.997911, 38.961407 ], [ -76.997954, 38.961394 ], [ -76.998142, 38.961332 ], [ -76.998271, 38.961286 ], [ -76.998362, 38.961252 ], [ -76.998453, 38.961219 ], [ -76.998539, 38.961182 ], [ -76.998630, 38.961140 ], [ -76.998802, 38.961056 ], [ -76.998888, 38.961011 ], [ -76.999016, 38.960944 ], [ -76.999070, 38.960910 ], [ -76.999102, 38.960894 ], [ -76.999258, 38.960798 ], [ -76.999376, 38.960719 ], [ -76.999488, 38.960639 ], [ -76.999542, 38.960598 ], [ -76.999649, 38.960514 ], [ -76.999730, 38.960447 ], [ -76.999789, 38.960393 ], [ -76.999907, 38.960289 ], [ -76.999934, 38.960264 ], [ -76.999961, 38.960239 ], [ -77.000057, 38.960139 ], [ -77.000095, 38.960097 ], [ -77.000202, 38.959980 ], [ -77.000256, 38.959922 ], [ -77.000352, 38.959805 ], [ -77.000449, 38.959680 ], [ -77.000497, 38.959613 ], [ -77.000556, 38.959538 ], [ -77.000915, 38.959063 ], [ -77.001060, 38.958867 ], [ -77.001130, 38.958775 ], [ -77.001237, 38.958608 ], [ -77.001414, 38.958199 ], [ -77.001492, 38.958074 ], [ -77.009045, 38.958074 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001100", "GEOID": "11001001100", "NAME": "11", "NAMELSAD": "Census Tract 11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1676650, "AWATER": 0, "INTPTLAT": "+38.9572432", "INTPTLON": "-077.0776732" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.081795, 38.958074 ], [ -77.081795, 38.963859 ], [ -77.080470, 38.964890 ], [ -77.080357, 38.964952 ], [ -77.080266, 38.965048 ], [ -77.078174, 38.966692 ], [ -77.077557, 38.967180 ], [ -77.077423, 38.967305 ], [ -77.077369, 38.967271 ], [ -77.077342, 38.967255 ], [ -77.077315, 38.967246 ], [ -77.077294, 38.967238 ], [ -77.077208, 38.967221 ], [ -77.077165, 38.967217 ], [ -77.077063, 38.967155 ], [ -77.076983, 38.967104 ], [ -77.076924, 38.967063 ], [ -77.076865, 38.967009 ], [ -77.076790, 38.966913 ], [ -77.076623, 38.966717 ], [ -77.076575, 38.966629 ], [ -77.076522, 38.966546 ], [ -77.076280, 38.966124 ], [ -77.076151, 38.965907 ], [ -77.076082, 38.965786 ], [ -77.075749, 38.965211 ], [ -77.075572, 38.964902 ], [ -77.075368, 38.964556 ], [ -77.075046, 38.963997 ], [ -77.074682, 38.963380 ], [ -77.074521, 38.963092 ], [ -77.073925, 38.962074 ], [ -77.073308, 38.961019 ], [ -77.073255, 38.960931 ], [ -77.072901, 38.960318 ], [ -77.072536, 38.959688 ], [ -77.072230, 38.959171 ], [ -77.072150, 38.959025 ], [ -77.072107, 38.958950 ], [ -77.071763, 38.958358 ], [ -77.071742, 38.958320 ], [ -77.071602, 38.958091 ], [ -77.071593, 38.958074 ], [ -77.081795, 38.958074 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001301", "GEOID": "11001001301", "NAME": "13.01", "NAMELSAD": "Census Tract 13.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2855501, "AWATER": 26550, "INTPTLAT": "+38.9519215", "INTPTLON": "-077.0520508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.040499, 38.959588 ], [ -77.040510, 38.959542 ], [ -77.040553, 38.959430 ], [ -77.040639, 38.959342 ], [ -77.040923, 38.959088 ], [ -77.041084, 38.958929 ], [ -77.041122, 38.958783 ], [ -77.041186, 38.958591 ], [ -77.041288, 38.958441 ], [ -77.041470, 38.958291 ], [ -77.041824, 38.958137 ], [ -77.041900, 38.958095 ], [ -77.041921, 38.958078 ], [ -77.041929, 38.958074 ], [ -77.066829, 38.958074 ], [ -77.066678, 38.958178 ], [ -77.066318, 38.958429 ], [ -77.066200, 38.958512 ], [ -77.066163, 38.958549 ], [ -77.066034, 38.958616 ], [ -77.065927, 38.958608 ], [ -77.065793, 38.958595 ], [ -77.065723, 38.958591 ], [ -77.065589, 38.958575 ], [ -77.065519, 38.958562 ], [ -77.065337, 38.958533 ], [ -77.065256, 38.958516 ], [ -77.065181, 38.958499 ], [ -77.065122, 38.958479 ], [ -77.064961, 38.958445 ], [ -77.064929, 38.958437 ], [ -77.064886, 38.958429 ], [ -77.064521, 38.958341 ], [ -77.064269, 38.958278 ], [ -77.064103, 38.958232 ], [ -77.063937, 38.958182 ], [ -77.063776, 38.958132 ], [ -77.063647, 38.958095 ], [ -77.063599, 38.958078 ], [ -77.063583, 38.958074 ], [ -77.056653, 38.958074 ], [ -77.056528, 38.958157 ], [ -77.056437, 38.958220 ], [ -77.056410, 38.958228 ], [ -77.056383, 38.958245 ], [ -77.056362, 38.958262 ], [ -77.056341, 38.958278 ], [ -77.056324, 38.958295 ], [ -77.056308, 38.958316 ], [ -77.056287, 38.958337 ], [ -77.056249, 38.958378 ], [ -77.056185, 38.958462 ], [ -77.056153, 38.958508 ], [ -77.056115, 38.958562 ], [ -77.056083, 38.958616 ], [ -77.056056, 38.958675 ], [ -77.056029, 38.958733 ], [ -77.056013, 38.958791 ], [ -77.056003, 38.958825 ], [ -77.056003, 38.958858 ], [ -77.056003, 38.958887 ], [ -77.056003, 38.958921 ], [ -77.056013, 38.958979 ], [ -77.056019, 38.959004 ], [ -77.056099, 38.959505 ], [ -77.056121, 38.959630 ], [ -77.056137, 38.959692 ], [ -77.056158, 38.959780 ], [ -77.056180, 38.959880 ], [ -77.056190, 38.959955 ], [ -77.056196, 38.960005 ], [ -77.056206, 38.960130 ], [ -77.056206, 38.960193 ], [ -77.056206, 38.960256 ], [ -77.056206, 38.960347 ], [ -77.056206, 38.960614 ], [ -77.056196, 38.960873 ], [ -77.056196, 38.961015 ], [ -77.055928, 38.961015 ], [ -77.055750, 38.961015 ], [ -77.055552, 38.961019 ], [ -77.055380, 38.961027 ], [ -77.055176, 38.961040 ], [ -77.054924, 38.961065 ], [ -77.054865, 38.961073 ], [ -77.054817, 38.961077 ], [ -77.054554, 38.961111 ], [ -77.054307, 38.961148 ], [ -77.054120, 38.961182 ], [ -77.053830, 38.961244 ], [ -77.053750, 38.961265 ], [ -77.053674, 38.961282 ], [ -77.053594, 38.961303 ], [ -77.053492, 38.961332 ], [ -77.053379, 38.961365 ], [ -77.053224, 38.961424 ], [ -77.052698, 38.961674 ], [ -77.052215, 38.961836 ], [ -77.052054, 38.961882 ], [ -77.051856, 38.961924 ], [ -77.051663, 38.961941 ], [ -77.051464, 38.961949 ], [ -77.051255, 38.961941 ], [ -77.051175, 38.961941 ], [ -77.051105, 38.961937 ], [ -77.051041, 38.961932 ], [ -77.050971, 38.961928 ], [ -77.050906, 38.961920 ], [ -77.050778, 38.961903 ], [ -77.050703, 38.961887 ], [ -77.050627, 38.961874 ], [ -77.050558, 38.961853 ], [ -77.050418, 38.961811 ], [ -77.050349, 38.961786 ], [ -77.050225, 38.961728 ], [ -77.050155, 38.961699 ], [ -77.050048, 38.961632 ], [ -77.050005, 38.961603 ], [ -77.049962, 38.961574 ], [ -77.049919, 38.961544 ], [ -77.049876, 38.961507 ], [ -77.049807, 38.961449 ], [ -77.049764, 38.961415 ], [ -77.049716, 38.961382 ], [ -77.049673, 38.961340 ], [ -77.049420, 38.961136 ], [ -77.049351, 38.961086 ], [ -77.049286, 38.961040 ], [ -77.049217, 38.960990 ], [ -77.049158, 38.960952 ], [ -77.049088, 38.960910 ], [ -77.048938, 38.960831 ], [ -77.048868, 38.960798 ], [ -77.048804, 38.960764 ], [ -77.048718, 38.960727 ], [ -77.048648, 38.960702 ], [ -77.048578, 38.960673 ], [ -77.048503, 38.960643 ], [ -77.048460, 38.960623 ], [ -77.048305, 38.960581 ], [ -77.048112, 38.960527 ], [ -77.047881, 38.960477 ], [ -77.047741, 38.960452 ], [ -77.047580, 38.960431 ], [ -77.047398, 38.960406 ], [ -77.047210, 38.960385 ], [ -77.047017, 38.960377 ], [ -77.046652, 38.960368 ], [ -77.046245, 38.960385 ], [ -77.045918, 38.960422 ], [ -77.045569, 38.960477 ], [ -77.045177, 38.960598 ], [ -77.044845, 38.960702 ], [ -77.044582, 38.960798 ], [ -77.044083, 38.961048 ], [ -77.043718, 38.961244 ], [ -77.043520, 38.961365 ], [ -77.043461, 38.961394 ], [ -77.043369, 38.961303 ], [ -77.042972, 38.960898 ], [ -77.042522, 38.960593 ], [ -77.042275, 38.960439 ], [ -77.042189, 38.960393 ], [ -77.042130, 38.960347 ], [ -77.041975, 38.960226 ], [ -77.041808, 38.960126 ], [ -77.041556, 38.960064 ], [ -77.041309, 38.960030 ], [ -77.041084, 38.960014 ], [ -77.040891, 38.959968 ], [ -77.040789, 38.959905 ], [ -77.040644, 38.959776 ], [ -77.040553, 38.959684 ], [ -77.040499, 38.959588 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002600", "GEOID": "11001002600", "NAME": "26", "NAMELSAD": "Census Tract 26", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2106150, "AWATER": 60195, "INTPTLAT": "+38.9464323", "INTPTLON": "-077.0404553" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.041197, 38.960714 ], [ -77.041154, 38.960698 ], [ -77.040880, 38.960631 ], [ -77.040451, 38.960543 ], [ -77.040371, 38.960527 ], [ -77.040317, 38.960510 ], [ -77.040263, 38.960493 ], [ -77.040210, 38.960472 ], [ -77.040145, 38.960439 ], [ -77.040113, 38.960422 ], [ -77.040086, 38.960402 ], [ -77.040027, 38.960360 ], [ -77.040001, 38.960339 ], [ -77.039974, 38.960314 ], [ -77.039947, 38.960293 ], [ -77.039925, 38.960268 ], [ -77.039845, 38.960176 ], [ -77.039834, 38.960160 ], [ -77.039807, 38.960126 ], [ -77.039775, 38.960097 ], [ -77.039743, 38.960068 ], [ -77.039689, 38.960030 ], [ -77.039636, 38.960001 ], [ -77.039604, 38.959989 ], [ -77.039577, 38.959976 ], [ -77.039545, 38.959968 ], [ -77.039518, 38.959959 ], [ -77.039486, 38.959951 ], [ -77.039453, 38.959947 ], [ -77.039421, 38.959943 ], [ -77.039319, 38.959934 ], [ -77.039276, 38.959934 ], [ -77.039207, 38.959926 ], [ -77.039164, 38.959922 ], [ -77.039126, 38.959914 ], [ -77.039089, 38.959905 ], [ -77.039019, 38.959888 ], [ -77.038987, 38.959880 ], [ -77.038917, 38.959851 ], [ -77.038885, 38.959838 ], [ -77.038826, 38.959805 ], [ -77.038804, 38.959793 ], [ -77.038761, 38.959768 ], [ -77.038708, 38.959722 ], [ -77.038670, 38.959688 ], [ -77.038638, 38.959655 ], [ -77.038622, 38.959617 ], [ -77.038606, 38.959584 ], [ -77.038600, 38.959546 ], [ -77.038600, 38.959509 ], [ -77.038600, 38.959467 ], [ -77.038611, 38.959434 ], [ -77.038627, 38.959396 ], [ -77.038649, 38.959363 ], [ -77.038676, 38.959330 ], [ -77.038708, 38.959300 ], [ -77.038735, 38.959284 ], [ -77.038761, 38.959271 ], [ -77.038788, 38.959254 ], [ -77.038815, 38.959242 ], [ -77.038847, 38.959234 ], [ -77.038879, 38.959225 ], [ -77.038912, 38.959217 ], [ -77.038944, 38.959213 ], [ -77.038976, 38.959213 ], [ -77.039089, 38.959213 ], [ -77.039164, 38.959204 ], [ -77.039201, 38.959196 ], [ -77.039239, 38.959188 ], [ -77.039271, 38.959175 ], [ -77.039309, 38.959159 ], [ -77.039341, 38.959142 ], [ -77.039373, 38.959125 ], [ -77.039405, 38.959100 ], [ -77.039437, 38.959075 ], [ -77.039464, 38.959050 ], [ -77.039491, 38.959021 ], [ -77.039512, 38.958987 ], [ -77.039534, 38.958954 ], [ -77.039550, 38.958921 ], [ -77.039561, 38.958887 ], [ -77.039571, 38.958854 ], [ -77.039577, 38.958816 ], [ -77.039582, 38.958771 ], [ -77.039587, 38.958725 ], [ -77.039593, 38.958650 ], [ -77.039587, 38.958458 ], [ -77.039582, 38.958408 ], [ -77.039587, 38.958333 ], [ -77.039593, 38.958287 ], [ -77.039614, 38.958187 ], [ -77.039625, 38.958145 ], [ -77.039651, 38.958074 ], [ -77.041929, 38.958074 ], [ -77.041921, 38.958078 ], [ -77.041900, 38.958095 ], [ -77.041824, 38.958137 ], [ -77.041470, 38.958291 ], [ -77.041288, 38.958441 ], [ -77.041186, 38.958591 ], [ -77.041122, 38.958783 ], [ -77.041084, 38.958929 ], [ -77.040923, 38.959088 ], [ -77.040639, 38.959342 ], [ -77.040553, 38.959430 ], [ -77.040510, 38.959542 ], [ -77.040499, 38.959588 ], [ -77.040553, 38.959684 ], [ -77.040644, 38.959776 ], [ -77.040789, 38.959905 ], [ -77.040891, 38.959968 ], [ -77.041084, 38.960014 ], [ -77.041309, 38.960030 ], [ -77.041556, 38.960064 ], [ -77.041808, 38.960126 ], [ -77.041975, 38.960226 ], [ -77.042130, 38.960347 ], [ -77.042189, 38.960393 ], [ -77.042130, 38.960431 ], [ -77.041996, 38.960535 ], [ -77.041910, 38.960598 ], [ -77.041878, 38.960618 ], [ -77.041846, 38.960639 ], [ -77.041808, 38.960664 ], [ -77.041755, 38.960702 ], [ -77.041701, 38.960752 ], [ -77.041197, 38.960714 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002001", "GEOID": "11001002001", "NAME": "20.01", "NAMELSAD": "Census Tract 20.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 632724, "AWATER": 1132, "INTPTLAT": "+38.9597034", "INTPTLON": "-077.0351061" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.043461, 38.961394 ], [ -77.043380, 38.961457 ], [ -77.043284, 38.961507 ], [ -77.041009, 38.962750 ], [ -77.040644, 38.962917 ], [ -77.040381, 38.963000 ], [ -77.040263, 38.963034 ], [ -77.040043, 38.963075 ], [ -77.039770, 38.963096 ], [ -77.039115, 38.963142 ], [ -77.039003, 38.963130 ], [ -77.038600, 38.963092 ], [ -77.038230, 38.963013 ], [ -77.037603, 38.962883 ], [ -77.036417, 38.962591 ], [ -77.036385, 38.962583 ], [ -77.036299, 38.962566 ], [ -77.035870, 38.962475 ], [ -77.034969, 38.962279 ], [ -77.034792, 38.962241 ], [ -77.034336, 38.962170 ], [ -77.033424, 38.962041 ], [ -77.031997, 38.961836 ], [ -77.029690, 38.961507 ], [ -77.029567, 38.961486 ], [ -77.029143, 38.961419 ], [ -77.028982, 38.961398 ], [ -77.028671, 38.961365 ], [ -77.028515, 38.961340 ], [ -77.028505, 38.961290 ], [ -77.028505, 38.961269 ], [ -77.028510, 38.961248 ], [ -77.028531, 38.961202 ], [ -77.028548, 38.961186 ], [ -77.028585, 38.961140 ], [ -77.028751, 38.960990 ], [ -77.029245, 38.960535 ], [ -77.029476, 38.960318 ], [ -77.029508, 38.960289 ], [ -77.029529, 38.960272 ], [ -77.029572, 38.960251 ], [ -77.029615, 38.960231 ], [ -77.029642, 38.960222 ], [ -77.029669, 38.960218 ], [ -77.029690, 38.960210 ], [ -77.029980, 38.960018 ], [ -77.030023, 38.959989 ], [ -77.030103, 38.959930 ], [ -77.030119, 38.959918 ], [ -77.030157, 38.959880 ], [ -77.030371, 38.959647 ], [ -77.030607, 38.959375 ], [ -77.030720, 38.959238 ], [ -77.030806, 38.959142 ], [ -77.031149, 38.958737 ], [ -77.031380, 38.958462 ], [ -77.031471, 38.958349 ], [ -77.031573, 38.958232 ], [ -77.031705, 38.958074 ], [ -77.039651, 38.958074 ], [ -77.039625, 38.958145 ], [ -77.039614, 38.958187 ], [ -77.039593, 38.958287 ], [ -77.039587, 38.958333 ], [ -77.039582, 38.958408 ], [ -77.039587, 38.958458 ], [ -77.039593, 38.958650 ], [ -77.039587, 38.958725 ], [ -77.039582, 38.958771 ], [ -77.039577, 38.958816 ], [ -77.039571, 38.958854 ], [ -77.039561, 38.958887 ], [ -77.039550, 38.958921 ], [ -77.039534, 38.958954 ], [ -77.039512, 38.958987 ], [ -77.039491, 38.959021 ], [ -77.039464, 38.959050 ], [ -77.039437, 38.959075 ], [ -77.039405, 38.959100 ], [ -77.039373, 38.959125 ], [ -77.039341, 38.959142 ], [ -77.039309, 38.959159 ], [ -77.039271, 38.959175 ], [ -77.039239, 38.959188 ], [ -77.039201, 38.959196 ], [ -77.039164, 38.959204 ], [ -77.039089, 38.959213 ], [ -77.038976, 38.959213 ], [ -77.038944, 38.959213 ], [ -77.038912, 38.959217 ], [ -77.038879, 38.959225 ], [ -77.038847, 38.959234 ], [ -77.038815, 38.959242 ], [ -77.038788, 38.959254 ], [ -77.038761, 38.959271 ], [ -77.038735, 38.959284 ], [ -77.038708, 38.959300 ], [ -77.038676, 38.959330 ], [ -77.038649, 38.959363 ], [ -77.038627, 38.959396 ], [ -77.038611, 38.959434 ], [ -77.038600, 38.959467 ], [ -77.038600, 38.959509 ], [ -77.038600, 38.959546 ], [ -77.038606, 38.959584 ], [ -77.038622, 38.959617 ], [ -77.038638, 38.959655 ], [ -77.038670, 38.959688 ], [ -77.038708, 38.959722 ], [ -77.038761, 38.959768 ], [ -77.038804, 38.959793 ], [ -77.038826, 38.959805 ], [ -77.038885, 38.959838 ], [ -77.038917, 38.959851 ], [ -77.038987, 38.959880 ], [ -77.039019, 38.959888 ], [ -77.039089, 38.959905 ], [ -77.039126, 38.959914 ], [ -77.039164, 38.959922 ], [ -77.039207, 38.959926 ], [ -77.039276, 38.959934 ], [ -77.039319, 38.959934 ], [ -77.039421, 38.959943 ], [ -77.039453, 38.959947 ], [ -77.039486, 38.959951 ], [ -77.039518, 38.959959 ], [ -77.039545, 38.959968 ], [ -77.039577, 38.959976 ], [ -77.039604, 38.959989 ], [ -77.039636, 38.960001 ], [ -77.039689, 38.960030 ], [ -77.039743, 38.960068 ], [ -77.039775, 38.960097 ], [ -77.039807, 38.960126 ], [ -77.039834, 38.960160 ], [ -77.039845, 38.960176 ], [ -77.039925, 38.960268 ], [ -77.039947, 38.960293 ], [ -77.039974, 38.960314 ], [ -77.040001, 38.960339 ], [ -77.040027, 38.960360 ], [ -77.040086, 38.960402 ], [ -77.040113, 38.960422 ], [ -77.040145, 38.960439 ], [ -77.040210, 38.960472 ], [ -77.040263, 38.960493 ], [ -77.040317, 38.960510 ], [ -77.040371, 38.960527 ], [ -77.040451, 38.960543 ], [ -77.040880, 38.960631 ], [ -77.041154, 38.960698 ], [ -77.041197, 38.960714 ], [ -77.041701, 38.960752 ], [ -77.041755, 38.960702 ], [ -77.041808, 38.960664 ], [ -77.041846, 38.960639 ], [ -77.041878, 38.960618 ], [ -77.041910, 38.960598 ], [ -77.041996, 38.960535 ], [ -77.042130, 38.960431 ], [ -77.042189, 38.960393 ], [ -77.042275, 38.960439 ], [ -77.042522, 38.960593 ], [ -77.042972, 38.960898 ], [ -77.043369, 38.961303 ], [ -77.043461, 38.961394 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002002", "GEOID": "11001002002", "NAME": "20.02", "NAMELSAD": "Census Tract 20.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 849376, "AWATER": 0, "INTPTLAT": "+38.9525009", "INTPTLON": "-077.0310824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.028515, 38.961340 ], [ -77.028156, 38.961294 ], [ -77.028054, 38.961261 ], [ -77.028011, 38.961227 ], [ -77.028011, 38.961194 ], [ -77.028027, 38.961040 ], [ -77.028027, 38.961015 ], [ -77.028049, 38.960735 ], [ -77.028102, 38.960022 ], [ -77.028161, 38.959342 ], [ -77.028210, 38.958712 ], [ -77.028226, 38.958504 ], [ -77.028231, 38.958349 ], [ -77.028236, 38.958287 ], [ -77.028236, 38.958128 ], [ -77.028236, 38.958074 ], [ -77.031705, 38.958074 ], [ -77.031573, 38.958232 ], [ -77.031471, 38.958349 ], [ -77.031380, 38.958462 ], [ -77.031149, 38.958737 ], [ -77.030806, 38.959142 ], [ -77.030720, 38.959238 ], [ -77.030607, 38.959375 ], [ -77.030371, 38.959647 ], [ -77.030157, 38.959880 ], [ -77.030119, 38.959918 ], [ -77.030103, 38.959930 ], [ -77.030023, 38.959989 ], [ -77.029980, 38.960018 ], [ -77.029690, 38.960210 ], [ -77.029669, 38.960218 ], [ -77.029642, 38.960222 ], [ -77.029615, 38.960231 ], [ -77.029572, 38.960251 ], [ -77.029529, 38.960272 ], [ -77.029508, 38.960289 ], [ -77.029476, 38.960318 ], [ -77.029245, 38.960535 ], [ -77.028751, 38.960990 ], [ -77.028585, 38.961140 ], [ -77.028548, 38.961186 ], [ -77.028531, 38.961202 ], [ -77.028510, 38.961248 ], [ -77.028505, 38.961269 ], [ -77.028505, 38.961290 ], [ -77.028515, 38.961340 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002101", "GEOID": "11001002101", "NAME": "21.01", "NAMELSAD": "Census Tract 21.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 600992, "AWATER": 0, "INTPTLAT": "+38.9559119", "INTPTLON": "-077.0241312" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.028027, 38.961015 ], [ -77.027990, 38.960961 ], [ -77.027920, 38.960919 ], [ -77.027834, 38.960890 ], [ -77.027678, 38.960860 ], [ -77.027603, 38.960856 ], [ -77.027491, 38.960815 ], [ -77.027056, 38.960660 ], [ -77.026777, 38.960568 ], [ -77.025946, 38.960301 ], [ -77.025286, 38.960085 ], [ -77.024320, 38.959768 ], [ -77.024192, 38.959726 ], [ -77.024090, 38.959692 ], [ -77.023886, 38.959626 ], [ -77.023521, 38.959505 ], [ -77.023162, 38.959388 ], [ -77.022958, 38.959321 ], [ -77.022437, 38.959154 ], [ -77.022330, 38.959117 ], [ -77.022067, 38.959033 ], [ -77.021697, 38.958908 ], [ -77.021332, 38.958791 ], [ -77.021150, 38.958733 ], [ -77.020828, 38.958741 ], [ -77.020764, 38.958741 ], [ -77.020624, 38.958741 ], [ -77.020463, 38.958741 ], [ -77.020356, 38.958737 ], [ -77.020217, 38.958733 ], [ -77.019895, 38.958733 ], [ -77.019895, 38.958708 ], [ -77.019938, 38.958466 ], [ -77.019954, 38.958341 ], [ -77.019954, 38.958308 ], [ -77.019964, 38.958245 ], [ -77.019964, 38.958178 ], [ -77.019964, 38.958078 ], [ -77.019964, 38.958074 ], [ -77.028236, 38.958074 ], [ -77.028236, 38.958128 ], [ -77.028236, 38.958287 ], [ -77.028231, 38.958349 ], [ -77.028226, 38.958504 ], [ -77.028210, 38.958712 ], [ -77.028161, 38.959342 ], [ -77.028102, 38.960022 ], [ -77.028049, 38.960735 ], [ -77.028027, 38.961015 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002102", "GEOID": "11001002102", "NAME": "21.02", "NAMELSAD": "Census Tract 21.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 725975, "AWATER": 0, "INTPTLAT": "+38.9557854", "INTPTLON": "-077.0142356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009246, 38.960185 ], [ -77.009187, 38.960034 ], [ -77.009155, 38.959943 ], [ -77.009107, 38.959809 ], [ -77.009091, 38.959759 ], [ -77.009064, 38.959692 ], [ -77.009053, 38.959647 ], [ -77.009048, 38.959609 ], [ -77.009048, 38.959580 ], [ -77.009043, 38.959551 ], [ -77.009048, 38.959446 ], [ -77.009048, 38.959150 ], [ -77.009048, 38.958892 ], [ -77.009048, 38.958808 ], [ -77.009043, 38.958729 ], [ -77.009043, 38.958650 ], [ -77.009043, 38.958508 ], [ -77.009043, 38.958399 ], [ -77.009045, 38.958074 ], [ -77.019964, 38.958074 ], [ -77.019964, 38.958078 ], [ -77.019964, 38.958178 ], [ -77.019964, 38.958245 ], [ -77.019954, 38.958308 ], [ -77.019954, 38.958341 ], [ -77.019938, 38.958466 ], [ -77.019895, 38.958708 ], [ -77.019895, 38.958733 ], [ -77.019659, 38.958733 ], [ -77.019315, 38.958737 ], [ -77.018779, 38.958733 ], [ -77.018495, 38.958737 ], [ -77.018183, 38.958737 ], [ -77.018028, 38.958737 ], [ -77.017803, 38.958733 ], [ -77.017432, 38.958737 ], [ -77.017094, 38.958737 ], [ -77.017003, 38.958737 ], [ -77.016912, 38.958737 ], [ -77.016676, 38.958737 ], [ -77.016365, 38.958733 ], [ -77.016166, 38.958733 ], [ -77.015185, 38.958733 ], [ -77.014756, 38.958733 ], [ -77.014090, 38.958733 ], [ -77.013667, 38.958733 ], [ -77.013597, 38.958733 ], [ -77.013420, 38.958733 ], [ -77.012326, 38.960197 ], [ -77.012229, 38.960172 ], [ -77.012197, 38.960168 ], [ -77.012165, 38.960164 ], [ -77.012132, 38.960164 ], [ -77.011880, 38.960164 ], [ -77.011612, 38.960160 ], [ -77.011237, 38.960164 ], [ -77.010958, 38.960160 ], [ -77.010555, 38.960164 ], [ -77.009413, 38.960160 ], [ -77.009348, 38.960164 ], [ -77.009246, 38.960185 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009507", "GEOID": "11001009507", "NAME": "95.07", "NAMELSAD": "Census Tract 95.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295290, "AWATER": 0, "INTPTLAT": "+38.9584945", "INTPTLON": "-076.9977787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.001492, 38.958074 ], [ -77.001414, 38.958199 ], [ -77.001237, 38.958608 ], [ -77.001130, 38.958775 ], [ -77.001060, 38.958867 ], [ -77.000915, 38.959063 ], [ -77.000556, 38.959538 ], [ -77.000497, 38.959613 ], [ -77.000449, 38.959680 ], [ -77.000352, 38.959805 ], [ -77.000256, 38.959922 ], [ -77.000202, 38.959980 ], [ -77.000095, 38.960097 ], [ -77.000057, 38.960139 ], [ -76.999961, 38.960239 ], [ -76.999934, 38.960264 ], [ -76.999907, 38.960289 ], [ -76.999789, 38.960393 ], [ -76.999730, 38.960447 ], [ -76.999649, 38.960514 ], [ -76.999542, 38.960598 ], [ -76.999488, 38.960639 ], [ -76.999376, 38.960719 ], [ -76.999258, 38.960798 ], [ -76.999102, 38.960894 ], [ -76.999070, 38.960910 ], [ -76.999016, 38.960944 ], [ -76.998888, 38.961011 ], [ -76.998802, 38.961056 ], [ -76.998630, 38.961140 ], [ -76.998539, 38.961182 ], [ -76.998453, 38.961219 ], [ -76.998362, 38.961252 ], [ -76.998271, 38.961286 ], [ -76.998142, 38.961332 ], [ -76.997954, 38.961394 ], [ -76.997911, 38.961407 ], [ -76.997868, 38.961424 ], [ -76.997745, 38.961461 ], [ -76.997702, 38.961474 ], [ -76.997536, 38.961528 ], [ -76.997439, 38.961557 ], [ -76.997289, 38.961603 ], [ -76.997225, 38.961615 ], [ -76.997198, 38.961590 ], [ -76.997107, 38.961524 ], [ -76.996908, 38.961369 ], [ -76.996656, 38.961169 ], [ -76.996163, 38.960789 ], [ -76.995701, 38.960431 ], [ -76.995621, 38.960368 ], [ -76.995036, 38.959905 ], [ -76.994435, 38.959434 ], [ -76.994349, 38.959367 ], [ -76.994264, 38.959300 ], [ -76.994237, 38.959284 ], [ -76.993700, 38.958862 ], [ -76.993271, 38.958529 ], [ -76.993244, 38.958508 ], [ -76.993073, 38.958374 ], [ -76.992874, 38.958220 ], [ -76.992740, 38.958111 ], [ -76.992692, 38.958074 ], [ -77.001492, 38.958074 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1172, "y": 1567 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008100", "GEOID": "11001008100", "NAME": "81", "NAMELSAD": "Census Tract 81", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 290284, "AWATER": 0, "INTPTLAT": "+38.8931710", "INTPTLON": "-076.9925272" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.892369 ], [ -76.990235, 38.892369 ], [ -76.990235, 38.892336 ], [ -76.990235, 38.892018 ], [ -76.990235, 38.891935 ], [ -76.990235, 38.891133 ], [ -76.990235, 38.890966 ], [ -76.990235, 38.890365 ], [ -76.990943, 38.890365 ], [ -76.991436, 38.890365 ], [ -76.991522, 38.890365 ], [ -76.991522, 38.890114 ], [ -76.991522, 38.889797 ], [ -76.991801, 38.889797 ], [ -76.992638, 38.889797 ], [ -76.993089, 38.889797 ], [ -76.993754, 38.889797 ], [ -76.993904, 38.889797 ], [ -76.993904, 38.892369 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007203", "GEOID": "11001007203", "NAME": "72.03", "NAMELSAD": "Census Tract 72.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 384178, "AWATER": 0, "INTPTLAT": "+38.8781777", "INTPTLON": "-076.9994857" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.993904, 38.878405 ], [ -76.993732, 38.878372 ], [ -76.993346, 38.878272 ], [ -76.992960, 38.878188 ], [ -76.992359, 38.878071 ], [ -76.991909, 38.877938 ], [ -76.991630, 38.877837 ], [ -76.991522, 38.877771 ], [ -76.991522, 38.877704 ], [ -76.991522, 38.877537 ], [ -76.991522, 38.877219 ], [ -76.991544, 38.876501 ], [ -76.991801, 38.876484 ], [ -76.992660, 38.876468 ], [ -76.993775, 38.876468 ], [ -76.993904, 38.876468 ], [ -76.993904, 38.878405 ] ] ], [ [ [ -76.993904, 38.884586 ], [ -76.993818, 38.884586 ], [ -76.993775, 38.884586 ], [ -76.993754, 38.884586 ], [ -76.993754, 38.884185 ], [ -76.993754, 38.884101 ], [ -76.993754, 38.883817 ], [ -76.993754, 38.883801 ], [ -76.992638, 38.883350 ], [ -76.992509, 38.883300 ], [ -76.991909, 38.883049 ], [ -76.991694, 38.882966 ], [ -76.991522, 38.882882 ], [ -76.991522, 38.882799 ], [ -76.991522, 38.882648 ], [ -76.991522, 38.881880 ], [ -76.991522, 38.881512 ], [ -76.991522, 38.881362 ], [ -76.991522, 38.881262 ], [ -76.991522, 38.880427 ], [ -76.991522, 38.879742 ], [ -76.991522, 38.879274 ], [ -76.991522, 38.878405 ], [ -76.991522, 38.878339 ], [ -76.991522, 38.878222 ], [ -76.991522, 38.878105 ], [ -76.991522, 38.878088 ], [ -76.991522, 38.877954 ], [ -76.991522, 38.877771 ], [ -76.991630, 38.877837 ], [ -76.991909, 38.877938 ], [ -76.992359, 38.878071 ], [ -76.992960, 38.878188 ], [ -76.993346, 38.878272 ], [ -76.993732, 38.878372 ], [ -76.993904, 38.878405 ], [ -76.993904, 38.884586 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007201", "GEOID": "11001007201", "NAME": "72.01", "NAMELSAD": "Census Tract 72.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 781457, "AWATER": 312419, "INTPTLAT": "+38.8738481", "INTPTLON": "-076.9999179" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.876468 ], [ -76.993775, 38.876468 ], [ -76.992660, 38.876468 ], [ -76.991801, 38.876484 ], [ -76.991544, 38.876501 ], [ -76.991479, 38.874597 ], [ -76.991458, 38.874380 ], [ -76.991415, 38.874029 ], [ -76.991372, 38.873695 ], [ -76.991286, 38.873294 ], [ -76.991265, 38.873227 ], [ -76.991222, 38.873093 ], [ -76.991158, 38.872960 ], [ -76.991093, 38.872826 ], [ -76.990921, 38.872475 ], [ -76.990771, 38.872225 ], [ -76.990106, 38.871339 ], [ -76.990299, 38.871206 ], [ -76.992466, 38.870120 ], [ -76.992660, 38.870120 ], [ -76.993818, 38.870103 ], [ -76.993904, 38.870103 ], [ -76.993904, 38.876468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007401", "GEOID": "11001007401", "NAME": "74.01", "NAMELSAD": "Census Tract 74.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1209113, "AWATER": 200980, "INTPTLAT": "+38.8675208", "INTPTLON": "-076.9991203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.870103 ], [ -76.993818, 38.870103 ], [ -76.992660, 38.870120 ], [ -76.992466, 38.870120 ], [ -76.990299, 38.871206 ], [ -76.990106, 38.871339 ], [ -76.989570, 38.870671 ], [ -76.989419, 38.870504 ], [ -76.989226, 38.870270 ], [ -76.988840, 38.869802 ], [ -76.988583, 38.869468 ], [ -76.988583, 38.869451 ], [ -76.988540, 38.869418 ], [ -76.988475, 38.869318 ], [ -76.988347, 38.869134 ], [ -76.988411, 38.869101 ], [ -76.988475, 38.869067 ], [ -76.988497, 38.869067 ], [ -76.988583, 38.869017 ], [ -76.988711, 38.868933 ], [ -76.988862, 38.868850 ], [ -76.988969, 38.868766 ], [ -76.989076, 38.868700 ], [ -76.989248, 38.868549 ], [ -76.989291, 38.868516 ], [ -76.989398, 38.868432 ], [ -76.989484, 38.868365 ], [ -76.989870, 38.868065 ], [ -76.990106, 38.867848 ], [ -76.990321, 38.867597 ], [ -76.990600, 38.867279 ], [ -76.991072, 38.866661 ], [ -76.991115, 38.866611 ], [ -76.991136, 38.866578 ], [ -76.991286, 38.866394 ], [ -76.991329, 38.866310 ], [ -76.991501, 38.866093 ], [ -76.991608, 38.865926 ], [ -76.991694, 38.865826 ], [ -76.991758, 38.865759 ], [ -76.991844, 38.865659 ], [ -76.991930, 38.865575 ], [ -76.991994, 38.865509 ], [ -76.992273, 38.865241 ], [ -76.992424, 38.865091 ], [ -76.992445, 38.865074 ], [ -76.992488, 38.865041 ], [ -76.992595, 38.864957 ], [ -76.992724, 38.864857 ], [ -76.992509, 38.864690 ], [ -76.992338, 38.864573 ], [ -76.992316, 38.864556 ], [ -76.991823, 38.864222 ], [ -76.991758, 38.864172 ], [ -76.991415, 38.863955 ], [ -76.991415, 38.863938 ], [ -76.991394, 38.863921 ], [ -76.991351, 38.863871 ], [ -76.991115, 38.863570 ], [ -76.991093, 38.863520 ], [ -76.991050, 38.863470 ], [ -76.991007, 38.863420 ], [ -76.991222, 38.863320 ], [ -76.991501, 38.863153 ], [ -76.992252, 38.862768 ], [ -76.992681, 38.862535 ], [ -76.992981, 38.862367 ], [ -76.993089, 38.862301 ], [ -76.993132, 38.862284 ], [ -76.993153, 38.862267 ], [ -76.993217, 38.862217 ], [ -76.993239, 38.862217 ], [ -76.993260, 38.862184 ], [ -76.993303, 38.862150 ], [ -76.993539, 38.861833 ], [ -76.993625, 38.861733 ], [ -76.993754, 38.861565 ], [ -76.993818, 38.861448 ], [ -76.993904, 38.861332 ], [ -76.993904, 38.860095 ], [ -76.993861, 38.860028 ], [ -76.993754, 38.859778 ], [ -76.993647, 38.859443 ], [ -76.993604, 38.859159 ], [ -76.993582, 38.858942 ], [ -76.993604, 38.858474 ], [ -76.993625, 38.857706 ], [ -76.993647, 38.857188 ], [ -76.993647, 38.856703 ], [ -76.993668, 38.855918 ], [ -76.993625, 38.855734 ], [ -76.993539, 38.855467 ], [ -76.993432, 38.855199 ], [ -76.993260, 38.854899 ], [ -76.993089, 38.854648 ], [ -76.992853, 38.854397 ], [ -76.992617, 38.854163 ], [ -76.992359, 38.853979 ], [ -76.992059, 38.853812 ], [ -76.991973, 38.853746 ], [ -76.992145, 38.853595 ], [ -76.992252, 38.853478 ], [ -76.992273, 38.853461 ], [ -76.992295, 38.853445 ], [ -76.992488, 38.853562 ], [ -76.993904, 38.854464 ], [ -76.993904, 38.870103 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010400", "GEOID": "11001010400", "NAME": "104", "NAMELSAD": "Census Tract 104", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2602393, "AWATER": 7006, "INTPTLAT": "+38.8512668", "INTPTLON": "-077.0009082" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.854464 ], [ -76.992488, 38.853562 ], [ -76.992295, 38.853445 ], [ -76.990943, 38.852659 ], [ -76.986458, 38.849852 ], [ -76.985042, 38.848966 ], [ -76.987274, 38.846660 ], [ -76.987467, 38.846476 ], [ -76.987488, 38.846493 ], [ -76.987531, 38.846476 ], [ -76.987553, 38.846476 ], [ -76.987574, 38.846460 ], [ -76.987724, 38.846343 ], [ -76.987746, 38.846343 ], [ -76.987810, 38.846343 ], [ -76.987875, 38.846359 ], [ -76.987917, 38.846393 ], [ -76.987982, 38.846426 ], [ -76.988046, 38.846476 ], [ -76.988089, 38.846493 ], [ -76.988111, 38.846510 ], [ -76.988239, 38.846510 ], [ -76.988368, 38.846510 ], [ -76.988711, 38.846376 ], [ -76.988497, 38.846125 ], [ -76.988604, 38.845641 ], [ -76.988690, 38.845657 ], [ -76.988862, 38.844972 ], [ -76.989119, 38.844721 ], [ -76.989098, 38.844588 ], [ -76.989226, 38.844571 ], [ -76.990578, 38.844304 ], [ -76.990986, 38.844237 ], [ -76.991651, 38.844120 ], [ -76.992166, 38.844036 ], [ -76.992424, 38.843986 ], [ -76.993024, 38.843886 ], [ -76.993303, 38.843852 ], [ -76.993368, 38.843836 ], [ -76.993496, 38.843802 ], [ -76.993904, 38.843735 ], [ -76.993904, 38.854464 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009804", "GEOID": "11001009804", "NAME": "98.04", "NAMELSAD": "Census Tract 98.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 518363, "AWATER": 5609, "INTPTLAT": "+38.8420148", "INTPTLON": "-076.9972580" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.993904, 38.841914 ], [ -76.993668, 38.840593 ], [ -76.993647, 38.840493 ], [ -76.993647, 38.840460 ], [ -76.993625, 38.840410 ], [ -76.993625, 38.840326 ], [ -76.993625, 38.840242 ], [ -76.993604, 38.840159 ], [ -76.993604, 38.840075 ], [ -76.993604, 38.839875 ], [ -76.993582, 38.839507 ], [ -76.993582, 38.839089 ], [ -76.993561, 38.838889 ], [ -76.993561, 38.838805 ], [ -76.993539, 38.838454 ], [ -76.993539, 38.838053 ], [ -76.993518, 38.837769 ], [ -76.993518, 38.837568 ], [ -76.993518, 38.837501 ], [ -76.993496, 38.837485 ], [ -76.993775, 38.837485 ], [ -76.993904, 38.837485 ], [ -76.993904, 38.841914 ] ] ], [ [ [ -76.989484, 38.833457 ], [ -76.989570, 38.833390 ], [ -76.989827, 38.833189 ], [ -76.990170, 38.832922 ], [ -76.990728, 38.832487 ], [ -76.990836, 38.832403 ], [ -76.990900, 38.832353 ], [ -76.991050, 38.832470 ], [ -76.991286, 38.832637 ], [ -76.991351, 38.832704 ], [ -76.991544, 38.832554 ], [ -76.991651, 38.832487 ], [ -76.991737, 38.832454 ], [ -76.991844, 38.832387 ], [ -76.991909, 38.832353 ], [ -76.992016, 38.832303 ], [ -76.992123, 38.832253 ], [ -76.992166, 38.832236 ], [ -76.992230, 38.832203 ], [ -76.992359, 38.832169 ], [ -76.992424, 38.832136 ], [ -76.992509, 38.832119 ], [ -76.992681, 38.832069 ], [ -76.992724, 38.832069 ], [ -76.992831, 38.832036 ], [ -76.992981, 38.832019 ], [ -76.993046, 38.832019 ], [ -76.993153, 38.832002 ], [ -76.993282, 38.831986 ], [ -76.993411, 38.831986 ], [ -76.993454, 38.831986 ], [ -76.993861, 38.831986 ], [ -76.993904, 38.831986 ], [ -76.993904, 38.837485 ], [ -76.993775, 38.837485 ], [ -76.993496, 38.837485 ], [ -76.993496, 38.837418 ], [ -76.993496, 38.837368 ], [ -76.993475, 38.837301 ], [ -76.993454, 38.837234 ], [ -76.993432, 38.837167 ], [ -76.993389, 38.837067 ], [ -76.993368, 38.837000 ], [ -76.993346, 38.836950 ], [ -76.993303, 38.836866 ], [ -76.993303, 38.836850 ], [ -76.993260, 38.836783 ], [ -76.993196, 38.836699 ], [ -76.992960, 38.836348 ], [ -76.992810, 38.836164 ], [ -76.992724, 38.836014 ], [ -76.992702, 38.835997 ], [ -76.992617, 38.835863 ], [ -76.992424, 38.835579 ], [ -76.992402, 38.835546 ], [ -76.992316, 38.835446 ], [ -76.992252, 38.835379 ], [ -76.992209, 38.835312 ], [ -76.992166, 38.835278 ], [ -76.992145, 38.835245 ], [ -76.992059, 38.835178 ], [ -76.992016, 38.835145 ], [ -76.991951, 38.835095 ], [ -76.991930, 38.835078 ], [ -76.991887, 38.835028 ], [ -76.991758, 38.834944 ], [ -76.991715, 38.834927 ], [ -76.991415, 38.834727 ], [ -76.990964, 38.834426 ], [ -76.990921, 38.834393 ], [ -76.990900, 38.834393 ], [ -76.990814, 38.834342 ], [ -76.990793, 38.834326 ], [ -76.990685, 38.834259 ], [ -76.990535, 38.834142 ], [ -76.990085, 38.833858 ], [ -76.989570, 38.833523 ], [ -76.989484, 38.833457 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009811", "GEOID": "11001009811", "NAME": "98.11", "NAMELSAD": "Census Tract 98.11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 467511, "AWATER": 0, "INTPTLAT": "+38.8266510", "INTPTLON": "-076.9984594" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.993904, 38.829194 ], [ -76.993647, 38.829194 ], [ -76.993067, 38.829194 ], [ -76.992853, 38.829211 ], [ -76.992488, 38.829194 ], [ -76.991351, 38.829194 ], [ -76.991115, 38.829144 ], [ -76.991179, 38.829094 ], [ -76.991265, 38.829027 ], [ -76.991479, 38.828860 ], [ -76.991565, 38.828776 ], [ -76.991630, 38.828743 ], [ -76.991737, 38.828659 ], [ -76.992016, 38.828442 ], [ -76.992252, 38.828258 ], [ -76.992488, 38.828074 ], [ -76.992638, 38.827957 ], [ -76.992660, 38.827940 ], [ -76.992788, 38.827840 ], [ -76.993046, 38.827639 ], [ -76.993089, 38.827606 ], [ -76.993260, 38.827472 ], [ -76.993475, 38.827305 ], [ -76.993690, 38.827138 ], [ -76.993861, 38.827004 ], [ -76.993904, 38.826971 ], [ -76.993904, 38.829194 ] ] ], [ [ [ -76.990900, 38.832353 ], [ -76.991651, 38.831768 ], [ -76.992745, 38.830899 ], [ -76.992874, 38.830815 ], [ -76.993196, 38.830548 ], [ -76.993411, 38.830381 ], [ -76.993690, 38.830164 ], [ -76.993754, 38.830113 ], [ -76.993861, 38.830030 ], [ -76.993904, 38.829996 ], [ -76.993904, 38.831986 ], [ -76.993861, 38.831986 ], [ -76.993454, 38.831986 ], [ -76.993411, 38.831986 ], [ -76.993282, 38.831986 ], [ -76.993153, 38.832002 ], [ -76.993046, 38.832019 ], [ -76.992981, 38.832019 ], [ -76.992831, 38.832036 ], [ -76.992724, 38.832069 ], [ -76.992681, 38.832069 ], [ -76.992509, 38.832119 ], [ -76.992424, 38.832136 ], [ -76.992359, 38.832169 ], [ -76.992230, 38.832203 ], [ -76.992166, 38.832236 ], [ -76.992123, 38.832253 ], [ -76.992016, 38.832303 ], [ -76.991909, 38.832353 ], [ -76.991844, 38.832387 ], [ -76.991737, 38.832454 ], [ -76.991651, 38.832487 ], [ -76.991544, 38.832554 ], [ -76.991351, 38.832704 ], [ -76.991286, 38.832637 ], [ -76.991050, 38.832470 ], [ -76.990900, 38.832353 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008002", "GEOID": "11001008002", "NAME": "80.02", "NAMELSAD": "Census Tract 80.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 578961, "AWATER": 0, "INTPTLAT": "+38.8915403", "INTPTLON": "-076.9827594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.974034, 38.892052 ], [ -76.974013, 38.892002 ], [ -76.973970, 38.891851 ], [ -76.973948, 38.891801 ], [ -76.973927, 38.891684 ], [ -76.973906, 38.891517 ], [ -76.973884, 38.891367 ], [ -76.973863, 38.891283 ], [ -76.973863, 38.891200 ], [ -76.973841, 38.891100 ], [ -76.973841, 38.890949 ], [ -76.973820, 38.890582 ], [ -76.973841, 38.890515 ], [ -76.973863, 38.890482 ], [ -76.973884, 38.890448 ], [ -76.973884, 38.890415 ], [ -76.973906, 38.890381 ], [ -76.973927, 38.890365 ], [ -76.973948, 38.890331 ], [ -76.973948, 38.890315 ], [ -76.973970, 38.890298 ], [ -76.974013, 38.890281 ], [ -76.974034, 38.890248 ], [ -76.974099, 38.890214 ], [ -76.974185, 38.890181 ], [ -76.974206, 38.890164 ], [ -76.974270, 38.890131 ], [ -76.974292, 38.890131 ], [ -76.974335, 38.890114 ], [ -76.974378, 38.890114 ], [ -76.974442, 38.890114 ], [ -76.974635, 38.890114 ], [ -76.974850, 38.890114 ], [ -76.975365, 38.890114 ], [ -76.976244, 38.890114 ], [ -76.976266, 38.890114 ], [ -76.976309, 38.890114 ], [ -76.976330, 38.890098 ], [ -76.976395, 38.890081 ], [ -76.976459, 38.890064 ], [ -76.976502, 38.890031 ], [ -76.976545, 38.890014 ], [ -76.976609, 38.889981 ], [ -76.976652, 38.889947 ], [ -76.976717, 38.889914 ], [ -76.976738, 38.889914 ], [ -76.976802, 38.889897 ], [ -76.976845, 38.889880 ], [ -76.976867, 38.889880 ], [ -76.976910, 38.889864 ], [ -76.976953, 38.889864 ], [ -76.976995, 38.889864 ], [ -76.977253, 38.889797 ], [ -76.978540, 38.889797 ], [ -76.978991, 38.889797 ], [ -76.980751, 38.889797 ], [ -76.982210, 38.889797 ], [ -76.982982, 38.889797 ], [ -76.983325, 38.889797 ], [ -76.983647, 38.889797 ], [ -76.985493, 38.889797 ], [ -76.985621, 38.889797 ], [ -76.987424, 38.889797 ], [ -76.987875, 38.889797 ], [ -76.988304, 38.889797 ], [ -76.988325, 38.889764 ], [ -76.988304, 38.889246 ], [ -76.988947, 38.889246 ], [ -76.989763, 38.889229 ], [ -76.989956, 38.889229 ], [ -76.990128, 38.889229 ], [ -76.990235, 38.889229 ], [ -76.991394, 38.889229 ], [ -76.991415, 38.889229 ], [ -76.991544, 38.889229 ], [ -76.991522, 38.889797 ], [ -76.991522, 38.890114 ], [ -76.991522, 38.890365 ], [ -76.991436, 38.890365 ], [ -76.990943, 38.890365 ], [ -76.990235, 38.890365 ], [ -76.990235, 38.890966 ], [ -76.990235, 38.891133 ], [ -76.990235, 38.891935 ], [ -76.990235, 38.892018 ], [ -76.990235, 38.892336 ], [ -76.990235, 38.892369 ], [ -76.974142, 38.892369 ], [ -76.974142, 38.892352 ], [ -76.974120, 38.892302 ], [ -76.974077, 38.892219 ], [ -76.974056, 38.892135 ], [ -76.974034, 38.892052 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009604", "GEOID": "11001009604", "NAME": "96.04", "NAMELSAD": "Census Tract 96.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 503381, "AWATER": 65762, "INTPTLAT": "+38.8931572", "INTPTLON": "-076.9585043" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963370, 38.889864 ], [ -76.963263, 38.890348 ], [ -76.962748, 38.892369 ], [ -76.954207, 38.892369 ], [ -76.956353, 38.890214 ], [ -76.956718, 38.889830 ], [ -76.956739, 38.889830 ], [ -76.957190, 38.889830 ], [ -76.957340, 38.889830 ], [ -76.958091, 38.889814 ], [ -76.958241, 38.889830 ], [ -76.958585, 38.889814 ], [ -76.959808, 38.889847 ], [ -76.961224, 38.889847 ], [ -76.961567, 38.889847 ], [ -76.962426, 38.889847 ], [ -76.962619, 38.889864 ], [ -76.963370, 38.889864 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009603", "GEOID": "11001009603", "NAME": "96.03", "NAMELSAD": "Census Tract 96.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 607400, "AWATER": 0, "INTPTLAT": "+38.8918285", "INTPTLON": "-076.9477195" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.937578, 38.889880 ], [ -76.937878, 38.889880 ], [ -76.939380, 38.889880 ], [ -76.939552, 38.889880 ], [ -76.939809, 38.889864 ], [ -76.940002, 38.889847 ], [ -76.940882, 38.889830 ], [ -76.942792, 38.889830 ], [ -76.944551, 38.889830 ], [ -76.947234, 38.889830 ], [ -76.948285, 38.889814 ], [ -76.948800, 38.889814 ], [ -76.950088, 38.889847 ], [ -76.950731, 38.889830 ], [ -76.951933, 38.889814 ], [ -76.953006, 38.889814 ], [ -76.953092, 38.889814 ], [ -76.953692, 38.889814 ], [ -76.954594, 38.889814 ], [ -76.955903, 38.889830 ], [ -76.956718, 38.889830 ], [ -76.956353, 38.890214 ], [ -76.954207, 38.892369 ], [ -76.941204, 38.892369 ], [ -76.940968, 38.892285 ], [ -76.940904, 38.892252 ], [ -76.940861, 38.892235 ], [ -76.940453, 38.892068 ], [ -76.940238, 38.891985 ], [ -76.940002, 38.891885 ], [ -76.939788, 38.891801 ], [ -76.939659, 38.891734 ], [ -76.939595, 38.891718 ], [ -76.939509, 38.891684 ], [ -76.939337, 38.891601 ], [ -76.939209, 38.891534 ], [ -76.939080, 38.891467 ], [ -76.939015, 38.891434 ], [ -76.938887, 38.891350 ], [ -76.938779, 38.891267 ], [ -76.938715, 38.891233 ], [ -76.938651, 38.891183 ], [ -76.938543, 38.891100 ], [ -76.938479, 38.891050 ], [ -76.938415, 38.890999 ], [ -76.938329, 38.890899 ], [ -76.938264, 38.890849 ], [ -76.938221, 38.890799 ], [ -76.938114, 38.890699 ], [ -76.938071, 38.890632 ], [ -76.938028, 38.890599 ], [ -76.937964, 38.890498 ], [ -76.937921, 38.890448 ], [ -76.937814, 38.890331 ], [ -76.937685, 38.890064 ], [ -76.937578, 38.889880 ] ] ], [ [ [ -76.934874, 38.889830 ], [ -76.935518, 38.889830 ], [ -76.935689, 38.889847 ], [ -76.936097, 38.889880 ], [ -76.936612, 38.889880 ], [ -76.937277, 38.889897 ], [ -76.937578, 38.889880 ], [ -76.937685, 38.890064 ], [ -76.937814, 38.890331 ], [ -76.937921, 38.890448 ], [ -76.937964, 38.890498 ], [ -76.938028, 38.890599 ], [ -76.938071, 38.890632 ], [ -76.938114, 38.890699 ], [ -76.938221, 38.890799 ], [ -76.938264, 38.890849 ], [ -76.938329, 38.890899 ], [ -76.938415, 38.890999 ], [ -76.938479, 38.891050 ], [ -76.938543, 38.891100 ], [ -76.938651, 38.891183 ], [ -76.938715, 38.891233 ], [ -76.938779, 38.891267 ], [ -76.938887, 38.891350 ], [ -76.939015, 38.891434 ], [ -76.939080, 38.891467 ], [ -76.939209, 38.891534 ], [ -76.939337, 38.891601 ], [ -76.939509, 38.891684 ], [ -76.939595, 38.891718 ], [ -76.939659, 38.891734 ], [ -76.939788, 38.891801 ], [ -76.940002, 38.891885 ], [ -76.940238, 38.891985 ], [ -76.940453, 38.892068 ], [ -76.940861, 38.892235 ], [ -76.940904, 38.892252 ], [ -76.940968, 38.892285 ], [ -76.941204, 38.892369 ], [ -76.934874, 38.892369 ], [ -76.934874, 38.891885 ], [ -76.934874, 38.891818 ], [ -76.934874, 38.891367 ], [ -76.934874, 38.891016 ], [ -76.934874, 38.890682 ], [ -76.934874, 38.890398 ], [ -76.934874, 38.890281 ], [ -76.934874, 38.889830 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007804", "GEOID": "11001007804", "NAME": "78.04", "NAMELSAD": "Census Tract 78.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 838428, "AWATER": 5705, "INTPTLAT": "+38.8942107", "INTPTLON": "-076.9313427" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.927793, 38.892369 ], [ -76.927879, 38.892135 ], [ -76.927922, 38.892002 ], [ -76.927943, 38.891935 ], [ -76.927943, 38.891885 ], [ -76.927965, 38.891851 ], [ -76.927965, 38.891784 ], [ -76.927965, 38.891551 ], [ -76.927965, 38.891300 ], [ -76.927965, 38.891016 ], [ -76.927965, 38.890849 ], [ -76.927965, 38.890782 ], [ -76.927965, 38.890398 ], [ -76.927965, 38.890131 ], [ -76.927965, 38.889964 ], [ -76.927965, 38.889914 ], [ -76.927965, 38.889814 ], [ -76.930046, 38.889814 ], [ -76.930068, 38.889814 ], [ -76.930153, 38.889814 ], [ -76.930389, 38.889830 ], [ -76.930776, 38.889830 ], [ -76.931162, 38.889814 ], [ -76.931827, 38.889814 ], [ -76.932020, 38.889797 ], [ -76.932042, 38.889797 ], [ -76.932771, 38.889814 ], [ -76.934381, 38.889830 ], [ -76.934874, 38.889830 ], [ -76.934874, 38.890281 ], [ -76.934874, 38.890398 ], [ -76.934874, 38.890682 ], [ -76.934874, 38.891016 ], [ -76.934874, 38.891367 ], [ -76.934874, 38.891818 ], [ -76.934874, 38.891885 ], [ -76.934874, 38.892369 ], [ -76.927793, 38.892369 ] ] ], [ [ [ -76.909983, 38.892369 ], [ -76.910520, 38.891935 ], [ -76.910541, 38.891918 ], [ -76.910734, 38.891784 ], [ -76.911142, 38.891500 ], [ -76.911743, 38.891016 ], [ -76.911807, 38.890966 ], [ -76.911914, 38.890883 ], [ -76.912065, 38.890782 ], [ -76.912344, 38.890565 ], [ -76.912408, 38.890515 ], [ -76.912494, 38.890448 ], [ -76.912687, 38.890298 ], [ -76.912773, 38.890214 ], [ -76.912794, 38.890198 ], [ -76.912923, 38.890114 ], [ -76.913009, 38.890047 ], [ -76.913159, 38.889931 ], [ -76.913180, 38.889897 ], [ -76.913331, 38.889797 ], [ -76.913502, 38.889797 ], [ -76.913652, 38.889780 ], [ -76.913781, 38.889797 ], [ -76.914039, 38.889780 ], [ -76.914167, 38.889780 ], [ -76.914382, 38.889780 ], [ -76.914597, 38.889797 ], [ -76.914725, 38.889780 ], [ -76.915562, 38.889797 ], [ -76.915712, 38.889797 ], [ -76.916163, 38.889797 ], [ -76.916678, 38.889797 ], [ -76.917236, 38.889797 ], [ -76.917622, 38.889797 ], [ -76.917772, 38.889797 ], [ -76.919403, 38.889814 ], [ -76.920691, 38.889814 ], [ -76.922901, 38.889797 ], [ -76.923952, 38.889814 ], [ -76.925004, 38.889814 ], [ -76.926055, 38.889814 ], [ -76.926162, 38.889814 ], [ -76.927171, 38.889814 ], [ -76.927965, 38.889814 ], [ -76.927965, 38.889914 ], [ -76.927965, 38.889964 ], [ -76.927965, 38.890131 ], [ -76.927965, 38.890398 ], [ -76.927965, 38.890782 ], [ -76.927965, 38.890849 ], [ -76.927965, 38.891016 ], [ -76.927965, 38.891300 ], [ -76.927965, 38.891551 ], [ -76.927965, 38.891784 ], [ -76.927965, 38.891851 ], [ -76.927943, 38.891885 ], [ -76.927943, 38.891935 ], [ -76.927922, 38.892002 ], [ -76.927879, 38.892135 ], [ -76.927793, 38.892369 ], [ -76.909983, 38.892369 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006700", "GEOID": "11001006700", "NAME": "67", "NAMELSAD": "Census Tract 67", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 428358, "AWATER": 0, "INTPTLAT": "+38.8875984", "INTPTLON": "-076.9899590" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.993904, 38.889797 ], [ -76.993754, 38.889797 ], [ -76.993089, 38.889797 ], [ -76.992638, 38.889797 ], [ -76.991801, 38.889797 ], [ -76.991522, 38.889797 ], [ -76.991544, 38.889229 ], [ -76.991415, 38.889229 ], [ -76.991394, 38.889229 ], [ -76.990235, 38.889229 ], [ -76.990128, 38.889229 ], [ -76.989956, 38.889229 ], [ -76.989763, 38.889229 ], [ -76.988947, 38.889246 ], [ -76.988304, 38.889246 ], [ -76.988325, 38.889764 ], [ -76.988304, 38.889797 ], [ -76.987875, 38.889797 ], [ -76.987424, 38.889797 ], [ -76.985621, 38.889797 ], [ -76.985493, 38.889797 ], [ -76.983647, 38.889797 ], [ -76.983647, 38.888661 ], [ -76.983647, 38.888327 ], [ -76.983647, 38.887692 ], [ -76.983647, 38.887592 ], [ -76.983647, 38.887158 ], [ -76.983647, 38.887091 ], [ -76.983712, 38.887024 ], [ -76.984034, 38.887041 ], [ -76.984098, 38.887024 ], [ -76.984162, 38.887024 ], [ -76.984463, 38.886941 ], [ -76.984591, 38.886907 ], [ -76.984656, 38.886907 ], [ -76.984742, 38.886891 ], [ -76.985428, 38.886724 ], [ -76.985493, 38.886690 ], [ -76.985664, 38.886657 ], [ -76.985943, 38.886573 ], [ -76.986308, 38.886473 ], [ -76.986372, 38.886456 ], [ -76.986973, 38.886306 ], [ -76.987274, 38.886223 ], [ -76.988175, 38.885989 ], [ -76.988304, 38.886022 ], [ -76.988411, 38.885922 ], [ -76.988904, 38.885788 ], [ -76.989012, 38.885755 ], [ -76.989677, 38.885588 ], [ -76.990063, 38.885488 ], [ -76.990235, 38.885438 ], [ -76.991522, 38.885104 ], [ -76.992638, 38.884803 ], [ -76.993368, 38.884602 ], [ -76.993539, 38.884552 ], [ -76.993582, 38.884552 ], [ -76.993604, 38.884552 ], [ -76.993647, 38.884552 ], [ -76.993690, 38.884552 ], [ -76.993754, 38.884586 ], [ -76.993775, 38.884586 ], [ -76.993818, 38.884586 ], [ -76.993904, 38.884586 ], [ -76.993904, 38.889797 ] ] ], [ [ [ -76.993754, 38.884586 ], [ -76.993690, 38.884552 ], [ -76.993647, 38.884552 ], [ -76.993604, 38.884552 ], [ -76.993582, 38.884552 ], [ -76.993539, 38.884552 ], [ -76.993368, 38.884602 ], [ -76.992638, 38.884803 ], [ -76.991522, 38.885104 ], [ -76.990235, 38.885438 ], [ -76.990063, 38.885488 ], [ -76.989677, 38.885588 ], [ -76.989012, 38.885755 ], [ -76.988904, 38.885788 ], [ -76.988411, 38.885922 ], [ -76.988304, 38.886022 ], [ -76.988175, 38.885989 ], [ -76.987274, 38.886223 ], [ -76.986973, 38.886306 ], [ -76.986372, 38.886456 ], [ -76.986308, 38.886473 ], [ -76.985943, 38.886573 ], [ -76.985664, 38.886657 ], [ -76.985493, 38.886690 ], [ -76.985428, 38.886724 ], [ -76.984742, 38.886891 ], [ -76.984656, 38.886907 ], [ -76.984591, 38.886907 ], [ -76.984463, 38.886941 ], [ -76.984162, 38.887024 ], [ -76.984098, 38.887024 ], [ -76.984034, 38.887041 ], [ -76.983712, 38.887024 ], [ -76.983647, 38.887091 ], [ -76.983647, 38.887024 ], [ -76.983647, 38.886958 ], [ -76.983647, 38.886707 ], [ -76.983647, 38.886323 ], [ -76.983647, 38.886223 ], [ -76.983647, 38.886139 ], [ -76.983647, 38.885922 ], [ -76.983647, 38.885555 ], [ -76.983647, 38.885421 ], [ -76.983647, 38.885354 ], [ -76.983647, 38.884736 ], [ -76.983647, 38.884452 ], [ -76.983647, 38.884101 ], [ -76.983647, 38.884018 ], [ -76.983647, 38.883634 ], [ -76.983647, 38.883467 ], [ -76.983647, 38.882932 ], [ -76.983647, 38.882832 ], [ -76.983647, 38.882748 ], [ -76.983647, 38.882682 ], [ -76.983647, 38.881863 ], [ -76.983647, 38.881646 ], [ -76.983647, 38.881345 ], [ -76.983647, 38.881262 ], [ -76.983647, 38.881078 ], [ -76.983647, 38.880360 ], [ -76.983647, 38.880042 ], [ -76.983647, 38.879775 ], [ -76.983647, 38.879692 ], [ -76.983647, 38.879675 ], [ -76.984978, 38.880209 ], [ -76.985836, 38.880560 ], [ -76.985965, 38.880627 ], [ -76.986351, 38.880794 ], [ -76.986780, 38.880961 ], [ -76.986995, 38.881061 ], [ -76.987317, 38.881178 ], [ -76.987488, 38.881245 ], [ -76.987810, 38.881395 ], [ -76.988111, 38.881529 ], [ -76.988304, 38.881596 ], [ -76.990235, 38.882381 ], [ -76.990364, 38.882431 ], [ -76.990492, 38.882481 ], [ -76.991029, 38.882698 ], [ -76.991136, 38.882732 ], [ -76.991351, 38.882815 ], [ -76.991522, 38.882882 ], [ -76.991694, 38.882966 ], [ -76.991909, 38.883049 ], [ -76.992509, 38.883300 ], [ -76.992638, 38.883350 ], [ -76.993754, 38.883801 ], [ -76.993754, 38.883817 ], [ -76.993754, 38.884101 ], [ -76.993754, 38.884185 ], [ -76.993754, 38.884586 ] ] ], [ [ [ -76.981566, 38.878840 ], [ -76.981931, 38.878973 ], [ -76.983647, 38.879675 ], [ -76.983647, 38.879692 ], [ -76.983647, 38.879775 ], [ -76.983647, 38.880042 ], [ -76.983647, 38.880360 ], [ -76.983647, 38.881078 ], [ -76.983647, 38.881262 ], [ -76.983647, 38.881345 ], [ -76.983647, 38.881646 ], [ -76.983647, 38.881863 ], [ -76.983647, 38.882682 ], [ -76.983647, 38.882748 ], [ -76.983647, 38.882832 ], [ -76.983647, 38.882932 ], [ -76.983647, 38.883467 ], [ -76.983647, 38.883634 ], [ -76.983647, 38.884018 ], [ -76.983647, 38.884101 ], [ -76.983647, 38.884452 ], [ -76.983647, 38.884736 ], [ -76.983647, 38.885354 ], [ -76.983647, 38.885421 ], [ -76.983647, 38.885555 ], [ -76.983647, 38.885922 ], [ -76.983647, 38.886139 ], [ -76.983647, 38.886223 ], [ -76.983647, 38.886323 ], [ -76.983647, 38.886707 ], [ -76.983647, 38.886958 ], [ -76.983647, 38.887024 ], [ -76.983647, 38.887091 ], [ -76.983218, 38.886941 ], [ -76.982768, 38.886757 ], [ -76.982210, 38.886540 ], [ -76.980879, 38.885989 ], [ -76.980751, 38.885955 ], [ -76.979270, 38.885337 ], [ -76.978991, 38.885237 ], [ -76.977360, 38.884569 ], [ -76.977339, 38.884569 ], [ -76.977317, 38.884552 ], [ -76.977253, 38.884552 ], [ -76.977253, 38.884369 ], [ -76.977253, 38.884202 ], [ -76.977253, 38.884168 ], [ -76.977253, 38.884101 ], [ -76.977253, 38.883667 ], [ -76.977360, 38.883634 ], [ -76.978283, 38.883266 ], [ -76.978991, 38.882966 ], [ -76.979334, 38.882832 ], [ -76.980042, 38.882548 ], [ -76.980321, 38.882431 ], [ -76.980622, 38.882314 ], [ -76.980751, 38.882264 ], [ -76.980751, 38.881897 ], [ -76.980751, 38.881262 ], [ -76.980751, 38.881178 ], [ -76.980751, 38.880610 ], [ -76.980751, 38.880276 ], [ -76.980751, 38.879775 ], [ -76.980751, 38.879358 ], [ -76.980751, 38.879274 ], [ -76.980751, 38.879241 ], [ -76.980793, 38.879241 ], [ -76.980836, 38.879241 ], [ -76.980858, 38.879241 ], [ -76.980922, 38.879224 ], [ -76.980987, 38.879224 ], [ -76.981051, 38.879207 ], [ -76.981094, 38.879191 ], [ -76.981158, 38.879174 ], [ -76.981223, 38.879157 ], [ -76.981266, 38.879157 ], [ -76.981308, 38.879140 ], [ -76.981373, 38.879124 ], [ -76.981394, 38.879107 ], [ -76.981416, 38.879090 ], [ -76.981459, 38.879057 ], [ -76.981480, 38.879024 ], [ -76.981502, 38.878973 ], [ -76.981523, 38.878923 ], [ -76.981566, 38.878840 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007100", "GEOID": "11001007100", "NAME": "71", "NAMELSAD": "Census Tract 71", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 602223, "AWATER": 149901, "INTPTLAT": "+38.8771811", "INTPTLON": "-076.9868380" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991522, 38.882882 ], [ -76.991351, 38.882815 ], [ -76.991136, 38.882732 ], [ -76.991029, 38.882698 ], [ -76.990492, 38.882481 ], [ -76.990364, 38.882431 ], [ -76.990235, 38.882381 ], [ -76.988304, 38.881596 ], [ -76.988111, 38.881529 ], [ -76.987810, 38.881395 ], [ -76.987488, 38.881245 ], [ -76.987317, 38.881178 ], [ -76.986995, 38.881061 ], [ -76.986780, 38.880961 ], [ -76.986351, 38.880794 ], [ -76.985965, 38.880627 ], [ -76.985836, 38.880560 ], [ -76.984978, 38.880209 ], [ -76.983647, 38.879675 ], [ -76.981931, 38.878973 ], [ -76.981566, 38.878840 ], [ -76.981416, 38.878740 ], [ -76.980922, 38.878589 ], [ -76.980793, 38.878539 ], [ -76.980665, 38.878506 ], [ -76.980579, 38.878456 ], [ -76.980472, 38.878372 ], [ -76.980386, 38.878272 ], [ -76.980278, 38.878138 ], [ -76.980128, 38.877971 ], [ -76.980042, 38.877888 ], [ -76.979935, 38.877837 ], [ -76.979914, 38.877837 ], [ -76.979613, 38.877670 ], [ -76.979570, 38.877654 ], [ -76.979356, 38.877537 ], [ -76.979291, 38.877520 ], [ -76.978176, 38.876952 ], [ -76.978025, 38.876885 ], [ -76.978154, 38.876802 ], [ -76.983948, 38.874931 ], [ -76.985407, 38.874079 ], [ -76.988797, 38.872208 ], [ -76.989248, 38.871957 ], [ -76.989505, 38.871774 ], [ -76.989634, 38.871673 ], [ -76.989677, 38.871640 ], [ -76.989720, 38.871623 ], [ -76.990106, 38.871339 ], [ -76.990771, 38.872225 ], [ -76.990921, 38.872475 ], [ -76.991093, 38.872826 ], [ -76.991158, 38.872960 ], [ -76.991222, 38.873093 ], [ -76.991265, 38.873227 ], [ -76.991286, 38.873294 ], [ -76.991372, 38.873695 ], [ -76.991415, 38.874029 ], [ -76.991458, 38.874380 ], [ -76.991479, 38.874597 ], [ -76.991544, 38.876501 ], [ -76.991522, 38.877219 ], [ -76.991522, 38.877537 ], [ -76.991522, 38.877704 ], [ -76.991522, 38.877771 ], [ -76.991522, 38.877954 ], [ -76.991522, 38.878088 ], [ -76.991522, 38.878105 ], [ -76.991522, 38.878222 ], [ -76.991522, 38.878339 ], [ -76.991522, 38.878405 ], [ -76.991522, 38.879274 ], [ -76.991522, 38.879742 ], [ -76.991522, 38.880427 ], [ -76.991522, 38.881262 ], [ -76.991522, 38.881362 ], [ -76.991522, 38.881512 ], [ -76.991522, 38.881880 ], [ -76.991522, 38.882648 ], [ -76.991522, 38.882799 ], [ -76.991522, 38.882882 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006801", "GEOID": "11001006801", "NAME": "68.01", "NAMELSAD": "Census Tract 68.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 244750, "AWATER": 0, "INTPTLAT": "+38.8877413", "INTPTLON": "-076.9801087" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.977253, 38.884552 ], [ -76.977317, 38.884552 ], [ -76.977339, 38.884569 ], [ -76.977360, 38.884569 ], [ -76.978991, 38.885237 ], [ -76.979270, 38.885337 ], [ -76.980751, 38.885955 ], [ -76.980879, 38.885989 ], [ -76.982210, 38.886540 ], [ -76.982768, 38.886757 ], [ -76.983218, 38.886941 ], [ -76.983647, 38.887091 ], [ -76.983647, 38.887158 ], [ -76.983647, 38.887592 ], [ -76.983647, 38.887692 ], [ -76.983647, 38.888327 ], [ -76.983647, 38.888661 ], [ -76.983647, 38.889797 ], [ -76.983325, 38.889797 ], [ -76.982982, 38.889797 ], [ -76.982210, 38.889797 ], [ -76.980751, 38.889797 ], [ -76.978991, 38.889797 ], [ -76.978540, 38.889797 ], [ -76.977253, 38.889797 ], [ -76.977253, 38.889446 ], [ -76.977253, 38.888661 ], [ -76.977253, 38.887592 ], [ -76.977253, 38.887258 ], [ -76.977253, 38.887041 ], [ -76.977253, 38.886857 ], [ -76.977253, 38.886791 ], [ -76.977253, 38.886774 ], [ -76.977253, 38.886239 ], [ -76.977253, 38.886139 ], [ -76.977253, 38.886056 ], [ -76.977253, 38.885354 ], [ -76.977253, 38.885287 ], [ -76.977253, 38.884970 ], [ -76.977253, 38.884669 ], [ -76.977253, 38.884552 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006804", "GEOID": "11001006804", "NAME": "68.04", "NAMELSAD": "Census Tract 68.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1542277, "AWATER": 477741, "INTPTLAT": "+38.8863842", "INTPTLON": "-076.9704836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.980042, 38.877888 ], [ -76.980128, 38.877971 ], [ -76.980278, 38.878138 ], [ -76.980386, 38.878272 ], [ -76.980472, 38.878372 ], [ -76.980579, 38.878456 ], [ -76.980665, 38.878506 ], [ -76.980793, 38.878539 ], [ -76.980922, 38.878589 ], [ -76.981416, 38.878740 ], [ -76.981566, 38.878840 ], [ -76.981523, 38.878923 ], [ -76.981502, 38.878973 ], [ -76.981480, 38.879024 ], [ -76.981459, 38.879057 ], [ -76.981416, 38.879090 ], [ -76.981394, 38.879107 ], [ -76.981373, 38.879124 ], [ -76.981308, 38.879140 ], [ -76.981266, 38.879157 ], [ -76.981223, 38.879157 ], [ -76.981158, 38.879174 ], [ -76.981094, 38.879191 ], [ -76.981051, 38.879207 ], [ -76.980987, 38.879224 ], [ -76.980922, 38.879224 ], [ -76.980858, 38.879241 ], [ -76.980836, 38.879241 ], [ -76.980793, 38.879241 ], [ -76.980751, 38.879241 ], [ -76.980751, 38.879274 ], [ -76.980751, 38.879358 ], [ -76.980751, 38.879775 ], [ -76.980751, 38.880276 ], [ -76.980751, 38.880610 ], [ -76.980751, 38.881178 ], [ -76.980751, 38.881262 ], [ -76.980751, 38.881897 ], [ -76.980751, 38.882264 ], [ -76.980622, 38.882314 ], [ -76.980321, 38.882431 ], [ -76.980042, 38.882548 ], [ -76.979334, 38.882832 ], [ -76.978991, 38.882966 ], [ -76.978283, 38.883266 ], [ -76.977360, 38.883634 ], [ -76.977253, 38.883667 ], [ -76.977253, 38.884101 ], [ -76.977253, 38.884168 ], [ -76.977253, 38.884202 ], [ -76.977253, 38.884369 ], [ -76.977253, 38.884552 ], [ -76.977253, 38.884669 ], [ -76.977253, 38.884970 ], [ -76.977253, 38.885287 ], [ -76.977253, 38.885354 ], [ -76.977253, 38.886056 ], [ -76.977253, 38.886139 ], [ -76.977253, 38.886239 ], [ -76.977253, 38.886774 ], [ -76.977253, 38.886791 ], [ -76.977253, 38.886857 ], [ -76.977253, 38.887041 ], [ -76.977253, 38.887258 ], [ -76.977253, 38.887592 ], [ -76.977253, 38.888661 ], [ -76.977253, 38.889446 ], [ -76.977253, 38.889797 ], [ -76.976995, 38.889864 ], [ -76.976953, 38.889864 ], [ -76.976910, 38.889864 ], [ -76.976867, 38.889880 ], [ -76.976845, 38.889880 ], [ -76.976802, 38.889897 ], [ -76.976738, 38.889914 ], [ -76.976717, 38.889914 ], [ -76.976652, 38.889947 ], [ -76.976609, 38.889981 ], [ -76.976545, 38.890014 ], [ -76.976502, 38.890031 ], [ -76.976459, 38.890064 ], [ -76.976395, 38.890081 ], [ -76.976330, 38.890098 ], [ -76.976309, 38.890114 ], [ -76.976266, 38.890114 ], [ -76.976244, 38.890114 ], [ -76.975365, 38.890114 ], [ -76.974850, 38.890114 ], [ -76.974635, 38.890114 ], [ -76.974442, 38.890114 ], [ -76.974378, 38.890114 ], [ -76.974335, 38.890114 ], [ -76.974292, 38.890131 ], [ -76.974270, 38.890131 ], [ -76.974206, 38.890164 ], [ -76.974185, 38.890181 ], [ -76.974099, 38.890214 ], [ -76.974034, 38.890248 ], [ -76.974013, 38.890281 ], [ -76.973970, 38.890298 ], [ -76.973948, 38.890315 ], [ -76.973948, 38.890331 ], [ -76.973927, 38.890365 ], [ -76.973906, 38.890381 ], [ -76.973884, 38.890415 ], [ -76.973884, 38.890448 ], [ -76.973863, 38.890482 ], [ -76.973841, 38.890515 ], [ -76.973820, 38.890582 ], [ -76.973841, 38.890949 ], [ -76.973841, 38.891100 ], [ -76.973863, 38.891200 ], [ -76.973863, 38.891283 ], [ -76.973884, 38.891367 ], [ -76.973906, 38.891517 ], [ -76.973927, 38.891684 ], [ -76.973948, 38.891801 ], [ -76.973970, 38.891851 ], [ -76.974013, 38.892002 ], [ -76.974034, 38.892052 ], [ -76.974056, 38.892135 ], [ -76.974077, 38.892219 ], [ -76.974120, 38.892302 ], [ -76.974142, 38.892352 ], [ -76.974142, 38.892369 ], [ -76.962748, 38.892369 ], [ -76.963263, 38.890348 ], [ -76.963370, 38.889864 ], [ -76.963370, 38.889797 ], [ -76.963434, 38.889730 ], [ -76.963885, 38.889129 ], [ -76.966782, 38.885237 ], [ -76.969593, 38.882665 ], [ -76.970708, 38.881429 ], [ -76.971438, 38.880627 ], [ -76.971760, 38.880209 ], [ -76.972661, 38.878973 ], [ -76.973283, 38.878389 ], [ -76.975579, 38.877604 ], [ -76.978025, 38.876885 ], [ -76.978176, 38.876952 ], [ -76.979291, 38.877520 ], [ -76.979356, 38.877537 ], [ -76.979570, 38.877654 ], [ -76.979613, 38.877670 ], [ -76.979914, 38.877837 ], [ -76.979935, 38.877837 ], [ -76.980042, 38.877888 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007503", "GEOID": "11001007503", "NAME": "75.03", "NAMELSAD": "Census Tract 75.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 515179, "AWATER": 0, "INTPTLAT": "+38.8640724", "INTPTLON": "-076.9870900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.983669, 38.860530 ], [ -76.983798, 38.860530 ], [ -76.983862, 38.860530 ], [ -76.984828, 38.860530 ], [ -76.985364, 38.860530 ], [ -76.986201, 38.860530 ], [ -76.986244, 38.860530 ], [ -76.986909, 38.860513 ], [ -76.987016, 38.860513 ], [ -76.987574, 38.860513 ], [ -76.987617, 38.860513 ], [ -76.987660, 38.860513 ], [ -76.987681, 38.860496 ], [ -76.987724, 38.860479 ], [ -76.987746, 38.860463 ], [ -76.987832, 38.860379 ], [ -76.987960, 38.860262 ], [ -76.988025, 38.860195 ], [ -76.988196, 38.860312 ], [ -76.988239, 38.860346 ], [ -76.988261, 38.860362 ], [ -76.988304, 38.860396 ], [ -76.988540, 38.860663 ], [ -76.988647, 38.860763 ], [ -76.988840, 38.860964 ], [ -76.988904, 38.861047 ], [ -76.988969, 38.861114 ], [ -76.989226, 38.861398 ], [ -76.989291, 38.861465 ], [ -76.989334, 38.861515 ], [ -76.989419, 38.861599 ], [ -76.989441, 38.861616 ], [ -76.989462, 38.861632 ], [ -76.989527, 38.861682 ], [ -76.989677, 38.861816 ], [ -76.989784, 38.861900 ], [ -76.989977, 38.862083 ], [ -76.990020, 38.862134 ], [ -76.990063, 38.862167 ], [ -76.990170, 38.862284 ], [ -76.990213, 38.862317 ], [ -76.990299, 38.862384 ], [ -76.990385, 38.862501 ], [ -76.990449, 38.862551 ], [ -76.990685, 38.862785 ], [ -76.991029, 38.863119 ], [ -76.991222, 38.863320 ], [ -76.991007, 38.863420 ], [ -76.991050, 38.863470 ], [ -76.991093, 38.863520 ], [ -76.991115, 38.863570 ], [ -76.991351, 38.863871 ], [ -76.991394, 38.863921 ], [ -76.991415, 38.863938 ], [ -76.991415, 38.863955 ], [ -76.991758, 38.864172 ], [ -76.991823, 38.864222 ], [ -76.992316, 38.864556 ], [ -76.992338, 38.864573 ], [ -76.992509, 38.864690 ], [ -76.992724, 38.864857 ], [ -76.992595, 38.864957 ], [ -76.992488, 38.865041 ], [ -76.992445, 38.865074 ], [ -76.992424, 38.865091 ], [ -76.992273, 38.865241 ], [ -76.991994, 38.865509 ], [ -76.991930, 38.865575 ], [ -76.991844, 38.865659 ], [ -76.991758, 38.865759 ], [ -76.991694, 38.865826 ], [ -76.991608, 38.865926 ], [ -76.991501, 38.866093 ], [ -76.991329, 38.866310 ], [ -76.991286, 38.866394 ], [ -76.991136, 38.866578 ], [ -76.991115, 38.866611 ], [ -76.991072, 38.866661 ], [ -76.990600, 38.867279 ], [ -76.990321, 38.867597 ], [ -76.990106, 38.867848 ], [ -76.989870, 38.868065 ], [ -76.989484, 38.868365 ], [ -76.989355, 38.868265 ], [ -76.989033, 38.868015 ], [ -76.989012, 38.867981 ], [ -76.988969, 38.867948 ], [ -76.988947, 38.867914 ], [ -76.988904, 38.867864 ], [ -76.988904, 38.867831 ], [ -76.988711, 38.867530 ], [ -76.988711, 38.867513 ], [ -76.988626, 38.867413 ], [ -76.988347, 38.867363 ], [ -76.988046, 38.867296 ], [ -76.987703, 38.867246 ], [ -76.987145, 38.867146 ], [ -76.987059, 38.867129 ], [ -76.985128, 38.866778 ], [ -76.984527, 38.866661 ], [ -76.984355, 38.866628 ], [ -76.983626, 38.866494 ], [ -76.983175, 38.866411 ], [ -76.983325, 38.865909 ], [ -76.983433, 38.865559 ], [ -76.982167, 38.865325 ], [ -76.982210, 38.865208 ], [ -76.982424, 38.864473 ], [ -76.982532, 38.864088 ], [ -76.982639, 38.863738 ], [ -76.982682, 38.863621 ], [ -76.982682, 38.863587 ], [ -76.982682, 38.863554 ], [ -76.982682, 38.863520 ], [ -76.982682, 38.863387 ], [ -76.982682, 38.863136 ], [ -76.982660, 38.862869 ], [ -76.982682, 38.862768 ], [ -76.982703, 38.862601 ], [ -76.982789, 38.861916 ], [ -76.982832, 38.861549 ], [ -76.982832, 38.861465 ], [ -76.982853, 38.861398 ], [ -76.982853, 38.861382 ], [ -76.982875, 38.861365 ], [ -76.982896, 38.861365 ], [ -76.982918, 38.861348 ], [ -76.982939, 38.861332 ], [ -76.982961, 38.861315 ], [ -76.983197, 38.861098 ], [ -76.983218, 38.861064 ], [ -76.983261, 38.861031 ], [ -76.983325, 38.860981 ], [ -76.983368, 38.860947 ], [ -76.983433, 38.860880 ], [ -76.983497, 38.860847 ], [ -76.983562, 38.860814 ], [ -76.983562, 38.860797 ], [ -76.983583, 38.860780 ], [ -76.983604, 38.860747 ], [ -76.983626, 38.860730 ], [ -76.983626, 38.860713 ], [ -76.983647, 38.860697 ], [ -76.983647, 38.860663 ], [ -76.983647, 38.860646 ], [ -76.983669, 38.860630 ], [ -76.983669, 38.860596 ], [ -76.983669, 38.860530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007407", "GEOID": "11001007407", "NAME": "74.07", "NAMELSAD": "Census Tract 74.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 608700, "AWATER": 0, "INTPTLAT": "+38.8574823", "INTPTLON": "-076.9850206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.861332 ], [ -76.993818, 38.861448 ], [ -76.993754, 38.861565 ], [ -76.993625, 38.861733 ], [ -76.993539, 38.861833 ], [ -76.993303, 38.862150 ], [ -76.993260, 38.862184 ], [ -76.993239, 38.862217 ], [ -76.993217, 38.862217 ], [ -76.993153, 38.862267 ], [ -76.993132, 38.862284 ], [ -76.993089, 38.862301 ], [ -76.992981, 38.862367 ], [ -76.992681, 38.862535 ], [ -76.992252, 38.862768 ], [ -76.991501, 38.863153 ], [ -76.991222, 38.863320 ], [ -76.991029, 38.863119 ], [ -76.990685, 38.862785 ], [ -76.990449, 38.862551 ], [ -76.990385, 38.862501 ], [ -76.990299, 38.862384 ], [ -76.990213, 38.862317 ], [ -76.990170, 38.862284 ], [ -76.990063, 38.862167 ], [ -76.990020, 38.862134 ], [ -76.989977, 38.862083 ], [ -76.989784, 38.861900 ], [ -76.989677, 38.861816 ], [ -76.989527, 38.861682 ], [ -76.989462, 38.861632 ], [ -76.989441, 38.861616 ], [ -76.989419, 38.861599 ], [ -76.989334, 38.861515 ], [ -76.989291, 38.861465 ], [ -76.989226, 38.861398 ], [ -76.988969, 38.861114 ], [ -76.988904, 38.861047 ], [ -76.988840, 38.860964 ], [ -76.988647, 38.860763 ], [ -76.988540, 38.860663 ], [ -76.988304, 38.860396 ], [ -76.988261, 38.860362 ], [ -76.988239, 38.860346 ], [ -76.988196, 38.860312 ], [ -76.988025, 38.860195 ], [ -76.987896, 38.860112 ], [ -76.987832, 38.860062 ], [ -76.987810, 38.860062 ], [ -76.987402, 38.859794 ], [ -76.987059, 38.859577 ], [ -76.986930, 38.859494 ], [ -76.986651, 38.859310 ], [ -76.986458, 38.859159 ], [ -76.986372, 38.859109 ], [ -76.986287, 38.859059 ], [ -76.986115, 38.858925 ], [ -76.985836, 38.858725 ], [ -76.985772, 38.858692 ], [ -76.985664, 38.858625 ], [ -76.985536, 38.858524 ], [ -76.985235, 38.858324 ], [ -76.984828, 38.858040 ], [ -76.984591, 38.857856 ], [ -76.984313, 38.857672 ], [ -76.984141, 38.857555 ], [ -76.983883, 38.857405 ], [ -76.983840, 38.857372 ], [ -76.983690, 38.857288 ], [ -76.983604, 38.857221 ], [ -76.983519, 38.857171 ], [ -76.983089, 38.856920 ], [ -76.983068, 38.856904 ], [ -76.983025, 38.856904 ], [ -76.982982, 38.856887 ], [ -76.982939, 38.856887 ], [ -76.982896, 38.856904 ], [ -76.982467, 38.856954 ], [ -76.982231, 38.857004 ], [ -76.981115, 38.857204 ], [ -76.980793, 38.857255 ], [ -76.980622, 38.857288 ], [ -76.980536, 38.857288 ], [ -76.980450, 38.857288 ], [ -76.980150, 38.857305 ], [ -76.979635, 38.857305 ], [ -76.979012, 38.857305 ], [ -76.978755, 38.857305 ], [ -76.978455, 38.857305 ], [ -76.978111, 38.857305 ], [ -76.978004, 38.857305 ], [ -76.977746, 38.857305 ], [ -76.977360, 38.857305 ], [ -76.977317, 38.857305 ], [ -76.977232, 38.857288 ], [ -76.977167, 38.857288 ], [ -76.977103, 38.857271 ], [ -76.977017, 38.857255 ], [ -76.976910, 38.857221 ], [ -76.976845, 38.857204 ], [ -76.976824, 38.857188 ], [ -76.976759, 38.857154 ], [ -76.976695, 38.857121 ], [ -76.976309, 38.856870 ], [ -76.976008, 38.856670 ], [ -76.975644, 38.856453 ], [ -76.975451, 38.856319 ], [ -76.975665, 38.856118 ], [ -76.975901, 38.855884 ], [ -76.974635, 38.854999 ], [ -76.975236, 38.854347 ], [ -76.975901, 38.853629 ], [ -76.976094, 38.853712 ], [ -76.976352, 38.853796 ], [ -76.976609, 38.853879 ], [ -76.976931, 38.853979 ], [ -76.977253, 38.854063 ], [ -76.977811, 38.854180 ], [ -76.978133, 38.854230 ], [ -76.978498, 38.854264 ], [ -76.978948, 38.854297 ], [ -76.979270, 38.854297 ], [ -76.979849, 38.854297 ], [ -76.980321, 38.854247 ], [ -76.980793, 38.854163 ], [ -76.981201, 38.854096 ], [ -76.981544, 38.854013 ], [ -76.981845, 38.853913 ], [ -76.982210, 38.853779 ], [ -76.982768, 38.853578 ], [ -76.983325, 38.853361 ], [ -76.983347, 38.853411 ], [ -76.983368, 38.853445 ], [ -76.983411, 38.853478 ], [ -76.983433, 38.853528 ], [ -76.983476, 38.853562 ], [ -76.983497, 38.853578 ], [ -76.983519, 38.853595 ], [ -76.983540, 38.853612 ], [ -76.983583, 38.853629 ], [ -76.983604, 38.853645 ], [ -76.983626, 38.853662 ], [ -76.983690, 38.853679 ], [ -76.983862, 38.853729 ], [ -76.984377, 38.853863 ], [ -76.984785, 38.853979 ], [ -76.985171, 38.854080 ], [ -76.985214, 38.854096 ], [ -76.985235, 38.854113 ], [ -76.985278, 38.854130 ], [ -76.985321, 38.854147 ], [ -76.985343, 38.854163 ], [ -76.985750, 38.854414 ], [ -76.985836, 38.854447 ], [ -76.985922, 38.854514 ], [ -76.985943, 38.854531 ], [ -76.985986, 38.854564 ], [ -76.986072, 38.854631 ], [ -76.986094, 38.854648 ], [ -76.986372, 38.854932 ], [ -76.986394, 38.854965 ], [ -76.986437, 38.854999 ], [ -76.986458, 38.855032 ], [ -76.986458, 38.855049 ], [ -76.986480, 38.855082 ], [ -76.986609, 38.855333 ], [ -76.986651, 38.855450 ], [ -76.986694, 38.855517 ], [ -76.986737, 38.855584 ], [ -76.986866, 38.855767 ], [ -76.986887, 38.855801 ], [ -76.986930, 38.855851 ], [ -76.986930, 38.855884 ], [ -76.986930, 38.855918 ], [ -76.986952, 38.855951 ], [ -76.986952, 38.856001 ], [ -76.986973, 38.856085 ], [ -76.986995, 38.856185 ], [ -76.987016, 38.856302 ], [ -76.987016, 38.856336 ], [ -76.987081, 38.856653 ], [ -76.987102, 38.856854 ], [ -76.987123, 38.856954 ], [ -76.987145, 38.857104 ], [ -76.987166, 38.857188 ], [ -76.987166, 38.857221 ], [ -76.987188, 38.857305 ], [ -76.987209, 38.857355 ], [ -76.987231, 38.857388 ], [ -76.987381, 38.857605 ], [ -76.987574, 38.857906 ], [ -76.987596, 38.857923 ], [ -76.987617, 38.857940 ], [ -76.987638, 38.857956 ], [ -76.987660, 38.857973 ], [ -76.987681, 38.857990 ], [ -76.987982, 38.858123 ], [ -76.988218, 38.858257 ], [ -76.988325, 38.858307 ], [ -76.988518, 38.858408 ], [ -76.988561, 38.858408 ], [ -76.988604, 38.858424 ], [ -76.988626, 38.858424 ], [ -76.988711, 38.858424 ], [ -76.989076, 38.858441 ], [ -76.990428, 38.858474 ], [ -76.990814, 38.858474 ], [ -76.990879, 38.858474 ], [ -76.990964, 38.858474 ], [ -76.991050, 38.858474 ], [ -76.991093, 38.858458 ], [ -76.991308, 38.858441 ], [ -76.991501, 38.858424 ], [ -76.991544, 38.858424 ], [ -76.991801, 38.858424 ], [ -76.992166, 38.858424 ], [ -76.993132, 38.858408 ], [ -76.993282, 38.858408 ], [ -76.993604, 38.858474 ], [ -76.993582, 38.858942 ], [ -76.993604, 38.859159 ], [ -76.993647, 38.859443 ], [ -76.993754, 38.859778 ], [ -76.993861, 38.860028 ], [ -76.993904, 38.860095 ], [ -76.993904, 38.861332 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007601", "GEOID": "11001007601", "NAME": "76.01", "NAMELSAD": "Census Tract 76.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1115359, "AWATER": 141529, "INTPTLAT": "+38.8716327", "INTPTLON": "-076.9798185" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.989484, 38.868365 ], [ -76.989398, 38.868432 ], [ -76.989291, 38.868516 ], [ -76.989248, 38.868549 ], [ -76.989076, 38.868700 ], [ -76.988969, 38.868766 ], [ -76.988862, 38.868850 ], [ -76.988711, 38.868933 ], [ -76.988583, 38.869017 ], [ -76.988497, 38.869067 ], [ -76.988475, 38.869067 ], [ -76.988411, 38.869101 ], [ -76.988347, 38.869134 ], [ -76.988475, 38.869318 ], [ -76.988540, 38.869418 ], [ -76.988583, 38.869451 ], [ -76.988583, 38.869468 ], [ -76.988840, 38.869802 ], [ -76.989226, 38.870270 ], [ -76.989419, 38.870504 ], [ -76.989570, 38.870671 ], [ -76.990106, 38.871339 ], [ -76.989720, 38.871623 ], [ -76.989677, 38.871640 ], [ -76.989634, 38.871673 ], [ -76.989505, 38.871774 ], [ -76.989248, 38.871957 ], [ -76.988797, 38.872208 ], [ -76.985407, 38.874079 ], [ -76.983948, 38.874931 ], [ -76.978154, 38.876802 ], [ -76.978025, 38.876885 ], [ -76.976631, 38.876167 ], [ -76.976202, 38.876017 ], [ -76.976180, 38.876000 ], [ -76.976159, 38.875983 ], [ -76.974978, 38.875432 ], [ -76.974657, 38.875315 ], [ -76.974399, 38.875215 ], [ -76.973991, 38.875048 ], [ -76.973369, 38.874781 ], [ -76.973133, 38.874680 ], [ -76.972919, 38.874580 ], [ -76.972682, 38.874480 ], [ -76.972511, 38.874413 ], [ -76.972275, 38.874313 ], [ -76.971331, 38.873912 ], [ -76.971116, 38.873561 ], [ -76.970987, 38.873361 ], [ -76.970987, 38.873344 ], [ -76.970966, 38.873294 ], [ -76.970944, 38.873277 ], [ -76.970944, 38.873260 ], [ -76.970944, 38.873210 ], [ -76.970923, 38.873177 ], [ -76.970923, 38.872759 ], [ -76.970923, 38.872275 ], [ -76.970923, 38.871957 ], [ -76.970923, 38.871523 ], [ -76.970923, 38.870821 ], [ -76.970923, 38.870738 ], [ -76.970944, 38.870353 ], [ -76.970923, 38.869986 ], [ -76.970944, 38.869552 ], [ -76.970944, 38.869468 ], [ -76.970923, 38.869217 ], [ -76.970923, 38.868833 ], [ -76.970944, 38.868816 ], [ -76.970944, 38.868766 ], [ -76.970923, 38.868733 ], [ -76.970923, 38.868666 ], [ -76.970880, 38.868583 ], [ -76.970794, 38.868432 ], [ -76.970687, 38.868248 ], [ -76.970859, 38.868232 ], [ -76.970944, 38.868248 ], [ -76.971030, 38.868248 ], [ -76.971266, 38.868248 ], [ -76.971824, 38.868248 ], [ -76.972189, 38.868248 ], [ -76.972747, 38.868248 ], [ -76.973519, 38.868248 ], [ -76.974099, 38.868248 ], [ -76.974957, 38.868248 ], [ -76.975708, 38.868248 ], [ -76.977103, 38.868232 ], [ -76.977339, 38.868232 ], [ -76.977983, 38.868232 ], [ -76.978884, 38.868232 ], [ -76.978991, 38.868232 ], [ -76.979313, 38.868232 ], [ -76.979957, 38.868232 ], [ -76.980515, 38.868232 ], [ -76.980772, 38.868232 ], [ -76.980858, 38.868232 ], [ -76.981244, 38.868232 ], [ -76.981416, 38.868148 ], [ -76.981502, 38.868098 ], [ -76.982059, 38.867814 ], [ -76.982210, 38.867731 ], [ -76.982660, 38.867513 ], [ -76.983047, 38.867330 ], [ -76.983540, 38.867079 ], [ -76.983862, 38.866912 ], [ -76.984248, 38.866728 ], [ -76.984270, 38.866711 ], [ -76.984291, 38.866711 ], [ -76.984313, 38.866695 ], [ -76.984334, 38.866678 ], [ -76.984334, 38.866645 ], [ -76.984355, 38.866628 ], [ -76.984527, 38.866661 ], [ -76.985128, 38.866778 ], [ -76.987059, 38.867129 ], [ -76.987145, 38.867146 ], [ -76.987703, 38.867246 ], [ -76.988046, 38.867296 ], [ -76.988347, 38.867363 ], [ -76.988626, 38.867413 ], [ -76.988711, 38.867513 ], [ -76.988711, 38.867530 ], [ -76.988904, 38.867831 ], [ -76.988904, 38.867864 ], [ -76.988947, 38.867914 ], [ -76.988969, 38.867948 ], [ -76.989012, 38.867981 ], [ -76.989033, 38.868015 ], [ -76.989355, 38.868265 ], [ -76.989484, 38.868365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007605", "GEOID": "11001007605", "NAME": "76.05", "NAMELSAD": "Census Tract 76.05", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 453794, "AWATER": 0, "INTPTLAT": "+38.8660433", "INTPTLON": "-076.9752566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.968756, 38.860663 ], [ -76.968820, 38.860730 ], [ -76.969163, 38.861031 ], [ -76.969228, 38.861098 ], [ -76.969357, 38.861215 ], [ -76.969485, 38.861332 ], [ -76.969571, 38.861415 ], [ -76.969593, 38.861432 ], [ -76.969614, 38.861465 ], [ -76.969657, 38.861482 ], [ -76.969700, 38.861532 ], [ -76.969786, 38.861599 ], [ -76.969872, 38.861682 ], [ -76.969893, 38.861699 ], [ -76.969914, 38.861716 ], [ -76.969936, 38.861733 ], [ -76.969957, 38.861749 ], [ -76.970043, 38.861799 ], [ -76.970150, 38.861883 ], [ -76.970236, 38.861916 ], [ -76.970301, 38.861966 ], [ -76.970494, 38.862050 ], [ -76.970515, 38.862067 ], [ -76.970558, 38.862083 ], [ -76.970751, 38.862167 ], [ -76.970987, 38.862267 ], [ -76.971180, 38.862367 ], [ -76.971502, 38.862501 ], [ -76.971824, 38.862668 ], [ -76.972039, 38.862752 ], [ -76.972146, 38.862802 ], [ -76.972468, 38.862936 ], [ -76.972682, 38.863036 ], [ -76.972704, 38.863036 ], [ -76.972811, 38.863086 ], [ -76.973219, 38.863236 ], [ -76.973348, 38.863286 ], [ -76.973712, 38.863437 ], [ -76.973948, 38.863537 ], [ -76.974206, 38.863621 ], [ -76.974614, 38.863804 ], [ -76.975000, 38.863988 ], [ -76.975107, 38.864022 ], [ -76.975515, 38.864222 ], [ -76.976223, 38.864573 ], [ -76.976631, 38.864757 ], [ -76.976717, 38.864807 ], [ -76.976738, 38.864807 ], [ -76.977232, 38.865057 ], [ -76.977682, 38.865275 ], [ -76.977789, 38.865325 ], [ -76.977854, 38.865341 ], [ -76.977940, 38.865375 ], [ -76.978047, 38.865408 ], [ -76.978090, 38.865425 ], [ -76.978176, 38.865458 ], [ -76.978347, 38.865509 ], [ -76.978433, 38.865542 ], [ -76.978476, 38.865559 ], [ -76.978605, 38.865592 ], [ -76.978905, 38.865642 ], [ -76.979012, 38.865659 ], [ -76.979356, 38.865726 ], [ -76.979463, 38.865742 ], [ -76.979549, 38.865759 ], [ -76.979957, 38.865826 ], [ -76.980793, 38.865993 ], [ -76.981909, 38.866194 ], [ -76.982231, 38.866244 ], [ -76.983175, 38.866411 ], [ -76.983626, 38.866494 ], [ -76.984355, 38.866628 ], [ -76.984334, 38.866645 ], [ -76.984334, 38.866678 ], [ -76.984313, 38.866695 ], [ -76.984291, 38.866711 ], [ -76.984270, 38.866711 ], [ -76.984248, 38.866728 ], [ -76.983862, 38.866912 ], [ -76.983540, 38.867079 ], [ -76.983047, 38.867330 ], [ -76.982660, 38.867513 ], [ -76.982210, 38.867731 ], [ -76.982059, 38.867814 ], [ -76.981502, 38.868098 ], [ -76.981416, 38.868148 ], [ -76.981244, 38.868232 ], [ -76.980858, 38.868232 ], [ -76.980772, 38.868232 ], [ -76.980515, 38.868232 ], [ -76.979957, 38.868232 ], [ -76.979313, 38.868232 ], [ -76.978991, 38.868232 ], [ -76.978884, 38.868232 ], [ -76.977983, 38.868232 ], [ -76.977339, 38.868232 ], [ -76.977103, 38.868232 ], [ -76.975708, 38.868248 ], [ -76.974957, 38.868248 ], [ -76.974099, 38.868248 ], [ -76.973519, 38.868248 ], [ -76.972747, 38.868248 ], [ -76.972189, 38.868248 ], [ -76.971824, 38.868248 ], [ -76.971266, 38.868248 ], [ -76.971030, 38.868248 ], [ -76.970944, 38.868248 ], [ -76.970859, 38.868232 ], [ -76.970687, 38.868248 ], [ -76.970623, 38.868148 ], [ -76.970537, 38.867981 ], [ -76.970494, 38.867931 ], [ -76.970451, 38.867831 ], [ -76.970408, 38.867781 ], [ -76.970344, 38.867614 ], [ -76.970301, 38.867513 ], [ -76.970279, 38.867463 ], [ -76.970258, 38.867396 ], [ -76.970236, 38.867279 ], [ -76.970215, 38.867213 ], [ -76.970193, 38.867079 ], [ -76.970193, 38.867029 ], [ -76.970172, 38.866962 ], [ -76.970172, 38.866828 ], [ -76.970172, 38.866711 ], [ -76.970172, 38.866594 ], [ -76.970172, 38.866528 ], [ -76.970172, 38.866427 ], [ -76.970193, 38.866361 ], [ -76.970215, 38.866277 ], [ -76.970215, 38.866177 ], [ -76.970236, 38.866127 ], [ -76.970258, 38.866026 ], [ -76.970301, 38.865926 ], [ -76.970344, 38.865843 ], [ -76.970365, 38.865793 ], [ -76.970387, 38.865742 ], [ -76.970408, 38.865676 ], [ -76.970472, 38.865525 ], [ -76.970515, 38.865475 ], [ -76.970537, 38.865442 ], [ -76.970601, 38.865358 ], [ -76.970644, 38.865275 ], [ -76.970687, 38.865191 ], [ -76.970708, 38.865141 ], [ -76.970708, 38.865108 ], [ -76.970751, 38.865024 ], [ -76.970773, 38.864924 ], [ -76.970794, 38.864824 ], [ -76.970794, 38.864773 ], [ -76.970816, 38.864723 ], [ -76.970816, 38.864606 ], [ -76.970816, 38.864556 ], [ -76.970816, 38.864456 ], [ -76.970816, 38.864406 ], [ -76.970794, 38.864339 ], [ -76.970794, 38.864289 ], [ -76.970773, 38.864239 ], [ -76.970773, 38.864189 ], [ -76.970751, 38.864155 ], [ -76.970730, 38.864088 ], [ -76.970687, 38.863988 ], [ -76.970665, 38.863938 ], [ -76.970644, 38.863888 ], [ -76.970580, 38.863804 ], [ -76.970537, 38.863704 ], [ -76.970494, 38.863637 ], [ -76.970451, 38.863587 ], [ -76.970236, 38.863286 ], [ -76.970065, 38.863019 ], [ -76.970000, 38.862902 ], [ -76.969764, 38.862551 ], [ -76.969528, 38.862217 ], [ -76.969442, 38.862067 ], [ -76.969399, 38.862000 ], [ -76.969399, 38.861966 ], [ -76.969357, 38.861900 ], [ -76.969357, 38.861849 ], [ -76.969314, 38.861833 ], [ -76.969314, 38.861816 ], [ -76.969292, 38.861783 ], [ -76.969249, 38.861749 ], [ -76.969185, 38.861582 ], [ -76.968906, 38.860997 ], [ -76.968756, 38.860663 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007504", "GEOID": "11001007504", "NAME": "75.04", "NAMELSAD": "Census Tract 75.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 764081, "AWATER": 0, "INTPTLAT": "+38.8609955", "INTPTLON": "-076.9796257" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.988025, 38.860195 ], [ -76.987960, 38.860262 ], [ -76.987832, 38.860379 ], [ -76.987746, 38.860463 ], [ -76.987724, 38.860479 ], [ -76.987681, 38.860496 ], [ -76.987660, 38.860513 ], [ -76.987617, 38.860513 ], [ -76.987574, 38.860513 ], [ -76.987016, 38.860513 ], [ -76.986909, 38.860513 ], [ -76.986244, 38.860530 ], [ -76.986201, 38.860530 ], [ -76.985364, 38.860530 ], [ -76.984828, 38.860530 ], [ -76.983862, 38.860530 ], [ -76.983798, 38.860530 ], [ -76.983669, 38.860530 ], [ -76.983669, 38.860596 ], [ -76.983669, 38.860630 ], [ -76.983647, 38.860646 ], [ -76.983647, 38.860663 ], [ -76.983647, 38.860697 ], [ -76.983626, 38.860713 ], [ -76.983626, 38.860730 ], [ -76.983604, 38.860747 ], [ -76.983583, 38.860780 ], [ -76.983562, 38.860797 ], [ -76.983562, 38.860814 ], [ -76.983497, 38.860847 ], [ -76.983433, 38.860880 ], [ -76.983368, 38.860947 ], [ -76.983325, 38.860981 ], [ -76.983261, 38.861031 ], [ -76.983218, 38.861064 ], [ -76.983197, 38.861098 ], [ -76.982961, 38.861315 ], [ -76.982939, 38.861332 ], [ -76.982918, 38.861348 ], [ -76.982896, 38.861365 ], [ -76.982875, 38.861365 ], [ -76.982853, 38.861382 ], [ -76.982853, 38.861398 ], [ -76.982832, 38.861465 ], [ -76.982832, 38.861549 ], [ -76.982789, 38.861916 ], [ -76.982703, 38.862601 ], [ -76.982682, 38.862768 ], [ -76.982660, 38.862869 ], [ -76.982682, 38.863136 ], [ -76.982682, 38.863387 ], [ -76.982682, 38.863520 ], [ -76.982682, 38.863554 ], [ -76.982682, 38.863587 ], [ -76.982682, 38.863621 ], [ -76.982639, 38.863738 ], [ -76.982532, 38.864088 ], [ -76.982424, 38.864473 ], [ -76.982210, 38.865208 ], [ -76.982167, 38.865325 ], [ -76.983433, 38.865559 ], [ -76.983325, 38.865909 ], [ -76.983175, 38.866411 ], [ -76.982231, 38.866244 ], [ -76.981909, 38.866194 ], [ -76.980793, 38.865993 ], [ -76.979957, 38.865826 ], [ -76.979549, 38.865759 ], [ -76.979463, 38.865742 ], [ -76.979356, 38.865726 ], [ -76.979012, 38.865659 ], [ -76.978905, 38.865642 ], [ -76.978605, 38.865592 ], [ -76.978476, 38.865559 ], [ -76.978433, 38.865542 ], [ -76.978347, 38.865509 ], [ -76.978176, 38.865458 ], [ -76.978090, 38.865425 ], [ -76.978047, 38.865408 ], [ -76.977940, 38.865375 ], [ -76.977854, 38.865341 ], [ -76.977789, 38.865325 ], [ -76.977682, 38.865275 ], [ -76.977232, 38.865057 ], [ -76.976738, 38.864807 ], [ -76.976717, 38.864807 ], [ -76.976631, 38.864757 ], [ -76.976223, 38.864573 ], [ -76.975515, 38.864222 ], [ -76.975107, 38.864022 ], [ -76.975000, 38.863988 ], [ -76.974614, 38.863804 ], [ -76.974206, 38.863621 ], [ -76.973948, 38.863537 ], [ -76.973712, 38.863437 ], [ -76.973348, 38.863286 ], [ -76.974893, 38.861682 ], [ -76.975729, 38.860814 ], [ -76.973627, 38.859443 ], [ -76.974421, 38.858725 ], [ -76.974463, 38.858608 ], [ -76.975214, 38.857906 ], [ -76.975000, 38.857789 ], [ -76.975021, 38.857756 ], [ -76.974292, 38.857388 ], [ -76.975064, 38.856653 ], [ -76.975214, 38.856519 ], [ -76.975451, 38.856319 ], [ -76.975644, 38.856453 ], [ -76.976008, 38.856670 ], [ -76.976309, 38.856870 ], [ -76.976695, 38.857121 ], [ -76.976759, 38.857154 ], [ -76.976824, 38.857188 ], [ -76.976845, 38.857204 ], [ -76.976910, 38.857221 ], [ -76.977017, 38.857255 ], [ -76.977103, 38.857271 ], [ -76.977167, 38.857288 ], [ -76.977232, 38.857288 ], [ -76.977317, 38.857305 ], [ -76.977360, 38.857305 ], [ -76.977746, 38.857305 ], [ -76.978004, 38.857305 ], [ -76.978111, 38.857305 ], [ -76.978455, 38.857305 ], [ -76.978755, 38.857305 ], [ -76.979012, 38.857305 ], [ -76.979635, 38.857305 ], [ -76.980150, 38.857305 ], [ -76.980450, 38.857288 ], [ -76.980536, 38.857288 ], [ -76.980622, 38.857288 ], [ -76.980793, 38.857255 ], [ -76.981115, 38.857204 ], [ -76.982231, 38.857004 ], [ -76.982467, 38.856954 ], [ -76.982896, 38.856904 ], [ -76.982939, 38.856887 ], [ -76.982982, 38.856887 ], [ -76.983025, 38.856904 ], [ -76.983068, 38.856904 ], [ -76.983089, 38.856920 ], [ -76.983519, 38.857171 ], [ -76.983604, 38.857221 ], [ -76.983690, 38.857288 ], [ -76.983840, 38.857372 ], [ -76.983883, 38.857405 ], [ -76.984141, 38.857555 ], [ -76.984313, 38.857672 ], [ -76.984591, 38.857856 ], [ -76.984828, 38.858040 ], [ -76.985235, 38.858324 ], [ -76.985536, 38.858524 ], [ -76.985664, 38.858625 ], [ -76.985772, 38.858692 ], [ -76.985836, 38.858725 ], [ -76.986115, 38.858925 ], [ -76.986287, 38.859059 ], [ -76.986372, 38.859109 ], [ -76.986458, 38.859159 ], [ -76.986651, 38.859310 ], [ -76.986930, 38.859494 ], [ -76.987059, 38.859577 ], [ -76.987402, 38.859794 ], [ -76.987810, 38.860062 ], [ -76.987832, 38.860062 ], [ -76.987896, 38.860112 ], [ -76.988025, 38.860195 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007708", "GEOID": "11001007708", "NAME": "77.08", "NAMELSAD": "Census Tract 77.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 745809, "AWATER": 129100, "INTPTLAT": "+38.8871944", "INTPTLON": "-076.9606349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.971760, 38.880209 ], [ -76.971438, 38.880627 ], [ -76.970708, 38.881429 ], [ -76.969593, 38.882665 ], [ -76.966782, 38.885237 ], [ -76.963885, 38.889129 ], [ -76.963434, 38.889730 ], [ -76.963370, 38.889797 ], [ -76.963370, 38.889864 ], [ -76.962619, 38.889864 ], [ -76.962426, 38.889847 ], [ -76.961567, 38.889847 ], [ -76.961224, 38.889847 ], [ -76.959808, 38.889847 ], [ -76.958585, 38.889814 ], [ -76.958241, 38.889830 ], [ -76.958091, 38.889814 ], [ -76.957340, 38.889830 ], [ -76.957190, 38.889830 ], [ -76.956739, 38.889830 ], [ -76.956718, 38.889830 ], [ -76.955903, 38.889830 ], [ -76.954594, 38.889814 ], [ -76.953692, 38.889814 ], [ -76.953092, 38.889814 ], [ -76.953006, 38.889814 ], [ -76.953070, 38.889730 ], [ -76.953177, 38.889596 ], [ -76.953778, 38.888778 ], [ -76.953886, 38.888661 ], [ -76.953928, 38.888611 ], [ -76.953950, 38.888578 ], [ -76.954229, 38.888177 ], [ -76.954401, 38.887943 ], [ -76.954572, 38.887709 ], [ -76.954658, 38.887576 ], [ -76.955152, 38.886907 ], [ -76.955216, 38.886791 ], [ -76.955431, 38.886507 ], [ -76.955795, 38.885989 ], [ -76.956139, 38.885521 ], [ -76.956825, 38.884552 ], [ -76.956954, 38.884385 ], [ -76.957018, 38.884268 ], [ -76.957233, 38.883984 ], [ -76.957362, 38.883801 ], [ -76.957490, 38.883634 ], [ -76.957512, 38.883600 ], [ -76.957684, 38.883350 ], [ -76.958070, 38.882832 ], [ -76.958156, 38.882698 ], [ -76.958156, 38.882682 ], [ -76.958220, 38.882615 ], [ -76.958327, 38.882448 ], [ -76.958671, 38.881980 ], [ -76.958864, 38.881696 ], [ -76.960387, 38.881496 ], [ -76.961095, 38.881613 ], [ -76.961696, 38.881713 ], [ -76.962254, 38.881980 ], [ -76.962919, 38.881997 ], [ -76.963112, 38.882014 ], [ -76.963542, 38.881780 ], [ -76.963670, 38.881780 ], [ -76.963756, 38.881730 ], [ -76.963820, 38.881679 ], [ -76.963885, 38.881579 ], [ -76.963928, 38.881496 ], [ -76.963971, 38.881412 ], [ -76.963992, 38.881362 ], [ -76.964035, 38.881312 ], [ -76.964099, 38.881279 ], [ -76.964142, 38.881228 ], [ -76.964228, 38.881195 ], [ -76.964293, 38.881195 ], [ -76.964507, 38.881195 ], [ -76.964636, 38.881262 ], [ -76.964786, 38.881262 ], [ -76.964979, 38.881262 ], [ -76.965044, 38.881228 ], [ -76.965086, 38.881212 ], [ -76.965151, 38.881245 ], [ -76.965258, 38.881295 ], [ -76.965280, 38.881312 ], [ -76.965451, 38.881362 ], [ -76.965559, 38.881379 ], [ -76.965644, 38.881379 ], [ -76.965816, 38.881362 ], [ -76.965837, 38.881362 ], [ -76.966310, 38.881345 ], [ -76.966503, 38.881362 ], [ -76.966631, 38.881345 ], [ -76.966760, 38.881312 ], [ -76.966932, 38.881279 ], [ -76.966996, 38.881245 ], [ -76.967061, 38.881228 ], [ -76.967211, 38.881245 ], [ -76.967254, 38.881279 ], [ -76.967297, 38.881312 ], [ -76.967297, 38.881345 ], [ -76.967382, 38.881379 ], [ -76.967490, 38.881429 ], [ -76.967704, 38.881479 ], [ -76.968133, 38.881345 ], [ -76.969743, 38.880811 ], [ -76.970065, 38.880727 ], [ -76.970387, 38.880627 ], [ -76.970687, 38.880527 ], [ -76.971760, 38.880209 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007709", "GEOID": "11001007709", "NAME": "77.09", "NAMELSAD": "Census Tract 77.09", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 828872, "AWATER": 82685, "INTPTLAT": "+38.8798620", "INTPTLON": "-076.9675363" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.958864, 38.881696 ], [ -76.959078, 38.881395 ], [ -76.959293, 38.881095 ], [ -76.959636, 38.880627 ], [ -76.959915, 38.880226 ], [ -76.960602, 38.879274 ], [ -76.961138, 38.878539 ], [ -76.961203, 38.878422 ], [ -76.961246, 38.878372 ], [ -76.961288, 38.878339 ], [ -76.961310, 38.878305 ], [ -76.961374, 38.878222 ], [ -76.961460, 38.878155 ], [ -76.961503, 38.878121 ], [ -76.961546, 38.878088 ], [ -76.961589, 38.878055 ], [ -76.961632, 38.878021 ], [ -76.961675, 38.877988 ], [ -76.961782, 38.877938 ], [ -76.961825, 38.877904 ], [ -76.961932, 38.877854 ], [ -76.962018, 38.877804 ], [ -76.962147, 38.877737 ], [ -76.962705, 38.877470 ], [ -76.962769, 38.877437 ], [ -76.962941, 38.877353 ], [ -76.963220, 38.877203 ], [ -76.963520, 38.877069 ], [ -76.963606, 38.877002 ], [ -76.963842, 38.876902 ], [ -76.964614, 38.876518 ], [ -76.964808, 38.876418 ], [ -76.964915, 38.876367 ], [ -76.964786, 38.876267 ], [ -76.964765, 38.876234 ], [ -76.964765, 38.876200 ], [ -76.964765, 38.875482 ], [ -76.964765, 38.875098 ], [ -76.964765, 38.874948 ], [ -76.964765, 38.874814 ], [ -76.964765, 38.874613 ], [ -76.964765, 38.874480 ], [ -76.964765, 38.874263 ], [ -76.964765, 38.874196 ], [ -76.964765, 38.873812 ], [ -76.964765, 38.873745 ], [ -76.964765, 38.873711 ], [ -76.964765, 38.873010 ], [ -76.964765, 38.872926 ], [ -76.964765, 38.872676 ], [ -76.964765, 38.872007 ], [ -76.964765, 38.871907 ], [ -76.964765, 38.871790 ], [ -76.964765, 38.871222 ], [ -76.964765, 38.871206 ], [ -76.964765, 38.871089 ], [ -76.964872, 38.871122 ], [ -76.965580, 38.871406 ], [ -76.966095, 38.871623 ], [ -76.966460, 38.871774 ], [ -76.966610, 38.871840 ], [ -76.966825, 38.871924 ], [ -76.967061, 38.872024 ], [ -76.967468, 38.872174 ], [ -76.967661, 38.872258 ], [ -76.967769, 38.872308 ], [ -76.967983, 38.872392 ], [ -76.968455, 38.872592 ], [ -76.968670, 38.872659 ], [ -76.968863, 38.872742 ], [ -76.968970, 38.872776 ], [ -76.969335, 38.872926 ], [ -76.969807, 38.873127 ], [ -76.970515, 38.873528 ], [ -76.971331, 38.873912 ], [ -76.972275, 38.874313 ], [ -76.972511, 38.874413 ], [ -76.972682, 38.874480 ], [ -76.972919, 38.874580 ], [ -76.973133, 38.874680 ], [ -76.973369, 38.874781 ], [ -76.973991, 38.875048 ], [ -76.974399, 38.875215 ], [ -76.974657, 38.875315 ], [ -76.974978, 38.875432 ], [ -76.976159, 38.875983 ], [ -76.976180, 38.876000 ], [ -76.976202, 38.876017 ], [ -76.976631, 38.876167 ], [ -76.978025, 38.876885 ], [ -76.975579, 38.877604 ], [ -76.973283, 38.878389 ], [ -76.972661, 38.878973 ], [ -76.971760, 38.880209 ], [ -76.970687, 38.880527 ], [ -76.970387, 38.880627 ], [ -76.970065, 38.880727 ], [ -76.969743, 38.880811 ], [ -76.968133, 38.881345 ], [ -76.967704, 38.881479 ], [ -76.967490, 38.881429 ], [ -76.967382, 38.881379 ], [ -76.967297, 38.881345 ], [ -76.967297, 38.881312 ], [ -76.967254, 38.881279 ], [ -76.967211, 38.881245 ], [ -76.967061, 38.881228 ], [ -76.966996, 38.881245 ], [ -76.966932, 38.881279 ], [ -76.966760, 38.881312 ], [ -76.966631, 38.881345 ], [ -76.966503, 38.881362 ], [ -76.966310, 38.881345 ], [ -76.965837, 38.881362 ], [ -76.965816, 38.881362 ], [ -76.965644, 38.881379 ], [ -76.965559, 38.881379 ], [ -76.965451, 38.881362 ], [ -76.965280, 38.881312 ], [ -76.965258, 38.881295 ], [ -76.965151, 38.881245 ], [ -76.965086, 38.881212 ], [ -76.965044, 38.881228 ], [ -76.964979, 38.881262 ], [ -76.964786, 38.881262 ], [ -76.964636, 38.881262 ], [ -76.964507, 38.881195 ], [ -76.964293, 38.881195 ], [ -76.964228, 38.881195 ], [ -76.964142, 38.881228 ], [ -76.964099, 38.881279 ], [ -76.964035, 38.881312 ], [ -76.963992, 38.881362 ], [ -76.963971, 38.881412 ], [ -76.963928, 38.881496 ], [ -76.963885, 38.881579 ], [ -76.963820, 38.881679 ], [ -76.963756, 38.881730 ], [ -76.963670, 38.881780 ], [ -76.963542, 38.881780 ], [ -76.963112, 38.882014 ], [ -76.962919, 38.881997 ], [ -76.962254, 38.881980 ], [ -76.961696, 38.881713 ], [ -76.961095, 38.881613 ], [ -76.960387, 38.881496 ], [ -76.958864, 38.881696 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009901", "GEOID": "11001009901", "NAME": "99.01", "NAMELSAD": "Census Tract 99.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2102150, "AWATER": 0, "INTPTLAT": "+38.8753461", "INTPTLON": "-076.9553332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.946654, 38.882799 ], [ -76.946611, 38.882715 ], [ -76.946290, 38.882014 ], [ -76.946118, 38.881646 ], [ -76.946075, 38.881563 ], [ -76.945903, 38.881195 ], [ -76.945860, 38.881095 ], [ -76.945817, 38.880961 ], [ -76.945775, 38.880861 ], [ -76.945882, 38.880844 ], [ -76.945925, 38.880828 ], [ -76.945989, 38.880811 ], [ -76.946032, 38.880777 ], [ -76.946054, 38.880777 ], [ -76.946161, 38.880727 ], [ -76.946225, 38.880694 ], [ -76.946526, 38.880560 ], [ -76.946762, 38.880443 ], [ -76.946912, 38.880377 ], [ -76.947126, 38.880260 ], [ -76.947255, 38.880176 ], [ -76.947448, 38.880059 ], [ -76.947513, 38.880009 ], [ -76.947598, 38.879959 ], [ -76.947641, 38.879942 ], [ -76.947770, 38.879842 ], [ -76.947856, 38.879792 ], [ -76.947942, 38.879725 ], [ -76.947985, 38.879692 ], [ -76.948071, 38.879625 ], [ -76.948113, 38.879608 ], [ -76.948199, 38.879525 ], [ -76.948242, 38.879491 ], [ -76.948328, 38.879424 ], [ -76.948435, 38.879307 ], [ -76.948457, 38.879274 ], [ -76.948543, 38.879191 ], [ -76.948586, 38.879124 ], [ -76.948693, 38.879007 ], [ -76.948757, 38.878923 ], [ -76.948779, 38.878890 ], [ -76.948822, 38.878823 ], [ -76.948843, 38.878773 ], [ -76.948886, 38.878706 ], [ -76.948972, 38.878539 ], [ -76.949015, 38.878472 ], [ -76.949036, 38.878405 ], [ -76.949058, 38.878322 ], [ -76.949100, 38.878222 ], [ -76.949122, 38.878138 ], [ -76.949143, 38.878071 ], [ -76.949165, 38.877988 ], [ -76.949186, 38.877888 ], [ -76.949186, 38.877821 ], [ -76.949186, 38.877754 ], [ -76.949208, 38.877687 ], [ -76.949208, 38.877620 ], [ -76.949208, 38.877554 ], [ -76.949208, 38.877470 ], [ -76.949186, 38.877353 ], [ -76.949165, 38.877236 ], [ -76.949143, 38.877102 ], [ -76.949122, 38.876952 ], [ -76.949100, 38.876885 ], [ -76.949079, 38.876819 ], [ -76.949058, 38.876785 ], [ -76.949058, 38.876752 ], [ -76.949015, 38.876685 ], [ -76.948972, 38.876535 ], [ -76.948886, 38.876351 ], [ -76.948864, 38.876301 ], [ -76.948800, 38.876167 ], [ -76.948714, 38.876050 ], [ -76.948650, 38.875933 ], [ -76.948628, 38.875883 ], [ -76.948543, 38.875749 ], [ -76.948478, 38.875616 ], [ -76.948371, 38.875432 ], [ -76.948328, 38.875332 ], [ -76.948264, 38.875181 ], [ -76.948221, 38.875081 ], [ -76.948156, 38.874931 ], [ -76.948135, 38.874864 ], [ -76.948135, 38.874847 ], [ -76.948113, 38.874747 ], [ -76.948092, 38.874664 ], [ -76.948071, 38.874563 ], [ -76.948071, 38.874530 ], [ -76.948071, 38.874463 ], [ -76.948071, 38.874413 ], [ -76.948092, 38.874313 ], [ -76.948092, 38.874229 ], [ -76.948113, 38.874146 ], [ -76.948135, 38.874096 ], [ -76.948156, 38.874012 ], [ -76.948199, 38.873929 ], [ -76.948221, 38.873862 ], [ -76.948242, 38.873828 ], [ -76.948328, 38.873678 ], [ -76.948414, 38.873494 ], [ -76.948435, 38.873461 ], [ -76.948564, 38.873244 ], [ -76.948607, 38.873177 ], [ -76.948607, 38.873143 ], [ -76.948628, 38.873110 ], [ -76.948650, 38.873026 ], [ -76.948650, 38.872960 ], [ -76.948671, 38.872876 ], [ -76.948693, 38.872776 ], [ -76.948693, 38.872709 ], [ -76.948693, 38.872642 ], [ -76.948693, 38.872559 ], [ -76.948671, 38.872525 ], [ -76.948671, 38.872442 ], [ -76.948628, 38.872275 ], [ -76.948607, 38.872141 ], [ -76.948564, 38.871924 ], [ -76.948543, 38.871757 ], [ -76.948521, 38.871606 ], [ -76.948500, 38.871506 ], [ -76.948500, 38.871473 ], [ -76.948500, 38.871389 ], [ -76.948500, 38.871306 ], [ -76.948500, 38.871272 ], [ -76.948521, 38.871189 ], [ -76.948521, 38.871122 ], [ -76.948543, 38.871072 ], [ -76.948564, 38.871005 ], [ -76.948586, 38.870938 ], [ -76.948607, 38.870871 ], [ -76.948628, 38.870805 ], [ -76.948671, 38.870754 ], [ -76.948714, 38.870671 ], [ -76.948779, 38.870537 ], [ -76.948822, 38.870487 ], [ -76.949015, 38.870186 ], [ -76.949036, 38.870136 ], [ -76.949122, 38.870036 ], [ -76.949165, 38.869953 ], [ -76.949186, 38.869902 ], [ -76.949229, 38.869836 ], [ -76.949251, 38.869785 ], [ -76.949294, 38.869685 ], [ -76.949294, 38.869635 ], [ -76.949315, 38.869602 ], [ -76.949337, 38.869501 ], [ -76.949358, 38.869368 ], [ -76.949358, 38.869351 ], [ -76.949379, 38.869318 ], [ -76.949379, 38.869217 ], [ -76.949422, 38.868783 ], [ -76.949444, 38.868683 ], [ -76.949444, 38.868616 ], [ -76.949465, 38.868516 ], [ -76.949487, 38.868449 ], [ -76.949487, 38.868416 ], [ -76.949508, 38.868365 ], [ -76.949551, 38.868265 ], [ -76.949594, 38.868182 ], [ -76.949615, 38.868132 ], [ -76.949658, 38.868065 ], [ -76.949680, 38.868031 ], [ -76.949744, 38.867948 ], [ -76.949787, 38.867898 ], [ -76.949830, 38.867848 ], [ -76.949873, 38.867814 ], [ -76.949937, 38.867747 ], [ -76.950002, 38.867697 ], [ -76.950045, 38.867664 ], [ -76.950109, 38.867614 ], [ -76.950173, 38.867580 ], [ -76.950281, 38.867513 ], [ -76.950366, 38.867463 ], [ -76.950495, 38.867413 ], [ -76.950560, 38.867396 ], [ -76.950645, 38.867363 ], [ -76.950710, 38.867330 ], [ -76.950881, 38.867296 ], [ -76.951118, 38.867229 ], [ -76.951225, 38.867213 ], [ -76.951418, 38.867163 ], [ -76.951590, 38.867129 ], [ -76.951740, 38.867096 ], [ -76.951783, 38.867079 ], [ -76.951826, 38.867079 ], [ -76.951954, 38.867029 ], [ -76.952083, 38.866995 ], [ -76.952147, 38.866979 ], [ -76.952212, 38.866945 ], [ -76.952298, 38.866895 ], [ -76.952362, 38.866862 ], [ -76.952426, 38.866828 ], [ -76.952512, 38.866778 ], [ -76.952577, 38.866745 ], [ -76.952662, 38.866678 ], [ -76.952705, 38.866628 ], [ -76.952727, 38.866594 ], [ -76.952748, 38.866578 ], [ -76.952791, 38.866544 ], [ -76.952834, 38.866494 ], [ -76.952877, 38.866461 ], [ -76.952899, 38.866411 ], [ -76.952984, 38.866277 ], [ -76.953306, 38.866394 ], [ -76.954036, 38.866695 ], [ -76.954315, 38.866812 ], [ -76.955323, 38.867229 ], [ -76.956096, 38.867547 ], [ -76.956718, 38.867797 ], [ -76.957211, 38.867998 ], [ -76.957641, 38.868182 ], [ -76.958306, 38.868449 ], [ -76.958413, 38.868499 ], [ -76.958477, 38.868516 ], [ -76.958563, 38.868549 ], [ -76.958649, 38.868583 ], [ -76.959658, 38.868984 ], [ -76.960194, 38.869217 ], [ -76.960387, 38.869284 ], [ -76.961246, 38.869652 ], [ -76.961997, 38.869953 ], [ -76.963091, 38.870404 ], [ -76.963263, 38.870470 ], [ -76.964765, 38.871089 ], [ -76.964765, 38.871206 ], [ -76.964765, 38.871222 ], [ -76.964765, 38.871790 ], [ -76.964765, 38.871907 ], [ -76.964765, 38.872007 ], [ -76.964765, 38.872676 ], [ -76.964765, 38.872926 ], [ -76.964765, 38.873010 ], [ -76.964765, 38.873711 ], [ -76.964765, 38.873745 ], [ -76.964765, 38.873812 ], [ -76.964765, 38.874196 ], [ -76.964765, 38.874263 ], [ -76.964765, 38.874480 ], [ -76.964765, 38.874613 ], [ -76.964765, 38.874814 ], [ -76.964765, 38.874948 ], [ -76.964765, 38.875098 ], [ -76.964765, 38.875482 ], [ -76.964765, 38.876200 ], [ -76.964765, 38.876234 ], [ -76.964786, 38.876267 ], [ -76.964915, 38.876367 ], [ -76.964808, 38.876418 ], [ -76.964614, 38.876518 ], [ -76.963842, 38.876902 ], [ -76.963606, 38.877002 ], [ -76.963520, 38.877069 ], [ -76.963220, 38.877203 ], [ -76.962941, 38.877353 ], [ -76.962769, 38.877437 ], [ -76.962705, 38.877470 ], [ -76.962147, 38.877737 ], [ -76.962018, 38.877804 ], [ -76.961932, 38.877854 ], [ -76.961825, 38.877904 ], [ -76.961782, 38.877938 ], [ -76.961675, 38.877988 ], [ -76.961632, 38.878021 ], [ -76.961589, 38.878055 ], [ -76.961546, 38.878088 ], [ -76.961503, 38.878121 ], [ -76.961460, 38.878155 ], [ -76.961374, 38.878222 ], [ -76.961310, 38.878305 ], [ -76.961288, 38.878339 ], [ -76.961246, 38.878372 ], [ -76.961203, 38.878422 ], [ -76.961138, 38.878539 ], [ -76.960602, 38.879274 ], [ -76.959915, 38.880226 ], [ -76.959636, 38.880627 ], [ -76.959293, 38.881095 ], [ -76.959078, 38.881395 ], [ -76.958864, 38.881696 ], [ -76.958671, 38.881980 ], [ -76.958327, 38.882448 ], [ -76.958220, 38.882615 ], [ -76.958156, 38.882682 ], [ -76.958156, 38.882698 ], [ -76.958070, 38.882832 ], [ -76.957684, 38.883350 ], [ -76.957512, 38.883600 ], [ -76.957490, 38.883634 ], [ -76.957340, 38.883634 ], [ -76.956589, 38.883634 ], [ -76.956267, 38.883634 ], [ -76.954765, 38.883634 ], [ -76.953306, 38.883617 ], [ -76.953263, 38.883617 ], [ -76.953177, 38.883617 ], [ -76.953092, 38.883617 ], [ -76.953006, 38.883600 ], [ -76.952941, 38.883584 ], [ -76.952190, 38.883483 ], [ -76.951761, 38.883417 ], [ -76.951439, 38.883366 ], [ -76.951311, 38.883350 ], [ -76.950839, 38.883283 ], [ -76.950388, 38.883216 ], [ -76.949787, 38.883116 ], [ -76.949508, 38.883083 ], [ -76.948671, 38.882966 ], [ -76.948049, 38.882865 ], [ -76.947920, 38.882849 ], [ -76.947813, 38.882832 ], [ -76.947684, 38.882832 ], [ -76.947556, 38.882832 ], [ -76.947448, 38.882832 ], [ -76.947277, 38.882832 ], [ -76.947041, 38.882832 ], [ -76.946805, 38.882832 ], [ -76.946676, 38.882832 ], [ -76.946654, 38.882799 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007604", "GEOID": "11001007604", "NAME": "76.04", "NAMELSAD": "Census Tract 76.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1369580, "AWATER": 0, "INTPTLAT": "+38.8660921", "INTPTLON": "-076.9638007" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.971331, 38.873912 ], [ -76.970515, 38.873528 ], [ -76.969807, 38.873127 ], [ -76.969335, 38.872926 ], [ -76.968970, 38.872776 ], [ -76.968863, 38.872742 ], [ -76.968670, 38.872659 ], [ -76.968455, 38.872592 ], [ -76.967983, 38.872392 ], [ -76.967769, 38.872308 ], [ -76.967661, 38.872258 ], [ -76.967468, 38.872174 ], [ -76.967061, 38.872024 ], [ -76.966825, 38.871924 ], [ -76.966610, 38.871840 ], [ -76.966460, 38.871774 ], [ -76.966095, 38.871623 ], [ -76.965580, 38.871406 ], [ -76.964872, 38.871122 ], [ -76.964765, 38.871089 ], [ -76.963263, 38.870470 ], [ -76.963091, 38.870404 ], [ -76.961997, 38.869953 ], [ -76.961246, 38.869652 ], [ -76.960387, 38.869284 ], [ -76.960194, 38.869217 ], [ -76.959658, 38.868984 ], [ -76.958649, 38.868583 ], [ -76.958563, 38.868549 ], [ -76.958477, 38.868516 ], [ -76.958413, 38.868499 ], [ -76.958306, 38.868449 ], [ -76.957641, 38.868182 ], [ -76.957211, 38.867998 ], [ -76.956718, 38.867797 ], [ -76.956096, 38.867547 ], [ -76.955323, 38.867229 ], [ -76.954315, 38.866812 ], [ -76.954036, 38.866695 ], [ -76.953306, 38.866394 ], [ -76.952984, 38.866277 ], [ -76.952212, 38.865960 ], [ -76.951590, 38.865709 ], [ -76.951311, 38.865592 ], [ -76.951332, 38.865575 ], [ -76.951375, 38.865559 ], [ -76.951439, 38.865525 ], [ -76.951482, 38.865509 ], [ -76.951525, 38.865492 ], [ -76.952040, 38.865308 ], [ -76.952212, 38.865258 ], [ -76.952941, 38.864991 ], [ -76.953263, 38.864890 ], [ -76.953478, 38.864807 ], [ -76.953735, 38.864723 ], [ -76.953843, 38.864673 ], [ -76.953993, 38.864623 ], [ -76.954980, 38.864272 ], [ -76.955087, 38.864239 ], [ -76.955216, 38.864189 ], [ -76.955259, 38.864172 ], [ -76.955323, 38.864138 ], [ -76.955431, 38.864088 ], [ -76.955473, 38.864072 ], [ -76.955581, 38.864005 ], [ -76.955624, 38.863971 ], [ -76.955709, 38.863921 ], [ -76.955731, 38.863888 ], [ -76.955774, 38.863871 ], [ -76.955817, 38.863838 ], [ -76.955860, 38.863804 ], [ -76.955881, 38.863771 ], [ -76.955945, 38.863721 ], [ -76.955967, 38.863704 ], [ -76.955988, 38.863671 ], [ -76.956010, 38.863637 ], [ -76.956031, 38.863621 ], [ -76.956053, 38.863587 ], [ -76.956310, 38.863236 ], [ -76.956589, 38.862852 ], [ -76.956611, 38.862819 ], [ -76.956654, 38.862735 ], [ -76.956654, 38.862702 ], [ -76.956675, 38.862585 ], [ -76.956868, 38.862518 ], [ -76.956954, 38.862501 ], [ -76.956975, 38.862484 ], [ -76.957083, 38.862418 ], [ -76.957147, 38.862384 ], [ -76.957169, 38.862367 ], [ -76.957233, 38.862334 ], [ -76.957297, 38.862301 ], [ -76.957405, 38.862267 ], [ -76.957490, 38.862234 ], [ -76.957576, 38.862217 ], [ -76.957662, 38.862200 ], [ -76.958284, 38.862050 ], [ -76.958435, 38.862017 ], [ -76.958542, 38.862000 ], [ -76.958692, 38.861966 ], [ -76.958907, 38.861933 ], [ -76.958992, 38.861916 ], [ -76.959014, 38.861916 ], [ -76.959078, 38.861916 ], [ -76.959229, 38.861900 ], [ -76.960173, 38.861833 ], [ -76.960495, 38.861799 ], [ -76.960623, 38.861799 ], [ -76.961031, 38.861766 ], [ -76.961482, 38.861733 ], [ -76.961718, 38.861699 ], [ -76.961975, 38.861682 ], [ -76.962061, 38.861682 ], [ -76.962125, 38.861666 ], [ -76.962211, 38.861649 ], [ -76.962276, 38.861632 ], [ -76.963091, 38.861332 ], [ -76.963198, 38.861298 ], [ -76.963413, 38.861215 ], [ -76.964207, 38.860931 ], [ -76.964765, 38.860713 ], [ -76.964872, 38.860680 ], [ -76.964915, 38.860663 ], [ -76.965044, 38.860613 ], [ -76.965752, 38.860346 ], [ -76.965795, 38.860312 ], [ -76.966460, 38.860095 ], [ -76.966674, 38.860012 ], [ -76.966910, 38.859911 ], [ -76.966996, 38.859878 ], [ -76.967103, 38.859811 ], [ -76.967318, 38.859694 ], [ -76.967618, 38.859477 ], [ -76.967704, 38.859427 ], [ -76.967812, 38.859327 ], [ -76.968069, 38.859042 ], [ -76.968112, 38.859009 ], [ -76.968198, 38.858909 ], [ -76.968198, 38.858959 ], [ -76.968198, 38.859042 ], [ -76.968198, 38.859126 ], [ -76.968176, 38.859577 ], [ -76.968155, 38.859978 ], [ -76.968155, 38.860112 ], [ -76.968133, 38.860212 ], [ -76.968198, 38.860245 ], [ -76.968305, 38.860296 ], [ -76.968348, 38.860329 ], [ -76.968391, 38.860362 ], [ -76.968477, 38.860413 ], [ -76.968520, 38.860446 ], [ -76.968563, 38.860479 ], [ -76.968756, 38.860663 ], [ -76.968906, 38.860997 ], [ -76.969185, 38.861582 ], [ -76.969249, 38.861749 ], [ -76.969292, 38.861783 ], [ -76.969314, 38.861816 ], [ -76.969314, 38.861833 ], [ -76.969357, 38.861849 ], [ -76.969357, 38.861900 ], [ -76.969399, 38.861966 ], [ -76.969399, 38.862000 ], [ -76.969442, 38.862067 ], [ -76.969528, 38.862217 ], [ -76.969764, 38.862551 ], [ -76.970000, 38.862902 ], [ -76.970065, 38.863019 ], [ -76.970236, 38.863286 ], [ -76.970451, 38.863587 ], [ -76.970494, 38.863637 ], [ -76.970537, 38.863704 ], [ -76.970580, 38.863804 ], [ -76.970644, 38.863888 ], [ -76.970665, 38.863938 ], [ -76.970687, 38.863988 ], [ -76.970730, 38.864088 ], [ -76.970751, 38.864155 ], [ -76.970773, 38.864189 ], [ -76.970773, 38.864239 ], [ -76.970794, 38.864289 ], [ -76.970794, 38.864339 ], [ -76.970816, 38.864406 ], [ -76.970816, 38.864456 ], [ -76.970816, 38.864556 ], [ -76.970816, 38.864606 ], [ -76.970816, 38.864723 ], [ -76.970794, 38.864773 ], [ -76.970794, 38.864824 ], [ -76.970773, 38.864924 ], [ -76.970751, 38.865024 ], [ -76.970708, 38.865108 ], [ -76.970708, 38.865141 ], [ -76.970687, 38.865191 ], [ -76.970644, 38.865275 ], [ -76.970601, 38.865358 ], [ -76.970537, 38.865442 ], [ -76.970515, 38.865475 ], [ -76.970472, 38.865525 ], [ -76.970408, 38.865676 ], [ -76.970387, 38.865742 ], [ -76.970365, 38.865793 ], [ -76.970344, 38.865843 ], [ -76.970301, 38.865926 ], [ -76.970258, 38.866026 ], [ -76.970236, 38.866127 ], [ -76.970215, 38.866177 ], [ -76.970215, 38.866277 ], [ -76.970193, 38.866361 ], [ -76.970172, 38.866427 ], [ -76.970172, 38.866528 ], [ -76.970172, 38.866594 ], [ -76.970172, 38.866711 ], [ -76.970172, 38.866828 ], [ -76.970172, 38.866962 ], [ -76.970193, 38.867029 ], [ -76.970193, 38.867079 ], [ -76.970215, 38.867213 ], [ -76.970236, 38.867279 ], [ -76.970258, 38.867396 ], [ -76.970279, 38.867463 ], [ -76.970301, 38.867513 ], [ -76.970344, 38.867614 ], [ -76.970408, 38.867781 ], [ -76.970451, 38.867831 ], [ -76.970494, 38.867931 ], [ -76.970537, 38.867981 ], [ -76.970623, 38.868148 ], [ -76.970687, 38.868248 ], [ -76.970794, 38.868432 ], [ -76.970880, 38.868583 ], [ -76.970923, 38.868666 ], [ -76.970923, 38.868733 ], [ -76.970944, 38.868766 ], [ -76.970944, 38.868816 ], [ -76.970923, 38.868833 ], [ -76.970923, 38.869217 ], [ -76.970944, 38.869468 ], [ -76.970944, 38.869552 ], [ -76.970923, 38.869986 ], [ -76.970944, 38.870353 ], [ -76.970923, 38.870738 ], [ -76.970923, 38.870821 ], [ -76.970923, 38.871523 ], [ -76.970923, 38.871957 ], [ -76.970923, 38.872275 ], [ -76.970923, 38.872759 ], [ -76.970923, 38.873177 ], [ -76.970944, 38.873210 ], [ -76.970944, 38.873260 ], [ -76.970944, 38.873277 ], [ -76.970966, 38.873294 ], [ -76.970987, 38.873344 ], [ -76.970987, 38.873361 ], [ -76.971116, 38.873561 ], [ -76.971331, 38.873912 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007502", "GEOID": "11001007502", "NAME": "75.02", "NAMELSAD": "Census Tract 75.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 648317, "AWATER": 0, "INTPTLAT": "+38.8568592", "INTPTLON": "-076.9697843" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963499, 38.850704 ], [ -76.963606, 38.850788 ], [ -76.964164, 38.851239 ], [ -76.964958, 38.851857 ], [ -76.965559, 38.852325 ], [ -76.965687, 38.852409 ], [ -76.965687, 38.852074 ], [ -76.965687, 38.852008 ], [ -76.965687, 38.851857 ], [ -76.965687, 38.851824 ], [ -76.965687, 38.851790 ], [ -76.965687, 38.851774 ], [ -76.965687, 38.851740 ], [ -76.965687, 38.851707 ], [ -76.965687, 38.851590 ], [ -76.965687, 38.851540 ], [ -76.965687, 38.851506 ], [ -76.965666, 38.851473 ], [ -76.965666, 38.851406 ], [ -76.965644, 38.851356 ], [ -76.965623, 38.851289 ], [ -76.965601, 38.851272 ], [ -76.965580, 38.851239 ], [ -76.965559, 38.851189 ], [ -76.965516, 38.851155 ], [ -76.965451, 38.851105 ], [ -76.965430, 38.851072 ], [ -76.965365, 38.851005 ], [ -76.965344, 38.850988 ], [ -76.965322, 38.850955 ], [ -76.965322, 38.850905 ], [ -76.965301, 38.850871 ], [ -76.965301, 38.850838 ], [ -76.965301, 38.850804 ], [ -76.965301, 38.850754 ], [ -76.965301, 38.850721 ], [ -76.965301, 38.850688 ], [ -76.965322, 38.850637 ], [ -76.965344, 38.850604 ], [ -76.965344, 38.850587 ], [ -76.965365, 38.850554 ], [ -76.965408, 38.850504 ], [ -76.965451, 38.850487 ], [ -76.965473, 38.850454 ], [ -76.965494, 38.850437 ], [ -76.965537, 38.850420 ], [ -76.965559, 38.850403 ], [ -76.965601, 38.850387 ], [ -76.965623, 38.850370 ], [ -76.965666, 38.850353 ], [ -76.965709, 38.850353 ], [ -76.965730, 38.850337 ], [ -76.965816, 38.850337 ], [ -76.965902, 38.850337 ], [ -76.965923, 38.850337 ], [ -76.965966, 38.850353 ], [ -76.966009, 38.850353 ], [ -76.966052, 38.850370 ], [ -76.966138, 38.850403 ], [ -76.966224, 38.850454 ], [ -76.966245, 38.850470 ], [ -76.966310, 38.850520 ], [ -76.966331, 38.850537 ], [ -76.966352, 38.850554 ], [ -76.966374, 38.850587 ], [ -76.966438, 38.850637 ], [ -76.966460, 38.850671 ], [ -76.966524, 38.850754 ], [ -76.966567, 38.850821 ], [ -76.966610, 38.850871 ], [ -76.966631, 38.850888 ], [ -76.966653, 38.850921 ], [ -76.966653, 38.850955 ], [ -76.966696, 38.851022 ], [ -76.966717, 38.851089 ], [ -76.966739, 38.851105 ], [ -76.966760, 38.851189 ], [ -76.966782, 38.851222 ], [ -76.966782, 38.851239 ], [ -76.966803, 38.851256 ], [ -76.966825, 38.851289 ], [ -76.966846, 38.851289 ], [ -76.966867, 38.851306 ], [ -76.966910, 38.851306 ], [ -76.967940, 38.851306 ], [ -76.968176, 38.851306 ], [ -76.968348, 38.851306 ], [ -76.968434, 38.851323 ], [ -76.968520, 38.851339 ], [ -76.968584, 38.851356 ], [ -76.968670, 38.851373 ], [ -76.968734, 38.851389 ], [ -76.968756, 38.851406 ], [ -76.968799, 38.851423 ], [ -76.968863, 38.851439 ], [ -76.968884, 38.851456 ], [ -76.968906, 38.851473 ], [ -76.968949, 38.851490 ], [ -76.968992, 38.851523 ], [ -76.969056, 38.851556 ], [ -76.969099, 38.851590 ], [ -76.969099, 38.851607 ], [ -76.969142, 38.851640 ], [ -76.969163, 38.851657 ], [ -76.969206, 38.851724 ], [ -76.969292, 38.851824 ], [ -76.969485, 38.852058 ], [ -76.969957, 38.852626 ], [ -76.970043, 38.852726 ], [ -76.970043, 38.852743 ], [ -76.970022, 38.852793 ], [ -76.970000, 38.852860 ], [ -76.969979, 38.852927 ], [ -76.969979, 38.852960 ], [ -76.969979, 38.853027 ], [ -76.969979, 38.853077 ], [ -76.969979, 38.853144 ], [ -76.969979, 38.853578 ], [ -76.969979, 38.854147 ], [ -76.969979, 38.854447 ], [ -76.969979, 38.854548 ], [ -76.969979, 38.854899 ], [ -76.969979, 38.855116 ], [ -76.969957, 38.855734 ], [ -76.969957, 38.855818 ], [ -76.970000, 38.855818 ], [ -76.970065, 38.855818 ], [ -76.970086, 38.855834 ], [ -76.970108, 38.855834 ], [ -76.970236, 38.855918 ], [ -76.970730, 38.856235 ], [ -76.970923, 38.856369 ], [ -76.971009, 38.856419 ], [ -76.971138, 38.856503 ], [ -76.971416, 38.856686 ], [ -76.971631, 38.856820 ], [ -76.971738, 38.856904 ], [ -76.972082, 38.856603 ], [ -76.972361, 38.856336 ], [ -76.972640, 38.856068 ], [ -76.972919, 38.855818 ], [ -76.973004, 38.855717 ], [ -76.973133, 38.855600 ], [ -76.973176, 38.855567 ], [ -76.973240, 38.855500 ], [ -76.973412, 38.855350 ], [ -76.973498, 38.855400 ], [ -76.974034, 38.855751 ], [ -76.974356, 38.855968 ], [ -76.974828, 38.856285 ], [ -76.975214, 38.856519 ], [ -76.975064, 38.856653 ], [ -76.974292, 38.857388 ], [ -76.975021, 38.857756 ], [ -76.975000, 38.857789 ], [ -76.975214, 38.857906 ], [ -76.974463, 38.858608 ], [ -76.974421, 38.858725 ], [ -76.973627, 38.859443 ], [ -76.975729, 38.860814 ], [ -76.974893, 38.861682 ], [ -76.973348, 38.863286 ], [ -76.973219, 38.863236 ], [ -76.972811, 38.863086 ], [ -76.972704, 38.863036 ], [ -76.972682, 38.863036 ], [ -76.972468, 38.862936 ], [ -76.972146, 38.862802 ], [ -76.972039, 38.862752 ], [ -76.971824, 38.862668 ], [ -76.971502, 38.862501 ], [ -76.971180, 38.862367 ], [ -76.970987, 38.862267 ], [ -76.970751, 38.862167 ], [ -76.970558, 38.862083 ], [ -76.970515, 38.862067 ], [ -76.970494, 38.862050 ], [ -76.970301, 38.861966 ], [ -76.970236, 38.861916 ], [ -76.970150, 38.861883 ], [ -76.970043, 38.861799 ], [ -76.969957, 38.861749 ], [ -76.969936, 38.861733 ], [ -76.969914, 38.861716 ], [ -76.969893, 38.861699 ], [ -76.969872, 38.861682 ], [ -76.969786, 38.861599 ], [ -76.969700, 38.861532 ], [ -76.969657, 38.861482 ], [ -76.969614, 38.861465 ], [ -76.969593, 38.861432 ], [ -76.969571, 38.861415 ], [ -76.969485, 38.861332 ], [ -76.969357, 38.861215 ], [ -76.969228, 38.861098 ], [ -76.969163, 38.861031 ], [ -76.968820, 38.860730 ], [ -76.968756, 38.860663 ], [ -76.968563, 38.860479 ], [ -76.968520, 38.860446 ], [ -76.968477, 38.860413 ], [ -76.968391, 38.860362 ], [ -76.968348, 38.860329 ], [ -76.968305, 38.860296 ], [ -76.968198, 38.860245 ], [ -76.968133, 38.860212 ], [ -76.968155, 38.860112 ], [ -76.968155, 38.859978 ], [ -76.968176, 38.859577 ], [ -76.968198, 38.859126 ], [ -76.968198, 38.859042 ], [ -76.968198, 38.858959 ], [ -76.968198, 38.858909 ], [ -76.968176, 38.858809 ], [ -76.968176, 38.858742 ], [ -76.968155, 38.858658 ], [ -76.968133, 38.858575 ], [ -76.968091, 38.858424 ], [ -76.968069, 38.858357 ], [ -76.968026, 38.858240 ], [ -76.968005, 38.858190 ], [ -76.967962, 38.858090 ], [ -76.967940, 38.858023 ], [ -76.967919, 38.857956 ], [ -76.967876, 38.857873 ], [ -76.967833, 38.857789 ], [ -76.967812, 38.857756 ], [ -76.967769, 38.857689 ], [ -76.967726, 38.857605 ], [ -76.967340, 38.857071 ], [ -76.967318, 38.857004 ], [ -76.967254, 38.856937 ], [ -76.966996, 38.856536 ], [ -76.966910, 38.856419 ], [ -76.966631, 38.856018 ], [ -76.966588, 38.855951 ], [ -76.966438, 38.855751 ], [ -76.966331, 38.855617 ], [ -76.966224, 38.855483 ], [ -76.966095, 38.855316 ], [ -76.965709, 38.854832 ], [ -76.965623, 38.854731 ], [ -76.965559, 38.854665 ], [ -76.965494, 38.854581 ], [ -76.965430, 38.854497 ], [ -76.965344, 38.854414 ], [ -76.965301, 38.854347 ], [ -76.965194, 38.854247 ], [ -76.965065, 38.854130 ], [ -76.964872, 38.853929 ], [ -76.964829, 38.853896 ], [ -76.964679, 38.853746 ], [ -76.964636, 38.853712 ], [ -76.964335, 38.853428 ], [ -76.963992, 38.853077 ], [ -76.963520, 38.852626 ], [ -76.963220, 38.852342 ], [ -76.963048, 38.852191 ], [ -76.963005, 38.852158 ], [ -76.962984, 38.852125 ], [ -76.962941, 38.852108 ], [ -76.962898, 38.852074 ], [ -76.962855, 38.852058 ], [ -76.962812, 38.852024 ], [ -76.962769, 38.852008 ], [ -76.962726, 38.851991 ], [ -76.962597, 38.851958 ], [ -76.962554, 38.851941 ], [ -76.962490, 38.851924 ], [ -76.962447, 38.851924 ], [ -76.962383, 38.851907 ], [ -76.962318, 38.851907 ], [ -76.962276, 38.851907 ], [ -76.961954, 38.851924 ], [ -76.962082, 38.851807 ], [ -76.962340, 38.851607 ], [ -76.962597, 38.851389 ], [ -76.962898, 38.851155 ], [ -76.963241, 38.850888 ], [ -76.963413, 38.850771 ], [ -76.963499, 38.850704 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007603", "GEOID": "11001007603", "NAME": "76.03", "NAMELSAD": "Census Tract 76.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1226616, "AWATER": 0, "INTPTLAT": "+38.8591090", "INTPTLON": "-076.9585469" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.967962, 38.858090 ], [ -76.968005, 38.858190 ], [ -76.968026, 38.858240 ], [ -76.968069, 38.858357 ], [ -76.968091, 38.858424 ], [ -76.968133, 38.858575 ], [ -76.968155, 38.858658 ], [ -76.968176, 38.858742 ], [ -76.968176, 38.858809 ], [ -76.968198, 38.858909 ], [ -76.968112, 38.859009 ], [ -76.968069, 38.859042 ], [ -76.967812, 38.859327 ], [ -76.967704, 38.859427 ], [ -76.967618, 38.859477 ], [ -76.967318, 38.859694 ], [ -76.967103, 38.859811 ], [ -76.966996, 38.859878 ], [ -76.966910, 38.859911 ], [ -76.966674, 38.860012 ], [ -76.966460, 38.860095 ], [ -76.965795, 38.860312 ], [ -76.965752, 38.860346 ], [ -76.965044, 38.860613 ], [ -76.964915, 38.860663 ], [ -76.964872, 38.860680 ], [ -76.964765, 38.860713 ], [ -76.964207, 38.860931 ], [ -76.963413, 38.861215 ], [ -76.963198, 38.861298 ], [ -76.963091, 38.861332 ], [ -76.962276, 38.861632 ], [ -76.962211, 38.861649 ], [ -76.962125, 38.861666 ], [ -76.962061, 38.861682 ], [ -76.961975, 38.861682 ], [ -76.961718, 38.861699 ], [ -76.961482, 38.861733 ], [ -76.961031, 38.861766 ], [ -76.960623, 38.861799 ], [ -76.960495, 38.861799 ], [ -76.960173, 38.861833 ], [ -76.959229, 38.861900 ], [ -76.959078, 38.861916 ], [ -76.959014, 38.861916 ], [ -76.958992, 38.861916 ], [ -76.958907, 38.861933 ], [ -76.958692, 38.861966 ], [ -76.958542, 38.862000 ], [ -76.958435, 38.862017 ], [ -76.958284, 38.862050 ], [ -76.957662, 38.862200 ], [ -76.957576, 38.862217 ], [ -76.957490, 38.862234 ], [ -76.957405, 38.862267 ], [ -76.957297, 38.862301 ], [ -76.957233, 38.862334 ], [ -76.957169, 38.862367 ], [ -76.957147, 38.862384 ], [ -76.957083, 38.862418 ], [ -76.956975, 38.862484 ], [ -76.956954, 38.862501 ], [ -76.956868, 38.862518 ], [ -76.956675, 38.862585 ], [ -76.956654, 38.862702 ], [ -76.956654, 38.862735 ], [ -76.956611, 38.862819 ], [ -76.956589, 38.862852 ], [ -76.956310, 38.863236 ], [ -76.956053, 38.863587 ], [ -76.956031, 38.863621 ], [ -76.956010, 38.863637 ], [ -76.955988, 38.863671 ], [ -76.955967, 38.863704 ], [ -76.955945, 38.863721 ], [ -76.955881, 38.863771 ], [ -76.955860, 38.863804 ], [ -76.955817, 38.863838 ], [ -76.955774, 38.863871 ], [ -76.955731, 38.863888 ], [ -76.955709, 38.863921 ], [ -76.955624, 38.863971 ], [ -76.955581, 38.864005 ], [ -76.955473, 38.864072 ], [ -76.955431, 38.864088 ], [ -76.955323, 38.864138 ], [ -76.955259, 38.864172 ], [ -76.955216, 38.864189 ], [ -76.955087, 38.864239 ], [ -76.954980, 38.864272 ], [ -76.953993, 38.864623 ], [ -76.953843, 38.864673 ], [ -76.953735, 38.864723 ], [ -76.953478, 38.864807 ], [ -76.953263, 38.864890 ], [ -76.952941, 38.864991 ], [ -76.952212, 38.865258 ], [ -76.952040, 38.865308 ], [ -76.951525, 38.865492 ], [ -76.951482, 38.865509 ], [ -76.951439, 38.865525 ], [ -76.951375, 38.865559 ], [ -76.951332, 38.865575 ], [ -76.951311, 38.865592 ], [ -76.950152, 38.865124 ], [ -76.949894, 38.865007 ], [ -76.949100, 38.864690 ], [ -76.947706, 38.864122 ], [ -76.947534, 38.864038 ], [ -76.946847, 38.863771 ], [ -76.946805, 38.863704 ], [ -76.946890, 38.863637 ], [ -76.946998, 38.863554 ], [ -76.947105, 38.863453 ], [ -76.947405, 38.863220 ], [ -76.947684, 38.863002 ], [ -76.947942, 38.862819 ], [ -76.948006, 38.862752 ], [ -76.948113, 38.862685 ], [ -76.948242, 38.862585 ], [ -76.948628, 38.862267 ], [ -76.948993, 38.862000 ], [ -76.949015, 38.861966 ], [ -76.949100, 38.861900 ], [ -76.949165, 38.861849 ], [ -76.949315, 38.861749 ], [ -76.949551, 38.861549 ], [ -76.949809, 38.861365 ], [ -76.949830, 38.861348 ], [ -76.949916, 38.861281 ], [ -76.950002, 38.861198 ], [ -76.950173, 38.861081 ], [ -76.950195, 38.861064 ], [ -76.950388, 38.860897 ], [ -76.950645, 38.860713 ], [ -76.950817, 38.860563 ], [ -76.951160, 38.860312 ], [ -76.951718, 38.859878 ], [ -76.952362, 38.859377 ], [ -76.952899, 38.858942 ], [ -76.952984, 38.858875 ], [ -76.953263, 38.858675 ], [ -76.953413, 38.858558 ], [ -76.953585, 38.858424 ], [ -76.953607, 38.858391 ], [ -76.953671, 38.858341 ], [ -76.953692, 38.858324 ], [ -76.953778, 38.858257 ], [ -76.953886, 38.858190 ], [ -76.954186, 38.857956 ], [ -76.954465, 38.857722 ], [ -76.954529, 38.857689 ], [ -76.954594, 38.857622 ], [ -76.954722, 38.857539 ], [ -76.954830, 38.857438 ], [ -76.955645, 38.856820 ], [ -76.955731, 38.856753 ], [ -76.955967, 38.856569 ], [ -76.956117, 38.856453 ], [ -76.956139, 38.856436 ], [ -76.956224, 38.856369 ], [ -76.956246, 38.856352 ], [ -76.956267, 38.856319 ], [ -76.956418, 38.856219 ], [ -76.957126, 38.855667 ], [ -76.957726, 38.855199 ], [ -76.958005, 38.854982 ], [ -76.958027, 38.854965 ], [ -76.958113, 38.854915 ], [ -76.958177, 38.854848 ], [ -76.958821, 38.854364 ], [ -76.960731, 38.852877 ], [ -76.961954, 38.851924 ], [ -76.962276, 38.851907 ], [ -76.962318, 38.851907 ], [ -76.962383, 38.851907 ], [ -76.962447, 38.851924 ], [ -76.962490, 38.851924 ], [ -76.962554, 38.851941 ], [ -76.962597, 38.851958 ], [ -76.962726, 38.851991 ], [ -76.962769, 38.852008 ], [ -76.962812, 38.852024 ], [ -76.962855, 38.852058 ], [ -76.962898, 38.852074 ], [ -76.962941, 38.852108 ], [ -76.962984, 38.852125 ], [ -76.963005, 38.852158 ], [ -76.963048, 38.852191 ], [ -76.963220, 38.852342 ], [ -76.963520, 38.852626 ], [ -76.963992, 38.853077 ], [ -76.964335, 38.853428 ], [ -76.964636, 38.853712 ], [ -76.964679, 38.853746 ], [ -76.964829, 38.853896 ], [ -76.964872, 38.853929 ], [ -76.965065, 38.854130 ], [ -76.965194, 38.854247 ], [ -76.965301, 38.854347 ], [ -76.965344, 38.854414 ], [ -76.965430, 38.854497 ], [ -76.965494, 38.854581 ], [ -76.965559, 38.854665 ], [ -76.965623, 38.854731 ], [ -76.965709, 38.854832 ], [ -76.966095, 38.855316 ], [ -76.966224, 38.855483 ], [ -76.966331, 38.855617 ], [ -76.966438, 38.855751 ], [ -76.966588, 38.855951 ], [ -76.966631, 38.856018 ], [ -76.966910, 38.856419 ], [ -76.966996, 38.856536 ], [ -76.967254, 38.856937 ], [ -76.967318, 38.857004 ], [ -76.967340, 38.857071 ], [ -76.967726, 38.857605 ], [ -76.967769, 38.857689 ], [ -76.967812, 38.857756 ], [ -76.967833, 38.857789 ], [ -76.967876, 38.857873 ], [ -76.967919, 38.857956 ], [ -76.967940, 38.858023 ], [ -76.967962, 38.858090 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007406", "GEOID": "11001007406", "NAME": "74.06", "NAMELSAD": "Census Tract 74.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 360152, "AWATER": 0, "INTPTLAT": "+38.8555543", "INTPTLON": "-076.9895582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.983325, 38.853361 ], [ -76.983819, 38.853177 ], [ -76.984313, 38.853027 ], [ -76.984849, 38.852893 ], [ -76.985321, 38.852843 ], [ -76.985900, 38.852810 ], [ -76.986372, 38.852776 ], [ -76.986930, 38.852760 ], [ -76.987488, 38.852793 ], [ -76.988068, 38.852826 ], [ -76.988690, 38.852877 ], [ -76.989248, 38.852960 ], [ -76.989677, 38.853044 ], [ -76.990042, 38.853127 ], [ -76.990771, 38.853311 ], [ -76.991415, 38.853512 ], [ -76.991823, 38.853679 ], [ -76.991973, 38.853746 ], [ -76.992059, 38.853812 ], [ -76.992359, 38.853979 ], [ -76.992617, 38.854163 ], [ -76.992853, 38.854397 ], [ -76.993089, 38.854648 ], [ -76.993260, 38.854899 ], [ -76.993432, 38.855199 ], [ -76.993539, 38.855467 ], [ -76.993625, 38.855734 ], [ -76.993668, 38.855918 ], [ -76.993647, 38.856703 ], [ -76.993647, 38.857188 ], [ -76.993625, 38.857706 ], [ -76.993604, 38.858474 ], [ -76.993282, 38.858408 ], [ -76.993132, 38.858408 ], [ -76.992166, 38.858424 ], [ -76.991801, 38.858424 ], [ -76.991544, 38.858424 ], [ -76.991501, 38.858424 ], [ -76.991308, 38.858441 ], [ -76.991093, 38.858458 ], [ -76.991050, 38.858474 ], [ -76.990964, 38.858474 ], [ -76.990879, 38.858474 ], [ -76.990814, 38.858474 ], [ -76.990428, 38.858474 ], [ -76.989076, 38.858441 ], [ -76.988711, 38.858424 ], [ -76.988626, 38.858424 ], [ -76.988604, 38.858424 ], [ -76.988561, 38.858408 ], [ -76.988518, 38.858408 ], [ -76.988325, 38.858307 ], [ -76.988218, 38.858257 ], [ -76.987982, 38.858123 ], [ -76.987681, 38.857990 ], [ -76.987660, 38.857973 ], [ -76.987638, 38.857956 ], [ -76.987617, 38.857940 ], [ -76.987596, 38.857923 ], [ -76.987574, 38.857906 ], [ -76.987381, 38.857605 ], [ -76.987231, 38.857388 ], [ -76.987209, 38.857355 ], [ -76.987188, 38.857305 ], [ -76.987166, 38.857221 ], [ -76.987166, 38.857188 ], [ -76.987145, 38.857104 ], [ -76.987123, 38.856954 ], [ -76.987102, 38.856854 ], [ -76.987081, 38.856653 ], [ -76.987016, 38.856336 ], [ -76.987016, 38.856302 ], [ -76.986995, 38.856185 ], [ -76.986973, 38.856085 ], [ -76.986952, 38.856001 ], [ -76.986952, 38.855951 ], [ -76.986930, 38.855918 ], [ -76.986930, 38.855884 ], [ -76.986930, 38.855851 ], [ -76.986887, 38.855801 ], [ -76.986866, 38.855767 ], [ -76.986737, 38.855584 ], [ -76.986694, 38.855517 ], [ -76.986651, 38.855450 ], [ -76.986609, 38.855333 ], [ -76.986480, 38.855082 ], [ -76.986458, 38.855049 ], [ -76.986458, 38.855032 ], [ -76.986437, 38.854999 ], [ -76.986394, 38.854965 ], [ -76.986372, 38.854932 ], [ -76.986094, 38.854648 ], [ -76.986072, 38.854631 ], [ -76.985986, 38.854564 ], [ -76.985943, 38.854531 ], [ -76.985922, 38.854514 ], [ -76.985836, 38.854447 ], [ -76.985750, 38.854414 ], [ -76.985343, 38.854163 ], [ -76.985321, 38.854147 ], [ -76.985278, 38.854130 ], [ -76.985235, 38.854113 ], [ -76.985214, 38.854096 ], [ -76.985171, 38.854080 ], [ -76.984785, 38.853979 ], [ -76.984377, 38.853863 ], [ -76.983862, 38.853729 ], [ -76.983690, 38.853679 ], [ -76.983626, 38.853662 ], [ -76.983604, 38.853645 ], [ -76.983583, 38.853629 ], [ -76.983540, 38.853612 ], [ -76.983519, 38.853595 ], [ -76.983497, 38.853578 ], [ -76.983476, 38.853562 ], [ -76.983433, 38.853528 ], [ -76.983411, 38.853478 ], [ -76.983368, 38.853445 ], [ -76.983347, 38.853411 ], [ -76.983325, 38.853361 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007404", "GEOID": "11001007404", "NAME": "74.04", "NAMELSAD": "Census Tract 74.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 826388, "AWATER": 0, "INTPTLAT": "+38.8503364", "INTPTLON": "-076.9820932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.972747, 38.851206 ], [ -76.972811, 38.851189 ], [ -76.972940, 38.851172 ], [ -76.973240, 38.851139 ], [ -76.973369, 38.851122 ], [ -76.973519, 38.851105 ], [ -76.973562, 38.851105 ], [ -76.973755, 38.851072 ], [ -76.973841, 38.851055 ], [ -76.973906, 38.851055 ], [ -76.974077, 38.851005 ], [ -76.974206, 38.850972 ], [ -76.974335, 38.850938 ], [ -76.975064, 38.850754 ], [ -76.975172, 38.850704 ], [ -76.975365, 38.850654 ], [ -76.975515, 38.850604 ], [ -76.975665, 38.850554 ], [ -76.975815, 38.850487 ], [ -76.975880, 38.850454 ], [ -76.975987, 38.850403 ], [ -76.976094, 38.850353 ], [ -76.976223, 38.850286 ], [ -76.976244, 38.850286 ], [ -76.976266, 38.850270 ], [ -76.976309, 38.850236 ], [ -76.976438, 38.850169 ], [ -76.976502, 38.850119 ], [ -76.976652, 38.850036 ], [ -76.976759, 38.849952 ], [ -76.976824, 38.849902 ], [ -76.976888, 38.849852 ], [ -76.976953, 38.849802 ], [ -76.977081, 38.849702 ], [ -76.977124, 38.849651 ], [ -76.977232, 38.849551 ], [ -76.977339, 38.849451 ], [ -76.977403, 38.849384 ], [ -76.977446, 38.849334 ], [ -76.977468, 38.849317 ], [ -76.977489, 38.849300 ], [ -76.977510, 38.849267 ], [ -76.977618, 38.849133 ], [ -76.977704, 38.849016 ], [ -76.977725, 38.848966 ], [ -76.977768, 38.848933 ], [ -76.977940, 38.848632 ], [ -76.978133, 38.848381 ], [ -76.978176, 38.848315 ], [ -76.978219, 38.848264 ], [ -76.978304, 38.848164 ], [ -76.978347, 38.848114 ], [ -76.978433, 38.848030 ], [ -76.978583, 38.847897 ], [ -76.978626, 38.847863 ], [ -76.978734, 38.847763 ], [ -76.978862, 38.847663 ], [ -76.979012, 38.847546 ], [ -76.979055, 38.847512 ], [ -76.979163, 38.847446 ], [ -76.979249, 38.847395 ], [ -76.979399, 38.847295 ], [ -76.979463, 38.847262 ], [ -76.979613, 38.847178 ], [ -76.979678, 38.847161 ], [ -76.979785, 38.847111 ], [ -76.979978, 38.847028 ], [ -76.980064, 38.846994 ], [ -76.980171, 38.846944 ], [ -76.980257, 38.846911 ], [ -76.980300, 38.846894 ], [ -76.980407, 38.846861 ], [ -76.980600, 38.846810 ], [ -76.980643, 38.846794 ], [ -76.980815, 38.846744 ], [ -76.980965, 38.846693 ], [ -76.981266, 38.846610 ], [ -76.981330, 38.846593 ], [ -76.981459, 38.846560 ], [ -76.981974, 38.846409 ], [ -76.982510, 38.846259 ], [ -76.982682, 38.846209 ], [ -76.982789, 38.846175 ], [ -76.982918, 38.846142 ], [ -76.983433, 38.845992 ], [ -76.983519, 38.845975 ], [ -76.984227, 38.845774 ], [ -76.984420, 38.845707 ], [ -76.984549, 38.845674 ], [ -76.984785, 38.845607 ], [ -76.984978, 38.845557 ], [ -76.985085, 38.845524 ], [ -76.987531, 38.844939 ], [ -76.988497, 38.844705 ], [ -76.989098, 38.844588 ], [ -76.989119, 38.844721 ], [ -76.988862, 38.844972 ], [ -76.988690, 38.845657 ], [ -76.988604, 38.845641 ], [ -76.988497, 38.846125 ], [ -76.988711, 38.846376 ], [ -76.988368, 38.846510 ], [ -76.988239, 38.846510 ], [ -76.988111, 38.846510 ], [ -76.988089, 38.846493 ], [ -76.988046, 38.846476 ], [ -76.987982, 38.846426 ], [ -76.987917, 38.846393 ], [ -76.987875, 38.846359 ], [ -76.987810, 38.846343 ], [ -76.987746, 38.846343 ], [ -76.987724, 38.846343 ], [ -76.987574, 38.846460 ], [ -76.987553, 38.846476 ], [ -76.987531, 38.846476 ], [ -76.987488, 38.846493 ], [ -76.987467, 38.846476 ], [ -76.987274, 38.846660 ], [ -76.985042, 38.848966 ], [ -76.986458, 38.849852 ], [ -76.990943, 38.852659 ], [ -76.992295, 38.853445 ], [ -76.992273, 38.853461 ], [ -76.992252, 38.853478 ], [ -76.992145, 38.853595 ], [ -76.991973, 38.853746 ], [ -76.991823, 38.853679 ], [ -76.991415, 38.853512 ], [ -76.990771, 38.853311 ], [ -76.990042, 38.853127 ], [ -76.989677, 38.853044 ], [ -76.989248, 38.852960 ], [ -76.988690, 38.852877 ], [ -76.988068, 38.852826 ], [ -76.987488, 38.852793 ], [ -76.986930, 38.852760 ], [ -76.986372, 38.852776 ], [ -76.985900, 38.852810 ], [ -76.985321, 38.852843 ], [ -76.984849, 38.852893 ], [ -76.984313, 38.853027 ], [ -76.983819, 38.853177 ], [ -76.983325, 38.853361 ], [ -76.982768, 38.853578 ], [ -76.982210, 38.853779 ], [ -76.981845, 38.853913 ], [ -76.981544, 38.854013 ], [ -76.981201, 38.854096 ], [ -76.980793, 38.854163 ], [ -76.980321, 38.854247 ], [ -76.979849, 38.854297 ], [ -76.979270, 38.854297 ], [ -76.978948, 38.854297 ], [ -76.978498, 38.854264 ], [ -76.978133, 38.854230 ], [ -76.977811, 38.854180 ], [ -76.977253, 38.854063 ], [ -76.976931, 38.853979 ], [ -76.976609, 38.853879 ], [ -76.976352, 38.853796 ], [ -76.976094, 38.853712 ], [ -76.975901, 38.853629 ], [ -76.975837, 38.853595 ], [ -76.975751, 38.853528 ], [ -76.975472, 38.853378 ], [ -76.975193, 38.853244 ], [ -76.974936, 38.853077 ], [ -76.974699, 38.852910 ], [ -76.974335, 38.852626 ], [ -76.973948, 38.852308 ], [ -76.973562, 38.851958 ], [ -76.973433, 38.851824 ], [ -76.972833, 38.851272 ], [ -76.972747, 38.851206 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007304", "GEOID": "11001007304", "NAME": "73.04", "NAMELSAD": "Census Tract 73.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1232841, "AWATER": 8983, "INTPTLAT": "+38.8417979", "INTPTLON": "-076.9855591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.973069, 38.843234 ], [ -76.973112, 38.843201 ], [ -76.973176, 38.843151 ], [ -76.973283, 38.843067 ], [ -76.973433, 38.842950 ], [ -76.973584, 38.842816 ], [ -76.973970, 38.842532 ], [ -76.974335, 38.842248 ], [ -76.974657, 38.841997 ], [ -76.974742, 38.841930 ], [ -76.974936, 38.841780 ], [ -76.975365, 38.841429 ], [ -76.975558, 38.841279 ], [ -76.975644, 38.841212 ], [ -76.975729, 38.841162 ], [ -76.975751, 38.841145 ], [ -76.976137, 38.840827 ], [ -76.976566, 38.840493 ], [ -76.976953, 38.840209 ], [ -76.977060, 38.840125 ], [ -76.977167, 38.840042 ], [ -76.977232, 38.839975 ], [ -76.977317, 38.839908 ], [ -76.977382, 38.839858 ], [ -76.977510, 38.839774 ], [ -76.977983, 38.839407 ], [ -76.978176, 38.839256 ], [ -76.978498, 38.838989 ], [ -76.978991, 38.838605 ], [ -76.979592, 38.838153 ], [ -76.979699, 38.838070 ], [ -76.980064, 38.837769 ], [ -76.980236, 38.837635 ], [ -76.980944, 38.837084 ], [ -76.981158, 38.836916 ], [ -76.981566, 38.836599 ], [ -76.981652, 38.836532 ], [ -76.981823, 38.836415 ], [ -76.981952, 38.836315 ], [ -76.982145, 38.836164 ], [ -76.982360, 38.835997 ], [ -76.982403, 38.835947 ], [ -76.982660, 38.835763 ], [ -76.982703, 38.835713 ], [ -76.983047, 38.835446 ], [ -76.983390, 38.835178 ], [ -76.983669, 38.834961 ], [ -76.983862, 38.834794 ], [ -76.983969, 38.834710 ], [ -76.984098, 38.834627 ], [ -76.984270, 38.834476 ], [ -76.984591, 38.834242 ], [ -76.984892, 38.834008 ], [ -76.984913, 38.833975 ], [ -76.985021, 38.833908 ], [ -76.985085, 38.833991 ], [ -76.985106, 38.834008 ], [ -76.985407, 38.834359 ], [ -76.985750, 38.834744 ], [ -76.986094, 38.835111 ], [ -76.986308, 38.835362 ], [ -76.986523, 38.835596 ], [ -76.986566, 38.835646 ], [ -76.986673, 38.835763 ], [ -76.986823, 38.835930 ], [ -76.986909, 38.836031 ], [ -76.987188, 38.836331 ], [ -76.987295, 38.836465 ], [ -76.987467, 38.836666 ], [ -76.987531, 38.836733 ], [ -76.987574, 38.836799 ], [ -76.987638, 38.836883 ], [ -76.987767, 38.837017 ], [ -76.987810, 38.837050 ], [ -76.987875, 38.837150 ], [ -76.987896, 38.837201 ], [ -76.987982, 38.837284 ], [ -76.988089, 38.837468 ], [ -76.988132, 38.837535 ], [ -76.988196, 38.837652 ], [ -76.988239, 38.837752 ], [ -76.988282, 38.837836 ], [ -76.988282, 38.837852 ], [ -76.988304, 38.837869 ], [ -76.988711, 38.838538 ], [ -76.988711, 38.838588 ], [ -76.988733, 38.838588 ], [ -76.989634, 38.838421 ], [ -76.989956, 38.838371 ], [ -76.991522, 38.838086 ], [ -76.991994, 38.837986 ], [ -76.992488, 38.837802 ], [ -76.992810, 38.837602 ], [ -76.993496, 38.837485 ], [ -76.993518, 38.837501 ], [ -76.993518, 38.837568 ], [ -76.993518, 38.837769 ], [ -76.993539, 38.838053 ], [ -76.993539, 38.838454 ], [ -76.993561, 38.838805 ], [ -76.993561, 38.838889 ], [ -76.993582, 38.839089 ], [ -76.993582, 38.839507 ], [ -76.993604, 38.839875 ], [ -76.993604, 38.840075 ], [ -76.993604, 38.840159 ], [ -76.993625, 38.840242 ], [ -76.993625, 38.840326 ], [ -76.993625, 38.840410 ], [ -76.993647, 38.840460 ], [ -76.993647, 38.840493 ], [ -76.993668, 38.840593 ], [ -76.993904, 38.841914 ], [ -76.993904, 38.843735 ], [ -76.993496, 38.843802 ], [ -76.993368, 38.843836 ], [ -76.993303, 38.843852 ], [ -76.993024, 38.843886 ], [ -76.992424, 38.843986 ], [ -76.992166, 38.844036 ], [ -76.991651, 38.844120 ], [ -76.990986, 38.844237 ], [ -76.990578, 38.844304 ], [ -76.989226, 38.844571 ], [ -76.989098, 38.844588 ], [ -76.988497, 38.844705 ], [ -76.987531, 38.844939 ], [ -76.985085, 38.845524 ], [ -76.984978, 38.845557 ], [ -76.984785, 38.845607 ], [ -76.984549, 38.845674 ], [ -76.984420, 38.845707 ], [ -76.984227, 38.845774 ], [ -76.983519, 38.845975 ], [ -76.983433, 38.845992 ], [ -76.982918, 38.846142 ], [ -76.982789, 38.846175 ], [ -76.982682, 38.846209 ], [ -76.982510, 38.846259 ], [ -76.981974, 38.846409 ], [ -76.981459, 38.846560 ], [ -76.981330, 38.846593 ], [ -76.980965, 38.845992 ], [ -76.980643, 38.845407 ], [ -76.980493, 38.845106 ], [ -76.979849, 38.843903 ], [ -76.979377, 38.843000 ], [ -76.979206, 38.842733 ], [ -76.978970, 38.842315 ], [ -76.978905, 38.842181 ], [ -76.978862, 38.842148 ], [ -76.978819, 38.842064 ], [ -76.978691, 38.842198 ], [ -76.978648, 38.842231 ], [ -76.978583, 38.842281 ], [ -76.978562, 38.842298 ], [ -76.978519, 38.842298 ], [ -76.978455, 38.842281 ], [ -76.978433, 38.842265 ], [ -76.978433, 38.842231 ], [ -76.978433, 38.842198 ], [ -76.978433, 38.842164 ], [ -76.978412, 38.842148 ], [ -76.978347, 38.842114 ], [ -76.978326, 38.842064 ], [ -76.978261, 38.841997 ], [ -76.978219, 38.841964 ], [ -76.978154, 38.841914 ], [ -76.978090, 38.841864 ], [ -76.977983, 38.841813 ], [ -76.977940, 38.841797 ], [ -76.977897, 38.841780 ], [ -76.977832, 38.841780 ], [ -76.977768, 38.841780 ], [ -76.977725, 38.841780 ], [ -76.977661, 38.841780 ], [ -76.977618, 38.841780 ], [ -76.977553, 38.841780 ], [ -76.977510, 38.841780 ], [ -76.977446, 38.841780 ], [ -76.977403, 38.841797 ], [ -76.977360, 38.841830 ], [ -76.977317, 38.841847 ], [ -76.977274, 38.841864 ], [ -76.977253, 38.841864 ], [ -76.977189, 38.841897 ], [ -76.977167, 38.841930 ], [ -76.977124, 38.841947 ], [ -76.977103, 38.841981 ], [ -76.977103, 38.842014 ], [ -76.977103, 38.842047 ], [ -76.977081, 38.842081 ], [ -76.977081, 38.842131 ], [ -76.977081, 38.842148 ], [ -76.977038, 38.842198 ], [ -76.976995, 38.842215 ], [ -76.976974, 38.842248 ], [ -76.976931, 38.842281 ], [ -76.976910, 38.842298 ], [ -76.976867, 38.842332 ], [ -76.976824, 38.842332 ], [ -76.976802, 38.842332 ], [ -76.976759, 38.842365 ], [ -76.976738, 38.842398 ], [ -76.976695, 38.842415 ], [ -76.976631, 38.842449 ], [ -76.976566, 38.842449 ], [ -76.976523, 38.842465 ], [ -76.976416, 38.842482 ], [ -76.976373, 38.842482 ], [ -76.976287, 38.842482 ], [ -76.976223, 38.842482 ], [ -76.976159, 38.842482 ], [ -76.975880, 38.842465 ], [ -76.975815, 38.842465 ], [ -76.975729, 38.842465 ], [ -76.975687, 38.842449 ], [ -76.975601, 38.842449 ], [ -76.975536, 38.842432 ], [ -76.975493, 38.842432 ], [ -76.975451, 38.842432 ], [ -76.975300, 38.842432 ], [ -76.975257, 38.842432 ], [ -76.975214, 38.842432 ], [ -76.975150, 38.842415 ], [ -76.975107, 38.842415 ], [ -76.975043, 38.842415 ], [ -76.975000, 38.842415 ], [ -76.974936, 38.842432 ], [ -76.974893, 38.842449 ], [ -76.974850, 38.842465 ], [ -76.974828, 38.842499 ], [ -76.974785, 38.842532 ], [ -76.974764, 38.842566 ], [ -76.974742, 38.842632 ], [ -76.974742, 38.842649 ], [ -76.974699, 38.842716 ], [ -76.974657, 38.842749 ], [ -76.974614, 38.842766 ], [ -76.974506, 38.842850 ], [ -76.974442, 38.842883 ], [ -76.974399, 38.842883 ], [ -76.974335, 38.842917 ], [ -76.974292, 38.842933 ], [ -76.974227, 38.842950 ], [ -76.974185, 38.842967 ], [ -76.974142, 38.842983 ], [ -76.974099, 38.842983 ], [ -76.974077, 38.843000 ], [ -76.974034, 38.843017 ], [ -76.974013, 38.843034 ], [ -76.973927, 38.843050 ], [ -76.973863, 38.843067 ], [ -76.973820, 38.843084 ], [ -76.973691, 38.843117 ], [ -76.973605, 38.843134 ], [ -76.973519, 38.843151 ], [ -76.973455, 38.843167 ], [ -76.973412, 38.843167 ], [ -76.973326, 38.843201 ], [ -76.973262, 38.843201 ], [ -76.973069, 38.843234 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007403", "GEOID": "11001007403", "NAME": "74.03", "NAMELSAD": "Census Tract 74.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 330904, "AWATER": 0, "INTPTLAT": "+38.8484714", "INTPTLON": "-076.9743805" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.981330, 38.846593 ], [ -76.981266, 38.846610 ], [ -76.980965, 38.846693 ], [ -76.980815, 38.846744 ], [ -76.980643, 38.846794 ], [ -76.980600, 38.846810 ], [ -76.980407, 38.846861 ], [ -76.980300, 38.846894 ], [ -76.980257, 38.846911 ], [ -76.980171, 38.846944 ], [ -76.980064, 38.846994 ], [ -76.979978, 38.847028 ], [ -76.979785, 38.847111 ], [ -76.979678, 38.847161 ], [ -76.979613, 38.847178 ], [ -76.979463, 38.847262 ], [ -76.979399, 38.847295 ], [ -76.979249, 38.847395 ], [ -76.979163, 38.847446 ], [ -76.979055, 38.847512 ], [ -76.979012, 38.847546 ], [ -76.978862, 38.847663 ], [ -76.978734, 38.847763 ], [ -76.978626, 38.847863 ], [ -76.978583, 38.847897 ], [ -76.978433, 38.848030 ], [ -76.978347, 38.848114 ], [ -76.978304, 38.848164 ], [ -76.978219, 38.848264 ], [ -76.978176, 38.848315 ], [ -76.978133, 38.848381 ], [ -76.977940, 38.848632 ], [ -76.977768, 38.848933 ], [ -76.977725, 38.848966 ], [ -76.977704, 38.849016 ], [ -76.977618, 38.849133 ], [ -76.977510, 38.849267 ], [ -76.977489, 38.849300 ], [ -76.977468, 38.849317 ], [ -76.977446, 38.849334 ], [ -76.977403, 38.849384 ], [ -76.977339, 38.849451 ], [ -76.977232, 38.849551 ], [ -76.977124, 38.849651 ], [ -76.977081, 38.849702 ], [ -76.976953, 38.849802 ], [ -76.976888, 38.849852 ], [ -76.976824, 38.849902 ], [ -76.976759, 38.849952 ], [ -76.976652, 38.850036 ], [ -76.976502, 38.850119 ], [ -76.976438, 38.850169 ], [ -76.976309, 38.850236 ], [ -76.976266, 38.850270 ], [ -76.976244, 38.850286 ], [ -76.976223, 38.850286 ], [ -76.976094, 38.850353 ], [ -76.975987, 38.850403 ], [ -76.975880, 38.850454 ], [ -76.975815, 38.850487 ], [ -76.975665, 38.850554 ], [ -76.975515, 38.850604 ], [ -76.975365, 38.850654 ], [ -76.975172, 38.850704 ], [ -76.975064, 38.850754 ], [ -76.974335, 38.850938 ], [ -76.974206, 38.850972 ], [ -76.974077, 38.851005 ], [ -76.973906, 38.851055 ], [ -76.973841, 38.851055 ], [ -76.973755, 38.851072 ], [ -76.973562, 38.851105 ], [ -76.973519, 38.851105 ], [ -76.973369, 38.851122 ], [ -76.973240, 38.851139 ], [ -76.972940, 38.851172 ], [ -76.972811, 38.851189 ], [ -76.972747, 38.851206 ], [ -76.972318, 38.850855 ], [ -76.972125, 38.850704 ], [ -76.971588, 38.850337 ], [ -76.971266, 38.850153 ], [ -76.970859, 38.849969 ], [ -76.970236, 38.849702 ], [ -76.969786, 38.849551 ], [ -76.969292, 38.849384 ], [ -76.969056, 38.849334 ], [ -76.968777, 38.849267 ], [ -76.967790, 38.849117 ], [ -76.967103, 38.849067 ], [ -76.966696, 38.849067 ], [ -76.966610, 38.849050 ], [ -76.965902, 38.849083 ], [ -76.965473, 38.849133 ], [ -76.965687, 38.848983 ], [ -76.966074, 38.848682 ], [ -76.966116, 38.848649 ], [ -76.966417, 38.848415 ], [ -76.966524, 38.848331 ], [ -76.966631, 38.848248 ], [ -76.967039, 38.848381 ], [ -76.967146, 38.848365 ], [ -76.967189, 38.848348 ], [ -76.967232, 38.848348 ], [ -76.967254, 38.848348 ], [ -76.967340, 38.848348 ], [ -76.967404, 38.848348 ], [ -76.967425, 38.848365 ], [ -76.967597, 38.848365 ], [ -76.967618, 38.848365 ], [ -76.967683, 38.848365 ], [ -76.967769, 38.848381 ], [ -76.967812, 38.848381 ], [ -76.967833, 38.848381 ], [ -76.968091, 38.848381 ], [ -76.968219, 38.848381 ], [ -76.968369, 38.848365 ], [ -76.968606, 38.848365 ], [ -76.968627, 38.848348 ], [ -76.968713, 38.848348 ], [ -76.968799, 38.848348 ], [ -76.968906, 38.848331 ], [ -76.968949, 38.848331 ], [ -76.969078, 38.848315 ], [ -76.969121, 38.848315 ], [ -76.969142, 38.848298 ], [ -76.969249, 38.848281 ], [ -76.969421, 38.848264 ], [ -76.969657, 38.848231 ], [ -76.969893, 38.848181 ], [ -76.970086, 38.848164 ], [ -76.970193, 38.848131 ], [ -76.970408, 38.848097 ], [ -76.970623, 38.848064 ], [ -76.970880, 38.848014 ], [ -76.971009, 38.847997 ], [ -76.971245, 38.847964 ], [ -76.971352, 38.847930 ], [ -76.971438, 38.847913 ], [ -76.971567, 38.847880 ], [ -76.971631, 38.847863 ], [ -76.971738, 38.847830 ], [ -76.971781, 38.847813 ], [ -76.971824, 38.847813 ], [ -76.971910, 38.847780 ], [ -76.972017, 38.847730 ], [ -76.972125, 38.847696 ], [ -76.972189, 38.847663 ], [ -76.972253, 38.847646 ], [ -76.972339, 38.847596 ], [ -76.972554, 38.847512 ], [ -76.972768, 38.847429 ], [ -76.972854, 38.847395 ], [ -76.972983, 38.847329 ], [ -76.973155, 38.847262 ], [ -76.973219, 38.847228 ], [ -76.973455, 38.847128 ], [ -76.973755, 38.847011 ], [ -76.973863, 38.846961 ], [ -76.974034, 38.846911 ], [ -76.974142, 38.846861 ], [ -76.974313, 38.846827 ], [ -76.974421, 38.846794 ], [ -76.974592, 38.846760 ], [ -76.974764, 38.846727 ], [ -76.974828, 38.846727 ], [ -76.974850, 38.846710 ], [ -76.975021, 38.846693 ], [ -76.975043, 38.846693 ], [ -76.975086, 38.846693 ], [ -76.975107, 38.846693 ], [ -76.975129, 38.846693 ], [ -76.975343, 38.846677 ], [ -76.975729, 38.846643 ], [ -76.975794, 38.846627 ], [ -76.975837, 38.846627 ], [ -76.976223, 38.846593 ], [ -76.976459, 38.846560 ], [ -76.976631, 38.846543 ], [ -76.976888, 38.846493 ], [ -76.976931, 38.846493 ], [ -76.976995, 38.846476 ], [ -76.977038, 38.846476 ], [ -76.977081, 38.846460 ], [ -76.977317, 38.846409 ], [ -76.977468, 38.846376 ], [ -76.977661, 38.846343 ], [ -76.977854, 38.846276 ], [ -76.978004, 38.846242 ], [ -76.978047, 38.846226 ], [ -76.978154, 38.846192 ], [ -76.978455, 38.846109 ], [ -76.979527, 38.845758 ], [ -76.979635, 38.845724 ], [ -76.979764, 38.845691 ], [ -76.980579, 38.845423 ], [ -76.980643, 38.845407 ], [ -76.980965, 38.845992 ], [ -76.981330, 38.846593 ] ] ], [ [ [ -76.963499, 38.850704 ], [ -76.963584, 38.850637 ], [ -76.963885, 38.850403 ], [ -76.963992, 38.850320 ], [ -76.964679, 38.849785 ], [ -76.964829, 38.849668 ], [ -76.965086, 38.849451 ], [ -76.965322, 38.849284 ], [ -76.965408, 38.849200 ], [ -76.965430, 38.849184 ], [ -76.965473, 38.849133 ], [ -76.965902, 38.849083 ], [ -76.966610, 38.849050 ], [ -76.966696, 38.849067 ], [ -76.967103, 38.849067 ], [ -76.967790, 38.849117 ], [ -76.968777, 38.849267 ], [ -76.969056, 38.849334 ], [ -76.969292, 38.849384 ], [ -76.969786, 38.849551 ], [ -76.970236, 38.849702 ], [ -76.970859, 38.849969 ], [ -76.971266, 38.850153 ], [ -76.971588, 38.850337 ], [ -76.972125, 38.850704 ], [ -76.972318, 38.850855 ], [ -76.972747, 38.851206 ], [ -76.972833, 38.851272 ], [ -76.973433, 38.851824 ], [ -76.973562, 38.851958 ], [ -76.973948, 38.852308 ], [ -76.974335, 38.852626 ], [ -76.974699, 38.852910 ], [ -76.974936, 38.853077 ], [ -76.975193, 38.853244 ], [ -76.975472, 38.853378 ], [ -76.975751, 38.853528 ], [ -76.975837, 38.853595 ], [ -76.975901, 38.853629 ], [ -76.975236, 38.854347 ], [ -76.974635, 38.854999 ], [ -76.975901, 38.855884 ], [ -76.975665, 38.856118 ], [ -76.975451, 38.856319 ], [ -76.975214, 38.856519 ], [ -76.974828, 38.856285 ], [ -76.974356, 38.855968 ], [ -76.974034, 38.855751 ], [ -76.973498, 38.855400 ], [ -76.973412, 38.855350 ], [ -76.973240, 38.855500 ], [ -76.973176, 38.855567 ], [ -76.973133, 38.855600 ], [ -76.973004, 38.855717 ], [ -76.972919, 38.855818 ], [ -76.972640, 38.856068 ], [ -76.972361, 38.856336 ], [ -76.972082, 38.856603 ], [ -76.971738, 38.856904 ], [ -76.971631, 38.856820 ], [ -76.971416, 38.856686 ], [ -76.971138, 38.856503 ], [ -76.971009, 38.856419 ], [ -76.970923, 38.856369 ], [ -76.970730, 38.856235 ], [ -76.970236, 38.855918 ], [ -76.970108, 38.855834 ], [ -76.970086, 38.855834 ], [ -76.970065, 38.855818 ], [ -76.970000, 38.855818 ], [ -76.969957, 38.855818 ], [ -76.969957, 38.855734 ], [ -76.969979, 38.855116 ], [ -76.969979, 38.854899 ], [ -76.969979, 38.854548 ], [ -76.969979, 38.854447 ], [ -76.969979, 38.854147 ], [ -76.969979, 38.853578 ], [ -76.969979, 38.853144 ], [ -76.969979, 38.853077 ], [ -76.969979, 38.853027 ], [ -76.969979, 38.852960 ], [ -76.969979, 38.852927 ], [ -76.970000, 38.852860 ], [ -76.970022, 38.852793 ], [ -76.970043, 38.852743 ], [ -76.970043, 38.852726 ], [ -76.969957, 38.852626 ], [ -76.969485, 38.852058 ], [ -76.969292, 38.851824 ], [ -76.969206, 38.851724 ], [ -76.969163, 38.851657 ], [ -76.969142, 38.851640 ], [ -76.969099, 38.851607 ], [ -76.969099, 38.851590 ], [ -76.969056, 38.851556 ], [ -76.968992, 38.851523 ], [ -76.968949, 38.851490 ], [ -76.968906, 38.851473 ], [ -76.968884, 38.851456 ], [ -76.968863, 38.851439 ], [ -76.968799, 38.851423 ], [ -76.968756, 38.851406 ], [ -76.968734, 38.851389 ], [ -76.968670, 38.851373 ], [ -76.968584, 38.851356 ], [ -76.968520, 38.851339 ], [ -76.968434, 38.851323 ], [ -76.968348, 38.851306 ], [ -76.968176, 38.851306 ], [ -76.967940, 38.851306 ], [ -76.966910, 38.851306 ], [ -76.966867, 38.851306 ], [ -76.966846, 38.851289 ], [ -76.966825, 38.851289 ], [ -76.966803, 38.851256 ], [ -76.966782, 38.851239 ], [ -76.966782, 38.851222 ], [ -76.966760, 38.851189 ], [ -76.966739, 38.851105 ], [ -76.966717, 38.851089 ], [ -76.966696, 38.851022 ], [ -76.966653, 38.850955 ], [ -76.966653, 38.850921 ], [ -76.966631, 38.850888 ], [ -76.966610, 38.850871 ], [ -76.966567, 38.850821 ], [ -76.966524, 38.850754 ], [ -76.966460, 38.850671 ], [ -76.966438, 38.850637 ], [ -76.966374, 38.850587 ], [ -76.966352, 38.850554 ], [ -76.966331, 38.850537 ], [ -76.966310, 38.850520 ], [ -76.966245, 38.850470 ], [ -76.966224, 38.850454 ], [ -76.966138, 38.850403 ], [ -76.966052, 38.850370 ], [ -76.966009, 38.850353 ], [ -76.965966, 38.850353 ], [ -76.965923, 38.850337 ], [ -76.965902, 38.850337 ], [ -76.965816, 38.850337 ], [ -76.965730, 38.850337 ], [ -76.965709, 38.850353 ], [ -76.965666, 38.850353 ], [ -76.965623, 38.850370 ], [ -76.965601, 38.850387 ], [ -76.965559, 38.850403 ], [ -76.965537, 38.850420 ], [ -76.965494, 38.850437 ], [ -76.965473, 38.850454 ], [ -76.965451, 38.850487 ], [ -76.965408, 38.850504 ], [ -76.965365, 38.850554 ], [ -76.965344, 38.850587 ], [ -76.965344, 38.850604 ], [ -76.965322, 38.850637 ], [ -76.965301, 38.850688 ], [ -76.965301, 38.850721 ], [ -76.965301, 38.850754 ], [ -76.965301, 38.850804 ], [ -76.965301, 38.850838 ], [ -76.965301, 38.850871 ], [ -76.965322, 38.850905 ], [ -76.965322, 38.850955 ], [ -76.965344, 38.850988 ], [ -76.965365, 38.851005 ], [ -76.965430, 38.851072 ], [ -76.965451, 38.851105 ], [ -76.965516, 38.851155 ], [ -76.965559, 38.851189 ], [ -76.965580, 38.851239 ], [ -76.965601, 38.851272 ], [ -76.965623, 38.851289 ], [ -76.965644, 38.851356 ], [ -76.965666, 38.851406 ], [ -76.965666, 38.851473 ], [ -76.965687, 38.851506 ], [ -76.965687, 38.851540 ], [ -76.965687, 38.851590 ], [ -76.965687, 38.851707 ], [ -76.965687, 38.851740 ], [ -76.965687, 38.851774 ], [ -76.965687, 38.851790 ], [ -76.965687, 38.851824 ], [ -76.965687, 38.851857 ], [ -76.965687, 38.852008 ], [ -76.965687, 38.852074 ], [ -76.965687, 38.852409 ], [ -76.965559, 38.852325 ], [ -76.964958, 38.851857 ], [ -76.964164, 38.851239 ], [ -76.963606, 38.850788 ], [ -76.963499, 38.850704 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007409", "GEOID": "11001007409", "NAME": "74.09", "NAMELSAD": "Census Tract 74.09", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 404873, "AWATER": 5767, "INTPTLAT": "+38.8445818", "INTPTLON": "-076.9751650" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.978819, 38.842064 ], [ -76.978862, 38.842148 ], [ -76.978905, 38.842181 ], [ -76.978970, 38.842315 ], [ -76.979206, 38.842733 ], [ -76.979377, 38.843000 ], [ -76.979849, 38.843903 ], [ -76.980493, 38.845106 ], [ -76.980643, 38.845407 ], [ -76.980579, 38.845423 ], [ -76.979764, 38.845691 ], [ -76.979635, 38.845724 ], [ -76.979527, 38.845758 ], [ -76.978455, 38.846109 ], [ -76.978154, 38.846192 ], [ -76.978047, 38.846226 ], [ -76.978004, 38.846242 ], [ -76.977854, 38.846276 ], [ -76.977661, 38.846343 ], [ -76.977468, 38.846376 ], [ -76.977317, 38.846409 ], [ -76.977081, 38.846460 ], [ -76.977038, 38.846476 ], [ -76.976995, 38.846476 ], [ -76.976931, 38.846493 ], [ -76.976888, 38.846493 ], [ -76.976631, 38.846543 ], [ -76.976459, 38.846560 ], [ -76.976223, 38.846593 ], [ -76.975837, 38.846627 ], [ -76.975794, 38.846627 ], [ -76.975729, 38.846643 ], [ -76.975343, 38.846677 ], [ -76.975129, 38.846693 ], [ -76.975107, 38.846693 ], [ -76.975086, 38.846693 ], [ -76.975043, 38.846693 ], [ -76.975021, 38.846693 ], [ -76.974850, 38.846710 ], [ -76.974828, 38.846727 ], [ -76.974764, 38.846727 ], [ -76.974592, 38.846760 ], [ -76.974421, 38.846794 ], [ -76.974313, 38.846827 ], [ -76.974142, 38.846861 ], [ -76.974034, 38.846911 ], [ -76.973863, 38.846961 ], [ -76.973755, 38.847011 ], [ -76.973455, 38.847128 ], [ -76.973219, 38.847228 ], [ -76.973155, 38.847262 ], [ -76.972983, 38.847329 ], [ -76.972854, 38.847395 ], [ -76.972768, 38.847429 ], [ -76.972554, 38.847512 ], [ -76.972339, 38.847596 ], [ -76.972253, 38.847646 ], [ -76.972189, 38.847663 ], [ -76.972125, 38.847696 ], [ -76.972017, 38.847730 ], [ -76.971910, 38.847780 ], [ -76.971824, 38.847813 ], [ -76.971781, 38.847813 ], [ -76.971738, 38.847830 ], [ -76.971631, 38.847863 ], [ -76.971567, 38.847880 ], [ -76.971438, 38.847913 ], [ -76.971352, 38.847930 ], [ -76.971245, 38.847964 ], [ -76.971009, 38.847997 ], [ -76.970880, 38.848014 ], [ -76.970623, 38.848064 ], [ -76.970408, 38.848097 ], [ -76.970193, 38.848131 ], [ -76.970086, 38.848164 ], [ -76.969893, 38.848181 ], [ -76.969657, 38.848231 ], [ -76.969421, 38.848264 ], [ -76.969249, 38.848281 ], [ -76.969142, 38.848298 ], [ -76.969121, 38.848315 ], [ -76.969078, 38.848315 ], [ -76.968949, 38.848331 ], [ -76.968906, 38.848331 ], [ -76.968799, 38.848348 ], [ -76.968713, 38.848348 ], [ -76.968627, 38.848348 ], [ -76.968606, 38.848365 ], [ -76.968369, 38.848365 ], [ -76.968219, 38.848381 ], [ -76.968091, 38.848381 ], [ -76.967833, 38.848381 ], [ -76.967812, 38.848381 ], [ -76.967769, 38.848381 ], [ -76.967683, 38.848365 ], [ -76.967618, 38.848365 ], [ -76.967597, 38.848365 ], [ -76.967425, 38.848365 ], [ -76.967404, 38.848348 ], [ -76.967340, 38.848348 ], [ -76.967254, 38.848348 ], [ -76.967232, 38.848348 ], [ -76.967189, 38.848348 ], [ -76.967146, 38.848365 ], [ -76.967039, 38.848381 ], [ -76.966631, 38.848248 ], [ -76.966739, 38.848164 ], [ -76.966975, 38.847980 ], [ -76.967361, 38.847679 ], [ -76.967747, 38.847379 ], [ -76.968198, 38.847028 ], [ -76.968241, 38.846994 ], [ -76.968348, 38.846911 ], [ -76.968691, 38.846643 ], [ -76.968756, 38.846593 ], [ -76.968820, 38.846560 ], [ -76.969163, 38.846276 ], [ -76.969528, 38.845992 ], [ -76.969550, 38.845975 ], [ -76.969614, 38.845925 ], [ -76.969635, 38.845908 ], [ -76.969721, 38.845841 ], [ -76.969914, 38.845691 ], [ -76.970150, 38.845507 ], [ -76.970236, 38.845440 ], [ -76.970301, 38.845390 ], [ -76.970429, 38.845290 ], [ -76.970451, 38.845273 ], [ -76.970708, 38.845072 ], [ -76.970773, 38.845022 ], [ -76.970880, 38.844939 ], [ -76.970944, 38.844889 ], [ -76.971052, 38.844805 ], [ -76.971073, 38.844788 ], [ -76.971416, 38.844521 ], [ -76.971674, 38.844320 ], [ -76.971760, 38.844254 ], [ -76.971846, 38.844187 ], [ -76.971931, 38.844120 ], [ -76.972039, 38.844036 ], [ -76.972296, 38.843836 ], [ -76.972339, 38.843802 ], [ -76.972446, 38.843719 ], [ -76.972554, 38.843635 ], [ -76.972618, 38.843585 ], [ -76.972919, 38.843334 ], [ -76.972961, 38.843318 ], [ -76.973069, 38.843234 ], [ -76.973262, 38.843201 ], [ -76.973326, 38.843201 ], [ -76.973412, 38.843167 ], [ -76.973455, 38.843167 ], [ -76.973519, 38.843151 ], [ -76.973605, 38.843134 ], [ -76.973691, 38.843117 ], [ -76.973820, 38.843084 ], [ -76.973863, 38.843067 ], [ -76.973927, 38.843050 ], [ -76.974013, 38.843034 ], [ -76.974034, 38.843017 ], [ -76.974077, 38.843000 ], [ -76.974099, 38.842983 ], [ -76.974142, 38.842983 ], [ -76.974185, 38.842967 ], [ -76.974227, 38.842950 ], [ -76.974292, 38.842933 ], [ -76.974335, 38.842917 ], [ -76.974399, 38.842883 ], [ -76.974442, 38.842883 ], [ -76.974506, 38.842850 ], [ -76.974614, 38.842766 ], [ -76.974657, 38.842749 ], [ -76.974699, 38.842716 ], [ -76.974742, 38.842649 ], [ -76.974742, 38.842632 ], [ -76.974764, 38.842566 ], [ -76.974785, 38.842532 ], [ -76.974828, 38.842499 ], [ -76.974850, 38.842465 ], [ -76.974893, 38.842449 ], [ -76.974936, 38.842432 ], [ -76.975000, 38.842415 ], [ -76.975043, 38.842415 ], [ -76.975107, 38.842415 ], [ -76.975150, 38.842415 ], [ -76.975214, 38.842432 ], [ -76.975257, 38.842432 ], [ -76.975300, 38.842432 ], [ -76.975451, 38.842432 ], [ -76.975493, 38.842432 ], [ -76.975536, 38.842432 ], [ -76.975601, 38.842449 ], [ -76.975687, 38.842449 ], [ -76.975729, 38.842465 ], [ -76.975815, 38.842465 ], [ -76.975880, 38.842465 ], [ -76.976159, 38.842482 ], [ -76.976223, 38.842482 ], [ -76.976287, 38.842482 ], [ -76.976373, 38.842482 ], [ -76.976416, 38.842482 ], [ -76.976523, 38.842465 ], [ -76.976566, 38.842449 ], [ -76.976631, 38.842449 ], [ -76.976695, 38.842415 ], [ -76.976738, 38.842398 ], [ -76.976759, 38.842365 ], [ -76.976802, 38.842332 ], [ -76.976824, 38.842332 ], [ -76.976867, 38.842332 ], [ -76.976910, 38.842298 ], [ -76.976931, 38.842281 ], [ -76.976974, 38.842248 ], [ -76.976995, 38.842215 ], [ -76.977038, 38.842198 ], [ -76.977081, 38.842148 ], [ -76.977081, 38.842131 ], [ -76.977081, 38.842081 ], [ -76.977103, 38.842047 ], [ -76.977103, 38.842014 ], [ -76.977103, 38.841981 ], [ -76.977124, 38.841947 ], [ -76.977167, 38.841930 ], [ -76.977189, 38.841897 ], [ -76.977253, 38.841864 ], [ -76.977274, 38.841864 ], [ -76.977317, 38.841847 ], [ -76.977360, 38.841830 ], [ -76.977403, 38.841797 ], [ -76.977446, 38.841780 ], [ -76.977510, 38.841780 ], [ -76.977553, 38.841780 ], [ -76.977618, 38.841780 ], [ -76.977661, 38.841780 ], [ -76.977725, 38.841780 ], [ -76.977768, 38.841780 ], [ -76.977832, 38.841780 ], [ -76.977897, 38.841780 ], [ -76.977940, 38.841797 ], [ -76.977983, 38.841813 ], [ -76.978090, 38.841864 ], [ -76.978154, 38.841914 ], [ -76.978219, 38.841964 ], [ -76.978261, 38.841997 ], [ -76.978326, 38.842064 ], [ -76.978347, 38.842114 ], [ -76.978412, 38.842148 ], [ -76.978433, 38.842164 ], [ -76.978433, 38.842198 ], [ -76.978433, 38.842231 ], [ -76.978433, 38.842265 ], [ -76.978455, 38.842281 ], [ -76.978519, 38.842298 ], [ -76.978562, 38.842298 ], [ -76.978583, 38.842281 ], [ -76.978648, 38.842231 ], [ -76.978691, 38.842198 ], [ -76.978819, 38.842064 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009700", "GEOID": "11001009700", "NAME": "97", "NAMELSAD": "Census Tract 97", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 403051, "AWATER": 3427, "INTPTLAT": "+38.8354183", "INTPTLON": "-076.9870248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.988733, 38.838588 ], [ -76.988711, 38.838588 ], [ -76.988711, 38.838538 ], [ -76.988304, 38.837869 ], [ -76.988282, 38.837852 ], [ -76.988282, 38.837836 ], [ -76.988239, 38.837752 ], [ -76.988196, 38.837652 ], [ -76.988132, 38.837535 ], [ -76.988089, 38.837468 ], [ -76.987982, 38.837284 ], [ -76.987896, 38.837201 ], [ -76.987875, 38.837150 ], [ -76.987810, 38.837050 ], [ -76.987767, 38.837017 ], [ -76.987638, 38.836883 ], [ -76.987574, 38.836799 ], [ -76.987531, 38.836733 ], [ -76.987467, 38.836666 ], [ -76.987295, 38.836465 ], [ -76.987188, 38.836331 ], [ -76.986909, 38.836031 ], [ -76.986823, 38.835930 ], [ -76.986673, 38.835763 ], [ -76.986566, 38.835646 ], [ -76.986523, 38.835596 ], [ -76.986308, 38.835362 ], [ -76.986094, 38.835111 ], [ -76.985750, 38.834744 ], [ -76.985407, 38.834359 ], [ -76.985106, 38.834008 ], [ -76.985085, 38.833991 ], [ -76.985021, 38.833908 ], [ -76.985085, 38.833841 ], [ -76.985257, 38.833707 ], [ -76.985450, 38.833574 ], [ -76.985643, 38.833423 ], [ -76.985729, 38.833356 ], [ -76.985793, 38.833289 ], [ -76.986008, 38.833122 ], [ -76.986458, 38.832788 ], [ -76.986866, 38.832454 ], [ -76.987102, 38.832270 ], [ -76.987188, 38.832203 ], [ -76.987209, 38.832186 ], [ -76.987317, 38.832103 ], [ -76.987424, 38.832019 ], [ -76.987553, 38.831919 ], [ -76.987896, 38.831651 ], [ -76.988218, 38.831417 ], [ -76.988454, 38.831233 ], [ -76.988475, 38.831200 ], [ -76.988754, 38.830983 ], [ -76.988883, 38.830882 ], [ -76.988969, 38.830815 ], [ -76.989398, 38.830481 ], [ -76.989763, 38.830197 ], [ -76.990256, 38.829846 ], [ -76.990407, 38.829712 ], [ -76.990750, 38.829411 ], [ -76.991050, 38.829194 ], [ -76.991072, 38.829161 ], [ -76.991115, 38.829144 ], [ -76.991351, 38.829194 ], [ -76.992488, 38.829194 ], [ -76.992853, 38.829211 ], [ -76.993067, 38.829194 ], [ -76.993647, 38.829194 ], [ -76.993904, 38.829194 ], [ -76.993904, 38.829996 ], [ -76.993861, 38.830030 ], [ -76.993754, 38.830113 ], [ -76.993690, 38.830164 ], [ -76.993411, 38.830381 ], [ -76.993196, 38.830548 ], [ -76.992874, 38.830815 ], [ -76.992745, 38.830899 ], [ -76.991651, 38.831768 ], [ -76.990900, 38.832353 ], [ -76.990836, 38.832403 ], [ -76.990728, 38.832487 ], [ -76.990170, 38.832922 ], [ -76.989827, 38.833189 ], [ -76.989570, 38.833390 ], [ -76.989484, 38.833457 ], [ -76.989570, 38.833523 ], [ -76.990085, 38.833858 ], [ -76.990535, 38.834142 ], [ -76.990685, 38.834259 ], [ -76.990793, 38.834326 ], [ -76.990814, 38.834342 ], [ -76.990900, 38.834393 ], [ -76.990921, 38.834393 ], [ -76.990964, 38.834426 ], [ -76.991415, 38.834727 ], [ -76.991715, 38.834927 ], [ -76.991758, 38.834944 ], [ -76.991887, 38.835028 ], [ -76.991930, 38.835078 ], [ -76.991951, 38.835095 ], [ -76.992016, 38.835145 ], [ -76.992059, 38.835178 ], [ -76.992145, 38.835245 ], [ -76.992166, 38.835278 ], [ -76.992209, 38.835312 ], [ -76.992252, 38.835379 ], [ -76.992316, 38.835446 ], [ -76.992402, 38.835546 ], [ -76.992424, 38.835579 ], [ -76.992617, 38.835863 ], [ -76.992702, 38.835997 ], [ -76.992724, 38.836014 ], [ -76.992810, 38.836164 ], [ -76.992960, 38.836348 ], [ -76.993196, 38.836699 ], [ -76.993260, 38.836783 ], [ -76.993303, 38.836850 ], [ -76.993303, 38.836866 ], [ -76.993346, 38.836950 ], [ -76.993368, 38.837000 ], [ -76.993389, 38.837067 ], [ -76.993432, 38.837167 ], [ -76.993454, 38.837234 ], [ -76.993475, 38.837301 ], [ -76.993496, 38.837368 ], [ -76.993496, 38.837418 ], [ -76.993496, 38.837485 ], [ -76.992810, 38.837602 ], [ -76.992488, 38.837802 ], [ -76.991994, 38.837986 ], [ -76.991522, 38.838086 ], [ -76.989956, 38.838371 ], [ -76.989634, 38.838421 ], [ -76.988733, 38.838588 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007703", "GEOID": "11001007703", "NAME": "77.03", "NAMELSAD": "Census Tract 77.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1017741, "AWATER": 1059, "INTPTLAT": "+38.8863224", "INTPTLON": "-076.9474550" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.937878, 38.889880 ], [ -76.938028, 38.889847 ], [ -76.938114, 38.889814 ], [ -76.938157, 38.889797 ], [ -76.938200, 38.889764 ], [ -76.938243, 38.889730 ], [ -76.938286, 38.889647 ], [ -76.938329, 38.889513 ], [ -76.938415, 38.889413 ], [ -76.938479, 38.889313 ], [ -76.938715, 38.889146 ], [ -76.939015, 38.888962 ], [ -76.939101, 38.888895 ], [ -76.939209, 38.888845 ], [ -76.939337, 38.888745 ], [ -76.939445, 38.888644 ], [ -76.939487, 38.888594 ], [ -76.939595, 38.888511 ], [ -76.939638, 38.888461 ], [ -76.939681, 38.888427 ], [ -76.939788, 38.888310 ], [ -76.939831, 38.888260 ], [ -76.939874, 38.888194 ], [ -76.939981, 38.888077 ], [ -76.940067, 38.887960 ], [ -76.940110, 38.887893 ], [ -76.940131, 38.887826 ], [ -76.940153, 38.887809 ], [ -76.940174, 38.887776 ], [ -76.940238, 38.887676 ], [ -76.940260, 38.887592 ], [ -76.940303, 38.887542 ], [ -76.940324, 38.887492 ], [ -76.940367, 38.887375 ], [ -76.940410, 38.887225 ], [ -76.940453, 38.887125 ], [ -76.940453, 38.887074 ], [ -76.940475, 38.887041 ], [ -76.940496, 38.886958 ], [ -76.940517, 38.886891 ], [ -76.940517, 38.886824 ], [ -76.940539, 38.886724 ], [ -76.940539, 38.886624 ], [ -76.940539, 38.886573 ], [ -76.940539, 38.886557 ], [ -76.940539, 38.886540 ], [ -76.940560, 38.886473 ], [ -76.940560, 38.886390 ], [ -76.940560, 38.886256 ], [ -76.940560, 38.886223 ], [ -76.940582, 38.885939 ], [ -76.940582, 38.885905 ], [ -76.940582, 38.885839 ], [ -76.940582, 38.885788 ], [ -76.940603, 38.885688 ], [ -76.940625, 38.885621 ], [ -76.940625, 38.885521 ], [ -76.940646, 38.885454 ], [ -76.940668, 38.885321 ], [ -76.940711, 38.885204 ], [ -76.940732, 38.885120 ], [ -76.940753, 38.885037 ], [ -76.940775, 38.884953 ], [ -76.940818, 38.884853 ], [ -76.940818, 38.884820 ], [ -76.940861, 38.884719 ], [ -76.940904, 38.884653 ], [ -76.940925, 38.884586 ], [ -76.940989, 38.884435 ], [ -76.941054, 38.884302 ], [ -76.941075, 38.884235 ], [ -76.941161, 38.884101 ], [ -76.941226, 38.883968 ], [ -76.941290, 38.883851 ], [ -76.941333, 38.883801 ], [ -76.941440, 38.883617 ], [ -76.941526, 38.883517 ], [ -76.941569, 38.883450 ], [ -76.941676, 38.883316 ], [ -76.941741, 38.883266 ], [ -76.941805, 38.883183 ], [ -76.941912, 38.883049 ], [ -76.942041, 38.882915 ], [ -76.942105, 38.882849 ], [ -76.942234, 38.882715 ], [ -76.942406, 38.882565 ], [ -76.942513, 38.882481 ], [ -76.942577, 38.882431 ], [ -76.942749, 38.882281 ], [ -76.942899, 38.882164 ], [ -76.942921, 38.882147 ], [ -76.942964, 38.882114 ], [ -76.943049, 38.882064 ], [ -76.943178, 38.881980 ], [ -76.943243, 38.881930 ], [ -76.943371, 38.881846 ], [ -76.943543, 38.881746 ], [ -76.943779, 38.881613 ], [ -76.943908, 38.881546 ], [ -76.944015, 38.881479 ], [ -76.944165, 38.881412 ], [ -76.944337, 38.881345 ], [ -76.944401, 38.881312 ], [ -76.944487, 38.881279 ], [ -76.944530, 38.881262 ], [ -76.944637, 38.881212 ], [ -76.944809, 38.881145 ], [ -76.944852, 38.881128 ], [ -76.944916, 38.881112 ], [ -76.945024, 38.881078 ], [ -76.945195, 38.881028 ], [ -76.945624, 38.880894 ], [ -76.945775, 38.880861 ], [ -76.945817, 38.880961 ], [ -76.945860, 38.881095 ], [ -76.945903, 38.881195 ], [ -76.946075, 38.881563 ], [ -76.946118, 38.881646 ], [ -76.946290, 38.882014 ], [ -76.946611, 38.882715 ], [ -76.946654, 38.882799 ], [ -76.946676, 38.882832 ], [ -76.946805, 38.882832 ], [ -76.947041, 38.882832 ], [ -76.947277, 38.882832 ], [ -76.947448, 38.882832 ], [ -76.947556, 38.882832 ], [ -76.947684, 38.882832 ], [ -76.947813, 38.882832 ], [ -76.947920, 38.882849 ], [ -76.948049, 38.882865 ], [ -76.948671, 38.882966 ], [ -76.949508, 38.883083 ], [ -76.949787, 38.883116 ], [ -76.950388, 38.883216 ], [ -76.950839, 38.883283 ], [ -76.951311, 38.883350 ], [ -76.951439, 38.883366 ], [ -76.951761, 38.883417 ], [ -76.952190, 38.883483 ], [ -76.952941, 38.883584 ], [ -76.953006, 38.883600 ], [ -76.953092, 38.883617 ], [ -76.953177, 38.883617 ], [ -76.953263, 38.883617 ], [ -76.953306, 38.883617 ], [ -76.954765, 38.883634 ], [ -76.956267, 38.883634 ], [ -76.956589, 38.883634 ], [ -76.957340, 38.883634 ], [ -76.957490, 38.883634 ], [ -76.957362, 38.883801 ], [ -76.957233, 38.883984 ], [ -76.957018, 38.884268 ], [ -76.956954, 38.884385 ], [ -76.956825, 38.884552 ], [ -76.956139, 38.885521 ], [ -76.955795, 38.885989 ], [ -76.955431, 38.886507 ], [ -76.955216, 38.886791 ], [ -76.955152, 38.886907 ], [ -76.954658, 38.887576 ], [ -76.954572, 38.887709 ], [ -76.954401, 38.887943 ], [ -76.954229, 38.888177 ], [ -76.953950, 38.888578 ], [ -76.953928, 38.888611 ], [ -76.953886, 38.888661 ], [ -76.953778, 38.888778 ], [ -76.953177, 38.889596 ], [ -76.953070, 38.889730 ], [ -76.953006, 38.889814 ], [ -76.951933, 38.889814 ], [ -76.950731, 38.889830 ], [ -76.950088, 38.889847 ], [ -76.948800, 38.889814 ], [ -76.948285, 38.889814 ], [ -76.947234, 38.889830 ], [ -76.944551, 38.889830 ], [ -76.942792, 38.889830 ], [ -76.940882, 38.889830 ], [ -76.940002, 38.889847 ], [ -76.939809, 38.889864 ], [ -76.939552, 38.889880 ], [ -76.939380, 38.889880 ], [ -76.937878, 38.889880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009907", "GEOID": "11001009907", "NAME": "99.07", "NAMELSAD": "Census Tract 99.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 466954, "AWATER": 0, "INTPTLAT": "+38.8827718", "INTPTLON": "-076.9388146" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.945775, 38.880861 ], [ -76.945624, 38.880894 ], [ -76.945195, 38.881028 ], [ -76.945024, 38.881078 ], [ -76.944916, 38.881112 ], [ -76.944852, 38.881128 ], [ -76.944809, 38.881145 ], [ -76.944637, 38.881212 ], [ -76.944530, 38.881262 ], [ -76.944487, 38.881279 ], [ -76.944401, 38.881312 ], [ -76.944337, 38.881345 ], [ -76.944165, 38.881412 ], [ -76.944015, 38.881479 ], [ -76.943908, 38.881546 ], [ -76.943779, 38.881613 ], [ -76.943543, 38.881746 ], [ -76.943371, 38.881846 ], [ -76.943243, 38.881930 ], [ -76.943178, 38.881980 ], [ -76.943049, 38.882064 ], [ -76.942964, 38.882114 ], [ -76.942921, 38.882147 ], [ -76.942899, 38.882164 ], [ -76.942749, 38.882281 ], [ -76.942577, 38.882431 ], [ -76.942513, 38.882481 ], [ -76.942406, 38.882565 ], [ -76.942234, 38.882715 ], [ -76.942105, 38.882849 ], [ -76.942041, 38.882915 ], [ -76.941912, 38.883049 ], [ -76.941805, 38.883183 ], [ -76.941741, 38.883266 ], [ -76.941676, 38.883316 ], [ -76.941569, 38.883450 ], [ -76.941526, 38.883517 ], [ -76.941440, 38.883617 ], [ -76.941333, 38.883801 ], [ -76.941290, 38.883851 ], [ -76.941226, 38.883968 ], [ -76.941161, 38.884101 ], [ -76.941075, 38.884235 ], [ -76.941054, 38.884302 ], [ -76.940989, 38.884435 ], [ -76.940925, 38.884586 ], [ -76.940904, 38.884653 ], [ -76.940861, 38.884719 ], [ -76.940818, 38.884820 ], [ -76.940818, 38.884853 ], [ -76.940775, 38.884953 ], [ -76.940753, 38.885037 ], [ -76.940732, 38.885120 ], [ -76.940711, 38.885204 ], [ -76.940668, 38.885321 ], [ -76.940646, 38.885454 ], [ -76.940625, 38.885521 ], [ -76.940625, 38.885621 ], [ -76.940603, 38.885688 ], [ -76.940582, 38.885788 ], [ -76.940582, 38.885839 ], [ -76.940582, 38.885905 ], [ -76.940582, 38.885939 ], [ -76.940560, 38.886223 ], [ -76.940560, 38.886256 ], [ -76.940560, 38.886390 ], [ -76.940560, 38.886473 ], [ -76.940539, 38.886540 ], [ -76.940475, 38.886540 ], [ -76.940432, 38.886540 ], [ -76.939766, 38.886540 ], [ -76.938479, 38.886540 ], [ -76.937771, 38.886540 ], [ -76.936312, 38.886540 ], [ -76.936162, 38.886540 ], [ -76.935904, 38.885972 ], [ -76.935711, 38.885538 ], [ -76.935604, 38.885237 ], [ -76.935303, 38.884586 ], [ -76.935282, 38.884519 ], [ -76.935239, 38.884419 ], [ -76.935217, 38.884352 ], [ -76.935153, 38.884252 ], [ -76.935132, 38.884202 ], [ -76.935067, 38.884085 ], [ -76.935003, 38.884001 ], [ -76.934981, 38.883968 ], [ -76.934960, 38.883918 ], [ -76.934917, 38.883851 ], [ -76.934831, 38.883734 ], [ -76.934810, 38.883701 ], [ -76.934788, 38.883684 ], [ -76.934659, 38.883534 ], [ -76.934466, 38.883300 ], [ -76.934316, 38.883099 ], [ -76.934230, 38.882999 ], [ -76.933608, 38.882264 ], [ -76.933415, 38.882030 ], [ -76.933329, 38.881913 ], [ -76.933200, 38.881746 ], [ -76.933136, 38.881663 ], [ -76.933072, 38.881546 ], [ -76.933029, 38.881496 ], [ -76.933157, 38.881446 ], [ -76.933308, 38.881395 ], [ -76.934531, 38.880894 ], [ -76.935046, 38.880677 ], [ -76.935346, 38.880560 ], [ -76.936140, 38.880243 ], [ -76.936204, 38.880209 ], [ -76.936247, 38.880209 ], [ -76.936483, 38.880193 ], [ -76.937749, 38.880193 ], [ -76.937985, 38.880193 ], [ -76.938672, 38.880193 ], [ -76.938951, 38.880193 ], [ -76.939251, 38.880193 ], [ -76.940024, 38.880193 ], [ -76.940067, 38.880193 ], [ -76.940153, 38.880209 ], [ -76.940303, 38.880209 ], [ -76.940324, 38.880226 ], [ -76.940389, 38.880226 ], [ -76.940496, 38.880260 ], [ -76.940539, 38.880260 ], [ -76.940839, 38.880360 ], [ -76.940882, 38.880360 ], [ -76.940925, 38.880377 ], [ -76.941054, 38.880410 ], [ -76.941140, 38.880443 ], [ -76.941183, 38.880443 ], [ -76.941247, 38.880460 ], [ -76.941376, 38.880477 ], [ -76.941483, 38.880493 ], [ -76.941655, 38.880527 ], [ -76.941826, 38.880527 ], [ -76.941998, 38.880544 ], [ -76.942105, 38.880544 ], [ -76.942170, 38.880527 ], [ -76.942277, 38.880527 ], [ -76.942384, 38.880510 ], [ -76.942492, 38.880493 ], [ -76.942513, 38.880493 ], [ -76.942556, 38.880477 ], [ -76.942577, 38.880477 ], [ -76.942620, 38.880460 ], [ -76.942685, 38.880443 ], [ -76.942770, 38.880410 ], [ -76.942813, 38.880393 ], [ -76.942899, 38.880360 ], [ -76.942921, 38.880343 ], [ -76.943007, 38.880310 ], [ -76.943071, 38.880260 ], [ -76.943135, 38.880226 ], [ -76.943221, 38.880159 ], [ -76.943285, 38.880109 ], [ -76.943350, 38.880059 ], [ -76.943393, 38.880026 ], [ -76.943500, 38.879875 ], [ -76.943543, 38.879842 ], [ -76.943586, 38.879809 ], [ -76.943607, 38.879775 ], [ -76.943693, 38.879708 ], [ -76.943758, 38.879658 ], [ -76.943886, 38.879558 ], [ -76.943908, 38.879541 ], [ -76.943929, 38.879525 ], [ -76.943994, 38.879491 ], [ -76.944015, 38.879458 ], [ -76.944036, 38.879441 ], [ -76.944101, 38.879408 ], [ -76.944165, 38.879374 ], [ -76.944230, 38.879358 ], [ -76.944444, 38.879274 ], [ -76.944487, 38.879241 ], [ -76.944551, 38.879224 ], [ -76.944852, 38.879090 ], [ -76.944959, 38.879257 ], [ -76.945088, 38.879441 ], [ -76.945131, 38.879541 ], [ -76.945217, 38.879692 ], [ -76.945260, 38.879792 ], [ -76.945302, 38.879875 ], [ -76.945474, 38.880243 ], [ -76.945689, 38.880711 ], [ -76.945775, 38.880861 ] ] ], [ [ [ -76.940539, 38.886573 ], [ -76.940539, 38.886624 ], [ -76.940539, 38.886724 ], [ -76.940517, 38.886824 ], [ -76.940517, 38.886891 ], [ -76.940496, 38.886958 ], [ -76.940475, 38.887041 ], [ -76.940453, 38.887074 ], [ -76.940453, 38.887125 ], [ -76.940410, 38.887225 ], [ -76.940367, 38.887375 ], [ -76.940324, 38.887492 ], [ -76.940303, 38.887542 ], [ -76.940260, 38.887592 ], [ -76.940238, 38.887676 ], [ -76.940174, 38.887776 ], [ -76.940153, 38.887809 ], [ -76.940131, 38.887826 ], [ -76.940110, 38.887893 ], [ -76.940067, 38.887960 ], [ -76.939981, 38.888077 ], [ -76.939874, 38.888194 ], [ -76.939831, 38.888260 ], [ -76.939788, 38.888310 ], [ -76.939681, 38.888427 ], [ -76.939638, 38.888461 ], [ -76.939595, 38.888511 ], [ -76.939487, 38.888594 ], [ -76.939445, 38.888644 ], [ -76.939337, 38.888745 ], [ -76.939209, 38.888845 ], [ -76.939101, 38.888895 ], [ -76.939015, 38.888962 ], [ -76.938715, 38.889146 ], [ -76.938479, 38.889313 ], [ -76.938415, 38.889413 ], [ -76.938329, 38.889513 ], [ -76.938286, 38.889647 ], [ -76.938243, 38.889730 ], [ -76.938200, 38.889764 ], [ -76.938157, 38.889797 ], [ -76.938114, 38.889814 ], [ -76.938028, 38.889847 ], [ -76.937878, 38.889880 ], [ -76.937578, 38.889880 ], [ -76.937277, 38.889897 ], [ -76.936612, 38.889880 ], [ -76.936097, 38.889880 ], [ -76.935689, 38.889847 ], [ -76.935518, 38.889830 ], [ -76.934874, 38.889830 ], [ -76.934381, 38.889830 ], [ -76.932771, 38.889814 ], [ -76.932042, 38.889797 ], [ -76.932042, 38.889764 ], [ -76.932063, 38.889697 ], [ -76.932063, 38.889663 ], [ -76.932085, 38.889630 ], [ -76.932085, 38.889580 ], [ -76.932192, 38.889079 ], [ -76.932213, 38.888995 ], [ -76.932364, 38.888310 ], [ -76.932428, 38.888060 ], [ -76.932471, 38.887826 ], [ -76.932492, 38.887709 ], [ -76.932664, 38.886958 ], [ -76.932771, 38.886507 ], [ -76.932793, 38.886423 ], [ -76.932814, 38.886289 ], [ -76.932921, 38.885755 ], [ -76.932943, 38.885738 ], [ -76.932943, 38.885705 ], [ -76.932943, 38.885688 ], [ -76.932943, 38.885655 ], [ -76.932943, 38.885621 ], [ -76.933029, 38.885638 ], [ -76.933501, 38.885688 ], [ -76.934059, 38.885755 ], [ -76.934638, 38.885822 ], [ -76.935239, 38.885889 ], [ -76.935775, 38.885955 ], [ -76.935904, 38.885972 ], [ -76.936162, 38.886540 ], [ -76.936312, 38.886540 ], [ -76.937771, 38.886540 ], [ -76.938479, 38.886540 ], [ -76.939766, 38.886540 ], [ -76.940432, 38.886540 ], [ -76.940475, 38.886540 ], [ -76.940539, 38.886540 ], [ -76.940539, 38.886557 ], [ -76.940539, 38.886573 ] ] ], [ [ [ -76.930668, 38.880594 ], [ -76.930797, 38.880627 ], [ -76.930840, 38.880627 ], [ -76.930904, 38.880644 ], [ -76.930947, 38.880661 ], [ -76.931012, 38.880677 ], [ -76.931055, 38.880694 ], [ -76.931098, 38.880711 ], [ -76.931162, 38.880744 ], [ -76.931205, 38.880761 ], [ -76.931291, 38.880794 ], [ -76.931334, 38.880828 ], [ -76.931398, 38.880844 ], [ -76.931441, 38.880878 ], [ -76.931527, 38.880944 ], [ -76.931591, 38.881011 ], [ -76.931677, 38.881061 ], [ -76.931720, 38.881112 ], [ -76.931763, 38.881162 ], [ -76.931806, 38.881212 ], [ -76.931870, 38.881295 ], [ -76.931913, 38.881345 ], [ -76.931913, 38.881362 ], [ -76.931956, 38.881412 ], [ -76.931977, 38.881429 ], [ -76.931999, 38.881462 ], [ -76.932020, 38.881479 ], [ -76.932042, 38.881496 ], [ -76.932106, 38.881529 ], [ -76.932149, 38.881563 ], [ -76.932213, 38.881579 ], [ -76.932256, 38.881596 ], [ -76.932278, 38.881613 ], [ -76.932321, 38.881613 ], [ -76.932364, 38.881613 ], [ -76.932428, 38.881629 ], [ -76.932492, 38.881629 ], [ -76.932557, 38.881629 ], [ -76.932600, 38.881629 ], [ -76.932642, 38.881613 ], [ -76.932685, 38.881613 ], [ -76.932900, 38.881546 ], [ -76.933029, 38.881496 ], [ -76.933072, 38.881546 ], [ -76.933136, 38.881663 ], [ -76.933200, 38.881746 ], [ -76.933329, 38.881913 ], [ -76.933415, 38.882030 ], [ -76.933608, 38.882264 ], [ -76.934230, 38.882999 ], [ -76.934316, 38.883099 ], [ -76.934466, 38.883300 ], [ -76.934659, 38.883534 ], [ -76.934788, 38.883684 ], [ -76.934810, 38.883701 ], [ -76.934831, 38.883734 ], [ -76.934917, 38.883851 ], [ -76.934960, 38.883918 ], [ -76.934981, 38.883968 ], [ -76.935003, 38.884001 ], [ -76.935067, 38.884085 ], [ -76.935132, 38.884202 ], [ -76.935153, 38.884252 ], [ -76.935217, 38.884352 ], [ -76.935239, 38.884419 ], [ -76.935282, 38.884519 ], [ -76.935303, 38.884586 ], [ -76.935604, 38.885237 ], [ -76.935711, 38.885538 ], [ -76.935904, 38.885972 ], [ -76.935775, 38.885955 ], [ -76.935239, 38.885889 ], [ -76.934638, 38.885822 ], [ -76.934059, 38.885755 ], [ -76.933501, 38.885688 ], [ -76.933029, 38.885638 ], [ -76.932943, 38.885621 ], [ -76.932943, 38.885655 ], [ -76.932943, 38.885688 ], [ -76.932943, 38.885705 ], [ -76.932943, 38.885738 ], [ -76.932921, 38.885755 ], [ -76.932814, 38.886289 ], [ -76.932793, 38.886423 ], [ -76.932771, 38.886507 ], [ -76.932664, 38.886958 ], [ -76.932492, 38.887709 ], [ -76.932471, 38.887826 ], [ -76.932428, 38.888060 ], [ -76.932364, 38.888310 ], [ -76.932213, 38.888995 ], [ -76.932192, 38.889079 ], [ -76.932085, 38.889580 ], [ -76.932085, 38.889630 ], [ -76.932063, 38.889663 ], [ -76.932063, 38.889697 ], [ -76.932042, 38.889764 ], [ -76.932042, 38.889797 ], [ -76.932020, 38.889797 ], [ -76.931827, 38.889814 ], [ -76.931162, 38.889814 ], [ -76.930776, 38.889830 ], [ -76.930389, 38.889830 ], [ -76.930153, 38.889814 ], [ -76.930068, 38.889814 ], [ -76.930046, 38.889814 ], [ -76.930046, 38.889713 ], [ -76.930046, 38.889663 ], [ -76.930025, 38.889613 ], [ -76.930025, 38.889580 ], [ -76.930003, 38.889563 ], [ -76.929982, 38.889513 ], [ -76.929939, 38.889480 ], [ -76.929917, 38.889446 ], [ -76.929832, 38.889363 ], [ -76.929767, 38.889346 ], [ -76.929638, 38.889279 ], [ -76.929424, 38.889212 ], [ -76.929338, 38.889162 ], [ -76.929123, 38.889095 ], [ -76.929038, 38.889062 ], [ -76.928823, 38.888995 ], [ -76.928630, 38.888928 ], [ -76.928372, 38.888862 ], [ -76.928179, 38.888812 ], [ -76.927900, 38.888728 ], [ -76.927686, 38.888678 ], [ -76.927600, 38.888644 ], [ -76.927643, 38.888461 ], [ -76.927643, 38.888394 ], [ -76.927686, 38.888227 ], [ -76.927793, 38.887709 ], [ -76.927900, 38.887275 ], [ -76.927943, 38.887041 ], [ -76.928072, 38.886440 ], [ -76.928093, 38.886423 ], [ -76.928093, 38.886356 ], [ -76.928244, 38.885688 ], [ -76.928394, 38.885003 ], [ -76.928544, 38.884335 ], [ -76.928673, 38.883751 ], [ -76.928694, 38.883650 ], [ -76.928844, 38.882982 ], [ -76.928844, 38.882915 ], [ -76.928973, 38.882381 ], [ -76.928995, 38.882297 ], [ -76.929123, 38.881629 ], [ -76.929145, 38.881529 ], [ -76.929231, 38.881145 ], [ -76.929252, 38.881112 ], [ -76.929317, 38.880761 ], [ -76.929317, 38.880677 ], [ -76.929681, 38.880627 ], [ -76.929982, 38.880594 ], [ -76.930003, 38.880594 ], [ -76.930025, 38.880577 ], [ -76.930110, 38.880577 ], [ -76.930132, 38.880577 ], [ -76.930153, 38.880577 ], [ -76.930218, 38.880577 ], [ -76.930239, 38.880577 ], [ -76.930282, 38.880560 ], [ -76.930304, 38.880560 ], [ -76.930346, 38.880560 ], [ -76.930411, 38.880577 ], [ -76.930497, 38.880577 ], [ -76.930604, 38.880594 ], [ -76.930668, 38.880594 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007707", "GEOID": "11001007707", "NAME": "77.07", "NAMELSAD": "Census Tract 77.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 842851, "AWATER": 0, "INTPTLAT": "+38.8779453", "INTPTLON": "-076.9353432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.944852, 38.879090 ], [ -76.944551, 38.879224 ], [ -76.944487, 38.879241 ], [ -76.944444, 38.879274 ], [ -76.944230, 38.879358 ], [ -76.944165, 38.879374 ], [ -76.944101, 38.879408 ], [ -76.944036, 38.879441 ], [ -76.944015, 38.879458 ], [ -76.943994, 38.879491 ], [ -76.943929, 38.879525 ], [ -76.943908, 38.879541 ], [ -76.943886, 38.879558 ], [ -76.943758, 38.879658 ], [ -76.943693, 38.879708 ], [ -76.943607, 38.879775 ], [ -76.943586, 38.879809 ], [ -76.943543, 38.879842 ], [ -76.943500, 38.879875 ], [ -76.943393, 38.880026 ], [ -76.943350, 38.880059 ], [ -76.943285, 38.880109 ], [ -76.943221, 38.880159 ], [ -76.943135, 38.880226 ], [ -76.943071, 38.880260 ], [ -76.943007, 38.880310 ], [ -76.942921, 38.880343 ], [ -76.942899, 38.880360 ], [ -76.942813, 38.880393 ], [ -76.942770, 38.880410 ], [ -76.942685, 38.880443 ], [ -76.942620, 38.880460 ], [ -76.942577, 38.880477 ], [ -76.942556, 38.880477 ], [ -76.942513, 38.880493 ], [ -76.942492, 38.880493 ], [ -76.942384, 38.880510 ], [ -76.942277, 38.880527 ], [ -76.942170, 38.880527 ], [ -76.942105, 38.880544 ], [ -76.941998, 38.880544 ], [ -76.941826, 38.880527 ], [ -76.941655, 38.880527 ], [ -76.941483, 38.880493 ], [ -76.941376, 38.880477 ], [ -76.941247, 38.880460 ], [ -76.941183, 38.880443 ], [ -76.941140, 38.880443 ], [ -76.941054, 38.880410 ], [ -76.940925, 38.880377 ], [ -76.940882, 38.880360 ], [ -76.940839, 38.880360 ], [ -76.940539, 38.880260 ], [ -76.940496, 38.880260 ], [ -76.940389, 38.880226 ], [ -76.940324, 38.880226 ], [ -76.940303, 38.880209 ], [ -76.940153, 38.880209 ], [ -76.940067, 38.880193 ], [ -76.940024, 38.880193 ], [ -76.939251, 38.880193 ], [ -76.938951, 38.880193 ], [ -76.938672, 38.880193 ], [ -76.937985, 38.880193 ], [ -76.937749, 38.880193 ], [ -76.936483, 38.880193 ], [ -76.936247, 38.880209 ], [ -76.936204, 38.880209 ], [ -76.936140, 38.880243 ], [ -76.935346, 38.880560 ], [ -76.935046, 38.880677 ], [ -76.934531, 38.880894 ], [ -76.933308, 38.881395 ], [ -76.933157, 38.881446 ], [ -76.933029, 38.881496 ], [ -76.932900, 38.881546 ], [ -76.932685, 38.881613 ], [ -76.932642, 38.881613 ], [ -76.932600, 38.881629 ], [ -76.932557, 38.881629 ], [ -76.932492, 38.881629 ], [ -76.932428, 38.881629 ], [ -76.932364, 38.881613 ], [ -76.932321, 38.881613 ], [ -76.932278, 38.881613 ], [ -76.932256, 38.881596 ], [ -76.932213, 38.881579 ], [ -76.932149, 38.881563 ], [ -76.932106, 38.881529 ], [ -76.932042, 38.881496 ], [ -76.932020, 38.881479 ], [ -76.931999, 38.881462 ], [ -76.931977, 38.881429 ], [ -76.931956, 38.881412 ], [ -76.931913, 38.881362 ], [ -76.931913, 38.881345 ], [ -76.931870, 38.881295 ], [ -76.931806, 38.881212 ], [ -76.931763, 38.881162 ], [ -76.931720, 38.881112 ], [ -76.931677, 38.881061 ], [ -76.931591, 38.881011 ], [ -76.931527, 38.880944 ], [ -76.931441, 38.880878 ], [ -76.931398, 38.880844 ], [ -76.931334, 38.880828 ], [ -76.931291, 38.880794 ], [ -76.931205, 38.880761 ], [ -76.931162, 38.880744 ], [ -76.931098, 38.880711 ], [ -76.931055, 38.880694 ], [ -76.931012, 38.880677 ], [ -76.930947, 38.880661 ], [ -76.930904, 38.880644 ], [ -76.930840, 38.880627 ], [ -76.930797, 38.880627 ], [ -76.930668, 38.880594 ], [ -76.930604, 38.880594 ], [ -76.930497, 38.880577 ], [ -76.930411, 38.880577 ], [ -76.930346, 38.880560 ], [ -76.930304, 38.880560 ], [ -76.930282, 38.880560 ], [ -76.930239, 38.880577 ], [ -76.930218, 38.880577 ], [ -76.930153, 38.880577 ], [ -76.930132, 38.880577 ], [ -76.930110, 38.880577 ], [ -76.930025, 38.880577 ], [ -76.930003, 38.880594 ], [ -76.929982, 38.880594 ], [ -76.929681, 38.880627 ], [ -76.929317, 38.880677 ], [ -76.929166, 38.880694 ], [ -76.928136, 38.880811 ], [ -76.927578, 38.880878 ], [ -76.927149, 38.880928 ], [ -76.927042, 38.880944 ], [ -76.926956, 38.880944 ], [ -76.926827, 38.880961 ], [ -76.926613, 38.880995 ], [ -76.926463, 38.881011 ], [ -76.925948, 38.881078 ], [ -76.924660, 38.881212 ], [ -76.924553, 38.881228 ], [ -76.924446, 38.881245 ], [ -76.924360, 38.881279 ], [ -76.924295, 38.881295 ], [ -76.924210, 38.881329 ], [ -76.924038, 38.881429 ], [ -76.924338, 38.881178 ], [ -76.924660, 38.880928 ], [ -76.924832, 38.880811 ], [ -76.925604, 38.880209 ], [ -76.925733, 38.880109 ], [ -76.926098, 38.879825 ], [ -76.926227, 38.879725 ], [ -76.926270, 38.879692 ], [ -76.926312, 38.879658 ], [ -76.926355, 38.879642 ], [ -76.926398, 38.879608 ], [ -76.926441, 38.879575 ], [ -76.926484, 38.879541 ], [ -76.928051, 38.878305 ], [ -76.928136, 38.878238 ], [ -76.928179, 38.878205 ], [ -76.928544, 38.877938 ], [ -76.929038, 38.877554 ], [ -76.929059, 38.877537 ], [ -76.929424, 38.877253 ], [ -76.929810, 38.876935 ], [ -76.929917, 38.876852 ], [ -76.929982, 38.876802 ], [ -76.930068, 38.876752 ], [ -76.930583, 38.876351 ], [ -76.930883, 38.876117 ], [ -76.930947, 38.876067 ], [ -76.930990, 38.876033 ], [ -76.931033, 38.876000 ], [ -76.931140, 38.875916 ], [ -76.931248, 38.875833 ], [ -76.931269, 38.875800 ], [ -76.931355, 38.875733 ], [ -76.931484, 38.875649 ], [ -76.931612, 38.875549 ], [ -76.931634, 38.875516 ], [ -76.932042, 38.875198 ], [ -76.932428, 38.874897 ], [ -76.932492, 38.874864 ], [ -76.932664, 38.874714 ], [ -76.932728, 38.874664 ], [ -76.933136, 38.874346 ], [ -76.933630, 38.873962 ], [ -76.933844, 38.873812 ], [ -76.934144, 38.873561 ], [ -76.934209, 38.873511 ], [ -76.934252, 38.873477 ], [ -76.934402, 38.873377 ], [ -76.934681, 38.873143 ], [ -76.934745, 38.873093 ], [ -76.934810, 38.873043 ], [ -76.934874, 38.872993 ], [ -76.934917, 38.872960 ], [ -76.935003, 38.872893 ], [ -76.935711, 38.873260 ], [ -76.935840, 38.873327 ], [ -76.936097, 38.873461 ], [ -76.936762, 38.873812 ], [ -76.936870, 38.873878 ], [ -76.936977, 38.873929 ], [ -76.937084, 38.873979 ], [ -76.937363, 38.874129 ], [ -76.937921, 38.874430 ], [ -76.938350, 38.874664 ], [ -76.938651, 38.874814 ], [ -76.938801, 38.874897 ], [ -76.939015, 38.875014 ], [ -76.939359, 38.875198 ], [ -76.939895, 38.875465 ], [ -76.940174, 38.875649 ], [ -76.940496, 38.875833 ], [ -76.940839, 38.876050 ], [ -76.941097, 38.876217 ], [ -76.941247, 38.876301 ], [ -76.941268, 38.876334 ], [ -76.941354, 38.876367 ], [ -76.941419, 38.876418 ], [ -76.941504, 38.876451 ], [ -76.941590, 38.876484 ], [ -76.941633, 38.876501 ], [ -76.941676, 38.876518 ], [ -76.941719, 38.876535 ], [ -76.941891, 38.876601 ], [ -76.941977, 38.876618 ], [ -76.942062, 38.876651 ], [ -76.942492, 38.876785 ], [ -76.942534, 38.876819 ], [ -76.942620, 38.876852 ], [ -76.942728, 38.876885 ], [ -76.942770, 38.876902 ], [ -76.942813, 38.876935 ], [ -76.942856, 38.876952 ], [ -76.942878, 38.876986 ], [ -76.942921, 38.877002 ], [ -76.942985, 38.877036 ], [ -76.943071, 38.877119 ], [ -76.943200, 38.877219 ], [ -76.943285, 38.877286 ], [ -76.943436, 38.877420 ], [ -76.943564, 38.877554 ], [ -76.943715, 38.877687 ], [ -76.943908, 38.877888 ], [ -76.943972, 38.877938 ], [ -76.944079, 38.878071 ], [ -76.944187, 38.878188 ], [ -76.944273, 38.878305 ], [ -76.944466, 38.878522 ], [ -76.944573, 38.878673 ], [ -76.944637, 38.878773 ], [ -76.944702, 38.878873 ], [ -76.944788, 38.878973 ], [ -76.944852, 38.879090 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009902", "GEOID": "11001009902", "NAME": "99.02", "NAMELSAD": "Census Tract 99.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1294556, "AWATER": 0, "INTPTLAT": "+38.8717861", "INTPTLON": "-076.9445542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.945775, 38.880861 ], [ -76.945689, 38.880711 ], [ -76.945474, 38.880243 ], [ -76.945302, 38.879875 ], [ -76.945260, 38.879792 ], [ -76.945217, 38.879692 ], [ -76.945131, 38.879541 ], [ -76.945088, 38.879441 ], [ -76.944959, 38.879257 ], [ -76.944852, 38.879090 ], [ -76.944788, 38.878973 ], [ -76.944702, 38.878873 ], [ -76.944637, 38.878773 ], [ -76.944573, 38.878673 ], [ -76.944466, 38.878522 ], [ -76.944273, 38.878305 ], [ -76.944187, 38.878188 ], [ -76.944079, 38.878071 ], [ -76.943972, 38.877938 ], [ -76.943908, 38.877888 ], [ -76.943715, 38.877687 ], [ -76.943564, 38.877554 ], [ -76.943436, 38.877420 ], [ -76.943285, 38.877286 ], [ -76.943200, 38.877219 ], [ -76.943071, 38.877119 ], [ -76.942985, 38.877036 ], [ -76.942921, 38.877002 ], [ -76.942878, 38.876986 ], [ -76.942856, 38.876952 ], [ -76.942813, 38.876935 ], [ -76.942770, 38.876902 ], [ -76.942728, 38.876885 ], [ -76.942620, 38.876852 ], [ -76.942534, 38.876819 ], [ -76.942492, 38.876785 ], [ -76.942062, 38.876651 ], [ -76.941977, 38.876618 ], [ -76.941891, 38.876601 ], [ -76.941719, 38.876535 ], [ -76.941676, 38.876518 ], [ -76.941633, 38.876501 ], [ -76.941590, 38.876484 ], [ -76.941504, 38.876451 ], [ -76.941419, 38.876418 ], [ -76.941354, 38.876367 ], [ -76.941268, 38.876334 ], [ -76.941247, 38.876301 ], [ -76.941097, 38.876217 ], [ -76.940839, 38.876050 ], [ -76.940496, 38.875833 ], [ -76.940174, 38.875649 ], [ -76.939895, 38.875465 ], [ -76.939359, 38.875198 ], [ -76.939015, 38.875014 ], [ -76.938801, 38.874897 ], [ -76.938651, 38.874814 ], [ -76.938350, 38.874664 ], [ -76.937921, 38.874430 ], [ -76.937363, 38.874129 ], [ -76.937084, 38.873979 ], [ -76.936977, 38.873929 ], [ -76.936870, 38.873878 ], [ -76.936762, 38.873812 ], [ -76.936097, 38.873461 ], [ -76.935840, 38.873327 ], [ -76.935711, 38.873260 ], [ -76.935003, 38.872893 ], [ -76.935110, 38.872809 ], [ -76.935325, 38.872642 ], [ -76.935346, 38.872626 ], [ -76.935389, 38.872592 ], [ -76.935475, 38.872542 ], [ -76.935582, 38.872458 ], [ -76.935925, 38.872174 ], [ -76.935990, 38.872124 ], [ -76.936076, 38.872074 ], [ -76.936162, 38.872007 ], [ -76.936269, 38.871924 ], [ -76.936290, 38.871907 ], [ -76.936355, 38.871840 ], [ -76.936462, 38.871774 ], [ -76.936526, 38.871707 ], [ -76.936612, 38.871657 ], [ -76.936677, 38.871590 ], [ -76.936827, 38.871473 ], [ -76.937041, 38.871322 ], [ -76.937063, 38.871289 ], [ -76.937149, 38.871222 ], [ -76.937191, 38.871189 ], [ -76.937234, 38.871172 ], [ -76.937363, 38.871055 ], [ -76.937428, 38.871022 ], [ -76.937728, 38.870788 ], [ -76.937792, 38.870721 ], [ -76.937857, 38.870671 ], [ -76.938028, 38.870554 ], [ -76.938307, 38.870320 ], [ -76.938329, 38.870303 ], [ -76.938393, 38.870253 ], [ -76.938479, 38.870203 ], [ -76.938736, 38.869986 ], [ -76.938930, 38.869852 ], [ -76.938951, 38.869836 ], [ -76.938994, 38.869802 ], [ -76.939058, 38.869735 ], [ -76.939273, 38.869585 ], [ -76.939530, 38.869368 ], [ -76.939552, 38.869351 ], [ -76.939573, 38.869334 ], [ -76.939723, 38.869217 ], [ -76.939852, 38.869117 ], [ -76.939895, 38.869101 ], [ -76.940174, 38.868883 ], [ -76.940324, 38.868750 ], [ -76.940410, 38.868683 ], [ -76.940711, 38.868449 ], [ -76.940775, 38.868399 ], [ -76.940861, 38.868332 ], [ -76.941118, 38.868148 ], [ -76.941311, 38.867998 ], [ -76.941333, 38.867964 ], [ -76.941376, 38.867931 ], [ -76.941440, 38.867881 ], [ -76.941590, 38.867764 ], [ -76.941805, 38.867597 ], [ -76.941934, 38.867513 ], [ -76.942084, 38.867380 ], [ -76.942148, 38.867330 ], [ -76.942363, 38.867163 ], [ -76.942470, 38.867079 ], [ -76.942577, 38.866995 ], [ -76.942706, 38.866912 ], [ -76.943092, 38.866611 ], [ -76.943521, 38.866260 ], [ -76.943693, 38.866127 ], [ -76.943800, 38.866043 ], [ -76.943951, 38.865926 ], [ -76.944036, 38.865859 ], [ -76.944144, 38.865776 ], [ -76.944487, 38.865509 ], [ -76.944573, 38.865442 ], [ -76.944680, 38.865358 ], [ -76.944766, 38.865291 ], [ -76.944895, 38.865191 ], [ -76.945388, 38.864807 ], [ -76.945603, 38.864640 ], [ -76.945667, 38.864590 ], [ -76.945775, 38.864506 ], [ -76.945882, 38.864423 ], [ -76.945903, 38.864406 ], [ -76.946225, 38.864155 ], [ -76.946247, 38.864138 ], [ -76.946268, 38.864138 ], [ -76.946633, 38.863838 ], [ -76.946719, 38.863771 ], [ -76.946805, 38.863704 ], [ -76.946847, 38.863771 ], [ -76.947534, 38.864038 ], [ -76.947706, 38.864122 ], [ -76.949100, 38.864690 ], [ -76.949894, 38.865007 ], [ -76.950152, 38.865124 ], [ -76.951311, 38.865592 ], [ -76.951590, 38.865709 ], [ -76.952212, 38.865960 ], [ -76.952984, 38.866277 ], [ -76.952899, 38.866411 ], [ -76.952877, 38.866461 ], [ -76.952834, 38.866494 ], [ -76.952791, 38.866544 ], [ -76.952748, 38.866578 ], [ -76.952727, 38.866594 ], [ -76.952705, 38.866628 ], [ -76.952662, 38.866678 ], [ -76.952577, 38.866745 ], [ -76.952512, 38.866778 ], [ -76.952426, 38.866828 ], [ -76.952362, 38.866862 ], [ -76.952298, 38.866895 ], [ -76.952212, 38.866945 ], [ -76.952147, 38.866979 ], [ -76.952083, 38.866995 ], [ -76.951954, 38.867029 ], [ -76.951826, 38.867079 ], [ -76.951783, 38.867079 ], [ -76.951740, 38.867096 ], [ -76.951590, 38.867129 ], [ -76.951418, 38.867163 ], [ -76.951225, 38.867213 ], [ -76.951118, 38.867229 ], [ -76.950881, 38.867296 ], [ -76.950710, 38.867330 ], [ -76.950645, 38.867363 ], [ -76.950560, 38.867396 ], [ -76.950495, 38.867413 ], [ -76.950366, 38.867463 ], [ -76.950281, 38.867513 ], [ -76.950173, 38.867580 ], [ -76.950109, 38.867614 ], [ -76.950045, 38.867664 ], [ -76.950002, 38.867697 ], [ -76.949937, 38.867747 ], [ -76.949873, 38.867814 ], [ -76.949830, 38.867848 ], [ -76.949787, 38.867898 ], [ -76.949744, 38.867948 ], [ -76.949680, 38.868031 ], [ -76.949658, 38.868065 ], [ -76.949615, 38.868132 ], [ -76.949594, 38.868182 ], [ -76.949551, 38.868265 ], [ -76.949508, 38.868365 ], [ -76.949487, 38.868416 ], [ -76.949487, 38.868449 ], [ -76.949465, 38.868516 ], [ -76.949444, 38.868616 ], [ -76.949444, 38.868683 ], [ -76.949422, 38.868783 ], [ -76.949379, 38.869217 ], [ -76.949379, 38.869318 ], [ -76.949358, 38.869351 ], [ -76.949358, 38.869368 ], [ -76.949337, 38.869501 ], [ -76.949315, 38.869602 ], [ -76.949294, 38.869635 ], [ -76.949294, 38.869685 ], [ -76.949251, 38.869785 ], [ -76.949229, 38.869836 ], [ -76.949186, 38.869902 ], [ -76.949165, 38.869953 ], [ -76.949122, 38.870036 ], [ -76.949036, 38.870136 ], [ -76.949015, 38.870186 ], [ -76.948822, 38.870487 ], [ -76.948779, 38.870537 ], [ -76.948714, 38.870671 ], [ -76.948671, 38.870754 ], [ -76.948628, 38.870805 ], [ -76.948607, 38.870871 ], [ -76.948586, 38.870938 ], [ -76.948564, 38.871005 ], [ -76.948543, 38.871072 ], [ -76.948521, 38.871122 ], [ -76.948521, 38.871189 ], [ -76.948500, 38.871272 ], [ -76.948500, 38.871306 ], [ -76.948500, 38.871389 ], [ -76.948500, 38.871473 ], [ -76.948500, 38.871506 ], [ -76.948521, 38.871606 ], [ -76.948543, 38.871757 ], [ -76.948564, 38.871924 ], [ -76.948607, 38.872141 ], [ -76.948628, 38.872275 ], [ -76.948671, 38.872442 ], [ -76.948671, 38.872525 ], [ -76.948693, 38.872559 ], [ -76.948693, 38.872642 ], [ -76.948693, 38.872709 ], [ -76.948693, 38.872776 ], [ -76.948671, 38.872876 ], [ -76.948650, 38.872960 ], [ -76.948650, 38.873026 ], [ -76.948628, 38.873110 ], [ -76.948607, 38.873143 ], [ -76.948607, 38.873177 ], [ -76.948564, 38.873244 ], [ -76.948435, 38.873461 ], [ -76.948414, 38.873494 ], [ -76.948328, 38.873678 ], [ -76.948242, 38.873828 ], [ -76.948221, 38.873862 ], [ -76.948199, 38.873929 ], [ -76.948156, 38.874012 ], [ -76.948135, 38.874096 ], [ -76.948113, 38.874146 ], [ -76.948092, 38.874229 ], [ -76.948092, 38.874313 ], [ -76.948071, 38.874413 ], [ -76.948071, 38.874463 ], [ -76.948071, 38.874530 ], [ -76.948071, 38.874563 ], [ -76.948092, 38.874664 ], [ -76.948113, 38.874747 ], [ -76.948135, 38.874847 ], [ -76.948135, 38.874864 ], [ -76.948156, 38.874931 ], [ -76.948221, 38.875081 ], [ -76.948264, 38.875181 ], [ -76.948328, 38.875332 ], [ -76.948371, 38.875432 ], [ -76.948478, 38.875616 ], [ -76.948543, 38.875749 ], [ -76.948628, 38.875883 ], [ -76.948650, 38.875933 ], [ -76.948714, 38.876050 ], [ -76.948800, 38.876167 ], [ -76.948864, 38.876301 ], [ -76.948886, 38.876351 ], [ -76.948972, 38.876535 ], [ -76.949015, 38.876685 ], [ -76.949058, 38.876752 ], [ -76.949058, 38.876785 ], [ -76.949079, 38.876819 ], [ -76.949100, 38.876885 ], [ -76.949122, 38.876952 ], [ -76.949143, 38.877102 ], [ -76.949165, 38.877236 ], [ -76.949186, 38.877353 ], [ -76.949208, 38.877470 ], [ -76.949208, 38.877554 ], [ -76.949208, 38.877620 ], [ -76.949208, 38.877687 ], [ -76.949186, 38.877754 ], [ -76.949186, 38.877821 ], [ -76.949186, 38.877888 ], [ -76.949165, 38.877988 ], [ -76.949143, 38.878071 ], [ -76.949122, 38.878138 ], [ -76.949100, 38.878222 ], [ -76.949058, 38.878322 ], [ -76.949036, 38.878405 ], [ -76.949015, 38.878472 ], [ -76.948972, 38.878539 ], [ -76.948886, 38.878706 ], [ -76.948843, 38.878773 ], [ -76.948822, 38.878823 ], [ -76.948779, 38.878890 ], [ -76.948757, 38.878923 ], [ -76.948693, 38.879007 ], [ -76.948586, 38.879124 ], [ -76.948543, 38.879191 ], [ -76.948457, 38.879274 ], [ -76.948435, 38.879307 ], [ -76.948328, 38.879424 ], [ -76.948242, 38.879491 ], [ -76.948199, 38.879525 ], [ -76.948113, 38.879608 ], [ -76.948071, 38.879625 ], [ -76.947985, 38.879692 ], [ -76.947942, 38.879725 ], [ -76.947856, 38.879792 ], [ -76.947770, 38.879842 ], [ -76.947641, 38.879942 ], [ -76.947598, 38.879959 ], [ -76.947513, 38.880009 ], [ -76.947448, 38.880059 ], [ -76.947255, 38.880176 ], [ -76.947126, 38.880260 ], [ -76.946912, 38.880377 ], [ -76.946762, 38.880443 ], [ -76.946526, 38.880560 ], [ -76.946225, 38.880694 ], [ -76.946161, 38.880727 ], [ -76.946054, 38.880777 ], [ -76.946032, 38.880777 ], [ -76.945989, 38.880811 ], [ -76.945925, 38.880828 ], [ -76.945882, 38.880844 ], [ -76.945775, 38.880861 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009903", "GEOID": "11001009903", "NAME": "99.03", "NAMELSAD": "Census Tract 99.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 383679, "AWATER": 0, "INTPTLAT": "+38.8883180", "INTPTLON": "-076.9212121" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.913373, 38.889747 ], [ -76.913481, 38.889663 ], [ -76.913545, 38.889613 ], [ -76.913738, 38.889463 ], [ -76.913781, 38.889429 ], [ -76.914124, 38.889162 ], [ -76.914167, 38.889129 ], [ -76.914189, 38.889112 ], [ -76.914232, 38.889079 ], [ -76.914253, 38.889062 ], [ -76.914296, 38.889029 ], [ -76.914318, 38.889012 ], [ -76.914339, 38.888995 ], [ -76.914382, 38.888979 ], [ -76.914403, 38.888945 ], [ -76.914425, 38.888928 ], [ -76.914468, 38.888895 ], [ -76.914511, 38.888862 ], [ -76.914897, 38.888561 ], [ -76.915262, 38.888277 ], [ -76.915541, 38.888060 ], [ -76.915820, 38.887843 ], [ -76.916013, 38.887692 ], [ -76.916120, 38.887609 ], [ -76.916206, 38.887542 ], [ -76.916571, 38.887258 ], [ -76.916871, 38.887008 ], [ -76.916893, 38.886991 ], [ -76.917021, 38.886907 ], [ -76.917129, 38.886824 ], [ -76.917365, 38.886640 ], [ -76.917450, 38.886573 ], [ -76.917515, 38.886523 ], [ -76.917579, 38.886473 ], [ -76.917665, 38.886406 ], [ -76.917686, 38.886390 ], [ -76.917708, 38.886373 ], [ -76.917751, 38.886340 ], [ -76.917794, 38.886306 ], [ -76.917837, 38.886273 ], [ -76.917880, 38.886239 ], [ -76.917922, 38.886206 ], [ -76.917987, 38.886156 ], [ -76.918051, 38.886106 ], [ -76.918094, 38.886072 ], [ -76.918395, 38.885839 ], [ -76.918437, 38.885788 ], [ -76.918566, 38.885705 ], [ -76.918695, 38.885738 ], [ -76.919060, 38.885839 ], [ -76.919425, 38.885922 ], [ -76.919532, 38.885939 ], [ -76.919811, 38.886006 ], [ -76.920154, 38.886089 ], [ -76.920455, 38.886173 ], [ -76.920733, 38.886223 ], [ -76.920927, 38.886273 ], [ -76.921012, 38.886289 ], [ -76.921077, 38.886289 ], [ -76.921141, 38.886306 ], [ -76.921248, 38.886323 ], [ -76.921592, 38.886373 ], [ -76.921742, 38.886390 ], [ -76.921828, 38.886406 ], [ -76.921935, 38.886406 ], [ -76.922042, 38.886406 ], [ -76.922214, 38.886423 ], [ -76.922257, 38.886423 ], [ -76.922622, 38.886423 ], [ -76.922879, 38.886440 ], [ -76.923029, 38.886440 ], [ -76.923137, 38.886456 ], [ -76.923180, 38.886456 ], [ -76.923308, 38.886473 ], [ -76.923416, 38.886490 ], [ -76.923480, 38.886507 ], [ -76.923673, 38.886557 ], [ -76.923802, 38.886590 ], [ -76.923974, 38.886640 ], [ -76.924081, 38.886690 ], [ -76.924188, 38.886724 ], [ -76.924253, 38.886740 ], [ -76.924295, 38.886774 ], [ -76.924424, 38.886824 ], [ -76.924553, 38.886891 ], [ -76.924682, 38.886958 ], [ -76.924896, 38.887058 ], [ -76.925025, 38.887141 ], [ -76.925089, 38.887175 ], [ -76.925197, 38.887258 ], [ -76.925497, 38.887442 ], [ -76.925540, 38.887475 ], [ -76.925690, 38.887576 ], [ -76.925712, 38.887592 ], [ -76.926076, 38.887826 ], [ -76.926312, 38.887993 ], [ -76.926484, 38.888110 ], [ -76.926613, 38.888194 ], [ -76.926720, 38.888260 ], [ -76.926827, 38.888327 ], [ -76.926870, 38.888344 ], [ -76.926935, 38.888377 ], [ -76.926999, 38.888411 ], [ -76.927106, 38.888461 ], [ -76.927214, 38.888511 ], [ -76.927342, 38.888561 ], [ -76.927493, 38.888611 ], [ -76.927600, 38.888644 ], [ -76.927686, 38.888678 ], [ -76.927900, 38.888728 ], [ -76.928179, 38.888812 ], [ -76.928372, 38.888862 ], [ -76.928630, 38.888928 ], [ -76.928823, 38.888995 ], [ -76.929038, 38.889062 ], [ -76.929123, 38.889095 ], [ -76.929338, 38.889162 ], [ -76.929424, 38.889212 ], [ -76.929638, 38.889279 ], [ -76.929767, 38.889346 ], [ -76.929832, 38.889363 ], [ -76.929917, 38.889446 ], [ -76.929939, 38.889480 ], [ -76.929982, 38.889513 ], [ -76.930003, 38.889563 ], [ -76.930025, 38.889580 ], [ -76.930025, 38.889613 ], [ -76.930046, 38.889663 ], [ -76.930046, 38.889713 ], [ -76.930046, 38.889814 ], [ -76.927965, 38.889814 ], [ -76.927171, 38.889814 ], [ -76.926162, 38.889814 ], [ -76.926055, 38.889814 ], [ -76.925004, 38.889814 ], [ -76.923952, 38.889814 ], [ -76.922901, 38.889797 ], [ -76.920691, 38.889814 ], [ -76.919403, 38.889814 ], [ -76.917772, 38.889797 ], [ -76.917622, 38.889797 ], [ -76.917236, 38.889797 ], [ -76.916678, 38.889797 ], [ -76.916163, 38.889797 ], [ -76.915712, 38.889797 ], [ -76.915562, 38.889797 ], [ -76.914725, 38.889780 ], [ -76.914597, 38.889797 ], [ -76.914382, 38.889780 ], [ -76.914167, 38.889780 ], [ -76.914039, 38.889780 ], [ -76.913781, 38.889797 ], [ -76.913652, 38.889780 ], [ -76.913502, 38.889797 ], [ -76.913331, 38.889797 ], [ -76.913373, 38.889747 ] ] ], [ [ [ -76.918566, 38.885705 ], [ -76.918674, 38.885621 ], [ -76.918695, 38.885588 ], [ -76.919017, 38.885354 ], [ -76.919146, 38.885254 ], [ -76.919274, 38.885154 ], [ -76.919317, 38.885120 ], [ -76.919339, 38.885104 ], [ -76.919403, 38.885053 ], [ -76.919425, 38.885037 ], [ -76.919532, 38.884953 ], [ -76.919661, 38.884853 ], [ -76.919789, 38.884753 ], [ -76.919918, 38.884653 ], [ -76.919961, 38.884619 ], [ -76.920047, 38.884552 ], [ -76.920111, 38.884502 ], [ -76.920176, 38.884435 ], [ -76.920218, 38.884419 ], [ -76.920326, 38.884335 ], [ -76.920455, 38.884235 ], [ -76.920583, 38.884135 ], [ -76.920712, 38.884035 ], [ -76.920733, 38.884018 ], [ -76.920819, 38.883951 ], [ -76.920905, 38.883868 ], [ -76.920969, 38.883834 ], [ -76.921077, 38.883734 ], [ -76.921206, 38.883650 ], [ -76.921334, 38.883550 ], [ -76.921463, 38.883450 ], [ -76.921484, 38.883433 ], [ -76.921570, 38.883350 ], [ -76.921635, 38.883316 ], [ -76.921678, 38.883283 ], [ -76.921785, 38.883199 ], [ -76.921935, 38.883066 ], [ -76.922085, 38.882949 ], [ -76.922235, 38.882832 ], [ -76.922321, 38.882765 ], [ -76.922429, 38.882682 ], [ -76.922772, 38.882431 ], [ -76.923115, 38.882147 ], [ -76.923974, 38.881496 ], [ -76.923995, 38.881462 ], [ -76.924038, 38.881429 ], [ -76.924210, 38.881329 ], [ -76.924295, 38.881295 ], [ -76.924360, 38.881279 ], [ -76.924446, 38.881245 ], [ -76.924553, 38.881228 ], [ -76.924660, 38.881212 ], [ -76.925948, 38.881078 ], [ -76.926463, 38.881011 ], [ -76.926613, 38.880995 ], [ -76.926827, 38.880961 ], [ -76.926956, 38.880944 ], [ -76.927042, 38.880944 ], [ -76.927149, 38.880928 ], [ -76.927578, 38.880878 ], [ -76.928136, 38.880811 ], [ -76.929166, 38.880694 ], [ -76.929317, 38.880677 ], [ -76.929317, 38.880761 ], [ -76.929252, 38.881112 ], [ -76.929231, 38.881145 ], [ -76.929145, 38.881529 ], [ -76.929123, 38.881629 ], [ -76.928995, 38.882297 ], [ -76.928973, 38.882381 ], [ -76.928844, 38.882915 ], [ -76.928844, 38.882982 ], [ -76.928694, 38.883650 ], [ -76.928673, 38.883751 ], [ -76.928544, 38.884335 ], [ -76.928394, 38.885003 ], [ -76.928244, 38.885688 ], [ -76.928093, 38.886356 ], [ -76.928093, 38.886423 ], [ -76.928072, 38.886440 ], [ -76.927943, 38.887041 ], [ -76.927900, 38.887275 ], [ -76.927793, 38.887709 ], [ -76.927686, 38.888227 ], [ -76.927643, 38.888394 ], [ -76.927643, 38.888461 ], [ -76.927600, 38.888644 ], [ -76.927493, 38.888611 ], [ -76.927342, 38.888561 ], [ -76.927214, 38.888511 ], [ -76.927106, 38.888461 ], [ -76.926999, 38.888411 ], [ -76.926935, 38.888377 ], [ -76.926870, 38.888344 ], [ -76.926827, 38.888327 ], [ -76.926720, 38.888260 ], [ -76.926613, 38.888194 ], [ -76.926484, 38.888110 ], [ -76.926312, 38.887993 ], [ -76.926076, 38.887826 ], [ -76.925712, 38.887592 ], [ -76.925690, 38.887576 ], [ -76.925540, 38.887475 ], [ -76.925497, 38.887442 ], [ -76.925197, 38.887258 ], [ -76.925089, 38.887175 ], [ -76.925025, 38.887141 ], [ -76.924896, 38.887058 ], [ -76.924682, 38.886958 ], [ -76.924553, 38.886891 ], [ -76.924424, 38.886824 ], [ -76.924295, 38.886774 ], [ -76.924253, 38.886740 ], [ -76.924188, 38.886724 ], [ -76.924081, 38.886690 ], [ -76.923974, 38.886640 ], [ -76.923802, 38.886590 ], [ -76.923673, 38.886557 ], [ -76.923480, 38.886507 ], [ -76.923416, 38.886490 ], [ -76.923308, 38.886473 ], [ -76.923180, 38.886456 ], [ -76.923137, 38.886456 ], [ -76.923029, 38.886440 ], [ -76.922879, 38.886440 ], [ -76.922622, 38.886423 ], [ -76.922257, 38.886423 ], [ -76.922214, 38.886423 ], [ -76.922042, 38.886406 ], [ -76.921935, 38.886406 ], [ -76.921828, 38.886406 ], [ -76.921742, 38.886390 ], [ -76.921592, 38.886373 ], [ -76.921248, 38.886323 ], [ -76.921141, 38.886306 ], [ -76.921077, 38.886289 ], [ -76.921012, 38.886289 ], [ -76.920927, 38.886273 ], [ -76.920733, 38.886223 ], [ -76.920455, 38.886173 ], [ -76.920154, 38.886089 ], [ -76.919811, 38.886006 ], [ -76.919532, 38.885939 ], [ -76.919425, 38.885922 ], [ -76.919060, 38.885839 ], [ -76.918695, 38.885738 ], [ -76.918566, 38.885705 ] ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1172, "y": 1566 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009507", "GEOID": "11001009507", "NAME": "95.07", "NAMELSAD": "Census Tract 95.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295290, "AWATER": 0, "INTPTLAT": "+38.9584945", "INTPTLON": "-076.9977787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.959025 ], [ -76.993711, 38.958858 ], [ -76.993282, 38.958524 ], [ -76.993239, 38.958508 ], [ -76.993067, 38.958374 ], [ -76.992874, 38.958224 ], [ -76.992745, 38.958107 ], [ -76.992638, 38.958024 ], [ -76.992531, 38.957940 ], [ -76.992230, 38.957707 ], [ -76.992145, 38.957640 ], [ -76.992102, 38.957607 ], [ -76.992059, 38.957573 ], [ -76.992037, 38.957557 ], [ -76.992016, 38.957540 ], [ -76.991951, 38.957507 ], [ -76.991909, 38.957457 ], [ -76.991844, 38.957423 ], [ -76.991844, 38.957407 ], [ -76.991630, 38.957240 ], [ -76.991673, 38.957240 ], [ -76.991737, 38.957223 ], [ -76.991801, 38.957223 ], [ -76.991823, 38.957206 ], [ -76.991909, 38.957206 ], [ -76.991930, 38.957206 ], [ -76.991973, 38.957206 ], [ -76.992445, 38.957256 ], [ -76.992488, 38.957256 ], [ -76.992681, 38.957273 ], [ -76.992853, 38.957273 ], [ -76.993325, 38.957273 ], [ -76.993904, 38.957273 ], [ -76.993904, 38.959025 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009508", "GEOID": "11001009508", "NAME": "95.08", "NAMELSAD": "Census Tract 95.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 962212, "AWATER": 0, "INTPTLAT": "+38.9536826", "INTPTLON": "-076.9985582" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.993904, 38.957273 ], [ -76.993325, 38.957273 ], [ -76.992853, 38.957273 ], [ -76.992681, 38.957273 ], [ -76.992488, 38.957256 ], [ -76.992445, 38.957256 ], [ -76.991973, 38.957206 ], [ -76.991930, 38.957206 ], [ -76.991909, 38.957206 ], [ -76.991823, 38.957206 ], [ -76.991801, 38.957223 ], [ -76.991737, 38.957223 ], [ -76.991673, 38.957240 ], [ -76.991630, 38.957240 ], [ -76.991522, 38.957156 ], [ -76.991458, 38.957106 ], [ -76.991179, 38.956889 ], [ -76.991072, 38.956806 ], [ -76.990986, 38.956739 ], [ -76.990921, 38.956689 ], [ -76.990836, 38.956639 ], [ -76.990492, 38.956355 ], [ -76.990428, 38.956305 ], [ -76.990342, 38.956239 ], [ -76.990278, 38.956172 ], [ -76.990192, 38.956105 ], [ -76.989999, 38.955955 ], [ -76.989784, 38.955788 ], [ -76.989570, 38.955621 ], [ -76.989462, 38.955538 ], [ -76.989377, 38.955488 ], [ -76.989291, 38.955421 ], [ -76.989269, 38.955404 ], [ -76.989012, 38.955187 ], [ -76.988754, 38.954987 ], [ -76.988454, 38.954753 ], [ -76.988175, 38.954537 ], [ -76.988132, 38.954503 ], [ -76.987982, 38.954386 ], [ -76.987960, 38.954353 ], [ -76.987832, 38.954270 ], [ -76.987724, 38.954169 ], [ -76.987660, 38.954136 ], [ -76.987188, 38.953769 ], [ -76.986566, 38.953268 ], [ -76.986136, 38.952951 ], [ -76.986008, 38.952851 ], [ -76.985857, 38.952734 ], [ -76.985750, 38.952651 ], [ -76.985772, 38.952634 ], [ -76.985793, 38.952634 ], [ -76.985857, 38.952618 ], [ -76.985900, 38.952601 ], [ -76.985922, 38.952601 ], [ -76.985986, 38.952601 ], [ -76.986115, 38.952618 ], [ -76.986222, 38.952634 ], [ -76.986287, 38.952634 ], [ -76.986394, 38.952668 ], [ -76.986480, 38.952684 ], [ -76.987016, 38.952868 ], [ -76.987402, 38.952968 ], [ -76.988196, 38.953202 ], [ -76.988389, 38.953235 ], [ -76.988475, 38.953168 ], [ -76.989141, 38.952517 ], [ -76.989205, 38.952451 ], [ -76.989226, 38.952434 ], [ -76.989248, 38.952401 ], [ -76.989441, 38.952401 ], [ -76.990106, 38.952401 ], [ -76.990557, 38.952401 ], [ -76.990814, 38.952401 ], [ -76.991522, 38.952401 ], [ -76.991587, 38.952401 ], [ -76.991673, 38.952401 ], [ -76.991866, 38.952401 ], [ -76.992123, 38.952401 ], [ -76.992617, 38.952384 ], [ -76.992702, 38.952384 ], [ -76.992810, 38.952384 ], [ -76.993067, 38.952367 ], [ -76.993260, 38.952367 ], [ -76.993818, 38.952351 ], [ -76.993904, 38.952351 ], [ -76.993904, 38.957273 ] ] ], [ [ [ -76.988883, 38.946260 ], [ -76.988990, 38.946276 ], [ -76.990106, 38.946276 ], [ -76.990235, 38.946276 ], [ -76.991308, 38.946276 ], [ -76.991951, 38.946276 ], [ -76.992509, 38.946276 ], [ -76.992638, 38.946276 ], [ -76.992767, 38.946276 ], [ -76.993260, 38.946276 ], [ -76.993861, 38.946276 ], [ -76.993904, 38.946276 ], [ -76.993904, 38.952351 ], [ -76.993818, 38.952351 ], [ -76.993260, 38.952367 ], [ -76.993067, 38.952367 ], [ -76.992810, 38.952384 ], [ -76.992702, 38.952384 ], [ -76.992617, 38.952384 ], [ -76.992123, 38.952401 ], [ -76.991866, 38.952401 ], [ -76.991673, 38.952401 ], [ -76.991587, 38.952401 ], [ -76.991522, 38.952401 ], [ -76.990814, 38.952401 ], [ -76.990557, 38.952401 ], [ -76.990106, 38.952401 ], [ -76.989441, 38.952401 ], [ -76.989248, 38.952401 ], [ -76.989269, 38.952384 ], [ -76.989291, 38.952367 ], [ -76.989312, 38.952351 ], [ -76.989355, 38.952284 ], [ -76.989355, 38.952267 ], [ -76.989377, 38.952234 ], [ -76.989419, 38.952150 ], [ -76.989441, 38.952117 ], [ -76.989462, 38.952050 ], [ -76.989484, 38.952017 ], [ -76.989505, 38.951967 ], [ -76.989505, 38.951900 ], [ -76.989527, 38.951867 ], [ -76.989527, 38.951833 ], [ -76.989527, 38.951800 ], [ -76.989527, 38.951767 ], [ -76.989527, 38.951633 ], [ -76.989527, 38.951550 ], [ -76.989527, 38.950949 ], [ -76.989527, 38.950265 ], [ -76.989527, 38.949430 ], [ -76.989527, 38.949197 ], [ -76.989527, 38.948779 ], [ -76.989527, 38.948713 ], [ -76.989527, 38.948679 ], [ -76.989505, 38.948629 ], [ -76.989505, 38.948579 ], [ -76.989441, 38.948296 ], [ -76.989377, 38.948062 ], [ -76.989355, 38.948029 ], [ -76.989355, 38.947978 ], [ -76.989183, 38.947394 ], [ -76.989162, 38.947294 ], [ -76.989141, 38.947177 ], [ -76.989076, 38.946994 ], [ -76.989012, 38.946760 ], [ -76.988947, 38.946527 ], [ -76.988947, 38.946493 ], [ -76.988926, 38.946443 ], [ -76.988883, 38.946260 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009504", "GEOID": "11001009504", "NAME": "95.04", "NAMELSAD": "Census Tract 95.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1033168, "AWATER": 0, "INTPTLAT": "+38.9409032", "INTPTLON": "-076.9931121" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.988840, 38.934627 ], [ -76.988926, 38.934610 ], [ -76.989226, 38.934610 ], [ -76.989634, 38.934577 ], [ -76.989934, 38.934560 ], [ -76.990235, 38.934543 ], [ -76.990600, 38.934543 ], [ -76.991158, 38.934510 ], [ -76.991243, 38.934510 ], [ -76.991673, 38.934493 ], [ -76.992102, 38.934460 ], [ -76.992681, 38.934443 ], [ -76.992788, 38.934426 ], [ -76.992874, 38.934426 ], [ -76.992939, 38.934426 ], [ -76.992981, 38.934426 ], [ -76.993024, 38.934410 ], [ -76.993067, 38.934410 ], [ -76.993239, 38.934310 ], [ -76.993325, 38.934260 ], [ -76.993368, 38.934260 ], [ -76.993539, 38.934176 ], [ -76.993904, 38.934026 ], [ -76.993904, 38.946276 ], [ -76.993861, 38.946276 ], [ -76.993260, 38.946276 ], [ -76.992767, 38.946276 ], [ -76.992638, 38.946276 ], [ -76.992509, 38.946276 ], [ -76.991951, 38.946276 ], [ -76.991308, 38.946276 ], [ -76.990235, 38.946276 ], [ -76.990106, 38.946276 ], [ -76.988990, 38.946276 ], [ -76.988883, 38.946260 ], [ -76.988862, 38.946126 ], [ -76.988797, 38.945993 ], [ -76.988711, 38.945692 ], [ -76.988604, 38.945342 ], [ -76.988583, 38.945258 ], [ -76.988454, 38.944741 ], [ -76.988325, 38.944324 ], [ -76.988325, 38.944290 ], [ -76.988325, 38.944274 ], [ -76.988304, 38.944240 ], [ -76.988304, 38.944190 ], [ -76.988304, 38.944140 ], [ -76.988304, 38.944090 ], [ -76.988304, 38.943689 ], [ -76.988304, 38.943256 ], [ -76.988304, 38.943155 ], [ -76.988304, 38.942872 ], [ -76.988304, 38.942788 ], [ -76.988304, 38.941787 ], [ -76.988304, 38.941453 ], [ -76.988304, 38.941203 ], [ -76.988304, 38.940952 ], [ -76.988304, 38.940802 ], [ -76.988304, 38.940719 ], [ -76.988304, 38.940619 ], [ -76.988304, 38.940519 ], [ -76.988304, 38.940468 ], [ -76.988304, 38.940268 ], [ -76.988282, 38.939734 ], [ -76.988282, 38.939651 ], [ -76.988304, 38.939367 ], [ -76.988304, 38.939066 ], [ -76.988304, 38.938983 ], [ -76.988304, 38.938416 ], [ -76.988304, 38.938315 ], [ -76.988304, 38.938249 ], [ -76.988304, 38.938215 ], [ -76.988432, 38.937481 ], [ -76.988497, 38.937247 ], [ -76.988540, 38.936880 ], [ -76.988583, 38.936747 ], [ -76.988647, 38.936329 ], [ -76.988668, 38.936162 ], [ -76.988711, 38.935929 ], [ -76.988776, 38.935645 ], [ -76.988840, 38.935261 ], [ -76.988840, 38.935194 ], [ -76.988862, 38.935111 ], [ -76.988862, 38.935027 ], [ -76.988862, 38.934944 ], [ -76.988840, 38.934627 ] ] ], [ [ [ -76.993904, 38.904343 ], [ -76.993904, 38.904326 ], [ -76.993754, 38.904276 ], [ -76.993132, 38.903992 ], [ -76.993539, 38.903725 ], [ -76.993582, 38.903691 ], [ -76.993754, 38.903574 ], [ -76.993861, 38.903491 ], [ -76.993904, 38.903474 ], [ -76.993904, 38.904343 ] ] ], [ [ [ -76.993904, 38.895826 ], [ -76.993754, 38.895876 ], [ -76.993110, 38.896143 ], [ -76.992638, 38.896327 ], [ -76.991522, 38.896778 ], [ -76.990235, 38.897312 ], [ -76.990235, 38.896110 ], [ -76.990235, 38.896043 ], [ -76.990235, 38.895642 ], [ -76.990235, 38.895425 ], [ -76.990235, 38.895074 ], [ -76.990235, 38.894774 ], [ -76.990235, 38.894523 ], [ -76.990235, 38.893722 ], [ -76.990235, 38.893571 ], [ -76.990235, 38.893037 ], [ -76.990235, 38.892803 ], [ -76.990235, 38.892336 ], [ -76.990235, 38.892018 ], [ -76.990235, 38.891935 ], [ -76.990235, 38.891133 ], [ -76.990235, 38.890966 ], [ -76.990235, 38.890365 ], [ -76.990943, 38.890365 ], [ -76.991436, 38.890365 ], [ -76.991522, 38.890365 ], [ -76.991522, 38.890114 ], [ -76.991522, 38.889797 ], [ -76.991801, 38.889797 ], [ -76.992638, 38.889797 ], [ -76.993089, 38.889797 ], [ -76.993754, 38.889797 ], [ -76.993904, 38.889797 ], [ -76.993904, 38.895826 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009503", "GEOID": "11001009503", "NAME": "95.03", "NAMELSAD": "Census Tract 95.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1423609, "AWATER": 0, "INTPTLAT": "+38.9434458", "INTPTLON": "-076.9845276" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.988389, 38.953235 ], [ -76.988196, 38.953202 ], [ -76.987402, 38.952968 ], [ -76.987016, 38.952868 ], [ -76.986480, 38.952684 ], [ -76.986394, 38.952668 ], [ -76.986287, 38.952634 ], [ -76.986222, 38.952634 ], [ -76.986115, 38.952618 ], [ -76.985986, 38.952601 ], [ -76.985922, 38.952601 ], [ -76.985900, 38.952601 ], [ -76.985857, 38.952618 ], [ -76.985793, 38.952634 ], [ -76.985772, 38.952634 ], [ -76.985750, 38.952651 ], [ -76.985514, 38.952467 ], [ -76.984742, 38.951850 ], [ -76.984677, 38.951817 ], [ -76.984098, 38.951366 ], [ -76.983004, 38.950482 ], [ -76.982982, 38.950465 ], [ -76.978927, 38.947261 ], [ -76.978390, 38.946844 ], [ -76.978219, 38.946710 ], [ -76.977768, 38.946376 ], [ -76.977918, 38.946260 ], [ -76.977961, 38.946243 ], [ -76.978047, 38.946176 ], [ -76.978154, 38.946076 ], [ -76.978197, 38.946043 ], [ -76.978283, 38.945959 ], [ -76.978304, 38.945926 ], [ -76.978390, 38.945842 ], [ -76.978433, 38.945792 ], [ -76.978476, 38.945742 ], [ -76.978519, 38.945675 ], [ -76.978562, 38.945642 ], [ -76.978583, 38.945609 ], [ -76.978626, 38.945559 ], [ -76.978626, 38.945525 ], [ -76.978669, 38.945492 ], [ -76.978691, 38.945475 ], [ -76.978712, 38.945425 ], [ -76.978798, 38.945325 ], [ -76.978841, 38.945258 ], [ -76.979463, 38.944440 ], [ -76.979613, 38.944224 ], [ -76.979678, 38.944140 ], [ -76.980171, 38.943473 ], [ -76.980236, 38.943406 ], [ -76.980386, 38.943206 ], [ -76.980386, 38.943189 ], [ -76.980386, 38.943139 ], [ -76.980386, 38.943089 ], [ -76.980386, 38.943039 ], [ -76.980386, 38.942989 ], [ -76.980386, 38.942938 ], [ -76.980364, 38.942855 ], [ -76.980364, 38.942755 ], [ -76.980321, 38.942304 ], [ -76.980278, 38.941787 ], [ -76.980257, 38.941520 ], [ -76.980236, 38.941103 ], [ -76.980193, 38.940719 ], [ -76.980193, 38.940635 ], [ -76.980128, 38.939734 ], [ -76.980150, 38.939567 ], [ -76.980085, 38.939317 ], [ -76.980085, 38.939283 ], [ -76.980021, 38.938299 ], [ -76.980000, 38.938215 ], [ -76.979849, 38.936162 ], [ -76.979806, 38.935745 ], [ -76.979806, 38.935612 ], [ -76.979806, 38.935478 ], [ -76.979785, 38.935244 ], [ -76.979764, 38.935077 ], [ -76.979871, 38.935077 ], [ -76.980815, 38.935027 ], [ -76.981330, 38.934994 ], [ -76.981416, 38.934994 ], [ -76.982875, 38.934927 ], [ -76.983025, 38.934911 ], [ -76.983604, 38.934894 ], [ -76.983626, 38.934877 ], [ -76.984591, 38.934844 ], [ -76.984828, 38.934827 ], [ -76.985300, 38.934810 ], [ -76.986480, 38.934744 ], [ -76.986587, 38.934744 ], [ -76.986995, 38.934727 ], [ -76.987467, 38.934694 ], [ -76.988840, 38.934627 ], [ -76.988862, 38.934944 ], [ -76.988862, 38.935027 ], [ -76.988862, 38.935111 ], [ -76.988840, 38.935194 ], [ -76.988840, 38.935261 ], [ -76.988776, 38.935645 ], [ -76.988711, 38.935929 ], [ -76.988668, 38.936162 ], [ -76.988647, 38.936329 ], [ -76.988583, 38.936747 ], [ -76.988540, 38.936880 ], [ -76.988497, 38.937247 ], [ -76.988432, 38.937481 ], [ -76.988304, 38.938215 ], [ -76.988304, 38.938249 ], [ -76.988304, 38.938315 ], [ -76.988304, 38.938416 ], [ -76.988304, 38.938983 ], [ -76.988304, 38.939066 ], [ -76.988304, 38.939367 ], [ -76.988282, 38.939651 ], [ -76.988282, 38.939734 ], [ -76.988304, 38.940268 ], [ -76.988304, 38.940468 ], [ -76.988304, 38.940519 ], [ -76.988304, 38.940619 ], [ -76.988304, 38.940719 ], [ -76.988304, 38.940802 ], [ -76.988304, 38.940952 ], [ -76.988304, 38.941203 ], [ -76.988304, 38.941453 ], [ -76.988304, 38.941787 ], [ -76.988304, 38.942788 ], [ -76.988304, 38.942872 ], [ -76.988304, 38.943155 ], [ -76.988304, 38.943256 ], [ -76.988304, 38.943689 ], [ -76.988304, 38.944090 ], [ -76.988304, 38.944140 ], [ -76.988304, 38.944190 ], [ -76.988304, 38.944240 ], [ -76.988325, 38.944274 ], [ -76.988325, 38.944290 ], [ -76.988325, 38.944324 ], [ -76.988454, 38.944741 ], [ -76.988583, 38.945258 ], [ -76.988604, 38.945342 ], [ -76.988711, 38.945692 ], [ -76.988797, 38.945993 ], [ -76.988862, 38.946126 ], [ -76.988883, 38.946260 ], [ -76.988926, 38.946443 ], [ -76.988947, 38.946493 ], [ -76.988947, 38.946527 ], [ -76.989012, 38.946760 ], [ -76.989076, 38.946994 ], [ -76.989141, 38.947177 ], [ -76.989162, 38.947294 ], [ -76.989183, 38.947394 ], [ -76.989355, 38.947978 ], [ -76.989355, 38.948029 ], [ -76.989377, 38.948062 ], [ -76.989441, 38.948296 ], [ -76.989505, 38.948579 ], [ -76.989505, 38.948629 ], [ -76.989527, 38.948679 ], [ -76.989527, 38.948713 ], [ -76.989527, 38.948779 ], [ -76.989527, 38.949197 ], [ -76.989527, 38.949430 ], [ -76.989527, 38.950265 ], [ -76.989527, 38.950949 ], [ -76.989527, 38.951550 ], [ -76.989527, 38.951633 ], [ -76.989527, 38.951767 ], [ -76.989527, 38.951800 ], [ -76.989527, 38.951833 ], [ -76.989527, 38.951867 ], [ -76.989505, 38.951900 ], [ -76.989505, 38.951967 ], [ -76.989484, 38.952017 ], [ -76.989462, 38.952050 ], [ -76.989441, 38.952117 ], [ -76.989419, 38.952150 ], [ -76.989377, 38.952234 ], [ -76.989355, 38.952267 ], [ -76.989355, 38.952284 ], [ -76.989312, 38.952351 ], [ -76.989291, 38.952367 ], [ -76.989269, 38.952384 ], [ -76.989248, 38.952401 ], [ -76.989226, 38.952434 ], [ -76.989205, 38.952451 ], [ -76.989141, 38.952517 ], [ -76.988475, 38.953168 ], [ -76.988389, 38.953235 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009301", "GEOID": "11001009301", "NAME": "93.01", "NAMELSAD": "Census Tract 93.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1109091, "AWATER": 0, "INTPTLAT": "+38.9307613", "INTPTLON": "-076.9864892" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.934026 ], [ -76.993539, 38.934176 ], [ -76.993368, 38.934260 ], [ -76.993325, 38.934260 ], [ -76.993239, 38.934310 ], [ -76.993067, 38.934410 ], [ -76.993024, 38.934410 ], [ -76.992981, 38.934426 ], [ -76.992939, 38.934426 ], [ -76.992874, 38.934426 ], [ -76.992788, 38.934426 ], [ -76.992681, 38.934443 ], [ -76.992102, 38.934460 ], [ -76.991673, 38.934493 ], [ -76.991243, 38.934510 ], [ -76.991158, 38.934510 ], [ -76.990600, 38.934543 ], [ -76.990235, 38.934543 ], [ -76.989934, 38.934560 ], [ -76.989634, 38.934577 ], [ -76.989226, 38.934610 ], [ -76.988926, 38.934610 ], [ -76.988840, 38.934627 ], [ -76.987467, 38.934694 ], [ -76.986995, 38.934727 ], [ -76.986587, 38.934744 ], [ -76.986480, 38.934744 ], [ -76.985300, 38.934810 ], [ -76.984828, 38.934827 ], [ -76.984591, 38.934844 ], [ -76.983626, 38.934877 ], [ -76.983604, 38.934894 ], [ -76.983025, 38.934911 ], [ -76.982875, 38.934927 ], [ -76.981416, 38.934994 ], [ -76.981330, 38.934994 ], [ -76.980815, 38.935027 ], [ -76.979871, 38.935077 ], [ -76.979764, 38.935077 ], [ -76.979721, 38.934510 ], [ -76.979678, 38.934093 ], [ -76.979613, 38.933108 ], [ -76.979592, 38.933024 ], [ -76.979570, 38.932674 ], [ -76.979549, 38.932207 ], [ -76.979527, 38.932123 ], [ -76.979463, 38.931222 ], [ -76.979463, 38.931138 ], [ -76.979442, 38.931038 ], [ -76.979420, 38.930688 ], [ -76.979377, 38.930153 ], [ -76.979377, 38.930070 ], [ -76.979334, 38.929669 ], [ -76.979291, 38.929018 ], [ -76.979270, 38.928952 ], [ -76.979270, 38.928718 ], [ -76.979227, 38.928250 ], [ -76.979227, 38.928167 ], [ -76.979184, 38.927833 ], [ -76.979141, 38.927750 ], [ -76.979120, 38.927700 ], [ -76.980536, 38.927015 ], [ -76.980729, 38.926932 ], [ -76.981351, 38.926615 ], [ -76.982059, 38.926297 ], [ -76.983218, 38.925713 ], [ -76.983819, 38.925463 ], [ -76.985621, 38.924611 ], [ -76.985664, 38.924695 ], [ -76.985686, 38.924745 ], [ -76.985707, 38.924795 ], [ -76.985707, 38.924845 ], [ -76.985729, 38.924895 ], [ -76.985729, 38.924945 ], [ -76.985729, 38.924962 ], [ -76.985750, 38.925062 ], [ -76.985750, 38.925212 ], [ -76.985793, 38.925696 ], [ -76.985879, 38.926681 ], [ -76.985879, 38.926765 ], [ -76.985879, 38.926865 ], [ -76.985922, 38.927232 ], [ -76.985965, 38.927750 ], [ -76.985965, 38.927833 ], [ -76.986136, 38.927816 ], [ -76.986480, 38.927816 ], [ -76.986823, 38.927783 ], [ -76.987252, 38.927766 ], [ -76.987703, 38.927750 ], [ -76.988282, 38.927716 ], [ -76.988497, 38.927700 ], [ -76.988969, 38.927683 ], [ -76.989398, 38.927666 ], [ -76.990600, 38.927599 ], [ -76.990707, 38.927599 ], [ -76.990836, 38.927583 ], [ -76.991630, 38.927549 ], [ -76.992059, 38.927533 ], [ -76.992338, 38.927516 ], [ -76.992424, 38.927516 ], [ -76.992917, 38.927483 ], [ -76.993454, 38.927466 ], [ -76.993690, 38.927449 ], [ -76.993904, 38.927449 ], [ -76.993904, 38.934026 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009400", "GEOID": "11001009400", "NAME": "94", "NAMELSAD": "Census Tract 94", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1582882, "AWATER": 0, "INTPTLAT": "+38.9368061", "INTPTLON": "-076.9742464" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.977725, 38.946326 ], [ -76.977253, 38.945959 ], [ -76.974485, 38.943823 ], [ -76.974463, 38.943806 ], [ -76.973906, 38.943372 ], [ -76.973841, 38.943339 ], [ -76.973820, 38.943306 ], [ -76.973755, 38.943272 ], [ -76.973712, 38.943222 ], [ -76.973627, 38.943155 ], [ -76.973348, 38.942938 ], [ -76.972876, 38.942588 ], [ -76.972404, 38.942204 ], [ -76.972146, 38.942004 ], [ -76.972082, 38.941954 ], [ -76.972039, 38.941920 ], [ -76.971974, 38.941870 ], [ -76.971931, 38.941837 ], [ -76.971846, 38.941770 ], [ -76.971760, 38.941703 ], [ -76.971674, 38.941637 ], [ -76.971588, 38.941570 ], [ -76.971502, 38.941503 ], [ -76.971438, 38.941453 ], [ -76.971352, 38.941386 ], [ -76.971266, 38.941320 ], [ -76.971180, 38.941253 ], [ -76.971095, 38.941186 ], [ -76.971030, 38.941136 ], [ -76.970966, 38.941086 ], [ -76.970901, 38.941036 ], [ -76.970859, 38.941003 ], [ -76.970837, 38.940986 ], [ -76.970773, 38.940919 ], [ -76.970687, 38.940869 ], [ -76.970623, 38.940819 ], [ -76.970558, 38.940769 ], [ -76.970494, 38.940719 ], [ -76.970429, 38.940669 ], [ -76.970344, 38.940602 ], [ -76.970258, 38.940535 ], [ -76.970193, 38.940468 ], [ -76.970108, 38.940418 ], [ -76.970022, 38.940352 ], [ -76.969957, 38.940285 ], [ -76.969872, 38.940235 ], [ -76.969786, 38.940168 ], [ -76.969743, 38.940135 ], [ -76.969721, 38.940101 ], [ -76.969678, 38.940068 ], [ -76.969635, 38.940035 ], [ -76.969593, 38.940018 ], [ -76.969593, 38.940001 ], [ -76.969163, 38.939667 ], [ -76.968756, 38.939367 ], [ -76.968284, 38.939000 ], [ -76.968241, 38.938966 ], [ -76.968155, 38.938900 ], [ -76.968133, 38.938883 ], [ -76.968069, 38.938833 ], [ -76.967812, 38.938616 ], [ -76.966975, 38.937965 ], [ -76.966846, 38.937865 ], [ -76.966825, 38.937848 ], [ -76.966717, 38.937765 ], [ -76.966181, 38.937347 ], [ -76.965880, 38.937097 ], [ -76.965795, 38.937047 ], [ -76.965709, 38.936980 ], [ -76.965644, 38.936913 ], [ -76.965601, 38.936880 ], [ -76.965387, 38.936730 ], [ -76.965172, 38.936546 ], [ -76.965129, 38.936513 ], [ -76.965065, 38.936479 ], [ -76.964979, 38.936396 ], [ -76.964872, 38.936313 ], [ -76.964829, 38.936279 ], [ -76.964722, 38.936212 ], [ -76.964636, 38.936129 ], [ -76.964464, 38.936012 ], [ -76.964400, 38.935945 ], [ -76.964378, 38.935929 ], [ -76.964293, 38.935879 ], [ -76.963992, 38.935628 ], [ -76.963885, 38.935545 ], [ -76.963627, 38.935344 ], [ -76.963563, 38.935294 ], [ -76.963477, 38.935228 ], [ -76.963434, 38.935194 ], [ -76.963692, 38.935077 ], [ -76.963735, 38.935044 ], [ -76.963799, 38.935027 ], [ -76.963863, 38.934994 ], [ -76.965816, 38.934093 ], [ -76.966074, 38.933976 ], [ -76.968005, 38.932991 ], [ -76.969163, 38.932490 ], [ -76.970773, 38.931706 ], [ -76.971288, 38.931455 ], [ -76.971567, 38.931305 ], [ -76.972146, 38.931055 ], [ -76.973691, 38.930320 ], [ -76.974163, 38.930087 ], [ -76.974313, 38.930020 ], [ -76.974850, 38.929769 ], [ -76.976223, 38.929102 ], [ -76.976373, 38.929035 ], [ -76.978176, 38.928184 ], [ -76.978476, 38.928017 ], [ -76.978798, 38.927850 ], [ -76.979120, 38.927700 ], [ -76.979141, 38.927750 ], [ -76.979184, 38.927833 ], [ -76.979227, 38.928167 ], [ -76.979227, 38.928250 ], [ -76.979270, 38.928718 ], [ -76.979270, 38.928952 ], [ -76.979291, 38.929018 ], [ -76.979334, 38.929669 ], [ -76.979377, 38.930070 ], [ -76.979377, 38.930153 ], [ -76.979420, 38.930688 ], [ -76.979442, 38.931038 ], [ -76.979463, 38.931138 ], [ -76.979463, 38.931222 ], [ -76.979527, 38.932123 ], [ -76.979549, 38.932207 ], [ -76.979570, 38.932674 ], [ -76.979592, 38.933024 ], [ -76.979613, 38.933108 ], [ -76.979678, 38.934093 ], [ -76.979721, 38.934510 ], [ -76.979764, 38.935077 ], [ -76.979785, 38.935244 ], [ -76.979806, 38.935478 ], [ -76.979806, 38.935612 ], [ -76.979806, 38.935745 ], [ -76.979849, 38.936162 ], [ -76.980000, 38.938215 ], [ -76.980021, 38.938299 ], [ -76.980085, 38.939283 ], [ -76.980085, 38.939317 ], [ -76.980150, 38.939567 ], [ -76.980128, 38.939734 ], [ -76.980193, 38.940635 ], [ -76.980193, 38.940719 ], [ -76.980236, 38.941103 ], [ -76.980257, 38.941520 ], [ -76.980278, 38.941787 ], [ -76.980321, 38.942304 ], [ -76.980364, 38.942755 ], [ -76.980364, 38.942855 ], [ -76.980386, 38.942938 ], [ -76.980386, 38.942989 ], [ -76.980386, 38.943039 ], [ -76.980386, 38.943089 ], [ -76.980386, 38.943139 ], [ -76.980386, 38.943189 ], [ -76.980386, 38.943206 ], [ -76.980236, 38.943406 ], [ -76.980171, 38.943473 ], [ -76.979678, 38.944140 ], [ -76.979613, 38.944224 ], [ -76.979463, 38.944440 ], [ -76.978841, 38.945258 ], [ -76.978798, 38.945325 ], [ -76.978712, 38.945425 ], [ -76.978691, 38.945475 ], [ -76.978669, 38.945492 ], [ -76.978626, 38.945525 ], [ -76.978626, 38.945559 ], [ -76.978583, 38.945609 ], [ -76.978562, 38.945642 ], [ -76.978519, 38.945675 ], [ -76.978476, 38.945742 ], [ -76.978433, 38.945792 ], [ -76.978390, 38.945842 ], [ -76.978304, 38.945926 ], [ -76.978283, 38.945959 ], [ -76.978197, 38.946043 ], [ -76.978154, 38.946076 ], [ -76.978047, 38.946176 ], [ -76.977961, 38.946243 ], [ -76.977918, 38.946260 ], [ -76.977768, 38.946376 ], [ -76.977725, 38.946326 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009302", "GEOID": "11001009302", "NAME": "93.02", "NAMELSAD": "Census Tract 93.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 391905, "AWATER": 0, "INTPTLAT": "+38.9251636", "INTPTLON": "-076.9907773" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.985965, 38.927833 ], [ -76.985965, 38.927750 ], [ -76.985922, 38.927232 ], [ -76.985879, 38.926865 ], [ -76.985879, 38.926765 ], [ -76.985879, 38.926681 ], [ -76.985793, 38.925696 ], [ -76.985750, 38.925212 ], [ -76.985750, 38.925062 ], [ -76.985729, 38.924962 ], [ -76.985729, 38.924945 ], [ -76.985729, 38.924895 ], [ -76.985707, 38.924845 ], [ -76.985707, 38.924795 ], [ -76.985686, 38.924745 ], [ -76.985664, 38.924695 ], [ -76.985621, 38.924611 ], [ -76.986458, 38.924344 ], [ -76.988003, 38.923860 ], [ -76.989934, 38.923209 ], [ -76.990192, 38.923126 ], [ -76.992424, 38.922491 ], [ -76.993883, 38.922041 ], [ -76.993904, 38.922041 ], [ -76.993904, 38.927449 ], [ -76.993690, 38.927449 ], [ -76.993454, 38.927466 ], [ -76.992917, 38.927483 ], [ -76.992424, 38.927516 ], [ -76.992338, 38.927516 ], [ -76.992059, 38.927533 ], [ -76.991630, 38.927549 ], [ -76.990836, 38.927583 ], [ -76.990707, 38.927599 ], [ -76.990600, 38.927599 ], [ -76.989398, 38.927666 ], [ -76.988969, 38.927683 ], [ -76.988497, 38.927700 ], [ -76.988282, 38.927716 ], [ -76.987703, 38.927750 ], [ -76.987252, 38.927766 ], [ -76.986823, 38.927783 ], [ -76.986480, 38.927816 ], [ -76.986136, 38.927816 ], [ -76.985965, 38.927833 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009102", "GEOID": "11001009102", "NAME": "91.02", "NAMELSAD": "Census Tract 91.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1816287, "AWATER": 0, "INTPTLAT": "+38.9187926", "INTPTLON": "-076.9888946" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.979120, 38.927700 ], [ -76.979098, 38.927650 ], [ -76.979055, 38.927599 ], [ -76.979012, 38.927549 ], [ -76.978991, 38.927483 ], [ -76.978991, 38.927433 ], [ -76.978991, 38.927282 ], [ -76.978991, 38.926798 ], [ -76.978991, 38.926731 ], [ -76.978991, 38.926648 ], [ -76.978991, 38.925580 ], [ -76.978991, 38.925029 ], [ -76.978991, 38.924511 ], [ -76.978991, 38.924428 ], [ -76.978991, 38.924094 ], [ -76.978991, 38.923860 ], [ -76.978991, 38.923443 ], [ -76.978991, 38.923343 ], [ -76.978991, 38.923142 ], [ -76.978991, 38.922909 ], [ -76.978991, 38.922775 ], [ -76.978991, 38.922625 ], [ -76.978991, 38.922591 ], [ -76.978991, 38.922358 ], [ -76.978991, 38.922291 ], [ -76.978991, 38.921289 ], [ -76.978991, 38.920521 ], [ -76.978991, 38.920304 ], [ -76.978991, 38.920221 ], [ -76.978991, 38.920037 ], [ -76.978991, 38.920021 ], [ -76.978991, 38.919887 ], [ -76.978905, 38.919820 ], [ -76.978862, 38.919770 ], [ -76.978798, 38.919720 ], [ -76.978755, 38.919653 ], [ -76.978712, 38.919603 ], [ -76.978669, 38.919553 ], [ -76.978605, 38.919453 ], [ -76.978583, 38.919403 ], [ -76.978562, 38.919353 ], [ -76.978540, 38.919319 ], [ -76.978519, 38.919269 ], [ -76.978519, 38.919236 ], [ -76.978498, 38.919186 ], [ -76.978455, 38.919086 ], [ -76.978455, 38.919069 ], [ -76.978433, 38.919002 ], [ -76.978369, 38.918601 ], [ -76.978369, 38.918535 ], [ -76.978283, 38.918101 ], [ -76.978261, 38.917950 ], [ -76.978197, 38.917550 ], [ -76.978154, 38.917283 ], [ -76.978540, 38.917266 ], [ -76.978927, 38.917266 ], [ -76.979313, 38.917249 ], [ -76.979721, 38.917249 ], [ -76.980171, 38.917232 ], [ -76.980600, 38.917199 ], [ -76.980793, 38.917182 ], [ -76.981566, 38.916949 ], [ -76.982338, 38.916682 ], [ -76.982639, 38.916581 ], [ -76.985214, 38.915663 ], [ -76.987939, 38.914745 ], [ -76.989141, 38.914327 ], [ -76.990492, 38.913877 ], [ -76.990728, 38.913710 ], [ -76.991029, 38.913593 ], [ -76.991565, 38.913409 ], [ -76.991737, 38.913359 ], [ -76.991887, 38.913309 ], [ -76.991973, 38.913276 ], [ -76.992102, 38.913226 ], [ -76.992381, 38.913125 ], [ -76.992617, 38.913042 ], [ -76.992660, 38.913025 ], [ -76.992767, 38.912992 ], [ -76.992874, 38.912958 ], [ -76.993711, 38.912658 ], [ -76.993904, 38.912591 ], [ -76.993904, 38.922041 ], [ -76.993883, 38.922041 ], [ -76.992424, 38.922491 ], [ -76.990192, 38.923126 ], [ -76.989934, 38.923209 ], [ -76.988003, 38.923860 ], [ -76.986458, 38.924344 ], [ -76.985621, 38.924611 ], [ -76.983819, 38.925463 ], [ -76.983218, 38.925713 ], [ -76.982059, 38.926297 ], [ -76.981351, 38.926615 ], [ -76.980729, 38.926932 ], [ -76.980536, 38.927015 ], [ -76.979120, 38.927700 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008803", "GEOID": "11001008803", "NAME": "88.03", "NAMELSAD": "Census Tract 88.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1168294, "AWATER": 0, "INTPTLAT": "+38.9104603", "INTPTLON": "-076.9913622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.912591 ], [ -76.993711, 38.912658 ], [ -76.992874, 38.912958 ], [ -76.992767, 38.912992 ], [ -76.992660, 38.913025 ], [ -76.992617, 38.913042 ], [ -76.992381, 38.913125 ], [ -76.992102, 38.913226 ], [ -76.991973, 38.913276 ], [ -76.991887, 38.913309 ], [ -76.991737, 38.913359 ], [ -76.991565, 38.913409 ], [ -76.991029, 38.913593 ], [ -76.990728, 38.913710 ], [ -76.990492, 38.913877 ], [ -76.989141, 38.914327 ], [ -76.987939, 38.914745 ], [ -76.985214, 38.915663 ], [ -76.982639, 38.916581 ], [ -76.982338, 38.916682 ], [ -76.981566, 38.916949 ], [ -76.980793, 38.917182 ], [ -76.980600, 38.917199 ], [ -76.980171, 38.917232 ], [ -76.979721, 38.917249 ], [ -76.979313, 38.917249 ], [ -76.978927, 38.917266 ], [ -76.978540, 38.917266 ], [ -76.978154, 38.917283 ], [ -76.978261, 38.917166 ], [ -76.978390, 38.916999 ], [ -76.978433, 38.916965 ], [ -76.978455, 38.916949 ], [ -76.978884, 38.916565 ], [ -76.979163, 38.916331 ], [ -76.979249, 38.916264 ], [ -76.979570, 38.915964 ], [ -76.979656, 38.915880 ], [ -76.980171, 38.915429 ], [ -76.980278, 38.915346 ], [ -76.981094, 38.914611 ], [ -76.981394, 38.914327 ], [ -76.981738, 38.914044 ], [ -76.982059, 38.913760 ], [ -76.982210, 38.913626 ], [ -76.982274, 38.913559 ], [ -76.982639, 38.913226 ], [ -76.982982, 38.912942 ], [ -76.983325, 38.912641 ], [ -76.983411, 38.912541 ], [ -76.983497, 38.912491 ], [ -76.983647, 38.912341 ], [ -76.984141, 38.911907 ], [ -76.984720, 38.911389 ], [ -76.984806, 38.911305 ], [ -76.985407, 38.910771 ], [ -76.985471, 38.910721 ], [ -76.985664, 38.910571 ], [ -76.985772, 38.910471 ], [ -76.985857, 38.910370 ], [ -76.985922, 38.910337 ], [ -76.986008, 38.910254 ], [ -76.986115, 38.910170 ], [ -76.986222, 38.910070 ], [ -76.986244, 38.910053 ], [ -76.986287, 38.910020 ], [ -76.986394, 38.909936 ], [ -76.986458, 38.909870 ], [ -76.986866, 38.909502 ], [ -76.986952, 38.909452 ], [ -76.987467, 38.908985 ], [ -76.988025, 38.908467 ], [ -76.988196, 38.908333 ], [ -76.988282, 38.908267 ], [ -76.988347, 38.908216 ], [ -76.988540, 38.908016 ], [ -76.988819, 38.907782 ], [ -76.989119, 38.907515 ], [ -76.989205, 38.907448 ], [ -76.989377, 38.907281 ], [ -76.989570, 38.907114 ], [ -76.989892, 38.906831 ], [ -76.990042, 38.906697 ], [ -76.990321, 38.906447 ], [ -76.990385, 38.906380 ], [ -76.990879, 38.905962 ], [ -76.991308, 38.905578 ], [ -76.991801, 38.905144 ], [ -76.992230, 38.904777 ], [ -76.992488, 38.904526 ], [ -76.992810, 38.904259 ], [ -76.993132, 38.903992 ], [ -76.993754, 38.904276 ], [ -76.993904, 38.904326 ], [ -76.993904, 38.904343 ], [ -76.993904, 38.912591 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008804", "GEOID": "11001008804", "NAME": "88.04", "NAMELSAD": "Census Tract 88.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 778052, "AWATER": 0, "INTPTLAT": "+38.9102408", "INTPTLON": "-076.9812669" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.981008, 38.904042 ], [ -76.981695, 38.904309 ], [ -76.981952, 38.904409 ], [ -76.982231, 38.904526 ], [ -76.982489, 38.904626 ], [ -76.982381, 38.904810 ], [ -76.982274, 38.904977 ], [ -76.982424, 38.905044 ], [ -76.982725, 38.905161 ], [ -76.983175, 38.905361 ], [ -76.983562, 38.905528 ], [ -76.984012, 38.905712 ], [ -76.984377, 38.905879 ], [ -76.984978, 38.906129 ], [ -76.985300, 38.906263 ], [ -76.986008, 38.906563 ], [ -76.987081, 38.907031 ], [ -76.987166, 38.907064 ], [ -76.987445, 38.907181 ], [ -76.987638, 38.907265 ], [ -76.987939, 38.907382 ], [ -76.988239, 38.907515 ], [ -76.988733, 38.907732 ], [ -76.988819, 38.907782 ], [ -76.988540, 38.908016 ], [ -76.988347, 38.908216 ], [ -76.988282, 38.908267 ], [ -76.988196, 38.908333 ], [ -76.988025, 38.908467 ], [ -76.987467, 38.908985 ], [ -76.986952, 38.909452 ], [ -76.986866, 38.909502 ], [ -76.986458, 38.909870 ], [ -76.986394, 38.909936 ], [ -76.986287, 38.910020 ], [ -76.986244, 38.910053 ], [ -76.986222, 38.910070 ], [ -76.986115, 38.910170 ], [ -76.986008, 38.910254 ], [ -76.985922, 38.910337 ], [ -76.985857, 38.910370 ], [ -76.985772, 38.910471 ], [ -76.985664, 38.910571 ], [ -76.985471, 38.910721 ], [ -76.985407, 38.910771 ], [ -76.984806, 38.911305 ], [ -76.984720, 38.911389 ], [ -76.984141, 38.911907 ], [ -76.983647, 38.912341 ], [ -76.983497, 38.912491 ], [ -76.983411, 38.912541 ], [ -76.983325, 38.912641 ], [ -76.982982, 38.912942 ], [ -76.982639, 38.913226 ], [ -76.982274, 38.913559 ], [ -76.982210, 38.913626 ], [ -76.982059, 38.913760 ], [ -76.981738, 38.914044 ], [ -76.981394, 38.914327 ], [ -76.981094, 38.914611 ], [ -76.980278, 38.915346 ], [ -76.980171, 38.915429 ], [ -76.979656, 38.915880 ], [ -76.979570, 38.915964 ], [ -76.979249, 38.916264 ], [ -76.979163, 38.916331 ], [ -76.978884, 38.916565 ], [ -76.978455, 38.916949 ], [ -76.978433, 38.916965 ], [ -76.978390, 38.916999 ], [ -76.978261, 38.917166 ], [ -76.978154, 38.917283 ], [ -76.978219, 38.917166 ], [ -76.978304, 38.916915 ], [ -76.977854, 38.916581 ], [ -76.977596, 38.916348 ], [ -76.977060, 38.915830 ], [ -76.976480, 38.915262 ], [ -76.976373, 38.915162 ], [ -76.975515, 38.914361 ], [ -76.975300, 38.914144 ], [ -76.975129, 38.914127 ], [ -76.975708, 38.913443 ], [ -76.976330, 38.912641 ], [ -76.976802, 38.911189 ], [ -76.977081, 38.910337 ], [ -76.977253, 38.909886 ], [ -76.977360, 38.909586 ], [ -76.977446, 38.909419 ], [ -76.977596, 38.909202 ], [ -76.978841, 38.907265 ], [ -76.978884, 38.907198 ], [ -76.979077, 38.906881 ], [ -76.979163, 38.906730 ], [ -76.979764, 38.905795 ], [ -76.979849, 38.905678 ], [ -76.980021, 38.905378 ], [ -76.980257, 38.905011 ], [ -76.980643, 38.904426 ], [ -76.980922, 38.904009 ], [ -76.981008, 38.904042 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008410", "GEOID": "11001008410", "NAME": "84.10", "NAMELSAD": "Census Tract 84.10", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 219939, "AWATER": 0, "INTPTLAT": "+38.9015543", "INTPTLON": "-076.9911234" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.984055, 38.900218 ], [ -76.984849, 38.900201 ], [ -76.985493, 38.900201 ], [ -76.985879, 38.900201 ], [ -76.986394, 38.900201 ], [ -76.987145, 38.900201 ], [ -76.987402, 38.900201 ], [ -76.988304, 38.900201 ], [ -76.988432, 38.900201 ], [ -76.989141, 38.900201 ], [ -76.990235, 38.900201 ], [ -76.991522, 38.900201 ], [ -76.992638, 38.900201 ], [ -76.993754, 38.900201 ], [ -76.993904, 38.900201 ], [ -76.993904, 38.903474 ], [ -76.993861, 38.903491 ], [ -76.993754, 38.903574 ], [ -76.993582, 38.903691 ], [ -76.993539, 38.903725 ], [ -76.993132, 38.903992 ], [ -76.992896, 38.903892 ], [ -76.992638, 38.903792 ], [ -76.992252, 38.903625 ], [ -76.991522, 38.903324 ], [ -76.990643, 38.902940 ], [ -76.990170, 38.902740 ], [ -76.990063, 38.902689 ], [ -76.989698, 38.902539 ], [ -76.989591, 38.902489 ], [ -76.989248, 38.902355 ], [ -76.988990, 38.902239 ], [ -76.988690, 38.902105 ], [ -76.988282, 38.901938 ], [ -76.987402, 38.901571 ], [ -76.986802, 38.901303 ], [ -76.986651, 38.901253 ], [ -76.985922, 38.900936 ], [ -76.985729, 38.900853 ], [ -76.985664, 38.900819 ], [ -76.985493, 38.900786 ], [ -76.985428, 38.900752 ], [ -76.985214, 38.900669 ], [ -76.985171, 38.900652 ], [ -76.984720, 38.900452 ], [ -76.984677, 38.900435 ], [ -76.984463, 38.900335 ], [ -76.984377, 38.900285 ], [ -76.984270, 38.900251 ], [ -76.984055, 38.900218 ] ] ], [ [ [ -76.980922, 38.904009 ], [ -76.981094, 38.903725 ], [ -76.981781, 38.902706 ], [ -76.982360, 38.901771 ], [ -76.982939, 38.900836 ], [ -76.982961, 38.900819 ], [ -76.983004, 38.900719 ], [ -76.983261, 38.900352 ], [ -76.983411, 38.900185 ], [ -76.983798, 38.900201 ], [ -76.984055, 38.900218 ], [ -76.984270, 38.900251 ], [ -76.984377, 38.900285 ], [ -76.984463, 38.900335 ], [ -76.984677, 38.900435 ], [ -76.984720, 38.900452 ], [ -76.985171, 38.900652 ], [ -76.985214, 38.900669 ], [ -76.985428, 38.900752 ], [ -76.985493, 38.900786 ], [ -76.985664, 38.900819 ], [ -76.985729, 38.900853 ], [ -76.985922, 38.900936 ], [ -76.986651, 38.901253 ], [ -76.986802, 38.901303 ], [ -76.987402, 38.901571 ], [ -76.988282, 38.901938 ], [ -76.988690, 38.902105 ], [ -76.988990, 38.902239 ], [ -76.989248, 38.902355 ], [ -76.989591, 38.902489 ], [ -76.989698, 38.902539 ], [ -76.990063, 38.902689 ], [ -76.990170, 38.902740 ], [ -76.990643, 38.902940 ], [ -76.991522, 38.903324 ], [ -76.992252, 38.903625 ], [ -76.992638, 38.903792 ], [ -76.992896, 38.903892 ], [ -76.993132, 38.903992 ], [ -76.992810, 38.904259 ], [ -76.992488, 38.904526 ], [ -76.992230, 38.904777 ], [ -76.991801, 38.905144 ], [ -76.991308, 38.905578 ], [ -76.990879, 38.905962 ], [ -76.990385, 38.906380 ], [ -76.990321, 38.906447 ], [ -76.990042, 38.906697 ], [ -76.989892, 38.906831 ], [ -76.989570, 38.907114 ], [ -76.989377, 38.907281 ], [ -76.989205, 38.907448 ], [ -76.989119, 38.907515 ], [ -76.988819, 38.907782 ], [ -76.988733, 38.907732 ], [ -76.988239, 38.907515 ], [ -76.987939, 38.907382 ], [ -76.987638, 38.907265 ], [ -76.987445, 38.907181 ], [ -76.987166, 38.907064 ], [ -76.987081, 38.907031 ], [ -76.986008, 38.906563 ], [ -76.985300, 38.906263 ], [ -76.984978, 38.906129 ], [ -76.984377, 38.905879 ], [ -76.984012, 38.905712 ], [ -76.983562, 38.905528 ], [ -76.983175, 38.905361 ], [ -76.982725, 38.905161 ], [ -76.982424, 38.905044 ], [ -76.982274, 38.904977 ], [ -76.982381, 38.904810 ], [ -76.982489, 38.904626 ], [ -76.982231, 38.904526 ], [ -76.981952, 38.904409 ], [ -76.981695, 38.904309 ], [ -76.981008, 38.904042 ], [ -76.980922, 38.904009 ] ] ], [ [ [ -76.983240, 38.900185 ], [ -76.983497, 38.900051 ], [ -76.983583, 38.900001 ], [ -76.983626, 38.900001 ], [ -76.984055, 38.899801 ], [ -76.985257, 38.899333 ], [ -76.985493, 38.899233 ], [ -76.986136, 38.898982 ], [ -76.986351, 38.898899 ], [ -76.986501, 38.898832 ], [ -76.987038, 38.898615 ], [ -76.988304, 38.898097 ], [ -76.990235, 38.897312 ], [ -76.991522, 38.896778 ], [ -76.992638, 38.896327 ], [ -76.993110, 38.896143 ], [ -76.993754, 38.895876 ], [ -76.993904, 38.895826 ], [ -76.993904, 38.900201 ], [ -76.993754, 38.900201 ], [ -76.992638, 38.900201 ], [ -76.991522, 38.900201 ], [ -76.990235, 38.900201 ], [ -76.989141, 38.900201 ], [ -76.988432, 38.900201 ], [ -76.988304, 38.900201 ], [ -76.987402, 38.900201 ], [ -76.987145, 38.900201 ], [ -76.986394, 38.900201 ], [ -76.985879, 38.900201 ], [ -76.985493, 38.900201 ], [ -76.984849, 38.900201 ], [ -76.984055, 38.900218 ], [ -76.983798, 38.900201 ], [ -76.983411, 38.900185 ], [ -76.983240, 38.900185 ] ] ], [ [ [ -76.990235, 38.893571 ], [ -76.990235, 38.893722 ], [ -76.990235, 38.894523 ], [ -76.990235, 38.894774 ], [ -76.990235, 38.895074 ], [ -76.990235, 38.895425 ], [ -76.990235, 38.895642 ], [ -76.990235, 38.896043 ], [ -76.990235, 38.896110 ], [ -76.990235, 38.897312 ], [ -76.988304, 38.898097 ], [ -76.987038, 38.898615 ], [ -76.986501, 38.898832 ], [ -76.986351, 38.898899 ], [ -76.986136, 38.898982 ], [ -76.985493, 38.899233 ], [ -76.985257, 38.899333 ], [ -76.984055, 38.899801 ], [ -76.983626, 38.900001 ], [ -76.983583, 38.900001 ], [ -76.983604, 38.899650 ], [ -76.983647, 38.898849 ], [ -76.983647, 38.898431 ], [ -76.983647, 38.897980 ], [ -76.983647, 38.897696 ], [ -76.983647, 38.897496 ], [ -76.983647, 38.897329 ], [ -76.983647, 38.897162 ], [ -76.983647, 38.896744 ], [ -76.983647, 38.896661 ], [ -76.983647, 38.896294 ], [ -76.983647, 38.896110 ], [ -76.983647, 38.895459 ], [ -76.983647, 38.895392 ], [ -76.983647, 38.894774 ], [ -76.983647, 38.894707 ], [ -76.983647, 38.894423 ], [ -76.983647, 38.893989 ], [ -76.983647, 38.893638 ], [ -76.983647, 38.893621 ], [ -76.983647, 38.893505 ], [ -76.983669, 38.893521 ], [ -76.983755, 38.893555 ], [ -76.983926, 38.893571 ], [ -76.984205, 38.893571 ], [ -76.984570, 38.893571 ], [ -76.985493, 38.893571 ], [ -76.986372, 38.893571 ], [ -76.986480, 38.893571 ], [ -76.986887, 38.893571 ], [ -76.987102, 38.893571 ], [ -76.988304, 38.893571 ], [ -76.988432, 38.893571 ], [ -76.988518, 38.893571 ], [ -76.989248, 38.893571 ], [ -76.990235, 38.893571 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008002", "GEOID": "11001008002", "NAME": "80.02", "NAMELSAD": "Census Tract 80.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 578961, "AWATER": 0, "INTPTLAT": "+38.8915403", "INTPTLON": "-076.9827594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.974034, 38.892035 ], [ -76.974013, 38.892002 ], [ -76.973970, 38.891851 ], [ -76.973948, 38.891784 ], [ -76.973927, 38.891684 ], [ -76.973906, 38.891517 ], [ -76.973884, 38.891367 ], [ -76.973863, 38.891283 ], [ -76.973863, 38.891183 ], [ -76.973841, 38.891100 ], [ -76.973841, 38.890949 ], [ -76.973820, 38.890582 ], [ -76.973841, 38.890515 ], [ -76.973863, 38.890482 ], [ -76.973884, 38.890448 ], [ -76.973884, 38.890415 ], [ -76.973906, 38.890381 ], [ -76.973927, 38.890365 ], [ -76.973948, 38.890331 ], [ -76.973948, 38.890315 ], [ -76.973970, 38.890298 ], [ -76.974013, 38.890281 ], [ -76.974034, 38.890248 ], [ -76.974099, 38.890214 ], [ -76.974185, 38.890181 ], [ -76.974206, 38.890164 ], [ -76.974270, 38.890131 ], [ -76.974292, 38.890131 ], [ -76.974335, 38.890114 ], [ -76.974378, 38.890114 ], [ -76.974442, 38.890114 ], [ -76.974635, 38.890114 ], [ -76.974850, 38.890114 ], [ -76.975365, 38.890114 ], [ -76.976244, 38.890114 ], [ -76.976266, 38.890114 ], [ -76.976309, 38.890114 ], [ -76.976330, 38.890098 ], [ -76.976395, 38.890081 ], [ -76.976459, 38.890064 ], [ -76.976502, 38.890031 ], [ -76.976545, 38.890014 ], [ -76.976609, 38.889981 ], [ -76.976652, 38.889947 ], [ -76.976717, 38.889914 ], [ -76.976738, 38.889914 ], [ -76.976802, 38.889897 ], [ -76.976845, 38.889880 ], [ -76.976867, 38.889880 ], [ -76.976910, 38.889864 ], [ -76.976953, 38.889864 ], [ -76.976995, 38.889864 ], [ -76.977253, 38.889797 ], [ -76.978540, 38.889797 ], [ -76.978991, 38.889797 ], [ -76.980751, 38.889797 ], [ -76.982210, 38.889797 ], [ -76.982982, 38.889797 ], [ -76.983325, 38.889797 ], [ -76.983647, 38.889797 ], [ -76.985493, 38.889797 ], [ -76.985621, 38.889797 ], [ -76.987424, 38.889797 ], [ -76.987875, 38.889797 ], [ -76.988304, 38.889797 ], [ -76.988325, 38.889764 ], [ -76.988325, 38.889697 ], [ -76.991522, 38.889697 ], [ -76.991522, 38.889797 ], [ -76.991522, 38.890114 ], [ -76.991522, 38.890365 ], [ -76.991436, 38.890365 ], [ -76.990943, 38.890365 ], [ -76.990235, 38.890365 ], [ -76.990235, 38.890966 ], [ -76.990235, 38.891133 ], [ -76.990235, 38.891935 ], [ -76.990235, 38.892018 ], [ -76.990235, 38.892336 ], [ -76.990235, 38.892803 ], [ -76.990235, 38.893037 ], [ -76.990235, 38.893571 ], [ -76.989248, 38.893571 ], [ -76.988518, 38.893571 ], [ -76.988432, 38.893571 ], [ -76.988304, 38.893571 ], [ -76.987102, 38.893571 ], [ -76.986887, 38.893571 ], [ -76.986480, 38.893571 ], [ -76.986372, 38.893571 ], [ -76.985493, 38.893571 ], [ -76.984570, 38.893571 ], [ -76.984205, 38.893571 ], [ -76.983926, 38.893571 ], [ -76.983755, 38.893555 ], [ -76.983669, 38.893521 ], [ -76.983647, 38.893505 ], [ -76.983562, 38.893471 ], [ -76.983519, 38.893438 ], [ -76.983476, 38.893421 ], [ -76.983433, 38.893404 ], [ -76.983347, 38.893388 ], [ -76.983304, 38.893371 ], [ -76.983218, 38.893354 ], [ -76.983175, 38.893338 ], [ -76.983089, 38.893338 ], [ -76.983047, 38.893321 ], [ -76.983004, 38.893321 ], [ -76.982896, 38.893321 ], [ -76.982746, 38.893321 ], [ -76.982639, 38.893321 ], [ -76.982210, 38.893321 ], [ -76.981287, 38.893338 ], [ -76.980751, 38.893338 ], [ -76.979871, 38.893321 ], [ -76.978991, 38.893321 ], [ -76.978111, 38.893304 ], [ -76.977253, 38.893304 ], [ -76.976223, 38.893304 ], [ -76.975729, 38.893304 ], [ -76.975429, 38.893304 ], [ -76.975150, 38.893287 ], [ -76.975086, 38.893137 ], [ -76.975021, 38.893120 ], [ -76.975000, 38.893104 ], [ -76.974957, 38.893087 ], [ -76.974893, 38.893054 ], [ -76.974850, 38.893037 ], [ -76.974785, 38.893004 ], [ -76.974699, 38.892953 ], [ -76.974635, 38.892920 ], [ -76.974571, 38.892870 ], [ -76.974506, 38.892820 ], [ -76.974421, 38.892753 ], [ -76.974399, 38.892720 ], [ -76.974356, 38.892670 ], [ -76.974292, 38.892603 ], [ -76.974249, 38.892553 ], [ -76.974227, 38.892519 ], [ -76.974206, 38.892469 ], [ -76.974185, 38.892436 ], [ -76.974163, 38.892386 ], [ -76.974142, 38.892336 ], [ -76.974120, 38.892302 ], [ -76.974077, 38.892219 ], [ -76.974056, 38.892118 ], [ -76.974034, 38.892035 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008903", "GEOID": "11001008903", "NAME": "89.03", "NAMELSAD": "Census Tract 89.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 305651, "AWATER": 0, "INTPTLAT": "+38.9041579", "INTPTLON": "-076.9777180" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.970193, 38.905612 ], [ -76.970215, 38.905562 ], [ -76.970215, 38.905545 ], [ -76.970236, 38.905511 ], [ -76.970258, 38.905495 ], [ -76.970301, 38.905478 ], [ -76.970322, 38.905461 ], [ -76.970580, 38.905344 ], [ -76.971138, 38.905127 ], [ -76.971481, 38.904977 ], [ -76.971846, 38.904827 ], [ -76.972253, 38.904677 ], [ -76.972446, 38.904593 ], [ -76.972661, 38.904510 ], [ -76.973047, 38.904343 ], [ -76.973197, 38.904276 ], [ -76.973262, 38.904259 ], [ -76.973627, 38.904109 ], [ -76.974056, 38.903925 ], [ -76.974163, 38.903892 ], [ -76.974270, 38.903842 ], [ -76.974785, 38.903625 ], [ -76.975172, 38.903474 ], [ -76.975665, 38.903291 ], [ -76.976094, 38.903107 ], [ -76.976202, 38.903074 ], [ -76.976523, 38.902923 ], [ -76.976867, 38.902790 ], [ -76.977532, 38.902522 ], [ -76.977897, 38.902372 ], [ -76.978025, 38.902322 ], [ -76.978626, 38.902072 ], [ -76.978991, 38.901921 ], [ -76.979356, 38.901771 ], [ -76.979721, 38.901637 ], [ -76.980150, 38.901454 ], [ -76.980879, 38.901170 ], [ -76.980987, 38.901120 ], [ -76.981072, 38.901086 ], [ -76.981652, 38.900853 ], [ -76.982081, 38.900669 ], [ -76.982145, 38.900602 ], [ -76.982253, 38.900535 ], [ -76.982403, 38.900519 ], [ -76.982553, 38.900519 ], [ -76.982682, 38.900552 ], [ -76.982810, 38.900602 ], [ -76.982939, 38.900686 ], [ -76.983004, 38.900719 ], [ -76.982961, 38.900819 ], [ -76.982939, 38.900836 ], [ -76.982360, 38.901771 ], [ -76.981781, 38.902706 ], [ -76.981094, 38.903725 ], [ -76.980922, 38.904009 ], [ -76.980643, 38.904426 ], [ -76.980257, 38.905011 ], [ -76.980021, 38.905378 ], [ -76.979849, 38.905678 ], [ -76.979764, 38.905795 ], [ -76.979163, 38.906730 ], [ -76.979077, 38.906881 ], [ -76.978884, 38.907198 ], [ -76.978841, 38.907265 ], [ -76.978755, 38.907231 ], [ -76.978562, 38.907365 ], [ -76.978283, 38.907198 ], [ -76.977918, 38.907014 ], [ -76.977167, 38.906647 ], [ -76.976202, 38.906280 ], [ -76.975687, 38.906163 ], [ -76.975193, 38.905996 ], [ -76.975150, 38.905612 ], [ -76.974828, 38.905628 ], [ -76.974163, 38.905628 ], [ -76.973820, 38.905628 ], [ -76.973562, 38.905628 ], [ -76.973197, 38.905612 ], [ -76.972532, 38.905612 ], [ -76.972189, 38.905628 ], [ -76.970773, 38.905628 ], [ -76.970537, 38.905612 ], [ -76.970193, 38.905612 ] ] ], [ [ [ -76.970236, 38.903441 ], [ -76.970236, 38.903324 ], [ -76.970215, 38.903274 ], [ -76.970215, 38.903240 ], [ -76.970215, 38.903090 ], [ -76.970215, 38.902790 ], [ -76.970215, 38.902372 ], [ -76.970215, 38.901955 ], [ -76.970236, 38.901120 ], [ -76.970215, 38.900719 ], [ -76.970215, 38.900468 ], [ -76.970215, 38.900385 ], [ -76.970215, 38.899617 ], [ -76.970215, 38.899233 ], [ -76.970236, 38.898932 ], [ -76.970236, 38.898698 ], [ -76.970236, 38.898598 ], [ -76.970236, 38.898498 ], [ -76.970258, 38.898381 ], [ -76.970279, 38.898281 ], [ -76.970301, 38.898181 ], [ -76.970365, 38.897997 ], [ -76.970365, 38.897964 ], [ -76.970387, 38.897930 ], [ -76.971223, 38.898064 ], [ -76.972146, 38.898231 ], [ -76.973047, 38.898381 ], [ -76.974163, 38.898581 ], [ -76.975451, 38.898799 ], [ -76.976223, 38.898949 ], [ -76.976266, 38.898949 ], [ -76.976588, 38.898999 ], [ -76.977510, 38.899166 ], [ -76.979270, 38.899483 ], [ -76.981459, 38.899867 ], [ -76.983240, 38.900185 ], [ -76.983411, 38.900185 ], [ -76.983261, 38.900352 ], [ -76.983004, 38.900719 ], [ -76.982939, 38.900686 ], [ -76.982810, 38.900602 ], [ -76.982682, 38.900552 ], [ -76.982553, 38.900519 ], [ -76.982403, 38.900519 ], [ -76.982253, 38.900535 ], [ -76.982145, 38.900602 ], [ -76.982081, 38.900669 ], [ -76.981652, 38.900853 ], [ -76.981072, 38.901086 ], [ -76.980987, 38.901120 ], [ -76.980879, 38.901170 ], [ -76.980150, 38.901454 ], [ -76.979721, 38.901637 ], [ -76.979356, 38.901771 ], [ -76.978991, 38.901921 ], [ -76.978626, 38.902072 ], [ -76.978025, 38.902322 ], [ -76.977897, 38.902372 ], [ -76.977532, 38.902522 ], [ -76.976867, 38.902790 ], [ -76.976523, 38.902923 ], [ -76.976202, 38.903074 ], [ -76.976094, 38.903107 ], [ -76.975665, 38.903291 ], [ -76.975172, 38.903474 ], [ -76.974785, 38.903625 ], [ -76.974270, 38.903842 ], [ -76.974163, 38.903892 ], [ -76.974056, 38.903925 ], [ -76.973627, 38.904109 ], [ -76.973262, 38.904259 ], [ -76.973197, 38.904276 ], [ -76.973047, 38.904343 ], [ -76.972661, 38.904510 ], [ -76.972446, 38.904593 ], [ -76.972275, 38.904326 ], [ -76.972146, 38.904109 ], [ -76.971889, 38.903725 ], [ -76.971824, 38.903641 ], [ -76.971803, 38.903625 ], [ -76.971781, 38.903591 ], [ -76.971760, 38.903574 ], [ -76.971738, 38.903558 ], [ -76.971717, 38.903524 ], [ -76.971674, 38.903508 ], [ -76.971631, 38.903491 ], [ -76.971588, 38.903474 ], [ -76.971545, 38.903458 ], [ -76.971502, 38.903458 ], [ -76.971459, 38.903458 ], [ -76.971374, 38.903441 ], [ -76.971309, 38.903441 ], [ -76.971116, 38.903441 ], [ -76.970944, 38.903441 ], [ -76.970537, 38.903441 ], [ -76.970494, 38.903441 ], [ -76.970301, 38.903441 ], [ -76.970236, 38.903441 ] ] ], [ [ [ -76.983647, 38.893505 ], [ -76.983647, 38.893621 ], [ -76.983647, 38.893638 ], [ -76.983647, 38.893989 ], [ -76.983647, 38.894423 ], [ -76.983647, 38.894707 ], [ -76.983647, 38.894774 ], [ -76.983647, 38.895392 ], [ -76.983647, 38.895459 ], [ -76.983647, 38.896110 ], [ -76.983647, 38.896294 ], [ -76.983647, 38.896661 ], [ -76.983647, 38.896744 ], [ -76.983647, 38.897162 ], [ -76.983647, 38.897329 ], [ -76.983647, 38.897496 ], [ -76.983647, 38.897696 ], [ -76.983647, 38.897980 ], [ -76.983647, 38.898431 ], [ -76.983647, 38.898849 ], [ -76.983604, 38.899650 ], [ -76.983583, 38.900001 ], [ -76.983497, 38.900051 ], [ -76.983240, 38.900185 ], [ -76.981459, 38.899867 ], [ -76.979270, 38.899483 ], [ -76.977510, 38.899166 ], [ -76.976588, 38.898999 ], [ -76.976266, 38.898949 ], [ -76.976223, 38.898949 ], [ -76.976416, 38.898865 ], [ -76.976480, 38.898815 ], [ -76.976523, 38.898715 ], [ -76.976609, 38.898381 ], [ -76.976738, 38.897930 ], [ -76.976845, 38.897613 ], [ -76.976953, 38.897229 ], [ -76.977038, 38.896928 ], [ -76.977060, 38.896845 ], [ -76.977124, 38.896594 ], [ -76.977253, 38.896193 ], [ -76.977253, 38.896160 ], [ -76.977253, 38.896110 ], [ -76.977253, 38.895525 ], [ -76.977253, 38.895208 ], [ -76.977253, 38.894857 ], [ -76.977253, 38.894774 ], [ -76.977253, 38.894707 ], [ -76.977253, 38.894406 ], [ -76.977253, 38.894139 ], [ -76.977253, 38.893304 ], [ -76.978111, 38.893304 ], [ -76.978991, 38.893321 ], [ -76.979871, 38.893321 ], [ -76.980751, 38.893338 ], [ -76.981287, 38.893338 ], [ -76.982210, 38.893321 ], [ -76.982639, 38.893321 ], [ -76.982746, 38.893321 ], [ -76.982896, 38.893321 ], [ -76.983004, 38.893321 ], [ -76.983047, 38.893321 ], [ -76.983089, 38.893338 ], [ -76.983175, 38.893338 ], [ -76.983218, 38.893354 ], [ -76.983304, 38.893371 ], [ -76.983347, 38.893388 ], [ -76.983433, 38.893404 ], [ -76.983476, 38.893421 ], [ -76.983519, 38.893438 ], [ -76.983562, 38.893471 ], [ -76.983647, 38.893505 ] ] ], [ [ [ -76.977253, 38.893304 ], [ -76.977253, 38.894139 ], [ -76.977253, 38.894406 ], [ -76.977253, 38.894707 ], [ -76.977253, 38.894774 ], [ -76.977253, 38.894857 ], [ -76.977253, 38.895208 ], [ -76.977253, 38.895525 ], [ -76.977253, 38.896110 ], [ -76.977253, 38.896160 ], [ -76.977253, 38.896193 ], [ -76.977124, 38.896594 ], [ -76.977060, 38.896845 ], [ -76.977038, 38.896928 ], [ -76.976953, 38.897229 ], [ -76.976845, 38.897613 ], [ -76.976738, 38.897930 ], [ -76.976609, 38.898381 ], [ -76.976523, 38.898715 ], [ -76.976480, 38.898815 ], [ -76.976416, 38.898865 ], [ -76.976223, 38.898949 ], [ -76.975451, 38.898799 ], [ -76.974163, 38.898581 ], [ -76.973047, 38.898381 ], [ -76.972146, 38.898231 ], [ -76.971223, 38.898064 ], [ -76.970387, 38.897930 ], [ -76.969464, 38.897763 ], [ -76.969507, 38.897630 ], [ -76.969528, 38.897596 ], [ -76.969571, 38.897529 ], [ -76.970687, 38.896294 ], [ -76.970966, 38.895993 ], [ -76.971030, 38.895943 ], [ -76.971095, 38.895893 ], [ -76.971159, 38.895859 ], [ -76.971223, 38.895809 ], [ -76.971288, 38.895776 ], [ -76.971331, 38.895759 ], [ -76.971374, 38.895726 ], [ -76.971395, 38.895726 ], [ -76.971438, 38.895692 ], [ -76.971502, 38.895676 ], [ -76.971610, 38.895642 ], [ -76.971717, 38.895609 ], [ -76.971846, 38.895575 ], [ -76.972983, 38.895275 ], [ -76.973090, 38.895241 ], [ -76.973605, 38.895108 ], [ -76.973670, 38.895074 ], [ -76.973755, 38.895058 ], [ -76.973841, 38.895024 ], [ -76.973906, 38.895008 ], [ -76.973948, 38.894974 ], [ -76.974013, 38.894958 ], [ -76.974120, 38.894891 ], [ -76.974185, 38.894857 ], [ -76.974249, 38.894824 ], [ -76.974356, 38.894757 ], [ -76.974399, 38.894724 ], [ -76.974463, 38.894690 ], [ -76.974506, 38.894657 ], [ -76.974571, 38.894607 ], [ -76.974614, 38.894557 ], [ -76.974699, 38.894473 ], [ -76.974764, 38.894406 ], [ -76.974807, 38.894340 ], [ -76.974871, 38.894256 ], [ -76.974893, 38.894223 ], [ -76.974936, 38.894156 ], [ -76.974957, 38.894123 ], [ -76.975000, 38.894039 ], [ -76.975021, 38.893972 ], [ -76.975043, 38.893922 ], [ -76.975086, 38.893839 ], [ -76.975107, 38.893738 ], [ -76.975107, 38.893688 ], [ -76.975129, 38.893638 ], [ -76.975129, 38.893605 ], [ -76.975129, 38.893571 ], [ -76.975150, 38.893555 ], [ -76.975150, 38.893521 ], [ -76.975150, 38.893471 ], [ -76.975150, 38.893287 ], [ -76.975429, 38.893304 ], [ -76.975729, 38.893304 ], [ -76.976223, 38.893304 ], [ -76.977253, 38.893304 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "011100", "GEOID": "11001011100", "NAME": "111", "NAMELSAD": "Census Tract 111", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 5718693, "AWATER": 366232, "INTPTLAT": "+38.9158612", "INTPTLON": "-076.9681631" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963434, 38.935194 ], [ -76.963370, 38.935144 ], [ -76.963348, 38.935128 ], [ -76.963327, 38.935111 ], [ -76.963284, 38.935077 ], [ -76.963220, 38.935027 ], [ -76.963177, 38.934994 ], [ -76.963112, 38.934944 ], [ -76.963069, 38.934911 ], [ -76.963048, 38.934894 ], [ -76.963005, 38.934860 ], [ -76.962962, 38.934827 ], [ -76.962833, 38.934710 ], [ -76.962512, 38.934477 ], [ -76.962168, 38.934210 ], [ -76.962082, 38.934126 ], [ -76.961997, 38.934059 ], [ -76.961803, 38.933926 ], [ -76.961653, 38.933809 ], [ -76.961460, 38.933642 ], [ -76.961417, 38.933625 ], [ -76.961396, 38.933592 ], [ -76.961267, 38.933492 ], [ -76.961224, 38.933458 ], [ -76.960859, 38.933191 ], [ -76.960731, 38.933074 ], [ -76.960237, 38.932707 ], [ -76.959915, 38.932440 ], [ -76.959722, 38.932290 ], [ -76.959572, 38.932173 ], [ -76.959529, 38.932140 ], [ -76.959486, 38.932106 ], [ -76.959422, 38.932056 ], [ -76.959229, 38.931906 ], [ -76.959121, 38.931823 ], [ -76.958971, 38.931706 ], [ -76.958842, 38.931589 ], [ -76.958778, 38.931556 ], [ -76.958692, 38.931472 ], [ -76.958327, 38.931205 ], [ -76.957877, 38.930838 ], [ -76.957748, 38.930754 ], [ -76.958413, 38.930337 ], [ -76.958671, 38.930170 ], [ -76.959615, 38.929552 ], [ -76.961482, 38.928267 ], [ -76.961567, 38.928184 ], [ -76.961782, 38.928017 ], [ -76.962640, 38.927282 ], [ -76.962833, 38.927149 ], [ -76.964078, 38.926130 ], [ -76.964121, 38.926097 ], [ -76.964185, 38.926047 ], [ -76.964507, 38.925797 ], [ -76.964808, 38.925546 ], [ -76.964936, 38.925429 ], [ -76.965151, 38.925262 ], [ -76.965044, 38.925162 ], [ -76.964550, 38.924828 ], [ -76.963606, 38.924177 ], [ -76.962619, 38.923543 ], [ -76.961825, 38.922992 ], [ -76.960967, 38.922408 ], [ -76.960516, 38.922107 ], [ -76.959357, 38.921339 ], [ -76.959164, 38.921206 ], [ -76.958306, 38.920638 ], [ -76.957791, 38.920271 ], [ -76.957555, 38.920121 ], [ -76.957490, 38.920071 ], [ -76.956589, 38.919470 ], [ -76.956460, 38.919369 ], [ -76.956353, 38.919286 ], [ -76.955924, 38.918935 ], [ -76.955495, 38.918668 ], [ -76.954980, 38.918334 ], [ -76.955066, 38.918301 ], [ -76.956096, 38.917783 ], [ -76.956460, 38.917616 ], [ -76.956096, 38.917600 ], [ -76.954207, 38.917533 ], [ -76.953907, 38.917516 ], [ -76.949143, 38.917249 ], [ -76.944187, 38.917032 ], [ -76.943607, 38.916999 ], [ -76.943843, 38.916865 ], [ -76.944616, 38.916181 ], [ -76.945946, 38.915246 ], [ -76.947255, 38.914979 ], [ -76.951997, 38.914895 ], [ -76.952877, 38.914795 ], [ -76.953564, 38.914378 ], [ -76.953821, 38.912291 ], [ -76.954443, 38.910955 ], [ -76.956782, 38.907849 ], [ -76.957877, 38.906263 ], [ -76.957963, 38.906146 ], [ -76.958263, 38.905428 ], [ -76.958606, 38.904743 ], [ -76.959379, 38.903391 ], [ -76.960602, 38.901721 ], [ -76.961396, 38.900786 ], [ -76.961954, 38.900185 ], [ -76.962211, 38.899500 ], [ -76.962190, 38.898698 ], [ -76.962104, 38.897763 ], [ -76.962082, 38.897596 ], [ -76.962018, 38.897346 ], [ -76.962018, 38.897312 ], [ -76.961975, 38.897129 ], [ -76.962490, 38.897162 ], [ -76.965623, 38.897429 ], [ -76.966331, 38.897496 ], [ -76.968069, 38.897630 ], [ -76.968799, 38.897680 ], [ -76.969464, 38.897763 ], [ -76.970387, 38.897930 ], [ -76.970365, 38.897964 ], [ -76.970365, 38.897997 ], [ -76.970301, 38.898181 ], [ -76.970279, 38.898281 ], [ -76.970258, 38.898381 ], [ -76.970236, 38.898498 ], [ -76.970236, 38.898598 ], [ -76.970236, 38.898698 ], [ -76.970236, 38.898932 ], [ -76.970215, 38.899233 ], [ -76.970215, 38.899617 ], [ -76.970215, 38.900385 ], [ -76.970215, 38.900468 ], [ -76.970215, 38.900719 ], [ -76.970236, 38.901120 ], [ -76.970215, 38.901955 ], [ -76.970215, 38.902372 ], [ -76.970215, 38.902790 ], [ -76.970215, 38.903090 ], [ -76.970215, 38.903240 ], [ -76.970215, 38.903274 ], [ -76.970236, 38.903324 ], [ -76.970236, 38.903441 ], [ -76.970301, 38.903441 ], [ -76.970494, 38.903441 ], [ -76.970537, 38.903441 ], [ -76.970944, 38.903441 ], [ -76.971116, 38.903441 ], [ -76.971309, 38.903441 ], [ -76.971374, 38.903441 ], [ -76.971459, 38.903458 ], [ -76.971502, 38.903458 ], [ -76.971545, 38.903458 ], [ -76.971588, 38.903474 ], [ -76.971631, 38.903491 ], [ -76.971674, 38.903508 ], [ -76.971717, 38.903524 ], [ -76.971738, 38.903558 ], [ -76.971760, 38.903574 ], [ -76.971781, 38.903591 ], [ -76.971803, 38.903625 ], [ -76.971824, 38.903641 ], [ -76.971889, 38.903725 ], [ -76.972146, 38.904109 ], [ -76.972275, 38.904326 ], [ -76.972446, 38.904593 ], [ -76.972253, 38.904677 ], [ -76.971846, 38.904827 ], [ -76.971481, 38.904977 ], [ -76.971138, 38.905127 ], [ -76.970580, 38.905344 ], [ -76.970322, 38.905461 ], [ -76.970301, 38.905478 ], [ -76.970258, 38.905495 ], [ -76.970236, 38.905511 ], [ -76.970215, 38.905545 ], [ -76.970215, 38.905562 ], [ -76.970193, 38.905612 ], [ -76.970537, 38.905612 ], [ -76.970773, 38.905628 ], [ -76.972189, 38.905628 ], [ -76.972532, 38.905612 ], [ -76.973197, 38.905612 ], [ -76.973562, 38.905628 ], [ -76.973820, 38.905628 ], [ -76.974163, 38.905628 ], [ -76.974828, 38.905628 ], [ -76.975150, 38.905612 ], [ -76.975193, 38.905996 ], [ -76.975687, 38.906163 ], [ -76.976202, 38.906280 ], [ -76.977167, 38.906647 ], [ -76.977918, 38.907014 ], [ -76.978283, 38.907198 ], [ -76.978562, 38.907365 ], [ -76.978755, 38.907231 ], [ -76.978841, 38.907265 ], [ -76.977596, 38.909202 ], [ -76.977446, 38.909419 ], [ -76.977360, 38.909586 ], [ -76.977253, 38.909886 ], [ -76.977081, 38.910337 ], [ -76.976802, 38.911189 ], [ -76.976330, 38.912641 ], [ -76.975708, 38.913443 ], [ -76.975129, 38.914127 ], [ -76.975300, 38.914144 ], [ -76.975515, 38.914361 ], [ -76.976373, 38.915162 ], [ -76.976480, 38.915262 ], [ -76.977060, 38.915830 ], [ -76.977596, 38.916348 ], [ -76.977854, 38.916581 ], [ -76.978304, 38.916915 ], [ -76.978219, 38.917166 ], [ -76.978154, 38.917283 ], [ -76.978197, 38.917550 ], [ -76.978261, 38.917950 ], [ -76.978283, 38.918101 ], [ -76.978369, 38.918535 ], [ -76.978369, 38.918601 ], [ -76.978433, 38.919002 ], [ -76.978455, 38.919069 ], [ -76.978455, 38.919086 ], [ -76.978498, 38.919186 ], [ -76.978519, 38.919236 ], [ -76.978519, 38.919269 ], [ -76.978540, 38.919319 ], [ -76.978562, 38.919353 ], [ -76.978583, 38.919403 ], [ -76.978605, 38.919453 ], [ -76.978669, 38.919553 ], [ -76.978712, 38.919603 ], [ -76.978755, 38.919653 ], [ -76.978798, 38.919720 ], [ -76.978862, 38.919770 ], [ -76.978905, 38.919820 ], [ -76.978991, 38.919887 ], [ -76.978991, 38.920021 ], [ -76.978991, 38.920037 ], [ -76.978991, 38.920221 ], [ -76.978991, 38.920304 ], [ -76.978991, 38.920521 ], [ -76.978991, 38.921289 ], [ -76.978991, 38.922291 ], [ -76.978991, 38.922358 ], [ -76.978991, 38.922591 ], [ -76.978991, 38.922625 ], [ -76.978991, 38.922775 ], [ -76.978991, 38.922909 ], [ -76.978991, 38.923142 ], [ -76.978991, 38.923343 ], [ -76.978991, 38.923443 ], [ -76.978991, 38.923860 ], [ -76.978991, 38.924094 ], [ -76.978991, 38.924428 ], [ -76.978991, 38.924511 ], [ -76.978991, 38.925029 ], [ -76.978991, 38.925580 ], [ -76.978991, 38.926648 ], [ -76.978991, 38.926731 ], [ -76.978991, 38.926798 ], [ -76.978991, 38.927282 ], [ -76.978991, 38.927433 ], [ -76.978991, 38.927483 ], [ -76.979012, 38.927549 ], [ -76.979055, 38.927599 ], [ -76.979098, 38.927650 ], [ -76.979120, 38.927700 ], [ -76.978798, 38.927850 ], [ -76.978476, 38.928017 ], [ -76.978176, 38.928184 ], [ -76.976373, 38.929035 ], [ -76.976223, 38.929102 ], [ -76.974850, 38.929769 ], [ -76.974313, 38.930020 ], [ -76.974163, 38.930087 ], [ -76.973691, 38.930320 ], [ -76.972146, 38.931055 ], [ -76.971567, 38.931305 ], [ -76.971288, 38.931455 ], [ -76.970773, 38.931706 ], [ -76.969163, 38.932490 ], [ -76.968005, 38.932991 ], [ -76.966074, 38.933976 ], [ -76.965816, 38.934093 ], [ -76.963863, 38.934994 ], [ -76.963799, 38.935027 ], [ -76.963735, 38.935044 ], [ -76.963692, 38.935077 ], [ -76.963434, 38.935194 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009000", "GEOID": "11001009000", "NAME": "90", "NAMELSAD": "Census Tract 90", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1427114, "AWATER": 31550, "INTPTLAT": "+38.9226934", "INTPTLON": "-076.9545101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.965151, 38.925262 ], [ -76.964936, 38.925429 ], [ -76.964808, 38.925546 ], [ -76.964507, 38.925797 ], [ -76.964185, 38.926047 ], [ -76.964121, 38.926097 ], [ -76.964078, 38.926130 ], [ -76.962833, 38.927149 ], [ -76.962640, 38.927282 ], [ -76.961782, 38.928017 ], [ -76.961567, 38.928184 ], [ -76.961482, 38.928267 ], [ -76.959615, 38.929552 ], [ -76.958671, 38.930170 ], [ -76.958413, 38.930337 ], [ -76.957748, 38.930754 ], [ -76.957662, 38.930671 ], [ -76.957576, 38.930621 ], [ -76.956267, 38.929603 ], [ -76.956074, 38.929469 ], [ -76.956010, 38.929402 ], [ -76.950839, 38.925446 ], [ -76.949208, 38.924194 ], [ -76.945195, 38.921122 ], [ -76.943951, 38.920171 ], [ -76.943843, 38.920104 ], [ -76.942234, 38.918835 ], [ -76.941912, 38.918585 ], [ -76.942427, 38.918084 ], [ -76.942492, 38.918034 ], [ -76.942556, 38.917967 ], [ -76.942921, 38.917399 ], [ -76.943607, 38.916999 ], [ -76.944187, 38.917032 ], [ -76.949143, 38.917249 ], [ -76.953907, 38.917516 ], [ -76.954207, 38.917533 ], [ -76.956096, 38.917600 ], [ -76.956460, 38.917616 ], [ -76.956096, 38.917783 ], [ -76.955066, 38.918301 ], [ -76.954980, 38.918334 ], [ -76.955495, 38.918668 ], [ -76.955924, 38.918935 ], [ -76.956353, 38.919286 ], [ -76.956460, 38.919369 ], [ -76.956589, 38.919470 ], [ -76.957490, 38.920071 ], [ -76.957555, 38.920121 ], [ -76.957791, 38.920271 ], [ -76.958306, 38.920638 ], [ -76.959164, 38.921206 ], [ -76.959357, 38.921339 ], [ -76.960516, 38.922107 ], [ -76.960967, 38.922408 ], [ -76.961825, 38.922992 ], [ -76.962619, 38.923543 ], [ -76.963606, 38.924177 ], [ -76.964550, 38.924828 ], [ -76.965044, 38.925162 ], [ -76.965151, 38.925262 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009602", "GEOID": "11001009602", "NAME": "96.02", "NAMELSAD": "Census Tract 96.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1306709, "AWATER": 67073, "INTPTLAT": "+38.9035769", "INTPTLON": "-076.9523616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.943650, 38.901387 ], [ -76.943736, 38.901320 ], [ -76.944509, 38.900702 ], [ -76.946011, 38.899500 ], [ -76.946547, 38.899066 ], [ -76.947899, 38.897980 ], [ -76.948221, 38.897730 ], [ -76.949058, 38.897062 ], [ -76.949401, 38.896795 ], [ -76.951010, 38.895525 ], [ -76.951547, 38.895609 ], [ -76.951761, 38.895642 ], [ -76.951890, 38.895659 ], [ -76.951933, 38.895676 ], [ -76.952147, 38.895709 ], [ -76.954808, 38.896160 ], [ -76.957490, 38.896577 ], [ -76.960280, 38.896978 ], [ -76.961160, 38.897078 ], [ -76.961782, 38.897112 ], [ -76.961975, 38.897129 ], [ -76.962018, 38.897312 ], [ -76.962018, 38.897346 ], [ -76.962082, 38.897596 ], [ -76.962104, 38.897763 ], [ -76.962190, 38.898698 ], [ -76.962211, 38.899500 ], [ -76.961954, 38.900185 ], [ -76.961396, 38.900786 ], [ -76.960602, 38.901721 ], [ -76.959379, 38.903391 ], [ -76.958606, 38.904743 ], [ -76.958263, 38.905428 ], [ -76.957963, 38.906146 ], [ -76.957726, 38.905896 ], [ -76.957383, 38.905829 ], [ -76.956933, 38.905595 ], [ -76.956675, 38.905528 ], [ -76.956460, 38.905528 ], [ -76.956224, 38.905545 ], [ -76.956010, 38.905695 ], [ -76.955774, 38.905929 ], [ -76.955645, 38.905979 ], [ -76.955409, 38.905996 ], [ -76.955109, 38.906062 ], [ -76.954980, 38.906113 ], [ -76.954980, 38.906146 ], [ -76.954958, 38.906146 ], [ -76.954937, 38.906179 ], [ -76.954701, 38.906246 ], [ -76.954637, 38.906263 ], [ -76.954594, 38.906280 ], [ -76.954551, 38.906296 ], [ -76.954486, 38.906313 ], [ -76.954465, 38.906330 ], [ -76.954401, 38.906363 ], [ -76.954379, 38.906380 ], [ -76.954315, 38.906413 ], [ -76.954272, 38.906430 ], [ -76.954250, 38.906447 ], [ -76.954165, 38.906480 ], [ -76.954143, 38.906497 ], [ -76.954100, 38.906513 ], [ -76.954036, 38.906530 ], [ -76.953993, 38.906547 ], [ -76.953928, 38.906563 ], [ -76.953864, 38.906597 ], [ -76.953843, 38.906614 ], [ -76.953757, 38.906647 ], [ -76.953735, 38.906664 ], [ -76.953671, 38.906697 ], [ -76.953671, 38.906714 ], [ -76.953628, 38.906747 ], [ -76.953628, 38.906764 ], [ -76.953607, 38.906780 ], [ -76.953521, 38.906780 ], [ -76.953521, 38.906814 ], [ -76.953521, 38.906897 ], [ -76.953521, 38.906947 ], [ -76.953521, 38.906981 ], [ -76.953521, 38.907031 ], [ -76.953521, 38.907081 ], [ -76.953499, 38.907114 ], [ -76.953478, 38.907148 ], [ -76.953435, 38.907198 ], [ -76.953371, 38.907265 ], [ -76.953328, 38.907281 ], [ -76.953285, 38.907315 ], [ -76.953242, 38.907348 ], [ -76.953177, 38.907415 ], [ -76.953135, 38.907448 ], [ -76.953049, 38.907498 ], [ -76.953006, 38.907515 ], [ -76.952941, 38.907549 ], [ -76.952877, 38.907615 ], [ -76.952834, 38.907649 ], [ -76.952770, 38.907682 ], [ -76.952727, 38.907716 ], [ -76.952641, 38.907799 ], [ -76.952598, 38.907832 ], [ -76.952512, 38.907899 ], [ -76.952469, 38.907916 ], [ -76.952384, 38.907983 ], [ -76.952319, 38.908016 ], [ -76.952276, 38.908050 ], [ -76.952212, 38.908066 ], [ -76.952147, 38.908083 ], [ -76.952062, 38.908116 ], [ -76.951997, 38.908150 ], [ -76.951954, 38.908150 ], [ -76.951890, 38.908166 ], [ -76.951847, 38.908183 ], [ -76.951697, 38.908216 ], [ -76.951590, 38.908216 ], [ -76.951504, 38.908216 ], [ -76.951439, 38.908216 ], [ -76.951418, 38.908216 ], [ -76.951332, 38.908216 ], [ -76.951268, 38.908216 ], [ -76.951246, 38.908216 ], [ -76.951182, 38.908200 ], [ -76.951075, 38.908183 ], [ -76.951032, 38.908183 ], [ -76.950967, 38.908166 ], [ -76.950796, 38.908100 ], [ -76.950731, 38.908083 ], [ -76.950645, 38.908050 ], [ -76.950581, 38.908016 ], [ -76.950538, 38.907999 ], [ -76.950495, 38.907966 ], [ -76.950452, 38.907933 ], [ -76.950345, 38.907883 ], [ -76.950302, 38.907849 ], [ -76.950259, 38.907832 ], [ -76.950216, 38.907799 ], [ -76.950173, 38.907766 ], [ -76.950130, 38.907732 ], [ -76.950045, 38.907665 ], [ -76.949916, 38.907549 ], [ -76.949873, 38.907515 ], [ -76.949744, 38.907348 ], [ -76.949594, 38.907181 ], [ -76.949530, 38.907114 ], [ -76.949508, 38.907064 ], [ -76.949444, 38.906998 ], [ -76.949401, 38.906964 ], [ -76.949337, 38.906881 ], [ -76.949272, 38.906797 ], [ -76.949251, 38.906764 ], [ -76.949229, 38.906714 ], [ -76.949186, 38.906680 ], [ -76.949165, 38.906630 ], [ -76.949100, 38.906563 ], [ -76.949079, 38.906513 ], [ -76.949079, 38.906463 ], [ -76.949058, 38.906430 ], [ -76.949036, 38.906396 ], [ -76.948993, 38.906313 ], [ -76.948993, 38.906263 ], [ -76.948950, 38.906196 ], [ -76.948929, 38.906163 ], [ -76.948907, 38.906113 ], [ -76.948843, 38.906046 ], [ -76.948800, 38.906012 ], [ -76.948736, 38.905929 ], [ -76.948714, 38.905896 ], [ -76.948671, 38.905845 ], [ -76.948628, 38.905812 ], [ -76.948607, 38.905762 ], [ -76.948564, 38.905729 ], [ -76.948521, 38.905695 ], [ -76.948457, 38.905628 ], [ -76.948435, 38.905578 ], [ -76.948371, 38.905495 ], [ -76.948307, 38.905428 ], [ -76.948264, 38.905344 ], [ -76.948199, 38.905278 ], [ -76.948156, 38.905244 ], [ -76.948113, 38.905194 ], [ -76.948071, 38.905161 ], [ -76.948049, 38.905127 ], [ -76.948006, 38.905094 ], [ -76.947963, 38.905061 ], [ -76.947920, 38.905011 ], [ -76.947877, 38.904977 ], [ -76.947834, 38.904960 ], [ -76.947792, 38.904944 ], [ -76.947727, 38.904860 ], [ -76.947706, 38.904827 ], [ -76.947663, 38.904777 ], [ -76.947641, 38.904727 ], [ -76.947556, 38.904660 ], [ -76.947491, 38.904593 ], [ -76.947427, 38.904526 ], [ -76.947341, 38.904443 ], [ -76.947277, 38.904376 ], [ -76.947191, 38.904309 ], [ -76.947105, 38.904242 ], [ -76.947041, 38.904192 ], [ -76.946998, 38.904126 ], [ -76.946955, 38.904092 ], [ -76.946912, 38.904075 ], [ -76.946869, 38.904042 ], [ -76.946826, 38.904009 ], [ -76.946805, 38.903975 ], [ -76.946719, 38.903908 ], [ -76.946676, 38.903875 ], [ -76.946611, 38.903842 ], [ -76.946590, 38.903808 ], [ -76.946568, 38.903775 ], [ -76.946547, 38.903741 ], [ -76.946483, 38.903691 ], [ -76.946461, 38.903658 ], [ -76.946440, 38.903625 ], [ -76.946397, 38.903591 ], [ -76.946375, 38.903574 ], [ -76.946332, 38.903541 ], [ -76.946290, 38.903458 ], [ -76.946268, 38.903441 ], [ -76.946225, 38.903407 ], [ -76.946161, 38.903341 ], [ -76.946118, 38.903274 ], [ -76.946075, 38.903240 ], [ -76.946032, 38.903207 ], [ -76.945989, 38.903174 ], [ -76.945946, 38.903140 ], [ -76.945903, 38.903090 ], [ -76.945775, 38.902957 ], [ -76.945732, 38.902923 ], [ -76.945689, 38.902890 ], [ -76.945646, 38.902856 ], [ -76.945581, 38.902823 ], [ -76.945539, 38.902790 ], [ -76.945496, 38.902773 ], [ -76.945453, 38.902740 ], [ -76.945431, 38.902723 ], [ -76.945410, 38.902706 ], [ -76.945367, 38.902673 ], [ -76.945345, 38.902623 ], [ -76.945324, 38.902589 ], [ -76.945302, 38.902556 ], [ -76.945302, 38.902489 ], [ -76.945324, 38.902389 ], [ -76.945345, 38.902305 ], [ -76.945345, 38.902272 ], [ -76.945345, 38.902222 ], [ -76.945324, 38.902172 ], [ -76.945281, 38.902122 ], [ -76.945260, 38.902088 ], [ -76.945195, 38.902021 ], [ -76.945174, 38.901988 ], [ -76.945152, 38.901955 ], [ -76.945109, 38.901938 ], [ -76.945088, 38.901905 ], [ -76.945066, 38.901871 ], [ -76.945045, 38.901855 ], [ -76.945024, 38.901821 ], [ -76.944981, 38.901804 ], [ -76.944916, 38.901754 ], [ -76.944873, 38.901704 ], [ -76.944830, 38.901688 ], [ -76.944788, 38.901654 ], [ -76.944702, 38.901738 ], [ -76.944659, 38.901704 ], [ -76.944530, 38.901621 ], [ -76.944509, 38.901604 ], [ -76.944466, 38.901571 ], [ -76.944423, 38.901537 ], [ -76.944380, 38.901537 ], [ -76.944337, 38.901521 ], [ -76.944315, 38.901504 ], [ -76.944294, 38.901504 ], [ -76.944251, 38.901487 ], [ -76.944230, 38.901487 ], [ -76.944187, 38.901470 ], [ -76.944144, 38.901470 ], [ -76.943929, 38.901437 ], [ -76.943822, 38.901420 ], [ -76.943715, 38.901404 ], [ -76.943650, 38.901387 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009604", "GEOID": "11001009604", "NAME": "96.04", "NAMELSAD": "Census Tract 96.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 503381, "AWATER": 65762, "INTPTLAT": "+38.8931572", "INTPTLON": "-076.9585043" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963370, 38.889864 ], [ -76.963263, 38.890348 ], [ -76.962533, 38.893287 ], [ -76.961846, 38.895292 ], [ -76.961803, 38.896127 ], [ -76.961954, 38.896995 ], [ -76.961975, 38.897095 ], [ -76.961975, 38.897129 ], [ -76.961782, 38.897112 ], [ -76.961160, 38.897078 ], [ -76.960280, 38.896978 ], [ -76.957490, 38.896577 ], [ -76.954808, 38.896160 ], [ -76.952147, 38.895709 ], [ -76.951933, 38.895676 ], [ -76.951890, 38.895659 ], [ -76.951761, 38.895642 ], [ -76.951547, 38.895609 ], [ -76.951010, 38.895525 ], [ -76.951075, 38.895492 ], [ -76.951118, 38.895425 ], [ -76.953156, 38.893438 ], [ -76.954165, 38.892402 ], [ -76.956353, 38.890214 ], [ -76.956718, 38.889830 ], [ -76.956739, 38.889830 ], [ -76.957190, 38.889830 ], [ -76.957340, 38.889830 ], [ -76.958091, 38.889814 ], [ -76.958241, 38.889830 ], [ -76.958585, 38.889814 ], [ -76.959808, 38.889847 ], [ -76.961224, 38.889847 ], [ -76.961567, 38.889847 ], [ -76.962426, 38.889847 ], [ -76.962619, 38.889864 ], [ -76.963370, 38.889864 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009601", "GEOID": "11001009601", "NAME": "96.01", "NAMELSAD": "Census Tract 96.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1905262, "AWATER": 189666, "INTPTLAT": "+38.9091300", "INTPTLON": "-076.9490606" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.957963, 38.906146 ], [ -76.957877, 38.906263 ], [ -76.956782, 38.907849 ], [ -76.954443, 38.910955 ], [ -76.953821, 38.912291 ], [ -76.953564, 38.914378 ], [ -76.952877, 38.914795 ], [ -76.951997, 38.914895 ], [ -76.947255, 38.914979 ], [ -76.945946, 38.915246 ], [ -76.944616, 38.916181 ], [ -76.943843, 38.916865 ], [ -76.943607, 38.916999 ], [ -76.942921, 38.917399 ], [ -76.942556, 38.917967 ], [ -76.942492, 38.918034 ], [ -76.942427, 38.918084 ], [ -76.941912, 38.918585 ], [ -76.941526, 38.918268 ], [ -76.941440, 38.918217 ], [ -76.941376, 38.918151 ], [ -76.941333, 38.918117 ], [ -76.941290, 38.918084 ], [ -76.941268, 38.918051 ], [ -76.941247, 38.918051 ], [ -76.941075, 38.917917 ], [ -76.939681, 38.916815 ], [ -76.939552, 38.916732 ], [ -76.939337, 38.916565 ], [ -76.939230, 38.916481 ], [ -76.939187, 38.916448 ], [ -76.939166, 38.916431 ], [ -76.939101, 38.916381 ], [ -76.939080, 38.916364 ], [ -76.939058, 38.916348 ], [ -76.938694, 38.916064 ], [ -76.937685, 38.915313 ], [ -76.937063, 38.914812 ], [ -76.935947, 38.913827 ], [ -76.934295, 38.912357 ], [ -76.934273, 38.912341 ], [ -76.934230, 38.912307 ], [ -76.934166, 38.912274 ], [ -76.934059, 38.912190 ], [ -76.934037, 38.912190 ], [ -76.934016, 38.912174 ], [ -76.933994, 38.912157 ], [ -76.933930, 38.912107 ], [ -76.933844, 38.912023 ], [ -76.933501, 38.911756 ], [ -76.933093, 38.911439 ], [ -76.932836, 38.911239 ], [ -76.932814, 38.911222 ], [ -76.932750, 38.911172 ], [ -76.932664, 38.911105 ], [ -76.932492, 38.910971 ], [ -76.932127, 38.910688 ], [ -76.932106, 38.910671 ], [ -76.932085, 38.910638 ], [ -76.932042, 38.910621 ], [ -76.932042, 38.910604 ], [ -76.932020, 38.910604 ], [ -76.931999, 38.910587 ], [ -76.931913, 38.910521 ], [ -76.931870, 38.910487 ], [ -76.931849, 38.910471 ], [ -76.931763, 38.910387 ], [ -76.932492, 38.910003 ], [ -76.932857, 38.909803 ], [ -76.933072, 38.909652 ], [ -76.934745, 38.908400 ], [ -76.936226, 38.907265 ], [ -76.937706, 38.906079 ], [ -76.938651, 38.905328 ], [ -76.938715, 38.905261 ], [ -76.940668, 38.903775 ], [ -76.941741, 38.902923 ], [ -76.942105, 38.902639 ], [ -76.942341, 38.902439 ], [ -76.942856, 38.902038 ], [ -76.943221, 38.901738 ], [ -76.943650, 38.901387 ], [ -76.943715, 38.901404 ], [ -76.943822, 38.901420 ], [ -76.943929, 38.901437 ], [ -76.944144, 38.901470 ], [ -76.944187, 38.901470 ], [ -76.944230, 38.901487 ], [ -76.944251, 38.901487 ], [ -76.944294, 38.901504 ], [ -76.944315, 38.901504 ], [ -76.944337, 38.901521 ], [ -76.944380, 38.901537 ], [ -76.944423, 38.901537 ], [ -76.944466, 38.901571 ], [ -76.944509, 38.901604 ], [ -76.944530, 38.901621 ], [ -76.944659, 38.901704 ], [ -76.944702, 38.901738 ], [ -76.944788, 38.901654 ], [ -76.944830, 38.901688 ], [ -76.944873, 38.901704 ], [ -76.944916, 38.901754 ], [ -76.944981, 38.901804 ], [ -76.945024, 38.901821 ], [ -76.945045, 38.901855 ], [ -76.945066, 38.901871 ], [ -76.945088, 38.901905 ], [ -76.945109, 38.901938 ], [ -76.945152, 38.901955 ], [ -76.945174, 38.901988 ], [ -76.945195, 38.902021 ], [ -76.945260, 38.902088 ], [ -76.945281, 38.902122 ], [ -76.945324, 38.902172 ], [ -76.945345, 38.902222 ], [ -76.945345, 38.902272 ], [ -76.945345, 38.902305 ], [ -76.945324, 38.902389 ], [ -76.945302, 38.902489 ], [ -76.945302, 38.902556 ], [ -76.945324, 38.902589 ], [ -76.945345, 38.902623 ], [ -76.945367, 38.902673 ], [ -76.945410, 38.902706 ], [ -76.945431, 38.902723 ], [ -76.945453, 38.902740 ], [ -76.945496, 38.902773 ], [ -76.945539, 38.902790 ], [ -76.945581, 38.902823 ], [ -76.945646, 38.902856 ], [ -76.945689, 38.902890 ], [ -76.945732, 38.902923 ], [ -76.945775, 38.902957 ], [ -76.945903, 38.903090 ], [ -76.945946, 38.903140 ], [ -76.945989, 38.903174 ], [ -76.946032, 38.903207 ], [ -76.946075, 38.903240 ], [ -76.946118, 38.903274 ], [ -76.946161, 38.903341 ], [ -76.946225, 38.903407 ], [ -76.946268, 38.903441 ], [ -76.946290, 38.903458 ], [ -76.946332, 38.903541 ], [ -76.946375, 38.903574 ], [ -76.946397, 38.903591 ], [ -76.946440, 38.903625 ], [ -76.946461, 38.903658 ], [ -76.946483, 38.903691 ], [ -76.946547, 38.903741 ], [ -76.946568, 38.903775 ], [ -76.946590, 38.903808 ], [ -76.946611, 38.903842 ], [ -76.946676, 38.903875 ], [ -76.946719, 38.903908 ], [ -76.946805, 38.903975 ], [ -76.946826, 38.904009 ], [ -76.946869, 38.904042 ], [ -76.946912, 38.904075 ], [ -76.946955, 38.904092 ], [ -76.946998, 38.904126 ], [ -76.947041, 38.904192 ], [ -76.947105, 38.904242 ], [ -76.947191, 38.904309 ], [ -76.947277, 38.904376 ], [ -76.947341, 38.904443 ], [ -76.947427, 38.904526 ], [ -76.947491, 38.904593 ], [ -76.947556, 38.904660 ], [ -76.947641, 38.904727 ], [ -76.947663, 38.904777 ], [ -76.947706, 38.904827 ], [ -76.947727, 38.904860 ], [ -76.947792, 38.904944 ], [ -76.947834, 38.904960 ], [ -76.947877, 38.904977 ], [ -76.947920, 38.905011 ], [ -76.947963, 38.905061 ], [ -76.948006, 38.905094 ], [ -76.948049, 38.905127 ], [ -76.948071, 38.905161 ], [ -76.948113, 38.905194 ], [ -76.948156, 38.905244 ], [ -76.948199, 38.905278 ], [ -76.948264, 38.905344 ], [ -76.948307, 38.905428 ], [ -76.948371, 38.905495 ], [ -76.948435, 38.905578 ], [ -76.948457, 38.905628 ], [ -76.948521, 38.905695 ], [ -76.948564, 38.905729 ], [ -76.948607, 38.905762 ], [ -76.948628, 38.905812 ], [ -76.948671, 38.905845 ], [ -76.948714, 38.905896 ], [ -76.948736, 38.905929 ], [ -76.948800, 38.906012 ], [ -76.948843, 38.906046 ], [ -76.948907, 38.906113 ], [ -76.948929, 38.906163 ], [ -76.948950, 38.906196 ], [ -76.948993, 38.906263 ], [ -76.948993, 38.906313 ], [ -76.949036, 38.906396 ], [ -76.949058, 38.906430 ], [ -76.949079, 38.906463 ], [ -76.949079, 38.906513 ], [ -76.949100, 38.906563 ], [ -76.949165, 38.906630 ], [ -76.949186, 38.906680 ], [ -76.949229, 38.906714 ], [ -76.949251, 38.906764 ], [ -76.949272, 38.906797 ], [ -76.949337, 38.906881 ], [ -76.949401, 38.906964 ], [ -76.949444, 38.906998 ], [ -76.949508, 38.907064 ], [ -76.949530, 38.907114 ], [ -76.949594, 38.907181 ], [ -76.949744, 38.907348 ], [ -76.949873, 38.907515 ], [ -76.949916, 38.907549 ], [ -76.950045, 38.907665 ], [ -76.950130, 38.907732 ], [ -76.950173, 38.907766 ], [ -76.950216, 38.907799 ], [ -76.950259, 38.907832 ], [ -76.950302, 38.907849 ], [ -76.950345, 38.907883 ], [ -76.950452, 38.907933 ], [ -76.950495, 38.907966 ], [ -76.950538, 38.907999 ], [ -76.950581, 38.908016 ], [ -76.950645, 38.908050 ], [ -76.950731, 38.908083 ], [ -76.950796, 38.908100 ], [ -76.950967, 38.908166 ], [ -76.951032, 38.908183 ], [ -76.951075, 38.908183 ], [ -76.951182, 38.908200 ], [ -76.951246, 38.908216 ], [ -76.951268, 38.908216 ], [ -76.951332, 38.908216 ], [ -76.951418, 38.908216 ], [ -76.951439, 38.908216 ], [ -76.951504, 38.908216 ], [ -76.951590, 38.908216 ], [ -76.951697, 38.908216 ], [ -76.951847, 38.908183 ], [ -76.951890, 38.908166 ], [ -76.951954, 38.908150 ], [ -76.951997, 38.908150 ], [ -76.952062, 38.908116 ], [ -76.952147, 38.908083 ], [ -76.952212, 38.908066 ], [ -76.952276, 38.908050 ], [ -76.952319, 38.908016 ], [ -76.952384, 38.907983 ], [ -76.952469, 38.907916 ], [ -76.952512, 38.907899 ], [ -76.952598, 38.907832 ], [ -76.952641, 38.907799 ], [ -76.952727, 38.907716 ], [ -76.952770, 38.907682 ], [ -76.952834, 38.907649 ], [ -76.952877, 38.907615 ], [ -76.952941, 38.907549 ], [ -76.953006, 38.907515 ], [ -76.953049, 38.907498 ], [ -76.953135, 38.907448 ], [ -76.953177, 38.907415 ], [ -76.953242, 38.907348 ], [ -76.953285, 38.907315 ], [ -76.953328, 38.907281 ], [ -76.953371, 38.907265 ], [ -76.953435, 38.907198 ], [ -76.953478, 38.907148 ], [ -76.953499, 38.907114 ], [ -76.953521, 38.907081 ], [ -76.953521, 38.907031 ], [ -76.953521, 38.906981 ], [ -76.953521, 38.906947 ], [ -76.953521, 38.906897 ], [ -76.953521, 38.906814 ], [ -76.953521, 38.906780 ], [ -76.953607, 38.906780 ], [ -76.953628, 38.906764 ], [ -76.953628, 38.906747 ], [ -76.953671, 38.906714 ], [ -76.953671, 38.906697 ], [ -76.953735, 38.906664 ], [ -76.953757, 38.906647 ], [ -76.953843, 38.906614 ], [ -76.953864, 38.906597 ], [ -76.953928, 38.906563 ], [ -76.953993, 38.906547 ], [ -76.954036, 38.906530 ], [ -76.954100, 38.906513 ], [ -76.954143, 38.906497 ], [ -76.954165, 38.906480 ], [ -76.954250, 38.906447 ], [ -76.954272, 38.906430 ], [ -76.954315, 38.906413 ], [ -76.954379, 38.906380 ], [ -76.954401, 38.906363 ], [ -76.954465, 38.906330 ], [ -76.954486, 38.906313 ], [ -76.954551, 38.906296 ], [ -76.954594, 38.906280 ], [ -76.954637, 38.906263 ], [ -76.954701, 38.906246 ], [ -76.954937, 38.906179 ], [ -76.954958, 38.906146 ], [ -76.954980, 38.906146 ], [ -76.954980, 38.906113 ], [ -76.955109, 38.906062 ], [ -76.955409, 38.905996 ], [ -76.955645, 38.905979 ], [ -76.955774, 38.905929 ], [ -76.956010, 38.905695 ], [ -76.956224, 38.905545 ], [ -76.956460, 38.905528 ], [ -76.956675, 38.905528 ], [ -76.956933, 38.905595 ], [ -76.957383, 38.905829 ], [ -76.957726, 38.905896 ], [ -76.957963, 38.906146 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009603", "GEOID": "11001009603", "NAME": "96.03", "NAMELSAD": "Census Tract 96.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 607400, "AWATER": 0, "INTPTLAT": "+38.8918285", "INTPTLON": "-076.9477195" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.937578, 38.889880 ], [ -76.937878, 38.889880 ], [ -76.939380, 38.889880 ], [ -76.939552, 38.889880 ], [ -76.939809, 38.889864 ], [ -76.940002, 38.889847 ], [ -76.940882, 38.889830 ], [ -76.942792, 38.889830 ], [ -76.944551, 38.889830 ], [ -76.947234, 38.889830 ], [ -76.948285, 38.889814 ], [ -76.948800, 38.889814 ], [ -76.950088, 38.889847 ], [ -76.950731, 38.889830 ], [ -76.951933, 38.889814 ], [ -76.953006, 38.889814 ], [ -76.953092, 38.889814 ], [ -76.953692, 38.889814 ], [ -76.954594, 38.889814 ], [ -76.955903, 38.889830 ], [ -76.956718, 38.889830 ], [ -76.956353, 38.890214 ], [ -76.954165, 38.892402 ], [ -76.953156, 38.893438 ], [ -76.951118, 38.895425 ], [ -76.951075, 38.895492 ], [ -76.951010, 38.895525 ], [ -76.949358, 38.895225 ], [ -76.949315, 38.895208 ], [ -76.949143, 38.895125 ], [ -76.949015, 38.895058 ], [ -76.948113, 38.894640 ], [ -76.948028, 38.894607 ], [ -76.947899, 38.894557 ], [ -76.947320, 38.894306 ], [ -76.946976, 38.894156 ], [ -76.946719, 38.894056 ], [ -76.946633, 38.894022 ], [ -76.946483, 38.893956 ], [ -76.946332, 38.893889 ], [ -76.946182, 38.893839 ], [ -76.946011, 38.893789 ], [ -76.945860, 38.893738 ], [ -76.945775, 38.893705 ], [ -76.945581, 38.893655 ], [ -76.945367, 38.893605 ], [ -76.944530, 38.893438 ], [ -76.944358, 38.893404 ], [ -76.944122, 38.893354 ], [ -76.943564, 38.893237 ], [ -76.943393, 38.893187 ], [ -76.943307, 38.893171 ], [ -76.943157, 38.893120 ], [ -76.942985, 38.893070 ], [ -76.942899, 38.893037 ], [ -76.942728, 38.892987 ], [ -76.942599, 38.892937 ], [ -76.942406, 38.892870 ], [ -76.940968, 38.892269 ], [ -76.940904, 38.892252 ], [ -76.940861, 38.892235 ], [ -76.940453, 38.892068 ], [ -76.940238, 38.891968 ], [ -76.940002, 38.891885 ], [ -76.939788, 38.891784 ], [ -76.939659, 38.891734 ], [ -76.939595, 38.891701 ], [ -76.939509, 38.891684 ], [ -76.939337, 38.891601 ], [ -76.939209, 38.891517 ], [ -76.939080, 38.891467 ], [ -76.939015, 38.891434 ], [ -76.938887, 38.891350 ], [ -76.938779, 38.891267 ], [ -76.938715, 38.891217 ], [ -76.938651, 38.891183 ], [ -76.938543, 38.891083 ], [ -76.938479, 38.891050 ], [ -76.938415, 38.890999 ], [ -76.938329, 38.890899 ], [ -76.938264, 38.890849 ], [ -76.938221, 38.890799 ], [ -76.938114, 38.890699 ], [ -76.938071, 38.890632 ], [ -76.938028, 38.890599 ], [ -76.937964, 38.890498 ], [ -76.937921, 38.890448 ], [ -76.937814, 38.890331 ], [ -76.937685, 38.890064 ], [ -76.937578, 38.889880 ] ] ], [ [ [ -76.934874, 38.889830 ], [ -76.935518, 38.889830 ], [ -76.935689, 38.889847 ], [ -76.936097, 38.889880 ], [ -76.936612, 38.889880 ], [ -76.937277, 38.889897 ], [ -76.937578, 38.889880 ], [ -76.937685, 38.890064 ], [ -76.937814, 38.890331 ], [ -76.937921, 38.890448 ], [ -76.937964, 38.890498 ], [ -76.938028, 38.890599 ], [ -76.938071, 38.890632 ], [ -76.938114, 38.890699 ], [ -76.938221, 38.890799 ], [ -76.938264, 38.890849 ], [ -76.938329, 38.890899 ], [ -76.938415, 38.890999 ], [ -76.938479, 38.891050 ], [ -76.938543, 38.891083 ], [ -76.938651, 38.891183 ], [ -76.938715, 38.891217 ], [ -76.938779, 38.891267 ], [ -76.938887, 38.891350 ], [ -76.939015, 38.891434 ], [ -76.939080, 38.891467 ], [ -76.939209, 38.891517 ], [ -76.939337, 38.891601 ], [ -76.939509, 38.891684 ], [ -76.939595, 38.891701 ], [ -76.939659, 38.891734 ], [ -76.939788, 38.891784 ], [ -76.940002, 38.891885 ], [ -76.940238, 38.891968 ], [ -76.940453, 38.892068 ], [ -76.940861, 38.892235 ], [ -76.940904, 38.892252 ], [ -76.940968, 38.892269 ], [ -76.942406, 38.892870 ], [ -76.942599, 38.892937 ], [ -76.942728, 38.892987 ], [ -76.942899, 38.893037 ], [ -76.942985, 38.893070 ], [ -76.943157, 38.893120 ], [ -76.943307, 38.893171 ], [ -76.943393, 38.893187 ], [ -76.943564, 38.893237 ], [ -76.944122, 38.893354 ], [ -76.944358, 38.893404 ], [ -76.944530, 38.893438 ], [ -76.945367, 38.893605 ], [ -76.945581, 38.893655 ], [ -76.945775, 38.893705 ], [ -76.945860, 38.893738 ], [ -76.946011, 38.893789 ], [ -76.946182, 38.893839 ], [ -76.946332, 38.893889 ], [ -76.946483, 38.893956 ], [ -76.946633, 38.894022 ], [ -76.946719, 38.894056 ], [ -76.946976, 38.894156 ], [ -76.947320, 38.894306 ], [ -76.947899, 38.894557 ], [ -76.948028, 38.894607 ], [ -76.948113, 38.894640 ], [ -76.949015, 38.895058 ], [ -76.949143, 38.895125 ], [ -76.949315, 38.895208 ], [ -76.949358, 38.895225 ], [ -76.951010, 38.895525 ], [ -76.949401, 38.896795 ], [ -76.949058, 38.897062 ], [ -76.948221, 38.897730 ], [ -76.947899, 38.897980 ], [ -76.946547, 38.899066 ], [ -76.946011, 38.899500 ], [ -76.944509, 38.900702 ], [ -76.943736, 38.901320 ], [ -76.943650, 38.901387 ], [ -76.943221, 38.901738 ], [ -76.942856, 38.902038 ], [ -76.942599, 38.901921 ], [ -76.942427, 38.901855 ], [ -76.942298, 38.901788 ], [ -76.942191, 38.901754 ], [ -76.942019, 38.901688 ], [ -76.941934, 38.901654 ], [ -76.941869, 38.901637 ], [ -76.941698, 38.901571 ], [ -76.941612, 38.901554 ], [ -76.941547, 38.901521 ], [ -76.941483, 38.901487 ], [ -76.941397, 38.901470 ], [ -76.941032, 38.901320 ], [ -76.939402, 38.900652 ], [ -76.939187, 38.900552 ], [ -76.939187, 38.900418 ], [ -76.939187, 38.900101 ], [ -76.939187, 38.899734 ], [ -76.939187, 38.899433 ], [ -76.939187, 38.899049 ], [ -76.939187, 38.898698 ], [ -76.939187, 38.898632 ], [ -76.939187, 38.898364 ], [ -76.939123, 38.898364 ], [ -76.938844, 38.898364 ], [ -76.938586, 38.898364 ], [ -76.938350, 38.898364 ], [ -76.938093, 38.898364 ], [ -76.937234, 38.898364 ], [ -76.937213, 38.898364 ], [ -76.937149, 38.898364 ], [ -76.937020, 38.898364 ], [ -76.936913, 38.898348 ], [ -76.936827, 38.898348 ], [ -76.936677, 38.898314 ], [ -76.936634, 38.898314 ], [ -76.936591, 38.898314 ], [ -76.936591, 38.898264 ], [ -76.936591, 38.898214 ], [ -76.936591, 38.897964 ], [ -76.936591, 38.897630 ], [ -76.936591, 38.897579 ], [ -76.936591, 38.897546 ], [ -76.936591, 38.897529 ], [ -76.936612, 38.897496 ], [ -76.936526, 38.897479 ], [ -76.936440, 38.897479 ], [ -76.936312, 38.897446 ], [ -76.936269, 38.897429 ], [ -76.936226, 38.897429 ], [ -76.936183, 38.897412 ], [ -76.936140, 38.897396 ], [ -76.936076, 38.897362 ], [ -76.935990, 38.897346 ], [ -76.935925, 38.897312 ], [ -76.935861, 38.897279 ], [ -76.935797, 38.897262 ], [ -76.935732, 38.897229 ], [ -76.935689, 38.897212 ], [ -76.935668, 38.897179 ], [ -76.935625, 38.897162 ], [ -76.935582, 38.897145 ], [ -76.935518, 38.897095 ], [ -76.935475, 38.897062 ], [ -76.935432, 38.897012 ], [ -76.935389, 38.896978 ], [ -76.935303, 38.896911 ], [ -76.935282, 38.896878 ], [ -76.935239, 38.896845 ], [ -76.935196, 38.896795 ], [ -76.935153, 38.896728 ], [ -76.935110, 38.896694 ], [ -76.935067, 38.896611 ], [ -76.935024, 38.896527 ], [ -76.934981, 38.896477 ], [ -76.934960, 38.896394 ], [ -76.934938, 38.896360 ], [ -76.934917, 38.896310 ], [ -76.934917, 38.896243 ], [ -76.934896, 38.896177 ], [ -76.934896, 38.896143 ], [ -76.934874, 38.896043 ], [ -76.934874, 38.896010 ], [ -76.934874, 38.895926 ], [ -76.934874, 38.895859 ], [ -76.934874, 38.895826 ], [ -76.934874, 38.895726 ], [ -76.934874, 38.895008 ], [ -76.934874, 38.894557 ], [ -76.934874, 38.894273 ], [ -76.934874, 38.893738 ], [ -76.934874, 38.893588 ], [ -76.934874, 38.892870 ], [ -76.934874, 38.892486 ], [ -76.934874, 38.891885 ], [ -76.934874, 38.891801 ], [ -76.934874, 38.891350 ], [ -76.934874, 38.891016 ], [ -76.934874, 38.890682 ], [ -76.934874, 38.890398 ], [ -76.934874, 38.890281 ], [ -76.934874, 38.889830 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007806", "GEOID": "11001007806", "NAME": "78.06", "NAMELSAD": "Census Tract 78.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 671434, "AWATER": 0, "INTPTLAT": "+38.9055926", "INTPTLON": "-076.9325520" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.923630, 38.904025 ], [ -76.923587, 38.903992 ], [ -76.923974, 38.903925 ], [ -76.924467, 38.903842 ], [ -76.924810, 38.903775 ], [ -76.924961, 38.903758 ], [ -76.925840, 38.903608 ], [ -76.926012, 38.903574 ], [ -76.926184, 38.903558 ], [ -76.926270, 38.903541 ], [ -76.926312, 38.903541 ], [ -76.926420, 38.903524 ], [ -76.926463, 38.903524 ], [ -76.926720, 38.903508 ], [ -76.926870, 38.903491 ], [ -76.927106, 38.903474 ], [ -76.927364, 38.903474 ], [ -76.927686, 38.903474 ], [ -76.927729, 38.903474 ], [ -76.927965, 38.903491 ], [ -76.928201, 38.903491 ], [ -76.928587, 38.903508 ], [ -76.928716, 38.903508 ], [ -76.928844, 38.903524 ], [ -76.929209, 38.903524 ], [ -76.929424, 38.903524 ], [ -76.929531, 38.903524 ], [ -76.929638, 38.903524 ], [ -76.929832, 38.903508 ], [ -76.930003, 38.903474 ], [ -76.930110, 38.903458 ], [ -76.930196, 38.903441 ], [ -76.930304, 38.903424 ], [ -76.930411, 38.903391 ], [ -76.930518, 38.903374 ], [ -76.930625, 38.903341 ], [ -76.930668, 38.903324 ], [ -76.930690, 38.903324 ], [ -76.930947, 38.903240 ], [ -76.931076, 38.903190 ], [ -76.931205, 38.903157 ], [ -76.931355, 38.903107 ], [ -76.931484, 38.903074 ], [ -76.931655, 38.903040 ], [ -76.931806, 38.903023 ], [ -76.931913, 38.903007 ], [ -76.932042, 38.902990 ], [ -76.932170, 38.902973 ], [ -76.932299, 38.902973 ], [ -76.932707, 38.902940 ], [ -76.932793, 38.902940 ], [ -76.933565, 38.902907 ], [ -76.933758, 38.902890 ], [ -76.933866, 38.902890 ], [ -76.934552, 38.902856 ], [ -76.934702, 38.902856 ], [ -76.935067, 38.902840 ], [ -76.935453, 38.902823 ], [ -76.935625, 38.902806 ], [ -76.936054, 38.902790 ], [ -76.936462, 38.902773 ], [ -76.936591, 38.902773 ], [ -76.936655, 38.902756 ], [ -76.936719, 38.902756 ], [ -76.937492, 38.902740 ], [ -76.937578, 38.902740 ], [ -76.937814, 38.902740 ], [ -76.938243, 38.902740 ], [ -76.938350, 38.902740 ], [ -76.938457, 38.902740 ], [ -76.938608, 38.902740 ], [ -76.938694, 38.902740 ], [ -76.938865, 38.902756 ], [ -76.938951, 38.902773 ], [ -76.939166, 38.902790 ], [ -76.940346, 38.902873 ], [ -76.940753, 38.902907 ], [ -76.941011, 38.902923 ], [ -76.941097, 38.902940 ], [ -76.941161, 38.902923 ], [ -76.941226, 38.902923 ], [ -76.941290, 38.902907 ], [ -76.941333, 38.902890 ], [ -76.941397, 38.902873 ], [ -76.941440, 38.902856 ], [ -76.941483, 38.902823 ], [ -76.941504, 38.902806 ], [ -76.941547, 38.902773 ], [ -76.941977, 38.902439 ], [ -76.942191, 38.902255 ], [ -76.942470, 38.902038 ], [ -76.942599, 38.901921 ], [ -76.942856, 38.902038 ], [ -76.942341, 38.902439 ], [ -76.942105, 38.902639 ], [ -76.941741, 38.902923 ], [ -76.940668, 38.903775 ], [ -76.938715, 38.905261 ], [ -76.938651, 38.905328 ], [ -76.937706, 38.906079 ], [ -76.936226, 38.907265 ], [ -76.934745, 38.908400 ], [ -76.933072, 38.909652 ], [ -76.932857, 38.909803 ], [ -76.932492, 38.910003 ], [ -76.931763, 38.910387 ], [ -76.931720, 38.910370 ], [ -76.931677, 38.910337 ], [ -76.931655, 38.910320 ], [ -76.931505, 38.910187 ], [ -76.931398, 38.910120 ], [ -76.931312, 38.910053 ], [ -76.931291, 38.910036 ], [ -76.930969, 38.909769 ], [ -76.930861, 38.909686 ], [ -76.930518, 38.909435 ], [ -76.930432, 38.909352 ], [ -76.930368, 38.909302 ], [ -76.930068, 38.909068 ], [ -76.929703, 38.908784 ], [ -76.929595, 38.908701 ], [ -76.929510, 38.908634 ], [ -76.929359, 38.908517 ], [ -76.929317, 38.908484 ], [ -76.928973, 38.908216 ], [ -76.928866, 38.908133 ], [ -76.928759, 38.908033 ], [ -76.928716, 38.907999 ], [ -76.928630, 38.907949 ], [ -76.928566, 38.907883 ], [ -76.928523, 38.907866 ], [ -76.928501, 38.907849 ], [ -76.928372, 38.907749 ], [ -76.928265, 38.907649 ], [ -76.927900, 38.907382 ], [ -76.927879, 38.907365 ], [ -76.927750, 38.907248 ], [ -76.927686, 38.907215 ], [ -76.927557, 38.907098 ], [ -76.927407, 38.906981 ], [ -76.927106, 38.906747 ], [ -76.926806, 38.906513 ], [ -76.926742, 38.906463 ], [ -76.926484, 38.906263 ], [ -76.926463, 38.906246 ], [ -76.926312, 38.906129 ], [ -76.926291, 38.906113 ], [ -76.926248, 38.906079 ], [ -76.926184, 38.906029 ], [ -76.926162, 38.906012 ], [ -76.926141, 38.905979 ], [ -76.926033, 38.905912 ], [ -76.925733, 38.905678 ], [ -76.925282, 38.905311 ], [ -76.925175, 38.905244 ], [ -76.925111, 38.905177 ], [ -76.925089, 38.905161 ], [ -76.925025, 38.905127 ], [ -76.925004, 38.905094 ], [ -76.924725, 38.904877 ], [ -76.924660, 38.904827 ], [ -76.924574, 38.904760 ], [ -76.924489, 38.904710 ], [ -76.924145, 38.904443 ], [ -76.923716, 38.904092 ], [ -76.923630, 38.904025 ] ] ], [ [ [ -76.923587, 38.903992 ], [ -76.923652, 38.903892 ], [ -76.923673, 38.903842 ], [ -76.923802, 38.903508 ], [ -76.923909, 38.903207 ], [ -76.924016, 38.902890 ], [ -76.924059, 38.902756 ], [ -76.924253, 38.902222 ], [ -76.924274, 38.902172 ], [ -76.924467, 38.901637 ], [ -76.924639, 38.901170 ], [ -76.924660, 38.901086 ], [ -76.924682, 38.901020 ], [ -76.924746, 38.900819 ], [ -76.924853, 38.900519 ], [ -76.924961, 38.900218 ], [ -76.925068, 38.899951 ], [ -76.925089, 38.899884 ], [ -76.925132, 38.899750 ], [ -76.925390, 38.899734 ], [ -76.925755, 38.899734 ], [ -76.926270, 38.899734 ], [ -76.926570, 38.899750 ], [ -76.926634, 38.899734 ], [ -76.926870, 38.899734 ], [ -76.927578, 38.899734 ], [ -76.927772, 38.899750 ], [ -76.927814, 38.899750 ], [ -76.928029, 38.899767 ], [ -76.928158, 38.899801 ], [ -76.928308, 38.899834 ], [ -76.928437, 38.899884 ], [ -76.928523, 38.899901 ], [ -76.928630, 38.899917 ], [ -76.928802, 38.899951 ], [ -76.928952, 38.899984 ], [ -76.929059, 38.899984 ], [ -76.929102, 38.900001 ], [ -76.929209, 38.900001 ], [ -76.929317, 38.900018 ], [ -76.929467, 38.900018 ], [ -76.929510, 38.900034 ], [ -76.929574, 38.900034 ], [ -76.929703, 38.900034 ], [ -76.929767, 38.900034 ], [ -76.929832, 38.900034 ], [ -76.929896, 38.900034 ], [ -76.930046, 38.900018 ], [ -76.930218, 38.900018 ], [ -76.930368, 38.900001 ], [ -76.930454, 38.900001 ], [ -76.930561, 38.899984 ], [ -76.930733, 38.899951 ], [ -76.931076, 38.899884 ], [ -76.931419, 38.899801 ], [ -76.931655, 38.899750 ], [ -76.931806, 38.899734 ], [ -76.931891, 38.899734 ], [ -76.931934, 38.899717 ], [ -76.932192, 38.899717 ], [ -76.932471, 38.899717 ], [ -76.932707, 38.899717 ], [ -76.932814, 38.899717 ], [ -76.933758, 38.899717 ], [ -76.933737, 38.898966 ], [ -76.933801, 38.898982 ], [ -76.934402, 38.899082 ], [ -76.935196, 38.899216 ], [ -76.935260, 38.899233 ], [ -76.935368, 38.899249 ], [ -76.935453, 38.899266 ], [ -76.935518, 38.899283 ], [ -76.935561, 38.899283 ], [ -76.935797, 38.899333 ], [ -76.935990, 38.899383 ], [ -76.936312, 38.899467 ], [ -76.936483, 38.899517 ], [ -76.936548, 38.899533 ], [ -76.936848, 38.899617 ], [ -76.936977, 38.899667 ], [ -76.937041, 38.899684 ], [ -76.937149, 38.899734 ], [ -76.937342, 38.899801 ], [ -76.937513, 38.899884 ], [ -76.938093, 38.900118 ], [ -76.938436, 38.900251 ], [ -76.938951, 38.900452 ], [ -76.939187, 38.900552 ], [ -76.939402, 38.900652 ], [ -76.941032, 38.901320 ], [ -76.941397, 38.901470 ], [ -76.941483, 38.901487 ], [ -76.941547, 38.901521 ], [ -76.941612, 38.901554 ], [ -76.941698, 38.901571 ], [ -76.941869, 38.901637 ], [ -76.941934, 38.901654 ], [ -76.942019, 38.901688 ], [ -76.942191, 38.901754 ], [ -76.942298, 38.901788 ], [ -76.942427, 38.901855 ], [ -76.942599, 38.901921 ], [ -76.942470, 38.902038 ], [ -76.942191, 38.902255 ], [ -76.941977, 38.902439 ], [ -76.941547, 38.902773 ], [ -76.941504, 38.902806 ], [ -76.941483, 38.902823 ], [ -76.941440, 38.902856 ], [ -76.941397, 38.902873 ], [ -76.941333, 38.902890 ], [ -76.941290, 38.902907 ], [ -76.941226, 38.902923 ], [ -76.941161, 38.902923 ], [ -76.941097, 38.902940 ], [ -76.941011, 38.902923 ], [ -76.940753, 38.902907 ], [ -76.940346, 38.902873 ], [ -76.939166, 38.902790 ], [ -76.938951, 38.902773 ], [ -76.938865, 38.902756 ], [ -76.938694, 38.902740 ], [ -76.938608, 38.902740 ], [ -76.938457, 38.902740 ], [ -76.938350, 38.902740 ], [ -76.938243, 38.902740 ], [ -76.937814, 38.902740 ], [ -76.937578, 38.902740 ], [ -76.937492, 38.902740 ], [ -76.936719, 38.902756 ], [ -76.936655, 38.902756 ], [ -76.936591, 38.902773 ], [ -76.936462, 38.902773 ], [ -76.936054, 38.902790 ], [ -76.935625, 38.902806 ], [ -76.935453, 38.902823 ], [ -76.935067, 38.902840 ], [ -76.934702, 38.902856 ], [ -76.934552, 38.902856 ], [ -76.933866, 38.902890 ], [ -76.933758, 38.902890 ], [ -76.933565, 38.902907 ], [ -76.932793, 38.902940 ], [ -76.932707, 38.902940 ], [ -76.932299, 38.902973 ], [ -76.932170, 38.902973 ], [ -76.932042, 38.902990 ], [ -76.931913, 38.903007 ], [ -76.931806, 38.903023 ], [ -76.931655, 38.903040 ], [ -76.931484, 38.903074 ], [ -76.931355, 38.903107 ], [ -76.931205, 38.903157 ], [ -76.931076, 38.903190 ], [ -76.930947, 38.903240 ], [ -76.930690, 38.903324 ], [ -76.930668, 38.903324 ], [ -76.930625, 38.903341 ], [ -76.930518, 38.903374 ], [ -76.930411, 38.903391 ], [ -76.930304, 38.903424 ], [ -76.930196, 38.903441 ], [ -76.930110, 38.903458 ], [ -76.930003, 38.903474 ], [ -76.929832, 38.903508 ], [ -76.929638, 38.903524 ], [ -76.929531, 38.903524 ], [ -76.929424, 38.903524 ], [ -76.929209, 38.903524 ], [ -76.928844, 38.903524 ], [ -76.928716, 38.903508 ], [ -76.928587, 38.903508 ], [ -76.928201, 38.903491 ], [ -76.927965, 38.903491 ], [ -76.927729, 38.903474 ], [ -76.927686, 38.903474 ], [ -76.927364, 38.903474 ], [ -76.927106, 38.903474 ], [ -76.926870, 38.903491 ], [ -76.926720, 38.903508 ], [ -76.926463, 38.903524 ], [ -76.926420, 38.903524 ], [ -76.926312, 38.903541 ], [ -76.926270, 38.903541 ], [ -76.926184, 38.903558 ], [ -76.926012, 38.903574 ], [ -76.925840, 38.903608 ], [ -76.924961, 38.903758 ], [ -76.924810, 38.903775 ], [ -76.924467, 38.903842 ], [ -76.923974, 38.903925 ], [ -76.923587, 38.903992 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007804", "GEOID": "11001007804", "NAME": "78.04", "NAMELSAD": "Census Tract 78.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 838428, "AWATER": 5705, "INTPTLAT": "+38.8942107", "INTPTLON": "-076.9313427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.939187, 38.900552 ], [ -76.938951, 38.900452 ], [ -76.938436, 38.900251 ], [ -76.938093, 38.900118 ], [ -76.937513, 38.899884 ], [ -76.937342, 38.899801 ], [ -76.937149, 38.899734 ], [ -76.937041, 38.899684 ], [ -76.936977, 38.899667 ], [ -76.936848, 38.899617 ], [ -76.936548, 38.899533 ], [ -76.936483, 38.899517 ], [ -76.936312, 38.899467 ], [ -76.935990, 38.899383 ], [ -76.935797, 38.899333 ], [ -76.935561, 38.899283 ], [ -76.935518, 38.899283 ], [ -76.935453, 38.899266 ], [ -76.935368, 38.899249 ], [ -76.935260, 38.899233 ], [ -76.935196, 38.899216 ], [ -76.934402, 38.899082 ], [ -76.933801, 38.898982 ], [ -76.933737, 38.898966 ], [ -76.933758, 38.899717 ], [ -76.932814, 38.899717 ], [ -76.932707, 38.899717 ], [ -76.932471, 38.899717 ], [ -76.932192, 38.899717 ], [ -76.931934, 38.899717 ], [ -76.931891, 38.899734 ], [ -76.931806, 38.899734 ], [ -76.931655, 38.899750 ], [ -76.931419, 38.899801 ], [ -76.931076, 38.899884 ], [ -76.930733, 38.899951 ], [ -76.930561, 38.899984 ], [ -76.930454, 38.900001 ], [ -76.930368, 38.900001 ], [ -76.930218, 38.900018 ], [ -76.930046, 38.900018 ], [ -76.929896, 38.900034 ], [ -76.929832, 38.900034 ], [ -76.929767, 38.900034 ], [ -76.929703, 38.900034 ], [ -76.929574, 38.900034 ], [ -76.929510, 38.900034 ], [ -76.929467, 38.900018 ], [ -76.929317, 38.900018 ], [ -76.929209, 38.900001 ], [ -76.929102, 38.900001 ], [ -76.929059, 38.899984 ], [ -76.928952, 38.899984 ], [ -76.928802, 38.899951 ], [ -76.928630, 38.899917 ], [ -76.928523, 38.899901 ], [ -76.928437, 38.899884 ], [ -76.928308, 38.899834 ], [ -76.928158, 38.899801 ], [ -76.928029, 38.899767 ], [ -76.927814, 38.899750 ], [ -76.927772, 38.899750 ], [ -76.927578, 38.899734 ], [ -76.926870, 38.899734 ], [ -76.926634, 38.899734 ], [ -76.926570, 38.899750 ], [ -76.926270, 38.899734 ], [ -76.925755, 38.899734 ], [ -76.925390, 38.899734 ], [ -76.925132, 38.899750 ], [ -76.925218, 38.899500 ], [ -76.925304, 38.899316 ], [ -76.925411, 38.898999 ], [ -76.925497, 38.898732 ], [ -76.925626, 38.898448 ], [ -76.925669, 38.898348 ], [ -76.925712, 38.898231 ], [ -76.925733, 38.898164 ], [ -76.925819, 38.897947 ], [ -76.925905, 38.897663 ], [ -76.926012, 38.897379 ], [ -76.926055, 38.897262 ], [ -76.926076, 38.897162 ], [ -76.926119, 38.897062 ], [ -76.926141, 38.897028 ], [ -76.926270, 38.896644 ], [ -76.926270, 38.896611 ], [ -76.926291, 38.896544 ], [ -76.926334, 38.896427 ], [ -76.926377, 38.896310 ], [ -76.926548, 38.895809 ], [ -76.926591, 38.895726 ], [ -76.926591, 38.895692 ], [ -76.926742, 38.895308 ], [ -76.926999, 38.894573 ], [ -76.927042, 38.894473 ], [ -76.927321, 38.893672 ], [ -76.927407, 38.893438 ], [ -76.927493, 38.893237 ], [ -76.927600, 38.892937 ], [ -76.927621, 38.892837 ], [ -76.927879, 38.892135 ], [ -76.927922, 38.892002 ], [ -76.927943, 38.891935 ], [ -76.927943, 38.891885 ], [ -76.927965, 38.891834 ], [ -76.927965, 38.891784 ], [ -76.927965, 38.891551 ], [ -76.927965, 38.891300 ], [ -76.927965, 38.891016 ], [ -76.927965, 38.890849 ], [ -76.927965, 38.890782 ], [ -76.927965, 38.890398 ], [ -76.927965, 38.890131 ], [ -76.927965, 38.889964 ], [ -76.927965, 38.889914 ], [ -76.927965, 38.889814 ], [ -76.930046, 38.889814 ], [ -76.930068, 38.889814 ], [ -76.930153, 38.889814 ], [ -76.930389, 38.889830 ], [ -76.930776, 38.889830 ], [ -76.931162, 38.889814 ], [ -76.931827, 38.889814 ], [ -76.932020, 38.889797 ], [ -76.932042, 38.889797 ], [ -76.932771, 38.889814 ], [ -76.934381, 38.889830 ], [ -76.934874, 38.889830 ], [ -76.934874, 38.890281 ], [ -76.934874, 38.890398 ], [ -76.934874, 38.890682 ], [ -76.934874, 38.891016 ], [ -76.934874, 38.891350 ], [ -76.934874, 38.891801 ], [ -76.934874, 38.891885 ], [ -76.934874, 38.892486 ], [ -76.934874, 38.892870 ], [ -76.934874, 38.893588 ], [ -76.934874, 38.893738 ], [ -76.934874, 38.894273 ], [ -76.934874, 38.894557 ], [ -76.934874, 38.895008 ], [ -76.934874, 38.895726 ], [ -76.934874, 38.895826 ], [ -76.934874, 38.895859 ], [ -76.934874, 38.895926 ], [ -76.934874, 38.896010 ], [ -76.934874, 38.896043 ], [ -76.934896, 38.896143 ], [ -76.934896, 38.896177 ], [ -76.934917, 38.896243 ], [ -76.934917, 38.896310 ], [ -76.934938, 38.896360 ], [ -76.934960, 38.896394 ], [ -76.934981, 38.896477 ], [ -76.935024, 38.896527 ], [ -76.935067, 38.896611 ], [ -76.935110, 38.896694 ], [ -76.935153, 38.896728 ], [ -76.935196, 38.896795 ], [ -76.935239, 38.896845 ], [ -76.935282, 38.896878 ], [ -76.935303, 38.896911 ], [ -76.935389, 38.896978 ], [ -76.935432, 38.897012 ], [ -76.935475, 38.897062 ], [ -76.935518, 38.897095 ], [ -76.935582, 38.897145 ], [ -76.935625, 38.897162 ], [ -76.935668, 38.897179 ], [ -76.935689, 38.897212 ], [ -76.935732, 38.897229 ], [ -76.935797, 38.897262 ], [ -76.935861, 38.897279 ], [ -76.935925, 38.897312 ], [ -76.935990, 38.897346 ], [ -76.936076, 38.897362 ], [ -76.936140, 38.897396 ], [ -76.936183, 38.897412 ], [ -76.936226, 38.897429 ], [ -76.936269, 38.897429 ], [ -76.936312, 38.897446 ], [ -76.936440, 38.897479 ], [ -76.936526, 38.897479 ], [ -76.936612, 38.897496 ], [ -76.936591, 38.897529 ], [ -76.936591, 38.897546 ], [ -76.936591, 38.897579 ], [ -76.936591, 38.897630 ], [ -76.936591, 38.897964 ], [ -76.936591, 38.898214 ], [ -76.936591, 38.898264 ], [ -76.936591, 38.898314 ], [ -76.936634, 38.898314 ], [ -76.936677, 38.898314 ], [ -76.936827, 38.898348 ], [ -76.936913, 38.898348 ], [ -76.937020, 38.898364 ], [ -76.937149, 38.898364 ], [ -76.937213, 38.898364 ], [ -76.937234, 38.898364 ], [ -76.938093, 38.898364 ], [ -76.938350, 38.898364 ], [ -76.938586, 38.898364 ], [ -76.938844, 38.898364 ], [ -76.939123, 38.898364 ], [ -76.939187, 38.898364 ], [ -76.939187, 38.898632 ], [ -76.939187, 38.898698 ], [ -76.939187, 38.899049 ], [ -76.939187, 38.899433 ], [ -76.939187, 38.899734 ], [ -76.939187, 38.900101 ], [ -76.939187, 38.900418 ], [ -76.939187, 38.900552 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007807", "GEOID": "11001007807", "NAME": "78.07", "NAMELSAD": "Census Tract 78.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 522749, "AWATER": 0, "INTPTLAT": "+38.8985783", "INTPTLON": "-076.9210632" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.923587, 38.903992 ], [ -76.923544, 38.903959 ], [ -76.923437, 38.903875 ], [ -76.923351, 38.903808 ], [ -76.923137, 38.903625 ], [ -76.922750, 38.903341 ], [ -76.922364, 38.903040 ], [ -76.922278, 38.902973 ], [ -76.922085, 38.902823 ], [ -76.921957, 38.902706 ], [ -76.921678, 38.902489 ], [ -76.921570, 38.902406 ], [ -76.921506, 38.902355 ], [ -76.921442, 38.902305 ], [ -76.921377, 38.902255 ], [ -76.921356, 38.902239 ], [ -76.921098, 38.902038 ], [ -76.921012, 38.901971 ], [ -76.920948, 38.901921 ], [ -76.920841, 38.901838 ], [ -76.920755, 38.901771 ], [ -76.920562, 38.901621 ], [ -76.920261, 38.901387 ], [ -76.920047, 38.901220 ], [ -76.920004, 38.901187 ], [ -76.919940, 38.901136 ], [ -76.919854, 38.901070 ], [ -76.919596, 38.900869 ], [ -76.919532, 38.900819 ], [ -76.919274, 38.900619 ], [ -76.919188, 38.900552 ], [ -76.919124, 38.900485 ], [ -76.919081, 38.900452 ], [ -76.919060, 38.900435 ], [ -76.918974, 38.900368 ], [ -76.918867, 38.900301 ], [ -76.918759, 38.900201 ], [ -76.918480, 38.899984 ], [ -76.918266, 38.899817 ], [ -76.918201, 38.899767 ], [ -76.918051, 38.899667 ], [ -76.918008, 38.899617 ], [ -76.917944, 38.899583 ], [ -76.917772, 38.899433 ], [ -76.917751, 38.899416 ], [ -76.917686, 38.899366 ], [ -76.917558, 38.899266 ], [ -76.917536, 38.899249 ], [ -76.917493, 38.899216 ], [ -76.917472, 38.899199 ], [ -76.917429, 38.899166 ], [ -76.917386, 38.899133 ], [ -76.917343, 38.899099 ], [ -76.917300, 38.899066 ], [ -76.917257, 38.899032 ], [ -76.917214, 38.898999 ], [ -76.917171, 38.898966 ], [ -76.917150, 38.898949 ], [ -76.917129, 38.898932 ], [ -76.917107, 38.898915 ], [ -76.916978, 38.898815 ], [ -76.916721, 38.898598 ], [ -76.916485, 38.898414 ], [ -76.916034, 38.898080 ], [ -76.915927, 38.897980 ], [ -76.915648, 38.897763 ], [ -76.915605, 38.897730 ], [ -76.915219, 38.897429 ], [ -76.915090, 38.897346 ], [ -76.915026, 38.897279 ], [ -76.915004, 38.897262 ], [ -76.914940, 38.897212 ], [ -76.914897, 38.897179 ], [ -76.914489, 38.896861 ], [ -76.914103, 38.896561 ], [ -76.913824, 38.896344 ], [ -76.913781, 38.896294 ], [ -76.913545, 38.896110 ], [ -76.913481, 38.896076 ], [ -76.913416, 38.896010 ], [ -76.913502, 38.895943 ], [ -76.913588, 38.895876 ], [ -76.913610, 38.895859 ], [ -76.913631, 38.895843 ], [ -76.913652, 38.895809 ], [ -76.913760, 38.895809 ], [ -76.913953, 38.895809 ], [ -76.914146, 38.895809 ], [ -76.914833, 38.895809 ], [ -76.915026, 38.895809 ], [ -76.915112, 38.895809 ], [ -76.915627, 38.895809 ], [ -76.915948, 38.895809 ], [ -76.916292, 38.895809 ], [ -76.916399, 38.895809 ], [ -76.916506, 38.895809 ], [ -76.916828, 38.895809 ], [ -76.917064, 38.895809 ], [ -76.917343, 38.895809 ], [ -76.917772, 38.895809 ], [ -76.917901, 38.895809 ], [ -76.918137, 38.895809 ], [ -76.918416, 38.895809 ], [ -76.918781, 38.895809 ], [ -76.919146, 38.895809 ], [ -76.920004, 38.895809 ], [ -76.920497, 38.895809 ], [ -76.920605, 38.895809 ], [ -76.920905, 38.895809 ], [ -76.921077, 38.895793 ], [ -76.921549, 38.895809 ], [ -76.921763, 38.895809 ], [ -76.921892, 38.895809 ], [ -76.921999, 38.895809 ], [ -76.922085, 38.895809 ], [ -76.922450, 38.895809 ], [ -76.922772, 38.895809 ], [ -76.923094, 38.895809 ], [ -76.923888, 38.895809 ], [ -76.924102, 38.895809 ], [ -76.924231, 38.895809 ], [ -76.924274, 38.895826 ], [ -76.924317, 38.895826 ], [ -76.924338, 38.895843 ], [ -76.924381, 38.895843 ], [ -76.924489, 38.895876 ], [ -76.924531, 38.895893 ], [ -76.924574, 38.895893 ], [ -76.925046, 38.895909 ], [ -76.925132, 38.895893 ], [ -76.925240, 38.895960 ], [ -76.925304, 38.896010 ], [ -76.925390, 38.896060 ], [ -76.925519, 38.896143 ], [ -76.925604, 38.896177 ], [ -76.925647, 38.896193 ], [ -76.925690, 38.896277 ], [ -76.925733, 38.896310 ], [ -76.925819, 38.896344 ], [ -76.925969, 38.896410 ], [ -76.926012, 38.896444 ], [ -76.926076, 38.896494 ], [ -76.926184, 38.896561 ], [ -76.926270, 38.896611 ], [ -76.926270, 38.896644 ], [ -76.926141, 38.897028 ], [ -76.926119, 38.897062 ], [ -76.926076, 38.897162 ], [ -76.926055, 38.897262 ], [ -76.926012, 38.897379 ], [ -76.925905, 38.897663 ], [ -76.925819, 38.897947 ], [ -76.925733, 38.898164 ], [ -76.925712, 38.898231 ], [ -76.925669, 38.898348 ], [ -76.925626, 38.898448 ], [ -76.925497, 38.898732 ], [ -76.925411, 38.898999 ], [ -76.925304, 38.899316 ], [ -76.925218, 38.899500 ], [ -76.925132, 38.899750 ], [ -76.925089, 38.899884 ], [ -76.925068, 38.899951 ], [ -76.924961, 38.900218 ], [ -76.924853, 38.900519 ], [ -76.924746, 38.900819 ], [ -76.924682, 38.901020 ], [ -76.924660, 38.901086 ], [ -76.924639, 38.901170 ], [ -76.924467, 38.901637 ], [ -76.924274, 38.902172 ], [ -76.924253, 38.902222 ], [ -76.924059, 38.902756 ], [ -76.924016, 38.902890 ], [ -76.923909, 38.903207 ], [ -76.923802, 38.903508 ], [ -76.923673, 38.903842 ], [ -76.923652, 38.903892 ], [ -76.923587, 38.903992 ] ] ], [ [ [ -76.909382, 38.892853 ], [ -76.909640, 38.892636 ], [ -76.910520, 38.891935 ], [ -76.910541, 38.891918 ], [ -76.910734, 38.891784 ], [ -76.911142, 38.891500 ], [ -76.911743, 38.891016 ], [ -76.911807, 38.890966 ], [ -76.911914, 38.890883 ], [ -76.912065, 38.890782 ], [ -76.912344, 38.890565 ], [ -76.912408, 38.890515 ], [ -76.912494, 38.890448 ], [ -76.912687, 38.890298 ], [ -76.912773, 38.890214 ], [ -76.912794, 38.890198 ], [ -76.912923, 38.890114 ], [ -76.913009, 38.890047 ], [ -76.913159, 38.889931 ], [ -76.913180, 38.889897 ], [ -76.913331, 38.889797 ], [ -76.913502, 38.889797 ], [ -76.913652, 38.889780 ], [ -76.913781, 38.889797 ], [ -76.914039, 38.889780 ], [ -76.914167, 38.889780 ], [ -76.914382, 38.889780 ], [ -76.914597, 38.889797 ], [ -76.914725, 38.889780 ], [ -76.915562, 38.889797 ], [ -76.915712, 38.889797 ], [ -76.916163, 38.889797 ], [ -76.916678, 38.889797 ], [ -76.917236, 38.889797 ], [ -76.917622, 38.889797 ], [ -76.917772, 38.889797 ], [ -76.919403, 38.889814 ], [ -76.920691, 38.889814 ], [ -76.922901, 38.889797 ], [ -76.923952, 38.889814 ], [ -76.925004, 38.889814 ], [ -76.926055, 38.889814 ], [ -76.926162, 38.889814 ], [ -76.927171, 38.889814 ], [ -76.927965, 38.889814 ], [ -76.927965, 38.889914 ], [ -76.927965, 38.889964 ], [ -76.927965, 38.890131 ], [ -76.927965, 38.890398 ], [ -76.927965, 38.890782 ], [ -76.927965, 38.890849 ], [ -76.927965, 38.891016 ], [ -76.927965, 38.891300 ], [ -76.927965, 38.891551 ], [ -76.927965, 38.891784 ], [ -76.927965, 38.891834 ], [ -76.927943, 38.891885 ], [ -76.927943, 38.891935 ], [ -76.927922, 38.892002 ], [ -76.927879, 38.892135 ], [ -76.927621, 38.892837 ], [ -76.927600, 38.892937 ], [ -76.927493, 38.893237 ], [ -76.927407, 38.893438 ], [ -76.927321, 38.893672 ], [ -76.927042, 38.894473 ], [ -76.926999, 38.894573 ], [ -76.926742, 38.895308 ], [ -76.926591, 38.895692 ], [ -76.926591, 38.895726 ], [ -76.926548, 38.895809 ], [ -76.926377, 38.896310 ], [ -76.926334, 38.896427 ], [ -76.926291, 38.896544 ], [ -76.926270, 38.896611 ], [ -76.926184, 38.896561 ], [ -76.926076, 38.896494 ], [ -76.926012, 38.896444 ], [ -76.925969, 38.896410 ], [ -76.925819, 38.896344 ], [ -76.925733, 38.896310 ], [ -76.925690, 38.896277 ], [ -76.925647, 38.896193 ], [ -76.925604, 38.896177 ], [ -76.925519, 38.896143 ], [ -76.925390, 38.896060 ], [ -76.925304, 38.896010 ], [ -76.925240, 38.895960 ], [ -76.925132, 38.895893 ], [ -76.925046, 38.895909 ], [ -76.924574, 38.895893 ], [ -76.924531, 38.895893 ], [ -76.924489, 38.895876 ], [ -76.924381, 38.895843 ], [ -76.924338, 38.895843 ], [ -76.924317, 38.895826 ], [ -76.924274, 38.895826 ], [ -76.924231, 38.895809 ], [ -76.924102, 38.895809 ], [ -76.923888, 38.895809 ], [ -76.923094, 38.895809 ], [ -76.922772, 38.895809 ], [ -76.922450, 38.895809 ], [ -76.922085, 38.895809 ], [ -76.921999, 38.895809 ], [ -76.921892, 38.895809 ], [ -76.921763, 38.895809 ], [ -76.921549, 38.895809 ], [ -76.921077, 38.895793 ], [ -76.920905, 38.895809 ], [ -76.920605, 38.895809 ], [ -76.920497, 38.895809 ], [ -76.920004, 38.895809 ], [ -76.919146, 38.895809 ], [ -76.918781, 38.895809 ], [ -76.918416, 38.895809 ], [ -76.918137, 38.895809 ], [ -76.917901, 38.895809 ], [ -76.917772, 38.895809 ], [ -76.917343, 38.895809 ], [ -76.917064, 38.895809 ], [ -76.916828, 38.895809 ], [ -76.916506, 38.895809 ], [ -76.916399, 38.895809 ], [ -76.916292, 38.895809 ], [ -76.915948, 38.895809 ], [ -76.915627, 38.895809 ], [ -76.915112, 38.895809 ], [ -76.915026, 38.895809 ], [ -76.914833, 38.895809 ], [ -76.914146, 38.895809 ], [ -76.913953, 38.895809 ], [ -76.913760, 38.895809 ], [ -76.913652, 38.895809 ], [ -76.913631, 38.895843 ], [ -76.913610, 38.895859 ], [ -76.913588, 38.895876 ], [ -76.913502, 38.895943 ], [ -76.913416, 38.896010 ], [ -76.913309, 38.895943 ], [ -76.913245, 38.895893 ], [ -76.913159, 38.895809 ], [ -76.912966, 38.895676 ], [ -76.912858, 38.895575 ], [ -76.912773, 38.895509 ], [ -76.912708, 38.895459 ], [ -76.912687, 38.895442 ], [ -76.912451, 38.895258 ], [ -76.912408, 38.895225 ], [ -76.912279, 38.895141 ], [ -76.911871, 38.894807 ], [ -76.911485, 38.894523 ], [ -76.911399, 38.894473 ], [ -76.911314, 38.894406 ], [ -76.911271, 38.894373 ], [ -76.911206, 38.894323 ], [ -76.911077, 38.894223 ], [ -76.910949, 38.894106 ], [ -76.910927, 38.894089 ], [ -76.910884, 38.894056 ], [ -76.910820, 38.894006 ], [ -76.910691, 38.893905 ], [ -76.910498, 38.893755 ], [ -76.909575, 38.893004 ], [ -76.909382, 38.892853 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006700", "GEOID": "11001006700", "NAME": "67", "NAMELSAD": "Census Tract 67", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 428358, "AWATER": 0, "INTPTLAT": "+38.8875984", "INTPTLON": "-076.9899590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.889697 ], [ -76.993904, 38.889797 ], [ -76.993754, 38.889797 ], [ -76.993089, 38.889797 ], [ -76.992638, 38.889797 ], [ -76.991801, 38.889797 ], [ -76.991522, 38.889797 ], [ -76.991522, 38.889697 ], [ -76.988325, 38.889697 ], [ -76.988325, 38.889764 ], [ -76.988304, 38.889797 ], [ -76.987875, 38.889797 ], [ -76.987424, 38.889797 ], [ -76.985621, 38.889797 ], [ -76.985493, 38.889797 ], [ -76.983647, 38.889797 ], [ -76.983647, 38.889697 ], [ -76.993904, 38.889697 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006801", "GEOID": "11001006801", "NAME": "68.01", "NAMELSAD": "Census Tract 68.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 244750, "AWATER": 0, "INTPTLAT": "+38.8877413", "INTPTLON": "-076.9801087" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.983647, 38.889697 ], [ -76.983647, 38.889797 ], [ -76.983325, 38.889797 ], [ -76.982982, 38.889797 ], [ -76.982210, 38.889797 ], [ -76.980751, 38.889797 ], [ -76.978991, 38.889797 ], [ -76.978540, 38.889797 ], [ -76.977253, 38.889797 ], [ -76.977253, 38.889697 ], [ -76.983647, 38.889697 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006804", "GEOID": "11001006804", "NAME": "68.04", "NAMELSAD": "Census Tract 68.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1542277, "AWATER": 477741, "INTPTLAT": "+38.8863842", "INTPTLON": "-076.9704836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.977253, 38.889697 ], [ -76.977253, 38.889797 ], [ -76.976995, 38.889864 ], [ -76.976953, 38.889864 ], [ -76.976910, 38.889864 ], [ -76.976867, 38.889880 ], [ -76.976845, 38.889880 ], [ -76.976802, 38.889897 ], [ -76.976738, 38.889914 ], [ -76.976717, 38.889914 ], [ -76.976652, 38.889947 ], [ -76.976609, 38.889981 ], [ -76.976545, 38.890014 ], [ -76.976502, 38.890031 ], [ -76.976459, 38.890064 ], [ -76.976395, 38.890081 ], [ -76.976330, 38.890098 ], [ -76.976309, 38.890114 ], [ -76.976266, 38.890114 ], [ -76.976244, 38.890114 ], [ -76.975365, 38.890114 ], [ -76.974850, 38.890114 ], [ -76.974635, 38.890114 ], [ -76.974442, 38.890114 ], [ -76.974378, 38.890114 ], [ -76.974335, 38.890114 ], [ -76.974292, 38.890131 ], [ -76.974270, 38.890131 ], [ -76.974206, 38.890164 ], [ -76.974185, 38.890181 ], [ -76.974099, 38.890214 ], [ -76.974034, 38.890248 ], [ -76.974013, 38.890281 ], [ -76.973970, 38.890298 ], [ -76.973948, 38.890315 ], [ -76.973948, 38.890331 ], [ -76.973927, 38.890365 ], [ -76.973906, 38.890381 ], [ -76.973884, 38.890415 ], [ -76.973884, 38.890448 ], [ -76.973863, 38.890482 ], [ -76.973841, 38.890515 ], [ -76.973820, 38.890582 ], [ -76.973841, 38.890949 ], [ -76.973841, 38.891100 ], [ -76.973863, 38.891183 ], [ -76.973863, 38.891283 ], [ -76.973884, 38.891367 ], [ -76.973906, 38.891517 ], [ -76.973927, 38.891684 ], [ -76.973948, 38.891784 ], [ -76.973970, 38.891851 ], [ -76.974013, 38.892002 ], [ -76.974034, 38.892035 ], [ -76.974056, 38.892118 ], [ -76.974077, 38.892219 ], [ -76.974120, 38.892302 ], [ -76.974142, 38.892336 ], [ -76.974163, 38.892386 ], [ -76.974185, 38.892436 ], [ -76.974206, 38.892469 ], [ -76.974227, 38.892519 ], [ -76.974249, 38.892553 ], [ -76.974292, 38.892603 ], [ -76.974356, 38.892670 ], [ -76.974399, 38.892720 ], [ -76.974421, 38.892753 ], [ -76.974506, 38.892820 ], [ -76.974571, 38.892870 ], [ -76.974635, 38.892920 ], [ -76.974699, 38.892953 ], [ -76.974785, 38.893004 ], [ -76.974850, 38.893037 ], [ -76.974893, 38.893054 ], [ -76.974957, 38.893087 ], [ -76.975000, 38.893104 ], [ -76.975021, 38.893120 ], [ -76.975086, 38.893137 ], [ -76.975150, 38.893287 ], [ -76.975150, 38.893471 ], [ -76.975150, 38.893521 ], [ -76.975150, 38.893555 ], [ -76.975129, 38.893571 ], [ -76.975129, 38.893605 ], [ -76.975129, 38.893638 ], [ -76.975107, 38.893688 ], [ -76.975107, 38.893738 ], [ -76.975086, 38.893839 ], [ -76.975043, 38.893922 ], [ -76.975021, 38.893972 ], [ -76.975000, 38.894039 ], [ -76.974957, 38.894123 ], [ -76.974936, 38.894156 ], [ -76.974893, 38.894223 ], [ -76.974871, 38.894256 ], [ -76.974807, 38.894340 ], [ -76.974764, 38.894406 ], [ -76.974699, 38.894473 ], [ -76.974614, 38.894557 ], [ -76.974571, 38.894607 ], [ -76.974506, 38.894657 ], [ -76.974463, 38.894690 ], [ -76.974399, 38.894724 ], [ -76.974356, 38.894757 ], [ -76.974249, 38.894824 ], [ -76.974185, 38.894857 ], [ -76.974120, 38.894891 ], [ -76.974013, 38.894958 ], [ -76.973948, 38.894974 ], [ -76.973906, 38.895008 ], [ -76.973841, 38.895024 ], [ -76.973755, 38.895058 ], [ -76.973670, 38.895074 ], [ -76.973605, 38.895108 ], [ -76.973090, 38.895241 ], [ -76.972983, 38.895275 ], [ -76.971846, 38.895575 ], [ -76.971717, 38.895609 ], [ -76.971610, 38.895642 ], [ -76.971502, 38.895676 ], [ -76.971438, 38.895692 ], [ -76.971395, 38.895726 ], [ -76.971374, 38.895726 ], [ -76.971331, 38.895759 ], [ -76.971288, 38.895776 ], [ -76.971223, 38.895809 ], [ -76.971159, 38.895859 ], [ -76.971095, 38.895893 ], [ -76.971030, 38.895943 ], [ -76.970966, 38.895993 ], [ -76.970687, 38.896294 ], [ -76.969571, 38.897529 ], [ -76.969528, 38.897596 ], [ -76.969507, 38.897630 ], [ -76.969464, 38.897763 ], [ -76.968799, 38.897680 ], [ -76.968069, 38.897630 ], [ -76.966331, 38.897496 ], [ -76.965623, 38.897429 ], [ -76.962490, 38.897162 ], [ -76.961975, 38.897129 ], [ -76.961975, 38.897095 ], [ -76.961954, 38.896995 ], [ -76.961803, 38.896127 ], [ -76.961846, 38.895292 ], [ -76.962533, 38.893287 ], [ -76.963263, 38.890348 ], [ -76.963370, 38.889864 ], [ -76.963370, 38.889797 ], [ -76.963434, 38.889730 ], [ -76.963456, 38.889697 ], [ -76.977253, 38.889697 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007708", "GEOID": "11001007708", "NAME": "77.08", "NAMELSAD": "Census Tract 77.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 745809, "AWATER": 129100, "INTPTLAT": "+38.8871944", "INTPTLON": "-076.9606349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963456, 38.889697 ], [ -76.963434, 38.889730 ], [ -76.963370, 38.889797 ], [ -76.963370, 38.889864 ], [ -76.962619, 38.889864 ], [ -76.962426, 38.889847 ], [ -76.961567, 38.889847 ], [ -76.961224, 38.889847 ], [ -76.959808, 38.889847 ], [ -76.958585, 38.889814 ], [ -76.958241, 38.889830 ], [ -76.958091, 38.889814 ], [ -76.957340, 38.889830 ], [ -76.957190, 38.889830 ], [ -76.956739, 38.889830 ], [ -76.956718, 38.889830 ], [ -76.955903, 38.889830 ], [ -76.954594, 38.889814 ], [ -76.953692, 38.889814 ], [ -76.953092, 38.889814 ], [ -76.953006, 38.889814 ], [ -76.953070, 38.889730 ], [ -76.953092, 38.889697 ], [ -76.963456, 38.889697 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007703", "GEOID": "11001007703", "NAME": "77.03", "NAMELSAD": "Census Tract 77.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1017741, "AWATER": 1059, "INTPTLAT": "+38.8863224", "INTPTLON": "-076.9474550" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -76.937878, 38.889880 ], [ -76.938028, 38.889847 ], [ -76.938114, 38.889814 ], [ -76.938157, 38.889797 ], [ -76.938200, 38.889764 ], [ -76.938243, 38.889730 ], [ -76.938264, 38.889697 ], [ -76.953092, 38.889697 ], [ -76.953070, 38.889730 ], [ -76.953006, 38.889814 ], [ -76.951933, 38.889814 ], [ -76.950731, 38.889830 ], [ -76.950088, 38.889847 ], [ -76.948800, 38.889814 ], [ -76.948285, 38.889814 ], [ -76.947234, 38.889830 ], [ -76.944551, 38.889830 ], [ -76.942792, 38.889830 ], [ -76.940882, 38.889830 ], [ -76.940002, 38.889847 ], [ -76.939809, 38.889864 ], [ -76.939552, 38.889880 ], [ -76.939380, 38.889880 ], [ -76.937878, 38.889880 ] ] ], [ [ [ -76.938264, 38.889697 ], [ -76.938243, 38.889730 ], [ -76.938200, 38.889764 ], [ -76.938157, 38.889797 ], [ -76.938114, 38.889814 ], [ -76.938028, 38.889847 ], [ -76.937878, 38.889880 ], [ -76.937578, 38.889880 ], [ -76.937277, 38.889897 ], [ -76.936612, 38.889880 ], [ -76.936097, 38.889880 ], [ -76.935689, 38.889847 ], [ -76.935518, 38.889830 ], [ -76.934874, 38.889830 ], [ -76.934381, 38.889830 ], [ -76.932771, 38.889814 ], [ -76.932042, 38.889797 ], [ -76.932042, 38.889764 ], [ -76.932063, 38.889697 ], [ -76.938264, 38.889697 ] ] ], [ [ [ -76.932063, 38.889697 ], [ -76.932042, 38.889764 ], [ -76.932042, 38.889797 ], [ -76.932020, 38.889797 ], [ -76.931827, 38.889814 ], [ -76.931162, 38.889814 ], [ -76.930776, 38.889830 ], [ -76.930389, 38.889830 ], [ -76.930153, 38.889814 ], [ -76.930068, 38.889814 ], [ -76.930046, 38.889814 ], [ -76.930046, 38.889713 ], [ -76.930046, 38.889697 ], [ -76.932063, 38.889697 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009903", "GEOID": "11001009903", "NAME": "99.03", "NAMELSAD": "Census Tract 99.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 383679, "AWATER": 0, "INTPTLAT": "+38.8883180", "INTPTLON": "-076.9212121" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.913373, 38.889747 ], [ -76.913459, 38.889697 ], [ -76.930046, 38.889697 ], [ -76.930046, 38.889713 ], [ -76.930046, 38.889814 ], [ -76.927965, 38.889814 ], [ -76.927171, 38.889814 ], [ -76.926162, 38.889814 ], [ -76.926055, 38.889814 ], [ -76.925004, 38.889814 ], [ -76.923952, 38.889814 ], [ -76.922901, 38.889797 ], [ -76.920691, 38.889814 ], [ -76.919403, 38.889814 ], [ -76.917772, 38.889797 ], [ -76.917622, 38.889797 ], [ -76.917236, 38.889797 ], [ -76.916678, 38.889797 ], [ -76.916163, 38.889797 ], [ -76.915712, 38.889797 ], [ -76.915562, 38.889797 ], [ -76.914725, 38.889780 ], [ -76.914597, 38.889797 ], [ -76.914382, 38.889780 ], [ -76.914167, 38.889780 ], [ -76.914039, 38.889780 ], [ -76.913781, 38.889797 ], [ -76.913652, 38.889780 ], [ -76.913502, 38.889797 ], [ -76.913331, 38.889797 ], [ -76.913373, 38.889747 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 1172, "y": 1565 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 262144 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009507", "GEOID": "11001009507", "NAME": "95.07", "NAMELSAD": "Census Tract 95.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295290, "AWATER": 0, "INTPTLAT": "+38.9584945", "INTPTLON": "-076.9977787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993904, 38.959022 ], [ -76.993700, 38.958862 ], [ -76.993271, 38.958529 ], [ -76.993244, 38.958508 ], [ -76.993073, 38.958374 ], [ -76.992874, 38.958220 ], [ -76.992740, 38.958111 ], [ -76.992692, 38.958074 ], [ -76.993904, 38.958074 ], [ -76.993904, 38.959022 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2341, "y": 3133 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000902", "GEOID": "11001000902", "NAME": "9.02", "NAMELSAD": "Census Tract 9.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1867106, "AWATER": 307257, "INTPTLAT": "+38.9285125", "INTPTLON": "-077.1077517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.105157, 38.917303 ], [ -77.105162, 38.917333 ], [ -77.105189, 38.917345 ], [ -77.105216, 38.917345 ], [ -77.105237, 38.917337 ], [ -77.105264, 38.917337 ], [ -77.105291, 38.917341 ], [ -77.105312, 38.917358 ], [ -77.105334, 38.917370 ], [ -77.105345, 38.917391 ], [ -77.105350, 38.917412 ], [ -77.105355, 38.917445 ], [ -77.105366, 38.917462 ], [ -77.105387, 38.917454 ], [ -77.105414, 38.917454 ], [ -77.105436, 38.917462 ], [ -77.105441, 38.917483 ], [ -77.105446, 38.917508 ], [ -77.105463, 38.917525 ], [ -77.105489, 38.917546 ], [ -77.105505, 38.917562 ], [ -77.105516, 38.917583 ], [ -77.105527, 38.917604 ], [ -77.105548, 38.917621 ], [ -77.105586, 38.917629 ], [ -77.105586, 38.917654 ], [ -77.105581, 38.917679 ], [ -77.105602, 38.917696 ], [ -77.105597, 38.917712 ], [ -77.105591, 38.917733 ], [ -77.105591, 38.917750 ], [ -77.105607, 38.917767 ], [ -77.105613, 38.917800 ], [ -77.105623, 38.917817 ], [ -77.105618, 38.917834 ], [ -77.105618, 38.917854 ], [ -77.105629, 38.917875 ], [ -77.105634, 38.917896 ], [ -77.105656, 38.917909 ], [ -77.105682, 38.917917 ], [ -77.105666, 38.917938 ], [ -77.105682, 38.917955 ], [ -77.105666, 38.917980 ], [ -77.105672, 38.917996 ], [ -77.105704, 38.918005 ], [ -77.105709, 38.918030 ], [ -77.105699, 38.918046 ], [ -77.105715, 38.918063 ], [ -77.105725, 38.918088 ], [ -77.105742, 38.918113 ], [ -77.105725, 38.918134 ], [ -77.105736, 38.918151 ], [ -77.105720, 38.918172 ], [ -77.105720, 38.918192 ], [ -77.105731, 38.918217 ], [ -77.105742, 38.918243 ], [ -77.105725, 38.918255 ], [ -77.105725, 38.918276 ], [ -77.105731, 38.918301 ], [ -77.105747, 38.918318 ], [ -77.105763, 38.918301 ], [ -77.105779, 38.918318 ], [ -77.105811, 38.918330 ], [ -77.105822, 38.918347 ], [ -77.105833, 38.918364 ], [ -77.105833, 38.918389 ], [ -77.105833, 38.918409 ], [ -77.105838, 38.918430 ], [ -77.105854, 38.918447 ], [ -77.105860, 38.918472 ], [ -77.105865, 38.918493 ], [ -77.105876, 38.918514 ], [ -77.105897, 38.918526 ], [ -77.105924, 38.918531 ], [ -77.105940, 38.918543 ], [ -77.105940, 38.918564 ], [ -77.105940, 38.918585 ], [ -77.105956, 38.918601 ], [ -77.105983, 38.918606 ], [ -77.106004, 38.918601 ], [ -77.106020, 38.918622 ], [ -77.106037, 38.918639 ], [ -77.106042, 38.918664 ], [ -77.106058, 38.918681 ], [ -77.106074, 38.918697 ], [ -77.106096, 38.918723 ], [ -77.106117, 38.918748 ], [ -77.106138, 38.918781 ], [ -77.106149, 38.918798 ], [ -77.106155, 38.918814 ], [ -77.106165, 38.918831 ], [ -77.106171, 38.918852 ], [ -77.106187, 38.918885 ], [ -77.106192, 38.918902 ], [ -77.106197, 38.918923 ], [ -77.106214, 38.918956 ], [ -77.106224, 38.918977 ], [ -77.106230, 38.919006 ], [ -77.106214, 38.919036 ], [ -77.106208, 38.919065 ], [ -77.106224, 38.919086 ], [ -77.106240, 38.919102 ], [ -77.106262, 38.919119 ], [ -77.106273, 38.919140 ], [ -77.106262, 38.919165 ], [ -77.106273, 38.919186 ], [ -77.106299, 38.919186 ], [ -77.106326, 38.919202 ], [ -77.106337, 38.919228 ], [ -77.106337, 38.919257 ], [ -77.106342, 38.919278 ], [ -77.106364, 38.919294 ], [ -77.106396, 38.919303 ], [ -77.106417, 38.919319 ], [ -77.106439, 38.919324 ], [ -77.106466, 38.919349 ], [ -77.106471, 38.919369 ], [ -77.106466, 38.919390 ], [ -77.106476, 38.919420 ], [ -77.106493, 38.919440 ], [ -77.106514, 38.919465 ], [ -77.106541, 38.919478 ], [ -77.106568, 38.919490 ], [ -77.106573, 38.919511 ], [ -77.106568, 38.919536 ], [ -77.106584, 38.919553 ], [ -77.106605, 38.919541 ], [ -77.106632, 38.919545 ], [ -77.106653, 38.919557 ], [ -77.106664, 38.919582 ], [ -77.106675, 38.919603 ], [ -77.106691, 38.919632 ], [ -77.106702, 38.919662 ], [ -77.106723, 38.919687 ], [ -77.106745, 38.919716 ], [ -77.106771, 38.919741 ], [ -77.106793, 38.919766 ], [ -77.106814, 38.919791 ], [ -77.106830, 38.919812 ], [ -77.106847, 38.919841 ], [ -77.106863, 38.919862 ], [ -77.106873, 38.919891 ], [ -77.106868, 38.919908 ], [ -77.106847, 38.919925 ], [ -77.106825, 38.919937 ], [ -77.106804, 38.919958 ], [ -77.106798, 38.919983 ], [ -77.106793, 38.920004 ], [ -77.106798, 38.920025 ], [ -77.106825, 38.920033 ], [ -77.106847, 38.920033 ], [ -77.106868, 38.920016 ], [ -77.106889, 38.920004 ], [ -77.106916, 38.919987 ], [ -77.106948, 38.919975 ], [ -77.106970, 38.919983 ], [ -77.106986, 38.920004 ], [ -77.106997, 38.920029 ], [ -77.107008, 38.920058 ], [ -77.107088, 38.920167 ], [ -77.107217, 38.920229 ], [ -77.107254, 38.920258 ], [ -77.107244, 38.920275 ], [ -77.107260, 38.920296 ], [ -77.107281, 38.920313 ], [ -77.107308, 38.920329 ], [ -77.107335, 38.920342 ], [ -77.107362, 38.920354 ], [ -77.107388, 38.920371 ], [ -77.107415, 38.920388 ], [ -77.107442, 38.920413 ], [ -77.107474, 38.920434 ], [ -77.107496, 38.920459 ], [ -77.107512, 38.920488 ], [ -77.107533, 38.920517 ], [ -77.107549, 38.920542 ], [ -77.107560, 38.920571 ], [ -77.107576, 38.920601 ], [ -77.107598, 38.920634 ], [ -77.107624, 38.920659 ], [ -77.107641, 38.920688 ], [ -77.107651, 38.920718 ], [ -77.107667, 38.920738 ], [ -77.107678, 38.920759 ], [ -77.107667, 38.920780 ], [ -77.107689, 38.920784 ], [ -77.107716, 38.920776 ], [ -77.107732, 38.920793 ], [ -77.107737, 38.920818 ], [ -77.107753, 38.920834 ], [ -77.107775, 38.920855 ], [ -77.107801, 38.920868 ], [ -77.107823, 38.920876 ], [ -77.107839, 38.920893 ], [ -77.107866, 38.920901 ], [ -77.107893, 38.920914 ], [ -77.107914, 38.920926 ], [ -77.107936, 38.920943 ], [ -77.107968, 38.920951 ], [ -77.107989, 38.920960 ], [ -77.108011, 38.920976 ], [ -77.108043, 38.920997 ], [ -77.108059, 38.921014 ], [ -77.108080, 38.921039 ], [ -77.108107, 38.921060 ], [ -77.108129, 38.921081 ], [ -77.108145, 38.921101 ], [ -77.108166, 38.921118 ], [ -77.108182, 38.921139 ], [ -77.108198, 38.921168 ], [ -77.108204, 38.921202 ], [ -77.108204, 38.921235 ], [ -77.108198, 38.921256 ], [ -77.108204, 38.921277 ], [ -77.108231, 38.921281 ], [ -77.108252, 38.921293 ], [ -77.108274, 38.921319 ], [ -77.108290, 38.921335 ], [ -77.108322, 38.921339 ], [ -77.108349, 38.921348 ], [ -77.108370, 38.921369 ], [ -77.108386, 38.921389 ], [ -77.108408, 38.921410 ], [ -77.108424, 38.921431 ], [ -77.108424, 38.921456 ], [ -77.108440, 38.921477 ], [ -77.108456, 38.921490 ], [ -77.108472, 38.921519 ], [ -77.108488, 38.921540 ], [ -77.108483, 38.921561 ], [ -77.108483, 38.921581 ], [ -77.108510, 38.921594 ], [ -77.108526, 38.921619 ], [ -77.108510, 38.921636 ], [ -77.108526, 38.921648 ], [ -77.108552, 38.921640 ], [ -77.108569, 38.921627 ], [ -77.108590, 38.921611 ], [ -77.108611, 38.921627 ], [ -77.108628, 38.921648 ], [ -77.108649, 38.921665 ], [ -77.108665, 38.921677 ], [ -77.108676, 38.921702 ], [ -77.108703, 38.921719 ], [ -77.108724, 38.921719 ], [ -77.108751, 38.921723 ], [ -77.108756, 38.921744 ], [ -77.108751, 38.921765 ], [ -77.108746, 38.921790 ], [ -77.108746, 38.921815 ], [ -77.108762, 38.921828 ], [ -77.108788, 38.921836 ], [ -77.108815, 38.921824 ], [ -77.108847, 38.921828 ], [ -77.108842, 38.921849 ], [ -77.108842, 38.921869 ], [ -77.108874, 38.921869 ], [ -77.108901, 38.921861 ], [ -77.108923, 38.921865 ], [ -77.108955, 38.921857 ], [ -77.108971, 38.921840 ], [ -77.108998, 38.921857 ], [ -77.109003, 38.921878 ], [ -77.109019, 38.921894 ], [ -77.109041, 38.921907 ], [ -77.109067, 38.921915 ], [ -77.109089, 38.921924 ], [ -77.109110, 38.921940 ], [ -77.109126, 38.921957 ], [ -77.109137, 38.921982 ], [ -77.109137, 38.922003 ], [ -77.109153, 38.922016 ], [ -77.109175, 38.922041 ], [ -77.109191, 38.922053 ], [ -77.109212, 38.922070 ], [ -77.109234, 38.922074 ], [ -77.109255, 38.922086 ], [ -77.109282, 38.922099 ], [ -77.109314, 38.922107 ], [ -77.109341, 38.922128 ], [ -77.109357, 38.922149 ], [ -77.109379, 38.922166 ], [ -77.109384, 38.922191 ], [ -77.109373, 38.922207 ], [ -77.109362, 38.922224 ], [ -77.109362, 38.922249 ], [ -77.109384, 38.922241 ], [ -77.109400, 38.922224 ], [ -77.109421, 38.922228 ], [ -77.109454, 38.922241 ], [ -77.109486, 38.922249 ], [ -77.109513, 38.922266 ], [ -77.109540, 38.922287 ], [ -77.109577, 38.922303 ], [ -77.109609, 38.922324 ], [ -77.109652, 38.922337 ], [ -77.109684, 38.922358 ], [ -77.109711, 38.922383 ], [ -77.109717, 38.922404 ], [ -77.109733, 38.922416 ], [ -77.109770, 38.922425 ], [ -77.109808, 38.922445 ], [ -77.109840, 38.922458 ], [ -77.109867, 38.922479 ], [ -77.109888, 38.922508 ], [ -77.109894, 38.922525 ], [ -77.109904, 38.922554 ], [ -77.109910, 38.922583 ], [ -77.109920, 38.922612 ], [ -77.109936, 38.922633 ], [ -77.109963, 38.922646 ], [ -77.109995, 38.922658 ], [ -77.110017, 38.922675 ], [ -77.110017, 38.922700 ], [ -77.110033, 38.922712 ], [ -77.110060, 38.922712 ], [ -77.110092, 38.922717 ], [ -77.110119, 38.922733 ], [ -77.110130, 38.922754 ], [ -77.110151, 38.922767 ], [ -77.110183, 38.922779 ], [ -77.110205, 38.922796 ], [ -77.110232, 38.922808 ], [ -77.110253, 38.922804 ], [ -77.110280, 38.922813 ], [ -77.110296, 38.922829 ], [ -77.110312, 38.922854 ], [ -77.110339, 38.922867 ], [ -77.110355, 38.922892 ], [ -77.110371, 38.922917 ], [ -77.110382, 38.922934 ], [ -77.110382, 38.922955 ], [ -77.110403, 38.922971 ], [ -77.110425, 38.922963 ], [ -77.110451, 38.922980 ], [ -77.110473, 38.922992 ], [ -77.110505, 38.923005 ], [ -77.110537, 38.923017 ], [ -77.110564, 38.923030 ], [ -77.110580, 38.923063 ], [ -77.110602, 38.923096 ], [ -77.110612, 38.923113 ], [ -77.110628, 38.923126 ], [ -77.110639, 38.923155 ], [ -77.110645, 38.923176 ], [ -77.110671, 38.923188 ], [ -77.110687, 38.923209 ], [ -77.110714, 38.923217 ], [ -77.110741, 38.923234 ], [ -77.110773, 38.923251 ], [ -77.110800, 38.923272 ], [ -77.110832, 38.923288 ], [ -77.110859, 38.923313 ], [ -77.110881, 38.923338 ], [ -77.110897, 38.923368 ], [ -77.110902, 38.923393 ], [ -77.110891, 38.923414 ], [ -77.110907, 38.923430 ], [ -77.110940, 38.923426 ], [ -77.110961, 38.923426 ], [ -77.110972, 38.923447 ], [ -77.110999, 38.923460 ], [ -77.111025, 38.923468 ], [ -77.111058, 38.923476 ], [ -77.111084, 38.923485 ], [ -77.111106, 38.923493 ], [ -77.111133, 38.923501 ], [ -77.111160, 38.923510 ], [ -77.111170, 38.923535 ], [ -77.111181, 38.923556 ], [ -77.111213, 38.923568 ], [ -77.111224, 38.923585 ], [ -77.111251, 38.923585 ], [ -77.111272, 38.923597 ], [ -77.111267, 38.923622 ], [ -77.111278, 38.923647 ], [ -77.111294, 38.923668 ], [ -77.111315, 38.923668 ], [ -77.111342, 38.923681 ], [ -77.111353, 38.923706 ], [ -77.111380, 38.923739 ], [ -77.111390, 38.923756 ], [ -77.111401, 38.923785 ], [ -77.111401, 38.923810 ], [ -77.111412, 38.923839 ], [ -77.111449, 38.923835 ], [ -77.111471, 38.923848 ], [ -77.111498, 38.923852 ], [ -77.111524, 38.923860 ], [ -77.111551, 38.923873 ], [ -77.111551, 38.923898 ], [ -77.111583, 38.923906 ], [ -77.111610, 38.923919 ], [ -77.111626, 38.923935 ], [ -77.111658, 38.923939 ], [ -77.111675, 38.923952 ], [ -77.111691, 38.923973 ], [ -77.111717, 38.923985 ], [ -77.111739, 38.923994 ], [ -77.111771, 38.924006 ], [ -77.111793, 38.924015 ], [ -77.111825, 38.924023 ], [ -77.111830, 38.924044 ], [ -77.111825, 38.924065 ], [ -77.111835, 38.924094 ], [ -77.111862, 38.924102 ], [ -77.111894, 38.924094 ], [ -77.111911, 38.924111 ], [ -77.111943, 38.924119 ], [ -77.111959, 38.924131 ], [ -77.111975, 38.924152 ], [ -77.111970, 38.924186 ], [ -77.111970, 38.924202 ], [ -77.111986, 38.924215 ], [ -77.112007, 38.924223 ], [ -77.112007, 38.924244 ], [ -77.112018, 38.924265 ], [ -77.112050, 38.924257 ], [ -77.112082, 38.924257 ], [ -77.112088, 38.924278 ], [ -77.112109, 38.924290 ], [ -77.112131, 38.924286 ], [ -77.112163, 38.924290 ], [ -77.112173, 38.924315 ], [ -77.112179, 38.924340 ], [ -77.112190, 38.924357 ], [ -77.112216, 38.924369 ], [ -77.112227, 38.924399 ], [ -77.112249, 38.924424 ], [ -77.112270, 38.924440 ], [ -77.112291, 38.924453 ], [ -77.112318, 38.924440 ], [ -77.112356, 38.924436 ], [ -77.112393, 38.924444 ], [ -77.112420, 38.924461 ], [ -77.112431, 38.924482 ], [ -77.112436, 38.924507 ], [ -77.112458, 38.924515 ], [ -77.112479, 38.924532 ], [ -77.112506, 38.924545 ], [ -77.112522, 38.924570 ], [ -77.112533, 38.924591 ], [ -77.112560, 38.924607 ], [ -77.112581, 38.924628 ], [ -77.112608, 38.924645 ], [ -77.112635, 38.924649 ], [ -77.112656, 38.924657 ], [ -77.112678, 38.924687 ], [ -77.112688, 38.924703 ], [ -77.112699, 38.924720 ], [ -77.112710, 38.924737 ], [ -77.112726, 38.924753 ], [ -77.112737, 38.924774 ], [ -77.112747, 38.924791 ], [ -77.112764, 38.924808 ], [ -77.112780, 38.924824 ], [ -77.112796, 38.924853 ], [ -77.112796, 38.924874 ], [ -77.112769, 38.924878 ], [ -77.112742, 38.924883 ], [ -77.112737, 38.924904 ], [ -77.112747, 38.924920 ], [ -77.112753, 38.924941 ], [ -77.112780, 38.924941 ], [ -77.112801, 38.924949 ], [ -77.112828, 38.924962 ], [ -77.112844, 38.924987 ], [ -77.112855, 38.925008 ], [ -77.112839, 38.925025 ], [ -77.112849, 38.925045 ], [ -77.112876, 38.925045 ], [ -77.112892, 38.925066 ], [ -77.112908, 38.925087 ], [ -77.112919, 38.925062 ], [ -77.112946, 38.925058 ], [ -77.112962, 38.925083 ], [ -77.112989, 38.925112 ], [ -77.113010, 38.925125 ], [ -77.113032, 38.925146 ], [ -77.113096, 38.925242 ], [ -77.113182, 38.925313 ], [ -77.113214, 38.925317 ], [ -77.113230, 38.925329 ], [ -77.113241, 38.925350 ], [ -77.113268, 38.925358 ], [ -77.113289, 38.925367 ], [ -77.113327, 38.925363 ], [ -77.113348, 38.925367 ], [ -77.113364, 38.925383 ], [ -77.113375, 38.925404 ], [ -77.113402, 38.925417 ], [ -77.113402, 38.925442 ], [ -77.113402, 38.925471 ], [ -77.113423, 38.925488 ], [ -77.113423, 38.925509 ], [ -77.113429, 38.925530 ], [ -77.113445, 38.925555 ], [ -77.113466, 38.925575 ], [ -77.113482, 38.925596 ], [ -77.113504, 38.925617 ], [ -77.113515, 38.925638 ], [ -77.113525, 38.925655 ], [ -77.113541, 38.925671 ], [ -77.113547, 38.925701 ], [ -77.113552, 38.925734 ], [ -77.113563, 38.925755 ], [ -77.113590, 38.925751 ], [ -77.113616, 38.925742 ], [ -77.113627, 38.925767 ], [ -77.113649, 38.925784 ], [ -77.113659, 38.925805 ], [ -77.113659, 38.925826 ], [ -77.113681, 38.925847 ], [ -77.113692, 38.925863 ], [ -77.113713, 38.925851 ], [ -77.113734, 38.925847 ], [ -77.113756, 38.925868 ], [ -77.113756, 38.925893 ], [ -77.113756, 38.925897 ], [ -77.096453, 38.925897 ], [ -77.096472, 38.925868 ], [ -77.096499, 38.925822 ], [ -77.096525, 38.925780 ], [ -77.096552, 38.925734 ], [ -77.096574, 38.925688 ], [ -77.096702, 38.925396 ], [ -77.096724, 38.925354 ], [ -77.096751, 38.925313 ], [ -77.096794, 38.925262 ], [ -77.096815, 38.925237 ], [ -77.096831, 38.925208 ], [ -77.096853, 38.925179 ], [ -77.096917, 38.925066 ], [ -77.096987, 38.924937 ], [ -77.097030, 38.924845 ], [ -77.097046, 38.924803 ], [ -77.097083, 38.924712 ], [ -77.097105, 38.924670 ], [ -77.097153, 38.924586 ], [ -77.097196, 38.924507 ], [ -77.097250, 38.924424 ], [ -77.097276, 38.924386 ], [ -77.097330, 38.924303 ], [ -77.097368, 38.924252 ], [ -77.097411, 38.924198 ], [ -77.097491, 38.924090 ], [ -77.097566, 38.923981 ], [ -77.097636, 38.923873 ], [ -77.097706, 38.923760 ], [ -77.097829, 38.923601 ], [ -77.097968, 38.923447 ], [ -77.098022, 38.923389 ], [ -77.098070, 38.923326 ], [ -77.098103, 38.923284 ], [ -77.098204, 38.923126 ], [ -77.098231, 38.923096 ], [ -77.098274, 38.923030 ], [ -77.098371, 38.922900 ], [ -77.098526, 38.922687 ], [ -77.098601, 38.922566 ], [ -77.098719, 38.922379 ], [ -77.098757, 38.922333 ], [ -77.098768, 38.922316 ], [ -77.098784, 38.922303 ], [ -77.098805, 38.922291 ], [ -77.098843, 38.922266 ], [ -77.098918, 38.922233 ], [ -77.098961, 38.922224 ], [ -77.099004, 38.922216 ], [ -77.099047, 38.922212 ], [ -77.099084, 38.922212 ], [ -77.099229, 38.922216 ], [ -77.099277, 38.922212 ], [ -77.099342, 38.922212 ], [ -77.099428, 38.922070 ], [ -77.099385, 38.922032 ], [ -77.099342, 38.921986 ], [ -77.098923, 38.921565 ], [ -77.098837, 38.921485 ], [ -77.098719, 38.921356 ], [ -77.098693, 38.921331 ], [ -77.098650, 38.921277 ], [ -77.098634, 38.921248 ], [ -77.098596, 38.921189 ], [ -77.098575, 38.921147 ], [ -77.098864, 38.920943 ], [ -77.098880, 38.920930 ], [ -77.098939, 38.920868 ], [ -77.098993, 38.920788 ], [ -77.099015, 38.920743 ], [ -77.099106, 38.920617 ], [ -77.099143, 38.920538 ], [ -77.099175, 38.920475 ], [ -77.099315, 38.920396 ], [ -77.099513, 38.920430 ], [ -77.099653, 38.920400 ], [ -77.099690, 38.920371 ], [ -77.099723, 38.920213 ], [ -77.099723, 38.920171 ], [ -77.099771, 38.920058 ], [ -77.099884, 38.920000 ], [ -77.100044, 38.919937 ], [ -77.100205, 38.919899 ], [ -77.100329, 38.919908 ], [ -77.100511, 38.919849 ], [ -77.100549, 38.919774 ], [ -77.100629, 38.919733 ], [ -77.100747, 38.919808 ], [ -77.100774, 38.919874 ], [ -77.100860, 38.919995 ], [ -77.100935, 38.920096 ], [ -77.101107, 38.920196 ], [ -77.101294, 38.920154 ], [ -77.101772, 38.919912 ], [ -77.101820, 38.919883 ], [ -77.101911, 38.920000 ], [ -77.101970, 38.920016 ], [ -77.102035, 38.919975 ], [ -77.102115, 38.919920 ], [ -77.102163, 38.919887 ], [ -77.102378, 38.919820 ], [ -77.102448, 38.919791 ], [ -77.102491, 38.919766 ], [ -77.102517, 38.919728 ], [ -77.102544, 38.919666 ], [ -77.102566, 38.919595 ], [ -77.102576, 38.919541 ], [ -77.102593, 38.919499 ], [ -77.102614, 38.919457 ], [ -77.102678, 38.919365 ], [ -77.102813, 38.919236 ], [ -77.102990, 38.919106 ], [ -77.103075, 38.918960 ], [ -77.103124, 38.918785 ], [ -77.103134, 38.918639 ], [ -77.103183, 38.918468 ], [ -77.103242, 38.918393 ], [ -77.105157, 38.917303 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000804", "GEOID": "11001000804", "NAME": "8.04", "NAMELSAD": "Census Tract 8.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2566768, "AWATER": 167978, "INTPTLAT": "+38.9221746", "INTPTLON": "-077.0918347" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.100892, 38.911226 ], [ -77.100919, 38.911234 ], [ -77.100946, 38.911243 ], [ -77.100967, 38.911255 ], [ -77.100989, 38.911272 ], [ -77.101010, 38.911285 ], [ -77.101032, 38.911297 ], [ -77.101053, 38.911310 ], [ -77.101085, 38.911326 ], [ -77.101107, 38.911347 ], [ -77.101101, 38.911368 ], [ -77.101139, 38.911372 ], [ -77.101160, 38.911385 ], [ -77.101182, 38.911401 ], [ -77.101209, 38.911397 ], [ -77.101246, 38.911418 ], [ -77.101268, 38.911435 ], [ -77.101305, 38.911443 ], [ -77.101332, 38.911456 ], [ -77.101343, 38.911481 ], [ -77.101359, 38.911506 ], [ -77.101380, 38.911531 ], [ -77.101402, 38.911539 ], [ -77.101429, 38.911548 ], [ -77.101439, 38.911564 ], [ -77.101455, 38.911581 ], [ -77.101471, 38.911568 ], [ -77.101493, 38.911556 ], [ -77.101520, 38.911548 ], [ -77.101552, 38.911560 ], [ -77.101573, 38.911577 ], [ -77.101589, 38.911589 ], [ -77.101611, 38.911602 ], [ -77.101627, 38.911618 ], [ -77.101654, 38.911639 ], [ -77.101675, 38.911656 ], [ -77.101707, 38.911681 ], [ -77.101729, 38.911694 ], [ -77.101745, 38.911706 ], [ -77.101761, 38.911727 ], [ -77.101772, 38.911748 ], [ -77.101783, 38.911765 ], [ -77.101815, 38.911769 ], [ -77.101842, 38.911785 ], [ -77.101874, 38.911806 ], [ -77.101895, 38.911819 ], [ -77.101917, 38.911836 ], [ -77.101938, 38.911848 ], [ -77.101960, 38.911869 ], [ -77.101981, 38.911894 ], [ -77.102003, 38.911907 ], [ -77.102029, 38.911915 ], [ -77.102045, 38.911932 ], [ -77.102067, 38.911948 ], [ -77.102083, 38.911965 ], [ -77.102099, 38.911994 ], [ -77.102110, 38.912019 ], [ -77.102137, 38.912036 ], [ -77.102153, 38.912053 ], [ -77.102185, 38.912057 ], [ -77.102201, 38.912078 ], [ -77.102222, 38.912099 ], [ -77.102244, 38.912124 ], [ -77.102265, 38.912149 ], [ -77.102287, 38.912174 ], [ -77.102308, 38.912195 ], [ -77.102330, 38.912215 ], [ -77.102346, 38.912240 ], [ -77.102362, 38.912261 ], [ -77.102378, 38.912282 ], [ -77.102394, 38.912303 ], [ -77.102410, 38.912324 ], [ -77.102426, 38.912336 ], [ -77.102464, 38.912345 ], [ -77.102485, 38.912345 ], [ -77.102512, 38.912349 ], [ -77.102539, 38.912353 ], [ -77.102566, 38.912366 ], [ -77.102582, 38.912382 ], [ -77.102609, 38.912403 ], [ -77.102630, 38.912424 ], [ -77.102652, 38.912449 ], [ -77.102668, 38.912470 ], [ -77.102678, 38.912487 ], [ -77.102689, 38.912503 ], [ -77.102689, 38.912524 ], [ -77.102684, 38.912553 ], [ -77.102711, 38.912579 ], [ -77.102754, 38.912599 ], [ -77.102775, 38.912608 ], [ -77.102802, 38.912616 ], [ -77.102829, 38.912624 ], [ -77.102861, 38.912633 ], [ -77.102888, 38.912641 ], [ -77.102914, 38.912654 ], [ -77.102947, 38.912666 ], [ -77.102973, 38.912687 ], [ -77.103000, 38.912708 ], [ -77.103027, 38.912729 ], [ -77.103049, 38.912754 ], [ -77.103070, 38.912779 ], [ -77.103086, 38.912804 ], [ -77.103102, 38.912833 ], [ -77.103118, 38.912862 ], [ -77.103140, 38.912892 ], [ -77.103167, 38.912917 ], [ -77.103183, 38.912946 ], [ -77.103204, 38.912975 ], [ -77.103220, 38.913000 ], [ -77.103242, 38.913029 ], [ -77.103258, 38.913059 ], [ -77.103279, 38.913084 ], [ -77.103301, 38.913113 ], [ -77.103317, 38.913142 ], [ -77.103338, 38.913167 ], [ -77.103360, 38.913196 ], [ -77.103376, 38.913226 ], [ -77.103397, 38.913255 ], [ -77.103413, 38.913280 ], [ -77.103424, 38.913309 ], [ -77.103429, 38.913322 ], [ -77.103435, 38.913334 ], [ -77.103435, 38.913355 ], [ -77.103435, 38.913384 ], [ -77.103446, 38.913409 ], [ -77.103456, 38.913430 ], [ -77.103467, 38.913455 ], [ -77.103472, 38.913480 ], [ -77.103472, 38.913505 ], [ -77.103472, 38.913530 ], [ -77.103472, 38.913559 ], [ -77.103467, 38.913593 ], [ -77.103467, 38.913622 ], [ -77.103462, 38.913651 ], [ -77.103462, 38.913685 ], [ -77.103467, 38.913776 ], [ -77.103472, 38.913806 ], [ -77.103478, 38.913822 ], [ -77.103483, 38.913843 ], [ -77.103494, 38.913877 ], [ -77.103499, 38.913910 ], [ -77.103499, 38.913939 ], [ -77.103499, 38.913960 ], [ -77.103499, 38.913998 ], [ -77.103499, 38.914019 ], [ -77.103499, 38.914035 ], [ -77.103499, 38.914056 ], [ -77.103494, 38.914077 ], [ -77.103494, 38.914102 ], [ -77.103494, 38.914123 ], [ -77.103488, 38.914140 ], [ -77.103488, 38.914156 ], [ -77.103488, 38.914177 ], [ -77.103488, 38.914202 ], [ -77.103488, 38.914223 ], [ -77.103494, 38.914240 ], [ -77.103499, 38.914261 ], [ -77.103505, 38.914286 ], [ -77.103505, 38.914302 ], [ -77.103510, 38.914323 ], [ -77.103515, 38.914344 ], [ -77.103526, 38.914365 ], [ -77.103537, 38.914386 ], [ -77.103542, 38.914403 ], [ -77.103553, 38.914423 ], [ -77.103558, 38.914444 ], [ -77.103569, 38.914465 ], [ -77.103580, 38.914482 ], [ -77.103585, 38.914499 ], [ -77.103590, 38.914519 ], [ -77.103596, 38.914540 ], [ -77.103596, 38.914557 ], [ -77.103596, 38.914595 ], [ -77.103601, 38.914611 ], [ -77.103606, 38.914632 ], [ -77.103606, 38.914653 ], [ -77.103612, 38.914674 ], [ -77.103612, 38.914695 ], [ -77.103617, 38.914716 ], [ -77.103628, 38.914736 ], [ -77.103633, 38.914757 ], [ -77.103644, 38.914778 ], [ -77.103649, 38.914799 ], [ -77.103660, 38.914820 ], [ -77.103671, 38.914841 ], [ -77.103682, 38.914862 ], [ -77.103692, 38.914887 ], [ -77.103703, 38.914908 ], [ -77.103714, 38.914929 ], [ -77.103724, 38.914945 ], [ -77.103735, 38.914966 ], [ -77.103746, 38.914987 ], [ -77.103751, 38.915008 ], [ -77.103762, 38.915029 ], [ -77.103773, 38.915050 ], [ -77.103783, 38.915070 ], [ -77.103789, 38.915091 ], [ -77.103800, 38.915108 ], [ -77.103816, 38.915129 ], [ -77.103826, 38.915150 ], [ -77.103842, 38.915171 ], [ -77.103859, 38.915191 ], [ -77.103869, 38.915208 ], [ -77.103885, 38.915225 ], [ -77.103902, 38.915246 ], [ -77.103918, 38.915262 ], [ -77.103923, 38.915283 ], [ -77.103934, 38.915300 ], [ -77.103950, 38.915333 ], [ -77.103966, 38.915367 ], [ -77.103982, 38.915400 ], [ -77.103987, 38.915425 ], [ -77.103987, 38.915446 ], [ -77.103993, 38.915463 ], [ -77.103993, 38.915484 ], [ -77.103998, 38.915500 ], [ -77.103998, 38.915521 ], [ -77.103998, 38.915542 ], [ -77.104003, 38.915563 ], [ -77.104003, 38.915580 ], [ -77.104009, 38.915605 ], [ -77.104014, 38.915621 ], [ -77.104020, 38.915642 ], [ -77.104025, 38.915659 ], [ -77.104030, 38.915676 ], [ -77.104041, 38.915697 ], [ -77.104052, 38.915713 ], [ -77.104057, 38.915730 ], [ -77.104068, 38.915763 ], [ -77.104073, 38.915784 ], [ -77.104084, 38.915805 ], [ -77.104089, 38.915826 ], [ -77.104100, 38.915843 ], [ -77.104111, 38.915863 ], [ -77.104116, 38.915884 ], [ -77.104121, 38.915905 ], [ -77.104132, 38.915922 ], [ -77.104143, 38.915943 ], [ -77.104154, 38.915959 ], [ -77.104170, 38.915980 ], [ -77.104180, 38.915997 ], [ -77.104191, 38.916014 ], [ -77.104202, 38.916030 ], [ -77.104213, 38.916047 ], [ -77.104229, 38.916076 ], [ -77.104239, 38.916101 ], [ -77.104245, 38.916135 ], [ -77.104256, 38.916151 ], [ -77.104277, 38.916168 ], [ -77.104293, 38.916185 ], [ -77.104309, 38.916197 ], [ -77.104325, 38.916214 ], [ -77.104341, 38.916227 ], [ -77.104352, 38.916243 ], [ -77.104368, 38.916260 ], [ -77.104379, 38.916277 ], [ -77.104390, 38.916293 ], [ -77.104406, 38.916310 ], [ -77.104422, 38.916323 ], [ -77.104438, 38.916339 ], [ -77.104454, 38.916356 ], [ -77.104470, 38.916373 ], [ -77.104486, 38.916389 ], [ -77.104502, 38.916406 ], [ -77.104524, 38.916423 ], [ -77.104540, 38.916439 ], [ -77.104561, 38.916456 ], [ -77.104577, 38.916469 ], [ -77.104588, 38.916485 ], [ -77.104615, 38.916519 ], [ -77.104631, 38.916531 ], [ -77.104647, 38.916548 ], [ -77.104669, 38.916577 ], [ -77.104685, 38.916594 ], [ -77.104695, 38.916619 ], [ -77.104717, 38.916644 ], [ -77.104738, 38.916669 ], [ -77.104765, 38.916694 ], [ -77.104787, 38.916719 ], [ -77.104813, 38.916744 ], [ -77.104824, 38.916765 ], [ -77.104840, 38.916790 ], [ -77.104862, 38.916819 ], [ -77.104883, 38.916848 ], [ -77.104905, 38.916878 ], [ -77.104926, 38.916907 ], [ -77.104948, 38.916932 ], [ -77.104969, 38.916957 ], [ -77.104990, 38.916982 ], [ -77.105007, 38.916999 ], [ -77.105023, 38.917015 ], [ -77.105039, 38.917045 ], [ -77.105055, 38.917070 ], [ -77.105071, 38.917086 ], [ -77.105092, 38.917111 ], [ -77.105098, 38.917136 ], [ -77.105098, 38.917162 ], [ -77.105108, 38.917187 ], [ -77.105141, 38.917199 ], [ -77.105162, 38.917224 ], [ -77.105168, 38.917249 ], [ -77.105151, 38.917270 ], [ -77.105141, 38.917291 ], [ -77.105157, 38.917303 ], [ -77.103242, 38.918393 ], [ -77.103183, 38.918468 ], [ -77.103134, 38.918639 ], [ -77.103124, 38.918785 ], [ -77.103075, 38.918960 ], [ -77.102990, 38.919106 ], [ -77.102813, 38.919236 ], [ -77.102678, 38.919365 ], [ -77.102614, 38.919457 ], [ -77.102593, 38.919499 ], [ -77.102576, 38.919541 ], [ -77.102566, 38.919595 ], [ -77.102544, 38.919666 ], [ -77.102517, 38.919728 ], [ -77.102491, 38.919766 ], [ -77.102448, 38.919791 ], [ -77.102378, 38.919820 ], [ -77.102163, 38.919887 ], [ -77.102115, 38.919920 ], [ -77.102035, 38.919975 ], [ -77.101970, 38.920016 ], [ -77.101911, 38.920000 ], [ -77.101820, 38.919883 ], [ -77.101772, 38.919912 ], [ -77.101294, 38.920154 ], [ -77.101107, 38.920196 ], [ -77.100935, 38.920096 ], [ -77.100860, 38.919995 ], [ -77.100774, 38.919874 ], [ -77.100747, 38.919808 ], [ -77.100629, 38.919733 ], [ -77.100549, 38.919774 ], [ -77.100511, 38.919849 ], [ -77.100329, 38.919908 ], [ -77.100205, 38.919899 ], [ -77.100044, 38.919937 ], [ -77.099884, 38.920000 ], [ -77.099771, 38.920058 ], [ -77.099723, 38.920171 ], [ -77.099723, 38.920213 ], [ -77.099690, 38.920371 ], [ -77.099653, 38.920400 ], [ -77.099513, 38.920430 ], [ -77.099315, 38.920396 ], [ -77.099175, 38.920475 ], [ -77.099143, 38.920538 ], [ -77.099106, 38.920617 ], [ -77.099015, 38.920743 ], [ -77.098993, 38.920788 ], [ -77.098939, 38.920868 ], [ -77.098880, 38.920930 ], [ -77.098864, 38.920943 ], [ -77.098575, 38.921147 ], [ -77.098596, 38.921189 ], [ -77.098634, 38.921248 ], [ -77.098650, 38.921277 ], [ -77.098693, 38.921331 ], [ -77.098719, 38.921356 ], [ -77.098837, 38.921485 ], [ -77.098923, 38.921565 ], [ -77.099342, 38.921986 ], [ -77.099385, 38.922032 ], [ -77.099428, 38.922070 ], [ -77.099342, 38.922212 ], [ -77.099277, 38.922212 ], [ -77.099229, 38.922216 ], [ -77.099084, 38.922212 ], [ -77.099047, 38.922212 ], [ -77.099004, 38.922216 ], [ -77.098961, 38.922224 ], [ -77.098918, 38.922233 ], [ -77.098843, 38.922266 ], [ -77.098805, 38.922291 ], [ -77.098784, 38.922303 ], [ -77.098768, 38.922316 ], [ -77.098757, 38.922333 ], [ -77.098719, 38.922379 ], [ -77.098601, 38.922566 ], [ -77.098526, 38.922687 ], [ -77.098371, 38.922900 ], [ -77.098274, 38.923030 ], [ -77.098231, 38.923096 ], [ -77.098204, 38.923126 ], [ -77.098103, 38.923284 ], [ -77.098070, 38.923326 ], [ -77.098022, 38.923389 ], [ -77.097968, 38.923447 ], [ -77.097829, 38.923601 ], [ -77.097706, 38.923760 ], [ -77.097636, 38.923873 ], [ -77.097566, 38.923981 ], [ -77.097491, 38.924090 ], [ -77.097411, 38.924198 ], [ -77.097368, 38.924252 ], [ -77.097330, 38.924303 ], [ -77.097276, 38.924386 ], [ -77.097250, 38.924424 ], [ -77.097196, 38.924507 ], [ -77.097153, 38.924586 ], [ -77.097105, 38.924670 ], [ -77.097083, 38.924712 ], [ -77.097046, 38.924803 ], [ -77.097030, 38.924845 ], [ -77.096987, 38.924937 ], [ -77.096917, 38.925066 ], [ -77.096853, 38.925179 ], [ -77.096831, 38.925208 ], [ -77.096815, 38.925237 ], [ -77.096794, 38.925262 ], [ -77.096751, 38.925313 ], [ -77.096724, 38.925354 ], [ -77.096702, 38.925396 ], [ -77.096574, 38.925688 ], [ -77.096552, 38.925734 ], [ -77.096525, 38.925780 ], [ -77.096499, 38.925822 ], [ -77.096472, 38.925868 ], [ -77.096453, 38.925897 ], [ -77.081727, 38.925897 ], [ -77.081929, 38.924958 ], [ -77.081940, 38.924837 ], [ -77.081999, 38.924641 ], [ -77.082519, 38.921715 ], [ -77.082562, 38.921498 ], [ -77.082621, 38.921197 ], [ -77.082578, 38.919298 ], [ -77.086000, 38.919169 ], [ -77.086344, 38.919173 ], [ -77.086558, 38.919173 ], [ -77.088742, 38.919165 ], [ -77.088747, 38.919090 ], [ -77.088747, 38.919019 ], [ -77.088758, 38.918697 ], [ -77.088763, 38.918539 ], [ -77.088763, 38.918485 ], [ -77.088768, 38.918259 ], [ -77.088768, 38.918205 ], [ -77.088768, 38.918034 ], [ -77.088768, 38.917921 ], [ -77.088779, 38.917646 ], [ -77.088779, 38.917596 ], [ -77.088779, 38.917550 ], [ -77.088779, 38.917416 ], [ -77.088774, 38.917291 ], [ -77.088768, 38.917249 ], [ -77.088763, 38.917166 ], [ -77.088747, 38.917045 ], [ -77.088736, 38.916899 ], [ -77.088726, 38.916757 ], [ -77.088720, 38.916569 ], [ -77.088704, 38.916439 ], [ -77.088849, 38.916439 ], [ -77.089766, 38.916439 ], [ -77.090421, 38.916435 ], [ -77.090898, 38.916439 ], [ -77.090968, 38.916444 ], [ -77.091182, 38.916444 ], [ -77.091327, 38.916439 ], [ -77.091467, 38.916431 ], [ -77.091612, 38.916423 ], [ -77.091869, 38.916398 ], [ -77.092180, 38.916364 ], [ -77.092330, 38.916343 ], [ -77.092475, 38.916314 ], [ -77.092706, 38.916260 ], [ -77.092749, 38.916252 ], [ -77.092792, 38.916239 ], [ -77.092963, 38.916193 ], [ -77.093044, 38.916172 ], [ -77.093157, 38.916135 ], [ -77.093269, 38.916093 ], [ -77.093323, 38.916072 ], [ -77.093580, 38.915980 ], [ -77.093988, 38.915830 ], [ -77.094095, 38.915784 ], [ -77.094122, 38.915776 ], [ -77.094315, 38.915701 ], [ -77.094385, 38.915671 ], [ -77.094669, 38.915630 ], [ -77.096305, 38.914544 ], [ -77.096381, 38.914327 ], [ -77.096391, 38.914315 ], [ -77.096402, 38.914294 ], [ -77.096413, 38.914273 ], [ -77.096413, 38.914248 ], [ -77.096407, 38.914231 ], [ -77.096397, 38.914194 ], [ -77.096381, 38.914173 ], [ -77.096364, 38.914148 ], [ -77.096348, 38.914119 ], [ -77.097427, 38.913405 ], [ -77.097534, 38.913401 ], [ -77.097732, 38.913397 ], [ -77.097808, 38.913334 ], [ -77.098113, 38.913096 ], [ -77.099572, 38.911990 ], [ -77.100855, 38.911209 ], [ -77.100892, 38.911226 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000802", "GEOID": "11001000802", "NAME": "8.02", "NAMELSAD": "Census Tract 8.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1688582, "AWATER": 669985, "INTPTLAT": "+38.9126765", "INTPTLON": "-077.0896118" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079805, 38.902335 ], [ -77.079837, 38.902330 ], [ -77.079880, 38.902322 ], [ -77.079923, 38.902318 ], [ -77.079960, 38.902314 ], [ -77.079998, 38.902310 ], [ -77.080035, 38.902305 ], [ -77.080067, 38.902301 ], [ -77.080105, 38.902297 ], [ -77.080164, 38.902297 ], [ -77.080191, 38.902301 ], [ -77.080223, 38.902310 ], [ -77.080255, 38.902314 ], [ -77.080287, 38.902322 ], [ -77.080325, 38.902322 ], [ -77.080357, 38.902322 ], [ -77.080400, 38.902322 ], [ -77.080443, 38.902322 ], [ -77.080491, 38.902326 ], [ -77.080534, 38.902326 ], [ -77.080577, 38.902326 ], [ -77.080615, 38.902326 ], [ -77.080684, 38.902322 ], [ -77.080754, 38.902322 ], [ -77.080775, 38.902326 ], [ -77.080802, 38.902326 ], [ -77.080829, 38.902326 ], [ -77.080856, 38.902326 ], [ -77.080888, 38.902322 ], [ -77.080920, 38.902322 ], [ -77.080953, 38.902322 ], [ -77.080979, 38.902322 ], [ -77.081006, 38.902318 ], [ -77.081033, 38.902318 ], [ -77.081054, 38.902318 ], [ -77.081081, 38.902318 ], [ -77.081103, 38.902318 ], [ -77.081130, 38.902318 ], [ -77.081156, 38.902318 ], [ -77.081189, 38.902318 ], [ -77.081215, 38.902318 ], [ -77.081237, 38.902318 ], [ -77.081269, 38.902318 ], [ -77.081307, 38.902318 ], [ -77.081339, 38.902318 ], [ -77.081360, 38.902314 ], [ -77.081387, 38.902314 ], [ -77.081430, 38.902314 ], [ -77.081462, 38.902314 ], [ -77.081494, 38.902310 ], [ -77.081521, 38.902314 ], [ -77.081537, 38.902310 ], [ -77.081553, 38.902310 ], [ -77.081580, 38.902310 ], [ -77.081612, 38.902310 ], [ -77.081645, 38.902310 ], [ -77.081677, 38.902310 ], [ -77.081704, 38.902310 ], [ -77.081725, 38.902310 ], [ -77.081752, 38.902310 ], [ -77.081784, 38.902305 ], [ -77.081811, 38.902305 ], [ -77.081832, 38.902305 ], [ -77.081848, 38.902305 ], [ -77.081875, 38.902305 ], [ -77.081913, 38.902305 ], [ -77.081956, 38.902301 ], [ -77.081982, 38.902301 ], [ -77.082009, 38.902301 ], [ -77.082047, 38.902301 ], [ -77.082079, 38.902301 ], [ -77.082111, 38.902301 ], [ -77.082138, 38.902297 ], [ -77.082165, 38.902297 ], [ -77.082224, 38.902297 ], [ -77.082256, 38.902297 ], [ -77.082294, 38.902297 ], [ -77.082310, 38.902297 ], [ -77.082331, 38.902293 ], [ -77.082401, 38.902293 ], [ -77.082438, 38.902293 ], [ -77.082476, 38.902293 ], [ -77.082497, 38.902293 ], [ -77.082524, 38.902293 ], [ -77.082556, 38.902289 ], [ -77.082573, 38.902289 ], [ -77.082589, 38.902289 ], [ -77.082642, 38.902280 ], [ -77.083195, 38.902364 ], [ -77.083361, 38.902389 ], [ -77.083597, 38.902464 ], [ -77.083924, 38.902527 ], [ -77.084557, 38.902689 ], [ -77.084895, 38.902790 ], [ -77.085046, 38.902798 ], [ -77.085298, 38.902777 ], [ -77.085759, 38.902848 ], [ -77.086086, 38.902965 ], [ -77.086236, 38.902990 ], [ -77.086483, 38.902990 ], [ -77.086574, 38.903015 ], [ -77.086698, 38.903099 ], [ -77.086832, 38.903224 ], [ -77.087084, 38.903337 ], [ -77.087374, 38.903412 ], [ -77.087561, 38.903474 ], [ -77.087733, 38.903499 ], [ -77.088007, 38.903537 ], [ -77.088307, 38.903637 ], [ -77.088549, 38.903712 ], [ -77.088999, 38.903900 ], [ -77.089160, 38.903975 ], [ -77.089482, 38.904138 ], [ -77.089959, 38.904301 ], [ -77.090458, 38.904514 ], [ -77.090936, 38.904714 ], [ -77.091424, 38.905040 ], [ -77.091874, 38.905324 ], [ -77.091912, 38.905336 ], [ -77.091939, 38.905344 ], [ -77.091971, 38.905357 ], [ -77.091998, 38.905365 ], [ -77.092014, 38.905370 ], [ -77.092057, 38.905382 ], [ -77.092084, 38.905395 ], [ -77.092111, 38.905403 ], [ -77.092148, 38.905415 ], [ -77.092170, 38.905420 ], [ -77.092186, 38.905428 ], [ -77.092212, 38.905436 ], [ -77.092234, 38.905440 ], [ -77.092271, 38.905457 ], [ -77.092293, 38.905461 ], [ -77.092314, 38.905470 ], [ -77.092336, 38.905478 ], [ -77.092352, 38.905482 ], [ -77.092379, 38.905491 ], [ -77.092400, 38.905499 ], [ -77.092422, 38.905503 ], [ -77.092438, 38.905511 ], [ -77.092459, 38.905520 ], [ -77.092481, 38.905524 ], [ -77.092507, 38.905532 ], [ -77.092524, 38.905541 ], [ -77.092550, 38.905549 ], [ -77.092572, 38.905553 ], [ -77.092593, 38.905562 ], [ -77.092642, 38.905578 ], [ -77.092663, 38.905582 ], [ -77.092685, 38.905591 ], [ -77.092701, 38.905599 ], [ -77.092733, 38.905607 ], [ -77.092754, 38.905616 ], [ -77.092776, 38.905620 ], [ -77.092803, 38.905633 ], [ -77.092824, 38.905641 ], [ -77.092845, 38.905645 ], [ -77.092872, 38.905653 ], [ -77.092888, 38.905662 ], [ -77.092921, 38.905670 ], [ -77.092942, 38.905678 ], [ -77.092963, 38.905687 ], [ -77.092990, 38.905695 ], [ -77.093017, 38.905703 ], [ -77.093039, 38.905708 ], [ -77.093060, 38.905716 ], [ -77.093081, 38.905724 ], [ -77.093103, 38.905729 ], [ -77.093124, 38.905737 ], [ -77.093151, 38.905745 ], [ -77.093173, 38.905754 ], [ -77.093216, 38.905766 ], [ -77.093248, 38.905787 ], [ -77.093307, 38.905812 ], [ -77.093339, 38.905829 ], [ -77.093360, 38.905837 ], [ -77.093377, 38.905850 ], [ -77.093414, 38.905866 ], [ -77.093446, 38.905883 ], [ -77.093473, 38.905900 ], [ -77.093505, 38.905921 ], [ -77.093537, 38.905933 ], [ -77.093580, 38.905966 ], [ -77.093591, 38.905979 ], [ -77.093618, 38.906004 ], [ -77.093666, 38.906042 ], [ -77.093698, 38.906062 ], [ -77.093714, 38.906075 ], [ -77.093731, 38.906088 ], [ -77.093768, 38.906113 ], [ -77.093800, 38.906138 ], [ -77.093822, 38.906150 ], [ -77.093843, 38.906167 ], [ -77.093865, 38.906179 ], [ -77.093881, 38.906192 ], [ -77.093902, 38.906204 ], [ -77.093924, 38.906221 ], [ -77.093945, 38.906234 ], [ -77.093961, 38.906246 ], [ -77.093988, 38.906259 ], [ -77.094010, 38.906271 ], [ -77.094031, 38.906284 ], [ -77.094047, 38.906292 ], [ -77.094069, 38.906309 ], [ -77.094085, 38.906321 ], [ -77.094122, 38.906346 ], [ -77.094138, 38.906359 ], [ -77.094154, 38.906367 ], [ -77.094187, 38.906392 ], [ -77.094208, 38.906409 ], [ -77.094224, 38.906421 ], [ -77.094246, 38.906434 ], [ -77.094262, 38.906447 ], [ -77.094283, 38.906463 ], [ -77.094299, 38.906476 ], [ -77.094321, 38.906488 ], [ -77.094342, 38.906505 ], [ -77.094364, 38.906518 ], [ -77.094380, 38.906530 ], [ -77.094401, 38.906547 ], [ -77.094417, 38.906559 ], [ -77.094439, 38.906576 ], [ -77.094460, 38.906588 ], [ -77.094482, 38.906601 ], [ -77.094498, 38.906618 ], [ -77.094519, 38.906630 ], [ -77.094546, 38.906651 ], [ -77.094589, 38.906680 ], [ -77.094621, 38.906705 ], [ -77.094643, 38.906722 ], [ -77.094669, 38.906739 ], [ -77.094691, 38.906755 ], [ -77.094718, 38.906772 ], [ -77.094739, 38.906793 ], [ -77.094766, 38.906810 ], [ -77.094798, 38.906835 ], [ -77.094825, 38.906851 ], [ -77.094852, 38.906872 ], [ -77.094879, 38.906893 ], [ -77.094905, 38.906910 ], [ -77.094927, 38.906922 ], [ -77.094948, 38.906939 ], [ -77.094975, 38.906960 ], [ -77.095007, 38.906985 ], [ -77.095023, 38.906998 ], [ -77.095072, 38.907031 ], [ -77.095098, 38.907052 ], [ -77.095125, 38.907069 ], [ -77.095152, 38.907089 ], [ -77.095168, 38.907102 ], [ -77.095195, 38.907119 ], [ -77.095217, 38.907135 ], [ -77.095238, 38.907152 ], [ -77.095254, 38.907165 ], [ -77.095270, 38.907173 ], [ -77.095292, 38.907190 ], [ -77.095318, 38.907206 ], [ -77.095340, 38.907223 ], [ -77.095361, 38.907240 ], [ -77.095388, 38.907256 ], [ -77.095410, 38.907273 ], [ -77.095426, 38.907286 ], [ -77.095442, 38.907298 ], [ -77.095463, 38.907311 ], [ -77.095490, 38.907332 ], [ -77.095517, 38.907348 ], [ -77.095538, 38.907369 ], [ -77.095560, 38.907386 ], [ -77.095587, 38.907402 ], [ -77.095619, 38.907423 ], [ -77.095646, 38.907444 ], [ -77.095672, 38.907465 ], [ -77.095689, 38.907478 ], [ -77.095715, 38.907494 ], [ -77.095742, 38.907515 ], [ -77.095764, 38.907532 ], [ -77.095791, 38.907553 ], [ -77.095817, 38.907569 ], [ -77.095844, 38.907586 ], [ -77.095866, 38.907603 ], [ -77.095882, 38.907615 ], [ -77.095909, 38.907632 ], [ -77.095930, 38.907649 ], [ -77.095951, 38.907665 ], [ -77.095978, 38.907682 ], [ -77.095994, 38.907699 ], [ -77.096010, 38.907707 ], [ -77.096032, 38.907724 ], [ -77.096059, 38.907741 ], [ -77.096086, 38.907761 ], [ -77.096118, 38.907787 ], [ -77.096145, 38.907803 ], [ -77.096166, 38.907820 ], [ -77.096198, 38.907845 ], [ -77.096230, 38.907866 ], [ -77.096257, 38.907887 ], [ -77.096284, 38.907908 ], [ -77.096305, 38.907920 ], [ -77.096327, 38.907937 ], [ -77.096348, 38.907953 ], [ -77.096370, 38.907970 ], [ -77.096397, 38.907983 ], [ -77.096413, 38.907995 ], [ -77.096429, 38.908012 ], [ -77.096450, 38.908024 ], [ -77.096472, 38.908041 ], [ -77.096493, 38.908054 ], [ -77.096515, 38.908075 ], [ -77.096542, 38.908087 ], [ -77.096563, 38.908104 ], [ -77.096579, 38.908116 ], [ -77.096601, 38.908133 ], [ -77.096617, 38.908146 ], [ -77.096643, 38.908162 ], [ -77.096660, 38.908175 ], [ -77.096681, 38.908191 ], [ -77.096702, 38.908208 ], [ -77.096724, 38.908225 ], [ -77.096745, 38.908237 ], [ -77.096772, 38.908254 ], [ -77.096794, 38.908271 ], [ -77.096810, 38.908283 ], [ -77.096826, 38.908296 ], [ -77.096853, 38.908312 ], [ -77.096869, 38.908329 ], [ -77.096896, 38.908346 ], [ -77.096912, 38.908358 ], [ -77.096933, 38.908375 ], [ -77.096955, 38.908388 ], [ -77.096965, 38.908400 ], [ -77.096987, 38.908413 ], [ -77.097003, 38.908421 ], [ -77.097024, 38.908438 ], [ -77.097040, 38.908454 ], [ -77.097057, 38.908463 ], [ -77.097083, 38.908479 ], [ -77.097110, 38.908500 ], [ -77.097126, 38.908513 ], [ -77.097158, 38.908538 ], [ -77.097185, 38.908555 ], [ -77.097201, 38.908567 ], [ -77.097217, 38.908580 ], [ -77.097250, 38.908601 ], [ -77.097271, 38.908617 ], [ -77.097298, 38.908638 ], [ -77.097335, 38.908663 ], [ -77.097352, 38.908676 ], [ -77.097373, 38.908692 ], [ -77.097394, 38.908705 ], [ -77.097411, 38.908717 ], [ -77.097427, 38.908730 ], [ -77.097448, 38.908742 ], [ -77.097470, 38.908759 ], [ -77.097486, 38.908772 ], [ -77.097502, 38.908784 ], [ -77.097523, 38.908797 ], [ -77.097539, 38.908813 ], [ -77.097555, 38.908822 ], [ -77.097577, 38.908838 ], [ -77.097593, 38.908851 ], [ -77.097614, 38.908864 ], [ -77.097631, 38.908880 ], [ -77.097657, 38.908893 ], [ -77.097679, 38.908909 ], [ -77.097695, 38.908926 ], [ -77.097716, 38.908943 ], [ -77.097743, 38.908960 ], [ -77.097765, 38.908976 ], [ -77.097791, 38.908993 ], [ -77.097818, 38.909014 ], [ -77.097840, 38.909030 ], [ -77.097867, 38.909047 ], [ -77.097888, 38.909064 ], [ -77.097909, 38.909081 ], [ -77.097936, 38.909097 ], [ -77.097958, 38.909114 ], [ -77.097979, 38.909131 ], [ -77.098001, 38.909143 ], [ -77.098022, 38.909160 ], [ -77.098049, 38.909177 ], [ -77.098070, 38.909193 ], [ -77.098097, 38.909214 ], [ -77.098119, 38.909227 ], [ -77.098135, 38.909243 ], [ -77.098162, 38.909260 ], [ -77.098183, 38.909277 ], [ -77.098204, 38.909293 ], [ -77.098231, 38.909310 ], [ -77.098253, 38.909327 ], [ -77.098274, 38.909344 ], [ -77.098301, 38.909360 ], [ -77.098323, 38.909377 ], [ -77.098344, 38.909394 ], [ -77.098371, 38.909410 ], [ -77.098392, 38.909427 ], [ -77.098414, 38.909444 ], [ -77.098441, 38.909460 ], [ -77.098457, 38.909477 ], [ -77.098478, 38.909490 ], [ -77.098500, 38.909506 ], [ -77.098526, 38.909523 ], [ -77.098548, 38.909540 ], [ -77.098575, 38.909561 ], [ -77.098596, 38.909577 ], [ -77.098628, 38.909594 ], [ -77.098655, 38.909615 ], [ -77.098677, 38.909632 ], [ -77.098703, 38.909652 ], [ -77.098725, 38.909669 ], [ -77.098752, 38.909690 ], [ -77.098778, 38.909707 ], [ -77.098805, 38.909728 ], [ -77.098832, 38.909744 ], [ -77.098854, 38.909761 ], [ -77.098880, 38.909782 ], [ -77.098907, 38.909799 ], [ -77.098934, 38.909819 ], [ -77.098961, 38.909836 ], [ -77.098972, 38.909844 ], [ -77.098988, 38.909857 ], [ -77.099004, 38.909870 ], [ -77.099025, 38.909882 ], [ -77.099041, 38.909895 ], [ -77.099057, 38.909911 ], [ -77.099079, 38.909924 ], [ -77.099100, 38.909936 ], [ -77.099122, 38.909953 ], [ -77.099138, 38.909966 ], [ -77.099159, 38.909978 ], [ -77.099181, 38.909995 ], [ -77.099197, 38.910011 ], [ -77.099218, 38.910024 ], [ -77.099234, 38.910036 ], [ -77.099261, 38.910053 ], [ -77.099277, 38.910066 ], [ -77.099299, 38.910082 ], [ -77.099320, 38.910095 ], [ -77.099342, 38.910112 ], [ -77.099363, 38.910124 ], [ -77.099390, 38.910145 ], [ -77.099406, 38.910162 ], [ -77.099428, 38.910174 ], [ -77.099454, 38.910195 ], [ -77.099476, 38.910212 ], [ -77.099508, 38.910228 ], [ -77.099530, 38.910245 ], [ -77.099551, 38.910262 ], [ -77.099572, 38.910279 ], [ -77.099594, 38.910295 ], [ -77.099615, 38.910308 ], [ -77.099637, 38.910324 ], [ -77.099658, 38.910341 ], [ -77.099680, 38.910354 ], [ -77.099701, 38.910370 ], [ -77.099733, 38.910391 ], [ -77.099760, 38.910412 ], [ -77.099776, 38.910429 ], [ -77.099814, 38.910454 ], [ -77.099830, 38.910462 ], [ -77.099857, 38.910483 ], [ -77.099884, 38.910504 ], [ -77.099905, 38.910521 ], [ -77.099926, 38.910533 ], [ -77.099953, 38.910554 ], [ -77.099969, 38.910567 ], [ -77.099985, 38.910579 ], [ -77.099996, 38.910583 ], [ -77.100012, 38.910596 ], [ -77.100044, 38.910621 ], [ -77.100061, 38.910633 ], [ -77.100077, 38.910642 ], [ -77.100098, 38.910658 ], [ -77.100120, 38.910675 ], [ -77.100146, 38.910696 ], [ -77.100195, 38.910729 ], [ -77.100211, 38.910738 ], [ -77.100248, 38.910767 ], [ -77.100264, 38.910775 ], [ -77.100281, 38.910788 ], [ -77.100307, 38.910809 ], [ -77.100334, 38.910830 ], [ -77.100356, 38.910842 ], [ -77.100377, 38.910859 ], [ -77.100399, 38.910875 ], [ -77.100458, 38.910917 ], [ -77.100484, 38.910938 ], [ -77.100506, 38.910951 ], [ -77.100522, 38.910963 ], [ -77.100554, 38.910984 ], [ -77.100581, 38.911005 ], [ -77.100608, 38.911026 ], [ -77.100635, 38.911042 ], [ -77.100710, 38.911101 ], [ -77.100710, 38.911113 ], [ -77.100720, 38.911122 ], [ -77.100742, 38.911138 ], [ -77.100774, 38.911151 ], [ -77.100806, 38.911164 ], [ -77.100833, 38.911180 ], [ -77.100855, 38.911209 ], [ -77.099572, 38.911990 ], [ -77.098113, 38.913096 ], [ -77.097808, 38.913334 ], [ -77.097732, 38.913397 ], [ -77.097534, 38.913401 ], [ -77.097427, 38.913405 ], [ -77.096348, 38.914119 ], [ -77.096364, 38.914148 ], [ -77.096381, 38.914173 ], [ -77.096397, 38.914194 ], [ -77.096407, 38.914231 ], [ -77.096413, 38.914248 ], [ -77.096413, 38.914273 ], [ -77.096402, 38.914294 ], [ -77.096391, 38.914315 ], [ -77.096381, 38.914327 ], [ -77.096305, 38.914544 ], [ -77.094669, 38.915630 ], [ -77.094385, 38.915671 ], [ -77.094315, 38.915701 ], [ -77.094122, 38.915776 ], [ -77.094095, 38.915784 ], [ -77.093988, 38.915830 ], [ -77.093580, 38.915980 ], [ -77.093323, 38.916072 ], [ -77.093269, 38.916093 ], [ -77.093157, 38.916135 ], [ -77.093044, 38.916172 ], [ -77.092963, 38.916193 ], [ -77.092792, 38.916239 ], [ -77.092749, 38.916252 ], [ -77.092706, 38.916260 ], [ -77.092475, 38.916314 ], [ -77.092330, 38.916343 ], [ -77.092180, 38.916364 ], [ -77.091869, 38.916398 ], [ -77.091612, 38.916423 ], [ -77.091467, 38.916431 ], [ -77.091327, 38.916439 ], [ -77.091182, 38.916444 ], [ -77.090968, 38.916444 ], [ -77.090898, 38.916439 ], [ -77.090421, 38.916435 ], [ -77.089766, 38.916439 ], [ -77.088849, 38.916439 ], [ -77.088704, 38.916439 ], [ -77.088720, 38.916569 ], [ -77.088726, 38.916757 ], [ -77.088736, 38.916899 ], [ -77.088747, 38.917045 ], [ -77.088763, 38.917166 ], [ -77.088768, 38.917249 ], [ -77.088774, 38.917291 ], [ -77.088779, 38.917416 ], [ -77.088779, 38.917550 ], [ -77.088779, 38.917596 ], [ -77.088779, 38.917646 ], [ -77.088768, 38.917921 ], [ -77.088768, 38.918034 ], [ -77.088768, 38.918205 ], [ -77.088768, 38.918259 ], [ -77.088763, 38.918485 ], [ -77.088763, 38.918539 ], [ -77.088758, 38.918697 ], [ -77.088747, 38.919019 ], [ -77.088747, 38.919090 ], [ -77.088742, 38.919165 ], [ -77.086558, 38.919173 ], [ -77.086344, 38.919173 ], [ -77.086000, 38.919169 ], [ -77.082578, 38.919298 ], [ -77.082556, 38.918664 ], [ -77.081832, 38.917424 ], [ -77.081720, 38.917232 ], [ -77.081484, 38.916894 ], [ -77.081301, 38.916636 ], [ -77.081006, 38.916222 ], [ -77.080920, 38.915993 ], [ -77.080695, 38.915371 ], [ -77.080550, 38.915037 ], [ -77.080395, 38.914841 ], [ -77.079343, 38.914044 ], [ -77.079236, 38.913860 ], [ -77.079220, 38.913845 ], [ -77.079220, 38.912679 ], [ -77.079263, 38.912679 ], [ -77.079252, 38.912633 ], [ -77.079236, 38.912261 ], [ -77.079220, 38.911957 ], [ -77.079220, 38.905665 ], [ -77.079408, 38.905637 ], [ -77.079864, 38.905407 ], [ -77.079890, 38.905190 ], [ -77.079906, 38.905073 ], [ -77.079912, 38.904885 ], [ -77.079220, 38.902474 ], [ -77.079220, 38.902456 ], [ -77.079247, 38.902460 ], [ -77.079279, 38.902439 ], [ -77.079311, 38.902418 ], [ -77.079332, 38.902410 ], [ -77.079359, 38.902401 ], [ -77.079381, 38.902397 ], [ -77.079408, 38.902397 ], [ -77.079434, 38.902397 ], [ -77.079461, 38.902397 ], [ -77.079488, 38.902397 ], [ -77.079520, 38.902397 ], [ -77.079552, 38.902397 ], [ -77.079585, 38.902389 ], [ -77.079617, 38.902381 ], [ -77.079644, 38.902368 ], [ -77.079681, 38.902360 ], [ -77.079724, 38.902351 ], [ -77.079767, 38.902343 ], [ -77.079805, 38.902335 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000702", "GEOID": "11001000702", "NAME": "7.02", "NAMELSAD": "Census Tract 7.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308967, "AWATER": 0, "INTPTLAT": "+38.9241271", "INTPTLON": "-077.0778930" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079220, 38.922550 ], [ -77.079322, 38.922550 ], [ -77.079756, 38.922550 ], [ -77.080003, 38.922550 ], [ -77.080711, 38.922550 ], [ -77.080749, 38.922124 ], [ -77.080765, 38.921932 ], [ -77.080781, 38.921765 ], [ -77.080792, 38.921677 ], [ -77.080840, 38.921669 ], [ -77.080920, 38.921657 ], [ -77.081816, 38.921544 ], [ -77.082004, 38.921523 ], [ -77.082267, 38.921494 ], [ -77.082562, 38.921498 ], [ -77.082519, 38.921715 ], [ -77.081999, 38.924641 ], [ -77.081940, 38.924837 ], [ -77.081929, 38.924958 ], [ -77.081727, 38.925897 ], [ -77.079220, 38.925897 ], [ -77.079220, 38.922550 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000300", "GEOID": "11001000300", "NAME": "3", "NAMELSAD": "Census Tract 3", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1042156, "AWATER": 2305, "INTPTLAT": "+38.9179099", "INTPTLON": "-077.0748728" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079220, 38.913845 ], [ -77.079236, 38.913860 ], [ -77.079343, 38.914044 ], [ -77.080395, 38.914841 ], [ -77.080550, 38.915037 ], [ -77.080695, 38.915371 ], [ -77.080920, 38.915993 ], [ -77.081006, 38.916222 ], [ -77.081301, 38.916636 ], [ -77.081484, 38.916894 ], [ -77.081720, 38.917232 ], [ -77.081832, 38.917424 ], [ -77.082556, 38.918664 ], [ -77.082578, 38.919298 ], [ -77.082621, 38.921197 ], [ -77.082562, 38.921498 ], [ -77.082267, 38.921494 ], [ -77.082004, 38.921523 ], [ -77.081816, 38.921544 ], [ -77.080920, 38.921657 ], [ -77.080840, 38.921669 ], [ -77.080792, 38.921677 ], [ -77.080781, 38.921765 ], [ -77.080765, 38.921932 ], [ -77.080749, 38.922124 ], [ -77.080711, 38.922550 ], [ -77.080003, 38.922550 ], [ -77.079756, 38.922550 ], [ -77.079322, 38.922550 ], [ -77.079220, 38.922550 ], [ -77.079220, 38.913845 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000201", "GEOID": "11001000201", "NAME": "2.01", "NAMELSAD": "Census Tract 2.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 505004, "AWATER": 0, "INTPTLAT": "+38.9092171", "INTPTLON": "-077.0743418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079220, 38.911957 ], [ -77.079236, 38.912261 ], [ -77.079252, 38.912633 ], [ -77.079263, 38.912679 ], [ -77.079220, 38.912679 ], [ -77.079220, 38.911957 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000202", "GEOID": "11001000202", "NAME": "2.02", "NAMELSAD": "Census Tract 2.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 776435, "AWATER": 439661, "INTPTLAT": "+38.9063048", "INTPTLON": "-077.0696362" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079220, 38.902474 ], [ -77.079912, 38.904885 ], [ -77.079906, 38.905073 ], [ -77.079890, 38.905190 ], [ -77.079864, 38.905407 ], [ -77.079408, 38.905637 ], [ -77.079220, 38.905665 ], [ -77.079220, 38.902474 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2341, "y": 3132 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000904", "GEOID": "11001000904", "NAME": "9.04", "NAMELSAD": "Census Tract 9.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2024710, "AWATER": 75151, "INTPTLAT": "+38.9366243", "INTPTLON": "-077.1036767" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.104030, 38.927357 ], [ -77.104105, 38.927424 ], [ -77.104374, 38.927666 ], [ -77.104620, 38.927892 ], [ -77.104958, 38.928196 ], [ -77.105108, 38.928330 ], [ -77.105253, 38.928459 ], [ -77.105715, 38.928876 ], [ -77.105758, 38.928914 ], [ -77.106047, 38.929181 ], [ -77.106487, 38.929582 ], [ -77.106578, 38.929648 ], [ -77.106600, 38.929665 ], [ -77.106653, 38.929715 ], [ -77.106680, 38.929740 ], [ -77.106702, 38.929769 ], [ -77.106745, 38.929824 ], [ -77.106771, 38.929861 ], [ -77.106820, 38.929920 ], [ -77.106847, 38.929961 ], [ -77.106863, 38.929999 ], [ -77.106868, 38.930041 ], [ -77.106879, 38.930082 ], [ -77.106895, 38.930149 ], [ -77.106906, 38.930187 ], [ -77.106922, 38.930262 ], [ -77.106938, 38.930316 ], [ -77.106970, 38.930471 ], [ -77.106997, 38.930575 ], [ -77.107013, 38.930621 ], [ -77.107029, 38.930667 ], [ -77.107050, 38.930717 ], [ -77.107077, 38.930763 ], [ -77.107099, 38.930809 ], [ -77.107126, 38.930850 ], [ -77.107158, 38.930896 ], [ -77.107190, 38.930938 ], [ -77.107222, 38.930980 ], [ -77.107260, 38.931021 ], [ -77.107297, 38.931059 ], [ -77.107335, 38.931097 ], [ -77.107721, 38.931422 ], [ -77.107839, 38.931526 ], [ -77.107914, 38.931585 ], [ -77.107995, 38.931652 ], [ -77.108274, 38.931885 ], [ -77.108397, 38.931981 ], [ -77.108515, 38.932081 ], [ -77.108687, 38.932227 ], [ -77.108740, 38.932282 ], [ -77.108837, 38.932378 ], [ -77.108858, 38.932403 ], [ -77.108982, 38.932499 ], [ -77.109078, 38.932586 ], [ -77.109175, 38.932682 ], [ -77.109556, 38.933033 ], [ -77.109631, 38.933100 ], [ -77.109663, 38.933129 ], [ -77.109749, 38.933216 ], [ -77.109835, 38.933308 ], [ -77.109915, 38.933404 ], [ -77.110328, 38.933980 ], [ -77.110628, 38.934381 ], [ -77.110730, 38.934518 ], [ -77.110768, 38.934573 ], [ -77.110784, 38.934593 ], [ -77.110929, 38.934794 ], [ -77.111363, 38.935378 ], [ -77.111583, 38.935691 ], [ -77.111658, 38.935783 ], [ -77.111675, 38.935799 ], [ -77.111696, 38.935829 ], [ -77.111728, 38.935870 ], [ -77.111760, 38.935912 ], [ -77.111825, 38.936000 ], [ -77.111862, 38.936062 ], [ -77.111889, 38.936108 ], [ -77.111916, 38.936154 ], [ -77.111943, 38.936204 ], [ -77.111970, 38.936254 ], [ -77.111991, 38.936304 ], [ -77.112007, 38.936358 ], [ -77.112066, 38.936534 ], [ -77.112077, 38.936567 ], [ -77.112082, 38.936621 ], [ -77.112088, 38.936676 ], [ -77.112093, 38.936730 ], [ -77.112098, 38.936822 ], [ -77.112098, 38.936901 ], [ -77.112093, 38.936959 ], [ -77.112088, 38.937014 ], [ -77.112082, 38.937072 ], [ -77.112072, 38.937126 ], [ -77.112061, 38.937185 ], [ -77.112045, 38.937256 ], [ -77.112023, 38.937377 ], [ -77.111975, 38.937811 ], [ -77.111975, 38.937907 ], [ -77.111975, 38.937977 ], [ -77.111975, 38.938019 ], [ -77.112013, 38.938507 ], [ -77.112034, 38.938866 ], [ -77.112045, 38.939004 ], [ -77.112061, 38.939108 ], [ -77.112088, 38.939221 ], [ -77.112136, 38.939317 ], [ -77.112227, 38.939475 ], [ -77.112511, 38.940005 ], [ -77.112544, 38.940089 ], [ -77.112565, 38.940160 ], [ -77.112576, 38.940226 ], [ -77.112184, 38.940519 ], [ -77.112093, 38.940585 ], [ -77.111916, 38.940723 ], [ -77.111894, 38.940740 ], [ -77.109030, 38.942909 ], [ -77.108912, 38.943001 ], [ -77.108837, 38.943055 ], [ -77.106128, 38.945154 ], [ -77.104840, 38.946038 ], [ -77.104111, 38.946627 ], [ -77.102512, 38.947903 ], [ -77.101359, 38.948663 ], [ -77.100951, 38.948946 ], [ -77.100624, 38.949163 ], [ -77.100602, 38.949142 ], [ -77.100565, 38.949105 ], [ -77.100522, 38.949055 ], [ -77.100500, 38.949001 ], [ -77.100484, 38.948946 ], [ -77.100479, 38.948896 ], [ -77.100484, 38.948838 ], [ -77.100495, 38.948804 ], [ -77.100506, 38.948779 ], [ -77.100527, 38.948742 ], [ -77.100559, 38.948700 ], [ -77.100592, 38.948667 ], [ -77.100608, 38.948650 ], [ -77.100431, 38.948521 ], [ -77.099589, 38.947908 ], [ -77.099288, 38.947686 ], [ -77.098993, 38.947474 ], [ -77.098778, 38.947319 ], [ -77.098441, 38.947069 ], [ -77.097545, 38.946414 ], [ -77.097330, 38.946260 ], [ -77.096912, 38.945955 ], [ -77.096874, 38.945926 ], [ -77.096761, 38.945842 ], [ -77.096761, 38.945692 ], [ -77.096767, 38.945433 ], [ -77.096761, 38.944820 ], [ -77.096761, 38.944240 ], [ -77.096767, 38.943239 ], [ -77.096761, 38.943164 ], [ -77.096761, 38.943080 ], [ -77.096761, 38.942212 ], [ -77.096761, 38.941345 ], [ -77.096761, 38.941265 ], [ -77.096761, 38.941082 ], [ -77.096761, 38.940322 ], [ -77.096761, 38.939450 ], [ -77.096761, 38.939371 ], [ -77.096756, 38.938499 ], [ -77.096751, 38.938428 ], [ -77.096745, 38.938357 ], [ -77.096735, 38.938286 ], [ -77.096708, 38.938140 ], [ -77.096681, 38.938040 ], [ -77.096670, 38.937994 ], [ -77.096617, 38.937819 ], [ -77.096574, 38.937690 ], [ -77.096525, 38.937564 ], [ -77.096483, 38.937439 ], [ -77.096429, 38.937306 ], [ -77.096402, 38.937243 ], [ -77.096295, 38.936930 ], [ -77.096273, 38.936872 ], [ -77.096268, 38.936847 ], [ -77.095978, 38.935987 ], [ -77.095968, 38.935920 ], [ -77.096059, 38.935933 ], [ -77.096139, 38.935941 ], [ -77.096220, 38.935950 ], [ -77.096305, 38.935950 ], [ -77.096386, 38.935950 ], [ -77.096424, 38.935950 ], [ -77.098875, 38.935962 ], [ -77.098918, 38.935962 ], [ -77.098956, 38.935958 ], [ -77.098998, 38.935954 ], [ -77.099079, 38.935937 ], [ -77.099116, 38.935929 ], [ -77.099149, 38.935920 ], [ -77.099470, 38.935795 ], [ -77.099760, 38.935708 ], [ -77.099873, 38.935687 ], [ -77.099905, 38.935682 ], [ -77.099943, 38.935678 ], [ -77.100012, 38.935682 ], [ -77.100044, 38.935682 ], [ -77.100082, 38.935691 ], [ -77.100114, 38.935695 ], [ -77.100168, 38.935703 ], [ -77.100227, 38.935703 ], [ -77.100281, 38.935703 ], [ -77.100340, 38.935695 ], [ -77.100393, 38.935687 ], [ -77.100447, 38.935670 ], [ -77.100468, 38.935662 ], [ -77.100549, 38.935624 ], [ -77.100586, 38.935599 ], [ -77.100629, 38.935566 ], [ -77.100677, 38.935516 ], [ -77.100731, 38.935466 ], [ -77.100779, 38.935420 ], [ -77.100930, 38.935269 ], [ -77.101032, 38.935161 ], [ -77.100935, 38.935107 ], [ -77.100645, 38.934898 ], [ -77.100264, 38.934606 ], [ -77.100189, 38.934539 ], [ -77.100152, 38.934506 ], [ -77.100082, 38.934435 ], [ -77.100050, 38.934397 ], [ -77.100018, 38.934360 ], [ -77.099985, 38.934322 ], [ -77.099959, 38.934285 ], [ -77.099835, 38.934084 ], [ -77.099626, 38.933759 ], [ -77.099589, 38.933705 ], [ -77.099546, 38.933655 ], [ -77.099524, 38.933629 ], [ -77.099454, 38.933563 ], [ -77.099428, 38.933542 ], [ -77.099395, 38.933513 ], [ -77.099304, 38.933438 ], [ -77.099208, 38.933362 ], [ -77.099143, 38.933317 ], [ -77.099106, 38.933291 ], [ -77.099063, 38.933266 ], [ -77.099020, 38.933241 ], [ -77.098929, 38.933191 ], [ -77.098837, 38.933145 ], [ -77.098741, 38.933104 ], [ -77.098644, 38.933066 ], [ -77.098446, 38.932999 ], [ -77.098097, 38.932887 ], [ -77.097207, 38.932590 ], [ -77.097089, 38.932549 ], [ -77.097169, 38.932474 ], [ -77.098306, 38.931476 ], [ -77.099615, 38.930325 ], [ -77.099728, 38.930224 ], [ -77.100270, 38.929749 ], [ -77.100399, 38.929636 ], [ -77.100565, 38.929490 ], [ -77.101021, 38.929085 ], [ -77.101455, 38.928705 ], [ -77.101579, 38.928601 ], [ -77.101691, 38.928501 ], [ -77.101734, 38.928459 ], [ -77.101772, 38.928422 ], [ -77.101815, 38.928384 ], [ -77.101858, 38.928346 ], [ -77.101906, 38.928313 ], [ -77.101954, 38.928280 ], [ -77.101976, 38.928263 ], [ -77.102003, 38.928246 ], [ -77.102051, 38.928217 ], [ -77.102104, 38.928188 ], [ -77.102496, 38.927983 ], [ -77.102904, 38.927775 ], [ -77.103016, 38.927720 ], [ -77.103129, 38.927666 ], [ -77.103247, 38.927616 ], [ -77.103360, 38.927570 ], [ -77.103478, 38.927524 ], [ -77.103746, 38.927437 ], [ -77.103805, 38.927420 ], [ -77.104030, 38.927357 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000902", "GEOID": "11001000902", "NAME": "9.02", "NAMELSAD": "Census Tract 9.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1867106, "AWATER": 307257, "INTPTLAT": "+38.9285125", "INTPTLON": "-077.1077517" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.112517, 38.924561 ], [ -77.112522, 38.924570 ], [ -77.112533, 38.924591 ], [ -77.112560, 38.924607 ], [ -77.112581, 38.924628 ], [ -77.112608, 38.924645 ], [ -77.112635, 38.924649 ], [ -77.112656, 38.924657 ], [ -77.112678, 38.924687 ], [ -77.112688, 38.924703 ], [ -77.112699, 38.924720 ], [ -77.112710, 38.924737 ], [ -77.112726, 38.924753 ], [ -77.112737, 38.924774 ], [ -77.112747, 38.924791 ], [ -77.112764, 38.924808 ], [ -77.112780, 38.924824 ], [ -77.112796, 38.924853 ], [ -77.112796, 38.924874 ], [ -77.112769, 38.924878 ], [ -77.112742, 38.924883 ], [ -77.112737, 38.924904 ], [ -77.112747, 38.924920 ], [ -77.112753, 38.924941 ], [ -77.112780, 38.924941 ], [ -77.112801, 38.924949 ], [ -77.112828, 38.924962 ], [ -77.112844, 38.924987 ], [ -77.112855, 38.925008 ], [ -77.112839, 38.925025 ], [ -77.112849, 38.925045 ], [ -77.112876, 38.925045 ], [ -77.112892, 38.925066 ], [ -77.112908, 38.925087 ], [ -77.112919, 38.925062 ], [ -77.112946, 38.925058 ], [ -77.112962, 38.925083 ], [ -77.112989, 38.925112 ], [ -77.113010, 38.925125 ], [ -77.113032, 38.925146 ], [ -77.113096, 38.925242 ], [ -77.113182, 38.925313 ], [ -77.113214, 38.925317 ], [ -77.113230, 38.925329 ], [ -77.113241, 38.925350 ], [ -77.113268, 38.925358 ], [ -77.113289, 38.925367 ], [ -77.113327, 38.925363 ], [ -77.113348, 38.925367 ], [ -77.113364, 38.925383 ], [ -77.113375, 38.925404 ], [ -77.113402, 38.925417 ], [ -77.113402, 38.925442 ], [ -77.113402, 38.925471 ], [ -77.113423, 38.925488 ], [ -77.113423, 38.925509 ], [ -77.113429, 38.925530 ], [ -77.113445, 38.925555 ], [ -77.113466, 38.925575 ], [ -77.113482, 38.925596 ], [ -77.113504, 38.925617 ], [ -77.113515, 38.925638 ], [ -77.113525, 38.925655 ], [ -77.113541, 38.925671 ], [ -77.113547, 38.925701 ], [ -77.113552, 38.925734 ], [ -77.113563, 38.925755 ], [ -77.113590, 38.925751 ], [ -77.113616, 38.925742 ], [ -77.113627, 38.925767 ], [ -77.113649, 38.925784 ], [ -77.113659, 38.925805 ], [ -77.113659, 38.925826 ], [ -77.113681, 38.925847 ], [ -77.113692, 38.925863 ], [ -77.113713, 38.925851 ], [ -77.113734, 38.925847 ], [ -77.113756, 38.925868 ], [ -77.113756, 38.925893 ], [ -77.113756, 38.925913 ], [ -77.113751, 38.925943 ], [ -77.113756, 38.925968 ], [ -77.113777, 38.925984 ], [ -77.113799, 38.926001 ], [ -77.113826, 38.926005 ], [ -77.113858, 38.926018 ], [ -77.113874, 38.926030 ], [ -77.113895, 38.926055 ], [ -77.113922, 38.926072 ], [ -77.113938, 38.926093 ], [ -77.113949, 38.926114 ], [ -77.113949, 38.926135 ], [ -77.113976, 38.926130 ], [ -77.114003, 38.926139 ], [ -77.114019, 38.926160 ], [ -77.114019, 38.926189 ], [ -77.114019, 38.926210 ], [ -77.114019, 38.926231 ], [ -77.114019, 38.926260 ], [ -77.114035, 38.926281 ], [ -77.114067, 38.926281 ], [ -77.114083, 38.926293 ], [ -77.114099, 38.926310 ], [ -77.114115, 38.926331 ], [ -77.114121, 38.926360 ], [ -77.114126, 38.926385 ], [ -77.114131, 38.926414 ], [ -77.114148, 38.926435 ], [ -77.114169, 38.926460 ], [ -77.114180, 38.926485 ], [ -77.114190, 38.926506 ], [ -77.114212, 38.926523 ], [ -77.114228, 38.926539 ], [ -77.114244, 38.926565 ], [ -77.114249, 38.926585 ], [ -77.114249, 38.926606 ], [ -77.114276, 38.926619 ], [ -77.114292, 38.926606 ], [ -77.114314, 38.926623 ], [ -77.114346, 38.926631 ], [ -77.114367, 38.926648 ], [ -77.114384, 38.926665 ], [ -77.114400, 38.926690 ], [ -77.114405, 38.926715 ], [ -77.114416, 38.926736 ], [ -77.114432, 38.926761 ], [ -77.114448, 38.926786 ], [ -77.114459, 38.926807 ], [ -77.114480, 38.926823 ], [ -77.114486, 38.926852 ], [ -77.114512, 38.926869 ], [ -77.114523, 38.926886 ], [ -77.114518, 38.926911 ], [ -77.114523, 38.926936 ], [ -77.114545, 38.926948 ], [ -77.114582, 38.926961 ], [ -77.114620, 38.926978 ], [ -77.114636, 38.927007 ], [ -77.114641, 38.927032 ], [ -77.114663, 38.927057 ], [ -77.114695, 38.927057 ], [ -77.114732, 38.927065 ], [ -77.114759, 38.927090 ], [ -77.114781, 38.927120 ], [ -77.114781, 38.927149 ], [ -77.114786, 38.927170 ], [ -77.114775, 38.927190 ], [ -77.114759, 38.927203 ], [ -77.114770, 38.927224 ], [ -77.114791, 38.927216 ], [ -77.114818, 38.927211 ], [ -77.114797, 38.927236 ], [ -77.114813, 38.927253 ], [ -77.114823, 38.927278 ], [ -77.114840, 38.927299 ], [ -77.114861, 38.927320 ], [ -77.114882, 38.927320 ], [ -77.114899, 38.927341 ], [ -77.114899, 38.927357 ], [ -77.114899, 38.927374 ], [ -77.114925, 38.927387 ], [ -77.114952, 38.927378 ], [ -77.114941, 38.927357 ], [ -77.114936, 38.927341 ], [ -77.114968, 38.927357 ], [ -77.114990, 38.927366 ], [ -77.115054, 38.927374 ], [ -77.115081, 38.927391 ], [ -77.115119, 38.927399 ], [ -77.115145, 38.927407 ], [ -77.115172, 38.927433 ], [ -77.115199, 38.927462 ], [ -77.115215, 38.927487 ], [ -77.115231, 38.927512 ], [ -77.115258, 38.927529 ], [ -77.115274, 38.927558 ], [ -77.115285, 38.927583 ], [ -77.115301, 38.927599 ], [ -77.115322, 38.927620 ], [ -77.115328, 38.927645 ], [ -77.115333, 38.927666 ], [ -77.115360, 38.927658 ], [ -77.115387, 38.927641 ], [ -77.115408, 38.927650 ], [ -77.115440, 38.927666 ], [ -77.115446, 38.927691 ], [ -77.115467, 38.927712 ], [ -77.115489, 38.927712 ], [ -77.115515, 38.927712 ], [ -77.115526, 38.927725 ], [ -77.115515, 38.927754 ], [ -77.115510, 38.927787 ], [ -77.115515, 38.927816 ], [ -77.115548, 38.927829 ], [ -77.115569, 38.927842 ], [ -77.115601, 38.927858 ], [ -77.115617, 38.927875 ], [ -77.115639, 38.927900 ], [ -77.115671, 38.927917 ], [ -77.115698, 38.927937 ], [ -77.115709, 38.927958 ], [ -77.115730, 38.927979 ], [ -77.115741, 38.928008 ], [ -77.115762, 38.928021 ], [ -77.115794, 38.928021 ], [ -77.115816, 38.928042 ], [ -77.115827, 38.928063 ], [ -77.115811, 38.928084 ], [ -77.115827, 38.928104 ], [ -77.115859, 38.928096 ], [ -77.115880, 38.928100 ], [ -77.115896, 38.928121 ], [ -77.115902, 38.928146 ], [ -77.115923, 38.928159 ], [ -77.115955, 38.928167 ], [ -77.115966, 38.928188 ], [ -77.115977, 38.928213 ], [ -77.115988, 38.928238 ], [ -77.115998, 38.928263 ], [ -77.116020, 38.928288 ], [ -77.116036, 38.928313 ], [ -77.116041, 38.928330 ], [ -77.116041, 38.928346 ], [ -77.116025, 38.928363 ], [ -77.116009, 38.928376 ], [ -77.116014, 38.928397 ], [ -77.116025, 38.928413 ], [ -77.116047, 38.928401 ], [ -77.116079, 38.928401 ], [ -77.116100, 38.928413 ], [ -77.116116, 38.928430 ], [ -77.116127, 38.928451 ], [ -77.116132, 38.928472 ], [ -77.116154, 38.928484 ], [ -77.116175, 38.928501 ], [ -77.116191, 38.928522 ], [ -77.116202, 38.928547 ], [ -77.116207, 38.928572 ], [ -77.116207, 38.928593 ], [ -77.116186, 38.928651 ], [ -77.116191, 38.928676 ], [ -77.116202, 38.928701 ], [ -77.116224, 38.928722 ], [ -77.116240, 38.928747 ], [ -77.116245, 38.928776 ], [ -77.116256, 38.928801 ], [ -77.116283, 38.928818 ], [ -77.116309, 38.928831 ], [ -77.116325, 38.928851 ], [ -77.116336, 38.928868 ], [ -77.116320, 38.928893 ], [ -77.116315, 38.928914 ], [ -77.116320, 38.928943 ], [ -77.116325, 38.928997 ], [ -77.116347, 38.929102 ], [ -77.116363, 38.929118 ], [ -77.116374, 38.929139 ], [ -77.116385, 38.929164 ], [ -77.116406, 38.929185 ], [ -77.116417, 38.929210 ], [ -77.116433, 38.929240 ], [ -77.116438, 38.929269 ], [ -77.116433, 38.929302 ], [ -77.116438, 38.929331 ], [ -77.116449, 38.929356 ], [ -77.116444, 38.929390 ], [ -77.116438, 38.929419 ], [ -77.116433, 38.929440 ], [ -77.116406, 38.929452 ], [ -77.116406, 38.929477 ], [ -77.116411, 38.929502 ], [ -77.116433, 38.929569 ], [ -77.116465, 38.929632 ], [ -77.116508, 38.929699 ], [ -77.116519, 38.929715 ], [ -77.116540, 38.929740 ], [ -77.116556, 38.929761 ], [ -77.116567, 38.929782 ], [ -77.116583, 38.929803 ], [ -77.116594, 38.929820 ], [ -77.116604, 38.929836 ], [ -77.116621, 38.929853 ], [ -77.116637, 38.929878 ], [ -77.116653, 38.929903 ], [ -77.116669, 38.929924 ], [ -77.116685, 38.929949 ], [ -77.116701, 38.929974 ], [ -77.116712, 38.929991 ], [ -77.116728, 38.930007 ], [ -77.116739, 38.930032 ], [ -77.116755, 38.930045 ], [ -77.116765, 38.930062 ], [ -77.116781, 38.930087 ], [ -77.116792, 38.930103 ], [ -77.116798, 38.930112 ], [ -77.116814, 38.930137 ], [ -77.116830, 38.930153 ], [ -77.116840, 38.930166 ], [ -77.116867, 38.930216 ], [ -77.116883, 38.930233 ], [ -77.116905, 38.930262 ], [ -77.116916, 38.930279 ], [ -77.116926, 38.930295 ], [ -77.116937, 38.930312 ], [ -77.116953, 38.930329 ], [ -77.116964, 38.930354 ], [ -77.116975, 38.930370 ], [ -77.116996, 38.930391 ], [ -77.117007, 38.930408 ], [ -77.117018, 38.930425 ], [ -77.117034, 38.930450 ], [ -77.117039, 38.930458 ], [ -77.117050, 38.930475 ], [ -77.117071, 38.930504 ], [ -77.117082, 38.930521 ], [ -77.117103, 38.930546 ], [ -77.117119, 38.930571 ], [ -77.117130, 38.930587 ], [ -77.117141, 38.930604 ], [ -77.117146, 38.930612 ], [ -77.117162, 38.930633 ], [ -77.117173, 38.930654 ], [ -77.117184, 38.930671 ], [ -77.117205, 38.930692 ], [ -77.117221, 38.930717 ], [ -77.117232, 38.930738 ], [ -77.117243, 38.930750 ], [ -77.117248, 38.930759 ], [ -77.117264, 38.930779 ], [ -77.117286, 38.930813 ], [ -77.117307, 38.930838 ], [ -77.117323, 38.930863 ], [ -77.117334, 38.930875 ], [ -77.117345, 38.930892 ], [ -77.117355, 38.930909 ], [ -77.117366, 38.930925 ], [ -77.117377, 38.930942 ], [ -77.117393, 38.930967 ], [ -77.117414, 38.930996 ], [ -77.117431, 38.931021 ], [ -77.117447, 38.931038 ], [ -77.117457, 38.931055 ], [ -77.117479, 38.931088 ], [ -77.117490, 38.931105 ], [ -77.117506, 38.931126 ], [ -77.117522, 38.931142 ], [ -77.117538, 38.931167 ], [ -77.117559, 38.931201 ], [ -77.117575, 38.931226 ], [ -77.117592, 38.931251 ], [ -77.117602, 38.931263 ], [ -77.117618, 38.931288 ], [ -77.117640, 38.931318 ], [ -77.117661, 38.931347 ], [ -77.117683, 38.931376 ], [ -77.117699, 38.931401 ], [ -77.117715, 38.931426 ], [ -77.117726, 38.931443 ], [ -77.117742, 38.931468 ], [ -77.117758, 38.931480 ], [ -77.117769, 38.931505 ], [ -77.117779, 38.931522 ], [ -77.117801, 38.931547 ], [ -77.117811, 38.931564 ], [ -77.117828, 38.931589 ], [ -77.117849, 38.931618 ], [ -77.117870, 38.931652 ], [ -77.117887, 38.931668 ], [ -77.117903, 38.931693 ], [ -77.117913, 38.931714 ], [ -77.117929, 38.931735 ], [ -77.117946, 38.931756 ], [ -77.117956, 38.931773 ], [ -77.117967, 38.931789 ], [ -77.117983, 38.931810 ], [ -77.117994, 38.931827 ], [ -77.118005, 38.931843 ], [ -77.118026, 38.931869 ], [ -77.118042, 38.931894 ], [ -77.118053, 38.931910 ], [ -77.118069, 38.931935 ], [ -77.118090, 38.931964 ], [ -77.118106, 38.931990 ], [ -77.118128, 38.932015 ], [ -77.118144, 38.932040 ], [ -77.118155, 38.932056 ], [ -77.118171, 38.932077 ], [ -77.118176, 38.932090 ], [ -77.118192, 38.932111 ], [ -77.118214, 38.932136 ], [ -77.118225, 38.932161 ], [ -77.118241, 38.932177 ], [ -77.118257, 38.932202 ], [ -77.118273, 38.932227 ], [ -77.118289, 38.932248 ], [ -77.118300, 38.932265 ], [ -77.118316, 38.932290 ], [ -77.118332, 38.932315 ], [ -77.118348, 38.932332 ], [ -77.118369, 38.932361 ], [ -77.118380, 38.932378 ], [ -77.118391, 38.932394 ], [ -77.118407, 38.932415 ], [ -77.118418, 38.932436 ], [ -77.118434, 38.932453 ], [ -77.118450, 38.932478 ], [ -77.118461, 38.932499 ], [ -77.118477, 38.932515 ], [ -77.118487, 38.932532 ], [ -77.118503, 38.932553 ], [ -77.118520, 38.932582 ], [ -77.118530, 38.932595 ], [ -77.118546, 38.932620 ], [ -77.118557, 38.932636 ], [ -77.118573, 38.932653 ], [ -77.118584, 38.932670 ], [ -77.118595, 38.932686 ], [ -77.118611, 38.932707 ], [ -77.118627, 38.932732 ], [ -77.118643, 38.932757 ], [ -77.118648, 38.932766 ], [ -77.118670, 38.932795 ], [ -77.118686, 38.932816 ], [ -77.118702, 38.932841 ], [ -77.118718, 38.932862 ], [ -77.118734, 38.932887 ], [ -77.118745, 38.932899 ], [ -77.118756, 38.932920 ], [ -77.118777, 38.932949 ], [ -77.118798, 38.932974 ], [ -77.118815, 38.932999 ], [ -77.118831, 38.933024 ], [ -77.118847, 38.933049 ], [ -77.118858, 38.933066 ], [ -77.118874, 38.933087 ], [ -77.118890, 38.933104 ], [ -77.118906, 38.933137 ], [ -77.118922, 38.933154 ], [ -77.118933, 38.933175 ], [ -77.118949, 38.933196 ], [ -77.118959, 38.933208 ], [ -77.118981, 38.933241 ], [ -77.118997, 38.933266 ], [ -77.119013, 38.933283 ], [ -77.119024, 38.933308 ], [ -77.119045, 38.933329 ], [ -77.119067, 38.933362 ], [ -77.119077, 38.933379 ], [ -77.119088, 38.933396 ], [ -77.119099, 38.933412 ], [ -77.119115, 38.933433 ], [ -77.119136, 38.933458 ], [ -77.119153, 38.933483 ], [ -77.119158, 38.933496 ], [ -77.119179, 38.933525 ], [ -77.119195, 38.933546 ], [ -77.119206, 38.933567 ], [ -77.119228, 38.933588 ], [ -77.119244, 38.933613 ], [ -77.119260, 38.933638 ], [ -77.119276, 38.933667 ], [ -77.119292, 38.933684 ], [ -77.119308, 38.933709 ], [ -77.119324, 38.933730 ], [ -77.119335, 38.933750 ], [ -77.119356, 38.933780 ], [ -77.119367, 38.933792 ], [ -77.119378, 38.933813 ], [ -77.119389, 38.933826 ], [ -77.119410, 38.933855 ], [ -77.119426, 38.933880 ], [ -77.119442, 38.933905 ], [ -77.119464, 38.933930 ], [ -77.119485, 38.933959 ], [ -77.119507, 38.933993 ], [ -77.119523, 38.934018 ], [ -77.119539, 38.934043 ], [ -77.119555, 38.934068 ], [ -77.119576, 38.934097 ], [ -77.119592, 38.934114 ], [ -77.119609, 38.934139 ], [ -77.119625, 38.934164 ], [ -77.119641, 38.934189 ], [ -77.119668, 38.934218 ], [ -77.119689, 38.934235 ], [ -77.119759, 38.934343 ], [ -77.119748, 38.934351 ], [ -77.118858, 38.935357 ], [ -77.117393, 38.936400 ], [ -77.117232, 38.936509 ], [ -77.117205, 38.936525 ], [ -77.117141, 38.936588 ], [ -77.117055, 38.936659 ], [ -77.116980, 38.936726 ], [ -77.116905, 38.936767 ], [ -77.116840, 38.936822 ], [ -77.116824, 38.936834 ], [ -77.116803, 38.936855 ], [ -77.116792, 38.936863 ], [ -77.116765, 38.936888 ], [ -77.116744, 38.936918 ], [ -77.116143, 38.937464 ], [ -77.116020, 38.937552 ], [ -77.115188, 38.938165 ], [ -77.114845, 38.938436 ], [ -77.114131, 38.939004 ], [ -77.113960, 38.939137 ], [ -77.112576, 38.940226 ], [ -77.112565, 38.940160 ], [ -77.112544, 38.940089 ], [ -77.112511, 38.940005 ], [ -77.112227, 38.939475 ], [ -77.112136, 38.939317 ], [ -77.112088, 38.939221 ], [ -77.112061, 38.939108 ], [ -77.112045, 38.939004 ], [ -77.112034, 38.938866 ], [ -77.112013, 38.938507 ], [ -77.111975, 38.938019 ], [ -77.111975, 38.937977 ], [ -77.111975, 38.937907 ], [ -77.111975, 38.937811 ], [ -77.112023, 38.937377 ], [ -77.112045, 38.937256 ], [ -77.112061, 38.937185 ], [ -77.112072, 38.937126 ], [ -77.112082, 38.937072 ], [ -77.112088, 38.937014 ], [ -77.112093, 38.936959 ], [ -77.112098, 38.936901 ], [ -77.112098, 38.936822 ], [ -77.112093, 38.936730 ], [ -77.112088, 38.936676 ], [ -77.112082, 38.936621 ], [ -77.112077, 38.936567 ], [ -77.112066, 38.936534 ], [ -77.112007, 38.936358 ], [ -77.111991, 38.936304 ], [ -77.111970, 38.936254 ], [ -77.111943, 38.936204 ], [ -77.111916, 38.936154 ], [ -77.111889, 38.936108 ], [ -77.111862, 38.936062 ], [ -77.111825, 38.936000 ], [ -77.111760, 38.935912 ], [ -77.111728, 38.935870 ], [ -77.111696, 38.935829 ], [ -77.111675, 38.935799 ], [ -77.111658, 38.935783 ], [ -77.111583, 38.935691 ], [ -77.111363, 38.935378 ], [ -77.110929, 38.934794 ], [ -77.110784, 38.934593 ], [ -77.110768, 38.934573 ], [ -77.110730, 38.934518 ], [ -77.110628, 38.934381 ], [ -77.110328, 38.933980 ], [ -77.109915, 38.933404 ], [ -77.109835, 38.933308 ], [ -77.109749, 38.933216 ], [ -77.109663, 38.933129 ], [ -77.109631, 38.933100 ], [ -77.109556, 38.933033 ], [ -77.109175, 38.932682 ], [ -77.109078, 38.932586 ], [ -77.108982, 38.932499 ], [ -77.108858, 38.932403 ], [ -77.108837, 38.932378 ], [ -77.108740, 38.932282 ], [ -77.108687, 38.932227 ], [ -77.108515, 38.932081 ], [ -77.108397, 38.931981 ], [ -77.108274, 38.931885 ], [ -77.107995, 38.931652 ], [ -77.107914, 38.931585 ], [ -77.107839, 38.931526 ], [ -77.107721, 38.931422 ], [ -77.107335, 38.931097 ], [ -77.107297, 38.931059 ], [ -77.107260, 38.931021 ], [ -77.107222, 38.930980 ], [ -77.107190, 38.930938 ], [ -77.107158, 38.930896 ], [ -77.107126, 38.930850 ], [ -77.107099, 38.930809 ], [ -77.107077, 38.930763 ], [ -77.107050, 38.930717 ], [ -77.107029, 38.930667 ], [ -77.107013, 38.930621 ], [ -77.106997, 38.930575 ], [ -77.106970, 38.930471 ], [ -77.106938, 38.930316 ], [ -77.106922, 38.930262 ], [ -77.106906, 38.930187 ], [ -77.106895, 38.930149 ], [ -77.106879, 38.930082 ], [ -77.106868, 38.930041 ], [ -77.106863, 38.929999 ], [ -77.106847, 38.929961 ], [ -77.106820, 38.929920 ], [ -77.106771, 38.929861 ], [ -77.106745, 38.929824 ], [ -77.106702, 38.929769 ], [ -77.106680, 38.929740 ], [ -77.106653, 38.929715 ], [ -77.106600, 38.929665 ], [ -77.106578, 38.929648 ], [ -77.106487, 38.929582 ], [ -77.106047, 38.929181 ], [ -77.105758, 38.928914 ], [ -77.105715, 38.928876 ], [ -77.105253, 38.928459 ], [ -77.105108, 38.928330 ], [ -77.104958, 38.928196 ], [ -77.104620, 38.927892 ], [ -77.104374, 38.927666 ], [ -77.104105, 38.927424 ], [ -77.104030, 38.927357 ], [ -77.103805, 38.927420 ], [ -77.103746, 38.927437 ], [ -77.103478, 38.927524 ], [ -77.103360, 38.927570 ], [ -77.103247, 38.927616 ], [ -77.103129, 38.927666 ], [ -77.103016, 38.927720 ], [ -77.102904, 38.927775 ], [ -77.102496, 38.927983 ], [ -77.102104, 38.928188 ], [ -77.102051, 38.928217 ], [ -77.102003, 38.928246 ], [ -77.101976, 38.928263 ], [ -77.101954, 38.928280 ], [ -77.101906, 38.928313 ], [ -77.101858, 38.928346 ], [ -77.101815, 38.928384 ], [ -77.101772, 38.928422 ], [ -77.101734, 38.928459 ], [ -77.101691, 38.928501 ], [ -77.101579, 38.928601 ], [ -77.101455, 38.928705 ], [ -77.101021, 38.929085 ], [ -77.100565, 38.929490 ], [ -77.100399, 38.929636 ], [ -77.100270, 38.929749 ], [ -77.099728, 38.930224 ], [ -77.099615, 38.930325 ], [ -77.098306, 38.931476 ], [ -77.097169, 38.932474 ], [ -77.097089, 38.932549 ], [ -77.096933, 38.932507 ], [ -77.096847, 38.932486 ], [ -77.096681, 38.932453 ], [ -77.096601, 38.932440 ], [ -77.096434, 38.932411 ], [ -77.096348, 38.932398 ], [ -77.096300, 38.932394 ], [ -77.096166, 38.932378 ], [ -77.095957, 38.932357 ], [ -77.095753, 38.932348 ], [ -77.095619, 38.932344 ], [ -77.095415, 38.932344 ], [ -77.095281, 38.932348 ], [ -77.095082, 38.932361 ], [ -77.094959, 38.932373 ], [ -77.094766, 38.932394 ], [ -77.094702, 38.932403 ], [ -77.094170, 38.932469 ], [ -77.093248, 38.932603 ], [ -77.093318, 38.932490 ], [ -77.093570, 38.932348 ], [ -77.094122, 38.932044 ], [ -77.094203, 38.932002 ], [ -77.094283, 38.931969 ], [ -77.094321, 38.931952 ], [ -77.094964, 38.931743 ], [ -77.094997, 38.931735 ], [ -77.095023, 38.931722 ], [ -77.095050, 38.931706 ], [ -77.095233, 38.931568 ], [ -77.095254, 38.931556 ], [ -77.095270, 38.931539 ], [ -77.095292, 38.931522 ], [ -77.095302, 38.931505 ], [ -77.095318, 38.931489 ], [ -77.095512, 38.931092 ], [ -77.095517, 38.931076 ], [ -77.095538, 38.931038 ], [ -77.095549, 38.931021 ], [ -77.095565, 38.931005 ], [ -77.095597, 38.930976 ], [ -77.095635, 38.930946 ], [ -77.095656, 38.930934 ], [ -77.096032, 38.930696 ], [ -77.096075, 38.930658 ], [ -77.096118, 38.930625 ], [ -77.096134, 38.930604 ], [ -77.096150, 38.930583 ], [ -77.096182, 38.930542 ], [ -77.096246, 38.930429 ], [ -77.096268, 38.930383 ], [ -77.096311, 38.930291 ], [ -77.096348, 38.930195 ], [ -77.096364, 38.930149 ], [ -77.096397, 38.930053 ], [ -77.096402, 38.930028 ], [ -77.096418, 38.929978 ], [ -77.096429, 38.929928 ], [ -77.096434, 38.929874 ], [ -77.096434, 38.929849 ], [ -77.096429, 38.929799 ], [ -77.096424, 38.929761 ], [ -77.096413, 38.929732 ], [ -77.096397, 38.929694 ], [ -77.096381, 38.929665 ], [ -77.096364, 38.929640 ], [ -77.096338, 38.929603 ], [ -77.096316, 38.929573 ], [ -77.096289, 38.929544 ], [ -77.096263, 38.929515 ], [ -77.096230, 38.929490 ], [ -77.096161, 38.929444 ], [ -77.096091, 38.929398 ], [ -77.095946, 38.929310 ], [ -77.095909, 38.929290 ], [ -77.095844, 38.929256 ], [ -77.095807, 38.929231 ], [ -77.095785, 38.929214 ], [ -77.095753, 38.929185 ], [ -77.095726, 38.929148 ], [ -77.095715, 38.929131 ], [ -77.095705, 38.929110 ], [ -77.095699, 38.929089 ], [ -77.095683, 38.929043 ], [ -77.095672, 38.928997 ], [ -77.095662, 38.928952 ], [ -77.095651, 38.928881 ], [ -77.095635, 38.928776 ], [ -77.095624, 38.928705 ], [ -77.095603, 38.928601 ], [ -77.095587, 38.928534 ], [ -77.095565, 38.928346 ], [ -77.095549, 38.928205 ], [ -77.095538, 38.928063 ], [ -77.095495, 38.927833 ], [ -77.095458, 38.927604 ], [ -77.095453, 38.927570 ], [ -77.095447, 38.927499 ], [ -77.095447, 38.927428 ], [ -77.095442, 38.927357 ], [ -77.095442, 38.927286 ], [ -77.095442, 38.927249 ], [ -77.095442, 38.927216 ], [ -77.095442, 38.927182 ], [ -77.095447, 38.927111 ], [ -77.095453, 38.927078 ], [ -77.095479, 38.927007 ], [ -77.095528, 38.926911 ], [ -77.095560, 38.926857 ], [ -77.095597, 38.926802 ], [ -77.095635, 38.926752 ], [ -77.095672, 38.926702 ], [ -77.095715, 38.926652 ], [ -77.095764, 38.926602 ], [ -77.095807, 38.926556 ], [ -77.095860, 38.926510 ], [ -77.095909, 38.926464 ], [ -77.095968, 38.926423 ], [ -77.096032, 38.926364 ], [ -77.096128, 38.926272 ], [ -77.096225, 38.926181 ], [ -77.096284, 38.926118 ], [ -77.096322, 38.926076 ], [ -77.096354, 38.926034 ], [ -77.096386, 38.925997 ], [ -77.096418, 38.925955 ], [ -77.096445, 38.925909 ], [ -77.096472, 38.925868 ], [ -77.096499, 38.925822 ], [ -77.096525, 38.925780 ], [ -77.096552, 38.925734 ], [ -77.096574, 38.925688 ], [ -77.096702, 38.925396 ], [ -77.096724, 38.925354 ], [ -77.096751, 38.925313 ], [ -77.096794, 38.925262 ], [ -77.096815, 38.925237 ], [ -77.096831, 38.925208 ], [ -77.096853, 38.925179 ], [ -77.096917, 38.925066 ], [ -77.096987, 38.924937 ], [ -77.097030, 38.924845 ], [ -77.097046, 38.924803 ], [ -77.097083, 38.924712 ], [ -77.097105, 38.924670 ], [ -77.097153, 38.924586 ], [ -77.097166, 38.924561 ], [ -77.112517, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001003", "GEOID": "11001001003", "NAME": "10.03", "NAMELSAD": "Census Tract 10.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 982460, "AWATER": 0, "INTPTLAT": "+38.9492362", "INTPTLON": "-077.0930741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.088629, 38.943164 ], [ -77.089391, 38.943164 ], [ -77.089938, 38.943164 ], [ -77.090608, 38.943164 ], [ -77.090710, 38.943164 ], [ -77.091419, 38.943164 ], [ -77.091789, 38.943164 ], [ -77.092143, 38.943164 ], [ -77.092615, 38.943164 ], [ -77.092770, 38.943164 ], [ -77.092915, 38.943164 ], [ -77.093087, 38.943164 ], [ -77.093350, 38.943352 ], [ -77.093672, 38.943589 ], [ -77.093934, 38.943777 ], [ -77.094235, 38.943998 ], [ -77.094589, 38.944249 ], [ -77.094798, 38.944407 ], [ -77.096761, 38.945842 ], [ -77.096874, 38.945926 ], [ -77.096912, 38.945955 ], [ -77.097330, 38.946260 ], [ -77.097545, 38.946414 ], [ -77.098441, 38.947069 ], [ -77.098778, 38.947319 ], [ -77.098993, 38.947474 ], [ -77.099288, 38.947686 ], [ -77.099589, 38.947908 ], [ -77.100431, 38.948521 ], [ -77.100608, 38.948650 ], [ -77.100592, 38.948667 ], [ -77.100559, 38.948700 ], [ -77.100527, 38.948742 ], [ -77.100506, 38.948779 ], [ -77.100495, 38.948804 ], [ -77.100484, 38.948838 ], [ -77.100479, 38.948896 ], [ -77.100484, 38.948946 ], [ -77.100500, 38.949001 ], [ -77.100522, 38.949055 ], [ -77.100565, 38.949105 ], [ -77.100602, 38.949142 ], [ -77.100624, 38.949163 ], [ -77.100264, 38.949451 ], [ -77.099910, 38.949697 ], [ -77.099696, 38.949868 ], [ -77.098837, 38.950544 ], [ -77.098285, 38.950970 ], [ -77.098162, 38.951066 ], [ -77.097609, 38.951500 ], [ -77.096820, 38.952117 ], [ -77.096397, 38.952451 ], [ -77.095479, 38.953164 ], [ -77.095356, 38.953260 ], [ -77.095270, 38.953323 ], [ -77.095249, 38.953343 ], [ -77.094326, 38.954061 ], [ -77.093816, 38.954453 ], [ -77.093784, 38.954478 ], [ -77.093489, 38.954728 ], [ -77.092615, 38.955400 ], [ -77.091547, 38.956213 ], [ -77.091236, 38.956472 ], [ -77.091123, 38.956389 ], [ -77.090657, 38.956059 ], [ -77.090501, 38.955951 ], [ -77.090346, 38.955851 ], [ -77.090244, 38.955775 ], [ -77.089455, 38.955225 ], [ -77.088865, 38.954803 ], [ -77.088661, 38.954703 ], [ -77.088629, 38.954524 ], [ -77.088629, 38.954353 ], [ -77.088629, 38.953314 ], [ -77.088629, 38.952109 ], [ -77.088629, 38.951992 ], [ -77.088634, 38.951817 ], [ -77.088629, 38.951266 ], [ -77.088629, 38.951041 ], [ -77.088634, 38.950765 ], [ -77.088629, 38.950365 ], [ -77.088629, 38.949693 ], [ -77.088629, 38.948884 ], [ -77.088629, 38.948800 ], [ -77.088629, 38.948475 ], [ -77.088634, 38.948020 ], [ -77.088634, 38.947899 ], [ -77.088629, 38.947812 ], [ -77.088629, 38.947173 ], [ -77.088624, 38.947098 ], [ -77.088634, 38.947023 ], [ -77.088629, 38.946623 ], [ -77.088629, 38.946368 ], [ -77.088629, 38.946289 ], [ -77.088634, 38.946143 ], [ -77.088629, 38.945880 ], [ -77.088629, 38.945609 ], [ -77.088634, 38.945538 ], [ -77.088634, 38.945467 ], [ -77.088634, 38.945166 ], [ -77.088634, 38.944945 ], [ -77.088634, 38.944787 ], [ -77.088634, 38.944587 ], [ -77.088634, 38.943965 ], [ -77.088629, 38.943556 ], [ -77.088634, 38.943247 ], [ -77.088629, 38.943164 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001004", "GEOID": "11001001004", "NAME": "10.04", "NAMELSAD": "Census Tract 10.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1471925, "AWATER": 0, "INTPTLAT": "+38.9487665", "INTPTLON": "-077.0853886" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.086220, 38.938169 ], [ -77.086451, 38.938328 ], [ -77.086617, 38.938436 ], [ -77.087020, 38.938729 ], [ -77.087245, 38.938895 ], [ -77.087642, 38.939187 ], [ -77.088109, 38.939525 ], [ -77.088452, 38.939780 ], [ -77.088763, 38.940005 ], [ -77.088956, 38.940143 ], [ -77.089160, 38.940293 ], [ -77.089638, 38.940644 ], [ -77.090077, 38.940965 ], [ -77.090260, 38.941098 ], [ -77.090437, 38.941224 ], [ -77.090775, 38.941470 ], [ -77.090861, 38.941532 ], [ -77.091022, 38.941649 ], [ -77.091746, 38.942183 ], [ -77.091869, 38.942271 ], [ -77.091992, 38.942359 ], [ -77.092556, 38.942776 ], [ -77.092615, 38.942817 ], [ -77.092717, 38.942893 ], [ -77.092845, 38.942989 ], [ -77.093087, 38.943164 ], [ -77.092915, 38.943164 ], [ -77.092770, 38.943164 ], [ -77.092615, 38.943164 ], [ -77.092143, 38.943164 ], [ -77.091789, 38.943164 ], [ -77.091419, 38.943164 ], [ -77.090710, 38.943164 ], [ -77.090608, 38.943164 ], [ -77.089938, 38.943164 ], [ -77.089391, 38.943164 ], [ -77.088629, 38.943164 ], [ -77.088634, 38.943247 ], [ -77.088629, 38.943556 ], [ -77.088634, 38.943965 ], [ -77.088634, 38.944587 ], [ -77.088634, 38.944787 ], [ -77.088634, 38.944945 ], [ -77.088634, 38.945166 ], [ -77.088634, 38.945467 ], [ -77.088634, 38.945538 ], [ -77.088629, 38.945609 ], [ -77.088629, 38.945880 ], [ -77.088634, 38.946143 ], [ -77.088629, 38.946289 ], [ -77.088629, 38.946368 ], [ -77.088629, 38.946623 ], [ -77.088634, 38.947023 ], [ -77.088624, 38.947098 ], [ -77.088629, 38.947173 ], [ -77.088629, 38.947812 ], [ -77.088634, 38.947899 ], [ -77.088634, 38.948020 ], [ -77.088629, 38.948475 ], [ -77.088629, 38.948800 ], [ -77.088629, 38.948884 ], [ -77.088629, 38.949693 ], [ -77.088629, 38.950365 ], [ -77.088634, 38.950765 ], [ -77.088629, 38.951041 ], [ -77.088629, 38.951266 ], [ -77.088634, 38.951817 ], [ -77.088629, 38.951992 ], [ -77.088629, 38.952109 ], [ -77.088629, 38.953314 ], [ -77.088629, 38.954353 ], [ -77.088629, 38.954524 ], [ -77.088661, 38.954703 ], [ -77.088865, 38.954803 ], [ -77.089455, 38.955225 ], [ -77.090244, 38.955775 ], [ -77.090346, 38.955851 ], [ -77.090501, 38.955951 ], [ -77.090657, 38.956059 ], [ -77.091123, 38.956389 ], [ -77.091236, 38.956472 ], [ -77.090861, 38.956768 ], [ -77.090625, 38.956952 ], [ -77.090517, 38.957039 ], [ -77.088870, 38.958337 ], [ -77.088704, 38.958474 ], [ -77.088522, 38.958616 ], [ -77.088447, 38.958675 ], [ -77.088211, 38.958871 ], [ -77.087696, 38.959275 ], [ -77.087588, 38.959342 ], [ -77.086843, 38.959922 ], [ -77.086640, 38.960076 ], [ -77.085370, 38.960076 ], [ -77.085266, 38.959872 ], [ -77.085056, 38.959459 ], [ -77.084901, 38.959159 ], [ -77.084842, 38.959042 ], [ -77.084327, 38.958028 ], [ -77.083865, 38.957123 ], [ -77.083812, 38.957023 ], [ -77.083377, 38.956172 ], [ -77.083265, 38.955955 ], [ -77.082937, 38.955308 ], [ -77.082632, 38.954699 ], [ -77.082583, 38.954612 ], [ -77.082176, 38.953815 ], [ -77.081966, 38.953398 ], [ -77.081950, 38.953352 ], [ -77.081881, 38.953235 ], [ -77.081725, 38.952930 ], [ -77.081516, 38.952517 ], [ -77.081280, 38.952067 ], [ -77.080969, 38.951466 ], [ -77.080802, 38.951137 ], [ -77.080786, 38.951112 ], [ -77.080765, 38.951053 ], [ -77.080749, 38.951011 ], [ -77.080706, 38.950907 ], [ -77.080674, 38.950807 ], [ -77.080641, 38.950703 ], [ -77.080609, 38.950598 ], [ -77.080486, 38.950069 ], [ -77.080480, 38.950044 ], [ -77.080395, 38.949685 ], [ -77.080379, 38.949605 ], [ -77.080277, 38.949172 ], [ -77.080266, 38.949105 ], [ -77.080250, 38.949038 ], [ -77.080228, 38.948951 ], [ -77.080207, 38.948892 ], [ -77.080196, 38.948859 ], [ -77.080180, 38.948813 ], [ -77.080142, 38.948742 ], [ -77.080116, 38.948684 ], [ -77.080100, 38.948654 ], [ -77.079923, 38.948337 ], [ -77.079762, 38.948054 ], [ -77.079670, 38.947908 ], [ -77.079558, 38.947724 ], [ -77.079365, 38.947365 ], [ -77.079220, 38.947106 ], [ -77.079220, 38.945734 ], [ -77.079316, 38.945617 ], [ -77.079461, 38.945454 ], [ -77.079638, 38.945246 ], [ -77.079810, 38.945037 ], [ -77.079939, 38.944895 ], [ -77.080035, 38.944783 ], [ -77.080121, 38.944678 ], [ -77.080228, 38.944557 ], [ -77.080389, 38.944365 ], [ -77.080502, 38.944232 ], [ -77.080990, 38.943660 ], [ -77.081269, 38.943335 ], [ -77.081419, 38.943160 ], [ -77.081666, 38.942868 ], [ -77.081966, 38.942517 ], [ -77.082294, 38.942133 ], [ -77.082519, 38.941870 ], [ -77.082728, 38.941633 ], [ -77.082846, 38.941487 ], [ -77.083002, 38.941307 ], [ -77.083088, 38.941203 ], [ -77.083130, 38.941157 ], [ -77.083436, 38.940798 ], [ -77.083533, 38.940681 ], [ -77.083828, 38.940339 ], [ -77.083957, 38.940193 ], [ -77.084160, 38.939955 ], [ -77.084407, 38.939667 ], [ -77.084616, 38.939421 ], [ -77.085072, 38.938887 ], [ -77.085469, 38.938420 ], [ -77.085630, 38.938228 ], [ -77.085668, 38.938244 ], [ -77.085721, 38.938261 ], [ -77.085759, 38.938270 ], [ -77.085786, 38.938274 ], [ -77.085813, 38.938278 ], [ -77.085899, 38.938274 ], [ -77.085952, 38.938270 ], [ -77.085979, 38.938265 ], [ -77.086033, 38.938257 ], [ -77.086092, 38.938240 ], [ -77.086151, 38.938215 ], [ -77.086220, 38.938169 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000903", "GEOID": "11001000903", "NAME": "9.03", "NAMELSAD": "Census Tract 9.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 928101, "AWATER": 0, "INTPTLAT": "+38.9376821", "INTPTLON": "-077.0933310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.095281, 38.932348 ], [ -77.095415, 38.932344 ], [ -77.095619, 38.932344 ], [ -77.095753, 38.932348 ], [ -77.095957, 38.932357 ], [ -77.096166, 38.932378 ], [ -77.096300, 38.932394 ], [ -77.096348, 38.932398 ], [ -77.096434, 38.932411 ], [ -77.096601, 38.932440 ], [ -77.096681, 38.932453 ], [ -77.096847, 38.932486 ], [ -77.096933, 38.932507 ], [ -77.097089, 38.932549 ], [ -77.097207, 38.932590 ], [ -77.098097, 38.932887 ], [ -77.098446, 38.932999 ], [ -77.098644, 38.933066 ], [ -77.098741, 38.933104 ], [ -77.098837, 38.933145 ], [ -77.098929, 38.933191 ], [ -77.099020, 38.933241 ], [ -77.099063, 38.933266 ], [ -77.099106, 38.933291 ], [ -77.099143, 38.933317 ], [ -77.099208, 38.933362 ], [ -77.099304, 38.933438 ], [ -77.099395, 38.933513 ], [ -77.099428, 38.933542 ], [ -77.099454, 38.933563 ], [ -77.099524, 38.933629 ], [ -77.099546, 38.933655 ], [ -77.099589, 38.933705 ], [ -77.099626, 38.933759 ], [ -77.099835, 38.934084 ], [ -77.099959, 38.934285 ], [ -77.099985, 38.934322 ], [ -77.100018, 38.934360 ], [ -77.100050, 38.934397 ], [ -77.100082, 38.934435 ], [ -77.100152, 38.934506 ], [ -77.100189, 38.934539 ], [ -77.100264, 38.934606 ], [ -77.100645, 38.934898 ], [ -77.100935, 38.935107 ], [ -77.101032, 38.935161 ], [ -77.100930, 38.935269 ], [ -77.100779, 38.935420 ], [ -77.100731, 38.935466 ], [ -77.100677, 38.935516 ], [ -77.100629, 38.935566 ], [ -77.100586, 38.935599 ], [ -77.100549, 38.935624 ], [ -77.100468, 38.935662 ], [ -77.100447, 38.935670 ], [ -77.100393, 38.935687 ], [ -77.100340, 38.935695 ], [ -77.100281, 38.935703 ], [ -77.100227, 38.935703 ], [ -77.100168, 38.935703 ], [ -77.100114, 38.935695 ], [ -77.100082, 38.935691 ], [ -77.100044, 38.935682 ], [ -77.100012, 38.935682 ], [ -77.099943, 38.935678 ], [ -77.099905, 38.935682 ], [ -77.099873, 38.935687 ], [ -77.099760, 38.935708 ], [ -77.099470, 38.935795 ], [ -77.099149, 38.935920 ], [ -77.099116, 38.935929 ], [ -77.099079, 38.935937 ], [ -77.098998, 38.935954 ], [ -77.098956, 38.935958 ], [ -77.098918, 38.935962 ], [ -77.098875, 38.935962 ], [ -77.096424, 38.935950 ], [ -77.096386, 38.935950 ], [ -77.096305, 38.935950 ], [ -77.096220, 38.935950 ], [ -77.096139, 38.935941 ], [ -77.096059, 38.935933 ], [ -77.095968, 38.935920 ], [ -77.095978, 38.935987 ], [ -77.096268, 38.936847 ], [ -77.096273, 38.936872 ], [ -77.096295, 38.936930 ], [ -77.096402, 38.937243 ], [ -77.096429, 38.937306 ], [ -77.096483, 38.937439 ], [ -77.096525, 38.937564 ], [ -77.096574, 38.937690 ], [ -77.096617, 38.937819 ], [ -77.096670, 38.937994 ], [ -77.096681, 38.938040 ], [ -77.096708, 38.938140 ], [ -77.096735, 38.938286 ], [ -77.096745, 38.938357 ], [ -77.096751, 38.938428 ], [ -77.096756, 38.938499 ], [ -77.096761, 38.939371 ], [ -77.096761, 38.939450 ], [ -77.096761, 38.940322 ], [ -77.096761, 38.941082 ], [ -77.096761, 38.941265 ], [ -77.096761, 38.941345 ], [ -77.096761, 38.942212 ], [ -77.096761, 38.943080 ], [ -77.096761, 38.943164 ], [ -77.096767, 38.943239 ], [ -77.096761, 38.944240 ], [ -77.096761, 38.944820 ], [ -77.096767, 38.945433 ], [ -77.096761, 38.945692 ], [ -77.096761, 38.945842 ], [ -77.094798, 38.944407 ], [ -77.094589, 38.944249 ], [ -77.094235, 38.943998 ], [ -77.093934, 38.943777 ], [ -77.093672, 38.943589 ], [ -77.093350, 38.943352 ], [ -77.093087, 38.943164 ], [ -77.092845, 38.942989 ], [ -77.092717, 38.942893 ], [ -77.092615, 38.942817 ], [ -77.092556, 38.942776 ], [ -77.091992, 38.942359 ], [ -77.091869, 38.942271 ], [ -77.091746, 38.942183 ], [ -77.091022, 38.941649 ], [ -77.090861, 38.941532 ], [ -77.090775, 38.941470 ], [ -77.090437, 38.941224 ], [ -77.090260, 38.941098 ], [ -77.090077, 38.940965 ], [ -77.089638, 38.940644 ], [ -77.089160, 38.940293 ], [ -77.088956, 38.940143 ], [ -77.088763, 38.940005 ], [ -77.088452, 38.939780 ], [ -77.088109, 38.939525 ], [ -77.087642, 38.939187 ], [ -77.087245, 38.938895 ], [ -77.087020, 38.938729 ], [ -77.086617, 38.938436 ], [ -77.086451, 38.938328 ], [ -77.086220, 38.938169 ], [ -77.086151, 38.938215 ], [ -77.086092, 38.938240 ], [ -77.086033, 38.938257 ], [ -77.085979, 38.938265 ], [ -77.085952, 38.938270 ], [ -77.085899, 38.938274 ], [ -77.085813, 38.938278 ], [ -77.085786, 38.938274 ], [ -77.085759, 38.938270 ], [ -77.085721, 38.938261 ], [ -77.085668, 38.938244 ], [ -77.085630, 38.938228 ], [ -77.085593, 38.938203 ], [ -77.085561, 38.938182 ], [ -77.085544, 38.938165 ], [ -77.085496, 38.938103 ], [ -77.085464, 38.938057 ], [ -77.085443, 38.938002 ], [ -77.085437, 38.937965 ], [ -77.085437, 38.937932 ], [ -77.085443, 38.937898 ], [ -77.085448, 38.937861 ], [ -77.085459, 38.937827 ], [ -77.085469, 38.937794 ], [ -77.085496, 38.937752 ], [ -77.085512, 38.937731 ], [ -77.085534, 38.937706 ], [ -77.085582, 38.937660 ], [ -77.085614, 38.937639 ], [ -77.085641, 38.937623 ], [ -77.085695, 38.937589 ], [ -77.085727, 38.937577 ], [ -77.085791, 38.937556 ], [ -77.085823, 38.937543 ], [ -77.085882, 38.937535 ], [ -77.085936, 38.937535 ], [ -77.085963, 38.937535 ], [ -77.086011, 38.937539 ], [ -77.086065, 38.937552 ], [ -77.086086, 38.937560 ], [ -77.086167, 38.937598 ], [ -77.086542, 38.937164 ], [ -77.086735, 38.936943 ], [ -77.086955, 38.936676 ], [ -77.087325, 38.936246 ], [ -77.087722, 38.935783 ], [ -77.088012, 38.935445 ], [ -77.088093, 38.935361 ], [ -77.088162, 38.935299 ], [ -77.088178, 38.935286 ], [ -77.088205, 38.935261 ], [ -77.088372, 38.935136 ], [ -77.088683, 38.934902 ], [ -77.088795, 38.934823 ], [ -77.089021, 38.934652 ], [ -77.089165, 38.934539 ], [ -77.089713, 38.934130 ], [ -77.090490, 38.933550 ], [ -77.090625, 38.933450 ], [ -77.090726, 38.933375 ], [ -77.090780, 38.933342 ], [ -77.090839, 38.933308 ], [ -77.090866, 38.933291 ], [ -77.090930, 38.933262 ], [ -77.090968, 38.933241 ], [ -77.091005, 38.933225 ], [ -77.091064, 38.933196 ], [ -77.091161, 38.933162 ], [ -77.091215, 38.933141 ], [ -77.091327, 38.933112 ], [ -77.091515, 38.933062 ], [ -77.091864, 38.932970 ], [ -77.092234, 38.932874 ], [ -77.093017, 38.932674 ], [ -77.093108, 38.932641 ], [ -77.093157, 38.932628 ], [ -77.093199, 38.932615 ], [ -77.093248, 38.932603 ], [ -77.094170, 38.932469 ], [ -77.094702, 38.932403 ], [ -77.094766, 38.932394 ], [ -77.094959, 38.932373 ], [ -77.095082, 38.932361 ], [ -77.095281, 38.932348 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000803", "GEOID": "11001000803", "NAME": "8.03", "NAMELSAD": "Census Tract 8.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308153, "AWATER": 0, "INTPTLAT": "+38.9336425", "INTPTLON": "-077.0835217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.086167, 38.937598 ], [ -77.086086, 38.937560 ], [ -77.086065, 38.937552 ], [ -77.086011, 38.937539 ], [ -77.085963, 38.937535 ], [ -77.085936, 38.937535 ], [ -77.085882, 38.937535 ], [ -77.085823, 38.937543 ], [ -77.085791, 38.937556 ], [ -77.085727, 38.937577 ], [ -77.085695, 38.937589 ], [ -77.085641, 38.937623 ], [ -77.085614, 38.937639 ], [ -77.085582, 38.937660 ], [ -77.085485, 38.937585 ], [ -77.085389, 38.937527 ], [ -77.085351, 38.937502 ], [ -77.084895, 38.937176 ], [ -77.084713, 38.937051 ], [ -77.084633, 38.936989 ], [ -77.084289, 38.936738 ], [ -77.084257, 38.936713 ], [ -77.084225, 38.936692 ], [ -77.084048, 38.936563 ], [ -77.083629, 38.936258 ], [ -77.083377, 38.936071 ], [ -77.082015, 38.935077 ], [ -77.081827, 38.934940 ], [ -77.081763, 38.934894 ], [ -77.081586, 38.934764 ], [ -77.081371, 38.934610 ], [ -77.080899, 38.934260 ], [ -77.080223, 38.933767 ], [ -77.080121, 38.933692 ], [ -77.080110, 38.933058 ], [ -77.079971, 38.932411 ], [ -77.079896, 38.932065 ], [ -77.080320, 38.930905 ], [ -77.080566, 38.930237 ], [ -77.080690, 38.930258 ], [ -77.080818, 38.930270 ], [ -77.080947, 38.930279 ], [ -77.081108, 38.930287 ], [ -77.081274, 38.930287 ], [ -77.081559, 38.930287 ], [ -77.083045, 38.930283 ], [ -77.083731, 38.930279 ], [ -77.083817, 38.930283 ], [ -77.083994, 38.930279 ], [ -77.084337, 38.930875 ], [ -77.084622, 38.931380 ], [ -77.084869, 38.931814 ], [ -77.084901, 38.931873 ], [ -77.084933, 38.931927 ], [ -77.085072, 38.932165 ], [ -77.085121, 38.932252 ], [ -77.085190, 38.932365 ], [ -77.085233, 38.932444 ], [ -77.085287, 38.932545 ], [ -77.085426, 38.932782 ], [ -77.085587, 38.933066 ], [ -77.085775, 38.933400 ], [ -77.085834, 38.933500 ], [ -77.086038, 38.933863 ], [ -77.086070, 38.933917 ], [ -77.086086, 38.933951 ], [ -77.086129, 38.934022 ], [ -77.086269, 38.934268 ], [ -77.086408, 38.934510 ], [ -77.086473, 38.934564 ], [ -77.086499, 38.934660 ], [ -77.086569, 38.934785 ], [ -77.086601, 38.934835 ], [ -77.086650, 38.934915 ], [ -77.086682, 38.934961 ], [ -77.086714, 38.935002 ], [ -77.086762, 38.935065 ], [ -77.086816, 38.935128 ], [ -77.086875, 38.935190 ], [ -77.086961, 38.935269 ], [ -77.087004, 38.935311 ], [ -77.087068, 38.935365 ], [ -77.087154, 38.935436 ], [ -77.087197, 38.935470 ], [ -77.087304, 38.935545 ], [ -77.087363, 38.935587 ], [ -77.087384, 38.935599 ], [ -77.087427, 38.935624 ], [ -77.087615, 38.935724 ], [ -77.087722, 38.935783 ], [ -77.087325, 38.936246 ], [ -77.086955, 38.936676 ], [ -77.086735, 38.936943 ], [ -77.086542, 38.937164 ], [ -77.086167, 38.937598 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000804", "GEOID": "11001000804", "NAME": "8.04", "NAMELSAD": "Census Tract 8.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2566768, "AWATER": 167978, "INTPTLAT": "+38.9221746", "INTPTLON": "-077.0918347" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.097166, 38.924561 ], [ -77.097153, 38.924586 ], [ -77.097105, 38.924670 ], [ -77.097083, 38.924712 ], [ -77.097046, 38.924803 ], [ -77.097030, 38.924845 ], [ -77.096987, 38.924937 ], [ -77.096917, 38.925066 ], [ -77.096853, 38.925179 ], [ -77.096831, 38.925208 ], [ -77.096815, 38.925237 ], [ -77.096794, 38.925262 ], [ -77.096751, 38.925313 ], [ -77.096724, 38.925354 ], [ -77.096702, 38.925396 ], [ -77.096574, 38.925688 ], [ -77.096552, 38.925734 ], [ -77.096525, 38.925780 ], [ -77.096499, 38.925822 ], [ -77.096472, 38.925868 ], [ -77.096445, 38.925909 ], [ -77.096418, 38.925955 ], [ -77.096386, 38.925997 ], [ -77.096354, 38.926034 ], [ -77.096322, 38.926076 ], [ -77.096284, 38.926118 ], [ -77.096225, 38.926181 ], [ -77.096128, 38.926272 ], [ -77.096032, 38.926364 ], [ -77.095968, 38.926423 ], [ -77.095909, 38.926464 ], [ -77.095860, 38.926510 ], [ -77.095807, 38.926556 ], [ -77.095764, 38.926602 ], [ -77.095715, 38.926652 ], [ -77.095672, 38.926702 ], [ -77.095635, 38.926752 ], [ -77.095597, 38.926802 ], [ -77.095560, 38.926857 ], [ -77.095528, 38.926911 ], [ -77.095479, 38.927007 ], [ -77.095453, 38.927078 ], [ -77.095447, 38.927111 ], [ -77.095442, 38.927182 ], [ -77.095442, 38.927216 ], [ -77.095442, 38.927249 ], [ -77.095442, 38.927286 ], [ -77.095442, 38.927357 ], [ -77.095447, 38.927428 ], [ -77.095447, 38.927499 ], [ -77.095453, 38.927570 ], [ -77.095458, 38.927604 ], [ -77.095495, 38.927833 ], [ -77.095538, 38.928063 ], [ -77.095549, 38.928205 ], [ -77.095565, 38.928346 ], [ -77.095587, 38.928534 ], [ -77.095603, 38.928601 ], [ -77.095624, 38.928705 ], [ -77.095635, 38.928776 ], [ -77.095651, 38.928881 ], [ -77.095662, 38.928952 ], [ -77.095672, 38.928997 ], [ -77.095683, 38.929043 ], [ -77.095699, 38.929089 ], [ -77.095705, 38.929110 ], [ -77.095715, 38.929131 ], [ -77.095726, 38.929148 ], [ -77.095753, 38.929185 ], [ -77.095785, 38.929214 ], [ -77.095807, 38.929231 ], [ -77.095844, 38.929256 ], [ -77.095909, 38.929290 ], [ -77.095946, 38.929310 ], [ -77.096091, 38.929398 ], [ -77.096161, 38.929444 ], [ -77.096230, 38.929490 ], [ -77.096263, 38.929515 ], [ -77.096289, 38.929544 ], [ -77.096316, 38.929573 ], [ -77.096338, 38.929603 ], [ -77.096364, 38.929640 ], [ -77.096381, 38.929665 ], [ -77.096397, 38.929694 ], [ -77.096413, 38.929732 ], [ -77.096424, 38.929761 ], [ -77.096429, 38.929799 ], [ -77.096434, 38.929849 ], [ -77.096434, 38.929874 ], [ -77.096429, 38.929928 ], [ -77.096418, 38.929978 ], [ -77.096402, 38.930028 ], [ -77.096397, 38.930053 ], [ -77.096364, 38.930149 ], [ -77.096348, 38.930195 ], [ -77.096311, 38.930291 ], [ -77.096268, 38.930383 ], [ -77.096246, 38.930429 ], [ -77.096182, 38.930542 ], [ -77.096150, 38.930583 ], [ -77.096134, 38.930604 ], [ -77.096118, 38.930625 ], [ -77.096075, 38.930658 ], [ -77.096032, 38.930696 ], [ -77.095656, 38.930934 ], [ -77.095635, 38.930946 ], [ -77.095597, 38.930976 ], [ -77.095565, 38.931005 ], [ -77.095549, 38.931021 ], [ -77.095538, 38.931038 ], [ -77.095517, 38.931076 ], [ -77.095512, 38.931092 ], [ -77.095318, 38.931489 ], [ -77.095302, 38.931505 ], [ -77.095292, 38.931522 ], [ -77.095270, 38.931539 ], [ -77.095254, 38.931556 ], [ -77.095233, 38.931568 ], [ -77.095050, 38.931706 ], [ -77.095023, 38.931722 ], [ -77.094997, 38.931735 ], [ -77.094964, 38.931743 ], [ -77.094321, 38.931952 ], [ -77.094283, 38.931969 ], [ -77.094203, 38.932002 ], [ -77.094122, 38.932044 ], [ -77.093570, 38.932348 ], [ -77.093318, 38.932490 ], [ -77.093248, 38.932603 ], [ -77.093199, 38.932615 ], [ -77.093157, 38.932628 ], [ -77.093108, 38.932641 ], [ -77.093017, 38.932674 ], [ -77.092234, 38.932874 ], [ -77.091864, 38.932970 ], [ -77.091515, 38.933062 ], [ -77.091327, 38.933112 ], [ -77.091215, 38.933141 ], [ -77.091161, 38.933162 ], [ -77.091064, 38.933196 ], [ -77.091005, 38.933225 ], [ -77.090968, 38.933241 ], [ -77.090930, 38.933262 ], [ -77.090866, 38.933291 ], [ -77.090839, 38.933308 ], [ -77.090780, 38.933342 ], [ -77.090726, 38.933375 ], [ -77.090625, 38.933450 ], [ -77.090490, 38.933550 ], [ -77.089713, 38.934130 ], [ -77.089165, 38.934539 ], [ -77.089021, 38.934652 ], [ -77.088795, 38.934823 ], [ -77.088683, 38.934902 ], [ -77.088372, 38.935136 ], [ -77.088205, 38.935261 ], [ -77.088178, 38.935286 ], [ -77.088162, 38.935299 ], [ -77.088093, 38.935361 ], [ -77.088012, 38.935445 ], [ -77.087722, 38.935783 ], [ -77.087615, 38.935724 ], [ -77.087427, 38.935624 ], [ -77.087384, 38.935599 ], [ -77.087363, 38.935587 ], [ -77.087304, 38.935545 ], [ -77.087197, 38.935470 ], [ -77.087154, 38.935436 ], [ -77.087068, 38.935365 ], [ -77.087004, 38.935311 ], [ -77.086961, 38.935269 ], [ -77.086875, 38.935190 ], [ -77.086816, 38.935128 ], [ -77.086762, 38.935065 ], [ -77.086714, 38.935002 ], [ -77.086682, 38.934961 ], [ -77.086650, 38.934915 ], [ -77.086601, 38.934835 ], [ -77.086569, 38.934785 ], [ -77.086499, 38.934660 ], [ -77.086473, 38.934564 ], [ -77.086408, 38.934510 ], [ -77.086269, 38.934268 ], [ -77.086129, 38.934022 ], [ -77.086086, 38.933951 ], [ -77.086070, 38.933917 ], [ -77.086038, 38.933863 ], [ -77.085834, 38.933500 ], [ -77.085775, 38.933400 ], [ -77.085587, 38.933066 ], [ -77.085426, 38.932782 ], [ -77.085287, 38.932545 ], [ -77.085233, 38.932444 ], [ -77.085190, 38.932365 ], [ -77.085121, 38.932252 ], [ -77.085072, 38.932165 ], [ -77.084933, 38.931927 ], [ -77.084901, 38.931873 ], [ -77.084869, 38.931814 ], [ -77.084622, 38.931380 ], [ -77.084337, 38.930875 ], [ -77.083994, 38.930279 ], [ -77.083817, 38.930283 ], [ -77.083731, 38.930279 ], [ -77.083045, 38.930283 ], [ -77.081559, 38.930287 ], [ -77.081274, 38.930287 ], [ -77.081108, 38.930287 ], [ -77.080947, 38.930279 ], [ -77.080818, 38.930270 ], [ -77.080690, 38.930258 ], [ -77.080566, 38.930237 ], [ -77.081248, 38.927842 ], [ -77.081650, 38.926256 ], [ -77.081929, 38.924958 ], [ -77.081940, 38.924837 ], [ -77.081999, 38.924641 ], [ -77.082013, 38.924561 ], [ -77.097166, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001100", "GEOID": "11001001100", "NAME": "11", "NAMELSAD": "Census Tract 11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1676650, "AWATER": 0, "INTPTLAT": "+38.9572432", "INTPTLON": "-077.0776732" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079220, 38.947106 ], [ -77.079365, 38.947365 ], [ -77.079558, 38.947724 ], [ -77.079670, 38.947908 ], [ -77.079762, 38.948054 ], [ -77.079923, 38.948337 ], [ -77.080100, 38.948654 ], [ -77.080116, 38.948684 ], [ -77.080142, 38.948742 ], [ -77.080180, 38.948813 ], [ -77.080196, 38.948859 ], [ -77.080207, 38.948892 ], [ -77.080228, 38.948951 ], [ -77.080250, 38.949038 ], [ -77.080266, 38.949105 ], [ -77.080277, 38.949172 ], [ -77.080379, 38.949605 ], [ -77.080395, 38.949685 ], [ -77.080480, 38.950044 ], [ -77.080486, 38.950069 ], [ -77.080609, 38.950598 ], [ -77.080641, 38.950703 ], [ -77.080674, 38.950807 ], [ -77.080706, 38.950907 ], [ -77.080749, 38.951011 ], [ -77.080765, 38.951053 ], [ -77.080786, 38.951112 ], [ -77.080802, 38.951137 ], [ -77.080969, 38.951466 ], [ -77.081280, 38.952067 ], [ -77.081516, 38.952517 ], [ -77.081725, 38.952930 ], [ -77.081881, 38.953235 ], [ -77.081950, 38.953352 ], [ -77.081966, 38.953398 ], [ -77.082176, 38.953815 ], [ -77.082583, 38.954612 ], [ -77.082632, 38.954699 ], [ -77.082937, 38.955308 ], [ -77.083265, 38.955955 ], [ -77.083377, 38.956172 ], [ -77.083812, 38.957023 ], [ -77.083865, 38.957123 ], [ -77.084327, 38.958028 ], [ -77.084842, 38.959042 ], [ -77.084901, 38.959159 ], [ -77.085056, 38.959459 ], [ -77.085266, 38.959872 ], [ -77.085370, 38.960076 ], [ -77.079220, 38.960076 ], [ -77.079220, 38.947106 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001002", "GEOID": "11001001002", "NAME": "10.02", "NAMELSAD": "Census Tract 10.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 889722, "AWATER": 0, "INTPTLAT": "+38.9384216", "INTPTLON": "-077.0788872" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079220, 38.933492 ], [ -77.079467, 38.933492 ], [ -77.079569, 38.933488 ], [ -77.079611, 38.933483 ], [ -77.079654, 38.933479 ], [ -77.079692, 38.933467 ], [ -77.079729, 38.933450 ], [ -77.079762, 38.933433 ], [ -77.079874, 38.933517 ], [ -77.079917, 38.933550 ], [ -77.080121, 38.933692 ], [ -77.080223, 38.933767 ], [ -77.080899, 38.934260 ], [ -77.081371, 38.934610 ], [ -77.081586, 38.934764 ], [ -77.081763, 38.934894 ], [ -77.081827, 38.934940 ], [ -77.082015, 38.935077 ], [ -77.083377, 38.936071 ], [ -77.083629, 38.936258 ], [ -77.084048, 38.936563 ], [ -77.084225, 38.936692 ], [ -77.084257, 38.936713 ], [ -77.084289, 38.936738 ], [ -77.084633, 38.936989 ], [ -77.084713, 38.937051 ], [ -77.084895, 38.937176 ], [ -77.085351, 38.937502 ], [ -77.085389, 38.937527 ], [ -77.085485, 38.937585 ], [ -77.085582, 38.937660 ], [ -77.085534, 38.937706 ], [ -77.085512, 38.937731 ], [ -77.085496, 38.937752 ], [ -77.085469, 38.937794 ], [ -77.085459, 38.937827 ], [ -77.085448, 38.937861 ], [ -77.085443, 38.937898 ], [ -77.085437, 38.937932 ], [ -77.085437, 38.937965 ], [ -77.085443, 38.938002 ], [ -77.085464, 38.938057 ], [ -77.085496, 38.938103 ], [ -77.085544, 38.938165 ], [ -77.085561, 38.938182 ], [ -77.085593, 38.938203 ], [ -77.085630, 38.938228 ], [ -77.085469, 38.938420 ], [ -77.085072, 38.938887 ], [ -77.084616, 38.939421 ], [ -77.084407, 38.939667 ], [ -77.084160, 38.939955 ], [ -77.083957, 38.940193 ], [ -77.083828, 38.940339 ], [ -77.083533, 38.940681 ], [ -77.083436, 38.940798 ], [ -77.083130, 38.941157 ], [ -77.083088, 38.941203 ], [ -77.083002, 38.941307 ], [ -77.082846, 38.941487 ], [ -77.082728, 38.941633 ], [ -77.082519, 38.941870 ], [ -77.082294, 38.942133 ], [ -77.081966, 38.942517 ], [ -77.081666, 38.942868 ], [ -77.081419, 38.943160 ], [ -77.081269, 38.943335 ], [ -77.080990, 38.943660 ], [ -77.080502, 38.944232 ], [ -77.080389, 38.944365 ], [ -77.080228, 38.944557 ], [ -77.080121, 38.944678 ], [ -77.080035, 38.944783 ], [ -77.079939, 38.944895 ], [ -77.079810, 38.945037 ], [ -77.079638, 38.945246 ], [ -77.079461, 38.945454 ], [ -77.079316, 38.945617 ], [ -77.079220, 38.945734 ], [ -77.079220, 38.933492 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000704", "GEOID": "11001000704", "NAME": "7.04", "NAMELSAD": "Census Tract 7.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 332346, "AWATER": 0, "INTPTLAT": "+38.9300215", "INTPTLON": "-077.0752384" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079692, 38.933467 ], [ -77.079654, 38.933479 ], [ -77.079611, 38.933483 ], [ -77.079569, 38.933488 ], [ -77.079467, 38.933492 ], [ -77.079220, 38.933492 ], [ -77.079220, 38.933038 ], [ -77.079762, 38.933433 ], [ -77.079729, 38.933450 ], [ -77.079692, 38.933467 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000703", "GEOID": "11001000703", "NAME": "7.03", "NAMELSAD": "Census Tract 7.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 232137, "AWATER": 0, "INTPTLAT": "+38.9290941", "INTPTLON": "-077.0790462" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079220, 38.926195 ], [ -77.079418, 38.926164 ], [ -77.079762, 38.926072 ], [ -77.079998, 38.925968 ], [ -77.080502, 38.926001 ], [ -77.081296, 38.926043 ], [ -77.081398, 38.926097 ], [ -77.081430, 38.926110 ], [ -77.081478, 38.926135 ], [ -77.081510, 38.926156 ], [ -77.081553, 38.926185 ], [ -77.081618, 38.926231 ], [ -77.081650, 38.926256 ], [ -77.081248, 38.927842 ], [ -77.080566, 38.930237 ], [ -77.080320, 38.930905 ], [ -77.079896, 38.932065 ], [ -77.079971, 38.932411 ], [ -77.080110, 38.933058 ], [ -77.080121, 38.933692 ], [ -77.079917, 38.933550 ], [ -77.079874, 38.933517 ], [ -77.079762, 38.933433 ], [ -77.079220, 38.933038 ], [ -77.079220, 38.926195 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000702", "GEOID": "11001000702", "NAME": "7.02", "NAMELSAD": "Census Tract 7.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308967, "AWATER": 0, "INTPTLAT": "+38.9241271", "INTPTLON": "-077.0778930" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079220, 38.924561 ], [ -77.082013, 38.924561 ], [ -77.081999, 38.924641 ], [ -77.081940, 38.924837 ], [ -77.081929, 38.924958 ], [ -77.081650, 38.926256 ], [ -77.081618, 38.926231 ], [ -77.081553, 38.926185 ], [ -77.081510, 38.926156 ], [ -77.081478, 38.926135 ], [ -77.081430, 38.926110 ], [ -77.081398, 38.926097 ], [ -77.081296, 38.926043 ], [ -77.080502, 38.926001 ], [ -77.079998, 38.925968 ], [ -77.079762, 38.926072 ], [ -77.079418, 38.926164 ], [ -77.079220, 38.926195 ], [ -77.079220, 38.924561 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2342, "y": 3136 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007301", "GEOID": "11001007301", "NAME": "73.01", "NAMELSAD": "Census Tract 73.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684643, "AWATER": 5139082, "INTPTLAT": "+38.8349280", "INTPTLON": "-077.0244450" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.039126, 38.819607 ], [ -77.039212, 38.819670 ], [ -77.039276, 38.819728 ], [ -77.039335, 38.819791 ], [ -77.039373, 38.819816 ], [ -77.039427, 38.819845 ], [ -77.039491, 38.819866 ], [ -77.039550, 38.819874 ], [ -77.039604, 38.819887 ], [ -77.039663, 38.819891 ], [ -77.039727, 38.819887 ], [ -77.039807, 38.819975 ], [ -77.039899, 38.820075 ], [ -77.039904, 38.820133 ], [ -77.039968, 38.820255 ], [ -77.039931, 38.820459 ], [ -77.039968, 38.820501 ], [ -77.039990, 38.820526 ], [ -77.040006, 38.820564 ], [ -77.040011, 38.820589 ], [ -77.040038, 38.820614 ], [ -77.040038, 38.820652 ], [ -77.040027, 38.820677 ], [ -77.039995, 38.820698 ], [ -77.039979, 38.820727 ], [ -77.039963, 38.820765 ], [ -77.039952, 38.820806 ], [ -77.039931, 38.820857 ], [ -77.039893, 38.820902 ], [ -77.039840, 38.820948 ], [ -77.039797, 38.821007 ], [ -77.039738, 38.821061 ], [ -77.039668, 38.821091 ], [ -77.039620, 38.821120 ], [ -77.039566, 38.821141 ], [ -77.039550, 38.821162 ], [ -77.039545, 38.821208 ], [ -77.039539, 38.821254 ], [ -77.039539, 38.821274 ], [ -77.039512, 38.821291 ], [ -77.039512, 38.821312 ], [ -77.039507, 38.821337 ], [ -77.039496, 38.821358 ], [ -77.039480, 38.821404 ], [ -77.039453, 38.821433 ], [ -77.039443, 38.821454 ], [ -77.039453, 38.821559 ], [ -77.039491, 38.821584 ], [ -77.039486, 38.821605 ], [ -77.039491, 38.821655 ], [ -77.039550, 38.821701 ], [ -77.039582, 38.821705 ], [ -77.039630, 38.821730 ], [ -77.039657, 38.821768 ], [ -77.039706, 38.821818 ], [ -77.039759, 38.821822 ], [ -77.039813, 38.821843 ], [ -77.039888, 38.821851 ], [ -77.039931, 38.821880 ], [ -77.040054, 38.821893 ], [ -77.040102, 38.821914 ], [ -77.040231, 38.821968 ], [ -77.040387, 38.821989 ], [ -77.040521, 38.821968 ], [ -77.040596, 38.821989 ], [ -77.040644, 38.822023 ], [ -77.040682, 38.822035 ], [ -77.040735, 38.822081 ], [ -77.040757, 38.822089 ], [ -77.040821, 38.822177 ], [ -77.040864, 38.822236 ], [ -77.040870, 38.822340 ], [ -77.040913, 38.822415 ], [ -77.040977, 38.822558 ], [ -77.040977, 38.822591 ], [ -77.040993, 38.822608 ], [ -77.040998, 38.822666 ], [ -77.041036, 38.822716 ], [ -77.041084, 38.822884 ], [ -77.041084, 38.822925 ], [ -77.041106, 38.822942 ], [ -77.041090, 38.823051 ], [ -77.041095, 38.823080 ], [ -77.041079, 38.823193 ], [ -77.041063, 38.823230 ], [ -77.041063, 38.823255 ], [ -77.041060, 38.823260 ], [ -77.035275, 38.823260 ], [ -77.035275, 38.819730 ], [ -77.039126, 38.819607 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010900", "GEOID": "11001010900", "NAME": "109", "NAMELSAD": "Census Tract 109", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2381079, "AWATER": 2933589, "INTPTLAT": "+38.8132364", "INTPTLON": "-077.0238475" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.794563 ], [ -77.035516, 38.794375 ], [ -77.036439, 38.793651 ], [ -77.037361, 38.792932 ], [ -77.037404, 38.792899 ], [ -77.037517, 38.792811 ], [ -77.037570, 38.792769 ], [ -77.037833, 38.792564 ], [ -77.037930, 38.792489 ], [ -77.038026, 38.792410 ], [ -77.039003, 38.791644 ], [ -77.038987, 38.792414 ], [ -77.038987, 38.792497 ], [ -77.038981, 38.792552 ], [ -77.038981, 38.792765 ], [ -77.038981, 38.792828 ], [ -77.038981, 38.792915 ], [ -77.038987, 38.793672 ], [ -77.038987, 38.793701 ], [ -77.039008, 38.794408 ], [ -77.039008, 38.794471 ], [ -77.039008, 38.794542 ], [ -77.039014, 38.794734 ], [ -77.039046, 38.795892 ], [ -77.039073, 38.796875 ], [ -77.039073, 38.796904 ], [ -77.039073, 38.796992 ], [ -77.039078, 38.797159 ], [ -77.039083, 38.797289 ], [ -77.039089, 38.797569 ], [ -77.039089, 38.797590 ], [ -77.039094, 38.797648 ], [ -77.039099, 38.797836 ], [ -77.039110, 38.798171 ], [ -77.039153, 38.799450 ], [ -77.039153, 38.799509 ], [ -77.039158, 38.799743 ], [ -77.039174, 38.800036 ], [ -77.039180, 38.800299 ], [ -77.039185, 38.800495 ], [ -77.039126, 38.800817 ], [ -77.038965, 38.801679 ], [ -77.038617, 38.803480 ], [ -77.038236, 38.805090 ], [ -77.038053, 38.805968 ], [ -77.037715, 38.808146 ], [ -77.037640, 38.808572 ], [ -77.037286, 38.810528 ], [ -77.037302, 38.812238 ], [ -77.037334, 38.813404 ], [ -77.037351, 38.814186 ], [ -77.037356, 38.814478 ], [ -77.037351, 38.814537 ], [ -77.037340, 38.814633 ], [ -77.037361, 38.814704 ], [ -77.037388, 38.814738 ], [ -77.037415, 38.814788 ], [ -77.037426, 38.814850 ], [ -77.037436, 38.814938 ], [ -77.037469, 38.814997 ], [ -77.037522, 38.815043 ], [ -77.037592, 38.815089 ], [ -77.037672, 38.815143 ], [ -77.037737, 38.815185 ], [ -77.037823, 38.815247 ], [ -77.037903, 38.815323 ], [ -77.038021, 38.815436 ], [ -77.038075, 38.815515 ], [ -77.038144, 38.815611 ], [ -77.038220, 38.815770 ], [ -77.038273, 38.815874 ], [ -77.038311, 38.815971 ], [ -77.038348, 38.816029 ], [ -77.038375, 38.816071 ], [ -77.038407, 38.816092 ], [ -77.038418, 38.816138 ], [ -77.038423, 38.816200 ], [ -77.038429, 38.816213 ], [ -77.038445, 38.816242 ], [ -77.038456, 38.816292 ], [ -77.038482, 38.816514 ], [ -77.038504, 38.816623 ], [ -77.038520, 38.816715 ], [ -77.038536, 38.816811 ], [ -77.038552, 38.816898 ], [ -77.038558, 38.816978 ], [ -77.038563, 38.817049 ], [ -77.038536, 38.817066 ], [ -77.038541, 38.817078 ], [ -77.038563, 38.817091 ], [ -77.038574, 38.817107 ], [ -77.038606, 38.817183 ], [ -77.038627, 38.817266 ], [ -77.038654, 38.817341 ], [ -77.038670, 38.817408 ], [ -77.038686, 38.817459 ], [ -77.038702, 38.817513 ], [ -77.038708, 38.817559 ], [ -77.038697, 38.817596 ], [ -77.038708, 38.817642 ], [ -77.038740, 38.817634 ], [ -77.038772, 38.817684 ], [ -77.038751, 38.817705 ], [ -77.038745, 38.817734 ], [ -77.038772, 38.817810 ], [ -77.038788, 38.817856 ], [ -77.038820, 38.817876 ], [ -77.038831, 38.817922 ], [ -77.038810, 38.817948 ], [ -77.038799, 38.817977 ], [ -77.038804, 38.818002 ], [ -77.038853, 38.818035 ], [ -77.038842, 38.818115 ], [ -77.038815, 38.818136 ], [ -77.038853, 38.818165 ], [ -77.038863, 38.818207 ], [ -77.038863, 38.818244 ], [ -77.038869, 38.818320 ], [ -77.038879, 38.818378 ], [ -77.038895, 38.818428 ], [ -77.038906, 38.818470 ], [ -77.038922, 38.818512 ], [ -77.038949, 38.818579 ], [ -77.038965, 38.818625 ], [ -77.038976, 38.818666 ], [ -77.038981, 38.818683 ], [ -77.038987, 38.818700 ], [ -77.038987, 38.818725 ], [ -77.038976, 38.818754 ], [ -77.038965, 38.818779 ], [ -77.039078, 38.818821 ], [ -77.039056, 38.818863 ], [ -77.039115, 38.818884 ], [ -77.039099, 38.818938 ], [ -77.039035, 38.818921 ], [ -77.039024, 38.818930 ], [ -77.039003, 38.818951 ], [ -77.038981, 38.818976 ], [ -77.038949, 38.819009 ], [ -77.038922, 38.819034 ], [ -77.038906, 38.819064 ], [ -77.038885, 38.819089 ], [ -77.038869, 38.819126 ], [ -77.038858, 38.819168 ], [ -77.038863, 38.819260 ], [ -77.038863, 38.819331 ], [ -77.038895, 38.819369 ], [ -77.038901, 38.819398 ], [ -77.038890, 38.819427 ], [ -77.038917, 38.819473 ], [ -77.038922, 38.819502 ], [ -77.038938, 38.819532 ], [ -77.038954, 38.819536 ], [ -77.038981, 38.819540 ], [ -77.039024, 38.819527 ], [ -77.039126, 38.819607 ], [ -77.035275, 38.819730 ], [ -77.035275, 38.794563 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2342, "y": 3135 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007301", "GEOID": "11001007301", "NAME": "73.01", "NAMELSAD": "Census Tract 73.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684643, "AWATER": 5139082, "INTPTLAT": "+38.8349280", "INTPTLON": "-077.0244450" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.040122, 38.821922 ], [ -77.040231, 38.821968 ], [ -77.040387, 38.821989 ], [ -77.040521, 38.821968 ], [ -77.040596, 38.821989 ], [ -77.040644, 38.822023 ], [ -77.040682, 38.822035 ], [ -77.040735, 38.822081 ], [ -77.040757, 38.822089 ], [ -77.040821, 38.822177 ], [ -77.040864, 38.822236 ], [ -77.040870, 38.822340 ], [ -77.040913, 38.822415 ], [ -77.040977, 38.822558 ], [ -77.040977, 38.822591 ], [ -77.040993, 38.822608 ], [ -77.040998, 38.822666 ], [ -77.041036, 38.822716 ], [ -77.041084, 38.822884 ], [ -77.041084, 38.822925 ], [ -77.041106, 38.822942 ], [ -77.041090, 38.823051 ], [ -77.041095, 38.823080 ], [ -77.041079, 38.823193 ], [ -77.041063, 38.823230 ], [ -77.041063, 38.823255 ], [ -77.041041, 38.823293 ], [ -77.041014, 38.823314 ], [ -77.040977, 38.823335 ], [ -77.040950, 38.823373 ], [ -77.040886, 38.823385 ], [ -77.040789, 38.823448 ], [ -77.040778, 38.823481 ], [ -77.040682, 38.823552 ], [ -77.040644, 38.823569 ], [ -77.040628, 38.823590 ], [ -77.040612, 38.823602 ], [ -77.040591, 38.823615 ], [ -77.040526, 38.823619 ], [ -77.040516, 38.823636 ], [ -77.040435, 38.823640 ], [ -77.040414, 38.823653 ], [ -77.040381, 38.823661 ], [ -77.040339, 38.823682 ], [ -77.040285, 38.823682 ], [ -77.040258, 38.823707 ], [ -77.040194, 38.823711 ], [ -77.040167, 38.823724 ], [ -77.040135, 38.823719 ], [ -77.040108, 38.823736 ], [ -77.040065, 38.823744 ], [ -77.040043, 38.823753 ], [ -77.040011, 38.823753 ], [ -77.039968, 38.823744 ], [ -77.039813, 38.823740 ], [ -77.039791, 38.823753 ], [ -77.039765, 38.823753 ], [ -77.039748, 38.823765 ], [ -77.039716, 38.823782 ], [ -77.039695, 38.823790 ], [ -77.039673, 38.823807 ], [ -77.039668, 38.823828 ], [ -77.039668, 38.823845 ], [ -77.039679, 38.823857 ], [ -77.039684, 38.823870 ], [ -77.039668, 38.823887 ], [ -77.039663, 38.823928 ], [ -77.039641, 38.823953 ], [ -77.039598, 38.823966 ], [ -77.039598, 38.823983 ], [ -77.039534, 38.824008 ], [ -77.039507, 38.824024 ], [ -77.039453, 38.824024 ], [ -77.039405, 38.824041 ], [ -77.039373, 38.824041 ], [ -77.039330, 38.824058 ], [ -77.039255, 38.824062 ], [ -77.039212, 38.824087 ], [ -77.039180, 38.824087 ], [ -77.039126, 38.824091 ], [ -77.039083, 38.824104 ], [ -77.039067, 38.824125 ], [ -77.039046, 38.824142 ], [ -77.039024, 38.824171 ], [ -77.039008, 38.824229 ], [ -77.038976, 38.824271 ], [ -77.038938, 38.824317 ], [ -77.038895, 38.824359 ], [ -77.038879, 38.824371 ], [ -77.038869, 38.824409 ], [ -77.038831, 38.824422 ], [ -77.038799, 38.824442 ], [ -77.038783, 38.824472 ], [ -77.038788, 38.824505 ], [ -77.038799, 38.824534 ], [ -77.038804, 38.824551 ], [ -77.038836, 38.824559 ], [ -77.038826, 38.824589 ], [ -77.038810, 38.824614 ], [ -77.038788, 38.824643 ], [ -77.038794, 38.824693 ], [ -77.038761, 38.824743 ], [ -77.038745, 38.824890 ], [ -77.038756, 38.824973 ], [ -77.038659, 38.825065 ], [ -77.038622, 38.825420 ], [ -77.038611, 38.825504 ], [ -77.038654, 38.825567 ], [ -77.038665, 38.825671 ], [ -77.038627, 38.825767 ], [ -77.038606, 38.825922 ], [ -77.038536, 38.826035 ], [ -77.038574, 38.826089 ], [ -77.038558, 38.826194 ], [ -77.038515, 38.826256 ], [ -77.038504, 38.826348 ], [ -77.038461, 38.826440 ], [ -77.038445, 38.826528 ], [ -77.038397, 38.826829 ], [ -77.038332, 38.826925 ], [ -77.038300, 38.827096 ], [ -77.038332, 38.827125 ], [ -77.038381, 38.827171 ], [ -77.038364, 38.827268 ], [ -77.038311, 38.827318 ], [ -77.038300, 38.827351 ], [ -77.038284, 38.827418 ], [ -77.038268, 38.827481 ], [ -77.038273, 38.827510 ], [ -77.038257, 38.827522 ], [ -77.038230, 38.827548 ], [ -77.038203, 38.827568 ], [ -77.038193, 38.827589 ], [ -77.038187, 38.827614 ], [ -77.038177, 38.827635 ], [ -77.038166, 38.827648 ], [ -77.038150, 38.827665 ], [ -77.038139, 38.827681 ], [ -77.038134, 38.827694 ], [ -77.038134, 38.827711 ], [ -77.038139, 38.827727 ], [ -77.038139, 38.827744 ], [ -77.038139, 38.827752 ], [ -77.038139, 38.827769 ], [ -77.038139, 38.827782 ], [ -77.038150, 38.827798 ], [ -77.038155, 38.827815 ], [ -77.038155, 38.827836 ], [ -77.038161, 38.827861 ], [ -77.038155, 38.827874 ], [ -77.038150, 38.827894 ], [ -77.038144, 38.827936 ], [ -77.038128, 38.827949 ], [ -77.038128, 38.828003 ], [ -77.038123, 38.828024 ], [ -77.038112, 38.828041 ], [ -77.038091, 38.828057 ], [ -77.038085, 38.828066 ], [ -77.038075, 38.828074 ], [ -77.038069, 38.828087 ], [ -77.038059, 38.828103 ], [ -77.038053, 38.828124 ], [ -77.038053, 38.828141 ], [ -77.038064, 38.828153 ], [ -77.038069, 38.828166 ], [ -77.038069, 38.828179 ], [ -77.038059, 38.828195 ], [ -77.038053, 38.828208 ], [ -77.038037, 38.828229 ], [ -77.038026, 38.828245 ], [ -77.038016, 38.828262 ], [ -77.038016, 38.828287 ], [ -77.038032, 38.828333 ], [ -77.038037, 38.828350 ], [ -77.038048, 38.828367 ], [ -77.038048, 38.828379 ], [ -77.038026, 38.828392 ], [ -77.038005, 38.828417 ], [ -77.038005, 38.828433 ], [ -77.038016, 38.828454 ], [ -77.038010, 38.828471 ], [ -77.038005, 38.828475 ], [ -77.037973, 38.828576 ], [ -77.037967, 38.828592 ], [ -77.037978, 38.828617 ], [ -77.037978, 38.828634 ], [ -77.037978, 38.828655 ], [ -77.037973, 38.828676 ], [ -77.037962, 38.828701 ], [ -77.037951, 38.828722 ], [ -77.037946, 38.828751 ], [ -77.037946, 38.828772 ], [ -77.037951, 38.828797 ], [ -77.037946, 38.828822 ], [ -77.037935, 38.828831 ], [ -77.037930, 38.828843 ], [ -77.037908, 38.828893 ], [ -77.037882, 38.828948 ], [ -77.037876, 38.828968 ], [ -77.037860, 38.828977 ], [ -77.037849, 38.828981 ], [ -77.037839, 38.828993 ], [ -77.037833, 38.829010 ], [ -77.037833, 38.829027 ], [ -77.037849, 38.829056 ], [ -77.037844, 38.829081 ], [ -77.037823, 38.829140 ], [ -77.037801, 38.829165 ], [ -77.037785, 38.829182 ], [ -77.037769, 38.829198 ], [ -77.037758, 38.829215 ], [ -77.037758, 38.829228 ], [ -77.037758, 38.829240 ], [ -77.037764, 38.829248 ], [ -77.037785, 38.829273 ], [ -77.037801, 38.829294 ], [ -77.037801, 38.829315 ], [ -77.037790, 38.829328 ], [ -77.037753, 38.829382 ], [ -77.037758, 38.829420 ], [ -77.037764, 38.829432 ], [ -77.037764, 38.829449 ], [ -77.037726, 38.829470 ], [ -77.037694, 38.829499 ], [ -77.037710, 38.829541 ], [ -77.037715, 38.829595 ], [ -77.037742, 38.829633 ], [ -77.037742, 38.829742 ], [ -77.037769, 38.829771 ], [ -77.037774, 38.829813 ], [ -77.037737, 38.829850 ], [ -77.037731, 38.829863 ], [ -77.037742, 38.829913 ], [ -77.037737, 38.830005 ], [ -77.037748, 38.830030 ], [ -77.037753, 38.830139 ], [ -77.037780, 38.830180 ], [ -77.037796, 38.830197 ], [ -77.037823, 38.830197 ], [ -77.037823, 38.830218 ], [ -77.037817, 38.830243 ], [ -77.037812, 38.830293 ], [ -77.037833, 38.830314 ], [ -77.037839, 38.830343 ], [ -77.037823, 38.830402 ], [ -77.037855, 38.830456 ], [ -77.037876, 38.830481 ], [ -77.037860, 38.830494 ], [ -77.037866, 38.830540 ], [ -77.037962, 38.830619 ], [ -77.038021, 38.830669 ], [ -77.038021, 38.830715 ], [ -77.038000, 38.830740 ], [ -77.038075, 38.830824 ], [ -77.038134, 38.830891 ], [ -77.038144, 38.830928 ], [ -77.038198, 38.830991 ], [ -77.038241, 38.831037 ], [ -77.038257, 38.831045 ], [ -77.038257, 38.831108 ], [ -77.038284, 38.831171 ], [ -77.038348, 38.831212 ], [ -77.038413, 38.831242 ], [ -77.038407, 38.831292 ], [ -77.038477, 38.831380 ], [ -77.038493, 38.831409 ], [ -77.038531, 38.831430 ], [ -77.038541, 38.831476 ], [ -77.038563, 38.831513 ], [ -77.038627, 38.831551 ], [ -77.038617, 38.831597 ], [ -77.038643, 38.831609 ], [ -77.038681, 38.831630 ], [ -77.038708, 38.831697 ], [ -77.038756, 38.831731 ], [ -77.038794, 38.831735 ], [ -77.038820, 38.831756 ], [ -77.038815, 38.831777 ], [ -77.038853, 38.831810 ], [ -77.038858, 38.831831 ], [ -77.038890, 38.831856 ], [ -77.038895, 38.831885 ], [ -77.038949, 38.831927 ], [ -77.039003, 38.831956 ], [ -77.039035, 38.832032 ], [ -77.039115, 38.832098 ], [ -77.039169, 38.832149 ], [ -77.039228, 38.832195 ], [ -77.039335, 38.832266 ], [ -77.039555, 38.832391 ], [ -77.039679, 38.832474 ], [ -77.039711, 38.832516 ], [ -77.039738, 38.832533 ], [ -77.039775, 38.832554 ], [ -77.039850, 38.832571 ], [ -77.039925, 38.832583 ], [ -77.039958, 38.832592 ], [ -77.040408, 38.832871 ], [ -77.040462, 38.832876 ], [ -77.040537, 38.832934 ], [ -77.040601, 38.832972 ], [ -77.040639, 38.832984 ], [ -77.040703, 38.833030 ], [ -77.040762, 38.833064 ], [ -77.040827, 38.833114 ], [ -77.040907, 38.833156 ], [ -77.040998, 38.833206 ], [ -77.041706, 38.833632 ], [ -77.041782, 38.833678 ], [ -77.041883, 38.833711 ], [ -77.042001, 38.833720 ], [ -77.042034, 38.833720 ], [ -77.042114, 38.833711 ], [ -77.042189, 38.833695 ], [ -77.042275, 38.833661 ], [ -77.042372, 38.833611 ], [ -77.042452, 38.833548 ], [ -77.042522, 38.833477 ], [ -77.042559, 38.833406 ], [ -77.042575, 38.833331 ], [ -77.042575, 38.833239 ], [ -77.042549, 38.833164 ], [ -77.042554, 38.833126 ], [ -77.042527, 38.833080 ], [ -77.042522, 38.833047 ], [ -77.042533, 38.833030 ], [ -77.042500, 38.832976 ], [ -77.042490, 38.832951 ], [ -77.042457, 38.832909 ], [ -77.042431, 38.832838 ], [ -77.042393, 38.832692 ], [ -77.042339, 38.832663 ], [ -77.042345, 38.832621 ], [ -77.042329, 38.832596 ], [ -77.042291, 38.832562 ], [ -77.042291, 38.832508 ], [ -77.042270, 38.832470 ], [ -77.042238, 38.832412 ], [ -77.042238, 38.832374 ], [ -77.042211, 38.832316 ], [ -77.042216, 38.832245 ], [ -77.042189, 38.832220 ], [ -77.042195, 38.832165 ], [ -77.042146, 38.832086 ], [ -77.042146, 38.831965 ], [ -77.042082, 38.831843 ], [ -77.042055, 38.831835 ], [ -77.042034, 38.831789 ], [ -77.042018, 38.831743 ], [ -77.041991, 38.831672 ], [ -77.041996, 38.831635 ], [ -77.041985, 38.831605 ], [ -77.041953, 38.831589 ], [ -77.041975, 38.831568 ], [ -77.041969, 38.831518 ], [ -77.041980, 38.831484 ], [ -77.042007, 38.831447 ], [ -77.042039, 38.831430 ], [ -77.042087, 38.831426 ], [ -77.042114, 38.831413 ], [ -77.042103, 38.831375 ], [ -77.042103, 38.831334 ], [ -77.042270, 38.831271 ], [ -77.042388, 38.831225 ], [ -77.042420, 38.831225 ], [ -77.042457, 38.831250 ], [ -77.042506, 38.831246 ], [ -77.042543, 38.831217 ], [ -77.042801, 38.831192 ], [ -77.042881, 38.831204 ], [ -77.042908, 38.831225 ], [ -77.042994, 38.831250 ], [ -77.043042, 38.831292 ], [ -77.043096, 38.831346 ], [ -77.043128, 38.831350 ], [ -77.043144, 38.831371 ], [ -77.043182, 38.831421 ], [ -77.043203, 38.831430 ], [ -77.043273, 38.831509 ], [ -77.043273, 38.831530 ], [ -77.043316, 38.831618 ], [ -77.043310, 38.831639 ], [ -77.043337, 38.831681 ], [ -77.043337, 38.831714 ], [ -77.043353, 38.831735 ], [ -77.043369, 38.831848 ], [ -77.043407, 38.831869 ], [ -77.043461, 38.831902 ], [ -77.043471, 38.832086 ], [ -77.043498, 38.832123 ], [ -77.043504, 38.832190 ], [ -77.043520, 38.832215 ], [ -77.043546, 38.832307 ], [ -77.043541, 38.832370 ], [ -77.043568, 38.832429 ], [ -77.043600, 38.832470 ], [ -77.043595, 38.832566 ], [ -77.043611, 38.832596 ], [ -77.043605, 38.832646 ], [ -77.043638, 38.832700 ], [ -77.043659, 38.832754 ], [ -77.043670, 38.832851 ], [ -77.043686, 38.832892 ], [ -77.043713, 38.832943 ], [ -77.043734, 38.832963 ], [ -77.043745, 38.833022 ], [ -77.043788, 38.833076 ], [ -77.043782, 38.833110 ], [ -77.043750, 38.833143 ], [ -77.043766, 38.833181 ], [ -77.043836, 38.833193 ], [ -77.043836, 38.833227 ], [ -77.043793, 38.833252 ], [ -77.043793, 38.833319 ], [ -77.043772, 38.833360 ], [ -77.043788, 38.833381 ], [ -77.043831, 38.833411 ], [ -77.043911, 38.833440 ], [ -77.043927, 38.833469 ], [ -77.043970, 38.833515 ], [ -77.044051, 38.833528 ], [ -77.044163, 38.833519 ], [ -77.044190, 38.833532 ], [ -77.044212, 38.833561 ], [ -77.044233, 38.833586 ], [ -77.044255, 38.833590 ], [ -77.044303, 38.833619 ], [ -77.044340, 38.833686 ], [ -77.044394, 38.833749 ], [ -77.044437, 38.833820 ], [ -77.044453, 38.833887 ], [ -77.044485, 38.833929 ], [ -77.044539, 38.834054 ], [ -77.044528, 38.834100 ], [ -77.044576, 38.834142 ], [ -77.044635, 38.834230 ], [ -77.044630, 38.834255 ], [ -77.044646, 38.834338 ], [ -77.044662, 38.834363 ], [ -77.044694, 38.834447 ], [ -77.044721, 38.834472 ], [ -77.044727, 38.834576 ], [ -77.044780, 38.834643 ], [ -77.044775, 38.834714 ], [ -77.044818, 38.834760 ], [ -77.044812, 38.834802 ], [ -77.044855, 38.834877 ], [ -77.044861, 38.834940 ], [ -77.044882, 38.834982 ], [ -77.044893, 38.835003 ], [ -77.044893, 38.835040 ], [ -77.044904, 38.835057 ], [ -77.044898, 38.835082 ], [ -77.044904, 38.835095 ], [ -77.044909, 38.835186 ], [ -77.044947, 38.835203 ], [ -77.044963, 38.835262 ], [ -77.044989, 38.835295 ], [ -77.044989, 38.835383 ], [ -77.045006, 38.835412 ], [ -77.045016, 38.835471 ], [ -77.045016, 38.835521 ], [ -77.045022, 38.835537 ], [ -77.045027, 38.835609 ], [ -77.045043, 38.835625 ], [ -77.045043, 38.835671 ], [ -77.045043, 38.835776 ], [ -77.045086, 38.835826 ], [ -77.045102, 38.835859 ], [ -77.045129, 38.835880 ], [ -77.045215, 38.835926 ], [ -77.045193, 38.835960 ], [ -77.045107, 38.836022 ], [ -77.045048, 38.836077 ], [ -77.045054, 38.836118 ], [ -77.045075, 38.836164 ], [ -77.045118, 38.836177 ], [ -77.045140, 38.836244 ], [ -77.045150, 38.836315 ], [ -77.045150, 38.836382 ], [ -77.045145, 38.836444 ], [ -77.045193, 38.836503 ], [ -77.045204, 38.836528 ], [ -77.045220, 38.836586 ], [ -77.045209, 38.836628 ], [ -77.045226, 38.836657 ], [ -77.045236, 38.836687 ], [ -77.045215, 38.836737 ], [ -77.045247, 38.836845 ], [ -77.045263, 38.836925 ], [ -77.045258, 38.836967 ], [ -77.045279, 38.837013 ], [ -77.045279, 38.837042 ], [ -77.045306, 38.837146 ], [ -77.045327, 38.837180 ], [ -77.045311, 38.837247 ], [ -77.045295, 38.837263 ], [ -77.045274, 38.837272 ], [ -77.045263, 38.837309 ], [ -77.045268, 38.837334 ], [ -77.045327, 38.837418 ], [ -77.045322, 38.837669 ], [ -77.045322, 38.837719 ], [ -77.045354, 38.837748 ], [ -77.045392, 38.837773 ], [ -77.045424, 38.837827 ], [ -77.045429, 38.837844 ], [ -77.045440, 38.837869 ], [ -77.045440, 38.837894 ], [ -77.045424, 38.837932 ], [ -77.045424, 38.837969 ], [ -77.045435, 38.837982 ], [ -77.045429, 38.838045 ], [ -77.045435, 38.838128 ], [ -77.045419, 38.838157 ], [ -77.045413, 38.838187 ], [ -77.045419, 38.838208 ], [ -77.045397, 38.838262 ], [ -77.045354, 38.838295 ], [ -77.045344, 38.838320 ], [ -77.045317, 38.838358 ], [ -77.045285, 38.838416 ], [ -77.045268, 38.838475 ], [ -77.045311, 38.838496 ], [ -77.045327, 38.838529 ], [ -77.045333, 38.838592 ], [ -77.045370, 38.838650 ], [ -77.045376, 38.838692 ], [ -77.045408, 38.838747 ], [ -77.045462, 38.838767 ], [ -77.045510, 38.838797 ], [ -77.045542, 38.838839 ], [ -77.045585, 38.838864 ], [ -77.045628, 38.838876 ], [ -77.045676, 38.838855 ], [ -77.045762, 38.838930 ], [ -77.045912, 38.838997 ], [ -77.045955, 38.839047 ], [ -77.046009, 38.839085 ], [ -77.046057, 38.839177 ], [ -77.046057, 38.839206 ], [ -77.046180, 38.839290 ], [ -77.046207, 38.839315 ], [ -77.046207, 38.839352 ], [ -77.046191, 38.839373 ], [ -77.046175, 38.839398 ], [ -77.046196, 38.839436 ], [ -77.046207, 38.839444 ], [ -77.046250, 38.839461 ], [ -77.046255, 38.839495 ], [ -77.046304, 38.839536 ], [ -77.046298, 38.839657 ], [ -77.046341, 38.839691 ], [ -77.046357, 38.839720 ], [ -77.046390, 38.839754 ], [ -77.046416, 38.839774 ], [ -77.046406, 38.839816 ], [ -77.046416, 38.839837 ], [ -77.046481, 38.839862 ], [ -77.046508, 38.839896 ], [ -77.046497, 38.839921 ], [ -77.046470, 38.839942 ], [ -77.046475, 38.839967 ], [ -77.046449, 38.839975 ], [ -77.046438, 38.840046 ], [ -77.046416, 38.840050 ], [ -77.046411, 38.840075 ], [ -77.046368, 38.840067 ], [ -77.046331, 38.840071 ], [ -77.046304, 38.840092 ], [ -77.046245, 38.840084 ], [ -77.046132, 38.840000 ], [ -77.046062, 38.839975 ], [ -77.045987, 38.839954 ], [ -77.045960, 38.840000 ], [ -77.045848, 38.840013 ], [ -77.045842, 38.840046 ], [ -77.045869, 38.840146 ], [ -77.045977, 38.840326 ], [ -77.046116, 38.840414 ], [ -77.046186, 38.840430 ], [ -77.046202, 38.840430 ], [ -77.046266, 38.840443 ], [ -77.046427, 38.840535 ], [ -77.046733, 38.840631 ], [ -77.047017, 38.840660 ], [ -77.047452, 38.840660 ], [ -77.047484, 38.840656 ], [ -77.047623, 38.840827 ], [ -77.047747, 38.840961 ], [ -77.048015, 38.841262 ], [ -77.048004, 38.841266 ], [ -77.047967, 38.841266 ], [ -77.047929, 38.841270 ], [ -77.047886, 38.841274 ], [ -77.047854, 38.841279 ], [ -77.047817, 38.841283 ], [ -77.047779, 38.841287 ], [ -77.047758, 38.841287 ], [ -77.047725, 38.841291 ], [ -77.047704, 38.841295 ], [ -77.047677, 38.841304 ], [ -77.047634, 38.841308 ], [ -77.047602, 38.841308 ], [ -77.047564, 38.841308 ], [ -77.047521, 38.841308 ], [ -77.047479, 38.841308 ], [ -77.047436, 38.841308 ], [ -77.047403, 38.841312 ], [ -77.047361, 38.841312 ], [ -77.047328, 38.841312 ], [ -77.047285, 38.841312 ], [ -77.047253, 38.841312 ], [ -77.047210, 38.841316 ], [ -77.047173, 38.841320 ], [ -77.047125, 38.841320 ], [ -77.047087, 38.841320 ], [ -77.047049, 38.841316 ], [ -77.047006, 38.841312 ], [ -77.046969, 38.841312 ], [ -77.046942, 38.841312 ], [ -77.046905, 38.841308 ], [ -77.046862, 38.841304 ], [ -77.046824, 38.841304 ], [ -77.046792, 38.841300 ], [ -77.046754, 38.841295 ], [ -77.046728, 38.841291 ], [ -77.046690, 38.841287 ], [ -77.046652, 38.841279 ], [ -77.046626, 38.841270 ], [ -77.046588, 38.841262 ], [ -77.046551, 38.841262 ], [ -77.046518, 38.841254 ], [ -77.046486, 38.841245 ], [ -77.046454, 38.841241 ], [ -77.046422, 38.841233 ], [ -77.046384, 38.841224 ], [ -77.046357, 38.841216 ], [ -77.046325, 38.841208 ], [ -77.046288, 38.841199 ], [ -77.046261, 38.841187 ], [ -77.046234, 38.841178 ], [ -77.046207, 38.841170 ], [ -77.046180, 38.841166 ], [ -77.046143, 38.841183 ], [ -77.046137, 38.841153 ], [ -77.046111, 38.841149 ], [ -77.046078, 38.841137 ], [ -77.046046, 38.841128 ], [ -77.046019, 38.841120 ], [ -77.045987, 38.841107 ], [ -77.045955, 38.841095 ], [ -77.045923, 38.841082 ], [ -77.045891, 38.841074 ], [ -77.045859, 38.841061 ], [ -77.045826, 38.841053 ], [ -77.045794, 38.841036 ], [ -77.045767, 38.841020 ], [ -77.045730, 38.841003 ], [ -77.045708, 38.840990 ], [ -77.045681, 38.840982 ], [ -77.045660, 38.840995 ], [ -77.045639, 38.840982 ], [ -77.045644, 38.840961 ], [ -77.045617, 38.840949 ], [ -77.045590, 38.840936 ], [ -77.045563, 38.840919 ], [ -77.045537, 38.840903 ], [ -77.045510, 38.840886 ], [ -77.045483, 38.840869 ], [ -77.045451, 38.840848 ], [ -77.045424, 38.840827 ], [ -77.045397, 38.840811 ], [ -77.045370, 38.840790 ], [ -77.045344, 38.840769 ], [ -77.045317, 38.840748 ], [ -77.045290, 38.840731 ], [ -77.045263, 38.840710 ], [ -77.045236, 38.840690 ], [ -77.045209, 38.840673 ], [ -77.045183, 38.840652 ], [ -77.045161, 38.840631 ], [ -77.045134, 38.840610 ], [ -77.045107, 38.840585 ], [ -77.045086, 38.840560 ], [ -77.045065, 38.840539 ], [ -77.045043, 38.840518 ], [ -77.045016, 38.840493 ], [ -77.044995, 38.840472 ], [ -77.044979, 38.840451 ], [ -77.044963, 38.840430 ], [ -77.044941, 38.840410 ], [ -77.044925, 38.840389 ], [ -77.044904, 38.840368 ], [ -77.044888, 38.840351 ], [ -77.044871, 38.840330 ], [ -77.044861, 38.840309 ], [ -77.044850, 38.840288 ], [ -77.044834, 38.840268 ], [ -77.044807, 38.840251 ], [ -77.044786, 38.840234 ], [ -77.044764, 38.840222 ], [ -77.044737, 38.840213 ], [ -77.044705, 38.840209 ], [ -77.044678, 38.840209 ], [ -77.044641, 38.840209 ], [ -77.044609, 38.840209 ], [ -77.044576, 38.840201 ], [ -77.044544, 38.840196 ], [ -77.044517, 38.840192 ], [ -77.044491, 38.840188 ], [ -77.044453, 38.840184 ], [ -77.044415, 38.840176 ], [ -77.044373, 38.840171 ], [ -77.044335, 38.840167 ], [ -77.044292, 38.840176 ], [ -77.044249, 38.840180 ], [ -77.044217, 38.840184 ], [ -77.044179, 38.840192 ], [ -77.044147, 38.840205 ], [ -77.044115, 38.840213 ], [ -77.044083, 38.840222 ], [ -77.044056, 38.840226 ], [ -77.044024, 38.840226 ], [ -77.043997, 38.840217 ], [ -77.043970, 38.840205 ], [ -77.043938, 38.840196 ], [ -77.043900, 38.840196 ], [ -77.043874, 38.840209 ], [ -77.043841, 38.840222 ], [ -77.043815, 38.840234 ], [ -77.043788, 38.840247 ], [ -77.043766, 38.840259 ], [ -77.043740, 38.840276 ], [ -77.043713, 38.840297 ], [ -77.043686, 38.840309 ], [ -77.043664, 38.840326 ], [ -77.043648, 38.840343 ], [ -77.043627, 38.840364 ], [ -77.043611, 38.840385 ], [ -77.043589, 38.840401 ], [ -77.043573, 38.840422 ], [ -77.043557, 38.840443 ], [ -77.043536, 38.840464 ], [ -77.043520, 38.840481 ], [ -77.043498, 38.840497 ], [ -77.043471, 38.840510 ], [ -77.043450, 38.840527 ], [ -77.043428, 38.840543 ], [ -77.043402, 38.840560 ], [ -77.043380, 38.840552 ], [ -77.043380, 38.840522 ], [ -77.043396, 38.840506 ], [ -77.043396, 38.840485 ], [ -77.043396, 38.840464 ], [ -77.043380, 38.840443 ], [ -77.043364, 38.840410 ], [ -77.043353, 38.840389 ], [ -77.043343, 38.840372 ], [ -77.043332, 38.840355 ], [ -77.043326, 38.840330 ], [ -77.043321, 38.840309 ], [ -77.043305, 38.840297 ], [ -77.043289, 38.840280 ], [ -77.043284, 38.840259 ], [ -77.043278, 38.840234 ], [ -77.043278, 38.840213 ], [ -77.043284, 38.840196 ], [ -77.043289, 38.840159 ], [ -77.043284, 38.840138 ], [ -77.043267, 38.840121 ], [ -77.043257, 38.840105 ], [ -77.043241, 38.840088 ], [ -77.043230, 38.840067 ], [ -77.043225, 38.840042 ], [ -77.043219, 38.840021 ], [ -77.043203, 38.840004 ], [ -77.043192, 38.839988 ], [ -77.043171, 38.839967 ], [ -77.043149, 38.839950 ], [ -77.043133, 38.839933 ], [ -77.043117, 38.839917 ], [ -77.043117, 38.839896 ], [ -77.043112, 38.839875 ], [ -77.043101, 38.839854 ], [ -77.043090, 38.839833 ], [ -77.043074, 38.839812 ], [ -77.043064, 38.839795 ], [ -77.043005, 38.839762 ], [ -77.042983, 38.839754 ], [ -77.042956, 38.839745 ], [ -77.042930, 38.839733 ], [ -77.042903, 38.839729 ], [ -77.042876, 38.839720 ], [ -77.042854, 38.839712 ], [ -77.042828, 38.839703 ], [ -77.042801, 38.839695 ], [ -77.042774, 38.839687 ], [ -77.042742, 38.839683 ], [ -77.042710, 38.839678 ], [ -77.042683, 38.839670 ], [ -77.042656, 38.839666 ], [ -77.042629, 38.839662 ], [ -77.042602, 38.839657 ], [ -77.042575, 38.839653 ], [ -77.042554, 38.839649 ], [ -77.042522, 38.839645 ], [ -77.042495, 38.839641 ], [ -77.042468, 38.839641 ], [ -77.042436, 38.839637 ], [ -77.042404, 38.839632 ], [ -77.042377, 38.839628 ], [ -77.042345, 38.839624 ], [ -77.042318, 38.839620 ], [ -77.042291, 38.839616 ], [ -77.042264, 38.839612 ], [ -77.042232, 38.839607 ], [ -77.042205, 38.839603 ], [ -77.042179, 38.839599 ], [ -77.042146, 38.839591 ], [ -77.042120, 38.839586 ], [ -77.042098, 38.839582 ], [ -77.042071, 38.839578 ], [ -77.042044, 38.839574 ], [ -77.042018, 38.839566 ], [ -77.041985, 38.839561 ], [ -77.041959, 38.839557 ], [ -77.041932, 38.839553 ], [ -77.041910, 38.839549 ], [ -77.041878, 38.839540 ], [ -77.041857, 38.839536 ], [ -77.041835, 38.839532 ], [ -77.041808, 38.839524 ], [ -77.041782, 38.839515 ], [ -77.041755, 38.839515 ], [ -77.041733, 38.839511 ], [ -77.041701, 38.839511 ], [ -77.041674, 38.839511 ], [ -77.041647, 38.839511 ], [ -77.041621, 38.839515 ], [ -77.041588, 38.839511 ], [ -77.041567, 38.839515 ], [ -77.041540, 38.839515 ], [ -77.041513, 38.839520 ], [ -77.041487, 38.839520 ], [ -77.041454, 38.839520 ], [ -77.041422, 38.839524 ], [ -77.041401, 38.839524 ], [ -77.041374, 38.839524 ], [ -77.041347, 38.839528 ], [ -77.041320, 38.839532 ], [ -77.041293, 38.839532 ], [ -77.041272, 38.839536 ], [ -77.041245, 38.839540 ], [ -77.041224, 38.839540 ], [ -77.041197, 38.839545 ], [ -77.041175, 38.839553 ], [ -77.041149, 38.839561 ], [ -77.041127, 38.839570 ], [ -77.041106, 38.839586 ], [ -77.041090, 38.839607 ], [ -77.041047, 38.839616 ], [ -77.040939, 38.839578 ], [ -77.040913, 38.839557 ], [ -77.040891, 38.839536 ], [ -77.040870, 38.839524 ], [ -77.040789, 38.839495 ], [ -77.040768, 38.839486 ], [ -77.040735, 38.839478 ], [ -77.040703, 38.839469 ], [ -77.040682, 38.839457 ], [ -77.040634, 38.839436 ], [ -77.040607, 38.839419 ], [ -77.040580, 38.839411 ], [ -77.040553, 38.839403 ], [ -77.040532, 38.839390 ], [ -77.040505, 38.839382 ], [ -77.040473, 38.839373 ], [ -77.040451, 38.839365 ], [ -77.040392, 38.839340 ], [ -77.040376, 38.839323 ], [ -77.040317, 38.839319 ], [ -77.040290, 38.839319 ], [ -77.040194, 38.839311 ], [ -77.040172, 38.839306 ], [ -77.040145, 38.839302 ], [ -77.040124, 38.839294 ], [ -77.039974, 38.839277 ], [ -77.039947, 38.839277 ], [ -77.039883, 38.839281 ], [ -77.039824, 38.839277 ], [ -77.039786, 38.839281 ], [ -77.039759, 38.839281 ], [ -77.039706, 38.839273 ], [ -77.039663, 38.839277 ], [ -77.039614, 38.839281 ], [ -77.039587, 38.839286 ], [ -77.039512, 38.839286 ], [ -77.039464, 38.839286 ], [ -77.039405, 38.839286 ], [ -77.039346, 38.839281 ], [ -77.039260, 38.839269 ], [ -77.039196, 38.839265 ], [ -77.039174, 38.839269 ], [ -77.039121, 38.839261 ], [ -77.039089, 38.839261 ], [ -77.039024, 38.839256 ], [ -77.038992, 38.839252 ], [ -77.038965, 38.839248 ], [ -77.038933, 38.839248 ], [ -77.038901, 38.839248 ], [ -77.038659, 38.839265 ], [ -77.038633, 38.839261 ], [ -77.038595, 38.839256 ], [ -77.038547, 38.839261 ], [ -77.038456, 38.839273 ], [ -77.038381, 38.839277 ], [ -77.038354, 38.839281 ], [ -77.038268, 38.839286 ], [ -77.038203, 38.839298 ], [ -77.038177, 38.839290 ], [ -77.038150, 38.839277 ], [ -77.038107, 38.839273 ], [ -77.038053, 38.839281 ], [ -77.038026, 38.839286 ], [ -77.037967, 38.839294 ], [ -77.037914, 38.839302 ], [ -77.037823, 38.839311 ], [ -77.037780, 38.839315 ], [ -77.037715, 38.839319 ], [ -77.037624, 38.839327 ], [ -77.037565, 38.839332 ], [ -77.037533, 38.839332 ], [ -77.037479, 38.839336 ], [ -77.037431, 38.839344 ], [ -77.037415, 38.839361 ], [ -77.037393, 38.839373 ], [ -77.037313, 38.839369 ], [ -77.037281, 38.839365 ], [ -77.037216, 38.839369 ], [ -77.037039, 38.839382 ], [ -77.036964, 38.839386 ], [ -77.036803, 38.839407 ], [ -77.036777, 38.839415 ], [ -77.036750, 38.839423 ], [ -77.036728, 38.839440 ], [ -77.036691, 38.839474 ], [ -77.036653, 38.839507 ], [ -77.036626, 38.839528 ], [ -77.036632, 38.839553 ], [ -77.036610, 38.839570 ], [ -77.036578, 38.839574 ], [ -77.036546, 38.839566 ], [ -77.036508, 38.839557 ], [ -77.036476, 38.839553 ], [ -77.036428, 38.839549 ], [ -77.036347, 38.839549 ], [ -77.036315, 38.839545 ], [ -77.036262, 38.839549 ], [ -77.036197, 38.839553 ], [ -77.036170, 38.839561 ], [ -77.036111, 38.839578 ], [ -77.036085, 38.839586 ], [ -77.036058, 38.839599 ], [ -77.036031, 38.839607 ], [ -77.036009, 38.839624 ], [ -77.035977, 38.839637 ], [ -77.035956, 38.839653 ], [ -77.035929, 38.839666 ], [ -77.035897, 38.839678 ], [ -77.035870, 38.839687 ], [ -77.035816, 38.839703 ], [ -77.035789, 38.839712 ], [ -77.035763, 38.839716 ], [ -77.035736, 38.839724 ], [ -77.035714, 38.839741 ], [ -77.035671, 38.839754 ], [ -77.035645, 38.839754 ], [ -77.035607, 38.839749 ], [ -77.035570, 38.839741 ], [ -77.035521, 38.839749 ], [ -77.035500, 38.839754 ], [ -77.035473, 38.839762 ], [ -77.035425, 38.839783 ], [ -77.035371, 38.839800 ], [ -77.035296, 38.839837 ], [ -77.035275, 38.839850 ], [ -77.035275, 38.821922 ], [ -77.040122, 38.821922 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2342, "y": 3134 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "980000", "GEOID": "11001980000", "NAME": "9800", "NAMELSAD": "Census Tract 9800", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 6514228, "AWATER": 4996393, "INTPTLAT": "+38.8809933", "INTPTLON": "-077.0363219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.859611 ], [ -77.035291, 38.859636 ], [ -77.035307, 38.859652 ], [ -77.035317, 38.859669 ], [ -77.035328, 38.859686 ], [ -77.035355, 38.859715 ], [ -77.035371, 38.859732 ], [ -77.035382, 38.859748 ], [ -77.035409, 38.859773 ], [ -77.035435, 38.859794 ], [ -77.035473, 38.859815 ], [ -77.035511, 38.859836 ], [ -77.035543, 38.859853 ], [ -77.035580, 38.859874 ], [ -77.035612, 38.859895 ], [ -77.035639, 38.859915 ], [ -77.035671, 38.859936 ], [ -77.035688, 38.859953 ], [ -77.035709, 38.859966 ], [ -77.035725, 38.859978 ], [ -77.035741, 38.859995 ], [ -77.035757, 38.860007 ], [ -77.035789, 38.860032 ], [ -77.035806, 38.860045 ], [ -77.035832, 38.860074 ], [ -77.035865, 38.860099 ], [ -77.035891, 38.860129 ], [ -77.035908, 38.860141 ], [ -77.035924, 38.860158 ], [ -77.035940, 38.860174 ], [ -77.035961, 38.860195 ], [ -77.035983, 38.860216 ], [ -77.036009, 38.860237 ], [ -77.036031, 38.860262 ], [ -77.036058, 38.860287 ], [ -77.036085, 38.860308 ], [ -77.036111, 38.860329 ], [ -77.036144, 38.860354 ], [ -77.036170, 38.860379 ], [ -77.036203, 38.860396 ], [ -77.036229, 38.860421 ], [ -77.036256, 38.860442 ], [ -77.036288, 38.860467 ], [ -77.036315, 38.860488 ], [ -77.036337, 38.860500 ], [ -77.036363, 38.860525 ], [ -77.036396, 38.860546 ], [ -77.036428, 38.860571 ], [ -77.036460, 38.860592 ], [ -77.036492, 38.860613 ], [ -77.036524, 38.860638 ], [ -77.036551, 38.860659 ], [ -77.036583, 38.860684 ], [ -77.036616, 38.860705 ], [ -77.036642, 38.860726 ], [ -77.036659, 38.860743 ], [ -77.036685, 38.860768 ], [ -77.036718, 38.860793 ], [ -77.036744, 38.860818 ], [ -77.036771, 38.860847 ], [ -77.036793, 38.860876 ], [ -77.036814, 38.860905 ], [ -77.036825, 38.860935 ], [ -77.036836, 38.860960 ], [ -77.036841, 38.860985 ], [ -77.036841, 38.861010 ], [ -77.036825, 38.861027 ], [ -77.036803, 38.861039 ], [ -77.036782, 38.861052 ], [ -77.036777, 38.861073 ], [ -77.036782, 38.861098 ], [ -77.036803, 38.861110 ], [ -77.036830, 38.861123 ], [ -77.036862, 38.861135 ], [ -77.036895, 38.861144 ], [ -77.036932, 38.861148 ], [ -77.036970, 38.861156 ], [ -77.037007, 38.861156 ], [ -77.037055, 38.861160 ], [ -77.037093, 38.861160 ], [ -77.037136, 38.861156 ], [ -77.037179, 38.861156 ], [ -77.037216, 38.861156 ], [ -77.037254, 38.861152 ], [ -77.037297, 38.861148 ], [ -77.037334, 38.861148 ], [ -77.037367, 38.861148 ], [ -77.037399, 38.861152 ], [ -77.037426, 38.861160 ], [ -77.037458, 38.861169 ], [ -77.037485, 38.861181 ], [ -77.037511, 38.861202 ], [ -77.037538, 38.861223 ], [ -77.037560, 38.861240 ], [ -77.037581, 38.861265 ], [ -77.037603, 38.861294 ], [ -77.037619, 38.861319 ], [ -77.037629, 38.861336 ], [ -77.037629, 38.861361 ], [ -77.037629, 38.861386 ], [ -77.037629, 38.861411 ], [ -77.037635, 38.861436 ], [ -77.037646, 38.861461 ], [ -77.037656, 38.861490 ], [ -77.037667, 38.861524 ], [ -77.037678, 38.861557 ], [ -77.037694, 38.861578 ], [ -77.037694, 38.861599 ], [ -77.037683, 38.861616 ], [ -77.037678, 38.861641 ], [ -77.037688, 38.861662 ], [ -77.037710, 38.861670 ], [ -77.037731, 38.861691 ], [ -77.037737, 38.861720 ], [ -77.037748, 38.861741 ], [ -77.037753, 38.861758 ], [ -77.037764, 38.861795 ], [ -77.037769, 38.861812 ], [ -77.037774, 38.861833 ], [ -77.037780, 38.861849 ], [ -77.037790, 38.861883 ], [ -77.037801, 38.861916 ], [ -77.037807, 38.861950 ], [ -77.037817, 38.861979 ], [ -77.037817, 38.862000 ], [ -77.037823, 38.862017 ], [ -77.037828, 38.862050 ], [ -77.037839, 38.862083 ], [ -77.037844, 38.862117 ], [ -77.037849, 38.862146 ], [ -77.037855, 38.862167 ], [ -77.037860, 38.862184 ], [ -77.037866, 38.862217 ], [ -77.037866, 38.862250 ], [ -77.037871, 38.862271 ], [ -77.037871, 38.862288 ], [ -77.037876, 38.862309 ], [ -77.037882, 38.862342 ], [ -77.037882, 38.862359 ], [ -77.037887, 38.862393 ], [ -77.037892, 38.862426 ], [ -77.037892, 38.862447 ], [ -77.037898, 38.862464 ], [ -77.037898, 38.862497 ], [ -77.037903, 38.862514 ], [ -77.037903, 38.862535 ], [ -77.037914, 38.862568 ], [ -77.037919, 38.862601 ], [ -77.037925, 38.862639 ], [ -77.037930, 38.862668 ], [ -77.037941, 38.862702 ], [ -77.037951, 38.862735 ], [ -77.037957, 38.862764 ], [ -77.037962, 38.862798 ], [ -77.037962, 38.862827 ], [ -77.037962, 38.862856 ], [ -77.037967, 38.862890 ], [ -77.037973, 38.862919 ], [ -77.037978, 38.862948 ], [ -77.037989, 38.862981 ], [ -77.037994, 38.863007 ], [ -77.037994, 38.863036 ], [ -77.038000, 38.863069 ], [ -77.038000, 38.863098 ], [ -77.037994, 38.863128 ], [ -77.037994, 38.863161 ], [ -77.038000, 38.863186 ], [ -77.038005, 38.863215 ], [ -77.038016, 38.863240 ], [ -77.038037, 38.863257 ], [ -77.038059, 38.863274 ], [ -77.038080, 38.863295 ], [ -77.038107, 38.863303 ], [ -77.038128, 38.863311 ], [ -77.038144, 38.863328 ], [ -77.038161, 38.863341 ], [ -77.038182, 38.863353 ], [ -77.038203, 38.863362 ], [ -77.038230, 38.863370 ], [ -77.038268, 38.863374 ], [ -77.038305, 38.863374 ], [ -77.038338, 38.863374 ], [ -77.038375, 38.863370 ], [ -77.038418, 38.863370 ], [ -77.038456, 38.863366 ], [ -77.038488, 38.863357 ], [ -77.038515, 38.863353 ], [ -77.038552, 38.863349 ], [ -77.038579, 38.863349 ], [ -77.038611, 38.863353 ], [ -77.038638, 38.863357 ], [ -77.038670, 38.863353 ], [ -77.038697, 38.863349 ], [ -77.038735, 38.863345 ], [ -77.038761, 38.863341 ], [ -77.038799, 38.863337 ], [ -77.038842, 38.863337 ], [ -77.038869, 38.863337 ], [ -77.038912, 38.863337 ], [ -77.038949, 38.863337 ], [ -77.038981, 38.863337 ], [ -77.039024, 38.863332 ], [ -77.039073, 38.863332 ], [ -77.039105, 38.863332 ], [ -77.039137, 38.863328 ], [ -77.039164, 38.863328 ], [ -77.039191, 38.863328 ], [ -77.039217, 38.863324 ], [ -77.039255, 38.863324 ], [ -77.039282, 38.863324 ], [ -77.039309, 38.863320 ], [ -77.039341, 38.863320 ], [ -77.039373, 38.863316 ], [ -77.039400, 38.863316 ], [ -77.039427, 38.863311 ], [ -77.039459, 38.863311 ], [ -77.039486, 38.863307 ], [ -77.039528, 38.863303 ], [ -77.039571, 38.863295 ], [ -77.039593, 38.863286 ], [ -77.039630, 38.863274 ], [ -77.039663, 38.863261 ], [ -77.039700, 38.863253 ], [ -77.039732, 38.863240 ], [ -77.039765, 38.863228 ], [ -77.039791, 38.863220 ], [ -77.039802, 38.863199 ], [ -77.039807, 38.863169 ], [ -77.039807, 38.863136 ], [ -77.039807, 38.863103 ], [ -77.039807, 38.863086 ], [ -77.039807, 38.863057 ], [ -77.039807, 38.863036 ], [ -77.039807, 38.862998 ], [ -77.039807, 38.862977 ], [ -77.039807, 38.862956 ], [ -77.039807, 38.862936 ], [ -77.039813, 38.862915 ], [ -77.039813, 38.862894 ], [ -77.039813, 38.862873 ], [ -77.039813, 38.862852 ], [ -77.039813, 38.862819 ], [ -77.039818, 38.862794 ], [ -77.039818, 38.862777 ], [ -77.039824, 38.862748 ], [ -77.039840, 38.862714 ], [ -77.039856, 38.862689 ], [ -77.039877, 38.862664 ], [ -77.039909, 38.862635 ], [ -77.039931, 38.862610 ], [ -77.039958, 38.862585 ], [ -77.039974, 38.862572 ], [ -77.039990, 38.862560 ], [ -77.040022, 38.862535 ], [ -77.040054, 38.862514 ], [ -77.040092, 38.862497 ], [ -77.040113, 38.862476 ], [ -77.040135, 38.862455 ], [ -77.040161, 38.862438 ], [ -77.040199, 38.862422 ], [ -77.040226, 38.862405 ], [ -77.040258, 38.862397 ], [ -77.040285, 38.862388 ], [ -77.040306, 38.862380 ], [ -77.040333, 38.862376 ], [ -77.040365, 38.862376 ], [ -77.040398, 38.862384 ], [ -77.040440, 38.862401 ], [ -77.040473, 38.862422 ], [ -77.040494, 38.862430 ], [ -77.040537, 38.862447 ], [ -77.040558, 38.862459 ], [ -77.040580, 38.862468 ], [ -77.040601, 38.862476 ], [ -77.040623, 38.862484 ], [ -77.040644, 38.862497 ], [ -77.040660, 38.862505 ], [ -77.040682, 38.862518 ], [ -77.040719, 38.862539 ], [ -77.040741, 38.862547 ], [ -77.040762, 38.862560 ], [ -77.040784, 38.862572 ], [ -77.040805, 38.862585 ], [ -77.040837, 38.862606 ], [ -77.040875, 38.862626 ], [ -77.040907, 38.862647 ], [ -77.040923, 38.862664 ], [ -77.040950, 38.862689 ], [ -77.040972, 38.862710 ], [ -77.041004, 38.862731 ], [ -77.041031, 38.862752 ], [ -77.041057, 38.862773 ], [ -77.041073, 38.862789 ], [ -77.041106, 38.862810 ], [ -77.041132, 38.862831 ], [ -77.041159, 38.862844 ], [ -77.041191, 38.862852 ], [ -77.041218, 38.862860 ], [ -77.041240, 38.862873 ], [ -77.041261, 38.862890 ], [ -77.041277, 38.862906 ], [ -77.041299, 38.862931 ], [ -77.041320, 38.862952 ], [ -77.041336, 38.862965 ], [ -77.041422, 38.863027 ], [ -77.041449, 38.863052 ], [ -77.041465, 38.863065 ], [ -77.041487, 38.863078 ], [ -77.041503, 38.863090 ], [ -77.041519, 38.863107 ], [ -77.041535, 38.863119 ], [ -77.041562, 38.863144 ], [ -77.041594, 38.863165 ], [ -77.041626, 38.863186 ], [ -77.041664, 38.863207 ], [ -77.041680, 38.863220 ], [ -77.041723, 38.863236 ], [ -77.041765, 38.863249 ], [ -77.041798, 38.863266 ], [ -77.041835, 38.863282 ], [ -77.041878, 38.863291 ], [ -77.041916, 38.863303 ], [ -77.041959, 38.863311 ], [ -77.041991, 38.863324 ], [ -77.042028, 38.863341 ], [ -77.042060, 38.863357 ], [ -77.042093, 38.863370 ], [ -77.042130, 38.863378 ], [ -77.042157, 38.863395 ], [ -77.042189, 38.863408 ], [ -77.042227, 38.863416 ], [ -77.042264, 38.863428 ], [ -77.042302, 38.863441 ], [ -77.042345, 38.863445 ], [ -77.042388, 38.863453 ], [ -77.042425, 38.863458 ], [ -77.042463, 38.863462 ], [ -77.042495, 38.863458 ], [ -77.042516, 38.863445 ], [ -77.042538, 38.863433 ], [ -77.042559, 38.863420 ], [ -77.042575, 38.863399 ], [ -77.042586, 38.863378 ], [ -77.042592, 38.863357 ], [ -77.042602, 38.863341 ], [ -77.042656, 38.863307 ], [ -77.042758, 38.863374 ], [ -77.042731, 38.863424 ], [ -77.042715, 38.863437 ], [ -77.042699, 38.863466 ], [ -77.042672, 38.863487 ], [ -77.042645, 38.863504 ], [ -77.042629, 38.863524 ], [ -77.042629, 38.863545 ], [ -77.042645, 38.863562 ], [ -77.042447, 38.863946 ], [ -77.042527, 38.863700 ], [ -77.042500, 38.863683 ], [ -77.042474, 38.863683 ], [ -77.042431, 38.863687 ], [ -77.042393, 38.863687 ], [ -77.042361, 38.863700 ], [ -77.042334, 38.863712 ], [ -77.042302, 38.863721 ], [ -77.042270, 38.863725 ], [ -77.042238, 38.863729 ], [ -77.042216, 38.863742 ], [ -77.042179, 38.863754 ], [ -77.042130, 38.863763 ], [ -77.042109, 38.863758 ], [ -77.042066, 38.863754 ], [ -77.042028, 38.863746 ], [ -77.041991, 38.863738 ], [ -77.041959, 38.863725 ], [ -77.041932, 38.863712 ], [ -77.041894, 38.863700 ], [ -77.041862, 38.863700 ], [ -77.041824, 38.863687 ], [ -77.041798, 38.863683 ], [ -77.041771, 38.863679 ], [ -77.041744, 38.863675 ], [ -77.041717, 38.863671 ], [ -77.041690, 38.863671 ], [ -77.041664, 38.863666 ], [ -77.041626, 38.863671 ], [ -77.041583, 38.863675 ], [ -77.041546, 38.863679 ], [ -77.041503, 38.863675 ], [ -77.041460, 38.863675 ], [ -77.041417, 38.863679 ], [ -77.041379, 38.863687 ], [ -77.041347, 38.863687 ], [ -77.041315, 38.863683 ], [ -77.041293, 38.863692 ], [ -77.041283, 38.863708 ], [ -77.041224, 38.863738 ], [ -77.041191, 38.863733 ], [ -77.041159, 38.863738 ], [ -77.041132, 38.863733 ], [ -77.041095, 38.863733 ], [ -77.041063, 38.863738 ], [ -77.041031, 38.863738 ], [ -77.040993, 38.863738 ], [ -77.040972, 38.863675 ], [ -77.040929, 38.863650 ], [ -77.040891, 38.863654 ], [ -77.040859, 38.863662 ], [ -77.040827, 38.863662 ], [ -77.040784, 38.863658 ], [ -77.040757, 38.863662 ], [ -77.040730, 38.863666 ], [ -77.040703, 38.863671 ], [ -77.040671, 38.863679 ], [ -77.040644, 38.863679 ], [ -77.040612, 38.863683 ], [ -77.040585, 38.863687 ], [ -77.040558, 38.863687 ], [ -77.040532, 38.863692 ], [ -77.040499, 38.863692 ], [ -77.040473, 38.863692 ], [ -77.040446, 38.863696 ], [ -77.040414, 38.863696 ], [ -77.040381, 38.863700 ], [ -77.040355, 38.863704 ], [ -77.040328, 38.863708 ], [ -77.040231, 38.863725 ], [ -77.040210, 38.863733 ], [ -77.040172, 38.863750 ], [ -77.040135, 38.863763 ], [ -77.040108, 38.863767 ], [ -77.040081, 38.863771 ], [ -77.040060, 38.863775 ], [ -77.040033, 38.863779 ], [ -77.039968, 38.863792 ], [ -77.039925, 38.863800 ], [ -77.039888, 38.863809 ], [ -77.039850, 38.863821 ], [ -77.039807, 38.863829 ], [ -77.039770, 38.863842 ], [ -77.039738, 38.863850 ], [ -77.039684, 38.863867 ], [ -77.039641, 38.863871 ], [ -77.039614, 38.863871 ], [ -77.039571, 38.863871 ], [ -77.039545, 38.863875 ], [ -77.039502, 38.863884 ], [ -77.039464, 38.863892 ], [ -77.039416, 38.863888 ], [ -77.039389, 38.863888 ], [ -77.039368, 38.863888 ], [ -77.039341, 38.863892 ], [ -77.039319, 38.863892 ], [ -77.039292, 38.863896 ], [ -77.039266, 38.863896 ], [ -77.039244, 38.863900 ], [ -77.039217, 38.863900 ], [ -77.039191, 38.863905 ], [ -77.039158, 38.863905 ], [ -77.039137, 38.863909 ], [ -77.039110, 38.863909 ], [ -77.039083, 38.863913 ], [ -77.039062, 38.863913 ], [ -77.039035, 38.863913 ], [ -77.038965, 38.863917 ], [ -77.038922, 38.863917 ], [ -77.038879, 38.863925 ], [ -77.038836, 38.863934 ], [ -77.038815, 38.863938 ], [ -77.038788, 38.863942 ], [ -77.038767, 38.863942 ], [ -77.038745, 38.863946 ], [ -77.038718, 38.863951 ], [ -77.038697, 38.863959 ], [ -77.038670, 38.863963 ], [ -77.038649, 38.863971 ], [ -77.038611, 38.863984 ], [ -77.038579, 38.864001 ], [ -77.038536, 38.864001 ], [ -77.038493, 38.863992 ], [ -77.038450, 38.863996 ], [ -77.038407, 38.864009 ], [ -77.038364, 38.864013 ], [ -77.038316, 38.864013 ], [ -77.038273, 38.864022 ], [ -77.038246, 38.864030 ], [ -77.038209, 38.864047 ], [ -77.038187, 38.864059 ], [ -77.038166, 38.864067 ], [ -77.038128, 38.864088 ], [ -77.038107, 38.864101 ], [ -77.038091, 38.864113 ], [ -77.038069, 38.864138 ], [ -77.038037, 38.864164 ], [ -77.038021, 38.864176 ], [ -77.038005, 38.864193 ], [ -77.037989, 38.864205 ], [ -77.037957, 38.864235 ], [ -77.037946, 38.864251 ], [ -77.037930, 38.864268 ], [ -77.037919, 38.864285 ], [ -77.037914, 38.864301 ], [ -77.037903, 38.864322 ], [ -77.037892, 38.864339 ], [ -77.037887, 38.864356 ], [ -77.037882, 38.864377 ], [ -77.037876, 38.864393 ], [ -77.037871, 38.864414 ], [ -77.037855, 38.864448 ], [ -77.037844, 38.864481 ], [ -77.037828, 38.864510 ], [ -77.037817, 38.864544 ], [ -77.037807, 38.864560 ], [ -77.037801, 38.864577 ], [ -77.037790, 38.864598 ], [ -77.037785, 38.864615 ], [ -77.037774, 38.864644 ], [ -77.037758, 38.864686 ], [ -77.037753, 38.864719 ], [ -77.037742, 38.864748 ], [ -77.037737, 38.864782 ], [ -77.037731, 38.864828 ], [ -77.037731, 38.864849 ], [ -77.037731, 38.864874 ], [ -77.037731, 38.864895 ], [ -77.037731, 38.864920 ], [ -77.037737, 38.864945 ], [ -77.037737, 38.864966 ], [ -77.037737, 38.865024 ], [ -77.037731, 38.865045 ], [ -77.037731, 38.865066 ], [ -77.037731, 38.865087 ], [ -77.037731, 38.865108 ], [ -77.037731, 38.865145 ], [ -77.037737, 38.865183 ], [ -77.037742, 38.865220 ], [ -77.037748, 38.865258 ], [ -77.037748, 38.865295 ], [ -77.037753, 38.865333 ], [ -77.037758, 38.865366 ], [ -77.037764, 38.865396 ], [ -77.037769, 38.865425 ], [ -77.037774, 38.865450 ], [ -77.037774, 38.865475 ], [ -77.037780, 38.865504 ], [ -77.037780, 38.865538 ], [ -77.037780, 38.865567 ], [ -77.037785, 38.865596 ], [ -77.037796, 38.865651 ], [ -77.037807, 38.865676 ], [ -77.037828, 38.865709 ], [ -77.037833, 38.865738 ], [ -77.037833, 38.865767 ], [ -77.037833, 38.865797 ], [ -77.037833, 38.865830 ], [ -77.037839, 38.865859 ], [ -77.037844, 38.865893 ], [ -77.037849, 38.865909 ], [ -77.037849, 38.865930 ], [ -77.037855, 38.865947 ], [ -77.037860, 38.865968 ], [ -77.037866, 38.865989 ], [ -77.037871, 38.866031 ], [ -77.037871, 38.866056 ], [ -77.037876, 38.866081 ], [ -77.037876, 38.866110 ], [ -77.037876, 38.866135 ], [ -77.037882, 38.866177 ], [ -77.037887, 38.866214 ], [ -77.037892, 38.866252 ], [ -77.037903, 38.866290 ], [ -77.037914, 38.866327 ], [ -77.037925, 38.866365 ], [ -77.037930, 38.866398 ], [ -77.037941, 38.866448 ], [ -77.037951, 38.866482 ], [ -77.037962, 38.866515 ], [ -77.037973, 38.866544 ], [ -77.037984, 38.866578 ], [ -77.037989, 38.866611 ], [ -77.037994, 38.866665 ], [ -77.038005, 38.866695 ], [ -77.038016, 38.866720 ], [ -77.038026, 38.866749 ], [ -77.038037, 38.866774 ], [ -77.038048, 38.866803 ], [ -77.038064, 38.866841 ], [ -77.038080, 38.866874 ], [ -77.038096, 38.866908 ], [ -77.038112, 38.866941 ], [ -77.038123, 38.866975 ], [ -77.038134, 38.867008 ], [ -77.038139, 38.867041 ], [ -77.038144, 38.867066 ], [ -77.038150, 38.867092 ], [ -77.038161, 38.867117 ], [ -77.038171, 38.867137 ], [ -77.038182, 38.867163 ], [ -77.038198, 38.867200 ], [ -77.038214, 38.867221 ], [ -77.038225, 38.867246 ], [ -77.038236, 38.867271 ], [ -77.038246, 38.867296 ], [ -77.038252, 38.867321 ], [ -77.038257, 38.867350 ], [ -77.038262, 38.867376 ], [ -77.038273, 38.867396 ], [ -77.038279, 38.867417 ], [ -77.038289, 38.867442 ], [ -77.038332, 38.867526 ], [ -77.038348, 38.867551 ], [ -77.038359, 38.867576 ], [ -77.038381, 38.867626 ], [ -77.038407, 38.867676 ], [ -77.038429, 38.867710 ], [ -77.038450, 38.867743 ], [ -77.038472, 38.867777 ], [ -77.038493, 38.867814 ], [ -77.038509, 38.867848 ], [ -77.038525, 38.867898 ], [ -77.038541, 38.867931 ], [ -77.038558, 38.867960 ], [ -77.038574, 38.867994 ], [ -77.038590, 38.868027 ], [ -77.038595, 38.868061 ], [ -77.038600, 38.868098 ], [ -77.038611, 38.868123 ], [ -77.038627, 38.868148 ], [ -77.038638, 38.868173 ], [ -77.038649, 38.868198 ], [ -77.038654, 38.868223 ], [ -77.038665, 38.868261 ], [ -77.038681, 38.868286 ], [ -77.038697, 38.868311 ], [ -77.038718, 38.868336 ], [ -77.038729, 38.868365 ], [ -77.038740, 38.868390 ], [ -77.038745, 38.868428 ], [ -77.038761, 38.868461 ], [ -77.038783, 38.868491 ], [ -77.038804, 38.868520 ], [ -77.038826, 38.868549 ], [ -77.038847, 38.868583 ], [ -77.038869, 38.868620 ], [ -77.038895, 38.868658 ], [ -77.038917, 38.868695 ], [ -77.038938, 38.868737 ], [ -77.038960, 38.868775 ], [ -77.038981, 38.868816 ], [ -77.039003, 38.868867 ], [ -77.039024, 38.868904 ], [ -77.039040, 38.868942 ], [ -77.039056, 38.868975 ], [ -77.039078, 38.869013 ], [ -77.039099, 38.869046 ], [ -77.039110, 38.869071 ], [ -77.039126, 38.869096 ], [ -77.039142, 38.869121 ], [ -77.039158, 38.869146 ], [ -77.039169, 38.869172 ], [ -77.039180, 38.869197 ], [ -77.039191, 38.869230 ], [ -77.039201, 38.869255 ], [ -77.039212, 38.869276 ], [ -77.039223, 38.869297 ], [ -77.039239, 38.869318 ], [ -77.039250, 38.869339 ], [ -77.039309, 38.869464 ], [ -77.039325, 38.869489 ], [ -77.039373, 38.869572 ], [ -77.039389, 38.869593 ], [ -77.039405, 38.869618 ], [ -77.039421, 38.869639 ], [ -77.039432, 38.869660 ], [ -77.039437, 38.869681 ], [ -77.039459, 38.869731 ], [ -77.039480, 38.869752 ], [ -77.039491, 38.869777 ], [ -77.039507, 38.869798 ], [ -77.039512, 38.869815 ], [ -77.039523, 38.869836 ], [ -77.039534, 38.869856 ], [ -77.039545, 38.869877 ], [ -77.039561, 38.869898 ], [ -77.039571, 38.869919 ], [ -77.039582, 38.869936 ], [ -77.039598, 38.869953 ], [ -77.039614, 38.869973 ], [ -77.039630, 38.869994 ], [ -77.039647, 38.870015 ], [ -77.039663, 38.870036 ], [ -77.039673, 38.870053 ], [ -77.039689, 38.870074 ], [ -77.039700, 38.870090 ], [ -77.039711, 38.870107 ], [ -77.039727, 38.870128 ], [ -77.039743, 38.870149 ], [ -77.039754, 38.870170 ], [ -77.039770, 38.870191 ], [ -77.039834, 38.870316 ], [ -77.039850, 38.870333 ], [ -77.039861, 38.870358 ], [ -77.039877, 38.870383 ], [ -77.039888, 38.870412 ], [ -77.039899, 38.870437 ], [ -77.039915, 38.870462 ], [ -77.039931, 38.870487 ], [ -77.039947, 38.870516 ], [ -77.039968, 38.870541 ], [ -77.039990, 38.870562 ], [ -77.040006, 38.870579 ], [ -77.040027, 38.870604 ], [ -77.040049, 38.870629 ], [ -77.040065, 38.870654 ], [ -77.040076, 38.870675 ], [ -77.040092, 38.870700 ], [ -77.040102, 38.870721 ], [ -77.040119, 38.870746 ], [ -77.040129, 38.870771 ], [ -77.040151, 38.870796 ], [ -77.040167, 38.870825 ], [ -77.040183, 38.870850 ], [ -77.040204, 38.870880 ], [ -77.040226, 38.870909 ], [ -77.040247, 38.870930 ], [ -77.040269, 38.870947 ], [ -77.040290, 38.870967 ], [ -77.040317, 38.870984 ], [ -77.040339, 38.871005 ], [ -77.040360, 38.871030 ], [ -77.040376, 38.871055 ], [ -77.040392, 38.871080 ], [ -77.040408, 38.871105 ], [ -77.040424, 38.871135 ], [ -77.040440, 38.871164 ], [ -77.040462, 38.871189 ], [ -77.040483, 38.871214 ], [ -77.040505, 38.871239 ], [ -77.040526, 38.871264 ], [ -77.040558, 38.871285 ], [ -77.040585, 38.871306 ], [ -77.040601, 38.871331 ], [ -77.040623, 38.871360 ], [ -77.040639, 38.871385 ], [ -77.040660, 38.871414 ], [ -77.040682, 38.871439 ], [ -77.040703, 38.871464 ], [ -77.040725, 38.871485 ], [ -77.040746, 38.871510 ], [ -77.040773, 38.871535 ], [ -77.040800, 38.871556 ], [ -77.040832, 38.871577 ], [ -77.040864, 38.871598 ], [ -77.040891, 38.871623 ], [ -77.040913, 38.871644 ], [ -77.040929, 38.871669 ], [ -77.040955, 38.871690 ], [ -77.040977, 38.871707 ], [ -77.041009, 38.871744 ], [ -77.041036, 38.871778 ], [ -77.041057, 38.871807 ], [ -77.041100, 38.871853 ], [ -77.041175, 38.871945 ], [ -77.041250, 38.872032 ], [ -77.041288, 38.872074 ], [ -77.041326, 38.872120 ], [ -77.041401, 38.872208 ], [ -77.041427, 38.872237 ], [ -77.041438, 38.872250 ], [ -77.041470, 38.872287 ], [ -77.041524, 38.872346 ], [ -77.041562, 38.872392 ], [ -77.041599, 38.872433 ], [ -77.041631, 38.872475 ], [ -77.041669, 38.872534 ], [ -77.041706, 38.872571 ], [ -77.041760, 38.872609 ], [ -77.041814, 38.872642 ], [ -77.041841, 38.872659 ], [ -77.041873, 38.872680 ], [ -77.041926, 38.872713 ], [ -77.041980, 38.872751 ], [ -77.042034, 38.872784 ], [ -77.042093, 38.872818 ], [ -77.042146, 38.872851 ], [ -77.042162, 38.872872 ], [ -77.042184, 38.872893 ], [ -77.042200, 38.872939 ], [ -77.042211, 38.872955 ], [ -77.042280, 38.873051 ], [ -77.042334, 38.873118 ], [ -77.042388, 38.873173 ], [ -77.042484, 38.873252 ], [ -77.042570, 38.873327 ], [ -77.042651, 38.873406 ], [ -77.042688, 38.873444 ], [ -77.042726, 38.873482 ], [ -77.042758, 38.873515 ], [ -77.042795, 38.873553 ], [ -77.042833, 38.873594 ], [ -77.042860, 38.873632 ], [ -77.042913, 38.873682 ], [ -77.042962, 38.873741 ], [ -77.043010, 38.873795 ], [ -77.043064, 38.873845 ], [ -77.043112, 38.873895 ], [ -77.043166, 38.873945 ], [ -77.043273, 38.874054 ], [ -77.043332, 38.874108 ], [ -77.043391, 38.874158 ], [ -77.043498, 38.874238 ], [ -77.043793, 38.874271 ], [ -77.043863, 38.874275 ], [ -77.043933, 38.874321 ], [ -77.043986, 38.874363 ], [ -77.044045, 38.874405 ], [ -77.044104, 38.874451 ], [ -77.044131, 38.874471 ], [ -77.044163, 38.874497 ], [ -77.044222, 38.874538 ], [ -77.044281, 38.874584 ], [ -77.044346, 38.874626 ], [ -77.044399, 38.874664 ], [ -77.044458, 38.874705 ], [ -77.044512, 38.874743 ], [ -77.044566, 38.874785 ], [ -77.044625, 38.874822 ], [ -77.044684, 38.874860 ], [ -77.044721, 38.874889 ], [ -77.044759, 38.874914 ], [ -77.044796, 38.874939 ], [ -77.044834, 38.874964 ], [ -77.044871, 38.874994 ], [ -77.044909, 38.875019 ], [ -77.044957, 38.875060 ], [ -77.045006, 38.875098 ], [ -77.045054, 38.875135 ], [ -77.045102, 38.875177 ], [ -77.045150, 38.875215 ], [ -77.045199, 38.875252 ], [ -77.045231, 38.875277 ], [ -77.045268, 38.875303 ], [ -77.045301, 38.875323 ], [ -77.045338, 38.875348 ], [ -77.045370, 38.875374 ], [ -77.045403, 38.875399 ], [ -77.045419, 38.875415 ], [ -77.045435, 38.875432 ], [ -77.045472, 38.875453 ], [ -77.045510, 38.875474 ], [ -77.045547, 38.875495 ], [ -77.045574, 38.875503 ], [ -77.045596, 38.875516 ], [ -77.045622, 38.875524 ], [ -77.045639, 38.875536 ], [ -77.045660, 38.875549 ], [ -77.045687, 38.875570 ], [ -77.045730, 38.875582 ], [ -77.045757, 38.875587 ], [ -77.045778, 38.875591 ], [ -77.045805, 38.875595 ], [ -77.045832, 38.875607 ], [ -77.045864, 38.875612 ], [ -77.045896, 38.875616 ], [ -77.045923, 38.875616 ], [ -77.045966, 38.875616 ], [ -77.046003, 38.875616 ], [ -77.046041, 38.875616 ], [ -77.046078, 38.875616 ], [ -77.046121, 38.875612 ], [ -77.046159, 38.875603 ], [ -77.046196, 38.875599 ], [ -77.046234, 38.875595 ], [ -77.046272, 38.875587 ], [ -77.046298, 38.875578 ], [ -77.046325, 38.875566 ], [ -77.046352, 38.875557 ], [ -77.046379, 38.875549 ], [ -77.046400, 38.875541 ], [ -77.046432, 38.875528 ], [ -77.046454, 38.875516 ], [ -77.046475, 38.875503 ], [ -77.046502, 38.875490 ], [ -77.046534, 38.875474 ], [ -77.046561, 38.875461 ], [ -77.046593, 38.875449 ], [ -77.046620, 38.875432 ], [ -77.046658, 38.875415 ], [ -77.046695, 38.875399 ], [ -77.046738, 38.875378 ], [ -77.046770, 38.875365 ], [ -77.046797, 38.875353 ], [ -77.046824, 38.875340 ], [ -77.046915, 38.875286 ], [ -77.046996, 38.875232 ], [ -77.047055, 38.875177 ], [ -77.047071, 38.875156 ], [ -77.047103, 38.875135 ], [ -77.047130, 38.875110 ], [ -77.047146, 38.875094 ], [ -77.047157, 38.875073 ], [ -77.047167, 38.875052 ], [ -77.047194, 38.875019 ], [ -77.047205, 38.874998 ], [ -77.047210, 38.874981 ], [ -77.047216, 38.874960 ], [ -77.047221, 38.874923 ], [ -77.047221, 38.874897 ], [ -77.047221, 38.874877 ], [ -77.047216, 38.874856 ], [ -77.047210, 38.874835 ], [ -77.047194, 38.874797 ], [ -77.047184, 38.874776 ], [ -77.047178, 38.874760 ], [ -77.047167, 38.874735 ], [ -77.047162, 38.874718 ], [ -77.047151, 38.874701 ], [ -77.047146, 38.874684 ], [ -77.047141, 38.874659 ], [ -77.047130, 38.874643 ], [ -77.047119, 38.874618 ], [ -77.047071, 38.874555 ], [ -77.047060, 38.874542 ], [ -77.047044, 38.874526 ], [ -77.047023, 38.874509 ], [ -77.046985, 38.874484 ], [ -77.046969, 38.874471 ], [ -77.046947, 38.874459 ], [ -77.046931, 38.874446 ], [ -77.046915, 38.874430 ], [ -77.046899, 38.874413 ], [ -77.046883, 38.874392 ], [ -77.046872, 38.874380 ], [ -77.046856, 38.874363 ], [ -77.046840, 38.874346 ], [ -77.046824, 38.874329 ], [ -77.046808, 38.874313 ], [ -77.046792, 38.874296 ], [ -77.046776, 38.874279 ], [ -77.046754, 38.874263 ], [ -77.046738, 38.874246 ], [ -77.046722, 38.874225 ], [ -77.046706, 38.874213 ], [ -77.046690, 38.874196 ], [ -77.046669, 38.874179 ], [ -77.046636, 38.874142 ], [ -77.046620, 38.874125 ], [ -77.046610, 38.874104 ], [ -77.046593, 38.874087 ], [ -77.046577, 38.874071 ], [ -77.046561, 38.874058 ], [ -77.046545, 38.874041 ], [ -77.046475, 38.874029 ], [ -77.046454, 38.874025 ], [ -77.046427, 38.874016 ], [ -77.046406, 38.874004 ], [ -77.046395, 38.873987 ], [ -77.046390, 38.873966 ], [ -77.046390, 38.873945 ], [ -77.046390, 38.873924 ], [ -77.046384, 38.873903 ], [ -77.046384, 38.873878 ], [ -77.046384, 38.873858 ], [ -77.046379, 38.873820 ], [ -77.046379, 38.873795 ], [ -77.046379, 38.873732 ], [ -77.046379, 38.873711 ], [ -77.046384, 38.873695 ], [ -77.046384, 38.873674 ], [ -77.046384, 38.873653 ], [ -77.046390, 38.873632 ], [ -77.046395, 38.873615 ], [ -77.046406, 38.873594 ], [ -77.046416, 38.873569 ], [ -77.046422, 38.873548 ], [ -77.046427, 38.873532 ], [ -77.046438, 38.873511 ], [ -77.046443, 38.873490 ], [ -77.046454, 38.873469 ], [ -77.046481, 38.873411 ], [ -77.046492, 38.873390 ], [ -77.046502, 38.873369 ], [ -77.046508, 38.873348 ], [ -77.046513, 38.873331 ], [ -77.046518, 38.873306 ], [ -77.046524, 38.873290 ], [ -77.046529, 38.873269 ], [ -77.046534, 38.873252 ], [ -77.046534, 38.873231 ], [ -77.046540, 38.873214 ], [ -77.046545, 38.873193 ], [ -77.046545, 38.873177 ], [ -77.046545, 38.873156 ], [ -77.046540, 38.873089 ], [ -77.046540, 38.873068 ], [ -77.046534, 38.873047 ], [ -77.046534, 38.873026 ], [ -77.046529, 38.873010 ], [ -77.046524, 38.872985 ], [ -77.046513, 38.872964 ], [ -77.046508, 38.872947 ], [ -77.046497, 38.872926 ], [ -77.046492, 38.872910 ], [ -77.046481, 38.872893 ], [ -77.046465, 38.872872 ], [ -77.046454, 38.872851 ], [ -77.046443, 38.872834 ], [ -77.046432, 38.872818 ], [ -77.046422, 38.872797 ], [ -77.046416, 38.872776 ], [ -77.046406, 38.872755 ], [ -77.046400, 38.872734 ], [ -77.046390, 38.872717 ], [ -77.046368, 38.872680 ], [ -77.046357, 38.872663 ], [ -77.046341, 38.872646 ], [ -77.046331, 38.872626 ], [ -77.046320, 38.872605 ], [ -77.046309, 38.872584 ], [ -77.046298, 38.872563 ], [ -77.046282, 38.872546 ], [ -77.046272, 38.872525 ], [ -77.046261, 38.872509 ], [ -77.046255, 38.872492 ], [ -77.046245, 38.872475 ], [ -77.046239, 38.872454 ], [ -77.046245, 38.872358 ], [ -77.046261, 38.872342 ], [ -77.046272, 38.872321 ], [ -77.046282, 38.872304 ], [ -77.046298, 38.872287 ], [ -77.046309, 38.872271 ], [ -77.046325, 38.872254 ], [ -77.046341, 38.872237 ], [ -77.046357, 38.872216 ], [ -77.046368, 38.872200 ], [ -77.046384, 38.872183 ], [ -77.046400, 38.872166 ], [ -77.046416, 38.872154 ], [ -77.046432, 38.872137 ], [ -77.046454, 38.872120 ], [ -77.046475, 38.872103 ], [ -77.046486, 38.872087 ], [ -77.046497, 38.872074 ], [ -77.046513, 38.872058 ], [ -77.046534, 38.872041 ], [ -77.046551, 38.872028 ], [ -77.046572, 38.872012 ], [ -77.046588, 38.871999 ], [ -77.046615, 38.871987 ], [ -77.046652, 38.871953 ], [ -77.046711, 38.871911 ], [ -77.046749, 38.871886 ], [ -77.046803, 38.871853 ], [ -77.046824, 38.871845 ], [ -77.046851, 38.871836 ], [ -77.046872, 38.871832 ], [ -77.046899, 38.871824 ], [ -77.046921, 38.871819 ], [ -77.046947, 38.871811 ], [ -77.046969, 38.871807 ], [ -77.046996, 38.871799 ], [ -77.047023, 38.871794 ], [ -77.047049, 38.871790 ], [ -77.047071, 38.871790 ], [ -77.047103, 38.871786 ], [ -77.047130, 38.871782 ], [ -77.047151, 38.871774 ], [ -77.047178, 38.871769 ], [ -77.047210, 38.871765 ], [ -77.047237, 38.871757 ], [ -77.047269, 38.871753 ], [ -77.047355, 38.871736 ], [ -77.047387, 38.871732 ], [ -77.047414, 38.871732 ], [ -77.047446, 38.871728 ], [ -77.047479, 38.871719 ], [ -77.047505, 38.871715 ], [ -77.047532, 38.871707 ], [ -77.047559, 38.871698 ], [ -77.047591, 38.871694 ], [ -77.047618, 38.871686 ], [ -77.047645, 38.871682 ], [ -77.047677, 38.871673 ], [ -77.047709, 38.871669 ], [ -77.047768, 38.871665 ], [ -77.047800, 38.871661 ], [ -77.047827, 38.871657 ], [ -77.047854, 38.871652 ], [ -77.047881, 38.871644 ], [ -77.047918, 38.871640 ], [ -77.047956, 38.871627 ], [ -77.047983, 38.871623 ], [ -77.048069, 38.871594 ], [ -77.048112, 38.871581 ], [ -77.048138, 38.871577 ], [ -77.048160, 38.871577 ], [ -77.048213, 38.871569 ], [ -77.048278, 38.871552 ], [ -77.048321, 38.871544 ], [ -77.048358, 38.871535 ], [ -77.048391, 38.871527 ], [ -77.048417, 38.871519 ], [ -77.048460, 38.871506 ], [ -77.048498, 38.871490 ], [ -77.048530, 38.871481 ], [ -77.048562, 38.871477 ], [ -77.048632, 38.871460 ], [ -77.048669, 38.871448 ], [ -77.048702, 38.871439 ], [ -77.048728, 38.871431 ], [ -77.048755, 38.871427 ], [ -77.048787, 38.871414 ], [ -77.048809, 38.871406 ], [ -77.048830, 38.871393 ], [ -77.048911, 38.871356 ], [ -77.048932, 38.871339 ], [ -77.048970, 38.871360 ], [ -77.049024, 38.871348 ], [ -77.049050, 38.871339 ], [ -77.049077, 38.871335 ], [ -77.049115, 38.871327 ], [ -77.049152, 38.871314 ], [ -77.049179, 38.871314 ], [ -77.049211, 38.871310 ], [ -77.049243, 38.871310 ], [ -77.049276, 38.871314 ], [ -77.049340, 38.871322 ], [ -77.049383, 38.871331 ], [ -77.049431, 38.871343 ], [ -77.049458, 38.871348 ], [ -77.049479, 38.871356 ], [ -77.049506, 38.871364 ], [ -77.049528, 38.871373 ], [ -77.049549, 38.871381 ], [ -77.049576, 38.871389 ], [ -77.049598, 38.871402 ], [ -77.049619, 38.871410 ], [ -77.049640, 38.871419 ], [ -77.049662, 38.871427 ], [ -77.049689, 38.871435 ], [ -77.049737, 38.871456 ], [ -77.049758, 38.871469 ], [ -77.049780, 38.871477 ], [ -77.049807, 38.871485 ], [ -77.049828, 38.871498 ], [ -77.049850, 38.871506 ], [ -77.049871, 38.871519 ], [ -77.049893, 38.871527 ], [ -77.049914, 38.871535 ], [ -77.049935, 38.871548 ], [ -77.049962, 38.871556 ], [ -77.049978, 38.871565 ], [ -77.050021, 38.871586 ], [ -77.050043, 38.871598 ], [ -77.050064, 38.871611 ], [ -77.050086, 38.871619 ], [ -77.050107, 38.871627 ], [ -77.050129, 38.871640 ], [ -77.050150, 38.871648 ], [ -77.050231, 38.871694 ], [ -77.050252, 38.871707 ], [ -77.050273, 38.871719 ], [ -77.050311, 38.871753 ], [ -77.050327, 38.871765 ], [ -77.050354, 38.871794 ], [ -77.050370, 38.871807 ], [ -77.050402, 38.871836 ], [ -77.050418, 38.871849 ], [ -77.050429, 38.871865 ], [ -77.050445, 38.871878 ], [ -77.050456, 38.871895 ], [ -77.050477, 38.871916 ], [ -77.050493, 38.871932 ], [ -77.050531, 38.871966 ], [ -77.050547, 38.871982 ], [ -77.050563, 38.871999 ], [ -77.050579, 38.872024 ], [ -77.050601, 38.872045 ], [ -77.050611, 38.872062 ], [ -77.050703, 38.872174 ], [ -77.050783, 38.872342 ], [ -77.050799, 38.872379 ], [ -77.051030, 38.872730 ], [ -77.051218, 38.873018 ], [ -77.051405, 38.873319 ], [ -77.051421, 38.873352 ], [ -77.051448, 38.873361 ], [ -77.051486, 38.873440 ], [ -77.051502, 38.873465 ], [ -77.051518, 38.873494 ], [ -77.051523, 38.873523 ], [ -77.051561, 38.873582 ], [ -77.051598, 38.873665 ], [ -77.051625, 38.873741 ], [ -77.051631, 38.873782 ], [ -77.051641, 38.873803 ], [ -77.051657, 38.873845 ], [ -77.051663, 38.873866 ], [ -77.051674, 38.873887 ], [ -77.051679, 38.873908 ], [ -77.051684, 38.873924 ], [ -77.051684, 38.873945 ], [ -77.051684, 38.873962 ], [ -77.051684, 38.873995 ], [ -77.051684, 38.874020 ], [ -77.051684, 38.874041 ], [ -77.051684, 38.874062 ], [ -77.051690, 38.874083 ], [ -77.051690, 38.874108 ], [ -77.051690, 38.874133 ], [ -77.051690, 38.874154 ], [ -77.051690, 38.874179 ], [ -77.051690, 38.874204 ], [ -77.051690, 38.874229 ], [ -77.051690, 38.874250 ], [ -77.051690, 38.874275 ], [ -77.051690, 38.874304 ], [ -77.051690, 38.874329 ], [ -77.051690, 38.874350 ], [ -77.051690, 38.874380 ], [ -77.051690, 38.874405 ], [ -77.051695, 38.874471 ], [ -77.051695, 38.874497 ], [ -77.051700, 38.874517 ], [ -77.051700, 38.874538 ], [ -77.051700, 38.874568 ], [ -77.051706, 38.874588 ], [ -77.051706, 38.874609 ], [ -77.051706, 38.874634 ], [ -77.051700, 38.874659 ], [ -77.051700, 38.874684 ], [ -77.051695, 38.874705 ], [ -77.051695, 38.874726 ], [ -77.051690, 38.874755 ], [ -77.051684, 38.874781 ], [ -77.051684, 38.874801 ], [ -77.051679, 38.874831 ], [ -77.051674, 38.874856 ], [ -77.051674, 38.874881 ], [ -77.051668, 38.874906 ], [ -77.051668, 38.874935 ], [ -77.051663, 38.874960 ], [ -77.051657, 38.874985 ], [ -77.051652, 38.875010 ], [ -77.051647, 38.875039 ], [ -77.051647, 38.875060 ], [ -77.051641, 38.875077 ], [ -77.051641, 38.875102 ], [ -77.051636, 38.875123 ], [ -77.051631, 38.875140 ], [ -77.051620, 38.875161 ], [ -77.051609, 38.875206 ], [ -77.051609, 38.875223 ], [ -77.051604, 38.875261 ], [ -77.051598, 38.875282 ], [ -77.051550, 38.875294 ], [ -77.051550, 38.875315 ], [ -77.051550, 38.875332 ], [ -77.051545, 38.875348 ], [ -77.051545, 38.875369 ], [ -77.051545, 38.875386 ], [ -77.051539, 38.875424 ], [ -77.051539, 38.875445 ], [ -77.051534, 38.875470 ], [ -77.051534, 38.875499 ], [ -77.051529, 38.875528 ], [ -77.051523, 38.875570 ], [ -77.051561, 38.875616 ], [ -77.051539, 38.875662 ], [ -77.051529, 38.875691 ], [ -77.051523, 38.875724 ], [ -77.051513, 38.875762 ], [ -77.051507, 38.875791 ], [ -77.051502, 38.875816 ], [ -77.051497, 38.875841 ], [ -77.051491, 38.875866 ], [ -77.051486, 38.875887 ], [ -77.051480, 38.875908 ], [ -77.051470, 38.875933 ], [ -77.051464, 38.875962 ], [ -77.051454, 38.875987 ], [ -77.051437, 38.876013 ], [ -77.051427, 38.876038 ], [ -77.051421, 38.876063 ], [ -77.051421, 38.876088 ], [ -77.051416, 38.876109 ], [ -77.051416, 38.876129 ], [ -77.051416, 38.876155 ], [ -77.051421, 38.876180 ], [ -77.051427, 38.876209 ], [ -77.051432, 38.876238 ], [ -77.051437, 38.876263 ], [ -77.051437, 38.876292 ], [ -77.051443, 38.876317 ], [ -77.051448, 38.876338 ], [ -77.051459, 38.876363 ], [ -77.051470, 38.876384 ], [ -77.051475, 38.876409 ], [ -77.051486, 38.876430 ], [ -77.051497, 38.876455 ], [ -77.051502, 38.876484 ], [ -77.051513, 38.876514 ], [ -77.051518, 38.876539 ], [ -77.051529, 38.876564 ], [ -77.051539, 38.876589 ], [ -77.051556, 38.876610 ], [ -77.051572, 38.876631 ], [ -77.051588, 38.876656 ], [ -77.051604, 38.876677 ], [ -77.051615, 38.876702 ], [ -77.051636, 38.876722 ], [ -77.051652, 38.876748 ], [ -77.051663, 38.876768 ], [ -77.051674, 38.876789 ], [ -77.051690, 38.876810 ], [ -77.051700, 38.876831 ], [ -77.051716, 38.876848 ], [ -77.051727, 38.876869 ], [ -77.051743, 38.876898 ], [ -77.051765, 38.876919 ], [ -77.051786, 38.876940 ], [ -77.051808, 38.876956 ], [ -77.051834, 38.876973 ], [ -77.051861, 38.876990 ], [ -77.051877, 38.877006 ], [ -77.051899, 38.877027 ], [ -77.051920, 38.877048 ], [ -77.051942, 38.877069 ], [ -77.051963, 38.877090 ], [ -77.051985, 38.877111 ], [ -77.052001, 38.877140 ], [ -77.052022, 38.877169 ], [ -77.052049, 38.877194 ], [ -77.052076, 38.877224 ], [ -77.052097, 38.877253 ], [ -77.052119, 38.877282 ], [ -77.052146, 38.877315 ], [ -77.052167, 38.877345 ], [ -77.052189, 38.877374 ], [ -77.052215, 38.877399 ], [ -77.052237, 38.877424 ], [ -77.052258, 38.877449 ], [ -77.052280, 38.877478 ], [ -77.052307, 38.877503 ], [ -77.052333, 38.877528 ], [ -77.052360, 38.877558 ], [ -77.052382, 38.877587 ], [ -77.052408, 38.877612 ], [ -77.052425, 38.877641 ], [ -77.052446, 38.877666 ], [ -77.052467, 38.877691 ], [ -77.052489, 38.877716 ], [ -77.052510, 38.877737 ], [ -77.052532, 38.877762 ], [ -77.052548, 38.877787 ], [ -77.052569, 38.877812 ], [ -77.052585, 38.877837 ], [ -77.052607, 38.877863 ], [ -77.052628, 38.877888 ], [ -77.052650, 38.877908 ], [ -77.052671, 38.877934 ], [ -77.052693, 38.877959 ], [ -77.052714, 38.877979 ], [ -77.052736, 38.878005 ], [ -77.052768, 38.878034 ], [ -77.052800, 38.878055 ], [ -77.052832, 38.878080 ], [ -77.052859, 38.878109 ], [ -77.052886, 38.878134 ], [ -77.052913, 38.878163 ], [ -77.052940, 38.878188 ], [ -77.052966, 38.878213 ], [ -77.052993, 38.878238 ], [ -77.053020, 38.878263 ], [ -77.053052, 38.878289 ], [ -77.053084, 38.878314 ], [ -77.053117, 38.878339 ], [ -77.053143, 38.878364 ], [ -77.053170, 38.878389 ], [ -77.053192, 38.878414 ], [ -77.053213, 38.878435 ], [ -77.053170, 38.878518 ], [ -77.053240, 38.878547 ], [ -77.053299, 38.878572 ], [ -77.053331, 38.878598 ], [ -77.053347, 38.878614 ], [ -77.053358, 38.878635 ], [ -77.053374, 38.878656 ], [ -77.053390, 38.878685 ], [ -77.053406, 38.878710 ], [ -77.053422, 38.878740 ], [ -77.053438, 38.878765 ], [ -77.053460, 38.878790 ], [ -77.053471, 38.878815 ], [ -77.053487, 38.878836 ], [ -77.053503, 38.878861 ], [ -77.053514, 38.878886 ], [ -77.053519, 38.878911 ], [ -77.053524, 38.878936 ], [ -77.053535, 38.878957 ], [ -77.053535, 38.878986 ], [ -77.053535, 38.879007 ], [ -77.053573, 38.879011 ], [ -77.053605, 38.878990 ], [ -77.053615, 38.878969 ], [ -77.053626, 38.878953 ], [ -77.053632, 38.878927 ], [ -77.053632, 38.878890 ], [ -77.053632, 38.878869 ], [ -77.053632, 38.878848 ], [ -77.053648, 38.878827 ], [ -77.053685, 38.878827 ], [ -77.053707, 38.878836 ], [ -77.053728, 38.878856 ], [ -77.053750, 38.878877 ], [ -77.053760, 38.878902 ], [ -77.053771, 38.878923 ], [ -77.053776, 38.878944 ], [ -77.053771, 38.878965 ], [ -77.053755, 38.878994 ], [ -77.053733, 38.879019 ], [ -77.053712, 38.879024 ], [ -77.053691, 38.879040 ], [ -77.053674, 38.879065 ], [ -77.053658, 38.879090 ], [ -77.053653, 38.879107 ], [ -77.053658, 38.879128 ], [ -77.053674, 38.879145 ], [ -77.053696, 38.879178 ], [ -77.053707, 38.879195 ], [ -77.053712, 38.879220 ], [ -77.053728, 38.879236 ], [ -77.053744, 38.879257 ], [ -77.053760, 38.879278 ], [ -77.053787, 38.879307 ], [ -77.053819, 38.879345 ], [ -77.053857, 38.879395 ], [ -77.053894, 38.879449 ], [ -77.053910, 38.879462 ], [ -77.053932, 38.879491 ], [ -77.053959, 38.879525 ], [ -77.053986, 38.879554 ], [ -77.054018, 38.879583 ], [ -77.054050, 38.879617 ], [ -77.054077, 38.879650 ], [ -77.054109, 38.879679 ], [ -77.054136, 38.879713 ], [ -77.054168, 38.879742 ], [ -77.054200, 38.879771 ], [ -77.054238, 38.879796 ], [ -77.054275, 38.879825 ], [ -77.054313, 38.879859 ], [ -77.054350, 38.879884 ], [ -77.054388, 38.879913 ], [ -77.054431, 38.879938 ], [ -77.054452, 38.879951 ], [ -77.054501, 38.879984 ], [ -77.054522, 38.880001 ], [ -77.054570, 38.880030 ], [ -77.054603, 38.880055 ], [ -77.054667, 38.880084 ], [ -77.054710, 38.880113 ], [ -77.054753, 38.880134 ], [ -77.054796, 38.880155 ], [ -77.054839, 38.880176 ], [ -77.054881, 38.880189 ], [ -77.054930, 38.880201 ], [ -77.054978, 38.880214 ], [ -77.055021, 38.880226 ], [ -77.055069, 38.880243 ], [ -77.055117, 38.880251 ], [ -77.055144, 38.880260 ], [ -77.055209, 38.880272 ], [ -77.055252, 38.880285 ], [ -77.055284, 38.880289 ], [ -77.055311, 38.880293 ], [ -77.055337, 38.880285 ], [ -77.055327, 38.880264 ], [ -77.055311, 38.880243 ], [ -77.055278, 38.880214 ], [ -77.055327, 38.880222 ], [ -77.055354, 38.880230 ], [ -77.055380, 38.880247 ], [ -77.055407, 38.880260 ], [ -77.055466, 38.880247 ], [ -77.055498, 38.880276 ], [ -77.055514, 38.880293 ], [ -77.055579, 38.880343 ], [ -77.055649, 38.880331 ], [ -77.055708, 38.880322 ], [ -77.055729, 38.880322 ], [ -77.055772, 38.880360 ], [ -77.055815, 38.880368 ], [ -77.055858, 38.880372 ], [ -77.055906, 38.880377 ], [ -77.055933, 38.880381 ], [ -77.055997, 38.880389 ], [ -77.056029, 38.880389 ], [ -77.056072, 38.880389 ], [ -77.056126, 38.880393 ], [ -77.056174, 38.880397 ], [ -77.056223, 38.880397 ], [ -77.056276, 38.880397 ], [ -77.056330, 38.880397 ], [ -77.056400, 38.880427 ], [ -77.056453, 38.880389 ], [ -77.056491, 38.880364 ], [ -77.056550, 38.880381 ], [ -77.056598, 38.880377 ], [ -77.056652, 38.880372 ], [ -77.056705, 38.880368 ], [ -77.056764, 38.880364 ], [ -77.056802, 38.880360 ], [ -77.056823, 38.880356 ], [ -77.056872, 38.880351 ], [ -77.056947, 38.880343 ], [ -77.057043, 38.880326 ], [ -77.057151, 38.880314 ], [ -77.057215, 38.880306 ], [ -77.057306, 38.880293 ], [ -77.057408, 38.880280 ], [ -77.057467, 38.880272 ], [ -77.057510, 38.880264 ], [ -77.057580, 38.880260 ], [ -77.057633, 38.880255 ], [ -77.057666, 38.880255 ], [ -77.057730, 38.880251 ], [ -77.057784, 38.880251 ], [ -77.057837, 38.880251 ], [ -77.057902, 38.880255 ], [ -77.057928, 38.880264 ], [ -77.057993, 38.880276 ], [ -77.058057, 38.880297 ], [ -77.058138, 38.880322 ], [ -77.058197, 38.880343 ], [ -77.058256, 38.880364 ], [ -77.058309, 38.880381 ], [ -77.058347, 38.880389 ], [ -77.058406, 38.880402 ], [ -77.058513, 38.880431 ], [ -77.058594, 38.880452 ], [ -77.058637, 38.880464 ], [ -77.058679, 38.880477 ], [ -77.058706, 38.880493 ], [ -77.058728, 38.880514 ], [ -77.058755, 38.880539 ], [ -77.058776, 38.880560 ], [ -77.058797, 38.880577 ], [ -77.058840, 38.880619 ], [ -77.058856, 38.880640 ], [ -77.058889, 38.880669 ], [ -77.058910, 38.880690 ], [ -77.058932, 38.880711 ], [ -77.058958, 38.880740 ], [ -77.058980, 38.880761 ], [ -77.059012, 38.880790 ], [ -77.059044, 38.880819 ], [ -77.059076, 38.880853 ], [ -77.059103, 38.880882 ], [ -77.059135, 38.880915 ], [ -77.059194, 38.880986 ], [ -77.059232, 38.881061 ], [ -77.059243, 38.881078 ], [ -77.059259, 38.881103 ], [ -77.059270, 38.881124 ], [ -77.059286, 38.881149 ], [ -77.059302, 38.881174 ], [ -77.059318, 38.881199 ], [ -77.059334, 38.881228 ], [ -77.059355, 38.881262 ], [ -77.059420, 38.881350 ], [ -77.061726, 38.885079 ], [ -77.061802, 38.885179 ], [ -77.061812, 38.885195 ], [ -77.061839, 38.885237 ], [ -77.061861, 38.885266 ], [ -77.061871, 38.885283 ], [ -77.061887, 38.885312 ], [ -77.061903, 38.885329 ], [ -77.061914, 38.885350 ], [ -77.061936, 38.885379 ], [ -77.061952, 38.885413 ], [ -77.061989, 38.885463 ], [ -77.062005, 38.885488 ], [ -77.062021, 38.885513 ], [ -77.062043, 38.885546 ], [ -77.062059, 38.885575 ], [ -77.062091, 38.885617 ], [ -77.062113, 38.885655 ], [ -77.062134, 38.885684 ], [ -77.062150, 38.885713 ], [ -77.062172, 38.885742 ], [ -77.062193, 38.885776 ], [ -77.062209, 38.885801 ], [ -77.062225, 38.885826 ], [ -77.062252, 38.885868 ], [ -77.062268, 38.885893 ], [ -77.062290, 38.885926 ], [ -77.062306, 38.885951 ], [ -77.062322, 38.885980 ], [ -77.062338, 38.886001 ], [ -77.062349, 38.886026 ], [ -77.062370, 38.886056 ], [ -77.062392, 38.886085 ], [ -77.062402, 38.886110 ], [ -77.062429, 38.886148 ], [ -77.062445, 38.886177 ], [ -77.062461, 38.886206 ], [ -77.062477, 38.886223 ], [ -77.062499, 38.886264 ], [ -77.062520, 38.886298 ], [ -77.062536, 38.886327 ], [ -77.062553, 38.886356 ], [ -77.062563, 38.886373 ], [ -77.062590, 38.886411 ], [ -77.062612, 38.886444 ], [ -77.062628, 38.886473 ], [ -77.062644, 38.886494 ], [ -77.062660, 38.886519 ], [ -77.062687, 38.886557 ], [ -77.062703, 38.886586 ], [ -77.062735, 38.886632 ], [ -77.062751, 38.886653 ], [ -77.062773, 38.886682 ], [ -77.062783, 38.886703 ], [ -77.062794, 38.886724 ], [ -77.062805, 38.886740 ], [ -77.062826, 38.886778 ], [ -77.062848, 38.886807 ], [ -77.062858, 38.886824 ], [ -77.062885, 38.886862 ], [ -77.062901, 38.886882 ], [ -77.062912, 38.886912 ], [ -77.062928, 38.886933 ], [ -77.062944, 38.886953 ], [ -77.062955, 38.886970 ], [ -77.062966, 38.886991 ], [ -77.062982, 38.887004 ], [ -77.062992, 38.887029 ], [ -77.063009, 38.887045 ], [ -77.063019, 38.887066 ], [ -77.063041, 38.887091 ], [ -77.063062, 38.887125 ], [ -77.063073, 38.887145 ], [ -77.063094, 38.887171 ], [ -77.063110, 38.887196 ], [ -77.063127, 38.887216 ], [ -77.063137, 38.887237 ], [ -77.063153, 38.887254 ], [ -77.063159, 38.887267 ], [ -77.063169, 38.887283 ], [ -77.063186, 38.887308 ], [ -77.063207, 38.887338 ], [ -77.063223, 38.887363 ], [ -77.063234, 38.887379 ], [ -77.063250, 38.887409 ], [ -77.063271, 38.887438 ], [ -77.063287, 38.887467 ], [ -77.063298, 38.887488 ], [ -77.063304, 38.887500 ], [ -77.063330, 38.887538 ], [ -77.063352, 38.887571 ], [ -77.063363, 38.887584 ], [ -77.063373, 38.887605 ], [ -77.063389, 38.887630 ], [ -77.063411, 38.887659 ], [ -77.063422, 38.887672 ], [ -77.063432, 38.887688 ], [ -77.063443, 38.887709 ], [ -77.063454, 38.887726 ], [ -77.063465, 38.887734 ], [ -77.063481, 38.887763 ], [ -77.063491, 38.887780 ], [ -77.063507, 38.887801 ], [ -77.063518, 38.887818 ], [ -77.063529, 38.887834 ], [ -77.063545, 38.887859 ], [ -77.063556, 38.887876 ], [ -77.063566, 38.887893 ], [ -77.063572, 38.887901 ], [ -77.063588, 38.887922 ], [ -77.063593, 38.887935 ], [ -77.063604, 38.887951 ], [ -77.063620, 38.887976 ], [ -77.063625, 38.887985 ], [ -77.063636, 38.888001 ], [ -77.063652, 38.888027 ], [ -77.063684, 38.888068 ], [ -77.063695, 38.888089 ], [ -77.063701, 38.888097 ], [ -77.063711, 38.888114 ], [ -77.063733, 38.888143 ], [ -77.063738, 38.888160 ], [ -77.063760, 38.888185 ], [ -77.063770, 38.888202 ], [ -77.063781, 38.888227 ], [ -77.063797, 38.888248 ], [ -77.063813, 38.888277 ], [ -77.063835, 38.888302 ], [ -77.063851, 38.888335 ], [ -77.063883, 38.888377 ], [ -77.063894, 38.888398 ], [ -77.063910, 38.888415 ], [ -77.063926, 38.888444 ], [ -77.063947, 38.888477 ], [ -77.063963, 38.888498 ], [ -77.063980, 38.888528 ], [ -77.064006, 38.888569 ], [ -77.064022, 38.888594 ], [ -77.064039, 38.888615 ], [ -77.064055, 38.888640 ], [ -77.064071, 38.888665 ], [ -77.064081, 38.888686 ], [ -77.064092, 38.888699 ], [ -77.064103, 38.888720 ], [ -77.064130, 38.888761 ], [ -77.064178, 38.888832 ], [ -77.064248, 38.888958 ], [ -77.064307, 38.889104 ], [ -77.064323, 38.889146 ], [ -77.064350, 38.889254 ], [ -77.064360, 38.889288 ], [ -77.064376, 38.889325 ], [ -77.064382, 38.889358 ], [ -77.064393, 38.889409 ], [ -77.064398, 38.889442 ], [ -77.064403, 38.889471 ], [ -77.064409, 38.889500 ], [ -77.064414, 38.889534 ], [ -77.064414, 38.889571 ], [ -77.064403, 38.889596 ], [ -77.064387, 38.889642 ], [ -77.064376, 38.889659 ], [ -77.064360, 38.889676 ], [ -77.064334, 38.889713 ], [ -77.064317, 38.889743 ], [ -77.064291, 38.889759 ], [ -77.064264, 38.889780 ], [ -77.064237, 38.889801 ], [ -77.064221, 38.889814 ], [ -77.064183, 38.889860 ], [ -77.064130, 38.889910 ], [ -77.064087, 38.889947 ], [ -77.064055, 38.889968 ], [ -77.064022, 38.889989 ], [ -77.064001, 38.890002 ], [ -77.063942, 38.890031 ], [ -77.063899, 38.890047 ], [ -77.063840, 38.890077 ], [ -77.063819, 38.890098 ], [ -77.063802, 38.890118 ], [ -77.063786, 38.890143 ], [ -77.063776, 38.890164 ], [ -77.063770, 38.890189 ], [ -77.063781, 38.890256 ], [ -77.063797, 38.890290 ], [ -77.063813, 38.890315 ], [ -77.063840, 38.890344 ], [ -77.063872, 38.890361 ], [ -77.063904, 38.890381 ], [ -77.063926, 38.890415 ], [ -77.063937, 38.890452 ], [ -77.063947, 38.890490 ], [ -77.063969, 38.890528 ], [ -77.063990, 38.890561 ], [ -77.064022, 38.890603 ], [ -77.064039, 38.890632 ], [ -77.064060, 38.890670 ], [ -77.064071, 38.890757 ], [ -77.064055, 38.890820 ], [ -77.064012, 38.890878 ], [ -77.063996, 38.890903 ], [ -77.063985, 38.890945 ], [ -77.064006, 38.890991 ], [ -77.064033, 38.891012 ], [ -77.064065, 38.891024 ], [ -77.064098, 38.891041 ], [ -77.064135, 38.891075 ], [ -77.064157, 38.891091 ], [ -77.064178, 38.891121 ], [ -77.064199, 38.891154 ], [ -77.064221, 38.891191 ], [ -77.064242, 38.891233 ], [ -77.064275, 38.891296 ], [ -77.064285, 38.891333 ], [ -77.064301, 38.891371 ], [ -77.064323, 38.891409 ], [ -77.064339, 38.891413 ], [ -77.064371, 38.891413 ], [ -77.064387, 38.891413 ], [ -77.064414, 38.891413 ], [ -77.064430, 38.891421 ], [ -77.064452, 38.891450 ], [ -77.064462, 38.891471 ], [ -77.064468, 38.891488 ], [ -77.064484, 38.891509 ], [ -77.064527, 38.891546 ], [ -77.064537, 38.891559 ], [ -77.064543, 38.891576 ], [ -77.064553, 38.891588 ], [ -77.064564, 38.891613 ], [ -77.064586, 38.891642 ], [ -77.064596, 38.891659 ], [ -77.064629, 38.891701 ], [ -77.035275, 38.891701 ], [ -77.035275, 38.859611 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2342, "y": 3133 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000802", "GEOID": "11001000802", "NAME": "8.02", "NAMELSAD": "Census Tract 8.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1688582, "AWATER": 669985, "INTPTLAT": "+38.9126765", "INTPTLON": "-077.0896118" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079805, 38.902335 ], [ -77.079837, 38.902330 ], [ -77.079880, 38.902322 ], [ -77.079923, 38.902318 ], [ -77.079960, 38.902314 ], [ -77.079998, 38.902310 ], [ -77.080035, 38.902305 ], [ -77.080067, 38.902301 ], [ -77.080105, 38.902297 ], [ -77.080164, 38.902297 ], [ -77.080191, 38.902301 ], [ -77.080223, 38.902310 ], [ -77.080255, 38.902314 ], [ -77.080287, 38.902322 ], [ -77.080325, 38.902322 ], [ -77.080357, 38.902322 ], [ -77.080400, 38.902322 ], [ -77.080443, 38.902322 ], [ -77.080491, 38.902326 ], [ -77.080534, 38.902326 ], [ -77.080577, 38.902326 ], [ -77.080615, 38.902326 ], [ -77.080684, 38.902322 ], [ -77.080754, 38.902322 ], [ -77.080775, 38.902326 ], [ -77.080802, 38.902326 ], [ -77.080829, 38.902326 ], [ -77.080856, 38.902326 ], [ -77.080888, 38.902322 ], [ -77.080920, 38.902322 ], [ -77.080936, 38.902322 ], [ -77.080936, 38.916036 ], [ -77.080920, 38.915993 ], [ -77.080695, 38.915371 ], [ -77.080550, 38.915037 ], [ -77.080395, 38.914841 ], [ -77.079343, 38.914044 ], [ -77.079236, 38.913860 ], [ -77.079107, 38.913743 ], [ -77.078957, 38.913451 ], [ -77.078839, 38.913113 ], [ -77.078807, 38.912750 ], [ -77.079016, 38.912741 ], [ -77.079011, 38.912679 ], [ -77.079263, 38.912679 ], [ -77.079252, 38.912633 ], [ -77.079236, 38.912261 ], [ -77.079220, 38.911957 ], [ -77.079204, 38.911894 ], [ -77.079037, 38.911802 ], [ -77.078716, 38.911172 ], [ -77.078485, 38.910817 ], [ -77.077696, 38.909686 ], [ -77.077594, 38.909239 ], [ -77.077557, 38.908626 ], [ -77.077879, 38.908137 ], [ -77.077906, 38.906710 ], [ -77.078313, 38.906739 ], [ -77.078345, 38.906267 ], [ -77.078303, 38.906250 ], [ -77.078308, 38.906042 ], [ -77.078308, 38.905937 ], [ -77.078308, 38.905870 ], [ -77.078308, 38.905787 ], [ -77.078410, 38.905787 ], [ -77.079408, 38.905637 ], [ -77.079864, 38.905407 ], [ -77.079890, 38.905190 ], [ -77.079906, 38.905073 ], [ -77.079912, 38.904885 ], [ -77.079214, 38.902456 ], [ -77.079247, 38.902460 ], [ -77.079279, 38.902439 ], [ -77.079311, 38.902418 ], [ -77.079332, 38.902410 ], [ -77.079359, 38.902401 ], [ -77.079381, 38.902397 ], [ -77.079408, 38.902397 ], [ -77.079434, 38.902397 ], [ -77.079461, 38.902397 ], [ -77.079488, 38.902397 ], [ -77.079520, 38.902397 ], [ -77.079552, 38.902397 ], [ -77.079585, 38.902389 ], [ -77.079617, 38.902381 ], [ -77.079644, 38.902368 ], [ -77.079681, 38.902360 ], [ -77.079724, 38.902351 ], [ -77.079767, 38.902343 ], [ -77.079805, 38.902335 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000704", "GEOID": "11001000704", "NAME": "7.04", "NAMELSAD": "Census Tract 7.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 332346, "AWATER": 0, "INTPTLAT": "+38.9300215", "INTPTLON": "-077.0752384" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.073855, 38.925897 ], [ -77.073855, 38.925734 ], [ -77.073855, 38.925588 ], [ -77.074623, 38.925575 ], [ -77.074617, 38.925738 ], [ -77.075867, 38.925755 ], [ -77.077047, 38.925742 ], [ -77.077047, 38.925897 ], [ -77.073855, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000502", "GEOID": "11001000502", "NAME": "5.02", "NAMELSAD": "Census Tract 5.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 581507, "AWATER": 0, "INTPTLAT": "+38.9283547", "INTPTLON": "-077.0595624" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.052886, 38.925897 ], [ -77.052677, 38.925538 ], [ -77.052811, 38.925555 ], [ -77.053524, 38.925642 ], [ -77.053658, 38.925659 ], [ -77.053921, 38.925692 ], [ -77.054366, 38.925747 ], [ -77.054785, 38.925805 ], [ -77.055128, 38.925851 ], [ -77.055230, 38.925863 ], [ -77.055327, 38.925876 ], [ -77.055489, 38.925897 ], [ -77.057633, 38.925897 ], [ -77.057633, 38.925329 ], [ -77.057633, 38.924954 ], [ -77.057633, 38.924682 ], [ -77.057633, 38.923714 ], [ -77.057633, 38.923355 ], [ -77.057660, 38.923272 ], [ -77.057714, 38.923213 ], [ -77.058089, 38.923497 ], [ -77.058460, 38.923789 ], [ -77.058733, 38.924002 ], [ -77.059034, 38.924236 ], [ -77.059339, 38.924474 ], [ -77.059420, 38.924536 ], [ -77.059511, 38.924607 ], [ -77.059790, 38.924820 ], [ -77.060155, 38.925108 ], [ -77.060428, 38.925317 ], [ -77.060589, 38.925454 ], [ -77.060729, 38.925563 ], [ -77.060814, 38.925626 ], [ -77.060857, 38.925659 ], [ -77.061163, 38.925897 ], [ -77.052886, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000501", "GEOID": "11001000501", "NAME": "5.01", "NAMELSAD": "Census Tract 5.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 940249, "AWATER": 29503, "INTPTLAT": "+38.9264548", "INTPTLON": "-077.0514340" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.058315, 38.917763 ], [ -77.058358, 38.917792 ], [ -77.058486, 38.917888 ], [ -77.058792, 38.918113 ], [ -77.058889, 38.918184 ], [ -77.059082, 38.918313 ], [ -77.058985, 38.918301 ], [ -77.058932, 38.918301 ], [ -77.058883, 38.918318 ], [ -77.058728, 38.918447 ], [ -77.058545, 38.918601 ], [ -77.058374, 38.918739 ], [ -77.058014, 38.919044 ], [ -77.057955, 38.919086 ], [ -77.057891, 38.919132 ], [ -77.057805, 38.919177 ], [ -77.057655, 38.919257 ], [ -77.057440, 38.919332 ], [ -77.057295, 38.919369 ], [ -77.057167, 38.919390 ], [ -77.057027, 38.919411 ], [ -77.056748, 38.919440 ], [ -77.056620, 38.919470 ], [ -77.056571, 38.919490 ], [ -77.056544, 38.919507 ], [ -77.056528, 38.919524 ], [ -77.056518, 38.919549 ], [ -77.056518, 38.919570 ], [ -77.056528, 38.919599 ], [ -77.056614, 38.919695 ], [ -77.056625, 38.919774 ], [ -77.056641, 38.919804 ], [ -77.056727, 38.919916 ], [ -77.056802, 38.919991 ], [ -77.056872, 38.920071 ], [ -77.056898, 38.920108 ], [ -77.056941, 38.920175 ], [ -77.056957, 38.920221 ], [ -77.056952, 38.920258 ], [ -77.056936, 38.920275 ], [ -77.056904, 38.920296 ], [ -77.056877, 38.920309 ], [ -77.056850, 38.920317 ], [ -77.056711, 38.920338 ], [ -77.056679, 38.920342 ], [ -77.056593, 38.920350 ], [ -77.056496, 38.920354 ], [ -77.056437, 38.920354 ], [ -77.056389, 38.920350 ], [ -77.056362, 38.920346 ], [ -77.056308, 38.920334 ], [ -77.056228, 38.920300 ], [ -77.056115, 38.920242 ], [ -77.055970, 38.920175 ], [ -77.055906, 38.920137 ], [ -77.055847, 38.920112 ], [ -77.055804, 38.920100 ], [ -77.055767, 38.920100 ], [ -77.055740, 38.920108 ], [ -77.055691, 38.920158 ], [ -77.055600, 38.920275 ], [ -77.055450, 38.920442 ], [ -77.055380, 38.920513 ], [ -77.055289, 38.920580 ], [ -77.055171, 38.920663 ], [ -77.054999, 38.920763 ], [ -77.054860, 38.920834 ], [ -77.054763, 38.920876 ], [ -77.054715, 38.920897 ], [ -77.054517, 38.920960 ], [ -77.054254, 38.921043 ], [ -77.054189, 38.921064 ], [ -77.054093, 38.921093 ], [ -77.054071, 38.921101 ], [ -77.054045, 38.921131 ], [ -77.054034, 38.921164 ], [ -77.054034, 38.921181 ], [ -77.054045, 38.921202 ], [ -77.054088, 38.921285 ], [ -77.054211, 38.921548 ], [ -77.054302, 38.921719 ], [ -77.054350, 38.921803 ], [ -77.054393, 38.921849 ], [ -77.054479, 38.921936 ], [ -77.054581, 38.922011 ], [ -77.054645, 38.922049 ], [ -77.054898, 38.922166 ], [ -77.055096, 38.922258 ], [ -77.055337, 38.922349 ], [ -77.055477, 38.922399 ], [ -77.055584, 38.922450 ], [ -77.055670, 38.922491 ], [ -77.055729, 38.922520 ], [ -77.055756, 38.922541 ], [ -77.055783, 38.922562 ], [ -77.055842, 38.922604 ], [ -77.055890, 38.922650 ], [ -77.055933, 38.922700 ], [ -77.055976, 38.922754 ], [ -77.055997, 38.922779 ], [ -77.056013, 38.922804 ], [ -77.056029, 38.922834 ], [ -77.056046, 38.922867 ], [ -77.056067, 38.922925 ], [ -77.056078, 38.922955 ], [ -77.056083, 38.922988 ], [ -77.056088, 38.923017 ], [ -77.056088, 38.923051 ], [ -77.056094, 38.923084 ], [ -77.056083, 38.923151 ], [ -77.056078, 38.923284 ], [ -77.056593, 38.923251 ], [ -77.057129, 38.923222 ], [ -77.057499, 38.923201 ], [ -77.057714, 38.923213 ], [ -77.057660, 38.923272 ], [ -77.057633, 38.923355 ], [ -77.057633, 38.923714 ], [ -77.057633, 38.924682 ], [ -77.057633, 38.924954 ], [ -77.057633, 38.925329 ], [ -77.057633, 38.925897 ], [ -77.055489, 38.925897 ], [ -77.055327, 38.925876 ], [ -77.055230, 38.925863 ], [ -77.055128, 38.925851 ], [ -77.054785, 38.925805 ], [ -77.054366, 38.925747 ], [ -77.053921, 38.925692 ], [ -77.053658, 38.925659 ], [ -77.053524, 38.925642 ], [ -77.052811, 38.925555 ], [ -77.052677, 38.925538 ], [ -77.052886, 38.925897 ], [ -77.049504, 38.925897 ], [ -77.049437, 38.925567 ], [ -77.049222, 38.925313 ], [ -77.048916, 38.924974 ], [ -77.048820, 38.924724 ], [ -77.048723, 38.924482 ], [ -77.048621, 38.924015 ], [ -77.048594, 38.923672 ], [ -77.048562, 38.923343 ], [ -77.048509, 38.923046 ], [ -77.048535, 38.922771 ], [ -77.048589, 38.922571 ], [ -77.048696, 38.922404 ], [ -77.048938, 38.922203 ], [ -77.049308, 38.921974 ], [ -77.049329, 38.921965 ], [ -77.049544, 38.921874 ], [ -77.049748, 38.921698 ], [ -77.050053, 38.921410 ], [ -77.050177, 38.921239 ], [ -77.050252, 38.921114 ], [ -77.050343, 38.920926 ], [ -77.050365, 38.920884 ], [ -77.050408, 38.920830 ], [ -77.050483, 38.920763 ], [ -77.050552, 38.920709 ], [ -77.050617, 38.920638 ], [ -77.050654, 38.920567 ], [ -77.050783, 38.920346 ], [ -77.050917, 38.920096 ], [ -77.051003, 38.919937 ], [ -77.051067, 38.919879 ], [ -77.051121, 38.919849 ], [ -77.051223, 38.919778 ], [ -77.051352, 38.919733 ], [ -77.051620, 38.919645 ], [ -77.051845, 38.919578 ], [ -77.051958, 38.919582 ], [ -77.052124, 38.919603 ], [ -77.052221, 38.919612 ], [ -77.052382, 38.919716 ], [ -77.052548, 38.919812 ], [ -77.052768, 38.919925 ], [ -77.052848, 38.919958 ], [ -77.052902, 38.919987 ], [ -77.053009, 38.920037 ], [ -77.053025, 38.920050 ], [ -77.053106, 38.920066 ], [ -77.053251, 38.920091 ], [ -77.053358, 38.920096 ], [ -77.053481, 38.920079 ], [ -77.053589, 38.920058 ], [ -77.053685, 38.920054 ], [ -77.053857, 38.920046 ], [ -77.054082, 38.920016 ], [ -77.054248, 38.919991 ], [ -77.054501, 38.919945 ], [ -77.054576, 38.919929 ], [ -77.054651, 38.919895 ], [ -77.054726, 38.919841 ], [ -77.054849, 38.919741 ], [ -77.054914, 38.919666 ], [ -77.054935, 38.919620 ], [ -77.055026, 38.919432 ], [ -77.055080, 38.919340 ], [ -77.055128, 38.919236 ], [ -77.055155, 38.919182 ], [ -77.055193, 38.919144 ], [ -77.055321, 38.919036 ], [ -77.055466, 38.918956 ], [ -77.055606, 38.918881 ], [ -77.056040, 38.918697 ], [ -77.056180, 38.918647 ], [ -77.056330, 38.918601 ], [ -77.056582, 38.918564 ], [ -77.056861, 38.918510 ], [ -77.057016, 38.918480 ], [ -77.057108, 38.918455 ], [ -77.057242, 38.918393 ], [ -77.057478, 38.918272 ], [ -77.057709, 38.918151 ], [ -77.057875, 38.918042 ], [ -77.057966, 38.917980 ], [ -77.058256, 38.917717 ], [ -77.058315, 38.917763 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003902", "GEOID": "11001003902", "NAME": "39.02", "NAMELSAD": "Census Tract 39.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 266513, "AWATER": 11205, "INTPTLAT": "+38.9257717", "INTPTLON": "-077.0452397" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.041047, 38.925191 ], [ -77.041519, 38.924874 ], [ -77.042023, 38.924540 ], [ -77.042441, 38.924252 ], [ -77.042854, 38.923981 ], [ -77.043310, 38.923672 ], [ -77.043546, 38.923518 ], [ -77.043675, 38.923426 ], [ -77.043353, 38.923238 ], [ -77.043386, 38.923238 ], [ -77.043418, 38.923238 ], [ -77.043461, 38.923238 ], [ -77.043847, 38.923238 ], [ -77.044335, 38.923238 ], [ -77.044587, 38.923238 ], [ -77.044694, 38.923238 ], [ -77.046052, 38.923238 ], [ -77.046593, 38.923238 ], [ -77.047135, 38.923238 ], [ -77.047275, 38.923243 ], [ -77.047339, 38.923247 ], [ -77.047527, 38.923263 ], [ -77.047602, 38.923272 ], [ -77.047693, 38.923280 ], [ -77.048391, 38.923330 ], [ -77.048460, 38.923338 ], [ -77.048562, 38.923343 ], [ -77.048594, 38.923672 ], [ -77.048621, 38.924015 ], [ -77.048723, 38.924482 ], [ -77.048820, 38.924724 ], [ -77.048916, 38.924974 ], [ -77.049222, 38.925313 ], [ -77.049437, 38.925567 ], [ -77.049504, 38.925897 ], [ -77.041566, 38.925897 ], [ -77.041572, 38.925817 ], [ -77.041599, 38.925471 ], [ -77.041578, 38.925467 ], [ -77.041551, 38.925454 ], [ -77.041529, 38.925446 ], [ -77.041149, 38.925262 ], [ -77.041116, 38.925246 ], [ -77.041095, 38.925233 ], [ -77.041073, 38.925217 ], [ -77.041047, 38.925191 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003901", "GEOID": "11001003901", "NAME": "39.01", "NAMELSAD": "Census Tract 39.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 120715, "AWATER": 0, "INTPTLAT": "+38.9254851", "INTPTLON": "-077.0401076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.043675, 38.923426 ], [ -77.043546, 38.923518 ], [ -77.043310, 38.923672 ], [ -77.042854, 38.923981 ], [ -77.042441, 38.924252 ], [ -77.042023, 38.924540 ], [ -77.041519, 38.924874 ], [ -77.041047, 38.925191 ], [ -77.041073, 38.925217 ], [ -77.041095, 38.925233 ], [ -77.041116, 38.925246 ], [ -77.041149, 38.925262 ], [ -77.041529, 38.925446 ], [ -77.041551, 38.925454 ], [ -77.041578, 38.925467 ], [ -77.041599, 38.925471 ], [ -77.041572, 38.925817 ], [ -77.041566, 38.925897 ], [ -77.037555, 38.925897 ], [ -77.037967, 38.925638 ], [ -77.038364, 38.925404 ], [ -77.038445, 38.925358 ], [ -77.038654, 38.925233 ], [ -77.038820, 38.925133 ], [ -77.039148, 38.924945 ], [ -77.039459, 38.924766 ], [ -77.039663, 38.924649 ], [ -77.039931, 38.924486 ], [ -77.040140, 38.924353 ], [ -77.040333, 38.924227 ], [ -77.040414, 38.924182 ], [ -77.040961, 38.923810 ], [ -77.041342, 38.923560 ], [ -77.041411, 38.923514 ], [ -77.041540, 38.923422 ], [ -77.041830, 38.923243 ], [ -77.041873, 38.923209 ], [ -77.042093, 38.923055 ], [ -77.042329, 38.922896 ], [ -77.042683, 38.922662 ], [ -77.042726, 38.922821 ], [ -77.042736, 38.922846 ], [ -77.042753, 38.922875 ], [ -77.042763, 38.922900 ], [ -77.042779, 38.922925 ], [ -77.042801, 38.922955 ], [ -77.042838, 38.923000 ], [ -77.042865, 38.923025 ], [ -77.042892, 38.923046 ], [ -77.042913, 38.923067 ], [ -77.043005, 38.923121 ], [ -77.043031, 38.923138 ], [ -77.043101, 38.923172 ], [ -77.043155, 38.923192 ], [ -77.043182, 38.923205 ], [ -77.043208, 38.923213 ], [ -77.043267, 38.923230 ], [ -77.043326, 38.923238 ], [ -77.043353, 38.923238 ], [ -77.043675, 38.923426 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000702", "GEOID": "11001000702", "NAME": "7.02", "NAMELSAD": "Census Tract 7.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308967, "AWATER": 0, "INTPTLAT": "+38.9241271", "INTPTLON": "-077.0778930" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.073185, 38.925897 ], [ -77.073185, 38.924766 ], [ -77.073185, 38.924695 ], [ -77.073185, 38.924465 ], [ -77.073185, 38.924390 ], [ -77.073185, 38.924056 ], [ -77.073179, 38.923618 ], [ -77.073179, 38.923422 ], [ -77.073169, 38.923134 ], [ -77.073163, 38.923080 ], [ -77.073163, 38.923051 ], [ -77.073147, 38.922996 ], [ -77.073142, 38.922967 ], [ -77.073120, 38.922913 ], [ -77.073094, 38.922863 ], [ -77.072906, 38.922541 ], [ -77.073190, 38.922546 ], [ -77.073281, 38.922546 ], [ -77.074295, 38.922550 ], [ -77.074692, 38.922550 ], [ -77.076017, 38.922550 ], [ -77.076344, 38.922546 ], [ -77.077047, 38.922550 ], [ -77.077155, 38.922550 ], [ -77.077503, 38.922550 ], [ -77.077814, 38.922550 ], [ -77.077906, 38.922550 ], [ -77.078522, 38.922550 ], [ -77.078769, 38.922550 ], [ -77.078968, 38.922550 ], [ -77.079322, 38.922550 ], [ -77.079756, 38.922550 ], [ -77.080003, 38.922550 ], [ -77.080711, 38.922550 ], [ -77.080749, 38.922124 ], [ -77.080765, 38.921932 ], [ -77.080781, 38.921765 ], [ -77.080792, 38.921677 ], [ -77.080840, 38.921669 ], [ -77.080920, 38.921657 ], [ -77.080936, 38.921654 ], [ -77.080936, 38.925897 ], [ -77.077047, 38.925897 ], [ -77.077047, 38.925742 ], [ -77.075867, 38.925755 ], [ -77.074617, 38.925738 ], [ -77.074623, 38.925575 ], [ -77.073855, 38.925588 ], [ -77.073855, 38.925734 ], [ -77.073855, 38.925897 ], [ -77.073185, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000300", "GEOID": "11001000300", "NAME": "3", "NAMELSAD": "Census Tract 3", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1042156, "AWATER": 2305, "INTPTLAT": "+38.9179099", "INTPTLON": "-077.0748728" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.069242, 38.912675 ], [ -77.069414, 38.912662 ], [ -77.070803, 38.912620 ], [ -77.071066, 38.912616 ], [ -77.071184, 38.912612 ], [ -77.072675, 38.912595 ], [ -77.073094, 38.912591 ], [ -77.073303, 38.912587 ], [ -77.073936, 38.912583 ], [ -77.074113, 38.912587 ], [ -77.074322, 38.912591 ], [ -77.074472, 38.912595 ], [ -77.075534, 38.912620 ], [ -77.075642, 38.912624 ], [ -77.076039, 38.912633 ], [ -77.076167, 38.912637 ], [ -77.076409, 38.912641 ], [ -77.077466, 38.912670 ], [ -77.077981, 38.912679 ], [ -77.078549, 38.912691 ], [ -77.079011, 38.912679 ], [ -77.079016, 38.912741 ], [ -77.078807, 38.912750 ], [ -77.078839, 38.913113 ], [ -77.078957, 38.913451 ], [ -77.079107, 38.913743 ], [ -77.079236, 38.913860 ], [ -77.079343, 38.914044 ], [ -77.080395, 38.914841 ], [ -77.080550, 38.915037 ], [ -77.080695, 38.915371 ], [ -77.080920, 38.915993 ], [ -77.080936, 38.916036 ], [ -77.080936, 38.921654 ], [ -77.080920, 38.921657 ], [ -77.080840, 38.921669 ], [ -77.080792, 38.921677 ], [ -77.080781, 38.921765 ], [ -77.080765, 38.921932 ], [ -77.080749, 38.922124 ], [ -77.080711, 38.922550 ], [ -77.080003, 38.922550 ], [ -77.079756, 38.922550 ], [ -77.079322, 38.922550 ], [ -77.078968, 38.922550 ], [ -77.078769, 38.922550 ], [ -77.078522, 38.922550 ], [ -77.077906, 38.922550 ], [ -77.077814, 38.922550 ], [ -77.077503, 38.922550 ], [ -77.077155, 38.922550 ], [ -77.077047, 38.922550 ], [ -77.076344, 38.922546 ], [ -77.076017, 38.922550 ], [ -77.074692, 38.922550 ], [ -77.074295, 38.922550 ], [ -77.073281, 38.922546 ], [ -77.073190, 38.922546 ], [ -77.072906, 38.922541 ], [ -77.072842, 38.922437 ], [ -77.072766, 38.922316 ], [ -77.072686, 38.922178 ], [ -77.072471, 38.921828 ], [ -77.072225, 38.921415 ], [ -77.072015, 38.921076 ], [ -77.071967, 38.920993 ], [ -77.071940, 38.920943 ], [ -77.071795, 38.920709 ], [ -77.071656, 38.920480 ], [ -77.071592, 38.920367 ], [ -77.071533, 38.920275 ], [ -77.071474, 38.920187 ], [ -77.071431, 38.920133 ], [ -77.071409, 38.920104 ], [ -77.071339, 38.920021 ], [ -77.071264, 38.919937 ], [ -77.070884, 38.919486 ], [ -77.070637, 38.919198 ], [ -77.070535, 38.919077 ], [ -77.070192, 38.918672 ], [ -77.069864, 38.918284 ], [ -77.069521, 38.917896 ], [ -77.069462, 38.917821 ], [ -77.069381, 38.917725 ], [ -77.069403, 38.917700 ], [ -77.069419, 38.917675 ], [ -77.069435, 38.917646 ], [ -77.069440, 38.917612 ], [ -77.069446, 38.917583 ], [ -77.069419, 38.916915 ], [ -77.069408, 38.916602 ], [ -77.069376, 38.915872 ], [ -77.069365, 38.915630 ], [ -77.069360, 38.915471 ], [ -77.069339, 38.914891 ], [ -77.069322, 38.914570 ], [ -77.069312, 38.914319 ], [ -77.069301, 38.914152 ], [ -77.069296, 38.913956 ], [ -77.069280, 38.913660 ], [ -77.069269, 38.913376 ], [ -77.069247, 38.912783 ], [ -77.069247, 38.912762 ], [ -77.069242, 38.912675 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000201", "GEOID": "11001000201", "NAME": "2.01", "NAMELSAD": "Census Tract 2.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 505004, "AWATER": 0, "INTPTLAT": "+38.9092171", "INTPTLON": "-077.0743418" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.071495, 38.905111 ], [ -77.072139, 38.905244 ], [ -77.072627, 38.905324 ], [ -77.073727, 38.905495 ], [ -77.074000, 38.905537 ], [ -77.074156, 38.905545 ], [ -77.074236, 38.905545 ], [ -77.074623, 38.905537 ], [ -77.075422, 38.905537 ], [ -77.075744, 38.905528 ], [ -77.076039, 38.905553 ], [ -77.076210, 38.905578 ], [ -77.076607, 38.905662 ], [ -77.076988, 38.905749 ], [ -77.077289, 38.905833 ], [ -77.077535, 38.905904 ], [ -77.077766, 38.905954 ], [ -77.077814, 38.905966 ], [ -77.077938, 38.905996 ], [ -77.078045, 38.906012 ], [ -77.078109, 38.906025 ], [ -77.078201, 38.906037 ], [ -77.078308, 38.906042 ], [ -77.078303, 38.906250 ], [ -77.078345, 38.906267 ], [ -77.078313, 38.906739 ], [ -77.077906, 38.906710 ], [ -77.077879, 38.908137 ], [ -77.077557, 38.908626 ], [ -77.077594, 38.909239 ], [ -77.077696, 38.909686 ], [ -77.078485, 38.910817 ], [ -77.078716, 38.911172 ], [ -77.079037, 38.911802 ], [ -77.079204, 38.911894 ], [ -77.079220, 38.911957 ], [ -77.079236, 38.912261 ], [ -77.079252, 38.912633 ], [ -77.079263, 38.912679 ], [ -77.079011, 38.912679 ], [ -77.078549, 38.912691 ], [ -77.077981, 38.912679 ], [ -77.077466, 38.912670 ], [ -77.076409, 38.912641 ], [ -77.076167, 38.912637 ], [ -77.076039, 38.912633 ], [ -77.075642, 38.912624 ], [ -77.075534, 38.912620 ], [ -77.074472, 38.912595 ], [ -77.074322, 38.912591 ], [ -77.074113, 38.912587 ], [ -77.073936, 38.912583 ], [ -77.073303, 38.912587 ], [ -77.073094, 38.912591 ], [ -77.073056, 38.911522 ], [ -77.069339, 38.911602 ], [ -77.069199, 38.911606 ], [ -77.069183, 38.911260 ], [ -77.069172, 38.910967 ], [ -77.069162, 38.910692 ], [ -77.069156, 38.910617 ], [ -77.069119, 38.909844 ], [ -77.069119, 38.909711 ], [ -77.069108, 38.909506 ], [ -77.069103, 38.909239 ], [ -77.069081, 38.908805 ], [ -77.069076, 38.908717 ], [ -77.069194, 38.908713 ], [ -77.069457, 38.908709 ], [ -77.069982, 38.908697 ], [ -77.070261, 38.908688 ], [ -77.070379, 38.908688 ], [ -77.070497, 38.908684 ], [ -77.070690, 38.908680 ], [ -77.071136, 38.908667 ], [ -77.071543, 38.908663 ], [ -77.071570, 38.908659 ], [ -77.071597, 38.908651 ], [ -77.071618, 38.908634 ], [ -77.071635, 38.908613 ], [ -77.071640, 38.908584 ], [ -77.071624, 38.908229 ], [ -77.071618, 38.908037 ], [ -77.071613, 38.907895 ], [ -77.071608, 38.907678 ], [ -77.071602, 38.907482 ], [ -77.071576, 38.906993 ], [ -77.071565, 38.906826 ], [ -77.071565, 38.906751 ], [ -77.071559, 38.906680 ], [ -77.071538, 38.906125 ], [ -77.071533, 38.905933 ], [ -77.071522, 38.905837 ], [ -77.071506, 38.905474 ], [ -77.071495, 38.905111 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000400", "GEOID": "11001000400", "NAME": "4", "NAMELSAD": "Census Tract 4", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1541239, "AWATER": 69, "INTPTLAT": "+38.9227989", "INTPTLON": "-077.0649214" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.054071, 38.921101 ], [ -77.054093, 38.921093 ], [ -77.054189, 38.921064 ], [ -77.054254, 38.921043 ], [ -77.054517, 38.920960 ], [ -77.054715, 38.920897 ], [ -77.054763, 38.920876 ], [ -77.054860, 38.920834 ], [ -77.054999, 38.920763 ], [ -77.055171, 38.920663 ], [ -77.055289, 38.920580 ], [ -77.055380, 38.920513 ], [ -77.055450, 38.920442 ], [ -77.055600, 38.920275 ], [ -77.055691, 38.920158 ], [ -77.055740, 38.920108 ], [ -77.055767, 38.920100 ], [ -77.055804, 38.920100 ], [ -77.055847, 38.920112 ], [ -77.055906, 38.920137 ], [ -77.055970, 38.920175 ], [ -77.056115, 38.920242 ], [ -77.056228, 38.920300 ], [ -77.056308, 38.920334 ], [ -77.056362, 38.920346 ], [ -77.056389, 38.920350 ], [ -77.056437, 38.920354 ], [ -77.056496, 38.920354 ], [ -77.056593, 38.920350 ], [ -77.056679, 38.920342 ], [ -77.056711, 38.920338 ], [ -77.056850, 38.920317 ], [ -77.056877, 38.920309 ], [ -77.056904, 38.920296 ], [ -77.056936, 38.920275 ], [ -77.056952, 38.920258 ], [ -77.056957, 38.920221 ], [ -77.056941, 38.920175 ], [ -77.056898, 38.920108 ], [ -77.056872, 38.920071 ], [ -77.056802, 38.919991 ], [ -77.056727, 38.919916 ], [ -77.056641, 38.919804 ], [ -77.056625, 38.919774 ], [ -77.056614, 38.919695 ], [ -77.056528, 38.919599 ], [ -77.056518, 38.919570 ], [ -77.056518, 38.919549 ], [ -77.056528, 38.919524 ], [ -77.056544, 38.919507 ], [ -77.056571, 38.919490 ], [ -77.056620, 38.919470 ], [ -77.056748, 38.919440 ], [ -77.057027, 38.919411 ], [ -77.057167, 38.919390 ], [ -77.057295, 38.919369 ], [ -77.057440, 38.919332 ], [ -77.057655, 38.919257 ], [ -77.057805, 38.919177 ], [ -77.057891, 38.919132 ], [ -77.057955, 38.919086 ], [ -77.058014, 38.919044 ], [ -77.058374, 38.918739 ], [ -77.058545, 38.918601 ], [ -77.058728, 38.918447 ], [ -77.058883, 38.918318 ], [ -77.058932, 38.918301 ], [ -77.058985, 38.918301 ], [ -77.059082, 38.918313 ], [ -77.059323, 38.918326 ], [ -77.059361, 38.918326 ], [ -77.059473, 38.918330 ], [ -77.059720, 38.918339 ], [ -77.060063, 38.918347 ], [ -77.060412, 38.918359 ], [ -77.060943, 38.918376 ], [ -77.061190, 38.918380 ], [ -77.061448, 38.918389 ], [ -77.063550, 38.918426 ], [ -77.063819, 38.918447 ], [ -77.066892, 38.918656 ], [ -77.067252, 38.918643 ], [ -77.067311, 38.918643 ], [ -77.067386, 38.917758 ], [ -77.067381, 38.917733 ], [ -77.067375, 38.917704 ], [ -77.067381, 38.917679 ], [ -77.067397, 38.917654 ], [ -77.067413, 38.917633 ], [ -77.067472, 38.917583 ], [ -77.067493, 38.917566 ], [ -77.067590, 38.917508 ], [ -77.067611, 38.917495 ], [ -77.067922, 38.917349 ], [ -77.068604, 38.917028 ], [ -77.068748, 38.916965 ], [ -77.068856, 38.917099 ], [ -77.069247, 38.917571 ], [ -77.069381, 38.917725 ], [ -77.069462, 38.917821 ], [ -77.069521, 38.917896 ], [ -77.069864, 38.918284 ], [ -77.070192, 38.918672 ], [ -77.070535, 38.919077 ], [ -77.070637, 38.919198 ], [ -77.070884, 38.919486 ], [ -77.071264, 38.919937 ], [ -77.071339, 38.920021 ], [ -77.071409, 38.920104 ], [ -77.071431, 38.920133 ], [ -77.071474, 38.920187 ], [ -77.071533, 38.920275 ], [ -77.071592, 38.920367 ], [ -77.071656, 38.920480 ], [ -77.071795, 38.920709 ], [ -77.071940, 38.920943 ], [ -77.071967, 38.920993 ], [ -77.072015, 38.921076 ], [ -77.072225, 38.921415 ], [ -77.072471, 38.921828 ], [ -77.072686, 38.922178 ], [ -77.072766, 38.922316 ], [ -77.072842, 38.922437 ], [ -77.072906, 38.922541 ], [ -77.073094, 38.922863 ], [ -77.073120, 38.922913 ], [ -77.073142, 38.922967 ], [ -77.073147, 38.922996 ], [ -77.073163, 38.923051 ], [ -77.073163, 38.923080 ], [ -77.073169, 38.923134 ], [ -77.073179, 38.923422 ], [ -77.073179, 38.923618 ], [ -77.073185, 38.924056 ], [ -77.073185, 38.924390 ], [ -77.073185, 38.924465 ], [ -77.073185, 38.924695 ], [ -77.073185, 38.924766 ], [ -77.073185, 38.925897 ], [ -77.061163, 38.925897 ], [ -77.060857, 38.925659 ], [ -77.060814, 38.925626 ], [ -77.060729, 38.925563 ], [ -77.060589, 38.925454 ], [ -77.060428, 38.925317 ], [ -77.060155, 38.925108 ], [ -77.059790, 38.924820 ], [ -77.059511, 38.924607 ], [ -77.059420, 38.924536 ], [ -77.059339, 38.924474 ], [ -77.059034, 38.924236 ], [ -77.058733, 38.924002 ], [ -77.058460, 38.923789 ], [ -77.058089, 38.923497 ], [ -77.057714, 38.923213 ], [ -77.057499, 38.923201 ], [ -77.057129, 38.923222 ], [ -77.056593, 38.923251 ], [ -77.056078, 38.923284 ], [ -77.056083, 38.923151 ], [ -77.056094, 38.923084 ], [ -77.056088, 38.923051 ], [ -77.056088, 38.923017 ], [ -77.056083, 38.922988 ], [ -77.056078, 38.922955 ], [ -77.056067, 38.922925 ], [ -77.056046, 38.922867 ], [ -77.056029, 38.922834 ], [ -77.056013, 38.922804 ], [ -77.055997, 38.922779 ], [ -77.055976, 38.922754 ], [ -77.055933, 38.922700 ], [ -77.055890, 38.922650 ], [ -77.055842, 38.922604 ], [ -77.055783, 38.922562 ], [ -77.055756, 38.922541 ], [ -77.055729, 38.922520 ], [ -77.055670, 38.922491 ], [ -77.055584, 38.922450 ], [ -77.055477, 38.922399 ], [ -77.055337, 38.922349 ], [ -77.055096, 38.922258 ], [ -77.054898, 38.922166 ], [ -77.054645, 38.922049 ], [ -77.054581, 38.922011 ], [ -77.054479, 38.921936 ], [ -77.054393, 38.921849 ], [ -77.054350, 38.921803 ], [ -77.054302, 38.921719 ], [ -77.054211, 38.921548 ], [ -77.054088, 38.921285 ], [ -77.054045, 38.921202 ], [ -77.054034, 38.921181 ], [ -77.054034, 38.921164 ], [ -77.054045, 38.921131 ], [ -77.054071, 38.921101 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000202", "GEOID": "11001000202", "NAME": "2.02", "NAMELSAD": "Census Tract 2.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 776435, "AWATER": 439661, "INTPTLAT": "+38.9063048", "INTPTLON": "-077.0696362" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.062799, 38.901065 ], [ -77.065932, 38.901128 ], [ -77.068711, 38.901015 ], [ -77.069263, 38.900581 ], [ -77.069344, 38.900594 ], [ -77.069371, 38.900598 ], [ -77.069403, 38.900602 ], [ -77.069440, 38.900615 ], [ -77.069462, 38.900623 ], [ -77.069489, 38.900635 ], [ -77.069516, 38.900648 ], [ -77.069542, 38.900661 ], [ -77.069575, 38.900673 ], [ -77.069607, 38.900686 ], [ -77.069644, 38.900702 ], [ -77.069677, 38.900715 ], [ -77.069703, 38.900731 ], [ -77.069725, 38.900744 ], [ -77.069757, 38.900757 ], [ -77.069784, 38.900769 ], [ -77.069811, 38.900786 ], [ -77.069837, 38.900798 ], [ -77.069864, 38.900811 ], [ -77.069891, 38.900823 ], [ -77.069918, 38.900836 ], [ -77.069950, 38.900853 ], [ -77.069977, 38.900865 ], [ -77.070004, 38.900873 ], [ -77.070031, 38.900886 ], [ -77.070063, 38.900894 ], [ -77.070090, 38.900907 ], [ -77.070116, 38.900919 ], [ -77.070138, 38.900932 ], [ -77.070159, 38.900940 ], [ -77.070186, 38.900953 ], [ -77.070208, 38.900961 ], [ -77.070229, 38.900969 ], [ -77.070256, 38.900978 ], [ -77.070277, 38.900986 ], [ -77.070304, 38.900995 ], [ -77.070326, 38.901007 ], [ -77.070358, 38.901032 ], [ -77.070465, 38.901103 ], [ -77.070578, 38.901178 ], [ -77.070653, 38.901195 ], [ -77.070685, 38.901195 ], [ -77.070717, 38.901195 ], [ -77.070739, 38.901191 ], [ -77.070765, 38.901187 ], [ -77.070787, 38.901174 ], [ -77.070814, 38.901166 ], [ -77.070835, 38.901157 ], [ -77.070878, 38.901153 ], [ -77.070921, 38.901149 ], [ -77.070943, 38.901145 ], [ -77.070991, 38.901145 ], [ -77.071018, 38.901145 ], [ -77.071044, 38.901145 ], [ -77.071071, 38.901141 ], [ -77.071098, 38.901141 ], [ -77.071120, 38.901141 ], [ -77.071146, 38.901141 ], [ -77.071168, 38.901141 ], [ -77.071200, 38.901136 ], [ -77.071307, 38.901141 ], [ -77.071339, 38.901141 ], [ -77.071372, 38.901141 ], [ -77.071409, 38.901136 ], [ -77.071441, 38.901136 ], [ -77.071474, 38.901136 ], [ -77.071500, 38.901136 ], [ -77.071527, 38.901132 ], [ -77.071554, 38.901128 ], [ -77.071586, 38.901124 ], [ -77.071613, 38.901120 ], [ -77.071640, 38.901116 ], [ -77.071661, 38.901111 ], [ -77.071683, 38.901103 ], [ -77.071710, 38.901099 ], [ -77.071731, 38.901095 ], [ -77.071763, 38.901086 ], [ -77.071795, 38.901082 ], [ -77.071822, 38.901078 ], [ -77.071854, 38.901078 ], [ -77.071881, 38.901078 ], [ -77.071913, 38.901078 ], [ -77.071946, 38.901074 ], [ -77.071978, 38.901074 ], [ -77.072010, 38.901074 ], [ -77.072037, 38.901074 ], [ -77.072069, 38.901070 ], [ -77.072101, 38.901070 ], [ -77.072128, 38.901070 ], [ -77.072155, 38.901070 ], [ -77.072182, 38.901070 ], [ -77.072209, 38.901070 ], [ -77.072230, 38.901070 ], [ -77.072257, 38.901070 ], [ -77.072289, 38.901070 ], [ -77.072321, 38.901070 ], [ -77.072348, 38.901070 ], [ -77.072375, 38.901065 ], [ -77.072407, 38.901065 ], [ -77.072434, 38.901065 ], [ -77.072466, 38.901065 ], [ -77.072487, 38.901065 ], [ -77.072514, 38.901061 ], [ -77.072536, 38.901061 ], [ -77.072563, 38.901061 ], [ -77.072589, 38.901061 ], [ -77.072616, 38.901061 ], [ -77.072643, 38.901061 ], [ -77.072670, 38.901061 ], [ -77.072707, 38.901061 ], [ -77.072745, 38.901065 ], [ -77.072772, 38.901065 ], [ -77.072799, 38.901070 ], [ -77.072847, 38.901074 ], [ -77.072890, 38.901078 ], [ -77.072917, 38.901082 ], [ -77.072949, 38.901086 ], [ -77.072981, 38.901091 ], [ -77.073019, 38.901095 ], [ -77.073051, 38.901095 ], [ -77.073078, 38.901099 ], [ -77.073115, 38.901103 ], [ -77.073153, 38.901103 ], [ -77.073185, 38.901107 ], [ -77.073212, 38.901111 ], [ -77.073238, 38.901111 ], [ -77.073265, 38.901116 ], [ -77.073292, 38.901116 ], [ -77.073319, 38.901120 ], [ -77.073346, 38.901120 ], [ -77.073373, 38.901124 ], [ -77.073399, 38.901128 ], [ -77.073426, 38.901136 ], [ -77.073458, 38.901145 ], [ -77.073491, 38.901153 ], [ -77.073523, 38.901157 ], [ -77.073560, 38.901170 ], [ -77.073587, 38.901174 ], [ -77.073619, 38.901182 ], [ -77.073646, 38.901191 ], [ -77.073673, 38.901195 ], [ -77.073700, 38.901203 ], [ -77.073721, 38.901207 ], [ -77.073759, 38.901220 ], [ -77.073796, 38.901232 ], [ -77.073845, 38.901245 ], [ -77.073871, 38.901249 ], [ -77.073898, 38.901258 ], [ -77.073925, 38.901266 ], [ -77.073947, 38.901274 ], [ -77.073973, 38.901283 ], [ -77.073995, 38.901291 ], [ -77.074022, 38.901299 ], [ -77.074049, 38.901308 ], [ -77.074075, 38.901316 ], [ -77.074102, 38.901320 ], [ -77.074124, 38.901324 ], [ -77.074150, 38.901333 ], [ -77.074183, 38.901341 ], [ -77.074220, 38.901345 ], [ -77.074252, 38.901354 ], [ -77.074285, 38.901362 ], [ -77.074317, 38.901370 ], [ -77.074349, 38.901379 ], [ -77.074386, 38.901387 ], [ -77.074424, 38.901395 ], [ -77.074456, 38.901404 ], [ -77.074483, 38.901412 ], [ -77.074515, 38.901420 ], [ -77.074553, 38.901425 ], [ -77.074590, 38.901429 ], [ -77.074623, 38.901437 ], [ -77.074655, 38.901441 ], [ -77.074687, 38.901445 ], [ -77.074724, 38.901450 ], [ -77.074762, 38.901458 ], [ -77.074800, 38.901462 ], [ -77.075030, 38.901521 ], [ -77.075170, 38.901562 ], [ -77.075218, 38.901575 ], [ -77.075250, 38.901579 ], [ -77.075288, 38.901587 ], [ -77.075320, 38.901596 ], [ -77.075347, 38.901604 ], [ -77.075379, 38.901608 ], [ -77.075411, 38.901617 ], [ -77.075443, 38.901625 ], [ -77.075475, 38.901637 ], [ -77.075502, 38.901646 ], [ -77.075534, 38.901658 ], [ -77.075567, 38.901667 ], [ -77.075593, 38.901679 ], [ -77.075620, 38.901688 ], [ -77.075652, 38.901696 ], [ -77.075679, 38.901700 ], [ -77.075706, 38.901708 ], [ -77.075733, 38.901717 ], [ -77.075760, 38.901725 ], [ -77.075781, 38.901738 ], [ -77.075808, 38.901750 ], [ -77.075830, 38.901763 ], [ -77.075856, 38.901771 ], [ -77.075878, 38.901784 ], [ -77.075899, 38.901792 ], [ -77.075937, 38.901800 ], [ -77.075974, 38.901809 ], [ -77.076001, 38.901813 ], [ -77.076028, 38.901809 ], [ -77.076066, 38.901809 ], [ -77.076087, 38.901813 ], [ -77.076108, 38.901817 ], [ -77.076141, 38.901829 ], [ -77.076216, 38.901855 ], [ -77.076248, 38.901863 ], [ -77.076280, 38.901871 ], [ -77.076312, 38.901880 ], [ -77.076339, 38.901884 ], [ -77.076371, 38.901892 ], [ -77.076403, 38.901900 ], [ -77.076436, 38.901913 ], [ -77.076463, 38.901925 ], [ -77.076489, 38.901938 ], [ -77.076516, 38.901946 ], [ -77.076543, 38.901955 ], [ -77.076570, 38.901959 ], [ -77.076607, 38.901959 ], [ -77.076640, 38.901963 ], [ -77.076677, 38.901963 ], [ -77.076715, 38.901971 ], [ -77.076747, 38.901980 ], [ -77.076779, 38.901988 ], [ -77.076806, 38.902005 ], [ -77.076827, 38.902021 ], [ -77.076854, 38.902034 ], [ -77.076886, 38.902051 ], [ -77.076918, 38.902063 ], [ -77.076956, 38.902080 ], [ -77.076994, 38.902097 ], [ -77.077031, 38.902105 ], [ -77.077063, 38.902113 ], [ -77.077101, 38.902122 ], [ -77.077149, 38.902130 ], [ -77.077187, 38.902138 ], [ -77.077230, 38.902147 ], [ -77.077273, 38.902151 ], [ -77.077321, 38.902155 ], [ -77.077364, 38.902155 ], [ -77.077407, 38.902159 ], [ -77.077444, 38.902163 ], [ -77.077487, 38.902168 ], [ -77.077519, 38.902172 ], [ -77.077546, 38.902180 ], [ -77.077562, 38.902197 ], [ -77.077573, 38.902218 ], [ -77.077610, 38.902247 ], [ -77.077637, 38.902255 ], [ -77.077659, 38.902259 ], [ -77.077686, 38.902255 ], [ -77.077718, 38.902251 ], [ -77.077745, 38.902247 ], [ -77.077782, 38.902243 ], [ -77.077820, 38.902247 ], [ -77.077857, 38.902251 ], [ -77.077895, 38.902255 ], [ -77.077932, 38.902255 ], [ -77.077965, 38.902259 ], [ -77.077997, 38.902268 ], [ -77.078029, 38.902276 ], [ -77.078061, 38.902289 ], [ -77.078088, 38.902297 ], [ -77.078115, 38.902310 ], [ -77.078136, 38.902322 ], [ -77.078158, 38.902335 ], [ -77.078174, 38.902347 ], [ -77.078243, 38.902368 ], [ -77.078270, 38.902368 ], [ -77.078297, 38.902368 ], [ -77.078324, 38.902368 ], [ -77.078351, 38.902360 ], [ -77.078378, 38.902355 ], [ -77.078399, 38.902347 ], [ -77.078426, 38.902343 ], [ -77.078453, 38.902339 ], [ -77.078480, 38.902335 ], [ -77.078522, 38.902330 ], [ -77.078560, 38.902326 ], [ -77.078603, 38.902326 ], [ -77.078640, 38.902322 ], [ -77.078683, 38.902318 ], [ -77.078721, 38.902314 ], [ -77.078753, 38.902310 ], [ -77.078791, 38.902305 ], [ -77.078828, 38.902301 ], [ -77.078871, 38.902297 ], [ -77.078909, 38.902301 ], [ -77.078946, 38.902305 ], [ -77.078978, 38.902310 ], [ -77.079016, 38.902318 ], [ -77.079048, 38.902326 ], [ -77.079075, 38.902339 ], [ -77.079102, 38.902347 ], [ -77.079134, 38.902364 ], [ -77.079155, 38.902389 ], [ -77.079161, 38.902418 ], [ -77.079172, 38.902439 ], [ -77.079214, 38.902456 ], [ -77.079912, 38.904885 ], [ -77.079906, 38.905073 ], [ -77.079890, 38.905190 ], [ -77.079864, 38.905407 ], [ -77.079408, 38.905637 ], [ -77.078410, 38.905787 ], [ -77.078308, 38.905787 ], [ -77.078308, 38.905870 ], [ -77.078308, 38.905937 ], [ -77.078308, 38.906042 ], [ -77.078201, 38.906037 ], [ -77.078109, 38.906025 ], [ -77.078045, 38.906012 ], [ -77.077938, 38.905996 ], [ -77.077814, 38.905966 ], [ -77.077766, 38.905954 ], [ -77.077535, 38.905904 ], [ -77.077289, 38.905833 ], [ -77.076988, 38.905749 ], [ -77.076607, 38.905662 ], [ -77.076210, 38.905578 ], [ -77.076039, 38.905553 ], [ -77.075744, 38.905528 ], [ -77.075422, 38.905537 ], [ -77.074623, 38.905537 ], [ -77.074236, 38.905545 ], [ -77.074156, 38.905545 ], [ -77.074000, 38.905537 ], [ -77.073727, 38.905495 ], [ -77.072627, 38.905324 ], [ -77.072139, 38.905244 ], [ -77.071495, 38.905111 ], [ -77.071506, 38.905474 ], [ -77.071522, 38.905837 ], [ -77.071533, 38.905933 ], [ -77.071538, 38.906125 ], [ -77.071559, 38.906680 ], [ -77.071565, 38.906751 ], [ -77.071565, 38.906826 ], [ -77.071576, 38.906993 ], [ -77.071602, 38.907482 ], [ -77.071608, 38.907678 ], [ -77.071613, 38.907895 ], [ -77.071618, 38.908037 ], [ -77.071624, 38.908229 ], [ -77.071640, 38.908584 ], [ -77.071635, 38.908613 ], [ -77.071618, 38.908634 ], [ -77.071597, 38.908651 ], [ -77.071570, 38.908659 ], [ -77.071543, 38.908663 ], [ -77.071136, 38.908667 ], [ -77.070690, 38.908680 ], [ -77.070497, 38.908684 ], [ -77.070379, 38.908688 ], [ -77.070261, 38.908688 ], [ -77.069982, 38.908697 ], [ -77.069457, 38.908709 ], [ -77.069194, 38.908713 ], [ -77.069076, 38.908717 ], [ -77.069081, 38.908805 ], [ -77.069103, 38.909239 ], [ -77.069108, 38.909506 ], [ -77.069119, 38.909711 ], [ -77.069119, 38.909844 ], [ -77.069156, 38.910617 ], [ -77.069162, 38.910692 ], [ -77.069172, 38.910967 ], [ -77.069183, 38.911260 ], [ -77.069199, 38.911606 ], [ -77.069339, 38.911602 ], [ -77.073056, 38.911522 ], [ -77.073094, 38.912591 ], [ -77.072675, 38.912595 ], [ -77.071184, 38.912612 ], [ -77.071066, 38.912616 ], [ -77.070803, 38.912620 ], [ -77.069414, 38.912662 ], [ -77.069242, 38.912675 ], [ -77.069247, 38.912762 ], [ -77.069247, 38.912783 ], [ -77.069269, 38.913376 ], [ -77.069280, 38.913660 ], [ -77.069296, 38.913956 ], [ -77.069301, 38.914152 ], [ -77.069312, 38.914319 ], [ -77.069322, 38.914570 ], [ -77.069339, 38.914891 ], [ -77.069360, 38.915471 ], [ -77.069365, 38.915630 ], [ -77.069376, 38.915872 ], [ -77.069408, 38.916602 ], [ -77.069419, 38.916915 ], [ -77.069446, 38.917583 ], [ -77.069440, 38.917612 ], [ -77.069435, 38.917646 ], [ -77.069419, 38.917675 ], [ -77.069403, 38.917700 ], [ -77.069381, 38.917725 ], [ -77.069247, 38.917571 ], [ -77.068856, 38.917099 ], [ -77.068748, 38.916965 ], [ -77.068529, 38.916694 ], [ -77.068169, 38.916235 ], [ -77.068008, 38.916035 ], [ -77.067906, 38.915914 ], [ -77.067885, 38.915889 ], [ -77.067820, 38.915805 ], [ -77.067794, 38.915759 ], [ -77.067745, 38.915692 ], [ -77.067563, 38.915363 ], [ -77.067499, 38.915246 ], [ -77.067204, 38.914699 ], [ -77.067123, 38.914553 ], [ -77.066876, 38.914085 ], [ -77.066731, 38.913822 ], [ -77.066683, 38.913726 ], [ -77.066624, 38.913614 ], [ -77.066517, 38.913409 ], [ -77.066179, 38.912766 ], [ -77.066125, 38.912675 ], [ -77.066061, 38.912549 ], [ -77.066050, 38.912524 ], [ -77.066023, 38.912470 ], [ -77.065820, 38.912094 ], [ -77.065675, 38.911819 ], [ -77.065524, 38.911543 ], [ -77.065380, 38.911264 ], [ -77.065197, 38.910921 ], [ -77.065138, 38.910805 ], [ -77.065058, 38.910663 ], [ -77.064999, 38.910558 ], [ -77.064950, 38.910458 ], [ -77.064902, 38.910362 ], [ -77.064854, 38.910266 ], [ -77.064677, 38.909932 ], [ -77.064618, 38.909824 ], [ -77.064489, 38.909581 ], [ -77.064350, 38.909314 ], [ -77.064280, 38.909181 ], [ -77.064221, 38.909072 ], [ -77.064157, 38.908951 ], [ -77.064098, 38.908838 ], [ -77.063926, 38.908517 ], [ -77.063861, 38.908400 ], [ -77.063577, 38.907862 ], [ -77.063502, 38.907716 ], [ -77.063443, 38.907607 ], [ -77.063389, 38.907511 ], [ -77.063094, 38.906943 ], [ -77.063035, 38.906826 ], [ -77.062966, 38.906697 ], [ -77.062917, 38.906605 ], [ -77.062858, 38.906472 ], [ -77.062842, 38.906413 ], [ -77.062837, 38.906367 ], [ -77.062832, 38.906125 ], [ -77.062832, 38.906025 ], [ -77.062826, 38.905816 ], [ -77.062821, 38.905653 ], [ -77.062821, 38.905620 ], [ -77.062810, 38.905370 ], [ -77.062810, 38.905177 ], [ -77.062805, 38.905052 ], [ -77.062799, 38.904885 ], [ -77.062799, 38.904798 ], [ -77.062799, 38.904710 ], [ -77.062789, 38.904522 ], [ -77.062789, 38.904305 ], [ -77.062783, 38.904171 ], [ -77.062778, 38.903979 ], [ -77.062778, 38.903850 ], [ -77.062773, 38.903604 ], [ -77.062767, 38.903416 ], [ -77.062767, 38.903399 ], [ -77.062767, 38.903232 ], [ -77.062762, 38.903065 ], [ -77.062762, 38.903048 ], [ -77.062762, 38.903015 ], [ -77.062756, 38.902877 ], [ -77.062751, 38.902602 ], [ -77.062751, 38.902573 ], [ -77.062751, 38.902531 ], [ -77.062740, 38.902310 ], [ -77.062746, 38.902101 ], [ -77.062746, 38.902067 ], [ -77.062751, 38.902038 ], [ -77.062799, 38.901065 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000102", "GEOID": "11001000102", "NAME": "1.02", "NAMELSAD": "Census Tract 1.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1706484, "AWATER": 516665, "INTPTLAT": "+38.9054220", "INTPTLON": "-077.0620045" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.055917, 38.892999 ], [ -77.056239, 38.892953 ], [ -77.056952, 38.892820 ], [ -77.057633, 38.892703 ], [ -77.058926, 38.892503 ], [ -77.059345, 38.892432 ], [ -77.059677, 38.892373 ], [ -77.059811, 38.892352 ], [ -77.059892, 38.892340 ], [ -77.060047, 38.892315 ], [ -77.060369, 38.892260 ], [ -77.060536, 38.892231 ], [ -77.060916, 38.892160 ], [ -77.060997, 38.892148 ], [ -77.061512, 38.892060 ], [ -77.061726, 38.892027 ], [ -77.062123, 38.891960 ], [ -77.062461, 38.891901 ], [ -77.062504, 38.891897 ], [ -77.062547, 38.891889 ], [ -77.063019, 38.891809 ], [ -77.063250, 38.891776 ], [ -77.063411, 38.891764 ], [ -77.063545, 38.891755 ], [ -77.063636, 38.891751 ], [ -77.063754, 38.891751 ], [ -77.063985, 38.891755 ], [ -77.064162, 38.891772 ], [ -77.064344, 38.891797 ], [ -77.064623, 38.891839 ], [ -77.064693, 38.891851 ], [ -77.064698, 38.891885 ], [ -77.064698, 38.891897 ], [ -77.064688, 38.891922 ], [ -77.064688, 38.891939 ], [ -77.064688, 38.891956 ], [ -77.064688, 38.891968 ], [ -77.064688, 38.891976 ], [ -77.064688, 38.892014 ], [ -77.064688, 38.892035 ], [ -77.064693, 38.892052 ], [ -77.064693, 38.892064 ], [ -77.064698, 38.892077 ], [ -77.064704, 38.892102 ], [ -77.064704, 38.892114 ], [ -77.064709, 38.892139 ], [ -77.064725, 38.892227 ], [ -77.064741, 38.892256 ], [ -77.064747, 38.892285 ], [ -77.064731, 38.892323 ], [ -77.064709, 38.892344 ], [ -77.064698, 38.892356 ], [ -77.064693, 38.892377 ], [ -77.064714, 38.892477 ], [ -77.064752, 38.892586 ], [ -77.064768, 38.892607 ], [ -77.064790, 38.892624 ], [ -77.064811, 38.892644 ], [ -77.064822, 38.892665 ], [ -77.064832, 38.892690 ], [ -77.064838, 38.892711 ], [ -77.064832, 38.892749 ], [ -77.064838, 38.892778 ], [ -77.064854, 38.892828 ], [ -77.064859, 38.892849 ], [ -77.064865, 38.892874 ], [ -77.064908, 38.892995 ], [ -77.064950, 38.893108 ], [ -77.064999, 38.893254 ], [ -77.065009, 38.893296 ], [ -77.065026, 38.893329 ], [ -77.065047, 38.893375 ], [ -77.065063, 38.893413 ], [ -77.065085, 38.893446 ], [ -77.065101, 38.893484 ], [ -77.065111, 38.893505 ], [ -77.065122, 38.893534 ], [ -77.065127, 38.893559 ], [ -77.065154, 38.893605 ], [ -77.065176, 38.893638 ], [ -77.065197, 38.893667 ], [ -77.065224, 38.893730 ], [ -77.065246, 38.893755 ], [ -77.065267, 38.893776 ], [ -77.065283, 38.893793 ], [ -77.065305, 38.893809 ], [ -77.065331, 38.893843 ], [ -77.065337, 38.893868 ], [ -77.065358, 38.893901 ], [ -77.065380, 38.893935 ], [ -77.065396, 38.893964 ], [ -77.065465, 38.894052 ], [ -77.065514, 38.894139 ], [ -77.065567, 38.894227 ], [ -77.065610, 38.894302 ], [ -77.065696, 38.894461 ], [ -77.065787, 38.894540 ], [ -77.065814, 38.894553 ], [ -77.065852, 38.894561 ], [ -77.065884, 38.894553 ], [ -77.065911, 38.894536 ], [ -77.066002, 38.894532 ], [ -77.065986, 38.894603 ], [ -77.065948, 38.894628 ], [ -77.065932, 38.894640 ], [ -77.065905, 38.894661 ], [ -77.065884, 38.894690 ], [ -77.065873, 38.894720 ], [ -77.065900, 38.894832 ], [ -77.065943, 38.894887 ], [ -77.066023, 38.894987 ], [ -77.066104, 38.895104 ], [ -77.066168, 38.895221 ], [ -77.066195, 38.895262 ], [ -77.066211, 38.895292 ], [ -77.066227, 38.895321 ], [ -77.066259, 38.895375 ], [ -77.066275, 38.895400 ], [ -77.066286, 38.895429 ], [ -77.066302, 38.895467 ], [ -77.066313, 38.895492 ], [ -77.066329, 38.895517 ], [ -77.066340, 38.895542 ], [ -77.066345, 38.895559 ], [ -77.066351, 38.895575 ], [ -77.066367, 38.895630 ], [ -77.066372, 38.895651 ], [ -77.066377, 38.895671 ], [ -77.066399, 38.895722 ], [ -77.066431, 38.895772 ], [ -77.066442, 38.895797 ], [ -77.066453, 38.895830 ], [ -77.066463, 38.895851 ], [ -77.066479, 38.895880 ], [ -77.066501, 38.895901 ], [ -77.066528, 38.895943 ], [ -77.066538, 38.895968 ], [ -77.066549, 38.895985 ], [ -77.066571, 38.896018 ], [ -77.066587, 38.896039 ], [ -77.066608, 38.896072 ], [ -77.066624, 38.896106 ], [ -77.066640, 38.896135 ], [ -77.066662, 38.896177 ], [ -77.066683, 38.896214 ], [ -77.066694, 38.896231 ], [ -77.066705, 38.896248 ], [ -77.066710, 38.896269 ], [ -77.066737, 38.896314 ], [ -77.066753, 38.896352 ], [ -77.066780, 38.896406 ], [ -77.066801, 38.896444 ], [ -77.066817, 38.896477 ], [ -77.066833, 38.896498 ], [ -77.066855, 38.896536 ], [ -77.066892, 38.896586 ], [ -77.066908, 38.896619 ], [ -77.066919, 38.896636 ], [ -77.066930, 38.896657 ], [ -77.066941, 38.896673 ], [ -77.066951, 38.896699 ], [ -77.066967, 38.896724 ], [ -77.066973, 38.896744 ], [ -77.066984, 38.896765 ], [ -77.066994, 38.896790 ], [ -77.067010, 38.896811 ], [ -77.067021, 38.896836 ], [ -77.067037, 38.896857 ], [ -77.067048, 38.896882 ], [ -77.067064, 38.896903 ], [ -77.067080, 38.896928 ], [ -77.067091, 38.896949 ], [ -77.067107, 38.896974 ], [ -77.067118, 38.896999 ], [ -77.067134, 38.897024 ], [ -77.067150, 38.897045 ], [ -77.067161, 38.897070 ], [ -77.067171, 38.897091 ], [ -77.067182, 38.897108 ], [ -77.067193, 38.897133 ], [ -77.067204, 38.897149 ], [ -77.067220, 38.897162 ], [ -77.067214, 38.897229 ], [ -77.067246, 38.897296 ], [ -77.067252, 38.897312 ], [ -77.067257, 38.897333 ], [ -77.067263, 38.897354 ], [ -77.067268, 38.897371 ], [ -77.067273, 38.897392 ], [ -77.067279, 38.897408 ], [ -77.067284, 38.897429 ], [ -77.067289, 38.897450 ], [ -77.067295, 38.897475 ], [ -77.067300, 38.897492 ], [ -77.067300, 38.897525 ], [ -77.067305, 38.897546 ], [ -77.067305, 38.897567 ], [ -77.067311, 38.897584 ], [ -77.067311, 38.897605 ], [ -77.067316, 38.897634 ], [ -77.067316, 38.897663 ], [ -77.067322, 38.897692 ], [ -77.067322, 38.897717 ], [ -77.067327, 38.897751 ], [ -77.067332, 38.897784 ], [ -77.067343, 38.897817 ], [ -77.067348, 38.897838 ], [ -77.067354, 38.897855 ], [ -77.067364, 38.897888 ], [ -77.067386, 38.897913 ], [ -77.067402, 38.897939 ], [ -77.067418, 38.897964 ], [ -77.067429, 38.897984 ], [ -77.067440, 38.898001 ], [ -77.067456, 38.898022 ], [ -77.067456, 38.898051 ], [ -77.067461, 38.898080 ], [ -77.067466, 38.898097 ], [ -77.067493, 38.898101 ], [ -77.067504, 38.898085 ], [ -77.067520, 38.898068 ], [ -77.067547, 38.898055 ], [ -77.067568, 38.898047 ], [ -77.067590, 38.898093 ], [ -77.067563, 38.898106 ], [ -77.067525, 38.898118 ], [ -77.067488, 38.898135 ], [ -77.067472, 38.898151 ], [ -77.067466, 38.898181 ], [ -77.067461, 38.898214 ], [ -77.067466, 38.898231 ], [ -77.067472, 38.898252 ], [ -77.067477, 38.898268 ], [ -77.067482, 38.898289 ], [ -77.067493, 38.898323 ], [ -77.067509, 38.898356 ], [ -77.067515, 38.898377 ], [ -77.067525, 38.898394 ], [ -77.067536, 38.898414 ], [ -77.067547, 38.898431 ], [ -77.067558, 38.898460 ], [ -77.067568, 38.898494 ], [ -77.067579, 38.898523 ], [ -77.067584, 38.898556 ], [ -77.067590, 38.898573 ], [ -77.067595, 38.898607 ], [ -77.067600, 38.898640 ], [ -77.067600, 38.898673 ], [ -77.067606, 38.898690 ], [ -77.067611, 38.898723 ], [ -77.067611, 38.898757 ], [ -77.067611, 38.898774 ], [ -77.067611, 38.898794 ], [ -77.067617, 38.898828 ], [ -77.067617, 38.898844 ], [ -77.067617, 38.898874 ], [ -77.067617, 38.898907 ], [ -77.067611, 38.898945 ], [ -77.067606, 38.898961 ], [ -77.067595, 38.898982 ], [ -77.067584, 38.898999 ], [ -77.067568, 38.899028 ], [ -77.067552, 38.899057 ], [ -77.067536, 38.899078 ], [ -77.067531, 38.899128 ], [ -77.067568, 38.899229 ], [ -77.067579, 38.899245 ], [ -77.067590, 38.899266 ], [ -77.067600, 38.899283 ], [ -77.067617, 38.899304 ], [ -77.067627, 38.899325 ], [ -77.067638, 38.899345 ], [ -77.067649, 38.899366 ], [ -77.067659, 38.899387 ], [ -77.067670, 38.899408 ], [ -77.067681, 38.899425 ], [ -77.067686, 38.899441 ], [ -77.067697, 38.899462 ], [ -77.067708, 38.899479 ], [ -77.067719, 38.899500 ], [ -77.067740, 38.899533 ], [ -77.067820, 38.899608 ], [ -77.067847, 38.899621 ], [ -77.067869, 38.899629 ], [ -77.067890, 38.899642 ], [ -77.067917, 38.899650 ], [ -77.067944, 38.899659 ], [ -77.067971, 38.899667 ], [ -77.067992, 38.899675 ], [ -77.068014, 38.899684 ], [ -77.068051, 38.899709 ], [ -77.068067, 38.899721 ], [ -77.068083, 38.899738 ], [ -77.068094, 38.899755 ], [ -77.068110, 38.899775 ], [ -77.068132, 38.899796 ], [ -77.068148, 38.899813 ], [ -77.068158, 38.899834 ], [ -77.068158, 38.899855 ], [ -77.068158, 38.899876 ], [ -77.068158, 38.899892 ], [ -77.068158, 38.899922 ], [ -77.068207, 38.899951 ], [ -77.068244, 38.899963 ], [ -77.068260, 38.899976 ], [ -77.068282, 38.899988 ], [ -77.068303, 38.900001 ], [ -77.068319, 38.900018 ], [ -77.068335, 38.900030 ], [ -77.068352, 38.900051 ], [ -77.068368, 38.900068 ], [ -77.068378, 38.900080 ], [ -77.068394, 38.900097 ], [ -77.068411, 38.900114 ], [ -77.068427, 38.900130 ], [ -77.068448, 38.900147 ], [ -77.068464, 38.900164 ], [ -77.068486, 38.900176 ], [ -77.068512, 38.900193 ], [ -77.068534, 38.900210 ], [ -77.068555, 38.900226 ], [ -77.068577, 38.900243 ], [ -77.068598, 38.900256 ], [ -77.068614, 38.900272 ], [ -77.068636, 38.900289 ], [ -77.068663, 38.900306 ], [ -77.068689, 38.900322 ], [ -77.068716, 38.900339 ], [ -77.068743, 38.900356 ], [ -77.068765, 38.900368 ], [ -77.068791, 38.900385 ], [ -77.068818, 38.900406 ], [ -77.068845, 38.900423 ], [ -77.068872, 38.900435 ], [ -77.068893, 38.900452 ], [ -77.068920, 38.900464 ], [ -77.068942, 38.900477 ], [ -77.068963, 38.900485 ], [ -77.069006, 38.900498 ], [ -77.069027, 38.900502 ], [ -77.069054, 38.900506 ], [ -77.069097, 38.900514 ], [ -77.069119, 38.900519 ], [ -77.069156, 38.900535 ], [ -77.069188, 38.900552 ], [ -77.069263, 38.900581 ], [ -77.068711, 38.901015 ], [ -77.065932, 38.901128 ], [ -77.062799, 38.901065 ], [ -77.062751, 38.902038 ], [ -77.062746, 38.902067 ], [ -77.062746, 38.902101 ], [ -77.062740, 38.902310 ], [ -77.062751, 38.902531 ], [ -77.062751, 38.902573 ], [ -77.062751, 38.902602 ], [ -77.062756, 38.902877 ], [ -77.062762, 38.903015 ], [ -77.062762, 38.903048 ], [ -77.062762, 38.903065 ], [ -77.062767, 38.903232 ], [ -77.062767, 38.903399 ], [ -77.062767, 38.903416 ], [ -77.062773, 38.903604 ], [ -77.062778, 38.903850 ], [ -77.062778, 38.903979 ], [ -77.062783, 38.904171 ], [ -77.062789, 38.904305 ], [ -77.062789, 38.904522 ], [ -77.062799, 38.904710 ], [ -77.062799, 38.904798 ], [ -77.062799, 38.904885 ], [ -77.062805, 38.905052 ], [ -77.062810, 38.905177 ], [ -77.062810, 38.905370 ], [ -77.062821, 38.905620 ], [ -77.062821, 38.905653 ], [ -77.062826, 38.905816 ], [ -77.062832, 38.906025 ], [ -77.062832, 38.906125 ], [ -77.062837, 38.906367 ], [ -77.062842, 38.906413 ], [ -77.062858, 38.906472 ], [ -77.062917, 38.906605 ], [ -77.062966, 38.906697 ], [ -77.063035, 38.906826 ], [ -77.063094, 38.906943 ], [ -77.063389, 38.907511 ], [ -77.063443, 38.907607 ], [ -77.063502, 38.907716 ], [ -77.063577, 38.907862 ], [ -77.063861, 38.908400 ], [ -77.063926, 38.908517 ], [ -77.064098, 38.908838 ], [ -77.064157, 38.908951 ], [ -77.064221, 38.909072 ], [ -77.064280, 38.909181 ], [ -77.064350, 38.909314 ], [ -77.064489, 38.909581 ], [ -77.064618, 38.909824 ], [ -77.064677, 38.909932 ], [ -77.064854, 38.910266 ], [ -77.064902, 38.910362 ], [ -77.064950, 38.910458 ], [ -77.064999, 38.910558 ], [ -77.065058, 38.910663 ], [ -77.065138, 38.910805 ], [ -77.065197, 38.910921 ], [ -77.065380, 38.911264 ], [ -77.065524, 38.911543 ], [ -77.065675, 38.911819 ], [ -77.065820, 38.912094 ], [ -77.066023, 38.912470 ], [ -77.066050, 38.912524 ], [ -77.066061, 38.912549 ], [ -77.066125, 38.912675 ], [ -77.066179, 38.912766 ], [ -77.066517, 38.913409 ], [ -77.066624, 38.913614 ], [ -77.066683, 38.913726 ], [ -77.066731, 38.913822 ], [ -77.066876, 38.914085 ], [ -77.067123, 38.914553 ], [ -77.067204, 38.914699 ], [ -77.067499, 38.915246 ], [ -77.067563, 38.915363 ], [ -77.067745, 38.915692 ], [ -77.067794, 38.915759 ], [ -77.067820, 38.915805 ], [ -77.067885, 38.915889 ], [ -77.067906, 38.915914 ], [ -77.068008, 38.916035 ], [ -77.068169, 38.916235 ], [ -77.068529, 38.916694 ], [ -77.068748, 38.916965 ], [ -77.068604, 38.917028 ], [ -77.067922, 38.917349 ], [ -77.067611, 38.917495 ], [ -77.067590, 38.917508 ], [ -77.067493, 38.917566 ], [ -77.067472, 38.917583 ], [ -77.067413, 38.917633 ], [ -77.067397, 38.917654 ], [ -77.067381, 38.917679 ], [ -77.067375, 38.917704 ], [ -77.067381, 38.917733 ], [ -77.067386, 38.917758 ], [ -77.067311, 38.918643 ], [ -77.067252, 38.918643 ], [ -77.066892, 38.918656 ], [ -77.063819, 38.918447 ], [ -77.063550, 38.918426 ], [ -77.061448, 38.918389 ], [ -77.061190, 38.918380 ], [ -77.060943, 38.918376 ], [ -77.060412, 38.918359 ], [ -77.060063, 38.918347 ], [ -77.059720, 38.918339 ], [ -77.059473, 38.918330 ], [ -77.059361, 38.918326 ], [ -77.059323, 38.918326 ], [ -77.059082, 38.918313 ], [ -77.058889, 38.918184 ], [ -77.058792, 38.918113 ], [ -77.058486, 38.917888 ], [ -77.058358, 38.917792 ], [ -77.058315, 38.917763 ], [ -77.058256, 38.917717 ], [ -77.058197, 38.917675 ], [ -77.058288, 38.917600 ], [ -77.058331, 38.917550 ], [ -77.058358, 38.917512 ], [ -77.058379, 38.917479 ], [ -77.058417, 38.917408 ], [ -77.058465, 38.917345 ], [ -77.058486, 38.917312 ], [ -77.058508, 38.917270 ], [ -77.058545, 38.917212 ], [ -77.058567, 38.917145 ], [ -77.058583, 38.917099 ], [ -77.058599, 38.917057 ], [ -77.058626, 38.916961 ], [ -77.058637, 38.916899 ], [ -77.058669, 38.916744 ], [ -77.058679, 38.916690 ], [ -77.058701, 38.916631 ], [ -77.058712, 38.916590 ], [ -77.058728, 38.916510 ], [ -77.058771, 38.916394 ], [ -77.058781, 38.916343 ], [ -77.058792, 38.916302 ], [ -77.058797, 38.916243 ], [ -77.058797, 38.916176 ], [ -77.058797, 38.916081 ], [ -77.058792, 38.916055 ], [ -77.058781, 38.916022 ], [ -77.058765, 38.915972 ], [ -77.058765, 38.915926 ], [ -77.058776, 38.915880 ], [ -77.058797, 38.915834 ], [ -77.058803, 38.915805 ], [ -77.058808, 38.915751 ], [ -77.058797, 38.915713 ], [ -77.058776, 38.915642 ], [ -77.058755, 38.915596 ], [ -77.058744, 38.915567 ], [ -77.058717, 38.915530 ], [ -77.058679, 38.915488 ], [ -77.058658, 38.915467 ], [ -77.058626, 38.915442 ], [ -77.058567, 38.915425 ], [ -77.058476, 38.915409 ], [ -77.058438, 38.915396 ], [ -77.058401, 38.915375 ], [ -77.058309, 38.915304 ], [ -77.058256, 38.915258 ], [ -77.058218, 38.915221 ], [ -77.058138, 38.915137 ], [ -77.058057, 38.915079 ], [ -77.058014, 38.915041 ], [ -77.057982, 38.915012 ], [ -77.057955, 38.914991 ], [ -77.057875, 38.914937 ], [ -77.057837, 38.914908 ], [ -77.057784, 38.914870 ], [ -77.057725, 38.914824 ], [ -77.057687, 38.914799 ], [ -77.057612, 38.914741 ], [ -77.057531, 38.914686 ], [ -77.057499, 38.914661 ], [ -77.057446, 38.914624 ], [ -77.057403, 38.914595 ], [ -77.057338, 38.914553 ], [ -77.057285, 38.914519 ], [ -77.057247, 38.914503 ], [ -77.057210, 38.914482 ], [ -77.057177, 38.914457 ], [ -77.057145, 38.914436 ], [ -77.057113, 38.914411 ], [ -77.057081, 38.914390 ], [ -77.057022, 38.914357 ], [ -77.056957, 38.914319 ], [ -77.056829, 38.914248 ], [ -77.056743, 38.914206 ], [ -77.056700, 38.914186 ], [ -77.056668, 38.914165 ], [ -77.056630, 38.914135 ], [ -77.056561, 38.914090 ], [ -77.056475, 38.914052 ], [ -77.056442, 38.914035 ], [ -77.056319, 38.913985 ], [ -77.056249, 38.913939 ], [ -77.056190, 38.913889 ], [ -77.056158, 38.913856 ], [ -77.056131, 38.913827 ], [ -77.056115, 38.913793 ], [ -77.056083, 38.913760 ], [ -77.056062, 38.913735 ], [ -77.056029, 38.913710 ], [ -77.055976, 38.913672 ], [ -77.055922, 38.913643 ], [ -77.055836, 38.913601 ], [ -77.055777, 38.913576 ], [ -77.055740, 38.913555 ], [ -77.055627, 38.913476 ], [ -77.055600, 38.913451 ], [ -77.055557, 38.913409 ], [ -77.055531, 38.913384 ], [ -77.055493, 38.913359 ], [ -77.055477, 38.913338 ], [ -77.055455, 38.913305 ], [ -77.055418, 38.913255 ], [ -77.055396, 38.913226 ], [ -77.055375, 38.913200 ], [ -77.055343, 38.913171 ], [ -77.055321, 38.913142 ], [ -77.055284, 38.913096 ], [ -77.055236, 38.913046 ], [ -77.055182, 38.912992 ], [ -77.055085, 38.912938 ], [ -77.054989, 38.912883 ], [ -77.054892, 38.912837 ], [ -77.054839, 38.912821 ], [ -77.054721, 38.912783 ], [ -77.054613, 38.912741 ], [ -77.054565, 38.912725 ], [ -77.054527, 38.912712 ], [ -77.054495, 38.912695 ], [ -77.054361, 38.912645 ], [ -77.054318, 38.912633 ], [ -77.054265, 38.912624 ], [ -77.054216, 38.912608 ], [ -77.054109, 38.912570 ], [ -77.054061, 38.912558 ], [ -77.053959, 38.912524 ], [ -77.053825, 38.912487 ], [ -77.053782, 38.912470 ], [ -77.053696, 38.912441 ], [ -77.053642, 38.912424 ], [ -77.053487, 38.912387 ], [ -77.053401, 38.912353 ], [ -77.053261, 38.912311 ], [ -77.053127, 38.912261 ], [ -77.053084, 38.912253 ], [ -77.053041, 38.912240 ], [ -77.053004, 38.912224 ], [ -77.052966, 38.912211 ], [ -77.052940, 38.912199 ], [ -77.052848, 38.912161 ], [ -77.052800, 38.912140 ], [ -77.052757, 38.912119 ], [ -77.052714, 38.912099 ], [ -77.052671, 38.912073 ], [ -77.052521, 38.911994 ], [ -77.052489, 38.911969 ], [ -77.052462, 38.911948 ], [ -77.052349, 38.911852 ], [ -77.052274, 38.911785 ], [ -77.052237, 38.911756 ], [ -77.052205, 38.911731 ], [ -77.052103, 38.911648 ], [ -77.052065, 38.911623 ], [ -77.052044, 38.911602 ], [ -77.052022, 38.911577 ], [ -77.051985, 38.911552 ], [ -77.051947, 38.911539 ], [ -77.051845, 38.911464 ], [ -77.051802, 38.911435 ], [ -77.051759, 38.911410 ], [ -77.051716, 38.911381 ], [ -77.051679, 38.911351 ], [ -77.051609, 38.911280 ], [ -77.051523, 38.911205 ], [ -77.051454, 38.911134 ], [ -77.051411, 38.911093 ], [ -77.051336, 38.911017 ], [ -77.051303, 38.910980 ], [ -77.051266, 38.910938 ], [ -77.051239, 38.910901 ], [ -77.051207, 38.910859 ], [ -77.051148, 38.910800 ], [ -77.051201, 38.910775 ], [ -77.051255, 38.910754 ], [ -77.051352, 38.910717 ], [ -77.051411, 38.910700 ], [ -77.051507, 38.910671 ], [ -77.051733, 38.910625 ], [ -77.051781, 38.910621 ], [ -77.051834, 38.910617 ], [ -77.052028, 38.910608 ], [ -77.052564, 38.910604 ], [ -77.052988, 38.910600 ], [ -77.053369, 38.910592 ], [ -77.054232, 38.910583 ], [ -77.054586, 38.910579 ], [ -77.054822, 38.910579 ], [ -77.054962, 38.910575 ], [ -77.055230, 38.910575 ], [ -77.056003, 38.910562 ], [ -77.056330, 38.910558 ], [ -77.056652, 38.910558 ], [ -77.057016, 38.910550 ], [ -77.057135, 38.910546 ], [ -77.057135, 38.910433 ], [ -77.057129, 38.910124 ], [ -77.057129, 38.909899 ], [ -77.057118, 38.909607 ], [ -77.057108, 38.909344 ], [ -77.057102, 38.909076 ], [ -77.057097, 38.908838 ], [ -77.057092, 38.908601 ], [ -77.057092, 38.908521 ], [ -77.057076, 38.908200 ], [ -77.057065, 38.907903 ], [ -77.057070, 38.907774 ], [ -77.057070, 38.907691 ], [ -77.057065, 38.907549 ], [ -77.057070, 38.907352 ], [ -77.057059, 38.907102 ], [ -77.057059, 38.906864 ], [ -77.057049, 38.906317 ], [ -77.057038, 38.906088 ], [ -77.057033, 38.905887 ], [ -77.057033, 38.905607 ], [ -77.057022, 38.905415 ], [ -77.057016, 38.905336 ], [ -77.057011, 38.905232 ], [ -77.056898, 38.905236 ], [ -77.056764, 38.905244 ], [ -77.056507, 38.905253 ], [ -77.056067, 38.905257 ], [ -77.055922, 38.905253 ], [ -77.055788, 38.905253 ], [ -77.055718, 38.905253 ], [ -77.055488, 38.905253 ], [ -77.055429, 38.905253 ], [ -77.055590, 38.905011 ], [ -77.055713, 38.904835 ], [ -77.055858, 38.904677 ], [ -77.055949, 38.904547 ], [ -77.056206, 38.904213 ], [ -77.056383, 38.903988 ], [ -77.056464, 38.903908 ], [ -77.056518, 38.903892 ], [ -77.056566, 38.903833 ], [ -77.056652, 38.903775 ], [ -77.056716, 38.903729 ], [ -77.056786, 38.903662 ], [ -77.056823, 38.903637 ], [ -77.056850, 38.903608 ], [ -77.057263, 38.903103 ], [ -77.057381, 38.902957 ], [ -77.057558, 38.902752 ], [ -77.057612, 38.902648 ], [ -77.057666, 38.902543 ], [ -77.057751, 38.902485 ], [ -77.057800, 38.902410 ], [ -77.057853, 38.902335 ], [ -77.057891, 38.902276 ], [ -77.057982, 38.902318 ], [ -77.057993, 38.902285 ], [ -77.058020, 38.902222 ], [ -77.058073, 38.902188 ], [ -77.058138, 38.902126 ], [ -77.058207, 38.902030 ], [ -77.058250, 38.901976 ], [ -77.058266, 38.901951 ], [ -77.058299, 38.901900 ], [ -77.058342, 38.901834 ], [ -77.058363, 38.901813 ], [ -77.058374, 38.901788 ], [ -77.058401, 38.901750 ], [ -77.058417, 38.901725 ], [ -77.058470, 38.901625 ], [ -77.058502, 38.901575 ], [ -77.058513, 38.901550 ], [ -77.058545, 38.901500 ], [ -77.058556, 38.901470 ], [ -77.058567, 38.901441 ], [ -77.058572, 38.901416 ], [ -77.058578, 38.901387 ], [ -77.058583, 38.901358 ], [ -77.058594, 38.901333 ], [ -77.058594, 38.901287 ], [ -77.058594, 38.901249 ], [ -77.058583, 38.901228 ], [ -77.058572, 38.901212 ], [ -77.058561, 38.901195 ], [ -77.058578, 38.901162 ], [ -77.058535, 38.901036 ], [ -77.058427, 38.900936 ], [ -77.058401, 38.900911 ], [ -77.058352, 38.900886 ], [ -77.058282, 38.900823 ], [ -77.058245, 38.900790 ], [ -77.058181, 38.900744 ], [ -77.058164, 38.900731 ], [ -77.058122, 38.900702 ], [ -77.058084, 38.900681 ], [ -77.058041, 38.900648 ], [ -77.057993, 38.900623 ], [ -77.057923, 38.900577 ], [ -77.057864, 38.900535 ], [ -77.057832, 38.900514 ], [ -77.057773, 38.900473 ], [ -77.057741, 38.900452 ], [ -77.057719, 38.900435 ], [ -77.057692, 38.900414 ], [ -77.057649, 38.900377 ], [ -77.057633, 38.900364 ], [ -77.057612, 38.900343 ], [ -77.057580, 38.900322 ], [ -77.057531, 38.900285 ], [ -77.057499, 38.900243 ], [ -77.057451, 38.900193 ], [ -77.057435, 38.900172 ], [ -77.057424, 38.900155 ], [ -77.057408, 38.900135 ], [ -77.057387, 38.900101 ], [ -77.057376, 38.900064 ], [ -77.057376, 38.900022 ], [ -77.057376, 38.900001 ], [ -77.057387, 38.899942 ], [ -77.057392, 38.899909 ], [ -77.057403, 38.899871 ], [ -77.057419, 38.899821 ], [ -77.057430, 38.899792 ], [ -77.057451, 38.899759 ], [ -77.057462, 38.899738 ], [ -77.057483, 38.899709 ], [ -77.057430, 38.899667 ], [ -77.057295, 38.899567 ], [ -77.057322, 38.899529 ], [ -77.057354, 38.899487 ], [ -77.057371, 38.899462 ], [ -77.057376, 38.899437 ], [ -77.057387, 38.899421 ], [ -77.057392, 38.899387 ], [ -77.057392, 38.899371 ], [ -77.057381, 38.899354 ], [ -77.057354, 38.899341 ], [ -77.057344, 38.899329 ], [ -77.057349, 38.899304 ], [ -77.057145, 38.899028 ], [ -77.057124, 38.899045 ], [ -77.057016, 38.898928 ], [ -77.056888, 38.898811 ], [ -77.056856, 38.898765 ], [ -77.056834, 38.898740 ], [ -77.056780, 38.898690 ], [ -77.056748, 38.898661 ], [ -77.056732, 38.898648 ], [ -77.056700, 38.898607 ], [ -77.056684, 38.898586 ], [ -77.056673, 38.898565 ], [ -77.056657, 38.898540 ], [ -77.056641, 38.898481 ], [ -77.056630, 38.898452 ], [ -77.056625, 38.898389 ], [ -77.056646, 38.897855 ], [ -77.056652, 38.897667 ], [ -77.056684, 38.896707 ], [ -77.056695, 38.896536 ], [ -77.056700, 38.896243 ], [ -77.056700, 38.895605 ], [ -77.056705, 38.895513 ], [ -77.056700, 38.895333 ], [ -77.056695, 38.895216 ], [ -77.056684, 38.895133 ], [ -77.056673, 38.895016 ], [ -77.056652, 38.894903 ], [ -77.056636, 38.894791 ], [ -77.056620, 38.894732 ], [ -77.056609, 38.894678 ], [ -77.056587, 38.894603 ], [ -77.056561, 38.894515 ], [ -77.056544, 38.894469 ], [ -77.056518, 38.894386 ], [ -77.056480, 38.894298 ], [ -77.056459, 38.894256 ], [ -77.056437, 38.894214 ], [ -77.056292, 38.893885 ], [ -77.056180, 38.893634 ], [ -77.056153, 38.893563 ], [ -77.055938, 38.893083 ], [ -77.055917, 38.892999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000101", "GEOID": "11001000101", "NAME": "1.01", "NAMELSAD": "Census Tract 1.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 199776, "AWATER": 5261, "INTPTLAT": "+38.9076994", "INTPTLON": "-077.0547765" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.051201, 38.910775 ], [ -77.050681, 38.910212 ], [ -77.050375, 38.909924 ], [ -77.050096, 38.909736 ], [ -77.050080, 38.909636 ], [ -77.050064, 38.909490 ], [ -77.050102, 38.909373 ], [ -77.050236, 38.909189 ], [ -77.050413, 38.909056 ], [ -77.050692, 38.908922 ], [ -77.051057, 38.908818 ], [ -77.051566, 38.908734 ], [ -77.052087, 38.908801 ], [ -77.052532, 38.908834 ], [ -77.052703, 38.908826 ], [ -77.052805, 38.908813 ], [ -77.052940, 38.908788 ], [ -77.053133, 38.908709 ], [ -77.053385, 38.908559 ], [ -77.053556, 38.908442 ], [ -77.053685, 38.908216 ], [ -77.053835, 38.907987 ], [ -77.054012, 38.907816 ], [ -77.054195, 38.907653 ], [ -77.054318, 38.907498 ], [ -77.054468, 38.907223 ], [ -77.054501, 38.907102 ], [ -77.054538, 38.907048 ], [ -77.054662, 38.906714 ], [ -77.054822, 38.906346 ], [ -77.055042, 38.905929 ], [ -77.055209, 38.905628 ], [ -77.055429, 38.905253 ], [ -77.055488, 38.905253 ], [ -77.055718, 38.905253 ], [ -77.055788, 38.905253 ], [ -77.055922, 38.905253 ], [ -77.056067, 38.905257 ], [ -77.056507, 38.905253 ], [ -77.056764, 38.905244 ], [ -77.056898, 38.905236 ], [ -77.057011, 38.905232 ], [ -77.057016, 38.905336 ], [ -77.057022, 38.905415 ], [ -77.057033, 38.905607 ], [ -77.057033, 38.905887 ], [ -77.057038, 38.906088 ], [ -77.057049, 38.906317 ], [ -77.057059, 38.906864 ], [ -77.057059, 38.907102 ], [ -77.057070, 38.907352 ], [ -77.057065, 38.907549 ], [ -77.057070, 38.907691 ], [ -77.057070, 38.907774 ], [ -77.057065, 38.907903 ], [ -77.057076, 38.908200 ], [ -77.057092, 38.908521 ], [ -77.057092, 38.908601 ], [ -77.057097, 38.908838 ], [ -77.057102, 38.909076 ], [ -77.057108, 38.909344 ], [ -77.057118, 38.909607 ], [ -77.057129, 38.909899 ], [ -77.057129, 38.910124 ], [ -77.057135, 38.910433 ], [ -77.057135, 38.910546 ], [ -77.057016, 38.910550 ], [ -77.056652, 38.910558 ], [ -77.056330, 38.910558 ], [ -77.056003, 38.910562 ], [ -77.055230, 38.910575 ], [ -77.054962, 38.910575 ], [ -77.054822, 38.910579 ], [ -77.054586, 38.910579 ], [ -77.054232, 38.910583 ], [ -77.053369, 38.910592 ], [ -77.052988, 38.910600 ], [ -77.052564, 38.910604 ], [ -77.052028, 38.910608 ], [ -77.051834, 38.910617 ], [ -77.051781, 38.910621 ], [ -77.051733, 38.910625 ], [ -77.051507, 38.910671 ], [ -77.051411, 38.910700 ], [ -77.051352, 38.910717 ], [ -77.051255, 38.910754 ], [ -77.051201, 38.910775 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004100", "GEOID": "11001004100", "NAME": "41", "NAMELSAD": "Census Tract 41", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 788701, "AWATER": 7303, "INTPTLAT": "+38.9159337", "INTPTLON": "-077.0516151" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.050177, 38.921239 ], [ -77.050129, 38.921156 ], [ -77.049946, 38.920843 ], [ -77.049184, 38.919532 ], [ -77.049147, 38.919465 ], [ -77.049120, 38.919420 ], [ -77.049056, 38.919324 ], [ -77.049024, 38.919265 ], [ -77.049007, 38.919232 ], [ -77.048954, 38.919140 ], [ -77.048938, 38.919111 ], [ -77.048868, 38.918985 ], [ -77.048814, 38.918923 ], [ -77.048798, 38.918906 ], [ -77.048745, 38.918869 ], [ -77.048728, 38.918852 ], [ -77.048686, 38.918823 ], [ -77.048648, 38.918810 ], [ -77.048605, 38.918798 ], [ -77.048519, 38.918773 ], [ -77.048460, 38.918760 ], [ -77.048310, 38.918718 ], [ -77.048230, 38.918693 ], [ -77.048171, 38.918672 ], [ -77.047935, 38.918614 ], [ -77.047859, 38.918593 ], [ -77.047811, 38.918581 ], [ -77.047784, 38.918572 ], [ -77.047731, 38.918547 ], [ -77.047709, 38.918531 ], [ -77.047688, 38.918518 ], [ -77.047645, 38.918485 ], [ -77.047629, 38.918468 ], [ -77.047597, 38.918430 ], [ -77.047564, 38.918393 ], [ -77.047521, 38.918305 ], [ -77.047232, 38.917742 ], [ -77.047023, 38.917333 ], [ -77.046985, 38.917249 ], [ -77.046770, 38.916836 ], [ -77.046738, 38.916769 ], [ -77.046701, 38.916702 ], [ -77.046690, 38.916682 ], [ -77.046593, 38.916515 ], [ -77.046486, 38.916398 ], [ -77.046400, 38.916289 ], [ -77.046282, 38.915993 ], [ -77.046223, 38.915838 ], [ -77.046207, 38.915296 ], [ -77.046186, 38.914841 ], [ -77.046186, 38.914762 ], [ -77.046084, 38.914436 ], [ -77.046164, 38.914378 ], [ -77.046234, 38.914332 ], [ -77.046363, 38.914223 ], [ -77.046390, 38.914206 ], [ -77.046572, 38.914031 ], [ -77.046631, 38.913977 ], [ -77.046647, 38.913956 ], [ -77.046787, 38.913835 ], [ -77.046819, 38.913810 ], [ -77.046851, 38.913781 ], [ -77.046862, 38.913768 ], [ -77.046888, 38.913735 ], [ -77.046910, 38.913701 ], [ -77.046915, 38.913685 ], [ -77.046947, 38.913630 ], [ -77.046980, 38.913572 ], [ -77.047006, 38.913514 ], [ -77.047119, 38.913313 ], [ -77.047259, 38.913071 ], [ -77.047446, 38.912737 ], [ -77.047473, 38.912695 ], [ -77.047521, 38.912637 ], [ -77.047548, 38.912608 ], [ -77.047591, 38.912566 ], [ -77.047704, 38.912449 ], [ -77.047752, 38.912403 ], [ -77.047876, 38.912265 ], [ -77.047972, 38.912161 ], [ -77.048026, 38.912111 ], [ -77.048106, 38.912036 ], [ -77.048133, 38.912015 ], [ -77.048192, 38.911969 ], [ -77.048444, 38.911773 ], [ -77.048482, 38.911748 ], [ -77.048610, 38.911644 ], [ -77.048669, 38.911598 ], [ -77.048787, 38.911502 ], [ -77.048728, 38.911414 ], [ -77.048734, 38.911272 ], [ -77.048745, 38.911130 ], [ -77.048745, 38.911105 ], [ -77.048745, 38.910930 ], [ -77.048771, 38.910704 ], [ -77.048777, 38.910625 ], [ -77.048787, 38.910508 ], [ -77.048793, 38.910412 ], [ -77.048793, 38.910324 ], [ -77.048793, 38.910212 ], [ -77.048793, 38.910124 ], [ -77.048793, 38.909732 ], [ -77.048793, 38.909636 ], [ -77.048900, 38.909636 ], [ -77.049340, 38.909636 ], [ -77.049528, 38.909636 ], [ -77.049968, 38.909636 ], [ -77.050080, 38.909636 ], [ -77.050096, 38.909736 ], [ -77.050375, 38.909924 ], [ -77.050681, 38.910212 ], [ -77.051201, 38.910775 ], [ -77.051148, 38.910800 ], [ -77.051207, 38.910859 ], [ -77.051239, 38.910901 ], [ -77.051266, 38.910938 ], [ -77.051303, 38.910980 ], [ -77.051336, 38.911017 ], [ -77.051411, 38.911093 ], [ -77.051454, 38.911134 ], [ -77.051523, 38.911205 ], [ -77.051609, 38.911280 ], [ -77.051679, 38.911351 ], [ -77.051716, 38.911381 ], [ -77.051759, 38.911410 ], [ -77.051802, 38.911435 ], [ -77.051845, 38.911464 ], [ -77.051947, 38.911539 ], [ -77.051985, 38.911552 ], [ -77.052022, 38.911577 ], [ -77.052044, 38.911602 ], [ -77.052065, 38.911623 ], [ -77.052103, 38.911648 ], [ -77.052205, 38.911731 ], [ -77.052237, 38.911756 ], [ -77.052274, 38.911785 ], [ -77.052349, 38.911852 ], [ -77.052462, 38.911948 ], [ -77.052489, 38.911969 ], [ -77.052521, 38.911994 ], [ -77.052671, 38.912073 ], [ -77.052714, 38.912099 ], [ -77.052757, 38.912119 ], [ -77.052800, 38.912140 ], [ -77.052848, 38.912161 ], [ -77.052940, 38.912199 ], [ -77.052966, 38.912211 ], [ -77.053004, 38.912224 ], [ -77.053041, 38.912240 ], [ -77.053084, 38.912253 ], [ -77.053127, 38.912261 ], [ -77.053261, 38.912311 ], [ -77.053401, 38.912353 ], [ -77.053487, 38.912387 ], [ -77.053642, 38.912424 ], [ -77.053696, 38.912441 ], [ -77.053782, 38.912470 ], [ -77.053825, 38.912487 ], [ -77.053959, 38.912524 ], [ -77.054061, 38.912558 ], [ -77.054109, 38.912570 ], [ -77.054216, 38.912608 ], [ -77.054265, 38.912624 ], [ -77.054318, 38.912633 ], [ -77.054361, 38.912645 ], [ -77.054495, 38.912695 ], [ -77.054527, 38.912712 ], [ -77.054565, 38.912725 ], [ -77.054613, 38.912741 ], [ -77.054721, 38.912783 ], [ -77.054839, 38.912821 ], [ -77.054892, 38.912837 ], [ -77.054989, 38.912883 ], [ -77.055085, 38.912938 ], [ -77.055182, 38.912992 ], [ -77.055236, 38.913046 ], [ -77.055284, 38.913096 ], [ -77.055321, 38.913142 ], [ -77.055343, 38.913171 ], [ -77.055375, 38.913200 ], [ -77.055396, 38.913226 ], [ -77.055418, 38.913255 ], [ -77.055455, 38.913305 ], [ -77.055477, 38.913338 ], [ -77.055493, 38.913359 ], [ -77.055531, 38.913384 ], [ -77.055557, 38.913409 ], [ -77.055600, 38.913451 ], [ -77.055627, 38.913476 ], [ -77.055740, 38.913555 ], [ -77.055777, 38.913576 ], [ -77.055836, 38.913601 ], [ -77.055922, 38.913643 ], [ -77.055976, 38.913672 ], [ -77.056029, 38.913710 ], [ -77.056062, 38.913735 ], [ -77.056083, 38.913760 ], [ -77.056115, 38.913793 ], [ -77.056131, 38.913827 ], [ -77.056158, 38.913856 ], [ -77.056190, 38.913889 ], [ -77.056249, 38.913939 ], [ -77.056319, 38.913985 ], [ -77.056442, 38.914035 ], [ -77.056475, 38.914052 ], [ -77.056561, 38.914090 ], [ -77.056630, 38.914135 ], [ -77.056668, 38.914165 ], [ -77.056700, 38.914186 ], [ -77.056743, 38.914206 ], [ -77.056829, 38.914248 ], [ -77.056957, 38.914319 ], [ -77.057022, 38.914357 ], [ -77.057081, 38.914390 ], [ -77.057113, 38.914411 ], [ -77.057145, 38.914436 ], [ -77.057177, 38.914457 ], [ -77.057210, 38.914482 ], [ -77.057247, 38.914503 ], [ -77.057285, 38.914519 ], [ -77.057338, 38.914553 ], [ -77.057403, 38.914595 ], [ -77.057446, 38.914624 ], [ -77.057499, 38.914661 ], [ -77.057531, 38.914686 ], [ -77.057612, 38.914741 ], [ -77.057687, 38.914799 ], [ -77.057725, 38.914824 ], [ -77.057784, 38.914870 ], [ -77.057837, 38.914908 ], [ -77.057875, 38.914937 ], [ -77.057955, 38.914991 ], [ -77.057982, 38.915012 ], [ -77.058014, 38.915041 ], [ -77.058057, 38.915079 ], [ -77.058138, 38.915137 ], [ -77.058218, 38.915221 ], [ -77.058256, 38.915258 ], [ -77.058309, 38.915304 ], [ -77.058401, 38.915375 ], [ -77.058438, 38.915396 ], [ -77.058476, 38.915409 ], [ -77.058567, 38.915425 ], [ -77.058626, 38.915442 ], [ -77.058658, 38.915467 ], [ -77.058679, 38.915488 ], [ -77.058717, 38.915530 ], [ -77.058744, 38.915567 ], [ -77.058755, 38.915596 ], [ -77.058776, 38.915642 ], [ -77.058797, 38.915713 ], [ -77.058808, 38.915751 ], [ -77.058803, 38.915805 ], [ -77.058797, 38.915834 ], [ -77.058776, 38.915880 ], [ -77.058765, 38.915926 ], [ -77.058765, 38.915972 ], [ -77.058781, 38.916022 ], [ -77.058792, 38.916055 ], [ -77.058797, 38.916081 ], [ -77.058797, 38.916176 ], [ -77.058797, 38.916243 ], [ -77.058792, 38.916302 ], [ -77.058781, 38.916343 ], [ -77.058771, 38.916394 ], [ -77.058728, 38.916510 ], [ -77.058712, 38.916590 ], [ -77.058701, 38.916631 ], [ -77.058679, 38.916690 ], [ -77.058669, 38.916744 ], [ -77.058637, 38.916899 ], [ -77.058626, 38.916961 ], [ -77.058599, 38.917057 ], [ -77.058583, 38.917099 ], [ -77.058567, 38.917145 ], [ -77.058545, 38.917212 ], [ -77.058508, 38.917270 ], [ -77.058486, 38.917312 ], [ -77.058465, 38.917345 ], [ -77.058417, 38.917408 ], [ -77.058379, 38.917479 ], [ -77.058358, 38.917512 ], [ -77.058331, 38.917550 ], [ -77.058288, 38.917600 ], [ -77.058197, 38.917675 ], [ -77.058256, 38.917717 ], [ -77.057966, 38.917980 ], [ -77.057875, 38.918042 ], [ -77.057709, 38.918151 ], [ -77.057478, 38.918272 ], [ -77.057242, 38.918393 ], [ -77.057108, 38.918455 ], [ -77.057016, 38.918480 ], [ -77.056861, 38.918510 ], [ -77.056582, 38.918564 ], [ -77.056330, 38.918601 ], [ -77.056180, 38.918647 ], [ -77.056040, 38.918697 ], [ -77.055606, 38.918881 ], [ -77.055466, 38.918956 ], [ -77.055321, 38.919036 ], [ -77.055193, 38.919144 ], [ -77.055155, 38.919182 ], [ -77.055128, 38.919236 ], [ -77.055080, 38.919340 ], [ -77.055026, 38.919432 ], [ -77.054935, 38.919620 ], [ -77.054914, 38.919666 ], [ -77.054849, 38.919741 ], [ -77.054726, 38.919841 ], [ -77.054651, 38.919895 ], [ -77.054576, 38.919929 ], [ -77.054501, 38.919945 ], [ -77.054248, 38.919991 ], [ -77.054082, 38.920016 ], [ -77.053857, 38.920046 ], [ -77.053685, 38.920054 ], [ -77.053589, 38.920058 ], [ -77.053481, 38.920079 ], [ -77.053358, 38.920096 ], [ -77.053251, 38.920091 ], [ -77.053106, 38.920066 ], [ -77.053025, 38.920050 ], [ -77.053009, 38.920037 ], [ -77.052902, 38.919987 ], [ -77.052848, 38.919958 ], [ -77.052768, 38.919925 ], [ -77.052548, 38.919812 ], [ -77.052382, 38.919716 ], [ -77.052221, 38.919612 ], [ -77.052124, 38.919603 ], [ -77.051958, 38.919582 ], [ -77.051845, 38.919578 ], [ -77.051620, 38.919645 ], [ -77.051352, 38.919733 ], [ -77.051223, 38.919778 ], [ -77.051121, 38.919849 ], [ -77.051067, 38.919879 ], [ -77.051003, 38.919937 ], [ -77.050917, 38.920096 ], [ -77.050783, 38.920346 ], [ -77.050654, 38.920567 ], [ -77.050617, 38.920638 ], [ -77.050552, 38.920709 ], [ -77.050483, 38.920763 ], [ -77.050408, 38.920830 ], [ -77.050365, 38.920884 ], [ -77.050343, 38.920926 ], [ -77.050252, 38.921114 ], [ -77.050177, 38.921239 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004001", "GEOID": "11001004001", "NAME": "40.01", "NAMELSAD": "Census Tract 40.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 271037, "AWATER": 2414, "INTPTLAT": "+38.9208738", "INTPTLON": "-077.0462674" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.043182, 38.923205 ], [ -77.043155, 38.923192 ], [ -77.043101, 38.923172 ], [ -77.043031, 38.923138 ], [ -77.043005, 38.923121 ], [ -77.042913, 38.923067 ], [ -77.042892, 38.923046 ], [ -77.042865, 38.923025 ], [ -77.042838, 38.923000 ], [ -77.042801, 38.922955 ], [ -77.042779, 38.922925 ], [ -77.042763, 38.922900 ], [ -77.042753, 38.922875 ], [ -77.042736, 38.922846 ], [ -77.042726, 38.922821 ], [ -77.042683, 38.922662 ], [ -77.042967, 38.922479 ], [ -77.043010, 38.922454 ], [ -77.043048, 38.922425 ], [ -77.043085, 38.922395 ], [ -77.043117, 38.922362 ], [ -77.043139, 38.922333 ], [ -77.043171, 38.922295 ], [ -77.043235, 38.922187 ], [ -77.043278, 38.922103 ], [ -77.043316, 38.922020 ], [ -77.043450, 38.921707 ], [ -77.043573, 38.921406 ], [ -77.043702, 38.921110 ], [ -77.043707, 38.921093 ], [ -77.043884, 38.920684 ], [ -77.043927, 38.920588 ], [ -77.044029, 38.920375 ], [ -77.044297, 38.919833 ], [ -77.044356, 38.919724 ], [ -77.044394, 38.919666 ], [ -77.044405, 38.919645 ], [ -77.044432, 38.919603 ], [ -77.044780, 38.919052 ], [ -77.045204, 38.918384 ], [ -77.045274, 38.918276 ], [ -77.045488, 38.917934 ], [ -77.045553, 38.917825 ], [ -77.045794, 38.917450 ], [ -77.046062, 38.917020 ], [ -77.046078, 38.916965 ], [ -77.046084, 38.916940 ], [ -77.046116, 38.916865 ], [ -77.046239, 38.916656 ], [ -77.046250, 38.916615 ], [ -77.046266, 38.916598 ], [ -77.046293, 38.916502 ], [ -77.046298, 38.916448 ], [ -77.046298, 38.916373 ], [ -77.046293, 38.916310 ], [ -77.046298, 38.916243 ], [ -77.046282, 38.915993 ], [ -77.046400, 38.916289 ], [ -77.046486, 38.916398 ], [ -77.046593, 38.916515 ], [ -77.046690, 38.916682 ], [ -77.046701, 38.916702 ], [ -77.046738, 38.916769 ], [ -77.046770, 38.916836 ], [ -77.046985, 38.917249 ], [ -77.047023, 38.917333 ], [ -77.047232, 38.917742 ], [ -77.047521, 38.918305 ], [ -77.047564, 38.918393 ], [ -77.047597, 38.918430 ], [ -77.047629, 38.918468 ], [ -77.047645, 38.918485 ], [ -77.047688, 38.918518 ], [ -77.047709, 38.918531 ], [ -77.047731, 38.918547 ], [ -77.047784, 38.918572 ], [ -77.047811, 38.918581 ], [ -77.047859, 38.918593 ], [ -77.047935, 38.918614 ], [ -77.048171, 38.918672 ], [ -77.048230, 38.918693 ], [ -77.048310, 38.918718 ], [ -77.048460, 38.918760 ], [ -77.048519, 38.918773 ], [ -77.048605, 38.918798 ], [ -77.048648, 38.918810 ], [ -77.048686, 38.918823 ], [ -77.048728, 38.918852 ], [ -77.048745, 38.918869 ], [ -77.048798, 38.918906 ], [ -77.048814, 38.918923 ], [ -77.048868, 38.918985 ], [ -77.048938, 38.919111 ], [ -77.048954, 38.919140 ], [ -77.049007, 38.919232 ], [ -77.049024, 38.919265 ], [ -77.049056, 38.919324 ], [ -77.049120, 38.919420 ], [ -77.049147, 38.919465 ], [ -77.049184, 38.919532 ], [ -77.049946, 38.920843 ], [ -77.050129, 38.921156 ], [ -77.050177, 38.921239 ], [ -77.050053, 38.921410 ], [ -77.049748, 38.921698 ], [ -77.049544, 38.921874 ], [ -77.049329, 38.921965 ], [ -77.049308, 38.921974 ], [ -77.048938, 38.922203 ], [ -77.048696, 38.922404 ], [ -77.048589, 38.922571 ], [ -77.048535, 38.922771 ], [ -77.048509, 38.923046 ], [ -77.048562, 38.923343 ], [ -77.048460, 38.923338 ], [ -77.048391, 38.923330 ], [ -77.047693, 38.923280 ], [ -77.047602, 38.923272 ], [ -77.047527, 38.923263 ], [ -77.047339, 38.923247 ], [ -77.047275, 38.923243 ], [ -77.047135, 38.923238 ], [ -77.046593, 38.923238 ], [ -77.046052, 38.923238 ], [ -77.044694, 38.923238 ], [ -77.044587, 38.923238 ], [ -77.044335, 38.923238 ], [ -77.043847, 38.923238 ], [ -77.043461, 38.923238 ], [ -77.043418, 38.923238 ], [ -77.043386, 38.923238 ], [ -77.043353, 38.923238 ], [ -77.043326, 38.923238 ], [ -77.043267, 38.923230 ], [ -77.043208, 38.923213 ], [ -77.043182, 38.923205 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004002", "GEOID": "11001004002", "NAME": "40.02", "NAMELSAD": "Census Tract 40.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 194755, "AWATER": 0, "INTPTLAT": "+38.9181186", "INTPTLON": "-077.0437209" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.042683, 38.922662 ], [ -77.042667, 38.922604 ], [ -77.042640, 38.922516 ], [ -77.042559, 38.922241 ], [ -77.042398, 38.921723 ], [ -77.042050, 38.920684 ], [ -77.042018, 38.920592 ], [ -77.041733, 38.919770 ], [ -77.041712, 38.919712 ], [ -77.041706, 38.919687 ], [ -77.041701, 38.919657 ], [ -77.041696, 38.919637 ], [ -77.041690, 38.919595 ], [ -77.041680, 38.919545 ], [ -77.041680, 38.919470 ], [ -77.041680, 38.918743 ], [ -77.041680, 38.918255 ], [ -77.041674, 38.918188 ], [ -77.041669, 38.918126 ], [ -77.041669, 38.918092 ], [ -77.041658, 38.918059 ], [ -77.041647, 38.917996 ], [ -77.041647, 38.917963 ], [ -77.041642, 38.917930 ], [ -77.041647, 38.917821 ], [ -77.041647, 38.917095 ], [ -77.041653, 38.916986 ], [ -77.041653, 38.916874 ], [ -77.041653, 38.916782 ], [ -77.041787, 38.916715 ], [ -77.042184, 38.916519 ], [ -77.042736, 38.916243 ], [ -77.043343, 38.915934 ], [ -77.043434, 38.915889 ], [ -77.043573, 38.915813 ], [ -77.044067, 38.915555 ], [ -77.044255, 38.915454 ], [ -77.044469, 38.915346 ], [ -77.044716, 38.915217 ], [ -77.044909, 38.915108 ], [ -77.045038, 38.915037 ], [ -77.045263, 38.914908 ], [ -77.045735, 38.914640 ], [ -77.045987, 38.914499 ], [ -77.046084, 38.914436 ], [ -77.046186, 38.914762 ], [ -77.046186, 38.914841 ], [ -77.046207, 38.915296 ], [ -77.046223, 38.915838 ], [ -77.046282, 38.915993 ], [ -77.046298, 38.916243 ], [ -77.046293, 38.916310 ], [ -77.046298, 38.916373 ], [ -77.046298, 38.916448 ], [ -77.046293, 38.916502 ], [ -77.046266, 38.916598 ], [ -77.046250, 38.916615 ], [ -77.046239, 38.916656 ], [ -77.046116, 38.916865 ], [ -77.046084, 38.916940 ], [ -77.046078, 38.916965 ], [ -77.046062, 38.917020 ], [ -77.045794, 38.917450 ], [ -77.045553, 38.917825 ], [ -77.045488, 38.917934 ], [ -77.045274, 38.918276 ], [ -77.045204, 38.918384 ], [ -77.044780, 38.919052 ], [ -77.044432, 38.919603 ], [ -77.044405, 38.919645 ], [ -77.044394, 38.919666 ], [ -77.044356, 38.919724 ], [ -77.044297, 38.919833 ], [ -77.044029, 38.920375 ], [ -77.043927, 38.920588 ], [ -77.043884, 38.920684 ], [ -77.043707, 38.921093 ], [ -77.043702, 38.921110 ], [ -77.043573, 38.921406 ], [ -77.043450, 38.921707 ], [ -77.043316, 38.922020 ], [ -77.043278, 38.922103 ], [ -77.043235, 38.922187 ], [ -77.043171, 38.922295 ], [ -77.043139, 38.922333 ], [ -77.043117, 38.922362 ], [ -77.043085, 38.922395 ], [ -77.043048, 38.922425 ], [ -77.043010, 38.922454 ], [ -77.042967, 38.922479 ], [ -77.042683, 38.922662 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003802", "GEOID": "11001003802", "NAME": "38.02", "NAMELSAD": "Census Tract 38.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 207186, "AWATER": 0, "INTPTLAT": "+38.9229710", "INTPTLON": "-077.0393505" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.041712, 38.919712 ], [ -77.041733, 38.919770 ], [ -77.042018, 38.920592 ], [ -77.042050, 38.920684 ], [ -77.042398, 38.921723 ], [ -77.042559, 38.922241 ], [ -77.042640, 38.922516 ], [ -77.042667, 38.922604 ], [ -77.042683, 38.922662 ], [ -77.042329, 38.922896 ], [ -77.042093, 38.923055 ], [ -77.041873, 38.923209 ], [ -77.041830, 38.923243 ], [ -77.041540, 38.923422 ], [ -77.041411, 38.923514 ], [ -77.041342, 38.923560 ], [ -77.040961, 38.923810 ], [ -77.040414, 38.924182 ], [ -77.040333, 38.924227 ], [ -77.040140, 38.924353 ], [ -77.039931, 38.924486 ], [ -77.039663, 38.924649 ], [ -77.039459, 38.924766 ], [ -77.039148, 38.924945 ], [ -77.038820, 38.925133 ], [ -77.038654, 38.925233 ], [ -77.038445, 38.925358 ], [ -77.038364, 38.925404 ], [ -77.037967, 38.925638 ], [ -77.037555, 38.925897 ], [ -77.036482, 38.925897 ], [ -77.036481, 38.925880 ], [ -77.036481, 38.925792 ], [ -77.036481, 38.925605 ], [ -77.036481, 38.924824 ], [ -77.036481, 38.924766 ], [ -77.036487, 38.924227 ], [ -77.036487, 38.923422 ], [ -77.036487, 38.923251 ], [ -77.036487, 38.923209 ], [ -77.036487, 38.923180 ], [ -77.036487, 38.922733 ], [ -77.036659, 38.922658 ], [ -77.036760, 38.922596 ], [ -77.036846, 38.922546 ], [ -77.037141, 38.922374 ], [ -77.037275, 38.922291 ], [ -77.037511, 38.922157 ], [ -77.037882, 38.921936 ], [ -77.038445, 38.921606 ], [ -77.038777, 38.921415 ], [ -77.038885, 38.921352 ], [ -77.039207, 38.921160 ], [ -77.040038, 38.920667 ], [ -77.040355, 38.920484 ], [ -77.040709, 38.920275 ], [ -77.040864, 38.920196 ], [ -77.040811, 38.920029 ], [ -77.040773, 38.919916 ], [ -77.040752, 38.919849 ], [ -77.041535, 38.919691 ], [ -77.041701, 38.919657 ], [ -77.041706, 38.919687 ], [ -77.041712, 38.919712 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003801", "GEOID": "11001003801", "NAME": "38.01", "NAMELSAD": "Census Tract 38.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 148928, "AWATER": 0, "INTPTLAT": "+38.9197759", "INTPTLON": "-077.0389415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.041653, 38.916782 ], [ -77.041653, 38.916874 ], [ -77.041653, 38.916986 ], [ -77.041647, 38.917095 ], [ -77.041647, 38.917821 ], [ -77.041642, 38.917930 ], [ -77.041647, 38.917963 ], [ -77.041647, 38.917996 ], [ -77.041658, 38.918059 ], [ -77.041669, 38.918092 ], [ -77.041669, 38.918126 ], [ -77.041674, 38.918188 ], [ -77.041680, 38.918255 ], [ -77.041680, 38.918743 ], [ -77.041680, 38.919470 ], [ -77.041680, 38.919545 ], [ -77.041690, 38.919595 ], [ -77.041696, 38.919637 ], [ -77.041701, 38.919657 ], [ -77.041535, 38.919691 ], [ -77.040752, 38.919849 ], [ -77.040773, 38.919916 ], [ -77.040811, 38.920029 ], [ -77.040864, 38.920196 ], [ -77.040709, 38.920275 ], [ -77.040355, 38.920484 ], [ -77.040038, 38.920667 ], [ -77.039207, 38.921160 ], [ -77.038885, 38.921352 ], [ -77.038777, 38.921415 ], [ -77.038445, 38.921606 ], [ -77.037882, 38.921936 ], [ -77.037511, 38.922157 ], [ -77.037275, 38.922291 ], [ -77.037141, 38.922374 ], [ -77.036846, 38.922546 ], [ -77.036760, 38.922596 ], [ -77.036659, 38.922658 ], [ -77.036487, 38.922733 ], [ -77.036481, 38.922608 ], [ -77.036487, 38.921673 ], [ -77.036487, 38.920964 ], [ -77.036492, 38.920363 ], [ -77.036492, 38.920313 ], [ -77.036492, 38.919862 ], [ -77.036498, 38.919286 ], [ -77.036492, 38.919144 ], [ -77.038472, 38.918522 ], [ -77.038536, 38.918501 ], [ -77.038885, 38.918409 ], [ -77.038971, 38.918384 ], [ -77.039604, 38.918209 ], [ -77.039947, 38.918117 ], [ -77.040124, 38.918071 ], [ -77.040156, 38.918059 ], [ -77.040188, 38.918042 ], [ -77.040215, 38.918026 ], [ -77.040242, 38.918005 ], [ -77.040263, 38.917984 ], [ -77.040355, 38.917863 ], [ -77.040424, 38.917779 ], [ -77.040467, 38.917725 ], [ -77.040553, 38.917608 ], [ -77.040827, 38.917249 ], [ -77.040848, 38.917228 ], [ -77.040870, 38.917207 ], [ -77.040896, 38.917187 ], [ -77.040929, 38.917166 ], [ -77.041036, 38.917111 ], [ -77.041218, 38.917007 ], [ -77.041288, 38.916970 ], [ -77.041427, 38.916890 ], [ -77.041540, 38.916832 ], [ -77.041653, 38.916782 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004202", "GEOID": "11001004202", "NAME": "42.02", "NAMELSAD": "Census Tract 42.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 207646, "AWATER": 0, "INTPTLAT": "+38.9134023", "INTPTLON": "-077.0430254" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.043766, 38.910203 ], [ -77.043804, 38.910274 ], [ -77.044303, 38.911130 ], [ -77.044732, 38.911869 ], [ -77.044871, 38.912115 ], [ -77.045156, 38.912608 ], [ -77.045204, 38.912683 ], [ -77.045462, 38.913130 ], [ -77.045923, 38.914085 ], [ -77.046084, 38.914436 ], [ -77.045987, 38.914499 ], [ -77.045735, 38.914640 ], [ -77.045263, 38.914908 ], [ -77.045038, 38.915037 ], [ -77.044909, 38.915108 ], [ -77.044716, 38.915217 ], [ -77.044469, 38.915346 ], [ -77.044255, 38.915454 ], [ -77.044067, 38.915555 ], [ -77.043573, 38.915813 ], [ -77.043434, 38.915889 ], [ -77.043343, 38.915934 ], [ -77.042736, 38.916243 ], [ -77.042184, 38.916519 ], [ -77.041787, 38.916715 ], [ -77.041653, 38.916782 ], [ -77.041653, 38.916652 ], [ -77.041653, 38.916289 ], [ -77.041653, 38.915575 ], [ -77.041658, 38.914833 ], [ -77.041658, 38.914177 ], [ -77.041658, 38.914094 ], [ -77.041551, 38.914090 ], [ -77.040966, 38.914094 ], [ -77.040591, 38.914094 ], [ -77.040183, 38.914094 ], [ -77.039271, 38.914094 ], [ -77.039351, 38.914006 ], [ -77.039459, 38.913893 ], [ -77.039604, 38.913731 ], [ -77.039952, 38.913359 ], [ -77.040322, 38.912967 ], [ -77.040655, 38.912608 ], [ -77.041229, 38.912003 ], [ -77.041352, 38.911869 ], [ -77.041669, 38.911535 ], [ -77.042050, 38.911130 ], [ -77.042227, 38.910934 ], [ -77.042602, 38.910537 ], [ -77.042972, 38.910141 ], [ -77.043026, 38.910170 ], [ -77.043058, 38.910183 ], [ -77.043096, 38.910199 ], [ -77.043139, 38.910216 ], [ -77.043182, 38.910228 ], [ -77.043230, 38.910241 ], [ -77.043284, 38.910249 ], [ -77.043343, 38.910258 ], [ -77.043396, 38.910258 ], [ -77.043434, 38.910262 ], [ -77.043498, 38.910258 ], [ -77.043552, 38.910254 ], [ -77.043600, 38.910245 ], [ -77.043654, 38.910237 ], [ -77.043702, 38.910224 ], [ -77.043766, 38.910203 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005502", "GEOID": "11001005502", "NAME": "55.02", "NAMELSAD": "Census Tract 55.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 251302, "AWATER": 0, "INTPTLAT": "+38.9101768", "INTPTLON": "-077.0463615" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.046084, 38.914436 ], [ -77.045923, 38.914085 ], [ -77.045462, 38.913130 ], [ -77.045204, 38.912683 ], [ -77.045156, 38.912608 ], [ -77.044871, 38.912115 ], [ -77.044732, 38.911869 ], [ -77.044303, 38.911130 ], [ -77.043804, 38.910274 ], [ -77.043766, 38.910203 ], [ -77.043702, 38.910224 ], [ -77.043654, 38.910237 ], [ -77.043600, 38.910245 ], [ -77.043552, 38.910254 ], [ -77.043498, 38.910258 ], [ -77.043434, 38.910262 ], [ -77.043396, 38.910258 ], [ -77.043343, 38.910258 ], [ -77.043284, 38.910249 ], [ -77.043230, 38.910241 ], [ -77.043182, 38.910228 ], [ -77.043139, 38.910216 ], [ -77.043096, 38.910199 ], [ -77.043058, 38.910183 ], [ -77.043026, 38.910170 ], [ -77.042972, 38.910141 ], [ -77.042935, 38.910120 ], [ -77.042903, 38.910099 ], [ -77.042876, 38.910078 ], [ -77.042844, 38.910053 ], [ -77.042817, 38.910028 ], [ -77.042790, 38.909999 ], [ -77.042769, 38.909970 ], [ -77.042742, 38.909940 ], [ -77.042726, 38.909907 ], [ -77.042704, 38.909878 ], [ -77.042688, 38.909844 ], [ -77.042677, 38.909811 ], [ -77.042667, 38.909778 ], [ -77.042651, 38.909719 ], [ -77.042651, 38.909690 ], [ -77.042645, 38.909644 ], [ -77.042645, 38.909594 ], [ -77.042651, 38.909565 ], [ -77.042656, 38.909531 ], [ -77.042667, 38.909502 ], [ -77.042688, 38.909444 ], [ -77.042715, 38.909389 ], [ -77.042736, 38.909348 ], [ -77.042753, 38.909327 ], [ -77.042785, 38.909285 ], [ -77.042817, 38.909252 ], [ -77.042833, 38.909235 ], [ -77.042865, 38.909206 ], [ -77.042908, 38.909177 ], [ -77.042935, 38.909164 ], [ -77.042956, 38.909152 ], [ -77.043021, 38.909118 ], [ -77.043112, 38.909085 ], [ -77.043192, 38.909060 ], [ -77.043230, 38.909047 ], [ -77.043284, 38.909039 ], [ -77.043343, 38.909030 ], [ -77.043402, 38.909026 ], [ -77.043439, 38.909026 ], [ -77.043482, 38.909026 ], [ -77.043525, 38.909030 ], [ -77.043584, 38.909035 ], [ -77.043654, 38.909047 ], [ -77.043686, 38.909056 ], [ -77.043750, 38.909076 ], [ -77.043815, 38.909101 ], [ -77.043868, 38.909122 ], [ -77.043906, 38.909143 ], [ -77.044147, 38.908889 ], [ -77.044201, 38.908830 ], [ -77.044448, 38.908567 ], [ -77.044673, 38.908329 ], [ -77.044920, 38.908062 ], [ -77.044989, 38.907987 ], [ -77.045349, 38.907595 ], [ -77.045601, 38.907327 ], [ -77.045681, 38.907244 ], [ -77.046347, 38.907244 ], [ -77.046636, 38.907244 ], [ -77.047076, 38.907244 ], [ -77.047361, 38.907244 ], [ -77.047554, 38.907244 ], [ -77.048230, 38.907244 ], [ -77.048417, 38.907244 ], [ -77.048686, 38.907236 ], [ -77.048804, 38.907240 ], [ -77.048793, 38.907753 ], [ -77.048793, 38.907899 ], [ -77.048793, 38.908158 ], [ -77.048793, 38.908488 ], [ -77.048793, 38.908567 ], [ -77.048793, 38.909636 ], [ -77.048793, 38.909732 ], [ -77.048793, 38.910124 ], [ -77.048793, 38.910212 ], [ -77.048793, 38.910324 ], [ -77.048793, 38.910412 ], [ -77.048787, 38.910508 ], [ -77.048777, 38.910625 ], [ -77.048771, 38.910704 ], [ -77.048745, 38.910930 ], [ -77.048745, 38.911105 ], [ -77.048745, 38.911130 ], [ -77.048734, 38.911272 ], [ -77.048728, 38.911414 ], [ -77.048787, 38.911502 ], [ -77.048669, 38.911598 ], [ -77.048610, 38.911644 ], [ -77.048482, 38.911748 ], [ -77.048444, 38.911773 ], [ -77.048192, 38.911969 ], [ -77.048133, 38.912015 ], [ -77.048106, 38.912036 ], [ -77.048026, 38.912111 ], [ -77.047972, 38.912161 ], [ -77.047876, 38.912265 ], [ -77.047752, 38.912403 ], [ -77.047704, 38.912449 ], [ -77.047591, 38.912566 ], [ -77.047548, 38.912608 ], [ -77.047521, 38.912637 ], [ -77.047473, 38.912695 ], [ -77.047446, 38.912737 ], [ -77.047259, 38.913071 ], [ -77.047119, 38.913313 ], [ -77.047006, 38.913514 ], [ -77.046980, 38.913572 ], [ -77.046947, 38.913630 ], [ -77.046915, 38.913685 ], [ -77.046910, 38.913701 ], [ -77.046888, 38.913735 ], [ -77.046862, 38.913768 ], [ -77.046851, 38.913781 ], [ -77.046819, 38.913810 ], [ -77.046787, 38.913835 ], [ -77.046647, 38.913956 ], [ -77.046631, 38.913977 ], [ -77.046572, 38.914031 ], [ -77.046390, 38.914206 ], [ -77.046363, 38.914223 ], [ -77.046234, 38.914332 ], [ -77.046164, 38.914378 ], [ -77.046084, 38.914436 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004201", "GEOID": "11001004201", "NAME": "42.01", "NAMELSAD": "Census Tract 42.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 204529, "AWATER": 0, "INTPTLAT": "+38.9162076", "INTPTLON": "-077.0388456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.041658, 38.914094 ], [ -77.041658, 38.914177 ], [ -77.041658, 38.914833 ], [ -77.041653, 38.915575 ], [ -77.041653, 38.916289 ], [ -77.041653, 38.916652 ], [ -77.041653, 38.916782 ], [ -77.041540, 38.916832 ], [ -77.041427, 38.916890 ], [ -77.041288, 38.916970 ], [ -77.041218, 38.917007 ], [ -77.041036, 38.917111 ], [ -77.040929, 38.917166 ], [ -77.040896, 38.917187 ], [ -77.040870, 38.917207 ], [ -77.040848, 38.917228 ], [ -77.040827, 38.917249 ], [ -77.040553, 38.917608 ], [ -77.040467, 38.917725 ], [ -77.040424, 38.917779 ], [ -77.040355, 38.917863 ], [ -77.040263, 38.917984 ], [ -77.040242, 38.918005 ], [ -77.040215, 38.918026 ], [ -77.040188, 38.918042 ], [ -77.040156, 38.918059 ], [ -77.040124, 38.918071 ], [ -77.039947, 38.918117 ], [ -77.039604, 38.918209 ], [ -77.038971, 38.918384 ], [ -77.038885, 38.918409 ], [ -77.038536, 38.918501 ], [ -77.038472, 38.918522 ], [ -77.036492, 38.919144 ], [ -77.036492, 38.919002 ], [ -77.036498, 38.918931 ], [ -77.036498, 38.918526 ], [ -77.036498, 38.918113 ], [ -77.036498, 38.918038 ], [ -77.036498, 38.918017 ], [ -77.036498, 38.917308 ], [ -77.036492, 38.917199 ], [ -77.036492, 38.917170 ], [ -77.036487, 38.917003 ], [ -77.036481, 38.916807 ], [ -77.036487, 38.916414 ], [ -77.036498, 38.916289 ], [ -77.036503, 38.916231 ], [ -77.036503, 38.915822 ], [ -77.036503, 38.915571 ], [ -77.036503, 38.915496 ], [ -77.036503, 38.915204 ], [ -77.036503, 38.914903 ], [ -77.036503, 38.914833 ], [ -77.036503, 38.914265 ], [ -77.036508, 38.914094 ], [ -77.036648, 38.914094 ], [ -77.037168, 38.914094 ], [ -77.038069, 38.914094 ], [ -77.038477, 38.914090 ], [ -77.038606, 38.914094 ], [ -77.038847, 38.914090 ], [ -77.039201, 38.914090 ], [ -77.039271, 38.914094 ], [ -77.040183, 38.914094 ], [ -77.040591, 38.914094 ], [ -77.040966, 38.914094 ], [ -77.041551, 38.914090 ], [ -77.041658, 38.914094 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005302", "GEOID": "11001005302", "NAME": "53.02", "NAMELSAD": "Census Tract 53.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 117635, "AWATER": 0, "INTPTLAT": "+38.9124517", "INTPTLON": "-077.0386443" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036508, 38.914094 ], [ -77.036508, 38.914010 ], [ -77.036508, 38.913564 ], [ -77.036508, 38.913426 ], [ -77.036508, 38.913347 ], [ -77.036508, 38.912958 ], [ -77.036508, 38.912691 ], [ -77.036514, 38.912608 ], [ -77.036508, 38.912232 ], [ -77.036514, 38.911869 ], [ -77.036514, 38.911209 ], [ -77.036514, 38.911126 ], [ -77.036685, 38.911126 ], [ -77.036793, 38.911126 ], [ -77.036884, 38.911126 ], [ -77.036980, 38.911126 ], [ -77.037206, 38.911126 ], [ -77.037764, 38.911126 ], [ -77.038155, 38.911126 ], [ -77.038316, 38.911122 ], [ -77.038391, 38.911126 ], [ -77.038482, 38.911126 ], [ -77.038799, 38.911130 ], [ -77.040022, 38.911126 ], [ -77.041664, 38.911130 ], [ -77.041664, 38.911184 ], [ -77.041669, 38.911301 ], [ -77.041669, 38.911535 ], [ -77.041352, 38.911869 ], [ -77.041229, 38.912003 ], [ -77.040655, 38.912608 ], [ -77.040322, 38.912967 ], [ -77.039952, 38.913359 ], [ -77.039604, 38.913731 ], [ -77.039459, 38.913893 ], [ -77.039351, 38.914006 ], [ -77.039271, 38.914094 ], [ -77.039201, 38.914090 ], [ -77.038847, 38.914090 ], [ -77.038606, 38.914094 ], [ -77.038477, 38.914090 ], [ -77.038069, 38.914094 ], [ -77.037168, 38.914094 ], [ -77.036648, 38.914094 ], [ -77.036508, 38.914094 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005303", "GEOID": "11001005303", "NAME": "53.03", "NAMELSAD": "Census Tract 53.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 168769, "AWATER": 0, "INTPTLAT": "+38.9096130", "INTPTLON": "-077.0391656" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036181, 38.907131 ], [ -77.036245, 38.907089 ], [ -77.036278, 38.907073 ], [ -77.036342, 38.907048 ], [ -77.036363, 38.907039 ], [ -77.036385, 38.907035 ], [ -77.036428, 38.907027 ], [ -77.036471, 38.907023 ], [ -77.036524, 38.907023 ], [ -77.036605, 38.907023 ], [ -77.036642, 38.907023 ], [ -77.036685, 38.907027 ], [ -77.036707, 38.907035 ], [ -77.036771, 38.907060 ], [ -77.036793, 38.907069 ], [ -77.036814, 38.907081 ], [ -77.036830, 38.907094 ], [ -77.036873, 38.907135 ], [ -77.036921, 38.907244 ], [ -77.036862, 38.907352 ], [ -77.037651, 38.907632 ], [ -77.037785, 38.907678 ], [ -77.038150, 38.907803 ], [ -77.038493, 38.907924 ], [ -77.039073, 38.908125 ], [ -77.039196, 38.908166 ], [ -77.039480, 38.908267 ], [ -77.039931, 38.908425 ], [ -77.040220, 38.908525 ], [ -77.041674, 38.909030 ], [ -77.042715, 38.909389 ], [ -77.042688, 38.909444 ], [ -77.042667, 38.909502 ], [ -77.042656, 38.909531 ], [ -77.042651, 38.909565 ], [ -77.042645, 38.909594 ], [ -77.042645, 38.909644 ], [ -77.042651, 38.909690 ], [ -77.042651, 38.909719 ], [ -77.042667, 38.909778 ], [ -77.042677, 38.909811 ], [ -77.042688, 38.909844 ], [ -77.042704, 38.909878 ], [ -77.042726, 38.909907 ], [ -77.042742, 38.909940 ], [ -77.042769, 38.909970 ], [ -77.042790, 38.909999 ], [ -77.042817, 38.910028 ], [ -77.042844, 38.910053 ], [ -77.042876, 38.910078 ], [ -77.042903, 38.910099 ], [ -77.042935, 38.910120 ], [ -77.042972, 38.910141 ], [ -77.042602, 38.910537 ], [ -77.042227, 38.910934 ], [ -77.042050, 38.911130 ], [ -77.041669, 38.911535 ], [ -77.041669, 38.911301 ], [ -77.041664, 38.911184 ], [ -77.041664, 38.911130 ], [ -77.040022, 38.911126 ], [ -77.038799, 38.911130 ], [ -77.038482, 38.911126 ], [ -77.038391, 38.911126 ], [ -77.038316, 38.911122 ], [ -77.038155, 38.911126 ], [ -77.037764, 38.911126 ], [ -77.037206, 38.911126 ], [ -77.036980, 38.911126 ], [ -77.036884, 38.911126 ], [ -77.036793, 38.911126 ], [ -77.036685, 38.911126 ], [ -77.036514, 38.911126 ], [ -77.036514, 38.911013 ], [ -77.036519, 38.910458 ], [ -77.036519, 38.910383 ], [ -77.036524, 38.909794 ], [ -77.036519, 38.909728 ], [ -77.036519, 38.909644 ], [ -77.036519, 38.909561 ], [ -77.036524, 38.909081 ], [ -77.036524, 38.908697 ], [ -77.036524, 38.908325 ], [ -77.036524, 38.907461 ], [ -77.036385, 38.907453 ], [ -77.036342, 38.907448 ], [ -77.036299, 38.907436 ], [ -77.036272, 38.907423 ], [ -77.036251, 38.907411 ], [ -77.036224, 38.907390 ], [ -77.036176, 38.907344 ], [ -77.036160, 38.907311 ], [ -77.036149, 38.907294 ], [ -77.036138, 38.907269 ], [ -77.036133, 38.907244 ], [ -77.036133, 38.907223 ], [ -77.036144, 38.907181 ], [ -77.036160, 38.907156 ], [ -77.036181, 38.907131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005601", "GEOID": "11001005601", "NAME": "56.01", "NAMELSAD": "Census Tract 56.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 185309, "AWATER": 1275, "INTPTLAT": "+38.9015670", "INTPTLON": "-077.0524317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.050129, 38.899600 ], [ -77.050129, 38.899575 ], [ -77.050268, 38.899575 ], [ -77.050397, 38.899575 ], [ -77.050499, 38.899575 ], [ -77.050606, 38.899575 ], [ -77.050831, 38.899579 ], [ -77.050949, 38.899579 ], [ -77.051046, 38.899575 ], [ -77.051336, 38.899575 ], [ -77.051432, 38.899575 ], [ -77.051513, 38.899575 ], [ -77.051657, 38.899575 ], [ -77.051829, 38.899571 ], [ -77.051958, 38.899575 ], [ -77.052199, 38.899575 ], [ -77.052339, 38.899575 ], [ -77.052478, 38.899575 ], [ -77.052591, 38.899575 ], [ -77.052677, 38.899579 ], [ -77.052773, 38.899579 ], [ -77.052881, 38.899579 ], [ -77.052999, 38.899575 ], [ -77.053047, 38.899575 ], [ -77.053143, 38.899575 ], [ -77.053192, 38.899583 ], [ -77.053235, 38.899592 ], [ -77.053261, 38.899600 ], [ -77.053283, 38.899621 ], [ -77.053299, 38.899642 ], [ -77.053304, 38.899667 ], [ -77.053310, 38.899746 ], [ -77.053310, 38.899830 ], [ -77.053310, 38.899968 ], [ -77.053310, 38.900034 ], [ -77.053315, 38.900151 ], [ -77.053310, 38.900218 ], [ -77.053310, 38.900297 ], [ -77.053310, 38.900360 ], [ -77.053310, 38.900448 ], [ -77.053304, 38.900519 ], [ -77.053304, 38.900585 ], [ -77.053304, 38.900615 ], [ -77.053304, 38.900665 ], [ -77.053304, 38.900698 ], [ -77.053621, 38.900698 ], [ -77.053685, 38.900698 ], [ -77.053760, 38.900694 ], [ -77.053846, 38.900694 ], [ -77.054071, 38.900698 ], [ -77.054431, 38.900694 ], [ -77.054484, 38.900694 ], [ -77.054565, 38.900698 ], [ -77.054597, 38.900698 ], [ -77.054624, 38.900702 ], [ -77.054672, 38.900723 ], [ -77.054699, 38.900748 ], [ -77.054737, 38.900815 ], [ -77.054747, 38.900840 ], [ -77.054747, 38.900865 ], [ -77.054753, 38.900940 ], [ -77.054753, 38.901049 ], [ -77.054753, 38.901128 ], [ -77.054747, 38.901500 ], [ -77.054753, 38.901842 ], [ -77.054747, 38.902276 ], [ -77.054742, 38.902297 ], [ -77.054737, 38.902485 ], [ -77.055246, 38.902497 ], [ -77.056105, 38.902527 ], [ -77.056303, 38.902522 ], [ -77.056528, 38.902518 ], [ -77.056877, 38.902531 ], [ -77.056974, 38.902535 ], [ -77.057569, 38.902543 ], [ -77.057601, 38.902543 ], [ -77.057666, 38.902543 ], [ -77.057612, 38.902648 ], [ -77.057558, 38.902752 ], [ -77.057381, 38.902957 ], [ -77.057263, 38.903103 ], [ -77.056850, 38.903608 ], [ -77.056823, 38.903637 ], [ -77.056786, 38.903662 ], [ -77.056716, 38.903729 ], [ -77.056652, 38.903775 ], [ -77.056566, 38.903833 ], [ -77.056518, 38.903892 ], [ -77.056464, 38.903908 ], [ -77.056383, 38.903988 ], [ -77.056206, 38.904213 ], [ -77.055949, 38.904547 ], [ -77.055911, 38.904535 ], [ -77.055783, 38.904493 ], [ -77.055520, 38.904405 ], [ -77.055273, 38.904313 ], [ -77.054790, 38.904142 ], [ -77.054753, 38.904126 ], [ -77.054104, 38.903908 ], [ -77.053776, 38.903800 ], [ -77.053299, 38.903637 ], [ -77.051411, 38.902977 ], [ -77.051271, 38.902894 ], [ -77.051196, 38.902848 ], [ -77.051148, 38.902811 ], [ -77.051014, 38.902694 ], [ -77.050719, 38.902735 ], [ -77.050745, 38.902681 ], [ -77.050767, 38.902602 ], [ -77.050767, 38.902585 ], [ -77.050778, 38.902527 ], [ -77.050783, 38.902464 ], [ -77.050756, 38.902330 ], [ -77.050740, 38.902301 ], [ -77.050713, 38.902255 ], [ -77.050665, 38.902205 ], [ -77.050617, 38.902155 ], [ -77.050558, 38.902113 ], [ -77.050531, 38.902097 ], [ -77.050493, 38.902076 ], [ -77.050413, 38.902042 ], [ -77.050354, 38.902021 ], [ -77.050273, 38.902001 ], [ -77.050198, 38.901992 ], [ -77.050118, 38.901988 ], [ -77.050123, 38.901232 ], [ -77.050129, 38.900840 ], [ -77.050129, 38.900815 ], [ -77.050129, 38.900794 ], [ -77.050123, 38.900773 ], [ -77.050123, 38.900698 ], [ -77.050129, 38.900661 ], [ -77.050129, 38.900631 ], [ -77.050129, 38.900510 ], [ -77.050129, 38.900414 ], [ -77.050134, 38.900331 ], [ -77.050134, 38.900293 ], [ -77.050134, 38.900251 ], [ -77.050129, 38.900164 ], [ -77.050129, 38.900089 ], [ -77.050123, 38.900001 ], [ -77.050129, 38.899851 ], [ -77.050129, 38.899796 ], [ -77.050129, 38.899742 ], [ -77.050129, 38.899646 ], [ -77.050129, 38.899600 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005503", "GEOID": "11001005503", "NAME": "55.03", "NAMELSAD": "Census Tract 55.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 213338, "AWATER": 4682, "INTPTLAT": "+38.9062488", "INTPTLON": "-077.0523495" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.048793, 38.909636 ], [ -77.048793, 38.908567 ], [ -77.048793, 38.908488 ], [ -77.048793, 38.908158 ], [ -77.048793, 38.907899 ], [ -77.048793, 38.907753 ], [ -77.048804, 38.907240 ], [ -77.049040, 38.907240 ], [ -77.049608, 38.907244 ], [ -77.050096, 38.907248 ], [ -77.050204, 38.907244 ], [ -77.050622, 38.907244 ], [ -77.051405, 38.907244 ], [ -77.051400, 38.907156 ], [ -77.051400, 38.906822 ], [ -77.051400, 38.906179 ], [ -77.051400, 38.905415 ], [ -77.051405, 38.905261 ], [ -77.051405, 38.905136 ], [ -77.051405, 38.905111 ], [ -77.051405, 38.904555 ], [ -77.051405, 38.904451 ], [ -77.051405, 38.904414 ], [ -77.051411, 38.904234 ], [ -77.051411, 38.903829 ], [ -77.051411, 38.903741 ], [ -77.051416, 38.903149 ], [ -77.051411, 38.902977 ], [ -77.053299, 38.903637 ], [ -77.053776, 38.903800 ], [ -77.054104, 38.903908 ], [ -77.054753, 38.904126 ], [ -77.054790, 38.904142 ], [ -77.055273, 38.904313 ], [ -77.055520, 38.904405 ], [ -77.055783, 38.904493 ], [ -77.055911, 38.904535 ], [ -77.055949, 38.904547 ], [ -77.055858, 38.904677 ], [ -77.055713, 38.904835 ], [ -77.055590, 38.905011 ], [ -77.055429, 38.905253 ], [ -77.055209, 38.905628 ], [ -77.055042, 38.905929 ], [ -77.054822, 38.906346 ], [ -77.054662, 38.906714 ], [ -77.054538, 38.907048 ], [ -77.054501, 38.907102 ], [ -77.054468, 38.907223 ], [ -77.054318, 38.907498 ], [ -77.054195, 38.907653 ], [ -77.054012, 38.907816 ], [ -77.053835, 38.907987 ], [ -77.053685, 38.908216 ], [ -77.053556, 38.908442 ], [ -77.053385, 38.908559 ], [ -77.053133, 38.908709 ], [ -77.052940, 38.908788 ], [ -77.052805, 38.908813 ], [ -77.052703, 38.908826 ], [ -77.052532, 38.908834 ], [ -77.052087, 38.908801 ], [ -77.051566, 38.908734 ], [ -77.051057, 38.908818 ], [ -77.050692, 38.908922 ], [ -77.050413, 38.909056 ], [ -77.050236, 38.909189 ], [ -77.050102, 38.909373 ], [ -77.050064, 38.909490 ], [ -77.050080, 38.909636 ], [ -77.049968, 38.909636 ], [ -77.049528, 38.909636 ], [ -77.049340, 38.909636 ], [ -77.048900, 38.909636 ], [ -77.048793, 38.909636 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005501", "GEOID": "11001005501", "NAME": "55.01", "NAMELSAD": "Census Tract 55.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 164749, "AWATER": 0, "INTPTLAT": "+38.9052766", "INTPTLON": "-077.0494324" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.050531, 38.902097 ], [ -77.050558, 38.902113 ], [ -77.050617, 38.902155 ], [ -77.050665, 38.902205 ], [ -77.050713, 38.902255 ], [ -77.050740, 38.902301 ], [ -77.050756, 38.902330 ], [ -77.050783, 38.902464 ], [ -77.050778, 38.902527 ], [ -77.050767, 38.902585 ], [ -77.050767, 38.902602 ], [ -77.050745, 38.902681 ], [ -77.050719, 38.902735 ], [ -77.051014, 38.902694 ], [ -77.051148, 38.902811 ], [ -77.051196, 38.902848 ], [ -77.051271, 38.902894 ], [ -77.051411, 38.902977 ], [ -77.051416, 38.903149 ], [ -77.051411, 38.903741 ], [ -77.051411, 38.903829 ], [ -77.051411, 38.904234 ], [ -77.051405, 38.904414 ], [ -77.051405, 38.904451 ], [ -77.051405, 38.904555 ], [ -77.051405, 38.905111 ], [ -77.051405, 38.905136 ], [ -77.051405, 38.905261 ], [ -77.051400, 38.905415 ], [ -77.051400, 38.906179 ], [ -77.051400, 38.906822 ], [ -77.051400, 38.907156 ], [ -77.051405, 38.907244 ], [ -77.050622, 38.907244 ], [ -77.050204, 38.907244 ], [ -77.050096, 38.907248 ], [ -77.049608, 38.907244 ], [ -77.049040, 38.907240 ], [ -77.048804, 38.907240 ], [ -77.048686, 38.907236 ], [ -77.048417, 38.907244 ], [ -77.048230, 38.907244 ], [ -77.047554, 38.907244 ], [ -77.047361, 38.907244 ], [ -77.047076, 38.907244 ], [ -77.046636, 38.907244 ], [ -77.046347, 38.907244 ], [ -77.045681, 38.907244 ], [ -77.045767, 38.907152 ], [ -77.046186, 38.906722 ], [ -77.046642, 38.906234 ], [ -77.046996, 38.905854 ], [ -77.047216, 38.905620 ], [ -77.047425, 38.905365 ], [ -77.047479, 38.905311 ], [ -77.047629, 38.905190 ], [ -77.047924, 38.904856 ], [ -77.048181, 38.904576 ], [ -77.048417, 38.904338 ], [ -77.048605, 38.904142 ], [ -77.048686, 38.904050 ], [ -77.048879, 38.903758 ], [ -77.048997, 38.903696 ], [ -77.049040, 38.903675 ], [ -77.049136, 38.903574 ], [ -77.049302, 38.903403 ], [ -77.049726, 38.902969 ], [ -77.049657, 38.902927 ], [ -77.049598, 38.902886 ], [ -77.049549, 38.902836 ], [ -77.049506, 38.902781 ], [ -77.049474, 38.902727 ], [ -77.049458, 38.902689 ], [ -77.049447, 38.902631 ], [ -77.049447, 38.902560 ], [ -77.049447, 38.902527 ], [ -77.049458, 38.902460 ], [ -77.049469, 38.902422 ], [ -77.049501, 38.902339 ], [ -77.049517, 38.902310 ], [ -77.049565, 38.902176 ], [ -77.049678, 38.902109 ], [ -77.049742, 38.902072 ], [ -77.049812, 38.902042 ], [ -77.049882, 38.902017 ], [ -77.049962, 38.902001 ], [ -77.050037, 38.901988 ], [ -77.050118, 38.901988 ], [ -77.050198, 38.901992 ], [ -77.050273, 38.902001 ], [ -77.050354, 38.902021 ], [ -77.050413, 38.902042 ], [ -77.050493, 38.902076 ], [ -77.050531, 38.902097 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005602", "GEOID": "11001005602", "NAME": "56.02", "NAMELSAD": "Census Tract 56.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 273491, "AWATER": 6261, "INTPTLAT": "+38.8988888", "INTPTLON": "-077.0554558" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.057666, 38.902543 ], [ -77.057601, 38.902543 ], [ -77.057569, 38.902543 ], [ -77.056974, 38.902535 ], [ -77.056877, 38.902531 ], [ -77.056528, 38.902518 ], [ -77.056303, 38.902522 ], [ -77.056105, 38.902527 ], [ -77.055246, 38.902497 ], [ -77.054737, 38.902485 ], [ -77.054742, 38.902297 ], [ -77.054747, 38.902276 ], [ -77.054753, 38.901842 ], [ -77.054747, 38.901500 ], [ -77.054753, 38.901128 ], [ -77.054753, 38.901049 ], [ -77.054753, 38.900940 ], [ -77.054747, 38.900865 ], [ -77.054747, 38.900840 ], [ -77.054737, 38.900815 ], [ -77.054699, 38.900748 ], [ -77.054672, 38.900723 ], [ -77.054624, 38.900702 ], [ -77.054597, 38.900698 ], [ -77.054565, 38.900698 ], [ -77.054484, 38.900694 ], [ -77.054431, 38.900694 ], [ -77.054071, 38.900698 ], [ -77.053846, 38.900694 ], [ -77.053760, 38.900694 ], [ -77.053685, 38.900698 ], [ -77.053621, 38.900698 ], [ -77.053304, 38.900698 ], [ -77.053304, 38.900665 ], [ -77.053304, 38.900615 ], [ -77.053304, 38.900585 ], [ -77.053304, 38.900519 ], [ -77.053310, 38.900448 ], [ -77.053310, 38.900360 ], [ -77.053310, 38.900297 ], [ -77.053310, 38.900218 ], [ -77.053315, 38.900151 ], [ -77.053310, 38.900034 ], [ -77.053310, 38.899968 ], [ -77.053310, 38.899830 ], [ -77.053310, 38.899746 ], [ -77.053304, 38.899667 ], [ -77.053299, 38.899642 ], [ -77.053283, 38.899621 ], [ -77.053261, 38.899600 ], [ -77.053235, 38.899592 ], [ -77.053192, 38.899583 ], [ -77.053143, 38.899575 ], [ -77.053047, 38.899575 ], [ -77.052999, 38.899575 ], [ -77.052881, 38.899579 ], [ -77.052773, 38.899579 ], [ -77.052677, 38.899579 ], [ -77.052591, 38.899575 ], [ -77.052478, 38.899575 ], [ -77.052339, 38.899575 ], [ -77.052199, 38.899575 ], [ -77.051958, 38.899575 ], [ -77.051829, 38.899571 ], [ -77.051657, 38.899575 ], [ -77.051513, 38.899575 ], [ -77.051432, 38.899575 ], [ -77.051336, 38.899575 ], [ -77.051046, 38.899575 ], [ -77.050949, 38.899579 ], [ -77.050831, 38.899579 ], [ -77.050606, 38.899575 ], [ -77.050499, 38.899575 ], [ -77.050397, 38.899575 ], [ -77.050268, 38.899575 ], [ -77.050129, 38.899575 ], [ -77.050129, 38.899554 ], [ -77.050129, 38.899492 ], [ -77.050129, 38.899412 ], [ -77.050129, 38.899366 ], [ -77.050129, 38.899279 ], [ -77.050134, 38.899158 ], [ -77.050139, 38.898936 ], [ -77.050139, 38.898886 ], [ -77.050134, 38.898715 ], [ -77.050134, 38.898677 ], [ -77.050134, 38.898636 ], [ -77.050134, 38.898556 ], [ -77.050134, 38.898502 ], [ -77.050134, 38.898327 ], [ -77.050129, 38.898289 ], [ -77.050134, 38.898231 ], [ -77.050134, 38.898185 ], [ -77.050129, 38.898135 ], [ -77.050134, 38.898101 ], [ -77.050134, 38.898064 ], [ -77.050129, 38.898018 ], [ -77.050129, 38.897951 ], [ -77.050134, 38.897813 ], [ -77.050134, 38.897671 ], [ -77.050129, 38.897596 ], [ -77.050129, 38.897554 ], [ -77.050134, 38.897479 ], [ -77.050134, 38.897417 ], [ -77.050134, 38.897358 ], [ -77.050129, 38.897179 ], [ -77.050129, 38.897149 ], [ -77.050129, 38.897116 ], [ -77.050129, 38.897020 ], [ -77.050129, 38.896982 ], [ -77.050123, 38.896907 ], [ -77.050118, 38.896782 ], [ -77.050118, 38.896732 ], [ -77.050112, 38.896607 ], [ -77.050112, 38.896498 ], [ -77.050112, 38.896444 ], [ -77.050112, 38.896369 ], [ -77.050118, 38.896114 ], [ -77.050112, 38.896022 ], [ -77.051362, 38.895909 ], [ -77.051588, 38.895960 ], [ -77.051690, 38.895980 ], [ -77.052028, 38.896022 ], [ -77.052194, 38.896043 ], [ -77.052360, 38.896068 ], [ -77.052451, 38.896076 ], [ -77.052526, 38.896089 ], [ -77.052623, 38.896118 ], [ -77.052693, 38.896156 ], [ -77.052752, 38.896193 ], [ -77.052811, 38.896248 ], [ -77.052848, 38.896294 ], [ -77.052886, 38.896352 ], [ -77.052907, 38.896398 ], [ -77.052940, 38.896448 ], [ -77.052961, 38.896519 ], [ -77.052961, 38.896628 ], [ -77.052891, 38.896811 ], [ -77.052843, 38.896982 ], [ -77.052827, 38.897066 ], [ -77.052816, 38.897120 ], [ -77.052838, 38.897241 ], [ -77.052805, 38.897396 ], [ -77.052789, 38.897721 ], [ -77.052789, 38.897738 ], [ -77.052811, 38.897947 ], [ -77.052816, 38.898051 ], [ -77.052832, 38.898126 ], [ -77.052848, 38.898172 ], [ -77.052870, 38.898231 ], [ -77.052902, 38.898314 ], [ -77.052961, 38.898456 ], [ -77.053020, 38.898552 ], [ -77.053133, 38.898682 ], [ -77.053159, 38.898632 ], [ -77.053202, 38.898577 ], [ -77.053218, 38.898556 ], [ -77.053240, 38.898540 ], [ -77.053267, 38.898515 ], [ -77.053310, 38.898490 ], [ -77.053326, 38.898043 ], [ -77.053320, 38.897997 ], [ -77.053310, 38.897922 ], [ -77.053310, 38.897859 ], [ -77.053315, 38.897780 ], [ -77.053315, 38.897755 ], [ -77.053320, 38.897721 ], [ -77.053326, 38.897688 ], [ -77.053337, 38.897659 ], [ -77.053342, 38.897638 ], [ -77.053363, 38.897575 ], [ -77.053369, 38.897554 ], [ -77.053379, 38.897513 ], [ -77.053406, 38.897454 ], [ -77.053433, 38.897429 ], [ -77.053460, 38.897404 ], [ -77.053519, 38.897375 ], [ -77.053573, 38.897362 ], [ -77.053621, 38.897354 ], [ -77.053717, 38.897354 ], [ -77.053819, 38.897354 ], [ -77.054034, 38.897354 ], [ -77.054093, 38.897358 ], [ -77.054130, 38.897354 ], [ -77.054270, 38.897354 ], [ -77.054356, 38.897354 ], [ -77.054452, 38.897354 ], [ -77.054635, 38.897358 ], [ -77.054758, 38.897350 ], [ -77.054790, 38.897354 ], [ -77.054833, 38.897350 ], [ -77.054865, 38.897346 ], [ -77.054973, 38.897346 ], [ -77.055005, 38.897350 ], [ -77.055042, 38.897350 ], [ -77.055101, 38.897350 ], [ -77.055139, 38.897350 ], [ -77.055198, 38.897354 ], [ -77.055225, 38.897354 ], [ -77.055262, 38.897354 ], [ -77.055289, 38.897354 ], [ -77.055343, 38.897354 ], [ -77.055391, 38.897354 ], [ -77.055472, 38.897379 ], [ -77.055557, 38.897392 ], [ -77.055686, 38.897400 ], [ -77.055750, 38.897412 ], [ -77.055847, 38.897471 ], [ -77.055874, 38.897492 ], [ -77.055928, 38.897542 ], [ -77.055944, 38.897563 ], [ -77.055970, 38.897584 ], [ -77.055987, 38.897596 ], [ -77.056008, 38.897609 ], [ -77.056121, 38.897650 ], [ -77.056287, 38.897667 ], [ -77.056421, 38.897667 ], [ -77.056496, 38.897671 ], [ -77.056652, 38.897667 ], [ -77.056646, 38.897855 ], [ -77.056625, 38.898389 ], [ -77.056630, 38.898452 ], [ -77.056641, 38.898481 ], [ -77.056657, 38.898540 ], [ -77.056673, 38.898565 ], [ -77.056684, 38.898586 ], [ -77.056700, 38.898607 ], [ -77.056732, 38.898648 ], [ -77.056748, 38.898661 ], [ -77.056780, 38.898690 ], [ -77.056834, 38.898740 ], [ -77.056856, 38.898765 ], [ -77.056888, 38.898811 ], [ -77.057016, 38.898928 ], [ -77.057124, 38.899045 ], [ -77.057145, 38.899028 ], [ -77.057349, 38.899304 ], [ -77.057344, 38.899329 ], [ -77.057354, 38.899341 ], [ -77.057381, 38.899354 ], [ -77.057392, 38.899371 ], [ -77.057392, 38.899387 ], [ -77.057387, 38.899421 ], [ -77.057376, 38.899437 ], [ -77.057371, 38.899462 ], [ -77.057354, 38.899487 ], [ -77.057322, 38.899529 ], [ -77.057295, 38.899567 ], [ -77.057430, 38.899667 ], [ -77.057483, 38.899709 ], [ -77.057462, 38.899738 ], [ -77.057451, 38.899759 ], [ -77.057430, 38.899792 ], [ -77.057419, 38.899821 ], [ -77.057403, 38.899871 ], [ -77.057392, 38.899909 ], [ -77.057387, 38.899942 ], [ -77.057376, 38.900001 ], [ -77.057376, 38.900022 ], [ -77.057376, 38.900064 ], [ -77.057387, 38.900101 ], [ -77.057408, 38.900135 ], [ -77.057424, 38.900155 ], [ -77.057435, 38.900172 ], [ -77.057451, 38.900193 ], [ -77.057499, 38.900243 ], [ -77.057531, 38.900285 ], [ -77.057580, 38.900322 ], [ -77.057612, 38.900343 ], [ -77.057633, 38.900364 ], [ -77.057649, 38.900377 ], [ -77.057692, 38.900414 ], [ -77.057719, 38.900435 ], [ -77.057741, 38.900452 ], [ -77.057773, 38.900473 ], [ -77.057832, 38.900514 ], [ -77.057864, 38.900535 ], [ -77.057923, 38.900577 ], [ -77.057993, 38.900623 ], [ -77.058041, 38.900648 ], [ -77.058084, 38.900681 ], [ -77.058122, 38.900702 ], [ -77.058164, 38.900731 ], [ -77.058181, 38.900744 ], [ -77.058245, 38.900790 ], [ -77.058282, 38.900823 ], [ -77.058352, 38.900886 ], [ -77.058401, 38.900911 ], [ -77.058427, 38.900936 ], [ -77.058535, 38.901036 ], [ -77.058578, 38.901162 ], [ -77.058561, 38.901195 ], [ -77.058572, 38.901212 ], [ -77.058583, 38.901228 ], [ -77.058594, 38.901249 ], [ -77.058594, 38.901287 ], [ -77.058594, 38.901333 ], [ -77.058583, 38.901358 ], [ -77.058578, 38.901387 ], [ -77.058572, 38.901416 ], [ -77.058567, 38.901441 ], [ -77.058556, 38.901470 ], [ -77.058545, 38.901500 ], [ -77.058513, 38.901550 ], [ -77.058502, 38.901575 ], [ -77.058470, 38.901625 ], [ -77.058417, 38.901725 ], [ -77.058401, 38.901750 ], [ -77.058374, 38.901788 ], [ -77.058363, 38.901813 ], [ -77.058342, 38.901834 ], [ -77.058299, 38.901900 ], [ -77.058266, 38.901951 ], [ -77.058250, 38.901976 ], [ -77.058207, 38.902030 ], [ -77.058138, 38.902126 ], [ -77.058073, 38.902188 ], [ -77.058020, 38.902222 ], [ -77.057993, 38.902285 ], [ -77.057982, 38.902318 ], [ -77.057891, 38.902276 ], [ -77.057853, 38.902335 ], [ -77.057800, 38.902410 ], [ -77.057751, 38.902485 ], [ -77.057666, 38.902543 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010700", "GEOID": "11001010700", "NAME": "107", "NAMELSAD": "Census Tract 107", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 891588, "AWATER": 0, "INTPTLAT": "+38.9039988", "INTPTLON": "-077.0419809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.043906, 38.909143 ], [ -77.043868, 38.909122 ], [ -77.043815, 38.909101 ], [ -77.043750, 38.909076 ], [ -77.043686, 38.909056 ], [ -77.043654, 38.909047 ], [ -77.043584, 38.909035 ], [ -77.043525, 38.909030 ], [ -77.043482, 38.909026 ], [ -77.043439, 38.909026 ], [ -77.043402, 38.909026 ], [ -77.043343, 38.909030 ], [ -77.043284, 38.909039 ], [ -77.043230, 38.909047 ], [ -77.043192, 38.909060 ], [ -77.043112, 38.909085 ], [ -77.043021, 38.909118 ], [ -77.042956, 38.909152 ], [ -77.042935, 38.909164 ], [ -77.042908, 38.909177 ], [ -77.042865, 38.909206 ], [ -77.042833, 38.909235 ], [ -77.042817, 38.909252 ], [ -77.042785, 38.909285 ], [ -77.042753, 38.909327 ], [ -77.042736, 38.909348 ], [ -77.042715, 38.909389 ], [ -77.041674, 38.909030 ], [ -77.040220, 38.908525 ], [ -77.039931, 38.908425 ], [ -77.039480, 38.908267 ], [ -77.039196, 38.908166 ], [ -77.039073, 38.908125 ], [ -77.038493, 38.907924 ], [ -77.038150, 38.907803 ], [ -77.037785, 38.907678 ], [ -77.037651, 38.907632 ], [ -77.036862, 38.907352 ], [ -77.036921, 38.907244 ], [ -77.036873, 38.907135 ], [ -77.036830, 38.907094 ], [ -77.036814, 38.907081 ], [ -77.036793, 38.907069 ], [ -77.036771, 38.907060 ], [ -77.036707, 38.907035 ], [ -77.036685, 38.907027 ], [ -77.036642, 38.907023 ], [ -77.036605, 38.907023 ], [ -77.036524, 38.907023 ], [ -77.036530, 38.905653 ], [ -77.036535, 38.904990 ], [ -77.036535, 38.904318 ], [ -77.036535, 38.903863 ], [ -77.036535, 38.903737 ], [ -77.036535, 38.903441 ], [ -77.036541, 38.903090 ], [ -77.036541, 38.902527 ], [ -77.036541, 38.901646 ], [ -77.036541, 38.901345 ], [ -77.036546, 38.900848 ], [ -77.036546, 38.900715 ], [ -77.036551, 38.900201 ], [ -77.037951, 38.900201 ], [ -77.037946, 38.899930 ], [ -77.037946, 38.898748 ], [ -77.039250, 38.898744 ], [ -77.039459, 38.898811 ], [ -77.039663, 38.898886 ], [ -77.040242, 38.899091 ], [ -77.041175, 38.899416 ], [ -77.041701, 38.899596 ], [ -77.041798, 38.899625 ], [ -77.041883, 38.899654 ], [ -77.041985, 38.899692 ], [ -77.042329, 38.899809 ], [ -77.042779, 38.899963 ], [ -77.042892, 38.900005 ], [ -77.042946, 38.900022 ], [ -77.043187, 38.900105 ], [ -77.043461, 38.900201 ], [ -77.043600, 38.900251 ], [ -77.043664, 38.900276 ], [ -77.044791, 38.900669 ], [ -77.044898, 38.900706 ], [ -77.045032, 38.900752 ], [ -77.045295, 38.900844 ], [ -77.046164, 38.901149 ], [ -77.046400, 38.901232 ], [ -77.046652, 38.901320 ], [ -77.047060, 38.901462 ], [ -77.047935, 38.901767 ], [ -77.048256, 38.901875 ], [ -77.048830, 38.902088 ], [ -77.049367, 38.902289 ], [ -77.049565, 38.902176 ], [ -77.049517, 38.902310 ], [ -77.049501, 38.902339 ], [ -77.049469, 38.902422 ], [ -77.049458, 38.902460 ], [ -77.049447, 38.902527 ], [ -77.049447, 38.902560 ], [ -77.049447, 38.902631 ], [ -77.049458, 38.902689 ], [ -77.049474, 38.902727 ], [ -77.049506, 38.902781 ], [ -77.049549, 38.902836 ], [ -77.049598, 38.902886 ], [ -77.049657, 38.902927 ], [ -77.049726, 38.902969 ], [ -77.049302, 38.903403 ], [ -77.049136, 38.903574 ], [ -77.049040, 38.903675 ], [ -77.048997, 38.903696 ], [ -77.048879, 38.903758 ], [ -77.048686, 38.904050 ], [ -77.048605, 38.904142 ], [ -77.048417, 38.904338 ], [ -77.048181, 38.904576 ], [ -77.047924, 38.904856 ], [ -77.047629, 38.905190 ], [ -77.047479, 38.905311 ], [ -77.047425, 38.905365 ], [ -77.047216, 38.905620 ], [ -77.046996, 38.905854 ], [ -77.046642, 38.906234 ], [ -77.046186, 38.906722 ], [ -77.045767, 38.907152 ], [ -77.045681, 38.907244 ], [ -77.045601, 38.907327 ], [ -77.045349, 38.907595 ], [ -77.044989, 38.907987 ], [ -77.044920, 38.908062 ], [ -77.044673, 38.908329 ], [ -77.044448, 38.908567 ], [ -77.044201, 38.908830 ], [ -77.044147, 38.908889 ], [ -77.043906, 38.909143 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010800", "GEOID": "11001010800", "NAME": "108", "NAMELSAD": "Census Tract 108", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 661580, "AWATER": 0, "INTPTLAT": "+38.8973521", "INTPTLON": "-077.0446120" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.050118, 38.901988 ], [ -77.050037, 38.901988 ], [ -77.049962, 38.902001 ], [ -77.049882, 38.902017 ], [ -77.049812, 38.902042 ], [ -77.049742, 38.902072 ], [ -77.049678, 38.902109 ], [ -77.049565, 38.902176 ], [ -77.049367, 38.902289 ], [ -77.048830, 38.902088 ], [ -77.048256, 38.901875 ], [ -77.047935, 38.901767 ], [ -77.047060, 38.901462 ], [ -77.046652, 38.901320 ], [ -77.046400, 38.901232 ], [ -77.046164, 38.901149 ], [ -77.045295, 38.900844 ], [ -77.045032, 38.900752 ], [ -77.044898, 38.900706 ], [ -77.044791, 38.900669 ], [ -77.043664, 38.900276 ], [ -77.043600, 38.900251 ], [ -77.043461, 38.900201 ], [ -77.043187, 38.900105 ], [ -77.042946, 38.900022 ], [ -77.042892, 38.900005 ], [ -77.042779, 38.899963 ], [ -77.042329, 38.899809 ], [ -77.041985, 38.899692 ], [ -77.041883, 38.899654 ], [ -77.041798, 38.899625 ], [ -77.041701, 38.899596 ], [ -77.041175, 38.899416 ], [ -77.040242, 38.899091 ], [ -77.039663, 38.898886 ], [ -77.039459, 38.898811 ], [ -77.039469, 38.898640 ], [ -77.039469, 38.898323 ], [ -77.039469, 38.898227 ], [ -77.039469, 38.898160 ], [ -77.039469, 38.897830 ], [ -77.039475, 38.897471 ], [ -77.039469, 38.897354 ], [ -77.039464, 38.897262 ], [ -77.039459, 38.896928 ], [ -77.039459, 38.896611 ], [ -77.039459, 38.896402 ], [ -77.039459, 38.896289 ], [ -77.039453, 38.895847 ], [ -77.039459, 38.895542 ], [ -77.039459, 38.895396 ], [ -77.039464, 38.895296 ], [ -77.039464, 38.894824 ], [ -77.039469, 38.894523 ], [ -77.039464, 38.894340 ], [ -77.039464, 38.893922 ], [ -77.039464, 38.893638 ], [ -77.039464, 38.893613 ], [ -77.039464, 38.893530 ], [ -77.039480, 38.892102 ], [ -77.040671, 38.892102 ], [ -77.040703, 38.892114 ], [ -77.040730, 38.892110 ], [ -77.040757, 38.892118 ], [ -77.040784, 38.892127 ], [ -77.040811, 38.892135 ], [ -77.040837, 38.892148 ], [ -77.040859, 38.892160 ], [ -77.040880, 38.892177 ], [ -77.040923, 38.892206 ], [ -77.041079, 38.892302 ], [ -77.041583, 38.892574 ], [ -77.041658, 38.892607 ], [ -77.041744, 38.892640 ], [ -77.041889, 38.892703 ], [ -77.041975, 38.892749 ], [ -77.043187, 38.893371 ], [ -77.043471, 38.893513 ], [ -77.043917, 38.893763 ], [ -77.044083, 38.893851 ], [ -77.044539, 38.894102 ], [ -77.044764, 38.894231 ], [ -77.045091, 38.894448 ], [ -77.045209, 38.894528 ], [ -77.045295, 38.894590 ], [ -77.045521, 38.894715 ], [ -77.046679, 38.895317 ], [ -77.047382, 38.895684 ], [ -77.047425, 38.895705 ], [ -77.047618, 38.895805 ], [ -77.048020, 38.896018 ], [ -77.048138, 38.896018 ], [ -77.048272, 38.896022 ], [ -77.048498, 38.896022 ], [ -77.048594, 38.896022 ], [ -77.048798, 38.896018 ], [ -77.050112, 38.896022 ], [ -77.050118, 38.896114 ], [ -77.050112, 38.896369 ], [ -77.050112, 38.896444 ], [ -77.050112, 38.896498 ], [ -77.050112, 38.896607 ], [ -77.050118, 38.896732 ], [ -77.050118, 38.896782 ], [ -77.050123, 38.896907 ], [ -77.050129, 38.896982 ], [ -77.050129, 38.897020 ], [ -77.050129, 38.897116 ], [ -77.050129, 38.897149 ], [ -77.050129, 38.897179 ], [ -77.050134, 38.897358 ], [ -77.050134, 38.897417 ], [ -77.050134, 38.897479 ], [ -77.050129, 38.897554 ], [ -77.050129, 38.897596 ], [ -77.050134, 38.897671 ], [ -77.050134, 38.897813 ], [ -77.050129, 38.897951 ], [ -77.050129, 38.898018 ], [ -77.050134, 38.898064 ], [ -77.050134, 38.898101 ], [ -77.050129, 38.898135 ], [ -77.050134, 38.898185 ], [ -77.050134, 38.898231 ], [ -77.050129, 38.898289 ], [ -77.050134, 38.898327 ], [ -77.050134, 38.898502 ], [ -77.050134, 38.898556 ], [ -77.050134, 38.898636 ], [ -77.050134, 38.898677 ], [ -77.050134, 38.898715 ], [ -77.050139, 38.898886 ], [ -77.050139, 38.898936 ], [ -77.050134, 38.899158 ], [ -77.050129, 38.899279 ], [ -77.050129, 38.899366 ], [ -77.050129, 38.899412 ], [ -77.050129, 38.899492 ], [ -77.050129, 38.899554 ], [ -77.050129, 38.899575 ], [ -77.050129, 38.899600 ], [ -77.050129, 38.899646 ], [ -77.050129, 38.899742 ], [ -77.050129, 38.899796 ], [ -77.050129, 38.899851 ], [ -77.050123, 38.900001 ], [ -77.050129, 38.900089 ], [ -77.050129, 38.900164 ], [ -77.050134, 38.900251 ], [ -77.050134, 38.900293 ], [ -77.050134, 38.900331 ], [ -77.050129, 38.900414 ], [ -77.050129, 38.900510 ], [ -77.050129, 38.900631 ], [ -77.050129, 38.900661 ], [ -77.050123, 38.900698 ], [ -77.050123, 38.900773 ], [ -77.050129, 38.900794 ], [ -77.050129, 38.900815 ], [ -77.050129, 38.900840 ], [ -77.050123, 38.901232 ], [ -77.050118, 38.901988 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003702", "GEOID": "11001003702", "NAME": "37.02", "NAMELSAD": "Census Tract 37.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 119532, "AWATER": 0, "INTPTLAT": "+38.9249042", "INTPTLON": "-077.0343972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.925897 ], [ -77.035275, 38.923436 ], [ -77.035307, 38.923434 ], [ -77.035307, 38.923297 ], [ -77.035489, 38.923284 ], [ -77.036487, 38.923251 ], [ -77.036487, 38.923422 ], [ -77.036487, 38.924227 ], [ -77.036481, 38.924766 ], [ -77.036481, 38.924824 ], [ -77.036481, 38.925605 ], [ -77.036481, 38.925792 ], [ -77.036481, 38.925880 ], [ -77.036482, 38.925897 ], [ -77.035275, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003701", "GEOID": "11001003701", "NAME": "37.01", "NAMELSAD": "Census Tract 37.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 172840, "AWATER": 0, "INTPTLAT": "+38.9214487", "INTPTLON": "-077.0342887" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036492, 38.919144 ], [ -77.036498, 38.919286 ], [ -77.036492, 38.919862 ], [ -77.036492, 38.920313 ], [ -77.036492, 38.920363 ], [ -77.036487, 38.920964 ], [ -77.036487, 38.921673 ], [ -77.036481, 38.922608 ], [ -77.036487, 38.922733 ], [ -77.036487, 38.923180 ], [ -77.036487, 38.923209 ], [ -77.036487, 38.923251 ], [ -77.035489, 38.923284 ], [ -77.035307, 38.923297 ], [ -77.035307, 38.923434 ], [ -77.035275, 38.923436 ], [ -77.035275, 38.919182 ], [ -77.035489, 38.919182 ], [ -77.035908, 38.919182 ], [ -77.036315, 38.919182 ], [ -77.036353, 38.919182 ], [ -77.036492, 38.919144 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004300", "GEOID": "11001004300", "NAME": "43", "NAMELSAD": "Census Tract 43", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 236694, "AWATER": 0, "INTPTLAT": "+38.9168040", "INTPTLON": "-077.0341511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036353, 38.919182 ], [ -77.036315, 38.919182 ], [ -77.035908, 38.919182 ], [ -77.035489, 38.919182 ], [ -77.035275, 38.919182 ], [ -77.035275, 38.914093 ], [ -77.035334, 38.914094 ], [ -77.036160, 38.914090 ], [ -77.036508, 38.914094 ], [ -77.036503, 38.914265 ], [ -77.036503, 38.914833 ], [ -77.036503, 38.914903 ], [ -77.036503, 38.915204 ], [ -77.036503, 38.915496 ], [ -77.036503, 38.915571 ], [ -77.036503, 38.915822 ], [ -77.036503, 38.916231 ], [ -77.036498, 38.916289 ], [ -77.036487, 38.916414 ], [ -77.036481, 38.916807 ], [ -77.036487, 38.917003 ], [ -77.036492, 38.917170 ], [ -77.036492, 38.917199 ], [ -77.036498, 38.917308 ], [ -77.036498, 38.918017 ], [ -77.036498, 38.918038 ], [ -77.036498, 38.918113 ], [ -77.036498, 38.918526 ], [ -77.036498, 38.918931 ], [ -77.036492, 38.919002 ], [ -77.036492, 38.919144 ], [ -77.036353, 38.919182 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005202", "GEOID": "11001005202", "NAME": "52.02", "NAMELSAD": "Census Tract 52.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 246292, "AWATER": 0, "INTPTLAT": "+38.9111270", "INTPTLON": "-077.0344946" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.906807 ], [ -77.035425, 38.906860 ], [ -77.036181, 38.907131 ], [ -77.036160, 38.907156 ], [ -77.036144, 38.907181 ], [ -77.036133, 38.907223 ], [ -77.036133, 38.907244 ], [ -77.036138, 38.907269 ], [ -77.036149, 38.907294 ], [ -77.036160, 38.907311 ], [ -77.036176, 38.907344 ], [ -77.036224, 38.907390 ], [ -77.036251, 38.907411 ], [ -77.036272, 38.907423 ], [ -77.036299, 38.907436 ], [ -77.036342, 38.907448 ], [ -77.036385, 38.907453 ], [ -77.036524, 38.907461 ], [ -77.036524, 38.908325 ], [ -77.036524, 38.908697 ], [ -77.036524, 38.909081 ], [ -77.036519, 38.909561 ], [ -77.036519, 38.909644 ], [ -77.036519, 38.909728 ], [ -77.036524, 38.909794 ], [ -77.036519, 38.910383 ], [ -77.036519, 38.910458 ], [ -77.036514, 38.911013 ], [ -77.036514, 38.911126 ], [ -77.036514, 38.911209 ], [ -77.036514, 38.911869 ], [ -77.036508, 38.912232 ], [ -77.036514, 38.912608 ], [ -77.036508, 38.912691 ], [ -77.036508, 38.912958 ], [ -77.036508, 38.913347 ], [ -77.036508, 38.913426 ], [ -77.036508, 38.913564 ], [ -77.036508, 38.914010 ], [ -77.036508, 38.914094 ], [ -77.036160, 38.914090 ], [ -77.035334, 38.914094 ], [ -77.035275, 38.914093 ], [ -77.035275, 38.906807 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010100", "GEOID": "11001010100", "NAME": "101", "NAMELSAD": "Census Tract 101", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 579230, "AWATER": 0, "INTPTLAT": "+38.9026971", "INTPTLON": "-077.0318472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036524, 38.907023 ], [ -77.036471, 38.907023 ], [ -77.036428, 38.907027 ], [ -77.036385, 38.907035 ], [ -77.036363, 38.907039 ], [ -77.036342, 38.907048 ], [ -77.036278, 38.907073 ], [ -77.036245, 38.907089 ], [ -77.036181, 38.907131 ], [ -77.035425, 38.906860 ], [ -77.035275, 38.906807 ], [ -77.035275, 38.900199 ], [ -77.035473, 38.900197 ], [ -77.035596, 38.900197 ], [ -77.036551, 38.900201 ], [ -77.036546, 38.900715 ], [ -77.036546, 38.900848 ], [ -77.036541, 38.901345 ], [ -77.036541, 38.901646 ], [ -77.036541, 38.902527 ], [ -77.036541, 38.903090 ], [ -77.036535, 38.903441 ], [ -77.036535, 38.903737 ], [ -77.036535, 38.903863 ], [ -77.036535, 38.904318 ], [ -77.036535, 38.904990 ], [ -77.036530, 38.905653 ], [ -77.036524, 38.907023 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "980000", "GEOID": "11001980000", "NAME": "9800", "NAMELSAD": "Census Tract 9800", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 6514228, "AWATER": 4996393, "INTPTLAT": "+38.8809933", "INTPTLON": "-077.0363219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.063879, 38.890365 ], [ -77.063904, 38.890381 ], [ -77.063926, 38.890415 ], [ -77.063937, 38.890452 ], [ -77.063947, 38.890490 ], [ -77.063969, 38.890528 ], [ -77.063990, 38.890561 ], [ -77.064022, 38.890603 ], [ -77.064039, 38.890632 ], [ -77.064060, 38.890670 ], [ -77.064071, 38.890757 ], [ -77.064055, 38.890820 ], [ -77.064012, 38.890878 ], [ -77.063996, 38.890903 ], [ -77.063985, 38.890945 ], [ -77.064006, 38.890991 ], [ -77.064033, 38.891012 ], [ -77.064065, 38.891024 ], [ -77.064098, 38.891041 ], [ -77.064135, 38.891075 ], [ -77.064157, 38.891091 ], [ -77.064178, 38.891121 ], [ -77.064199, 38.891154 ], [ -77.064221, 38.891191 ], [ -77.064242, 38.891233 ], [ -77.064275, 38.891296 ], [ -77.064285, 38.891333 ], [ -77.064301, 38.891371 ], [ -77.064323, 38.891409 ], [ -77.064339, 38.891413 ], [ -77.064371, 38.891413 ], [ -77.064387, 38.891413 ], [ -77.064414, 38.891413 ], [ -77.064430, 38.891421 ], [ -77.064452, 38.891450 ], [ -77.064462, 38.891471 ], [ -77.064468, 38.891488 ], [ -77.064484, 38.891509 ], [ -77.064527, 38.891546 ], [ -77.064537, 38.891559 ], [ -77.064543, 38.891576 ], [ -77.064553, 38.891588 ], [ -77.064564, 38.891613 ], [ -77.064586, 38.891642 ], [ -77.064596, 38.891659 ], [ -77.064639, 38.891713 ], [ -77.064693, 38.891851 ], [ -77.064623, 38.891839 ], [ -77.064344, 38.891797 ], [ -77.064162, 38.891772 ], [ -77.063985, 38.891755 ], [ -77.063754, 38.891751 ], [ -77.063636, 38.891751 ], [ -77.063545, 38.891755 ], [ -77.063411, 38.891764 ], [ -77.063250, 38.891776 ], [ -77.063019, 38.891809 ], [ -77.062547, 38.891889 ], [ -77.062504, 38.891897 ], [ -77.062461, 38.891901 ], [ -77.062123, 38.891960 ], [ -77.061726, 38.892027 ], [ -77.061512, 38.892060 ], [ -77.060997, 38.892148 ], [ -77.060916, 38.892160 ], [ -77.060536, 38.892231 ], [ -77.060369, 38.892260 ], [ -77.060047, 38.892315 ], [ -77.059892, 38.892340 ], [ -77.059811, 38.892352 ], [ -77.059677, 38.892373 ], [ -77.059345, 38.892432 ], [ -77.058926, 38.892503 ], [ -77.057633, 38.892703 ], [ -77.056952, 38.892820 ], [ -77.056239, 38.892953 ], [ -77.055917, 38.892999 ], [ -77.055938, 38.893083 ], [ -77.056153, 38.893563 ], [ -77.056180, 38.893634 ], [ -77.056292, 38.893885 ], [ -77.056437, 38.894214 ], [ -77.056459, 38.894256 ], [ -77.056480, 38.894298 ], [ -77.056518, 38.894386 ], [ -77.056544, 38.894469 ], [ -77.056561, 38.894515 ], [ -77.056587, 38.894603 ], [ -77.056609, 38.894678 ], [ -77.056620, 38.894732 ], [ -77.056636, 38.894791 ], [ -77.056652, 38.894903 ], [ -77.056673, 38.895016 ], [ -77.056684, 38.895133 ], [ -77.056695, 38.895216 ], [ -77.056700, 38.895333 ], [ -77.056705, 38.895513 ], [ -77.056700, 38.895605 ], [ -77.056700, 38.896243 ], [ -77.056695, 38.896536 ], [ -77.056684, 38.896707 ], [ -77.056652, 38.897667 ], [ -77.056496, 38.897671 ], [ -77.056421, 38.897667 ], [ -77.056287, 38.897667 ], [ -77.056121, 38.897650 ], [ -77.056008, 38.897609 ], [ -77.055987, 38.897596 ], [ -77.055970, 38.897584 ], [ -77.055944, 38.897563 ], [ -77.055928, 38.897542 ], [ -77.055874, 38.897492 ], [ -77.055847, 38.897471 ], [ -77.055750, 38.897412 ], [ -77.055686, 38.897400 ], [ -77.055557, 38.897392 ], [ -77.055472, 38.897379 ], [ -77.055391, 38.897354 ], [ -77.055343, 38.897354 ], [ -77.055289, 38.897354 ], [ -77.055262, 38.897354 ], [ -77.055225, 38.897354 ], [ -77.055198, 38.897354 ], [ -77.055139, 38.897350 ], [ -77.055101, 38.897350 ], [ -77.055042, 38.897350 ], [ -77.055005, 38.897350 ], [ -77.054973, 38.897346 ], [ -77.054865, 38.897346 ], [ -77.054833, 38.897350 ], [ -77.054790, 38.897354 ], [ -77.054758, 38.897350 ], [ -77.054635, 38.897358 ], [ -77.054452, 38.897354 ], [ -77.054356, 38.897354 ], [ -77.054270, 38.897354 ], [ -77.054130, 38.897354 ], [ -77.054093, 38.897358 ], [ -77.054034, 38.897354 ], [ -77.053819, 38.897354 ], [ -77.053717, 38.897354 ], [ -77.053621, 38.897354 ], [ -77.053573, 38.897362 ], [ -77.053519, 38.897375 ], [ -77.053460, 38.897404 ], [ -77.053433, 38.897429 ], [ -77.053406, 38.897454 ], [ -77.053379, 38.897513 ], [ -77.053369, 38.897554 ], [ -77.053363, 38.897575 ], [ -77.053342, 38.897638 ], [ -77.053337, 38.897659 ], [ -77.053326, 38.897688 ], [ -77.053320, 38.897721 ], [ -77.053315, 38.897755 ], [ -77.053315, 38.897780 ], [ -77.053310, 38.897859 ], [ -77.053310, 38.897922 ], [ -77.053320, 38.897997 ], [ -77.053326, 38.898043 ], [ -77.053310, 38.898490 ], [ -77.053267, 38.898515 ], [ -77.053240, 38.898540 ], [ -77.053218, 38.898556 ], [ -77.053202, 38.898577 ], [ -77.053159, 38.898632 ], [ -77.053133, 38.898682 ], [ -77.053020, 38.898552 ], [ -77.052961, 38.898456 ], [ -77.052902, 38.898314 ], [ -77.052870, 38.898231 ], [ -77.052848, 38.898172 ], [ -77.052832, 38.898126 ], [ -77.052816, 38.898051 ], [ -77.052811, 38.897947 ], [ -77.052789, 38.897738 ], [ -77.052789, 38.897721 ], [ -77.052805, 38.897396 ], [ -77.052838, 38.897241 ], [ -77.052816, 38.897120 ], [ -77.052827, 38.897066 ], [ -77.052843, 38.896982 ], [ -77.052891, 38.896811 ], [ -77.052961, 38.896628 ], [ -77.052961, 38.896519 ], [ -77.052940, 38.896448 ], [ -77.052907, 38.896398 ], [ -77.052886, 38.896352 ], [ -77.052848, 38.896294 ], [ -77.052811, 38.896248 ], [ -77.052752, 38.896193 ], [ -77.052693, 38.896156 ], [ -77.052623, 38.896118 ], [ -77.052526, 38.896089 ], [ -77.052451, 38.896076 ], [ -77.052360, 38.896068 ], [ -77.052194, 38.896043 ], [ -77.052028, 38.896022 ], [ -77.051690, 38.895980 ], [ -77.051588, 38.895960 ], [ -77.051362, 38.895909 ], [ -77.050112, 38.896022 ], [ -77.048798, 38.896018 ], [ -77.048594, 38.896022 ], [ -77.048498, 38.896022 ], [ -77.048272, 38.896022 ], [ -77.048138, 38.896018 ], [ -77.048020, 38.896018 ], [ -77.047618, 38.895805 ], [ -77.047425, 38.895705 ], [ -77.047382, 38.895684 ], [ -77.046679, 38.895317 ], [ -77.045521, 38.894715 ], [ -77.045295, 38.894590 ], [ -77.045209, 38.894528 ], [ -77.045091, 38.894448 ], [ -77.044764, 38.894231 ], [ -77.044539, 38.894102 ], [ -77.044083, 38.893851 ], [ -77.043917, 38.893763 ], [ -77.043471, 38.893513 ], [ -77.043187, 38.893371 ], [ -77.041975, 38.892749 ], [ -77.041889, 38.892703 ], [ -77.041744, 38.892640 ], [ -77.041658, 38.892607 ], [ -77.041583, 38.892574 ], [ -77.041079, 38.892302 ], [ -77.040923, 38.892206 ], [ -77.040880, 38.892177 ], [ -77.040859, 38.892160 ], [ -77.040837, 38.892148 ], [ -77.040811, 38.892135 ], [ -77.040784, 38.892127 ], [ -77.040757, 38.892118 ], [ -77.040730, 38.892110 ], [ -77.040703, 38.892114 ], [ -77.040671, 38.892102 ], [ -77.039480, 38.892102 ], [ -77.039464, 38.893530 ], [ -77.039464, 38.893613 ], [ -77.039464, 38.893638 ], [ -77.039464, 38.893922 ], [ -77.039464, 38.894340 ], [ -77.039469, 38.894523 ], [ -77.039464, 38.894824 ], [ -77.039464, 38.895296 ], [ -77.039459, 38.895396 ], [ -77.039459, 38.895542 ], [ -77.039453, 38.895847 ], [ -77.039459, 38.896289 ], [ -77.039459, 38.896402 ], [ -77.039459, 38.896611 ], [ -77.039459, 38.896928 ], [ -77.039464, 38.897262 ], [ -77.039469, 38.897354 ], [ -77.039475, 38.897471 ], [ -77.039469, 38.897830 ], [ -77.039469, 38.898160 ], [ -77.039469, 38.898227 ], [ -77.039469, 38.898323 ], [ -77.039469, 38.898640 ], [ -77.039459, 38.898811 ], [ -77.039250, 38.898744 ], [ -77.037946, 38.898748 ], [ -77.037946, 38.899930 ], [ -77.037951, 38.900201 ], [ -77.036551, 38.900201 ], [ -77.035596, 38.900197 ], [ -77.035473, 38.900197 ], [ -77.035275, 38.900199 ], [ -77.035275, 38.890365 ], [ -77.063879, 38.890365 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2342, "y": 3132 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001402", "GEOID": "11001001402", "NAME": "14.02", "NAMELSAD": "Census Tract 14.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 895209, "AWATER": 0, "INTPTLAT": "+38.9606051", "INTPTLON": "-077.0630933" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.056056, 38.958675 ], [ -77.056083, 38.958616 ], [ -77.056115, 38.958562 ], [ -77.056153, 38.958508 ], [ -77.056185, 38.958462 ], [ -77.056249, 38.958378 ], [ -77.056287, 38.958337 ], [ -77.056308, 38.958316 ], [ -77.056324, 38.958295 ], [ -77.056341, 38.958278 ], [ -77.056362, 38.958262 ], [ -77.056383, 38.958245 ], [ -77.056410, 38.958228 ], [ -77.056437, 38.958220 ], [ -77.056528, 38.958157 ], [ -77.056716, 38.958032 ], [ -77.056770, 38.957982 ], [ -77.056818, 38.957932 ], [ -77.056850, 38.957895 ], [ -77.056877, 38.957857 ], [ -77.056909, 38.957803 ], [ -77.056925, 38.957774 ], [ -77.056952, 38.957715 ], [ -77.056957, 38.957694 ], [ -77.056979, 38.957657 ], [ -77.057000, 38.957594 ], [ -77.057006, 38.957565 ], [ -77.057016, 38.957536 ], [ -77.057086, 38.957340 ], [ -77.057097, 38.957311 ], [ -77.057124, 38.957202 ], [ -77.057156, 38.957098 ], [ -77.057183, 38.957019 ], [ -77.057194, 38.956998 ], [ -77.057215, 38.956952 ], [ -77.057242, 38.956906 ], [ -77.057274, 38.956864 ], [ -77.057295, 38.956843 ], [ -77.057333, 38.956806 ], [ -77.057360, 38.956785 ], [ -77.057392, 38.956768 ], [ -77.057424, 38.956752 ], [ -77.057462, 38.956739 ], [ -77.057499, 38.956731 ], [ -77.057526, 38.956727 ], [ -77.057590, 38.956718 ], [ -77.057623, 38.956718 ], [ -77.057655, 38.956718 ], [ -77.057682, 38.956718 ], [ -77.057784, 38.956727 ], [ -77.057848, 38.956731 ], [ -77.057907, 38.956731 ], [ -77.057934, 38.956731 ], [ -77.057987, 38.956727 ], [ -77.058020, 38.956722 ], [ -77.058063, 38.956714 ], [ -77.058079, 38.956752 ], [ -77.058089, 38.956785 ], [ -77.058105, 38.956814 ], [ -77.058127, 38.956843 ], [ -77.058154, 38.956868 ], [ -77.058181, 38.956893 ], [ -77.058315, 38.957006 ], [ -77.058347, 38.957031 ], [ -77.058476, 38.957131 ], [ -77.058578, 38.957210 ], [ -77.058674, 38.957286 ], [ -77.058722, 38.957323 ], [ -77.058776, 38.957361 ], [ -77.058803, 38.957377 ], [ -77.058862, 38.957407 ], [ -77.058921, 38.957436 ], [ -77.059001, 38.957473 ], [ -77.059087, 38.957502 ], [ -77.059141, 38.957519 ], [ -77.059194, 38.957536 ], [ -77.059312, 38.957565 ], [ -77.059361, 38.957578 ], [ -77.059382, 38.957582 ], [ -77.059677, 38.957648 ], [ -77.059849, 38.957686 ], [ -77.060026, 38.957719 ], [ -77.060149, 38.957740 ], [ -77.060337, 38.957769 ], [ -77.060401, 38.957778 ], [ -77.060589, 38.957803 ], [ -77.060863, 38.957832 ], [ -77.061002, 38.957845 ], [ -77.061346, 38.957870 ], [ -77.061743, 38.957899 ], [ -77.062064, 38.957920 ], [ -77.062145, 38.957928 ], [ -77.062681, 38.957970 ], [ -77.063212, 38.958007 ], [ -77.063309, 38.958020 ], [ -77.063411, 38.958036 ], [ -77.063459, 38.958045 ], [ -77.063518, 38.958057 ], [ -77.063599, 38.958078 ], [ -77.063647, 38.958095 ], [ -77.063776, 38.958132 ], [ -77.063937, 38.958182 ], [ -77.064103, 38.958232 ], [ -77.064269, 38.958278 ], [ -77.064521, 38.958341 ], [ -77.064886, 38.958429 ], [ -77.064929, 38.958437 ], [ -77.064961, 38.958445 ], [ -77.065122, 38.958479 ], [ -77.065181, 38.958499 ], [ -77.065256, 38.958516 ], [ -77.065337, 38.958533 ], [ -77.065519, 38.958562 ], [ -77.065589, 38.958575 ], [ -77.065723, 38.958591 ], [ -77.065793, 38.958595 ], [ -77.065927, 38.958608 ], [ -77.066034, 38.958616 ], [ -77.066163, 38.958549 ], [ -77.066200, 38.958512 ], [ -77.066318, 38.958429 ], [ -77.066678, 38.958178 ], [ -77.066914, 38.958016 ], [ -77.067059, 38.957915 ], [ -77.067102, 38.957882 ], [ -77.067123, 38.957865 ], [ -77.067145, 38.957849 ], [ -77.067279, 38.957753 ], [ -77.067370, 38.957682 ], [ -77.067391, 38.957665 ], [ -77.067413, 38.957644 ], [ -77.067434, 38.957628 ], [ -77.067477, 38.957594 ], [ -77.067686, 38.957415 ], [ -77.067810, 38.957294 ], [ -77.067938, 38.957144 ], [ -77.068014, 38.957060 ], [ -77.068046, 38.957014 ], [ -77.068078, 38.956973 ], [ -77.068137, 38.956885 ], [ -77.068148, 38.956860 ], [ -77.068233, 38.956731 ], [ -77.068378, 38.956493 ], [ -77.068470, 38.956359 ], [ -77.068550, 38.956230 ], [ -77.068620, 38.956126 ], [ -77.068727, 38.955959 ], [ -77.068840, 38.955788 ], [ -77.068872, 38.955738 ], [ -77.068899, 38.955684 ], [ -77.068925, 38.955634 ], [ -77.068947, 38.955579 ], [ -77.068979, 38.955496 ], [ -77.069001, 38.955429 ], [ -77.069060, 38.955283 ], [ -77.069108, 38.955146 ], [ -77.069156, 38.955004 ], [ -77.069204, 38.954862 ], [ -77.069215, 38.954820 ], [ -77.069226, 38.954770 ], [ -77.069226, 38.954749 ], [ -77.069226, 38.954724 ], [ -77.069221, 38.954695 ], [ -77.069226, 38.954662 ], [ -77.069231, 38.954641 ], [ -77.069242, 38.954616 ], [ -77.069312, 38.954432 ], [ -77.069424, 38.954336 ], [ -77.069494, 38.954457 ], [ -77.069575, 38.954603 ], [ -77.069628, 38.954691 ], [ -77.069736, 38.954883 ], [ -77.069907, 38.955166 ], [ -77.070116, 38.955534 ], [ -77.070197, 38.955671 ], [ -77.070406, 38.956034 ], [ -77.070540, 38.956264 ], [ -77.070975, 38.957002 ], [ -77.071103, 38.957223 ], [ -77.071286, 38.957532 ], [ -77.071404, 38.957740 ], [ -77.071602, 38.958091 ], [ -77.071742, 38.958320 ], [ -77.071763, 38.958358 ], [ -77.072107, 38.958950 ], [ -77.072150, 38.959025 ], [ -77.072230, 38.959171 ], [ -77.072536, 38.959688 ], [ -77.072760, 38.960076 ], [ -77.056202, 38.960076 ], [ -77.056196, 38.960005 ], [ -77.056190, 38.959955 ], [ -77.056180, 38.959880 ], [ -77.056158, 38.959780 ], [ -77.056137, 38.959692 ], [ -77.056121, 38.959630 ], [ -77.056099, 38.959505 ], [ -77.056019, 38.959004 ], [ -77.056013, 38.958979 ], [ -77.056003, 38.958921 ], [ -77.056003, 38.958887 ], [ -77.056003, 38.958858 ], [ -77.056003, 38.958825 ], [ -77.056013, 38.958791 ], [ -77.056029, 38.958733 ], [ -77.056056, 38.958675 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001004", "GEOID": "11001001004", "NAME": "10.04", "NAMELSAD": "Census Tract 10.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1471925, "AWATER": 0, "INTPTLAT": "+38.9487665", "INTPTLON": "-077.0853886" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.080936, 38.951402 ], [ -77.080802, 38.951137 ], [ -77.080786, 38.951112 ], [ -77.080765, 38.951053 ], [ -77.080749, 38.951011 ], [ -77.080706, 38.950907 ], [ -77.080674, 38.950807 ], [ -77.080641, 38.950703 ], [ -77.080609, 38.950598 ], [ -77.080486, 38.950069 ], [ -77.080480, 38.950044 ], [ -77.080395, 38.949685 ], [ -77.080379, 38.949605 ], [ -77.080277, 38.949172 ], [ -77.080266, 38.949105 ], [ -77.080250, 38.949038 ], [ -77.080228, 38.948951 ], [ -77.080207, 38.948892 ], [ -77.080196, 38.948859 ], [ -77.080180, 38.948813 ], [ -77.080142, 38.948742 ], [ -77.080116, 38.948684 ], [ -77.080100, 38.948654 ], [ -77.079923, 38.948337 ], [ -77.079762, 38.948054 ], [ -77.079670, 38.947908 ], [ -77.079558, 38.947724 ], [ -77.079365, 38.947365 ], [ -77.079204, 38.947077 ], [ -77.078930, 38.946585 ], [ -77.078887, 38.946506 ], [ -77.078758, 38.946280 ], [ -77.078624, 38.946034 ], [ -77.078539, 38.945884 ], [ -77.078496, 38.945805 ], [ -77.079096, 38.945926 ], [ -77.079107, 38.945888 ], [ -77.079113, 38.945867 ], [ -77.079129, 38.945847 ], [ -77.079145, 38.945826 ], [ -77.079316, 38.945617 ], [ -77.079461, 38.945454 ], [ -77.079638, 38.945246 ], [ -77.079810, 38.945037 ], [ -77.079939, 38.944895 ], [ -77.080035, 38.944783 ], [ -77.080121, 38.944678 ], [ -77.080228, 38.944557 ], [ -77.080389, 38.944365 ], [ -77.080502, 38.944232 ], [ -77.080936, 38.943723 ], [ -77.080936, 38.951402 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000803", "GEOID": "11001000803", "NAME": "8.03", "NAMELSAD": "Census Tract 8.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308153, "AWATER": 0, "INTPTLAT": "+38.9336425", "INTPTLON": "-077.0835217" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.080936, 38.934287 ], [ -77.080899, 38.934260 ], [ -77.080223, 38.933767 ], [ -77.080121, 38.933692 ], [ -77.080110, 38.933058 ], [ -77.079971, 38.932411 ], [ -77.079896, 38.932065 ], [ -77.080320, 38.930905 ], [ -77.080566, 38.930237 ], [ -77.080690, 38.930258 ], [ -77.080818, 38.930270 ], [ -77.080936, 38.930278 ], [ -77.080936, 38.934287 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000804", "GEOID": "11001000804", "NAME": "8.04", "NAMELSAD": "Census Tract 8.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2566768, "AWATER": 167978, "INTPTLAT": "+38.9221746", "INTPTLON": "-077.0918347" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.080936, 38.930278 ], [ -77.080818, 38.930270 ], [ -77.080690, 38.930258 ], [ -77.080566, 38.930237 ], [ -77.080936, 38.928935 ], [ -77.080936, 38.930278 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001100", "GEOID": "11001001100", "NAME": "11", "NAMELSAD": "Census Tract 11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1676650, "AWATER": 0, "INTPTLAT": "+38.9572432", "INTPTLON": "-077.0776732" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.078887, 38.946506 ], [ -77.078930, 38.946585 ], [ -77.079204, 38.947077 ], [ -77.079365, 38.947365 ], [ -77.079558, 38.947724 ], [ -77.079670, 38.947908 ], [ -77.079762, 38.948054 ], [ -77.079923, 38.948337 ], [ -77.080100, 38.948654 ], [ -77.080116, 38.948684 ], [ -77.080142, 38.948742 ], [ -77.080180, 38.948813 ], [ -77.080196, 38.948859 ], [ -77.080207, 38.948892 ], [ -77.080228, 38.948951 ], [ -77.080250, 38.949038 ], [ -77.080266, 38.949105 ], [ -77.080277, 38.949172 ], [ -77.080379, 38.949605 ], [ -77.080395, 38.949685 ], [ -77.080480, 38.950044 ], [ -77.080486, 38.950069 ], [ -77.080609, 38.950598 ], [ -77.080641, 38.950703 ], [ -77.080674, 38.950807 ], [ -77.080706, 38.950907 ], [ -77.080749, 38.951011 ], [ -77.080765, 38.951053 ], [ -77.080786, 38.951112 ], [ -77.080802, 38.951137 ], [ -77.080936, 38.951402 ], [ -77.080936, 38.960076 ], [ -77.072760, 38.960076 ], [ -77.072536, 38.959688 ], [ -77.072230, 38.959171 ], [ -77.072150, 38.959025 ], [ -77.072107, 38.958950 ], [ -77.071763, 38.958358 ], [ -77.071742, 38.958320 ], [ -77.071602, 38.958091 ], [ -77.071404, 38.957740 ], [ -77.071286, 38.957532 ], [ -77.071103, 38.957223 ], [ -77.070975, 38.957002 ], [ -77.070540, 38.956264 ], [ -77.070406, 38.956034 ], [ -77.070197, 38.955671 ], [ -77.070116, 38.955534 ], [ -77.069907, 38.955166 ], [ -77.069736, 38.954883 ], [ -77.069628, 38.954691 ], [ -77.069575, 38.954603 ], [ -77.069494, 38.954457 ], [ -77.069424, 38.954336 ], [ -77.069505, 38.954203 ], [ -77.069516, 38.954182 ], [ -77.069575, 38.954023 ], [ -77.069591, 38.953973 ], [ -77.069628, 38.953882 ], [ -77.069811, 38.953381 ], [ -77.069832, 38.953306 ], [ -77.069843, 38.953256 ], [ -77.069843, 38.952997 ], [ -77.069843, 38.952426 ], [ -77.069843, 38.952096 ], [ -77.070401, 38.952096 ], [ -77.070889, 38.952096 ], [ -77.071517, 38.952096 ], [ -77.071715, 38.952100 ], [ -77.072155, 38.952096 ], [ -77.072863, 38.952100 ], [ -77.073083, 38.952100 ], [ -77.073501, 38.952100 ], [ -77.073625, 38.952100 ], [ -77.073652, 38.952109 ], [ -77.073678, 38.952117 ], [ -77.073705, 38.952134 ], [ -77.073727, 38.952150 ], [ -77.073839, 38.952025 ], [ -77.074220, 38.951579 ], [ -77.074311, 38.951470 ], [ -77.074440, 38.951316 ], [ -77.074649, 38.951074 ], [ -77.074762, 38.950945 ], [ -77.074885, 38.950799 ], [ -77.074939, 38.950732 ], [ -77.075095, 38.950557 ], [ -77.075374, 38.950235 ], [ -77.075642, 38.949914 ], [ -77.075797, 38.949735 ], [ -77.075953, 38.949564 ], [ -77.076554, 38.948855 ], [ -77.076747, 38.948625 ], [ -77.076918, 38.948429 ], [ -77.077069, 38.948245 ], [ -77.077171, 38.948129 ], [ -77.077364, 38.947903 ], [ -77.077509, 38.947736 ], [ -77.077632, 38.947582 ], [ -77.077686, 38.947524 ], [ -77.077804, 38.947390 ], [ -77.077938, 38.947227 ], [ -77.078018, 38.947140 ], [ -77.078136, 38.947006 ], [ -77.078281, 38.946827 ], [ -77.078308, 38.946802 ], [ -77.078324, 38.946785 ], [ -77.078340, 38.946773 ], [ -77.078388, 38.946744 ], [ -77.078421, 38.946727 ], [ -77.078480, 38.946698 ], [ -77.078533, 38.946564 ], [ -77.078619, 38.946568 ], [ -77.078673, 38.946572 ], [ -77.078732, 38.946564 ], [ -77.078780, 38.946552 ], [ -77.078828, 38.946531 ], [ -77.078887, 38.946506 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001200", "GEOID": "11001001200", "NAME": "12", "NAMELSAD": "Census Tract 12", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1219204, "AWATER": 0, "INTPTLAT": "+38.9462221", "INTPTLON": "-077.0705215" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.061651, 38.940973 ], [ -77.062166, 38.940952 ], [ -77.062268, 38.940948 ], [ -77.062359, 38.940940 ], [ -77.062408, 38.940936 ], [ -77.062494, 38.940923 ], [ -77.062585, 38.940911 ], [ -77.062703, 38.940894 ], [ -77.062971, 38.940844 ], [ -77.063057, 38.940827 ], [ -77.063245, 38.940781 ], [ -77.063379, 38.940748 ], [ -77.063411, 38.940744 ], [ -77.063465, 38.940727 ], [ -77.063486, 38.940723 ], [ -77.063561, 38.940706 ], [ -77.063588, 38.940702 ], [ -77.063706, 38.940673 ], [ -77.063738, 38.940669 ], [ -77.063861, 38.940640 ], [ -77.064022, 38.940610 ], [ -77.064162, 38.940573 ], [ -77.064323, 38.940539 ], [ -77.064387, 38.940531 ], [ -77.064452, 38.940523 ], [ -77.064613, 38.940506 ], [ -77.064645, 38.940502 ], [ -77.064704, 38.940498 ], [ -77.064827, 38.940489 ], [ -77.064891, 38.940485 ], [ -77.065063, 38.940477 ], [ -77.065127, 38.940477 ], [ -77.065562, 38.940477 ], [ -77.065701, 38.940481 ], [ -77.065803, 38.940485 ], [ -77.065948, 38.940498 ], [ -77.065986, 38.940498 ], [ -77.066174, 38.940514 ], [ -77.066275, 38.940523 ], [ -77.066383, 38.940535 ], [ -77.066726, 38.940585 ], [ -77.066801, 38.940598 ], [ -77.066946, 38.940627 ], [ -77.066984, 38.940631 ], [ -77.067107, 38.940656 ], [ -77.067381, 38.940619 ], [ -77.067407, 38.940610 ], [ -77.067434, 38.940606 ], [ -77.067456, 38.940598 ], [ -77.067482, 38.940585 ], [ -77.067504, 38.940573 ], [ -77.067525, 38.940560 ], [ -77.067541, 38.940544 ], [ -77.067558, 38.940527 ], [ -77.067579, 38.940506 ], [ -77.067590, 38.940485 ], [ -77.067606, 38.940473 ], [ -77.067627, 38.940460 ], [ -77.067649, 38.940456 ], [ -77.067670, 38.940514 ], [ -77.067676, 38.940535 ], [ -77.067697, 38.940594 ], [ -77.067735, 38.940669 ], [ -77.067772, 38.940752 ], [ -77.067820, 38.940827 ], [ -77.067847, 38.940877 ], [ -77.067869, 38.940902 ], [ -77.067922, 38.940977 ], [ -77.067976, 38.941048 ], [ -77.068040, 38.941119 ], [ -77.068105, 38.941186 ], [ -77.068475, 38.941541 ], [ -77.068539, 38.941608 ], [ -77.068566, 38.941645 ], [ -77.068620, 38.941716 ], [ -77.068647, 38.941754 ], [ -77.068695, 38.941829 ], [ -77.068716, 38.941866 ], [ -77.068748, 38.941941 ], [ -77.068791, 38.942033 ], [ -77.068856, 38.942171 ], [ -77.068872, 38.942208 ], [ -77.069204, 38.942212 ], [ -77.069333, 38.942212 ], [ -77.069666, 38.942212 ], [ -77.070149, 38.942212 ], [ -77.072407, 38.942217 ], [ -77.072509, 38.942217 ], [ -77.074601, 38.942217 ], [ -77.074767, 38.942217 ], [ -77.074826, 38.942217 ], [ -77.075073, 38.942217 ], [ -77.076001, 38.942221 ], [ -77.076505, 38.942217 ], [ -77.076564, 38.942325 ], [ -77.076618, 38.942421 ], [ -77.076961, 38.943051 ], [ -77.077026, 38.943164 ], [ -77.077256, 38.943573 ], [ -77.077460, 38.943948 ], [ -77.077927, 38.944783 ], [ -77.077981, 38.944883 ], [ -77.078099, 38.945091 ], [ -77.078319, 38.945496 ], [ -77.078388, 38.945621 ], [ -77.078496, 38.945805 ], [ -77.078539, 38.945884 ], [ -77.078624, 38.946034 ], [ -77.078758, 38.946280 ], [ -77.078887, 38.946506 ], [ -77.078828, 38.946531 ], [ -77.078780, 38.946552 ], [ -77.078732, 38.946564 ], [ -77.078673, 38.946572 ], [ -77.078619, 38.946568 ], [ -77.078533, 38.946564 ], [ -77.078480, 38.946698 ], [ -77.078421, 38.946727 ], [ -77.078388, 38.946744 ], [ -77.078340, 38.946773 ], [ -77.078324, 38.946785 ], [ -77.078308, 38.946802 ], [ -77.078281, 38.946827 ], [ -77.078136, 38.947006 ], [ -77.078018, 38.947140 ], [ -77.077938, 38.947227 ], [ -77.077804, 38.947390 ], [ -77.077686, 38.947524 ], [ -77.077632, 38.947582 ], [ -77.077509, 38.947736 ], [ -77.077364, 38.947903 ], [ -77.077171, 38.948129 ], [ -77.077069, 38.948245 ], [ -77.076918, 38.948429 ], [ -77.076747, 38.948625 ], [ -77.076554, 38.948855 ], [ -77.075953, 38.949564 ], [ -77.075797, 38.949735 ], [ -77.075642, 38.949914 ], [ -77.075374, 38.950235 ], [ -77.075095, 38.950557 ], [ -77.074939, 38.950732 ], [ -77.074885, 38.950799 ], [ -77.074762, 38.950945 ], [ -77.074649, 38.951074 ], [ -77.074440, 38.951316 ], [ -77.074311, 38.951470 ], [ -77.074220, 38.951579 ], [ -77.073839, 38.952025 ], [ -77.073727, 38.952150 ], [ -77.073705, 38.952134 ], [ -77.073678, 38.952117 ], [ -77.073652, 38.952109 ], [ -77.073625, 38.952100 ], [ -77.073501, 38.952100 ], [ -77.073083, 38.952100 ], [ -77.072863, 38.952100 ], [ -77.072155, 38.952096 ], [ -77.071715, 38.952100 ], [ -77.071517, 38.952096 ], [ -77.070889, 38.952096 ], [ -77.070401, 38.952096 ], [ -77.069843, 38.952096 ], [ -77.069843, 38.952426 ], [ -77.069843, 38.952997 ], [ -77.069843, 38.953256 ], [ -77.069832, 38.953306 ], [ -77.069811, 38.953381 ], [ -77.069628, 38.953882 ], [ -77.069591, 38.953973 ], [ -77.069575, 38.954023 ], [ -77.069516, 38.954182 ], [ -77.069505, 38.954203 ], [ -77.069424, 38.954336 ], [ -77.069360, 38.954232 ], [ -77.069322, 38.954169 ], [ -77.069237, 38.954015 ], [ -77.069194, 38.953948 ], [ -77.068866, 38.953385 ], [ -77.068824, 38.953310 ], [ -77.068770, 38.953218 ], [ -77.068748, 38.953177 ], [ -77.068180, 38.952200 ], [ -77.068121, 38.952096 ], [ -77.067917, 38.951746 ], [ -77.067724, 38.951416 ], [ -77.067322, 38.950728 ], [ -77.066710, 38.949685 ], [ -77.066254, 38.948900 ], [ -77.066211, 38.948825 ], [ -77.066066, 38.948571 ], [ -77.065739, 38.948012 ], [ -77.065675, 38.947895 ], [ -77.065616, 38.947791 ], [ -77.065353, 38.947336 ], [ -77.065127, 38.946952 ], [ -77.065004, 38.946735 ], [ -77.064886, 38.946531 ], [ -77.064672, 38.946164 ], [ -77.064360, 38.945634 ], [ -77.064280, 38.945484 ], [ -77.064210, 38.945379 ], [ -77.064189, 38.945338 ], [ -77.064135, 38.945250 ], [ -77.063980, 38.944987 ], [ -77.063556, 38.944253 ], [ -77.062917, 38.943155 ], [ -77.062848, 38.943034 ], [ -77.062258, 38.942016 ], [ -77.061651, 38.940973 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001002", "GEOID": "11001001002", "NAME": "10.02", "NAMELSAD": "Census Tract 10.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 889722, "AWATER": 0, "INTPTLAT": "+38.9384216", "INTPTLON": "-077.0788872" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.072412, 38.933483 ], [ -77.072557, 38.933483 ], [ -77.072906, 38.933483 ], [ -77.073233, 38.933483 ], [ -77.073593, 38.933479 ], [ -77.073861, 38.933483 ], [ -77.073973, 38.933479 ], [ -77.074842, 38.933483 ], [ -77.075180, 38.933483 ], [ -77.075293, 38.933483 ], [ -77.075862, 38.933488 ], [ -77.076355, 38.933488 ], [ -77.076623, 38.933488 ], [ -77.076935, 38.933488 ], [ -77.077047, 38.933488 ], [ -77.077509, 38.933488 ], [ -77.079048, 38.933492 ], [ -77.079467, 38.933492 ], [ -77.079569, 38.933488 ], [ -77.079611, 38.933483 ], [ -77.079654, 38.933479 ], [ -77.079692, 38.933467 ], [ -77.079729, 38.933450 ], [ -77.079762, 38.933433 ], [ -77.079874, 38.933517 ], [ -77.079917, 38.933550 ], [ -77.080121, 38.933692 ], [ -77.080223, 38.933767 ], [ -77.080899, 38.934260 ], [ -77.080936, 38.934287 ], [ -77.080936, 38.943723 ], [ -77.080502, 38.944232 ], [ -77.080389, 38.944365 ], [ -77.080228, 38.944557 ], [ -77.080121, 38.944678 ], [ -77.080035, 38.944783 ], [ -77.079939, 38.944895 ], [ -77.079810, 38.945037 ], [ -77.079638, 38.945246 ], [ -77.079461, 38.945454 ], [ -77.079316, 38.945617 ], [ -77.079145, 38.945826 ], [ -77.079129, 38.945847 ], [ -77.079113, 38.945867 ], [ -77.079107, 38.945888 ], [ -77.079096, 38.945926 ], [ -77.078496, 38.945805 ], [ -77.078388, 38.945621 ], [ -77.078319, 38.945496 ], [ -77.078099, 38.945091 ], [ -77.077981, 38.944883 ], [ -77.077927, 38.944783 ], [ -77.077460, 38.943948 ], [ -77.077256, 38.943573 ], [ -77.077026, 38.943164 ], [ -77.076961, 38.943051 ], [ -77.076618, 38.942421 ], [ -77.076564, 38.942325 ], [ -77.076505, 38.942217 ], [ -77.076355, 38.941950 ], [ -77.076210, 38.941687 ], [ -77.075894, 38.941107 ], [ -77.075738, 38.940827 ], [ -77.075690, 38.940744 ], [ -77.075416, 38.940239 ], [ -77.075036, 38.939546 ], [ -77.074258, 38.938136 ], [ -77.073839, 38.937372 ], [ -77.073791, 38.937289 ], [ -77.073576, 38.936897 ], [ -77.073458, 38.936688 ], [ -77.073249, 38.936288 ], [ -77.073222, 38.936233 ], [ -77.073147, 38.936075 ], [ -77.073099, 38.935975 ], [ -77.072890, 38.935516 ], [ -77.072605, 38.934898 ], [ -77.072536, 38.934735 ], [ -77.072520, 38.934702 ], [ -77.072504, 38.934635 ], [ -77.072487, 38.934581 ], [ -77.072461, 38.934485 ], [ -77.072445, 38.934410 ], [ -77.072439, 38.934360 ], [ -77.072428, 38.934280 ], [ -77.072428, 38.934230 ], [ -77.072418, 38.934001 ], [ -77.072412, 38.933901 ], [ -77.072407, 38.933705 ], [ -77.072407, 38.933604 ], [ -77.072412, 38.933483 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000704", "GEOID": "11001000704", "NAME": "7.04", "NAMELSAD": "Census Tract 7.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 332346, "AWATER": 0, "INTPTLAT": "+38.9300215", "INTPTLON": "-077.0752384" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.079692, 38.933467 ], [ -77.079654, 38.933479 ], [ -77.079611, 38.933483 ], [ -77.079569, 38.933488 ], [ -77.079467, 38.933492 ], [ -77.079048, 38.933492 ], [ -77.077509, 38.933488 ], [ -77.077047, 38.933488 ], [ -77.076935, 38.933488 ], [ -77.076623, 38.933488 ], [ -77.076355, 38.933488 ], [ -77.075862, 38.933488 ], [ -77.075293, 38.933483 ], [ -77.075180, 38.933483 ], [ -77.074842, 38.933483 ], [ -77.073973, 38.933479 ], [ -77.073861, 38.933483 ], [ -77.073593, 38.933479 ], [ -77.073233, 38.933483 ], [ -77.072906, 38.933483 ], [ -77.072557, 38.933483 ], [ -77.072412, 38.933483 ], [ -77.072418, 38.933367 ], [ -77.072434, 38.933246 ], [ -77.072471, 38.932945 ], [ -77.072493, 38.932832 ], [ -77.072536, 38.932545 ], [ -77.072552, 38.932469 ], [ -77.072648, 38.931873 ], [ -77.072927, 38.930124 ], [ -77.073002, 38.929657 ], [ -77.073024, 38.929511 ], [ -77.073104, 38.929023 ], [ -77.073137, 38.928822 ], [ -77.073158, 38.928609 ], [ -77.073179, 38.928451 ], [ -77.073185, 38.928313 ], [ -77.073185, 38.928175 ], [ -77.073185, 38.928084 ], [ -77.073185, 38.927992 ], [ -77.073185, 38.927608 ], [ -77.073185, 38.927529 ], [ -77.073185, 38.927291 ], [ -77.073185, 38.926577 ], [ -77.073185, 38.926181 ], [ -77.073598, 38.926185 ], [ -77.073855, 38.926185 ], [ -77.073855, 38.925734 ], [ -77.073855, 38.925588 ], [ -77.074623, 38.925575 ], [ -77.074617, 38.925738 ], [ -77.075867, 38.925755 ], [ -77.077047, 38.925742 ], [ -77.077047, 38.925901 ], [ -77.077047, 38.926110 ], [ -77.077047, 38.926185 ], [ -77.077042, 38.926281 ], [ -77.077047, 38.926544 ], [ -77.077042, 38.926852 ], [ -77.077047, 38.927136 ], [ -77.077042, 38.927374 ], [ -77.077042, 38.927529 ], [ -77.077042, 38.927599 ], [ -77.077047, 38.927946 ], [ -77.077047, 38.928000 ], [ -77.077047, 38.928205 ], [ -77.077047, 38.928497 ], [ -77.077042, 38.928826 ], [ -77.077047, 38.929018 ], [ -77.077053, 38.929098 ], [ -77.077053, 38.929277 ], [ -77.077047, 38.929769 ], [ -77.077053, 38.930016 ], [ -77.077047, 38.930562 ], [ -77.077042, 38.930804 ], [ -77.077036, 38.931013 ], [ -77.077026, 38.931167 ], [ -77.077020, 38.931205 ], [ -77.077004, 38.931414 ], [ -77.077171, 38.931539 ], [ -77.077246, 38.931593 ], [ -77.077670, 38.931902 ], [ -77.078093, 38.932211 ], [ -77.078286, 38.932353 ], [ -77.078785, 38.932720 ], [ -77.079150, 38.932987 ], [ -77.079762, 38.933433 ], [ -77.079729, 38.933450 ], [ -77.079692, 38.933467 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000703", "GEOID": "11001000703", "NAME": "7.03", "NAMELSAD": "Census Tract 7.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 232137, "AWATER": 0, "INTPTLAT": "+38.9290941", "INTPTLON": "-077.0790462" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.077047, 38.926185 ], [ -77.077691, 38.926189 ], [ -77.077986, 38.926193 ], [ -77.078292, 38.926193 ], [ -77.078565, 38.926189 ], [ -77.078850, 38.926185 ], [ -77.078978, 38.926185 ], [ -77.079177, 38.926201 ], [ -77.079418, 38.926164 ], [ -77.079762, 38.926072 ], [ -77.079998, 38.925968 ], [ -77.080502, 38.926001 ], [ -77.080936, 38.926024 ], [ -77.080936, 38.928935 ], [ -77.080566, 38.930237 ], [ -77.080320, 38.930905 ], [ -77.079896, 38.932065 ], [ -77.079971, 38.932411 ], [ -77.080110, 38.933058 ], [ -77.080121, 38.933692 ], [ -77.079917, 38.933550 ], [ -77.079874, 38.933517 ], [ -77.079762, 38.933433 ], [ -77.079150, 38.932987 ], [ -77.078785, 38.932720 ], [ -77.078286, 38.932353 ], [ -77.078093, 38.932211 ], [ -77.077670, 38.931902 ], [ -77.077246, 38.931593 ], [ -77.077171, 38.931539 ], [ -77.077004, 38.931414 ], [ -77.077020, 38.931205 ], [ -77.077026, 38.931167 ], [ -77.077036, 38.931013 ], [ -77.077042, 38.930804 ], [ -77.077047, 38.930562 ], [ -77.077053, 38.930016 ], [ -77.077047, 38.929769 ], [ -77.077053, 38.929277 ], [ -77.077053, 38.929098 ], [ -77.077047, 38.929018 ], [ -77.077042, 38.928826 ], [ -77.077047, 38.928497 ], [ -77.077047, 38.928205 ], [ -77.077047, 38.928000 ], [ -77.077047, 38.927946 ], [ -77.077042, 38.927599 ], [ -77.077042, 38.927529 ], [ -77.077042, 38.927374 ], [ -77.077047, 38.927136 ], [ -77.077042, 38.926852 ], [ -77.077047, 38.926544 ], [ -77.077042, 38.926281 ], [ -77.077047, 38.926185 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000600", "GEOID": "11001000600", "NAME": "6", "NAMELSAD": "Census Tract 6", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1441865, "AWATER": 71, "INTPTLAT": "+38.9368114", "INTPTLON": "-077.0675114" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.056770, 38.932570 ], [ -77.056877, 38.932570 ], [ -77.056984, 38.932574 ], [ -77.057070, 38.932582 ], [ -77.057156, 38.932595 ], [ -77.057215, 38.932603 ], [ -77.057585, 38.932678 ], [ -77.057666, 38.932691 ], [ -77.057805, 38.932711 ], [ -77.057837, 38.932716 ], [ -77.057869, 38.932716 ], [ -77.057907, 38.932711 ], [ -77.057939, 38.932707 ], [ -77.057971, 38.932699 ], [ -77.058004, 38.932691 ], [ -77.058030, 38.932678 ], [ -77.058057, 38.932661 ], [ -77.058084, 38.932649 ], [ -77.058111, 38.932632 ], [ -77.058127, 38.932607 ], [ -77.058164, 38.932561 ], [ -77.058197, 38.932511 ], [ -77.058240, 38.932440 ], [ -77.058266, 38.932390 ], [ -77.058282, 38.932353 ], [ -77.058315, 38.932286 ], [ -77.058358, 38.932177 ], [ -77.058379, 38.932106 ], [ -77.058401, 38.932035 ], [ -77.058422, 38.931956 ], [ -77.058438, 38.931877 ], [ -77.058449, 38.931793 ], [ -77.058454, 38.931743 ], [ -77.058454, 38.931643 ], [ -77.058449, 38.931543 ], [ -77.058449, 38.931514 ], [ -77.058454, 38.931485 ], [ -77.058460, 38.931455 ], [ -77.058470, 38.931430 ], [ -77.058492, 38.931376 ], [ -77.058508, 38.931351 ], [ -77.058529, 38.931326 ], [ -77.058551, 38.931301 ], [ -77.058776, 38.931130 ], [ -77.059098, 38.930884 ], [ -77.059194, 38.930821 ], [ -77.059441, 38.930667 ], [ -77.059742, 38.930466 ], [ -77.059870, 38.930395 ], [ -77.059897, 38.930379 ], [ -77.059929, 38.930366 ], [ -77.059988, 38.930345 ], [ -77.060053, 38.930329 ], [ -77.060117, 38.930316 ], [ -77.060149, 38.930312 ], [ -77.060219, 38.930304 ], [ -77.060257, 38.930304 ], [ -77.060412, 38.930295 ], [ -77.060831, 38.930266 ], [ -77.061024, 38.930245 ], [ -77.061110, 38.930237 ], [ -77.061158, 38.930233 ], [ -77.061560, 38.930199 ], [ -77.061882, 38.930174 ], [ -77.062145, 38.930149 ], [ -77.062300, 38.930133 ], [ -77.062563, 38.930233 ], [ -77.062735, 38.930299 ], [ -77.062912, 38.930375 ], [ -77.063143, 38.930466 ], [ -77.063250, 38.930508 ], [ -77.063947, 38.930792 ], [ -77.064500, 38.931009 ], [ -77.064586, 38.931042 ], [ -77.064677, 38.931067 ], [ -77.064768, 38.931092 ], [ -77.065267, 38.931209 ], [ -77.065707, 38.931318 ], [ -77.066029, 38.931397 ], [ -77.066254, 38.931443 ], [ -77.066388, 38.931468 ], [ -77.066608, 38.931505 ], [ -77.066721, 38.931522 ], [ -77.066833, 38.931539 ], [ -77.066978, 38.931551 ], [ -77.067102, 38.931560 ], [ -77.067204, 38.931564 ], [ -77.067606, 38.931576 ], [ -77.068636, 38.931610 ], [ -77.068797, 38.931618 ], [ -77.068888, 38.931618 ], [ -77.069199, 38.931631 ], [ -77.069618, 38.931660 ], [ -77.070878, 38.931752 ], [ -77.070996, 38.931764 ], [ -77.071254, 38.931777 ], [ -77.071613, 38.931806 ], [ -77.072412, 38.931864 ], [ -77.072434, 38.931869 ], [ -77.072482, 38.931873 ], [ -77.072530, 38.931877 ], [ -77.072579, 38.931877 ], [ -77.072648, 38.931873 ], [ -77.072552, 38.932469 ], [ -77.072536, 38.932545 ], [ -77.072493, 38.932832 ], [ -77.072471, 38.932945 ], [ -77.072434, 38.933246 ], [ -77.072418, 38.933367 ], [ -77.072412, 38.933483 ], [ -77.072407, 38.933604 ], [ -77.072407, 38.933705 ], [ -77.072412, 38.933901 ], [ -77.072418, 38.934001 ], [ -77.072428, 38.934230 ], [ -77.072428, 38.934280 ], [ -77.072439, 38.934360 ], [ -77.072445, 38.934410 ], [ -77.072461, 38.934485 ], [ -77.072487, 38.934581 ], [ -77.072504, 38.934635 ], [ -77.072520, 38.934702 ], [ -77.072536, 38.934735 ], [ -77.072605, 38.934898 ], [ -77.072890, 38.935516 ], [ -77.073099, 38.935975 ], [ -77.073147, 38.936075 ], [ -77.073222, 38.936233 ], [ -77.073249, 38.936288 ], [ -77.073458, 38.936688 ], [ -77.073576, 38.936897 ], [ -77.073791, 38.937289 ], [ -77.073839, 38.937372 ], [ -77.074258, 38.938136 ], [ -77.075036, 38.939546 ], [ -77.075416, 38.940239 ], [ -77.075690, 38.940744 ], [ -77.075738, 38.940827 ], [ -77.075894, 38.941107 ], [ -77.076210, 38.941687 ], [ -77.076355, 38.941950 ], [ -77.076505, 38.942217 ], [ -77.076001, 38.942221 ], [ -77.075073, 38.942217 ], [ -77.074826, 38.942217 ], [ -77.074767, 38.942217 ], [ -77.074601, 38.942217 ], [ -77.072509, 38.942217 ], [ -77.072407, 38.942217 ], [ -77.070149, 38.942212 ], [ -77.069666, 38.942212 ], [ -77.069333, 38.942212 ], [ -77.069204, 38.942212 ], [ -77.068872, 38.942208 ], [ -77.068856, 38.942171 ], [ -77.068791, 38.942033 ], [ -77.068748, 38.941941 ], [ -77.068716, 38.941866 ], [ -77.068695, 38.941829 ], [ -77.068647, 38.941754 ], [ -77.068620, 38.941716 ], [ -77.068566, 38.941645 ], [ -77.068539, 38.941608 ], [ -77.068475, 38.941541 ], [ -77.068105, 38.941186 ], [ -77.068040, 38.941119 ], [ -77.067976, 38.941048 ], [ -77.067922, 38.940977 ], [ -77.067869, 38.940902 ], [ -77.067847, 38.940877 ], [ -77.067820, 38.940827 ], [ -77.067772, 38.940752 ], [ -77.067735, 38.940669 ], [ -77.067697, 38.940594 ], [ -77.067676, 38.940535 ], [ -77.067670, 38.940514 ], [ -77.067649, 38.940456 ], [ -77.067627, 38.940460 ], [ -77.067606, 38.940473 ], [ -77.067590, 38.940485 ], [ -77.067579, 38.940506 ], [ -77.067558, 38.940527 ], [ -77.067541, 38.940544 ], [ -77.067525, 38.940560 ], [ -77.067504, 38.940573 ], [ -77.067482, 38.940585 ], [ -77.067456, 38.940598 ], [ -77.067434, 38.940606 ], [ -77.067407, 38.940610 ], [ -77.067381, 38.940619 ], [ -77.067107, 38.940656 ], [ -77.066984, 38.940631 ], [ -77.066946, 38.940627 ], [ -77.066801, 38.940598 ], [ -77.066726, 38.940585 ], [ -77.066383, 38.940535 ], [ -77.066275, 38.940523 ], [ -77.066174, 38.940514 ], [ -77.065986, 38.940498 ], [ -77.065948, 38.940498 ], [ -77.065803, 38.940485 ], [ -77.065701, 38.940481 ], [ -77.065562, 38.940477 ], [ -77.065127, 38.940477 ], [ -77.065063, 38.940477 ], [ -77.064891, 38.940485 ], [ -77.064827, 38.940489 ], [ -77.064704, 38.940498 ], [ -77.064645, 38.940502 ], [ -77.064613, 38.940506 ], [ -77.064452, 38.940523 ], [ -77.064387, 38.940531 ], [ -77.064323, 38.940539 ], [ -77.064162, 38.940573 ], [ -77.064022, 38.940610 ], [ -77.063861, 38.940640 ], [ -77.063738, 38.940669 ], [ -77.063706, 38.940673 ], [ -77.063588, 38.940702 ], [ -77.063561, 38.940706 ], [ -77.063486, 38.940723 ], [ -77.063465, 38.940727 ], [ -77.063411, 38.940744 ], [ -77.063379, 38.940748 ], [ -77.063245, 38.940781 ], [ -77.063057, 38.940827 ], [ -77.062971, 38.940844 ], [ -77.062703, 38.940894 ], [ -77.062585, 38.940911 ], [ -77.062494, 38.940923 ], [ -77.062408, 38.940936 ], [ -77.062359, 38.940940 ], [ -77.062268, 38.940948 ], [ -77.062166, 38.940952 ], [ -77.061651, 38.940973 ], [ -77.061512, 38.940735 ], [ -77.061222, 38.940235 ], [ -77.061008, 38.939859 ], [ -77.060804, 38.939517 ], [ -77.060729, 38.939388 ], [ -77.060686, 38.939313 ], [ -77.060326, 38.938695 ], [ -77.060257, 38.938574 ], [ -77.060053, 38.938228 ], [ -77.059999, 38.938123 ], [ -77.059393, 38.937093 ], [ -77.059329, 38.936976 ], [ -77.059296, 38.936926 ], [ -77.059243, 38.936826 ], [ -77.059173, 38.936709 ], [ -77.058980, 38.936379 ], [ -77.058508, 38.935566 ], [ -77.058368, 38.935332 ], [ -77.058127, 38.934915 ], [ -77.057955, 38.934614 ], [ -77.057741, 38.934243 ], [ -77.057644, 38.934084 ], [ -77.057312, 38.933508 ], [ -77.056957, 38.932899 ], [ -77.056770, 38.932570 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000502", "GEOID": "11001000502", "NAME": "5.02", "NAMELSAD": "Census Tract 5.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 581507, "AWATER": 0, "INTPTLAT": "+38.9283547", "INTPTLON": "-077.0595624" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.066388, 38.931468 ], [ -77.066254, 38.931443 ], [ -77.066029, 38.931397 ], [ -77.065707, 38.931318 ], [ -77.065267, 38.931209 ], [ -77.064768, 38.931092 ], [ -77.064677, 38.931067 ], [ -77.064586, 38.931042 ], [ -77.064500, 38.931009 ], [ -77.063947, 38.930792 ], [ -77.063250, 38.930508 ], [ -77.063143, 38.930466 ], [ -77.062912, 38.930375 ], [ -77.062735, 38.930299 ], [ -77.062563, 38.930233 ], [ -77.062300, 38.930133 ], [ -77.062145, 38.930149 ], [ -77.061882, 38.930174 ], [ -77.061560, 38.930199 ], [ -77.061158, 38.930233 ], [ -77.061110, 38.930237 ], [ -77.061024, 38.930245 ], [ -77.060831, 38.930266 ], [ -77.060412, 38.930295 ], [ -77.060257, 38.930304 ], [ -77.060219, 38.930304 ], [ -77.060149, 38.930312 ], [ -77.060117, 38.930316 ], [ -77.060053, 38.930329 ], [ -77.059988, 38.930345 ], [ -77.059929, 38.930366 ], [ -77.059897, 38.930379 ], [ -77.059870, 38.930395 ], [ -77.059742, 38.930466 ], [ -77.059441, 38.930667 ], [ -77.059194, 38.930821 ], [ -77.059098, 38.930884 ], [ -77.058776, 38.931130 ], [ -77.058551, 38.931301 ], [ -77.058529, 38.931326 ], [ -77.058508, 38.931351 ], [ -77.058492, 38.931376 ], [ -77.058470, 38.931430 ], [ -77.058460, 38.931455 ], [ -77.058454, 38.931485 ], [ -77.058449, 38.931514 ], [ -77.058449, 38.931543 ], [ -77.058454, 38.931643 ], [ -77.058454, 38.931743 ], [ -77.058449, 38.931793 ], [ -77.058438, 38.931877 ], [ -77.058422, 38.931956 ], [ -77.058401, 38.932035 ], [ -77.058379, 38.932106 ], [ -77.058358, 38.932177 ], [ -77.058315, 38.932286 ], [ -77.058282, 38.932353 ], [ -77.058266, 38.932390 ], [ -77.058240, 38.932440 ], [ -77.058197, 38.932511 ], [ -77.058164, 38.932561 ], [ -77.058127, 38.932607 ], [ -77.058111, 38.932632 ], [ -77.058084, 38.932649 ], [ -77.058057, 38.932661 ], [ -77.058030, 38.932678 ], [ -77.058004, 38.932691 ], [ -77.057971, 38.932699 ], [ -77.057939, 38.932707 ], [ -77.057907, 38.932711 ], [ -77.057869, 38.932716 ], [ -77.057837, 38.932716 ], [ -77.057805, 38.932711 ], [ -77.057666, 38.932691 ], [ -77.057585, 38.932678 ], [ -77.057215, 38.932603 ], [ -77.057156, 38.932595 ], [ -77.057070, 38.932582 ], [ -77.056984, 38.932574 ], [ -77.056877, 38.932570 ], [ -77.056770, 38.932570 ], [ -77.056727, 38.932499 ], [ -77.056502, 38.932115 ], [ -77.056260, 38.931693 ], [ -77.056180, 38.931568 ], [ -77.055949, 38.931167 ], [ -77.055713, 38.930754 ], [ -77.055557, 38.930483 ], [ -77.055080, 38.929665 ], [ -77.054715, 38.929043 ], [ -77.054324, 38.928372 ], [ -77.054163, 38.928088 ], [ -77.054109, 38.928000 ], [ -77.053707, 38.927312 ], [ -77.053546, 38.927032 ], [ -77.053363, 38.926719 ], [ -77.053277, 38.926569 ], [ -77.052988, 38.926072 ], [ -77.052677, 38.925538 ], [ -77.052811, 38.925555 ], [ -77.053524, 38.925642 ], [ -77.053658, 38.925659 ], [ -77.053921, 38.925692 ], [ -77.054366, 38.925747 ], [ -77.054785, 38.925805 ], [ -77.055128, 38.925851 ], [ -77.055230, 38.925863 ], [ -77.055327, 38.925876 ], [ -77.055847, 38.925943 ], [ -77.056314, 38.926005 ], [ -77.056341, 38.926009 ], [ -77.056437, 38.926022 ], [ -77.056544, 38.926034 ], [ -77.056888, 38.926080 ], [ -77.056947, 38.926085 ], [ -77.057108, 38.926105 ], [ -77.057521, 38.926160 ], [ -77.057633, 38.926172 ], [ -77.057633, 38.926089 ], [ -77.057633, 38.926039 ], [ -77.057633, 38.925329 ], [ -77.057633, 38.924954 ], [ -77.057633, 38.924682 ], [ -77.057633, 38.924561 ], [ -77.059452, 38.924561 ], [ -77.059511, 38.924607 ], [ -77.059790, 38.924820 ], [ -77.060155, 38.925108 ], [ -77.060428, 38.925317 ], [ -77.060589, 38.925454 ], [ -77.060729, 38.925563 ], [ -77.060814, 38.925626 ], [ -77.060857, 38.925659 ], [ -77.061265, 38.925976 ], [ -77.061378, 38.926060 ], [ -77.061453, 38.926122 ], [ -77.061571, 38.926218 ], [ -77.061635, 38.926272 ], [ -77.061678, 38.926302 ], [ -77.061743, 38.926352 ], [ -77.061823, 38.926410 ], [ -77.061930, 38.926494 ], [ -77.062102, 38.926627 ], [ -77.062735, 38.927128 ], [ -77.063046, 38.927366 ], [ -77.063068, 38.927382 ], [ -77.063239, 38.927520 ], [ -77.063481, 38.927529 ], [ -77.063754, 38.927524 ], [ -77.064114, 38.927529 ], [ -77.064564, 38.927524 ], [ -77.064811, 38.927529 ], [ -77.065256, 38.927529 ], [ -77.065358, 38.927524 ], [ -77.066050, 38.927524 ], [ -77.066383, 38.927529 ], [ -77.066383, 38.928004 ], [ -77.066383, 38.928438 ], [ -77.066383, 38.929010 ], [ -77.066383, 38.929089 ], [ -77.066383, 38.929448 ], [ -77.066393, 38.929966 ], [ -77.066393, 38.930074 ], [ -77.066399, 38.930266 ], [ -77.066399, 38.930345 ], [ -77.066399, 38.930963 ], [ -77.066388, 38.931468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001301", "GEOID": "11001001301", "NAME": "13.01", "NAMELSAD": "Census Tract 13.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2855501, "AWATER": 26550, "INTPTLAT": "+38.9519215", "INTPTLON": "-077.0520508" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.040499, 38.959588 ], [ -77.040510, 38.959542 ], [ -77.040553, 38.959430 ], [ -77.040639, 38.959342 ], [ -77.040923, 38.959088 ], [ -77.041084, 38.958929 ], [ -77.041122, 38.958783 ], [ -77.041186, 38.958591 ], [ -77.041288, 38.958441 ], [ -77.041470, 38.958291 ], [ -77.041824, 38.958137 ], [ -77.041900, 38.958095 ], [ -77.041921, 38.958078 ], [ -77.041985, 38.958045 ], [ -77.042060, 38.957974 ], [ -77.042109, 38.957932 ], [ -77.042125, 38.957899 ], [ -77.042146, 38.957865 ], [ -77.042152, 38.957578 ], [ -77.042136, 38.957352 ], [ -77.042136, 38.956802 ], [ -77.042216, 38.956526 ], [ -77.042291, 38.956339 ], [ -77.042329, 38.956147 ], [ -77.042291, 38.955905 ], [ -77.042168, 38.955604 ], [ -77.042087, 38.955383 ], [ -77.042087, 38.955287 ], [ -77.042077, 38.955091 ], [ -77.042098, 38.954983 ], [ -77.042152, 38.954678 ], [ -77.042184, 38.954587 ], [ -77.042339, 38.954441 ], [ -77.042667, 38.954282 ], [ -77.042774, 38.954199 ], [ -77.042962, 38.953944 ], [ -77.043149, 38.953756 ], [ -77.043375, 38.953544 ], [ -77.043584, 38.953368 ], [ -77.043799, 38.953189 ], [ -77.044137, 38.952889 ], [ -77.044276, 38.952730 ], [ -77.044641, 38.952280 ], [ -77.044743, 38.952142 ], [ -77.044839, 38.951975 ], [ -77.044866, 38.951650 ], [ -77.044888, 38.951458 ], [ -77.044984, 38.951241 ], [ -77.045311, 38.950890 ], [ -77.045719, 38.950494 ], [ -77.046068, 38.950315 ], [ -77.046604, 38.950048 ], [ -77.046942, 38.949831 ], [ -77.047055, 38.949651 ], [ -77.047055, 38.949597 ], [ -77.047023, 38.949384 ], [ -77.046867, 38.948996 ], [ -77.046878, 38.948896 ], [ -77.046964, 38.948671 ], [ -77.046996, 38.948504 ], [ -77.046990, 38.948454 ], [ -77.046953, 38.948275 ], [ -77.046851, 38.948200 ], [ -77.046835, 38.948195 ], [ -77.046551, 38.948116 ], [ -77.046357, 38.948045 ], [ -77.046250, 38.947987 ], [ -77.046014, 38.947857 ], [ -77.045842, 38.947791 ], [ -77.045569, 38.947774 ], [ -77.045285, 38.947870 ], [ -77.045086, 38.948037 ], [ -77.045027, 38.948241 ], [ -77.044957, 38.948346 ], [ -77.044845, 38.948517 ], [ -77.044743, 38.948596 ], [ -77.044619, 38.948617 ], [ -77.044464, 38.948613 ], [ -77.044340, 38.948563 ], [ -77.044196, 38.948492 ], [ -77.044104, 38.948416 ], [ -77.044040, 38.948216 ], [ -77.043992, 38.948108 ], [ -77.044147, 38.947791 ], [ -77.044662, 38.947344 ], [ -77.044743, 38.947278 ], [ -77.045177, 38.946618 ], [ -77.045440, 38.946168 ], [ -77.045676, 38.945717 ], [ -77.045816, 38.945592 ], [ -77.046019, 38.945471 ], [ -77.046239, 38.945450 ], [ -77.046604, 38.945579 ], [ -77.047065, 38.945692 ], [ -77.047543, 38.945696 ], [ -77.047758, 38.945663 ], [ -77.047977, 38.945554 ], [ -77.048165, 38.945258 ], [ -77.048423, 38.944824 ], [ -77.048616, 38.944657 ], [ -77.048707, 38.944607 ], [ -77.049184, 38.944319 ], [ -77.049383, 38.944148 ], [ -77.049651, 38.943777 ], [ -77.049678, 38.943856 ], [ -77.049732, 38.943969 ], [ -77.049748, 38.944011 ], [ -77.049844, 38.944215 ], [ -77.049935, 38.944294 ], [ -77.049962, 38.944307 ], [ -77.050005, 38.944332 ], [ -77.050037, 38.944361 ], [ -77.050053, 38.944382 ], [ -77.050075, 38.944403 ], [ -77.050102, 38.944440 ], [ -77.050129, 38.944474 ], [ -77.050225, 38.944607 ], [ -77.050327, 38.944720 ], [ -77.050483, 38.944845 ], [ -77.050520, 38.944874 ], [ -77.050542, 38.944891 ], [ -77.050611, 38.944950 ], [ -77.050638, 38.944975 ], [ -77.050670, 38.945000 ], [ -77.050751, 38.945066 ], [ -77.050778, 38.945096 ], [ -77.050831, 38.945146 ], [ -77.050847, 38.945171 ], [ -77.050890, 38.945217 ], [ -77.050933, 38.945271 ], [ -77.050955, 38.945300 ], [ -77.051003, 38.945371 ], [ -77.051041, 38.945421 ], [ -77.051132, 38.945546 ], [ -77.051191, 38.945630 ], [ -77.051346, 38.945851 ], [ -77.051421, 38.945959 ], [ -77.051443, 38.945993 ], [ -77.051475, 38.946055 ], [ -77.051507, 38.946122 ], [ -77.051550, 38.946222 ], [ -77.051582, 38.946305 ], [ -77.051593, 38.946339 ], [ -77.051631, 38.946443 ], [ -77.051647, 38.946493 ], [ -77.051657, 38.946556 ], [ -77.051674, 38.946664 ], [ -77.051674, 38.946689 ], [ -77.051674, 38.946785 ], [ -77.051668, 38.946856 ], [ -77.051668, 38.946881 ], [ -77.051663, 38.946906 ], [ -77.051641, 38.947081 ], [ -77.051636, 38.947106 ], [ -77.051636, 38.947132 ], [ -77.051625, 38.947211 ], [ -77.051615, 38.947265 ], [ -77.051604, 38.947344 ], [ -77.051577, 38.947465 ], [ -77.051545, 38.947590 ], [ -77.051518, 38.947682 ], [ -77.051497, 38.947741 ], [ -77.051480, 38.947799 ], [ -77.051470, 38.947857 ], [ -77.051454, 38.947916 ], [ -77.051448, 38.947974 ], [ -77.051443, 38.947995 ], [ -77.051443, 38.948070 ], [ -77.051448, 38.948108 ], [ -77.051459, 38.948195 ], [ -77.051470, 38.948262 ], [ -77.051486, 38.948358 ], [ -77.051507, 38.948450 ], [ -77.051513, 38.948483 ], [ -77.051523, 38.948512 ], [ -77.051534, 38.948546 ], [ -77.051566, 38.948642 ], [ -77.051588, 38.948704 ], [ -77.051631, 38.948800 ], [ -77.051657, 38.948859 ], [ -77.052800, 38.948809 ], [ -77.052822, 38.948800 ], [ -77.052843, 38.948792 ], [ -77.052956, 38.948750 ], [ -77.052977, 38.948742 ], [ -77.053004, 38.948734 ], [ -77.053025, 38.948725 ], [ -77.053090, 38.948700 ], [ -77.053133, 38.948688 ], [ -77.053154, 38.948679 ], [ -77.053267, 38.948642 ], [ -77.053288, 38.948633 ], [ -77.053315, 38.948625 ], [ -77.053337, 38.948617 ], [ -77.053363, 38.948608 ], [ -77.053535, 38.948546 ], [ -77.053669, 38.948500 ], [ -77.053750, 38.948475 ], [ -77.053798, 38.948458 ], [ -77.053825, 38.948446 ], [ -77.053964, 38.948396 ], [ -77.054034, 38.948375 ], [ -77.054157, 38.948337 ], [ -77.054238, 38.948316 ], [ -77.054366, 38.948270 ], [ -77.054495, 38.948229 ], [ -77.054688, 38.948175 ], [ -77.054849, 38.948129 ], [ -77.054983, 38.948095 ], [ -77.055198, 38.948049 ], [ -77.055359, 38.948016 ], [ -77.055439, 38.948003 ], [ -77.055520, 38.947991 ], [ -77.055600, 38.947974 ], [ -77.055681, 38.947966 ], [ -77.055799, 38.947949 ], [ -77.056072, 38.947920 ], [ -77.056223, 38.947908 ], [ -77.056373, 38.947899 ], [ -77.056641, 38.947891 ], [ -77.056711, 38.947891 ], [ -77.057204, 38.947891 ], [ -77.057912, 38.947891 ], [ -77.061635, 38.947895 ], [ -77.061759, 38.947891 ], [ -77.062027, 38.947891 ], [ -77.063207, 38.947895 ], [ -77.063980, 38.947895 ], [ -77.064446, 38.947895 ], [ -77.064849, 38.947895 ], [ -77.065138, 38.947895 ], [ -77.065342, 38.947895 ], [ -77.065675, 38.947895 ], [ -77.065739, 38.948012 ], [ -77.066066, 38.948571 ], [ -77.066211, 38.948825 ], [ -77.066254, 38.948900 ], [ -77.066710, 38.949685 ], [ -77.067322, 38.950728 ], [ -77.067724, 38.951416 ], [ -77.067917, 38.951746 ], [ -77.068121, 38.952096 ], [ -77.068180, 38.952200 ], [ -77.068748, 38.953177 ], [ -77.068770, 38.953218 ], [ -77.068824, 38.953310 ], [ -77.068866, 38.953385 ], [ -77.069194, 38.953948 ], [ -77.069237, 38.954015 ], [ -77.069322, 38.954169 ], [ -77.069360, 38.954232 ], [ -77.069424, 38.954336 ], [ -77.069312, 38.954432 ], [ -77.069242, 38.954616 ], [ -77.069231, 38.954641 ], [ -77.069226, 38.954662 ], [ -77.069221, 38.954695 ], [ -77.069226, 38.954724 ], [ -77.069226, 38.954749 ], [ -77.069226, 38.954770 ], [ -77.069215, 38.954820 ], [ -77.069204, 38.954862 ], [ -77.069156, 38.955004 ], [ -77.069108, 38.955146 ], [ -77.069060, 38.955283 ], [ -77.069001, 38.955429 ], [ -77.068979, 38.955496 ], [ -77.068947, 38.955579 ], [ -77.068925, 38.955634 ], [ -77.068899, 38.955684 ], [ -77.068872, 38.955738 ], [ -77.068840, 38.955788 ], [ -77.068727, 38.955959 ], [ -77.068620, 38.956126 ], [ -77.068550, 38.956230 ], [ -77.068470, 38.956359 ], [ -77.068378, 38.956493 ], [ -77.068233, 38.956731 ], [ -77.068148, 38.956860 ], [ -77.068137, 38.956885 ], [ -77.068078, 38.956973 ], [ -77.068046, 38.957014 ], [ -77.068014, 38.957060 ], [ -77.067938, 38.957144 ], [ -77.067810, 38.957294 ], [ -77.067686, 38.957415 ], [ -77.067477, 38.957594 ], [ -77.067434, 38.957628 ], [ -77.067413, 38.957644 ], [ -77.067391, 38.957665 ], [ -77.067370, 38.957682 ], [ -77.067279, 38.957753 ], [ -77.067145, 38.957849 ], [ -77.067123, 38.957865 ], [ -77.067102, 38.957882 ], [ -77.067059, 38.957915 ], [ -77.066914, 38.958016 ], [ -77.066678, 38.958178 ], [ -77.066318, 38.958429 ], [ -77.066200, 38.958512 ], [ -77.066163, 38.958549 ], [ -77.066034, 38.958616 ], [ -77.065927, 38.958608 ], [ -77.065793, 38.958595 ], [ -77.065723, 38.958591 ], [ -77.065589, 38.958575 ], [ -77.065519, 38.958562 ], [ -77.065337, 38.958533 ], [ -77.065256, 38.958516 ], [ -77.065181, 38.958499 ], [ -77.065122, 38.958479 ], [ -77.064961, 38.958445 ], [ -77.064929, 38.958437 ], [ -77.064886, 38.958429 ], [ -77.064521, 38.958341 ], [ -77.064269, 38.958278 ], [ -77.064103, 38.958232 ], [ -77.063937, 38.958182 ], [ -77.063776, 38.958132 ], [ -77.063647, 38.958095 ], [ -77.063599, 38.958078 ], [ -77.063518, 38.958057 ], [ -77.063459, 38.958045 ], [ -77.063411, 38.958036 ], [ -77.063309, 38.958020 ], [ -77.063212, 38.958007 ], [ -77.062681, 38.957970 ], [ -77.062145, 38.957928 ], [ -77.062064, 38.957920 ], [ -77.061743, 38.957899 ], [ -77.061346, 38.957870 ], [ -77.061002, 38.957845 ], [ -77.060863, 38.957832 ], [ -77.060589, 38.957803 ], [ -77.060401, 38.957778 ], [ -77.060337, 38.957769 ], [ -77.060149, 38.957740 ], [ -77.060026, 38.957719 ], [ -77.059849, 38.957686 ], [ -77.059677, 38.957648 ], [ -77.059382, 38.957582 ], [ -77.059361, 38.957578 ], [ -77.059312, 38.957565 ], [ -77.059194, 38.957536 ], [ -77.059141, 38.957519 ], [ -77.059087, 38.957502 ], [ -77.059001, 38.957473 ], [ -77.058921, 38.957436 ], [ -77.058862, 38.957407 ], [ -77.058803, 38.957377 ], [ -77.058776, 38.957361 ], [ -77.058722, 38.957323 ], [ -77.058674, 38.957286 ], [ -77.058578, 38.957210 ], [ -77.058476, 38.957131 ], [ -77.058347, 38.957031 ], [ -77.058315, 38.957006 ], [ -77.058181, 38.956893 ], [ -77.058154, 38.956868 ], [ -77.058127, 38.956843 ], [ -77.058105, 38.956814 ], [ -77.058089, 38.956785 ], [ -77.058079, 38.956752 ], [ -77.058063, 38.956714 ], [ -77.058020, 38.956722 ], [ -77.057987, 38.956727 ], [ -77.057934, 38.956731 ], [ -77.057907, 38.956731 ], [ -77.057848, 38.956731 ], [ -77.057784, 38.956727 ], [ -77.057682, 38.956718 ], [ -77.057655, 38.956718 ], [ -77.057623, 38.956718 ], [ -77.057590, 38.956718 ], [ -77.057526, 38.956727 ], [ -77.057499, 38.956731 ], [ -77.057462, 38.956739 ], [ -77.057424, 38.956752 ], [ -77.057392, 38.956768 ], [ -77.057360, 38.956785 ], [ -77.057333, 38.956806 ], [ -77.057295, 38.956843 ], [ -77.057274, 38.956864 ], [ -77.057242, 38.956906 ], [ -77.057215, 38.956952 ], [ -77.057194, 38.956998 ], [ -77.057183, 38.957019 ], [ -77.057156, 38.957098 ], [ -77.057124, 38.957202 ], [ -77.057097, 38.957311 ], [ -77.057086, 38.957340 ], [ -77.057016, 38.957536 ], [ -77.057006, 38.957565 ], [ -77.057000, 38.957594 ], [ -77.056979, 38.957657 ], [ -77.056957, 38.957694 ], [ -77.056952, 38.957715 ], [ -77.056925, 38.957774 ], [ -77.056909, 38.957803 ], [ -77.056877, 38.957857 ], [ -77.056850, 38.957895 ], [ -77.056818, 38.957932 ], [ -77.056770, 38.957982 ], [ -77.056716, 38.958032 ], [ -77.056528, 38.958157 ], [ -77.056437, 38.958220 ], [ -77.056410, 38.958228 ], [ -77.056383, 38.958245 ], [ -77.056362, 38.958262 ], [ -77.056341, 38.958278 ], [ -77.056324, 38.958295 ], [ -77.056308, 38.958316 ], [ -77.056287, 38.958337 ], [ -77.056249, 38.958378 ], [ -77.056185, 38.958462 ], [ -77.056153, 38.958508 ], [ -77.056115, 38.958562 ], [ -77.056083, 38.958616 ], [ -77.056056, 38.958675 ], [ -77.056029, 38.958733 ], [ -77.056013, 38.958791 ], [ -77.056003, 38.958825 ], [ -77.056003, 38.958858 ], [ -77.056003, 38.958887 ], [ -77.056003, 38.958921 ], [ -77.056013, 38.958979 ], [ -77.056019, 38.959004 ], [ -77.056099, 38.959505 ], [ -77.056121, 38.959630 ], [ -77.056137, 38.959692 ], [ -77.056158, 38.959780 ], [ -77.056180, 38.959880 ], [ -77.056190, 38.959955 ], [ -77.056196, 38.960005 ], [ -77.056202, 38.960076 ], [ -77.041607, 38.960076 ], [ -77.041556, 38.960064 ], [ -77.041309, 38.960030 ], [ -77.041084, 38.960014 ], [ -77.040891, 38.959968 ], [ -77.040789, 38.959905 ], [ -77.040644, 38.959776 ], [ -77.040553, 38.959684 ], [ -77.040499, 38.959588 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001303", "GEOID": "11001001303", "NAME": "13.03", "NAMELSAD": "Census Tract 13.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 889581, "AWATER": 5274, "INTPTLAT": "+38.9446266", "INTPTLON": "-077.0589323" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.051550, 38.939680 ], [ -77.051636, 38.939726 ], [ -77.051711, 38.939772 ], [ -77.051754, 38.939801 ], [ -77.051792, 38.939830 ], [ -77.051845, 38.939880 ], [ -77.051877, 38.939914 ], [ -77.051893, 38.939930 ], [ -77.052081, 38.940126 ], [ -77.052183, 38.940235 ], [ -77.052205, 38.940256 ], [ -77.052226, 38.940281 ], [ -77.052398, 38.940452 ], [ -77.052693, 38.940710 ], [ -77.052784, 38.940773 ], [ -77.052832, 38.940806 ], [ -77.052897, 38.940831 ], [ -77.052929, 38.940844 ], [ -77.052999, 38.940861 ], [ -77.053068, 38.940873 ], [ -77.053127, 38.940882 ], [ -77.053186, 38.940886 ], [ -77.053245, 38.940886 ], [ -77.053331, 38.940877 ], [ -77.053363, 38.940873 ], [ -77.053707, 38.940836 ], [ -77.053744, 38.940831 ], [ -77.053970, 38.940806 ], [ -77.054334, 38.940756 ], [ -77.054721, 38.940694 ], [ -77.055005, 38.940660 ], [ -77.055160, 38.940665 ], [ -77.055295, 38.940673 ], [ -77.055429, 38.940694 ], [ -77.055466, 38.940698 ], [ -77.055557, 38.940719 ], [ -77.055643, 38.940740 ], [ -77.055702, 38.940756 ], [ -77.055788, 38.940781 ], [ -77.056040, 38.940873 ], [ -77.056099, 38.940898 ], [ -77.056164, 38.940915 ], [ -77.056206, 38.940923 ], [ -77.056298, 38.940940 ], [ -77.056341, 38.940944 ], [ -77.056389, 38.940948 ], [ -77.056480, 38.940952 ], [ -77.057070, 38.940952 ], [ -77.057435, 38.940952 ], [ -77.057698, 38.940965 ], [ -77.057859, 38.940969 ], [ -77.058626, 38.940969 ], [ -77.059329, 38.940965 ], [ -77.059865, 38.940965 ], [ -77.060246, 38.940965 ], [ -77.060412, 38.940965 ], [ -77.060707, 38.940965 ], [ -77.061233, 38.940965 ], [ -77.061431, 38.940965 ], [ -77.061566, 38.940969 ], [ -77.061651, 38.940973 ], [ -77.062258, 38.942016 ], [ -77.062848, 38.943034 ], [ -77.062917, 38.943155 ], [ -77.063556, 38.944253 ], [ -77.063980, 38.944987 ], [ -77.064135, 38.945250 ], [ -77.064189, 38.945338 ], [ -77.064210, 38.945379 ], [ -77.064280, 38.945484 ], [ -77.064360, 38.945634 ], [ -77.064672, 38.946164 ], [ -77.064886, 38.946531 ], [ -77.065004, 38.946735 ], [ -77.065127, 38.946952 ], [ -77.065353, 38.947336 ], [ -77.065616, 38.947791 ], [ -77.065675, 38.947895 ], [ -77.065342, 38.947895 ], [ -77.065138, 38.947895 ], [ -77.064849, 38.947895 ], [ -77.064446, 38.947895 ], [ -77.063980, 38.947895 ], [ -77.063207, 38.947895 ], [ -77.062027, 38.947891 ], [ -77.061759, 38.947891 ], [ -77.061635, 38.947895 ], [ -77.057912, 38.947891 ], [ -77.057204, 38.947891 ], [ -77.056711, 38.947891 ], [ -77.056641, 38.947891 ], [ -77.056373, 38.947899 ], [ -77.056223, 38.947908 ], [ -77.056072, 38.947920 ], [ -77.055799, 38.947949 ], [ -77.055681, 38.947966 ], [ -77.055600, 38.947974 ], [ -77.055520, 38.947991 ], [ -77.055439, 38.948003 ], [ -77.055359, 38.948016 ], [ -77.055198, 38.948049 ], [ -77.054983, 38.948095 ], [ -77.054849, 38.948129 ], [ -77.054688, 38.948175 ], [ -77.054495, 38.948229 ], [ -77.054366, 38.948270 ], [ -77.054238, 38.948316 ], [ -77.054157, 38.948337 ], [ -77.054034, 38.948375 ], [ -77.053964, 38.948396 ], [ -77.053825, 38.948446 ], [ -77.053798, 38.948458 ], [ -77.053750, 38.948475 ], [ -77.053669, 38.948500 ], [ -77.053535, 38.948546 ], [ -77.053363, 38.948608 ], [ -77.053337, 38.948617 ], [ -77.053315, 38.948625 ], [ -77.053288, 38.948633 ], [ -77.053267, 38.948642 ], [ -77.053154, 38.948679 ], [ -77.053133, 38.948688 ], [ -77.053090, 38.948700 ], [ -77.053025, 38.948725 ], [ -77.053004, 38.948734 ], [ -77.052977, 38.948742 ], [ -77.052956, 38.948750 ], [ -77.052843, 38.948792 ], [ -77.052822, 38.948800 ], [ -77.052800, 38.948809 ], [ -77.051657, 38.948859 ], [ -77.051631, 38.948800 ], [ -77.051588, 38.948704 ], [ -77.051566, 38.948642 ], [ -77.051534, 38.948546 ], [ -77.051523, 38.948512 ], [ -77.051513, 38.948483 ], [ -77.051507, 38.948450 ], [ -77.051486, 38.948358 ], [ -77.051470, 38.948262 ], [ -77.051459, 38.948195 ], [ -77.051448, 38.948108 ], [ -77.051443, 38.948070 ], [ -77.051443, 38.947995 ], [ -77.051448, 38.947974 ], [ -77.051454, 38.947916 ], [ -77.051470, 38.947857 ], [ -77.051480, 38.947799 ], [ -77.051497, 38.947741 ], [ -77.051518, 38.947682 ], [ -77.051545, 38.947590 ], [ -77.051577, 38.947465 ], [ -77.051604, 38.947344 ], [ -77.051615, 38.947265 ], [ -77.051625, 38.947211 ], [ -77.051636, 38.947132 ], [ -77.051636, 38.947106 ], [ -77.051641, 38.947081 ], [ -77.051663, 38.946906 ], [ -77.051668, 38.946881 ], [ -77.051668, 38.946856 ], [ -77.051674, 38.946785 ], [ -77.051674, 38.946689 ], [ -77.051674, 38.946664 ], [ -77.051657, 38.946556 ], [ -77.051647, 38.946493 ], [ -77.051631, 38.946443 ], [ -77.051593, 38.946339 ], [ -77.051582, 38.946305 ], [ -77.051550, 38.946222 ], [ -77.051507, 38.946122 ], [ -77.051475, 38.946055 ], [ -77.051443, 38.945993 ], [ -77.051421, 38.945959 ], [ -77.051346, 38.945851 ], [ -77.051191, 38.945630 ], [ -77.051132, 38.945546 ], [ -77.051041, 38.945421 ], [ -77.051003, 38.945371 ], [ -77.050955, 38.945300 ], [ -77.050933, 38.945271 ], [ -77.050890, 38.945217 ], [ -77.050847, 38.945171 ], [ -77.050831, 38.945146 ], [ -77.050778, 38.945096 ], [ -77.050751, 38.945066 ], [ -77.050670, 38.945000 ], [ -77.050638, 38.944975 ], [ -77.050611, 38.944950 ], [ -77.050542, 38.944891 ], [ -77.050520, 38.944874 ], [ -77.050483, 38.944845 ], [ -77.050327, 38.944720 ], [ -77.050225, 38.944607 ], [ -77.050129, 38.944474 ], [ -77.050102, 38.944440 ], [ -77.050075, 38.944403 ], [ -77.050053, 38.944382 ], [ -77.050037, 38.944361 ], [ -77.050005, 38.944332 ], [ -77.049962, 38.944307 ], [ -77.049935, 38.944294 ], [ -77.049844, 38.944215 ], [ -77.049748, 38.944011 ], [ -77.049732, 38.943969 ], [ -77.049678, 38.943856 ], [ -77.049651, 38.943777 ], [ -77.049775, 38.943698 ], [ -77.049807, 38.943614 ], [ -77.049909, 38.943535 ], [ -77.050016, 38.943256 ], [ -77.050322, 38.942784 ], [ -77.050912, 38.942167 ], [ -77.051153, 38.941720 ], [ -77.051266, 38.941541 ], [ -77.051303, 38.941395 ], [ -77.051352, 38.941240 ], [ -77.051341, 38.940982 ], [ -77.051293, 38.940777 ], [ -77.051228, 38.940535 ], [ -77.051218, 38.940498 ], [ -77.051207, 38.940452 ], [ -77.051207, 38.940410 ], [ -77.051218, 38.940343 ], [ -77.051437, 38.939972 ], [ -77.051534, 38.939671 ], [ -77.051550, 38.939680 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002600", "GEOID": "11001002600", "NAME": "26", "NAMELSAD": "Census Tract 26", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2106150, "AWATER": 60195, "INTPTLAT": "+38.9464323", "INTPTLON": "-077.0404553" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.039752, 38.960076 ], [ -77.039743, 38.960068 ], [ -77.039689, 38.960030 ], [ -77.039636, 38.960001 ], [ -77.039604, 38.959989 ], [ -77.039577, 38.959976 ], [ -77.039545, 38.959968 ], [ -77.039518, 38.959959 ], [ -77.039486, 38.959951 ], [ -77.039453, 38.959947 ], [ -77.039421, 38.959943 ], [ -77.039319, 38.959934 ], [ -77.039276, 38.959934 ], [ -77.039207, 38.959926 ], [ -77.039164, 38.959922 ], [ -77.039126, 38.959914 ], [ -77.039089, 38.959905 ], [ -77.039019, 38.959888 ], [ -77.038987, 38.959880 ], [ -77.038917, 38.959851 ], [ -77.038885, 38.959838 ], [ -77.038826, 38.959805 ], [ -77.038804, 38.959793 ], [ -77.038761, 38.959768 ], [ -77.038708, 38.959722 ], [ -77.038670, 38.959688 ], [ -77.038638, 38.959655 ], [ -77.038622, 38.959617 ], [ -77.038606, 38.959584 ], [ -77.038600, 38.959546 ], [ -77.038600, 38.959509 ], [ -77.038600, 38.959467 ], [ -77.038611, 38.959434 ], [ -77.038627, 38.959396 ], [ -77.038649, 38.959363 ], [ -77.038676, 38.959330 ], [ -77.038708, 38.959300 ], [ -77.038735, 38.959284 ], [ -77.038761, 38.959271 ], [ -77.038788, 38.959254 ], [ -77.038815, 38.959242 ], [ -77.038847, 38.959234 ], [ -77.038879, 38.959225 ], [ -77.038912, 38.959217 ], [ -77.038944, 38.959213 ], [ -77.038976, 38.959213 ], [ -77.039089, 38.959213 ], [ -77.039164, 38.959204 ], [ -77.039201, 38.959196 ], [ -77.039239, 38.959188 ], [ -77.039271, 38.959175 ], [ -77.039309, 38.959159 ], [ -77.039341, 38.959142 ], [ -77.039373, 38.959125 ], [ -77.039405, 38.959100 ], [ -77.039437, 38.959075 ], [ -77.039464, 38.959050 ], [ -77.039491, 38.959021 ], [ -77.039512, 38.958987 ], [ -77.039534, 38.958954 ], [ -77.039550, 38.958921 ], [ -77.039561, 38.958887 ], [ -77.039571, 38.958854 ], [ -77.039577, 38.958816 ], [ -77.039582, 38.958771 ], [ -77.039587, 38.958725 ], [ -77.039593, 38.958650 ], [ -77.039587, 38.958458 ], [ -77.039582, 38.958408 ], [ -77.039587, 38.958333 ], [ -77.039593, 38.958287 ], [ -77.039614, 38.958187 ], [ -77.039625, 38.958145 ], [ -77.039657, 38.958057 ], [ -77.039663, 38.958036 ], [ -77.039673, 38.958016 ], [ -77.039700, 38.957949 ], [ -77.039743, 38.957832 ], [ -77.039759, 38.957786 ], [ -77.039775, 38.957740 ], [ -77.039781, 38.957703 ], [ -77.039797, 38.957644 ], [ -77.039802, 38.957586 ], [ -77.039807, 38.957515 ], [ -77.039813, 38.957486 ], [ -77.039813, 38.957432 ], [ -77.039807, 38.957377 ], [ -77.039807, 38.957348 ], [ -77.039797, 38.957298 ], [ -77.039786, 38.957244 ], [ -77.039743, 38.957085 ], [ -77.039727, 38.957035 ], [ -77.039668, 38.956839 ], [ -77.039647, 38.956785 ], [ -77.039625, 38.956727 ], [ -77.039604, 38.956677 ], [ -77.039571, 38.956622 ], [ -77.039539, 38.956572 ], [ -77.039507, 38.956531 ], [ -77.039453, 38.956472 ], [ -77.039416, 38.956435 ], [ -77.039378, 38.956397 ], [ -77.039330, 38.956359 ], [ -77.039276, 38.956326 ], [ -77.039217, 38.956289 ], [ -77.039158, 38.956259 ], [ -77.039094, 38.956230 ], [ -77.039062, 38.956218 ], [ -77.038938, 38.956163 ], [ -77.038901, 38.956147 ], [ -77.038826, 38.956113 ], [ -77.038788, 38.956101 ], [ -77.038708, 38.956076 ], [ -77.038670, 38.956067 ], [ -77.038627, 38.956059 ], [ -77.038584, 38.956051 ], [ -77.038536, 38.956042 ], [ -77.038450, 38.956038 ], [ -77.038407, 38.956034 ], [ -77.038316, 38.956038 ], [ -77.038225, 38.956047 ], [ -77.038134, 38.956059 ], [ -77.038091, 38.956067 ], [ -77.037946, 38.956105 ], [ -77.037908, 38.956113 ], [ -77.037828, 38.956134 ], [ -77.037748, 38.956147 ], [ -77.037672, 38.956163 ], [ -77.037592, 38.956176 ], [ -77.037495, 38.956184 ], [ -77.037436, 38.956193 ], [ -77.037265, 38.956205 ], [ -77.037152, 38.956209 ], [ -77.037034, 38.956213 ], [ -77.036396, 38.956213 ], [ -77.036406, 38.954436 ], [ -77.036401, 38.953915 ], [ -77.036401, 38.953364 ], [ -77.036401, 38.952947 ], [ -77.036412, 38.952534 ], [ -77.036412, 38.951871 ], [ -77.036412, 38.950803 ], [ -77.036412, 38.950523 ], [ -77.036417, 38.949739 ], [ -77.036422, 38.948262 ], [ -77.036417, 38.947390 ], [ -77.036428, 38.947244 ], [ -77.036422, 38.946130 ], [ -77.036422, 38.945062 ], [ -77.036428, 38.943998 ], [ -77.036422, 38.942934 ], [ -77.036439, 38.941875 ], [ -77.036428, 38.940806 ], [ -77.036439, 38.939738 ], [ -77.036439, 38.939104 ], [ -77.036439, 38.938950 ], [ -77.036439, 38.938599 ], [ -77.036444, 38.938232 ], [ -77.036691, 38.938149 ], [ -77.036857, 38.938090 ], [ -77.037023, 38.938028 ], [ -77.037168, 38.937965 ], [ -77.037297, 38.937911 ], [ -77.037426, 38.937852 ], [ -77.037619, 38.937760 ], [ -77.037742, 38.937698 ], [ -77.037994, 38.937564 ], [ -77.038617, 38.937210 ], [ -77.038826, 38.937110 ], [ -77.038869, 38.937093 ], [ -77.038912, 38.937076 ], [ -77.038992, 38.937047 ], [ -77.039115, 38.937001 ], [ -77.039239, 38.936959 ], [ -77.039298, 38.936938 ], [ -77.039523, 38.936880 ], [ -77.039663, 38.936842 ], [ -77.039797, 38.936809 ], [ -77.039958, 38.936759 ], [ -77.040017, 38.936738 ], [ -77.040119, 38.936705 ], [ -77.040178, 38.936680 ], [ -77.040210, 38.936667 ], [ -77.040242, 38.936651 ], [ -77.040349, 38.936600 ], [ -77.040414, 38.936567 ], [ -77.040521, 38.936505 ], [ -77.040558, 38.936479 ], [ -77.040634, 38.936429 ], [ -77.040714, 38.936384 ], [ -77.040757, 38.936363 ], [ -77.040837, 38.936325 ], [ -77.040923, 38.936283 ], [ -77.040961, 38.936271 ], [ -77.041036, 38.936246 ], [ -77.041116, 38.936221 ], [ -77.041229, 38.936192 ], [ -77.041272, 38.936183 ], [ -77.041309, 38.936175 ], [ -77.041401, 38.936162 ], [ -77.041444, 38.936154 ], [ -77.041540, 38.936146 ], [ -77.041631, 38.936141 ], [ -77.041723, 38.936141 ], [ -77.041964, 38.936146 ], [ -77.042082, 38.936146 ], [ -77.042243, 38.936137 ], [ -77.042361, 38.936129 ], [ -77.042613, 38.936087 ], [ -77.042667, 38.936079 ], [ -77.042715, 38.936071 ], [ -77.042865, 38.936041 ], [ -77.043005, 38.936025 ], [ -77.043090, 38.936012 ], [ -77.043230, 38.936000 ], [ -77.043321, 38.935995 ], [ -77.043375, 38.935995 ], [ -77.043434, 38.935991 ], [ -77.043654, 38.935987 ], [ -77.044265, 38.935987 ], [ -77.044780, 38.935987 ], [ -77.044855, 38.935983 ], [ -77.044989, 38.935975 ], [ -77.045091, 38.935958 ], [ -77.045124, 38.935954 ], [ -77.045188, 38.935941 ], [ -77.045258, 38.935925 ], [ -77.045413, 38.935879 ], [ -77.045472, 38.935858 ], [ -77.045499, 38.935845 ], [ -77.045531, 38.935837 ], [ -77.045585, 38.935808 ], [ -77.045842, 38.935699 ], [ -77.046159, 38.935570 ], [ -77.046438, 38.935457 ], [ -77.046524, 38.935424 ], [ -77.046658, 38.935378 ], [ -77.046749, 38.935349 ], [ -77.047564, 38.935111 ], [ -77.047709, 38.935052 ], [ -77.047977, 38.934940 ], [ -77.048294, 38.934806 ], [ -77.048031, 38.935052 ], [ -77.047951, 38.935194 ], [ -77.047865, 38.935386 ], [ -77.047822, 38.935549 ], [ -77.047800, 38.935716 ], [ -77.047800, 38.935749 ], [ -77.047817, 38.935904 ], [ -77.047833, 38.936029 ], [ -77.047865, 38.936208 ], [ -77.047865, 38.936354 ], [ -77.047859, 38.936525 ], [ -77.047843, 38.936688 ], [ -77.047833, 38.936776 ], [ -77.047843, 38.936893 ], [ -77.047849, 38.936913 ], [ -77.047876, 38.936968 ], [ -77.047908, 38.937005 ], [ -77.048010, 38.937122 ], [ -77.048074, 38.937180 ], [ -77.048101, 38.937197 ], [ -77.048197, 38.937235 ], [ -77.048283, 38.937260 ], [ -77.048364, 38.937276 ], [ -77.048664, 38.937301 ], [ -77.048830, 38.937314 ], [ -77.048884, 38.937318 ], [ -77.049024, 38.937301 ], [ -77.049163, 38.937276 ], [ -77.049313, 38.937239 ], [ -77.049646, 38.937193 ], [ -77.049732, 38.937172 ], [ -77.049850, 38.937168 ], [ -77.050027, 38.937168 ], [ -77.050295, 38.937189 ], [ -77.050445, 38.937214 ], [ -77.050896, 38.937310 ], [ -77.051378, 38.937435 ], [ -77.051572, 38.937518 ], [ -77.051733, 38.937569 ], [ -77.051851, 38.937627 ], [ -77.051867, 38.937635 ], [ -77.051979, 38.937715 ], [ -77.051990, 38.937727 ], [ -77.052028, 38.937777 ], [ -77.052054, 38.937840 ], [ -77.052097, 38.937927 ], [ -77.052108, 38.937969 ], [ -77.052108, 38.937994 ], [ -77.052108, 38.938094 ], [ -77.052097, 38.938149 ], [ -77.052049, 38.938257 ], [ -77.051818, 38.938866 ], [ -77.051695, 38.939179 ], [ -77.051604, 38.939513 ], [ -77.051534, 38.939671 ], [ -77.051437, 38.939972 ], [ -77.051218, 38.940343 ], [ -77.051207, 38.940410 ], [ -77.051207, 38.940452 ], [ -77.051218, 38.940498 ], [ -77.051228, 38.940535 ], [ -77.051293, 38.940777 ], [ -77.051341, 38.940982 ], [ -77.051352, 38.941240 ], [ -77.051303, 38.941395 ], [ -77.051266, 38.941541 ], [ -77.051153, 38.941720 ], [ -77.050912, 38.942167 ], [ -77.050322, 38.942784 ], [ -77.050016, 38.943256 ], [ -77.049909, 38.943535 ], [ -77.049807, 38.943614 ], [ -77.049775, 38.943698 ], [ -77.049651, 38.943777 ], [ -77.049383, 38.944148 ], [ -77.049184, 38.944319 ], [ -77.048707, 38.944607 ], [ -77.048616, 38.944657 ], [ -77.048423, 38.944824 ], [ -77.048165, 38.945258 ], [ -77.047977, 38.945554 ], [ -77.047758, 38.945663 ], [ -77.047543, 38.945696 ], [ -77.047065, 38.945692 ], [ -77.046604, 38.945579 ], [ -77.046239, 38.945450 ], [ -77.046019, 38.945471 ], [ -77.045816, 38.945592 ], [ -77.045676, 38.945717 ], [ -77.045440, 38.946168 ], [ -77.045177, 38.946618 ], [ -77.044743, 38.947278 ], [ -77.044662, 38.947344 ], [ -77.044147, 38.947791 ], [ -77.043992, 38.948108 ], [ -77.044040, 38.948216 ], [ -77.044104, 38.948416 ], [ -77.044196, 38.948492 ], [ -77.044340, 38.948563 ], [ -77.044464, 38.948613 ], [ -77.044619, 38.948617 ], [ -77.044743, 38.948596 ], [ -77.044845, 38.948517 ], [ -77.044957, 38.948346 ], [ -77.045027, 38.948241 ], [ -77.045086, 38.948037 ], [ -77.045285, 38.947870 ], [ -77.045569, 38.947774 ], [ -77.045842, 38.947791 ], [ -77.046014, 38.947857 ], [ -77.046250, 38.947987 ], [ -77.046357, 38.948045 ], [ -77.046551, 38.948116 ], [ -77.046835, 38.948195 ], [ -77.046851, 38.948200 ], [ -77.046953, 38.948275 ], [ -77.046990, 38.948454 ], [ -77.046996, 38.948504 ], [ -77.046964, 38.948671 ], [ -77.046878, 38.948896 ], [ -77.046867, 38.948996 ], [ -77.047023, 38.949384 ], [ -77.047055, 38.949597 ], [ -77.047055, 38.949651 ], [ -77.046942, 38.949831 ], [ -77.046604, 38.950048 ], [ -77.046068, 38.950315 ], [ -77.045719, 38.950494 ], [ -77.045311, 38.950890 ], [ -77.044984, 38.951241 ], [ -77.044888, 38.951458 ], [ -77.044866, 38.951650 ], [ -77.044839, 38.951975 ], [ -77.044743, 38.952142 ], [ -77.044641, 38.952280 ], [ -77.044276, 38.952730 ], [ -77.044137, 38.952889 ], [ -77.043799, 38.953189 ], [ -77.043584, 38.953368 ], [ -77.043375, 38.953544 ], [ -77.043149, 38.953756 ], [ -77.042962, 38.953944 ], [ -77.042774, 38.954199 ], [ -77.042667, 38.954282 ], [ -77.042339, 38.954441 ], [ -77.042184, 38.954587 ], [ -77.042152, 38.954678 ], [ -77.042098, 38.954983 ], [ -77.042077, 38.955091 ], [ -77.042087, 38.955287 ], [ -77.042087, 38.955383 ], [ -77.042168, 38.955604 ], [ -77.042291, 38.955905 ], [ -77.042329, 38.956147 ], [ -77.042291, 38.956339 ], [ -77.042216, 38.956526 ], [ -77.042136, 38.956802 ], [ -77.042136, 38.957352 ], [ -77.042152, 38.957578 ], [ -77.042146, 38.957865 ], [ -77.042125, 38.957899 ], [ -77.042109, 38.957932 ], [ -77.042060, 38.957974 ], [ -77.041985, 38.958045 ], [ -77.041921, 38.958078 ], [ -77.041900, 38.958095 ], [ -77.041824, 38.958137 ], [ -77.041470, 38.958291 ], [ -77.041288, 38.958441 ], [ -77.041186, 38.958591 ], [ -77.041122, 38.958783 ], [ -77.041084, 38.958929 ], [ -77.040923, 38.959088 ], [ -77.040639, 38.959342 ], [ -77.040553, 38.959430 ], [ -77.040510, 38.959542 ], [ -77.040499, 38.959588 ], [ -77.040553, 38.959684 ], [ -77.040644, 38.959776 ], [ -77.040789, 38.959905 ], [ -77.040891, 38.959968 ], [ -77.041084, 38.960014 ], [ -77.041309, 38.960030 ], [ -77.041556, 38.960064 ], [ -77.041607, 38.960076 ], [ -77.039752, 38.960076 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001304", "GEOID": "11001001304", "NAME": "13.04", "NAMELSAD": "Census Tract 13.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 707155, "AWATER": 9432, "INTPTLAT": "+38.9367508", "INTPTLON": "-077.0554702" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.048031, 38.935052 ], [ -77.048294, 38.934806 ], [ -77.048568, 38.934539 ], [ -77.048852, 38.934235 ], [ -77.048938, 38.934155 ], [ -77.049136, 38.933984 ], [ -77.049238, 38.933892 ], [ -77.049313, 38.933826 ], [ -77.049351, 38.933809 ], [ -77.049608, 38.933721 ], [ -77.049753, 38.933659 ], [ -77.049903, 38.933575 ], [ -77.050188, 38.933425 ], [ -77.050365, 38.933329 ], [ -77.050408, 38.933308 ], [ -77.050445, 38.933279 ], [ -77.050499, 38.933225 ], [ -77.050579, 38.933266 ], [ -77.050751, 38.933383 ], [ -77.050826, 38.933404 ], [ -77.050998, 38.933488 ], [ -77.051416, 38.933667 ], [ -77.051786, 38.933863 ], [ -77.052253, 38.933742 ], [ -77.052956, 38.933542 ], [ -77.054581, 38.932703 ], [ -77.054962, 38.931581 ], [ -77.054570, 38.930900 ], [ -77.054876, 38.930859 ], [ -77.055713, 38.930754 ], [ -77.055949, 38.931167 ], [ -77.056180, 38.931568 ], [ -77.056260, 38.931693 ], [ -77.056502, 38.932115 ], [ -77.056727, 38.932499 ], [ -77.056770, 38.932570 ], [ -77.056957, 38.932899 ], [ -77.057312, 38.933508 ], [ -77.057644, 38.934084 ], [ -77.057741, 38.934243 ], [ -77.057955, 38.934614 ], [ -77.058127, 38.934915 ], [ -77.058368, 38.935332 ], [ -77.058508, 38.935566 ], [ -77.058980, 38.936379 ], [ -77.059173, 38.936709 ], [ -77.059243, 38.936826 ], [ -77.059296, 38.936926 ], [ -77.059329, 38.936976 ], [ -77.059393, 38.937093 ], [ -77.059999, 38.938123 ], [ -77.060053, 38.938228 ], [ -77.060257, 38.938574 ], [ -77.060326, 38.938695 ], [ -77.060686, 38.939313 ], [ -77.060729, 38.939388 ], [ -77.060804, 38.939517 ], [ -77.061008, 38.939859 ], [ -77.061222, 38.940235 ], [ -77.061512, 38.940735 ], [ -77.061651, 38.940973 ], [ -77.061566, 38.940969 ], [ -77.061431, 38.940965 ], [ -77.061233, 38.940965 ], [ -77.060707, 38.940965 ], [ -77.060412, 38.940965 ], [ -77.060246, 38.940965 ], [ -77.059865, 38.940965 ], [ -77.059329, 38.940965 ], [ -77.058626, 38.940969 ], [ -77.057859, 38.940969 ], [ -77.057698, 38.940965 ], [ -77.057435, 38.940952 ], [ -77.057070, 38.940952 ], [ -77.056480, 38.940952 ], [ -77.056389, 38.940948 ], [ -77.056341, 38.940944 ], [ -77.056298, 38.940940 ], [ -77.056206, 38.940923 ], [ -77.056164, 38.940915 ], [ -77.056099, 38.940898 ], [ -77.056040, 38.940873 ], [ -77.055788, 38.940781 ], [ -77.055702, 38.940756 ], [ -77.055643, 38.940740 ], [ -77.055557, 38.940719 ], [ -77.055466, 38.940698 ], [ -77.055429, 38.940694 ], [ -77.055295, 38.940673 ], [ -77.055160, 38.940665 ], [ -77.055005, 38.940660 ], [ -77.054721, 38.940694 ], [ -77.054334, 38.940756 ], [ -77.053970, 38.940806 ], [ -77.053744, 38.940831 ], [ -77.053707, 38.940836 ], [ -77.053363, 38.940873 ], [ -77.053331, 38.940877 ], [ -77.053245, 38.940886 ], [ -77.053186, 38.940886 ], [ -77.053127, 38.940882 ], [ -77.053068, 38.940873 ], [ -77.052999, 38.940861 ], [ -77.052929, 38.940844 ], [ -77.052897, 38.940831 ], [ -77.052832, 38.940806 ], [ -77.052784, 38.940773 ], [ -77.052693, 38.940710 ], [ -77.052398, 38.940452 ], [ -77.052226, 38.940281 ], [ -77.052205, 38.940256 ], [ -77.052183, 38.940235 ], [ -77.052081, 38.940126 ], [ -77.051893, 38.939930 ], [ -77.051877, 38.939914 ], [ -77.051845, 38.939880 ], [ -77.051792, 38.939830 ], [ -77.051754, 38.939801 ], [ -77.051711, 38.939772 ], [ -77.051636, 38.939726 ], [ -77.051550, 38.939680 ], [ -77.051534, 38.939671 ], [ -77.051604, 38.939513 ], [ -77.051695, 38.939179 ], [ -77.051818, 38.938866 ], [ -77.052049, 38.938257 ], [ -77.052097, 38.938149 ], [ -77.052108, 38.938094 ], [ -77.052108, 38.937994 ], [ -77.052108, 38.937969 ], [ -77.052097, 38.937927 ], [ -77.052054, 38.937840 ], [ -77.052028, 38.937777 ], [ -77.051990, 38.937727 ], [ -77.051979, 38.937715 ], [ -77.051867, 38.937635 ], [ -77.051851, 38.937627 ], [ -77.051733, 38.937569 ], [ -77.051572, 38.937518 ], [ -77.051378, 38.937435 ], [ -77.050896, 38.937310 ], [ -77.050445, 38.937214 ], [ -77.050295, 38.937189 ], [ -77.050027, 38.937168 ], [ -77.049850, 38.937168 ], [ -77.049732, 38.937172 ], [ -77.049646, 38.937193 ], [ -77.049313, 38.937239 ], [ -77.049163, 38.937276 ], [ -77.049024, 38.937301 ], [ -77.048884, 38.937318 ], [ -77.048830, 38.937314 ], [ -77.048664, 38.937301 ], [ -77.048364, 38.937276 ], [ -77.048283, 38.937260 ], [ -77.048197, 38.937235 ], [ -77.048101, 38.937197 ], [ -77.048074, 38.937180 ], [ -77.048010, 38.937122 ], [ -77.047908, 38.937005 ], [ -77.047876, 38.936968 ], [ -77.047849, 38.936913 ], [ -77.047843, 38.936893 ], [ -77.047833, 38.936776 ], [ -77.047843, 38.936688 ], [ -77.047859, 38.936525 ], [ -77.047865, 38.936354 ], [ -77.047865, 38.936208 ], [ -77.047833, 38.936029 ], [ -77.047817, 38.935904 ], [ -77.047800, 38.935749 ], [ -77.047800, 38.935716 ], [ -77.047822, 38.935549 ], [ -77.047865, 38.935386 ], [ -77.047951, 38.935194 ], [ -77.048031, 38.935052 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000501", "GEOID": "11001000501", "NAME": "5.01", "NAMELSAD": "Census Tract 5.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 940249, "AWATER": 29503, "INTPTLAT": "+38.9264548", "INTPTLON": "-077.0514340" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.057633, 38.924561 ], [ -77.057633, 38.924682 ], [ -77.057633, 38.924954 ], [ -77.057633, 38.925329 ], [ -77.057633, 38.926039 ], [ -77.057633, 38.926089 ], [ -77.057633, 38.926172 ], [ -77.057521, 38.926160 ], [ -77.057108, 38.926105 ], [ -77.056947, 38.926085 ], [ -77.056888, 38.926080 ], [ -77.056544, 38.926034 ], [ -77.056437, 38.926022 ], [ -77.056341, 38.926009 ], [ -77.056314, 38.926005 ], [ -77.055847, 38.925943 ], [ -77.055327, 38.925876 ], [ -77.055230, 38.925863 ], [ -77.055128, 38.925851 ], [ -77.054785, 38.925805 ], [ -77.054366, 38.925747 ], [ -77.053921, 38.925692 ], [ -77.053658, 38.925659 ], [ -77.053524, 38.925642 ], [ -77.052811, 38.925555 ], [ -77.052677, 38.925538 ], [ -77.052988, 38.926072 ], [ -77.053277, 38.926569 ], [ -77.053363, 38.926719 ], [ -77.053546, 38.927032 ], [ -77.053707, 38.927312 ], [ -77.054109, 38.928000 ], [ -77.054163, 38.928088 ], [ -77.054324, 38.928372 ], [ -77.054715, 38.929043 ], [ -77.055080, 38.929665 ], [ -77.055557, 38.930483 ], [ -77.055713, 38.930754 ], [ -77.054876, 38.930859 ], [ -77.054570, 38.930900 ], [ -77.054962, 38.931581 ], [ -77.054581, 38.932703 ], [ -77.052956, 38.933542 ], [ -77.052253, 38.933742 ], [ -77.051786, 38.933863 ], [ -77.051416, 38.933667 ], [ -77.050998, 38.933488 ], [ -77.050826, 38.933404 ], [ -77.050751, 38.933383 ], [ -77.050579, 38.933266 ], [ -77.050499, 38.933225 ], [ -77.050778, 38.933012 ], [ -77.050853, 38.932824 ], [ -77.050740, 38.932603 ], [ -77.050322, 38.932269 ], [ -77.050193, 38.932223 ], [ -77.049737, 38.932198 ], [ -77.049479, 38.932181 ], [ -77.048857, 38.932027 ], [ -77.048396, 38.931902 ], [ -77.047795, 38.931748 ], [ -77.047371, 38.931622 ], [ -77.047259, 38.931522 ], [ -77.047119, 38.931447 ], [ -77.046969, 38.931330 ], [ -77.046803, 38.931105 ], [ -77.046368, 38.930654 ], [ -77.045740, 38.929799 ], [ -77.045360, 38.929398 ], [ -77.044947, 38.929052 ], [ -77.044678, 38.928776 ], [ -77.044533, 38.928509 ], [ -77.044512, 38.928346 ], [ -77.044533, 38.928121 ], [ -77.044560, 38.927929 ], [ -77.044587, 38.927867 ], [ -77.044684, 38.927625 ], [ -77.044694, 38.927483 ], [ -77.044694, 38.927453 ], [ -77.044684, 38.927157 ], [ -77.044786, 38.926802 ], [ -77.044909, 38.926577 ], [ -77.045531, 38.926239 ], [ -77.046159, 38.925959 ], [ -77.046298, 38.925943 ], [ -77.046599, 38.926055 ], [ -77.046728, 38.926197 ], [ -77.047049, 38.926711 ], [ -77.047677, 38.927011 ], [ -77.048256, 38.927403 ], [ -77.048943, 38.928000 ], [ -77.049120, 38.928079 ], [ -77.049329, 38.928129 ], [ -77.049512, 38.928134 ], [ -77.049667, 38.928084 ], [ -77.049801, 38.927883 ], [ -77.049871, 38.927704 ], [ -77.049437, 38.925567 ], [ -77.049222, 38.925313 ], [ -77.048916, 38.924974 ], [ -77.048820, 38.924724 ], [ -77.048755, 38.924561 ], [ -77.057633, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002704", "GEOID": "11001002704", "NAME": "27.04", "NAMELSAD": "Census Tract 27.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295339, "AWATER": 2427, "INTPTLAT": "+38.9345766", "INTPTLON": "-077.0427534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036444, 38.938232 ], [ -77.036444, 38.938048 ], [ -77.036444, 38.937923 ], [ -77.036444, 38.937731 ], [ -77.036444, 38.937427 ], [ -77.036444, 38.937281 ], [ -77.036444, 38.937068 ], [ -77.036449, 38.936930 ], [ -77.036449, 38.936801 ], [ -77.036444, 38.936734 ], [ -77.036444, 38.936375 ], [ -77.036444, 38.936079 ], [ -77.036449, 38.935403 ], [ -77.036449, 38.934965 ], [ -77.036600, 38.935027 ], [ -77.036996, 38.935182 ], [ -77.037050, 38.935203 ], [ -77.036900, 38.935440 ], [ -77.036889, 38.935457 ], [ -77.036895, 38.935482 ], [ -77.036916, 38.935499 ], [ -77.037270, 38.935637 ], [ -77.037828, 38.935858 ], [ -77.037860, 38.935866 ], [ -77.037898, 38.935870 ], [ -77.037946, 38.935870 ], [ -77.037994, 38.935866 ], [ -77.038048, 38.935854 ], [ -77.038069, 38.935733 ], [ -77.038112, 38.935436 ], [ -77.038702, 38.934514 ], [ -77.038735, 38.934464 ], [ -77.038815, 38.934397 ], [ -77.038815, 38.934335 ], [ -77.038815, 38.934184 ], [ -77.039534, 38.934176 ], [ -77.039936, 38.934176 ], [ -77.040038, 38.934176 ], [ -77.040542, 38.934168 ], [ -77.041283, 38.934168 ], [ -77.042018, 38.934168 ], [ -77.043471, 38.934172 ], [ -77.044110, 38.934172 ], [ -77.044185, 38.934176 ], [ -77.044185, 38.933805 ], [ -77.044185, 38.933291 ], [ -77.044185, 38.933008 ], [ -77.044190, 38.932745 ], [ -77.044748, 38.932945 ], [ -77.045075, 38.933070 ], [ -77.045166, 38.933108 ], [ -77.045215, 38.933125 ], [ -77.045242, 38.933133 ], [ -77.045268, 38.933137 ], [ -77.045295, 38.933145 ], [ -77.045317, 38.933154 ], [ -77.045338, 38.933166 ], [ -77.045360, 38.933179 ], [ -77.045381, 38.933196 ], [ -77.045403, 38.933212 ], [ -77.045590, 38.933129 ], [ -77.046180, 38.932870 ], [ -77.046524, 38.932749 ], [ -77.046685, 38.932686 ], [ -77.046760, 38.932661 ], [ -77.046781, 38.932649 ], [ -77.046803, 38.932632 ], [ -77.046813, 38.932603 ], [ -77.047328, 38.932599 ], [ -77.047473, 38.932599 ], [ -77.048492, 38.932586 ], [ -77.048889, 38.932599 ], [ -77.049077, 38.932628 ], [ -77.049340, 38.932699 ], [ -77.049673, 38.932824 ], [ -77.050021, 38.932979 ], [ -77.050193, 38.933066 ], [ -77.050424, 38.933187 ], [ -77.050499, 38.933225 ], [ -77.050445, 38.933279 ], [ -77.050408, 38.933308 ], [ -77.050365, 38.933329 ], [ -77.050188, 38.933425 ], [ -77.049903, 38.933575 ], [ -77.049753, 38.933659 ], [ -77.049608, 38.933721 ], [ -77.049351, 38.933809 ], [ -77.049313, 38.933826 ], [ -77.049238, 38.933892 ], [ -77.049136, 38.933984 ], [ -77.048938, 38.934155 ], [ -77.048852, 38.934235 ], [ -77.048568, 38.934539 ], [ -77.048294, 38.934806 ], [ -77.047977, 38.934940 ], [ -77.047709, 38.935052 ], [ -77.047564, 38.935111 ], [ -77.046749, 38.935349 ], [ -77.046658, 38.935378 ], [ -77.046524, 38.935424 ], [ -77.046438, 38.935457 ], [ -77.046159, 38.935570 ], [ -77.045842, 38.935699 ], [ -77.045585, 38.935808 ], [ -77.045531, 38.935837 ], [ -77.045499, 38.935845 ], [ -77.045472, 38.935858 ], [ -77.045413, 38.935879 ], [ -77.045258, 38.935925 ], [ -77.045188, 38.935941 ], [ -77.045124, 38.935954 ], [ -77.045091, 38.935958 ], [ -77.044989, 38.935975 ], [ -77.044855, 38.935983 ], [ -77.044780, 38.935987 ], [ -77.044265, 38.935987 ], [ -77.043654, 38.935987 ], [ -77.043434, 38.935991 ], [ -77.043375, 38.935995 ], [ -77.043321, 38.935995 ], [ -77.043230, 38.936000 ], [ -77.043090, 38.936012 ], [ -77.043005, 38.936025 ], [ -77.042865, 38.936041 ], [ -77.042715, 38.936071 ], [ -77.042667, 38.936079 ], [ -77.042613, 38.936087 ], [ -77.042361, 38.936129 ], [ -77.042243, 38.936137 ], [ -77.042082, 38.936146 ], [ -77.041964, 38.936146 ], [ -77.041723, 38.936141 ], [ -77.041631, 38.936141 ], [ -77.041540, 38.936146 ], [ -77.041444, 38.936154 ], [ -77.041401, 38.936162 ], [ -77.041309, 38.936175 ], [ -77.041272, 38.936183 ], [ -77.041229, 38.936192 ], [ -77.041116, 38.936221 ], [ -77.041036, 38.936246 ], [ -77.040961, 38.936271 ], [ -77.040923, 38.936283 ], [ -77.040837, 38.936325 ], [ -77.040757, 38.936363 ], [ -77.040714, 38.936384 ], [ -77.040634, 38.936429 ], [ -77.040558, 38.936479 ], [ -77.040521, 38.936505 ], [ -77.040414, 38.936567 ], [ -77.040349, 38.936600 ], [ -77.040242, 38.936651 ], [ -77.040210, 38.936667 ], [ -77.040178, 38.936680 ], [ -77.040119, 38.936705 ], [ -77.040017, 38.936738 ], [ -77.039958, 38.936759 ], [ -77.039797, 38.936809 ], [ -77.039663, 38.936842 ], [ -77.039523, 38.936880 ], [ -77.039298, 38.936938 ], [ -77.039239, 38.936959 ], [ -77.039115, 38.937001 ], [ -77.038992, 38.937047 ], [ -77.038912, 38.937076 ], [ -77.038869, 38.937093 ], [ -77.038826, 38.937110 ], [ -77.038617, 38.937210 ], [ -77.037994, 38.937564 ], [ -77.037742, 38.937698 ], [ -77.037619, 38.937760 ], [ -77.037426, 38.937852 ], [ -77.037297, 38.937911 ], [ -77.037168, 38.937965 ], [ -77.037023, 38.938028 ], [ -77.036857, 38.938090 ], [ -77.036691, 38.938149 ], [ -77.036444, 38.938232 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002702", "GEOID": "11001002702", "NAME": "27.02", "NAMELSAD": "Census Tract 27.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 479022, "AWATER": 7175, "INTPTLAT": "+38.9301680", "INTPTLON": "-077.0421774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036481, 38.927157 ], [ -77.036701, 38.927120 ], [ -77.036814, 38.927086 ], [ -77.037131, 38.927015 ], [ -77.037157, 38.927011 ], [ -77.037249, 38.926999 ], [ -77.037393, 38.926994 ], [ -77.037426, 38.926990 ], [ -77.037458, 38.926982 ], [ -77.037565, 38.926944 ], [ -77.037603, 38.926969 ], [ -77.037635, 38.926990 ], [ -77.037672, 38.927007 ], [ -77.037705, 38.927019 ], [ -77.037801, 38.927049 ], [ -77.037903, 38.927082 ], [ -77.038010, 38.927107 ], [ -77.038064, 38.927115 ], [ -77.038171, 38.927136 ], [ -77.038230, 38.927145 ], [ -77.038284, 38.927149 ], [ -77.038391, 38.927161 ], [ -77.038552, 38.927174 ], [ -77.038718, 38.927182 ], [ -77.038826, 38.927182 ], [ -77.038944, 38.927178 ], [ -77.039024, 38.927182 ], [ -77.039148, 38.927182 ], [ -77.039802, 38.927182 ], [ -77.041052, 38.927186 ], [ -77.041213, 38.927182 ], [ -77.041368, 38.927178 ], [ -77.041395, 38.927178 ], [ -77.041535, 38.927182 ], [ -77.041696, 38.927199 ], [ -77.041765, 38.927207 ], [ -77.041841, 38.927220 ], [ -77.041883, 38.927228 ], [ -77.041905, 38.927236 ], [ -77.042001, 38.927266 ], [ -77.042066, 38.927295 ], [ -77.042103, 38.927307 ], [ -77.042195, 38.927353 ], [ -77.042227, 38.927374 ], [ -77.042474, 38.927499 ], [ -77.042592, 38.927558 ], [ -77.042779, 38.927679 ], [ -77.042838, 38.927725 ], [ -77.042887, 38.927758 ], [ -77.042935, 38.927787 ], [ -77.043074, 38.927862 ], [ -77.043364, 38.927971 ], [ -77.043482, 38.927979 ], [ -77.043670, 38.928000 ], [ -77.043847, 38.928021 ], [ -77.044024, 38.928054 ], [ -77.044265, 38.928079 ], [ -77.044458, 38.928104 ], [ -77.044533, 38.928121 ], [ -77.044512, 38.928346 ], [ -77.044533, 38.928509 ], [ -77.044678, 38.928776 ], [ -77.044947, 38.929052 ], [ -77.045360, 38.929398 ], [ -77.045740, 38.929799 ], [ -77.046368, 38.930654 ], [ -77.046803, 38.931105 ], [ -77.046969, 38.931330 ], [ -77.047119, 38.931447 ], [ -77.047259, 38.931522 ], [ -77.047371, 38.931622 ], [ -77.047795, 38.931748 ], [ -77.048396, 38.931902 ], [ -77.048857, 38.932027 ], [ -77.049479, 38.932181 ], [ -77.049737, 38.932198 ], [ -77.050193, 38.932223 ], [ -77.050322, 38.932269 ], [ -77.050740, 38.932603 ], [ -77.050853, 38.932824 ], [ -77.050778, 38.933012 ], [ -77.050499, 38.933225 ], [ -77.050424, 38.933187 ], [ -77.050193, 38.933066 ], [ -77.050021, 38.932979 ], [ -77.049673, 38.932824 ], [ -77.049340, 38.932699 ], [ -77.049077, 38.932628 ], [ -77.048889, 38.932599 ], [ -77.048492, 38.932586 ], [ -77.047473, 38.932599 ], [ -77.047328, 38.932599 ], [ -77.046813, 38.932603 ], [ -77.046803, 38.932632 ], [ -77.046781, 38.932649 ], [ -77.046760, 38.932661 ], [ -77.046685, 38.932686 ], [ -77.046524, 38.932749 ], [ -77.046180, 38.932870 ], [ -77.045590, 38.933129 ], [ -77.045403, 38.933212 ], [ -77.045381, 38.933196 ], [ -77.045360, 38.933179 ], [ -77.045338, 38.933166 ], [ -77.045317, 38.933154 ], [ -77.045295, 38.933145 ], [ -77.045268, 38.933137 ], [ -77.045242, 38.933133 ], [ -77.045215, 38.933125 ], [ -77.045166, 38.933108 ], [ -77.045075, 38.933070 ], [ -77.044748, 38.932945 ], [ -77.044190, 38.932745 ], [ -77.044099, 38.932686 ], [ -77.043938, 38.932628 ], [ -77.043922, 38.932615 ], [ -77.043911, 38.932599 ], [ -77.043895, 38.932582 ], [ -77.043820, 38.932557 ], [ -77.043568, 38.932469 ], [ -77.043520, 38.932449 ], [ -77.043418, 38.932415 ], [ -77.043332, 38.932382 ], [ -77.043300, 38.932369 ], [ -77.043230, 38.932353 ], [ -77.043192, 38.932344 ], [ -77.043117, 38.932336 ], [ -77.043042, 38.932336 ], [ -77.043005, 38.932336 ], [ -77.042157, 38.932332 ], [ -77.041808, 38.932336 ], [ -77.041293, 38.932332 ], [ -77.040725, 38.932332 ], [ -77.040655, 38.932336 ], [ -77.040580, 38.932344 ], [ -77.040505, 38.932353 ], [ -77.040172, 38.932419 ], [ -77.039915, 38.932469 ], [ -77.039469, 38.932561 ], [ -77.039405, 38.932574 ], [ -77.039341, 38.932578 ], [ -77.039212, 38.932582 ], [ -77.039142, 38.932582 ], [ -77.039110, 38.932582 ], [ -77.039078, 38.932578 ], [ -77.039040, 38.932570 ], [ -77.038836, 38.932532 ], [ -77.038681, 38.932507 ], [ -77.038611, 38.932482 ], [ -77.038043, 38.932265 ], [ -77.036621, 38.931714 ], [ -77.036455, 38.931652 ], [ -77.036455, 38.931560 ], [ -77.036460, 38.931472 ], [ -77.036455, 38.930592 ], [ -77.036455, 38.930533 ], [ -77.036455, 38.930450 ], [ -77.036465, 38.929986 ], [ -77.036465, 38.929861 ], [ -77.036471, 38.929244 ], [ -77.036471, 38.929164 ], [ -77.036471, 38.929106 ], [ -77.036471, 38.928689 ], [ -77.036476, 38.928593 ], [ -77.036476, 38.928000 ], [ -77.036481, 38.927228 ], [ -77.036481, 38.927157 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003902", "GEOID": "11001003902", "NAME": "39.02", "NAMELSAD": "Census Tract 39.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 266513, "AWATER": 11205, "INTPTLAT": "+38.9257717", "INTPTLON": "-077.0452397" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.041047, 38.925191 ], [ -77.041519, 38.924874 ], [ -77.041991, 38.924561 ], [ -77.048755, 38.924561 ], [ -77.048820, 38.924724 ], [ -77.048916, 38.924974 ], [ -77.049222, 38.925313 ], [ -77.049437, 38.925567 ], [ -77.049871, 38.927704 ], [ -77.049801, 38.927883 ], [ -77.049667, 38.928084 ], [ -77.049512, 38.928134 ], [ -77.049329, 38.928129 ], [ -77.049120, 38.928079 ], [ -77.048943, 38.928000 ], [ -77.048256, 38.927403 ], [ -77.047677, 38.927011 ], [ -77.047049, 38.926711 ], [ -77.046728, 38.926197 ], [ -77.046599, 38.926055 ], [ -77.046298, 38.925943 ], [ -77.046159, 38.925959 ], [ -77.045531, 38.926239 ], [ -77.044909, 38.926577 ], [ -77.044786, 38.926802 ], [ -77.044684, 38.927157 ], [ -77.044694, 38.927453 ], [ -77.044694, 38.927483 ], [ -77.044684, 38.927625 ], [ -77.044587, 38.927867 ], [ -77.044560, 38.927929 ], [ -77.044533, 38.928121 ], [ -77.044458, 38.928104 ], [ -77.044265, 38.928079 ], [ -77.044024, 38.928054 ], [ -77.043847, 38.928021 ], [ -77.043670, 38.928000 ], [ -77.043482, 38.927979 ], [ -77.043364, 38.927971 ], [ -77.043074, 38.927862 ], [ -77.042935, 38.927787 ], [ -77.042887, 38.927758 ], [ -77.042838, 38.927725 ], [ -77.042779, 38.927679 ], [ -77.042592, 38.927558 ], [ -77.042474, 38.927499 ], [ -77.042227, 38.927374 ], [ -77.042195, 38.927353 ], [ -77.042103, 38.927307 ], [ -77.042066, 38.927295 ], [ -77.042001, 38.927266 ], [ -77.041905, 38.927236 ], [ -77.041883, 38.927228 ], [ -77.041841, 38.927220 ], [ -77.041765, 38.927207 ], [ -77.041696, 38.927199 ], [ -77.041535, 38.927182 ], [ -77.041395, 38.927178 ], [ -77.041368, 38.927178 ], [ -77.041213, 38.927182 ], [ -77.041208, 38.927065 ], [ -77.041208, 38.926961 ], [ -77.041213, 38.926861 ], [ -77.041213, 38.926836 ], [ -77.041218, 38.926815 ], [ -77.041224, 38.926790 ], [ -77.041497, 38.926268 ], [ -77.041529, 38.926185 ], [ -77.041540, 38.926143 ], [ -77.041551, 38.926072 ], [ -77.041572, 38.925817 ], [ -77.041599, 38.925471 ], [ -77.041578, 38.925467 ], [ -77.041551, 38.925454 ], [ -77.041529, 38.925446 ], [ -77.041149, 38.925262 ], [ -77.041116, 38.925246 ], [ -77.041095, 38.925233 ], [ -77.041073, 38.925217 ], [ -77.041047, 38.925191 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002703", "GEOID": "11001002703", "NAME": "27.03", "NAMELSAD": "Census Tract 27.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 163863, "AWATER": 0, "INTPTLAT": "+38.9334921", "INTPTLON": "-077.0397435" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036449, 38.934965 ], [ -77.036449, 38.934860 ], [ -77.036449, 38.934431 ], [ -77.036449, 38.934356 ], [ -77.036455, 38.934122 ], [ -77.036455, 38.933287 ], [ -77.036455, 38.932924 ], [ -77.036455, 38.932607 ], [ -77.036455, 38.932494 ], [ -77.036455, 38.932269 ], [ -77.036455, 38.931806 ], [ -77.036455, 38.931652 ], [ -77.036621, 38.931714 ], [ -77.038043, 38.932265 ], [ -77.038611, 38.932482 ], [ -77.038681, 38.932507 ], [ -77.038836, 38.932532 ], [ -77.039040, 38.932570 ], [ -77.039078, 38.932578 ], [ -77.039110, 38.932582 ], [ -77.039142, 38.932582 ], [ -77.039212, 38.932582 ], [ -77.039341, 38.932578 ], [ -77.039405, 38.932574 ], [ -77.039469, 38.932561 ], [ -77.039915, 38.932469 ], [ -77.040172, 38.932419 ], [ -77.040505, 38.932353 ], [ -77.040580, 38.932344 ], [ -77.040655, 38.932336 ], [ -77.040725, 38.932332 ], [ -77.041293, 38.932332 ], [ -77.041808, 38.932336 ], [ -77.042157, 38.932332 ], [ -77.043005, 38.932336 ], [ -77.043042, 38.932336 ], [ -77.043117, 38.932336 ], [ -77.043192, 38.932344 ], [ -77.043230, 38.932353 ], [ -77.043300, 38.932369 ], [ -77.043332, 38.932382 ], [ -77.043418, 38.932415 ], [ -77.043520, 38.932449 ], [ -77.043568, 38.932469 ], [ -77.043820, 38.932557 ], [ -77.043895, 38.932582 ], [ -77.043911, 38.932599 ], [ -77.043922, 38.932615 ], [ -77.043938, 38.932628 ], [ -77.044099, 38.932686 ], [ -77.044190, 38.932745 ], [ -77.044185, 38.933008 ], [ -77.044185, 38.933291 ], [ -77.044185, 38.933805 ], [ -77.044185, 38.934176 ], [ -77.044110, 38.934172 ], [ -77.043471, 38.934172 ], [ -77.042018, 38.934168 ], [ -77.041283, 38.934168 ], [ -77.040542, 38.934168 ], [ -77.040038, 38.934176 ], [ -77.039936, 38.934176 ], [ -77.039534, 38.934176 ], [ -77.038815, 38.934184 ], [ -77.038815, 38.934335 ], [ -77.038815, 38.934397 ], [ -77.038735, 38.934464 ], [ -77.038702, 38.934514 ], [ -77.038112, 38.935436 ], [ -77.038069, 38.935733 ], [ -77.038048, 38.935854 ], [ -77.037994, 38.935866 ], [ -77.037946, 38.935870 ], [ -77.037898, 38.935870 ], [ -77.037860, 38.935866 ], [ -77.037828, 38.935858 ], [ -77.037270, 38.935637 ], [ -77.036916, 38.935499 ], [ -77.036895, 38.935482 ], [ -77.036889, 38.935457 ], [ -77.036900, 38.935440 ], [ -77.037050, 38.935203 ], [ -77.036996, 38.935182 ], [ -77.036600, 38.935027 ], [ -77.036449, 38.934965 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003901", "GEOID": "11001003901", "NAME": "39.01", "NAMELSAD": "Census Tract 39.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 120715, "AWATER": 0, "INTPTLAT": "+38.9254851", "INTPTLON": "-077.0401076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.041991, 38.924561 ], [ -77.041519, 38.924874 ], [ -77.041047, 38.925191 ], [ -77.041073, 38.925217 ], [ -77.041095, 38.925233 ], [ -77.041116, 38.925246 ], [ -77.041149, 38.925262 ], [ -77.041529, 38.925446 ], [ -77.041551, 38.925454 ], [ -77.041578, 38.925467 ], [ -77.041599, 38.925471 ], [ -77.041572, 38.925817 ], [ -77.041551, 38.926072 ], [ -77.041540, 38.926143 ], [ -77.041529, 38.926185 ], [ -77.041497, 38.926268 ], [ -77.041224, 38.926790 ], [ -77.041218, 38.926815 ], [ -77.041213, 38.926836 ], [ -77.041213, 38.926861 ], [ -77.041208, 38.926961 ], [ -77.041208, 38.927065 ], [ -77.041213, 38.927182 ], [ -77.041052, 38.927186 ], [ -77.039802, 38.927182 ], [ -77.039148, 38.927182 ], [ -77.039024, 38.927182 ], [ -77.038944, 38.927178 ], [ -77.038826, 38.927182 ], [ -77.038718, 38.927182 ], [ -77.038552, 38.927174 ], [ -77.038391, 38.927161 ], [ -77.038284, 38.927149 ], [ -77.038230, 38.927145 ], [ -77.038171, 38.927136 ], [ -77.038064, 38.927115 ], [ -77.038010, 38.927107 ], [ -77.037903, 38.927082 ], [ -77.037801, 38.927049 ], [ -77.037705, 38.927019 ], [ -77.037672, 38.927007 ], [ -77.037635, 38.926990 ], [ -77.037603, 38.926969 ], [ -77.037565, 38.926944 ], [ -77.037458, 38.926982 ], [ -77.037426, 38.926990 ], [ -77.037393, 38.926994 ], [ -77.037249, 38.926999 ], [ -77.037157, 38.927011 ], [ -77.037131, 38.927015 ], [ -77.036814, 38.927086 ], [ -77.036701, 38.927120 ], [ -77.036487, 38.926527 ], [ -77.036594, 38.926469 ], [ -77.036846, 38.926335 ], [ -77.036937, 38.926285 ], [ -77.037967, 38.925638 ], [ -77.038364, 38.925404 ], [ -77.038445, 38.925358 ], [ -77.038654, 38.925233 ], [ -77.038820, 38.925133 ], [ -77.039148, 38.924945 ], [ -77.039459, 38.924766 ], [ -77.039663, 38.924649 ], [ -77.039807, 38.924561 ], [ -77.041991, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000702", "GEOID": "11001000702", "NAME": "7.02", "NAMELSAD": "Census Tract 7.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308967, "AWATER": 0, "INTPTLAT": "+38.9241271", "INTPTLON": "-077.0778930" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.073185, 38.926181 ], [ -77.073185, 38.924766 ], [ -77.073185, 38.924695 ], [ -77.073185, 38.924561 ], [ -77.080936, 38.924561 ], [ -77.080936, 38.926024 ], [ -77.080502, 38.926001 ], [ -77.079998, 38.925968 ], [ -77.079762, 38.926072 ], [ -77.079418, 38.926164 ], [ -77.079177, 38.926201 ], [ -77.078978, 38.926185 ], [ -77.078850, 38.926185 ], [ -77.078565, 38.926189 ], [ -77.078292, 38.926193 ], [ -77.077986, 38.926193 ], [ -77.077691, 38.926189 ], [ -77.077047, 38.926185 ], [ -77.077047, 38.926110 ], [ -77.077047, 38.925901 ], [ -77.077047, 38.925742 ], [ -77.075867, 38.925755 ], [ -77.074617, 38.925738 ], [ -77.074623, 38.925575 ], [ -77.073855, 38.925588 ], [ -77.073855, 38.925734 ], [ -77.073855, 38.926185 ], [ -77.073598, 38.926185 ], [ -77.073185, 38.926181 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "000400", "GEOID": "11001000400", "NAME": "4", "NAMELSAD": "Census Tract 4", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1541239, "AWATER": 69, "INTPTLAT": "+38.9227989", "INTPTLON": "-077.0649214" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.073185, 38.924561 ], [ -77.073185, 38.924695 ], [ -77.073185, 38.924766 ], [ -77.073185, 38.926181 ], [ -77.073185, 38.926577 ], [ -77.073185, 38.927291 ], [ -77.073185, 38.927529 ], [ -77.073185, 38.927608 ], [ -77.073185, 38.927992 ], [ -77.073185, 38.928084 ], [ -77.073185, 38.928175 ], [ -77.073185, 38.928313 ], [ -77.073179, 38.928451 ], [ -77.073158, 38.928609 ], [ -77.073137, 38.928822 ], [ -77.073104, 38.929023 ], [ -77.073024, 38.929511 ], [ -77.073002, 38.929657 ], [ -77.072927, 38.930124 ], [ -77.072648, 38.931873 ], [ -77.072579, 38.931877 ], [ -77.072530, 38.931877 ], [ -77.072482, 38.931873 ], [ -77.072434, 38.931869 ], [ -77.072412, 38.931864 ], [ -77.071613, 38.931806 ], [ -77.071254, 38.931777 ], [ -77.070996, 38.931764 ], [ -77.070878, 38.931752 ], [ -77.069618, 38.931660 ], [ -77.069199, 38.931631 ], [ -77.068888, 38.931618 ], [ -77.068797, 38.931618 ], [ -77.068636, 38.931610 ], [ -77.067606, 38.931576 ], [ -77.067204, 38.931564 ], [ -77.067102, 38.931560 ], [ -77.066978, 38.931551 ], [ -77.066833, 38.931539 ], [ -77.066721, 38.931522 ], [ -77.066608, 38.931505 ], [ -77.066388, 38.931468 ], [ -77.066399, 38.930963 ], [ -77.066399, 38.930345 ], [ -77.066399, 38.930266 ], [ -77.066393, 38.930074 ], [ -77.066393, 38.929966 ], [ -77.066383, 38.929448 ], [ -77.066383, 38.929089 ], [ -77.066383, 38.929010 ], [ -77.066383, 38.928438 ], [ -77.066383, 38.928004 ], [ -77.066383, 38.927529 ], [ -77.066050, 38.927524 ], [ -77.065358, 38.927524 ], [ -77.065256, 38.927529 ], [ -77.064811, 38.927529 ], [ -77.064564, 38.927524 ], [ -77.064114, 38.927529 ], [ -77.063754, 38.927524 ], [ -77.063481, 38.927529 ], [ -77.063239, 38.927520 ], [ -77.063068, 38.927382 ], [ -77.063046, 38.927366 ], [ -77.062735, 38.927128 ], [ -77.062102, 38.926627 ], [ -77.061930, 38.926494 ], [ -77.061823, 38.926410 ], [ -77.061743, 38.926352 ], [ -77.061678, 38.926302 ], [ -77.061635, 38.926272 ], [ -77.061571, 38.926218 ], [ -77.061453, 38.926122 ], [ -77.061378, 38.926060 ], [ -77.061265, 38.925976 ], [ -77.060857, 38.925659 ], [ -77.060814, 38.925626 ], [ -77.060729, 38.925563 ], [ -77.060589, 38.925454 ], [ -77.060428, 38.925317 ], [ -77.060155, 38.925108 ], [ -77.059790, 38.924820 ], [ -77.059511, 38.924607 ], [ -77.059452, 38.924561 ], [ -77.073185, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003802", "GEOID": "11001003802", "NAME": "38.02", "NAMELSAD": "Census Tract 38.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 207186, "AWATER": 0, "INTPTLAT": "+38.9229710", "INTPTLON": "-077.0393505" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.039807, 38.924561 ], [ -77.039663, 38.924649 ], [ -77.039459, 38.924766 ], [ -77.039148, 38.924945 ], [ -77.038820, 38.925133 ], [ -77.038654, 38.925233 ], [ -77.038445, 38.925358 ], [ -77.038364, 38.925404 ], [ -77.037967, 38.925638 ], [ -77.036937, 38.926285 ], [ -77.036846, 38.926335 ], [ -77.036594, 38.926469 ], [ -77.036487, 38.926527 ], [ -77.036487, 38.926272 ], [ -77.036487, 38.926185 ], [ -77.036481, 38.925880 ], [ -77.036481, 38.925792 ], [ -77.036481, 38.925605 ], [ -77.036481, 38.924824 ], [ -77.036481, 38.924766 ], [ -77.036484, 38.924561 ], [ -77.039807, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002001", "GEOID": "11001002001", "NAME": "20.01", "NAMELSAD": "Census Tract 20.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 632724, "AWATER": 1132, "INTPTLAT": "+38.9597034", "INTPTLON": "-077.0351061" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.960076 ], [ -77.035275, 38.953847 ], [ -77.035596, 38.953464 ], [ -77.035875, 38.953135 ], [ -77.036036, 38.952943 ], [ -77.036117, 38.952847 ], [ -77.036245, 38.952701 ], [ -77.036412, 38.952534 ], [ -77.036401, 38.952947 ], [ -77.036401, 38.953364 ], [ -77.036401, 38.953915 ], [ -77.036406, 38.954436 ], [ -77.036396, 38.956213 ], [ -77.037034, 38.956213 ], [ -77.037152, 38.956209 ], [ -77.037265, 38.956205 ], [ -77.037436, 38.956193 ], [ -77.037495, 38.956184 ], [ -77.037592, 38.956176 ], [ -77.037672, 38.956163 ], [ -77.037748, 38.956147 ], [ -77.037828, 38.956134 ], [ -77.037908, 38.956113 ], [ -77.037946, 38.956105 ], [ -77.038091, 38.956067 ], [ -77.038134, 38.956059 ], [ -77.038225, 38.956047 ], [ -77.038316, 38.956038 ], [ -77.038407, 38.956034 ], [ -77.038450, 38.956038 ], [ -77.038536, 38.956042 ], [ -77.038584, 38.956051 ], [ -77.038627, 38.956059 ], [ -77.038670, 38.956067 ], [ -77.038708, 38.956076 ], [ -77.038788, 38.956101 ], [ -77.038826, 38.956113 ], [ -77.038901, 38.956147 ], [ -77.038938, 38.956163 ], [ -77.039062, 38.956218 ], [ -77.039094, 38.956230 ], [ -77.039158, 38.956259 ], [ -77.039217, 38.956289 ], [ -77.039276, 38.956326 ], [ -77.039330, 38.956359 ], [ -77.039378, 38.956397 ], [ -77.039416, 38.956435 ], [ -77.039453, 38.956472 ], [ -77.039507, 38.956531 ], [ -77.039539, 38.956572 ], [ -77.039571, 38.956622 ], [ -77.039604, 38.956677 ], [ -77.039625, 38.956727 ], [ -77.039647, 38.956785 ], [ -77.039668, 38.956839 ], [ -77.039727, 38.957035 ], [ -77.039743, 38.957085 ], [ -77.039786, 38.957244 ], [ -77.039797, 38.957298 ], [ -77.039807, 38.957348 ], [ -77.039807, 38.957377 ], [ -77.039813, 38.957432 ], [ -77.039813, 38.957486 ], [ -77.039807, 38.957515 ], [ -77.039802, 38.957586 ], [ -77.039797, 38.957644 ], [ -77.039781, 38.957703 ], [ -77.039775, 38.957740 ], [ -77.039759, 38.957786 ], [ -77.039743, 38.957832 ], [ -77.039700, 38.957949 ], [ -77.039673, 38.958016 ], [ -77.039663, 38.958036 ], [ -77.039657, 38.958057 ], [ -77.039625, 38.958145 ], [ -77.039614, 38.958187 ], [ -77.039593, 38.958287 ], [ -77.039587, 38.958333 ], [ -77.039582, 38.958408 ], [ -77.039587, 38.958458 ], [ -77.039593, 38.958650 ], [ -77.039587, 38.958725 ], [ -77.039582, 38.958771 ], [ -77.039577, 38.958816 ], [ -77.039571, 38.958854 ], [ -77.039561, 38.958887 ], [ -77.039550, 38.958921 ], [ -77.039534, 38.958954 ], [ -77.039512, 38.958987 ], [ -77.039491, 38.959021 ], [ -77.039464, 38.959050 ], [ -77.039437, 38.959075 ], [ -77.039405, 38.959100 ], [ -77.039373, 38.959125 ], [ -77.039341, 38.959142 ], [ -77.039309, 38.959159 ], [ -77.039271, 38.959175 ], [ -77.039239, 38.959188 ], [ -77.039201, 38.959196 ], [ -77.039164, 38.959204 ], [ -77.039089, 38.959213 ], [ -77.038976, 38.959213 ], [ -77.038944, 38.959213 ], [ -77.038912, 38.959217 ], [ -77.038879, 38.959225 ], [ -77.038847, 38.959234 ], [ -77.038815, 38.959242 ], [ -77.038788, 38.959254 ], [ -77.038761, 38.959271 ], [ -77.038735, 38.959284 ], [ -77.038708, 38.959300 ], [ -77.038676, 38.959330 ], [ -77.038649, 38.959363 ], [ -77.038627, 38.959396 ], [ -77.038611, 38.959434 ], [ -77.038600, 38.959467 ], [ -77.038600, 38.959509 ], [ -77.038600, 38.959546 ], [ -77.038606, 38.959584 ], [ -77.038622, 38.959617 ], [ -77.038638, 38.959655 ], [ -77.038670, 38.959688 ], [ -77.038708, 38.959722 ], [ -77.038761, 38.959768 ], [ -77.038804, 38.959793 ], [ -77.038826, 38.959805 ], [ -77.038885, 38.959838 ], [ -77.038917, 38.959851 ], [ -77.038987, 38.959880 ], [ -77.039019, 38.959888 ], [ -77.039089, 38.959905 ], [ -77.039126, 38.959914 ], [ -77.039164, 38.959922 ], [ -77.039207, 38.959926 ], [ -77.039276, 38.959934 ], [ -77.039319, 38.959934 ], [ -77.039421, 38.959943 ], [ -77.039453, 38.959947 ], [ -77.039486, 38.959951 ], [ -77.039518, 38.959959 ], [ -77.039545, 38.959968 ], [ -77.039577, 38.959976 ], [ -77.039604, 38.959989 ], [ -77.039636, 38.960001 ], [ -77.039689, 38.960030 ], [ -77.039743, 38.960068 ], [ -77.039752, 38.960076 ], [ -77.035275, 38.960076 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002002", "GEOID": "11001002002", "NAME": "20.02", "NAMELSAD": "Census Tract 20.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 849376, "AWATER": 0, "INTPTLAT": "+38.9525009", "INTPTLON": "-077.0310824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.948262 ], [ -77.035382, 38.948262 ], [ -77.036278, 38.948262 ], [ -77.036422, 38.948262 ], [ -77.036417, 38.949739 ], [ -77.036412, 38.950523 ], [ -77.036412, 38.950803 ], [ -77.036412, 38.951871 ], [ -77.036412, 38.952534 ], [ -77.036245, 38.952701 ], [ -77.036117, 38.952847 ], [ -77.036036, 38.952943 ], [ -77.035875, 38.953135 ], [ -77.035596, 38.953464 ], [ -77.035275, 38.953847 ], [ -77.035275, 38.948262 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002501", "GEOID": "11001002501", "NAME": "25.01", "NAMELSAD": "Census Tract 25.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 543460, "AWATER": 0, "INTPTLAT": "+38.9446515", "INTPTLON": "-077.0317348" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.941870 ], [ -77.036439, 38.941875 ], [ -77.036422, 38.942934 ], [ -77.036428, 38.943998 ], [ -77.036422, 38.945062 ], [ -77.036422, 38.946130 ], [ -77.036428, 38.947244 ], [ -77.036417, 38.947390 ], [ -77.036422, 38.948262 ], [ -77.036278, 38.948262 ], [ -77.035382, 38.948262 ], [ -77.035275, 38.948262 ], [ -77.035275, 38.941870 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002504", "GEOID": "11001002504", "NAME": "25.04", "NAMELSAD": "Census Tract 25.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 311721, "AWATER": 0, "INTPTLAT": "+38.9394498", "INTPTLON": "-077.0329275" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.937427 ], [ -77.036444, 38.937427 ], [ -77.036444, 38.937731 ], [ -77.036444, 38.937923 ], [ -77.036444, 38.938048 ], [ -77.036444, 38.938232 ], [ -77.036439, 38.938599 ], [ -77.036439, 38.938950 ], [ -77.036439, 38.939104 ], [ -77.036439, 38.939738 ], [ -77.036428, 38.940806 ], [ -77.036439, 38.941875 ], [ -77.035275, 38.941870 ], [ -77.035275, 38.937427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002801", "GEOID": "11001002801", "NAME": "28.01", "NAMELSAD": "Census Tract 28.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 171910, "AWATER": 0, "INTPTLAT": "+38.9349477", "INTPTLON": "-077.0345166" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036444, 38.937427 ], [ -77.035275, 38.937427 ], [ -77.035275, 38.932830 ], [ -77.035763, 38.933020 ], [ -77.036299, 38.933225 ], [ -77.036455, 38.933287 ], [ -77.036455, 38.934122 ], [ -77.036449, 38.934356 ], [ -77.036449, 38.934431 ], [ -77.036449, 38.934860 ], [ -77.036449, 38.934965 ], [ -77.036449, 38.935403 ], [ -77.036444, 38.936079 ], [ -77.036444, 38.936375 ], [ -77.036444, 38.936734 ], [ -77.036449, 38.936801 ], [ -77.036449, 38.936930 ], [ -77.036444, 38.937068 ], [ -77.036444, 38.937281 ], [ -77.036444, 38.937427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002802", "GEOID": "11001002802", "NAME": "28.02", "NAMELSAD": "Census Tract 28.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 229696, "AWATER": 0, "INTPTLAT": "+38.9294344", "INTPTLON": "-077.0346327" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.926338 ], [ -77.035478, 38.926327 ], [ -77.035983, 38.926310 ], [ -77.036331, 38.926293 ], [ -77.036487, 38.926272 ], [ -77.036487, 38.926527 ], [ -77.036701, 38.927120 ], [ -77.036481, 38.927157 ], [ -77.036481, 38.927228 ], [ -77.036476, 38.928000 ], [ -77.036476, 38.928593 ], [ -77.036471, 38.928689 ], [ -77.036471, 38.929106 ], [ -77.036471, 38.929164 ], [ -77.036471, 38.929244 ], [ -77.036465, 38.929861 ], [ -77.036465, 38.929986 ], [ -77.036455, 38.930450 ], [ -77.036455, 38.930533 ], [ -77.036455, 38.930592 ], [ -77.036460, 38.931472 ], [ -77.036455, 38.931560 ], [ -77.036455, 38.931652 ], [ -77.036455, 38.931806 ], [ -77.036455, 38.932269 ], [ -77.036455, 38.932494 ], [ -77.036455, 38.932607 ], [ -77.036455, 38.932924 ], [ -77.036455, 38.933287 ], [ -77.036299, 38.933225 ], [ -77.035763, 38.933020 ], [ -77.035275, 38.932830 ], [ -77.035275, 38.926338 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003702", "GEOID": "11001003702", "NAME": "37.02", "NAMELSAD": "Census Tract 37.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 119532, "AWATER": 0, "INTPTLAT": "+38.9249042", "INTPTLON": "-077.0343972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.035275, 38.924561 ], [ -77.036484, 38.924561 ], [ -77.036481, 38.924766 ], [ -77.036481, 38.924824 ], [ -77.036481, 38.925605 ], [ -77.036481, 38.925792 ], [ -77.036481, 38.925880 ], [ -77.036487, 38.926185 ], [ -77.036487, 38.926272 ], [ -77.036331, 38.926293 ], [ -77.035983, 38.926310 ], [ -77.035478, 38.926327 ], [ -77.035275, 38.926338 ], [ -77.035275, 38.924561 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2343, "y": 3136 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007301", "GEOID": "11001007301", "NAME": "73.01", "NAMELSAD": "Census Tract 73.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684643, "AWATER": 5139082, "INTPTLAT": "+38.8349280", "INTPTLON": "-077.0244450" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.823260 ], [ -77.017372, 38.823260 ], [ -77.017373, 38.823235 ], [ -77.017373, 38.822486 ], [ -77.017373, 38.822403 ], [ -77.017373, 38.822369 ], [ -77.017373, 38.822294 ], [ -77.017373, 38.822232 ], [ -77.017384, 38.822152 ], [ -77.017390, 38.822102 ], [ -77.017411, 38.821964 ], [ -77.017427, 38.821914 ], [ -77.017432, 38.821851 ], [ -77.017470, 38.821713 ], [ -77.017481, 38.821663 ], [ -77.017556, 38.821488 ], [ -77.017626, 38.821333 ], [ -77.017727, 38.821170 ], [ -77.017878, 38.820978 ], [ -77.018071, 38.820819 ], [ -77.018216, 38.820798 ], [ -77.018280, 38.820794 ], [ -77.020034, 38.820710 ], [ -77.020227, 38.820685 ], [ -77.020474, 38.820660 ], [ -77.021928, 38.820522 ], [ -77.022239, 38.820489 ], [ -77.022464, 38.820464 ], [ -77.022995, 38.820405 ], [ -77.023602, 38.820338 ], [ -77.024202, 38.820276 ], [ -77.024739, 38.820209 ], [ -77.025222, 38.820159 ], [ -77.025361, 38.820142 ], [ -77.025479, 38.820125 ], [ -77.025511, 38.820125 ], [ -77.025667, 38.820104 ], [ -77.025699, 38.820104 ], [ -77.025731, 38.820100 ], [ -77.025753, 38.820096 ], [ -77.027475, 38.819979 ], [ -77.036991, 38.819675 ], [ -77.036991, 38.823260 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009807", "GEOID": "11001009807", "NAME": "98.07", "NAMELSAD": "Census Tract 98.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1037012, "AWATER": 0, "INTPTLAT": "+38.8292038", "INTPTLON": "-077.0117577" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.012079, 38.821897 ], [ -77.012696, 38.823034 ], [ -77.013738, 38.823260 ], [ -77.011741, 38.823260 ], [ -77.011725, 38.823222 ], [ -77.011569, 38.822858 ], [ -77.011553, 38.822821 ], [ -77.011628, 38.822662 ], [ -77.011687, 38.822528 ], [ -77.011805, 38.822319 ], [ -77.011939, 38.822089 ], [ -77.012068, 38.821872 ], [ -77.012079, 38.821897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009810", "GEOID": "11001009810", "NAME": "98.10", "NAMELSAD": "Census Tract 98.10", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 398419, "AWATER": 14058, "INTPTLAT": "+38.8260370", "INTPTLON": "-077.0037886" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002181, 38.821964 ], [ -77.002428, 38.822140 ], [ -77.002471, 38.822165 ], [ -77.002557, 38.822219 ], [ -77.002605, 38.822244 ], [ -77.002696, 38.822290 ], [ -77.002788, 38.822336 ], [ -77.002879, 38.822382 ], [ -77.003174, 38.822512 ], [ -77.004472, 38.823084 ], [ -77.004542, 38.823113 ], [ -77.004665, 38.823168 ], [ -77.004767, 38.823214 ], [ -77.004856, 38.823260 ], [ -77.001924, 38.823260 ], [ -77.001945, 38.822737 ], [ -77.001972, 38.822236 ], [ -77.001983, 38.822202 ], [ -77.001988, 38.822181 ], [ -77.002015, 38.822144 ], [ -77.002042, 38.822119 ], [ -77.002122, 38.822031 ], [ -77.002181, 38.821964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009811", "GEOID": "11001009811", "NAME": "98.11", "NAMELSAD": "Census Tract 98.11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 467511, "AWATER": 0, "INTPTLAT": "+38.8266510", "INTPTLON": "-076.9984594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002181, 38.821964 ], [ -77.002122, 38.822031 ], [ -77.002042, 38.822119 ], [ -77.002015, 38.822144 ], [ -77.001988, 38.822181 ], [ -77.001983, 38.822202 ], [ -77.001972, 38.822236 ], [ -77.001945, 38.822737 ], [ -77.001924, 38.823260 ], [ -76.998721, 38.823260 ], [ -76.998936, 38.823092 ], [ -76.999161, 38.822917 ], [ -76.999274, 38.822829 ], [ -77.000068, 38.822206 ], [ -77.000138, 38.822152 ], [ -77.000239, 38.822060 ], [ -77.001033, 38.821437 ], [ -77.001237, 38.821274 ], [ -77.001377, 38.821350 ], [ -77.001843, 38.821713 ], [ -77.002069, 38.821880 ], [ -77.002181, 38.821964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010900", "GEOID": "11001010900", "NAME": "109", "NAMELSAD": "Census Tract 109", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2381079, "AWATER": 2933589, "INTPTLAT": "+38.8132364", "INTPTLON": "-077.0238475" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.001237, 38.821274 ], [ -77.001302, 38.821220 ], [ -77.001559, 38.821011 ], [ -77.004483, 38.818662 ], [ -77.006478, 38.817057 ], [ -77.006612, 38.816949 ], [ -77.009187, 38.814947 ], [ -77.015410, 38.810081 ], [ -77.016338, 38.809358 ], [ -77.020383, 38.806198 ], [ -77.020726, 38.805930 ], [ -77.021772, 38.805144 ], [ -77.022266, 38.804780 ], [ -77.022368, 38.804688 ], [ -77.022464, 38.804605 ], [ -77.024331, 38.803112 ], [ -77.035516, 38.794375 ], [ -77.036439, 38.793651 ], [ -77.036991, 38.793221 ], [ -77.036991, 38.819675 ], [ -77.027475, 38.819979 ], [ -77.025753, 38.820096 ], [ -77.025731, 38.820100 ], [ -77.025699, 38.820104 ], [ -77.025667, 38.820104 ], [ -77.025511, 38.820125 ], [ -77.025479, 38.820125 ], [ -77.025361, 38.820142 ], [ -77.025222, 38.820159 ], [ -77.024739, 38.820209 ], [ -77.024202, 38.820276 ], [ -77.023602, 38.820338 ], [ -77.022995, 38.820405 ], [ -77.022464, 38.820464 ], [ -77.022239, 38.820489 ], [ -77.021928, 38.820522 ], [ -77.020474, 38.820660 ], [ -77.020227, 38.820685 ], [ -77.020034, 38.820710 ], [ -77.018280, 38.820794 ], [ -77.018216, 38.820798 ], [ -77.018071, 38.820819 ], [ -77.017878, 38.820978 ], [ -77.017727, 38.821170 ], [ -77.017626, 38.821333 ], [ -77.017556, 38.821488 ], [ -77.017481, 38.821663 ], [ -77.017470, 38.821713 ], [ -77.017432, 38.821851 ], [ -77.017427, 38.821914 ], [ -77.017411, 38.821964 ], [ -77.017390, 38.822102 ], [ -77.017384, 38.822152 ], [ -77.017373, 38.822232 ], [ -77.017373, 38.822294 ], [ -77.017373, 38.822369 ], [ -77.017373, 38.822403 ], [ -77.017373, 38.822486 ], [ -77.017373, 38.823235 ], [ -77.017372, 38.823260 ], [ -77.013738, 38.823260 ], [ -77.012696, 38.823034 ], [ -77.012079, 38.821897 ], [ -77.012068, 38.821872 ], [ -77.011939, 38.822089 ], [ -77.011805, 38.822319 ], [ -77.011687, 38.822528 ], [ -77.011628, 38.822662 ], [ -77.011553, 38.822821 ], [ -77.011569, 38.822858 ], [ -77.011725, 38.823222 ], [ -77.011741, 38.823260 ], [ -77.004856, 38.823260 ], [ -77.004767, 38.823214 ], [ -77.004665, 38.823168 ], [ -77.004542, 38.823113 ], [ -77.004472, 38.823084 ], [ -77.003174, 38.822512 ], [ -77.002879, 38.822382 ], [ -77.002788, 38.822336 ], [ -77.002696, 38.822290 ], [ -77.002605, 38.822244 ], [ -77.002557, 38.822219 ], [ -77.002471, 38.822165 ], [ -77.002428, 38.822140 ], [ -77.002181, 38.821964 ], [ -77.002069, 38.821880 ], [ -77.001843, 38.821713 ], [ -77.001377, 38.821350 ], [ -77.001237, 38.821274 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2343, "y": 3135 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "980000", "GEOID": "11001980000", "NAME": "9800", "NAMELSAD": "Census Tract 9800", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 6514228, "AWATER": 4996393, "INTPTLAT": "+38.8809933", "INTPTLON": "-077.0363219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.032201, 38.850696 ], [ -77.032201, 38.850725 ], [ -77.032206, 38.850754 ], [ -77.032206, 38.850788 ], [ -77.032211, 38.850817 ], [ -77.032211, 38.850846 ], [ -77.032211, 38.850867 ], [ -77.032217, 38.850901 ], [ -77.032217, 38.850926 ], [ -77.032222, 38.850955 ], [ -77.032217, 38.850984 ], [ -77.032217, 38.851013 ], [ -77.032217, 38.851047 ], [ -77.032217, 38.851076 ], [ -77.032211, 38.851109 ], [ -77.032211, 38.851139 ], [ -77.032211, 38.851172 ], [ -77.032217, 38.851201 ], [ -77.032217, 38.851231 ], [ -77.032217, 38.851260 ], [ -77.032211, 38.851293 ], [ -77.032206, 38.851327 ], [ -77.032201, 38.851356 ], [ -77.032195, 38.851389 ], [ -77.032195, 38.851419 ], [ -77.032195, 38.851452 ], [ -77.032195, 38.851481 ], [ -77.032201, 38.851515 ], [ -77.032201, 38.851544 ], [ -77.032201, 38.851573 ], [ -77.032206, 38.851607 ], [ -77.032206, 38.851640 ], [ -77.032206, 38.851673 ], [ -77.032211, 38.851703 ], [ -77.032217, 38.851732 ], [ -77.032222, 38.851761 ], [ -77.032228, 38.851795 ], [ -77.032233, 38.851820 ], [ -77.032238, 38.851845 ], [ -77.032244, 38.851870 ], [ -77.032249, 38.851895 ], [ -77.032254, 38.851924 ], [ -77.032260, 38.851953 ], [ -77.032265, 38.851987 ], [ -77.032270, 38.852016 ], [ -77.032276, 38.852049 ], [ -77.032276, 38.852083 ], [ -77.032281, 38.852112 ], [ -77.032281, 38.852146 ], [ -77.032276, 38.852171 ], [ -77.032270, 38.852200 ], [ -77.032265, 38.852221 ], [ -77.032260, 38.852246 ], [ -77.032260, 38.852271 ], [ -77.032260, 38.852296 ], [ -77.032265, 38.852317 ], [ -77.032276, 38.852342 ], [ -77.032292, 38.852367 ], [ -77.032303, 38.852392 ], [ -77.032313, 38.852417 ], [ -77.032324, 38.852442 ], [ -77.032335, 38.852471 ], [ -77.032340, 38.852505 ], [ -77.032351, 38.852534 ], [ -77.032362, 38.852563 ], [ -77.032372, 38.852593 ], [ -77.032383, 38.852626 ], [ -77.032388, 38.852655 ], [ -77.032399, 38.852689 ], [ -77.032410, 38.852718 ], [ -77.032415, 38.852751 ], [ -77.032426, 38.852781 ], [ -77.032437, 38.852814 ], [ -77.032447, 38.852843 ], [ -77.032453, 38.852877 ], [ -77.032458, 38.852910 ], [ -77.032469, 38.852943 ], [ -77.032474, 38.852977 ], [ -77.032480, 38.853010 ], [ -77.032485, 38.853044 ], [ -77.032490, 38.853077 ], [ -77.032496, 38.853111 ], [ -77.032501, 38.853144 ], [ -77.032506, 38.853173 ], [ -77.032512, 38.853211 ], [ -77.032517, 38.853240 ], [ -77.032523, 38.853273 ], [ -77.032533, 38.853307 ], [ -77.032533, 38.853340 ], [ -77.032539, 38.853374 ], [ -77.032549, 38.853403 ], [ -77.032549, 38.853432 ], [ -77.032555, 38.853461 ], [ -77.032560, 38.853487 ], [ -77.032565, 38.853516 ], [ -77.032571, 38.853545 ], [ -77.032582, 38.853570 ], [ -77.032592, 38.853599 ], [ -77.032598, 38.853629 ], [ -77.032608, 38.853658 ], [ -77.032614, 38.853687 ], [ -77.032619, 38.853716 ], [ -77.032624, 38.853746 ], [ -77.032630, 38.853775 ], [ -77.032635, 38.853800 ], [ -77.032641, 38.853829 ], [ -77.032651, 38.853850 ], [ -77.032651, 38.853871 ], [ -77.032657, 38.853892 ], [ -77.032662, 38.853925 ], [ -77.032662, 38.853946 ], [ -77.032667, 38.853971 ], [ -77.032662, 38.853996 ], [ -77.032657, 38.854021 ], [ -77.032651, 38.854046 ], [ -77.032651, 38.854071 ], [ -77.032657, 38.854096 ], [ -77.032662, 38.854122 ], [ -77.032673, 38.854151 ], [ -77.032678, 38.854176 ], [ -77.032683, 38.854205 ], [ -77.032689, 38.854234 ], [ -77.032694, 38.854259 ], [ -77.032700, 38.854284 ], [ -77.032710, 38.854314 ], [ -77.032721, 38.854339 ], [ -77.032726, 38.854364 ], [ -77.032737, 38.854393 ], [ -77.032748, 38.854418 ], [ -77.032753, 38.854443 ], [ -77.032764, 38.854464 ], [ -77.032769, 38.854481 ], [ -77.032769, 38.854502 ], [ -77.032780, 38.854523 ], [ -77.032785, 38.854548 ], [ -77.032791, 38.854573 ], [ -77.032802, 38.854598 ], [ -77.032807, 38.854627 ], [ -77.032812, 38.854652 ], [ -77.032818, 38.854677 ], [ -77.032823, 38.854702 ], [ -77.032828, 38.854723 ], [ -77.032834, 38.854748 ], [ -77.032839, 38.854773 ], [ -77.032839, 38.854798 ], [ -77.032839, 38.854823 ], [ -77.032834, 38.854848 ], [ -77.032828, 38.854873 ], [ -77.032828, 38.854903 ], [ -77.032828, 38.854928 ], [ -77.032834, 38.854957 ], [ -77.032834, 38.854982 ], [ -77.032834, 38.855007 ], [ -77.032839, 38.855028 ], [ -77.032844, 38.855045 ], [ -77.032861, 38.855078 ], [ -77.032871, 38.855099 ], [ -77.032887, 38.855132 ], [ -77.032930, 38.855224 ], [ -77.032946, 38.855249 ], [ -77.032962, 38.855274 ], [ -77.032973, 38.855291 ], [ -77.032984, 38.855312 ], [ -77.032995, 38.855333 ], [ -77.033005, 38.855350 ], [ -77.033016, 38.855371 ], [ -77.033027, 38.855387 ], [ -77.033038, 38.855404 ], [ -77.033048, 38.855429 ], [ -77.033059, 38.855446 ], [ -77.033075, 38.855467 ], [ -77.033086, 38.855483 ], [ -77.033097, 38.855508 ], [ -77.033107, 38.855529 ], [ -77.033118, 38.855550 ], [ -77.033129, 38.855571 ], [ -77.033139, 38.855592 ], [ -77.033150, 38.855613 ], [ -77.033161, 38.855634 ], [ -77.033177, 38.855655 ], [ -77.033188, 38.855680 ], [ -77.033198, 38.855701 ], [ -77.033209, 38.855721 ], [ -77.033225, 38.855742 ], [ -77.033241, 38.855767 ], [ -77.033252, 38.855788 ], [ -77.033268, 38.855805 ], [ -77.033284, 38.855826 ], [ -77.033300, 38.855847 ], [ -77.033306, 38.855868 ], [ -77.033316, 38.855889 ], [ -77.033327, 38.855909 ], [ -77.033343, 38.855930 ], [ -77.033359, 38.855951 ], [ -77.033370, 38.855972 ], [ -77.033381, 38.855993 ], [ -77.033397, 38.856018 ], [ -77.033408, 38.856039 ], [ -77.033418, 38.856060 ], [ -77.033424, 38.856081 ], [ -77.033435, 38.856102 ], [ -77.033445, 38.856127 ], [ -77.033456, 38.856143 ], [ -77.033467, 38.856164 ], [ -77.033483, 38.856189 ], [ -77.033494, 38.856210 ], [ -77.033510, 38.856231 ], [ -77.033520, 38.856252 ], [ -77.033531, 38.856277 ], [ -77.033542, 38.856298 ], [ -77.033553, 38.856319 ], [ -77.033563, 38.856340 ], [ -77.033569, 38.856365 ], [ -77.033579, 38.856386 ], [ -77.033590, 38.856407 ], [ -77.033601, 38.856423 ], [ -77.033612, 38.856448 ], [ -77.033622, 38.856469 ], [ -77.033638, 38.856490 ], [ -77.033654, 38.856507 ], [ -77.033665, 38.856532 ], [ -77.033681, 38.856553 ], [ -77.033692, 38.856574 ], [ -77.033703, 38.856590 ], [ -77.033719, 38.856611 ], [ -77.033730, 38.856636 ], [ -77.033740, 38.856657 ], [ -77.033751, 38.856674 ], [ -77.033762, 38.856699 ], [ -77.033778, 38.856720 ], [ -77.033789, 38.856741 ], [ -77.033799, 38.856762 ], [ -77.033810, 38.856787 ], [ -77.033821, 38.856812 ], [ -77.033826, 38.856828 ], [ -77.033837, 38.856849 ], [ -77.033848, 38.856870 ], [ -77.033858, 38.856891 ], [ -77.033869, 38.856912 ], [ -77.033880, 38.856929 ], [ -77.033896, 38.856950 ], [ -77.033907, 38.856971 ], [ -77.033917, 38.856991 ], [ -77.033928, 38.857012 ], [ -77.033939, 38.857033 ], [ -77.033949, 38.857058 ], [ -77.033966, 38.857079 ], [ -77.033976, 38.857100 ], [ -77.033987, 38.857121 ], [ -77.034003, 38.857142 ], [ -77.034014, 38.857163 ], [ -77.034019, 38.857184 ], [ -77.034030, 38.857200 ], [ -77.034035, 38.857221 ], [ -77.034046, 38.857246 ], [ -77.034057, 38.857267 ], [ -77.034068, 38.857288 ], [ -77.034078, 38.857309 ], [ -77.034084, 38.857334 ], [ -77.034089, 38.857355 ], [ -77.034094, 38.857372 ], [ -77.034100, 38.857397 ], [ -77.034105, 38.857422 ], [ -77.034116, 38.857438 ], [ -77.034121, 38.857455 ], [ -77.034121, 38.857480 ], [ -77.034123, 38.857489 ], [ -77.020157, 38.857489 ], [ -77.020158, 38.857330 ], [ -77.022679, 38.855901 ], [ -77.032201, 38.850696 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "011002", "GEOID": "11001011002", "NAME": "110.02", "NAMELSAD": "Census Tract 110.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 498112, "AWATER": 367035, "INTPTLAT": "+38.8681789", "INTPTLON": "-077.0182455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.019877, 38.857489 ], [ -77.020158, 38.857330 ], [ -77.020157, 38.857489 ], [ -77.019877, 38.857489 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007401", "GEOID": "11001007401", "NAME": "74.01", "NAMELSAD": "Census Tract 74.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1209113, "AWATER": 200980, "INTPTLAT": "+38.8675208", "INTPTLON": "-076.9991203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993632, 38.857489 ], [ -76.993641, 38.857188 ], [ -76.993647, 38.856707 ], [ -76.993657, 38.855914 ], [ -76.993625, 38.855738 ], [ -76.993545, 38.855471 ], [ -76.993432, 38.855208 ], [ -76.993260, 38.854899 ], [ -76.993094, 38.854656 ], [ -76.992847, 38.854397 ], [ -76.992606, 38.854167 ], [ -76.992348, 38.853988 ], [ -76.992069, 38.853812 ], [ -76.991984, 38.853754 ], [ -76.992145, 38.853595 ], [ -76.992252, 38.853482 ], [ -76.992273, 38.853466 ], [ -76.992284, 38.853453 ], [ -76.992477, 38.853566 ], [ -76.996098, 38.855843 ], [ -76.998724, 38.857489 ], [ -76.993632, 38.857489 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007301", "GEOID": "11001007301", "NAME": "73.01", "NAMELSAD": "Census Tract 73.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684643, "AWATER": 5139082, "INTPTLAT": "+38.8349280", "INTPTLON": "-077.0244450" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.821922 ], [ -77.036991, 38.839384 ], [ -77.036964, 38.839386 ], [ -77.036803, 38.839407 ], [ -77.036777, 38.839415 ], [ -77.036750, 38.839423 ], [ -77.036728, 38.839440 ], [ -77.036691, 38.839474 ], [ -77.036653, 38.839507 ], [ -77.036626, 38.839528 ], [ -77.036632, 38.839553 ], [ -77.036610, 38.839570 ], [ -77.036578, 38.839574 ], [ -77.036546, 38.839566 ], [ -77.036508, 38.839557 ], [ -77.036476, 38.839553 ], [ -77.036428, 38.839549 ], [ -77.036347, 38.839549 ], [ -77.036315, 38.839545 ], [ -77.036262, 38.839549 ], [ -77.036197, 38.839553 ], [ -77.036170, 38.839561 ], [ -77.036111, 38.839578 ], [ -77.036085, 38.839586 ], [ -77.036058, 38.839599 ], [ -77.036031, 38.839607 ], [ -77.036009, 38.839624 ], [ -77.035977, 38.839637 ], [ -77.035956, 38.839653 ], [ -77.035929, 38.839666 ], [ -77.035897, 38.839678 ], [ -77.035870, 38.839687 ], [ -77.035816, 38.839703 ], [ -77.035789, 38.839712 ], [ -77.035763, 38.839716 ], [ -77.035736, 38.839724 ], [ -77.035714, 38.839741 ], [ -77.035671, 38.839754 ], [ -77.035645, 38.839754 ], [ -77.035607, 38.839749 ], [ -77.035570, 38.839741 ], [ -77.035521, 38.839749 ], [ -77.035500, 38.839754 ], [ -77.035473, 38.839762 ], [ -77.035425, 38.839783 ], [ -77.035371, 38.839800 ], [ -77.035296, 38.839837 ], [ -77.035275, 38.839850 ], [ -77.035221, 38.839866 ], [ -77.035199, 38.839875 ], [ -77.035146, 38.839883 ], [ -77.035119, 38.839891 ], [ -77.035033, 38.839937 ], [ -77.035001, 38.839950 ], [ -77.034969, 38.839958 ], [ -77.034867, 38.839979 ], [ -77.034835, 38.839992 ], [ -77.034802, 38.840000 ], [ -77.034776, 38.840008 ], [ -77.034690, 38.840025 ], [ -77.034663, 38.840034 ], [ -77.034642, 38.840046 ], [ -77.034620, 38.840059 ], [ -77.034588, 38.840100 ], [ -77.034577, 38.840121 ], [ -77.034566, 38.840142 ], [ -77.034550, 38.840184 ], [ -77.034550, 38.840205 ], [ -77.034545, 38.840251 ], [ -77.034545, 38.840268 ], [ -77.034550, 38.840313 ], [ -77.034545, 38.840359 ], [ -77.034540, 38.840401 ], [ -77.034540, 38.840451 ], [ -77.034540, 38.840472 ], [ -77.034545, 38.840573 ], [ -77.034550, 38.840623 ], [ -77.034556, 38.840715 ], [ -77.034550, 38.840756 ], [ -77.034545, 38.840777 ], [ -77.034540, 38.840798 ], [ -77.034529, 38.840815 ], [ -77.034513, 38.840832 ], [ -77.034497, 38.840844 ], [ -77.034422, 38.840873 ], [ -77.034384, 38.840886 ], [ -77.034346, 38.840890 ], [ -77.034282, 38.840878 ], [ -77.034255, 38.840873 ], [ -77.034228, 38.840882 ], [ -77.034207, 38.840869 ], [ -77.034207, 38.840894 ], [ -77.034196, 38.840919 ], [ -77.034191, 38.840936 ], [ -77.034191, 38.840957 ], [ -77.034207, 38.840982 ], [ -77.034250, 38.841036 ], [ -77.034261, 38.841066 ], [ -77.034271, 38.841091 ], [ -77.034277, 38.841120 ], [ -77.034271, 38.841149 ], [ -77.034261, 38.841170 ], [ -77.034250, 38.841187 ], [ -77.034228, 38.841203 ], [ -77.034207, 38.841212 ], [ -77.034180, 38.841229 ], [ -77.034169, 38.841254 ], [ -77.034153, 38.841316 ], [ -77.034137, 38.841400 ], [ -77.034137, 38.841429 ], [ -77.034132, 38.841479 ], [ -77.034127, 38.841550 ], [ -77.034127, 38.841567 ], [ -77.034132, 38.841588 ], [ -77.034105, 38.841600 ], [ -77.034073, 38.841613 ], [ -77.034046, 38.841630 ], [ -77.034025, 38.841655 ], [ -77.034014, 38.841688 ], [ -77.034009, 38.841709 ], [ -77.034009, 38.841734 ], [ -77.034009, 38.841755 ], [ -77.034009, 38.841780 ], [ -77.034014, 38.841801 ], [ -77.034014, 38.841826 ], [ -77.034009, 38.841851 ], [ -77.034003, 38.841876 ], [ -77.034003, 38.841901 ], [ -77.033992, 38.841922 ], [ -77.033992, 38.841943 ], [ -77.033987, 38.841972 ], [ -77.033982, 38.841993 ], [ -77.033982, 38.842018 ], [ -77.033982, 38.842043 ], [ -77.033976, 38.842068 ], [ -77.033976, 38.842093 ], [ -77.033976, 38.842118 ], [ -77.033971, 38.842139 ], [ -77.033971, 38.842169 ], [ -77.033966, 38.842190 ], [ -77.033966, 38.842215 ], [ -77.033960, 38.842240 ], [ -77.033960, 38.842261 ], [ -77.033955, 38.842281 ], [ -77.033955, 38.842307 ], [ -77.033955, 38.842327 ], [ -77.033949, 38.842348 ], [ -77.033949, 38.842373 ], [ -77.033949, 38.842394 ], [ -77.033949, 38.842415 ], [ -77.033949, 38.842436 ], [ -77.033949, 38.842457 ], [ -77.033944, 38.842478 ], [ -77.033944, 38.842499 ], [ -77.033944, 38.842520 ], [ -77.033939, 38.842549 ], [ -77.033939, 38.842574 ], [ -77.033944, 38.842591 ], [ -77.033944, 38.842616 ], [ -77.033939, 38.842645 ], [ -77.033933, 38.842678 ], [ -77.033923, 38.842712 ], [ -77.033917, 38.842745 ], [ -77.033912, 38.842779 ], [ -77.033901, 38.842812 ], [ -77.033885, 38.842841 ], [ -77.033869, 38.842875 ], [ -77.033858, 38.842891 ], [ -77.033853, 38.842908 ], [ -77.033842, 38.842929 ], [ -77.033837, 38.842946 ], [ -77.033826, 38.842962 ], [ -77.033815, 38.842979 ], [ -77.033805, 38.842996 ], [ -77.033789, 38.843013 ], [ -77.033778, 38.843029 ], [ -77.033767, 38.843046 ], [ -77.033746, 38.843075 ], [ -77.033735, 38.843096 ], [ -77.033724, 38.843113 ], [ -77.033713, 38.843134 ], [ -77.033703, 38.843155 ], [ -77.033697, 38.843176 ], [ -77.033687, 38.843192 ], [ -77.033681, 38.843213 ], [ -77.033671, 38.843234 ], [ -77.033665, 38.843255 ], [ -77.033660, 38.843280 ], [ -77.033649, 38.843301 ], [ -77.033638, 38.843322 ], [ -77.033633, 38.843343 ], [ -77.033622, 38.843364 ], [ -77.033606, 38.843384 ], [ -77.033595, 38.843405 ], [ -77.033585, 38.843430 ], [ -77.033574, 38.843451 ], [ -77.033553, 38.843472 ], [ -77.033536, 38.843493 ], [ -77.033520, 38.843514 ], [ -77.033510, 38.843539 ], [ -77.033504, 38.843560 ], [ -77.033494, 38.843581 ], [ -77.033494, 38.843602 ], [ -77.033488, 38.843623 ], [ -77.033477, 38.843644 ], [ -77.033467, 38.843669 ], [ -77.033451, 38.843689 ], [ -77.033440, 38.843710 ], [ -77.033429, 38.843731 ], [ -77.033418, 38.843752 ], [ -77.033408, 38.843773 ], [ -77.033397, 38.843798 ], [ -77.033386, 38.843819 ], [ -77.033376, 38.843844 ], [ -77.033365, 38.843869 ], [ -77.033359, 38.843890 ], [ -77.033354, 38.843911 ], [ -77.033343, 38.843936 ], [ -77.033333, 38.843961 ], [ -77.033322, 38.843982 ], [ -77.033311, 38.844003 ], [ -77.033300, 38.844028 ], [ -77.033295, 38.844049 ], [ -77.033284, 38.844070 ], [ -77.033279, 38.844095 ], [ -77.033274, 38.844116 ], [ -77.033263, 38.844141 ], [ -77.033252, 38.844162 ], [ -77.033247, 38.844183 ], [ -77.033231, 38.844208 ], [ -77.033220, 38.844233 ], [ -77.033204, 38.844254 ], [ -77.033188, 38.844274 ], [ -77.033177, 38.844295 ], [ -77.033172, 38.844316 ], [ -77.033166, 38.844337 ], [ -77.033156, 38.844362 ], [ -77.033150, 38.844383 ], [ -77.033156, 38.844400 ], [ -77.033129, 38.844483 ], [ -77.033102, 38.844496 ], [ -77.033075, 38.844517 ], [ -77.033064, 38.844550 ], [ -77.033059, 38.844571 ], [ -77.033059, 38.844592 ], [ -77.033059, 38.844613 ], [ -77.033054, 38.844634 ], [ -77.033048, 38.844655 ], [ -77.033038, 38.844676 ], [ -77.033032, 38.844701 ], [ -77.033021, 38.844721 ], [ -77.033016, 38.844742 ], [ -77.033016, 38.844767 ], [ -77.033011, 38.844793 ], [ -77.033005, 38.844818 ], [ -77.033005, 38.844843 ], [ -77.033000, 38.844868 ], [ -77.032995, 38.844889 ], [ -77.032989, 38.844918 ], [ -77.032984, 38.844943 ], [ -77.032973, 38.844968 ], [ -77.032968, 38.844993 ], [ -77.032962, 38.845018 ], [ -77.032957, 38.845047 ], [ -77.032952, 38.845072 ], [ -77.032946, 38.845093 ], [ -77.032946, 38.845118 ], [ -77.032941, 38.845143 ], [ -77.032936, 38.845169 ], [ -77.032930, 38.845198 ], [ -77.032925, 38.845223 ], [ -77.032914, 38.845248 ], [ -77.032909, 38.845273 ], [ -77.032898, 38.845298 ], [ -77.032893, 38.845319 ], [ -77.032882, 38.845344 ], [ -77.032877, 38.845369 ], [ -77.032871, 38.845394 ], [ -77.032866, 38.845419 ], [ -77.032866, 38.845444 ], [ -77.032861, 38.845474 ], [ -77.032855, 38.845499 ], [ -77.032850, 38.845519 ], [ -77.032844, 38.845549 ], [ -77.032844, 38.845565 ], [ -77.032839, 38.845586 ], [ -77.032828, 38.845607 ], [ -77.032823, 38.845628 ], [ -77.032823, 38.845649 ], [ -77.032818, 38.845674 ], [ -77.032818, 38.845699 ], [ -77.032812, 38.845720 ], [ -77.032807, 38.845745 ], [ -77.032802, 38.845766 ], [ -77.032802, 38.845783 ], [ -77.032807, 38.845812 ], [ -77.032791, 38.845858 ], [ -77.032775, 38.845883 ], [ -77.032769, 38.845916 ], [ -77.032769, 38.845937 ], [ -77.032764, 38.845954 ], [ -77.032759, 38.845975 ], [ -77.032753, 38.845996 ], [ -77.032743, 38.846017 ], [ -77.032737, 38.846038 ], [ -77.032726, 38.846058 ], [ -77.032721, 38.846079 ], [ -77.032721, 38.846100 ], [ -77.032716, 38.846121 ], [ -77.032710, 38.846142 ], [ -77.032705, 38.846159 ], [ -77.032700, 38.846180 ], [ -77.032694, 38.846196 ], [ -77.032689, 38.846213 ], [ -77.032683, 38.846234 ], [ -77.032678, 38.846251 ], [ -77.032673, 38.846272 ], [ -77.032667, 38.846292 ], [ -77.032667, 38.846313 ], [ -77.032662, 38.846334 ], [ -77.032657, 38.846355 ], [ -77.032651, 38.846380 ], [ -77.032646, 38.846409 ], [ -77.032641, 38.846430 ], [ -77.032635, 38.846451 ], [ -77.032630, 38.846472 ], [ -77.032624, 38.846493 ], [ -77.032619, 38.846518 ], [ -77.032614, 38.846543 ], [ -77.032608, 38.846568 ], [ -77.032603, 38.846593 ], [ -77.032598, 38.846618 ], [ -77.032587, 38.846648 ], [ -77.032582, 38.846673 ], [ -77.032576, 38.846702 ], [ -77.032565, 38.846727 ], [ -77.032560, 38.846752 ], [ -77.032549, 38.846777 ], [ -77.032539, 38.846802 ], [ -77.032533, 38.846827 ], [ -77.032528, 38.846856 ], [ -77.032523, 38.846882 ], [ -77.032523, 38.846911 ], [ -77.032517, 38.846936 ], [ -77.032517, 38.846961 ], [ -77.032512, 38.846990 ], [ -77.032512, 38.847011 ], [ -77.032506, 38.847036 ], [ -77.032496, 38.847061 ], [ -77.032490, 38.847090 ], [ -77.032485, 38.847115 ], [ -77.032474, 38.847141 ], [ -77.032474, 38.847170 ], [ -77.032474, 38.847195 ], [ -77.032469, 38.847220 ], [ -77.032464, 38.847241 ], [ -77.032464, 38.847266 ], [ -77.032458, 38.847287 ], [ -77.032453, 38.847308 ], [ -77.032447, 38.847329 ], [ -77.032442, 38.847349 ], [ -77.032442, 38.847370 ], [ -77.032437, 38.847391 ], [ -77.032431, 38.847412 ], [ -77.032421, 38.847441 ], [ -77.032410, 38.847466 ], [ -77.032415, 38.847487 ], [ -77.032410, 38.847517 ], [ -77.032405, 38.847542 ], [ -77.032388, 38.847563 ], [ -77.032388, 38.847592 ], [ -77.032388, 38.847613 ], [ -77.032383, 38.847638 ], [ -77.032383, 38.847659 ], [ -77.032383, 38.847684 ], [ -77.032378, 38.847709 ], [ -77.032378, 38.847738 ], [ -77.032372, 38.847763 ], [ -77.032372, 38.847788 ], [ -77.032372, 38.847813 ], [ -77.032372, 38.847838 ], [ -77.032367, 38.847863 ], [ -77.032265, 38.848018 ], [ -77.032297, 38.848135 ], [ -77.032292, 38.848189 ], [ -77.032292, 38.848206 ], [ -77.032292, 38.848227 ], [ -77.032297, 38.848248 ], [ -77.032297, 38.848269 ], [ -77.032297, 38.848285 ], [ -77.032297, 38.848306 ], [ -77.032303, 38.848327 ], [ -77.032303, 38.848348 ], [ -77.032303, 38.848373 ], [ -77.032303, 38.848402 ], [ -77.032308, 38.848419 ], [ -77.032308, 38.848436 ], [ -77.032303, 38.848457 ], [ -77.032303, 38.848477 ], [ -77.032303, 38.848498 ], [ -77.032297, 38.848523 ], [ -77.032297, 38.848594 ], [ -77.032292, 38.848695 ], [ -77.032287, 38.848791 ], [ -77.032287, 38.848808 ], [ -77.032287, 38.848833 ], [ -77.032287, 38.848858 ], [ -77.032287, 38.848883 ], [ -77.032281, 38.848912 ], [ -77.032281, 38.848941 ], [ -77.032281, 38.848970 ], [ -77.032281, 38.849004 ], [ -77.032276, 38.849037 ], [ -77.032276, 38.849071 ], [ -77.032276, 38.849104 ], [ -77.032276, 38.849138 ], [ -77.032276, 38.849175 ], [ -77.032270, 38.849242 ], [ -77.032270, 38.849267 ], [ -77.032270, 38.849292 ], [ -77.032270, 38.849321 ], [ -77.032265, 38.849346 ], [ -77.032265, 38.849372 ], [ -77.032265, 38.849397 ], [ -77.032265, 38.849426 ], [ -77.032265, 38.849451 ], [ -77.032265, 38.849468 ], [ -77.032265, 38.849488 ], [ -77.032265, 38.849505 ], [ -77.032260, 38.849526 ], [ -77.032260, 38.849547 ], [ -77.032260, 38.849572 ], [ -77.032260, 38.849597 ], [ -77.032254, 38.849622 ], [ -77.032254, 38.849647 ], [ -77.032244, 38.849676 ], [ -77.032244, 38.849706 ], [ -77.032238, 38.849735 ], [ -77.032233, 38.849764 ], [ -77.032228, 38.849793 ], [ -77.032222, 38.849819 ], [ -77.032217, 38.849839 ], [ -77.032211, 38.849860 ], [ -77.032195, 38.849881 ], [ -77.032185, 38.850073 ], [ -77.032195, 38.850094 ], [ -77.032142, 38.850286 ], [ -77.032142, 38.850312 ], [ -77.032147, 38.850341 ], [ -77.032152, 38.850366 ], [ -77.032152, 38.850395 ], [ -77.032158, 38.850420 ], [ -77.032163, 38.850449 ], [ -77.032169, 38.850483 ], [ -77.032174, 38.850508 ], [ -77.032179, 38.850541 ], [ -77.032185, 38.850571 ], [ -77.032185, 38.850600 ], [ -77.032190, 38.850633 ], [ -77.032195, 38.850662 ], [ -77.032201, 38.850696 ], [ -77.022679, 38.855901 ], [ -77.020158, 38.857330 ], [ -77.019877, 38.857489 ], [ -77.003979, 38.857489 ], [ -77.004075, 38.857246 ], [ -77.004204, 38.856933 ], [ -77.004488, 38.856252 ], [ -77.004697, 38.855763 ], [ -77.004853, 38.855400 ], [ -77.004949, 38.855178 ], [ -77.005051, 38.854961 ], [ -77.005105, 38.854853 ], [ -77.005212, 38.854635 ], [ -77.005271, 38.854531 ], [ -77.005330, 38.854422 ], [ -77.005384, 38.854318 ], [ -77.005459, 38.854188 ], [ -77.005604, 38.853942 ], [ -77.005674, 38.853817 ], [ -77.005824, 38.853566 ], [ -77.006055, 38.853194 ], [ -77.006135, 38.853073 ], [ -77.006199, 38.852964 ], [ -77.006376, 38.852672 ], [ -77.006527, 38.852417 ], [ -77.006789, 38.851987 ], [ -77.007020, 38.851602 ], [ -77.007068, 38.851523 ], [ -77.007095, 38.851469 ], [ -77.007203, 38.851331 ], [ -77.007530, 38.850838 ], [ -77.007664, 38.850629 ], [ -77.007803, 38.850374 ], [ -77.007943, 38.850128 ], [ -77.007975, 38.850069 ], [ -77.008029, 38.849877 ], [ -77.008034, 38.849760 ], [ -77.008045, 38.849229 ], [ -77.008131, 38.848202 ], [ -77.008141, 38.847955 ], [ -77.008216, 38.846944 ], [ -77.008345, 38.845135 ], [ -77.008356, 38.845039 ], [ -77.008705, 38.842365 ], [ -77.008855, 38.841153 ], [ -77.009016, 38.840034 ], [ -77.009059, 38.839875 ], [ -77.009150, 38.839561 ], [ -77.009654, 38.838759 ], [ -77.009815, 38.838542 ], [ -77.009987, 38.838308 ], [ -77.010174, 38.838053 ], [ -77.010303, 38.837886 ], [ -77.010604, 38.837472 ], [ -77.010657, 38.837401 ], [ -77.010963, 38.836987 ], [ -77.011065, 38.836854 ], [ -77.011558, 38.836177 ], [ -77.011977, 38.835613 ], [ -77.012529, 38.834861 ], [ -77.012959, 38.834284 ], [ -77.013431, 38.833649 ], [ -77.013720, 38.833248 ], [ -77.014015, 38.832851 ], [ -77.014251, 38.832571 ], [ -77.014450, 38.832332 ], [ -77.014600, 38.832136 ], [ -77.014713, 38.831986 ], [ -77.014895, 38.831726 ], [ -77.014954, 38.831639 ], [ -77.014970, 38.831614 ], [ -77.015056, 38.831518 ], [ -77.015147, 38.831426 ], [ -77.015212, 38.831367 ], [ -77.015281, 38.831304 ], [ -77.015432, 38.831162 ], [ -77.015673, 38.830933 ], [ -77.015877, 38.830740 ], [ -77.016091, 38.830544 ], [ -77.016483, 38.830176 ], [ -77.016558, 38.830101 ], [ -77.016622, 38.830059 ], [ -77.016665, 38.830013 ], [ -77.016692, 38.829984 ], [ -77.016730, 38.829942 ], [ -77.016751, 38.829904 ], [ -77.016767, 38.829871 ], [ -77.016783, 38.829829 ], [ -77.016805, 38.829787 ], [ -77.016821, 38.829658 ], [ -77.016842, 38.829608 ], [ -77.016885, 38.829528 ], [ -77.017009, 38.829328 ], [ -77.017062, 38.829240 ], [ -77.017078, 38.829207 ], [ -77.017148, 38.829069 ], [ -77.017196, 38.828935 ], [ -77.017218, 38.828843 ], [ -77.017223, 38.828814 ], [ -77.017293, 38.828438 ], [ -77.017304, 38.828346 ], [ -77.017325, 38.828241 ], [ -77.017331, 38.828070 ], [ -77.017336, 38.827782 ], [ -77.017368, 38.827364 ], [ -77.017368, 38.827226 ], [ -77.017363, 38.825203 ], [ -77.017363, 38.824304 ], [ -77.017368, 38.823895 ], [ -77.017368, 38.823594 ], [ -77.017368, 38.823573 ], [ -77.017368, 38.823352 ], [ -77.017373, 38.823235 ], [ -77.017373, 38.822486 ], [ -77.017373, 38.822403 ], [ -77.017373, 38.822369 ], [ -77.017373, 38.822294 ], [ -77.017373, 38.822232 ], [ -77.017384, 38.822152 ], [ -77.017390, 38.822102 ], [ -77.017411, 38.821964 ], [ -77.017424, 38.821922 ], [ -77.036991, 38.821922 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010400", "GEOID": "11001010400", "NAME": "104", "NAMELSAD": "Census Tract 104", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2602393, "AWATER": 7006, "INTPTLAT": "+38.8512668", "INTPTLON": "-077.0009082" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.007739, 38.835688 ], [ -77.007873, 38.835855 ], [ -77.008082, 38.836440 ], [ -77.008946, 38.838458 ], [ -77.009080, 38.838772 ], [ -77.009166, 38.838897 ], [ -77.009187, 38.839185 ], [ -77.009150, 38.839561 ], [ -77.009059, 38.839875 ], [ -77.009016, 38.840034 ], [ -77.008855, 38.841153 ], [ -77.008705, 38.842365 ], [ -77.008356, 38.845039 ], [ -77.008345, 38.845135 ], [ -77.008216, 38.846944 ], [ -77.008141, 38.847955 ], [ -77.008131, 38.848202 ], [ -77.008045, 38.849229 ], [ -77.008034, 38.849760 ], [ -77.008029, 38.849877 ], [ -77.007975, 38.850069 ], [ -77.007943, 38.850128 ], [ -77.007803, 38.850374 ], [ -77.007664, 38.850629 ], [ -77.007530, 38.850838 ], [ -77.007203, 38.851331 ], [ -77.007095, 38.851469 ], [ -77.007068, 38.851523 ], [ -77.007020, 38.851602 ], [ -77.006789, 38.851987 ], [ -77.006527, 38.852417 ], [ -77.006376, 38.852672 ], [ -77.006199, 38.852964 ], [ -77.006135, 38.853073 ], [ -77.006055, 38.853194 ], [ -77.005824, 38.853566 ], [ -77.005674, 38.853817 ], [ -77.005604, 38.853942 ], [ -77.005459, 38.854188 ], [ -77.005384, 38.854318 ], [ -77.005330, 38.854422 ], [ -77.005271, 38.854531 ], [ -77.005212, 38.854635 ], [ -77.005105, 38.854853 ], [ -77.005051, 38.854961 ], [ -77.004949, 38.855178 ], [ -77.004853, 38.855400 ], [ -77.004697, 38.855763 ], [ -77.004488, 38.856252 ], [ -77.004204, 38.856933 ], [ -77.004075, 38.857246 ], [ -77.003979, 38.857489 ], [ -76.998724, 38.857489 ], [ -76.996098, 38.855843 ], [ -76.992477, 38.853566 ], [ -76.992284, 38.853453 ], [ -76.991329, 38.852883 ], [ -76.991329, 38.844186 ], [ -76.991656, 38.844128 ], [ -76.992171, 38.844040 ], [ -76.992424, 38.843994 ], [ -76.993014, 38.843894 ], [ -76.993293, 38.843848 ], [ -76.993373, 38.843832 ], [ -76.993502, 38.843811 ], [ -76.994221, 38.843689 ], [ -76.994478, 38.843644 ], [ -76.994698, 38.843606 ], [ -76.995331, 38.843501 ], [ -76.995910, 38.843410 ], [ -76.996640, 38.843293 ], [ -76.996999, 38.843234 ], [ -76.997305, 38.843188 ], [ -76.997450, 38.843167 ], [ -76.997547, 38.843159 ], [ -76.997675, 38.843146 ], [ -76.998228, 38.843117 ], [ -76.998448, 38.843109 ], [ -76.998555, 38.843105 ], [ -76.999494, 38.843059 ], [ -76.999698, 38.843050 ], [ -76.999762, 38.843059 ], [ -76.999848, 38.843071 ], [ -76.999875, 38.843079 ], [ -76.999955, 38.843134 ], [ -77.000057, 38.843084 ], [ -77.000111, 38.843063 ], [ -77.000170, 38.843042 ], [ -77.000288, 38.843008 ], [ -77.000486, 38.842962 ], [ -77.000577, 38.842942 ], [ -77.000781, 38.842896 ], [ -77.001548, 38.842716 ], [ -77.001774, 38.842662 ], [ -77.001983, 38.842616 ], [ -77.002090, 38.842586 ], [ -77.002198, 38.842553 ], [ -77.002251, 38.842532 ], [ -77.002348, 38.842495 ], [ -77.002401, 38.842465 ], [ -77.002455, 38.842440 ], [ -77.002557, 38.842386 ], [ -77.002621, 38.842344 ], [ -77.002664, 38.842319 ], [ -77.002782, 38.842227 ], [ -77.002836, 38.842181 ], [ -77.002884, 38.842131 ], [ -77.002900, 38.842110 ], [ -77.002970, 38.842031 ], [ -77.003034, 38.841951 ], [ -77.003506, 38.841333 ], [ -77.004209, 38.840405 ], [ -77.004451, 38.840088 ], [ -77.004542, 38.839971 ], [ -77.004949, 38.839428 ], [ -77.005325, 38.838939 ], [ -77.005491, 38.838722 ], [ -77.005674, 38.838475 ], [ -77.005899, 38.838182 ], [ -77.006022, 38.838020 ], [ -77.006130, 38.837873 ], [ -77.006371, 38.837564 ], [ -77.006575, 38.837284 ], [ -77.006848, 38.836929 ], [ -77.007084, 38.836616 ], [ -77.007562, 38.835972 ], [ -77.007578, 38.835943 ], [ -77.007621, 38.835888 ], [ -77.007675, 38.835801 ], [ -77.007707, 38.835746 ], [ -77.007739, 38.835688 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009803", "GEOID": "11001009803", "NAME": "98.03", "NAMELSAD": "Census Tract 98.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 531060, "AWATER": 3756, "INTPTLAT": "+38.8356929", "INTPTLON": "-077.0043421" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.000567, 38.841880 ], [ -77.000567, 38.841784 ], [ -77.000567, 38.841634 ], [ -77.000572, 38.841279 ], [ -77.000572, 38.840995 ], [ -77.000572, 38.840978 ], [ -77.000567, 38.840614 ], [ -77.000572, 38.840393 ], [ -77.000572, 38.840305 ], [ -77.000572, 38.840217 ], [ -77.000572, 38.839887 ], [ -77.000572, 38.839520 ], [ -77.000572, 38.838554 ], [ -77.000567, 38.838454 ], [ -77.000567, 38.837882 ], [ -77.000572, 38.837514 ], [ -77.000567, 38.837234 ], [ -77.000572, 38.837096 ], [ -77.000577, 38.837029 ], [ -77.000583, 38.836962 ], [ -77.000599, 38.836896 ], [ -77.000615, 38.836829 ], [ -77.000647, 38.836707 ], [ -77.000663, 38.836653 ], [ -77.000695, 38.836553 ], [ -77.000712, 38.836499 ], [ -77.000717, 38.836473 ], [ -77.000738, 38.836386 ], [ -77.000749, 38.836323 ], [ -77.000754, 38.836290 ], [ -77.000765, 38.836227 ], [ -77.000771, 38.836160 ], [ -77.000771, 38.836118 ], [ -77.000771, 38.836039 ], [ -77.000771, 38.835968 ], [ -77.000765, 38.835914 ], [ -77.000760, 38.835859 ], [ -77.000754, 38.835805 ], [ -77.000626, 38.835312 ], [ -77.000610, 38.835253 ], [ -77.000594, 38.835195 ], [ -77.000583, 38.835128 ], [ -77.000577, 38.835065 ], [ -77.000572, 38.834965 ], [ -77.000567, 38.834856 ], [ -77.000567, 38.834029 ], [ -77.000567, 38.833970 ], [ -77.001001, 38.833975 ], [ -77.001243, 38.833945 ], [ -77.001736, 38.833724 ], [ -77.002283, 38.833348 ], [ -77.002745, 38.832809 ], [ -77.003002, 38.832245 ], [ -77.003335, 38.831614 ], [ -77.003528, 38.831384 ], [ -77.003855, 38.830987 ], [ -77.003946, 38.830995 ], [ -77.005164, 38.831129 ], [ -77.005883, 38.831204 ], [ -77.006666, 38.831288 ], [ -77.007240, 38.831350 ], [ -77.007675, 38.831396 ], [ -77.007760, 38.831472 ], [ -77.007782, 38.831518 ], [ -77.007798, 38.831551 ], [ -77.007814, 38.831589 ], [ -77.007846, 38.831660 ], [ -77.007911, 38.831768 ], [ -77.008061, 38.832023 ], [ -77.008082, 38.832078 ], [ -77.008131, 38.832178 ], [ -77.008179, 38.832282 ], [ -77.008222, 38.832387 ], [ -77.008259, 38.832491 ], [ -77.008291, 38.832579 ], [ -77.008308, 38.832642 ], [ -77.008329, 38.832704 ], [ -77.008340, 38.832767 ], [ -77.008350, 38.832834 ], [ -77.008361, 38.832922 ], [ -77.008383, 38.833080 ], [ -77.008393, 38.833151 ], [ -77.008399, 38.833260 ], [ -77.008393, 38.833369 ], [ -77.008388, 38.833440 ], [ -77.008410, 38.833649 ], [ -77.008340, 38.833828 ], [ -77.008313, 38.833941 ], [ -77.008211, 38.834276 ], [ -77.008190, 38.834334 ], [ -77.008013, 38.834911 ], [ -77.007970, 38.835061 ], [ -77.007905, 38.835249 ], [ -77.007787, 38.835600 ], [ -77.007771, 38.835629 ], [ -77.007739, 38.835688 ], [ -77.007707, 38.835746 ], [ -77.007675, 38.835801 ], [ -77.007621, 38.835888 ], [ -77.007578, 38.835943 ], [ -77.007562, 38.835972 ], [ -77.007084, 38.836616 ], [ -77.006848, 38.836929 ], [ -77.006575, 38.837284 ], [ -77.006371, 38.837564 ], [ -77.006130, 38.837873 ], [ -77.006022, 38.838020 ], [ -77.005899, 38.838182 ], [ -77.005674, 38.838475 ], [ -77.005491, 38.838722 ], [ -77.005325, 38.838939 ], [ -77.004949, 38.839428 ], [ -77.004542, 38.839971 ], [ -77.004451, 38.840088 ], [ -77.004209, 38.840405 ], [ -77.003919, 38.840268 ], [ -77.003764, 38.840192 ], [ -77.003726, 38.840184 ], [ -77.003694, 38.840176 ], [ -77.003657, 38.840167 ], [ -77.003624, 38.840159 ], [ -77.003549, 38.840151 ], [ -77.003480, 38.840146 ], [ -77.003442, 38.840146 ], [ -77.003404, 38.840151 ], [ -77.003367, 38.840155 ], [ -77.003329, 38.840163 ], [ -77.003292, 38.840171 ], [ -77.003254, 38.840184 ], [ -77.003222, 38.840196 ], [ -77.003185, 38.840209 ], [ -77.003152, 38.840226 ], [ -77.003120, 38.840247 ], [ -77.003061, 38.840284 ], [ -77.002965, 38.840380 ], [ -77.002771, 38.840568 ], [ -77.002664, 38.840677 ], [ -77.002525, 38.840815 ], [ -77.002358, 38.840969 ], [ -77.002181, 38.841145 ], [ -77.001935, 38.841387 ], [ -77.001763, 38.841563 ], [ -77.001715, 38.841605 ], [ -77.001666, 38.841642 ], [ -77.001634, 38.841667 ], [ -77.001607, 38.841688 ], [ -77.001565, 38.841713 ], [ -77.001548, 38.841722 ], [ -77.001484, 38.841755 ], [ -77.001452, 38.841772 ], [ -77.001382, 38.841801 ], [ -77.001318, 38.841822 ], [ -77.001286, 38.841830 ], [ -77.001232, 38.841847 ], [ -77.001173, 38.841855 ], [ -77.001141, 38.841864 ], [ -77.001055, 38.841872 ], [ -77.000991, 38.841876 ], [ -77.000905, 38.841880 ], [ -77.000754, 38.841880 ], [ -77.000728, 38.841876 ], [ -77.000567, 38.841880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009807", "GEOID": "11001009807", "NAME": "98.07", "NAMELSAD": "Census Tract 98.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1037012, "AWATER": 0, "INTPTLAT": "+38.8292038", "INTPTLON": "-077.0117577" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.012092, 38.821922 ], [ -77.012696, 38.823034 ], [ -77.015823, 38.823711 ], [ -77.016526, 38.823765 ], [ -77.016826, 38.823849 ], [ -77.017089, 38.823744 ], [ -77.017368, 38.823594 ], [ -77.017368, 38.823895 ], [ -77.017363, 38.824304 ], [ -77.017363, 38.825203 ], [ -77.017368, 38.827226 ], [ -77.017368, 38.827364 ], [ -77.017336, 38.827782 ], [ -77.017331, 38.828070 ], [ -77.017325, 38.828241 ], [ -77.017304, 38.828346 ], [ -77.017293, 38.828438 ], [ -77.017223, 38.828814 ], [ -77.017218, 38.828843 ], [ -77.017196, 38.828935 ], [ -77.017148, 38.829069 ], [ -77.017078, 38.829207 ], [ -77.017062, 38.829240 ], [ -77.017009, 38.829328 ], [ -77.016885, 38.829528 ], [ -77.016842, 38.829608 ], [ -77.016821, 38.829658 ], [ -77.016805, 38.829787 ], [ -77.016783, 38.829829 ], [ -77.016767, 38.829871 ], [ -77.016751, 38.829904 ], [ -77.016730, 38.829942 ], [ -77.016692, 38.829984 ], [ -77.016665, 38.830013 ], [ -77.016622, 38.830059 ], [ -77.016558, 38.830101 ], [ -77.016483, 38.830176 ], [ -77.016091, 38.830544 ], [ -77.015877, 38.830740 ], [ -77.015673, 38.830933 ], [ -77.015432, 38.831162 ], [ -77.015281, 38.831304 ], [ -77.015212, 38.831367 ], [ -77.015147, 38.831426 ], [ -77.015056, 38.831518 ], [ -77.014970, 38.831614 ], [ -77.014954, 38.831639 ], [ -77.014895, 38.831726 ], [ -77.014713, 38.831986 ], [ -77.014600, 38.832136 ], [ -77.014450, 38.832332 ], [ -77.014251, 38.832571 ], [ -77.014015, 38.832851 ], [ -77.013720, 38.833248 ], [ -77.013431, 38.833649 ], [ -77.012959, 38.834284 ], [ -77.012529, 38.834861 ], [ -77.011977, 38.835613 ], [ -77.011558, 38.836177 ], [ -77.011065, 38.836854 ], [ -77.010963, 38.836987 ], [ -77.010657, 38.837401 ], [ -77.010604, 38.837472 ], [ -77.010303, 38.837886 ], [ -77.010174, 38.838053 ], [ -77.009987, 38.838308 ], [ -77.009815, 38.838542 ], [ -77.009654, 38.838759 ], [ -77.009150, 38.839561 ], [ -77.009187, 38.839185 ], [ -77.009166, 38.838897 ], [ -77.009080, 38.838772 ], [ -77.008946, 38.838458 ], [ -77.008082, 38.836440 ], [ -77.007873, 38.835855 ], [ -77.007739, 38.835688 ], [ -77.007771, 38.835629 ], [ -77.007787, 38.835600 ], [ -77.007905, 38.835249 ], [ -77.007970, 38.835061 ], [ -77.008013, 38.834911 ], [ -77.008190, 38.834334 ], [ -77.008211, 38.834276 ], [ -77.008313, 38.833941 ], [ -77.008340, 38.833828 ], [ -77.008410, 38.833649 ], [ -77.008388, 38.833440 ], [ -77.008393, 38.833369 ], [ -77.008399, 38.833260 ], [ -77.008393, 38.833151 ], [ -77.008383, 38.833080 ], [ -77.008361, 38.832922 ], [ -77.008350, 38.832834 ], [ -77.008340, 38.832767 ], [ -77.008329, 38.832704 ], [ -77.008308, 38.832642 ], [ -77.008291, 38.832579 ], [ -77.008259, 38.832491 ], [ -77.008222, 38.832387 ], [ -77.008179, 38.832282 ], [ -77.008131, 38.832178 ], [ -77.008082, 38.832078 ], [ -77.008061, 38.832023 ], [ -77.007911, 38.831768 ], [ -77.007846, 38.831660 ], [ -77.007814, 38.831589 ], [ -77.007798, 38.831551 ], [ -77.007782, 38.831518 ], [ -77.007760, 38.831472 ], [ -77.007675, 38.831396 ], [ -77.007669, 38.830841 ], [ -77.007675, 38.830590 ], [ -77.007675, 38.830343 ], [ -77.007669, 38.830293 ], [ -77.007669, 38.830214 ], [ -77.007669, 38.829637 ], [ -77.007669, 38.829198 ], [ -77.007669, 38.827794 ], [ -77.007669, 38.827623 ], [ -77.007675, 38.827460 ], [ -77.007669, 38.827293 ], [ -77.007664, 38.827209 ], [ -77.007653, 38.827092 ], [ -77.007637, 38.826979 ], [ -77.007621, 38.826862 ], [ -77.007599, 38.826766 ], [ -77.007567, 38.826628 ], [ -77.007535, 38.826536 ], [ -77.007508, 38.826448 ], [ -77.007471, 38.826356 ], [ -77.007433, 38.826265 ], [ -77.007380, 38.826160 ], [ -77.007331, 38.826064 ], [ -77.007262, 38.825930 ], [ -77.007133, 38.825734 ], [ -77.007090, 38.825667 ], [ -77.007004, 38.825533 ], [ -77.006763, 38.825174 ], [ -77.006741, 38.825145 ], [ -77.006575, 38.824885 ], [ -77.006468, 38.824727 ], [ -77.006344, 38.824539 ], [ -77.006248, 38.824405 ], [ -77.006183, 38.824317 ], [ -77.006119, 38.824233 ], [ -77.006049, 38.824150 ], [ -77.006001, 38.824091 ], [ -77.006022, 38.824083 ], [ -77.006103, 38.824058 ], [ -77.006210, 38.824033 ], [ -77.006269, 38.824024 ], [ -77.006344, 38.824016 ], [ -77.006366, 38.824016 ], [ -77.006392, 38.824012 ], [ -77.006489, 38.824008 ], [ -77.006516, 38.824008 ], [ -77.006548, 38.824012 ], [ -77.006612, 38.824012 ], [ -77.006677, 38.824012 ], [ -77.006741, 38.824008 ], [ -77.006875, 38.823991 ], [ -77.006945, 38.823979 ], [ -77.007009, 38.823966 ], [ -77.007079, 38.823949 ], [ -77.007111, 38.823937 ], [ -77.007143, 38.823928 ], [ -77.007304, 38.823866 ], [ -77.007358, 38.823849 ], [ -77.007557, 38.823774 ], [ -77.007632, 38.823744 ], [ -77.007723, 38.823711 ], [ -77.007819, 38.823682 ], [ -77.007884, 38.823665 ], [ -77.007954, 38.823653 ], [ -77.008018, 38.823640 ], [ -77.008082, 38.823632 ], [ -77.008120, 38.823623 ], [ -77.008222, 38.823615 ], [ -77.008399, 38.823602 ], [ -77.008474, 38.823598 ], [ -77.008613, 38.823598 ], [ -77.008967, 38.823602 ], [ -77.009525, 38.823598 ], [ -77.009568, 38.823598 ], [ -77.009649, 38.823598 ], [ -77.010330, 38.823602 ], [ -77.010673, 38.823598 ], [ -77.010882, 38.823598 ], [ -77.010963, 38.823602 ], [ -77.011741, 38.823598 ], [ -77.011794, 38.823598 ], [ -77.011853, 38.823590 ], [ -77.011880, 38.823581 ], [ -77.011725, 38.823222 ], [ -77.011569, 38.822858 ], [ -77.011553, 38.822821 ], [ -77.011628, 38.822662 ], [ -77.011687, 38.822528 ], [ -77.011805, 38.822319 ], [ -77.011939, 38.822089 ], [ -77.012038, 38.821922 ], [ -77.012092, 38.821922 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009810", "GEOID": "11001009810", "NAME": "98.10", "NAMELSAD": "Census Tract 98.10", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 398419, "AWATER": 14058, "INTPTLAT": "+38.8260370", "INTPTLON": "-077.0037886" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002181, 38.821964 ], [ -77.002428, 38.822140 ], [ -77.002471, 38.822165 ], [ -77.002557, 38.822219 ], [ -77.002605, 38.822244 ], [ -77.002696, 38.822290 ], [ -77.002788, 38.822336 ], [ -77.002879, 38.822382 ], [ -77.003174, 38.822512 ], [ -77.004472, 38.823084 ], [ -77.004542, 38.823113 ], [ -77.004665, 38.823168 ], [ -77.004767, 38.823214 ], [ -77.004864, 38.823264 ], [ -77.005051, 38.823360 ], [ -77.005143, 38.823410 ], [ -77.005234, 38.823464 ], [ -77.005427, 38.823594 ], [ -77.005475, 38.823632 ], [ -77.005523, 38.823665 ], [ -77.005625, 38.823749 ], [ -77.005711, 38.823816 ], [ -77.005781, 38.823874 ], [ -77.005845, 38.823933 ], [ -77.005904, 38.823991 ], [ -77.006001, 38.824091 ], [ -77.006049, 38.824150 ], [ -77.006119, 38.824233 ], [ -77.006183, 38.824317 ], [ -77.006248, 38.824405 ], [ -77.006344, 38.824539 ], [ -77.006468, 38.824727 ], [ -77.006575, 38.824885 ], [ -77.006741, 38.825145 ], [ -77.006763, 38.825174 ], [ -77.007004, 38.825533 ], [ -77.007090, 38.825667 ], [ -77.007133, 38.825734 ], [ -77.007262, 38.825930 ], [ -77.007331, 38.826064 ], [ -77.007380, 38.826160 ], [ -77.007433, 38.826265 ], [ -77.007471, 38.826356 ], [ -77.007508, 38.826448 ], [ -77.007535, 38.826536 ], [ -77.007567, 38.826628 ], [ -77.007599, 38.826766 ], [ -77.007621, 38.826862 ], [ -77.007637, 38.826979 ], [ -77.007653, 38.827092 ], [ -77.007664, 38.827209 ], [ -77.007669, 38.827293 ], [ -77.007675, 38.827460 ], [ -77.007669, 38.827623 ], [ -77.007669, 38.827794 ], [ -77.007669, 38.829198 ], [ -77.007669, 38.829637 ], [ -77.007669, 38.830214 ], [ -77.007669, 38.830293 ], [ -77.007675, 38.830343 ], [ -77.007675, 38.830590 ], [ -77.007669, 38.830841 ], [ -77.007675, 38.831396 ], [ -77.007240, 38.831350 ], [ -77.006666, 38.831288 ], [ -77.005883, 38.831204 ], [ -77.005164, 38.831129 ], [ -77.003946, 38.830995 ], [ -77.003855, 38.830987 ], [ -77.003710, 38.830970 ], [ -77.003533, 38.830966 ], [ -77.003378, 38.830958 ], [ -77.003329, 38.830958 ], [ -77.002605, 38.830958 ], [ -77.002026, 38.830958 ], [ -77.002020, 38.830506 ], [ -77.002020, 38.830093 ], [ -77.002020, 38.829792 ], [ -77.002020, 38.829340 ], [ -77.002020, 38.829228 ], [ -77.002031, 38.829081 ], [ -77.002047, 38.828914 ], [ -77.002069, 38.828713 ], [ -77.002085, 38.828609 ], [ -77.002096, 38.828555 ], [ -77.002144, 38.828342 ], [ -77.002187, 38.828183 ], [ -77.002219, 38.828078 ], [ -77.002321, 38.827794 ], [ -77.002337, 38.827752 ], [ -77.002353, 38.827711 ], [ -77.002369, 38.827665 ], [ -77.002385, 38.827619 ], [ -77.002401, 38.827531 ], [ -77.002412, 38.827485 ], [ -77.002412, 38.827439 ], [ -77.002417, 38.827393 ], [ -77.002423, 38.827351 ], [ -77.002417, 38.827297 ], [ -77.002412, 38.827247 ], [ -77.002407, 38.827196 ], [ -77.002401, 38.827146 ], [ -77.002391, 38.827096 ], [ -77.002375, 38.827046 ], [ -77.002364, 38.827000 ], [ -77.002342, 38.826950 ], [ -77.002326, 38.826900 ], [ -77.002305, 38.826854 ], [ -77.002133, 38.826515 ], [ -77.002079, 38.826398 ], [ -77.001935, 38.826097 ], [ -77.001795, 38.825822 ], [ -77.001661, 38.825546 ], [ -77.001436, 38.825078 ], [ -77.001425, 38.825044 ], [ -77.001409, 38.825007 ], [ -77.001387, 38.824940 ], [ -77.001377, 38.824890 ], [ -77.001366, 38.824831 ], [ -77.001366, 38.824802 ], [ -77.001361, 38.824739 ], [ -77.001361, 38.824647 ], [ -77.001366, 38.824585 ], [ -77.001377, 38.824522 ], [ -77.001393, 38.824463 ], [ -77.001404, 38.824434 ], [ -77.001430, 38.824371 ], [ -77.001446, 38.824346 ], [ -77.001463, 38.824317 ], [ -77.001484, 38.824292 ], [ -77.001527, 38.824246 ], [ -77.001548, 38.824221 ], [ -77.001570, 38.824200 ], [ -77.001624, 38.824158 ], [ -77.001650, 38.824142 ], [ -77.001683, 38.824125 ], [ -77.001709, 38.824108 ], [ -77.001902, 38.824016 ], [ -77.002117, 38.823924 ], [ -77.002208, 38.823887 ], [ -77.001999, 38.823602 ], [ -77.001978, 38.823569 ], [ -77.001956, 38.823519 ], [ -77.001940, 38.823464 ], [ -77.001929, 38.823427 ], [ -77.001924, 38.823389 ], [ -77.001924, 38.823368 ], [ -77.001919, 38.823331 ], [ -77.001919, 38.823310 ], [ -77.001924, 38.823272 ], [ -77.001945, 38.822737 ], [ -77.001972, 38.822236 ], [ -77.001983, 38.822202 ], [ -77.001988, 38.822181 ], [ -77.002015, 38.822144 ], [ -77.002042, 38.822119 ], [ -77.002122, 38.822031 ], [ -77.002181, 38.821964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009804", "GEOID": "11001009804", "NAME": "98.04", "NAMELSAD": "Census Tract 98.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 518363, "AWATER": 5609, "INTPTLAT": "+38.8420148", "INTPTLON": "-076.9972580" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.000567, 38.833970 ], [ -77.000567, 38.834029 ], [ -77.000567, 38.834856 ], [ -77.000572, 38.834965 ], [ -77.000577, 38.835065 ], [ -77.000583, 38.835128 ], [ -77.000594, 38.835195 ], [ -77.000610, 38.835253 ], [ -77.000626, 38.835312 ], [ -77.000754, 38.835805 ], [ -77.000760, 38.835859 ], [ -77.000765, 38.835914 ], [ -77.000771, 38.835968 ], [ -77.000771, 38.836039 ], [ -77.000771, 38.836118 ], [ -77.000771, 38.836160 ], [ -77.000765, 38.836227 ], [ -77.000754, 38.836290 ], [ -77.000749, 38.836323 ], [ -77.000738, 38.836386 ], [ -77.000717, 38.836473 ], [ -77.000712, 38.836499 ], [ -77.000695, 38.836553 ], [ -77.000663, 38.836653 ], [ -77.000647, 38.836707 ], [ -77.000615, 38.836829 ], [ -77.000599, 38.836896 ], [ -77.000583, 38.836962 ], [ -77.000577, 38.837029 ], [ -77.000572, 38.837096 ], [ -77.000567, 38.837234 ], [ -77.000572, 38.837514 ], [ -77.000567, 38.837882 ], [ -77.000567, 38.838454 ], [ -77.000572, 38.838554 ], [ -77.000572, 38.839520 ], [ -77.000572, 38.839887 ], [ -77.000572, 38.840217 ], [ -77.000572, 38.840305 ], [ -77.000572, 38.840393 ], [ -77.000567, 38.840614 ], [ -77.000572, 38.840978 ], [ -77.000572, 38.840995 ], [ -77.000572, 38.841279 ], [ -77.000567, 38.841634 ], [ -77.000567, 38.841784 ], [ -77.000567, 38.841880 ], [ -77.000728, 38.841876 ], [ -77.000754, 38.841880 ], [ -77.000905, 38.841880 ], [ -77.000991, 38.841876 ], [ -77.001055, 38.841872 ], [ -77.001141, 38.841864 ], [ -77.001173, 38.841855 ], [ -77.001232, 38.841847 ], [ -77.001286, 38.841830 ], [ -77.001318, 38.841822 ], [ -77.001382, 38.841801 ], [ -77.001452, 38.841772 ], [ -77.001484, 38.841755 ], [ -77.001548, 38.841722 ], [ -77.001565, 38.841713 ], [ -77.001607, 38.841688 ], [ -77.001634, 38.841667 ], [ -77.001666, 38.841642 ], [ -77.001715, 38.841605 ], [ -77.001763, 38.841563 ], [ -77.001935, 38.841387 ], [ -77.002181, 38.841145 ], [ -77.002358, 38.840969 ], [ -77.002525, 38.840815 ], [ -77.002664, 38.840677 ], [ -77.002771, 38.840568 ], [ -77.002965, 38.840380 ], [ -77.003061, 38.840284 ], [ -77.003120, 38.840247 ], [ -77.003152, 38.840226 ], [ -77.003185, 38.840209 ], [ -77.003222, 38.840196 ], [ -77.003254, 38.840184 ], [ -77.003292, 38.840171 ], [ -77.003329, 38.840163 ], [ -77.003367, 38.840155 ], [ -77.003404, 38.840151 ], [ -77.003442, 38.840146 ], [ -77.003480, 38.840146 ], [ -77.003549, 38.840151 ], [ -77.003624, 38.840159 ], [ -77.003657, 38.840167 ], [ -77.003694, 38.840176 ], [ -77.003726, 38.840184 ], [ -77.003764, 38.840192 ], [ -77.003919, 38.840268 ], [ -77.004209, 38.840405 ], [ -77.003506, 38.841333 ], [ -77.003034, 38.841951 ], [ -77.002970, 38.842031 ], [ -77.002900, 38.842110 ], [ -77.002884, 38.842131 ], [ -77.002836, 38.842181 ], [ -77.002782, 38.842227 ], [ -77.002664, 38.842319 ], [ -77.002621, 38.842344 ], [ -77.002557, 38.842386 ], [ -77.002455, 38.842440 ], [ -77.002401, 38.842465 ], [ -77.002348, 38.842495 ], [ -77.002251, 38.842532 ], [ -77.002198, 38.842553 ], [ -77.002090, 38.842586 ], [ -77.001983, 38.842616 ], [ -77.001774, 38.842662 ], [ -77.001548, 38.842716 ], [ -77.000781, 38.842896 ], [ -77.000577, 38.842942 ], [ -77.000486, 38.842962 ], [ -77.000288, 38.843008 ], [ -77.000170, 38.843042 ], [ -77.000111, 38.843063 ], [ -77.000057, 38.843084 ], [ -76.999955, 38.843134 ], [ -76.999875, 38.843079 ], [ -76.999848, 38.843071 ], [ -76.999762, 38.843059 ], [ -76.999698, 38.843050 ], [ -76.999494, 38.843059 ], [ -76.998555, 38.843105 ], [ -76.998448, 38.843109 ], [ -76.998228, 38.843117 ], [ -76.997675, 38.843146 ], [ -76.997547, 38.843159 ], [ -76.997450, 38.843167 ], [ -76.997305, 38.843188 ], [ -76.996999, 38.843234 ], [ -76.996640, 38.843293 ], [ -76.995910, 38.843410 ], [ -76.995331, 38.843501 ], [ -76.994698, 38.843606 ], [ -76.994478, 38.843644 ], [ -76.994221, 38.843689 ], [ -76.993974, 38.842298 ], [ -76.993963, 38.842227 ], [ -76.993663, 38.840602 ], [ -76.993641, 38.840501 ], [ -76.993636, 38.840460 ], [ -76.993631, 38.840418 ], [ -76.993620, 38.840330 ], [ -76.993614, 38.840247 ], [ -76.993609, 38.840159 ], [ -76.993604, 38.840071 ], [ -76.993598, 38.839875 ], [ -76.993588, 38.839503 ], [ -76.993572, 38.839098 ], [ -76.993561, 38.838889 ], [ -76.993561, 38.838805 ], [ -76.993545, 38.838462 ], [ -76.993529, 38.838049 ], [ -76.993518, 38.837769 ], [ -76.993507, 38.837568 ], [ -76.993507, 38.837506 ], [ -76.993502, 38.837481 ], [ -76.993781, 38.837481 ], [ -76.994462, 38.837472 ], [ -76.994741, 38.837455 ], [ -76.995170, 38.837351 ], [ -76.995433, 38.837230 ], [ -76.995481, 38.837209 ], [ -76.995530, 38.837201 ], [ -76.995567, 38.837188 ], [ -76.995605, 38.837171 ], [ -76.995685, 38.837146 ], [ -76.995712, 38.837125 ], [ -76.995739, 38.837100 ], [ -76.995766, 38.837079 ], [ -76.995851, 38.837046 ], [ -76.995910, 38.837021 ], [ -76.995937, 38.837004 ], [ -76.995975, 38.836962 ], [ -76.996007, 38.836929 ], [ -76.996034, 38.836887 ], [ -76.996093, 38.836858 ], [ -76.996125, 38.836837 ], [ -76.996168, 38.836799 ], [ -76.996205, 38.836774 ], [ -76.996232, 38.836749 ], [ -76.996254, 38.836724 ], [ -76.996286, 38.836703 ], [ -76.996323, 38.836687 ], [ -76.996361, 38.836670 ], [ -76.996468, 38.836653 ], [ -76.996527, 38.836649 ], [ -76.996586, 38.836641 ], [ -76.996640, 38.836616 ], [ -76.996683, 38.836595 ], [ -76.996726, 38.836570 ], [ -76.996753, 38.836536 ], [ -76.996710, 38.836499 ], [ -76.996678, 38.836465 ], [ -76.996731, 38.836469 ], [ -76.996774, 38.836494 ], [ -76.996817, 38.836469 ], [ -76.996860, 38.836432 ], [ -76.996897, 38.836386 ], [ -76.997176, 38.836181 ], [ -76.997756, 38.835450 ], [ -76.998056, 38.835228 ], [ -76.998834, 38.834794 ], [ -76.999735, 38.834276 ], [ -77.000309, 38.833996 ], [ -77.000567, 38.833970 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009801", "GEOID": "11001009801", "NAME": "98.01", "NAMELSAD": "Census Tract 98.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 431384, "AWATER": 7884, "INTPTLAT": "+38.8328939", "INTPTLON": "-076.9963306" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.832679 ], [ -76.991361, 38.832704 ], [ -76.991554, 38.832562 ], [ -76.991662, 38.832495 ], [ -76.991732, 38.832449 ], [ -76.991839, 38.832387 ], [ -76.991909, 38.832353 ], [ -76.992016, 38.832299 ], [ -76.992123, 38.832253 ], [ -76.992161, 38.832240 ], [ -76.992236, 38.832207 ], [ -76.992348, 38.832165 ], [ -76.992429, 38.832140 ], [ -76.992509, 38.832119 ], [ -76.992670, 38.832078 ], [ -76.992729, 38.832065 ], [ -76.992821, 38.832044 ], [ -76.992987, 38.832019 ], [ -76.993051, 38.832015 ], [ -76.993148, 38.832002 ], [ -76.993271, 38.831994 ], [ -76.993400, 38.831990 ], [ -76.993459, 38.831986 ], [ -76.993850, 38.831986 ], [ -76.994231, 38.831990 ], [ -76.994312, 38.831990 ], [ -76.994521, 38.831990 ], [ -76.994634, 38.831990 ], [ -76.995798, 38.831990 ], [ -76.996892, 38.831990 ], [ -76.998045, 38.831990 ], [ -76.999022, 38.831990 ], [ -76.999092, 38.831986 ], [ -76.999118, 38.831990 ], [ -76.999140, 38.831994 ], [ -76.999172, 38.832006 ], [ -76.999199, 38.832023 ], [ -76.999247, 38.832061 ], [ -76.999403, 38.831961 ], [ -76.999478, 38.831906 ], [ -76.999816, 38.831681 ], [ -77.000191, 38.831438 ], [ -77.000411, 38.831296 ], [ -77.000433, 38.831288 ], [ -77.000465, 38.831279 ], [ -77.000497, 38.831271 ], [ -77.000529, 38.831263 ], [ -77.000567, 38.831263 ], [ -77.000567, 38.830962 ], [ -77.000685, 38.830962 ], [ -77.000856, 38.830958 ], [ -77.001731, 38.830958 ], [ -77.002026, 38.830958 ], [ -77.002605, 38.830958 ], [ -77.003329, 38.830958 ], [ -77.003378, 38.830958 ], [ -77.003533, 38.830966 ], [ -77.003710, 38.830970 ], [ -77.003855, 38.830987 ], [ -77.003528, 38.831384 ], [ -77.003335, 38.831614 ], [ -77.003002, 38.832245 ], [ -77.002745, 38.832809 ], [ -77.002283, 38.833348 ], [ -77.001736, 38.833724 ], [ -77.001243, 38.833945 ], [ -77.001001, 38.833975 ], [ -77.000567, 38.833970 ], [ -77.000309, 38.833996 ], [ -76.999735, 38.834276 ], [ -76.998834, 38.834794 ], [ -76.998056, 38.835228 ], [ -76.997756, 38.835450 ], [ -76.997176, 38.836181 ], [ -76.996897, 38.836386 ], [ -76.996860, 38.836432 ], [ -76.996817, 38.836469 ], [ -76.996774, 38.836494 ], [ -76.996731, 38.836469 ], [ -76.996678, 38.836465 ], [ -76.996710, 38.836499 ], [ -76.996753, 38.836536 ], [ -76.996726, 38.836570 ], [ -76.996683, 38.836595 ], [ -76.996640, 38.836616 ], [ -76.996586, 38.836641 ], [ -76.996527, 38.836649 ], [ -76.996468, 38.836653 ], [ -76.996361, 38.836670 ], [ -76.996323, 38.836687 ], [ -76.996286, 38.836703 ], [ -76.996254, 38.836724 ], [ -76.996232, 38.836749 ], [ -76.996205, 38.836774 ], [ -76.996168, 38.836799 ], [ -76.996125, 38.836837 ], [ -76.996093, 38.836858 ], [ -76.996034, 38.836887 ], [ -76.996007, 38.836929 ], [ -76.995975, 38.836962 ], [ -76.995937, 38.837004 ], [ -76.995910, 38.837021 ], [ -76.995851, 38.837046 ], [ -76.995766, 38.837079 ], [ -76.995739, 38.837100 ], [ -76.995712, 38.837125 ], [ -76.995685, 38.837146 ], [ -76.995605, 38.837171 ], [ -76.995567, 38.837188 ], [ -76.995530, 38.837201 ], [ -76.995481, 38.837209 ], [ -76.995433, 38.837230 ], [ -76.995170, 38.837351 ], [ -76.994741, 38.837455 ], [ -76.994462, 38.837472 ], [ -76.993781, 38.837481 ], [ -76.993502, 38.837481 ], [ -76.993496, 38.837418 ], [ -76.993486, 38.837364 ], [ -76.993475, 38.837297 ], [ -76.993454, 38.837230 ], [ -76.993432, 38.837163 ], [ -76.993394, 38.837063 ], [ -76.993373, 38.837008 ], [ -76.993346, 38.836954 ], [ -76.993303, 38.836875 ], [ -76.993293, 38.836850 ], [ -76.993250, 38.836787 ], [ -76.993196, 38.836707 ], [ -76.992949, 38.836356 ], [ -76.992815, 38.836168 ], [ -76.992713, 38.836018 ], [ -76.992692, 38.835993 ], [ -76.992611, 38.835868 ], [ -76.992418, 38.835588 ], [ -76.992391, 38.835550 ], [ -76.992316, 38.835446 ], [ -76.992257, 38.835379 ], [ -76.992204, 38.835312 ], [ -76.992171, 38.835278 ], [ -76.992139, 38.835245 ], [ -76.992064, 38.835178 ], [ -76.992021, 38.835141 ], [ -76.991962, 38.835095 ], [ -76.991941, 38.835078 ], [ -76.991882, 38.835032 ], [ -76.991764, 38.834952 ], [ -76.991721, 38.834923 ], [ -76.991426, 38.834735 ], [ -76.991329, 38.834671 ], [ -76.991329, 38.832679 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009811", "GEOID": "11001009811", "NAME": "98.11", "NAMELSAD": "Census Tract 98.11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 467511, "AWATER": 0, "INTPTLAT": "+38.8266510", "INTPTLON": "-076.9984594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002181, 38.821964 ], [ -77.002122, 38.822031 ], [ -77.002042, 38.822119 ], [ -77.002015, 38.822144 ], [ -77.001988, 38.822181 ], [ -77.001983, 38.822202 ], [ -77.001972, 38.822236 ], [ -77.001945, 38.822737 ], [ -77.001924, 38.823272 ], [ -77.001919, 38.823310 ], [ -77.001919, 38.823331 ], [ -77.001924, 38.823368 ], [ -77.001924, 38.823389 ], [ -77.001929, 38.823427 ], [ -77.001940, 38.823464 ], [ -77.001956, 38.823519 ], [ -77.001978, 38.823569 ], [ -77.001999, 38.823602 ], [ -77.002208, 38.823887 ], [ -77.002117, 38.823924 ], [ -77.001902, 38.824016 ], [ -77.001709, 38.824108 ], [ -77.001683, 38.824125 ], [ -77.001650, 38.824142 ], [ -77.001624, 38.824158 ], [ -77.001570, 38.824200 ], [ -77.001548, 38.824221 ], [ -77.001527, 38.824246 ], [ -77.001484, 38.824292 ], [ -77.001463, 38.824317 ], [ -77.001446, 38.824346 ], [ -77.001430, 38.824371 ], [ -77.001404, 38.824434 ], [ -77.001393, 38.824463 ], [ -77.001377, 38.824522 ], [ -77.001366, 38.824585 ], [ -77.001361, 38.824647 ], [ -77.001361, 38.824739 ], [ -77.001366, 38.824802 ], [ -77.001366, 38.824831 ], [ -77.001377, 38.824890 ], [ -77.001387, 38.824940 ], [ -77.001409, 38.825007 ], [ -77.001425, 38.825044 ], [ -77.001436, 38.825078 ], [ -77.001661, 38.825546 ], [ -77.001795, 38.825822 ], [ -77.001935, 38.826097 ], [ -77.002079, 38.826398 ], [ -77.002133, 38.826515 ], [ -77.002305, 38.826854 ], [ -77.002326, 38.826900 ], [ -77.002342, 38.826950 ], [ -77.002364, 38.827000 ], [ -77.002375, 38.827046 ], [ -77.002391, 38.827096 ], [ -77.002401, 38.827146 ], [ -77.002407, 38.827196 ], [ -77.002412, 38.827247 ], [ -77.002417, 38.827297 ], [ -77.002423, 38.827351 ], [ -77.002417, 38.827393 ], [ -77.002412, 38.827439 ], [ -77.002412, 38.827485 ], [ -77.002401, 38.827531 ], [ -77.002385, 38.827619 ], [ -77.002369, 38.827665 ], [ -77.002353, 38.827711 ], [ -77.002337, 38.827752 ], [ -77.002321, 38.827794 ], [ -77.002219, 38.828078 ], [ -77.002187, 38.828183 ], [ -77.002144, 38.828342 ], [ -77.002096, 38.828555 ], [ -77.002085, 38.828609 ], [ -77.002069, 38.828713 ], [ -77.002047, 38.828914 ], [ -77.002031, 38.829081 ], [ -77.002020, 38.829228 ], [ -77.002020, 38.829340 ], [ -77.002020, 38.829792 ], [ -77.002020, 38.830093 ], [ -77.002020, 38.830506 ], [ -77.002026, 38.830958 ], [ -77.001731, 38.830958 ], [ -77.000856, 38.830958 ], [ -77.000685, 38.830962 ], [ -77.000567, 38.830962 ], [ -77.000567, 38.830180 ], [ -77.000567, 38.830080 ], [ -77.000567, 38.829775 ], [ -77.000567, 38.829290 ], [ -77.000561, 38.829207 ], [ -76.999424, 38.829202 ], [ -76.998941, 38.829207 ], [ -76.998496, 38.829207 ], [ -76.998324, 38.829202 ], [ -76.996849, 38.829202 ], [ -76.996345, 38.829207 ], [ -76.996205, 38.829207 ], [ -76.995803, 38.829202 ], [ -76.995572, 38.829202 ], [ -76.995111, 38.829207 ], [ -76.994886, 38.829202 ], [ -76.994709, 38.829202 ], [ -76.993652, 38.829202 ], [ -76.993057, 38.829202 ], [ -76.992842, 38.829207 ], [ -76.992493, 38.829202 ], [ -76.991351, 38.829198 ], [ -76.991329, 38.829194 ], [ -76.991329, 38.828978 ], [ -76.991479, 38.828864 ], [ -76.991576, 38.828785 ], [ -76.991635, 38.828739 ], [ -76.991737, 38.828659 ], [ -76.992016, 38.828446 ], [ -76.992257, 38.828258 ], [ -76.992483, 38.828078 ], [ -76.992627, 38.827965 ], [ -76.992649, 38.827949 ], [ -76.992794, 38.827840 ], [ -76.993046, 38.827644 ], [ -76.993089, 38.827610 ], [ -76.993266, 38.827468 ], [ -76.993475, 38.827309 ], [ -76.993684, 38.827142 ], [ -76.993867, 38.827000 ], [ -76.994097, 38.826825 ], [ -76.994333, 38.826636 ], [ -76.994569, 38.826453 ], [ -76.994784, 38.826281 ], [ -76.995020, 38.826102 ], [ -76.995229, 38.825934 ], [ -76.995449, 38.825763 ], [ -76.995669, 38.825596 ], [ -76.995830, 38.825466 ], [ -76.995926, 38.825391 ], [ -76.996082, 38.825266 ], [ -76.996179, 38.825190 ], [ -76.996227, 38.825157 ], [ -76.996533, 38.824915 ], [ -76.996683, 38.824802 ], [ -76.996924, 38.824622 ], [ -76.998035, 38.823799 ], [ -76.998083, 38.823757 ], [ -76.998099, 38.823744 ], [ -76.998158, 38.823699 ], [ -76.998405, 38.823506 ], [ -76.998496, 38.823435 ], [ -76.998571, 38.823377 ], [ -76.998593, 38.823360 ], [ -76.998936, 38.823092 ], [ -76.999161, 38.822917 ], [ -76.999274, 38.822829 ], [ -77.000068, 38.822206 ], [ -77.000138, 38.822152 ], [ -77.000239, 38.822060 ], [ -77.000415, 38.821922 ], [ -77.002125, 38.821922 ], [ -77.002181, 38.821964 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009802", "GEOID": "11001009802", "NAME": "98.02", "NAMELSAD": "Census Tract 98.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 200745, "AWATER": 0, "INTPTLAT": "+38.8307312", "INTPTLON": "-076.9965578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.832019 ], [ -76.991656, 38.831764 ], [ -76.992745, 38.830907 ], [ -76.992863, 38.830815 ], [ -76.993201, 38.830552 ], [ -76.993416, 38.830385 ], [ -76.993695, 38.830168 ], [ -76.993754, 38.830122 ], [ -76.993867, 38.830034 ], [ -76.993968, 38.829955 ], [ -76.994301, 38.829691 ], [ -76.994757, 38.829340 ], [ -76.994805, 38.829294 ], [ -76.994827, 38.829269 ], [ -76.994854, 38.829244 ], [ -76.994886, 38.829202 ], [ -76.995111, 38.829207 ], [ -76.995572, 38.829202 ], [ -76.995803, 38.829202 ], [ -76.996205, 38.829207 ], [ -76.996345, 38.829207 ], [ -76.996849, 38.829202 ], [ -76.998324, 38.829202 ], [ -76.998496, 38.829207 ], [ -76.998941, 38.829207 ], [ -76.999424, 38.829202 ], [ -77.000561, 38.829207 ], [ -77.000567, 38.829290 ], [ -77.000567, 38.829775 ], [ -77.000567, 38.830080 ], [ -77.000567, 38.830180 ], [ -77.000567, 38.830962 ], [ -77.000567, 38.831263 ], [ -77.000529, 38.831263 ], [ -77.000497, 38.831271 ], [ -77.000465, 38.831279 ], [ -77.000433, 38.831288 ], [ -77.000411, 38.831296 ], [ -77.000191, 38.831438 ], [ -76.999816, 38.831681 ], [ -76.999478, 38.831906 ], [ -76.999403, 38.831961 ], [ -76.999247, 38.832061 ], [ -76.999199, 38.832023 ], [ -76.999172, 38.832006 ], [ -76.999140, 38.831994 ], [ -76.999118, 38.831990 ], [ -76.999092, 38.831986 ], [ -76.999022, 38.831990 ], [ -76.998045, 38.831990 ], [ -76.996892, 38.831990 ], [ -76.995798, 38.831990 ], [ -76.994634, 38.831990 ], [ -76.994521, 38.831990 ], [ -76.994312, 38.831990 ], [ -76.994231, 38.831990 ], [ -76.993850, 38.831986 ], [ -76.993459, 38.831986 ], [ -76.993400, 38.831990 ], [ -76.993271, 38.831994 ], [ -76.993148, 38.832002 ], [ -76.993051, 38.832015 ], [ -76.992987, 38.832019 ], [ -76.992821, 38.832044 ], [ -76.992729, 38.832065 ], [ -76.992670, 38.832078 ], [ -76.992509, 38.832119 ], [ -76.992429, 38.832140 ], [ -76.992348, 38.832165 ], [ -76.992236, 38.832207 ], [ -76.992161, 38.832240 ], [ -76.992123, 38.832253 ], [ -76.992016, 38.832299 ], [ -76.991909, 38.832353 ], [ -76.991839, 38.832387 ], [ -76.991732, 38.832449 ], [ -76.991662, 38.832495 ], [ -76.991554, 38.832562 ], [ -76.991361, 38.832704 ], [ -76.991329, 38.832679 ], [ -76.991329, 38.832019 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007406", "GEOID": "11001007406", "NAME": "74.06", "NAMELSAD": "Census Tract 74.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 360152, "AWATER": 0, "INTPTLAT": "+38.8555543", "INTPTLON": "-076.9895582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.853481 ], [ -76.991415, 38.853507 ], [ -76.991828, 38.853679 ], [ -76.991984, 38.853754 ], [ -76.992069, 38.853812 ], [ -76.992348, 38.853988 ], [ -76.992606, 38.854167 ], [ -76.992847, 38.854397 ], [ -76.993094, 38.854656 ], [ -76.993260, 38.854899 ], [ -76.993432, 38.855208 ], [ -76.993545, 38.855471 ], [ -76.993625, 38.855738 ], [ -76.993657, 38.855914 ], [ -76.993647, 38.856707 ], [ -76.993641, 38.857188 ], [ -76.993632, 38.857489 ], [ -76.991329, 38.857489 ], [ -76.991329, 38.853481 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007404", "GEOID": "11001007404", "NAME": "74.04", "NAMELSAD": "Census Tract 74.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 826388, "AWATER": 0, "INTPTLAT": "+38.8503364", "INTPTLON": "-076.9820932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.852883 ], [ -76.992284, 38.853453 ], [ -76.992273, 38.853466 ], [ -76.992252, 38.853482 ], [ -76.992145, 38.853595 ], [ -76.991984, 38.853754 ], [ -76.991828, 38.853679 ], [ -76.991415, 38.853507 ], [ -76.991329, 38.853481 ], [ -76.991329, 38.852883 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007304", "GEOID": "11001007304", "NAME": "73.04", "NAMELSAD": "Census Tract 73.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1232841, "AWATER": 8983, "INTPTLAT": "+38.8417979", "INTPTLON": "-076.9855591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.838132 ], [ -76.991533, 38.838095 ], [ -76.992005, 38.837982 ], [ -76.992483, 38.837798 ], [ -76.992799, 38.837610 ], [ -76.993502, 38.837481 ], [ -76.993507, 38.837506 ], [ -76.993507, 38.837568 ], [ -76.993518, 38.837769 ], [ -76.993529, 38.838049 ], [ -76.993545, 38.838462 ], [ -76.993561, 38.838805 ], [ -76.993561, 38.838889 ], [ -76.993572, 38.839098 ], [ -76.993588, 38.839503 ], [ -76.993598, 38.839875 ], [ -76.993604, 38.840071 ], [ -76.993609, 38.840159 ], [ -76.993614, 38.840247 ], [ -76.993620, 38.840330 ], [ -76.993631, 38.840418 ], [ -76.993636, 38.840460 ], [ -76.993641, 38.840501 ], [ -76.993663, 38.840602 ], [ -76.993963, 38.842227 ], [ -76.993974, 38.842298 ], [ -76.994221, 38.843689 ], [ -76.993502, 38.843811 ], [ -76.993373, 38.843832 ], [ -76.993293, 38.843848 ], [ -76.993014, 38.843894 ], [ -76.992424, 38.843994 ], [ -76.992171, 38.844040 ], [ -76.991656, 38.844128 ], [ -76.991329, 38.844186 ], [ -76.991329, 38.838132 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009700", "GEOID": "11001009700", "NAME": "97", "NAMELSAD": "Census Tract 97", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 403051, "AWATER": 3427, "INTPTLAT": "+38.8354183", "INTPTLON": "-076.9870248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.829194 ], [ -76.991351, 38.829198 ], [ -76.992493, 38.829202 ], [ -76.992842, 38.829207 ], [ -76.993057, 38.829202 ], [ -76.993652, 38.829202 ], [ -76.994709, 38.829202 ], [ -76.994886, 38.829202 ], [ -76.994854, 38.829244 ], [ -76.994827, 38.829269 ], [ -76.994805, 38.829294 ], [ -76.994757, 38.829340 ], [ -76.994301, 38.829691 ], [ -76.993968, 38.829955 ], [ -76.993867, 38.830034 ], [ -76.993754, 38.830122 ], [ -76.993695, 38.830168 ], [ -76.993416, 38.830385 ], [ -76.993201, 38.830552 ], [ -76.992863, 38.830815 ], [ -76.992745, 38.830907 ], [ -76.991656, 38.831764 ], [ -76.991329, 38.832019 ], [ -76.991329, 38.834671 ], [ -76.991426, 38.834735 ], [ -76.991721, 38.834923 ], [ -76.991764, 38.834952 ], [ -76.991882, 38.835032 ], [ -76.991941, 38.835078 ], [ -76.991962, 38.835095 ], [ -76.992021, 38.835141 ], [ -76.992064, 38.835178 ], [ -76.992139, 38.835245 ], [ -76.992171, 38.835278 ], [ -76.992204, 38.835312 ], [ -76.992257, 38.835379 ], [ -76.992316, 38.835446 ], [ -76.992391, 38.835550 ], [ -76.992418, 38.835588 ], [ -76.992611, 38.835868 ], [ -76.992692, 38.835993 ], [ -76.992713, 38.836018 ], [ -76.992815, 38.836168 ], [ -76.992949, 38.836356 ], [ -76.993196, 38.836707 ], [ -76.993250, 38.836787 ], [ -76.993293, 38.836850 ], [ -76.993303, 38.836875 ], [ -76.993346, 38.836954 ], [ -76.993373, 38.837008 ], [ -76.993394, 38.837063 ], [ -76.993432, 38.837163 ], [ -76.993454, 38.837230 ], [ -76.993475, 38.837297 ], [ -76.993486, 38.837364 ], [ -76.993496, 38.837418 ], [ -76.993502, 38.837481 ], [ -76.992799, 38.837610 ], [ -76.992483, 38.837798 ], [ -76.992005, 38.837982 ], [ -76.991533, 38.838095 ], [ -76.991329, 38.838132 ], [ -76.991329, 38.829194 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010900", "GEOID": "11001010900", "NAME": "109", "NAMELSAD": "Census Tract 109", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2381079, "AWATER": 2933589, "INTPTLAT": "+38.8132364", "INTPTLON": "-077.0238475" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.017424, 38.821922 ], [ -77.017411, 38.821964 ], [ -77.017390, 38.822102 ], [ -77.017384, 38.822152 ], [ -77.017373, 38.822232 ], [ -77.017373, 38.822294 ], [ -77.017373, 38.822369 ], [ -77.017373, 38.822403 ], [ -77.017373, 38.822486 ], [ -77.017373, 38.823235 ], [ -77.017368, 38.823352 ], [ -77.017368, 38.823573 ], [ -77.017368, 38.823594 ], [ -77.017089, 38.823744 ], [ -77.016826, 38.823849 ], [ -77.016526, 38.823765 ], [ -77.015823, 38.823711 ], [ -77.012696, 38.823034 ], [ -77.012092, 38.821922 ], [ -77.012038, 38.821922 ], [ -77.011939, 38.822089 ], [ -77.011805, 38.822319 ], [ -77.011687, 38.822528 ], [ -77.011628, 38.822662 ], [ -77.011553, 38.822821 ], [ -77.011569, 38.822858 ], [ -77.011725, 38.823222 ], [ -77.011880, 38.823581 ], [ -77.011853, 38.823590 ], [ -77.011794, 38.823598 ], [ -77.011741, 38.823598 ], [ -77.010963, 38.823602 ], [ -77.010882, 38.823598 ], [ -77.010673, 38.823598 ], [ -77.010330, 38.823602 ], [ -77.009649, 38.823598 ], [ -77.009568, 38.823598 ], [ -77.009525, 38.823598 ], [ -77.008967, 38.823602 ], [ -77.008613, 38.823598 ], [ -77.008474, 38.823598 ], [ -77.008399, 38.823602 ], [ -77.008222, 38.823615 ], [ -77.008120, 38.823623 ], [ -77.008082, 38.823632 ], [ -77.008018, 38.823640 ], [ -77.007954, 38.823653 ], [ -77.007884, 38.823665 ], [ -77.007819, 38.823682 ], [ -77.007723, 38.823711 ], [ -77.007632, 38.823744 ], [ -77.007557, 38.823774 ], [ -77.007358, 38.823849 ], [ -77.007304, 38.823866 ], [ -77.007143, 38.823928 ], [ -77.007111, 38.823937 ], [ -77.007079, 38.823949 ], [ -77.007009, 38.823966 ], [ -77.006945, 38.823979 ], [ -77.006875, 38.823991 ], [ -77.006741, 38.824008 ], [ -77.006677, 38.824012 ], [ -77.006612, 38.824012 ], [ -77.006548, 38.824012 ], [ -77.006516, 38.824008 ], [ -77.006489, 38.824008 ], [ -77.006392, 38.824012 ], [ -77.006366, 38.824016 ], [ -77.006344, 38.824016 ], [ -77.006269, 38.824024 ], [ -77.006210, 38.824033 ], [ -77.006103, 38.824058 ], [ -77.006022, 38.824083 ], [ -77.006001, 38.824091 ], [ -77.005904, 38.823991 ], [ -77.005845, 38.823933 ], [ -77.005781, 38.823874 ], [ -77.005711, 38.823816 ], [ -77.005625, 38.823749 ], [ -77.005523, 38.823665 ], [ -77.005475, 38.823632 ], [ -77.005427, 38.823594 ], [ -77.005234, 38.823464 ], [ -77.005143, 38.823410 ], [ -77.005051, 38.823360 ], [ -77.004864, 38.823264 ], [ -77.004767, 38.823214 ], [ -77.004665, 38.823168 ], [ -77.004542, 38.823113 ], [ -77.004472, 38.823084 ], [ -77.003174, 38.822512 ], [ -77.002879, 38.822382 ], [ -77.002788, 38.822336 ], [ -77.002696, 38.822290 ], [ -77.002605, 38.822244 ], [ -77.002557, 38.822219 ], [ -77.002471, 38.822165 ], [ -77.002428, 38.822140 ], [ -77.002181, 38.821964 ], [ -77.002125, 38.821922 ], [ -77.017424, 38.821922 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2343, "y": 3134 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008200", "GEOID": "11001008200", "NAME": "82", "NAMELSAD": "Census Tract 82", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 338424, "AWATER": 0, "INTPTLAT": "+38.8918309", "INTPTLON": "-077.0006040" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994957, 38.891701 ], [ -76.994961, 38.891622 ], [ -76.994956, 38.891421 ], [ -76.994961, 38.891154 ], [ -76.994966, 38.891016 ], [ -76.994966, 38.890991 ], [ -76.994966, 38.890937 ], [ -76.994966, 38.890874 ], [ -76.994961, 38.890273 ], [ -76.994961, 38.889805 ], [ -76.995084, 38.889805 ], [ -76.995572, 38.889805 ], [ -76.995696, 38.889805 ], [ -76.996168, 38.889805 ], [ -76.996350, 38.889805 ], [ -76.997273, 38.889805 ], [ -76.997691, 38.889809 ], [ -76.998442, 38.889809 ], [ -76.998550, 38.889809 ], [ -76.999183, 38.889809 ], [ -76.999515, 38.889809 ], [ -77.000202, 38.889805 ], [ -77.000438, 38.889805 ], [ -77.000577, 38.889809 ], [ -77.000674, 38.889809 ], [ -77.002037, 38.889809 ], [ -77.002578, 38.889809 ], [ -77.003109, 38.889805 ], [ -77.003286, 38.889805 ], [ -77.003512, 38.889809 ], [ -77.003512, 38.889910 ], [ -77.003512, 38.890937 ], [ -77.003512, 38.891024 ], [ -77.003512, 38.891359 ], [ -77.003512, 38.891701 ], [ -77.004479, 38.891701 ], [ -77.004499, 38.891672 ], [ -77.004681, 38.891513 ], [ -77.004890, 38.891396 ], [ -77.005266, 38.891246 ], [ -77.005523, 38.891133 ], [ -77.005920, 38.890970 ], [ -77.005920, 38.891242 ], [ -77.005920, 38.891404 ], [ -77.005920, 38.891701 ], [ -76.994957, 38.891701 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008100", "GEOID": "11001008100", "NAME": "81", "NAMELSAD": "Census Tract 81", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 290284, "AWATER": 0, "INTPTLAT": "+38.8931710", "INTPTLON": "-076.9925272" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994961, 38.889805 ], [ -76.994961, 38.890273 ], [ -76.994966, 38.890874 ], [ -76.994966, 38.890937 ], [ -76.994966, 38.890991 ], [ -76.994966, 38.891016 ], [ -76.994961, 38.891154 ], [ -76.994956, 38.891421 ], [ -76.994961, 38.891622 ], [ -76.994957, 38.891701 ], [ -76.991329, 38.891701 ], [ -76.991329, 38.890370 ], [ -76.991431, 38.890369 ], [ -76.991528, 38.890365 ], [ -76.991528, 38.890123 ], [ -76.991528, 38.889805 ], [ -76.991801, 38.889801 ], [ -76.992638, 38.889801 ], [ -76.993083, 38.889805 ], [ -76.993754, 38.889805 ], [ -76.994290, 38.889805 ], [ -76.994961, 38.889805 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "980000", "GEOID": "11001980000", "NAME": "9800", "NAMELSAD": "Census Tract 9800", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 6514228, "AWATER": 4996393, "INTPTLAT": "+38.8809933", "INTPTLON": "-077.0363219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.033460, 38.856152 ], [ -77.033467, 38.856164 ], [ -77.033483, 38.856189 ], [ -77.033494, 38.856210 ], [ -77.033510, 38.856231 ], [ -77.033520, 38.856252 ], [ -77.033531, 38.856277 ], [ -77.033542, 38.856298 ], [ -77.033553, 38.856319 ], [ -77.033563, 38.856340 ], [ -77.033569, 38.856365 ], [ -77.033579, 38.856386 ], [ -77.033590, 38.856407 ], [ -77.033601, 38.856423 ], [ -77.033612, 38.856448 ], [ -77.033622, 38.856469 ], [ -77.033638, 38.856490 ], [ -77.033654, 38.856507 ], [ -77.033665, 38.856532 ], [ -77.033681, 38.856553 ], [ -77.033692, 38.856574 ], [ -77.033703, 38.856590 ], [ -77.033719, 38.856611 ], [ -77.033730, 38.856636 ], [ -77.033740, 38.856657 ], [ -77.033751, 38.856674 ], [ -77.033762, 38.856699 ], [ -77.033778, 38.856720 ], [ -77.033789, 38.856741 ], [ -77.033799, 38.856762 ], [ -77.033810, 38.856787 ], [ -77.033821, 38.856812 ], [ -77.033826, 38.856828 ], [ -77.033837, 38.856849 ], [ -77.033848, 38.856870 ], [ -77.033858, 38.856891 ], [ -77.033869, 38.856912 ], [ -77.033880, 38.856929 ], [ -77.033896, 38.856950 ], [ -77.033907, 38.856971 ], [ -77.033917, 38.856991 ], [ -77.033928, 38.857012 ], [ -77.033939, 38.857033 ], [ -77.033949, 38.857058 ], [ -77.033966, 38.857079 ], [ -77.033976, 38.857100 ], [ -77.033987, 38.857121 ], [ -77.034003, 38.857142 ], [ -77.034014, 38.857163 ], [ -77.034019, 38.857184 ], [ -77.034030, 38.857200 ], [ -77.034035, 38.857221 ], [ -77.034046, 38.857246 ], [ -77.034057, 38.857267 ], [ -77.034068, 38.857288 ], [ -77.034078, 38.857309 ], [ -77.034084, 38.857334 ], [ -77.034089, 38.857355 ], [ -77.034094, 38.857372 ], [ -77.034100, 38.857397 ], [ -77.034105, 38.857422 ], [ -77.034116, 38.857438 ], [ -77.034121, 38.857455 ], [ -77.034121, 38.857480 ], [ -77.034127, 38.857501 ], [ -77.034132, 38.857526 ], [ -77.034137, 38.857543 ], [ -77.034143, 38.857564 ], [ -77.034143, 38.857585 ], [ -77.034148, 38.857601 ], [ -77.034153, 38.857622 ], [ -77.034153, 38.857651 ], [ -77.034169, 38.857681 ], [ -77.034196, 38.857706 ], [ -77.034212, 38.857735 ], [ -77.034223, 38.857756 ], [ -77.034239, 38.857768 ], [ -77.034261, 38.857802 ], [ -77.034277, 38.857814 ], [ -77.034293, 38.857831 ], [ -77.034309, 38.857848 ], [ -77.034325, 38.857864 ], [ -77.034352, 38.857890 ], [ -77.034368, 38.857902 ], [ -77.034384, 38.857919 ], [ -77.034400, 38.857935 ], [ -77.034416, 38.857952 ], [ -77.034427, 38.857965 ], [ -77.034438, 38.857981 ], [ -77.034448, 38.857998 ], [ -77.034459, 38.858019 ], [ -77.034475, 38.858048 ], [ -77.034486, 38.858065 ], [ -77.034497, 38.858082 ], [ -77.034513, 38.858103 ], [ -77.034523, 38.858123 ], [ -77.034540, 38.858153 ], [ -77.034550, 38.858169 ], [ -77.034566, 38.858190 ], [ -77.034582, 38.858220 ], [ -77.034593, 38.858257 ], [ -77.034604, 38.858278 ], [ -77.034609, 38.858295 ], [ -77.034631, 38.858328 ], [ -77.034642, 38.858345 ], [ -77.034647, 38.858366 ], [ -77.034658, 38.858382 ], [ -77.034674, 38.858416 ], [ -77.034684, 38.858433 ], [ -77.034695, 38.858453 ], [ -77.034706, 38.858470 ], [ -77.034722, 38.858504 ], [ -77.034733, 38.858524 ], [ -77.034743, 38.858541 ], [ -77.034749, 38.858562 ], [ -77.034770, 38.858591 ], [ -77.034776, 38.858612 ], [ -77.034786, 38.858633 ], [ -77.034792, 38.858650 ], [ -77.034813, 38.858683 ], [ -77.034824, 38.858704 ], [ -77.034829, 38.858721 ], [ -77.034845, 38.858754 ], [ -77.034856, 38.858771 ], [ -77.034861, 38.858792 ], [ -77.034872, 38.858809 ], [ -77.034888, 38.858838 ], [ -77.034899, 38.858854 ], [ -77.034904, 38.858875 ], [ -77.034915, 38.858896 ], [ -77.034931, 38.858925 ], [ -77.034947, 38.858963 ], [ -77.034953, 38.858980 ], [ -77.034974, 38.859009 ], [ -77.034979, 38.859026 ], [ -77.034990, 38.859042 ], [ -77.034996, 38.859063 ], [ -77.035006, 38.859093 ], [ -77.035012, 38.859113 ], [ -77.035022, 38.859130 ], [ -77.035028, 38.859151 ], [ -77.035038, 38.859176 ], [ -77.035044, 38.859214 ], [ -77.035044, 38.859235 ], [ -77.035049, 38.859268 ], [ -77.035049, 38.859297 ], [ -77.035055, 38.859318 ], [ -77.035060, 38.859347 ], [ -77.035081, 38.859377 ], [ -77.035097, 38.859389 ], [ -77.035114, 38.859410 ], [ -77.035124, 38.859423 ], [ -77.035151, 38.859452 ], [ -77.035162, 38.859469 ], [ -77.035178, 38.859485 ], [ -77.035199, 38.859510 ], [ -77.035221, 38.859544 ], [ -77.035232, 38.859560 ], [ -77.035248, 38.859577 ], [ -77.035269, 38.859602 ], [ -77.035291, 38.859636 ], [ -77.035307, 38.859652 ], [ -77.035317, 38.859669 ], [ -77.035328, 38.859686 ], [ -77.035355, 38.859715 ], [ -77.035371, 38.859732 ], [ -77.035382, 38.859748 ], [ -77.035409, 38.859773 ], [ -77.035435, 38.859794 ], [ -77.035473, 38.859815 ], [ -77.035511, 38.859836 ], [ -77.035543, 38.859853 ], [ -77.035580, 38.859874 ], [ -77.035612, 38.859895 ], [ -77.035639, 38.859915 ], [ -77.035671, 38.859936 ], [ -77.035688, 38.859953 ], [ -77.035709, 38.859966 ], [ -77.035725, 38.859978 ], [ -77.035741, 38.859995 ], [ -77.035757, 38.860007 ], [ -77.035789, 38.860032 ], [ -77.035806, 38.860045 ], [ -77.035832, 38.860074 ], [ -77.035865, 38.860099 ], [ -77.035891, 38.860129 ], [ -77.035908, 38.860141 ], [ -77.035924, 38.860158 ], [ -77.035940, 38.860174 ], [ -77.035961, 38.860195 ], [ -77.035983, 38.860216 ], [ -77.036009, 38.860237 ], [ -77.036031, 38.860262 ], [ -77.036058, 38.860287 ], [ -77.036085, 38.860308 ], [ -77.036111, 38.860329 ], [ -77.036144, 38.860354 ], [ -77.036170, 38.860379 ], [ -77.036203, 38.860396 ], [ -77.036229, 38.860421 ], [ -77.036256, 38.860442 ], [ -77.036288, 38.860467 ], [ -77.036315, 38.860488 ], [ -77.036337, 38.860500 ], [ -77.036363, 38.860525 ], [ -77.036396, 38.860546 ], [ -77.036428, 38.860571 ], [ -77.036460, 38.860592 ], [ -77.036492, 38.860613 ], [ -77.036524, 38.860638 ], [ -77.036551, 38.860659 ], [ -77.036583, 38.860684 ], [ -77.036616, 38.860705 ], [ -77.036642, 38.860726 ], [ -77.036659, 38.860743 ], [ -77.036685, 38.860768 ], [ -77.036718, 38.860793 ], [ -77.036744, 38.860818 ], [ -77.036771, 38.860847 ], [ -77.036793, 38.860876 ], [ -77.036814, 38.860905 ], [ -77.036825, 38.860935 ], [ -77.036836, 38.860960 ], [ -77.036841, 38.860985 ], [ -77.036841, 38.861010 ], [ -77.036825, 38.861027 ], [ -77.036803, 38.861039 ], [ -77.036782, 38.861052 ], [ -77.036777, 38.861073 ], [ -77.036782, 38.861098 ], [ -77.036803, 38.861110 ], [ -77.036830, 38.861123 ], [ -77.036862, 38.861135 ], [ -77.036895, 38.861144 ], [ -77.036932, 38.861148 ], [ -77.036970, 38.861156 ], [ -77.036991, 38.861156 ], [ -77.036991, 38.891701 ], [ -77.005920, 38.891701 ], [ -77.005920, 38.891404 ], [ -77.005920, 38.891242 ], [ -77.005920, 38.890970 ], [ -77.005523, 38.891133 ], [ -77.005266, 38.891246 ], [ -77.004890, 38.891396 ], [ -77.004681, 38.891513 ], [ -77.004499, 38.891672 ], [ -77.004479, 38.891701 ], [ -77.003512, 38.891701 ], [ -77.003512, 38.891359 ], [ -77.003512, 38.891024 ], [ -77.003512, 38.890937 ], [ -77.003512, 38.889910 ], [ -77.003512, 38.889809 ], [ -77.003512, 38.889705 ], [ -77.003517, 38.889150 ], [ -77.002031, 38.889166 ], [ -77.002031, 38.888678 ], [ -77.002031, 38.888594 ], [ -77.002037, 38.887684 ], [ -77.002037, 38.887596 ], [ -77.002299, 38.887596 ], [ -77.002476, 38.887596 ], [ -77.002959, 38.887596 ], [ -77.003270, 38.887609 ], [ -77.003517, 38.887613 ], [ -77.003517, 38.887551 ], [ -77.003512, 38.886039 ], [ -77.003646, 38.886039 ], [ -77.004225, 38.886039 ], [ -77.004531, 38.886039 ], [ -77.004601, 38.886039 ], [ -77.004939, 38.886039 ], [ -77.005084, 38.886039 ], [ -77.005652, 38.886039 ], [ -77.005717, 38.886039 ], [ -77.005888, 38.886039 ], [ -77.005888, 38.885066 ], [ -77.006017, 38.885066 ], [ -77.007251, 38.885066 ], [ -77.007481, 38.885070 ], [ -77.008935, 38.885066 ], [ -77.009059, 38.885066 ], [ -77.009059, 38.884214 ], [ -77.009059, 38.884114 ], [ -77.009059, 38.884051 ], [ -77.009059, 38.883980 ], [ -77.009064, 38.883855 ], [ -77.009252, 38.883993 ], [ -77.009429, 38.884122 ], [ -77.010351, 38.884811 ], [ -77.010534, 38.884945 ], [ -77.010571, 38.884970 ], [ -77.010786, 38.885079 ], [ -77.011204, 38.885421 ], [ -77.011843, 38.885813 ], [ -77.012138, 38.886031 ], [ -77.012277, 38.886135 ], [ -77.012739, 38.886477 ], [ -77.012991, 38.886674 ], [ -77.013366, 38.886999 ], [ -77.013516, 38.887137 ], [ -77.013554, 38.887175 ], [ -77.013731, 38.887409 ], [ -77.013806, 38.887563 ], [ -77.013919, 38.887563 ], [ -77.014058, 38.887563 ], [ -77.014756, 38.887563 ], [ -77.015174, 38.887567 ], [ -77.015367, 38.887563 ], [ -77.015989, 38.887563 ], [ -77.016274, 38.887563 ], [ -77.016386, 38.887563 ], [ -77.016590, 38.887563 ], [ -77.017207, 38.887563 ], [ -77.017282, 38.887567 ], [ -77.017545, 38.887571 ], [ -77.017819, 38.887567 ], [ -77.018747, 38.887567 ], [ -77.019594, 38.887567 ], [ -77.019905, 38.887567 ], [ -77.021681, 38.887567 ], [ -77.021912, 38.887563 ], [ -77.022228, 38.887567 ], [ -77.022931, 38.887567 ], [ -77.023226, 38.887567 ], [ -77.023532, 38.887567 ], [ -77.023875, 38.887563 ], [ -77.024015, 38.887567 ], [ -77.024165, 38.887567 ], [ -77.024310, 38.887567 ], [ -77.024379, 38.887567 ], [ -77.025806, 38.887567 ], [ -77.025989, 38.887567 ], [ -77.026112, 38.887567 ], [ -77.027952, 38.887567 ], [ -77.028070, 38.887563 ], [ -77.028177, 38.887567 ], [ -77.028805, 38.887567 ], [ -77.030715, 38.887567 ], [ -77.031171, 38.887567 ], [ -77.031664, 38.887567 ], [ -77.031981, 38.887584 ], [ -77.031949, 38.887287 ], [ -77.031949, 38.885955 ], [ -77.031949, 38.884978 ], [ -77.031986, 38.884373 ], [ -77.032077, 38.883797 ], [ -77.032152, 38.883559 ], [ -77.032185, 38.883454 ], [ -77.032206, 38.883421 ], [ -77.032592, 38.882786 ], [ -77.032619, 38.882740 ], [ -77.032700, 38.882611 ], [ -77.032624, 38.882561 ], [ -77.032544, 38.882510 ], [ -77.032480, 38.882473 ], [ -77.032356, 38.882402 ], [ -77.030329, 38.881036 ], [ -77.030216, 38.880924 ], [ -77.029958, 38.880794 ], [ -77.026874, 38.878606 ], [ -77.024905, 38.877211 ], [ -77.023773, 38.876409 ], [ -77.023188, 38.875407 ], [ -77.022572, 38.874363 ], [ -77.021289, 38.872170 ], [ -77.021048, 38.871561 ], [ -77.020313, 38.870015 ], [ -77.020168, 38.868959 ], [ -77.020147, 38.859602 ], [ -77.020152, 38.858909 ], [ -77.020158, 38.857330 ], [ -77.022237, 38.856152 ], [ -77.033460, 38.856152 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010202", "GEOID": "11001010202", "NAME": "102.02", "NAMELSAD": "Census Tract 102.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1069487, "AWATER": 136359, "INTPTLAT": "+38.8843563", "INTPTLON": "-077.0245770" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.017545, 38.879287 ], [ -77.018221, 38.879287 ], [ -77.018881, 38.879287 ], [ -77.019036, 38.879287 ], [ -77.019889, 38.879287 ], [ -77.020179, 38.879282 ], [ -77.020742, 38.879282 ], [ -77.021391, 38.879282 ], [ -77.021767, 38.879291 ], [ -77.021917, 38.879295 ], [ -77.021981, 38.879199 ], [ -77.022003, 38.879174 ], [ -77.022062, 38.879115 ], [ -77.022727, 38.878635 ], [ -77.021788, 38.877892 ], [ -77.021740, 38.877858 ], [ -77.021681, 38.877808 ], [ -77.021407, 38.877574 ], [ -77.021145, 38.877307 ], [ -77.021289, 38.877182 ], [ -77.021483, 38.877032 ], [ -77.021874, 38.876501 ], [ -77.023773, 38.876409 ], [ -77.024905, 38.877211 ], [ -77.026874, 38.878606 ], [ -77.029958, 38.880794 ], [ -77.030216, 38.880924 ], [ -77.030329, 38.881036 ], [ -77.032356, 38.882402 ], [ -77.032480, 38.882473 ], [ -77.032544, 38.882510 ], [ -77.032624, 38.882561 ], [ -77.032700, 38.882611 ], [ -77.032619, 38.882740 ], [ -77.032592, 38.882786 ], [ -77.032206, 38.883421 ], [ -77.032185, 38.883454 ], [ -77.032152, 38.883559 ], [ -77.032077, 38.883797 ], [ -77.031986, 38.884373 ], [ -77.031949, 38.884978 ], [ -77.031949, 38.885955 ], [ -77.031949, 38.887287 ], [ -77.031981, 38.887584 ], [ -77.031664, 38.887567 ], [ -77.031171, 38.887567 ], [ -77.030715, 38.887567 ], [ -77.028805, 38.887567 ], [ -77.028177, 38.887567 ], [ -77.028070, 38.887563 ], [ -77.027952, 38.887567 ], [ -77.026112, 38.887567 ], [ -77.025989, 38.887567 ], [ -77.025806, 38.887567 ], [ -77.024379, 38.887567 ], [ -77.024310, 38.887567 ], [ -77.024165, 38.887567 ], [ -77.024015, 38.887567 ], [ -77.023875, 38.887563 ], [ -77.023532, 38.887567 ], [ -77.023226, 38.887567 ], [ -77.022931, 38.887567 ], [ -77.022228, 38.887567 ], [ -77.021912, 38.887563 ], [ -77.021681, 38.887567 ], [ -77.019905, 38.887567 ], [ -77.019594, 38.887567 ], [ -77.018747, 38.887567 ], [ -77.017819, 38.887567 ], [ -77.017545, 38.887571 ], [ -77.017550, 38.887317 ], [ -77.017550, 38.886360 ], [ -77.017550, 38.886039 ], [ -77.017550, 38.885734 ], [ -77.017550, 38.885154 ], [ -77.017550, 38.885070 ], [ -77.017556, 38.884682 ], [ -77.017556, 38.884607 ], [ -77.017550, 38.884385 ], [ -77.017550, 38.883926 ], [ -77.017550, 38.883759 ], [ -77.017556, 38.883241 ], [ -77.017556, 38.883141 ], [ -77.017556, 38.882648 ], [ -77.017556, 38.882527 ], [ -77.017556, 38.882348 ], [ -77.017556, 38.882297 ], [ -77.017561, 38.882101 ], [ -77.017556, 38.881508 ], [ -77.017556, 38.881387 ], [ -77.017556, 38.881283 ], [ -77.017550, 38.880840 ], [ -77.017550, 38.880443 ], [ -77.017550, 38.880331 ], [ -77.017550, 38.879900 ], [ -77.017545, 38.879408 ], [ -77.017545, 38.879287 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010201", "GEOID": "11001010201", "NAME": "102.01", "NAMELSAD": "Census Tract 102.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 174883, "AWATER": 0, "INTPTLAT": "+38.8779576", "INTPTLON": "-077.0184625" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.015206, 38.876459 ], [ -77.015373, 38.876459 ], [ -77.016199, 38.876459 ], [ -77.016740, 38.876459 ], [ -77.017561, 38.876459 ], [ -77.018881, 38.876459 ], [ -77.019884, 38.876459 ], [ -77.020082, 38.876497 ], [ -77.020222, 38.876535 ], [ -77.020340, 38.876585 ], [ -77.020469, 38.876647 ], [ -77.020640, 38.876768 ], [ -77.020769, 38.876881 ], [ -77.020919, 38.877044 ], [ -77.021145, 38.877307 ], [ -77.021407, 38.877574 ], [ -77.021681, 38.877808 ], [ -77.021740, 38.877858 ], [ -77.021788, 38.877892 ], [ -77.022727, 38.878635 ], [ -77.022062, 38.879115 ], [ -77.022003, 38.879174 ], [ -77.021981, 38.879199 ], [ -77.021917, 38.879295 ], [ -77.021767, 38.879291 ], [ -77.021391, 38.879282 ], [ -77.020742, 38.879282 ], [ -77.020179, 38.879282 ], [ -77.019889, 38.879287 ], [ -77.019036, 38.879287 ], [ -77.018881, 38.879287 ], [ -77.018221, 38.879287 ], [ -77.017545, 38.879287 ], [ -77.017379, 38.879287 ], [ -77.016698, 38.879282 ], [ -77.016225, 38.879282 ], [ -77.016075, 38.879282 ], [ -77.015952, 38.879282 ], [ -77.015378, 38.879282 ], [ -77.015185, 38.879282 ], [ -77.015195, 38.879207 ], [ -77.015201, 38.878802 ], [ -77.015206, 38.878414 ], [ -77.015206, 38.878293 ], [ -77.015206, 38.877645 ], [ -77.015206, 38.877528 ], [ -77.015201, 38.876681 ], [ -77.015201, 38.876635 ], [ -77.015206, 38.876459 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "011001", "GEOID": "11001011001", "NAME": "110.01", "NAMELSAD": "Census Tract 110.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 152450, "AWATER": 0, "INTPTLAT": "+38.8741656", "INTPTLON": "-077.0157419" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.013667, 38.872037 ], [ -77.014337, 38.872037 ], [ -77.014616, 38.872037 ], [ -77.015024, 38.872037 ], [ -77.015147, 38.872037 ], [ -77.016022, 38.872041 ], [ -77.016392, 38.872037 ], [ -77.016907, 38.872041 ], [ -77.017003, 38.872041 ], [ -77.017395, 38.872041 ], [ -77.017427, 38.872041 ], [ -77.017481, 38.872053 ], [ -77.017518, 38.872066 ], [ -77.017545, 38.872087 ], [ -77.017556, 38.872103 ], [ -77.017550, 38.872308 ], [ -77.017556, 38.872688 ], [ -77.017550, 38.872976 ], [ -77.017550, 38.873423 ], [ -77.017550, 38.873494 ], [ -77.017550, 38.873878 ], [ -77.017550, 38.874334 ], [ -77.017550, 38.874651 ], [ -77.017550, 38.874764 ], [ -77.017550, 38.875566 ], [ -77.017556, 38.875737 ], [ -77.017556, 38.876255 ], [ -77.017561, 38.876388 ], [ -77.017561, 38.876459 ], [ -77.016740, 38.876459 ], [ -77.016199, 38.876459 ], [ -77.015373, 38.876459 ], [ -77.015206, 38.876459 ], [ -77.015077, 38.876459 ], [ -77.013860, 38.876459 ], [ -77.013919, 38.876276 ], [ -77.014058, 38.875879 ], [ -77.014139, 38.875670 ], [ -77.014284, 38.875257 ], [ -77.014391, 38.874939 ], [ -77.014428, 38.874835 ], [ -77.014434, 38.874751 ], [ -77.014434, 38.874668 ], [ -77.014439, 38.874497 ], [ -77.014439, 38.874325 ], [ -77.014434, 38.874158 ], [ -77.014428, 38.873987 ], [ -77.014418, 38.873945 ], [ -77.014402, 38.873903 ], [ -77.014385, 38.873866 ], [ -77.014359, 38.873828 ], [ -77.014326, 38.873791 ], [ -77.014294, 38.873757 ], [ -77.014251, 38.873728 ], [ -77.014208, 38.873703 ], [ -77.014160, 38.873682 ], [ -77.014112, 38.873665 ], [ -77.013323, 38.873452 ], [ -77.013173, 38.873415 ], [ -77.013248, 38.873244 ], [ -77.013366, 38.872976 ], [ -77.013624, 38.872379 ], [ -77.013640, 38.872342 ], [ -77.013645, 38.872321 ], [ -77.013661, 38.872262 ], [ -77.013667, 38.872220 ], [ -77.013667, 38.872179 ], [ -77.013667, 38.872037 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "011002", "GEOID": "11001011002", "NAME": "110.02", "NAMELSAD": "Census Tract 110.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 498112, "AWATER": 367035, "INTPTLAT": "+38.8681789", "INTPTLON": "-077.0182455" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.021145, 38.877307 ], [ -77.020919, 38.877044 ], [ -77.020769, 38.876881 ], [ -77.020640, 38.876768 ], [ -77.020469, 38.876647 ], [ -77.020340, 38.876585 ], [ -77.020222, 38.876535 ], [ -77.020082, 38.876497 ], [ -77.019884, 38.876459 ], [ -77.018881, 38.876459 ], [ -77.017561, 38.876459 ], [ -77.017561, 38.876388 ], [ -77.017556, 38.876255 ], [ -77.017556, 38.875737 ], [ -77.017550, 38.875566 ], [ -77.017550, 38.874764 ], [ -77.017550, 38.874651 ], [ -77.017550, 38.874334 ], [ -77.017550, 38.873878 ], [ -77.017550, 38.873494 ], [ -77.017550, 38.873423 ], [ -77.017550, 38.872976 ], [ -77.017556, 38.872688 ], [ -77.017550, 38.872308 ], [ -77.017556, 38.872103 ], [ -77.017545, 38.872087 ], [ -77.017518, 38.872066 ], [ -77.017481, 38.872053 ], [ -77.017427, 38.872041 ], [ -77.017395, 38.872041 ], [ -77.017003, 38.872041 ], [ -77.016907, 38.872041 ], [ -77.016392, 38.872037 ], [ -77.016022, 38.872041 ], [ -77.015147, 38.872037 ], [ -77.015024, 38.872037 ], [ -77.014616, 38.872037 ], [ -77.014337, 38.872037 ], [ -77.014820, 38.870771 ], [ -77.014841, 38.870650 ], [ -77.014836, 38.870546 ], [ -77.015314, 38.869472 ], [ -77.015319, 38.868921 ], [ -77.015324, 38.868248 ], [ -77.015292, 38.865291 ], [ -77.015308, 38.864853 ], [ -77.015314, 38.864631 ], [ -77.015319, 38.864097 ], [ -77.015346, 38.862096 ], [ -77.015373, 38.860037 ], [ -77.020158, 38.857330 ], [ -77.020152, 38.858909 ], [ -77.020147, 38.859602 ], [ -77.020168, 38.868959 ], [ -77.020313, 38.870015 ], [ -77.021048, 38.871561 ], [ -77.021289, 38.872170 ], [ -77.022572, 38.874363 ], [ -77.023188, 38.875407 ], [ -77.023773, 38.876409 ], [ -77.021874, 38.876501 ], [ -77.021483, 38.877032 ], [ -77.021289, 38.877182 ], [ -77.021145, 38.877307 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006500", "GEOID": "11001006500", "NAME": "65", "NAMELSAD": "Census Tract 65", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 509297, "AWATER": 0, "INTPTLAT": "+38.8838480", "INTPTLON": "-077.0033314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009107, 38.881550 ], [ -77.009107, 38.881629 ], [ -77.009112, 38.881688 ], [ -77.009118, 38.881901 ], [ -77.009107, 38.882080 ], [ -77.009112, 38.882310 ], [ -77.009069, 38.883053 ], [ -77.009064, 38.883204 ], [ -77.009064, 38.883855 ], [ -77.009059, 38.883980 ], [ -77.009059, 38.884051 ], [ -77.009059, 38.884114 ], [ -77.009059, 38.884214 ], [ -77.009059, 38.885066 ], [ -77.008935, 38.885066 ], [ -77.007481, 38.885070 ], [ -77.007251, 38.885066 ], [ -77.006017, 38.885066 ], [ -77.005888, 38.885066 ], [ -77.005888, 38.886039 ], [ -77.005717, 38.886039 ], [ -77.005652, 38.886039 ], [ -77.005084, 38.886039 ], [ -77.004939, 38.886039 ], [ -77.004601, 38.886039 ], [ -77.004531, 38.886039 ], [ -77.004225, 38.886039 ], [ -77.003646, 38.886039 ], [ -77.003512, 38.886039 ], [ -77.003517, 38.887551 ], [ -77.003517, 38.887613 ], [ -77.003270, 38.887609 ], [ -77.002959, 38.887596 ], [ -77.002476, 38.887596 ], [ -77.002299, 38.887596 ], [ -77.002037, 38.887596 ], [ -77.002042, 38.887350 ], [ -77.002037, 38.887196 ], [ -77.000572, 38.886590 ], [ -76.999354, 38.886097 ], [ -76.998453, 38.885709 ], [ -76.996173, 38.884807 ], [ -76.996173, 38.884673 ], [ -76.996173, 38.884552 ], [ -76.996173, 38.884335 ], [ -76.996173, 38.884273 ], [ -76.996179, 38.883951 ], [ -76.996173, 38.883772 ], [ -76.996275, 38.883797 ], [ -76.996323, 38.883797 ], [ -76.996393, 38.883792 ], [ -76.996425, 38.883784 ], [ -76.996458, 38.883780 ], [ -76.997091, 38.883609 ], [ -76.997842, 38.883412 ], [ -76.998357, 38.883275 ], [ -76.998448, 38.883254 ], [ -76.998448, 38.883145 ], [ -76.998448, 38.882728 ], [ -76.998550, 38.882728 ], [ -76.999403, 38.882728 ], [ -76.999510, 38.882728 ], [ -77.000481, 38.882728 ], [ -77.000524, 38.882719 ], [ -77.000572, 38.882703 ], [ -77.000701, 38.882657 ], [ -77.001919, 38.882335 ], [ -77.001945, 38.882327 ], [ -77.002031, 38.882302 ], [ -77.002037, 38.881993 ], [ -77.002042, 38.881270 ], [ -77.002042, 38.881245 ], [ -77.002042, 38.881195 ], [ -77.002042, 38.880807 ], [ -77.002047, 38.880723 ], [ -77.002047, 38.880644 ], [ -77.002047, 38.880481 ], [ -77.002316, 38.880552 ], [ -77.002423, 38.880581 ], [ -77.002557, 38.880615 ], [ -77.002637, 38.880631 ], [ -77.002798, 38.880669 ], [ -77.002879, 38.880686 ], [ -77.002959, 38.880702 ], [ -77.003126, 38.880731 ], [ -77.003179, 38.880740 ], [ -77.003404, 38.880765 ], [ -77.003517, 38.880773 ], [ -77.003877, 38.880794 ], [ -77.004016, 38.880802 ], [ -77.004215, 38.880807 ], [ -77.004343, 38.880811 ], [ -77.004676, 38.880819 ], [ -77.005169, 38.880832 ], [ -77.005733, 38.880844 ], [ -77.006210, 38.880865 ], [ -77.006285, 38.880869 ], [ -77.006441, 38.880882 ], [ -77.006521, 38.880890 ], [ -77.006677, 38.880911 ], [ -77.006752, 38.880924 ], [ -77.006832, 38.880936 ], [ -77.007396, 38.881053 ], [ -77.007734, 38.881128 ], [ -77.007825, 38.881149 ], [ -77.007921, 38.881174 ], [ -77.008013, 38.881199 ], [ -77.008195, 38.881253 ], [ -77.008243, 38.881270 ], [ -77.008377, 38.881316 ], [ -77.008463, 38.881345 ], [ -77.008635, 38.881408 ], [ -77.008715, 38.881433 ], [ -77.008758, 38.881450 ], [ -77.008983, 38.881512 ], [ -77.009021, 38.881521 ], [ -77.009107, 38.881550 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010500", "GEOID": "11001010500", "NAME": "105", "NAMELSAD": "Census Tract 105", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 749891, "AWATER": 0, "INTPTLAT": "+38.8818529", "INTPTLON": "-077.0133789" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.017545, 38.887571 ], [ -77.017282, 38.887567 ], [ -77.017207, 38.887563 ], [ -77.016590, 38.887563 ], [ -77.016386, 38.887563 ], [ -77.016274, 38.887563 ], [ -77.015989, 38.887563 ], [ -77.015367, 38.887563 ], [ -77.015174, 38.887567 ], [ -77.014756, 38.887563 ], [ -77.014058, 38.887563 ], [ -77.013919, 38.887563 ], [ -77.013806, 38.887563 ], [ -77.013731, 38.887409 ], [ -77.013554, 38.887175 ], [ -77.013516, 38.887137 ], [ -77.013366, 38.886999 ], [ -77.012991, 38.886674 ], [ -77.012739, 38.886477 ], [ -77.012277, 38.886135 ], [ -77.012138, 38.886031 ], [ -77.011843, 38.885813 ], [ -77.011204, 38.885421 ], [ -77.010786, 38.885079 ], [ -77.010571, 38.884970 ], [ -77.010534, 38.884945 ], [ -77.010351, 38.884811 ], [ -77.009429, 38.884122 ], [ -77.009252, 38.883993 ], [ -77.009064, 38.883855 ], [ -77.009064, 38.883204 ], [ -77.009069, 38.883053 ], [ -77.009112, 38.882310 ], [ -77.009107, 38.882080 ], [ -77.009118, 38.881901 ], [ -77.009112, 38.881688 ], [ -77.009107, 38.881629 ], [ -77.009107, 38.881550 ], [ -77.009112, 38.881533 ], [ -77.009112, 38.881433 ], [ -77.009107, 38.880339 ], [ -77.009150, 38.879825 ], [ -77.009123, 38.879287 ], [ -77.009118, 38.878414 ], [ -77.009123, 38.878176 ], [ -77.009144, 38.877528 ], [ -77.009112, 38.876906 ], [ -77.009096, 38.876468 ], [ -77.009262, 38.876472 ], [ -77.009402, 38.876464 ], [ -77.009676, 38.876455 ], [ -77.009895, 38.876455 ], [ -77.010303, 38.876455 ], [ -77.010539, 38.876455 ], [ -77.010652, 38.876455 ], [ -77.010958, 38.876455 ], [ -77.011001, 38.876455 ], [ -77.011210, 38.876459 ], [ -77.011392, 38.876459 ], [ -77.011848, 38.876459 ], [ -77.012175, 38.876459 ], [ -77.012610, 38.876459 ], [ -77.013860, 38.876459 ], [ -77.015077, 38.876459 ], [ -77.015206, 38.876459 ], [ -77.015201, 38.876635 ], [ -77.015201, 38.876681 ], [ -77.015206, 38.877528 ], [ -77.015206, 38.877645 ], [ -77.015206, 38.878293 ], [ -77.015206, 38.878414 ], [ -77.015201, 38.878802 ], [ -77.015195, 38.879207 ], [ -77.015185, 38.879282 ], [ -77.015378, 38.879282 ], [ -77.015952, 38.879282 ], [ -77.016075, 38.879282 ], [ -77.016225, 38.879282 ], [ -77.016698, 38.879282 ], [ -77.017379, 38.879287 ], [ -77.017545, 38.879287 ], [ -77.017545, 38.879408 ], [ -77.017550, 38.879900 ], [ -77.017550, 38.880331 ], [ -77.017550, 38.880443 ], [ -77.017550, 38.880840 ], [ -77.017556, 38.881283 ], [ -77.017556, 38.881387 ], [ -77.017556, 38.881508 ], [ -77.017561, 38.882101 ], [ -77.017556, 38.882297 ], [ -77.017556, 38.882348 ], [ -77.017556, 38.882527 ], [ -77.017556, 38.882648 ], [ -77.017556, 38.883141 ], [ -77.017556, 38.883241 ], [ -77.017550, 38.883759 ], [ -77.017550, 38.883926 ], [ -77.017550, 38.884385 ], [ -77.017556, 38.884607 ], [ -77.017556, 38.884682 ], [ -77.017550, 38.885070 ], [ -77.017550, 38.885154 ], [ -77.017550, 38.885734 ], [ -77.017550, 38.886039 ], [ -77.017550, 38.886360 ], [ -77.017550, 38.887317 ], [ -77.017545, 38.887571 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007202", "GEOID": "11001007202", "NAME": "72.02", "NAMELSAD": "Census Tract 72.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 183977, "AWATER": 0, "INTPTLAT": "+38.8786426", "INTPTLON": "-077.0070741" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009107, 38.881550 ], [ -77.009021, 38.881521 ], [ -77.008983, 38.881512 ], [ -77.008758, 38.881450 ], [ -77.008715, 38.881433 ], [ -77.008635, 38.881408 ], [ -77.008463, 38.881345 ], [ -77.008377, 38.881316 ], [ -77.008243, 38.881270 ], [ -77.008195, 38.881253 ], [ -77.008013, 38.881199 ], [ -77.007921, 38.881174 ], [ -77.007825, 38.881149 ], [ -77.007734, 38.881128 ], [ -77.007396, 38.881053 ], [ -77.006832, 38.880936 ], [ -77.006752, 38.880924 ], [ -77.006677, 38.880911 ], [ -77.006521, 38.880890 ], [ -77.006441, 38.880882 ], [ -77.006285, 38.880869 ], [ -77.006210, 38.880865 ], [ -77.005733, 38.880844 ], [ -77.005663, 38.880656 ], [ -77.005502, 38.880205 ], [ -77.005175, 38.879291 ], [ -77.005062, 38.878978 ], [ -77.004955, 38.878669 ], [ -77.004858, 38.878405 ], [ -77.004665, 38.877879 ], [ -77.004638, 38.877804 ], [ -77.004536, 38.877528 ], [ -77.004198, 38.876480 ], [ -77.005727, 38.876480 ], [ -77.005872, 38.876480 ], [ -77.006178, 38.876480 ], [ -77.006693, 38.876480 ], [ -77.007342, 38.876480 ], [ -77.007455, 38.876484 ], [ -77.007557, 38.876480 ], [ -77.007675, 38.876476 ], [ -77.007734, 38.876476 ], [ -77.007793, 38.876476 ], [ -77.007852, 38.876472 ], [ -77.007911, 38.876472 ], [ -77.007970, 38.876472 ], [ -77.008029, 38.876468 ], [ -77.008082, 38.876468 ], [ -77.008136, 38.876468 ], [ -77.008216, 38.876464 ], [ -77.008404, 38.876464 ], [ -77.008742, 38.876464 ], [ -77.008919, 38.876468 ], [ -77.009032, 38.876468 ], [ -77.009096, 38.876468 ], [ -77.009112, 38.876906 ], [ -77.009144, 38.877528 ], [ -77.009123, 38.878176 ], [ -77.009118, 38.878414 ], [ -77.009123, 38.879287 ], [ -77.009150, 38.879825 ], [ -77.009107, 38.880339 ], [ -77.009112, 38.881433 ], [ -77.009112, 38.881533 ], [ -77.009107, 38.881550 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006600", "GEOID": "11001006600", "NAME": "66", "NAMELSAD": "Census Tract 66", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 285156, "AWATER": 0, "INTPTLAT": "+38.8877585", "INTPTLON": "-076.9982439" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994956, 38.884602 ], [ -76.995079, 38.884611 ], [ -76.995240, 38.884611 ], [ -76.995272, 38.884602 ], [ -76.995310, 38.884594 ], [ -76.995342, 38.884586 ], [ -76.995406, 38.884561 ], [ -76.995422, 38.884548 ], [ -76.995438, 38.884532 ], [ -76.995460, 38.884506 ], [ -76.996173, 38.884807 ], [ -76.998453, 38.885709 ], [ -76.999354, 38.886097 ], [ -77.000572, 38.886590 ], [ -77.002037, 38.887196 ], [ -77.002042, 38.887350 ], [ -77.002037, 38.887596 ], [ -77.002037, 38.887684 ], [ -77.002031, 38.888594 ], [ -77.002031, 38.888678 ], [ -77.002031, 38.889166 ], [ -77.003517, 38.889150 ], [ -77.003512, 38.889705 ], [ -77.003512, 38.889809 ], [ -77.003286, 38.889805 ], [ -77.003109, 38.889805 ], [ -77.002578, 38.889809 ], [ -77.002037, 38.889809 ], [ -77.000674, 38.889809 ], [ -77.000577, 38.889809 ], [ -77.000438, 38.889805 ], [ -77.000202, 38.889805 ], [ -76.999515, 38.889809 ], [ -76.999183, 38.889809 ], [ -76.998550, 38.889809 ], [ -76.998442, 38.889809 ], [ -76.997691, 38.889809 ], [ -76.997273, 38.889805 ], [ -76.996350, 38.889805 ], [ -76.996168, 38.889805 ], [ -76.995696, 38.889805 ], [ -76.995572, 38.889805 ], [ -76.995084, 38.889805 ], [ -76.994961, 38.889805 ], [ -76.994961, 38.889684 ], [ -76.994961, 38.888824 ], [ -76.994961, 38.888766 ], [ -76.994961, 38.888678 ], [ -76.994956, 38.887893 ], [ -76.994956, 38.887709 ], [ -76.994961, 38.887592 ], [ -76.994961, 38.887505 ], [ -76.994961, 38.887371 ], [ -76.994961, 38.886807 ], [ -76.994961, 38.886093 ], [ -76.994961, 38.886026 ], [ -76.994961, 38.885951 ], [ -76.994956, 38.884673 ], [ -76.994956, 38.884602 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007203", "GEOID": "11001007203", "NAME": "72.03", "NAMELSAD": "Census Tract 72.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 384178, "AWATER": 0, "INTPTLAT": "+38.8781777", "INTPTLON": "-076.9994857" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.005733, 38.880844 ], [ -77.005169, 38.880832 ], [ -77.004676, 38.880819 ], [ -77.004343, 38.880811 ], [ -77.004215, 38.880807 ], [ -77.004016, 38.880802 ], [ -77.003877, 38.880794 ], [ -77.003517, 38.880773 ], [ -77.003404, 38.880765 ], [ -77.003179, 38.880740 ], [ -77.003126, 38.880731 ], [ -77.002959, 38.880702 ], [ -77.002879, 38.880686 ], [ -77.002798, 38.880669 ], [ -77.002637, 38.880631 ], [ -77.002557, 38.880615 ], [ -77.002423, 38.880581 ], [ -77.002316, 38.880552 ], [ -77.002047, 38.880481 ], [ -77.001897, 38.880439 ], [ -77.001500, 38.880326 ], [ -77.000577, 38.880072 ], [ -77.000465, 38.880038 ], [ -77.000293, 38.879988 ], [ -76.999746, 38.879838 ], [ -76.999092, 38.879654 ], [ -76.998818, 38.879579 ], [ -76.998684, 38.879537 ], [ -76.998609, 38.879520 ], [ -76.997895, 38.879320 ], [ -76.997402, 38.879182 ], [ -76.996661, 38.879011 ], [ -76.996184, 38.878902 ], [ -76.995867, 38.878831 ], [ -76.995513, 38.878756 ], [ -76.994972, 38.878635 ], [ -76.994832, 38.878606 ], [ -76.993738, 38.878368 ], [ -76.993335, 38.878276 ], [ -76.992955, 38.878188 ], [ -76.992365, 38.878067 ], [ -76.991903, 38.877934 ], [ -76.991635, 38.877833 ], [ -76.991533, 38.877775 ], [ -76.991533, 38.877708 ], [ -76.991533, 38.877545 ], [ -76.991533, 38.877224 ], [ -76.991554, 38.876497 ], [ -76.991812, 38.876493 ], [ -76.992660, 38.876476 ], [ -76.993765, 38.876476 ], [ -76.994966, 38.876476 ], [ -76.995143, 38.876476 ], [ -76.996007, 38.876476 ], [ -76.996184, 38.876480 ], [ -76.996377, 38.876476 ], [ -76.996785, 38.876476 ], [ -76.997536, 38.876480 ], [ -76.997772, 38.876480 ], [ -76.998019, 38.876480 ], [ -76.999376, 38.876480 ], [ -76.999515, 38.876480 ], [ -76.999606, 38.876480 ], [ -77.000577, 38.876480 ], [ -77.001752, 38.876480 ], [ -77.001951, 38.876484 ], [ -77.002037, 38.876480 ], [ -77.002171, 38.876480 ], [ -77.002836, 38.876480 ], [ -77.002954, 38.876480 ], [ -77.003523, 38.876480 ], [ -77.003700, 38.876480 ], [ -77.004059, 38.876480 ], [ -77.004198, 38.876480 ], [ -77.004536, 38.877528 ], [ -77.004638, 38.877804 ], [ -77.004665, 38.877879 ], [ -77.004858, 38.878405 ], [ -77.004955, 38.878669 ], [ -77.005062, 38.878978 ], [ -77.005175, 38.879291 ], [ -77.005502, 38.880205 ], [ -77.005663, 38.880656 ], [ -77.005733, 38.880844 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007000", "GEOID": "11001007000", "NAME": "70", "NAMELSAD": "Census Tract 70", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 439473, "AWATER": 0, "INTPTLAT": "+38.8812697", "INTPTLON": "-076.9959451" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002031, 38.882302 ], [ -77.001945, 38.882327 ], [ -77.001919, 38.882335 ], [ -77.000701, 38.882657 ], [ -77.000572, 38.882703 ], [ -77.000524, 38.882719 ], [ -77.000481, 38.882728 ], [ -76.999510, 38.882728 ], [ -76.999403, 38.882728 ], [ -76.998550, 38.882728 ], [ -76.998448, 38.882728 ], [ -76.998448, 38.883145 ], [ -76.998448, 38.883254 ], [ -76.998357, 38.883275 ], [ -76.997842, 38.883412 ], [ -76.997091, 38.883609 ], [ -76.996458, 38.883780 ], [ -76.996425, 38.883784 ], [ -76.996393, 38.883792 ], [ -76.996323, 38.883797 ], [ -76.996275, 38.883797 ], [ -76.996173, 38.883772 ], [ -76.996179, 38.883951 ], [ -76.996173, 38.884273 ], [ -76.996173, 38.884335 ], [ -76.996173, 38.884552 ], [ -76.996173, 38.884673 ], [ -76.996173, 38.884807 ], [ -76.995460, 38.884506 ], [ -76.995438, 38.884532 ], [ -76.995422, 38.884548 ], [ -76.995406, 38.884561 ], [ -76.995342, 38.884586 ], [ -76.995310, 38.884594 ], [ -76.995272, 38.884602 ], [ -76.995240, 38.884611 ], [ -76.995079, 38.884611 ], [ -76.994956, 38.884602 ], [ -76.994854, 38.884598 ], [ -76.993979, 38.884594 ], [ -76.993808, 38.884594 ], [ -76.993781, 38.884590 ], [ -76.993759, 38.884586 ], [ -76.993754, 38.884189 ], [ -76.993754, 38.884106 ], [ -76.993759, 38.883817 ], [ -76.993759, 38.883801 ], [ -76.992643, 38.883358 ], [ -76.992515, 38.883308 ], [ -76.991914, 38.883053 ], [ -76.991705, 38.882970 ], [ -76.991528, 38.882890 ], [ -76.991528, 38.882794 ], [ -76.991528, 38.882657 ], [ -76.991533, 38.881888 ], [ -76.991528, 38.881512 ], [ -76.991528, 38.881358 ], [ -76.991528, 38.881266 ], [ -76.991528, 38.880422 ], [ -76.991533, 38.879738 ], [ -76.991528, 38.879278 ], [ -76.991533, 38.878401 ], [ -76.991533, 38.878339 ], [ -76.991533, 38.878226 ], [ -76.991533, 38.878109 ], [ -76.991533, 38.878096 ], [ -76.991533, 38.877963 ], [ -76.991533, 38.877775 ], [ -76.991635, 38.877833 ], [ -76.991903, 38.877934 ], [ -76.992365, 38.878067 ], [ -76.992955, 38.878188 ], [ -76.993335, 38.878276 ], [ -76.993738, 38.878368 ], [ -76.994832, 38.878606 ], [ -76.994972, 38.878635 ], [ -76.995513, 38.878756 ], [ -76.995867, 38.878831 ], [ -76.996184, 38.878902 ], [ -76.996661, 38.879011 ], [ -76.997402, 38.879182 ], [ -76.997895, 38.879320 ], [ -76.998609, 38.879520 ], [ -76.998684, 38.879537 ], [ -76.998818, 38.879579 ], [ -76.999092, 38.879654 ], [ -76.999746, 38.879838 ], [ -77.000293, 38.879988 ], [ -77.000465, 38.880038 ], [ -77.000577, 38.880072 ], [ -77.001500, 38.880326 ], [ -77.001897, 38.880439 ], [ -77.002047, 38.880481 ], [ -77.002047, 38.880644 ], [ -77.002047, 38.880723 ], [ -77.002042, 38.880807 ], [ -77.002042, 38.881195 ], [ -77.002042, 38.881245 ], [ -77.002042, 38.881270 ], [ -77.002037, 38.881993 ], [ -77.002031, 38.882302 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006400", "GEOID": "11001006400", "NAME": "64", "NAMELSAD": "Census Tract 64", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 691410, "AWATER": 243648, "INTPTLAT": "+38.8688572", "INTPTLON": "-077.0114342" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009096, 38.876468 ], [ -77.009096, 38.875637 ], [ -77.009096, 38.874893 ], [ -77.009091, 38.874714 ], [ -77.009085, 38.874639 ], [ -77.009080, 38.874396 ], [ -77.009080, 38.874284 ], [ -77.009080, 38.873519 ], [ -77.009080, 38.872976 ], [ -77.009080, 38.872805 ], [ -77.009080, 38.872688 ], [ -77.009085, 38.872467 ], [ -77.009085, 38.872087 ], [ -77.009080, 38.872032 ], [ -77.009080, 38.871615 ], [ -77.009069, 38.871448 ], [ -77.009059, 38.871348 ], [ -77.009026, 38.871210 ], [ -77.008978, 38.871051 ], [ -77.008919, 38.870905 ], [ -77.008876, 38.870805 ], [ -77.008796, 38.870629 ], [ -77.008715, 38.870450 ], [ -77.008624, 38.870320 ], [ -77.008490, 38.870170 ], [ -77.008318, 38.870011 ], [ -77.008195, 38.869915 ], [ -77.008023, 38.869798 ], [ -77.007771, 38.869664 ], [ -77.007417, 38.869506 ], [ -77.005706, 38.868808 ], [ -77.005454, 38.868708 ], [ -77.006323, 38.867284 ], [ -77.008184, 38.864481 ], [ -77.009123, 38.863595 ], [ -77.013699, 38.860997 ], [ -77.015373, 38.860037 ], [ -77.015346, 38.862096 ], [ -77.015319, 38.864097 ], [ -77.015314, 38.864631 ], [ -77.015308, 38.864853 ], [ -77.015292, 38.865291 ], [ -77.015324, 38.868248 ], [ -77.015319, 38.868921 ], [ -77.015314, 38.869472 ], [ -77.014836, 38.870546 ], [ -77.014841, 38.870650 ], [ -77.014820, 38.870771 ], [ -77.014337, 38.872037 ], [ -77.013667, 38.872037 ], [ -77.013667, 38.872179 ], [ -77.013667, 38.872220 ], [ -77.013661, 38.872262 ], [ -77.013645, 38.872321 ], [ -77.013640, 38.872342 ], [ -77.013624, 38.872379 ], [ -77.013366, 38.872976 ], [ -77.013248, 38.873244 ], [ -77.013173, 38.873415 ], [ -77.013323, 38.873452 ], [ -77.014112, 38.873665 ], [ -77.014160, 38.873682 ], [ -77.014208, 38.873703 ], [ -77.014251, 38.873728 ], [ -77.014294, 38.873757 ], [ -77.014326, 38.873791 ], [ -77.014359, 38.873828 ], [ -77.014385, 38.873866 ], [ -77.014402, 38.873903 ], [ -77.014418, 38.873945 ], [ -77.014428, 38.873987 ], [ -77.014434, 38.874158 ], [ -77.014439, 38.874325 ], [ -77.014439, 38.874497 ], [ -77.014434, 38.874668 ], [ -77.014434, 38.874751 ], [ -77.014428, 38.874835 ], [ -77.014391, 38.874939 ], [ -77.014284, 38.875257 ], [ -77.014139, 38.875670 ], [ -77.014058, 38.875879 ], [ -77.013919, 38.876276 ], [ -77.013860, 38.876459 ], [ -77.012610, 38.876459 ], [ -77.012175, 38.876459 ], [ -77.011848, 38.876459 ], [ -77.011392, 38.876459 ], [ -77.011210, 38.876459 ], [ -77.011001, 38.876455 ], [ -77.010958, 38.876455 ], [ -77.010652, 38.876455 ], [ -77.010539, 38.876455 ], [ -77.010303, 38.876455 ], [ -77.009895, 38.876455 ], [ -77.009676, 38.876455 ], [ -77.009402, 38.876464 ], [ -77.009262, 38.876472 ], [ -77.009096, 38.876468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007201", "GEOID": "11001007201", "NAME": "72.01", "NAMELSAD": "Census Tract 72.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 781457, "AWATER": 312419, "INTPTLAT": "+38.8738481", "INTPTLON": "-076.9999179" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009096, 38.876468 ], [ -77.009032, 38.876468 ], [ -77.008919, 38.876468 ], [ -77.008742, 38.876464 ], [ -77.008404, 38.876464 ], [ -77.008216, 38.876464 ], [ -77.008136, 38.876468 ], [ -77.008082, 38.876468 ], [ -77.008029, 38.876468 ], [ -77.007970, 38.876472 ], [ -77.007911, 38.876472 ], [ -77.007852, 38.876472 ], [ -77.007793, 38.876476 ], [ -77.007734, 38.876476 ], [ -77.007675, 38.876476 ], [ -77.007557, 38.876480 ], [ -77.007455, 38.876484 ], [ -77.007342, 38.876480 ], [ -77.006693, 38.876480 ], [ -77.006178, 38.876480 ], [ -77.005872, 38.876480 ], [ -77.005727, 38.876480 ], [ -77.004198, 38.876480 ], [ -77.004059, 38.876480 ], [ -77.003700, 38.876480 ], [ -77.003523, 38.876480 ], [ -77.002954, 38.876480 ], [ -77.002836, 38.876480 ], [ -77.002171, 38.876480 ], [ -77.002037, 38.876480 ], [ -77.001951, 38.876484 ], [ -77.001752, 38.876480 ], [ -77.000577, 38.876480 ], [ -76.999606, 38.876480 ], [ -76.999515, 38.876480 ], [ -76.999376, 38.876480 ], [ -76.998019, 38.876480 ], [ -76.997772, 38.876480 ], [ -76.997536, 38.876480 ], [ -76.996785, 38.876476 ], [ -76.996377, 38.876476 ], [ -76.996184, 38.876480 ], [ -76.996007, 38.876476 ], [ -76.995143, 38.876476 ], [ -76.994966, 38.876476 ], [ -76.993765, 38.876476 ], [ -76.992660, 38.876476 ], [ -76.991812, 38.876493 ], [ -76.991554, 38.876497 ], [ -76.991485, 38.874605 ], [ -76.991469, 38.874375 ], [ -76.991426, 38.874033 ], [ -76.991372, 38.873690 ], [ -76.991329, 38.873481 ], [ -76.991329, 38.870692 ], [ -76.992456, 38.870128 ], [ -76.992665, 38.870124 ], [ -76.993824, 38.870099 ], [ -76.995481, 38.870074 ], [ -76.999537, 38.870487 ], [ -77.000706, 38.870604 ], [ -77.003410, 38.870880 ], [ -77.005395, 38.868791 ], [ -77.005454, 38.868708 ], [ -77.005706, 38.868808 ], [ -77.007417, 38.869506 ], [ -77.007771, 38.869664 ], [ -77.008023, 38.869798 ], [ -77.008195, 38.869915 ], [ -77.008318, 38.870011 ], [ -77.008490, 38.870170 ], [ -77.008624, 38.870320 ], [ -77.008715, 38.870450 ], [ -77.008796, 38.870629 ], [ -77.008876, 38.870805 ], [ -77.008919, 38.870905 ], [ -77.008978, 38.871051 ], [ -77.009026, 38.871210 ], [ -77.009059, 38.871348 ], [ -77.009069, 38.871448 ], [ -77.009080, 38.871615 ], [ -77.009080, 38.872032 ], [ -77.009085, 38.872087 ], [ -77.009085, 38.872467 ], [ -77.009080, 38.872688 ], [ -77.009080, 38.872805 ], [ -77.009080, 38.872976 ], [ -77.009080, 38.873519 ], [ -77.009080, 38.874284 ], [ -77.009080, 38.874396 ], [ -77.009085, 38.874639 ], [ -77.009091, 38.874714 ], [ -77.009096, 38.874893 ], [ -77.009096, 38.875637 ], [ -77.009096, 38.876468 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007401", "GEOID": "11001007401", "NAME": "74.01", "NAMELSAD": "Census Tract 74.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1209113, "AWATER": 200980, "INTPTLAT": "+38.8675208", "INTPTLON": "-076.9991203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.003410, 38.870880 ], [ -77.000706, 38.870604 ], [ -76.999537, 38.870487 ], [ -76.995481, 38.870074 ], [ -76.993824, 38.870099 ], [ -76.992665, 38.870124 ], [ -76.992456, 38.870128 ], [ -76.991329, 38.870692 ], [ -76.991329, 38.866328 ], [ -76.991340, 38.866315 ], [ -76.991506, 38.866089 ], [ -76.991619, 38.865935 ], [ -76.991705, 38.865834 ], [ -76.991758, 38.865767 ], [ -76.991844, 38.865667 ], [ -76.991935, 38.865571 ], [ -76.991994, 38.865513 ], [ -76.992263, 38.865245 ], [ -76.992418, 38.865099 ], [ -76.992450, 38.865074 ], [ -76.992483, 38.865045 ], [ -76.992584, 38.864961 ], [ -76.992713, 38.864865 ], [ -76.992499, 38.864698 ], [ -76.992343, 38.864577 ], [ -76.992322, 38.864552 ], [ -76.991833, 38.864222 ], [ -76.991753, 38.864168 ], [ -76.991426, 38.863955 ], [ -76.991410, 38.863942 ], [ -76.991394, 38.863917 ], [ -76.991361, 38.863871 ], [ -76.991329, 38.863830 ], [ -76.991329, 38.863258 ], [ -76.991506, 38.863161 ], [ -76.992241, 38.862764 ], [ -76.992670, 38.862535 ], [ -76.992976, 38.862367 ], [ -76.993083, 38.862309 ], [ -76.993137, 38.862280 ], [ -76.993153, 38.862267 ], [ -76.993212, 38.862225 ], [ -76.993234, 38.862213 ], [ -76.993266, 38.862179 ], [ -76.993293, 38.862146 ], [ -76.993545, 38.861833 ], [ -76.993620, 38.861737 ], [ -76.993749, 38.861574 ], [ -76.993824, 38.861457 ], [ -76.994022, 38.861156 ], [ -76.994156, 38.860935 ], [ -76.994237, 38.860793 ], [ -76.994323, 38.860655 ], [ -76.994178, 38.860500 ], [ -76.994027, 38.860296 ], [ -76.993861, 38.860024 ], [ -76.993759, 38.859778 ], [ -76.993647, 38.859443 ], [ -76.993598, 38.859164 ], [ -76.993577, 38.858951 ], [ -76.993598, 38.858479 ], [ -76.993625, 38.857706 ], [ -76.993641, 38.857188 ], [ -76.993647, 38.856707 ], [ -76.993654, 38.856152 ], [ -76.996591, 38.856152 ], [ -76.998764, 38.857514 ], [ -77.002589, 38.859878 ], [ -77.002729, 38.859961 ], [ -77.002981, 38.860116 ], [ -77.002959, 38.860174 ], [ -77.002932, 38.860254 ], [ -77.002884, 38.860371 ], [ -77.002820, 38.860504 ], [ -77.002922, 38.860504 ], [ -77.003002, 38.860534 ], [ -77.003308, 38.860651 ], [ -77.003442, 38.860688 ], [ -77.003131, 38.861027 ], [ -77.002932, 38.861311 ], [ -77.002895, 38.861365 ], [ -77.002873, 38.861398 ], [ -77.002863, 38.861415 ], [ -77.002804, 38.861503 ], [ -77.002793, 38.861524 ], [ -77.002680, 38.861699 ], [ -77.002664, 38.861716 ], [ -77.002600, 38.861820 ], [ -77.002375, 38.862175 ], [ -77.002342, 38.862230 ], [ -77.002289, 38.862317 ], [ -77.002278, 38.862334 ], [ -77.002257, 38.862372 ], [ -77.002214, 38.862443 ], [ -77.002187, 38.862493 ], [ -77.002160, 38.862547 ], [ -77.002138, 38.862597 ], [ -77.002096, 38.862702 ], [ -77.002074, 38.862756 ], [ -77.002058, 38.862814 ], [ -77.002026, 38.862936 ], [ -77.002010, 38.862998 ], [ -77.001999, 38.863057 ], [ -77.001988, 38.863132 ], [ -77.001924, 38.863491 ], [ -77.001817, 38.864197 ], [ -77.001801, 38.864285 ], [ -77.001790, 38.864360 ], [ -77.001752, 38.864606 ], [ -77.001747, 38.864644 ], [ -77.001725, 38.864828 ], [ -77.001736, 38.864869 ], [ -77.001725, 38.865128 ], [ -77.001731, 38.865212 ], [ -77.001742, 38.865295 ], [ -77.001747, 38.865337 ], [ -77.001758, 38.865375 ], [ -77.001768, 38.865417 ], [ -77.001790, 38.865492 ], [ -77.001801, 38.865525 ], [ -77.001811, 38.865563 ], [ -77.001838, 38.865613 ], [ -77.001972, 38.865868 ], [ -77.001994, 38.865901 ], [ -77.002031, 38.865972 ], [ -77.002096, 38.866081 ], [ -77.002203, 38.866281 ], [ -77.002299, 38.866461 ], [ -77.002337, 38.866532 ], [ -77.002353, 38.866569 ], [ -77.002364, 38.866603 ], [ -77.002375, 38.866636 ], [ -77.002396, 38.866711 ], [ -77.002401, 38.866745 ], [ -77.002407, 38.866782 ], [ -77.002412, 38.866820 ], [ -77.002412, 38.866853 ], [ -77.002412, 38.866916 ], [ -77.002412, 38.866983 ], [ -77.002407, 38.867016 ], [ -77.002396, 38.867083 ], [ -77.002391, 38.867117 ], [ -77.002369, 38.867188 ], [ -77.002348, 38.867242 ], [ -77.002337, 38.867263 ], [ -77.002310, 38.867317 ], [ -77.002267, 38.867388 ], [ -77.002299, 38.867413 ], [ -77.002321, 38.867430 ], [ -77.002396, 38.867476 ], [ -77.003297, 38.867856 ], [ -77.003689, 38.868010 ], [ -77.005454, 38.868708 ], [ -77.005395, 38.868791 ], [ -77.003410, 38.870880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007301", "GEOID": "11001007301", "NAME": "73.01", "NAMELSAD": "Census Tract 73.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 4684643, "AWATER": 5139082, "INTPTLAT": "+38.8349280", "INTPTLON": "-077.0244450" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.022237, 38.856152 ], [ -77.020158, 38.857330 ], [ -77.015373, 38.860037 ], [ -77.013699, 38.860997 ], [ -77.009123, 38.863595 ], [ -77.008184, 38.864481 ], [ -77.006323, 38.867284 ], [ -77.005454, 38.868708 ], [ -77.003689, 38.868010 ], [ -77.003297, 38.867856 ], [ -77.002396, 38.867476 ], [ -77.002321, 38.867430 ], [ -77.002299, 38.867413 ], [ -77.002267, 38.867388 ], [ -77.002310, 38.867317 ], [ -77.002337, 38.867263 ], [ -77.002348, 38.867242 ], [ -77.002369, 38.867188 ], [ -77.002391, 38.867117 ], [ -77.002396, 38.867083 ], [ -77.002407, 38.867016 ], [ -77.002412, 38.866983 ], [ -77.002412, 38.866916 ], [ -77.002412, 38.866853 ], [ -77.002412, 38.866820 ], [ -77.002407, 38.866782 ], [ -77.002401, 38.866745 ], [ -77.002396, 38.866711 ], [ -77.002375, 38.866636 ], [ -77.002364, 38.866603 ], [ -77.002353, 38.866569 ], [ -77.002337, 38.866532 ], [ -77.002299, 38.866461 ], [ -77.002203, 38.866281 ], [ -77.002096, 38.866081 ], [ -77.002031, 38.865972 ], [ -77.001994, 38.865901 ], [ -77.001972, 38.865868 ], [ -77.001838, 38.865613 ], [ -77.001811, 38.865563 ], [ -77.001801, 38.865525 ], [ -77.001790, 38.865492 ], [ -77.001768, 38.865417 ], [ -77.001758, 38.865375 ], [ -77.001747, 38.865337 ], [ -77.001742, 38.865295 ], [ -77.001731, 38.865212 ], [ -77.001725, 38.865128 ], [ -77.001736, 38.864869 ], [ -77.001725, 38.864828 ], [ -77.001747, 38.864644 ], [ -77.001752, 38.864606 ], [ -77.001790, 38.864360 ], [ -77.001801, 38.864285 ], [ -77.001817, 38.864197 ], [ -77.001924, 38.863491 ], [ -77.001988, 38.863132 ], [ -77.001999, 38.863057 ], [ -77.002010, 38.862998 ], [ -77.002026, 38.862936 ], [ -77.002058, 38.862814 ], [ -77.002074, 38.862756 ], [ -77.002096, 38.862702 ], [ -77.002138, 38.862597 ], [ -77.002160, 38.862547 ], [ -77.002187, 38.862493 ], [ -77.002214, 38.862443 ], [ -77.002257, 38.862372 ], [ -77.002278, 38.862334 ], [ -77.002289, 38.862317 ], [ -77.002342, 38.862230 ], [ -77.002375, 38.862175 ], [ -77.002600, 38.861820 ], [ -77.002664, 38.861716 ], [ -77.002680, 38.861699 ], [ -77.002793, 38.861524 ], [ -77.002804, 38.861503 ], [ -77.002863, 38.861415 ], [ -77.002873, 38.861398 ], [ -77.002895, 38.861365 ], [ -77.002932, 38.861311 ], [ -77.003131, 38.861027 ], [ -77.003442, 38.860688 ], [ -77.003308, 38.860651 ], [ -77.003002, 38.860534 ], [ -77.003024, 38.860479 ], [ -77.003056, 38.860408 ], [ -77.003115, 38.860266 ], [ -77.003142, 38.860195 ], [ -77.003168, 38.860124 ], [ -77.003195, 38.860053 ], [ -77.003244, 38.859907 ], [ -77.003388, 38.859385 ], [ -77.003442, 38.859184 ], [ -77.003582, 38.858687 ], [ -77.003608, 38.858587 ], [ -77.003667, 38.858387 ], [ -77.003732, 38.858190 ], [ -77.003796, 38.857990 ], [ -77.003866, 38.857793 ], [ -77.003936, 38.857597 ], [ -77.004075, 38.857246 ], [ -77.004204, 38.856933 ], [ -77.004488, 38.856252 ], [ -77.004531, 38.856152 ], [ -77.022237, 38.856152 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010400", "GEOID": "11001010400", "NAME": "104", "NAMELSAD": "Census Tract 104", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2602393, "AWATER": 7006, "INTPTLAT": "+38.8512668", "INTPTLON": "-077.0009082" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.004531, 38.856152 ], [ -77.004488, 38.856252 ], [ -77.004204, 38.856933 ], [ -77.004075, 38.857246 ], [ -77.003936, 38.857597 ], [ -77.003866, 38.857793 ], [ -77.003796, 38.857990 ], [ -77.003732, 38.858190 ], [ -77.003667, 38.858387 ], [ -77.003608, 38.858587 ], [ -77.003582, 38.858687 ], [ -77.003442, 38.859184 ], [ -77.003388, 38.859385 ], [ -77.003244, 38.859907 ], [ -77.003195, 38.860053 ], [ -77.003168, 38.860124 ], [ -77.003142, 38.860195 ], [ -77.003115, 38.860266 ], [ -77.003056, 38.860408 ], [ -77.003024, 38.860479 ], [ -77.003002, 38.860534 ], [ -77.002922, 38.860504 ], [ -77.002820, 38.860504 ], [ -77.002884, 38.860371 ], [ -77.002932, 38.860254 ], [ -77.002959, 38.860174 ], [ -77.002981, 38.860116 ], [ -77.002729, 38.859961 ], [ -77.002589, 38.859878 ], [ -76.998764, 38.857514 ], [ -76.996591, 38.856152 ], [ -77.004531, 38.856152 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008002", "GEOID": "11001008002", "NAME": "80.02", "NAMELSAD": "Census Tract 80.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 578961, "AWATER": 0, "INTPTLAT": "+38.8915403", "INTPTLON": "-076.9827594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.889229 ], [ -76.991388, 38.889229 ], [ -76.991415, 38.889225 ], [ -76.991538, 38.889225 ], [ -76.991528, 38.889805 ], [ -76.991528, 38.890123 ], [ -76.991528, 38.890365 ], [ -76.991431, 38.890369 ], [ -76.991329, 38.890370 ], [ -76.991329, 38.889229 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006700", "GEOID": "11001006700", "NAME": "67", "NAMELSAD": "Census Tract 67", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 428358, "AWATER": 0, "INTPTLAT": "+38.8875984", "INTPTLON": "-076.9899590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994956, 38.884602 ], [ -76.994956, 38.884673 ], [ -76.994961, 38.885951 ], [ -76.994961, 38.886026 ], [ -76.994961, 38.886093 ], [ -76.994961, 38.886807 ], [ -76.994961, 38.887371 ], [ -76.994961, 38.887505 ], [ -76.994961, 38.887592 ], [ -76.994956, 38.887709 ], [ -76.994956, 38.887893 ], [ -76.994961, 38.888678 ], [ -76.994961, 38.888766 ], [ -76.994961, 38.888824 ], [ -76.994961, 38.889684 ], [ -76.994961, 38.889805 ], [ -76.994290, 38.889805 ], [ -76.993754, 38.889805 ], [ -76.993083, 38.889805 ], [ -76.992638, 38.889801 ], [ -76.991801, 38.889801 ], [ -76.991528, 38.889805 ], [ -76.991538, 38.889225 ], [ -76.991415, 38.889225 ], [ -76.991388, 38.889229 ], [ -76.991329, 38.889229 ], [ -76.991329, 38.885151 ], [ -76.991528, 38.885099 ], [ -76.992643, 38.884799 ], [ -76.993373, 38.884602 ], [ -76.993534, 38.884561 ], [ -76.993572, 38.884552 ], [ -76.993609, 38.884552 ], [ -76.993641, 38.884552 ], [ -76.993684, 38.884561 ], [ -76.993759, 38.884586 ], [ -76.993781, 38.884590 ], [ -76.993808, 38.884594 ], [ -76.993979, 38.884594 ], [ -76.994854, 38.884598 ], [ -76.994956, 38.884602 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006900", "GEOID": "11001006900", "NAME": "69", "NAMELSAD": "Census Tract 69", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 398513, "AWATER": 0, "INTPTLAT": "+38.8836933", "INTPTLON": "-076.9873112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993759, 38.884586 ], [ -76.993684, 38.884561 ], [ -76.993641, 38.884552 ], [ -76.993609, 38.884552 ], [ -76.993572, 38.884552 ], [ -76.993534, 38.884561 ], [ -76.993373, 38.884602 ], [ -76.992643, 38.884799 ], [ -76.991528, 38.885099 ], [ -76.991329, 38.885151 ], [ -76.991329, 38.882813 ], [ -76.991356, 38.882824 ], [ -76.991528, 38.882890 ], [ -76.991705, 38.882970 ], [ -76.991914, 38.883053 ], [ -76.992515, 38.883308 ], [ -76.992643, 38.883358 ], [ -76.993759, 38.883801 ], [ -76.993759, 38.883817 ], [ -76.993754, 38.884106 ], [ -76.993754, 38.884189 ], [ -76.993759, 38.884586 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007100", "GEOID": "11001007100", "NAME": "71", "NAMELSAD": "Census Tract 71", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 602223, "AWATER": 149901, "INTPTLAT": "+38.8771811", "INTPTLON": "-076.9868380" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991528, 38.882890 ], [ -76.991356, 38.882824 ], [ -76.991329, 38.882813 ], [ -76.991329, 38.873481 ], [ -76.991372, 38.873690 ], [ -76.991426, 38.874033 ], [ -76.991469, 38.874375 ], [ -76.991485, 38.874605 ], [ -76.991554, 38.876497 ], [ -76.991533, 38.877224 ], [ -76.991533, 38.877545 ], [ -76.991533, 38.877708 ], [ -76.991533, 38.877775 ], [ -76.991533, 38.877963 ], [ -76.991533, 38.878096 ], [ -76.991533, 38.878109 ], [ -76.991533, 38.878226 ], [ -76.991533, 38.878339 ], [ -76.991533, 38.878401 ], [ -76.991528, 38.879278 ], [ -76.991533, 38.879738 ], [ -76.991528, 38.880422 ], [ -76.991528, 38.881266 ], [ -76.991528, 38.881358 ], [ -76.991528, 38.881512 ], [ -76.991533, 38.881888 ], [ -76.991528, 38.882657 ], [ -76.991528, 38.882794 ], [ -76.991528, 38.882890 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007503", "GEOID": "11001007503", "NAME": "75.03", "NAMELSAD": "Census Tract 75.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 515179, "AWATER": 0, "INTPTLAT": "+38.8640724", "INTPTLON": "-076.9870900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.863830 ], [ -76.991361, 38.863871 ], [ -76.991394, 38.863917 ], [ -76.991410, 38.863942 ], [ -76.991426, 38.863955 ], [ -76.991753, 38.864168 ], [ -76.991833, 38.864222 ], [ -76.992322, 38.864552 ], [ -76.992343, 38.864577 ], [ -76.992499, 38.864698 ], [ -76.992713, 38.864865 ], [ -76.992584, 38.864961 ], [ -76.992483, 38.865045 ], [ -76.992450, 38.865074 ], [ -76.992418, 38.865099 ], [ -76.992263, 38.865245 ], [ -76.991994, 38.865513 ], [ -76.991935, 38.865571 ], [ -76.991844, 38.865667 ], [ -76.991758, 38.865767 ], [ -76.991705, 38.865834 ], [ -76.991619, 38.865935 ], [ -76.991506, 38.866089 ], [ -76.991340, 38.866315 ], [ -76.991329, 38.866328 ], [ -76.991329, 38.863830 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007407", "GEOID": "11001007407", "NAME": "74.07", "NAMELSAD": "Census Tract 74.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 608700, "AWATER": 0, "INTPTLAT": "+38.8574823", "INTPTLON": "-076.9850206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994323, 38.860655 ], [ -76.994237, 38.860793 ], [ -76.994156, 38.860935 ], [ -76.994022, 38.861156 ], [ -76.993824, 38.861457 ], [ -76.993749, 38.861574 ], [ -76.993620, 38.861737 ], [ -76.993545, 38.861833 ], [ -76.993293, 38.862146 ], [ -76.993266, 38.862179 ], [ -76.993234, 38.862213 ], [ -76.993212, 38.862225 ], [ -76.993153, 38.862267 ], [ -76.993137, 38.862280 ], [ -76.993083, 38.862309 ], [ -76.992976, 38.862367 ], [ -76.992670, 38.862535 ], [ -76.992241, 38.862764 ], [ -76.991506, 38.863161 ], [ -76.991329, 38.863258 ], [ -76.991329, 38.858448 ], [ -76.991501, 38.858433 ], [ -76.991549, 38.858433 ], [ -76.991807, 38.858433 ], [ -76.992171, 38.858428 ], [ -76.993137, 38.858416 ], [ -76.993271, 38.858416 ], [ -76.993598, 38.858479 ], [ -76.993577, 38.858951 ], [ -76.993598, 38.859164 ], [ -76.993647, 38.859443 ], [ -76.993759, 38.859778 ], [ -76.993861, 38.860024 ], [ -76.994027, 38.860296 ], [ -76.994178, 38.860500 ], [ -76.994323, 38.860655 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007406", "GEOID": "11001007406", "NAME": "74.06", "NAMELSAD": "Census Tract 74.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 360152, "AWATER": 0, "INTPTLAT": "+38.8555543", "INTPTLON": "-076.9895582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.856152 ], [ -76.993654, 38.856152 ], [ -76.993647, 38.856707 ], [ -76.993641, 38.857188 ], [ -76.993625, 38.857706 ], [ -76.993598, 38.858479 ], [ -76.993271, 38.858416 ], [ -76.993137, 38.858416 ], [ -76.992171, 38.858428 ], [ -76.991807, 38.858433 ], [ -76.991549, 38.858433 ], [ -76.991501, 38.858433 ], [ -76.991329, 38.858448 ], [ -76.991329, 38.856152 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2343, "y": 3133 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003802", "GEOID": "11001003802", "NAME": "38.02", "NAMELSAD": "Census Tract 38.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 207186, "AWATER": 0, "INTPTLAT": "+38.9229710", "INTPTLON": "-077.0393505" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.925897 ], [ -77.036482, 38.925897 ], [ -77.036481, 38.925880 ], [ -77.036481, 38.925792 ], [ -77.036481, 38.925605 ], [ -77.036481, 38.924824 ], [ -77.036481, 38.924766 ], [ -77.036487, 38.924227 ], [ -77.036487, 38.923422 ], [ -77.036487, 38.923251 ], [ -77.036487, 38.923209 ], [ -77.036487, 38.923180 ], [ -77.036487, 38.922733 ], [ -77.036659, 38.922658 ], [ -77.036760, 38.922596 ], [ -77.036846, 38.922546 ], [ -77.036991, 38.922462 ], [ -77.036991, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003801", "GEOID": "11001003801", "NAME": "38.01", "NAMELSAD": "Census Tract 38.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 148928, "AWATER": 0, "INTPTLAT": "+38.9197759", "INTPTLON": "-077.0389415" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.922462 ], [ -77.036846, 38.922546 ], [ -77.036760, 38.922596 ], [ -77.036659, 38.922658 ], [ -77.036487, 38.922733 ], [ -77.036481, 38.922608 ], [ -77.036487, 38.921673 ], [ -77.036487, 38.920964 ], [ -77.036492, 38.920363 ], [ -77.036492, 38.920313 ], [ -77.036492, 38.919862 ], [ -77.036498, 38.919286 ], [ -77.036492, 38.919144 ], [ -77.036991, 38.918987 ], [ -77.036991, 38.922462 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004201", "GEOID": "11001004201", "NAME": "42.01", "NAMELSAD": "Census Tract 42.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 204529, "AWATER": 0, "INTPTLAT": "+38.9162076", "INTPTLON": "-077.0388456" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.918987 ], [ -77.036492, 38.919144 ], [ -77.036492, 38.919002 ], [ -77.036498, 38.918931 ], [ -77.036498, 38.918526 ], [ -77.036498, 38.918113 ], [ -77.036498, 38.918038 ], [ -77.036498, 38.918017 ], [ -77.036498, 38.917308 ], [ -77.036492, 38.917199 ], [ -77.036492, 38.917170 ], [ -77.036487, 38.917003 ], [ -77.036481, 38.916807 ], [ -77.036487, 38.916414 ], [ -77.036498, 38.916289 ], [ -77.036503, 38.916231 ], [ -77.036503, 38.915822 ], [ -77.036503, 38.915571 ], [ -77.036503, 38.915496 ], [ -77.036503, 38.915204 ], [ -77.036503, 38.914903 ], [ -77.036503, 38.914833 ], [ -77.036503, 38.914265 ], [ -77.036508, 38.914094 ], [ -77.036648, 38.914094 ], [ -77.036991, 38.914094 ], [ -77.036991, 38.918987 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005302", "GEOID": "11001005302", "NAME": "53.02", "NAMELSAD": "Census Tract 53.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 117635, "AWATER": 0, "INTPTLAT": "+38.9124517", "INTPTLON": "-077.0386443" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036508, 38.914094 ], [ -77.036508, 38.914010 ], [ -77.036508, 38.913564 ], [ -77.036508, 38.913426 ], [ -77.036508, 38.913347 ], [ -77.036508, 38.912958 ], [ -77.036508, 38.912691 ], [ -77.036514, 38.912608 ], [ -77.036508, 38.912232 ], [ -77.036514, 38.911869 ], [ -77.036514, 38.911209 ], [ -77.036514, 38.911126 ], [ -77.036685, 38.911126 ], [ -77.036793, 38.911126 ], [ -77.036884, 38.911126 ], [ -77.036980, 38.911126 ], [ -77.036991, 38.911126 ], [ -77.036991, 38.914094 ], [ -77.036648, 38.914094 ], [ -77.036508, 38.914094 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005303", "GEOID": "11001005303", "NAME": "53.03", "NAMELSAD": "Census Tract 53.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 168769, "AWATER": 0, "INTPTLAT": "+38.9096130", "INTPTLON": "-077.0391656" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036181, 38.907131 ], [ -77.036245, 38.907089 ], [ -77.036278, 38.907073 ], [ -77.036342, 38.907048 ], [ -77.036363, 38.907039 ], [ -77.036385, 38.907035 ], [ -77.036428, 38.907027 ], [ -77.036471, 38.907023 ], [ -77.036524, 38.907023 ], [ -77.036605, 38.907023 ], [ -77.036642, 38.907023 ], [ -77.036685, 38.907027 ], [ -77.036707, 38.907035 ], [ -77.036771, 38.907060 ], [ -77.036793, 38.907069 ], [ -77.036814, 38.907081 ], [ -77.036830, 38.907094 ], [ -77.036873, 38.907135 ], [ -77.036921, 38.907244 ], [ -77.036862, 38.907352 ], [ -77.036991, 38.907398 ], [ -77.036991, 38.911126 ], [ -77.036980, 38.911126 ], [ -77.036884, 38.911126 ], [ -77.036793, 38.911126 ], [ -77.036685, 38.911126 ], [ -77.036514, 38.911126 ], [ -77.036514, 38.911013 ], [ -77.036519, 38.910458 ], [ -77.036519, 38.910383 ], [ -77.036524, 38.909794 ], [ -77.036519, 38.909728 ], [ -77.036519, 38.909644 ], [ -77.036519, 38.909561 ], [ -77.036524, 38.909081 ], [ -77.036524, 38.908697 ], [ -77.036524, 38.908325 ], [ -77.036524, 38.907461 ], [ -77.036385, 38.907453 ], [ -77.036342, 38.907448 ], [ -77.036299, 38.907436 ], [ -77.036272, 38.907423 ], [ -77.036251, 38.907411 ], [ -77.036224, 38.907390 ], [ -77.036176, 38.907344 ], [ -77.036160, 38.907311 ], [ -77.036149, 38.907294 ], [ -77.036138, 38.907269 ], [ -77.036133, 38.907244 ], [ -77.036133, 38.907223 ], [ -77.036144, 38.907181 ], [ -77.036160, 38.907156 ], [ -77.036181, 38.907131 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010700", "GEOID": "11001010700", "NAME": "107", "NAMELSAD": "Census Tract 107", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 891588, "AWATER": 0, "INTPTLAT": "+38.9039988", "INTPTLON": "-077.0419809" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.907398 ], [ -77.036862, 38.907352 ], [ -77.036921, 38.907244 ], [ -77.036873, 38.907135 ], [ -77.036830, 38.907094 ], [ -77.036814, 38.907081 ], [ -77.036793, 38.907069 ], [ -77.036771, 38.907060 ], [ -77.036707, 38.907035 ], [ -77.036685, 38.907027 ], [ -77.036642, 38.907023 ], [ -77.036605, 38.907023 ], [ -77.036524, 38.907023 ], [ -77.036530, 38.905653 ], [ -77.036535, 38.904990 ], [ -77.036535, 38.904318 ], [ -77.036535, 38.903863 ], [ -77.036535, 38.903737 ], [ -77.036535, 38.903441 ], [ -77.036541, 38.903090 ], [ -77.036541, 38.902527 ], [ -77.036541, 38.901646 ], [ -77.036541, 38.901345 ], [ -77.036546, 38.900848 ], [ -77.036546, 38.900715 ], [ -77.036551, 38.900201 ], [ -77.036991, 38.900201 ], [ -77.036991, 38.907398 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009201", "GEOID": "11001009201", "NAME": "92.01", "NAMELSAD": "Census Tract 92.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 629781, "AWATER": 0, "INTPTLAT": "+38.9287161", "INTPTLON": "-076.9990184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994416, 38.925897 ], [ -76.994483, 38.925584 ], [ -76.994644, 38.925584 ], [ -76.994805, 38.925584 ], [ -76.994961, 38.925584 ], [ -76.995481, 38.925580 ], [ -76.996168, 38.925584 ], [ -76.996275, 38.925580 ], [ -76.996608, 38.925580 ], [ -76.997166, 38.925584 ], [ -76.997820, 38.925580 ], [ -76.998442, 38.925584 ], [ -76.998802, 38.925588 ], [ -76.999499, 38.925588 ], [ -77.000127, 38.925584 ], [ -77.000143, 38.925584 ], [ -77.000427, 38.925588 ], [ -77.000567, 38.925592 ], [ -77.000695, 38.925592 ], [ -77.001339, 38.925592 ], [ -77.001656, 38.925592 ], [ -77.001988, 38.925592 ], [ -77.002439, 38.925592 ], [ -77.002653, 38.925592 ], [ -77.003056, 38.925596 ], [ -77.003120, 38.925596 ], [ -77.003238, 38.925605 ], [ -77.003394, 38.925617 ], [ -77.003506, 38.925630 ], [ -77.003624, 38.925646 ], [ -77.003796, 38.925676 ], [ -77.003919, 38.925705 ], [ -77.004037, 38.925730 ], [ -77.004193, 38.925772 ], [ -77.004268, 38.925797 ], [ -77.004375, 38.925834 ], [ -77.004451, 38.925855 ], [ -77.004576, 38.925897 ], [ -76.994416, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003702", "GEOID": "11001003702", "NAME": "37.02", "NAMELSAD": "Census Tract 37.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 119532, "AWATER": 0, "INTPTLAT": "+38.9249042", "INTPTLON": "-077.0343972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.032348, 38.925897 ], [ -77.032335, 38.925742 ], [ -77.032329, 38.925651 ], [ -77.032313, 38.925500 ], [ -77.032308, 38.925425 ], [ -77.032249, 38.924828 ], [ -77.032238, 38.924757 ], [ -77.032217, 38.924540 ], [ -77.032190, 38.924286 ], [ -77.032142, 38.923764 ], [ -77.032131, 38.923635 ], [ -77.034068, 38.923493 ], [ -77.034695, 38.923460 ], [ -77.034819, 38.923451 ], [ -77.034888, 38.923451 ], [ -77.035307, 38.923434 ], [ -77.035307, 38.923297 ], [ -77.035489, 38.923284 ], [ -77.036487, 38.923251 ], [ -77.036487, 38.923422 ], [ -77.036487, 38.924227 ], [ -77.036481, 38.924766 ], [ -77.036481, 38.924824 ], [ -77.036481, 38.925605 ], [ -77.036481, 38.925792 ], [ -77.036481, 38.925880 ], [ -77.036482, 38.925897 ], [ -77.032348, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003701", "GEOID": "11001003701", "NAME": "37.01", "NAMELSAD": "Census Tract 37.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 172840, "AWATER": 0, "INTPTLAT": "+38.9214487", "INTPTLON": "-077.0342887" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036492, 38.919144 ], [ -77.036498, 38.919286 ], [ -77.036492, 38.919862 ], [ -77.036492, 38.920313 ], [ -77.036492, 38.920363 ], [ -77.036487, 38.920964 ], [ -77.036487, 38.921673 ], [ -77.036481, 38.922608 ], [ -77.036487, 38.922733 ], [ -77.036487, 38.923180 ], [ -77.036487, 38.923209 ], [ -77.036487, 38.923251 ], [ -77.035489, 38.923284 ], [ -77.035307, 38.923297 ], [ -77.035307, 38.923434 ], [ -77.034888, 38.923451 ], [ -77.034819, 38.923451 ], [ -77.034695, 38.923460 ], [ -77.034068, 38.923493 ], [ -77.032131, 38.923635 ], [ -77.032067, 38.923013 ], [ -77.032034, 38.922687 ], [ -77.032008, 38.922429 ], [ -77.031997, 38.922341 ], [ -77.031927, 38.921661 ], [ -77.031868, 38.921085 ], [ -77.031863, 38.920997 ], [ -77.031836, 38.920755 ], [ -77.031836, 38.920680 ], [ -77.031836, 38.920638 ], [ -77.031836, 38.920601 ], [ -77.031836, 38.920555 ], [ -77.031841, 38.920513 ], [ -77.031852, 38.920417 ], [ -77.031863, 38.920321 ], [ -77.031927, 38.920108 ], [ -77.031938, 38.920062 ], [ -77.032217, 38.920008 ], [ -77.033295, 38.919770 ], [ -77.033563, 38.919708 ], [ -77.033890, 38.919641 ], [ -77.033933, 38.919628 ], [ -77.033971, 38.919612 ], [ -77.034009, 38.919595 ], [ -77.034041, 38.919574 ], [ -77.034068, 38.919549 ], [ -77.034094, 38.919520 ], [ -77.034330, 38.919269 ], [ -77.034411, 38.919182 ], [ -77.034722, 38.919177 ], [ -77.034856, 38.919182 ], [ -77.035489, 38.919182 ], [ -77.035908, 38.919182 ], [ -77.036315, 38.919182 ], [ -77.036353, 38.919182 ], [ -77.036492, 38.919144 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004300", "GEOID": "11001004300", "NAME": "43", "NAMELSAD": "Census Tract 43", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 236694, "AWATER": 0, "INTPTLAT": "+38.9168040", "INTPTLON": "-077.0341511" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036353, 38.919182 ], [ -77.036315, 38.919182 ], [ -77.035908, 38.919182 ], [ -77.035489, 38.919182 ], [ -77.034856, 38.919182 ], [ -77.034722, 38.919177 ], [ -77.034411, 38.919182 ], [ -77.034330, 38.919269 ], [ -77.034094, 38.919520 ], [ -77.034068, 38.919549 ], [ -77.034041, 38.919574 ], [ -77.034009, 38.919595 ], [ -77.033971, 38.919612 ], [ -77.033933, 38.919628 ], [ -77.033890, 38.919641 ], [ -77.033563, 38.919708 ], [ -77.033295, 38.919770 ], [ -77.032217, 38.920008 ], [ -77.031938, 38.920062 ], [ -77.031943, 38.920021 ], [ -77.031949, 38.919975 ], [ -77.031949, 38.919954 ], [ -77.031949, 38.919265 ], [ -77.031949, 38.919186 ], [ -77.031949, 38.918113 ], [ -77.031949, 38.916999 ], [ -77.031949, 38.916373 ], [ -77.031949, 38.916289 ], [ -77.031954, 38.915567 ], [ -77.031949, 38.915262 ], [ -77.031949, 38.914833 ], [ -77.031949, 38.914482 ], [ -77.031949, 38.914181 ], [ -77.031949, 38.914094 ], [ -77.032324, 38.914094 ], [ -77.033252, 38.914094 ], [ -77.034405, 38.914094 ], [ -77.034540, 38.914094 ], [ -77.034690, 38.914090 ], [ -77.035334, 38.914094 ], [ -77.036160, 38.914090 ], [ -77.036508, 38.914094 ], [ -77.036503, 38.914265 ], [ -77.036503, 38.914833 ], [ -77.036503, 38.914903 ], [ -77.036503, 38.915204 ], [ -77.036503, 38.915496 ], [ -77.036503, 38.915571 ], [ -77.036503, 38.915822 ], [ -77.036503, 38.916231 ], [ -77.036498, 38.916289 ], [ -77.036487, 38.916414 ], [ -77.036481, 38.916807 ], [ -77.036487, 38.917003 ], [ -77.036492, 38.917170 ], [ -77.036492, 38.917199 ], [ -77.036498, 38.917308 ], [ -77.036498, 38.918017 ], [ -77.036498, 38.918038 ], [ -77.036498, 38.918113 ], [ -77.036498, 38.918526 ], [ -77.036498, 38.918931 ], [ -77.036492, 38.919002 ], [ -77.036492, 38.919144 ], [ -77.036353, 38.919182 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003600", "GEOID": "11001003600", "NAME": "36", "NAMELSAD": "Census Tract 36", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 305616, "AWATER": 0, "INTPTLAT": "+38.9236744", "INTPTLON": "-077.0296273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.031938, 38.920062 ], [ -77.031927, 38.920108 ], [ -77.031863, 38.920321 ], [ -77.031852, 38.920417 ], [ -77.031841, 38.920513 ], [ -77.031836, 38.920555 ], [ -77.031836, 38.920601 ], [ -77.031836, 38.920638 ], [ -77.031836, 38.920680 ], [ -77.031836, 38.920755 ], [ -77.031863, 38.920997 ], [ -77.031868, 38.921085 ], [ -77.031927, 38.921661 ], [ -77.031997, 38.922341 ], [ -77.032008, 38.922429 ], [ -77.032034, 38.922687 ], [ -77.032067, 38.923013 ], [ -77.032131, 38.923635 ], [ -77.032142, 38.923764 ], [ -77.032190, 38.924286 ], [ -77.032217, 38.924540 ], [ -77.032238, 38.924757 ], [ -77.032249, 38.924828 ], [ -77.032308, 38.925425 ], [ -77.032313, 38.925500 ], [ -77.032329, 38.925651 ], [ -77.032335, 38.925742 ], [ -77.032348, 38.925897 ], [ -77.027035, 38.925897 ], [ -77.027035, 38.925855 ], [ -77.027035, 38.925755 ], [ -77.027035, 38.924766 ], [ -77.027035, 38.923906 ], [ -77.027035, 38.923848 ], [ -77.027035, 38.923768 ], [ -77.027035, 38.923476 ], [ -77.027035, 38.923030 ], [ -77.027029, 38.922658 ], [ -77.027035, 38.922429 ], [ -77.027035, 38.920763 ], [ -77.027995, 38.920709 ], [ -77.028081, 38.920705 ], [ -77.028397, 38.920688 ], [ -77.028451, 38.920684 ], [ -77.028676, 38.920672 ], [ -77.028735, 38.920667 ], [ -77.028794, 38.920663 ], [ -77.028832, 38.920659 ], [ -77.028864, 38.920659 ], [ -77.029390, 38.920551 ], [ -77.029486, 38.920530 ], [ -77.029674, 38.920500 ], [ -77.029980, 38.920442 ], [ -77.030264, 38.920388 ], [ -77.031503, 38.920154 ], [ -77.031938, 38.920062 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004401", "GEOID": "11001004401", "NAME": "44.01", "NAMELSAD": "Census Tract 44.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 246895, "AWATER": 0, "INTPTLAT": "+38.9186825", "INTPTLON": "-077.0282129" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.023939, 38.917763 ], [ -77.023939, 38.917704 ], [ -77.023939, 38.917103 ], [ -77.023950, 38.916990 ], [ -77.024138, 38.916995 ], [ -77.024707, 38.916995 ], [ -77.025248, 38.916999 ], [ -77.025313, 38.916999 ], [ -77.025753, 38.916999 ], [ -77.025989, 38.916999 ], [ -77.026203, 38.916995 ], [ -77.027035, 38.916999 ], [ -77.027228, 38.917003 ], [ -77.027239, 38.917003 ], [ -77.027571, 38.916999 ], [ -77.027957, 38.916999 ], [ -77.028081, 38.916999 ], [ -77.028639, 38.916999 ], [ -77.029454, 38.916999 ], [ -77.029620, 38.916999 ], [ -77.029771, 38.916999 ], [ -77.029974, 38.916999 ], [ -77.031375, 38.917003 ], [ -77.031949, 38.916999 ], [ -77.031949, 38.918113 ], [ -77.031949, 38.919186 ], [ -77.031949, 38.919265 ], [ -77.031949, 38.919954 ], [ -77.031949, 38.919975 ], [ -77.031943, 38.920021 ], [ -77.031938, 38.920062 ], [ -77.031503, 38.920154 ], [ -77.030264, 38.920388 ], [ -77.029980, 38.920442 ], [ -77.029674, 38.920500 ], [ -77.029486, 38.920530 ], [ -77.029390, 38.920551 ], [ -77.028864, 38.920659 ], [ -77.028832, 38.920659 ], [ -77.028794, 38.920663 ], [ -77.028735, 38.920667 ], [ -77.028676, 38.920672 ], [ -77.028451, 38.920684 ], [ -77.028397, 38.920688 ], [ -77.028081, 38.920705 ], [ -77.027995, 38.920709 ], [ -77.027035, 38.920763 ], [ -77.026831, 38.920776 ], [ -77.026761, 38.920772 ], [ -77.026724, 38.920768 ], [ -77.026686, 38.920759 ], [ -77.026531, 38.920709 ], [ -77.026477, 38.920692 ], [ -77.026101, 38.920576 ], [ -77.026026, 38.920551 ], [ -77.025989, 38.920534 ], [ -77.025967, 38.920521 ], [ -77.025924, 38.920496 ], [ -77.025903, 38.920484 ], [ -77.025865, 38.920455 ], [ -77.025844, 38.920438 ], [ -77.025661, 38.920229 ], [ -77.025442, 38.919979 ], [ -77.025238, 38.919741 ], [ -77.025157, 38.919645 ], [ -77.025114, 38.919591 ], [ -77.025077, 38.919541 ], [ -77.025023, 38.919465 ], [ -77.024991, 38.919415 ], [ -77.024857, 38.919182 ], [ -77.024594, 38.918731 ], [ -77.024583, 38.918710 ], [ -77.024503, 38.918564 ], [ -77.024471, 38.918505 ], [ -77.024406, 38.918401 ], [ -77.024320, 38.918251 ], [ -77.024267, 38.918159 ], [ -77.024106, 38.917938 ], [ -77.024047, 38.917871 ], [ -77.023972, 38.917796 ], [ -77.023939, 38.917763 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005202", "GEOID": "11001005202", "NAME": "52.02", "NAMELSAD": "Census Tract 52.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 246292, "AWATER": 0, "INTPTLAT": "+38.9111270", "INTPTLON": "-077.0344946" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.034566, 38.906559 ], [ -77.034797, 38.906643 ], [ -77.035044, 38.906726 ], [ -77.035425, 38.906860 ], [ -77.036181, 38.907131 ], [ -77.036160, 38.907156 ], [ -77.036144, 38.907181 ], [ -77.036133, 38.907223 ], [ -77.036133, 38.907244 ], [ -77.036138, 38.907269 ], [ -77.036149, 38.907294 ], [ -77.036160, 38.907311 ], [ -77.036176, 38.907344 ], [ -77.036224, 38.907390 ], [ -77.036251, 38.907411 ], [ -77.036272, 38.907423 ], [ -77.036299, 38.907436 ], [ -77.036342, 38.907448 ], [ -77.036385, 38.907453 ], [ -77.036524, 38.907461 ], [ -77.036524, 38.908325 ], [ -77.036524, 38.908697 ], [ -77.036524, 38.909081 ], [ -77.036519, 38.909561 ], [ -77.036519, 38.909644 ], [ -77.036519, 38.909728 ], [ -77.036524, 38.909794 ], [ -77.036519, 38.910383 ], [ -77.036519, 38.910458 ], [ -77.036514, 38.911013 ], [ -77.036514, 38.911126 ], [ -77.036514, 38.911209 ], [ -77.036514, 38.911869 ], [ -77.036508, 38.912232 ], [ -77.036514, 38.912608 ], [ -77.036508, 38.912691 ], [ -77.036508, 38.912958 ], [ -77.036508, 38.913347 ], [ -77.036508, 38.913426 ], [ -77.036508, 38.913564 ], [ -77.036508, 38.914010 ], [ -77.036508, 38.914094 ], [ -77.036160, 38.914090 ], [ -77.035334, 38.914094 ], [ -77.034690, 38.914090 ], [ -77.034540, 38.914094 ], [ -77.034405, 38.914094 ], [ -77.033252, 38.914094 ], [ -77.032324, 38.914094 ], [ -77.031949, 38.914094 ], [ -77.031949, 38.913701 ], [ -77.031949, 38.913351 ], [ -77.031949, 38.912608 ], [ -77.031949, 38.911869 ], [ -77.031949, 38.911130 ], [ -77.031949, 38.911013 ], [ -77.031949, 38.910959 ], [ -77.031949, 38.910884 ], [ -77.031949, 38.910387 ], [ -77.031949, 38.909648 ], [ -77.032152, 38.909652 ], [ -77.032614, 38.909652 ], [ -77.032753, 38.909652 ], [ -77.033992, 38.909652 ], [ -77.034411, 38.909652 ], [ -77.034556, 38.909648 ], [ -77.034556, 38.908960 ], [ -77.034556, 38.908914 ], [ -77.034556, 38.908701 ], [ -77.034556, 38.908438 ], [ -77.034561, 38.907933 ], [ -77.034561, 38.907736 ], [ -77.034561, 38.907244 ], [ -77.034566, 38.906697 ], [ -77.034566, 38.906559 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004402", "GEOID": "11001004402", "NAME": "44.02", "NAMELSAD": "Census Tract 44.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 274746, "AWATER": 0, "INTPTLAT": "+38.9155152", "INTPTLON": "-077.0270354" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.031949, 38.916999 ], [ -77.031375, 38.917003 ], [ -77.029974, 38.916999 ], [ -77.029771, 38.916999 ], [ -77.029620, 38.916999 ], [ -77.029454, 38.916999 ], [ -77.028639, 38.916999 ], [ -77.028081, 38.916999 ], [ -77.027957, 38.916999 ], [ -77.027571, 38.916999 ], [ -77.027239, 38.917003 ], [ -77.027228, 38.917003 ], [ -77.027035, 38.916999 ], [ -77.026203, 38.916995 ], [ -77.025989, 38.916999 ], [ -77.025753, 38.916999 ], [ -77.025313, 38.916999 ], [ -77.025248, 38.916999 ], [ -77.024707, 38.916995 ], [ -77.024138, 38.916995 ], [ -77.023950, 38.916990 ], [ -77.022942, 38.916711 ], [ -77.022700, 38.916615 ], [ -77.022513, 38.916531 ], [ -77.022148, 38.916373 ], [ -77.021890, 38.916260 ], [ -77.021917, 38.915571 ], [ -77.021917, 38.915463 ], [ -77.021917, 38.915262 ], [ -77.021912, 38.914332 ], [ -77.021912, 38.914090 ], [ -77.022942, 38.914090 ], [ -77.023076, 38.914090 ], [ -77.023446, 38.914085 ], [ -77.023966, 38.914085 ], [ -77.024304, 38.914081 ], [ -77.024363, 38.914094 ], [ -77.025581, 38.914085 ], [ -77.025656, 38.914081 ], [ -77.025989, 38.914081 ], [ -77.027029, 38.914090 ], [ -77.028075, 38.914094 ], [ -77.029615, 38.914090 ], [ -77.029749, 38.914090 ], [ -77.030259, 38.914090 ], [ -77.030919, 38.914094 ], [ -77.031670, 38.914094 ], [ -77.031777, 38.914090 ], [ -77.031949, 38.914094 ], [ -77.031949, 38.914181 ], [ -77.031949, 38.914482 ], [ -77.031949, 38.914833 ], [ -77.031949, 38.915262 ], [ -77.031954, 38.915567 ], [ -77.031949, 38.916289 ], [ -77.031949, 38.916373 ], [ -77.031949, 38.916999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005001", "GEOID": "11001005001", "NAME": "50.01", "NAMELSAD": "Census Tract 50.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 200969, "AWATER": 0, "INTPTLAT": "+38.9119619", "INTPTLON": "-077.0295088" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.031949, 38.909648 ], [ -77.031949, 38.910387 ], [ -77.031949, 38.910884 ], [ -77.031949, 38.910959 ], [ -77.031949, 38.911013 ], [ -77.031949, 38.911130 ], [ -77.031949, 38.911869 ], [ -77.031949, 38.912608 ], [ -77.031949, 38.913351 ], [ -77.031949, 38.913701 ], [ -77.031949, 38.914094 ], [ -77.031777, 38.914090 ], [ -77.031670, 38.914094 ], [ -77.030919, 38.914094 ], [ -77.030259, 38.914090 ], [ -77.029749, 38.914090 ], [ -77.029615, 38.914090 ], [ -77.028075, 38.914094 ], [ -77.027029, 38.914090 ], [ -77.027029, 38.913977 ], [ -77.027029, 38.912608 ], [ -77.027035, 38.911752 ], [ -77.027035, 38.911255 ], [ -77.027035, 38.911122 ], [ -77.027035, 38.910946 ], [ -77.027035, 38.910888 ], [ -77.027035, 38.910713 ], [ -77.027035, 38.910667 ], [ -77.027035, 38.910613 ], [ -77.027035, 38.910550 ], [ -77.027035, 38.910471 ], [ -77.027035, 38.909644 ], [ -77.027341, 38.909648 ], [ -77.027400, 38.909644 ], [ -77.027577, 38.909644 ], [ -77.028081, 38.909644 ], [ -77.028075, 38.909945 ], [ -77.028075, 38.909982 ], [ -77.028075, 38.910099 ], [ -77.028081, 38.910178 ], [ -77.028081, 38.910254 ], [ -77.028966, 38.909874 ], [ -77.028998, 38.909924 ], [ -77.029041, 38.909970 ], [ -77.029063, 38.909991 ], [ -77.029111, 38.910032 ], [ -77.029138, 38.910053 ], [ -77.029191, 38.910087 ], [ -77.029223, 38.910103 ], [ -77.029261, 38.910120 ], [ -77.029282, 38.910132 ], [ -77.029368, 38.910158 ], [ -77.029433, 38.910174 ], [ -77.029497, 38.910183 ], [ -77.029567, 38.910191 ], [ -77.029626, 38.910191 ], [ -77.029653, 38.910191 ], [ -77.029749, 38.910183 ], [ -77.029803, 38.910174 ], [ -77.029856, 38.910162 ], [ -77.029910, 38.910145 ], [ -77.029948, 38.910132 ], [ -77.029974, 38.910124 ], [ -77.030033, 38.910095 ], [ -77.030071, 38.910074 ], [ -77.030103, 38.910053 ], [ -77.030135, 38.910028 ], [ -77.030168, 38.909999 ], [ -77.030194, 38.909974 ], [ -77.030221, 38.909945 ], [ -77.030243, 38.909915 ], [ -77.030264, 38.909882 ], [ -77.030280, 38.909849 ], [ -77.030296, 38.909815 ], [ -77.030312, 38.909765 ], [ -77.030318, 38.909698 ], [ -77.030323, 38.909669 ], [ -77.030554, 38.909644 ], [ -77.030817, 38.909644 ], [ -77.030897, 38.909644 ], [ -77.031080, 38.909648 ], [ -77.031369, 38.909648 ], [ -77.031772, 38.909644 ], [ -77.031949, 38.909648 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003500", "GEOID": "11001003500", "NAME": "35", "NAMELSAD": "Census Tract 35", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 382021, "AWATER": 0, "INTPTLAT": "+38.9223765", "INTPTLON": "-077.0243410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.022768, 38.925897 ], [ -77.022759, 38.925834 ], [ -77.022749, 38.925776 ], [ -77.022738, 38.925692 ], [ -77.022663, 38.925162 ], [ -77.022609, 38.924808 ], [ -77.022545, 38.924378 ], [ -77.022518, 38.924182 ], [ -77.022480, 38.923885 ], [ -77.022303, 38.922650 ], [ -77.022255, 38.922341 ], [ -77.022148, 38.921586 ], [ -77.022105, 38.921306 ], [ -77.022067, 38.921039 ], [ -77.022057, 38.920964 ], [ -77.022040, 38.920876 ], [ -77.021928, 38.920075 ], [ -77.021922, 38.919991 ], [ -77.021906, 38.919895 ], [ -77.021901, 38.919766 ], [ -77.021896, 38.919486 ], [ -77.021896, 38.918990 ], [ -77.021896, 38.918597 ], [ -77.021896, 38.917758 ], [ -77.021890, 38.916874 ], [ -77.021890, 38.916452 ], [ -77.021890, 38.916260 ], [ -77.022148, 38.916373 ], [ -77.022513, 38.916531 ], [ -77.022700, 38.916615 ], [ -77.022942, 38.916711 ], [ -77.023950, 38.916990 ], [ -77.023939, 38.917103 ], [ -77.023939, 38.917704 ], [ -77.023939, 38.917763 ], [ -77.023972, 38.917796 ], [ -77.024047, 38.917871 ], [ -77.024106, 38.917938 ], [ -77.024267, 38.918159 ], [ -77.024320, 38.918251 ], [ -77.024406, 38.918401 ], [ -77.024471, 38.918505 ], [ -77.024503, 38.918564 ], [ -77.024583, 38.918710 ], [ -77.024594, 38.918731 ], [ -77.024857, 38.919182 ], [ -77.024991, 38.919415 ], [ -77.025023, 38.919465 ], [ -77.025077, 38.919541 ], [ -77.025114, 38.919591 ], [ -77.025157, 38.919645 ], [ -77.025238, 38.919741 ], [ -77.025442, 38.919979 ], [ -77.025661, 38.920229 ], [ -77.025844, 38.920438 ], [ -77.025865, 38.920455 ], [ -77.025903, 38.920484 ], [ -77.025924, 38.920496 ], [ -77.025967, 38.920521 ], [ -77.025989, 38.920534 ], [ -77.026026, 38.920551 ], [ -77.026101, 38.920576 ], [ -77.026477, 38.920692 ], [ -77.026531, 38.920709 ], [ -77.026686, 38.920759 ], [ -77.026724, 38.920768 ], [ -77.026761, 38.920772 ], [ -77.026831, 38.920776 ], [ -77.027035, 38.920763 ], [ -77.027035, 38.922429 ], [ -77.027029, 38.922658 ], [ -77.027035, 38.923030 ], [ -77.027035, 38.923476 ], [ -77.027035, 38.923768 ], [ -77.027035, 38.923848 ], [ -77.027035, 38.923906 ], [ -77.027035, 38.924766 ], [ -77.027035, 38.925755 ], [ -77.027035, 38.925855 ], [ -77.027035, 38.925897 ], [ -77.022768, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003400", "GEOID": "11001003400", "NAME": "34", "NAMELSAD": "Census Tract 34", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 911458, "AWATER": 159593, "INTPTLAT": "+38.9221674", "INTPTLON": "-077.0177044" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.012138, 38.925897 ], [ -77.012138, 38.925797 ], [ -77.012143, 38.924695 ], [ -77.012143, 38.924194 ], [ -77.012143, 38.924161 ], [ -77.012143, 38.923622 ], [ -77.012143, 38.923476 ], [ -77.012143, 38.923376 ], [ -77.012143, 38.923071 ], [ -77.012143, 38.922537 ], [ -77.012143, 38.922374 ], [ -77.012143, 38.922003 ], [ -77.012143, 38.921481 ], [ -77.012143, 38.921306 ], [ -77.012256, 38.921306 ], [ -77.012637, 38.921306 ], [ -77.012669, 38.921306 ], [ -77.012701, 38.921298 ], [ -77.012733, 38.921289 ], [ -77.012878, 38.921214 ], [ -77.012969, 38.921172 ], [ -77.013066, 38.921131 ], [ -77.013211, 38.921068 ], [ -77.013280, 38.921043 ], [ -77.013420, 38.920993 ], [ -77.013559, 38.920947 ], [ -77.013634, 38.920926 ], [ -77.013779, 38.920884 ], [ -77.013924, 38.920847 ], [ -77.014064, 38.920818 ], [ -77.014273, 38.920772 ], [ -77.014412, 38.920747 ], [ -77.014557, 38.920722 ], [ -77.014627, 38.920713 ], [ -77.014933, 38.920667 ], [ -77.014922, 38.920617 ], [ -77.014868, 38.920229 ], [ -77.014799, 38.919662 ], [ -77.014745, 38.919173 ], [ -77.014740, 38.919098 ], [ -77.014686, 38.918664 ], [ -77.014632, 38.918184 ], [ -77.014621, 38.918109 ], [ -77.014616, 38.918063 ], [ -77.014611, 38.918021 ], [ -77.014573, 38.917721 ], [ -77.014573, 38.917692 ], [ -77.014568, 38.917637 ], [ -77.014562, 38.917579 ], [ -77.014498, 38.916995 ], [ -77.014418, 38.916281 ], [ -77.014412, 38.916222 ], [ -77.014380, 38.915964 ], [ -77.014369, 38.915884 ], [ -77.014337, 38.915567 ], [ -77.014326, 38.915484 ], [ -77.014305, 38.915308 ], [ -77.014289, 38.915171 ], [ -77.014273, 38.915054 ], [ -77.014267, 38.914987 ], [ -77.014251, 38.914837 ], [ -77.014241, 38.914745 ], [ -77.014187, 38.914311 ], [ -77.014166, 38.914085 ], [ -77.014080, 38.913342 ], [ -77.014048, 38.913067 ], [ -77.014048, 38.913042 ], [ -77.014048, 38.913013 ], [ -77.014058, 38.912988 ], [ -77.014069, 38.912958 ], [ -77.014080, 38.912933 ], [ -77.014203, 38.912988 ], [ -77.014546, 38.913134 ], [ -77.015174, 38.913401 ], [ -77.015705, 38.913626 ], [ -77.015855, 38.913693 ], [ -77.016091, 38.913793 ], [ -77.016220, 38.913847 ], [ -77.016354, 38.913902 ], [ -77.016757, 38.914077 ], [ -77.016896, 38.914135 ], [ -77.017062, 38.914206 ], [ -77.017325, 38.914319 ], [ -77.017840, 38.914532 ], [ -77.018108, 38.914645 ], [ -77.018157, 38.914666 ], [ -77.018409, 38.914782 ], [ -77.018924, 38.914999 ], [ -77.019734, 38.915346 ], [ -77.019975, 38.915450 ], [ -77.020040, 38.915479 ], [ -77.020115, 38.915509 ], [ -77.020656, 38.915738 ], [ -77.020823, 38.915809 ], [ -77.021198, 38.915968 ], [ -77.021756, 38.916202 ], [ -77.021890, 38.916260 ], [ -77.021890, 38.916452 ], [ -77.021890, 38.916874 ], [ -77.021896, 38.917758 ], [ -77.021896, 38.918597 ], [ -77.021896, 38.918990 ], [ -77.021896, 38.919486 ], [ -77.021901, 38.919766 ], [ -77.021906, 38.919895 ], [ -77.021922, 38.919991 ], [ -77.021928, 38.920075 ], [ -77.022040, 38.920876 ], [ -77.022057, 38.920964 ], [ -77.022067, 38.921039 ], [ -77.022105, 38.921306 ], [ -77.022148, 38.921586 ], [ -77.022255, 38.922341 ], [ -77.022303, 38.922650 ], [ -77.022480, 38.923885 ], [ -77.022518, 38.924182 ], [ -77.022545, 38.924378 ], [ -77.022609, 38.924808 ], [ -77.022663, 38.925162 ], [ -77.022738, 38.925692 ], [ -77.022749, 38.925776 ], [ -77.022759, 38.925834 ], [ -77.022768, 38.925897 ], [ -77.012138, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004901", "GEOID": "11001004901", "NAME": "49.01", "NAMELSAD": "Census Tract 49.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 271866, "AWATER": 0, "INTPTLAT": "+38.9113296", "INTPTLON": "-077.0244761" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027029, 38.914090 ], [ -77.025989, 38.914081 ], [ -77.025656, 38.914081 ], [ -77.025581, 38.914085 ], [ -77.024363, 38.914094 ], [ -77.024304, 38.914081 ], [ -77.023966, 38.914085 ], [ -77.023446, 38.914085 ], [ -77.023076, 38.914090 ], [ -77.022942, 38.914090 ], [ -77.021912, 38.914090 ], [ -77.021912, 38.913522 ], [ -77.021912, 38.913029 ], [ -77.021917, 38.912608 ], [ -77.021917, 38.912391 ], [ -77.021917, 38.912311 ], [ -77.021917, 38.912257 ], [ -77.021912, 38.912107 ], [ -77.021917, 38.911493 ], [ -77.021917, 38.911122 ], [ -77.021912, 38.910137 ], [ -77.021912, 38.909644 ], [ -77.021912, 38.908571 ], [ -77.022942, 38.908571 ], [ -77.023966, 38.908575 ], [ -77.024594, 38.908571 ], [ -77.024975, 38.908571 ], [ -77.025136, 38.908571 ], [ -77.025383, 38.908571 ], [ -77.025983, 38.908571 ], [ -77.026498, 38.908571 ], [ -77.026890, 38.908575 ], [ -77.027035, 38.908575 ], [ -77.027035, 38.909644 ], [ -77.027035, 38.910471 ], [ -77.027035, 38.910550 ], [ -77.027035, 38.910613 ], [ -77.027035, 38.910667 ], [ -77.027035, 38.910713 ], [ -77.027035, 38.910888 ], [ -77.027035, 38.910946 ], [ -77.027035, 38.911122 ], [ -77.027035, 38.911255 ], [ -77.027035, 38.911752 ], [ -77.027029, 38.912608 ], [ -77.027029, 38.913977 ], [ -77.027029, 38.914090 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004801", "GEOID": "11001004801", "NAME": "48.01", "NAMELSAD": "Census Tract 48.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 317222, "AWATER": 0, "INTPTLAT": "+38.9117413", "INTPTLON": "-077.0195344" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.021890, 38.916260 ], [ -77.021756, 38.916202 ], [ -77.021198, 38.915968 ], [ -77.020823, 38.915809 ], [ -77.020656, 38.915738 ], [ -77.020115, 38.915509 ], [ -77.020040, 38.915479 ], [ -77.019975, 38.915450 ], [ -77.019734, 38.915346 ], [ -77.018924, 38.914999 ], [ -77.018409, 38.914782 ], [ -77.018157, 38.914666 ], [ -77.018108, 38.914645 ], [ -77.017888, 38.914090 ], [ -77.017819, 38.913889 ], [ -77.017797, 38.913818 ], [ -77.017760, 38.913718 ], [ -77.017722, 38.913610 ], [ -77.017636, 38.913376 ], [ -77.017502, 38.912996 ], [ -77.017459, 38.912875 ], [ -77.017357, 38.912604 ], [ -77.017331, 38.912533 ], [ -77.017213, 38.912195 ], [ -77.017121, 38.911944 ], [ -77.017094, 38.911865 ], [ -77.016950, 38.911468 ], [ -77.016826, 38.911122 ], [ -77.016628, 38.910575 ], [ -77.016606, 38.910521 ], [ -77.016569, 38.910404 ], [ -77.016510, 38.910245 ], [ -77.016290, 38.909644 ], [ -77.016150, 38.909248 ], [ -77.015904, 38.908575 ], [ -77.016172, 38.908571 ], [ -77.016633, 38.908567 ], [ -77.017046, 38.908571 ], [ -77.018538, 38.908571 ], [ -77.018924, 38.908571 ], [ -77.019900, 38.908571 ], [ -77.020828, 38.908571 ], [ -77.021783, 38.908571 ], [ -77.021912, 38.908571 ], [ -77.021912, 38.909644 ], [ -77.021912, 38.910137 ], [ -77.021917, 38.911122 ], [ -77.021917, 38.911493 ], [ -77.021912, 38.912107 ], [ -77.021917, 38.912257 ], [ -77.021917, 38.912311 ], [ -77.021917, 38.912391 ], [ -77.021917, 38.912608 ], [ -77.021912, 38.913029 ], [ -77.021912, 38.913522 ], [ -77.021912, 38.914090 ], [ -77.021912, 38.914332 ], [ -77.021917, 38.915262 ], [ -77.021917, 38.915463 ], [ -77.021917, 38.915571 ], [ -77.021890, 38.916260 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005203", "GEOID": "11001005203", "NAME": "52.03", "NAMELSAD": "Census Tract 52.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 93419, "AWATER": 0, "INTPTLAT": "+38.9077655", "INTPTLON": "-077.0331441" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.031621, 38.905374 ], [ -77.031654, 38.905353 ], [ -77.031691, 38.905336 ], [ -77.031713, 38.905328 ], [ -77.031788, 38.905307 ], [ -77.031841, 38.905299 ], [ -77.031868, 38.905294 ], [ -77.031890, 38.905294 ], [ -77.031916, 38.905290 ], [ -77.031949, 38.905290 ], [ -77.031991, 38.905290 ], [ -77.032029, 38.905294 ], [ -77.032056, 38.905294 ], [ -77.032120, 38.905307 ], [ -77.032152, 38.905311 ], [ -77.032190, 38.905328 ], [ -77.032228, 38.905344 ], [ -77.032254, 38.905361 ], [ -77.032281, 38.905382 ], [ -77.032319, 38.905415 ], [ -77.032351, 38.905453 ], [ -77.032378, 38.905491 ], [ -77.032388, 38.905507 ], [ -77.032405, 38.905541 ], [ -77.032410, 38.905578 ], [ -77.032415, 38.905599 ], [ -77.032410, 38.905645 ], [ -77.032394, 38.905716 ], [ -77.032388, 38.905737 ], [ -77.032367, 38.905795 ], [ -77.034566, 38.906559 ], [ -77.034566, 38.906697 ], [ -77.034561, 38.907244 ], [ -77.034561, 38.907736 ], [ -77.034561, 38.907933 ], [ -77.034556, 38.908438 ], [ -77.034556, 38.908701 ], [ -77.034556, 38.908914 ], [ -77.034556, 38.908960 ], [ -77.034556, 38.909648 ], [ -77.034411, 38.909652 ], [ -77.033992, 38.909652 ], [ -77.032753, 38.909652 ], [ -77.032614, 38.909652 ], [ -77.032152, 38.909652 ], [ -77.031949, 38.909648 ], [ -77.031949, 38.909565 ], [ -77.031949, 38.909060 ], [ -77.031949, 38.908838 ], [ -77.031949, 38.908713 ], [ -77.031949, 38.907728 ], [ -77.031949, 38.907645 ], [ -77.031949, 38.907240 ], [ -77.031949, 38.905992 ], [ -77.031863, 38.905987 ], [ -77.031831, 38.905987 ], [ -77.031798, 38.905983 ], [ -77.031761, 38.905975 ], [ -77.031713, 38.905962 ], [ -77.031670, 38.905946 ], [ -77.031637, 38.905929 ], [ -77.031611, 38.905912 ], [ -77.031589, 38.905891 ], [ -77.031562, 38.905858 ], [ -77.031525, 38.905799 ], [ -77.031509, 38.905770 ], [ -77.031503, 38.905745 ], [ -77.031493, 38.905712 ], [ -77.031493, 38.905649 ], [ -77.031503, 38.905607 ], [ -77.031530, 38.905507 ], [ -77.031584, 38.905415 ], [ -77.031605, 38.905390 ], [ -77.031621, 38.905374 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005003", "GEOID": "11001005003", "NAME": "50.03", "NAMELSAD": "Census Tract 50.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 94136, "AWATER": 0, "INTPTLAT": "+38.9074041", "INTPTLON": "-077.0307609" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.031949, 38.909648 ], [ -77.031772, 38.909644 ], [ -77.031369, 38.909648 ], [ -77.031080, 38.909648 ], [ -77.030897, 38.909644 ], [ -77.030817, 38.909644 ], [ -77.030554, 38.909644 ], [ -77.030323, 38.909669 ], [ -77.030318, 38.909602 ], [ -77.030312, 38.909573 ], [ -77.030312, 38.909544 ], [ -77.030291, 38.909481 ], [ -77.030286, 38.909456 ], [ -77.030270, 38.909423 ], [ -77.030253, 38.909389 ], [ -77.030243, 38.909373 ], [ -77.030232, 38.909356 ], [ -77.030210, 38.909335 ], [ -77.030189, 38.909310 ], [ -77.030157, 38.909281 ], [ -77.030060, 38.909214 ], [ -77.030012, 38.909177 ], [ -77.029991, 38.909168 ], [ -77.029942, 38.909139 ], [ -77.029846, 38.909118 ], [ -77.029797, 38.909110 ], [ -77.029701, 38.909101 ], [ -77.029626, 38.909097 ], [ -77.029620, 38.908575 ], [ -77.029620, 38.907240 ], [ -77.029620, 38.907048 ], [ -77.029620, 38.906518 ], [ -77.029620, 38.906434 ], [ -77.029620, 38.906376 ], [ -77.029620, 38.906154 ], [ -77.029620, 38.906092 ], [ -77.029615, 38.905649 ], [ -77.029615, 38.905265 ], [ -77.029615, 38.905194 ], [ -77.029620, 38.904835 ], [ -77.030028, 38.904981 ], [ -77.030559, 38.905165 ], [ -77.030811, 38.905253 ], [ -77.031530, 38.905507 ], [ -77.031503, 38.905607 ], [ -77.031493, 38.905649 ], [ -77.031493, 38.905712 ], [ -77.031503, 38.905745 ], [ -77.031509, 38.905770 ], [ -77.031525, 38.905799 ], [ -77.031562, 38.905858 ], [ -77.031589, 38.905891 ], [ -77.031611, 38.905912 ], [ -77.031637, 38.905929 ], [ -77.031670, 38.905946 ], [ -77.031713, 38.905962 ], [ -77.031761, 38.905975 ], [ -77.031798, 38.905983 ], [ -77.031831, 38.905987 ], [ -77.031863, 38.905987 ], [ -77.031949, 38.905992 ], [ -77.031949, 38.907240 ], [ -77.031949, 38.907645 ], [ -77.031949, 38.907728 ], [ -77.031949, 38.908713 ], [ -77.031949, 38.908838 ], [ -77.031949, 38.909060 ], [ -77.031949, 38.909565 ], [ -77.031949, 38.909648 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010100", "GEOID": "11001010100", "NAME": "101", "NAMELSAD": "Census Tract 101", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 579230, "AWATER": 0, "INTPTLAT": "+38.9026971", "INTPTLON": "-077.0318472" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036524, 38.907023 ], [ -77.036471, 38.907023 ], [ -77.036428, 38.907027 ], [ -77.036385, 38.907035 ], [ -77.036363, 38.907039 ], [ -77.036342, 38.907048 ], [ -77.036278, 38.907073 ], [ -77.036245, 38.907089 ], [ -77.036181, 38.907131 ], [ -77.035425, 38.906860 ], [ -77.035044, 38.906726 ], [ -77.034797, 38.906643 ], [ -77.034566, 38.906559 ], [ -77.032367, 38.905795 ], [ -77.032388, 38.905737 ], [ -77.032394, 38.905716 ], [ -77.032410, 38.905645 ], [ -77.032415, 38.905599 ], [ -77.032410, 38.905578 ], [ -77.032405, 38.905541 ], [ -77.032388, 38.905507 ], [ -77.032378, 38.905491 ], [ -77.032351, 38.905453 ], [ -77.032319, 38.905415 ], [ -77.032281, 38.905382 ], [ -77.032254, 38.905361 ], [ -77.032228, 38.905344 ], [ -77.032190, 38.905328 ], [ -77.032152, 38.905311 ], [ -77.032120, 38.905307 ], [ -77.032056, 38.905294 ], [ -77.032029, 38.905294 ], [ -77.031991, 38.905290 ], [ -77.031949, 38.905290 ], [ -77.031916, 38.905290 ], [ -77.031890, 38.905294 ], [ -77.031868, 38.905294 ], [ -77.031841, 38.905299 ], [ -77.031788, 38.905307 ], [ -77.031713, 38.905328 ], [ -77.031691, 38.905336 ], [ -77.031654, 38.905353 ], [ -77.031621, 38.905374 ], [ -77.031605, 38.905390 ], [ -77.031584, 38.905415 ], [ -77.031530, 38.905507 ], [ -77.030811, 38.905253 ], [ -77.030559, 38.905165 ], [ -77.030028, 38.904981 ], [ -77.029620, 38.904835 ], [ -77.028875, 38.904581 ], [ -77.028338, 38.904393 ], [ -77.028081, 38.904305 ], [ -77.027523, 38.904113 ], [ -77.027045, 38.903950 ], [ -77.026842, 38.903875 ], [ -77.026590, 38.903792 ], [ -77.026284, 38.903687 ], [ -77.025983, 38.903579 ], [ -77.025699, 38.903474 ], [ -77.025265, 38.903328 ], [ -77.024841, 38.903182 ], [ -77.024508, 38.903061 ], [ -77.024320, 38.902998 ], [ -77.024245, 38.902973 ], [ -77.024106, 38.902927 ], [ -77.023934, 38.902932 ], [ -77.023972, 38.902522 ], [ -77.023988, 38.902088 ], [ -77.024170, 38.902088 ], [ -77.024353, 38.902026 ], [ -77.025983, 38.901462 ], [ -77.026278, 38.901362 ], [ -77.026541, 38.901270 ], [ -77.027029, 38.901103 ], [ -77.027748, 38.900853 ], [ -77.028070, 38.900744 ], [ -77.029631, 38.900218 ], [ -77.030055, 38.900072 ], [ -77.030270, 38.900005 ], [ -77.030339, 38.899980 ], [ -77.030500, 38.899901 ], [ -77.031949, 38.899391 ], [ -77.033536, 38.898849 ], [ -77.033638, 38.898782 ], [ -77.033853, 38.898769 ], [ -77.035055, 38.898761 ], [ -77.035114, 38.898761 ], [ -77.035140, 38.898874 ], [ -77.035146, 38.899020 ], [ -77.035146, 38.899851 ], [ -77.035151, 38.900068 ], [ -77.035124, 38.900201 ], [ -77.035473, 38.900197 ], [ -77.035596, 38.900197 ], [ -77.036551, 38.900201 ], [ -77.036546, 38.900715 ], [ -77.036546, 38.900848 ], [ -77.036541, 38.901345 ], [ -77.036541, 38.901646 ], [ -77.036541, 38.902527 ], [ -77.036541, 38.903090 ], [ -77.036535, 38.903441 ], [ -77.036535, 38.903737 ], [ -77.036535, 38.903863 ], [ -77.036535, 38.904318 ], [ -77.036535, 38.904990 ], [ -77.036530, 38.905653 ], [ -77.036524, 38.907023 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005004", "GEOID": "11001005004", "NAME": "50.04", "NAMELSAD": "Census Tract 50.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 143156, "AWATER": 0, "INTPTLAT": "+38.9072520", "INTPTLON": "-077.0283862" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.029803, 38.910174 ], [ -77.029749, 38.910183 ], [ -77.029653, 38.910191 ], [ -77.029626, 38.910191 ], [ -77.029567, 38.910191 ], [ -77.029497, 38.910183 ], [ -77.029433, 38.910174 ], [ -77.029368, 38.910158 ], [ -77.029282, 38.910132 ], [ -77.029261, 38.910120 ], [ -77.029223, 38.910103 ], [ -77.029191, 38.910087 ], [ -77.029138, 38.910053 ], [ -77.029111, 38.910032 ], [ -77.029063, 38.909991 ], [ -77.029041, 38.909970 ], [ -77.028998, 38.909924 ], [ -77.028966, 38.909874 ], [ -77.028081, 38.910254 ], [ -77.028081, 38.910178 ], [ -77.028075, 38.910099 ], [ -77.028075, 38.909982 ], [ -77.028075, 38.909945 ], [ -77.028081, 38.909644 ], [ -77.027577, 38.909644 ], [ -77.027400, 38.909644 ], [ -77.027341, 38.909648 ], [ -77.027035, 38.909644 ], [ -77.027035, 38.908575 ], [ -77.027035, 38.907240 ], [ -77.027035, 38.906501 ], [ -77.027035, 38.906121 ], [ -77.027035, 38.905770 ], [ -77.027035, 38.905649 ], [ -77.027035, 38.905261 ], [ -77.027035, 38.905015 ], [ -77.027040, 38.904593 ], [ -77.027045, 38.904167 ], [ -77.027045, 38.903950 ], [ -77.027523, 38.904113 ], [ -77.028081, 38.904305 ], [ -77.028338, 38.904393 ], [ -77.028875, 38.904581 ], [ -77.029620, 38.904835 ], [ -77.029615, 38.905194 ], [ -77.029615, 38.905265 ], [ -77.029615, 38.905649 ], [ -77.029620, 38.906092 ], [ -77.029620, 38.906154 ], [ -77.029620, 38.906376 ], [ -77.029620, 38.906434 ], [ -77.029620, 38.906518 ], [ -77.029620, 38.907048 ], [ -77.029620, 38.907240 ], [ -77.029620, 38.908575 ], [ -77.029626, 38.909097 ], [ -77.029701, 38.909101 ], [ -77.029797, 38.909110 ], [ -77.029846, 38.909118 ], [ -77.029942, 38.909139 ], [ -77.029991, 38.909168 ], [ -77.030012, 38.909177 ], [ -77.030060, 38.909214 ], [ -77.030157, 38.909281 ], [ -77.030189, 38.909310 ], [ -77.030210, 38.909335 ], [ -77.030232, 38.909356 ], [ -77.030243, 38.909373 ], [ -77.030253, 38.909389 ], [ -77.030270, 38.909423 ], [ -77.030286, 38.909456 ], [ -77.030291, 38.909481 ], [ -77.030312, 38.909544 ], [ -77.030312, 38.909573 ], [ -77.030318, 38.909602 ], [ -77.030323, 38.909669 ], [ -77.030318, 38.909698 ], [ -77.030312, 38.909765 ], [ -77.030296, 38.909815 ], [ -77.030280, 38.909849 ], [ -77.030264, 38.909882 ], [ -77.030243, 38.909915 ], [ -77.030221, 38.909945 ], [ -77.030194, 38.909974 ], [ -77.030168, 38.909999 ], [ -77.030135, 38.910028 ], [ -77.030103, 38.910053 ], [ -77.030071, 38.910074 ], [ -77.030033, 38.910095 ], [ -77.029974, 38.910124 ], [ -77.029948, 38.910132 ], [ -77.029910, 38.910145 ], [ -77.029856, 38.910162 ], [ -77.029803, 38.910174 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005802", "GEOID": "11001005802", "NAME": "58.02", "NAMELSAD": "Census Tract 58.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 682488, "AWATER": 0, "INTPTLAT": "+38.8979674", "INTPTLON": "-077.0265766" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.021917, 38.902940 ], [ -77.021917, 38.902902 ], [ -77.021917, 38.902522 ], [ -77.021912, 38.902268 ], [ -77.021912, 38.902101 ], [ -77.021912, 38.901951 ], [ -77.021912, 38.901612 ], [ -77.021912, 38.901341 ], [ -77.021912, 38.900999 ], [ -77.021906, 38.900869 ], [ -77.021912, 38.900765 ], [ -77.021912, 38.900514 ], [ -77.021912, 38.899951 ], [ -77.021912, 38.899813 ], [ -77.021912, 38.899692 ], [ -77.021912, 38.899153 ], [ -77.021912, 38.898794 ], [ -77.021912, 38.898448 ], [ -77.021912, 38.898335 ], [ -77.021912, 38.898193 ], [ -77.021912, 38.897913 ], [ -77.021912, 38.897554 ], [ -77.021912, 38.897467 ], [ -77.021912, 38.897275 ], [ -77.021912, 38.897124 ], [ -77.021917, 38.896323 ], [ -77.021912, 38.896252 ], [ -77.021912, 38.896131 ], [ -77.021912, 38.895012 ], [ -77.021906, 38.894795 ], [ -77.021912, 38.894361 ], [ -77.021912, 38.894106 ], [ -77.021906, 38.893897 ], [ -77.021906, 38.893876 ], [ -77.021912, 38.893784 ], [ -77.021912, 38.893642 ], [ -77.021912, 38.893571 ], [ -77.021917, 38.893296 ], [ -77.022958, 38.893601 ], [ -77.023344, 38.893713 ], [ -77.023897, 38.893855 ], [ -77.023972, 38.893876 ], [ -77.025999, 38.894444 ], [ -77.027051, 38.894736 ], [ -77.028092, 38.895020 ], [ -77.028805, 38.895221 ], [ -77.029631, 38.895446 ], [ -77.029883, 38.895500 ], [ -77.030205, 38.895504 ], [ -77.030768, 38.895504 ], [ -77.031954, 38.895500 ], [ -77.031959, 38.896106 ], [ -77.032169, 38.896143 ], [ -77.032485, 38.896235 ], [ -77.032861, 38.896339 ], [ -77.033054, 38.896385 ], [ -77.033198, 38.896394 ], [ -77.033359, 38.896394 ], [ -77.033644, 38.896402 ], [ -77.033644, 38.897346 ], [ -77.033638, 38.898314 ], [ -77.033638, 38.898431 ], [ -77.033638, 38.898619 ], [ -77.033638, 38.898782 ], [ -77.033536, 38.898849 ], [ -77.031949, 38.899391 ], [ -77.030500, 38.899901 ], [ -77.030339, 38.899980 ], [ -77.030270, 38.900005 ], [ -77.030055, 38.900072 ], [ -77.029631, 38.900218 ], [ -77.028070, 38.900744 ], [ -77.027748, 38.900853 ], [ -77.027029, 38.901103 ], [ -77.026541, 38.901270 ], [ -77.026278, 38.901362 ], [ -77.025983, 38.901462 ], [ -77.024353, 38.902026 ], [ -77.024170, 38.902088 ], [ -77.023988, 38.902088 ], [ -77.023972, 38.902522 ], [ -77.023934, 38.902932 ], [ -77.023451, 38.902948 ], [ -77.022942, 38.902944 ], [ -77.022861, 38.902944 ], [ -77.022561, 38.902944 ], [ -77.022116, 38.902940 ], [ -77.021917, 38.902940 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004902", "GEOID": "11001004902", "NAME": "49.02", "NAMELSAD": "Census Tract 49.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 263879, "AWATER": 0, "INTPTLAT": "+38.9058867", "INTPTLON": "-077.0243932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027045, 38.903950 ], [ -77.027045, 38.904167 ], [ -77.027040, 38.904593 ], [ -77.027035, 38.905015 ], [ -77.027035, 38.905261 ], [ -77.027035, 38.905649 ], [ -77.027035, 38.905770 ], [ -77.027035, 38.906121 ], [ -77.027035, 38.906501 ], [ -77.027035, 38.907240 ], [ -77.027035, 38.908575 ], [ -77.026890, 38.908575 ], [ -77.026498, 38.908571 ], [ -77.025983, 38.908571 ], [ -77.025383, 38.908571 ], [ -77.025136, 38.908571 ], [ -77.024975, 38.908571 ], [ -77.024594, 38.908571 ], [ -77.023966, 38.908575 ], [ -77.022942, 38.908571 ], [ -77.021912, 38.908571 ], [ -77.021912, 38.908450 ], [ -77.021917, 38.907240 ], [ -77.021912, 38.906968 ], [ -77.021912, 38.906609 ], [ -77.021912, 38.905870 ], [ -77.021912, 38.905645 ], [ -77.021912, 38.905048 ], [ -77.021912, 38.904693 ], [ -77.021912, 38.904167 ], [ -77.021912, 38.903178 ], [ -77.021917, 38.902940 ], [ -77.022116, 38.902940 ], [ -77.022561, 38.902944 ], [ -77.022861, 38.902944 ], [ -77.022942, 38.902944 ], [ -77.023451, 38.902948 ], [ -77.023934, 38.902932 ], [ -77.024106, 38.902927 ], [ -77.024245, 38.902973 ], [ -77.024320, 38.902998 ], [ -77.024508, 38.903061 ], [ -77.024841, 38.903182 ], [ -77.025265, 38.903328 ], [ -77.025699, 38.903474 ], [ -77.025983, 38.903579 ], [ -77.026284, 38.903687 ], [ -77.026590, 38.903792 ], [ -77.026842, 38.903875 ], [ -77.027045, 38.903950 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004802", "GEOID": "11001004802", "NAME": "48.02", "NAMELSAD": "Census Tract 48.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 288793, "AWATER": 0, "INTPTLAT": "+38.9062118", "INTPTLON": "-077.0188917" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.021917, 38.902940 ], [ -77.021912, 38.903178 ], [ -77.021912, 38.904167 ], [ -77.021912, 38.904693 ], [ -77.021912, 38.905048 ], [ -77.021912, 38.905645 ], [ -77.021912, 38.905870 ], [ -77.021912, 38.906609 ], [ -77.021912, 38.906968 ], [ -77.021917, 38.907240 ], [ -77.021912, 38.908450 ], [ -77.021912, 38.908571 ], [ -77.021783, 38.908571 ], [ -77.020828, 38.908571 ], [ -77.019900, 38.908571 ], [ -77.018924, 38.908571 ], [ -77.018538, 38.908571 ], [ -77.017046, 38.908571 ], [ -77.016633, 38.908567 ], [ -77.016172, 38.908571 ], [ -77.015904, 38.908575 ], [ -77.015437, 38.907236 ], [ -77.015174, 38.906459 ], [ -77.014900, 38.905653 ], [ -77.014863, 38.905549 ], [ -77.014809, 38.905415 ], [ -77.015233, 38.905194 ], [ -77.015705, 38.905040 ], [ -77.015807, 38.905002 ], [ -77.015887, 38.904977 ], [ -77.015989, 38.904944 ], [ -77.016177, 38.904881 ], [ -77.016231, 38.904814 ], [ -77.017035, 38.904535 ], [ -77.018001, 38.904201 ], [ -77.018124, 38.904159 ], [ -77.018216, 38.904163 ], [ -77.018597, 38.904029 ], [ -77.018924, 38.903917 ], [ -77.019235, 38.903808 ], [ -77.019905, 38.903579 ], [ -77.020748, 38.903282 ], [ -77.020887, 38.903236 ], [ -77.021499, 38.903032 ], [ -77.021703, 38.902965 ], [ -77.021917, 38.902940 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004703", "GEOID": "11001004703", "NAME": "47.03", "NAMELSAD": "Census Tract 47.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 124124, "AWATER": 0, "INTPTLAT": "+38.9034762", "INTPTLON": "-077.0170713" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.013720, 38.902514 ], [ -77.013876, 38.902514 ], [ -77.013924, 38.902514 ], [ -77.014198, 38.902514 ], [ -77.014546, 38.902518 ], [ -77.014686, 38.902518 ], [ -77.015018, 38.902518 ], [ -77.015174, 38.902518 ], [ -77.015432, 38.902518 ], [ -77.015952, 38.902518 ], [ -77.016059, 38.902518 ], [ -77.016172, 38.902518 ], [ -77.016413, 38.902518 ], [ -77.017400, 38.902518 ], [ -77.017647, 38.902518 ], [ -77.017931, 38.902522 ], [ -77.018607, 38.902518 ], [ -77.018924, 38.902522 ], [ -77.019492, 38.902518 ], [ -77.019905, 38.902522 ], [ -77.021509, 38.902522 ], [ -77.021917, 38.902522 ], [ -77.021917, 38.902902 ], [ -77.021917, 38.902940 ], [ -77.021703, 38.902965 ], [ -77.021499, 38.903032 ], [ -77.020887, 38.903236 ], [ -77.020748, 38.903282 ], [ -77.019905, 38.903579 ], [ -77.019235, 38.903808 ], [ -77.018924, 38.903917 ], [ -77.018597, 38.904029 ], [ -77.018216, 38.904163 ], [ -77.018124, 38.904159 ], [ -77.018001, 38.904201 ], [ -77.017035, 38.904535 ], [ -77.016231, 38.904814 ], [ -77.016177, 38.904881 ], [ -77.015989, 38.904944 ], [ -77.015887, 38.904977 ], [ -77.015807, 38.905002 ], [ -77.015705, 38.905040 ], [ -77.015233, 38.905194 ], [ -77.014809, 38.905415 ], [ -77.014772, 38.905361 ], [ -77.014756, 38.905324 ], [ -77.014702, 38.905215 ], [ -77.014664, 38.905123 ], [ -77.014579, 38.904885 ], [ -77.014498, 38.904677 ], [ -77.014402, 38.904384 ], [ -77.014332, 38.904188 ], [ -77.014241, 38.903954 ], [ -77.014192, 38.903812 ], [ -77.014166, 38.903737 ], [ -77.014107, 38.903562 ], [ -77.013854, 38.902873 ], [ -77.013785, 38.902685 ], [ -77.013720, 38.902514 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005801", "GEOID": "11001005801", "NAME": "58.01", "NAMELSAD": "Census Tract 58.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 232951, "AWATER": 0, "INTPTLAT": "+38.8975634", "INTPTLON": "-077.0205095" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.021912, 38.902101 ], [ -77.021697, 38.902076 ], [ -77.021644, 38.902063 ], [ -77.021601, 38.902051 ], [ -77.021526, 38.902026 ], [ -77.020909, 38.901817 ], [ -77.020420, 38.901646 ], [ -77.020254, 38.901583 ], [ -77.020007, 38.901508 ], [ -77.019916, 38.901470 ], [ -77.019734, 38.901408 ], [ -77.019476, 38.901320 ], [ -77.018924, 38.901124 ], [ -77.018924, 38.900990 ], [ -77.018924, 38.900865 ], [ -77.018924, 38.900231 ], [ -77.018924, 38.899934 ], [ -77.018929, 38.899809 ], [ -77.018929, 38.899675 ], [ -77.018924, 38.899112 ], [ -77.018924, 38.898581 ], [ -77.018929, 38.898314 ], [ -77.018924, 38.898026 ], [ -77.018924, 38.897621 ], [ -77.018924, 38.897337 ], [ -77.018924, 38.896895 ], [ -77.018929, 38.896523 ], [ -77.018924, 38.896127 ], [ -77.018924, 38.896085 ], [ -77.018929, 38.895780 ], [ -77.018924, 38.895471 ], [ -77.018929, 38.895367 ], [ -77.018929, 38.894895 ], [ -77.018929, 38.894803 ], [ -77.019004, 38.894678 ], [ -77.019691, 38.894482 ], [ -77.019900, 38.894411 ], [ -77.019922, 38.893596 ], [ -77.019922, 38.893296 ], [ -77.019922, 38.893004 ], [ -77.019900, 38.892832 ], [ -77.019895, 38.892757 ], [ -77.020699, 38.892987 ], [ -77.020748, 38.892999 ], [ -77.021547, 38.893204 ], [ -77.021917, 38.893296 ], [ -77.021912, 38.893571 ], [ -77.021912, 38.893642 ], [ -77.021912, 38.893784 ], [ -77.021906, 38.893876 ], [ -77.021906, 38.893897 ], [ -77.021912, 38.894106 ], [ -77.021912, 38.894361 ], [ -77.021906, 38.894795 ], [ -77.021912, 38.895012 ], [ -77.021912, 38.896131 ], [ -77.021912, 38.896252 ], [ -77.021917, 38.896323 ], [ -77.021912, 38.897124 ], [ -77.021912, 38.897275 ], [ -77.021912, 38.897467 ], [ -77.021912, 38.897554 ], [ -77.021912, 38.897913 ], [ -77.021912, 38.898193 ], [ -77.021912, 38.898335 ], [ -77.021912, 38.898448 ], [ -77.021912, 38.898794 ], [ -77.021912, 38.899153 ], [ -77.021912, 38.899692 ], [ -77.021912, 38.899813 ], [ -77.021912, 38.899951 ], [ -77.021912, 38.900514 ], [ -77.021912, 38.900765 ], [ -77.021906, 38.900869 ], [ -77.021912, 38.900999 ], [ -77.021912, 38.901341 ], [ -77.021912, 38.901612 ], [ -77.021912, 38.901951 ], [ -77.021912, 38.902101 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "005900", "GEOID": "11001005900", "NAME": "59", "NAMELSAD": "Census Tract 59", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 641993, "AWATER": 0, "INTPTLAT": "+38.8959944", "INTPTLON": "-077.0149475" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.013178, 38.892089 ], [ -77.013634, 38.892085 ], [ -77.014021, 38.892081 ], [ -77.014235, 38.892081 ], [ -77.014670, 38.892085 ], [ -77.014992, 38.892081 ], [ -77.015045, 38.892081 ], [ -77.015228, 38.892085 ], [ -77.015571, 38.892068 ], [ -77.015839, 38.892018 ], [ -77.016252, 38.891885 ], [ -77.016386, 38.891784 ], [ -77.017561, 38.892110 ], [ -77.018580, 38.892394 ], [ -77.019895, 38.892757 ], [ -77.019900, 38.892832 ], [ -77.019922, 38.893004 ], [ -77.019922, 38.893296 ], [ -77.019922, 38.893596 ], [ -77.019900, 38.894411 ], [ -77.019691, 38.894482 ], [ -77.019004, 38.894678 ], [ -77.018929, 38.894803 ], [ -77.018929, 38.894895 ], [ -77.018929, 38.895367 ], [ -77.018924, 38.895471 ], [ -77.018929, 38.895780 ], [ -77.018924, 38.896085 ], [ -77.018924, 38.896127 ], [ -77.018929, 38.896523 ], [ -77.018924, 38.896895 ], [ -77.018924, 38.897337 ], [ -77.018924, 38.897621 ], [ -77.018924, 38.898026 ], [ -77.018929, 38.898314 ], [ -77.018924, 38.898581 ], [ -77.018924, 38.899112 ], [ -77.018929, 38.899675 ], [ -77.018929, 38.899809 ], [ -77.018924, 38.899934 ], [ -77.018924, 38.900231 ], [ -77.018924, 38.900865 ], [ -77.018924, 38.900990 ], [ -77.018924, 38.901124 ], [ -77.018795, 38.901082 ], [ -77.018183, 38.900865 ], [ -77.018135, 38.900853 ], [ -77.017717, 38.900706 ], [ -77.017325, 38.900573 ], [ -77.016526, 38.900297 ], [ -77.016199, 38.900155 ], [ -77.015984, 38.900055 ], [ -77.015668, 38.899938 ], [ -77.015238, 38.899763 ], [ -77.014257, 38.899437 ], [ -77.014074, 38.899383 ], [ -77.013656, 38.899233 ], [ -77.012422, 38.898849 ], [ -77.012347, 38.898824 ], [ -77.012299, 38.898803 ], [ -77.011902, 38.898636 ], [ -77.011178, 38.898331 ], [ -77.010255, 38.897955 ], [ -77.009295, 38.897563 ], [ -77.009225, 38.897534 ], [ -77.009059, 38.897471 ], [ -77.009059, 38.897341 ], [ -77.009053, 38.897129 ], [ -77.009053, 38.896511 ], [ -77.009053, 38.896127 ], [ -77.009053, 38.895434 ], [ -77.009059, 38.895104 ], [ -77.009493, 38.894791 ], [ -77.009847, 38.894782 ], [ -77.009901, 38.894782 ], [ -77.009928, 38.894782 ], [ -77.010067, 38.894786 ], [ -77.010276, 38.894791 ], [ -77.010480, 38.894791 ], [ -77.010620, 38.894791 ], [ -77.010882, 38.894791 ], [ -77.010942, 38.894786 ], [ -77.010909, 38.894699 ], [ -77.010748, 38.894202 ], [ -77.010657, 38.893947 ], [ -77.010888, 38.893776 ], [ -77.011022, 38.893680 ], [ -77.011161, 38.893576 ], [ -77.011902, 38.893049 ], [ -77.012170, 38.892857 ], [ -77.012417, 38.892674 ], [ -77.012749, 38.892436 ], [ -77.012980, 38.892244 ], [ -77.013178, 38.892089 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003301", "GEOID": "11001003301", "NAME": "33.01", "NAMELSAD": "Census Tract 33.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 442120, "AWATER": 0, "INTPTLAT": "+38.9204778", "INTPTLON": "-077.0114293" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.014273, 38.915054 ], [ -77.014289, 38.915171 ], [ -77.014305, 38.915308 ], [ -77.014326, 38.915484 ], [ -77.014337, 38.915567 ], [ -77.014369, 38.915884 ], [ -77.014380, 38.915964 ], [ -77.014412, 38.916222 ], [ -77.014418, 38.916281 ], [ -77.014498, 38.916995 ], [ -77.014562, 38.917579 ], [ -77.014568, 38.917637 ], [ -77.014573, 38.917692 ], [ -77.014573, 38.917721 ], [ -77.014611, 38.918021 ], [ -77.014616, 38.918063 ], [ -77.014621, 38.918109 ], [ -77.014632, 38.918184 ], [ -77.014686, 38.918664 ], [ -77.014740, 38.919098 ], [ -77.014745, 38.919173 ], [ -77.014799, 38.919662 ], [ -77.014868, 38.920229 ], [ -77.014922, 38.920617 ], [ -77.014933, 38.920667 ], [ -77.014627, 38.920713 ], [ -77.014557, 38.920722 ], [ -77.014412, 38.920747 ], [ -77.014273, 38.920772 ], [ -77.014064, 38.920818 ], [ -77.013924, 38.920847 ], [ -77.013779, 38.920884 ], [ -77.013634, 38.920926 ], [ -77.013559, 38.920947 ], [ -77.013420, 38.920993 ], [ -77.013280, 38.921043 ], [ -77.013211, 38.921068 ], [ -77.013066, 38.921131 ], [ -77.012969, 38.921172 ], [ -77.012878, 38.921214 ], [ -77.012733, 38.921289 ], [ -77.012701, 38.921298 ], [ -77.012669, 38.921306 ], [ -77.012637, 38.921306 ], [ -77.012256, 38.921306 ], [ -77.012143, 38.921306 ], [ -77.012143, 38.921481 ], [ -77.012143, 38.922003 ], [ -77.012143, 38.922374 ], [ -77.012143, 38.922537 ], [ -77.012143, 38.923071 ], [ -77.012143, 38.923376 ], [ -77.012143, 38.923476 ], [ -77.012143, 38.923622 ], [ -77.012143, 38.924161 ], [ -77.012143, 38.924194 ], [ -77.012143, 38.924695 ], [ -77.012138, 38.925797 ], [ -77.012138, 38.925897 ], [ -77.008960, 38.925897 ], [ -77.008962, 38.925838 ], [ -77.008962, 38.925133 ], [ -77.008967, 38.925037 ], [ -77.008967, 38.924515 ], [ -77.008967, 38.924436 ], [ -77.008962, 38.923447 ], [ -77.008962, 38.922596 ], [ -77.008967, 38.922374 ], [ -77.008973, 38.921306 ], [ -77.008978, 38.920968 ], [ -77.008989, 38.920229 ], [ -77.008994, 38.919177 ], [ -77.009000, 38.918105 ], [ -77.009000, 38.916894 ], [ -77.009037, 38.916882 ], [ -77.009091, 38.916865 ], [ -77.009118, 38.916857 ], [ -77.009182, 38.916832 ], [ -77.012154, 38.915797 ], [ -77.012744, 38.915567 ], [ -77.014273, 38.915054 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009203", "GEOID": "11001009203", "NAME": "92.03", "NAMELSAD": "Census Tract 92.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 581087, "AWATER": 0, "INTPTLAT": "+38.9219735", "INTPTLON": "-077.0054956" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.004576, 38.925897 ], [ -77.004451, 38.925855 ], [ -77.004375, 38.925834 ], [ -77.004268, 38.925797 ], [ -77.004193, 38.925772 ], [ -77.004037, 38.925730 ], [ -77.003919, 38.925705 ], [ -77.003796, 38.925676 ], [ -77.003624, 38.925646 ], [ -77.003506, 38.925630 ], [ -77.003394, 38.925617 ], [ -77.003238, 38.925605 ], [ -77.003120, 38.925596 ], [ -77.003056, 38.925596 ], [ -77.002653, 38.925592 ], [ -77.002439, 38.925592 ], [ -77.002675, 38.925463 ], [ -77.002863, 38.925363 ], [ -77.002884, 38.925350 ], [ -77.002911, 38.925329 ], [ -77.002938, 38.925308 ], [ -77.002965, 38.925283 ], [ -77.002991, 38.925242 ], [ -77.003050, 38.925037 ], [ -77.003147, 38.924720 ], [ -77.003244, 38.924415 ], [ -77.003367, 38.924019 ], [ -77.003555, 38.923430 ], [ -77.003297, 38.923434 ], [ -77.002519, 38.923439 ], [ -77.002031, 38.923439 ], [ -77.001516, 38.923439 ], [ -77.000948, 38.923439 ], [ -77.000701, 38.923439 ], [ -77.000567, 38.923439 ], [ -77.000567, 38.923359 ], [ -77.000567, 38.922984 ], [ -77.000567, 38.922370 ], [ -77.000567, 38.921669 ], [ -77.000567, 38.921293 ], [ -77.000567, 38.921218 ], [ -77.000567, 38.920375 ], [ -77.000567, 38.920229 ], [ -77.000567, 38.919829 ], [ -77.000567, 38.919762 ], [ -77.002026, 38.919244 ], [ -77.003512, 38.918727 ], [ -77.004831, 38.918263 ], [ -77.005105, 38.918167 ], [ -77.005336, 38.918092 ], [ -77.005550, 38.918017 ], [ -77.006076, 38.917834 ], [ -77.006698, 38.917621 ], [ -77.006999, 38.917512 ], [ -77.007133, 38.917466 ], [ -77.008334, 38.917074 ], [ -77.008924, 38.916911 ], [ -77.009000, 38.916894 ], [ -77.009000, 38.918105 ], [ -77.008994, 38.919177 ], [ -77.008989, 38.920229 ], [ -77.008978, 38.920968 ], [ -77.008973, 38.921306 ], [ -77.008967, 38.922374 ], [ -77.008962, 38.922596 ], [ -77.008962, 38.923447 ], [ -77.008967, 38.924436 ], [ -77.008967, 38.924515 ], [ -77.008967, 38.925037 ], [ -77.008962, 38.925133 ], [ -77.008962, 38.925838 ], [ -77.008960, 38.925897 ], [ -77.004576, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003302", "GEOID": "11001003302", "NAME": "33.02", "NAMELSAD": "Census Tract 33.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 204237, "AWATER": 0, "INTPTLAT": "+38.9139237", "INTPTLON": "-077.0111677" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009021, 38.910784 ], [ -77.009128, 38.910830 ], [ -77.009815, 38.911122 ], [ -77.009847, 38.911134 ], [ -77.009869, 38.911147 ], [ -77.010051, 38.911222 ], [ -77.010255, 38.911305 ], [ -77.011237, 38.911727 ], [ -77.011446, 38.911815 ], [ -77.012154, 38.912115 ], [ -77.012481, 38.912253 ], [ -77.012980, 38.912466 ], [ -77.013307, 38.912604 ], [ -77.013538, 38.912708 ], [ -77.013602, 38.912733 ], [ -77.013929, 38.912867 ], [ -77.014080, 38.912933 ], [ -77.014069, 38.912958 ], [ -77.014058, 38.912988 ], [ -77.014048, 38.913013 ], [ -77.014048, 38.913042 ], [ -77.014048, 38.913067 ], [ -77.014080, 38.913342 ], [ -77.014166, 38.914085 ], [ -77.014187, 38.914311 ], [ -77.014241, 38.914745 ], [ -77.014251, 38.914837 ], [ -77.014267, 38.914987 ], [ -77.014273, 38.915054 ], [ -77.012744, 38.915567 ], [ -77.012154, 38.915797 ], [ -77.009182, 38.916832 ], [ -77.009118, 38.916857 ], [ -77.009091, 38.916865 ], [ -77.009037, 38.916882 ], [ -77.009000, 38.916894 ], [ -77.008994, 38.916823 ], [ -77.008994, 38.916181 ], [ -77.008994, 38.915563 ], [ -77.009005, 38.914824 ], [ -77.009010, 38.914085 ], [ -77.008994, 38.913610 ], [ -77.008989, 38.913342 ], [ -77.009016, 38.912599 ], [ -77.009016, 38.911861 ], [ -77.009021, 38.911573 ], [ -77.009021, 38.911426 ], [ -77.009021, 38.911113 ], [ -77.009021, 38.910784 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004600", "GEOID": "11001004600", "NAME": "46", "NAMELSAD": "Census Tract 46", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 437422, "AWATER": 0, "INTPTLAT": "+38.9097456", "INTPTLON": "-077.0133001" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.018108, 38.914645 ], [ -77.017840, 38.914532 ], [ -77.017325, 38.914319 ], [ -77.017062, 38.914206 ], [ -77.016896, 38.914135 ], [ -77.016757, 38.914077 ], [ -77.016354, 38.913902 ], [ -77.016220, 38.913847 ], [ -77.016091, 38.913793 ], [ -77.015855, 38.913693 ], [ -77.015705, 38.913626 ], [ -77.015174, 38.913401 ], [ -77.014546, 38.913134 ], [ -77.014203, 38.912988 ], [ -77.014080, 38.912933 ], [ -77.013929, 38.912867 ], [ -77.013602, 38.912733 ], [ -77.013538, 38.912708 ], [ -77.013307, 38.912604 ], [ -77.012980, 38.912466 ], [ -77.012481, 38.912253 ], [ -77.012154, 38.912115 ], [ -77.011446, 38.911815 ], [ -77.011237, 38.911727 ], [ -77.010255, 38.911305 ], [ -77.010051, 38.911222 ], [ -77.009869, 38.911147 ], [ -77.009847, 38.911134 ], [ -77.009815, 38.911122 ], [ -77.009128, 38.910830 ], [ -77.009021, 38.910784 ], [ -77.009021, 38.910383 ], [ -77.009016, 38.909640 ], [ -77.009010, 38.909089 ], [ -77.009005, 38.908567 ], [ -77.008989, 38.907682 ], [ -77.008994, 38.907365 ], [ -77.009000, 38.907273 ], [ -77.009080, 38.907269 ], [ -77.009166, 38.907265 ], [ -77.009300, 38.907236 ], [ -77.009552, 38.907139 ], [ -77.010094, 38.906985 ], [ -77.010121, 38.906977 ], [ -77.010201, 38.906947 ], [ -77.012159, 38.906271 ], [ -77.012240, 38.906292 ], [ -77.012621, 38.906154 ], [ -77.013237, 38.905958 ], [ -77.013425, 38.905883 ], [ -77.013645, 38.905812 ], [ -77.014155, 38.905649 ], [ -77.014648, 38.905470 ], [ -77.014809, 38.905415 ], [ -77.014863, 38.905549 ], [ -77.014900, 38.905653 ], [ -77.015174, 38.906459 ], [ -77.015437, 38.907236 ], [ -77.015904, 38.908575 ], [ -77.016150, 38.909248 ], [ -77.016290, 38.909644 ], [ -77.016510, 38.910245 ], [ -77.016569, 38.910404 ], [ -77.016606, 38.910521 ], [ -77.016628, 38.910575 ], [ -77.016826, 38.911122 ], [ -77.016950, 38.911468 ], [ -77.017094, 38.911865 ], [ -77.017121, 38.911944 ], [ -77.017213, 38.912195 ], [ -77.017331, 38.912533 ], [ -77.017357, 38.912604 ], [ -77.017459, 38.912875 ], [ -77.017502, 38.912996 ], [ -77.017636, 38.913376 ], [ -77.017722, 38.913610 ], [ -77.017760, 38.913718 ], [ -77.017797, 38.913818 ], [ -77.017819, 38.913889 ], [ -77.017888, 38.914090 ], [ -77.018108, 38.914645 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008701", "GEOID": "11001008701", "NAME": "87.01", "NAMELSAD": "Census Tract 87.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 382686, "AWATER": 0, "INTPTLAT": "+38.9141018", "INTPTLON": "-077.0062645" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.005330, 38.909210 ], [ -77.005599, 38.909318 ], [ -77.005690, 38.909360 ], [ -77.005877, 38.909440 ], [ -77.006006, 38.909494 ], [ -77.006205, 38.909577 ], [ -77.006366, 38.909648 ], [ -77.006924, 38.909882 ], [ -77.007696, 38.910212 ], [ -77.008050, 38.910362 ], [ -77.008281, 38.910458 ], [ -77.008806, 38.910683 ], [ -77.009021, 38.910784 ], [ -77.009021, 38.911113 ], [ -77.009021, 38.911426 ], [ -77.009021, 38.911573 ], [ -77.009016, 38.911861 ], [ -77.009016, 38.912599 ], [ -77.008989, 38.913342 ], [ -77.008994, 38.913610 ], [ -77.009010, 38.914085 ], [ -77.009005, 38.914824 ], [ -77.008994, 38.915563 ], [ -77.008994, 38.916181 ], [ -77.008994, 38.916823 ], [ -77.009000, 38.916894 ], [ -77.008924, 38.916911 ], [ -77.008334, 38.917074 ], [ -77.007133, 38.917466 ], [ -77.006999, 38.917512 ], [ -77.006698, 38.917621 ], [ -77.006076, 38.917834 ], [ -77.005550, 38.918017 ], [ -77.005336, 38.918092 ], [ -77.005105, 38.918167 ], [ -77.004831, 38.918263 ], [ -77.003512, 38.918727 ], [ -77.003512, 38.918652 ], [ -77.003506, 38.918105 ], [ -77.003506, 38.917834 ], [ -77.003506, 38.917675 ], [ -77.003506, 38.917629 ], [ -77.003506, 38.917554 ], [ -77.003506, 38.917283 ], [ -77.003506, 38.916999 ], [ -77.003501, 38.916702 ], [ -77.003506, 38.916348 ], [ -77.003506, 38.916281 ], [ -77.003506, 38.915959 ], [ -77.003501, 38.915655 ], [ -77.003506, 38.915567 ], [ -77.003506, 38.914820 ], [ -77.003506, 38.914745 ], [ -77.003506, 38.914599 ], [ -77.003501, 38.914077 ], [ -77.003501, 38.913338 ], [ -77.003501, 38.913159 ], [ -77.003506, 38.912754 ], [ -77.003506, 38.912599 ], [ -77.004150, 38.912604 ], [ -77.004370, 38.912599 ], [ -77.004579, 38.911861 ], [ -77.004783, 38.911118 ], [ -77.004933, 38.910579 ], [ -77.004960, 38.910483 ], [ -77.005137, 38.909853 ], [ -77.005277, 38.909360 ], [ -77.005330, 38.909210 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009204", "GEOID": "11001009204", "NAME": "92.04", "NAMELSAD": "Census Tract 92.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308465, "AWATER": 0, "INTPTLAT": "+38.9234161", "INTPTLON": "-076.9987071" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994483, 38.925584 ], [ -76.994628, 38.924995 ], [ -76.994800, 38.924411 ], [ -76.994939, 38.923981 ], [ -76.995025, 38.923764 ], [ -76.995090, 38.923585 ], [ -76.995369, 38.922913 ], [ -76.995648, 38.922266 ], [ -76.995948, 38.921573 ], [ -76.996028, 38.921381 ], [ -76.996189, 38.921327 ], [ -76.996382, 38.921256 ], [ -76.999521, 38.920096 ], [ -77.000567, 38.919762 ], [ -77.000567, 38.919829 ], [ -77.000567, 38.920229 ], [ -77.000567, 38.920375 ], [ -77.000567, 38.921218 ], [ -77.000567, 38.921293 ], [ -77.000567, 38.921669 ], [ -77.000567, 38.922370 ], [ -77.000567, 38.922984 ], [ -77.000567, 38.923359 ], [ -77.000567, 38.923439 ], [ -77.000701, 38.923439 ], [ -77.000948, 38.923439 ], [ -77.001516, 38.923439 ], [ -77.002031, 38.923439 ], [ -77.002519, 38.923439 ], [ -77.003297, 38.923434 ], [ -77.003555, 38.923430 ], [ -77.003367, 38.924019 ], [ -77.003244, 38.924415 ], [ -77.003147, 38.924720 ], [ -77.003050, 38.925037 ], [ -77.002991, 38.925242 ], [ -77.002965, 38.925283 ], [ -77.002938, 38.925308 ], [ -77.002911, 38.925329 ], [ -77.002884, 38.925350 ], [ -77.002863, 38.925363 ], [ -77.002675, 38.925463 ], [ -77.002439, 38.925592 ], [ -77.001988, 38.925592 ], [ -77.001656, 38.925592 ], [ -77.001339, 38.925592 ], [ -77.000695, 38.925592 ], [ -77.000567, 38.925592 ], [ -77.000427, 38.925588 ], [ -77.000143, 38.925584 ], [ -77.000127, 38.925584 ], [ -76.999499, 38.925588 ], [ -76.998802, 38.925588 ], [ -76.998442, 38.925584 ], [ -76.997820, 38.925580 ], [ -76.997166, 38.925584 ], [ -76.996608, 38.925580 ], [ -76.996275, 38.925580 ], [ -76.996168, 38.925584 ], [ -76.995481, 38.925580 ], [ -76.994961, 38.925584 ], [ -76.994805, 38.925584 ], [ -76.994644, 38.925584 ], [ -76.994483, 38.925584 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008702", "GEOID": "11001008702", "NAME": "87.02", "NAMELSAD": "Census Tract 87.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 486411, "AWATER": 0, "INTPTLAT": "+38.9150961", "INTPTLON": "-077.0013085" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002503, 38.907999 ], [ -77.002879, 38.908162 ], [ -77.003142, 38.908275 ], [ -77.003270, 38.908329 ], [ -77.003404, 38.908388 ], [ -77.003775, 38.908546 ], [ -77.003812, 38.908563 ], [ -77.004268, 38.908755 ], [ -77.004327, 38.908780 ], [ -77.004375, 38.908805 ], [ -77.004408, 38.908818 ], [ -77.004510, 38.908864 ], [ -77.004590, 38.908897 ], [ -77.004730, 38.908960 ], [ -77.004810, 38.908997 ], [ -77.005094, 38.909118 ], [ -77.005330, 38.909210 ], [ -77.005277, 38.909360 ], [ -77.005137, 38.909853 ], [ -77.004960, 38.910483 ], [ -77.004933, 38.910579 ], [ -77.004783, 38.911118 ], [ -77.004579, 38.911861 ], [ -77.004370, 38.912599 ], [ -77.004150, 38.912604 ], [ -77.003506, 38.912599 ], [ -77.003506, 38.912754 ], [ -77.003501, 38.913159 ], [ -77.003501, 38.913338 ], [ -77.003501, 38.914077 ], [ -77.003506, 38.914599 ], [ -77.003506, 38.914745 ], [ -77.003506, 38.914820 ], [ -77.003506, 38.915567 ], [ -77.003501, 38.915655 ], [ -77.003506, 38.915959 ], [ -77.003506, 38.916281 ], [ -77.003506, 38.916348 ], [ -77.003501, 38.916702 ], [ -77.003506, 38.916999 ], [ -77.003506, 38.917283 ], [ -77.003506, 38.917554 ], [ -77.003506, 38.917629 ], [ -77.003506, 38.917675 ], [ -77.003506, 38.917834 ], [ -77.003506, 38.918105 ], [ -77.003512, 38.918652 ], [ -77.003512, 38.918727 ], [ -77.002026, 38.919244 ], [ -77.000567, 38.919762 ], [ -76.999521, 38.920096 ], [ -76.996382, 38.921256 ], [ -76.996189, 38.921327 ], [ -76.996028, 38.921381 ], [ -76.996082, 38.921268 ], [ -76.996259, 38.920868 ], [ -76.996656, 38.920037 ], [ -76.996919, 38.919478 ], [ -76.997665, 38.918105 ], [ -76.998925, 38.915571 ], [ -76.998990, 38.915442 ], [ -77.000159, 38.913163 ], [ -77.000518, 38.912428 ], [ -77.001489, 38.910446 ], [ -77.001725, 38.909978 ], [ -77.001801, 38.909811 ], [ -77.002423, 38.908338 ], [ -77.002503, 38.907999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004704", "GEOID": "11001004704", "NAME": "47.04", "NAMELSAD": "Census Tract 47.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 198509, "AWATER": 0, "INTPTLAT": "+38.9045660", "INTPTLON": "-077.0114767" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.013720, 38.902514 ], [ -77.013785, 38.902685 ], [ -77.013854, 38.902873 ], [ -77.014107, 38.903562 ], [ -77.014166, 38.903737 ], [ -77.014192, 38.903812 ], [ -77.014241, 38.903954 ], [ -77.014332, 38.904188 ], [ -77.014402, 38.904384 ], [ -77.014498, 38.904677 ], [ -77.014579, 38.904885 ], [ -77.014664, 38.905123 ], [ -77.014702, 38.905215 ], [ -77.014756, 38.905324 ], [ -77.014772, 38.905361 ], [ -77.014809, 38.905415 ], [ -77.014648, 38.905470 ], [ -77.014155, 38.905649 ], [ -77.013645, 38.905812 ], [ -77.013425, 38.905883 ], [ -77.013237, 38.905958 ], [ -77.012621, 38.906154 ], [ -77.012240, 38.906292 ], [ -77.012159, 38.906271 ], [ -77.010201, 38.906947 ], [ -77.010121, 38.906977 ], [ -77.010094, 38.906985 ], [ -77.009552, 38.907139 ], [ -77.009300, 38.907236 ], [ -77.009166, 38.907265 ], [ -77.009080, 38.907269 ], [ -77.009000, 38.907273 ], [ -77.009000, 38.906321 ], [ -77.008994, 38.905754 ], [ -77.009059, 38.905649 ], [ -77.009064, 38.905132 ], [ -77.009064, 38.904685 ], [ -77.009064, 38.904497 ], [ -77.009064, 38.904292 ], [ -77.009064, 38.903729 ], [ -77.009059, 38.903190 ], [ -77.009064, 38.902602 ], [ -77.009059, 38.902514 ], [ -77.009246, 38.902514 ], [ -77.009842, 38.902514 ], [ -77.011231, 38.902514 ], [ -77.011317, 38.902518 ], [ -77.011687, 38.902514 ], [ -77.012170, 38.902514 ], [ -77.012304, 38.902514 ], [ -77.012395, 38.902518 ], [ -77.013581, 38.902514 ], [ -77.013720, 38.902514 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "004702", "GEOID": "11001004702", "NAME": "47.02", "NAMELSAD": "Census Tract 47.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 326418, "AWATER": 0, "INTPTLAT": "+38.9008601", "INTPTLON": "-077.0136108" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.021917, 38.902522 ], [ -77.021509, 38.902522 ], [ -77.019905, 38.902522 ], [ -77.019492, 38.902518 ], [ -77.018924, 38.902522 ], [ -77.018607, 38.902518 ], [ -77.017931, 38.902522 ], [ -77.017647, 38.902518 ], [ -77.017400, 38.902518 ], [ -77.016413, 38.902518 ], [ -77.016172, 38.902518 ], [ -77.016059, 38.902518 ], [ -77.015952, 38.902518 ], [ -77.015432, 38.902518 ], [ -77.015174, 38.902518 ], [ -77.015018, 38.902518 ], [ -77.014686, 38.902518 ], [ -77.014546, 38.902518 ], [ -77.014198, 38.902514 ], [ -77.013924, 38.902514 ], [ -77.013876, 38.902514 ], [ -77.013720, 38.902514 ], [ -77.013581, 38.902514 ], [ -77.012395, 38.902518 ], [ -77.012304, 38.902514 ], [ -77.012170, 38.902514 ], [ -77.011687, 38.902514 ], [ -77.011317, 38.902518 ], [ -77.011231, 38.902514 ], [ -77.009842, 38.902514 ], [ -77.009246, 38.902514 ], [ -77.009059, 38.902514 ], [ -77.009059, 38.901312 ], [ -77.009059, 38.900402 ], [ -77.009059, 38.900210 ], [ -77.009064, 38.899563 ], [ -77.009064, 38.899066 ], [ -77.009064, 38.898915 ], [ -77.009069, 38.897859 ], [ -77.009064, 38.897554 ], [ -77.009059, 38.897471 ], [ -77.009225, 38.897534 ], [ -77.009295, 38.897563 ], [ -77.010255, 38.897955 ], [ -77.011178, 38.898331 ], [ -77.011902, 38.898636 ], [ -77.012299, 38.898803 ], [ -77.012347, 38.898824 ], [ -77.012422, 38.898849 ], [ -77.013656, 38.899233 ], [ -77.014074, 38.899383 ], [ -77.014257, 38.899437 ], [ -77.015238, 38.899763 ], [ -77.015668, 38.899938 ], [ -77.015984, 38.900055 ], [ -77.016199, 38.900155 ], [ -77.016526, 38.900297 ], [ -77.017325, 38.900573 ], [ -77.017717, 38.900706 ], [ -77.018135, 38.900853 ], [ -77.018183, 38.900865 ], [ -77.018795, 38.901082 ], [ -77.018924, 38.901124 ], [ -77.019476, 38.901320 ], [ -77.019734, 38.901408 ], [ -77.019916, 38.901470 ], [ -77.020007, 38.901508 ], [ -77.020254, 38.901583 ], [ -77.020420, 38.901646 ], [ -77.020909, 38.901817 ], [ -77.021526, 38.902026 ], [ -77.021601, 38.902051 ], [ -77.021644, 38.902063 ], [ -77.021697, 38.902076 ], [ -77.021912, 38.902101 ], [ -77.021912, 38.902268 ], [ -77.021917, 38.902522 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010601", "GEOID": "11001010601", "NAME": "106.01", "NAMELSAD": "Census Tract 106.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 224811, "AWATER": 0, "INTPTLAT": "+38.9076530", "INTPTLON": "-077.0063018" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009021, 38.910784 ], [ -77.008806, 38.910683 ], [ -77.008281, 38.910458 ], [ -77.008050, 38.910362 ], [ -77.007696, 38.910212 ], [ -77.006924, 38.909882 ], [ -77.006366, 38.909648 ], [ -77.006205, 38.909577 ], [ -77.006006, 38.909494 ], [ -77.005877, 38.909440 ], [ -77.005690, 38.909360 ], [ -77.005599, 38.909318 ], [ -77.005330, 38.909210 ], [ -77.005094, 38.909118 ], [ -77.004810, 38.908997 ], [ -77.004730, 38.908960 ], [ -77.004590, 38.908897 ], [ -77.004510, 38.908864 ], [ -77.004408, 38.908818 ], [ -77.004375, 38.908805 ], [ -77.004327, 38.908780 ], [ -77.004268, 38.908755 ], [ -77.003812, 38.908563 ], [ -77.003775, 38.908546 ], [ -77.003404, 38.908388 ], [ -77.003270, 38.908329 ], [ -77.003142, 38.908275 ], [ -77.002879, 38.908162 ], [ -77.002503, 38.907999 ], [ -77.003351, 38.905645 ], [ -77.005475, 38.905645 ], [ -77.005883, 38.905641 ], [ -77.006682, 38.905641 ], [ -77.007208, 38.905645 ], [ -77.007664, 38.905641 ], [ -77.008190, 38.905641 ], [ -77.008919, 38.905645 ], [ -77.008994, 38.905645 ], [ -77.009059, 38.905649 ], [ -77.008994, 38.905754 ], [ -77.009000, 38.906321 ], [ -77.009000, 38.907273 ], [ -77.008994, 38.907365 ], [ -77.008989, 38.907682 ], [ -77.009005, 38.908567 ], [ -77.009010, 38.909089 ], [ -77.009016, 38.909640 ], [ -77.009021, 38.910383 ], [ -77.009021, 38.910784 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010603", "GEOID": "11001010603", "NAME": "106.03", "NAMELSAD": "Census Tract 106.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 464270, "AWATER": 0, "INTPTLAT": "+38.9011144", "INTPTLON": "-077.0063567" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.005738, 38.896010 ], [ -77.005931, 38.896035 ], [ -77.006140, 38.895985 ], [ -77.006323, 38.895972 ], [ -77.006532, 38.895964 ], [ -77.006714, 38.895985 ], [ -77.006913, 38.896026 ], [ -77.006988, 38.896060 ], [ -77.007165, 38.896139 ], [ -77.007304, 38.896252 ], [ -77.007557, 38.896661 ], [ -77.007599, 38.896749 ], [ -77.007648, 38.896832 ], [ -77.007696, 38.896874 ], [ -77.007771, 38.896911 ], [ -77.008109, 38.897158 ], [ -77.008200, 38.897220 ], [ -77.009064, 38.897554 ], [ -77.009069, 38.897859 ], [ -77.009064, 38.898915 ], [ -77.009064, 38.899066 ], [ -77.009064, 38.899563 ], [ -77.009059, 38.900210 ], [ -77.009059, 38.900402 ], [ -77.009059, 38.901312 ], [ -77.009059, 38.902514 ], [ -77.009064, 38.902602 ], [ -77.009059, 38.903190 ], [ -77.009064, 38.903729 ], [ -77.009064, 38.904292 ], [ -77.009064, 38.904497 ], [ -77.009064, 38.904685 ], [ -77.009064, 38.905132 ], [ -77.009059, 38.905649 ], [ -77.008994, 38.905645 ], [ -77.008919, 38.905645 ], [ -77.008190, 38.905641 ], [ -77.007664, 38.905641 ], [ -77.007208, 38.905645 ], [ -77.006682, 38.905641 ], [ -77.005883, 38.905641 ], [ -77.005475, 38.905645 ], [ -77.003351, 38.905645 ], [ -77.004005, 38.903746 ], [ -77.004145, 38.903124 ], [ -77.004429, 38.902514 ], [ -77.004188, 38.902514 ], [ -77.003565, 38.902514 ], [ -77.003565, 38.901850 ], [ -77.003565, 38.901804 ], [ -77.003565, 38.901679 ], [ -77.003565, 38.901629 ], [ -77.003565, 38.901324 ], [ -77.003565, 38.900853 ], [ -77.003565, 38.900681 ], [ -77.003565, 38.900414 ], [ -77.003565, 38.900205 ], [ -77.003549, 38.900151 ], [ -77.003523, 38.900059 ], [ -77.003501, 38.899846 ], [ -77.003501, 38.898911 ], [ -77.003506, 38.897838 ], [ -77.003506, 38.897438 ], [ -77.003506, 38.897337 ], [ -77.003973, 38.897341 ], [ -77.004606, 38.897341 ], [ -77.004772, 38.897341 ], [ -77.004810, 38.897212 ], [ -77.004966, 38.896761 ], [ -77.005030, 38.896619 ], [ -77.005035, 38.896598 ], [ -77.005143, 38.896410 ], [ -77.005196, 38.896306 ], [ -77.005218, 38.896277 ], [ -77.005244, 38.896252 ], [ -77.005271, 38.896227 ], [ -77.005314, 38.896189 ], [ -77.005582, 38.896047 ], [ -77.005738, 38.896010 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010602", "GEOID": "11001010602", "NAME": "106.02", "NAMELSAD": "Census Tract 106.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 542512, "AWATER": 0, "INTPTLAT": "+38.9033936", "INTPTLON": "-076.9994636" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994956, 38.900201 ], [ -76.996163, 38.900205 ], [ -76.997616, 38.900201 ], [ -76.998013, 38.900205 ], [ -76.998437, 38.900205 ], [ -76.998544, 38.900205 ], [ -76.999505, 38.900205 ], [ -76.999939, 38.900205 ], [ -77.000443, 38.900205 ], [ -77.000567, 38.900205 ], [ -77.001280, 38.900205 ], [ -77.001854, 38.900205 ], [ -77.002037, 38.900201 ], [ -77.002171, 38.900205 ], [ -77.002766, 38.900205 ], [ -77.003565, 38.900205 ], [ -77.003565, 38.900414 ], [ -77.003565, 38.900681 ], [ -77.003565, 38.900853 ], [ -77.003565, 38.901324 ], [ -77.003565, 38.901629 ], [ -77.003565, 38.901679 ], [ -77.003565, 38.901804 ], [ -77.003565, 38.901850 ], [ -77.003565, 38.902514 ], [ -77.004188, 38.902514 ], [ -77.004429, 38.902514 ], [ -77.004145, 38.903124 ], [ -77.004005, 38.903746 ], [ -77.003351, 38.905645 ], [ -77.002503, 38.907999 ], [ -77.002251, 38.907895 ], [ -77.002214, 38.907878 ], [ -77.002015, 38.907795 ], [ -77.001822, 38.907720 ], [ -77.001452, 38.907561 ], [ -77.000851, 38.907306 ], [ -77.000792, 38.907281 ], [ -77.000481, 38.907148 ], [ -77.000358, 38.907098 ], [ -77.000213, 38.907043 ], [ -76.999574, 38.906768 ], [ -76.999429, 38.906705 ], [ -76.998335, 38.906229 ], [ -76.997809, 38.906004 ], [ -76.997370, 38.905812 ], [ -76.997096, 38.905695 ], [ -76.996672, 38.905516 ], [ -76.996425, 38.905407 ], [ -76.996163, 38.905299 ], [ -76.995986, 38.905232 ], [ -76.995181, 38.904881 ], [ -76.995052, 38.904827 ], [ -76.994897, 38.904760 ], [ -76.994505, 38.904593 ], [ -76.993899, 38.904334 ], [ -76.993754, 38.904276 ], [ -76.993132, 38.904000 ], [ -76.993529, 38.903729 ], [ -76.993582, 38.903687 ], [ -76.993754, 38.903574 ], [ -76.993861, 38.903499 ], [ -76.994639, 38.902998 ], [ -76.994956, 38.902798 ], [ -76.994956, 38.902702 ], [ -76.994956, 38.902514 ], [ -76.994956, 38.902113 ], [ -76.994956, 38.902076 ], [ -76.994956, 38.901324 ], [ -76.994956, 38.900201 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008301", "GEOID": "11001008301", "NAME": "83.01", "NAMELSAD": "Census Tract 83.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 303970, "AWATER": 0, "INTPTLAT": "+38.8970372", "INTPTLON": "-077.0008008" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.998448, 38.893083 ], [ -76.998925, 38.893083 ], [ -76.999510, 38.893087 ], [ -76.999574, 38.893087 ], [ -77.000121, 38.893087 ], [ -77.000207, 38.893087 ], [ -77.000331, 38.893087 ], [ -77.000572, 38.893087 ], [ -77.000572, 38.893404 ], [ -77.000577, 38.893500 ], [ -77.000577, 38.893584 ], [ -77.000577, 38.893864 ], [ -77.000572, 38.893918 ], [ -77.000572, 38.894072 ], [ -77.000615, 38.894077 ], [ -77.000701, 38.894089 ], [ -77.000744, 38.894097 ], [ -77.000781, 38.894106 ], [ -77.000819, 38.894118 ], [ -77.000862, 38.894131 ], [ -77.000899, 38.894143 ], [ -77.001382, 38.894340 ], [ -77.002031, 38.894607 ], [ -77.002128, 38.894644 ], [ -77.002299, 38.894715 ], [ -77.002460, 38.894778 ], [ -77.002664, 38.894866 ], [ -77.002745, 38.894899 ], [ -77.003303, 38.895125 ], [ -77.003506, 38.895208 ], [ -77.003506, 38.895346 ], [ -77.003506, 38.895392 ], [ -77.003506, 38.895642 ], [ -77.003506, 38.896118 ], [ -77.003506, 38.896803 ], [ -77.003506, 38.897337 ], [ -77.003506, 38.897438 ], [ -77.003506, 38.897838 ], [ -77.003501, 38.898911 ], [ -77.003501, 38.899846 ], [ -77.003523, 38.900059 ], [ -77.003549, 38.900151 ], [ -77.003565, 38.900205 ], [ -77.002766, 38.900205 ], [ -77.002171, 38.900205 ], [ -77.002037, 38.900201 ], [ -77.001854, 38.900205 ], [ -77.001280, 38.900205 ], [ -77.000567, 38.900205 ], [ -77.000443, 38.900205 ], [ -76.999939, 38.900205 ], [ -76.999505, 38.900205 ], [ -76.998544, 38.900205 ], [ -76.998437, 38.900205 ], [ -76.998442, 38.900080 ], [ -76.998442, 38.899358 ], [ -76.998442, 38.898911 ], [ -76.998448, 38.898431 ], [ -76.998448, 38.898126 ], [ -76.998442, 38.897868 ], [ -76.998448, 38.897763 ], [ -76.998448, 38.897433 ], [ -76.998442, 38.897333 ], [ -76.998442, 38.897237 ], [ -76.998442, 38.896724 ], [ -76.998442, 38.896118 ], [ -76.998442, 38.895563 ], [ -76.998442, 38.895459 ], [ -76.998448, 38.894786 ], [ -76.998448, 38.894732 ], [ -76.998453, 38.894185 ], [ -76.998453, 38.894093 ], [ -76.998453, 38.894047 ], [ -76.998453, 38.893964 ], [ -76.998448, 38.893772 ], [ -76.998448, 38.893684 ], [ -76.998448, 38.893647 ], [ -76.998448, 38.893588 ], [ -76.998448, 38.893342 ], [ -76.998448, 38.893175 ], [ -76.998448, 38.893083 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008200", "GEOID": "11001008200", "NAME": "82", "NAMELSAD": "Census Tract 82", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 338424, "AWATER": 0, "INTPTLAT": "+38.8918309", "INTPTLON": "-077.0006040" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.005888, 38.893626 ], [ -77.005738, 38.893580 ], [ -77.003791, 38.893580 ], [ -77.003630, 38.893580 ], [ -77.003592, 38.893580 ], [ -77.003512, 38.893584 ], [ -77.003506, 38.894786 ], [ -77.003506, 38.895208 ], [ -77.003303, 38.895125 ], [ -77.002745, 38.894899 ], [ -77.002664, 38.894866 ], [ -77.002460, 38.894778 ], [ -77.002299, 38.894715 ], [ -77.002128, 38.894644 ], [ -77.002031, 38.894607 ], [ -77.001382, 38.894340 ], [ -77.000899, 38.894143 ], [ -77.000862, 38.894131 ], [ -77.000819, 38.894118 ], [ -77.000781, 38.894106 ], [ -77.000744, 38.894097 ], [ -77.000701, 38.894089 ], [ -77.000615, 38.894077 ], [ -77.000572, 38.894072 ], [ -77.000572, 38.893918 ], [ -77.000577, 38.893864 ], [ -77.000577, 38.893584 ], [ -77.000577, 38.893500 ], [ -77.000572, 38.893404 ], [ -77.000572, 38.893087 ], [ -77.000331, 38.893087 ], [ -77.000207, 38.893087 ], [ -77.000121, 38.893087 ], [ -76.999574, 38.893087 ], [ -76.999510, 38.893087 ], [ -76.998925, 38.893083 ], [ -76.998448, 38.893083 ], [ -76.998362, 38.893066 ], [ -76.998212, 38.893037 ], [ -76.998147, 38.893016 ], [ -76.997718, 38.892845 ], [ -76.997166, 38.892624 ], [ -76.996302, 38.892273 ], [ -76.996163, 38.892214 ], [ -76.995674, 38.892018 ], [ -76.995379, 38.891897 ], [ -76.995159, 38.891809 ], [ -76.994956, 38.891722 ], [ -76.994961, 38.891622 ], [ -76.994956, 38.891421 ], [ -76.994961, 38.891154 ], [ -76.994966, 38.891016 ], [ -76.994966, 38.890991 ], [ -76.994966, 38.890937 ], [ -76.994966, 38.890874 ], [ -76.994962, 38.890365 ], [ -77.003512, 38.890365 ], [ -77.003512, 38.890937 ], [ -77.003512, 38.891024 ], [ -77.003512, 38.891359 ], [ -77.003512, 38.891801 ], [ -77.003512, 38.891918 ], [ -77.003785, 38.891868 ], [ -77.004365, 38.891922 ], [ -77.004424, 38.891780 ], [ -77.004499, 38.891672 ], [ -77.004681, 38.891513 ], [ -77.004890, 38.891396 ], [ -77.005266, 38.891246 ], [ -77.005523, 38.891133 ], [ -77.005920, 38.890970 ], [ -77.005920, 38.891242 ], [ -77.005920, 38.891404 ], [ -77.005920, 38.891830 ], [ -77.005904, 38.892014 ], [ -77.005888, 38.892123 ], [ -77.005888, 38.892590 ], [ -77.005883, 38.893471 ], [ -77.005888, 38.893626 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008302", "GEOID": "11001008302", "NAME": "83.02", "NAMELSAD": "Census Tract 83.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 260891, "AWATER": 0, "INTPTLAT": "+38.8963061", "INTPTLON": "-076.9966527" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994956, 38.891722 ], [ -76.995159, 38.891809 ], [ -76.995379, 38.891897 ], [ -76.995674, 38.892018 ], [ -76.996163, 38.892214 ], [ -76.996302, 38.892273 ], [ -76.997166, 38.892624 ], [ -76.997718, 38.892845 ], [ -76.998147, 38.893016 ], [ -76.998212, 38.893037 ], [ -76.998362, 38.893066 ], [ -76.998448, 38.893083 ], [ -76.998448, 38.893175 ], [ -76.998448, 38.893342 ], [ -76.998448, 38.893588 ], [ -76.998448, 38.893647 ], [ -76.998448, 38.893684 ], [ -76.998448, 38.893772 ], [ -76.998453, 38.893964 ], [ -76.998453, 38.894047 ], [ -76.998453, 38.894093 ], [ -76.998453, 38.894185 ], [ -76.998448, 38.894732 ], [ -76.998448, 38.894786 ], [ -76.998442, 38.895459 ], [ -76.998442, 38.895563 ], [ -76.998442, 38.896118 ], [ -76.998442, 38.896724 ], [ -76.998442, 38.897237 ], [ -76.998442, 38.897333 ], [ -76.998448, 38.897433 ], [ -76.998448, 38.897763 ], [ -76.998442, 38.897868 ], [ -76.998448, 38.898126 ], [ -76.998448, 38.898431 ], [ -76.998442, 38.898911 ], [ -76.998442, 38.899358 ], [ -76.998442, 38.900080 ], [ -76.998437, 38.900205 ], [ -76.998013, 38.900205 ], [ -76.997616, 38.900201 ], [ -76.996163, 38.900205 ], [ -76.994956, 38.900201 ], [ -76.994961, 38.899746 ], [ -76.994956, 38.899366 ], [ -76.994956, 38.898907 ], [ -76.994966, 38.897400 ], [ -76.994961, 38.897333 ], [ -76.994961, 38.897241 ], [ -76.994961, 38.896118 ], [ -76.994956, 38.896031 ], [ -76.994956, 38.895663 ], [ -76.994956, 38.895575 ], [ -76.994956, 38.895479 ], [ -76.994956, 38.895429 ], [ -76.994961, 38.895379 ], [ -76.994961, 38.894782 ], [ -76.994961, 38.894231 ], [ -76.994961, 38.893780 ], [ -76.994961, 38.893580 ], [ -76.994961, 38.892644 ], [ -76.994961, 38.892135 ], [ -76.994956, 38.892018 ], [ -76.994956, 38.891918 ], [ -76.994956, 38.891722 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008100", "GEOID": "11001008100", "NAME": "81", "NAMELSAD": "Census Tract 81", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 290284, "AWATER": 0, "INTPTLAT": "+38.8931710", "INTPTLON": "-076.9925272" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994962, 38.890365 ], [ -76.994966, 38.890874 ], [ -76.994966, 38.890937 ], [ -76.994966, 38.890991 ], [ -76.994966, 38.891016 ], [ -76.994961, 38.891154 ], [ -76.994956, 38.891421 ], [ -76.994961, 38.891622 ], [ -76.994956, 38.891722 ], [ -76.994956, 38.891918 ], [ -76.994956, 38.892018 ], [ -76.994961, 38.892135 ], [ -76.994961, 38.892644 ], [ -76.994961, 38.893580 ], [ -76.994961, 38.893780 ], [ -76.994961, 38.894231 ], [ -76.994961, 38.894782 ], [ -76.994961, 38.895379 ], [ -76.993749, 38.895884 ], [ -76.993110, 38.896143 ], [ -76.992643, 38.896327 ], [ -76.991522, 38.896786 ], [ -76.991329, 38.896865 ], [ -76.991329, 38.890370 ], [ -76.991431, 38.890369 ], [ -76.991528, 38.890365 ], [ -76.994962, 38.890365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "980000", "GEOID": "11001980000", "NAME": "9800", "NAMELSAD": "Census Tract 9800", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 6514228, "AWATER": 4996393, "INTPTLAT": "+38.8809933", "INTPTLON": "-077.0363219" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.890365 ], [ -77.036991, 38.900201 ], [ -77.036551, 38.900201 ], [ -77.035596, 38.900197 ], [ -77.035473, 38.900197 ], [ -77.035124, 38.900201 ], [ -77.035151, 38.900068 ], [ -77.035146, 38.899851 ], [ -77.035146, 38.899020 ], [ -77.035140, 38.898874 ], [ -77.035114, 38.898761 ], [ -77.035055, 38.898761 ], [ -77.033853, 38.898769 ], [ -77.033638, 38.898782 ], [ -77.033638, 38.898619 ], [ -77.033638, 38.898431 ], [ -77.033638, 38.898314 ], [ -77.033644, 38.897346 ], [ -77.033644, 38.896402 ], [ -77.033359, 38.896394 ], [ -77.033198, 38.896394 ], [ -77.033054, 38.896385 ], [ -77.032861, 38.896339 ], [ -77.032485, 38.896235 ], [ -77.032169, 38.896143 ], [ -77.031959, 38.896106 ], [ -77.031954, 38.895500 ], [ -77.030768, 38.895504 ], [ -77.030205, 38.895504 ], [ -77.029883, 38.895500 ], [ -77.029631, 38.895446 ], [ -77.028805, 38.895221 ], [ -77.028092, 38.895020 ], [ -77.027051, 38.894736 ], [ -77.025999, 38.894444 ], [ -77.023972, 38.893876 ], [ -77.023897, 38.893855 ], [ -77.023344, 38.893713 ], [ -77.022958, 38.893601 ], [ -77.021917, 38.893296 ], [ -77.021547, 38.893204 ], [ -77.020748, 38.892999 ], [ -77.020699, 38.892987 ], [ -77.019895, 38.892757 ], [ -77.018580, 38.892394 ], [ -77.017561, 38.892110 ], [ -77.016386, 38.891784 ], [ -77.016252, 38.891885 ], [ -77.015839, 38.892018 ], [ -77.015571, 38.892068 ], [ -77.015228, 38.892085 ], [ -77.015045, 38.892081 ], [ -77.014992, 38.892081 ], [ -77.014670, 38.892085 ], [ -77.014235, 38.892081 ], [ -77.014021, 38.892081 ], [ -77.013634, 38.892085 ], [ -77.013178, 38.892089 ], [ -77.012980, 38.892244 ], [ -77.012749, 38.892436 ], [ -77.012417, 38.892674 ], [ -77.012170, 38.892857 ], [ -77.011902, 38.893049 ], [ -77.011161, 38.893576 ], [ -77.011022, 38.893680 ], [ -77.010888, 38.893776 ], [ -77.010657, 38.893947 ], [ -77.010748, 38.894202 ], [ -77.010909, 38.894699 ], [ -77.010942, 38.894786 ], [ -77.010882, 38.894791 ], [ -77.010620, 38.894791 ], [ -77.010480, 38.894791 ], [ -77.010276, 38.894791 ], [ -77.010067, 38.894786 ], [ -77.009928, 38.894782 ], [ -77.009901, 38.894782 ], [ -77.009847, 38.894782 ], [ -77.009493, 38.894791 ], [ -77.009059, 38.895104 ], [ -77.009053, 38.895434 ], [ -77.009053, 38.896127 ], [ -77.009053, 38.896511 ], [ -77.009053, 38.897129 ], [ -77.009059, 38.897341 ], [ -77.009059, 38.897471 ], [ -77.009064, 38.897554 ], [ -77.008200, 38.897220 ], [ -77.008109, 38.897158 ], [ -77.007771, 38.896911 ], [ -77.007696, 38.896874 ], [ -77.007648, 38.896832 ], [ -77.007599, 38.896749 ], [ -77.007557, 38.896661 ], [ -77.007304, 38.896252 ], [ -77.007165, 38.896139 ], [ -77.006988, 38.896060 ], [ -77.006913, 38.896026 ], [ -77.006714, 38.895985 ], [ -77.006532, 38.895964 ], [ -77.006323, 38.895972 ], [ -77.006140, 38.895985 ], [ -77.005931, 38.896035 ], [ -77.005738, 38.896010 ], [ -77.005582, 38.896047 ], [ -77.005314, 38.896189 ], [ -77.005271, 38.896227 ], [ -77.005244, 38.896252 ], [ -77.005218, 38.896277 ], [ -77.005196, 38.896306 ], [ -77.005143, 38.896410 ], [ -77.005035, 38.896598 ], [ -77.005030, 38.896619 ], [ -77.004966, 38.896761 ], [ -77.004810, 38.897212 ], [ -77.004772, 38.897341 ], [ -77.004606, 38.897341 ], [ -77.003973, 38.897341 ], [ -77.003506, 38.897337 ], [ -77.003506, 38.896803 ], [ -77.003506, 38.896118 ], [ -77.003506, 38.895642 ], [ -77.003506, 38.895392 ], [ -77.003506, 38.895346 ], [ -77.003506, 38.895208 ], [ -77.003506, 38.894786 ], [ -77.003512, 38.893584 ], [ -77.003592, 38.893580 ], [ -77.003630, 38.893580 ], [ -77.003791, 38.893580 ], [ -77.005738, 38.893580 ], [ -77.005888, 38.893626 ], [ -77.005883, 38.893471 ], [ -77.005888, 38.892590 ], [ -77.005888, 38.892123 ], [ -77.005904, 38.892014 ], [ -77.005920, 38.891830 ], [ -77.005920, 38.891404 ], [ -77.005920, 38.891242 ], [ -77.005920, 38.890970 ], [ -77.005523, 38.891133 ], [ -77.005266, 38.891246 ], [ -77.004890, 38.891396 ], [ -77.004681, 38.891513 ], [ -77.004499, 38.891672 ], [ -77.004424, 38.891780 ], [ -77.004365, 38.891922 ], [ -77.003785, 38.891868 ], [ -77.003512, 38.891918 ], [ -77.003512, 38.891801 ], [ -77.003512, 38.891359 ], [ -77.003512, 38.891024 ], [ -77.003512, 38.890937 ], [ -77.003512, 38.890365 ], [ -77.036991, 38.890365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009302", "GEOID": "11001009302", "NAME": "93.02", "NAMELSAD": "Census Tract 93.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 391905, "AWATER": 0, "INTPTLAT": "+38.9251636", "INTPTLON": "-076.9907773" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.922797 ], [ -76.992413, 38.922487 ], [ -76.993883, 38.922045 ], [ -76.994870, 38.921740 ], [ -76.995910, 38.921423 ], [ -76.995964, 38.921406 ], [ -76.996028, 38.921381 ], [ -76.995948, 38.921573 ], [ -76.995648, 38.922266 ], [ -76.995369, 38.922913 ], [ -76.995090, 38.923585 ], [ -76.995025, 38.923764 ], [ -76.994939, 38.923981 ], [ -76.994800, 38.924411 ], [ -76.994628, 38.924995 ], [ -76.994483, 38.925584 ], [ -76.994416, 38.925897 ], [ -76.991329, 38.925897 ], [ -76.991329, 38.922797 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009102", "GEOID": "11001009102", "NAME": "91.02", "NAMELSAD": "Census Tract 91.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1816287, "AWATER": 0, "INTPTLAT": "+38.9187926", "INTPTLON": "-076.9888946" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.913501 ], [ -76.991571, 38.913418 ], [ -76.991748, 38.913355 ], [ -76.991887, 38.913309 ], [ -76.991973, 38.913276 ], [ -76.992107, 38.913230 ], [ -76.992375, 38.913130 ], [ -76.992611, 38.913050 ], [ -76.992660, 38.913034 ], [ -76.992761, 38.912996 ], [ -76.992863, 38.912963 ], [ -76.993706, 38.912666 ], [ -76.994505, 38.912382 ], [ -76.994848, 38.912261 ], [ -76.996441, 38.911702 ], [ -76.996871, 38.911552 ], [ -76.997273, 38.911410 ], [ -76.998131, 38.911113 ], [ -76.998314, 38.911055 ], [ -76.998373, 38.911034 ], [ -76.998421, 38.911022 ], [ -76.998518, 38.910988 ], [ -76.999247, 38.910746 ], [ -77.000073, 38.910462 ], [ -77.000374, 38.910446 ], [ -77.000508, 38.910412 ], [ -77.001350, 38.910116 ], [ -77.001725, 38.909978 ], [ -77.001489, 38.910446 ], [ -77.000518, 38.912428 ], [ -77.000159, 38.913163 ], [ -76.998990, 38.915442 ], [ -76.998925, 38.915571 ], [ -76.997665, 38.918105 ], [ -76.996919, 38.919478 ], [ -76.996656, 38.920037 ], [ -76.996259, 38.920868 ], [ -76.996082, 38.921268 ], [ -76.996028, 38.921381 ], [ -76.995964, 38.921406 ], [ -76.995910, 38.921423 ], [ -76.994870, 38.921740 ], [ -76.993883, 38.922045 ], [ -76.992413, 38.922487 ], [ -76.991329, 38.922797 ], [ -76.991329, 38.913501 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008803", "GEOID": "11001008803", "NAME": "88.03", "NAMELSAD": "Census Tract 88.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1168294, "AWATER": 0, "INTPTLAT": "+38.9104603", "INTPTLON": "-076.9913622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002503, 38.907999 ], [ -77.002423, 38.908338 ], [ -77.001801, 38.909811 ], [ -77.001725, 38.909978 ], [ -77.001350, 38.910116 ], [ -77.000508, 38.910412 ], [ -77.000374, 38.910446 ], [ -77.000073, 38.910462 ], [ -76.999247, 38.910746 ], [ -76.998518, 38.910988 ], [ -76.998421, 38.911022 ], [ -76.998373, 38.911034 ], [ -76.998314, 38.911055 ], [ -76.998131, 38.911113 ], [ -76.997273, 38.911410 ], [ -76.996871, 38.911552 ], [ -76.996441, 38.911702 ], [ -76.994848, 38.912261 ], [ -76.994505, 38.912382 ], [ -76.993706, 38.912666 ], [ -76.992863, 38.912963 ], [ -76.992761, 38.912996 ], [ -76.992660, 38.913034 ], [ -76.992611, 38.913050 ], [ -76.992375, 38.913130 ], [ -76.992107, 38.913230 ], [ -76.991973, 38.913276 ], [ -76.991887, 38.913309 ], [ -76.991748, 38.913355 ], [ -76.991571, 38.913418 ], [ -76.991329, 38.913501 ], [ -76.991329, 38.905563 ], [ -76.991801, 38.905144 ], [ -76.992220, 38.904773 ], [ -76.992493, 38.904530 ], [ -76.992804, 38.904259 ], [ -76.993132, 38.904000 ], [ -76.993754, 38.904276 ], [ -76.993899, 38.904334 ], [ -76.994505, 38.904593 ], [ -76.994897, 38.904760 ], [ -76.995052, 38.904827 ], [ -76.995181, 38.904881 ], [ -76.995986, 38.905232 ], [ -76.996163, 38.905299 ], [ -76.996425, 38.905407 ], [ -76.996672, 38.905516 ], [ -76.997096, 38.905695 ], [ -76.997370, 38.905812 ], [ -76.997809, 38.906004 ], [ -76.998335, 38.906229 ], [ -76.999429, 38.906705 ], [ -76.999574, 38.906768 ], [ -77.000213, 38.907043 ], [ -77.000358, 38.907098 ], [ -77.000481, 38.907148 ], [ -77.000792, 38.907281 ], [ -77.000851, 38.907306 ], [ -77.001452, 38.907561 ], [ -77.001822, 38.907720 ], [ -77.002015, 38.907795 ], [ -77.002214, 38.907878 ], [ -77.002251, 38.907895 ], [ -77.002503, 38.907999 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008410", "GEOID": "11001008410", "NAME": "84.10", "NAMELSAD": "Census Tract 84.10", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 219939, "AWATER": 0, "INTPTLAT": "+38.9015543", "INTPTLON": "-076.9911234" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.900201 ], [ -76.991522, 38.900201 ], [ -76.992643, 38.900201 ], [ -76.993754, 38.900201 ], [ -76.994956, 38.900201 ], [ -76.994956, 38.901324 ], [ -76.994956, 38.902076 ], [ -76.994956, 38.902113 ], [ -76.994956, 38.902514 ], [ -76.994956, 38.902702 ], [ -76.994956, 38.902798 ], [ -76.994639, 38.902998 ], [ -76.993861, 38.903499 ], [ -76.993754, 38.903574 ], [ -76.993582, 38.903687 ], [ -76.993529, 38.903729 ], [ -76.993132, 38.904000 ], [ -76.992901, 38.903900 ], [ -76.992633, 38.903787 ], [ -76.992241, 38.903629 ], [ -76.991517, 38.903320 ], [ -76.991329, 38.903239 ], [ -76.991329, 38.900201 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008802", "GEOID": "11001008802", "NAME": "88.02", "NAMELSAD": "Census Tract 88.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 468578, "AWATER": 0, "INTPTLAT": "+38.9039498", "INTPTLON": "-076.9866786" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.903239 ], [ -76.991517, 38.903320 ], [ -76.992241, 38.903629 ], [ -76.992633, 38.903787 ], [ -76.992901, 38.903900 ], [ -76.993132, 38.904000 ], [ -76.992804, 38.904259 ], [ -76.992493, 38.904530 ], [ -76.992220, 38.904773 ], [ -76.991801, 38.905144 ], [ -76.991329, 38.905563 ], [ -76.991329, 38.903239 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008402", "GEOID": "11001008402", "NAME": "84.02", "NAMELSAD": "Census Tract 84.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 274180, "AWATER": 0, "INTPTLAT": "+38.8985960", "INTPTLON": "-076.9910210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.896865 ], [ -76.991522, 38.896786 ], [ -76.992643, 38.896327 ], [ -76.993110, 38.896143 ], [ -76.993749, 38.895884 ], [ -76.994961, 38.895379 ], [ -76.994956, 38.895429 ], [ -76.994956, 38.895479 ], [ -76.994956, 38.895575 ], [ -76.994956, 38.895663 ], [ -76.994956, 38.896031 ], [ -76.994961, 38.896118 ], [ -76.994961, 38.897241 ], [ -76.994961, 38.897333 ], [ -76.994966, 38.897400 ], [ -76.994956, 38.898907 ], [ -76.994956, 38.899366 ], [ -76.994961, 38.899746 ], [ -76.994956, 38.900201 ], [ -76.993754, 38.900201 ], [ -76.992643, 38.900201 ], [ -76.991522, 38.900201 ], [ -76.991329, 38.900201 ], [ -76.991329, 38.896865 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008002", "GEOID": "11001008002", "NAME": "80.02", "NAMELSAD": "Census Tract 80.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 578961, "AWATER": 0, "INTPTLAT": "+38.8915403", "INTPTLON": "-076.9827594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.890365 ], [ -76.991528, 38.890365 ], [ -76.991431, 38.890369 ], [ -76.991329, 38.890370 ], [ -76.991329, 38.890365 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2343, "y": 3132 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001901", "GEOID": "11001001901", "NAME": "19.01", "NAMELSAD": "Census Tract 19.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 769304, "AWATER": 0, "INTPTLAT": "+38.9646853", "INTPTLON": "-077.0236327" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.019895, 38.960076 ], [ -77.019895, 38.959451 ], [ -77.019895, 38.959375 ], [ -77.019895, 38.959225 ], [ -77.019895, 38.958862 ], [ -77.019895, 38.958733 ], [ -77.020217, 38.958733 ], [ -77.020356, 38.958737 ], [ -77.020463, 38.958741 ], [ -77.020624, 38.958741 ], [ -77.020764, 38.958741 ], [ -77.020828, 38.958741 ], [ -77.021150, 38.958733 ], [ -77.021332, 38.958791 ], [ -77.021697, 38.958908 ], [ -77.022067, 38.959033 ], [ -77.022330, 38.959117 ], [ -77.022437, 38.959154 ], [ -77.022958, 38.959321 ], [ -77.023162, 38.959388 ], [ -77.023521, 38.959505 ], [ -77.023886, 38.959626 ], [ -77.024090, 38.959692 ], [ -77.024192, 38.959726 ], [ -77.024320, 38.959768 ], [ -77.025260, 38.960076 ], [ -77.019895, 38.960076 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "001902", "GEOID": "11001001902", "NAME": "19.02", "NAMELSAD": "Census Tract 19.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 877346, "AWATER": 0, "INTPTLAT": "+38.9639299", "INTPTLON": "-077.0156458" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.012416, 38.960076 ], [ -77.013420, 38.958733 ], [ -77.013597, 38.958733 ], [ -77.013667, 38.958733 ], [ -77.014090, 38.958733 ], [ -77.014756, 38.958733 ], [ -77.015185, 38.958733 ], [ -77.016166, 38.958733 ], [ -77.016365, 38.958733 ], [ -77.016676, 38.958737 ], [ -77.016912, 38.958737 ], [ -77.017003, 38.958737 ], [ -77.017094, 38.958737 ], [ -77.017432, 38.958737 ], [ -77.017803, 38.958733 ], [ -77.018028, 38.958737 ], [ -77.018183, 38.958737 ], [ -77.018495, 38.958737 ], [ -77.018779, 38.958733 ], [ -77.019315, 38.958737 ], [ -77.019659, 38.958733 ], [ -77.019895, 38.958733 ], [ -77.019895, 38.958862 ], [ -77.019895, 38.959225 ], [ -77.019895, 38.959375 ], [ -77.019895, 38.959451 ], [ -77.019895, 38.960076 ], [ -77.012416, 38.960076 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009505", "GEOID": "11001009505", "NAME": "95.05", "NAMELSAD": "Census Tract 95.05", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1033208, "AWATER": 0, "INTPTLAT": "+38.9618925", "INTPTLON": "-077.0051999" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009043, 38.954816 ], [ -77.009043, 38.955308 ], [ -77.009048, 38.955700 ], [ -77.009043, 38.956197 ], [ -77.009043, 38.956589 ], [ -77.009037, 38.956860 ], [ -77.009043, 38.957302 ], [ -77.009048, 38.957661 ], [ -77.009043, 38.958399 ], [ -77.009043, 38.958508 ], [ -77.009043, 38.958650 ], [ -77.009043, 38.958729 ], [ -77.009048, 38.958808 ], [ -77.009048, 38.958892 ], [ -77.009048, 38.959150 ], [ -77.009048, 38.959446 ], [ -77.009043, 38.959551 ], [ -77.009048, 38.959580 ], [ -77.009048, 38.959609 ], [ -77.009053, 38.959647 ], [ -77.009064, 38.959692 ], [ -77.009091, 38.959759 ], [ -77.009107, 38.959809 ], [ -77.009155, 38.959943 ], [ -77.009187, 38.960034 ], [ -77.009204, 38.960076 ], [ -77.000114, 38.960076 ], [ -77.000202, 38.959980 ], [ -77.000256, 38.959922 ], [ -77.000352, 38.959805 ], [ -77.000449, 38.959680 ], [ -77.000497, 38.959613 ], [ -77.000556, 38.959538 ], [ -77.000915, 38.959063 ], [ -77.001060, 38.958867 ], [ -77.001130, 38.958775 ], [ -77.001237, 38.958608 ], [ -77.001414, 38.958199 ], [ -77.002240, 38.956868 ], [ -77.002289, 38.956772 ], [ -77.002460, 38.956514 ], [ -77.002503, 38.956443 ], [ -77.002573, 38.956359 ], [ -77.002664, 38.956289 ], [ -77.002745, 38.956230 ], [ -77.002943, 38.956126 ], [ -77.003109, 38.956059 ], [ -77.003340, 38.955992 ], [ -77.003834, 38.955880 ], [ -77.003925, 38.955859 ], [ -77.004654, 38.955684 ], [ -77.004982, 38.955692 ], [ -77.005304, 38.955621 ], [ -77.006044, 38.955450 ], [ -77.006258, 38.955400 ], [ -77.006789, 38.955279 ], [ -77.007278, 38.955171 ], [ -77.007696, 38.955079 ], [ -77.008222, 38.954958 ], [ -77.008839, 38.954824 ], [ -77.008876, 38.954820 ], [ -77.008914, 38.954816 ], [ -77.008994, 38.954816 ], [ -77.009043, 38.954816 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002600", "GEOID": "11001002600", "NAME": "26", "NAMELSAD": "Census Tract 26", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2106150, "AWATER": 60195, "INTPTLAT": "+38.9464323", "INTPTLON": "-077.0404553" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.956213 ], [ -77.036396, 38.956213 ], [ -77.036406, 38.954436 ], [ -77.036401, 38.953915 ], [ -77.036401, 38.953364 ], [ -77.036401, 38.952947 ], [ -77.036412, 38.952534 ], [ -77.036412, 38.951871 ], [ -77.036412, 38.950803 ], [ -77.036412, 38.950523 ], [ -77.036417, 38.949739 ], [ -77.036422, 38.948262 ], [ -77.036417, 38.947390 ], [ -77.036428, 38.947244 ], [ -77.036422, 38.946130 ], [ -77.036422, 38.945062 ], [ -77.036428, 38.943998 ], [ -77.036422, 38.942934 ], [ -77.036439, 38.941875 ], [ -77.036428, 38.940806 ], [ -77.036439, 38.939738 ], [ -77.036439, 38.939104 ], [ -77.036439, 38.938950 ], [ -77.036439, 38.938599 ], [ -77.036444, 38.938232 ], [ -77.036691, 38.938149 ], [ -77.036857, 38.938090 ], [ -77.036991, 38.938040 ], [ -77.036991, 38.956213 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002704", "GEOID": "11001002704", "NAME": "27.04", "NAMELSAD": "Census Tract 27.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295339, "AWATER": 2427, "INTPTLAT": "+38.9345766", "INTPTLON": "-077.0427534" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036444, 38.938232 ], [ -77.036444, 38.938048 ], [ -77.036444, 38.937923 ], [ -77.036444, 38.937731 ], [ -77.036444, 38.937427 ], [ -77.036444, 38.937281 ], [ -77.036444, 38.937068 ], [ -77.036449, 38.936930 ], [ -77.036449, 38.936801 ], [ -77.036444, 38.936734 ], [ -77.036444, 38.936375 ], [ -77.036444, 38.936079 ], [ -77.036449, 38.935403 ], [ -77.036449, 38.934965 ], [ -77.036600, 38.935027 ], [ -77.036991, 38.935180 ], [ -77.036991, 38.935296 ], [ -77.036900, 38.935440 ], [ -77.036889, 38.935457 ], [ -77.036895, 38.935482 ], [ -77.036916, 38.935499 ], [ -77.036991, 38.935528 ], [ -77.036991, 38.938040 ], [ -77.036857, 38.938090 ], [ -77.036691, 38.938149 ], [ -77.036444, 38.938232 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002702", "GEOID": "11001002702", "NAME": "27.02", "NAMELSAD": "Census Tract 27.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 479022, "AWATER": 7175, "INTPTLAT": "+38.9301680", "INTPTLON": "-077.0421774" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036481, 38.927157 ], [ -77.036701, 38.927120 ], [ -77.036814, 38.927086 ], [ -77.036991, 38.927047 ], [ -77.036991, 38.931858 ], [ -77.036621, 38.931714 ], [ -77.036455, 38.931652 ], [ -77.036455, 38.931560 ], [ -77.036460, 38.931472 ], [ -77.036455, 38.930592 ], [ -77.036455, 38.930533 ], [ -77.036455, 38.930450 ], [ -77.036465, 38.929986 ], [ -77.036465, 38.929861 ], [ -77.036471, 38.929244 ], [ -77.036471, 38.929164 ], [ -77.036471, 38.929106 ], [ -77.036471, 38.928689 ], [ -77.036476, 38.928593 ], [ -77.036476, 38.928000 ], [ -77.036481, 38.927228 ], [ -77.036481, 38.927157 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002703", "GEOID": "11001002703", "NAME": "27.03", "NAMELSAD": "Census Tract 27.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 163863, "AWATER": 0, "INTPTLAT": "+38.9334921", "INTPTLON": "-077.0397435" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036449, 38.934965 ], [ -77.036449, 38.934860 ], [ -77.036449, 38.934431 ], [ -77.036449, 38.934356 ], [ -77.036455, 38.934122 ], [ -77.036455, 38.933287 ], [ -77.036455, 38.932924 ], [ -77.036455, 38.932607 ], [ -77.036455, 38.932494 ], [ -77.036455, 38.932269 ], [ -77.036455, 38.931806 ], [ -77.036455, 38.931652 ], [ -77.036621, 38.931714 ], [ -77.036991, 38.931858 ], [ -77.036991, 38.935528 ], [ -77.036916, 38.935499 ], [ -77.036895, 38.935482 ], [ -77.036889, 38.935457 ], [ -77.036900, 38.935440 ], [ -77.036991, 38.935296 ], [ -77.036991, 38.935180 ], [ -77.036600, 38.935027 ], [ -77.036449, 38.934965 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003901", "GEOID": "11001003901", "NAME": "39.01", "NAMELSAD": "Census Tract 39.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 120715, "AWATER": 0, "INTPTLAT": "+38.9254851", "INTPTLON": "-077.0401076" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.927047 ], [ -77.036814, 38.927086 ], [ -77.036701, 38.927120 ], [ -77.036487, 38.926527 ], [ -77.036594, 38.926469 ], [ -77.036846, 38.926335 ], [ -77.036937, 38.926285 ], [ -77.036991, 38.926251 ], [ -77.036991, 38.927047 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003802", "GEOID": "11001003802", "NAME": "38.02", "NAMELSAD": "Census Tract 38.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 207186, "AWATER": 0, "INTPTLAT": "+38.9229710", "INTPTLON": "-077.0393505" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.924561 ], [ -77.036991, 38.926251 ], [ -77.036937, 38.926285 ], [ -77.036846, 38.926335 ], [ -77.036594, 38.926469 ], [ -77.036487, 38.926527 ], [ -77.036487, 38.926272 ], [ -77.036487, 38.926185 ], [ -77.036481, 38.925880 ], [ -77.036481, 38.925792 ], [ -77.036481, 38.925605 ], [ -77.036481, 38.924824 ], [ -77.036481, 38.924766 ], [ -77.036484, 38.924561 ], [ -77.036991, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002001", "GEOID": "11001002001", "NAME": "20.01", "NAMELSAD": "Census Tract 20.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 632724, "AWATER": 1132, "INTPTLAT": "+38.9597034", "INTPTLON": "-077.0351061" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036991, 38.960076 ], [ -77.029892, 38.960076 ], [ -77.029980, 38.960018 ], [ -77.030023, 38.959989 ], [ -77.030103, 38.959930 ], [ -77.030119, 38.959918 ], [ -77.030157, 38.959880 ], [ -77.030371, 38.959647 ], [ -77.030607, 38.959375 ], [ -77.030720, 38.959238 ], [ -77.030806, 38.959142 ], [ -77.031149, 38.958737 ], [ -77.031380, 38.958462 ], [ -77.031471, 38.958349 ], [ -77.031573, 38.958232 ], [ -77.031713, 38.958066 ], [ -77.031809, 38.957957 ], [ -77.032029, 38.957690 ], [ -77.032238, 38.957448 ], [ -77.032308, 38.957365 ], [ -77.032372, 38.957281 ], [ -77.032517, 38.957110 ], [ -77.032565, 38.957056 ], [ -77.032657, 38.956943 ], [ -77.032705, 38.956885 ], [ -77.032941, 38.956610 ], [ -77.032973, 38.956572 ], [ -77.033177, 38.956364 ], [ -77.033408, 38.956197 ], [ -77.033756, 38.955654 ], [ -77.033778, 38.955625 ], [ -77.034196, 38.955133 ], [ -77.034593, 38.954649 ], [ -77.035038, 38.954124 ], [ -77.035199, 38.953936 ], [ -77.035596, 38.953464 ], [ -77.035875, 38.953135 ], [ -77.036036, 38.952943 ], [ -77.036117, 38.952847 ], [ -77.036245, 38.952701 ], [ -77.036412, 38.952534 ], [ -77.036401, 38.952947 ], [ -77.036401, 38.953364 ], [ -77.036401, 38.953915 ], [ -77.036406, 38.954436 ], [ -77.036396, 38.956213 ], [ -77.036991, 38.956213 ], [ -77.036991, 38.960076 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002002", "GEOID": "11001002002", "NAME": "20.02", "NAMELSAD": "Census Tract 20.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 849376, "AWATER": 0, "INTPTLAT": "+38.9525009", "INTPTLON": "-077.0310824" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.028098, 38.960076 ], [ -77.028102, 38.960022 ], [ -77.028161, 38.959342 ], [ -77.028210, 38.958712 ], [ -77.028226, 38.958504 ], [ -77.028231, 38.958349 ], [ -77.028236, 38.958287 ], [ -77.028236, 38.958128 ], [ -77.028236, 38.958045 ], [ -77.028236, 38.957965 ], [ -77.028226, 38.957807 ], [ -77.028215, 38.957648 ], [ -77.028210, 38.957569 ], [ -77.028199, 38.957490 ], [ -77.028172, 38.957281 ], [ -77.028156, 38.957169 ], [ -77.028134, 38.957023 ], [ -77.028113, 38.956860 ], [ -77.028070, 38.956522 ], [ -77.028027, 38.956218 ], [ -77.028011, 38.956118 ], [ -77.028000, 38.956009 ], [ -77.027957, 38.955709 ], [ -77.027888, 38.955225 ], [ -77.027877, 38.955150 ], [ -77.027861, 38.955041 ], [ -77.027823, 38.954758 ], [ -77.027786, 38.954503 ], [ -77.027732, 38.954082 ], [ -77.027721, 38.953998 ], [ -77.027571, 38.952905 ], [ -77.027555, 38.952822 ], [ -77.027555, 38.952801 ], [ -77.027426, 38.951867 ], [ -77.027394, 38.951620 ], [ -77.027282, 38.950803 ], [ -77.027271, 38.950715 ], [ -77.027255, 38.950628 ], [ -77.027244, 38.950540 ], [ -77.027233, 38.950452 ], [ -77.027223, 38.950365 ], [ -77.027206, 38.950277 ], [ -77.027158, 38.949927 ], [ -77.027131, 38.949735 ], [ -77.027078, 38.949338 ], [ -77.027045, 38.949084 ], [ -77.027029, 38.948992 ], [ -77.027013, 38.948838 ], [ -77.027003, 38.948763 ], [ -77.026960, 38.948462 ], [ -77.026949, 38.948391 ], [ -77.026944, 38.948333 ], [ -77.026927, 38.948258 ], [ -77.026809, 38.947373 ], [ -77.026783, 38.947190 ], [ -77.026665, 38.946401 ], [ -77.026595, 38.946126 ], [ -77.027019, 38.946126 ], [ -77.027464, 38.946122 ], [ -77.027797, 38.946126 ], [ -77.028210, 38.946122 ], [ -77.028923, 38.946130 ], [ -77.029642, 38.946126 ], [ -77.029819, 38.946389 ], [ -77.029840, 38.946410 ], [ -77.030044, 38.946602 ], [ -77.030227, 38.946785 ], [ -77.030430, 38.946985 ], [ -77.030688, 38.947236 ], [ -77.030699, 38.947248 ], [ -77.030795, 38.947344 ], [ -77.030972, 38.947524 ], [ -77.031037, 38.947611 ], [ -77.031063, 38.947641 ], [ -77.031090, 38.947661 ], [ -77.031112, 38.947682 ], [ -77.031455, 38.948012 ], [ -77.031621, 38.948179 ], [ -77.031691, 38.948237 ], [ -77.032721, 38.948262 ], [ -77.032861, 38.948262 ], [ -77.033086, 38.948262 ], [ -77.033746, 38.948262 ], [ -77.034411, 38.948258 ], [ -77.034513, 38.948258 ], [ -77.035382, 38.948262 ], [ -77.036278, 38.948262 ], [ -77.036422, 38.948262 ], [ -77.036417, 38.949739 ], [ -77.036412, 38.950523 ], [ -77.036412, 38.950803 ], [ -77.036412, 38.951871 ], [ -77.036412, 38.952534 ], [ -77.036245, 38.952701 ], [ -77.036117, 38.952847 ], [ -77.036036, 38.952943 ], [ -77.035875, 38.953135 ], [ -77.035596, 38.953464 ], [ -77.035199, 38.953936 ], [ -77.035038, 38.954124 ], [ -77.034593, 38.954649 ], [ -77.034196, 38.955133 ], [ -77.033778, 38.955625 ], [ -77.033756, 38.955654 ], [ -77.033408, 38.956197 ], [ -77.033177, 38.956364 ], [ -77.032973, 38.956572 ], [ -77.032941, 38.956610 ], [ -77.032705, 38.956885 ], [ -77.032657, 38.956943 ], [ -77.032565, 38.957056 ], [ -77.032517, 38.957110 ], [ -77.032372, 38.957281 ], [ -77.032308, 38.957365 ], [ -77.032238, 38.957448 ], [ -77.032029, 38.957690 ], [ -77.031809, 38.957957 ], [ -77.031713, 38.958066 ], [ -77.031573, 38.958232 ], [ -77.031471, 38.958349 ], [ -77.031380, 38.958462 ], [ -77.031149, 38.958737 ], [ -77.030806, 38.959142 ], [ -77.030720, 38.959238 ], [ -77.030607, 38.959375 ], [ -77.030371, 38.959647 ], [ -77.030157, 38.959880 ], [ -77.030119, 38.959918 ], [ -77.030103, 38.959930 ], [ -77.030023, 38.959989 ], [ -77.029980, 38.960018 ], [ -77.029892, 38.960076 ], [ -77.028098, 38.960076 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002501", "GEOID": "11001002501", "NAME": "25.01", "NAMELSAD": "Census Tract 25.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 543460, "AWATER": 0, "INTPTLAT": "+38.9446515", "INTPTLON": "-077.0317348" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.025511, 38.941875 ], [ -77.025667, 38.941870 ], [ -77.025806, 38.941866 ], [ -77.025935, 38.941866 ], [ -77.026139, 38.941866 ], [ -77.026622, 38.941866 ], [ -77.027137, 38.941866 ], [ -77.027593, 38.941870 ], [ -77.029084, 38.941870 ], [ -77.029701, 38.941866 ], [ -77.030318, 38.941866 ], [ -77.030779, 38.941870 ], [ -77.031423, 38.941870 ], [ -77.032061, 38.941870 ], [ -77.032587, 38.941866 ], [ -77.032726, 38.941866 ], [ -77.032866, 38.941866 ], [ -77.033536, 38.941870 ], [ -77.033939, 38.941870 ], [ -77.035237, 38.941870 ], [ -77.036439, 38.941875 ], [ -77.036422, 38.942934 ], [ -77.036428, 38.943998 ], [ -77.036422, 38.945062 ], [ -77.036422, 38.946130 ], [ -77.036428, 38.947244 ], [ -77.036417, 38.947390 ], [ -77.036422, 38.948262 ], [ -77.036278, 38.948262 ], [ -77.035382, 38.948262 ], [ -77.034513, 38.948258 ], [ -77.034411, 38.948258 ], [ -77.033746, 38.948262 ], [ -77.033086, 38.948262 ], [ -77.032861, 38.948262 ], [ -77.032721, 38.948262 ], [ -77.031691, 38.948237 ], [ -77.031621, 38.948179 ], [ -77.031455, 38.948012 ], [ -77.031112, 38.947682 ], [ -77.031090, 38.947661 ], [ -77.031063, 38.947641 ], [ -77.031037, 38.947611 ], [ -77.030972, 38.947524 ], [ -77.030795, 38.947344 ], [ -77.030699, 38.947248 ], [ -77.030688, 38.947236 ], [ -77.030430, 38.946985 ], [ -77.030227, 38.946785 ], [ -77.030044, 38.946602 ], [ -77.029840, 38.946410 ], [ -77.029819, 38.946389 ], [ -77.029642, 38.946126 ], [ -77.028923, 38.946130 ], [ -77.028210, 38.946122 ], [ -77.027797, 38.946126 ], [ -77.027464, 38.946122 ], [ -77.027019, 38.946126 ], [ -77.026595, 38.946126 ], [ -77.026488, 38.945655 ], [ -77.026359, 38.945166 ], [ -77.026332, 38.945062 ], [ -77.026311, 38.944975 ], [ -77.026166, 38.944403 ], [ -77.026085, 38.944103 ], [ -77.026080, 38.944078 ], [ -77.026058, 38.943998 ], [ -77.026037, 38.943911 ], [ -77.025908, 38.943397 ], [ -77.025779, 38.942926 ], [ -77.025710, 38.942651 ], [ -77.025619, 38.942292 ], [ -77.025538, 38.941966 ], [ -77.025511, 38.941875 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002101", "GEOID": "11001002101", "NAME": "21.01", "NAMELSAD": "Census Tract 21.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 600992, "AWATER": 0, "INTPTLAT": "+38.9559119", "INTPTLON": "-077.0241312" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.025260, 38.960076 ], [ -77.024320, 38.959768 ], [ -77.024192, 38.959726 ], [ -77.024090, 38.959692 ], [ -77.023886, 38.959626 ], [ -77.023521, 38.959505 ], [ -77.023162, 38.959388 ], [ -77.022958, 38.959321 ], [ -77.022437, 38.959154 ], [ -77.022330, 38.959117 ], [ -77.022067, 38.959033 ], [ -77.021697, 38.958908 ], [ -77.021332, 38.958791 ], [ -77.021150, 38.958733 ], [ -77.020828, 38.958741 ], [ -77.020764, 38.958741 ], [ -77.020624, 38.958741 ], [ -77.020463, 38.958741 ], [ -77.020356, 38.958737 ], [ -77.020217, 38.958733 ], [ -77.019895, 38.958733 ], [ -77.019895, 38.958708 ], [ -77.019938, 38.958466 ], [ -77.019954, 38.958341 ], [ -77.019954, 38.958308 ], [ -77.019964, 38.958245 ], [ -77.019964, 38.958178 ], [ -77.019964, 38.958078 ], [ -77.019954, 38.957911 ], [ -77.019948, 38.957803 ], [ -77.019932, 38.957519 ], [ -77.019932, 38.957440 ], [ -77.019884, 38.956447 ], [ -77.019879, 38.956351 ], [ -77.019836, 38.955379 ], [ -77.019825, 38.955133 ], [ -77.019814, 38.954937 ], [ -77.019804, 38.954674 ], [ -77.019787, 38.954311 ], [ -77.019766, 38.953919 ], [ -77.019728, 38.953139 ], [ -77.019723, 38.953064 ], [ -77.019691, 38.952472 ], [ -77.019680, 38.952159 ], [ -77.019680, 38.952084 ], [ -77.019884, 38.952075 ], [ -77.020764, 38.952054 ], [ -77.021171, 38.952042 ], [ -77.021558, 38.952034 ], [ -77.021842, 38.952025 ], [ -77.022099, 38.952017 ], [ -77.022201, 38.952013 ], [ -77.022963, 38.951988 ], [ -77.023725, 38.951967 ], [ -77.023827, 38.951967 ], [ -77.023929, 38.951963 ], [ -77.023998, 38.951963 ], [ -77.024615, 38.951946 ], [ -77.024760, 38.951938 ], [ -77.024916, 38.951933 ], [ -77.025302, 38.951925 ], [ -77.025549, 38.951917 ], [ -77.026219, 38.951900 ], [ -77.027265, 38.951867 ], [ -77.027426, 38.951867 ], [ -77.027555, 38.952801 ], [ -77.027555, 38.952822 ], [ -77.027571, 38.952905 ], [ -77.027721, 38.953998 ], [ -77.027732, 38.954082 ], [ -77.027786, 38.954503 ], [ -77.027823, 38.954758 ], [ -77.027861, 38.955041 ], [ -77.027877, 38.955150 ], [ -77.027888, 38.955225 ], [ -77.027957, 38.955709 ], [ -77.028000, 38.956009 ], [ -77.028011, 38.956118 ], [ -77.028027, 38.956218 ], [ -77.028070, 38.956522 ], [ -77.028113, 38.956860 ], [ -77.028134, 38.957023 ], [ -77.028156, 38.957169 ], [ -77.028172, 38.957281 ], [ -77.028199, 38.957490 ], [ -77.028210, 38.957569 ], [ -77.028215, 38.957648 ], [ -77.028226, 38.957807 ], [ -77.028236, 38.957965 ], [ -77.028236, 38.958045 ], [ -77.028236, 38.958128 ], [ -77.028236, 38.958287 ], [ -77.028231, 38.958349 ], [ -77.028226, 38.958504 ], [ -77.028210, 38.958712 ], [ -77.028161, 38.959342 ], [ -77.028102, 38.960022 ], [ -77.028098, 38.960076 ], [ -77.025260, 38.960076 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002102", "GEOID": "11001002102", "NAME": "21.02", "NAMELSAD": "Census Tract 21.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 725975, "AWATER": 0, "INTPTLAT": "+38.9557854", "INTPTLON": "-077.0142356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009204, 38.960076 ], [ -77.009187, 38.960034 ], [ -77.009155, 38.959943 ], [ -77.009107, 38.959809 ], [ -77.009091, 38.959759 ], [ -77.009064, 38.959692 ], [ -77.009053, 38.959647 ], [ -77.009048, 38.959609 ], [ -77.009048, 38.959580 ], [ -77.009043, 38.959551 ], [ -77.009048, 38.959446 ], [ -77.009048, 38.959150 ], [ -77.009048, 38.958892 ], [ -77.009048, 38.958808 ], [ -77.009043, 38.958729 ], [ -77.009043, 38.958650 ], [ -77.009043, 38.958508 ], [ -77.009043, 38.958399 ], [ -77.009048, 38.957661 ], [ -77.009043, 38.957302 ], [ -77.009037, 38.956860 ], [ -77.009043, 38.956589 ], [ -77.009043, 38.956197 ], [ -77.009048, 38.955700 ], [ -77.009043, 38.955308 ], [ -77.009043, 38.954816 ], [ -77.009043, 38.954624 ], [ -77.009043, 38.954545 ], [ -77.009043, 38.954478 ], [ -77.009043, 38.954111 ], [ -77.009048, 38.953790 ], [ -77.009043, 38.953531 ], [ -77.009043, 38.953452 ], [ -77.009048, 38.953335 ], [ -77.009048, 38.953114 ], [ -77.009048, 38.953035 ], [ -77.009048, 38.952972 ], [ -77.009043, 38.952851 ], [ -77.009037, 38.952822 ], [ -77.009037, 38.952759 ], [ -77.009010, 38.952513 ], [ -77.009005, 38.952409 ], [ -77.009144, 38.952405 ], [ -77.009488, 38.952396 ], [ -77.010121, 38.952376 ], [ -77.010657, 38.952363 ], [ -77.010695, 38.952359 ], [ -77.011312, 38.952342 ], [ -77.012267, 38.952313 ], [ -77.012427, 38.952309 ], [ -77.013302, 38.952280 ], [ -77.013361, 38.952280 ], [ -77.013457, 38.952275 ], [ -77.015276, 38.952225 ], [ -77.015769, 38.952209 ], [ -77.015887, 38.952205 ], [ -77.016065, 38.952196 ], [ -77.016107, 38.952196 ], [ -77.016193, 38.952192 ], [ -77.016268, 38.952184 ], [ -77.016295, 38.952184 ], [ -77.016322, 38.952180 ], [ -77.016456, 38.952175 ], [ -77.016826, 38.952167 ], [ -77.017202, 38.952154 ], [ -77.017604, 38.952142 ], [ -77.018318, 38.952121 ], [ -77.018972, 38.952104 ], [ -77.019348, 38.952092 ], [ -77.019578, 38.952088 ], [ -77.019680, 38.952084 ], [ -77.019680, 38.952159 ], [ -77.019691, 38.952472 ], [ -77.019723, 38.953064 ], [ -77.019728, 38.953139 ], [ -77.019766, 38.953919 ], [ -77.019787, 38.954311 ], [ -77.019804, 38.954674 ], [ -77.019814, 38.954937 ], [ -77.019825, 38.955133 ], [ -77.019836, 38.955379 ], [ -77.019879, 38.956351 ], [ -77.019884, 38.956447 ], [ -77.019932, 38.957440 ], [ -77.019932, 38.957519 ], [ -77.019948, 38.957803 ], [ -77.019954, 38.957911 ], [ -77.019964, 38.958078 ], [ -77.019964, 38.958178 ], [ -77.019964, 38.958245 ], [ -77.019954, 38.958308 ], [ -77.019954, 38.958341 ], [ -77.019938, 38.958466 ], [ -77.019895, 38.958708 ], [ -77.019895, 38.958733 ], [ -77.019659, 38.958733 ], [ -77.019315, 38.958737 ], [ -77.018779, 38.958733 ], [ -77.018495, 38.958737 ], [ -77.018183, 38.958737 ], [ -77.018028, 38.958737 ], [ -77.017803, 38.958733 ], [ -77.017432, 38.958737 ], [ -77.017094, 38.958737 ], [ -77.017003, 38.958737 ], [ -77.016912, 38.958737 ], [ -77.016676, 38.958737 ], [ -77.016365, 38.958733 ], [ -77.016166, 38.958733 ], [ -77.015185, 38.958733 ], [ -77.014756, 38.958733 ], [ -77.014090, 38.958733 ], [ -77.013667, 38.958733 ], [ -77.013597, 38.958733 ], [ -77.013420, 38.958733 ], [ -77.012416, 38.960076 ], [ -77.009204, 38.960076 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002201", "GEOID": "11001002201", "NAME": "22.01", "NAMELSAD": "Census Tract 22.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 415173, "AWATER": 0, "INTPTLAT": "+38.9491337", "INTPTLON": "-077.0232932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027426, 38.951867 ], [ -77.027265, 38.951867 ], [ -77.026219, 38.951900 ], [ -77.025549, 38.951917 ], [ -77.025302, 38.951925 ], [ -77.024916, 38.951933 ], [ -77.024760, 38.951938 ], [ -77.024615, 38.951946 ], [ -77.023998, 38.951963 ], [ -77.023929, 38.951963 ], [ -77.023827, 38.951967 ], [ -77.023725, 38.951967 ], [ -77.022963, 38.951988 ], [ -77.022201, 38.952013 ], [ -77.022099, 38.952017 ], [ -77.021842, 38.952025 ], [ -77.021558, 38.952034 ], [ -77.021171, 38.952042 ], [ -77.020764, 38.952054 ], [ -77.019884, 38.952075 ], [ -77.019680, 38.952084 ], [ -77.019626, 38.951020 ], [ -77.019605, 38.950469 ], [ -77.019600, 38.950402 ], [ -77.019594, 38.950248 ], [ -77.019584, 38.950027 ], [ -77.019578, 38.949952 ], [ -77.019578, 38.949923 ], [ -77.019562, 38.949639 ], [ -77.019551, 38.949401 ], [ -77.019541, 38.949209 ], [ -77.019541, 38.949134 ], [ -77.019525, 38.948813 ], [ -77.019508, 38.948471 ], [ -77.019492, 38.948149 ], [ -77.019466, 38.947641 ], [ -77.019455, 38.947403 ], [ -77.019455, 38.947307 ], [ -77.019412, 38.946335 ], [ -77.020233, 38.946314 ], [ -77.020758, 38.946297 ], [ -77.021096, 38.946285 ], [ -77.021220, 38.946280 ], [ -77.021407, 38.946272 ], [ -77.021831, 38.946260 ], [ -77.022523, 38.946239 ], [ -77.022695, 38.946235 ], [ -77.023258, 38.946218 ], [ -77.023548, 38.946209 ], [ -77.024165, 38.946189 ], [ -77.024910, 38.946172 ], [ -77.025270, 38.946159 ], [ -77.025844, 38.946143 ], [ -77.026412, 38.946126 ], [ -77.026595, 38.946126 ], [ -77.026665, 38.946401 ], [ -77.026783, 38.947190 ], [ -77.026809, 38.947373 ], [ -77.026927, 38.948258 ], [ -77.026944, 38.948333 ], [ -77.026949, 38.948391 ], [ -77.026960, 38.948462 ], [ -77.027003, 38.948763 ], [ -77.027013, 38.948838 ], [ -77.027029, 38.948992 ], [ -77.027045, 38.949084 ], [ -77.027078, 38.949338 ], [ -77.027131, 38.949735 ], [ -77.027158, 38.949927 ], [ -77.027206, 38.950277 ], [ -77.027223, 38.950365 ], [ -77.027233, 38.950452 ], [ -77.027244, 38.950540 ], [ -77.027255, 38.950628 ], [ -77.027271, 38.950715 ], [ -77.027282, 38.950803 ], [ -77.027394, 38.951620 ], [ -77.027426, 38.951867 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002301", "GEOID": "11001002301", "NAME": "23.01", "NAMELSAD": "Census Tract 23.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 407679, "AWATER": 0, "INTPTLAT": "+38.9425520", "INTPTLON": "-077.0165915" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.016070, 38.946431 ], [ -77.016011, 38.946397 ], [ -77.015700, 38.945784 ], [ -77.015668, 38.945730 ], [ -77.014750, 38.945400 ], [ -77.014235, 38.945187 ], [ -77.014107, 38.945137 ], [ -77.013592, 38.944924 ], [ -77.013506, 38.944891 ], [ -77.012615, 38.944386 ], [ -77.011848, 38.944411 ], [ -77.011666, 38.944411 ], [ -77.011644, 38.944407 ], [ -77.011623, 38.944403 ], [ -77.011601, 38.944395 ], [ -77.011585, 38.944382 ], [ -77.011537, 38.944328 ], [ -77.011575, 38.944307 ], [ -77.011617, 38.944282 ], [ -77.011676, 38.944240 ], [ -77.011768, 38.944161 ], [ -77.011837, 38.944098 ], [ -77.011853, 38.944082 ], [ -77.012025, 38.943923 ], [ -77.012143, 38.943819 ], [ -77.012159, 38.943802 ], [ -77.012186, 38.943765 ], [ -77.012208, 38.943723 ], [ -77.012401, 38.943297 ], [ -77.012433, 38.943231 ], [ -77.012449, 38.943197 ], [ -77.012567, 38.942938 ], [ -77.012599, 38.942880 ], [ -77.012642, 38.942805 ], [ -77.012674, 38.942755 ], [ -77.012717, 38.942701 ], [ -77.012739, 38.942676 ], [ -77.012803, 38.942596 ], [ -77.012873, 38.942521 ], [ -77.012975, 38.942421 ], [ -77.013136, 38.942275 ], [ -77.013313, 38.942133 ], [ -77.013409, 38.942058 ], [ -77.013522, 38.941954 ], [ -77.013752, 38.941724 ], [ -77.014182, 38.941299 ], [ -77.014246, 38.941232 ], [ -77.014369, 38.941082 ], [ -77.014568, 38.940836 ], [ -77.014621, 38.940756 ], [ -77.014847, 38.940398 ], [ -77.015008, 38.940135 ], [ -77.015088, 38.940005 ], [ -77.015185, 38.939851 ], [ -77.015201, 38.939826 ], [ -77.015217, 38.939805 ], [ -77.015265, 38.939759 ], [ -77.015426, 38.939613 ], [ -77.016242, 38.938883 ], [ -77.016456, 38.938695 ], [ -77.016542, 38.938616 ], [ -77.016875, 38.938315 ], [ -77.017180, 38.938040 ], [ -77.017213, 38.938015 ], [ -77.017272, 38.937969 ], [ -77.017336, 38.937923 ], [ -77.017406, 38.937881 ], [ -77.017438, 38.937861 ], [ -77.017508, 38.937823 ], [ -77.017604, 38.937781 ], [ -77.017636, 38.937769 ], [ -77.017722, 38.937740 ], [ -77.017765, 38.937723 ], [ -77.018039, 38.937648 ], [ -77.018242, 38.937594 ], [ -77.018344, 38.937564 ], [ -77.018446, 38.937539 ], [ -77.018757, 38.937460 ], [ -77.018875, 38.937431 ], [ -77.019031, 38.937397 ], [ -77.018999, 38.937481 ], [ -77.018988, 38.937539 ], [ -77.018983, 38.937598 ], [ -77.018983, 38.937656 ], [ -77.018983, 38.937715 ], [ -77.018988, 38.937773 ], [ -77.019042, 38.938841 ], [ -77.019063, 38.939283 ], [ -77.019095, 38.939914 ], [ -77.019112, 38.940322 ], [ -77.019133, 38.940652 ], [ -77.019149, 38.940986 ], [ -77.019165, 38.941378 ], [ -77.019197, 38.942054 ], [ -77.019203, 38.942187 ], [ -77.019219, 38.942571 ], [ -77.019246, 38.942567 ], [ -77.019326, 38.942571 ], [ -77.019401, 38.942580 ], [ -77.019460, 38.942592 ], [ -77.019551, 38.942617 ], [ -77.019610, 38.942642 ], [ -77.019669, 38.942671 ], [ -77.019686, 38.942680 ], [ -77.019745, 38.942717 ], [ -77.019782, 38.942755 ], [ -77.019820, 38.942792 ], [ -77.019852, 38.942834 ], [ -77.019884, 38.942880 ], [ -77.019905, 38.942926 ], [ -77.019927, 38.942972 ], [ -77.019938, 38.943018 ], [ -77.019948, 38.943068 ], [ -77.019954, 38.943101 ], [ -77.019954, 38.943168 ], [ -77.019943, 38.943210 ], [ -77.019932, 38.943251 ], [ -77.019922, 38.943293 ], [ -77.019900, 38.943335 ], [ -77.019879, 38.943372 ], [ -77.019846, 38.943410 ], [ -77.019820, 38.943448 ], [ -77.019782, 38.943481 ], [ -77.019745, 38.943514 ], [ -77.019707, 38.943543 ], [ -77.019653, 38.943577 ], [ -77.019600, 38.943602 ], [ -77.019557, 38.943619 ], [ -77.019476, 38.943644 ], [ -77.019433, 38.943656 ], [ -77.019358, 38.943669 ], [ -77.019272, 38.943677 ], [ -77.019283, 38.943819 ], [ -77.019283, 38.943873 ], [ -77.019289, 38.943927 ], [ -77.019305, 38.944190 ], [ -77.019321, 38.944532 ], [ -77.019326, 38.944728 ], [ -77.019358, 38.945262 ], [ -77.019374, 38.945588 ], [ -77.019380, 38.945713 ], [ -77.019390, 38.945968 ], [ -77.019412, 38.946335 ], [ -77.018500, 38.946360 ], [ -77.017481, 38.946393 ], [ -77.017331, 38.946397 ], [ -77.017094, 38.946401 ], [ -77.016810, 38.946410 ], [ -77.016660, 38.946414 ], [ -77.016070, 38.946431 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002504", "GEOID": "11001002504", "NAME": "25.04", "NAMELSAD": "Census Tract 25.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 311721, "AWATER": 0, "INTPTLAT": "+38.9394498", "INTPTLON": "-077.0329275" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.029722, 38.936283 ], [ -77.030023, 38.936367 ], [ -77.030860, 38.936596 ], [ -77.030956, 38.936617 ], [ -77.031836, 38.936851 ], [ -77.032254, 38.936964 ], [ -77.032726, 38.937076 ], [ -77.033166, 38.937206 ], [ -77.033633, 38.937322 ], [ -77.033719, 38.937343 ], [ -77.033799, 38.937364 ], [ -77.033907, 38.937389 ], [ -77.034019, 38.937406 ], [ -77.034132, 38.937418 ], [ -77.034186, 38.937422 ], [ -77.034298, 38.937427 ], [ -77.034357, 38.937427 ], [ -77.034797, 38.937427 ], [ -77.035226, 38.937427 ], [ -77.036444, 38.937427 ], [ -77.036444, 38.937731 ], [ -77.036444, 38.937923 ], [ -77.036444, 38.938048 ], [ -77.036444, 38.938232 ], [ -77.036439, 38.938599 ], [ -77.036439, 38.938950 ], [ -77.036439, 38.939104 ], [ -77.036439, 38.939738 ], [ -77.036428, 38.940806 ], [ -77.036439, 38.941875 ], [ -77.035237, 38.941870 ], [ -77.033939, 38.941870 ], [ -77.033536, 38.941870 ], [ -77.032866, 38.941866 ], [ -77.032726, 38.941866 ], [ -77.032587, 38.941866 ], [ -77.032061, 38.941870 ], [ -77.031423, 38.941870 ], [ -77.030779, 38.941870 ], [ -77.030318, 38.941866 ], [ -77.029701, 38.941866 ], [ -77.029701, 38.941578 ], [ -77.029701, 38.941278 ], [ -77.029701, 38.940806 ], [ -77.029701, 38.940122 ], [ -77.029701, 38.939742 ], [ -77.029701, 38.939379 ], [ -77.029701, 38.938745 ], [ -77.029701, 38.938674 ], [ -77.029701, 38.937681 ], [ -77.029701, 38.937606 ], [ -77.029701, 38.937005 ], [ -77.029706, 38.936834 ], [ -77.029722, 38.936283 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002801", "GEOID": "11001002801", "NAME": "28.01", "NAMELSAD": "Census Tract 28.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 171910, "AWATER": 0, "INTPTLAT": "+38.9349477", "INTPTLON": "-077.0345166" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.036444, 38.937427 ], [ -77.035226, 38.937427 ], [ -77.034797, 38.937427 ], [ -77.034357, 38.937427 ], [ -77.034298, 38.937427 ], [ -77.034186, 38.937422 ], [ -77.034132, 38.937418 ], [ -77.034019, 38.937406 ], [ -77.033907, 38.937389 ], [ -77.033799, 38.937364 ], [ -77.033719, 38.937343 ], [ -77.033633, 38.937322 ], [ -77.033166, 38.937206 ], [ -77.032726, 38.937076 ], [ -77.032726, 38.936467 ], [ -77.032726, 38.936262 ], [ -77.032726, 38.936221 ], [ -77.032726, 38.935591 ], [ -77.032732, 38.935528 ], [ -77.032732, 38.935294 ], [ -77.032732, 38.934936 ], [ -77.032732, 38.934568 ], [ -77.032726, 38.934122 ], [ -77.032726, 38.933855 ], [ -77.032726, 38.933579 ], [ -77.032726, 38.933479 ], [ -77.032726, 38.933404 ], [ -77.032726, 38.933166 ], [ -77.032726, 38.933087 ], [ -77.032732, 38.932482 ], [ -77.032732, 38.931985 ], [ -77.032732, 38.931869 ], [ -77.032871, 38.931902 ], [ -77.033510, 38.932144 ], [ -77.034432, 38.932503 ], [ -77.035130, 38.932774 ], [ -77.035763, 38.933020 ], [ -77.036299, 38.933225 ], [ -77.036455, 38.933287 ], [ -77.036455, 38.934122 ], [ -77.036449, 38.934356 ], [ -77.036449, 38.934431 ], [ -77.036449, 38.934860 ], [ -77.036449, 38.934965 ], [ -77.036449, 38.935403 ], [ -77.036444, 38.936079 ], [ -77.036444, 38.936375 ], [ -77.036444, 38.936734 ], [ -77.036449, 38.936801 ], [ -77.036449, 38.936930 ], [ -77.036444, 38.937068 ], [ -77.036444, 38.937281 ], [ -77.036444, 38.937427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002503", "GEOID": "11001002503", "NAME": "25.03", "NAMELSAD": "Census Tract 25.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 292105, "AWATER": 0, "INTPTLAT": "+38.9386375", "INTPTLON": "-077.0271734" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.025302, 38.935107 ], [ -77.025361, 38.935107 ], [ -77.025442, 38.935119 ], [ -77.025495, 38.935128 ], [ -77.025522, 38.935132 ], [ -77.025828, 38.935211 ], [ -77.025892, 38.935257 ], [ -77.025940, 38.935286 ], [ -77.025994, 38.935303 ], [ -77.026284, 38.935378 ], [ -77.026724, 38.935495 ], [ -77.027094, 38.935591 ], [ -77.027196, 38.935620 ], [ -77.027507, 38.935699 ], [ -77.028043, 38.935849 ], [ -77.028381, 38.935937 ], [ -77.028489, 38.935966 ], [ -77.029722, 38.936283 ], [ -77.029706, 38.936834 ], [ -77.029701, 38.937005 ], [ -77.029701, 38.937606 ], [ -77.029701, 38.937681 ], [ -77.029701, 38.938674 ], [ -77.029701, 38.938745 ], [ -77.029701, 38.939379 ], [ -77.029701, 38.939742 ], [ -77.029701, 38.940122 ], [ -77.029701, 38.940806 ], [ -77.029701, 38.941278 ], [ -77.029701, 38.941578 ], [ -77.029701, 38.941866 ], [ -77.029084, 38.941870 ], [ -77.027593, 38.941870 ], [ -77.027137, 38.941866 ], [ -77.026622, 38.941866 ], [ -77.026139, 38.941866 ], [ -77.025935, 38.941866 ], [ -77.025806, 38.941866 ], [ -77.025667, 38.941870 ], [ -77.025511, 38.941875 ], [ -77.025484, 38.941766 ], [ -77.025377, 38.941345 ], [ -77.025238, 38.940811 ], [ -77.025087, 38.940231 ], [ -77.024959, 38.939742 ], [ -77.024841, 38.939267 ], [ -77.024766, 38.938983 ], [ -77.024712, 38.938779 ], [ -77.024685, 38.938683 ], [ -77.024658, 38.938574 ], [ -77.024637, 38.938470 ], [ -77.024605, 38.938307 ], [ -77.024497, 38.937610 ], [ -77.024310, 38.936421 ], [ -77.024304, 38.936396 ], [ -77.024294, 38.936329 ], [ -77.024288, 38.936292 ], [ -77.024428, 38.936254 ], [ -77.025243, 38.935128 ], [ -77.025302, 38.935107 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002900", "GEOID": "11001002900", "NAME": "29", "NAMELSAD": "Census Tract 29", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 300632, "AWATER": 0, "INTPTLAT": "+38.9338478", "INTPTLON": "-077.0299131" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.032555, 38.930358 ], [ -77.032662, 38.930341 ], [ -77.032710, 38.931184 ], [ -77.032705, 38.931347 ], [ -77.032732, 38.931480 ], [ -77.032732, 38.931869 ], [ -77.032732, 38.931985 ], [ -77.032732, 38.932482 ], [ -77.032726, 38.933087 ], [ -77.032726, 38.933166 ], [ -77.032726, 38.933404 ], [ -77.032726, 38.933479 ], [ -77.032726, 38.933579 ], [ -77.032726, 38.933855 ], [ -77.032726, 38.934122 ], [ -77.032732, 38.934568 ], [ -77.032732, 38.934936 ], [ -77.032732, 38.935294 ], [ -77.032732, 38.935528 ], [ -77.032726, 38.935591 ], [ -77.032726, 38.936221 ], [ -77.032726, 38.936262 ], [ -77.032726, 38.936467 ], [ -77.032726, 38.937076 ], [ -77.032254, 38.936964 ], [ -77.031836, 38.936851 ], [ -77.030956, 38.936617 ], [ -77.030860, 38.936596 ], [ -77.030023, 38.936367 ], [ -77.029722, 38.936283 ], [ -77.028489, 38.935966 ], [ -77.028381, 38.935937 ], [ -77.028043, 38.935849 ], [ -77.027507, 38.935699 ], [ -77.027196, 38.935620 ], [ -77.027094, 38.935591 ], [ -77.026724, 38.935495 ], [ -77.026284, 38.935378 ], [ -77.025994, 38.935303 ], [ -77.025940, 38.935286 ], [ -77.025892, 38.935257 ], [ -77.025828, 38.935211 ], [ -77.025522, 38.935132 ], [ -77.025495, 38.935128 ], [ -77.025442, 38.935119 ], [ -77.025361, 38.935107 ], [ -77.025302, 38.935107 ], [ -77.025243, 38.935128 ], [ -77.026053, 38.934055 ], [ -77.026273, 38.933767 ], [ -77.026493, 38.933458 ], [ -77.026820, 38.933020 ], [ -77.026847, 38.932962 ], [ -77.026858, 38.932912 ], [ -77.026858, 38.932866 ], [ -77.026842, 38.932803 ], [ -77.026815, 38.932749 ], [ -77.026944, 38.932720 ], [ -77.027003, 38.932695 ], [ -77.027056, 38.932661 ], [ -77.027110, 38.932599 ], [ -77.027206, 38.932457 ], [ -77.027244, 38.932411 ], [ -77.027319, 38.932315 ], [ -77.027442, 38.932173 ], [ -77.027480, 38.932136 ], [ -77.027523, 38.932102 ], [ -77.027566, 38.932073 ], [ -77.027619, 38.932048 ], [ -77.027668, 38.932019 ], [ -77.027743, 38.931994 ], [ -77.028113, 38.931869 ], [ -77.028258, 38.931823 ], [ -77.028580, 38.931710 ], [ -77.029320, 38.931455 ], [ -77.029706, 38.931322 ], [ -77.030731, 38.930971 ], [ -77.030849, 38.930934 ], [ -77.030935, 38.930900 ], [ -77.030988, 38.930884 ], [ -77.032335, 38.930420 ], [ -77.032555, 38.930358 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002802", "GEOID": "11001002802", "NAME": "28.02", "NAMELSAD": "Census Tract 28.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 229696, "AWATER": 0, "INTPTLAT": "+38.9294344", "INTPTLON": "-077.0346327" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.032523, 38.926527 ], [ -77.032624, 38.926502 ], [ -77.032716, 38.926489 ], [ -77.033113, 38.926464 ], [ -77.033601, 38.926435 ], [ -77.034942, 38.926356 ], [ -77.035478, 38.926327 ], [ -77.035983, 38.926310 ], [ -77.036331, 38.926293 ], [ -77.036487, 38.926272 ], [ -77.036487, 38.926527 ], [ -77.036701, 38.927120 ], [ -77.036481, 38.927157 ], [ -77.036481, 38.927228 ], [ -77.036476, 38.928000 ], [ -77.036476, 38.928593 ], [ -77.036471, 38.928689 ], [ -77.036471, 38.929106 ], [ -77.036471, 38.929164 ], [ -77.036471, 38.929244 ], [ -77.036465, 38.929861 ], [ -77.036465, 38.929986 ], [ -77.036455, 38.930450 ], [ -77.036455, 38.930533 ], [ -77.036455, 38.930592 ], [ -77.036460, 38.931472 ], [ -77.036455, 38.931560 ], [ -77.036455, 38.931652 ], [ -77.036455, 38.931806 ], [ -77.036455, 38.932269 ], [ -77.036455, 38.932494 ], [ -77.036455, 38.932607 ], [ -77.036455, 38.932924 ], [ -77.036455, 38.933287 ], [ -77.036299, 38.933225 ], [ -77.035763, 38.933020 ], [ -77.035130, 38.932774 ], [ -77.034432, 38.932503 ], [ -77.033510, 38.932144 ], [ -77.032871, 38.931902 ], [ -77.032732, 38.931869 ], [ -77.032732, 38.931480 ], [ -77.032705, 38.931347 ], [ -77.032710, 38.931184 ], [ -77.032662, 38.930341 ], [ -77.032662, 38.930325 ], [ -77.032662, 38.930203 ], [ -77.032662, 38.930162 ], [ -77.032662, 38.930128 ], [ -77.032651, 38.929674 ], [ -77.032651, 38.929657 ], [ -77.032608, 38.928806 ], [ -77.032587, 38.928534 ], [ -77.032517, 38.927537 ], [ -77.032405, 38.926573 ], [ -77.032523, 38.926527 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003100", "GEOID": "11001003100", "NAME": "31", "NAMELSAD": "Census Tract 31", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 296819, "AWATER": 0, "INTPTLAT": "+38.9306170", "INTPTLON": "-077.0254235" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027051, 38.926807 ], [ -77.027110, 38.927078 ], [ -77.027196, 38.927428 ], [ -77.027271, 38.927733 ], [ -77.027335, 38.928004 ], [ -77.027405, 38.928288 ], [ -77.027442, 38.928430 ], [ -77.027507, 38.928705 ], [ -77.027550, 38.928881 ], [ -77.027641, 38.929273 ], [ -77.027721, 38.929594 ], [ -77.027743, 38.929674 ], [ -77.027780, 38.929840 ], [ -77.027872, 38.930212 ], [ -77.027990, 38.930696 ], [ -77.028172, 38.931468 ], [ -77.028236, 38.931722 ], [ -77.028258, 38.931823 ], [ -77.028113, 38.931869 ], [ -77.027743, 38.931994 ], [ -77.027668, 38.932019 ], [ -77.027619, 38.932048 ], [ -77.027566, 38.932073 ], [ -77.027523, 38.932102 ], [ -77.027480, 38.932136 ], [ -77.027442, 38.932173 ], [ -77.027319, 38.932315 ], [ -77.027244, 38.932411 ], [ -77.027206, 38.932457 ], [ -77.027110, 38.932599 ], [ -77.027056, 38.932661 ], [ -77.027003, 38.932695 ], [ -77.026944, 38.932720 ], [ -77.026815, 38.932749 ], [ -77.026842, 38.932803 ], [ -77.026858, 38.932866 ], [ -77.026858, 38.932912 ], [ -77.026847, 38.932962 ], [ -77.026820, 38.933020 ], [ -77.026493, 38.933458 ], [ -77.026273, 38.933767 ], [ -77.026053, 38.934055 ], [ -77.025243, 38.935128 ], [ -77.024428, 38.936254 ], [ -77.024288, 38.936292 ], [ -77.024208, 38.935762 ], [ -77.024143, 38.935319 ], [ -77.024127, 38.935232 ], [ -77.024111, 38.935123 ], [ -77.024090, 38.934981 ], [ -77.024020, 38.934506 ], [ -77.024009, 38.934431 ], [ -77.023988, 38.934314 ], [ -77.023982, 38.934251 ], [ -77.023972, 38.934180 ], [ -77.023929, 38.933909 ], [ -77.023913, 38.933801 ], [ -77.023891, 38.933642 ], [ -77.023816, 38.933154 ], [ -77.023800, 38.933016 ], [ -77.023768, 38.932812 ], [ -77.023752, 38.932720 ], [ -77.023709, 38.932411 ], [ -77.023661, 38.932040 ], [ -77.023628, 38.931823 ], [ -77.023559, 38.931351 ], [ -77.023548, 38.931280 ], [ -77.023537, 38.931192 ], [ -77.023516, 38.931059 ], [ -77.023462, 38.930671 ], [ -77.023451, 38.930600 ], [ -77.023365, 38.930020 ], [ -77.023306, 38.929619 ], [ -77.023226, 38.929039 ], [ -77.023178, 38.928701 ], [ -77.023151, 38.928534 ], [ -77.023092, 38.928121 ], [ -77.023060, 38.927900 ], [ -77.023017, 38.927620 ], [ -77.022963, 38.927228 ], [ -77.023022, 38.927203 ], [ -77.023076, 38.927178 ], [ -77.023172, 38.927145 ], [ -77.023247, 38.927124 ], [ -77.023328, 38.927107 ], [ -77.023403, 38.927090 ], [ -77.023484, 38.927078 ], [ -77.023526, 38.927074 ], [ -77.024417, 38.926986 ], [ -77.025087, 38.926928 ], [ -77.025779, 38.926869 ], [ -77.025935, 38.926852 ], [ -77.026155, 38.926836 ], [ -77.026348, 38.926819 ], [ -77.026638, 38.926794 ], [ -77.026981, 38.926756 ], [ -77.027045, 38.926748 ], [ -77.027051, 38.926807 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003000", "GEOID": "11001003000", "NAME": "30", "NAMELSAD": "Census Tract 30", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 210636, "AWATER": 0, "INTPTLAT": "+38.9288689", "INTPTLON": "-077.0299525" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.032405, 38.926573 ], [ -77.032517, 38.927537 ], [ -77.032587, 38.928534 ], [ -77.032608, 38.928806 ], [ -77.032651, 38.929657 ], [ -77.032651, 38.929674 ], [ -77.032662, 38.930128 ], [ -77.032662, 38.930162 ], [ -77.032662, 38.930203 ], [ -77.032662, 38.930325 ], [ -77.032662, 38.930341 ], [ -77.032555, 38.930358 ], [ -77.032335, 38.930420 ], [ -77.030988, 38.930884 ], [ -77.030935, 38.930900 ], [ -77.030849, 38.930934 ], [ -77.030731, 38.930971 ], [ -77.029706, 38.931322 ], [ -77.029320, 38.931455 ], [ -77.028580, 38.931710 ], [ -77.028258, 38.931823 ], [ -77.028236, 38.931722 ], [ -77.028172, 38.931468 ], [ -77.027990, 38.930696 ], [ -77.027872, 38.930212 ], [ -77.027780, 38.929840 ], [ -77.027743, 38.929674 ], [ -77.027721, 38.929594 ], [ -77.027641, 38.929273 ], [ -77.027550, 38.928881 ], [ -77.027507, 38.928705 ], [ -77.027442, 38.928430 ], [ -77.027405, 38.928288 ], [ -77.027335, 38.928004 ], [ -77.027271, 38.927733 ], [ -77.027196, 38.927428 ], [ -77.027110, 38.927078 ], [ -77.027051, 38.926807 ], [ -77.027045, 38.926748 ], [ -77.027099, 38.926744 ], [ -77.027185, 38.926740 ], [ -77.028285, 38.926740 ], [ -77.028735, 38.926740 ], [ -77.029594, 38.926740 ], [ -77.029706, 38.926744 ], [ -77.029878, 38.926744 ], [ -77.029980, 38.926744 ], [ -77.031278, 38.926744 ], [ -77.031455, 38.926740 ], [ -77.031557, 38.926740 ], [ -77.031852, 38.926736 ], [ -77.032002, 38.926727 ], [ -77.032050, 38.926723 ], [ -77.032169, 38.926686 ], [ -77.032405, 38.926573 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002400", "GEOID": "11001002400", "NAME": "24", "NAMELSAD": "Census Tract 24", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 556408, "AWATER": 0, "INTPTLAT": "+38.9417822", "INTPTLON": "-077.0224058" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.019412, 38.946335 ], [ -77.019390, 38.945968 ], [ -77.019380, 38.945713 ], [ -77.019374, 38.945588 ], [ -77.019358, 38.945262 ], [ -77.019326, 38.944728 ], [ -77.019321, 38.944532 ], [ -77.019305, 38.944190 ], [ -77.019289, 38.943927 ], [ -77.019283, 38.943873 ], [ -77.019283, 38.943819 ], [ -77.019272, 38.943677 ], [ -77.019358, 38.943669 ], [ -77.019433, 38.943656 ], [ -77.019476, 38.943644 ], [ -77.019557, 38.943619 ], [ -77.019600, 38.943602 ], [ -77.019653, 38.943577 ], [ -77.019707, 38.943543 ], [ -77.019745, 38.943514 ], [ -77.019782, 38.943481 ], [ -77.019820, 38.943448 ], [ -77.019846, 38.943410 ], [ -77.019879, 38.943372 ], [ -77.019900, 38.943335 ], [ -77.019922, 38.943293 ], [ -77.019932, 38.943251 ], [ -77.019943, 38.943210 ], [ -77.019954, 38.943168 ], [ -77.019954, 38.943101 ], [ -77.019948, 38.943068 ], [ -77.019938, 38.943018 ], [ -77.019927, 38.942972 ], [ -77.019905, 38.942926 ], [ -77.019884, 38.942880 ], [ -77.019852, 38.942834 ], [ -77.019820, 38.942792 ], [ -77.019782, 38.942755 ], [ -77.019745, 38.942717 ], [ -77.019686, 38.942680 ], [ -77.019669, 38.942671 ], [ -77.019610, 38.942642 ], [ -77.019551, 38.942617 ], [ -77.019460, 38.942592 ], [ -77.019401, 38.942580 ], [ -77.019326, 38.942571 ], [ -77.019246, 38.942567 ], [ -77.019219, 38.942571 ], [ -77.019203, 38.942187 ], [ -77.019197, 38.942054 ], [ -77.019165, 38.941378 ], [ -77.019149, 38.940986 ], [ -77.019133, 38.940652 ], [ -77.019112, 38.940322 ], [ -77.019095, 38.939914 ], [ -77.019063, 38.939283 ], [ -77.019042, 38.938841 ], [ -77.018988, 38.937773 ], [ -77.018983, 38.937715 ], [ -77.018983, 38.937656 ], [ -77.018983, 38.937598 ], [ -77.018988, 38.937539 ], [ -77.018999, 38.937481 ], [ -77.019031, 38.937397 ], [ -77.019514, 38.937289 ], [ -77.019573, 38.937272 ], [ -77.019632, 38.937260 ], [ -77.019680, 38.937251 ], [ -77.019750, 38.937239 ], [ -77.019782, 38.937231 ], [ -77.021236, 38.937047 ], [ -77.021370, 38.937026 ], [ -77.021466, 38.937014 ], [ -77.021965, 38.936897 ], [ -77.022647, 38.936730 ], [ -77.023081, 38.936621 ], [ -77.023349, 38.936559 ], [ -77.024025, 38.936388 ], [ -77.024288, 38.936292 ], [ -77.024294, 38.936329 ], [ -77.024304, 38.936396 ], [ -77.024310, 38.936421 ], [ -77.024497, 38.937610 ], [ -77.024605, 38.938307 ], [ -77.024637, 38.938470 ], [ -77.024658, 38.938574 ], [ -77.024685, 38.938683 ], [ -77.024712, 38.938779 ], [ -77.024766, 38.938983 ], [ -77.024841, 38.939267 ], [ -77.024959, 38.939742 ], [ -77.025087, 38.940231 ], [ -77.025238, 38.940811 ], [ -77.025377, 38.941345 ], [ -77.025484, 38.941766 ], [ -77.025511, 38.941875 ], [ -77.025538, 38.941966 ], [ -77.025619, 38.942292 ], [ -77.025710, 38.942651 ], [ -77.025779, 38.942926 ], [ -77.025908, 38.943397 ], [ -77.026037, 38.943911 ], [ -77.026058, 38.943998 ], [ -77.026080, 38.944078 ], [ -77.026085, 38.944103 ], [ -77.026166, 38.944403 ], [ -77.026311, 38.944975 ], [ -77.026332, 38.945062 ], [ -77.026359, 38.945166 ], [ -77.026488, 38.945655 ], [ -77.026595, 38.946126 ], [ -77.026412, 38.946126 ], [ -77.025844, 38.946143 ], [ -77.025270, 38.946159 ], [ -77.024910, 38.946172 ], [ -77.024165, 38.946189 ], [ -77.023548, 38.946209 ], [ -77.023258, 38.946218 ], [ -77.022695, 38.946235 ], [ -77.022523, 38.946239 ], [ -77.021831, 38.946260 ], [ -77.021407, 38.946272 ], [ -77.021220, 38.946280 ], [ -77.021096, 38.946285 ], [ -77.020758, 38.946297 ], [ -77.020233, 38.946314 ], [ -77.019412, 38.946335 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003200", "GEOID": "11001003200", "NAME": "32", "NAMELSAD": "Census Tract 32", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 447929, "AWATER": 0, "INTPTLAT": "+38.9322375", "INTPTLON": "-077.0211591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.022963, 38.927228 ], [ -77.023017, 38.927620 ], [ -77.023060, 38.927900 ], [ -77.023092, 38.928121 ], [ -77.023151, 38.928534 ], [ -77.023178, 38.928701 ], [ -77.023226, 38.929039 ], [ -77.023306, 38.929619 ], [ -77.023365, 38.930020 ], [ -77.023451, 38.930600 ], [ -77.023462, 38.930671 ], [ -77.023516, 38.931059 ], [ -77.023537, 38.931192 ], [ -77.023548, 38.931280 ], [ -77.023559, 38.931351 ], [ -77.023628, 38.931823 ], [ -77.023661, 38.932040 ], [ -77.023709, 38.932411 ], [ -77.023752, 38.932720 ], [ -77.023768, 38.932812 ], [ -77.023800, 38.933016 ], [ -77.023816, 38.933154 ], [ -77.023891, 38.933642 ], [ -77.023913, 38.933801 ], [ -77.023929, 38.933909 ], [ -77.023972, 38.934180 ], [ -77.023982, 38.934251 ], [ -77.023988, 38.934314 ], [ -77.024009, 38.934431 ], [ -77.024020, 38.934506 ], [ -77.024090, 38.934981 ], [ -77.024111, 38.935123 ], [ -77.024127, 38.935232 ], [ -77.024143, 38.935319 ], [ -77.024208, 38.935762 ], [ -77.024288, 38.936292 ], [ -77.024025, 38.936388 ], [ -77.023349, 38.936559 ], [ -77.023081, 38.936621 ], [ -77.022647, 38.936730 ], [ -77.021965, 38.936897 ], [ -77.021466, 38.937014 ], [ -77.021370, 38.937026 ], [ -77.021236, 38.937047 ], [ -77.019782, 38.937231 ], [ -77.019750, 38.937239 ], [ -77.019680, 38.937251 ], [ -77.019632, 38.937260 ], [ -77.019573, 38.937272 ], [ -77.019514, 38.937289 ], [ -77.019031, 38.937397 ], [ -77.019085, 38.937256 ], [ -77.019165, 38.937089 ], [ -77.019192, 38.937026 ], [ -77.019197, 38.936997 ], [ -77.019208, 38.936964 ], [ -77.019219, 38.936926 ], [ -77.019224, 38.936901 ], [ -77.019230, 38.936809 ], [ -77.019230, 38.936734 ], [ -77.019230, 38.936584 ], [ -77.019219, 38.936204 ], [ -77.019208, 38.935866 ], [ -77.019197, 38.935557 ], [ -77.019192, 38.935215 ], [ -77.019187, 38.934894 ], [ -77.019181, 38.934810 ], [ -77.019171, 38.934385 ], [ -77.019165, 38.934243 ], [ -77.019160, 38.934184 ], [ -77.019160, 38.934159 ], [ -77.019138, 38.934034 ], [ -77.019128, 38.933984 ], [ -77.019106, 38.933909 ], [ -77.019026, 38.933613 ], [ -77.019010, 38.933534 ], [ -77.018924, 38.933179 ], [ -77.018800, 38.932691 ], [ -77.018639, 38.932056 ], [ -77.018505, 38.931501 ], [ -77.018489, 38.931439 ], [ -77.018414, 38.931113 ], [ -77.018344, 38.930821 ], [ -77.018275, 38.930558 ], [ -77.018253, 38.930479 ], [ -77.018173, 38.930153 ], [ -77.018076, 38.929732 ], [ -77.018071, 38.929694 ], [ -77.018049, 38.929611 ], [ -77.017996, 38.929394 ], [ -77.017980, 38.929315 ], [ -77.017953, 38.929194 ], [ -77.017947, 38.929144 ], [ -77.017947, 38.929110 ], [ -77.017947, 38.929081 ], [ -77.017947, 38.929043 ], [ -77.017947, 38.929023 ], [ -77.017953, 38.929002 ], [ -77.017980, 38.928893 ], [ -77.018023, 38.928768 ], [ -77.018039, 38.928714 ], [ -77.018103, 38.928484 ], [ -77.018114, 38.928442 ], [ -77.018114, 38.928401 ], [ -77.018108, 38.928359 ], [ -77.018103, 38.928317 ], [ -77.018092, 38.928284 ], [ -77.018082, 38.928250 ], [ -77.018060, 38.928209 ], [ -77.018039, 38.928167 ], [ -77.018006, 38.928125 ], [ -77.017969, 38.928088 ], [ -77.017931, 38.928054 ], [ -77.017878, 38.928013 ], [ -77.017840, 38.927988 ], [ -77.017803, 38.927937 ], [ -77.017862, 38.927950 ], [ -77.018001, 38.927967 ], [ -77.018092, 38.927979 ], [ -77.018226, 38.927988 ], [ -77.018328, 38.927988 ], [ -77.018436, 38.927988 ], [ -77.018484, 38.927988 ], [ -77.018639, 38.927979 ], [ -77.019020, 38.927963 ], [ -77.019171, 38.927946 ], [ -77.019262, 38.927942 ], [ -77.019326, 38.927937 ], [ -77.020050, 38.927883 ], [ -77.020184, 38.927829 ], [ -77.020259, 38.927771 ], [ -77.020329, 38.927695 ], [ -77.020447, 38.927533 ], [ -77.020978, 38.927487 ], [ -77.021273, 38.927462 ], [ -77.021890, 38.927403 ], [ -77.022545, 38.927353 ], [ -77.022620, 38.927341 ], [ -77.022695, 38.927324 ], [ -77.022818, 38.927278 ], [ -77.022893, 38.927253 ], [ -77.022963, 38.927228 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002202", "GEOID": "11001002202", "NAME": "22.02", "NAMELSAD": "Census Tract 22.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 698895, "AWATER": 566, "INTPTLAT": "+38.9479653", "INTPTLON": "-077.0118821" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009203, 38.945692 ], [ -77.009364, 38.945571 ], [ -77.009429, 38.945529 ], [ -77.009493, 38.945488 ], [ -77.009563, 38.945446 ], [ -77.009992, 38.945179 ], [ -77.010405, 38.944924 ], [ -77.010759, 38.944708 ], [ -77.010807, 38.944678 ], [ -77.010861, 38.944649 ], [ -77.010925, 38.944612 ], [ -77.011011, 38.944566 ], [ -77.011060, 38.944545 ], [ -77.011172, 38.944495 ], [ -77.011226, 38.944470 ], [ -77.011285, 38.944449 ], [ -77.011467, 38.944370 ], [ -77.011510, 38.944345 ], [ -77.011537, 38.944328 ], [ -77.011585, 38.944382 ], [ -77.011601, 38.944395 ], [ -77.011623, 38.944403 ], [ -77.011644, 38.944407 ], [ -77.011666, 38.944411 ], [ -77.011848, 38.944411 ], [ -77.012615, 38.944386 ], [ -77.013506, 38.944891 ], [ -77.013592, 38.944924 ], [ -77.014107, 38.945137 ], [ -77.014235, 38.945187 ], [ -77.014750, 38.945400 ], [ -77.015668, 38.945730 ], [ -77.015700, 38.945784 ], [ -77.016011, 38.946397 ], [ -77.016070, 38.946431 ], [ -77.016660, 38.946414 ], [ -77.016810, 38.946410 ], [ -77.017094, 38.946401 ], [ -77.017331, 38.946397 ], [ -77.017481, 38.946393 ], [ -77.018500, 38.946360 ], [ -77.019412, 38.946335 ], [ -77.019455, 38.947307 ], [ -77.019455, 38.947403 ], [ -77.019466, 38.947641 ], [ -77.019492, 38.948149 ], [ -77.019508, 38.948471 ], [ -77.019525, 38.948813 ], [ -77.019541, 38.949134 ], [ -77.019541, 38.949209 ], [ -77.019551, 38.949401 ], [ -77.019562, 38.949639 ], [ -77.019578, 38.949923 ], [ -77.019578, 38.949952 ], [ -77.019584, 38.950027 ], [ -77.019594, 38.950248 ], [ -77.019600, 38.950402 ], [ -77.019605, 38.950469 ], [ -77.019626, 38.951020 ], [ -77.019680, 38.952084 ], [ -77.019578, 38.952088 ], [ -77.019348, 38.952092 ], [ -77.018972, 38.952104 ], [ -77.018318, 38.952121 ], [ -77.017604, 38.952142 ], [ -77.017202, 38.952154 ], [ -77.016826, 38.952167 ], [ -77.016456, 38.952175 ], [ -77.016322, 38.952180 ], [ -77.016295, 38.952184 ], [ -77.016268, 38.952184 ], [ -77.016193, 38.952192 ], [ -77.016107, 38.952196 ], [ -77.016065, 38.952196 ], [ -77.015887, 38.952205 ], [ -77.015769, 38.952209 ], [ -77.015276, 38.952225 ], [ -77.013457, 38.952275 ], [ -77.013361, 38.952280 ], [ -77.013302, 38.952280 ], [ -77.012427, 38.952309 ], [ -77.012267, 38.952313 ], [ -77.011312, 38.952342 ], [ -77.010695, 38.952359 ], [ -77.010657, 38.952363 ], [ -77.010121, 38.952376 ], [ -77.009488, 38.952396 ], [ -77.009144, 38.952405 ], [ -77.009005, 38.952409 ], [ -77.008983, 38.952125 ], [ -77.008957, 38.951716 ], [ -77.008914, 38.951228 ], [ -77.008903, 38.951041 ], [ -77.008892, 38.950878 ], [ -77.008887, 38.950861 ], [ -77.008860, 38.950498 ], [ -77.008844, 38.950269 ], [ -77.008812, 38.949764 ], [ -77.008780, 38.949393 ], [ -77.008747, 38.948955 ], [ -77.008721, 38.948608 ], [ -77.008699, 38.948296 ], [ -77.008688, 38.948170 ], [ -77.008721, 38.947636 ], [ -77.008705, 38.947390 ], [ -77.008667, 38.947098 ], [ -77.008646, 38.946685 ], [ -77.008678, 38.946497 ], [ -77.008731, 38.946343 ], [ -77.008796, 38.946201 ], [ -77.008882, 38.946051 ], [ -77.008914, 38.946005 ], [ -77.008951, 38.945959 ], [ -77.008989, 38.945917 ], [ -77.009203, 38.945692 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009510", "GEOID": "11001009510", "NAME": "95.10", "NAMELSAD": "Census Tract 95.10", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 841510, "AWATER": 0, "INTPTLAT": "+38.9455978", "INTPTLON": "-077.0046255" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009005, 38.952409 ], [ -77.008865, 38.952409 ], [ -77.008656, 38.952409 ], [ -77.008404, 38.952409 ], [ -77.008334, 38.952409 ], [ -77.008007, 38.952392 ], [ -77.007948, 38.952388 ], [ -77.007830, 38.952376 ], [ -77.007830, 38.952029 ], [ -77.007830, 38.952000 ], [ -77.007830, 38.951942 ], [ -77.007825, 38.951800 ], [ -77.007664, 38.951804 ], [ -77.007546, 38.951808 ], [ -77.007471, 38.951812 ], [ -77.007396, 38.951817 ], [ -77.007251, 38.951837 ], [ -77.007095, 38.951867 ], [ -77.006623, 38.951967 ], [ -77.006468, 38.951996 ], [ -77.006360, 38.952021 ], [ -77.006317, 38.952029 ], [ -77.006232, 38.952042 ], [ -77.006183, 38.952046 ], [ -77.006097, 38.952050 ], [ -77.006049, 38.952046 ], [ -77.006006, 38.952042 ], [ -77.005963, 38.952038 ], [ -77.005920, 38.952029 ], [ -77.005674, 38.951979 ], [ -77.005561, 38.951958 ], [ -77.005389, 38.951921 ], [ -77.005309, 38.951900 ], [ -77.005175, 38.951862 ], [ -77.005121, 38.951846 ], [ -77.005067, 38.951829 ], [ -77.004960, 38.951787 ], [ -77.004853, 38.951741 ], [ -77.004799, 38.951716 ], [ -77.004703, 38.951662 ], [ -77.004585, 38.951591 ], [ -77.004547, 38.951566 ], [ -77.004510, 38.951537 ], [ -77.004472, 38.951504 ], [ -77.004338, 38.951374 ], [ -77.004274, 38.951299 ], [ -77.004215, 38.951233 ], [ -77.004198, 38.951212 ], [ -77.004177, 38.951191 ], [ -77.004156, 38.951174 ], [ -77.004129, 38.951157 ], [ -77.004102, 38.951141 ], [ -77.004021, 38.951103 ], [ -77.003978, 38.951078 ], [ -77.003941, 38.951049 ], [ -77.003909, 38.951020 ], [ -77.003877, 38.950991 ], [ -77.003855, 38.950957 ], [ -77.003834, 38.950924 ], [ -77.003812, 38.950886 ], [ -77.003796, 38.950849 ], [ -77.003780, 38.950811 ], [ -77.003769, 38.950778 ], [ -77.003759, 38.950740 ], [ -77.003742, 38.950665 ], [ -77.003721, 38.950532 ], [ -77.003705, 38.950398 ], [ -77.003673, 38.950139 ], [ -77.003667, 38.950102 ], [ -77.003651, 38.950023 ], [ -77.003630, 38.949960 ], [ -77.003598, 38.949868 ], [ -77.003582, 38.949839 ], [ -77.003549, 38.949777 ], [ -77.003533, 38.949747 ], [ -77.003480, 38.949660 ], [ -77.003421, 38.949572 ], [ -77.003399, 38.949547 ], [ -77.003313, 38.949434 ], [ -77.002954, 38.948980 ], [ -77.002670, 38.947908 ], [ -77.003238, 38.946310 ], [ -77.003120, 38.946347 ], [ -77.003034, 38.946381 ], [ -77.002305, 38.946664 ], [ -77.001602, 38.946944 ], [ -77.001076, 38.947157 ], [ -77.001017, 38.947169 ], [ -77.000991, 38.947173 ], [ -77.000551, 38.947348 ], [ -77.000492, 38.947369 ], [ -77.000449, 38.947278 ], [ -77.000325, 38.946973 ], [ -77.000315, 38.946948 ], [ -77.000041, 38.946272 ], [ -76.997638, 38.940731 ], [ -76.997901, 38.940731 ], [ -76.998308, 38.940731 ], [ -76.999000, 38.940735 ], [ -76.999151, 38.940735 ], [ -76.999231, 38.940735 ], [ -76.999494, 38.940740 ], [ -76.999665, 38.940740 ], [ -76.999928, 38.940744 ], [ -77.000202, 38.940744 ], [ -77.002305, 38.940744 ], [ -77.002857, 38.940744 ], [ -77.002981, 38.940744 ], [ -77.003201, 38.940740 ], [ -77.003399, 38.940740 ], [ -77.003801, 38.940740 ], [ -77.004381, 38.940740 ], [ -77.004563, 38.940740 ], [ -77.004654, 38.940744 ], [ -77.004681, 38.940744 ], [ -77.004740, 38.940752 ], [ -77.004831, 38.940761 ], [ -77.004923, 38.940777 ], [ -77.004992, 38.940794 ], [ -77.005057, 38.940811 ], [ -77.005116, 38.940831 ], [ -77.005180, 38.940852 ], [ -77.005239, 38.940877 ], [ -77.005298, 38.940902 ], [ -77.005357, 38.940932 ], [ -77.005411, 38.940961 ], [ -77.005464, 38.940994 ], [ -77.005845, 38.941249 ], [ -77.005942, 38.941315 ], [ -77.006977, 38.942012 ], [ -77.007095, 38.942087 ], [ -77.007143, 38.942108 ], [ -77.007186, 38.942133 ], [ -77.007245, 38.942154 ], [ -77.007321, 38.942187 ], [ -77.007390, 38.942208 ], [ -77.007439, 38.942225 ], [ -77.007492, 38.942242 ], [ -77.007728, 38.942304 ], [ -77.007836, 38.942333 ], [ -77.008029, 38.942379 ], [ -77.008141, 38.942404 ], [ -77.008216, 38.942425 ], [ -77.008356, 38.942492 ], [ -77.008490, 38.942563 ], [ -77.008758, 38.942705 ], [ -77.008951, 38.942817 ], [ -77.009016, 38.942859 ], [ -77.009144, 38.942938 ], [ -77.009273, 38.943022 ], [ -77.009338, 38.943064 ], [ -77.009456, 38.943147 ], [ -77.009579, 38.943239 ], [ -77.009649, 38.943293 ], [ -77.009692, 38.943327 ], [ -77.009777, 38.943406 ], [ -77.009794, 38.943427 ], [ -77.010437, 38.944094 ], [ -77.010545, 38.944211 ], [ -77.010802, 38.944474 ], [ -77.010925, 38.944612 ], [ -77.010861, 38.944649 ], [ -77.010807, 38.944678 ], [ -77.010759, 38.944708 ], [ -77.010405, 38.944924 ], [ -77.009992, 38.945179 ], [ -77.009563, 38.945446 ], [ -77.009493, 38.945488 ], [ -77.009429, 38.945529 ], [ -77.009364, 38.945571 ], [ -77.009203, 38.945692 ], [ -77.008989, 38.945917 ], [ -77.008951, 38.945959 ], [ -77.008914, 38.946005 ], [ -77.008882, 38.946051 ], [ -77.008796, 38.946201 ], [ -77.008731, 38.946343 ], [ -77.008678, 38.946497 ], [ -77.008646, 38.946685 ], [ -77.008667, 38.947098 ], [ -77.008705, 38.947390 ], [ -77.008721, 38.947636 ], [ -77.008688, 38.948170 ], [ -77.008699, 38.948296 ], [ -77.008721, 38.948608 ], [ -77.008747, 38.948955 ], [ -77.008780, 38.949393 ], [ -77.008812, 38.949764 ], [ -77.008844, 38.950269 ], [ -77.008860, 38.950498 ], [ -77.008887, 38.950861 ], [ -77.008892, 38.950878 ], [ -77.008903, 38.951041 ], [ -77.008914, 38.951228 ], [ -77.008957, 38.951716 ], [ -77.008983, 38.952125 ], [ -77.009005, 38.952409 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009507", "GEOID": "11001009507", "NAME": "95.07", "NAMELSAD": "Census Tract 95.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295290, "AWATER": 0, "INTPTLAT": "+38.9584945", "INTPTLON": "-076.9977787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.002289, 38.956772 ], [ -77.002240, 38.956868 ], [ -77.001414, 38.958199 ], [ -77.001237, 38.958608 ], [ -77.001130, 38.958775 ], [ -77.001060, 38.958867 ], [ -77.000915, 38.959063 ], [ -77.000556, 38.959538 ], [ -77.000497, 38.959613 ], [ -77.000449, 38.959680 ], [ -77.000352, 38.959805 ], [ -77.000256, 38.959922 ], [ -77.000202, 38.959980 ], [ -77.000114, 38.960076 ], [ -76.995252, 38.960076 ], [ -76.995036, 38.959905 ], [ -76.994435, 38.959434 ], [ -76.994349, 38.959367 ], [ -76.994264, 38.959300 ], [ -76.994237, 38.959284 ], [ -76.993700, 38.958862 ], [ -76.993271, 38.958529 ], [ -76.993244, 38.958508 ], [ -76.993073, 38.958374 ], [ -76.992874, 38.958220 ], [ -76.992740, 38.958111 ], [ -76.992633, 38.958028 ], [ -76.992525, 38.957945 ], [ -76.992225, 38.957711 ], [ -76.992145, 38.957648 ], [ -76.992102, 38.957615 ], [ -76.992053, 38.957578 ], [ -76.992043, 38.957565 ], [ -76.992010, 38.957540 ], [ -76.991962, 38.957502 ], [ -76.991909, 38.957461 ], [ -76.991855, 38.957419 ], [ -76.991839, 38.957407 ], [ -76.991630, 38.957248 ], [ -76.991667, 38.957240 ], [ -76.991732, 38.957227 ], [ -76.991801, 38.957219 ], [ -76.991833, 38.957215 ], [ -76.991903, 38.957210 ], [ -76.991941, 38.957210 ], [ -76.991973, 38.957215 ], [ -76.992434, 38.957252 ], [ -76.992477, 38.957252 ], [ -76.992686, 38.957269 ], [ -76.992853, 38.957273 ], [ -76.993314, 38.957273 ], [ -76.994183, 38.957273 ], [ -76.994376, 38.957273 ], [ -76.995331, 38.957273 ], [ -76.995782, 38.957273 ], [ -76.997048, 38.957273 ], [ -76.997155, 38.957269 ], [ -76.997257, 38.957261 ], [ -76.997407, 38.957244 ], [ -76.997536, 38.957227 ], [ -76.997573, 38.957219 ], [ -76.997681, 38.957194 ], [ -76.997783, 38.957169 ], [ -76.997836, 38.957152 ], [ -76.997944, 38.957119 ], [ -76.998040, 38.957081 ], [ -76.998131, 38.957048 ], [ -76.998212, 38.957010 ], [ -76.998298, 38.956973 ], [ -76.998378, 38.956931 ], [ -76.998480, 38.956868 ], [ -76.998544, 38.956827 ], [ -76.998577, 38.956802 ], [ -76.998646, 38.956752 ], [ -76.998754, 38.956668 ], [ -76.998813, 38.956614 ], [ -76.998893, 38.956531 ], [ -76.998920, 38.956501 ], [ -76.998968, 38.956439 ], [ -76.999043, 38.956343 ], [ -76.999226, 38.956109 ], [ -76.999365, 38.955951 ], [ -76.999446, 38.955876 ], [ -76.999510, 38.955813 ], [ -76.999553, 38.955775 ], [ -76.999639, 38.955700 ], [ -76.999660, 38.955680 ], [ -76.999735, 38.955621 ], [ -76.999843, 38.955546 ], [ -76.999896, 38.955513 ], [ -77.000272, 38.955296 ], [ -77.000470, 38.955433 ], [ -77.000862, 38.955692 ], [ -77.001838, 38.956435 ], [ -77.001881, 38.956472 ], [ -77.002289, 38.956772 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009508", "GEOID": "11001009508", "NAME": "95.08", "NAMELSAD": "Census Tract 95.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 962212, "AWATER": 0, "INTPTLAT": "+38.9536826", "INTPTLON": "-076.9985582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.009043, 38.954816 ], [ -77.008994, 38.954816 ], [ -77.008914, 38.954816 ], [ -77.008876, 38.954820 ], [ -77.008839, 38.954824 ], [ -77.008222, 38.954958 ], [ -77.007696, 38.955079 ], [ -77.007278, 38.955171 ], [ -77.006789, 38.955279 ], [ -77.006258, 38.955400 ], [ -77.006044, 38.955450 ], [ -77.005304, 38.955621 ], [ -77.004982, 38.955692 ], [ -77.004654, 38.955684 ], [ -77.003925, 38.955859 ], [ -77.003834, 38.955880 ], [ -77.003340, 38.955992 ], [ -77.003109, 38.956059 ], [ -77.002943, 38.956126 ], [ -77.002745, 38.956230 ], [ -77.002664, 38.956289 ], [ -77.002573, 38.956359 ], [ -77.002503, 38.956443 ], [ -77.002460, 38.956514 ], [ -77.002289, 38.956772 ], [ -77.001881, 38.956472 ], [ -77.001838, 38.956435 ], [ -77.000862, 38.955692 ], [ -77.000470, 38.955433 ], [ -77.000272, 38.955296 ], [ -76.999896, 38.955513 ], [ -76.999843, 38.955546 ], [ -76.999735, 38.955621 ], [ -76.999660, 38.955680 ], [ -76.999639, 38.955700 ], [ -76.999553, 38.955775 ], [ -76.999510, 38.955813 ], [ -76.999446, 38.955876 ], [ -76.999365, 38.955951 ], [ -76.999226, 38.956109 ], [ -76.999043, 38.956343 ], [ -76.998968, 38.956439 ], [ -76.998920, 38.956501 ], [ -76.998893, 38.956531 ], [ -76.998813, 38.956614 ], [ -76.998754, 38.956668 ], [ -76.998646, 38.956752 ], [ -76.998577, 38.956802 ], [ -76.998544, 38.956827 ], [ -76.998480, 38.956868 ], [ -76.998378, 38.956931 ], [ -76.998298, 38.956973 ], [ -76.998212, 38.957010 ], [ -76.998131, 38.957048 ], [ -76.998040, 38.957081 ], [ -76.997944, 38.957119 ], [ -76.997836, 38.957152 ], [ -76.997783, 38.957169 ], [ -76.997681, 38.957194 ], [ -76.997573, 38.957219 ], [ -76.997536, 38.957227 ], [ -76.997407, 38.957244 ], [ -76.997257, 38.957261 ], [ -76.997155, 38.957269 ], [ -76.997048, 38.957273 ], [ -76.995782, 38.957273 ], [ -76.995331, 38.957273 ], [ -76.994376, 38.957273 ], [ -76.994183, 38.957273 ], [ -76.993314, 38.957273 ], [ -76.992853, 38.957273 ], [ -76.992686, 38.957269 ], [ -76.992477, 38.957252 ], [ -76.992434, 38.957252 ], [ -76.991973, 38.957215 ], [ -76.991941, 38.957210 ], [ -76.991903, 38.957210 ], [ -76.991833, 38.957215 ], [ -76.991801, 38.957219 ], [ -76.991732, 38.957227 ], [ -76.991667, 38.957240 ], [ -76.991630, 38.957248 ], [ -76.991517, 38.957156 ], [ -76.991453, 38.957106 ], [ -76.991329, 38.957008 ], [ -76.991329, 38.952408 ], [ -76.991522, 38.952409 ], [ -76.991587, 38.952409 ], [ -76.991683, 38.952409 ], [ -76.991860, 38.952409 ], [ -76.992128, 38.952405 ], [ -76.992622, 38.952388 ], [ -76.992702, 38.952384 ], [ -76.992815, 38.952380 ], [ -76.993073, 38.952371 ], [ -76.993266, 38.952367 ], [ -76.993824, 38.952346 ], [ -76.993952, 38.952346 ], [ -76.994097, 38.952342 ], [ -76.994151, 38.952338 ], [ -76.994258, 38.952330 ], [ -76.994408, 38.952313 ], [ -76.994542, 38.952296 ], [ -76.994634, 38.952280 ], [ -76.994768, 38.952250 ], [ -76.994811, 38.952238 ], [ -76.994966, 38.952200 ], [ -76.995170, 38.952150 ], [ -76.995422, 38.952100 ], [ -76.995787, 38.952029 ], [ -76.995986, 38.951996 ], [ -76.996248, 38.951963 ], [ -76.996871, 38.951887 ], [ -76.997455, 38.951842 ], [ -76.997911, 38.951833 ], [ -76.998008, 38.951837 ], [ -76.998121, 38.951858 ], [ -76.998217, 38.951875 ], [ -76.998373, 38.951887 ], [ -76.998555, 38.951892 ], [ -76.998786, 38.951875 ], [ -76.999049, 38.951842 ], [ -76.999462, 38.951758 ], [ -76.999853, 38.951625 ], [ -77.000315, 38.951349 ], [ -77.000642, 38.951091 ], [ -77.002010, 38.951053 ], [ -77.000894, 38.948337 ], [ -77.000492, 38.947369 ], [ -77.000551, 38.947348 ], [ -77.000991, 38.947173 ], [ -77.001017, 38.947169 ], [ -77.001076, 38.947157 ], [ -77.001602, 38.946944 ], [ -77.002305, 38.946664 ], [ -77.003034, 38.946381 ], [ -77.003120, 38.946347 ], [ -77.003238, 38.946310 ], [ -77.002670, 38.947908 ], [ -77.002954, 38.948980 ], [ -77.003313, 38.949434 ], [ -77.003399, 38.949547 ], [ -77.003421, 38.949572 ], [ -77.003480, 38.949660 ], [ -77.003533, 38.949747 ], [ -77.003549, 38.949777 ], [ -77.003582, 38.949839 ], [ -77.003598, 38.949868 ], [ -77.003630, 38.949960 ], [ -77.003651, 38.950023 ], [ -77.003667, 38.950102 ], [ -77.003673, 38.950139 ], [ -77.003705, 38.950398 ], [ -77.003721, 38.950532 ], [ -77.003742, 38.950665 ], [ -77.003759, 38.950740 ], [ -77.003769, 38.950778 ], [ -77.003780, 38.950811 ], [ -77.003796, 38.950849 ], [ -77.003812, 38.950886 ], [ -77.003834, 38.950924 ], [ -77.003855, 38.950957 ], [ -77.003877, 38.950991 ], [ -77.003909, 38.951020 ], [ -77.003941, 38.951049 ], [ -77.003978, 38.951078 ], [ -77.004021, 38.951103 ], [ -77.004102, 38.951141 ], [ -77.004129, 38.951157 ], [ -77.004156, 38.951174 ], [ -77.004177, 38.951191 ], [ -77.004198, 38.951212 ], [ -77.004215, 38.951233 ], [ -77.004274, 38.951299 ], [ -77.004338, 38.951374 ], [ -77.004472, 38.951504 ], [ -77.004510, 38.951537 ], [ -77.004547, 38.951566 ], [ -77.004585, 38.951591 ], [ -77.004703, 38.951662 ], [ -77.004799, 38.951716 ], [ -77.004853, 38.951741 ], [ -77.004960, 38.951787 ], [ -77.005067, 38.951829 ], [ -77.005121, 38.951846 ], [ -77.005175, 38.951862 ], [ -77.005309, 38.951900 ], [ -77.005389, 38.951921 ], [ -77.005561, 38.951958 ], [ -77.005674, 38.951979 ], [ -77.005920, 38.952029 ], [ -77.005963, 38.952038 ], [ -77.006006, 38.952042 ], [ -77.006049, 38.952046 ], [ -77.006097, 38.952050 ], [ -77.006183, 38.952046 ], [ -77.006232, 38.952042 ], [ -77.006317, 38.952029 ], [ -77.006360, 38.952021 ], [ -77.006468, 38.951996 ], [ -77.006623, 38.951967 ], [ -77.007095, 38.951867 ], [ -77.007251, 38.951837 ], [ -77.007396, 38.951817 ], [ -77.007471, 38.951812 ], [ -77.007546, 38.951808 ], [ -77.007664, 38.951804 ], [ -77.007825, 38.951800 ], [ -77.007830, 38.951942 ], [ -77.007830, 38.952000 ], [ -77.007830, 38.952029 ], [ -77.007830, 38.952376 ], [ -77.007948, 38.952388 ], [ -77.008007, 38.952392 ], [ -77.008334, 38.952409 ], [ -77.008404, 38.952409 ], [ -77.008656, 38.952409 ], [ -77.008865, 38.952409 ], [ -77.009005, 38.952409 ], [ -77.009010, 38.952513 ], [ -77.009037, 38.952759 ], [ -77.009037, 38.952822 ], [ -77.009043, 38.952851 ], [ -77.009048, 38.952972 ], [ -77.009048, 38.953035 ], [ -77.009048, 38.953114 ], [ -77.009048, 38.953335 ], [ -77.009043, 38.953452 ], [ -77.009043, 38.953531 ], [ -77.009048, 38.953790 ], [ -77.009043, 38.954111 ], [ -77.009043, 38.954478 ], [ -77.009043, 38.954545 ], [ -77.009043, 38.954624 ], [ -77.009043, 38.954816 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009509", "GEOID": "11001009509", "NAME": "95.09", "NAMELSAD": "Census Tract 95.09", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 648848, "AWATER": 0, "INTPTLAT": "+38.9492140", "INTPTLON": "-076.9950319" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.946272 ], [ -76.991946, 38.946276 ], [ -76.992509, 38.946276 ], [ -76.992643, 38.946276 ], [ -76.992767, 38.946276 ], [ -76.993266, 38.946272 ], [ -76.993867, 38.946272 ], [ -76.994323, 38.946276 ], [ -76.994827, 38.946276 ], [ -76.994950, 38.946272 ], [ -76.995487, 38.946272 ], [ -76.996608, 38.946272 ], [ -76.996924, 38.946268 ], [ -76.997048, 38.946272 ], [ -76.997155, 38.946272 ], [ -76.997632, 38.946272 ], [ -76.998083, 38.946272 ], [ -76.998373, 38.946272 ], [ -76.998995, 38.946272 ], [ -76.999118, 38.946272 ], [ -77.000041, 38.946272 ], [ -77.000315, 38.946948 ], [ -77.000325, 38.946973 ], [ -77.000449, 38.947278 ], [ -77.000492, 38.947369 ], [ -77.000894, 38.948337 ], [ -77.002010, 38.951053 ], [ -77.000642, 38.951091 ], [ -77.000315, 38.951349 ], [ -76.999853, 38.951625 ], [ -76.999462, 38.951758 ], [ -76.999049, 38.951842 ], [ -76.998786, 38.951875 ], [ -76.998555, 38.951892 ], [ -76.998373, 38.951887 ], [ -76.998217, 38.951875 ], [ -76.998121, 38.951858 ], [ -76.998008, 38.951837 ], [ -76.997911, 38.951833 ], [ -76.997455, 38.951842 ], [ -76.996871, 38.951887 ], [ -76.996248, 38.951963 ], [ -76.995986, 38.951996 ], [ -76.995787, 38.952029 ], [ -76.995422, 38.952100 ], [ -76.995170, 38.952150 ], [ -76.994966, 38.952200 ], [ -76.994811, 38.952238 ], [ -76.994768, 38.952250 ], [ -76.994634, 38.952280 ], [ -76.994542, 38.952296 ], [ -76.994408, 38.952313 ], [ -76.994258, 38.952330 ], [ -76.994151, 38.952338 ], [ -76.994097, 38.952342 ], [ -76.993952, 38.952346 ], [ -76.993824, 38.952346 ], [ -76.993266, 38.952367 ], [ -76.993073, 38.952371 ], [ -76.992815, 38.952380 ], [ -76.992702, 38.952384 ], [ -76.992622, 38.952388 ], [ -76.992128, 38.952405 ], [ -76.991860, 38.952409 ], [ -76.991683, 38.952409 ], [ -76.991587, 38.952409 ], [ -76.991522, 38.952409 ], [ -76.991329, 38.952408 ], [ -76.991329, 38.946272 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "002302", "GEOID": "11001002302", "NAME": "23.02", "NAMELSAD": "Census Tract 23.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2010924, "AWATER": 5298, "INTPTLAT": "+38.9341270", "INTPTLON": "-077.0095843" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.014262, 38.926306 ], [ -77.014418, 38.926335 ], [ -77.014471, 38.926343 ], [ -77.014879, 38.926477 ], [ -77.014976, 38.926519 ], [ -77.015072, 38.926565 ], [ -77.015163, 38.926610 ], [ -77.016086, 38.927145 ], [ -77.016665, 38.927483 ], [ -77.016746, 38.927537 ], [ -77.016966, 38.927629 ], [ -77.017116, 38.927712 ], [ -77.017186, 38.927746 ], [ -77.017261, 38.927779 ], [ -77.017336, 38.927812 ], [ -77.017373, 38.927825 ], [ -77.017550, 38.927883 ], [ -77.017604, 38.927896 ], [ -77.017690, 38.927917 ], [ -77.017803, 38.927937 ], [ -77.017840, 38.927988 ], [ -77.017878, 38.928013 ], [ -77.017931, 38.928054 ], [ -77.017969, 38.928088 ], [ -77.018006, 38.928125 ], [ -77.018039, 38.928167 ], [ -77.018060, 38.928209 ], [ -77.018082, 38.928250 ], [ -77.018092, 38.928284 ], [ -77.018103, 38.928317 ], [ -77.018108, 38.928359 ], [ -77.018114, 38.928401 ], [ -77.018114, 38.928442 ], [ -77.018103, 38.928484 ], [ -77.018039, 38.928714 ], [ -77.018023, 38.928768 ], [ -77.017980, 38.928893 ], [ -77.017953, 38.929002 ], [ -77.017947, 38.929023 ], [ -77.017947, 38.929043 ], [ -77.017947, 38.929081 ], [ -77.017947, 38.929110 ], [ -77.017947, 38.929144 ], [ -77.017953, 38.929194 ], [ -77.017980, 38.929315 ], [ -77.017996, 38.929394 ], [ -77.018049, 38.929611 ], [ -77.018071, 38.929694 ], [ -77.018076, 38.929732 ], [ -77.018173, 38.930153 ], [ -77.018253, 38.930479 ], [ -77.018275, 38.930558 ], [ -77.018344, 38.930821 ], [ -77.018414, 38.931113 ], [ -77.018489, 38.931439 ], [ -77.018505, 38.931501 ], [ -77.018639, 38.932056 ], [ -77.018800, 38.932691 ], [ -77.018924, 38.933179 ], [ -77.019010, 38.933534 ], [ -77.019026, 38.933613 ], [ -77.019106, 38.933909 ], [ -77.019128, 38.933984 ], [ -77.019138, 38.934034 ], [ -77.019160, 38.934159 ], [ -77.019160, 38.934184 ], [ -77.019165, 38.934243 ], [ -77.019171, 38.934385 ], [ -77.019181, 38.934810 ], [ -77.019187, 38.934894 ], [ -77.019192, 38.935215 ], [ -77.019197, 38.935557 ], [ -77.019208, 38.935866 ], [ -77.019219, 38.936204 ], [ -77.019230, 38.936584 ], [ -77.019230, 38.936734 ], [ -77.019230, 38.936809 ], [ -77.019224, 38.936901 ], [ -77.019219, 38.936926 ], [ -77.019208, 38.936964 ], [ -77.019197, 38.936997 ], [ -77.019192, 38.937026 ], [ -77.019165, 38.937089 ], [ -77.019085, 38.937256 ], [ -77.019031, 38.937397 ], [ -77.018875, 38.937431 ], [ -77.018757, 38.937460 ], [ -77.018446, 38.937539 ], [ -77.018344, 38.937564 ], [ -77.018242, 38.937594 ], [ -77.018039, 38.937648 ], [ -77.017765, 38.937723 ], [ -77.017722, 38.937740 ], [ -77.017636, 38.937769 ], [ -77.017604, 38.937781 ], [ -77.017508, 38.937823 ], [ -77.017438, 38.937861 ], [ -77.017406, 38.937881 ], [ -77.017336, 38.937923 ], [ -77.017272, 38.937969 ], [ -77.017213, 38.938015 ], [ -77.017180, 38.938040 ], [ -77.016875, 38.938315 ], [ -77.016542, 38.938616 ], [ -77.016456, 38.938695 ], [ -77.016242, 38.938883 ], [ -77.015426, 38.939613 ], [ -77.015265, 38.939759 ], [ -77.015217, 38.939805 ], [ -77.015201, 38.939826 ], [ -77.015185, 38.939851 ], [ -77.015088, 38.940005 ], [ -77.015008, 38.940135 ], [ -77.014847, 38.940398 ], [ -77.014621, 38.940756 ], [ -77.014568, 38.940836 ], [ -77.014369, 38.941082 ], [ -77.014246, 38.941232 ], [ -77.014182, 38.941299 ], [ -77.013752, 38.941724 ], [ -77.013522, 38.941954 ], [ -77.013409, 38.942058 ], [ -77.013313, 38.942133 ], [ -77.013136, 38.942275 ], [ -77.012975, 38.942421 ], [ -77.012873, 38.942521 ], [ -77.012803, 38.942596 ], [ -77.012739, 38.942676 ], [ -77.012717, 38.942701 ], [ -77.012674, 38.942755 ], [ -77.012642, 38.942805 ], [ -77.012599, 38.942880 ], [ -77.012567, 38.942938 ], [ -77.012449, 38.943197 ], [ -77.012433, 38.943231 ], [ -77.012401, 38.943297 ], [ -77.012208, 38.943723 ], [ -77.012186, 38.943765 ], [ -77.012159, 38.943802 ], [ -77.012143, 38.943819 ], [ -77.012025, 38.943923 ], [ -77.011853, 38.944082 ], [ -77.011837, 38.944098 ], [ -77.011768, 38.944161 ], [ -77.011676, 38.944240 ], [ -77.011617, 38.944282 ], [ -77.011575, 38.944307 ], [ -77.011537, 38.944328 ], [ -77.011510, 38.944345 ], [ -77.011467, 38.944370 ], [ -77.011285, 38.944449 ], [ -77.011226, 38.944470 ], [ -77.011172, 38.944495 ], [ -77.011060, 38.944545 ], [ -77.011011, 38.944566 ], [ -77.010925, 38.944612 ], [ -77.010802, 38.944474 ], [ -77.010545, 38.944211 ], [ -77.010437, 38.944094 ], [ -77.009794, 38.943427 ], [ -77.009777, 38.943406 ], [ -77.009692, 38.943327 ], [ -77.009649, 38.943293 ], [ -77.009579, 38.943239 ], [ -77.009456, 38.943147 ], [ -77.009338, 38.943064 ], [ -77.009273, 38.943022 ], [ -77.009144, 38.942938 ], [ -77.009016, 38.942859 ], [ -77.008951, 38.942817 ], [ -77.008758, 38.942705 ], [ -77.008490, 38.942563 ], [ -77.008356, 38.942492 ], [ -77.008216, 38.942425 ], [ -77.008141, 38.942404 ], [ -77.008029, 38.942379 ], [ -77.008216, 38.941937 ], [ -77.008318, 38.941612 ], [ -77.008356, 38.941357 ], [ -77.008361, 38.941053 ], [ -77.008345, 38.940856 ], [ -77.008308, 38.940627 ], [ -77.008195, 38.940331 ], [ -77.008050, 38.940035 ], [ -77.007594, 38.939204 ], [ -77.006881, 38.937873 ], [ -77.006843, 38.937802 ], [ -77.006779, 38.937673 ], [ -77.006698, 38.937502 ], [ -77.006618, 38.937327 ], [ -77.006553, 38.937172 ], [ -77.006451, 38.936884 ], [ -77.006387, 38.936684 ], [ -77.006355, 38.936592 ], [ -77.006076, 38.936626 ], [ -77.005867, 38.936646 ], [ -77.005754, 38.936663 ], [ -77.005625, 38.936676 ], [ -77.004510, 38.936813 ], [ -77.004370, 38.936822 ], [ -77.004252, 38.936817 ], [ -77.004139, 38.936809 ], [ -77.003995, 38.936784 ], [ -77.003667, 38.936709 ], [ -77.003539, 38.936671 ], [ -77.003351, 38.936605 ], [ -77.003185, 38.936542 ], [ -77.003050, 38.936471 ], [ -77.002804, 38.936321 ], [ -77.002696, 38.936242 ], [ -77.002621, 38.936200 ], [ -77.002546, 38.936171 ], [ -77.002434, 38.936146 ], [ -77.002278, 38.936141 ], [ -77.002128, 38.936154 ], [ -77.002112, 38.936058 ], [ -77.002053, 38.935762 ], [ -77.001961, 38.935294 ], [ -77.001881, 38.934860 ], [ -77.001801, 38.934452 ], [ -77.001720, 38.934018 ], [ -77.001334, 38.931998 ], [ -77.001328, 38.931969 ], [ -77.001302, 38.931810 ], [ -77.001221, 38.931606 ], [ -77.000980, 38.931213 ], [ -77.001125, 38.931151 ], [ -77.001216, 38.931105 ], [ -77.001452, 38.930980 ], [ -77.001919, 38.930725 ], [ -77.002090, 38.930633 ], [ -77.002203, 38.930571 ], [ -77.002444, 38.930441 ], [ -77.002653, 38.930329 ], [ -77.002793, 38.930249 ], [ -77.003040, 38.930112 ], [ -77.003168, 38.930037 ], [ -77.003260, 38.929978 ], [ -77.003345, 38.929924 ], [ -77.003490, 38.929815 ], [ -77.003549, 38.929774 ], [ -77.003667, 38.929682 ], [ -77.003791, 38.929573 ], [ -77.003882, 38.929490 ], [ -77.003968, 38.929406 ], [ -77.004048, 38.929319 ], [ -77.004257, 38.929077 ], [ -77.004279, 38.929048 ], [ -77.004848, 38.928376 ], [ -77.004885, 38.928334 ], [ -77.004917, 38.928292 ], [ -77.005019, 38.928171 ], [ -77.005250, 38.927900 ], [ -77.005357, 38.927766 ], [ -77.005373, 38.927750 ], [ -77.005749, 38.927303 ], [ -77.005786, 38.927266 ], [ -77.005845, 38.927211 ], [ -77.005888, 38.927182 ], [ -77.005931, 38.927153 ], [ -77.005974, 38.927128 ], [ -77.006012, 38.927107 ], [ -77.006087, 38.927069 ], [ -77.006151, 38.927049 ], [ -77.006178, 38.927040 ], [ -77.006258, 38.927015 ], [ -77.006291, 38.927011 ], [ -77.006366, 38.926994 ], [ -77.006564, 38.926969 ], [ -77.006897, 38.926923 ], [ -77.007310, 38.926869 ], [ -77.007900, 38.926794 ], [ -77.007964, 38.926786 ], [ -77.008109, 38.926769 ], [ -77.008404, 38.926736 ], [ -77.008935, 38.926677 ], [ -77.009043, 38.926669 ], [ -77.009230, 38.926640 ], [ -77.009574, 38.926590 ], [ -77.010137, 38.926514 ], [ -77.011151, 38.926377 ], [ -77.011403, 38.926347 ], [ -77.011988, 38.926289 ], [ -77.012138, 38.926281 ], [ -77.012411, 38.926272 ], [ -77.012465, 38.926272 ], [ -77.012513, 38.926268 ], [ -77.012669, 38.926268 ], [ -77.013838, 38.926264 ], [ -77.013887, 38.926264 ], [ -77.014026, 38.926272 ], [ -77.014160, 38.926289 ], [ -77.014262, 38.926306 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009511", "GEOID": "11001009511", "NAME": "95.11", "NAMELSAD": "Census Tract 95.11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 719468, "AWATER": 0, "INTPTLAT": "+38.9372097", "INTPTLON": "-077.0010516" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.008029, 38.942379 ], [ -77.007836, 38.942333 ], [ -77.007728, 38.942304 ], [ -77.007492, 38.942242 ], [ -77.007439, 38.942225 ], [ -77.007390, 38.942208 ], [ -77.007321, 38.942187 ], [ -77.007245, 38.942154 ], [ -77.007186, 38.942133 ], [ -77.007143, 38.942108 ], [ -77.007095, 38.942087 ], [ -77.006977, 38.942012 ], [ -77.005942, 38.941315 ], [ -77.005845, 38.941249 ], [ -77.005464, 38.940994 ], [ -77.005411, 38.940961 ], [ -77.005357, 38.940932 ], [ -77.005298, 38.940902 ], [ -77.005239, 38.940877 ], [ -77.005180, 38.940852 ], [ -77.005116, 38.940831 ], [ -77.005057, 38.940811 ], [ -77.004992, 38.940794 ], [ -77.004923, 38.940777 ], [ -77.004831, 38.940761 ], [ -77.004740, 38.940752 ], [ -77.004681, 38.940744 ], [ -77.004654, 38.940744 ], [ -77.004563, 38.940740 ], [ -77.004381, 38.940740 ], [ -77.003801, 38.940740 ], [ -77.003399, 38.940740 ], [ -77.003201, 38.940740 ], [ -77.002981, 38.940744 ], [ -77.002857, 38.940744 ], [ -77.002305, 38.940744 ], [ -77.000202, 38.940744 ], [ -76.999928, 38.940744 ], [ -76.999665, 38.940740 ], [ -76.999494, 38.940740 ], [ -76.999231, 38.940735 ], [ -76.999151, 38.940735 ], [ -76.999000, 38.940735 ], [ -76.998308, 38.940731 ], [ -76.997901, 38.940731 ], [ -76.997638, 38.940731 ], [ -76.996109, 38.937189 ], [ -76.995095, 38.934547 ], [ -76.995068, 38.934477 ], [ -76.994982, 38.934230 ], [ -76.994832, 38.933746 ], [ -76.994950, 38.933688 ], [ -76.995068, 38.933625 ], [ -76.995358, 38.933492 ], [ -76.995422, 38.933467 ], [ -76.995787, 38.933321 ], [ -76.996071, 38.933208 ], [ -76.996179, 38.933162 ], [ -76.996436, 38.933054 ], [ -76.996774, 38.932912 ], [ -76.997214, 38.932732 ], [ -76.997552, 38.932599 ], [ -76.997783, 38.932507 ], [ -76.998013, 38.932411 ], [ -76.998271, 38.932311 ], [ -76.998534, 38.932202 ], [ -76.998700, 38.932136 ], [ -76.999140, 38.931960 ], [ -77.000057, 38.931593 ], [ -77.000556, 38.931393 ], [ -77.000701, 38.931339 ], [ -77.000980, 38.931213 ], [ -77.001221, 38.931606 ], [ -77.001302, 38.931810 ], [ -77.001328, 38.931969 ], [ -77.001334, 38.931998 ], [ -77.001720, 38.934018 ], [ -77.001801, 38.934452 ], [ -77.001881, 38.934860 ], [ -77.001961, 38.935294 ], [ -77.002053, 38.935762 ], [ -77.002112, 38.936058 ], [ -77.002128, 38.936154 ], [ -77.002278, 38.936141 ], [ -77.002434, 38.936146 ], [ -77.002546, 38.936171 ], [ -77.002621, 38.936200 ], [ -77.002696, 38.936242 ], [ -77.002804, 38.936321 ], [ -77.003050, 38.936471 ], [ -77.003185, 38.936542 ], [ -77.003351, 38.936605 ], [ -77.003539, 38.936671 ], [ -77.003667, 38.936709 ], [ -77.003995, 38.936784 ], [ -77.004139, 38.936809 ], [ -77.004252, 38.936817 ], [ -77.004370, 38.936822 ], [ -77.004510, 38.936813 ], [ -77.005625, 38.936676 ], [ -77.005754, 38.936663 ], [ -77.005867, 38.936646 ], [ -77.006076, 38.936626 ], [ -77.006355, 38.936592 ], [ -77.006387, 38.936684 ], [ -77.006451, 38.936884 ], [ -77.006553, 38.937172 ], [ -77.006618, 38.937327 ], [ -77.006698, 38.937502 ], [ -77.006779, 38.937673 ], [ -77.006843, 38.937802 ], [ -77.006881, 38.937873 ], [ -77.007594, 38.939204 ], [ -77.008050, 38.940035 ], [ -77.008195, 38.940331 ], [ -77.008308, 38.940627 ], [ -77.008345, 38.940856 ], [ -77.008361, 38.941053 ], [ -77.008356, 38.941357 ], [ -77.008318, 38.941612 ], [ -77.008216, 38.941937 ], [ -77.008029, 38.942379 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009504", "GEOID": "11001009504", "NAME": "95.04", "NAMELSAD": "Census Tract 95.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1033168, "AWATER": 0, "INTPTLAT": "+38.9409032", "INTPTLON": "-076.9931121" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.934509 ], [ -76.991683, 38.934489 ], [ -76.992112, 38.934464 ], [ -76.992686, 38.934439 ], [ -76.992788, 38.934431 ], [ -76.992869, 38.934431 ], [ -76.992944, 38.934426 ], [ -76.992981, 38.934426 ], [ -76.993024, 38.934418 ], [ -76.993062, 38.934410 ], [ -76.993239, 38.934310 ], [ -76.993325, 38.934268 ], [ -76.993357, 38.934255 ], [ -76.993529, 38.934184 ], [ -76.993893, 38.934030 ], [ -76.994001, 38.933984 ], [ -76.994178, 38.933926 ], [ -76.994247, 38.933905 ], [ -76.994269, 38.933901 ], [ -76.994301, 38.933901 ], [ -76.994328, 38.933901 ], [ -76.994349, 38.933909 ], [ -76.994398, 38.933938 ], [ -76.994580, 38.933909 ], [ -76.994709, 38.933821 ], [ -76.994832, 38.933746 ], [ -76.994982, 38.934230 ], [ -76.995068, 38.934477 ], [ -76.995095, 38.934547 ], [ -76.996109, 38.937189 ], [ -76.997638, 38.940731 ], [ -77.000041, 38.946272 ], [ -76.999118, 38.946272 ], [ -76.998995, 38.946272 ], [ -76.998373, 38.946272 ], [ -76.998083, 38.946272 ], [ -76.997632, 38.946272 ], [ -76.997155, 38.946272 ], [ -76.997048, 38.946272 ], [ -76.996924, 38.946268 ], [ -76.996608, 38.946272 ], [ -76.995487, 38.946272 ], [ -76.994950, 38.946272 ], [ -76.994827, 38.946276 ], [ -76.994323, 38.946276 ], [ -76.993867, 38.946272 ], [ -76.993266, 38.946272 ], [ -76.992767, 38.946276 ], [ -76.992643, 38.946276 ], [ -76.992509, 38.946276 ], [ -76.991946, 38.946276 ], [ -76.991329, 38.946272 ], [ -76.991329, 38.934509 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009201", "GEOID": "11001009201", "NAME": "92.01", "NAMELSAD": "Census Tract 92.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 629781, "AWATER": 0, "INTPTLAT": "+38.9287161", "INTPTLON": "-076.9990184" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.005904, 38.926427 ], [ -77.005963, 38.926481 ], [ -77.005985, 38.926506 ], [ -77.006055, 38.926585 ], [ -77.006114, 38.926669 ], [ -77.006205, 38.926798 ], [ -77.006253, 38.926898 ], [ -77.006291, 38.927011 ], [ -77.006258, 38.927015 ], [ -77.006178, 38.927040 ], [ -77.006151, 38.927049 ], [ -77.006087, 38.927069 ], [ -77.006012, 38.927107 ], [ -77.005974, 38.927128 ], [ -77.005931, 38.927153 ], [ -77.005888, 38.927182 ], [ -77.005845, 38.927211 ], [ -77.005786, 38.927266 ], [ -77.005749, 38.927303 ], [ -77.005373, 38.927750 ], [ -77.005357, 38.927766 ], [ -77.005250, 38.927900 ], [ -77.005019, 38.928171 ], [ -77.004917, 38.928292 ], [ -77.004885, 38.928334 ], [ -77.004848, 38.928376 ], [ -77.004279, 38.929048 ], [ -77.004257, 38.929077 ], [ -77.004048, 38.929319 ], [ -77.003968, 38.929406 ], [ -77.003882, 38.929490 ], [ -77.003791, 38.929573 ], [ -77.003667, 38.929682 ], [ -77.003549, 38.929774 ], [ -77.003490, 38.929815 ], [ -77.003345, 38.929924 ], [ -77.003260, 38.929978 ], [ -77.003168, 38.930037 ], [ -77.003040, 38.930112 ], [ -77.002793, 38.930249 ], [ -77.002653, 38.930329 ], [ -77.002444, 38.930441 ], [ -77.002203, 38.930571 ], [ -77.002090, 38.930633 ], [ -77.001919, 38.930725 ], [ -77.001452, 38.930980 ], [ -77.001216, 38.931105 ], [ -77.001125, 38.931151 ], [ -77.000980, 38.931213 ], [ -77.000701, 38.931339 ], [ -77.000556, 38.931393 ], [ -77.000057, 38.931593 ], [ -76.999140, 38.931960 ], [ -76.998700, 38.932136 ], [ -76.998534, 38.932202 ], [ -76.998271, 38.932311 ], [ -76.998013, 38.932411 ], [ -76.997783, 38.932507 ], [ -76.997552, 38.932599 ], [ -76.997214, 38.932732 ], [ -76.996774, 38.932912 ], [ -76.996436, 38.933054 ], [ -76.996179, 38.933162 ], [ -76.996071, 38.933208 ], [ -76.995787, 38.933321 ], [ -76.995422, 38.933467 ], [ -76.995358, 38.933492 ], [ -76.995068, 38.933625 ], [ -76.994950, 38.933688 ], [ -76.994832, 38.933746 ], [ -76.994720, 38.933342 ], [ -76.994591, 38.932812 ], [ -76.994494, 38.932373 ], [ -76.994306, 38.931384 ], [ -76.994237, 38.930913 ], [ -76.994151, 38.930241 ], [ -76.994124, 38.929790 ], [ -76.994097, 38.929248 ], [ -76.994097, 38.928643 ], [ -76.994135, 38.927912 ], [ -76.994172, 38.927441 ], [ -76.994306, 38.926494 ], [ -76.994414, 38.925909 ], [ -76.994483, 38.925584 ], [ -76.994644, 38.925584 ], [ -76.994805, 38.925584 ], [ -76.994961, 38.925584 ], [ -76.995481, 38.925580 ], [ -76.996168, 38.925584 ], [ -76.996275, 38.925580 ], [ -76.996608, 38.925580 ], [ -76.997166, 38.925584 ], [ -76.997820, 38.925580 ], [ -76.998442, 38.925584 ], [ -76.998802, 38.925588 ], [ -76.999499, 38.925588 ], [ -77.000127, 38.925584 ], [ -77.000143, 38.925584 ], [ -77.000427, 38.925588 ], [ -77.000567, 38.925592 ], [ -77.000695, 38.925592 ], [ -77.001339, 38.925592 ], [ -77.001656, 38.925592 ], [ -77.001988, 38.925592 ], [ -77.002439, 38.925592 ], [ -77.002653, 38.925592 ], [ -77.003056, 38.925596 ], [ -77.003120, 38.925596 ], [ -77.003238, 38.925605 ], [ -77.003394, 38.925617 ], [ -77.003506, 38.925630 ], [ -77.003624, 38.925646 ], [ -77.003796, 38.925676 ], [ -77.003919, 38.925705 ], [ -77.004037, 38.925730 ], [ -77.004193, 38.925772 ], [ -77.004268, 38.925797 ], [ -77.004375, 38.925834 ], [ -77.004451, 38.925855 ], [ -77.004601, 38.925905 ], [ -77.004676, 38.925930 ], [ -77.004713, 38.925943 ], [ -77.004880, 38.925997 ], [ -77.005084, 38.926068 ], [ -77.005357, 38.926156 ], [ -77.005443, 38.926185 ], [ -77.005475, 38.926193 ], [ -77.005582, 38.926235 ], [ -77.005615, 38.926247 ], [ -77.005658, 38.926268 ], [ -77.005695, 38.926285 ], [ -77.005727, 38.926306 ], [ -77.005754, 38.926318 ], [ -77.005786, 38.926339 ], [ -77.005845, 38.926381 ], [ -77.005904, 38.926427 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003702", "GEOID": "11001003702", "NAME": "37.02", "NAMELSAD": "Census Tract 37.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 119532, "AWATER": 0, "INTPTLAT": "+38.9249042", "INTPTLON": "-077.0343972" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.032405, 38.926573 ], [ -77.032335, 38.925742 ], [ -77.032329, 38.925651 ], [ -77.032313, 38.925500 ], [ -77.032308, 38.925425 ], [ -77.032249, 38.924828 ], [ -77.032238, 38.924757 ], [ -77.032219, 38.924561 ], [ -77.036484, 38.924561 ], [ -77.036481, 38.924766 ], [ -77.036481, 38.924824 ], [ -77.036481, 38.925605 ], [ -77.036481, 38.925792 ], [ -77.036481, 38.925880 ], [ -77.036487, 38.926185 ], [ -77.036487, 38.926272 ], [ -77.036331, 38.926293 ], [ -77.035983, 38.926310 ], [ -77.035478, 38.926327 ], [ -77.034942, 38.926356 ], [ -77.033601, 38.926435 ], [ -77.033113, 38.926464 ], [ -77.032716, 38.926489 ], [ -77.032624, 38.926502 ], [ -77.032523, 38.926527 ], [ -77.032405, 38.926573 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003600", "GEOID": "11001003600", "NAME": "36", "NAMELSAD": "Census Tract 36", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 305616, "AWATER": 0, "INTPTLAT": "+38.9236744", "INTPTLON": "-077.0296273" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.032219, 38.924561 ], [ -77.032238, 38.924757 ], [ -77.032249, 38.924828 ], [ -77.032308, 38.925425 ], [ -77.032313, 38.925500 ], [ -77.032329, 38.925651 ], [ -77.032335, 38.925742 ], [ -77.032405, 38.926573 ], [ -77.032169, 38.926686 ], [ -77.032050, 38.926723 ], [ -77.032002, 38.926727 ], [ -77.031852, 38.926736 ], [ -77.031557, 38.926740 ], [ -77.031455, 38.926740 ], [ -77.031278, 38.926744 ], [ -77.029980, 38.926744 ], [ -77.029878, 38.926744 ], [ -77.029706, 38.926744 ], [ -77.029594, 38.926740 ], [ -77.028735, 38.926740 ], [ -77.028285, 38.926740 ], [ -77.027185, 38.926740 ], [ -77.027099, 38.926744 ], [ -77.027045, 38.926748 ], [ -77.027040, 38.926719 ], [ -77.027035, 38.926631 ], [ -77.027035, 38.926410 ], [ -77.027035, 38.926130 ], [ -77.027035, 38.925855 ], [ -77.027035, 38.925755 ], [ -77.027035, 38.924766 ], [ -77.027035, 38.924561 ], [ -77.032219, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003500", "GEOID": "11001003500", "NAME": "35", "NAMELSAD": "Census Tract 35", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 382021, "AWATER": 0, "INTPTLAT": "+38.9223765", "INTPTLON": "-077.0243410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.027045, 38.926748 ], [ -77.026981, 38.926756 ], [ -77.026638, 38.926794 ], [ -77.026348, 38.926819 ], [ -77.026155, 38.926836 ], [ -77.025935, 38.926852 ], [ -77.025779, 38.926869 ], [ -77.025087, 38.926928 ], [ -77.024417, 38.926986 ], [ -77.023526, 38.927074 ], [ -77.023484, 38.927078 ], [ -77.023403, 38.927090 ], [ -77.023328, 38.927107 ], [ -77.023247, 38.927124 ], [ -77.023172, 38.927145 ], [ -77.023076, 38.927178 ], [ -77.023022, 38.927203 ], [ -77.022963, 38.927228 ], [ -77.022904, 38.926848 ], [ -77.022893, 38.926761 ], [ -77.022877, 38.926640 ], [ -77.022867, 38.926569 ], [ -77.022834, 38.926347 ], [ -77.022802, 38.926143 ], [ -77.022759, 38.925834 ], [ -77.022749, 38.925776 ], [ -77.022738, 38.925692 ], [ -77.022663, 38.925162 ], [ -77.022609, 38.924808 ], [ -77.022572, 38.924561 ], [ -77.027035, 38.924561 ], [ -77.027035, 38.924766 ], [ -77.027035, 38.925755 ], [ -77.027035, 38.925855 ], [ -77.027035, 38.926130 ], [ -77.027035, 38.926410 ], [ -77.027035, 38.926631 ], [ -77.027040, 38.926719 ], [ -77.027045, 38.926748 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003400", "GEOID": "11001003400", "NAME": "34", "NAMELSAD": "Census Tract 34", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 911458, "AWATER": 159593, "INTPTLAT": "+38.9221674", "INTPTLON": "-077.0177044" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.022695, 38.927324 ], [ -77.022620, 38.927341 ], [ -77.022545, 38.927353 ], [ -77.021890, 38.927403 ], [ -77.021273, 38.927462 ], [ -77.020978, 38.927487 ], [ -77.020447, 38.927533 ], [ -77.020329, 38.927695 ], [ -77.020259, 38.927771 ], [ -77.020184, 38.927829 ], [ -77.020050, 38.927883 ], [ -77.019326, 38.927937 ], [ -77.019262, 38.927942 ], [ -77.019171, 38.927946 ], [ -77.019020, 38.927963 ], [ -77.018639, 38.927979 ], [ -77.018484, 38.927988 ], [ -77.018436, 38.927988 ], [ -77.018328, 38.927988 ], [ -77.018226, 38.927988 ], [ -77.018092, 38.927979 ], [ -77.018001, 38.927967 ], [ -77.017862, 38.927950 ], [ -77.017803, 38.927937 ], [ -77.017690, 38.927917 ], [ -77.017604, 38.927896 ], [ -77.017550, 38.927883 ], [ -77.017373, 38.927825 ], [ -77.017336, 38.927812 ], [ -77.017261, 38.927779 ], [ -77.017186, 38.927746 ], [ -77.017116, 38.927712 ], [ -77.016966, 38.927629 ], [ -77.016746, 38.927537 ], [ -77.016665, 38.927483 ], [ -77.016086, 38.927145 ], [ -77.015163, 38.926610 ], [ -77.015072, 38.926565 ], [ -77.014976, 38.926519 ], [ -77.014879, 38.926477 ], [ -77.014471, 38.926343 ], [ -77.014418, 38.926335 ], [ -77.014262, 38.926306 ], [ -77.014160, 38.926289 ], [ -77.014026, 38.926272 ], [ -77.013887, 38.926264 ], [ -77.013838, 38.926264 ], [ -77.012669, 38.926268 ], [ -77.012513, 38.926268 ], [ -77.012465, 38.926272 ], [ -77.012411, 38.926272 ], [ -77.012138, 38.926281 ], [ -77.012138, 38.925797 ], [ -77.012143, 38.924695 ], [ -77.012143, 38.924561 ], [ -77.022572, 38.924561 ], [ -77.022609, 38.924808 ], [ -77.022663, 38.925162 ], [ -77.022738, 38.925692 ], [ -77.022749, 38.925776 ], [ -77.022759, 38.925834 ], [ -77.022802, 38.926143 ], [ -77.022834, 38.926347 ], [ -77.022867, 38.926569 ], [ -77.022877, 38.926640 ], [ -77.022893, 38.926761 ], [ -77.022904, 38.926848 ], [ -77.022963, 38.927228 ], [ -77.022893, 38.927253 ], [ -77.022818, 38.927278 ], [ -77.022695, 38.927324 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "003301", "GEOID": "11001003301", "NAME": "33.01", "NAMELSAD": "Census Tract 33.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 442120, "AWATER": 0, "INTPTLAT": "+38.9204778", "INTPTLON": "-077.0114293" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.012143, 38.924561 ], [ -77.012143, 38.924695 ], [ -77.012138, 38.925797 ], [ -77.012138, 38.926281 ], [ -77.011988, 38.926289 ], [ -77.011403, 38.926347 ], [ -77.011151, 38.926377 ], [ -77.010137, 38.926514 ], [ -77.009574, 38.926590 ], [ -77.009230, 38.926640 ], [ -77.009043, 38.926669 ], [ -77.008935, 38.926677 ], [ -77.008962, 38.925838 ], [ -77.008962, 38.925133 ], [ -77.008967, 38.925037 ], [ -77.008967, 38.924561 ], [ -77.012143, 38.924561 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009203", "GEOID": "11001009203", "NAME": "92.03", "NAMELSAD": "Census Tract 92.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 581087, "AWATER": 0, "INTPTLAT": "+38.9219735", "INTPTLON": "-077.0054956" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -77.006291, 38.927011 ], [ -77.006253, 38.926898 ], [ -77.006205, 38.926798 ], [ -77.006114, 38.926669 ], [ -77.006055, 38.926585 ], [ -77.005985, 38.926506 ], [ -77.005963, 38.926481 ], [ -77.005904, 38.926427 ], [ -77.005845, 38.926381 ], [ -77.005786, 38.926339 ], [ -77.005754, 38.926318 ], [ -77.005727, 38.926306 ], [ -77.005695, 38.926285 ], [ -77.005658, 38.926268 ], [ -77.005615, 38.926247 ], [ -77.005582, 38.926235 ], [ -77.005475, 38.926193 ], [ -77.005443, 38.926185 ], [ -77.005357, 38.926156 ], [ -77.005084, 38.926068 ], [ -77.004880, 38.925997 ], [ -77.004713, 38.925943 ], [ -77.004676, 38.925930 ], [ -77.004601, 38.925905 ], [ -77.004451, 38.925855 ], [ -77.004375, 38.925834 ], [ -77.004268, 38.925797 ], [ -77.004193, 38.925772 ], [ -77.004037, 38.925730 ], [ -77.003919, 38.925705 ], [ -77.003796, 38.925676 ], [ -77.003624, 38.925646 ], [ -77.003506, 38.925630 ], [ -77.003394, 38.925617 ], [ -77.003238, 38.925605 ], [ -77.003120, 38.925596 ], [ -77.003056, 38.925596 ], [ -77.002653, 38.925592 ], [ -77.002439, 38.925592 ], [ -77.002675, 38.925463 ], [ -77.002863, 38.925363 ], [ -77.002884, 38.925350 ], [ -77.002911, 38.925329 ], [ -77.002938, 38.925308 ], [ -77.002965, 38.925283 ], [ -77.002991, 38.925242 ], [ -77.003050, 38.925037 ], [ -77.003147, 38.924720 ], [ -77.003197, 38.924561 ], [ -77.008967, 38.924561 ], [ -77.008967, 38.925037 ], [ -77.008962, 38.925133 ], [ -77.008962, 38.925838 ], [ -77.008935, 38.926677 ], [ -77.008404, 38.926736 ], [ -77.008109, 38.926769 ], [ -77.007964, 38.926786 ], [ -77.007900, 38.926794 ], [ -77.007310, 38.926869 ], [ -77.006897, 38.926923 ], [ -77.006564, 38.926969 ], [ -77.006366, 38.926994 ], [ -77.006291, 38.927011 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009204", "GEOID": "11001009204", "NAME": "92.04", "NAMELSAD": "Census Tract 92.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 308465, "AWATER": 0, "INTPTLAT": "+38.9234161", "INTPTLON": "-076.9987071" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994483, 38.925584 ], [ -76.994628, 38.924995 ], [ -76.994756, 38.924561 ], [ -77.003197, 38.924561 ], [ -77.003147, 38.924720 ], [ -77.003050, 38.925037 ], [ -77.002991, 38.925242 ], [ -77.002965, 38.925283 ], [ -77.002938, 38.925308 ], [ -77.002911, 38.925329 ], [ -77.002884, 38.925350 ], [ -77.002863, 38.925363 ], [ -77.002675, 38.925463 ], [ -77.002439, 38.925592 ], [ -77.001988, 38.925592 ], [ -77.001656, 38.925592 ], [ -77.001339, 38.925592 ], [ -77.000695, 38.925592 ], [ -77.000567, 38.925592 ], [ -77.000427, 38.925588 ], [ -77.000143, 38.925584 ], [ -77.000127, 38.925584 ], [ -76.999499, 38.925588 ], [ -76.998802, 38.925588 ], [ -76.998442, 38.925584 ], [ -76.997820, 38.925580 ], [ -76.997166, 38.925584 ], [ -76.996608, 38.925580 ], [ -76.996275, 38.925580 ], [ -76.996168, 38.925584 ], [ -76.995481, 38.925580 ], [ -76.994961, 38.925584 ], [ -76.994805, 38.925584 ], [ -76.994644, 38.925584 ], [ -76.994483, 38.925584 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009301", "GEOID": "11001009301", "NAME": "93.01", "NAMELSAD": "Census Tract 93.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1109091, "AWATER": 0, "INTPTLAT": "+38.9307613", "INTPTLON": "-076.9864892" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.994172, 38.927441 ], [ -76.994135, 38.927912 ], [ -76.994097, 38.928643 ], [ -76.994097, 38.929248 ], [ -76.994124, 38.929790 ], [ -76.994151, 38.930241 ], [ -76.994237, 38.930913 ], [ -76.994306, 38.931384 ], [ -76.994494, 38.932373 ], [ -76.994591, 38.932812 ], [ -76.994720, 38.933342 ], [ -76.994832, 38.933746 ], [ -76.994709, 38.933821 ], [ -76.994580, 38.933909 ], [ -76.994398, 38.933938 ], [ -76.994349, 38.933909 ], [ -76.994328, 38.933901 ], [ -76.994301, 38.933901 ], [ -76.994269, 38.933901 ], [ -76.994247, 38.933905 ], [ -76.994178, 38.933926 ], [ -76.994001, 38.933984 ], [ -76.993893, 38.934030 ], [ -76.993529, 38.934184 ], [ -76.993357, 38.934255 ], [ -76.993325, 38.934268 ], [ -76.993239, 38.934310 ], [ -76.993062, 38.934410 ], [ -76.993024, 38.934418 ], [ -76.992981, 38.934426 ], [ -76.992944, 38.934426 ], [ -76.992869, 38.934431 ], [ -76.992788, 38.934431 ], [ -76.992686, 38.934439 ], [ -76.992112, 38.934464 ], [ -76.991683, 38.934489 ], [ -76.991329, 38.934509 ], [ -76.991329, 38.927564 ], [ -76.991640, 38.927549 ], [ -76.992059, 38.927533 ], [ -76.992327, 38.927520 ], [ -76.992429, 38.927516 ], [ -76.992922, 38.927487 ], [ -76.993448, 38.927462 ], [ -76.993679, 38.927449 ], [ -76.994070, 38.927441 ], [ -76.994119, 38.927441 ], [ -76.994172, 38.927441 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009302", "GEOID": "11001009302", "NAME": "93.02", "NAMELSAD": "Census Tract 93.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 391905, "AWATER": 0, "INTPTLAT": "+38.9251636", "INTPTLON": "-076.9907773" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991329, 38.924561 ], [ -76.994756, 38.924561 ], [ -76.994628, 38.924995 ], [ -76.994483, 38.925584 ], [ -76.994414, 38.925909 ], [ -76.994306, 38.926494 ], [ -76.994172, 38.927441 ], [ -76.994119, 38.927441 ], [ -76.994070, 38.927441 ], [ -76.993679, 38.927449 ], [ -76.993448, 38.927462 ], [ -76.992922, 38.927487 ], [ -76.992429, 38.927516 ], [ -76.992327, 38.927520 ], [ -76.992059, 38.927533 ], [ -76.991640, 38.927549 ], [ -76.991329, 38.927564 ], [ -76.991329, 38.924561 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2344, "y": 3135 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007401", "GEOID": "11001007401", "NAME": "74.01", "NAMELSAD": "Census Tract 74.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1209113, "AWATER": 200980, "INTPTLAT": "+38.8675208", "INTPTLON": "-076.9991203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.854606 ], [ -76.992847, 38.854397 ], [ -76.992606, 38.854167 ], [ -76.992348, 38.853988 ], [ -76.992069, 38.853812 ], [ -76.991984, 38.853754 ], [ -76.992145, 38.853595 ], [ -76.992252, 38.853482 ], [ -76.992273, 38.853466 ], [ -76.992284, 38.853453 ], [ -76.992477, 38.853566 ], [ -76.993046, 38.853924 ], [ -76.993046, 38.854606 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "010400", "GEOID": "11001010400", "NAME": "104", "NAMELSAD": "Census Tract 104", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2602393, "AWATER": 7006, "INTPTLAT": "+38.8512668", "INTPTLON": "-077.0009082" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.853924 ], [ -76.992477, 38.853566 ], [ -76.992284, 38.853453 ], [ -76.990954, 38.852659 ], [ -76.986469, 38.849852 ], [ -76.985042, 38.848962 ], [ -76.987279, 38.846660 ], [ -76.987472, 38.846485 ], [ -76.987499, 38.846493 ], [ -76.987531, 38.846485 ], [ -76.987547, 38.846480 ], [ -76.987579, 38.846455 ], [ -76.987719, 38.846351 ], [ -76.987756, 38.846347 ], [ -76.987805, 38.846351 ], [ -76.987869, 38.846368 ], [ -76.987928, 38.846397 ], [ -76.987987, 38.846430 ], [ -76.988046, 38.846472 ], [ -76.988084, 38.846493 ], [ -76.988121, 38.846505 ], [ -76.988239, 38.846518 ], [ -76.988373, 38.846518 ], [ -76.988706, 38.846376 ], [ -76.988491, 38.846121 ], [ -76.988609, 38.845649 ], [ -76.988685, 38.845662 ], [ -76.988872, 38.844968 ], [ -76.989114, 38.844717 ], [ -76.989092, 38.844592 ], [ -76.989226, 38.844567 ], [ -76.990589, 38.844312 ], [ -76.990991, 38.844245 ], [ -76.991656, 38.844128 ], [ -76.992171, 38.844040 ], [ -76.992424, 38.843994 ], [ -76.993014, 38.843894 ], [ -76.993046, 38.843889 ], [ -76.993046, 38.853924 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009801", "GEOID": "11001009801", "NAME": "98.01", "NAMELSAD": "Census Tract 98.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 431384, "AWATER": 7884, "INTPTLAT": "+38.8328939", "INTPTLON": "-076.9963306" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.989478, 38.833461 ], [ -76.989570, 38.833390 ], [ -76.989822, 38.833193 ], [ -76.990176, 38.832917 ], [ -76.990734, 38.832483 ], [ -76.990836, 38.832399 ], [ -76.990905, 38.832349 ], [ -76.991061, 38.832470 ], [ -76.991286, 38.832646 ], [ -76.991361, 38.832704 ], [ -76.991554, 38.832562 ], [ -76.991662, 38.832495 ], [ -76.991732, 38.832449 ], [ -76.991839, 38.832387 ], [ -76.991909, 38.832353 ], [ -76.992016, 38.832299 ], [ -76.992123, 38.832253 ], [ -76.992161, 38.832240 ], [ -76.992236, 38.832207 ], [ -76.992348, 38.832165 ], [ -76.992429, 38.832140 ], [ -76.992509, 38.832119 ], [ -76.992670, 38.832078 ], [ -76.992729, 38.832065 ], [ -76.992821, 38.832044 ], [ -76.992987, 38.832019 ], [ -76.993046, 38.832015 ], [ -76.993046, 38.836494 ], [ -76.992949, 38.836356 ], [ -76.992815, 38.836168 ], [ -76.992713, 38.836018 ], [ -76.992692, 38.835993 ], [ -76.992611, 38.835868 ], [ -76.992418, 38.835588 ], [ -76.992391, 38.835550 ], [ -76.992316, 38.835446 ], [ -76.992257, 38.835379 ], [ -76.992204, 38.835312 ], [ -76.992171, 38.835278 ], [ -76.992139, 38.835245 ], [ -76.992064, 38.835178 ], [ -76.992021, 38.835141 ], [ -76.991962, 38.835095 ], [ -76.991941, 38.835078 ], [ -76.991882, 38.835032 ], [ -76.991764, 38.834952 ], [ -76.991721, 38.834923 ], [ -76.991426, 38.834735 ], [ -76.990959, 38.834426 ], [ -76.990916, 38.834401 ], [ -76.990900, 38.834388 ], [ -76.990814, 38.834338 ], [ -76.990803, 38.834334 ], [ -76.990691, 38.834255 ], [ -76.990535, 38.834150 ], [ -76.990079, 38.833853 ], [ -76.989575, 38.833523 ], [ -76.989478, 38.833461 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009811", "GEOID": "11001009811", "NAME": "98.11", "NAMELSAD": "Census Tract 98.11", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 467511, "AWATER": 0, "INTPTLAT": "+38.8266510", "INTPTLON": "-076.9984594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.829203 ], [ -76.992842, 38.829207 ], [ -76.992493, 38.829202 ], [ -76.991351, 38.829198 ], [ -76.991109, 38.829148 ], [ -76.991184, 38.829094 ], [ -76.991270, 38.829023 ], [ -76.991479, 38.828864 ], [ -76.991576, 38.828785 ], [ -76.991635, 38.828739 ], [ -76.991737, 38.828659 ], [ -76.992016, 38.828446 ], [ -76.992257, 38.828258 ], [ -76.992483, 38.828078 ], [ -76.992627, 38.827965 ], [ -76.992649, 38.827949 ], [ -76.992794, 38.827840 ], [ -76.993046, 38.827644 ], [ -76.993046, 38.829203 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009802", "GEOID": "11001009802", "NAME": "98.02", "NAMELSAD": "Census Tract 98.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 200745, "AWATER": 0, "INTPTLAT": "+38.8307312", "INTPTLON": "-076.9965578" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990905, 38.832349 ], [ -76.991656, 38.831764 ], [ -76.992745, 38.830907 ], [ -76.992863, 38.830815 ], [ -76.993046, 38.830673 ], [ -76.993046, 38.832015 ], [ -76.992987, 38.832019 ], [ -76.992821, 38.832044 ], [ -76.992729, 38.832065 ], [ -76.992670, 38.832078 ], [ -76.992509, 38.832119 ], [ -76.992429, 38.832140 ], [ -76.992348, 38.832165 ], [ -76.992236, 38.832207 ], [ -76.992161, 38.832240 ], [ -76.992123, 38.832253 ], [ -76.992016, 38.832299 ], [ -76.991909, 38.832353 ], [ -76.991839, 38.832387 ], [ -76.991732, 38.832449 ], [ -76.991662, 38.832495 ], [ -76.991554, 38.832562 ], [ -76.991361, 38.832704 ], [ -76.991286, 38.832646 ], [ -76.991061, 38.832470 ], [ -76.990905, 38.832349 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007407", "GEOID": "11001007407", "NAME": "74.07", "NAMELSAD": "Census Tract 74.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 608700, "AWATER": 0, "INTPTLAT": "+38.8574823", "INTPTLON": "-076.9850206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.984027, 38.857489 ], [ -76.983894, 38.857405 ], [ -76.983835, 38.857372 ], [ -76.983701, 38.857296 ], [ -76.983599, 38.857221 ], [ -76.983519, 38.857175 ], [ -76.983100, 38.856920 ], [ -76.983063, 38.856908 ], [ -76.983020, 38.856900 ], [ -76.982977, 38.856895 ], [ -76.982934, 38.856895 ], [ -76.982891, 38.856900 ], [ -76.982478, 38.856962 ], [ -76.982242, 38.857004 ], [ -76.981121, 38.857200 ], [ -76.980793, 38.857255 ], [ -76.980633, 38.857284 ], [ -76.980547, 38.857292 ], [ -76.980461, 38.857296 ], [ -76.980160, 38.857305 ], [ -76.979635, 38.857305 ], [ -76.979023, 38.857305 ], [ -76.978755, 38.857305 ], [ -76.978449, 38.857301 ], [ -76.978111, 38.857305 ], [ -76.978015, 38.857305 ], [ -76.977752, 38.857305 ], [ -76.977360, 38.857305 ], [ -76.977317, 38.857301 ], [ -76.977226, 38.857292 ], [ -76.977167, 38.857284 ], [ -76.977097, 38.857271 ], [ -76.977022, 38.857255 ], [ -76.976904, 38.857221 ], [ -76.976856, 38.857204 ], [ -76.976824, 38.857192 ], [ -76.976759, 38.857163 ], [ -76.976700, 38.857129 ], [ -76.976320, 38.856879 ], [ -76.976003, 38.856674 ], [ -76.975654, 38.856448 ], [ -76.975445, 38.856315 ], [ -76.975660, 38.856114 ], [ -76.975896, 38.855889 ], [ -76.974635, 38.854999 ], [ -76.975241, 38.854343 ], [ -76.975896, 38.853629 ], [ -76.976094, 38.853708 ], [ -76.976346, 38.853804 ], [ -76.976604, 38.853888 ], [ -76.976936, 38.853988 ], [ -76.977248, 38.854067 ], [ -76.977805, 38.854188 ], [ -76.978138, 38.854230 ], [ -76.978498, 38.854268 ], [ -76.978948, 38.854301 ], [ -76.979270, 38.854305 ], [ -76.979844, 38.854293 ], [ -76.980332, 38.854243 ], [ -76.980793, 38.854167 ], [ -76.981201, 38.854092 ], [ -76.981539, 38.854009 ], [ -76.981845, 38.853913 ], [ -76.982215, 38.853787 ], [ -76.982762, 38.853583 ], [ -76.983336, 38.853365 ], [ -76.983358, 38.853407 ], [ -76.983374, 38.853449 ], [ -76.983406, 38.853487 ], [ -76.983438, 38.853524 ], [ -76.983476, 38.853562 ], [ -76.983497, 38.853578 ], [ -76.983524, 38.853595 ], [ -76.983551, 38.853612 ], [ -76.983578, 38.853629 ], [ -76.983604, 38.853645 ], [ -76.983637, 38.853658 ], [ -76.983696, 38.853683 ], [ -76.983867, 38.853729 ], [ -76.984377, 38.853871 ], [ -76.984779, 38.853979 ], [ -76.985171, 38.854088 ], [ -76.985208, 38.854101 ], [ -76.985246, 38.854117 ], [ -76.985278, 38.854130 ], [ -76.985316, 38.854147 ], [ -76.985348, 38.854167 ], [ -76.985761, 38.854410 ], [ -76.985836, 38.854456 ], [ -76.985916, 38.854510 ], [ -76.985954, 38.854535 ], [ -76.985997, 38.854569 ], [ -76.986072, 38.854627 ], [ -76.986099, 38.854656 ], [ -76.986367, 38.854928 ], [ -76.986405, 38.854974 ], [ -76.986431, 38.855007 ], [ -76.986453, 38.855036 ], [ -76.986464, 38.855053 ], [ -76.986480, 38.855087 ], [ -76.986603, 38.855341 ], [ -76.986662, 38.855458 ], [ -76.986694, 38.855517 ], [ -76.986743, 38.855592 ], [ -76.986877, 38.855772 ], [ -76.986898, 38.855797 ], [ -76.986925, 38.855855 ], [ -76.986936, 38.855884 ], [ -76.986941, 38.855914 ], [ -76.986952, 38.855955 ], [ -76.986957, 38.855997 ], [ -76.986973, 38.856081 ], [ -76.986989, 38.856189 ], [ -76.987011, 38.856302 ], [ -76.987016, 38.856331 ], [ -76.987075, 38.856649 ], [ -76.987113, 38.856862 ], [ -76.987123, 38.856954 ], [ -76.987150, 38.857104 ], [ -76.987161, 38.857192 ], [ -76.987172, 38.857230 ], [ -76.987193, 38.857301 ], [ -76.987220, 38.857359 ], [ -76.987236, 38.857384 ], [ -76.987305, 38.857489 ], [ -76.984027, 38.857489 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007504", "GEOID": "11001007504", "NAME": "75.04", "NAMELSAD": "Census Tract 75.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 764081, "AWATER": 0, "INTPTLAT": "+38.8609955", "INTPTLON": "-076.9796257" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.974484, 38.857489 ], [ -76.974286, 38.857388 ], [ -76.975070, 38.856657 ], [ -76.975209, 38.856528 ], [ -76.975445, 38.856315 ], [ -76.975654, 38.856448 ], [ -76.976003, 38.856674 ], [ -76.976320, 38.856879 ], [ -76.976700, 38.857129 ], [ -76.976759, 38.857163 ], [ -76.976824, 38.857192 ], [ -76.976856, 38.857204 ], [ -76.976904, 38.857221 ], [ -76.977022, 38.857255 ], [ -76.977097, 38.857271 ], [ -76.977167, 38.857284 ], [ -76.977226, 38.857292 ], [ -76.977317, 38.857301 ], [ -76.977360, 38.857305 ], [ -76.977752, 38.857305 ], [ -76.978015, 38.857305 ], [ -76.978111, 38.857305 ], [ -76.978449, 38.857301 ], [ -76.978755, 38.857305 ], [ -76.979023, 38.857305 ], [ -76.979635, 38.857305 ], [ -76.980160, 38.857305 ], [ -76.980461, 38.857296 ], [ -76.980547, 38.857292 ], [ -76.980633, 38.857284 ], [ -76.980793, 38.857255 ], [ -76.981121, 38.857200 ], [ -76.982242, 38.857004 ], [ -76.982478, 38.856962 ], [ -76.982891, 38.856900 ], [ -76.982934, 38.856895 ], [ -76.982977, 38.856895 ], [ -76.983020, 38.856900 ], [ -76.983063, 38.856908 ], [ -76.983100, 38.856920 ], [ -76.983519, 38.857175 ], [ -76.983599, 38.857221 ], [ -76.983701, 38.857296 ], [ -76.983835, 38.857372 ], [ -76.983894, 38.857405 ], [ -76.984027, 38.857489 ], [ -76.974484, 38.857489 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007502", "GEOID": "11001007502", "NAME": "75.02", "NAMELSAD": "Census Tract 75.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 648317, "AWATER": 0, "INTPTLAT": "+38.8568592", "INTPTLON": "-076.9697843" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963493, 38.850704 ], [ -76.963601, 38.850788 ], [ -76.964175, 38.851243 ], [ -76.964958, 38.851857 ], [ -76.965564, 38.852329 ], [ -76.965687, 38.852405 ], [ -76.965687, 38.852074 ], [ -76.965682, 38.852008 ], [ -76.965682, 38.851853 ], [ -76.965687, 38.851828 ], [ -76.965687, 38.851799 ], [ -76.965687, 38.851770 ], [ -76.965687, 38.851740 ], [ -76.965687, 38.851715 ], [ -76.965687, 38.851590 ], [ -76.965687, 38.851548 ], [ -76.965682, 38.851511 ], [ -76.965677, 38.851469 ], [ -76.965666, 38.851406 ], [ -76.965650, 38.851360 ], [ -76.965623, 38.851297 ], [ -76.965612, 38.851277 ], [ -76.965580, 38.851235 ], [ -76.965553, 38.851193 ], [ -76.965510, 38.851151 ], [ -76.965462, 38.851105 ], [ -76.965424, 38.851068 ], [ -76.965371, 38.851005 ], [ -76.965355, 38.850984 ], [ -76.965333, 38.850951 ], [ -76.965317, 38.850913 ], [ -76.965306, 38.850876 ], [ -76.965301, 38.850838 ], [ -76.965296, 38.850800 ], [ -76.965296, 38.850759 ], [ -76.965301, 38.850721 ], [ -76.965306, 38.850683 ], [ -76.965317, 38.850646 ], [ -76.965339, 38.850600 ], [ -76.965355, 38.850583 ], [ -76.965371, 38.850562 ], [ -76.965419, 38.850512 ], [ -76.965446, 38.850483 ], [ -76.965473, 38.850458 ], [ -76.965505, 38.850437 ], [ -76.965537, 38.850416 ], [ -76.965564, 38.850399 ], [ -76.965596, 38.850383 ], [ -76.965634, 38.850370 ], [ -76.965671, 38.850362 ], [ -76.965703, 38.850349 ], [ -76.965741, 38.850345 ], [ -76.965816, 38.850337 ], [ -76.965896, 38.850337 ], [ -76.965929, 38.850341 ], [ -76.965972, 38.850349 ], [ -76.966009, 38.850353 ], [ -76.966047, 38.850366 ], [ -76.966138, 38.850399 ], [ -76.966224, 38.850449 ], [ -76.966251, 38.850470 ], [ -76.966304, 38.850516 ], [ -76.966331, 38.850537 ], [ -76.966358, 38.850562 ], [ -76.966385, 38.850587 ], [ -76.966438, 38.850646 ], [ -76.966465, 38.850675 ], [ -76.966535, 38.850763 ], [ -76.966578, 38.850817 ], [ -76.966615, 38.850871 ], [ -76.966631, 38.850896 ], [ -76.966648, 38.850926 ], [ -76.966664, 38.850959 ], [ -76.966690, 38.851018 ], [ -76.966723, 38.851097 ], [ -76.966733, 38.851114 ], [ -76.966760, 38.851185 ], [ -76.966776, 38.851231 ], [ -76.966792, 38.851247 ], [ -76.966803, 38.851264 ], [ -76.966830, 38.851285 ], [ -76.966851, 38.851293 ], [ -76.966873, 38.851302 ], [ -76.966921, 38.851306 ], [ -76.967940, 38.851310 ], [ -76.968187, 38.851310 ], [ -76.968353, 38.851314 ], [ -76.968445, 38.851327 ], [ -76.968525, 38.851339 ], [ -76.968584, 38.851352 ], [ -76.968675, 38.851377 ], [ -76.968734, 38.851394 ], [ -76.968761, 38.851406 ], [ -76.968809, 38.851423 ], [ -76.968858, 38.851444 ], [ -76.968879, 38.851456 ], [ -76.968906, 38.851469 ], [ -76.968949, 38.851494 ], [ -76.968986, 38.851523 ], [ -76.969051, 38.851565 ], [ -76.969094, 38.851598 ], [ -76.969110, 38.851615 ], [ -76.969147, 38.851648 ], [ -76.969163, 38.851665 ], [ -76.969212, 38.851719 ], [ -76.969303, 38.851832 ], [ -76.969485, 38.852058 ], [ -76.969952, 38.852630 ], [ -76.970043, 38.852726 ], [ -76.970038, 38.852743 ], [ -76.970016, 38.852797 ], [ -76.970000, 38.852856 ], [ -76.969984, 38.852935 ], [ -76.969979, 38.852969 ], [ -76.969973, 38.853035 ], [ -76.969973, 38.853081 ], [ -76.969973, 38.853140 ], [ -76.969973, 38.853574 ], [ -76.969973, 38.854151 ], [ -76.969973, 38.854447 ], [ -76.969973, 38.854552 ], [ -76.969973, 38.854903 ], [ -76.969973, 38.855120 ], [ -76.969968, 38.855730 ], [ -76.969968, 38.855822 ], [ -76.970000, 38.855822 ], [ -76.970059, 38.855826 ], [ -76.970086, 38.855830 ], [ -76.970118, 38.855838 ], [ -76.970247, 38.855922 ], [ -76.970724, 38.856235 ], [ -76.970934, 38.856369 ], [ -76.971003, 38.856415 ], [ -76.971143, 38.856507 ], [ -76.971422, 38.856691 ], [ -76.971626, 38.856828 ], [ -76.971749, 38.856908 ], [ -76.972076, 38.856607 ], [ -76.972355, 38.856340 ], [ -76.972640, 38.856072 ], [ -76.972919, 38.855818 ], [ -76.973015, 38.855721 ], [ -76.973138, 38.855600 ], [ -76.973181, 38.855563 ], [ -76.973240, 38.855504 ], [ -76.973412, 38.855346 ], [ -76.973498, 38.855404 ], [ -76.974034, 38.855759 ], [ -76.974367, 38.855972 ], [ -76.974834, 38.856281 ], [ -76.975209, 38.856528 ], [ -76.975070, 38.856657 ], [ -76.974286, 38.857388 ], [ -76.974484, 38.857489 ], [ -76.967638, 38.857489 ], [ -76.967350, 38.857067 ], [ -76.967313, 38.857012 ], [ -76.967259, 38.856933 ], [ -76.966996, 38.856544 ], [ -76.966910, 38.856415 ], [ -76.966642, 38.856022 ], [ -76.966594, 38.855951 ], [ -76.966444, 38.855751 ], [ -76.966342, 38.855621 ], [ -76.966234, 38.855492 ], [ -76.966100, 38.855320 ], [ -76.965703, 38.854840 ], [ -76.965623, 38.854727 ], [ -76.965569, 38.854660 ], [ -76.965505, 38.854585 ], [ -76.965435, 38.854502 ], [ -76.965349, 38.854410 ], [ -76.965296, 38.854351 ], [ -76.965188, 38.854243 ], [ -76.965076, 38.854130 ], [ -76.964872, 38.853934 ], [ -76.964834, 38.853896 ], [ -76.964684, 38.853754 ], [ -76.964647, 38.853716 ], [ -76.964341, 38.853424 ], [ -76.963987, 38.853085 ], [ -76.963515, 38.852634 ], [ -76.963214, 38.852346 ], [ -76.963048, 38.852191 ], [ -76.963010, 38.852162 ], [ -76.962978, 38.852133 ], [ -76.962935, 38.852108 ], [ -76.962898, 38.852079 ], [ -76.962855, 38.852054 ], [ -76.962812, 38.852033 ], [ -76.962764, 38.852012 ], [ -76.962721, 38.851991 ], [ -76.962608, 38.851953 ], [ -76.962560, 38.851941 ], [ -76.962490, 38.851928 ], [ -76.962458, 38.851924 ], [ -76.962388, 38.851916 ], [ -76.962324, 38.851916 ], [ -76.962286, 38.851916 ], [ -76.961959, 38.851924 ], [ -76.962082, 38.851803 ], [ -76.962335, 38.851607 ], [ -76.962603, 38.851398 ], [ -76.962903, 38.851164 ], [ -76.963252, 38.850892 ], [ -76.963413, 38.850767 ], [ -76.963493, 38.850704 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007603", "GEOID": "11001007603", "NAME": "76.03", "NAMELSAD": "Census Tract 76.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1226616, "AWATER": 0, "INTPTLAT": "+38.8591090", "INTPTLON": "-076.9585469" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.954784, 38.857489 ], [ -76.954840, 38.857447 ], [ -76.955645, 38.856816 ], [ -76.955726, 38.856753 ], [ -76.955962, 38.856574 ], [ -76.956112, 38.856457 ], [ -76.956144, 38.856432 ], [ -76.956219, 38.856373 ], [ -76.956241, 38.856356 ], [ -76.956278, 38.856327 ], [ -76.956412, 38.856223 ], [ -76.957136, 38.855663 ], [ -76.957732, 38.855199 ], [ -76.958000, 38.854986 ], [ -76.958022, 38.854970 ], [ -76.958107, 38.854911 ], [ -76.958188, 38.854848 ], [ -76.958815, 38.854360 ], [ -76.960736, 38.852877 ], [ -76.961959, 38.851924 ], [ -76.962286, 38.851916 ], [ -76.962324, 38.851916 ], [ -76.962388, 38.851916 ], [ -76.962458, 38.851924 ], [ -76.962490, 38.851928 ], [ -76.962560, 38.851941 ], [ -76.962608, 38.851953 ], [ -76.962721, 38.851991 ], [ -76.962764, 38.852012 ], [ -76.962812, 38.852033 ], [ -76.962855, 38.852054 ], [ -76.962898, 38.852079 ], [ -76.962935, 38.852108 ], [ -76.962978, 38.852133 ], [ -76.963010, 38.852162 ], [ -76.963048, 38.852191 ], [ -76.963214, 38.852346 ], [ -76.963515, 38.852634 ], [ -76.963987, 38.853085 ], [ -76.964341, 38.853424 ], [ -76.964647, 38.853716 ], [ -76.964684, 38.853754 ], [ -76.964834, 38.853896 ], [ -76.964872, 38.853934 ], [ -76.965076, 38.854130 ], [ -76.965188, 38.854243 ], [ -76.965296, 38.854351 ], [ -76.965349, 38.854410 ], [ -76.965435, 38.854502 ], [ -76.965505, 38.854585 ], [ -76.965569, 38.854660 ], [ -76.965623, 38.854727 ], [ -76.965703, 38.854840 ], [ -76.966100, 38.855320 ], [ -76.966234, 38.855492 ], [ -76.966342, 38.855621 ], [ -76.966444, 38.855751 ], [ -76.966594, 38.855951 ], [ -76.966642, 38.856022 ], [ -76.966910, 38.856415 ], [ -76.966996, 38.856544 ], [ -76.967259, 38.856933 ], [ -76.967313, 38.857012 ], [ -76.967350, 38.857067 ], [ -76.967638, 38.857489 ], [ -76.954784, 38.857489 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007406", "GEOID": "11001007406", "NAME": "74.06", "NAMELSAD": "Census Tract 74.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 360152, "AWATER": 0, "INTPTLAT": "+38.8555543", "INTPTLON": "-076.9895582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.983336, 38.853365 ], [ -76.983819, 38.853173 ], [ -76.984318, 38.853023 ], [ -76.984860, 38.852897 ], [ -76.985326, 38.852847 ], [ -76.985911, 38.852806 ], [ -76.986372, 38.852781 ], [ -76.986936, 38.852768 ], [ -76.987483, 38.852789 ], [ -76.988062, 38.852822 ], [ -76.988695, 38.852885 ], [ -76.989248, 38.852960 ], [ -76.989672, 38.853048 ], [ -76.990036, 38.853127 ], [ -76.990771, 38.853311 ], [ -76.991415, 38.853507 ], [ -76.991828, 38.853679 ], [ -76.991984, 38.853754 ], [ -76.992069, 38.853812 ], [ -76.992348, 38.853988 ], [ -76.992606, 38.854167 ], [ -76.992847, 38.854397 ], [ -76.993046, 38.854606 ], [ -76.993046, 38.857489 ], [ -76.987305, 38.857489 ], [ -76.987236, 38.857384 ], [ -76.987220, 38.857359 ], [ -76.987193, 38.857301 ], [ -76.987172, 38.857230 ], [ -76.987161, 38.857192 ], [ -76.987150, 38.857104 ], [ -76.987123, 38.856954 ], [ -76.987113, 38.856862 ], [ -76.987075, 38.856649 ], [ -76.987016, 38.856331 ], [ -76.987011, 38.856302 ], [ -76.986989, 38.856189 ], [ -76.986973, 38.856081 ], [ -76.986957, 38.855997 ], [ -76.986952, 38.855955 ], [ -76.986941, 38.855914 ], [ -76.986936, 38.855884 ], [ -76.986925, 38.855855 ], [ -76.986898, 38.855797 ], [ -76.986877, 38.855772 ], [ -76.986743, 38.855592 ], [ -76.986694, 38.855517 ], [ -76.986662, 38.855458 ], [ -76.986603, 38.855341 ], [ -76.986480, 38.855087 ], [ -76.986464, 38.855053 ], [ -76.986453, 38.855036 ], [ -76.986431, 38.855007 ], [ -76.986405, 38.854974 ], [ -76.986367, 38.854928 ], [ -76.986099, 38.854656 ], [ -76.986072, 38.854627 ], [ -76.985997, 38.854569 ], [ -76.985954, 38.854535 ], [ -76.985916, 38.854510 ], [ -76.985836, 38.854456 ], [ -76.985761, 38.854410 ], [ -76.985348, 38.854167 ], [ -76.985316, 38.854147 ], [ -76.985278, 38.854130 ], [ -76.985246, 38.854117 ], [ -76.985208, 38.854101 ], [ -76.985171, 38.854088 ], [ -76.984779, 38.853979 ], [ -76.984377, 38.853871 ], [ -76.983867, 38.853729 ], [ -76.983696, 38.853683 ], [ -76.983637, 38.853658 ], [ -76.983604, 38.853645 ], [ -76.983578, 38.853629 ], [ -76.983551, 38.853612 ], [ -76.983524, 38.853595 ], [ -76.983497, 38.853578 ], [ -76.983476, 38.853562 ], [ -76.983438, 38.853524 ], [ -76.983406, 38.853487 ], [ -76.983374, 38.853449 ], [ -76.983358, 38.853407 ], [ -76.983336, 38.853365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007404", "GEOID": "11001007404", "NAME": "74.04", "NAMELSAD": "Census Tract 74.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 826388, "AWATER": 0, "INTPTLAT": "+38.8503364", "INTPTLON": "-076.9820932" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.972758, 38.851201 ], [ -76.972822, 38.851193 ], [ -76.972945, 38.851180 ], [ -76.973246, 38.851147 ], [ -76.973374, 38.851130 ], [ -76.973530, 38.851114 ], [ -76.973573, 38.851105 ], [ -76.973755, 38.851080 ], [ -76.973852, 38.851059 ], [ -76.973916, 38.851051 ], [ -76.974077, 38.851009 ], [ -76.974201, 38.850976 ], [ -76.974345, 38.850942 ], [ -76.975064, 38.850750 ], [ -76.975182, 38.850713 ], [ -76.975359, 38.850662 ], [ -76.975510, 38.850608 ], [ -76.975660, 38.850550 ], [ -76.975810, 38.850491 ], [ -76.975880, 38.850458 ], [ -76.975998, 38.850403 ], [ -76.976094, 38.850357 ], [ -76.976218, 38.850295 ], [ -76.976239, 38.850282 ], [ -76.976271, 38.850266 ], [ -76.976309, 38.850245 ], [ -76.976443, 38.850165 ], [ -76.976513, 38.850124 ], [ -76.976647, 38.850036 ], [ -76.976770, 38.849948 ], [ -76.976835, 38.849902 ], [ -76.976899, 38.849856 ], [ -76.976958, 38.849806 ], [ -76.977076, 38.849710 ], [ -76.977130, 38.849656 ], [ -76.977242, 38.849555 ], [ -76.977344, 38.849447 ], [ -76.977398, 38.849392 ], [ -76.977446, 38.849338 ], [ -76.977462, 38.849317 ], [ -76.977484, 38.849300 ], [ -76.977516, 38.849263 ], [ -76.977612, 38.849142 ], [ -76.977709, 38.849016 ], [ -76.977736, 38.848975 ], [ -76.977763, 38.848933 ], [ -76.977950, 38.848632 ], [ -76.978133, 38.848390 ], [ -76.978181, 38.848319 ], [ -76.978229, 38.848264 ], [ -76.978310, 38.848172 ], [ -76.978353, 38.848122 ], [ -76.978438, 38.848035 ], [ -76.978578, 38.847901 ], [ -76.978626, 38.847859 ], [ -76.978744, 38.847759 ], [ -76.978862, 38.847663 ], [ -76.979018, 38.847546 ], [ -76.979055, 38.847521 ], [ -76.979163, 38.847450 ], [ -76.979259, 38.847391 ], [ -76.979409, 38.847299 ], [ -76.979463, 38.847270 ], [ -76.979619, 38.847186 ], [ -76.979672, 38.847161 ], [ -76.979785, 38.847107 ], [ -76.979978, 38.847024 ], [ -76.980059, 38.846990 ], [ -76.980182, 38.846944 ], [ -76.980257, 38.846919 ], [ -76.980305, 38.846902 ], [ -76.980418, 38.846865 ], [ -76.980600, 38.846806 ], [ -76.980654, 38.846790 ], [ -76.980815, 38.846744 ], [ -76.980976, 38.846702 ], [ -76.981271, 38.846618 ], [ -76.981330, 38.846602 ], [ -76.981469, 38.846560 ], [ -76.981984, 38.846414 ], [ -76.982515, 38.846259 ], [ -76.982676, 38.846213 ], [ -76.982800, 38.846180 ], [ -76.982923, 38.846142 ], [ -76.983427, 38.846000 ], [ -76.983529, 38.845971 ], [ -76.984232, 38.845770 ], [ -76.984425, 38.845716 ], [ -76.984543, 38.845682 ], [ -76.984785, 38.845616 ], [ -76.984988, 38.845557 ], [ -76.985090, 38.845532 ], [ -76.987531, 38.844943 ], [ -76.988508, 38.844705 ], [ -76.989092, 38.844592 ], [ -76.989114, 38.844717 ], [ -76.988872, 38.844968 ], [ -76.988685, 38.845662 ], [ -76.988609, 38.845649 ], [ -76.988491, 38.846121 ], [ -76.988706, 38.846376 ], [ -76.988373, 38.846518 ], [ -76.988239, 38.846518 ], [ -76.988121, 38.846505 ], [ -76.988084, 38.846493 ], [ -76.988046, 38.846472 ], [ -76.987987, 38.846430 ], [ -76.987928, 38.846397 ], [ -76.987869, 38.846368 ], [ -76.987805, 38.846351 ], [ -76.987756, 38.846347 ], [ -76.987719, 38.846351 ], [ -76.987579, 38.846455 ], [ -76.987547, 38.846480 ], [ -76.987531, 38.846485 ], [ -76.987499, 38.846493 ], [ -76.987472, 38.846485 ], [ -76.987279, 38.846660 ], [ -76.985042, 38.848962 ], [ -76.986469, 38.849852 ], [ -76.990954, 38.852659 ], [ -76.992284, 38.853453 ], [ -76.992273, 38.853466 ], [ -76.992252, 38.853482 ], [ -76.992145, 38.853595 ], [ -76.991984, 38.853754 ], [ -76.991828, 38.853679 ], [ -76.991415, 38.853507 ], [ -76.990771, 38.853311 ], [ -76.990036, 38.853127 ], [ -76.989672, 38.853048 ], [ -76.989248, 38.852960 ], [ -76.988695, 38.852885 ], [ -76.988062, 38.852822 ], [ -76.987483, 38.852789 ], [ -76.986936, 38.852768 ], [ -76.986372, 38.852781 ], [ -76.985911, 38.852806 ], [ -76.985326, 38.852847 ], [ -76.984860, 38.852897 ], [ -76.984318, 38.853023 ], [ -76.983819, 38.853173 ], [ -76.983336, 38.853365 ], [ -76.982762, 38.853583 ], [ -76.982215, 38.853787 ], [ -76.981845, 38.853913 ], [ -76.981539, 38.854009 ], [ -76.981201, 38.854092 ], [ -76.980793, 38.854167 ], [ -76.980332, 38.854243 ], [ -76.979844, 38.854293 ], [ -76.979270, 38.854305 ], [ -76.978948, 38.854301 ], [ -76.978498, 38.854268 ], [ -76.978138, 38.854230 ], [ -76.977805, 38.854188 ], [ -76.977248, 38.854067 ], [ -76.976936, 38.853988 ], [ -76.976604, 38.853888 ], [ -76.976346, 38.853804 ], [ -76.976094, 38.853708 ], [ -76.975896, 38.853629 ], [ -76.975837, 38.853591 ], [ -76.975756, 38.853537 ], [ -76.975467, 38.853386 ], [ -76.975204, 38.853240 ], [ -76.974930, 38.853073 ], [ -76.974694, 38.852906 ], [ -76.974329, 38.852630 ], [ -76.973943, 38.852308 ], [ -76.973568, 38.851966 ], [ -76.973433, 38.851824 ], [ -76.972827, 38.851268 ], [ -76.972758, 38.851201 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007304", "GEOID": "11001007304", "NAME": "73.04", "NAMELSAD": "Census Tract 73.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1232841, "AWATER": 8983, "INTPTLAT": "+38.8417979", "INTPTLON": "-076.9855591" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.973063, 38.843238 ], [ -76.973122, 38.843196 ], [ -76.973181, 38.843151 ], [ -76.973278, 38.843071 ], [ -76.973439, 38.842950 ], [ -76.973594, 38.842825 ], [ -76.973975, 38.842528 ], [ -76.974340, 38.842244 ], [ -76.974657, 38.841997 ], [ -76.974753, 38.841926 ], [ -76.974930, 38.841784 ], [ -76.975375, 38.841437 ], [ -76.975569, 38.841287 ], [ -76.975654, 38.841220 ], [ -76.975729, 38.841162 ], [ -76.975746, 38.841149 ], [ -76.976148, 38.840836 ], [ -76.976577, 38.840497 ], [ -76.976947, 38.840213 ], [ -76.977060, 38.840125 ], [ -76.977167, 38.840042 ], [ -76.977242, 38.839979 ], [ -76.977328, 38.839917 ], [ -76.977392, 38.839862 ], [ -76.977505, 38.839779 ], [ -76.977983, 38.839407 ], [ -76.978170, 38.839261 ], [ -76.978508, 38.838997 ], [ -76.978996, 38.838613 ], [ -76.979592, 38.838149 ], [ -76.979699, 38.838065 ], [ -76.980069, 38.837777 ], [ -76.980246, 38.837639 ], [ -76.980944, 38.837092 ], [ -76.981164, 38.836921 ], [ -76.981571, 38.836603 ], [ -76.981657, 38.836536 ], [ -76.981818, 38.836411 ], [ -76.981947, 38.836311 ], [ -76.982140, 38.836160 ], [ -76.982355, 38.835993 ], [ -76.982403, 38.835955 ], [ -76.982655, 38.835759 ], [ -76.982709, 38.835717 ], [ -76.983041, 38.835454 ], [ -76.983384, 38.835186 ], [ -76.983674, 38.834957 ], [ -76.983873, 38.834802 ], [ -76.983980, 38.834714 ], [ -76.984093, 38.834627 ], [ -76.984275, 38.834484 ], [ -76.984586, 38.834246 ], [ -76.984887, 38.834008 ], [ -76.984919, 38.833983 ], [ -76.985021, 38.833904 ], [ -76.985090, 38.833987 ], [ -76.985117, 38.834012 ], [ -76.985418, 38.834355 ], [ -76.985761, 38.834739 ], [ -76.986094, 38.835111 ], [ -76.986319, 38.835370 ], [ -76.986517, 38.835592 ], [ -76.986571, 38.835646 ], [ -76.986668, 38.835759 ], [ -76.986818, 38.835926 ], [ -76.986914, 38.836035 ], [ -76.987182, 38.836340 ], [ -76.987290, 38.836465 ], [ -76.987461, 38.836666 ], [ -76.987526, 38.836737 ], [ -76.987574, 38.836795 ], [ -76.987649, 38.836879 ], [ -76.987767, 38.837013 ], [ -76.987805, 38.837058 ], [ -76.987875, 38.837150 ], [ -76.987907, 38.837196 ], [ -76.987976, 38.837292 ], [ -76.988094, 38.837468 ], [ -76.988132, 38.837539 ], [ -76.988191, 38.837652 ], [ -76.988245, 38.837760 ], [ -76.988282, 38.837836 ], [ -76.988293, 38.837857 ], [ -76.988304, 38.837865 ], [ -76.988711, 38.838538 ], [ -76.988722, 38.838584 ], [ -76.988727, 38.838592 ], [ -76.989629, 38.838421 ], [ -76.989956, 38.838379 ], [ -76.991533, 38.838095 ], [ -76.992005, 38.837982 ], [ -76.992483, 38.837798 ], [ -76.992799, 38.837610 ], [ -76.993046, 38.837565 ], [ -76.993046, 38.843889 ], [ -76.993014, 38.843894 ], [ -76.992424, 38.843994 ], [ -76.992171, 38.844040 ], [ -76.991656, 38.844128 ], [ -76.990991, 38.844245 ], [ -76.990589, 38.844312 ], [ -76.989226, 38.844567 ], [ -76.989092, 38.844592 ], [ -76.988508, 38.844705 ], [ -76.987531, 38.844943 ], [ -76.985090, 38.845532 ], [ -76.984988, 38.845557 ], [ -76.984785, 38.845616 ], [ -76.984543, 38.845682 ], [ -76.984425, 38.845716 ], [ -76.984232, 38.845770 ], [ -76.983529, 38.845971 ], [ -76.983427, 38.846000 ], [ -76.982923, 38.846142 ], [ -76.982800, 38.846180 ], [ -76.982676, 38.846213 ], [ -76.982515, 38.846259 ], [ -76.981984, 38.846414 ], [ -76.981469, 38.846560 ], [ -76.981330, 38.846602 ], [ -76.980960, 38.845996 ], [ -76.980654, 38.845407 ], [ -76.980504, 38.845114 ], [ -76.979855, 38.843903 ], [ -76.979377, 38.843008 ], [ -76.979211, 38.842729 ], [ -76.978980, 38.842311 ], [ -76.978905, 38.842190 ], [ -76.978873, 38.842144 ], [ -76.978825, 38.842073 ], [ -76.978691, 38.842202 ], [ -76.978653, 38.842231 ], [ -76.978594, 38.842286 ], [ -76.978557, 38.842294 ], [ -76.978519, 38.842294 ], [ -76.978449, 38.842286 ], [ -76.978428, 38.842265 ], [ -76.978433, 38.842235 ], [ -76.978444, 38.842202 ], [ -76.978433, 38.842173 ], [ -76.978406, 38.842148 ], [ -76.978358, 38.842110 ], [ -76.978320, 38.842064 ], [ -76.978261, 38.841993 ], [ -76.978229, 38.841964 ], [ -76.978165, 38.841918 ], [ -76.978084, 38.841868 ], [ -76.977993, 38.841822 ], [ -76.977945, 38.841801 ], [ -76.977891, 38.841784 ], [ -76.977838, 38.841780 ], [ -76.977779, 38.841780 ], [ -76.977720, 38.841776 ], [ -76.977666, 38.841780 ], [ -76.977612, 38.841784 ], [ -76.977559, 38.841780 ], [ -76.977510, 38.841780 ], [ -76.977457, 38.841788 ], [ -76.977414, 38.841805 ], [ -76.977366, 38.841826 ], [ -76.977328, 38.841847 ], [ -76.977285, 38.841859 ], [ -76.977253, 38.841872 ], [ -76.977199, 38.841901 ], [ -76.977167, 38.841926 ], [ -76.977135, 38.841951 ], [ -76.977108, 38.841981 ], [ -76.977097, 38.842010 ], [ -76.977097, 38.842052 ], [ -76.977092, 38.842089 ], [ -76.977087, 38.842127 ], [ -76.977076, 38.842156 ], [ -76.977033, 38.842194 ], [ -76.977001, 38.842223 ], [ -76.976969, 38.842256 ], [ -76.976931, 38.842281 ], [ -76.976904, 38.842307 ], [ -76.976872, 38.842327 ], [ -76.976829, 38.842327 ], [ -76.976797, 38.842340 ], [ -76.976770, 38.842369 ], [ -76.976743, 38.842394 ], [ -76.976695, 38.842419 ], [ -76.976625, 38.842444 ], [ -76.976577, 38.842457 ], [ -76.976529, 38.842465 ], [ -76.976421, 38.842482 ], [ -76.976373, 38.842490 ], [ -76.976287, 38.842490 ], [ -76.976223, 38.842490 ], [ -76.976169, 38.842490 ], [ -76.975885, 38.842469 ], [ -76.975815, 38.842469 ], [ -76.975735, 38.842461 ], [ -76.975692, 38.842457 ], [ -76.975601, 38.842444 ], [ -76.975547, 38.842440 ], [ -76.975499, 38.842436 ], [ -76.975445, 38.842432 ], [ -76.975300, 38.842432 ], [ -76.975268, 38.842432 ], [ -76.975214, 38.842432 ], [ -76.975161, 38.842423 ], [ -76.975102, 38.842419 ], [ -76.975043, 38.842419 ], [ -76.974995, 38.842423 ], [ -76.974946, 38.842432 ], [ -76.974903, 38.842444 ], [ -76.974860, 38.842474 ], [ -76.974828, 38.842503 ], [ -76.974796, 38.842536 ], [ -76.974769, 38.842570 ], [ -76.974748, 38.842628 ], [ -76.974737, 38.842653 ], [ -76.974699, 38.842712 ], [ -76.974662, 38.842745 ], [ -76.974614, 38.842770 ], [ -76.974501, 38.842858 ], [ -76.974447, 38.842879 ], [ -76.974394, 38.842891 ], [ -76.974345, 38.842917 ], [ -76.974286, 38.842937 ], [ -76.974227, 38.842946 ], [ -76.974179, 38.842971 ], [ -76.974142, 38.842983 ], [ -76.974104, 38.842992 ], [ -76.974072, 38.843004 ], [ -76.974040, 38.843021 ], [ -76.974007, 38.843034 ], [ -76.973927, 38.843050 ], [ -76.973857, 38.843071 ], [ -76.973825, 38.843084 ], [ -76.973686, 38.843121 ], [ -76.973600, 38.843138 ], [ -76.973525, 38.843151 ], [ -76.973455, 38.843167 ], [ -76.973423, 38.843176 ], [ -76.973326, 38.843196 ], [ -76.973262, 38.843205 ], [ -76.973063, 38.843238 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007403", "GEOID": "11001007403", "NAME": "74.03", "NAMELSAD": "Census Tract 74.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 330904, "AWATER": 0, "INTPTLAT": "+38.8484714", "INTPTLON": "-076.9743805" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.981330, 38.846602 ], [ -76.981271, 38.846618 ], [ -76.980976, 38.846702 ], [ -76.980815, 38.846744 ], [ -76.980654, 38.846790 ], [ -76.980600, 38.846806 ], [ -76.980418, 38.846865 ], [ -76.980305, 38.846902 ], [ -76.980257, 38.846919 ], [ -76.980182, 38.846944 ], [ -76.980059, 38.846990 ], [ -76.979978, 38.847024 ], [ -76.979785, 38.847107 ], [ -76.979672, 38.847161 ], [ -76.979619, 38.847186 ], [ -76.979463, 38.847270 ], [ -76.979409, 38.847299 ], [ -76.979259, 38.847391 ], [ -76.979163, 38.847450 ], [ -76.979055, 38.847521 ], [ -76.979018, 38.847546 ], [ -76.978862, 38.847663 ], [ -76.978744, 38.847759 ], [ -76.978626, 38.847859 ], [ -76.978578, 38.847901 ], [ -76.978438, 38.848035 ], [ -76.978353, 38.848122 ], [ -76.978310, 38.848172 ], [ -76.978229, 38.848264 ], [ -76.978181, 38.848319 ], [ -76.978133, 38.848390 ], [ -76.977950, 38.848632 ], [ -76.977763, 38.848933 ], [ -76.977736, 38.848975 ], [ -76.977709, 38.849016 ], [ -76.977612, 38.849142 ], [ -76.977516, 38.849263 ], [ -76.977484, 38.849300 ], [ -76.977462, 38.849317 ], [ -76.977446, 38.849338 ], [ -76.977398, 38.849392 ], [ -76.977344, 38.849447 ], [ -76.977242, 38.849555 ], [ -76.977130, 38.849656 ], [ -76.977076, 38.849710 ], [ -76.976958, 38.849806 ], [ -76.976899, 38.849856 ], [ -76.976835, 38.849902 ], [ -76.976770, 38.849948 ], [ -76.976647, 38.850036 ], [ -76.976513, 38.850124 ], [ -76.976443, 38.850165 ], [ -76.976309, 38.850245 ], [ -76.976271, 38.850266 ], [ -76.976239, 38.850282 ], [ -76.976218, 38.850295 ], [ -76.976094, 38.850357 ], [ -76.975998, 38.850403 ], [ -76.975880, 38.850458 ], [ -76.975810, 38.850491 ], [ -76.975660, 38.850550 ], [ -76.975510, 38.850608 ], [ -76.975359, 38.850662 ], [ -76.975182, 38.850713 ], [ -76.975064, 38.850750 ], [ -76.974345, 38.850942 ], [ -76.974201, 38.850976 ], [ -76.974077, 38.851009 ], [ -76.973916, 38.851051 ], [ -76.973852, 38.851059 ], [ -76.973755, 38.851080 ], [ -76.973573, 38.851105 ], [ -76.973530, 38.851114 ], [ -76.973374, 38.851130 ], [ -76.973246, 38.851147 ], [ -76.972945, 38.851180 ], [ -76.972822, 38.851193 ], [ -76.972758, 38.851201 ], [ -76.972323, 38.850850 ], [ -76.972119, 38.850708 ], [ -76.971593, 38.850332 ], [ -76.971261, 38.850161 ], [ -76.970859, 38.849965 ], [ -76.970242, 38.849710 ], [ -76.969791, 38.849551 ], [ -76.969287, 38.849392 ], [ -76.969061, 38.849338 ], [ -76.968788, 38.849267 ], [ -76.967801, 38.849117 ], [ -76.967114, 38.849067 ], [ -76.966690, 38.849062 ], [ -76.966605, 38.849058 ], [ -76.965896, 38.849092 ], [ -76.965478, 38.849142 ], [ -76.965693, 38.848987 ], [ -76.966079, 38.848686 ], [ -76.966127, 38.848649 ], [ -76.966411, 38.848423 ], [ -76.966535, 38.848327 ], [ -76.966626, 38.848256 ], [ -76.967050, 38.848381 ], [ -76.967157, 38.848360 ], [ -76.967189, 38.848356 ], [ -76.967238, 38.848352 ], [ -76.967264, 38.848352 ], [ -76.967350, 38.848352 ], [ -76.967404, 38.848356 ], [ -76.967431, 38.848360 ], [ -76.967597, 38.848369 ], [ -76.967624, 38.848369 ], [ -76.967677, 38.848373 ], [ -76.967779, 38.848377 ], [ -76.967806, 38.848377 ], [ -76.967833, 38.848381 ], [ -76.968091, 38.848381 ], [ -76.968230, 38.848377 ], [ -76.968375, 38.848369 ], [ -76.968611, 38.848360 ], [ -76.968638, 38.848356 ], [ -76.968713, 38.848352 ], [ -76.968793, 38.848348 ], [ -76.968911, 38.848331 ], [ -76.968943, 38.848331 ], [ -76.969083, 38.848315 ], [ -76.969115, 38.848310 ], [ -76.969153, 38.848306 ], [ -76.969255, 38.848289 ], [ -76.969426, 38.848264 ], [ -76.969657, 38.848227 ], [ -76.969893, 38.848189 ], [ -76.970081, 38.848160 ], [ -76.970193, 38.848139 ], [ -76.970403, 38.848101 ], [ -76.970623, 38.848060 ], [ -76.970880, 38.848018 ], [ -76.971020, 38.847997 ], [ -76.971239, 38.847964 ], [ -76.971357, 38.847939 ], [ -76.971438, 38.847918 ], [ -76.971567, 38.847884 ], [ -76.971636, 38.847863 ], [ -76.971749, 38.847834 ], [ -76.971792, 38.847822 ], [ -76.971824, 38.847809 ], [ -76.971921, 38.847776 ], [ -76.972023, 38.847738 ], [ -76.972125, 38.847700 ], [ -76.972200, 38.847671 ], [ -76.972248, 38.847650 ], [ -76.972345, 38.847604 ], [ -76.972559, 38.847512 ], [ -76.972774, 38.847425 ], [ -76.972849, 38.847391 ], [ -76.972988, 38.847329 ], [ -76.973165, 38.847258 ], [ -76.973230, 38.847232 ], [ -76.973460, 38.847132 ], [ -76.973755, 38.847007 ], [ -76.973863, 38.846969 ], [ -76.974034, 38.846907 ], [ -76.974152, 38.846869 ], [ -76.974308, 38.846823 ], [ -76.974431, 38.846794 ], [ -76.974598, 38.846756 ], [ -76.974759, 38.846731 ], [ -76.974839, 38.846723 ], [ -76.974860, 38.846719 ], [ -76.975027, 38.846702 ], [ -76.975054, 38.846698 ], [ -76.975080, 38.846693 ], [ -76.975107, 38.846693 ], [ -76.975134, 38.846689 ], [ -76.975343, 38.846673 ], [ -76.975729, 38.846639 ], [ -76.975794, 38.846635 ], [ -76.975842, 38.846631 ], [ -76.976234, 38.846593 ], [ -76.976464, 38.846568 ], [ -76.976636, 38.846543 ], [ -76.976899, 38.846497 ], [ -76.976936, 38.846493 ], [ -76.976990, 38.846480 ], [ -76.977049, 38.846472 ], [ -76.977081, 38.846468 ], [ -76.977317, 38.846418 ], [ -76.977462, 38.846384 ], [ -76.977655, 38.846338 ], [ -76.977854, 38.846284 ], [ -76.977999, 38.846242 ], [ -76.978047, 38.846230 ], [ -76.978154, 38.846196 ], [ -76.978460, 38.846104 ], [ -76.979527, 38.845766 ], [ -76.979640, 38.845733 ], [ -76.979758, 38.845695 ], [ -76.980590, 38.845432 ], [ -76.980654, 38.845407 ], [ -76.980960, 38.845996 ], [ -76.981330, 38.846602 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007408", "GEOID": "11001007408", "NAME": "74.08", "NAMELSAD": "Census Tract 74.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 372349, "AWATER": 0, "INTPTLAT": "+38.8525662", "INTPTLON": "-076.9706266" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963493, 38.850704 ], [ -76.963579, 38.850637 ], [ -76.963879, 38.850399 ], [ -76.963987, 38.850320 ], [ -76.964679, 38.849781 ], [ -76.964824, 38.849668 ], [ -76.965097, 38.849447 ], [ -76.965317, 38.849280 ], [ -76.965414, 38.849204 ], [ -76.965435, 38.849188 ], [ -76.965478, 38.849142 ], [ -76.965896, 38.849092 ], [ -76.966605, 38.849058 ], [ -76.966690, 38.849062 ], [ -76.967114, 38.849067 ], [ -76.967801, 38.849117 ], [ -76.968788, 38.849267 ], [ -76.969061, 38.849338 ], [ -76.969287, 38.849392 ], [ -76.969791, 38.849551 ], [ -76.970242, 38.849710 ], [ -76.970859, 38.849965 ], [ -76.971261, 38.850161 ], [ -76.971593, 38.850332 ], [ -76.972119, 38.850708 ], [ -76.972323, 38.850850 ], [ -76.972758, 38.851201 ], [ -76.972827, 38.851268 ], [ -76.973433, 38.851824 ], [ -76.973568, 38.851966 ], [ -76.973943, 38.852308 ], [ -76.974329, 38.852630 ], [ -76.974694, 38.852906 ], [ -76.974930, 38.853073 ], [ -76.975204, 38.853240 ], [ -76.975467, 38.853386 ], [ -76.975756, 38.853537 ], [ -76.975837, 38.853591 ], [ -76.975896, 38.853629 ], [ -76.975241, 38.854343 ], [ -76.974635, 38.854999 ], [ -76.975896, 38.855889 ], [ -76.975660, 38.856114 ], [ -76.975445, 38.856315 ], [ -76.975209, 38.856528 ], [ -76.974834, 38.856281 ], [ -76.974367, 38.855972 ], [ -76.974034, 38.855759 ], [ -76.973498, 38.855404 ], [ -76.973412, 38.855346 ], [ -76.973240, 38.855504 ], [ -76.973181, 38.855563 ], [ -76.973138, 38.855600 ], [ -76.973015, 38.855721 ], [ -76.972919, 38.855818 ], [ -76.972640, 38.856072 ], [ -76.972355, 38.856340 ], [ -76.972076, 38.856607 ], [ -76.971749, 38.856908 ], [ -76.971626, 38.856828 ], [ -76.971422, 38.856691 ], [ -76.971143, 38.856507 ], [ -76.971003, 38.856415 ], [ -76.970934, 38.856369 ], [ -76.970724, 38.856235 ], [ -76.970247, 38.855922 ], [ -76.970118, 38.855838 ], [ -76.970086, 38.855830 ], [ -76.970059, 38.855826 ], [ -76.970000, 38.855822 ], [ -76.969968, 38.855822 ], [ -76.969968, 38.855730 ], [ -76.969973, 38.855120 ], [ -76.969973, 38.854903 ], [ -76.969973, 38.854552 ], [ -76.969973, 38.854447 ], [ -76.969973, 38.854151 ], [ -76.969973, 38.853574 ], [ -76.969973, 38.853140 ], [ -76.969973, 38.853081 ], [ -76.969973, 38.853035 ], [ -76.969979, 38.852969 ], [ -76.969984, 38.852935 ], [ -76.970000, 38.852856 ], [ -76.970016, 38.852797 ], [ -76.970038, 38.852743 ], [ -76.970043, 38.852726 ], [ -76.969952, 38.852630 ], [ -76.969485, 38.852058 ], [ -76.969303, 38.851832 ], [ -76.969212, 38.851719 ], [ -76.969163, 38.851665 ], [ -76.969147, 38.851648 ], [ -76.969110, 38.851615 ], [ -76.969094, 38.851598 ], [ -76.969051, 38.851565 ], [ -76.968986, 38.851523 ], [ -76.968949, 38.851494 ], [ -76.968906, 38.851469 ], [ -76.968879, 38.851456 ], [ -76.968858, 38.851444 ], [ -76.968809, 38.851423 ], [ -76.968761, 38.851406 ], [ -76.968734, 38.851394 ], [ -76.968675, 38.851377 ], [ -76.968584, 38.851352 ], [ -76.968525, 38.851339 ], [ -76.968445, 38.851327 ], [ -76.968353, 38.851314 ], [ -76.968187, 38.851310 ], [ -76.967940, 38.851310 ], [ -76.966921, 38.851306 ], [ -76.966873, 38.851302 ], [ -76.966851, 38.851293 ], [ -76.966830, 38.851285 ], [ -76.966803, 38.851264 ], [ -76.966792, 38.851247 ], [ -76.966776, 38.851231 ], [ -76.966760, 38.851185 ], [ -76.966733, 38.851114 ], [ -76.966723, 38.851097 ], [ -76.966690, 38.851018 ], [ -76.966664, 38.850959 ], [ -76.966648, 38.850926 ], [ -76.966631, 38.850896 ], [ -76.966615, 38.850871 ], [ -76.966578, 38.850817 ], [ -76.966535, 38.850763 ], [ -76.966465, 38.850675 ], [ -76.966438, 38.850646 ], [ -76.966385, 38.850587 ], [ -76.966358, 38.850562 ], [ -76.966331, 38.850537 ], [ -76.966304, 38.850516 ], [ -76.966251, 38.850470 ], [ -76.966224, 38.850449 ], [ -76.966138, 38.850399 ], [ -76.966047, 38.850366 ], [ -76.966009, 38.850353 ], [ -76.965972, 38.850349 ], [ -76.965929, 38.850341 ], [ -76.965896, 38.850337 ], [ -76.965816, 38.850337 ], [ -76.965741, 38.850345 ], [ -76.965703, 38.850349 ], [ -76.965671, 38.850362 ], [ -76.965634, 38.850370 ], [ -76.965596, 38.850383 ], [ -76.965564, 38.850399 ], [ -76.965537, 38.850416 ], [ -76.965505, 38.850437 ], [ -76.965473, 38.850458 ], [ -76.965446, 38.850483 ], [ -76.965419, 38.850512 ], [ -76.965371, 38.850562 ], [ -76.965355, 38.850583 ], [ -76.965339, 38.850600 ], [ -76.965317, 38.850646 ], [ -76.965306, 38.850683 ], [ -76.965301, 38.850721 ], [ -76.965296, 38.850759 ], [ -76.965296, 38.850800 ], [ -76.965301, 38.850838 ], [ -76.965306, 38.850876 ], [ -76.965317, 38.850913 ], [ -76.965333, 38.850951 ], [ -76.965355, 38.850984 ], [ -76.965371, 38.851005 ], [ -76.965424, 38.851068 ], [ -76.965462, 38.851105 ], [ -76.965510, 38.851151 ], [ -76.965553, 38.851193 ], [ -76.965580, 38.851235 ], [ -76.965612, 38.851277 ], [ -76.965623, 38.851297 ], [ -76.965650, 38.851360 ], [ -76.965666, 38.851406 ], [ -76.965677, 38.851469 ], [ -76.965682, 38.851511 ], [ -76.965687, 38.851548 ], [ -76.965687, 38.851590 ], [ -76.965687, 38.851715 ], [ -76.965687, 38.851740 ], [ -76.965687, 38.851770 ], [ -76.965687, 38.851799 ], [ -76.965687, 38.851828 ], [ -76.965682, 38.851853 ], [ -76.965682, 38.852008 ], [ -76.965687, 38.852074 ], [ -76.965687, 38.852405 ], [ -76.965564, 38.852329 ], [ -76.964958, 38.851857 ], [ -76.964175, 38.851243 ], [ -76.963601, 38.850788 ], [ -76.963493, 38.850704 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007409", "GEOID": "11001007409", "NAME": "74.09", "NAMELSAD": "Census Tract 74.09", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 404873, "AWATER": 5767, "INTPTLAT": "+38.8445818", "INTPTLON": "-076.9751650" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.978825, 38.842073 ], [ -76.978873, 38.842144 ], [ -76.978905, 38.842190 ], [ -76.978980, 38.842311 ], [ -76.979211, 38.842729 ], [ -76.979377, 38.843008 ], [ -76.979855, 38.843903 ], [ -76.980504, 38.845114 ], [ -76.980654, 38.845407 ], [ -76.980590, 38.845432 ], [ -76.979758, 38.845695 ], [ -76.979640, 38.845733 ], [ -76.979527, 38.845766 ], [ -76.978460, 38.846104 ], [ -76.978154, 38.846196 ], [ -76.978047, 38.846230 ], [ -76.977999, 38.846242 ], [ -76.977854, 38.846284 ], [ -76.977655, 38.846338 ], [ -76.977462, 38.846384 ], [ -76.977317, 38.846418 ], [ -76.977081, 38.846468 ], [ -76.977049, 38.846472 ], [ -76.976990, 38.846480 ], [ -76.976936, 38.846493 ], [ -76.976899, 38.846497 ], [ -76.976636, 38.846543 ], [ -76.976464, 38.846568 ], [ -76.976234, 38.846593 ], [ -76.975842, 38.846631 ], [ -76.975794, 38.846635 ], [ -76.975729, 38.846639 ], [ -76.975343, 38.846673 ], [ -76.975134, 38.846689 ], [ -76.975107, 38.846693 ], [ -76.975080, 38.846693 ], [ -76.975054, 38.846698 ], [ -76.975027, 38.846702 ], [ -76.974860, 38.846719 ], [ -76.974839, 38.846723 ], [ -76.974759, 38.846731 ], [ -76.974598, 38.846756 ], [ -76.974431, 38.846794 ], [ -76.974308, 38.846823 ], [ -76.974152, 38.846869 ], [ -76.974034, 38.846907 ], [ -76.973863, 38.846969 ], [ -76.973755, 38.847007 ], [ -76.973460, 38.847132 ], [ -76.973230, 38.847232 ], [ -76.973165, 38.847258 ], [ -76.972988, 38.847329 ], [ -76.972849, 38.847391 ], [ -76.972774, 38.847425 ], [ -76.972559, 38.847512 ], [ -76.972345, 38.847604 ], [ -76.972248, 38.847650 ], [ -76.972200, 38.847671 ], [ -76.972125, 38.847700 ], [ -76.972023, 38.847738 ], [ -76.971921, 38.847776 ], [ -76.971824, 38.847809 ], [ -76.971792, 38.847822 ], [ -76.971749, 38.847834 ], [ -76.971636, 38.847863 ], [ -76.971567, 38.847884 ], [ -76.971438, 38.847918 ], [ -76.971357, 38.847939 ], [ -76.971239, 38.847964 ], [ -76.971020, 38.847997 ], [ -76.970880, 38.848018 ], [ -76.970623, 38.848060 ], [ -76.970403, 38.848101 ], [ -76.970193, 38.848139 ], [ -76.970081, 38.848160 ], [ -76.969893, 38.848189 ], [ -76.969657, 38.848227 ], [ -76.969426, 38.848264 ], [ -76.969255, 38.848289 ], [ -76.969153, 38.848306 ], [ -76.969115, 38.848310 ], [ -76.969083, 38.848315 ], [ -76.968943, 38.848331 ], [ -76.968911, 38.848331 ], [ -76.968793, 38.848348 ], [ -76.968713, 38.848352 ], [ -76.968638, 38.848356 ], [ -76.968611, 38.848360 ], [ -76.968375, 38.848369 ], [ -76.968230, 38.848377 ], [ -76.968091, 38.848381 ], [ -76.967833, 38.848381 ], [ -76.967806, 38.848377 ], [ -76.967779, 38.848377 ], [ -76.967677, 38.848373 ], [ -76.967624, 38.848369 ], [ -76.967597, 38.848369 ], [ -76.967431, 38.848360 ], [ -76.967404, 38.848356 ], [ -76.967350, 38.848352 ], [ -76.967264, 38.848352 ], [ -76.967238, 38.848352 ], [ -76.967189, 38.848356 ], [ -76.967157, 38.848360 ], [ -76.967050, 38.848381 ], [ -76.966626, 38.848256 ], [ -76.966733, 38.848172 ], [ -76.966980, 38.847984 ], [ -76.967366, 38.847684 ], [ -76.967753, 38.847383 ], [ -76.968209, 38.847024 ], [ -76.968241, 38.847003 ], [ -76.968343, 38.846919 ], [ -76.968702, 38.846643 ], [ -76.968766, 38.846589 ], [ -76.968815, 38.846556 ], [ -76.969158, 38.846284 ], [ -76.969528, 38.845992 ], [ -76.969544, 38.845983 ], [ -76.969625, 38.845921 ], [ -76.969646, 38.845904 ], [ -76.969721, 38.845845 ], [ -76.969909, 38.845699 ], [ -76.970145, 38.845515 ], [ -76.970242, 38.845440 ], [ -76.970306, 38.845390 ], [ -76.970435, 38.845294 ], [ -76.970462, 38.845273 ], [ -76.970703, 38.845077 ], [ -76.970767, 38.845031 ], [ -76.970875, 38.844947 ], [ -76.970955, 38.844884 ], [ -76.971057, 38.844805 ], [ -76.971079, 38.844784 ], [ -76.971411, 38.844529 ], [ -76.971669, 38.844329 ], [ -76.971771, 38.844249 ], [ -76.971840, 38.844195 ], [ -76.971926, 38.844128 ], [ -76.972033, 38.844045 ], [ -76.972291, 38.843844 ], [ -76.972339, 38.843806 ], [ -76.972446, 38.843719 ], [ -76.972564, 38.843631 ], [ -76.972618, 38.843589 ], [ -76.972929, 38.843343 ], [ -76.972972, 38.843313 ], [ -76.973063, 38.843238 ], [ -76.973262, 38.843205 ], [ -76.973326, 38.843196 ], [ -76.973423, 38.843176 ], [ -76.973455, 38.843167 ], [ -76.973525, 38.843151 ], [ -76.973600, 38.843138 ], [ -76.973686, 38.843121 ], [ -76.973825, 38.843084 ], [ -76.973857, 38.843071 ], [ -76.973927, 38.843050 ], [ -76.974007, 38.843034 ], [ -76.974040, 38.843021 ], [ -76.974072, 38.843004 ], [ -76.974104, 38.842992 ], [ -76.974142, 38.842983 ], [ -76.974179, 38.842971 ], [ -76.974227, 38.842946 ], [ -76.974286, 38.842937 ], [ -76.974345, 38.842917 ], [ -76.974394, 38.842891 ], [ -76.974447, 38.842879 ], [ -76.974501, 38.842858 ], [ -76.974614, 38.842770 ], [ -76.974662, 38.842745 ], [ -76.974699, 38.842712 ], [ -76.974737, 38.842653 ], [ -76.974748, 38.842628 ], [ -76.974769, 38.842570 ], [ -76.974796, 38.842536 ], [ -76.974828, 38.842503 ], [ -76.974860, 38.842474 ], [ -76.974903, 38.842444 ], [ -76.974946, 38.842432 ], [ -76.974995, 38.842423 ], [ -76.975043, 38.842419 ], [ -76.975102, 38.842419 ], [ -76.975161, 38.842423 ], [ -76.975214, 38.842432 ], [ -76.975268, 38.842432 ], [ -76.975300, 38.842432 ], [ -76.975445, 38.842432 ], [ -76.975499, 38.842436 ], [ -76.975547, 38.842440 ], [ -76.975601, 38.842444 ], [ -76.975692, 38.842457 ], [ -76.975735, 38.842461 ], [ -76.975815, 38.842469 ], [ -76.975885, 38.842469 ], [ -76.976169, 38.842490 ], [ -76.976223, 38.842490 ], [ -76.976287, 38.842490 ], [ -76.976373, 38.842490 ], [ -76.976421, 38.842482 ], [ -76.976529, 38.842465 ], [ -76.976577, 38.842457 ], [ -76.976625, 38.842444 ], [ -76.976695, 38.842419 ], [ -76.976743, 38.842394 ], [ -76.976770, 38.842369 ], [ -76.976797, 38.842340 ], [ -76.976829, 38.842327 ], [ -76.976872, 38.842327 ], [ -76.976904, 38.842307 ], [ -76.976931, 38.842281 ], [ -76.976969, 38.842256 ], [ -76.977001, 38.842223 ], [ -76.977033, 38.842194 ], [ -76.977076, 38.842156 ], [ -76.977087, 38.842127 ], [ -76.977092, 38.842089 ], [ -76.977097, 38.842052 ], [ -76.977097, 38.842010 ], [ -76.977108, 38.841981 ], [ -76.977135, 38.841951 ], [ -76.977167, 38.841926 ], [ -76.977199, 38.841901 ], [ -76.977253, 38.841872 ], [ -76.977285, 38.841859 ], [ -76.977328, 38.841847 ], [ -76.977366, 38.841826 ], [ -76.977414, 38.841805 ], [ -76.977457, 38.841788 ], [ -76.977510, 38.841780 ], [ -76.977559, 38.841780 ], [ -76.977612, 38.841784 ], [ -76.977666, 38.841780 ], [ -76.977720, 38.841776 ], [ -76.977779, 38.841780 ], [ -76.977838, 38.841780 ], [ -76.977891, 38.841784 ], [ -76.977945, 38.841801 ], [ -76.977993, 38.841822 ], [ -76.978084, 38.841868 ], [ -76.978165, 38.841918 ], [ -76.978229, 38.841964 ], [ -76.978261, 38.841993 ], [ -76.978320, 38.842064 ], [ -76.978358, 38.842110 ], [ -76.978406, 38.842148 ], [ -76.978433, 38.842173 ], [ -76.978444, 38.842202 ], [ -76.978433, 38.842235 ], [ -76.978428, 38.842265 ], [ -76.978449, 38.842286 ], [ -76.978519, 38.842294 ], [ -76.978557, 38.842294 ], [ -76.978594, 38.842286 ], [ -76.978653, 38.842231 ], [ -76.978691, 38.842202 ], [ -76.978825, 38.842073 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009700", "GEOID": "11001009700", "NAME": "97", "NAMELSAD": "Census Tract 97", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 403051, "AWATER": 3427, "INTPTLAT": "+38.8354183", "INTPTLON": "-076.9870248" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.988727, 38.838592 ], [ -76.988722, 38.838584 ], [ -76.988711, 38.838538 ], [ -76.988304, 38.837865 ], [ -76.988293, 38.837857 ], [ -76.988282, 38.837836 ], [ -76.988245, 38.837760 ], [ -76.988191, 38.837652 ], [ -76.988132, 38.837539 ], [ -76.988094, 38.837468 ], [ -76.987976, 38.837292 ], [ -76.987907, 38.837196 ], [ -76.987875, 38.837150 ], [ -76.987805, 38.837058 ], [ -76.987767, 38.837013 ], [ -76.987649, 38.836879 ], [ -76.987574, 38.836795 ], [ -76.987526, 38.836737 ], [ -76.987461, 38.836666 ], [ -76.987290, 38.836465 ], [ -76.987182, 38.836340 ], [ -76.986914, 38.836035 ], [ -76.986818, 38.835926 ], [ -76.986668, 38.835759 ], [ -76.986571, 38.835646 ], [ -76.986517, 38.835592 ], [ -76.986319, 38.835370 ], [ -76.986094, 38.835111 ], [ -76.985761, 38.834739 ], [ -76.985418, 38.834355 ], [ -76.985117, 38.834012 ], [ -76.985090, 38.833987 ], [ -76.985021, 38.833904 ], [ -76.985096, 38.833845 ], [ -76.985267, 38.833711 ], [ -76.985444, 38.833574 ], [ -76.985638, 38.833423 ], [ -76.985723, 38.833356 ], [ -76.985798, 38.833298 ], [ -76.986018, 38.833126 ], [ -76.986464, 38.832784 ], [ -76.986877, 38.832458 ], [ -76.987113, 38.832274 ], [ -76.987199, 38.832203 ], [ -76.987220, 38.832190 ], [ -76.987322, 38.832111 ], [ -76.987429, 38.832023 ], [ -76.987558, 38.831927 ], [ -76.987901, 38.831660 ], [ -76.988212, 38.831413 ], [ -76.988449, 38.831229 ], [ -76.988475, 38.831208 ], [ -76.988765, 38.830987 ], [ -76.988888, 38.830887 ], [ -76.988974, 38.830820 ], [ -76.989403, 38.830485 ], [ -76.989774, 38.830197 ], [ -76.990256, 38.829846 ], [ -76.990407, 38.829716 ], [ -76.990761, 38.829420 ], [ -76.991050, 38.829194 ], [ -76.991077, 38.829169 ], [ -76.991109, 38.829148 ], [ -76.991351, 38.829198 ], [ -76.992493, 38.829202 ], [ -76.992842, 38.829207 ], [ -76.993046, 38.829203 ], [ -76.993046, 38.830673 ], [ -76.992863, 38.830815 ], [ -76.992745, 38.830907 ], [ -76.991656, 38.831764 ], [ -76.990905, 38.832349 ], [ -76.990836, 38.832399 ], [ -76.990734, 38.832483 ], [ -76.990176, 38.832917 ], [ -76.989822, 38.833193 ], [ -76.989570, 38.833390 ], [ -76.989478, 38.833461 ], [ -76.989575, 38.833523 ], [ -76.990079, 38.833853 ], [ -76.990535, 38.834150 ], [ -76.990691, 38.834255 ], [ -76.990803, 38.834334 ], [ -76.990814, 38.834338 ], [ -76.990900, 38.834388 ], [ -76.990916, 38.834401 ], [ -76.990959, 38.834426 ], [ -76.991426, 38.834735 ], [ -76.991721, 38.834923 ], [ -76.991764, 38.834952 ], [ -76.991882, 38.835032 ], [ -76.991941, 38.835078 ], [ -76.991962, 38.835095 ], [ -76.992021, 38.835141 ], [ -76.992064, 38.835178 ], [ -76.992139, 38.835245 ], [ -76.992171, 38.835278 ], [ -76.992204, 38.835312 ], [ -76.992257, 38.835379 ], [ -76.992316, 38.835446 ], [ -76.992391, 38.835550 ], [ -76.992418, 38.835588 ], [ -76.992611, 38.835868 ], [ -76.992692, 38.835993 ], [ -76.992713, 38.836018 ], [ -76.992815, 38.836168 ], [ -76.992949, 38.836356 ], [ -76.993046, 38.836494 ], [ -76.993046, 38.837565 ], [ -76.992799, 38.837610 ], [ -76.992483, 38.837798 ], [ -76.992005, 38.837982 ], [ -76.991533, 38.838095 ], [ -76.989956, 38.838379 ], [ -76.989629, 38.838421 ], [ -76.988727, 38.838592 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2344, "y": 3134 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008100", "GEOID": "11001008100", "NAME": "81", "NAMELSAD": "Census Tract 81", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 290284, "AWATER": 0, "INTPTLAT": "+38.8931710", "INTPTLON": "-076.9925272" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.891701 ], [ -76.990244, 38.891701 ], [ -76.990240, 38.891137 ], [ -76.990240, 38.890966 ], [ -76.990235, 38.890373 ], [ -76.990948, 38.890373 ], [ -76.991431, 38.890369 ], [ -76.991528, 38.890365 ], [ -76.991528, 38.890123 ], [ -76.991528, 38.889805 ], [ -76.991801, 38.889801 ], [ -76.992638, 38.889801 ], [ -76.993046, 38.889805 ], [ -76.993046, 38.891701 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007203", "GEOID": "11001007203", "NAME": "72.03", "NAMELSAD": "Census Tract 72.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 384178, "AWATER": 0, "INTPTLAT": "+38.8781777", "INTPTLON": "-076.9994857" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.878209 ], [ -76.992955, 38.878188 ], [ -76.992365, 38.878067 ], [ -76.991903, 38.877934 ], [ -76.991635, 38.877833 ], [ -76.991533, 38.877775 ], [ -76.991533, 38.877708 ], [ -76.991533, 38.877545 ], [ -76.991533, 38.877224 ], [ -76.991554, 38.876497 ], [ -76.991812, 38.876493 ], [ -76.992660, 38.876476 ], [ -76.993046, 38.876476 ], [ -76.993046, 38.878209 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007000", "GEOID": "11001007000", "NAME": "70", "NAMELSAD": "Census Tract 70", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 439473, "AWATER": 0, "INTPTLAT": "+38.8812697", "INTPTLON": "-076.9959451" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.883518 ], [ -76.992643, 38.883358 ], [ -76.992515, 38.883308 ], [ -76.991914, 38.883053 ], [ -76.991705, 38.882970 ], [ -76.991528, 38.882890 ], [ -76.991528, 38.882794 ], [ -76.991528, 38.882657 ], [ -76.991533, 38.881888 ], [ -76.991528, 38.881512 ], [ -76.991528, 38.881358 ], [ -76.991528, 38.881266 ], [ -76.991528, 38.880422 ], [ -76.991533, 38.879738 ], [ -76.991528, 38.879278 ], [ -76.991533, 38.878401 ], [ -76.991533, 38.878339 ], [ -76.991533, 38.878226 ], [ -76.991533, 38.878109 ], [ -76.991533, 38.878096 ], [ -76.991533, 38.877963 ], [ -76.991533, 38.877775 ], [ -76.991635, 38.877833 ], [ -76.991903, 38.877934 ], [ -76.992365, 38.878067 ], [ -76.992955, 38.878188 ], [ -76.993046, 38.878209 ], [ -76.993046, 38.883518 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007201", "GEOID": "11001007201", "NAME": "72.01", "NAMELSAD": "Census Tract 72.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 781457, "AWATER": 312419, "INTPTLAT": "+38.8738481", "INTPTLON": "-076.9999179" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.876476 ], [ -76.992660, 38.876476 ], [ -76.991812, 38.876493 ], [ -76.991554, 38.876497 ], [ -76.991485, 38.874605 ], [ -76.991469, 38.874375 ], [ -76.991426, 38.874033 ], [ -76.991372, 38.873690 ], [ -76.991292, 38.873298 ], [ -76.991270, 38.873235 ], [ -76.991217, 38.873093 ], [ -76.991168, 38.872968 ], [ -76.991104, 38.872830 ], [ -76.990927, 38.872479 ], [ -76.990766, 38.872225 ], [ -76.990101, 38.871348 ], [ -76.990294, 38.871210 ], [ -76.992456, 38.870128 ], [ -76.992665, 38.870124 ], [ -76.993046, 38.870115 ], [ -76.993046, 38.876476 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007401", "GEOID": "11001007401", "NAME": "74.01", "NAMELSAD": "Census Tract 74.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1209113, "AWATER": 200980, "INTPTLAT": "+38.8675208", "INTPTLON": "-076.9991203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.870115 ], [ -76.992665, 38.870124 ], [ -76.992456, 38.870128 ], [ -76.990294, 38.871210 ], [ -76.990101, 38.871348 ], [ -76.989564, 38.870679 ], [ -76.989430, 38.870512 ], [ -76.989221, 38.870274 ], [ -76.988845, 38.869811 ], [ -76.988593, 38.869468 ], [ -76.988577, 38.869451 ], [ -76.988550, 38.869414 ], [ -76.988475, 38.869314 ], [ -76.988352, 38.869138 ], [ -76.988416, 38.869109 ], [ -76.988481, 38.869075 ], [ -76.988497, 38.869067 ], [ -76.988593, 38.869013 ], [ -76.988711, 38.868942 ], [ -76.988862, 38.868846 ], [ -76.988969, 38.868771 ], [ -76.989071, 38.868695 ], [ -76.989248, 38.868558 ], [ -76.989291, 38.868524 ], [ -76.989403, 38.868432 ], [ -76.989478, 38.868361 ], [ -76.989870, 38.868061 ], [ -76.990117, 38.867843 ], [ -76.990326, 38.867605 ], [ -76.990594, 38.867275 ], [ -76.991082, 38.866657 ], [ -76.991120, 38.866607 ], [ -76.991141, 38.866578 ], [ -76.991281, 38.866390 ], [ -76.991340, 38.866315 ], [ -76.991506, 38.866089 ], [ -76.991619, 38.865935 ], [ -76.991705, 38.865834 ], [ -76.991758, 38.865767 ], [ -76.991844, 38.865667 ], [ -76.991935, 38.865571 ], [ -76.991994, 38.865513 ], [ -76.992263, 38.865245 ], [ -76.992418, 38.865099 ], [ -76.992450, 38.865074 ], [ -76.992483, 38.865045 ], [ -76.992584, 38.864961 ], [ -76.992713, 38.864865 ], [ -76.992499, 38.864698 ], [ -76.992343, 38.864577 ], [ -76.992322, 38.864552 ], [ -76.991833, 38.864222 ], [ -76.991753, 38.864168 ], [ -76.991426, 38.863955 ], [ -76.991410, 38.863942 ], [ -76.991394, 38.863917 ], [ -76.991361, 38.863871 ], [ -76.991125, 38.863566 ], [ -76.991088, 38.863520 ], [ -76.991050, 38.863474 ], [ -76.991013, 38.863428 ], [ -76.991217, 38.863320 ], [ -76.991506, 38.863161 ], [ -76.992241, 38.862764 ], [ -76.992670, 38.862535 ], [ -76.992976, 38.862367 ], [ -76.993046, 38.862329 ], [ -76.993046, 38.870115 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008002", "GEOID": "11001008002", "NAME": "80.02", "NAMELSAD": "Census Tract 80.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 578961, "AWATER": 0, "INTPTLAT": "+38.8915403", "INTPTLON": "-076.9827594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.973941, 38.891701 ], [ -76.973938, 38.891684 ], [ -76.973906, 38.891521 ], [ -76.973879, 38.891371 ], [ -76.973868, 38.891283 ], [ -76.973857, 38.891191 ], [ -76.973852, 38.891104 ], [ -76.973841, 38.890953 ], [ -76.973830, 38.890582 ], [ -76.973852, 38.890511 ], [ -76.973863, 38.890478 ], [ -76.973879, 38.890444 ], [ -76.973895, 38.890411 ], [ -76.973906, 38.890386 ], [ -76.973922, 38.890361 ], [ -76.973943, 38.890340 ], [ -76.973959, 38.890319 ], [ -76.973981, 38.890298 ], [ -76.974007, 38.890277 ], [ -76.974040, 38.890256 ], [ -76.974109, 38.890214 ], [ -76.974179, 38.890177 ], [ -76.974217, 38.890160 ], [ -76.974270, 38.890139 ], [ -76.974303, 38.890127 ], [ -76.974345, 38.890118 ], [ -76.974383, 38.890114 ], [ -76.974453, 38.890110 ], [ -76.974635, 38.890110 ], [ -76.974850, 38.890114 ], [ -76.975359, 38.890114 ], [ -76.976244, 38.890114 ], [ -76.976277, 38.890114 ], [ -76.976309, 38.890110 ], [ -76.976336, 38.890106 ], [ -76.976400, 38.890085 ], [ -76.976464, 38.890060 ], [ -76.976502, 38.890039 ], [ -76.976545, 38.890018 ], [ -76.976604, 38.889981 ], [ -76.976647, 38.889951 ], [ -76.976722, 38.889922 ], [ -76.976743, 38.889910 ], [ -76.976797, 38.889897 ], [ -76.976840, 38.889885 ], [ -76.976877, 38.889876 ], [ -76.976920, 38.889872 ], [ -76.976963, 38.889868 ], [ -76.977006, 38.889864 ], [ -76.977253, 38.889797 ], [ -76.978535, 38.889801 ], [ -76.978991, 38.889801 ], [ -76.980761, 38.889801 ], [ -76.982215, 38.889801 ], [ -76.982993, 38.889801 ], [ -76.983336, 38.889801 ], [ -76.983642, 38.889801 ], [ -76.985503, 38.889801 ], [ -76.985621, 38.889801 ], [ -76.987435, 38.889801 ], [ -76.987875, 38.889801 ], [ -76.988314, 38.889797 ], [ -76.988320, 38.889759 ], [ -76.988314, 38.889242 ], [ -76.988947, 38.889242 ], [ -76.989763, 38.889233 ], [ -76.989951, 38.889233 ], [ -76.990122, 38.889233 ], [ -76.990235, 38.889229 ], [ -76.991388, 38.889229 ], [ -76.991415, 38.889225 ], [ -76.991538, 38.889225 ], [ -76.991528, 38.889805 ], [ -76.991528, 38.890123 ], [ -76.991528, 38.890365 ], [ -76.991431, 38.890369 ], [ -76.990948, 38.890373 ], [ -76.990235, 38.890373 ], [ -76.990240, 38.890966 ], [ -76.990240, 38.891137 ], [ -76.990244, 38.891701 ], [ -76.973941, 38.891701 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009604", "GEOID": "11001009604", "NAME": "96.04", "NAMELSAD": "Census Tract 96.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 503381, "AWATER": 65762, "INTPTLAT": "+38.8931572", "INTPTLON": "-076.9585043" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963364, 38.889868 ], [ -76.963263, 38.890348 ], [ -76.962925, 38.891701 ], [ -76.954875, 38.891701 ], [ -76.956364, 38.890210 ], [ -76.956713, 38.889830 ], [ -76.956745, 38.889830 ], [ -76.957195, 38.889834 ], [ -76.957340, 38.889834 ], [ -76.958102, 38.889818 ], [ -76.958252, 38.889826 ], [ -76.958585, 38.889822 ], [ -76.959803, 38.889851 ], [ -76.961229, 38.889851 ], [ -76.961562, 38.889855 ], [ -76.962436, 38.889855 ], [ -76.962624, 38.889860 ], [ -76.963364, 38.889868 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009603", "GEOID": "11001009603", "NAME": "96.03", "NAMELSAD": "Census Tract 96.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 607400, "AWATER": 0, "INTPTLAT": "+38.8918285", "INTPTLON": "-076.9477195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.947384, 38.889836 ], [ -76.948280, 38.889822 ], [ -76.948805, 38.889822 ], [ -76.950098, 38.889843 ], [ -76.950726, 38.889834 ], [ -76.951928, 38.889818 ], [ -76.953000, 38.889822 ], [ -76.953102, 38.889822 ], [ -76.953692, 38.889818 ], [ -76.954599, 38.889814 ], [ -76.955913, 38.889826 ], [ -76.956713, 38.889830 ], [ -76.956364, 38.890210 ], [ -76.954875, 38.891701 ], [ -76.947384, 38.891701 ], [ -76.947384, 38.889836 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006700", "GEOID": "11001006700", "NAME": "67", "NAMELSAD": "Census Tract 67", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 428358, "AWATER": 0, "INTPTLAT": "+38.8875984", "INTPTLON": "-076.9899590" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.889805 ], [ -76.992638, 38.889801 ], [ -76.991801, 38.889801 ], [ -76.991528, 38.889805 ], [ -76.991538, 38.889225 ], [ -76.991415, 38.889225 ], [ -76.991388, 38.889229 ], [ -76.990235, 38.889229 ], [ -76.990122, 38.889233 ], [ -76.989951, 38.889233 ], [ -76.989763, 38.889233 ], [ -76.988947, 38.889242 ], [ -76.988314, 38.889242 ], [ -76.988320, 38.889759 ], [ -76.988314, 38.889797 ], [ -76.987875, 38.889801 ], [ -76.987435, 38.889801 ], [ -76.985621, 38.889801 ], [ -76.985503, 38.889801 ], [ -76.983642, 38.889801 ], [ -76.983647, 38.888670 ], [ -76.983647, 38.888335 ], [ -76.983647, 38.887701 ], [ -76.983647, 38.887601 ], [ -76.983647, 38.887154 ], [ -76.983647, 38.887087 ], [ -76.983712, 38.887033 ], [ -76.984044, 38.887037 ], [ -76.984103, 38.887033 ], [ -76.984168, 38.887020 ], [ -76.984463, 38.886941 ], [ -76.984586, 38.886916 ], [ -76.984667, 38.886903 ], [ -76.984747, 38.886899 ], [ -76.985434, 38.886720 ], [ -76.985503, 38.886699 ], [ -76.985664, 38.886653 ], [ -76.985949, 38.886578 ], [ -76.986319, 38.886477 ], [ -76.986383, 38.886465 ], [ -76.986984, 38.886302 ], [ -76.987268, 38.886227 ], [ -76.988186, 38.885985 ], [ -76.988309, 38.886018 ], [ -76.988422, 38.885922 ], [ -76.988910, 38.885793 ], [ -76.989017, 38.885763 ], [ -76.989682, 38.885588 ], [ -76.990069, 38.885484 ], [ -76.990240, 38.885438 ], [ -76.991528, 38.885099 ], [ -76.992643, 38.884799 ], [ -76.993046, 38.884690 ], [ -76.993046, 38.889805 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006900", "GEOID": "11001006900", "NAME": "69", "NAMELSAD": "Census Tract 69", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 398513, "AWATER": 0, "INTPTLAT": "+38.8836933", "INTPTLON": "-076.9873112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.884690 ], [ -76.992643, 38.884799 ], [ -76.991528, 38.885099 ], [ -76.990240, 38.885438 ], [ -76.990069, 38.885484 ], [ -76.989682, 38.885588 ], [ -76.989017, 38.885763 ], [ -76.988910, 38.885793 ], [ -76.988422, 38.885922 ], [ -76.988309, 38.886018 ], [ -76.988186, 38.885985 ], [ -76.987268, 38.886227 ], [ -76.986984, 38.886302 ], [ -76.986383, 38.886465 ], [ -76.986319, 38.886477 ], [ -76.985949, 38.886578 ], [ -76.985664, 38.886653 ], [ -76.985503, 38.886699 ], [ -76.985434, 38.886720 ], [ -76.984747, 38.886899 ], [ -76.984667, 38.886903 ], [ -76.984586, 38.886916 ], [ -76.984463, 38.886941 ], [ -76.984168, 38.887020 ], [ -76.984103, 38.887033 ], [ -76.984044, 38.887037 ], [ -76.983712, 38.887033 ], [ -76.983647, 38.887087 ], [ -76.983653, 38.887020 ], [ -76.983647, 38.886962 ], [ -76.983647, 38.886703 ], [ -76.983647, 38.886323 ], [ -76.983647, 38.886223 ], [ -76.983647, 38.886139 ], [ -76.983647, 38.885922 ], [ -76.983647, 38.885550 ], [ -76.983647, 38.885425 ], [ -76.983653, 38.885354 ], [ -76.983653, 38.884744 ], [ -76.983653, 38.884448 ], [ -76.983653, 38.884101 ], [ -76.983653, 38.884014 ], [ -76.983647, 38.883634 ], [ -76.983653, 38.883467 ], [ -76.983647, 38.882932 ], [ -76.983647, 38.882836 ], [ -76.983647, 38.882753 ], [ -76.983653, 38.882690 ], [ -76.983653, 38.881867 ], [ -76.983653, 38.881642 ], [ -76.983647, 38.881341 ], [ -76.983647, 38.881266 ], [ -76.983653, 38.881078 ], [ -76.983647, 38.880364 ], [ -76.983647, 38.880038 ], [ -76.983653, 38.879775 ], [ -76.983653, 38.879696 ], [ -76.983653, 38.879683 ], [ -76.984972, 38.880218 ], [ -76.985831, 38.880564 ], [ -76.985959, 38.880623 ], [ -76.986362, 38.880794 ], [ -76.986791, 38.880970 ], [ -76.987005, 38.881061 ], [ -76.987322, 38.881187 ], [ -76.987483, 38.881253 ], [ -76.987821, 38.881395 ], [ -76.988116, 38.881525 ], [ -76.988304, 38.881600 ], [ -76.990240, 38.882381 ], [ -76.990358, 38.882427 ], [ -76.990487, 38.882481 ], [ -76.991040, 38.882698 ], [ -76.991136, 38.882740 ], [ -76.991356, 38.882824 ], [ -76.991528, 38.882890 ], [ -76.991705, 38.882970 ], [ -76.991914, 38.883053 ], [ -76.992515, 38.883308 ], [ -76.992643, 38.883358 ], [ -76.993046, 38.883518 ], [ -76.993046, 38.884690 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006802", "GEOID": "11001006802", "NAME": "68.02", "NAMELSAD": "Census Tract 68.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 280108, "AWATER": 0, "INTPTLAT": "+38.8832158", "INTPTLON": "-076.9814483" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.981571, 38.878836 ], [ -76.981925, 38.878982 ], [ -76.983653, 38.879683 ], [ -76.983653, 38.879696 ], [ -76.983653, 38.879775 ], [ -76.983647, 38.880038 ], [ -76.983647, 38.880364 ], [ -76.983653, 38.881078 ], [ -76.983647, 38.881266 ], [ -76.983647, 38.881341 ], [ -76.983653, 38.881642 ], [ -76.983653, 38.881867 ], [ -76.983653, 38.882690 ], [ -76.983647, 38.882753 ], [ -76.983647, 38.882836 ], [ -76.983647, 38.882932 ], [ -76.983653, 38.883467 ], [ -76.983647, 38.883634 ], [ -76.983653, 38.884014 ], [ -76.983653, 38.884101 ], [ -76.983653, 38.884448 ], [ -76.983653, 38.884744 ], [ -76.983653, 38.885354 ], [ -76.983647, 38.885425 ], [ -76.983647, 38.885550 ], [ -76.983647, 38.885922 ], [ -76.983647, 38.886139 ], [ -76.983647, 38.886223 ], [ -76.983647, 38.886323 ], [ -76.983647, 38.886703 ], [ -76.983647, 38.886962 ], [ -76.983653, 38.887020 ], [ -76.983647, 38.887087 ], [ -76.983218, 38.886945 ], [ -76.982773, 38.886765 ], [ -76.982215, 38.886540 ], [ -76.980879, 38.885997 ], [ -76.980761, 38.885951 ], [ -76.979281, 38.885346 ], [ -76.979002, 38.885233 ], [ -76.977371, 38.884573 ], [ -76.977350, 38.884565 ], [ -76.977312, 38.884561 ], [ -76.977258, 38.884557 ], [ -76.977258, 38.884373 ], [ -76.977258, 38.884210 ], [ -76.977258, 38.884177 ], [ -76.977258, 38.884101 ], [ -76.977258, 38.883675 ], [ -76.977366, 38.883638 ], [ -76.978294, 38.883262 ], [ -76.978996, 38.882974 ], [ -76.979334, 38.882836 ], [ -76.980048, 38.882544 ], [ -76.980327, 38.882435 ], [ -76.980627, 38.882310 ], [ -76.980756, 38.882260 ], [ -76.980751, 38.881892 ], [ -76.980751, 38.881266 ], [ -76.980751, 38.881182 ], [ -76.980751, 38.880619 ], [ -76.980751, 38.880285 ], [ -76.980751, 38.879775 ], [ -76.980756, 38.879362 ], [ -76.980751, 38.879282 ], [ -76.980751, 38.879241 ], [ -76.980788, 38.879241 ], [ -76.980831, 38.879241 ], [ -76.980869, 38.879236 ], [ -76.980933, 38.879228 ], [ -76.980992, 38.879220 ], [ -76.981051, 38.879207 ], [ -76.981105, 38.879191 ], [ -76.981164, 38.879174 ], [ -76.981217, 38.879161 ], [ -76.981271, 38.879153 ], [ -76.981319, 38.879140 ], [ -76.981373, 38.879124 ], [ -76.981400, 38.879111 ], [ -76.981426, 38.879090 ], [ -76.981464, 38.879053 ], [ -76.981480, 38.879019 ], [ -76.981496, 38.878973 ], [ -76.981523, 38.878927 ], [ -76.981571, 38.878836 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007100", "GEOID": "11001007100", "NAME": "71", "NAMELSAD": "Census Tract 71", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 602223, "AWATER": 149901, "INTPTLAT": "+38.8771811", "INTPTLON": "-076.9868380" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.991528, 38.882890 ], [ -76.991356, 38.882824 ], [ -76.991136, 38.882740 ], [ -76.991040, 38.882698 ], [ -76.990487, 38.882481 ], [ -76.990358, 38.882427 ], [ -76.990240, 38.882381 ], [ -76.988304, 38.881600 ], [ -76.988116, 38.881525 ], [ -76.987821, 38.881395 ], [ -76.987483, 38.881253 ], [ -76.987322, 38.881187 ], [ -76.987005, 38.881061 ], [ -76.986791, 38.880970 ], [ -76.986362, 38.880794 ], [ -76.985959, 38.880623 ], [ -76.985831, 38.880564 ], [ -76.984972, 38.880218 ], [ -76.983653, 38.879683 ], [ -76.981925, 38.878982 ], [ -76.981571, 38.878836 ], [ -76.981410, 38.878748 ], [ -76.980928, 38.878589 ], [ -76.980788, 38.878547 ], [ -76.980670, 38.878506 ], [ -76.980584, 38.878456 ], [ -76.980472, 38.878376 ], [ -76.980380, 38.878276 ], [ -76.980273, 38.878138 ], [ -76.980128, 38.877967 ], [ -76.980037, 38.877896 ], [ -76.979935, 38.877846 ], [ -76.979924, 38.877837 ], [ -76.979619, 38.877679 ], [ -76.979576, 38.877654 ], [ -76.979367, 38.877545 ], [ -76.979297, 38.877516 ], [ -76.978170, 38.876952 ], [ -76.978025, 38.876881 ], [ -76.978160, 38.876806 ], [ -76.983953, 38.874927 ], [ -76.985418, 38.874075 ], [ -76.988808, 38.872204 ], [ -76.989253, 38.871957 ], [ -76.989505, 38.871774 ], [ -76.989639, 38.871677 ], [ -76.989682, 38.871648 ], [ -76.989725, 38.871619 ], [ -76.990101, 38.871348 ], [ -76.990766, 38.872225 ], [ -76.990927, 38.872479 ], [ -76.991104, 38.872830 ], [ -76.991168, 38.872968 ], [ -76.991217, 38.873093 ], [ -76.991270, 38.873235 ], [ -76.991292, 38.873298 ], [ -76.991372, 38.873690 ], [ -76.991426, 38.874033 ], [ -76.991469, 38.874375 ], [ -76.991485, 38.874605 ], [ -76.991554, 38.876497 ], [ -76.991533, 38.877224 ], [ -76.991533, 38.877545 ], [ -76.991533, 38.877708 ], [ -76.991533, 38.877775 ], [ -76.991533, 38.877963 ], [ -76.991533, 38.878096 ], [ -76.991533, 38.878109 ], [ -76.991533, 38.878226 ], [ -76.991533, 38.878339 ], [ -76.991533, 38.878401 ], [ -76.991528, 38.879278 ], [ -76.991533, 38.879738 ], [ -76.991528, 38.880422 ], [ -76.991528, 38.881266 ], [ -76.991528, 38.881358 ], [ -76.991528, 38.881512 ], [ -76.991533, 38.881888 ], [ -76.991528, 38.882657 ], [ -76.991528, 38.882794 ], [ -76.991528, 38.882890 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006801", "GEOID": "11001006801", "NAME": "68.01", "NAMELSAD": "Census Tract 68.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 244750, "AWATER": 0, "INTPTLAT": "+38.8877413", "INTPTLON": "-076.9801087" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.977258, 38.884557 ], [ -76.977312, 38.884561 ], [ -76.977350, 38.884565 ], [ -76.977371, 38.884573 ], [ -76.979002, 38.885233 ], [ -76.979281, 38.885346 ], [ -76.980761, 38.885951 ], [ -76.980879, 38.885997 ], [ -76.982215, 38.886540 ], [ -76.982773, 38.886765 ], [ -76.983218, 38.886945 ], [ -76.983647, 38.887087 ], [ -76.983647, 38.887154 ], [ -76.983647, 38.887601 ], [ -76.983647, 38.887701 ], [ -76.983647, 38.888335 ], [ -76.983647, 38.888670 ], [ -76.983642, 38.889801 ], [ -76.983336, 38.889801 ], [ -76.982993, 38.889801 ], [ -76.982215, 38.889801 ], [ -76.980761, 38.889801 ], [ -76.978991, 38.889801 ], [ -76.978535, 38.889801 ], [ -76.977253, 38.889797 ], [ -76.977258, 38.889442 ], [ -76.977258, 38.888670 ], [ -76.977253, 38.887588 ], [ -76.977253, 38.887267 ], [ -76.977253, 38.887049 ], [ -76.977258, 38.886853 ], [ -76.977258, 38.886799 ], [ -76.977258, 38.886774 ], [ -76.977264, 38.886235 ], [ -76.977264, 38.886143 ], [ -76.977264, 38.886051 ], [ -76.977258, 38.885350 ], [ -76.977258, 38.885287 ], [ -76.977253, 38.884966 ], [ -76.977253, 38.884673 ], [ -76.977258, 38.884557 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006804", "GEOID": "11001006804", "NAME": "68.04", "NAMELSAD": "Census Tract 68.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1542277, "AWATER": 477741, "INTPTLAT": "+38.8863842", "INTPTLON": "-076.9704836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.980037, 38.877896 ], [ -76.980128, 38.877967 ], [ -76.980273, 38.878138 ], [ -76.980380, 38.878276 ], [ -76.980472, 38.878376 ], [ -76.980584, 38.878456 ], [ -76.980670, 38.878506 ], [ -76.980788, 38.878547 ], [ -76.980928, 38.878589 ], [ -76.981410, 38.878748 ], [ -76.981571, 38.878836 ], [ -76.981523, 38.878927 ], [ -76.981496, 38.878973 ], [ -76.981480, 38.879019 ], [ -76.981464, 38.879053 ], [ -76.981426, 38.879090 ], [ -76.981400, 38.879111 ], [ -76.981373, 38.879124 ], [ -76.981319, 38.879140 ], [ -76.981271, 38.879153 ], [ -76.981217, 38.879161 ], [ -76.981164, 38.879174 ], [ -76.981105, 38.879191 ], [ -76.981051, 38.879207 ], [ -76.980992, 38.879220 ], [ -76.980933, 38.879228 ], [ -76.980869, 38.879236 ], [ -76.980831, 38.879241 ], [ -76.980788, 38.879241 ], [ -76.980751, 38.879241 ], [ -76.980751, 38.879282 ], [ -76.980756, 38.879362 ], [ -76.980751, 38.879775 ], [ -76.980751, 38.880285 ], [ -76.980751, 38.880619 ], [ -76.980751, 38.881182 ], [ -76.980751, 38.881266 ], [ -76.980751, 38.881892 ], [ -76.980756, 38.882260 ], [ -76.980627, 38.882310 ], [ -76.980327, 38.882435 ], [ -76.980048, 38.882544 ], [ -76.979334, 38.882836 ], [ -76.978996, 38.882974 ], [ -76.978294, 38.883262 ], [ -76.977366, 38.883638 ], [ -76.977258, 38.883675 ], [ -76.977258, 38.884101 ], [ -76.977258, 38.884177 ], [ -76.977258, 38.884210 ], [ -76.977258, 38.884373 ], [ -76.977258, 38.884557 ], [ -76.977253, 38.884673 ], [ -76.977253, 38.884966 ], [ -76.977258, 38.885287 ], [ -76.977258, 38.885350 ], [ -76.977264, 38.886051 ], [ -76.977264, 38.886143 ], [ -76.977264, 38.886235 ], [ -76.977258, 38.886774 ], [ -76.977258, 38.886799 ], [ -76.977258, 38.886853 ], [ -76.977253, 38.887049 ], [ -76.977253, 38.887267 ], [ -76.977253, 38.887588 ], [ -76.977258, 38.888670 ], [ -76.977258, 38.889442 ], [ -76.977253, 38.889797 ], [ -76.977006, 38.889864 ], [ -76.976963, 38.889868 ], [ -76.976920, 38.889872 ], [ -76.976877, 38.889876 ], [ -76.976840, 38.889885 ], [ -76.976797, 38.889897 ], [ -76.976743, 38.889910 ], [ -76.976722, 38.889922 ], [ -76.976647, 38.889951 ], [ -76.976604, 38.889981 ], [ -76.976545, 38.890018 ], [ -76.976502, 38.890039 ], [ -76.976464, 38.890060 ], [ -76.976400, 38.890085 ], [ -76.976336, 38.890106 ], [ -76.976309, 38.890110 ], [ -76.976277, 38.890114 ], [ -76.976244, 38.890114 ], [ -76.975359, 38.890114 ], [ -76.974850, 38.890114 ], [ -76.974635, 38.890110 ], [ -76.974453, 38.890110 ], [ -76.974383, 38.890114 ], [ -76.974345, 38.890118 ], [ -76.974303, 38.890127 ], [ -76.974270, 38.890139 ], [ -76.974217, 38.890160 ], [ -76.974179, 38.890177 ], [ -76.974109, 38.890214 ], [ -76.974040, 38.890256 ], [ -76.974007, 38.890277 ], [ -76.973981, 38.890298 ], [ -76.973959, 38.890319 ], [ -76.973943, 38.890340 ], [ -76.973922, 38.890361 ], [ -76.973906, 38.890386 ], [ -76.973895, 38.890411 ], [ -76.973879, 38.890444 ], [ -76.973863, 38.890478 ], [ -76.973852, 38.890511 ], [ -76.973830, 38.890582 ], [ -76.973841, 38.890953 ], [ -76.973852, 38.891104 ], [ -76.973857, 38.891191 ], [ -76.973868, 38.891283 ], [ -76.973879, 38.891371 ], [ -76.973906, 38.891521 ], [ -76.973938, 38.891684 ], [ -76.973941, 38.891701 ], [ -76.962925, 38.891701 ], [ -76.963263, 38.890348 ], [ -76.963364, 38.889868 ], [ -76.963381, 38.889797 ], [ -76.963429, 38.889730 ], [ -76.963879, 38.889125 ], [ -76.966787, 38.885237 ], [ -76.969603, 38.882661 ], [ -76.970719, 38.881437 ], [ -76.971449, 38.880631 ], [ -76.971754, 38.880218 ], [ -76.972661, 38.878969 ], [ -76.973294, 38.878389 ], [ -76.975579, 38.877599 ], [ -76.978025, 38.876881 ], [ -76.978170, 38.876952 ], [ -76.979297, 38.877516 ], [ -76.979367, 38.877545 ], [ -76.979576, 38.877654 ], [ -76.979619, 38.877679 ], [ -76.979924, 38.877837 ], [ -76.979935, 38.877846 ], [ -76.980037, 38.877896 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007503", "GEOID": "11001007503", "NAME": "75.03", "NAMELSAD": "Census Tract 75.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 515179, "AWATER": 0, "INTPTLAT": "+38.8640724", "INTPTLON": "-076.9870900" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.983663, 38.860530 ], [ -76.983803, 38.860525 ], [ -76.983867, 38.860525 ], [ -76.984828, 38.860525 ], [ -76.985364, 38.860525 ], [ -76.986212, 38.860525 ], [ -76.986249, 38.860525 ], [ -76.986904, 38.860521 ], [ -76.987016, 38.860521 ], [ -76.987574, 38.860521 ], [ -76.987617, 38.860521 ], [ -76.987655, 38.860513 ], [ -76.987687, 38.860500 ], [ -76.987719, 38.860484 ], [ -76.987751, 38.860463 ], [ -76.987826, 38.860388 ], [ -76.987971, 38.860258 ], [ -76.988030, 38.860200 ], [ -76.988207, 38.860312 ], [ -76.988250, 38.860346 ], [ -76.988271, 38.860362 ], [ -76.988309, 38.860400 ], [ -76.988545, 38.860659 ], [ -76.988642, 38.860763 ], [ -76.988840, 38.860972 ], [ -76.988904, 38.861043 ], [ -76.988969, 38.861114 ], [ -76.989232, 38.861398 ], [ -76.989296, 38.861474 ], [ -76.989344, 38.861524 ], [ -76.989419, 38.861595 ], [ -76.989446, 38.861620 ], [ -76.989468, 38.861641 ], [ -76.989521, 38.861687 ], [ -76.989682, 38.861816 ], [ -76.989784, 38.861908 ], [ -76.989988, 38.862092 ], [ -76.990026, 38.862129 ], [ -76.990063, 38.862167 ], [ -76.990181, 38.862280 ], [ -76.990219, 38.862317 ], [ -76.990294, 38.862393 ], [ -76.990396, 38.862497 ], [ -76.990449, 38.862551 ], [ -76.990691, 38.862794 ], [ -76.991029, 38.863123 ], [ -76.991217, 38.863320 ], [ -76.991013, 38.863428 ], [ -76.991050, 38.863474 ], [ -76.991088, 38.863520 ], [ -76.991125, 38.863566 ], [ -76.991361, 38.863871 ], [ -76.991394, 38.863917 ], [ -76.991410, 38.863942 ], [ -76.991426, 38.863955 ], [ -76.991753, 38.864168 ], [ -76.991833, 38.864222 ], [ -76.992322, 38.864552 ], [ -76.992343, 38.864577 ], [ -76.992499, 38.864698 ], [ -76.992713, 38.864865 ], [ -76.992584, 38.864961 ], [ -76.992483, 38.865045 ], [ -76.992450, 38.865074 ], [ -76.992418, 38.865099 ], [ -76.992263, 38.865245 ], [ -76.991994, 38.865513 ], [ -76.991935, 38.865571 ], [ -76.991844, 38.865667 ], [ -76.991758, 38.865767 ], [ -76.991705, 38.865834 ], [ -76.991619, 38.865935 ], [ -76.991506, 38.866089 ], [ -76.991340, 38.866315 ], [ -76.991281, 38.866390 ], [ -76.991141, 38.866578 ], [ -76.991120, 38.866607 ], [ -76.991082, 38.866657 ], [ -76.990594, 38.867275 ], [ -76.990326, 38.867605 ], [ -76.990117, 38.867843 ], [ -76.989870, 38.868061 ], [ -76.989478, 38.868361 ], [ -76.989355, 38.868265 ], [ -76.989039, 38.868023 ], [ -76.989006, 38.867985 ], [ -76.988974, 38.867952 ], [ -76.988947, 38.867919 ], [ -76.988915, 38.867868 ], [ -76.988899, 38.867839 ], [ -76.988717, 38.867534 ], [ -76.988706, 38.867513 ], [ -76.988620, 38.867417 ], [ -76.988352, 38.867359 ], [ -76.988046, 38.867300 ], [ -76.987703, 38.867242 ], [ -76.987156, 38.867142 ], [ -76.987054, 38.867125 ], [ -76.985123, 38.866774 ], [ -76.984522, 38.866661 ], [ -76.984355, 38.866636 ], [ -76.983637, 38.866503 ], [ -76.983181, 38.866419 ], [ -76.983331, 38.865918 ], [ -76.983438, 38.865559 ], [ -76.982167, 38.865325 ], [ -76.982204, 38.865208 ], [ -76.982419, 38.864468 ], [ -76.982532, 38.864088 ], [ -76.982639, 38.863733 ], [ -76.982676, 38.863616 ], [ -76.982682, 38.863595 ], [ -76.982692, 38.863558 ], [ -76.982692, 38.863516 ], [ -76.982687, 38.863387 ], [ -76.982676, 38.863132 ], [ -76.982666, 38.862877 ], [ -76.982682, 38.862777 ], [ -76.982709, 38.862610 ], [ -76.982789, 38.861916 ], [ -76.982832, 38.861557 ], [ -76.982843, 38.861469 ], [ -76.982848, 38.861403 ], [ -76.982848, 38.861377 ], [ -76.982875, 38.861369 ], [ -76.982896, 38.861361 ], [ -76.982923, 38.861348 ], [ -76.982945, 38.861332 ], [ -76.982961, 38.861315 ], [ -76.983191, 38.861106 ], [ -76.983224, 38.861073 ], [ -76.983256, 38.861039 ], [ -76.983325, 38.860976 ], [ -76.983363, 38.860947 ], [ -76.983438, 38.860889 ], [ -76.983497, 38.860847 ], [ -76.983556, 38.860809 ], [ -76.983572, 38.860793 ], [ -76.983594, 38.860776 ], [ -76.983610, 38.860755 ], [ -76.983626, 38.860734 ], [ -76.983637, 38.860713 ], [ -76.983647, 38.860692 ], [ -76.983653, 38.860672 ], [ -76.983658, 38.860651 ], [ -76.983663, 38.860626 ], [ -76.983663, 38.860605 ], [ -76.983663, 38.860530 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007407", "GEOID": "11001007407", "NAME": "74.07", "NAMELSAD": "Census Tract 74.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 608700, "AWATER": 0, "INTPTLAT": "+38.8574823", "INTPTLON": "-076.9850206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.862329 ], [ -76.992976, 38.862367 ], [ -76.992670, 38.862535 ], [ -76.992241, 38.862764 ], [ -76.991506, 38.863161 ], [ -76.991217, 38.863320 ], [ -76.991029, 38.863123 ], [ -76.990691, 38.862794 ], [ -76.990449, 38.862551 ], [ -76.990396, 38.862497 ], [ -76.990294, 38.862393 ], [ -76.990219, 38.862317 ], [ -76.990181, 38.862280 ], [ -76.990063, 38.862167 ], [ -76.990026, 38.862129 ], [ -76.989988, 38.862092 ], [ -76.989784, 38.861908 ], [ -76.989682, 38.861816 ], [ -76.989521, 38.861687 ], [ -76.989468, 38.861641 ], [ -76.989446, 38.861620 ], [ -76.989419, 38.861595 ], [ -76.989344, 38.861524 ], [ -76.989296, 38.861474 ], [ -76.989232, 38.861398 ], [ -76.988969, 38.861114 ], [ -76.988904, 38.861043 ], [ -76.988840, 38.860972 ], [ -76.988642, 38.860763 ], [ -76.988545, 38.860659 ], [ -76.988309, 38.860400 ], [ -76.988271, 38.860362 ], [ -76.988250, 38.860346 ], [ -76.988207, 38.860312 ], [ -76.988030, 38.860200 ], [ -76.987891, 38.860108 ], [ -76.987837, 38.860070 ], [ -76.987815, 38.860062 ], [ -76.987402, 38.859790 ], [ -76.987054, 38.859577 ], [ -76.986936, 38.859498 ], [ -76.986657, 38.859314 ], [ -76.986453, 38.859168 ], [ -76.986372, 38.859113 ], [ -76.986297, 38.859059 ], [ -76.986115, 38.858930 ], [ -76.985836, 38.858733 ], [ -76.985766, 38.858687 ], [ -76.985670, 38.858621 ], [ -76.985530, 38.858520 ], [ -76.985235, 38.858320 ], [ -76.984828, 38.858036 ], [ -76.984586, 38.857860 ], [ -76.984313, 38.857668 ], [ -76.984146, 38.857564 ], [ -76.983894, 38.857405 ], [ -76.983835, 38.857372 ], [ -76.983701, 38.857296 ], [ -76.983599, 38.857221 ], [ -76.983519, 38.857175 ], [ -76.983100, 38.856920 ], [ -76.983063, 38.856908 ], [ -76.983020, 38.856900 ], [ -76.982977, 38.856895 ], [ -76.982934, 38.856895 ], [ -76.982891, 38.856900 ], [ -76.982478, 38.856962 ], [ -76.982242, 38.857004 ], [ -76.981121, 38.857200 ], [ -76.980793, 38.857255 ], [ -76.980633, 38.857284 ], [ -76.980547, 38.857292 ], [ -76.980461, 38.857296 ], [ -76.980160, 38.857305 ], [ -76.979635, 38.857305 ], [ -76.979023, 38.857305 ], [ -76.978755, 38.857305 ], [ -76.978449, 38.857301 ], [ -76.978111, 38.857305 ], [ -76.978015, 38.857305 ], [ -76.977752, 38.857305 ], [ -76.977360, 38.857305 ], [ -76.977317, 38.857301 ], [ -76.977226, 38.857292 ], [ -76.977167, 38.857284 ], [ -76.977097, 38.857271 ], [ -76.977022, 38.857255 ], [ -76.976904, 38.857221 ], [ -76.976856, 38.857204 ], [ -76.976824, 38.857192 ], [ -76.976759, 38.857163 ], [ -76.976700, 38.857129 ], [ -76.976320, 38.856879 ], [ -76.976003, 38.856674 ], [ -76.975654, 38.856448 ], [ -76.975445, 38.856315 ], [ -76.975619, 38.856152 ], [ -76.986984, 38.856152 ], [ -76.986989, 38.856189 ], [ -76.987011, 38.856302 ], [ -76.987016, 38.856331 ], [ -76.987075, 38.856649 ], [ -76.987113, 38.856862 ], [ -76.987123, 38.856954 ], [ -76.987150, 38.857104 ], [ -76.987161, 38.857192 ], [ -76.987172, 38.857230 ], [ -76.987193, 38.857301 ], [ -76.987220, 38.857359 ], [ -76.987236, 38.857384 ], [ -76.987386, 38.857614 ], [ -76.987585, 38.857910 ], [ -76.987601, 38.857931 ], [ -76.987617, 38.857948 ], [ -76.987638, 38.857965 ], [ -76.987665, 38.857981 ], [ -76.987687, 38.857994 ], [ -76.987976, 38.858132 ], [ -76.988229, 38.858253 ], [ -76.988336, 38.858307 ], [ -76.988529, 38.858403 ], [ -76.988561, 38.858416 ], [ -76.988599, 38.858424 ], [ -76.988631, 38.858428 ], [ -76.988706, 38.858433 ], [ -76.989082, 38.858445 ], [ -76.990428, 38.858470 ], [ -76.990820, 38.858483 ], [ -76.990879, 38.858483 ], [ -76.990964, 38.858479 ], [ -76.991056, 38.858470 ], [ -76.991093, 38.858466 ], [ -76.991313, 38.858449 ], [ -76.991501, 38.858433 ], [ -76.991549, 38.858433 ], [ -76.991807, 38.858433 ], [ -76.992171, 38.858428 ], [ -76.993046, 38.858417 ], [ -76.993046, 38.862329 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007601", "GEOID": "11001007601", "NAME": "76.01", "NAMELSAD": "Census Tract 76.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1115359, "AWATER": 141529, "INTPTLAT": "+38.8716327", "INTPTLON": "-076.9798185" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.989478, 38.868361 ], [ -76.989403, 38.868432 ], [ -76.989291, 38.868524 ], [ -76.989248, 38.868558 ], [ -76.989071, 38.868695 ], [ -76.988969, 38.868771 ], [ -76.988862, 38.868846 ], [ -76.988711, 38.868942 ], [ -76.988593, 38.869013 ], [ -76.988497, 38.869067 ], [ -76.988481, 38.869075 ], [ -76.988416, 38.869109 ], [ -76.988352, 38.869138 ], [ -76.988475, 38.869314 ], [ -76.988550, 38.869414 ], [ -76.988577, 38.869451 ], [ -76.988593, 38.869468 ], [ -76.988845, 38.869811 ], [ -76.989221, 38.870274 ], [ -76.989430, 38.870512 ], [ -76.989564, 38.870679 ], [ -76.990101, 38.871348 ], [ -76.989725, 38.871619 ], [ -76.989682, 38.871648 ], [ -76.989639, 38.871677 ], [ -76.989505, 38.871774 ], [ -76.989253, 38.871957 ], [ -76.988808, 38.872204 ], [ -76.985418, 38.874075 ], [ -76.983953, 38.874927 ], [ -76.978160, 38.876806 ], [ -76.978025, 38.876881 ], [ -76.976625, 38.876175 ], [ -76.976202, 38.876025 ], [ -76.976175, 38.876000 ], [ -76.976159, 38.875987 ], [ -76.974984, 38.875428 ], [ -76.974662, 38.875311 ], [ -76.974410, 38.875223 ], [ -76.973991, 38.875056 ], [ -76.973374, 38.874776 ], [ -76.973133, 38.874684 ], [ -76.972913, 38.874584 ], [ -76.972677, 38.874484 ], [ -76.972505, 38.874413 ], [ -76.972269, 38.874309 ], [ -76.971331, 38.873908 ], [ -76.971111, 38.873557 ], [ -76.970993, 38.873369 ], [ -76.970982, 38.873348 ], [ -76.970960, 38.873302 ], [ -76.970955, 38.873281 ], [ -76.970950, 38.873260 ], [ -76.970939, 38.873214 ], [ -76.970934, 38.873173 ], [ -76.970934, 38.872759 ], [ -76.970934, 38.872271 ], [ -76.970934, 38.871957 ], [ -76.970934, 38.871523 ], [ -76.970934, 38.870817 ], [ -76.970934, 38.870742 ], [ -76.970939, 38.870353 ], [ -76.970934, 38.869986 ], [ -76.970939, 38.869552 ], [ -76.970939, 38.869472 ], [ -76.970934, 38.869217 ], [ -76.970934, 38.868842 ], [ -76.970939, 38.868816 ], [ -76.970939, 38.868762 ], [ -76.970934, 38.868737 ], [ -76.970918, 38.868666 ], [ -76.970880, 38.868578 ], [ -76.970794, 38.868432 ], [ -76.970687, 38.868248 ], [ -76.970859, 38.868240 ], [ -76.970939, 38.868244 ], [ -76.971025, 38.868244 ], [ -76.971266, 38.868244 ], [ -76.971835, 38.868244 ], [ -76.972184, 38.868244 ], [ -76.972758, 38.868244 ], [ -76.973530, 38.868244 ], [ -76.974093, 38.868244 ], [ -76.974957, 38.868244 ], [ -76.975719, 38.868244 ], [ -76.977097, 38.868240 ], [ -76.977350, 38.868236 ], [ -76.977988, 38.868232 ], [ -76.978894, 38.868232 ], [ -76.979002, 38.868232 ], [ -76.979308, 38.868232 ], [ -76.979951, 38.868228 ], [ -76.980525, 38.868232 ], [ -76.980772, 38.868232 ], [ -76.980858, 38.868232 ], [ -76.981244, 38.868232 ], [ -76.981410, 38.868144 ], [ -76.981507, 38.868094 ], [ -76.982054, 38.867822 ], [ -76.982220, 38.867739 ], [ -76.982671, 38.867518 ], [ -76.983052, 38.867325 ], [ -76.983540, 38.867083 ], [ -76.983867, 38.866920 ], [ -76.984248, 38.866736 ], [ -76.984275, 38.866720 ], [ -76.984296, 38.866707 ], [ -76.984318, 38.866691 ], [ -76.984334, 38.866674 ], [ -76.984345, 38.866653 ], [ -76.984355, 38.866636 ], [ -76.984522, 38.866661 ], [ -76.985123, 38.866774 ], [ -76.987054, 38.867125 ], [ -76.987156, 38.867142 ], [ -76.987703, 38.867242 ], [ -76.988046, 38.867300 ], [ -76.988352, 38.867359 ], [ -76.988620, 38.867417 ], [ -76.988706, 38.867513 ], [ -76.988717, 38.867534 ], [ -76.988899, 38.867839 ], [ -76.988915, 38.867868 ], [ -76.988947, 38.867919 ], [ -76.988974, 38.867952 ], [ -76.989006, 38.867985 ], [ -76.989039, 38.868023 ], [ -76.989355, 38.868265 ], [ -76.989478, 38.868361 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007605", "GEOID": "11001007605", "NAME": "76.05", "NAMELSAD": "Census Tract 76.05", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 453794, "AWATER": 0, "INTPTLAT": "+38.8660433", "INTPTLON": "-076.9752566" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.968766, 38.860663 ], [ -76.968831, 38.860726 ], [ -76.969163, 38.861031 ], [ -76.969228, 38.861093 ], [ -76.969367, 38.861223 ], [ -76.969485, 38.861327 ], [ -76.969576, 38.861419 ], [ -76.969603, 38.861440 ], [ -76.969625, 38.861465 ], [ -76.969652, 38.861486 ], [ -76.969694, 38.861532 ], [ -76.969780, 38.861607 ], [ -76.969866, 38.861682 ], [ -76.969888, 38.861699 ], [ -76.969909, 38.861716 ], [ -76.969931, 38.861733 ], [ -76.969968, 38.861758 ], [ -76.970038, 38.861808 ], [ -76.970150, 38.861879 ], [ -76.970231, 38.861925 ], [ -76.970311, 38.861966 ], [ -76.970488, 38.862046 ], [ -76.970526, 38.862063 ], [ -76.970564, 38.862079 ], [ -76.970751, 38.862171 ], [ -76.970982, 38.862271 ], [ -76.971186, 38.862363 ], [ -76.971502, 38.862509 ], [ -76.971835, 38.862664 ], [ -76.972049, 38.862756 ], [ -76.972141, 38.862798 ], [ -76.972463, 38.862936 ], [ -76.972688, 38.863032 ], [ -76.972709, 38.863040 ], [ -76.972817, 38.863082 ], [ -76.973214, 38.863236 ], [ -76.973348, 38.863286 ], [ -76.973712, 38.863433 ], [ -76.973959, 38.863533 ], [ -76.974201, 38.863629 ], [ -76.974614, 38.863800 ], [ -76.975011, 38.863984 ], [ -76.975102, 38.864026 ], [ -76.975526, 38.864230 ], [ -76.976223, 38.864569 ], [ -76.976636, 38.864765 ], [ -76.976717, 38.864803 ], [ -76.976743, 38.864815 ], [ -76.977242, 38.865053 ], [ -76.977693, 38.865270 ], [ -76.977795, 38.865321 ], [ -76.977865, 38.865350 ], [ -76.977940, 38.865379 ], [ -76.978047, 38.865417 ], [ -76.978090, 38.865433 ], [ -76.978181, 38.865463 ], [ -76.978353, 38.865517 ], [ -76.978444, 38.865546 ], [ -76.978487, 38.865559 ], [ -76.978616, 38.865588 ], [ -76.978911, 38.865646 ], [ -76.979012, 38.865667 ], [ -76.979350, 38.865730 ], [ -76.979458, 38.865747 ], [ -76.979544, 38.865763 ], [ -76.979951, 38.865834 ], [ -76.980788, 38.865989 ], [ -76.981915, 38.866189 ], [ -76.982226, 38.866248 ], [ -76.983181, 38.866419 ], [ -76.983637, 38.866503 ], [ -76.984355, 38.866636 ], [ -76.984345, 38.866653 ], [ -76.984334, 38.866674 ], [ -76.984318, 38.866691 ], [ -76.984296, 38.866707 ], [ -76.984275, 38.866720 ], [ -76.984248, 38.866736 ], [ -76.983867, 38.866920 ], [ -76.983540, 38.867083 ], [ -76.983052, 38.867325 ], [ -76.982671, 38.867518 ], [ -76.982220, 38.867739 ], [ -76.982054, 38.867822 ], [ -76.981507, 38.868094 ], [ -76.981410, 38.868144 ], [ -76.981244, 38.868232 ], [ -76.980858, 38.868232 ], [ -76.980772, 38.868232 ], [ -76.980525, 38.868232 ], [ -76.979951, 38.868228 ], [ -76.979308, 38.868232 ], [ -76.979002, 38.868232 ], [ -76.978894, 38.868232 ], [ -76.977988, 38.868232 ], [ -76.977350, 38.868236 ], [ -76.977097, 38.868240 ], [ -76.975719, 38.868244 ], [ -76.974957, 38.868244 ], [ -76.974093, 38.868244 ], [ -76.973530, 38.868244 ], [ -76.972758, 38.868244 ], [ -76.972184, 38.868244 ], [ -76.971835, 38.868244 ], [ -76.971266, 38.868244 ], [ -76.971025, 38.868244 ], [ -76.970939, 38.868244 ], [ -76.970859, 38.868240 ], [ -76.970687, 38.868248 ], [ -76.970633, 38.868152 ], [ -76.970531, 38.867990 ], [ -76.970505, 38.867939 ], [ -76.970446, 38.867835 ], [ -76.970419, 38.867785 ], [ -76.970344, 38.867622 ], [ -76.970306, 38.867513 ], [ -76.970285, 38.867459 ], [ -76.970263, 38.867396 ], [ -76.970236, 38.867279 ], [ -76.970220, 38.867213 ], [ -76.970193, 38.867087 ], [ -76.970188, 38.867025 ], [ -76.970177, 38.866962 ], [ -76.970172, 38.866833 ], [ -76.970167, 38.866716 ], [ -76.970172, 38.866594 ], [ -76.970172, 38.866536 ], [ -76.970183, 38.866436 ], [ -76.970193, 38.866356 ], [ -76.970209, 38.866277 ], [ -76.970226, 38.866185 ], [ -76.970242, 38.866135 ], [ -76.970268, 38.866035 ], [ -76.970301, 38.865935 ], [ -76.970338, 38.865838 ], [ -76.970360, 38.865788 ], [ -76.970381, 38.865738 ], [ -76.970408, 38.865680 ], [ -76.970483, 38.865534 ], [ -76.970515, 38.865475 ], [ -76.970531, 38.865446 ], [ -76.970596, 38.865354 ], [ -76.970639, 38.865270 ], [ -76.970682, 38.865187 ], [ -76.970703, 38.865145 ], [ -76.970719, 38.865103 ], [ -76.970751, 38.865020 ], [ -76.970773, 38.864932 ], [ -76.970800, 38.864828 ], [ -76.970805, 38.864773 ], [ -76.970816, 38.864719 ], [ -76.970821, 38.864615 ], [ -76.970821, 38.864560 ], [ -76.970816, 38.864452 ], [ -76.970810, 38.864402 ], [ -76.970805, 38.864347 ], [ -76.970794, 38.864297 ], [ -76.970778, 38.864243 ], [ -76.970767, 38.864197 ], [ -76.970757, 38.864155 ], [ -76.970735, 38.864093 ], [ -76.970692, 38.863992 ], [ -76.970671, 38.863946 ], [ -76.970644, 38.863896 ], [ -76.970590, 38.863800 ], [ -76.970531, 38.863708 ], [ -76.970488, 38.863646 ], [ -76.970446, 38.863583 ], [ -76.970247, 38.863282 ], [ -76.970075, 38.863027 ], [ -76.970000, 38.862906 ], [ -76.969764, 38.862555 ], [ -76.969539, 38.862221 ], [ -76.969442, 38.862071 ], [ -76.969410, 38.862008 ], [ -76.969394, 38.861975 ], [ -76.969367, 38.861908 ], [ -76.969351, 38.861858 ], [ -76.969324, 38.861837 ], [ -76.969308, 38.861812 ], [ -76.969287, 38.861787 ], [ -76.969260, 38.861749 ], [ -76.969180, 38.861582 ], [ -76.968911, 38.861002 ], [ -76.968766, 38.860663 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007504", "GEOID": "11001007504", "NAME": "75.04", "NAMELSAD": "Census Tract 75.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 764081, "AWATER": 0, "INTPTLAT": "+38.8609955", "INTPTLON": "-076.9796257" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.988030, 38.860200 ], [ -76.987971, 38.860258 ], [ -76.987826, 38.860388 ], [ -76.987751, 38.860463 ], [ -76.987719, 38.860484 ], [ -76.987687, 38.860500 ], [ -76.987655, 38.860513 ], [ -76.987617, 38.860521 ], [ -76.987574, 38.860521 ], [ -76.987016, 38.860521 ], [ -76.986904, 38.860521 ], [ -76.986249, 38.860525 ], [ -76.986212, 38.860525 ], [ -76.985364, 38.860525 ], [ -76.984828, 38.860525 ], [ -76.983867, 38.860525 ], [ -76.983803, 38.860525 ], [ -76.983663, 38.860530 ], [ -76.983663, 38.860605 ], [ -76.983663, 38.860626 ], [ -76.983658, 38.860651 ], [ -76.983653, 38.860672 ], [ -76.983647, 38.860692 ], [ -76.983637, 38.860713 ], [ -76.983626, 38.860734 ], [ -76.983610, 38.860755 ], [ -76.983594, 38.860776 ], [ -76.983572, 38.860793 ], [ -76.983556, 38.860809 ], [ -76.983497, 38.860847 ], [ -76.983438, 38.860889 ], [ -76.983363, 38.860947 ], [ -76.983325, 38.860976 ], [ -76.983256, 38.861039 ], [ -76.983224, 38.861073 ], [ -76.983191, 38.861106 ], [ -76.982961, 38.861315 ], [ -76.982945, 38.861332 ], [ -76.982923, 38.861348 ], [ -76.982896, 38.861361 ], [ -76.982875, 38.861369 ], [ -76.982848, 38.861377 ], [ -76.982848, 38.861403 ], [ -76.982843, 38.861469 ], [ -76.982832, 38.861557 ], [ -76.982789, 38.861916 ], [ -76.982709, 38.862610 ], [ -76.982682, 38.862777 ], [ -76.982666, 38.862877 ], [ -76.982676, 38.863132 ], [ -76.982687, 38.863387 ], [ -76.982692, 38.863516 ], [ -76.982692, 38.863558 ], [ -76.982682, 38.863595 ], [ -76.982676, 38.863616 ], [ -76.982639, 38.863733 ], [ -76.982532, 38.864088 ], [ -76.982419, 38.864468 ], [ -76.982204, 38.865208 ], [ -76.982167, 38.865325 ], [ -76.983438, 38.865559 ], [ -76.983331, 38.865918 ], [ -76.983181, 38.866419 ], [ -76.982226, 38.866248 ], [ -76.981915, 38.866189 ], [ -76.980788, 38.865989 ], [ -76.979951, 38.865834 ], [ -76.979544, 38.865763 ], [ -76.979458, 38.865747 ], [ -76.979350, 38.865730 ], [ -76.979012, 38.865667 ], [ -76.978911, 38.865646 ], [ -76.978616, 38.865588 ], [ -76.978487, 38.865559 ], [ -76.978444, 38.865546 ], [ -76.978353, 38.865517 ], [ -76.978181, 38.865463 ], [ -76.978090, 38.865433 ], [ -76.978047, 38.865417 ], [ -76.977940, 38.865379 ], [ -76.977865, 38.865350 ], [ -76.977795, 38.865321 ], [ -76.977693, 38.865270 ], [ -76.977242, 38.865053 ], [ -76.976743, 38.864815 ], [ -76.976717, 38.864803 ], [ -76.976636, 38.864765 ], [ -76.976223, 38.864569 ], [ -76.975526, 38.864230 ], [ -76.975102, 38.864026 ], [ -76.975011, 38.863984 ], [ -76.974614, 38.863800 ], [ -76.974201, 38.863629 ], [ -76.973959, 38.863533 ], [ -76.973712, 38.863433 ], [ -76.973348, 38.863286 ], [ -76.974898, 38.861691 ], [ -76.975735, 38.860818 ], [ -76.973621, 38.859439 ], [ -76.974421, 38.858733 ], [ -76.974474, 38.858604 ], [ -76.975220, 38.857902 ], [ -76.974995, 38.857793 ], [ -76.975027, 38.857764 ], [ -76.974286, 38.857388 ], [ -76.975070, 38.856657 ], [ -76.975209, 38.856528 ], [ -76.975445, 38.856315 ], [ -76.975654, 38.856448 ], [ -76.976003, 38.856674 ], [ -76.976320, 38.856879 ], [ -76.976700, 38.857129 ], [ -76.976759, 38.857163 ], [ -76.976824, 38.857192 ], [ -76.976856, 38.857204 ], [ -76.976904, 38.857221 ], [ -76.977022, 38.857255 ], [ -76.977097, 38.857271 ], [ -76.977167, 38.857284 ], [ -76.977226, 38.857292 ], [ -76.977317, 38.857301 ], [ -76.977360, 38.857305 ], [ -76.977752, 38.857305 ], [ -76.978015, 38.857305 ], [ -76.978111, 38.857305 ], [ -76.978449, 38.857301 ], [ -76.978755, 38.857305 ], [ -76.979023, 38.857305 ], [ -76.979635, 38.857305 ], [ -76.980160, 38.857305 ], [ -76.980461, 38.857296 ], [ -76.980547, 38.857292 ], [ -76.980633, 38.857284 ], [ -76.980793, 38.857255 ], [ -76.981121, 38.857200 ], [ -76.982242, 38.857004 ], [ -76.982478, 38.856962 ], [ -76.982891, 38.856900 ], [ -76.982934, 38.856895 ], [ -76.982977, 38.856895 ], [ -76.983020, 38.856900 ], [ -76.983063, 38.856908 ], [ -76.983100, 38.856920 ], [ -76.983519, 38.857175 ], [ -76.983599, 38.857221 ], [ -76.983701, 38.857296 ], [ -76.983835, 38.857372 ], [ -76.983894, 38.857405 ], [ -76.984146, 38.857564 ], [ -76.984313, 38.857668 ], [ -76.984586, 38.857860 ], [ -76.984828, 38.858036 ], [ -76.985235, 38.858320 ], [ -76.985530, 38.858520 ], [ -76.985670, 38.858621 ], [ -76.985766, 38.858687 ], [ -76.985836, 38.858733 ], [ -76.986115, 38.858930 ], [ -76.986297, 38.859059 ], [ -76.986372, 38.859113 ], [ -76.986453, 38.859168 ], [ -76.986657, 38.859314 ], [ -76.986936, 38.859498 ], [ -76.987054, 38.859577 ], [ -76.987402, 38.859790 ], [ -76.987815, 38.860062 ], [ -76.987837, 38.860070 ], [ -76.987891, 38.860108 ], [ -76.988030, 38.860200 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007708", "GEOID": "11001007708", "NAME": "77.08", "NAMELSAD": "Census Tract 77.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 745809, "AWATER": 129100, "INTPTLAT": "+38.8871944", "INTPTLON": "-076.9606349" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.971754, 38.880218 ], [ -76.971449, 38.880631 ], [ -76.970719, 38.881437 ], [ -76.969603, 38.882661 ], [ -76.966787, 38.885237 ], [ -76.963879, 38.889125 ], [ -76.963429, 38.889730 ], [ -76.963381, 38.889797 ], [ -76.963364, 38.889868 ], [ -76.962624, 38.889860 ], [ -76.962436, 38.889855 ], [ -76.961562, 38.889855 ], [ -76.961229, 38.889851 ], [ -76.959803, 38.889851 ], [ -76.958585, 38.889822 ], [ -76.958252, 38.889826 ], [ -76.958102, 38.889818 ], [ -76.957340, 38.889834 ], [ -76.957195, 38.889834 ], [ -76.956745, 38.889830 ], [ -76.956713, 38.889830 ], [ -76.955913, 38.889826 ], [ -76.954599, 38.889814 ], [ -76.953692, 38.889818 ], [ -76.953102, 38.889822 ], [ -76.953000, 38.889822 ], [ -76.953076, 38.889726 ], [ -76.953177, 38.889596 ], [ -76.953789, 38.888774 ], [ -76.953886, 38.888670 ], [ -76.953923, 38.888619 ], [ -76.953955, 38.888582 ], [ -76.954240, 38.888185 ], [ -76.954406, 38.887947 ], [ -76.954578, 38.887709 ], [ -76.954669, 38.887584 ], [ -76.955152, 38.886907 ], [ -76.955227, 38.886799 ], [ -76.955436, 38.886507 ], [ -76.955801, 38.885997 ], [ -76.956133, 38.885530 ], [ -76.956825, 38.884561 ], [ -76.956954, 38.884381 ], [ -76.957029, 38.884277 ], [ -76.957233, 38.883993 ], [ -76.957367, 38.883809 ], [ -76.957490, 38.883630 ], [ -76.957512, 38.883600 ], [ -76.957689, 38.883358 ], [ -76.958064, 38.882832 ], [ -76.958150, 38.882707 ], [ -76.958166, 38.882690 ], [ -76.958220, 38.882611 ], [ -76.958333, 38.882456 ], [ -76.958676, 38.881980 ], [ -76.958869, 38.881704 ], [ -76.960393, 38.881492 ], [ -76.961090, 38.881608 ], [ -76.961707, 38.881709 ], [ -76.962254, 38.881980 ], [ -76.962914, 38.882005 ], [ -76.963107, 38.882009 ], [ -76.963547, 38.881788 ], [ -76.963681, 38.881775 ], [ -76.963761, 38.881734 ], [ -76.963815, 38.881679 ], [ -76.963890, 38.881579 ], [ -76.963922, 38.881500 ], [ -76.963971, 38.881416 ], [ -76.964003, 38.881366 ], [ -76.964040, 38.881316 ], [ -76.964099, 38.881274 ], [ -76.964153, 38.881237 ], [ -76.964239, 38.881199 ], [ -76.964287, 38.881191 ], [ -76.964518, 38.881199 ], [ -76.964641, 38.881258 ], [ -76.964791, 38.881262 ], [ -76.964979, 38.881258 ], [ -76.965038, 38.881228 ], [ -76.965092, 38.881220 ], [ -76.965156, 38.881245 ], [ -76.965258, 38.881304 ], [ -76.965280, 38.881312 ], [ -76.965462, 38.881362 ], [ -76.965564, 38.881375 ], [ -76.965655, 38.881379 ], [ -76.965816, 38.881366 ], [ -76.965848, 38.881358 ], [ -76.966310, 38.881354 ], [ -76.966503, 38.881362 ], [ -76.966637, 38.881341 ], [ -76.966766, 38.881320 ], [ -76.966926, 38.881283 ], [ -76.966991, 38.881253 ], [ -76.967066, 38.881233 ], [ -76.967211, 38.881241 ], [ -76.967248, 38.881274 ], [ -76.967291, 38.881320 ], [ -76.967307, 38.881341 ], [ -76.967377, 38.881375 ], [ -76.967490, 38.881437 ], [ -76.967710, 38.881483 ], [ -76.968144, 38.881341 ], [ -76.969754, 38.880815 ], [ -76.970059, 38.880727 ], [ -76.970397, 38.880623 ], [ -76.970692, 38.880531 ], [ -76.971754, 38.880218 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007709", "GEOID": "11001007709", "NAME": "77.09", "NAMELSAD": "Census Tract 77.09", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 828872, "AWATER": 82685, "INTPTLAT": "+38.8798620", "INTPTLON": "-076.9675363" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.958869, 38.881704 ], [ -76.959089, 38.881400 ], [ -76.959304, 38.881095 ], [ -76.959636, 38.880627 ], [ -76.959921, 38.880235 ], [ -76.960602, 38.879282 ], [ -76.961133, 38.878543 ], [ -76.961213, 38.878431 ], [ -76.961251, 38.878376 ], [ -76.961283, 38.878339 ], [ -76.961315, 38.878301 ], [ -76.961385, 38.878226 ], [ -76.961460, 38.878155 ], [ -76.961498, 38.878121 ], [ -76.961541, 38.878088 ], [ -76.961583, 38.878059 ], [ -76.961626, 38.878025 ], [ -76.961675, 38.877996 ], [ -76.961777, 38.877934 ], [ -76.961830, 38.877904 ], [ -76.961938, 38.877850 ], [ -76.962013, 38.877808 ], [ -76.962152, 38.877741 ], [ -76.962705, 38.877470 ], [ -76.962774, 38.877437 ], [ -76.962935, 38.877357 ], [ -76.963230, 38.877207 ], [ -76.963515, 38.877065 ], [ -76.963617, 38.877011 ], [ -76.963842, 38.876902 ], [ -76.964614, 38.876514 ], [ -76.964808, 38.876422 ], [ -76.964915, 38.876363 ], [ -76.964781, 38.876271 ], [ -76.964765, 38.876242 ], [ -76.964759, 38.876196 ], [ -76.964765, 38.875482 ], [ -76.964765, 38.875102 ], [ -76.964765, 38.874952 ], [ -76.964765, 38.874822 ], [ -76.964765, 38.874613 ], [ -76.964765, 38.874476 ], [ -76.964765, 38.874267 ], [ -76.964765, 38.874192 ], [ -76.964765, 38.873816 ], [ -76.964765, 38.873749 ], [ -76.964765, 38.873707 ], [ -76.964765, 38.873010 ], [ -76.964765, 38.872935 ], [ -76.964759, 38.872676 ], [ -76.964765, 38.872007 ], [ -76.964765, 38.871916 ], [ -76.964765, 38.871799 ], [ -76.964770, 38.871222 ], [ -76.964770, 38.871201 ], [ -76.964770, 38.871089 ], [ -76.964867, 38.871126 ], [ -76.965580, 38.871414 ], [ -76.966100, 38.871627 ], [ -76.966465, 38.871778 ], [ -76.966615, 38.871840 ], [ -76.966819, 38.871920 ], [ -76.967066, 38.872024 ], [ -76.967474, 38.872183 ], [ -76.967672, 38.872266 ], [ -76.967769, 38.872308 ], [ -76.967989, 38.872392 ], [ -76.968466, 38.872592 ], [ -76.968665, 38.872667 ], [ -76.968868, 38.872747 ], [ -76.968965, 38.872780 ], [ -76.969335, 38.872935 ], [ -76.969818, 38.873131 ], [ -76.970526, 38.873523 ], [ -76.971331, 38.873908 ], [ -76.972269, 38.874309 ], [ -76.972505, 38.874413 ], [ -76.972677, 38.874484 ], [ -76.972913, 38.874584 ], [ -76.973133, 38.874684 ], [ -76.973374, 38.874776 ], [ -76.973991, 38.875056 ], [ -76.974410, 38.875223 ], [ -76.974662, 38.875311 ], [ -76.974984, 38.875428 ], [ -76.976159, 38.875987 ], [ -76.976175, 38.876000 ], [ -76.976202, 38.876025 ], [ -76.976625, 38.876175 ], [ -76.978025, 38.876881 ], [ -76.975579, 38.877599 ], [ -76.973294, 38.878389 ], [ -76.972661, 38.878969 ], [ -76.971754, 38.880218 ], [ -76.970692, 38.880531 ], [ -76.970397, 38.880623 ], [ -76.970059, 38.880727 ], [ -76.969754, 38.880815 ], [ -76.968144, 38.881341 ], [ -76.967710, 38.881483 ], [ -76.967490, 38.881437 ], [ -76.967377, 38.881375 ], [ -76.967307, 38.881341 ], [ -76.967291, 38.881320 ], [ -76.967248, 38.881274 ], [ -76.967211, 38.881241 ], [ -76.967066, 38.881233 ], [ -76.966991, 38.881253 ], [ -76.966926, 38.881283 ], [ -76.966766, 38.881320 ], [ -76.966637, 38.881341 ], [ -76.966503, 38.881362 ], [ -76.966310, 38.881354 ], [ -76.965848, 38.881358 ], [ -76.965816, 38.881366 ], [ -76.965655, 38.881379 ], [ -76.965564, 38.881375 ], [ -76.965462, 38.881362 ], [ -76.965280, 38.881312 ], [ -76.965258, 38.881304 ], [ -76.965156, 38.881245 ], [ -76.965092, 38.881220 ], [ -76.965038, 38.881228 ], [ -76.964979, 38.881258 ], [ -76.964791, 38.881262 ], [ -76.964641, 38.881258 ], [ -76.964518, 38.881199 ], [ -76.964287, 38.881191 ], [ -76.964239, 38.881199 ], [ -76.964153, 38.881237 ], [ -76.964099, 38.881274 ], [ -76.964040, 38.881316 ], [ -76.964003, 38.881366 ], [ -76.963971, 38.881416 ], [ -76.963922, 38.881500 ], [ -76.963890, 38.881579 ], [ -76.963815, 38.881679 ], [ -76.963761, 38.881734 ], [ -76.963681, 38.881775 ], [ -76.963547, 38.881788 ], [ -76.963107, 38.882009 ], [ -76.962914, 38.882005 ], [ -76.962254, 38.881980 ], [ -76.961707, 38.881709 ], [ -76.961090, 38.881608 ], [ -76.960393, 38.881492 ], [ -76.958869, 38.881704 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009901", "GEOID": "11001009901", "NAME": "99.01", "NAMELSAD": "Census Tract 99.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2102150, "AWATER": 0, "INTPTLAT": "+38.8753461", "INTPTLON": "-076.9553332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.947384, 38.880104 ], [ -76.947459, 38.880059 ], [ -76.947523, 38.880017 ], [ -76.947609, 38.879963 ], [ -76.947652, 38.879938 ], [ -76.947781, 38.879850 ], [ -76.947861, 38.879792 ], [ -76.947942, 38.879733 ], [ -76.947990, 38.879700 ], [ -76.948076, 38.879633 ], [ -76.948119, 38.879604 ], [ -76.948205, 38.879533 ], [ -76.948248, 38.879495 ], [ -76.948323, 38.879424 ], [ -76.948446, 38.879307 ], [ -76.948467, 38.879278 ], [ -76.948548, 38.879186 ], [ -76.948596, 38.879128 ], [ -76.948693, 38.879003 ], [ -76.948757, 38.878919 ], [ -76.948779, 38.878890 ], [ -76.948816, 38.878831 ], [ -76.948854, 38.878769 ], [ -76.948891, 38.878710 ], [ -76.948972, 38.878543 ], [ -76.949009, 38.878472 ], [ -76.949041, 38.878401 ], [ -76.949068, 38.878326 ], [ -76.949106, 38.878218 ], [ -76.949127, 38.878142 ], [ -76.949149, 38.878071 ], [ -76.949165, 38.877996 ], [ -76.949186, 38.877888 ], [ -76.949192, 38.877821 ], [ -76.949197, 38.877754 ], [ -76.949202, 38.877687 ], [ -76.949202, 38.877616 ], [ -76.949202, 38.877549 ], [ -76.949202, 38.877474 ], [ -76.949192, 38.877361 ], [ -76.949176, 38.877244 ], [ -76.949149, 38.877102 ], [ -76.949117, 38.876961 ], [ -76.949095, 38.876894 ], [ -76.949074, 38.876827 ], [ -76.949063, 38.876789 ], [ -76.949052, 38.876752 ], [ -76.949020, 38.876681 ], [ -76.948966, 38.876535 ], [ -76.948881, 38.876347 ], [ -76.948859, 38.876301 ], [ -76.948795, 38.876175 ], [ -76.948725, 38.876050 ], [ -76.948655, 38.875937 ], [ -76.948623, 38.875883 ], [ -76.948548, 38.875749 ], [ -76.948478, 38.875616 ], [ -76.948382, 38.875432 ], [ -76.948333, 38.875336 ], [ -76.948264, 38.875190 ], [ -76.948226, 38.875090 ], [ -76.948162, 38.874931 ], [ -76.948140, 38.874872 ], [ -76.948135, 38.874843 ], [ -76.948108, 38.874751 ], [ -76.948092, 38.874659 ], [ -76.948081, 38.874563 ], [ -76.948076, 38.874534 ], [ -76.948076, 38.874471 ], [ -76.948076, 38.874409 ], [ -76.948087, 38.874321 ], [ -76.948097, 38.874238 ], [ -76.948113, 38.874154 ], [ -76.948130, 38.874100 ], [ -76.948156, 38.874016 ], [ -76.948194, 38.873937 ], [ -76.948226, 38.873858 ], [ -76.948242, 38.873828 ], [ -76.948323, 38.873682 ], [ -76.948425, 38.873498 ], [ -76.948446, 38.873465 ], [ -76.948564, 38.873248 ], [ -76.948602, 38.873177 ], [ -76.948618, 38.873139 ], [ -76.948623, 38.873118 ], [ -76.948645, 38.873031 ], [ -76.948661, 38.872960 ], [ -76.948677, 38.872876 ], [ -76.948687, 38.872784 ], [ -76.948698, 38.872717 ], [ -76.948693, 38.872646 ], [ -76.948687, 38.872555 ], [ -76.948682, 38.872534 ], [ -76.948671, 38.872442 ], [ -76.948639, 38.872271 ], [ -76.948618, 38.872141 ], [ -76.948575, 38.871928 ], [ -76.948548, 38.871765 ], [ -76.948521, 38.871615 ], [ -76.948510, 38.871506 ], [ -76.948510, 38.871469 ], [ -76.948505, 38.871398 ], [ -76.948505, 38.871310 ], [ -76.948510, 38.871281 ], [ -76.948521, 38.871189 ], [ -76.948532, 38.871130 ], [ -76.948548, 38.871072 ], [ -76.948564, 38.871005 ], [ -76.948586, 38.870942 ], [ -76.948612, 38.870876 ], [ -76.948639, 38.870813 ], [ -76.948671, 38.870750 ], [ -76.948714, 38.870675 ], [ -76.948789, 38.870546 ], [ -76.948827, 38.870495 ], [ -76.949009, 38.870195 ], [ -76.949047, 38.870140 ], [ -76.949117, 38.870036 ], [ -76.949165, 38.869953 ], [ -76.949192, 38.869898 ], [ -76.949224, 38.869840 ], [ -76.949251, 38.869781 ], [ -76.949288, 38.869694 ], [ -76.949304, 38.869635 ], [ -76.949315, 38.869602 ], [ -76.949337, 38.869506 ], [ -76.949363, 38.869376 ], [ -76.949369, 38.869347 ], [ -76.949374, 38.869314 ], [ -76.949385, 38.869213 ], [ -76.949422, 38.868779 ], [ -76.949438, 38.868679 ], [ -76.949449, 38.868612 ], [ -76.949471, 38.868516 ], [ -76.949487, 38.868449 ], [ -76.949492, 38.868420 ], [ -76.949514, 38.868361 ], [ -76.949551, 38.868274 ], [ -76.949594, 38.868186 ], [ -76.949626, 38.868127 ], [ -76.949658, 38.868069 ], [ -76.949680, 38.868040 ], [ -76.949744, 38.867956 ], [ -76.949787, 38.867902 ], [ -76.949841, 38.867848 ], [ -76.949868, 38.867822 ], [ -76.949948, 38.867743 ], [ -76.950012, 38.867693 ], [ -76.950039, 38.867668 ], [ -76.950104, 38.867622 ], [ -76.950179, 38.867576 ], [ -76.950291, 38.867509 ], [ -76.950372, 38.867467 ], [ -76.950495, 38.867413 ], [ -76.950560, 38.867392 ], [ -76.950651, 38.867359 ], [ -76.950715, 38.867338 ], [ -76.950876, 38.867296 ], [ -76.951112, 38.867234 ], [ -76.951236, 38.867208 ], [ -76.951413, 38.867171 ], [ -76.951584, 38.867133 ], [ -76.951751, 38.867096 ], [ -76.951788, 38.867083 ], [ -76.951831, 38.867075 ], [ -76.951954, 38.867037 ], [ -76.952078, 38.867000 ], [ -76.952142, 38.866975 ], [ -76.952206, 38.866950 ], [ -76.952303, 38.866904 ], [ -76.952367, 38.866870 ], [ -76.952432, 38.866837 ], [ -76.952523, 38.866782 ], [ -76.952582, 38.866741 ], [ -76.952662, 38.866674 ], [ -76.952716, 38.866628 ], [ -76.952738, 38.866603 ], [ -76.952759, 38.866586 ], [ -76.952791, 38.866553 ], [ -76.952845, 38.866494 ], [ -76.952877, 38.866457 ], [ -76.952904, 38.866419 ], [ -76.952995, 38.866281 ], [ -76.953306, 38.866402 ], [ -76.954041, 38.866703 ], [ -76.954320, 38.866820 ], [ -76.955329, 38.867229 ], [ -76.956106, 38.867543 ], [ -76.956723, 38.867797 ], [ -76.957217, 38.868002 ], [ -76.957641, 38.868177 ], [ -76.958300, 38.868453 ], [ -76.958413, 38.868495 ], [ -76.958483, 38.868524 ], [ -76.958563, 38.868553 ], [ -76.958660, 38.868591 ], [ -76.959658, 38.868992 ], [ -76.960199, 38.869217 ], [ -76.960382, 38.869293 ], [ -76.961256, 38.869648 ], [ -76.961991, 38.869948 ], [ -76.963086, 38.870399 ], [ -76.963263, 38.870470 ], [ -76.964770, 38.871089 ], [ -76.964770, 38.871201 ], [ -76.964770, 38.871222 ], [ -76.964765, 38.871799 ], [ -76.964765, 38.871916 ], [ -76.964765, 38.872007 ], [ -76.964759, 38.872676 ], [ -76.964765, 38.872935 ], [ -76.964765, 38.873010 ], [ -76.964765, 38.873707 ], [ -76.964765, 38.873749 ], [ -76.964765, 38.873816 ], [ -76.964765, 38.874192 ], [ -76.964765, 38.874267 ], [ -76.964765, 38.874476 ], [ -76.964765, 38.874613 ], [ -76.964765, 38.874822 ], [ -76.964765, 38.874952 ], [ -76.964765, 38.875102 ], [ -76.964765, 38.875482 ], [ -76.964759, 38.876196 ], [ -76.964765, 38.876242 ], [ -76.964781, 38.876271 ], [ -76.964915, 38.876363 ], [ -76.964808, 38.876422 ], [ -76.964614, 38.876514 ], [ -76.963842, 38.876902 ], [ -76.963617, 38.877011 ], [ -76.963515, 38.877065 ], [ -76.963230, 38.877207 ], [ -76.962935, 38.877357 ], [ -76.962774, 38.877437 ], [ -76.962705, 38.877470 ], [ -76.962152, 38.877741 ], [ -76.962013, 38.877808 ], [ -76.961938, 38.877850 ], [ -76.961830, 38.877904 ], [ -76.961777, 38.877934 ], [ -76.961675, 38.877996 ], [ -76.961626, 38.878025 ], [ -76.961583, 38.878059 ], [ -76.961541, 38.878088 ], [ -76.961498, 38.878121 ], [ -76.961460, 38.878155 ], [ -76.961385, 38.878226 ], [ -76.961315, 38.878301 ], [ -76.961283, 38.878339 ], [ -76.961251, 38.878376 ], [ -76.961213, 38.878431 ], [ -76.961133, 38.878543 ], [ -76.960602, 38.879282 ], [ -76.959921, 38.880235 ], [ -76.959636, 38.880627 ], [ -76.959304, 38.881095 ], [ -76.959089, 38.881400 ], [ -76.958869, 38.881704 ], [ -76.958676, 38.881980 ], [ -76.958333, 38.882456 ], [ -76.958220, 38.882611 ], [ -76.958166, 38.882690 ], [ -76.958150, 38.882707 ], [ -76.958064, 38.882832 ], [ -76.957689, 38.883358 ], [ -76.957512, 38.883600 ], [ -76.957490, 38.883630 ], [ -76.957351, 38.883630 ], [ -76.956600, 38.883630 ], [ -76.956262, 38.883630 ], [ -76.954771, 38.883630 ], [ -76.953317, 38.883625 ], [ -76.953274, 38.883625 ], [ -76.953177, 38.883621 ], [ -76.953086, 38.883613 ], [ -76.953000, 38.883600 ], [ -76.952952, 38.883592 ], [ -76.952190, 38.883479 ], [ -76.951772, 38.883417 ], [ -76.951445, 38.883366 ], [ -76.951316, 38.883350 ], [ -76.950839, 38.883279 ], [ -76.950388, 38.883212 ], [ -76.949782, 38.883120 ], [ -76.949519, 38.883083 ], [ -76.948682, 38.882961 ], [ -76.948049, 38.882870 ], [ -76.947926, 38.882853 ], [ -76.947808, 38.882840 ], [ -76.947690, 38.882836 ], [ -76.947566, 38.882832 ], [ -76.947448, 38.882832 ], [ -76.947384, 38.882830 ], [ -76.947384, 38.880104 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007604", "GEOID": "11001007604", "NAME": "76.04", "NAMELSAD": "Census Tract 76.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1369580, "AWATER": 0, "INTPTLAT": "+38.8660921", "INTPTLON": "-076.9638007" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.971331, 38.873908 ], [ -76.970526, 38.873523 ], [ -76.969818, 38.873131 ], [ -76.969335, 38.872935 ], [ -76.968965, 38.872780 ], [ -76.968868, 38.872747 ], [ -76.968665, 38.872667 ], [ -76.968466, 38.872592 ], [ -76.967989, 38.872392 ], [ -76.967769, 38.872308 ], [ -76.967672, 38.872266 ], [ -76.967474, 38.872183 ], [ -76.967066, 38.872024 ], [ -76.966819, 38.871920 ], [ -76.966615, 38.871840 ], [ -76.966465, 38.871778 ], [ -76.966100, 38.871627 ], [ -76.965580, 38.871414 ], [ -76.964867, 38.871126 ], [ -76.964770, 38.871089 ], [ -76.963263, 38.870470 ], [ -76.963086, 38.870399 ], [ -76.961991, 38.869948 ], [ -76.961256, 38.869648 ], [ -76.960382, 38.869293 ], [ -76.960199, 38.869217 ], [ -76.959658, 38.868992 ], [ -76.958660, 38.868591 ], [ -76.958563, 38.868553 ], [ -76.958483, 38.868524 ], [ -76.958413, 38.868495 ], [ -76.958300, 38.868453 ], [ -76.957641, 38.868177 ], [ -76.957217, 38.868002 ], [ -76.956723, 38.867797 ], [ -76.956106, 38.867543 ], [ -76.955329, 38.867229 ], [ -76.954320, 38.866820 ], [ -76.954041, 38.866703 ], [ -76.953306, 38.866402 ], [ -76.952995, 38.866281 ], [ -76.952217, 38.865964 ], [ -76.951600, 38.865709 ], [ -76.951321, 38.865596 ], [ -76.951337, 38.865584 ], [ -76.951380, 38.865559 ], [ -76.951439, 38.865529 ], [ -76.951482, 38.865513 ], [ -76.951531, 38.865500 ], [ -76.952035, 38.865316 ], [ -76.952212, 38.865258 ], [ -76.952936, 38.864999 ], [ -76.953263, 38.864886 ], [ -76.953478, 38.864811 ], [ -76.953730, 38.864719 ], [ -76.953837, 38.864681 ], [ -76.953998, 38.864627 ], [ -76.954980, 38.864281 ], [ -76.955098, 38.864243 ], [ -76.955211, 38.864197 ], [ -76.955270, 38.864172 ], [ -76.955323, 38.864147 ], [ -76.955431, 38.864097 ], [ -76.955484, 38.864067 ], [ -76.955575, 38.864013 ], [ -76.955634, 38.863971 ], [ -76.955704, 38.863925 ], [ -76.955742, 38.863896 ], [ -76.955779, 38.863867 ], [ -76.955817, 38.863838 ], [ -76.955854, 38.863804 ], [ -76.955892, 38.863771 ], [ -76.955940, 38.863721 ], [ -76.955962, 38.863704 ], [ -76.955999, 38.863666 ], [ -76.956015, 38.863646 ], [ -76.956031, 38.863629 ], [ -76.956058, 38.863591 ], [ -76.956310, 38.863240 ], [ -76.956595, 38.862856 ], [ -76.956616, 38.862827 ], [ -76.956648, 38.862739 ], [ -76.956659, 38.862697 ], [ -76.956670, 38.862589 ], [ -76.956863, 38.862526 ], [ -76.956949, 38.862497 ], [ -76.956981, 38.862480 ], [ -76.957088, 38.862413 ], [ -76.957142, 38.862380 ], [ -76.957174, 38.862363 ], [ -76.957238, 38.862334 ], [ -76.957303, 38.862305 ], [ -76.957399, 38.862267 ], [ -76.957485, 38.862242 ], [ -76.957571, 38.862221 ], [ -76.957673, 38.862196 ], [ -76.958279, 38.862054 ], [ -76.958445, 38.862012 ], [ -76.958542, 38.861996 ], [ -76.958692, 38.861966 ], [ -76.958901, 38.861933 ], [ -76.958998, 38.861925 ], [ -76.959019, 38.861921 ], [ -76.959078, 38.861916 ], [ -76.959239, 38.861904 ], [ -76.960167, 38.861829 ], [ -76.960489, 38.861804 ], [ -76.960623, 38.861795 ], [ -76.961036, 38.861762 ], [ -76.961487, 38.861728 ], [ -76.961728, 38.861707 ], [ -76.961986, 38.861687 ], [ -76.962061, 38.861678 ], [ -76.962136, 38.861666 ], [ -76.962206, 38.861649 ], [ -76.962276, 38.861628 ], [ -76.963102, 38.861332 ], [ -76.963193, 38.861298 ], [ -76.963418, 38.861219 ], [ -76.964212, 38.860935 ], [ -76.964770, 38.860718 ], [ -76.964883, 38.860676 ], [ -76.964920, 38.860663 ], [ -76.965038, 38.860617 ], [ -76.965752, 38.860342 ], [ -76.965805, 38.860321 ], [ -76.966454, 38.860095 ], [ -76.966680, 38.860012 ], [ -76.966905, 38.859915 ], [ -76.967007, 38.859874 ], [ -76.967114, 38.859819 ], [ -76.967329, 38.859690 ], [ -76.967629, 38.859485 ], [ -76.967699, 38.859435 ], [ -76.967806, 38.859335 ], [ -76.968080, 38.859038 ], [ -76.968107, 38.859005 ], [ -76.968192, 38.858905 ], [ -76.968198, 38.858967 ], [ -76.968203, 38.859047 ], [ -76.968209, 38.859122 ], [ -76.968187, 38.859585 ], [ -76.968160, 38.859987 ], [ -76.968155, 38.860116 ], [ -76.968144, 38.860216 ], [ -76.968209, 38.860254 ], [ -76.968305, 38.860304 ], [ -76.968348, 38.860333 ], [ -76.968396, 38.860362 ], [ -76.968482, 38.860421 ], [ -76.968525, 38.860450 ], [ -76.968568, 38.860484 ], [ -76.968766, 38.860663 ], [ -76.968911, 38.861002 ], [ -76.969180, 38.861582 ], [ -76.969260, 38.861749 ], [ -76.969287, 38.861787 ], [ -76.969308, 38.861812 ], [ -76.969324, 38.861837 ], [ -76.969351, 38.861858 ], [ -76.969367, 38.861908 ], [ -76.969394, 38.861975 ], [ -76.969410, 38.862008 ], [ -76.969442, 38.862071 ], [ -76.969539, 38.862221 ], [ -76.969764, 38.862555 ], [ -76.970000, 38.862906 ], [ -76.970075, 38.863027 ], [ -76.970247, 38.863282 ], [ -76.970446, 38.863583 ], [ -76.970488, 38.863646 ], [ -76.970531, 38.863708 ], [ -76.970590, 38.863800 ], [ -76.970644, 38.863896 ], [ -76.970671, 38.863946 ], [ -76.970692, 38.863992 ], [ -76.970735, 38.864093 ], [ -76.970757, 38.864155 ], [ -76.970767, 38.864197 ], [ -76.970778, 38.864243 ], [ -76.970794, 38.864297 ], [ -76.970805, 38.864347 ], [ -76.970810, 38.864402 ], [ -76.970816, 38.864452 ], [ -76.970821, 38.864560 ], [ -76.970821, 38.864615 ], [ -76.970816, 38.864719 ], [ -76.970805, 38.864773 ], [ -76.970800, 38.864828 ], [ -76.970773, 38.864932 ], [ -76.970751, 38.865020 ], [ -76.970719, 38.865103 ], [ -76.970703, 38.865145 ], [ -76.970682, 38.865187 ], [ -76.970639, 38.865270 ], [ -76.970596, 38.865354 ], [ -76.970531, 38.865446 ], [ -76.970515, 38.865475 ], [ -76.970483, 38.865534 ], [ -76.970408, 38.865680 ], [ -76.970381, 38.865738 ], [ -76.970360, 38.865788 ], [ -76.970338, 38.865838 ], [ -76.970301, 38.865935 ], [ -76.970268, 38.866035 ], [ -76.970242, 38.866135 ], [ -76.970226, 38.866185 ], [ -76.970209, 38.866277 ], [ -76.970193, 38.866356 ], [ -76.970183, 38.866436 ], [ -76.970172, 38.866536 ], [ -76.970172, 38.866594 ], [ -76.970167, 38.866716 ], [ -76.970172, 38.866833 ], [ -76.970177, 38.866962 ], [ -76.970188, 38.867025 ], [ -76.970193, 38.867087 ], [ -76.970220, 38.867213 ], [ -76.970236, 38.867279 ], [ -76.970263, 38.867396 ], [ -76.970285, 38.867459 ], [ -76.970306, 38.867513 ], [ -76.970344, 38.867622 ], [ -76.970419, 38.867785 ], [ -76.970446, 38.867835 ], [ -76.970505, 38.867939 ], [ -76.970531, 38.867990 ], [ -76.970633, 38.868152 ], [ -76.970687, 38.868248 ], [ -76.970794, 38.868432 ], [ -76.970880, 38.868578 ], [ -76.970918, 38.868666 ], [ -76.970934, 38.868737 ], [ -76.970939, 38.868762 ], [ -76.970939, 38.868816 ], [ -76.970934, 38.868842 ], [ -76.970934, 38.869217 ], [ -76.970939, 38.869472 ], [ -76.970939, 38.869552 ], [ -76.970934, 38.869986 ], [ -76.970939, 38.870353 ], [ -76.970934, 38.870742 ], [ -76.970934, 38.870817 ], [ -76.970934, 38.871523 ], [ -76.970934, 38.871957 ], [ -76.970934, 38.872271 ], [ -76.970934, 38.872759 ], [ -76.970934, 38.873173 ], [ -76.970939, 38.873214 ], [ -76.970950, 38.873260 ], [ -76.970955, 38.873281 ], [ -76.970960, 38.873302 ], [ -76.970982, 38.873348 ], [ -76.970993, 38.873369 ], [ -76.971111, 38.873557 ], [ -76.971331, 38.873908 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007502", "GEOID": "11001007502", "NAME": "75.02", "NAMELSAD": "Census Tract 75.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 648317, "AWATER": 0, "INTPTLAT": "+38.8568592", "INTPTLON": "-076.9697843" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.970597, 38.856152 ], [ -76.970724, 38.856235 ], [ -76.970934, 38.856369 ], [ -76.971003, 38.856415 ], [ -76.971143, 38.856507 ], [ -76.971422, 38.856691 ], [ -76.971626, 38.856828 ], [ -76.971749, 38.856908 ], [ -76.972076, 38.856607 ], [ -76.972355, 38.856340 ], [ -76.972555, 38.856152 ], [ -76.974638, 38.856152 ], [ -76.974834, 38.856281 ], [ -76.975209, 38.856528 ], [ -76.975070, 38.856657 ], [ -76.974286, 38.857388 ], [ -76.975027, 38.857764 ], [ -76.974995, 38.857793 ], [ -76.975220, 38.857902 ], [ -76.974474, 38.858604 ], [ -76.974421, 38.858733 ], [ -76.973621, 38.859439 ], [ -76.975735, 38.860818 ], [ -76.974898, 38.861691 ], [ -76.973348, 38.863286 ], [ -76.973214, 38.863236 ], [ -76.972817, 38.863082 ], [ -76.972709, 38.863040 ], [ -76.972688, 38.863032 ], [ -76.972463, 38.862936 ], [ -76.972141, 38.862798 ], [ -76.972049, 38.862756 ], [ -76.971835, 38.862664 ], [ -76.971502, 38.862509 ], [ -76.971186, 38.862363 ], [ -76.970982, 38.862271 ], [ -76.970751, 38.862171 ], [ -76.970564, 38.862079 ], [ -76.970526, 38.862063 ], [ -76.970488, 38.862046 ], [ -76.970311, 38.861966 ], [ -76.970231, 38.861925 ], [ -76.970150, 38.861879 ], [ -76.970038, 38.861808 ], [ -76.969968, 38.861758 ], [ -76.969931, 38.861733 ], [ -76.969909, 38.861716 ], [ -76.969888, 38.861699 ], [ -76.969866, 38.861682 ], [ -76.969780, 38.861607 ], [ -76.969694, 38.861532 ], [ -76.969652, 38.861486 ], [ -76.969625, 38.861465 ], [ -76.969603, 38.861440 ], [ -76.969576, 38.861419 ], [ -76.969485, 38.861327 ], [ -76.969367, 38.861223 ], [ -76.969228, 38.861093 ], [ -76.969163, 38.861031 ], [ -76.968831, 38.860726 ], [ -76.968766, 38.860663 ], [ -76.968568, 38.860484 ], [ -76.968525, 38.860450 ], [ -76.968482, 38.860421 ], [ -76.968396, 38.860362 ], [ -76.968348, 38.860333 ], [ -76.968305, 38.860304 ], [ -76.968209, 38.860254 ], [ -76.968144, 38.860216 ], [ -76.968155, 38.860116 ], [ -76.968160, 38.859987 ], [ -76.968187, 38.859585 ], [ -76.968209, 38.859122 ], [ -76.968203, 38.859047 ], [ -76.968198, 38.858967 ], [ -76.968192, 38.858905 ], [ -76.968182, 38.858813 ], [ -76.968171, 38.858750 ], [ -76.968155, 38.858658 ], [ -76.968139, 38.858579 ], [ -76.968096, 38.858428 ], [ -76.968074, 38.858353 ], [ -76.968037, 38.858245 ], [ -76.968015, 38.858190 ], [ -76.967973, 38.858086 ], [ -76.967951, 38.858032 ], [ -76.967914, 38.857961 ], [ -76.967871, 38.857873 ], [ -76.967828, 38.857789 ], [ -76.967812, 38.857756 ], [ -76.967769, 38.857693 ], [ -76.967720, 38.857610 ], [ -76.967350, 38.857067 ], [ -76.967313, 38.857012 ], [ -76.967259, 38.856933 ], [ -76.966996, 38.856544 ], [ -76.966910, 38.856415 ], [ -76.966731, 38.856152 ], [ -76.970597, 38.856152 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007603", "GEOID": "11001007603", "NAME": "76.03", "NAMELSAD": "Census Tract 76.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1226616, "AWATER": 0, "INTPTLAT": "+38.8591090", "INTPTLON": "-076.9585469" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.967973, 38.858086 ], [ -76.968015, 38.858190 ], [ -76.968037, 38.858245 ], [ -76.968074, 38.858353 ], [ -76.968096, 38.858428 ], [ -76.968139, 38.858579 ], [ -76.968155, 38.858658 ], [ -76.968171, 38.858750 ], [ -76.968182, 38.858813 ], [ -76.968192, 38.858905 ], [ -76.968107, 38.859005 ], [ -76.968080, 38.859038 ], [ -76.967806, 38.859335 ], [ -76.967699, 38.859435 ], [ -76.967629, 38.859485 ], [ -76.967329, 38.859690 ], [ -76.967114, 38.859819 ], [ -76.967007, 38.859874 ], [ -76.966905, 38.859915 ], [ -76.966680, 38.860012 ], [ -76.966454, 38.860095 ], [ -76.965805, 38.860321 ], [ -76.965752, 38.860342 ], [ -76.965038, 38.860617 ], [ -76.964920, 38.860663 ], [ -76.964883, 38.860676 ], [ -76.964770, 38.860718 ], [ -76.964212, 38.860935 ], [ -76.963418, 38.861219 ], [ -76.963193, 38.861298 ], [ -76.963102, 38.861332 ], [ -76.962276, 38.861628 ], [ -76.962206, 38.861649 ], [ -76.962136, 38.861666 ], [ -76.962061, 38.861678 ], [ -76.961986, 38.861687 ], [ -76.961728, 38.861707 ], [ -76.961487, 38.861728 ], [ -76.961036, 38.861762 ], [ -76.960623, 38.861795 ], [ -76.960489, 38.861804 ], [ -76.960167, 38.861829 ], [ -76.959239, 38.861904 ], [ -76.959078, 38.861916 ], [ -76.959019, 38.861921 ], [ -76.958998, 38.861925 ], [ -76.958901, 38.861933 ], [ -76.958692, 38.861966 ], [ -76.958542, 38.861996 ], [ -76.958445, 38.862012 ], [ -76.958279, 38.862054 ], [ -76.957673, 38.862196 ], [ -76.957571, 38.862221 ], [ -76.957485, 38.862242 ], [ -76.957399, 38.862267 ], [ -76.957303, 38.862305 ], [ -76.957238, 38.862334 ], [ -76.957174, 38.862363 ], [ -76.957142, 38.862380 ], [ -76.957088, 38.862413 ], [ -76.956981, 38.862480 ], [ -76.956949, 38.862497 ], [ -76.956863, 38.862526 ], [ -76.956670, 38.862589 ], [ -76.956659, 38.862697 ], [ -76.956648, 38.862739 ], [ -76.956616, 38.862827 ], [ -76.956595, 38.862856 ], [ -76.956310, 38.863240 ], [ -76.956058, 38.863591 ], [ -76.956031, 38.863629 ], [ -76.956015, 38.863646 ], [ -76.955999, 38.863666 ], [ -76.955962, 38.863704 ], [ -76.955940, 38.863721 ], [ -76.955892, 38.863771 ], [ -76.955854, 38.863804 ], [ -76.955817, 38.863838 ], [ -76.955779, 38.863867 ], [ -76.955742, 38.863896 ], [ -76.955704, 38.863925 ], [ -76.955634, 38.863971 ], [ -76.955575, 38.864013 ], [ -76.955484, 38.864067 ], [ -76.955431, 38.864097 ], [ -76.955323, 38.864147 ], [ -76.955270, 38.864172 ], [ -76.955211, 38.864197 ], [ -76.955098, 38.864243 ], [ -76.954980, 38.864281 ], [ -76.953998, 38.864627 ], [ -76.953837, 38.864681 ], [ -76.953730, 38.864719 ], [ -76.953478, 38.864811 ], [ -76.953263, 38.864886 ], [ -76.952936, 38.864999 ], [ -76.952212, 38.865258 ], [ -76.952035, 38.865316 ], [ -76.951531, 38.865500 ], [ -76.951482, 38.865513 ], [ -76.951439, 38.865529 ], [ -76.951380, 38.865559 ], [ -76.951337, 38.865584 ], [ -76.951321, 38.865596 ], [ -76.950147, 38.865120 ], [ -76.949900, 38.865016 ], [ -76.949095, 38.864686 ], [ -76.947706, 38.864118 ], [ -76.947534, 38.864047 ], [ -76.947384, 38.863987 ], [ -76.947384, 38.863253 ], [ -76.947416, 38.863228 ], [ -76.947695, 38.863011 ], [ -76.947942, 38.862819 ], [ -76.948017, 38.862760 ], [ -76.948108, 38.862689 ], [ -76.948242, 38.862580 ], [ -76.948639, 38.862271 ], [ -76.948988, 38.861996 ], [ -76.949015, 38.861975 ], [ -76.949106, 38.861908 ], [ -76.949176, 38.861854 ], [ -76.949310, 38.861753 ], [ -76.949556, 38.861557 ], [ -76.949809, 38.861361 ], [ -76.949830, 38.861348 ], [ -76.949916, 38.861277 ], [ -76.950007, 38.861206 ], [ -76.950173, 38.861077 ], [ -76.950200, 38.861060 ], [ -76.950393, 38.860905 ], [ -76.950645, 38.860709 ], [ -76.950822, 38.860571 ], [ -76.951155, 38.860312 ], [ -76.951718, 38.859878 ], [ -76.952362, 38.859372 ], [ -76.952909, 38.858951 ], [ -76.952995, 38.858884 ], [ -76.953258, 38.858675 ], [ -76.953419, 38.858554 ], [ -76.953585, 38.858424 ], [ -76.953617, 38.858399 ], [ -76.953682, 38.858349 ], [ -76.953698, 38.858332 ], [ -76.953789, 38.858261 ], [ -76.953886, 38.858186 ], [ -76.954181, 38.857961 ], [ -76.954476, 38.857731 ], [ -76.954529, 38.857689 ], [ -76.954604, 38.857631 ], [ -76.954717, 38.857539 ], [ -76.954840, 38.857447 ], [ -76.955645, 38.856816 ], [ -76.955726, 38.856753 ], [ -76.955962, 38.856574 ], [ -76.956112, 38.856457 ], [ -76.956144, 38.856432 ], [ -76.956219, 38.856373 ], [ -76.956241, 38.856356 ], [ -76.956278, 38.856327 ], [ -76.956412, 38.856223 ], [ -76.956504, 38.856152 ], [ -76.966731, 38.856152 ], [ -76.966910, 38.856415 ], [ -76.966996, 38.856544 ], [ -76.967259, 38.856933 ], [ -76.967313, 38.857012 ], [ -76.967350, 38.857067 ], [ -76.967720, 38.857610 ], [ -76.967769, 38.857693 ], [ -76.967812, 38.857756 ], [ -76.967828, 38.857789 ], [ -76.967871, 38.857873 ], [ -76.967914, 38.857961 ], [ -76.967951, 38.858032 ], [ -76.967973, 38.858086 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007406", "GEOID": "11001007406", "NAME": "74.06", "NAMELSAD": "Census Tract 74.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 360152, "AWATER": 0, "INTPTLAT": "+38.8555543", "INTPTLON": "-076.9895582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.856152 ], [ -76.993046, 38.858417 ], [ -76.992171, 38.858428 ], [ -76.991807, 38.858433 ], [ -76.991549, 38.858433 ], [ -76.991501, 38.858433 ], [ -76.991313, 38.858449 ], [ -76.991093, 38.858466 ], [ -76.991056, 38.858470 ], [ -76.990964, 38.858479 ], [ -76.990879, 38.858483 ], [ -76.990820, 38.858483 ], [ -76.990428, 38.858470 ], [ -76.989082, 38.858445 ], [ -76.988706, 38.858433 ], [ -76.988631, 38.858428 ], [ -76.988599, 38.858424 ], [ -76.988561, 38.858416 ], [ -76.988529, 38.858403 ], [ -76.988336, 38.858307 ], [ -76.988229, 38.858253 ], [ -76.987976, 38.858132 ], [ -76.987687, 38.857994 ], [ -76.987665, 38.857981 ], [ -76.987638, 38.857965 ], [ -76.987617, 38.857948 ], [ -76.987601, 38.857931 ], [ -76.987585, 38.857910 ], [ -76.987386, 38.857614 ], [ -76.987236, 38.857384 ], [ -76.987220, 38.857359 ], [ -76.987193, 38.857301 ], [ -76.987172, 38.857230 ], [ -76.987161, 38.857192 ], [ -76.987150, 38.857104 ], [ -76.987123, 38.856954 ], [ -76.987113, 38.856862 ], [ -76.987075, 38.856649 ], [ -76.987016, 38.856331 ], [ -76.987011, 38.856302 ], [ -76.986989, 38.856189 ], [ -76.986984, 38.856152 ], [ -76.993046, 38.856152 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007408", "GEOID": "11001007408", "NAME": "74.08", "NAMELSAD": "Census Tract 74.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 372349, "AWATER": 0, "INTPTLAT": "+38.8525662", "INTPTLON": "-076.9706266" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.975619, 38.856152 ], [ -76.975445, 38.856315 ], [ -76.975209, 38.856528 ], [ -76.974834, 38.856281 ], [ -76.974638, 38.856152 ], [ -76.972555, 38.856152 ], [ -76.972355, 38.856340 ], [ -76.972076, 38.856607 ], [ -76.971749, 38.856908 ], [ -76.971626, 38.856828 ], [ -76.971422, 38.856691 ], [ -76.971143, 38.856507 ], [ -76.971003, 38.856415 ], [ -76.970934, 38.856369 ], [ -76.970724, 38.856235 ], [ -76.970597, 38.856152 ], [ -76.975619, 38.856152 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007703", "GEOID": "11001007703", "NAME": "77.03", "NAMELSAD": "Census Tract 77.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1017741, "AWATER": 1059, "INTPTLAT": "+38.8863224", "INTPTLON": "-076.9474550" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.947384, 38.882830 ], [ -76.947448, 38.882832 ], [ -76.947566, 38.882832 ], [ -76.947690, 38.882836 ], [ -76.947808, 38.882840 ], [ -76.947926, 38.882853 ], [ -76.948049, 38.882870 ], [ -76.948682, 38.882961 ], [ -76.949519, 38.883083 ], [ -76.949782, 38.883120 ], [ -76.950388, 38.883212 ], [ -76.950839, 38.883279 ], [ -76.951316, 38.883350 ], [ -76.951445, 38.883366 ], [ -76.951772, 38.883417 ], [ -76.952190, 38.883479 ], [ -76.952952, 38.883592 ], [ -76.953000, 38.883600 ], [ -76.953086, 38.883613 ], [ -76.953177, 38.883621 ], [ -76.953274, 38.883625 ], [ -76.953317, 38.883625 ], [ -76.954771, 38.883630 ], [ -76.956262, 38.883630 ], [ -76.956600, 38.883630 ], [ -76.957351, 38.883630 ], [ -76.957490, 38.883630 ], [ -76.957367, 38.883809 ], [ -76.957233, 38.883993 ], [ -76.957029, 38.884277 ], [ -76.956954, 38.884381 ], [ -76.956825, 38.884561 ], [ -76.956133, 38.885530 ], [ -76.955801, 38.885997 ], [ -76.955436, 38.886507 ], [ -76.955227, 38.886799 ], [ -76.955152, 38.886907 ], [ -76.954669, 38.887584 ], [ -76.954578, 38.887709 ], [ -76.954406, 38.887947 ], [ -76.954240, 38.888185 ], [ -76.953955, 38.888582 ], [ -76.953923, 38.888619 ], [ -76.953886, 38.888670 ], [ -76.953789, 38.888774 ], [ -76.953177, 38.889596 ], [ -76.953076, 38.889726 ], [ -76.953000, 38.889822 ], [ -76.951928, 38.889818 ], [ -76.950726, 38.889834 ], [ -76.950098, 38.889843 ], [ -76.948805, 38.889822 ], [ -76.948280, 38.889822 ], [ -76.947384, 38.889836 ], [ -76.947384, 38.882830 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009902", "GEOID": "11001009902", "NAME": "99.02", "NAMELSAD": "Census Tract 99.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1294556, "AWATER": 0, "INTPTLAT": "+38.8717861", "INTPTLON": "-076.9445542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.947384, 38.863987 ], [ -76.947534, 38.864047 ], [ -76.947706, 38.864118 ], [ -76.949095, 38.864686 ], [ -76.949900, 38.865016 ], [ -76.950147, 38.865120 ], [ -76.951321, 38.865596 ], [ -76.951600, 38.865709 ], [ -76.952217, 38.865964 ], [ -76.952995, 38.866281 ], [ -76.952904, 38.866419 ], [ -76.952877, 38.866457 ], [ -76.952845, 38.866494 ], [ -76.952791, 38.866553 ], [ -76.952759, 38.866586 ], [ -76.952738, 38.866603 ], [ -76.952716, 38.866628 ], [ -76.952662, 38.866674 ], [ -76.952582, 38.866741 ], [ -76.952523, 38.866782 ], [ -76.952432, 38.866837 ], [ -76.952367, 38.866870 ], [ -76.952303, 38.866904 ], [ -76.952206, 38.866950 ], [ -76.952142, 38.866975 ], [ -76.952078, 38.867000 ], [ -76.951954, 38.867037 ], [ -76.951831, 38.867075 ], [ -76.951788, 38.867083 ], [ -76.951751, 38.867096 ], [ -76.951584, 38.867133 ], [ -76.951413, 38.867171 ], [ -76.951236, 38.867208 ], [ -76.951112, 38.867234 ], [ -76.950876, 38.867296 ], [ -76.950715, 38.867338 ], [ -76.950651, 38.867359 ], [ -76.950560, 38.867392 ], [ -76.950495, 38.867413 ], [ -76.950372, 38.867467 ], [ -76.950291, 38.867509 ], [ -76.950179, 38.867576 ], [ -76.950104, 38.867622 ], [ -76.950039, 38.867668 ], [ -76.950012, 38.867693 ], [ -76.949948, 38.867743 ], [ -76.949868, 38.867822 ], [ -76.949841, 38.867848 ], [ -76.949787, 38.867902 ], [ -76.949744, 38.867956 ], [ -76.949680, 38.868040 ], [ -76.949658, 38.868069 ], [ -76.949626, 38.868127 ], [ -76.949594, 38.868186 ], [ -76.949551, 38.868274 ], [ -76.949514, 38.868361 ], [ -76.949492, 38.868420 ], [ -76.949487, 38.868449 ], [ -76.949471, 38.868516 ], [ -76.949449, 38.868612 ], [ -76.949438, 38.868679 ], [ -76.949422, 38.868779 ], [ -76.949385, 38.869213 ], [ -76.949374, 38.869314 ], [ -76.949369, 38.869347 ], [ -76.949363, 38.869376 ], [ -76.949337, 38.869506 ], [ -76.949315, 38.869602 ], [ -76.949304, 38.869635 ], [ -76.949288, 38.869694 ], [ -76.949251, 38.869781 ], [ -76.949224, 38.869840 ], [ -76.949192, 38.869898 ], [ -76.949165, 38.869953 ], [ -76.949117, 38.870036 ], [ -76.949047, 38.870140 ], [ -76.949009, 38.870195 ], [ -76.948827, 38.870495 ], [ -76.948789, 38.870546 ], [ -76.948714, 38.870675 ], [ -76.948671, 38.870750 ], [ -76.948639, 38.870813 ], [ -76.948612, 38.870876 ], [ -76.948586, 38.870942 ], [ -76.948564, 38.871005 ], [ -76.948548, 38.871072 ], [ -76.948532, 38.871130 ], [ -76.948521, 38.871189 ], [ -76.948510, 38.871281 ], [ -76.948505, 38.871310 ], [ -76.948505, 38.871398 ], [ -76.948510, 38.871469 ], [ -76.948510, 38.871506 ], [ -76.948521, 38.871615 ], [ -76.948548, 38.871765 ], [ -76.948575, 38.871928 ], [ -76.948618, 38.872141 ], [ -76.948639, 38.872271 ], [ -76.948671, 38.872442 ], [ -76.948682, 38.872534 ], [ -76.948687, 38.872555 ], [ -76.948693, 38.872646 ], [ -76.948698, 38.872717 ], [ -76.948687, 38.872784 ], [ -76.948677, 38.872876 ], [ -76.948661, 38.872960 ], [ -76.948645, 38.873031 ], [ -76.948623, 38.873118 ], [ -76.948618, 38.873139 ], [ -76.948602, 38.873177 ], [ -76.948564, 38.873248 ], [ -76.948446, 38.873465 ], [ -76.948425, 38.873498 ], [ -76.948323, 38.873682 ], [ -76.948242, 38.873828 ], [ -76.948226, 38.873858 ], [ -76.948194, 38.873937 ], [ -76.948156, 38.874016 ], [ -76.948130, 38.874100 ], [ -76.948113, 38.874154 ], [ -76.948097, 38.874238 ], [ -76.948087, 38.874321 ], [ -76.948076, 38.874409 ], [ -76.948076, 38.874471 ], [ -76.948076, 38.874534 ], [ -76.948081, 38.874563 ], [ -76.948092, 38.874659 ], [ -76.948108, 38.874751 ], [ -76.948135, 38.874843 ], [ -76.948140, 38.874872 ], [ -76.948162, 38.874931 ], [ -76.948226, 38.875090 ], [ -76.948264, 38.875190 ], [ -76.948333, 38.875336 ], [ -76.948382, 38.875432 ], [ -76.948478, 38.875616 ], [ -76.948548, 38.875749 ], [ -76.948623, 38.875883 ], [ -76.948655, 38.875937 ], [ -76.948725, 38.876050 ], [ -76.948795, 38.876175 ], [ -76.948859, 38.876301 ], [ -76.948881, 38.876347 ], [ -76.948966, 38.876535 ], [ -76.949020, 38.876681 ], [ -76.949052, 38.876752 ], [ -76.949063, 38.876789 ], [ -76.949074, 38.876827 ], [ -76.949095, 38.876894 ], [ -76.949117, 38.876961 ], [ -76.949149, 38.877102 ], [ -76.949176, 38.877244 ], [ -76.949192, 38.877361 ], [ -76.949202, 38.877474 ], [ -76.949202, 38.877549 ], [ -76.949202, 38.877616 ], [ -76.949202, 38.877687 ], [ -76.949197, 38.877754 ], [ -76.949192, 38.877821 ], [ -76.949186, 38.877888 ], [ -76.949165, 38.877996 ], [ -76.949149, 38.878071 ], [ -76.949127, 38.878142 ], [ -76.949106, 38.878218 ], [ -76.949068, 38.878326 ], [ -76.949041, 38.878401 ], [ -76.949009, 38.878472 ], [ -76.948972, 38.878543 ], [ -76.948891, 38.878710 ], [ -76.948854, 38.878769 ], [ -76.948816, 38.878831 ], [ -76.948779, 38.878890 ], [ -76.948757, 38.878919 ], [ -76.948693, 38.879003 ], [ -76.948596, 38.879128 ], [ -76.948548, 38.879186 ], [ -76.948467, 38.879278 ], [ -76.948446, 38.879307 ], [ -76.948323, 38.879424 ], [ -76.948248, 38.879495 ], [ -76.948205, 38.879533 ], [ -76.948119, 38.879604 ], [ -76.948076, 38.879633 ], [ -76.947990, 38.879700 ], [ -76.947942, 38.879733 ], [ -76.947861, 38.879792 ], [ -76.947781, 38.879850 ], [ -76.947652, 38.879938 ], [ -76.947609, 38.879963 ], [ -76.947523, 38.880017 ], [ -76.947459, 38.880059 ], [ -76.947384, 38.880104 ], [ -76.947384, 38.863987 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2344, "y": 3133 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008100", "GEOID": "11001008100", "NAME": "81", "NAMELSAD": "Census Tract 81", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 290284, "AWATER": 0, "INTPTLAT": "+38.8931710", "INTPTLON": "-076.9925272" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.896169 ], [ -76.992643, 38.896327 ], [ -76.991522, 38.896786 ], [ -76.990246, 38.897308 ], [ -76.990240, 38.896118 ], [ -76.990240, 38.896047 ], [ -76.990246, 38.895646 ], [ -76.990240, 38.895434 ], [ -76.990240, 38.895074 ], [ -76.990240, 38.894782 ], [ -76.990240, 38.894528 ], [ -76.990240, 38.893718 ], [ -76.990240, 38.893576 ], [ -76.990240, 38.893041 ], [ -76.990240, 38.892803 ], [ -76.990240, 38.892340 ], [ -76.990240, 38.892014 ], [ -76.990246, 38.891935 ], [ -76.990240, 38.891137 ], [ -76.990240, 38.890966 ], [ -76.990235, 38.890373 ], [ -76.990948, 38.890373 ], [ -76.991431, 38.890369 ], [ -76.991528, 38.890365 ], [ -76.993046, 38.890365 ], [ -76.993046, 38.896169 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009301", "GEOID": "11001009301", "NAME": "93.01", "NAMELSAD": "Census Tract 93.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1109091, "AWATER": 0, "INTPTLAT": "+38.9307613", "INTPTLON": "-076.9864892" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.982862, 38.925897 ], [ -76.983229, 38.925713 ], [ -76.983814, 38.925463 ], [ -76.985621, 38.924620 ], [ -76.985664, 38.924703 ], [ -76.985680, 38.924749 ], [ -76.985702, 38.924795 ], [ -76.985718, 38.924845 ], [ -76.985729, 38.924895 ], [ -76.985739, 38.924941 ], [ -76.985739, 38.924970 ], [ -76.985745, 38.925070 ], [ -76.985756, 38.925221 ], [ -76.985798, 38.925701 ], [ -76.985814, 38.925897 ], [ -76.982862, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009302", "GEOID": "11001009302", "NAME": "93.02", "NAMELSAD": "Census Tract 93.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 391905, "AWATER": 0, "INTPTLAT": "+38.9251636", "INTPTLON": "-076.9907773" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.925897 ], [ -76.985814, 38.925897 ], [ -76.985798, 38.925701 ], [ -76.985756, 38.925221 ], [ -76.985745, 38.925070 ], [ -76.985739, 38.924970 ], [ -76.985739, 38.924941 ], [ -76.985729, 38.924895 ], [ -76.985718, 38.924845 ], [ -76.985702, 38.924795 ], [ -76.985680, 38.924749 ], [ -76.985664, 38.924703 ], [ -76.985621, 38.924620 ], [ -76.986464, 38.924344 ], [ -76.987998, 38.923864 ], [ -76.989934, 38.923205 ], [ -76.990192, 38.923121 ], [ -76.992413, 38.922487 ], [ -76.993046, 38.922296 ], [ -76.993046, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009102", "GEOID": "11001009102", "NAME": "91.02", "NAMELSAD": "Census Tract 91.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1816287, "AWATER": 0, "INTPTLAT": "+38.9187926", "INTPTLON": "-076.9888946" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.978991, 38.925897 ], [ -76.978991, 38.925580 ], [ -76.978991, 38.925037 ], [ -76.978996, 38.924511 ], [ -76.978996, 38.924424 ], [ -76.978996, 38.924090 ], [ -76.978991, 38.923860 ], [ -76.978996, 38.923439 ], [ -76.978996, 38.923351 ], [ -76.978996, 38.923147 ], [ -76.978996, 38.922913 ], [ -76.978996, 38.922771 ], [ -76.978996, 38.922621 ], [ -76.978991, 38.922596 ], [ -76.978991, 38.922366 ], [ -76.978991, 38.922287 ], [ -76.978991, 38.921289 ], [ -76.978991, 38.920530 ], [ -76.978991, 38.920309 ], [ -76.978991, 38.920229 ], [ -76.978991, 38.920041 ], [ -76.978991, 38.920021 ], [ -76.979002, 38.919895 ], [ -76.978916, 38.919824 ], [ -76.978862, 38.919770 ], [ -76.978809, 38.919716 ], [ -76.978760, 38.919657 ], [ -76.978717, 38.919599 ], [ -76.978680, 38.919549 ], [ -76.978616, 38.919449 ], [ -76.978589, 38.919407 ], [ -76.978562, 38.919357 ], [ -76.978551, 38.919328 ], [ -76.978524, 38.919273 ], [ -76.978514, 38.919244 ], [ -76.978492, 38.919186 ], [ -76.978465, 38.919094 ], [ -76.978455, 38.919065 ], [ -76.978444, 38.919002 ], [ -76.978374, 38.918606 ], [ -76.978363, 38.918531 ], [ -76.978294, 38.918105 ], [ -76.978267, 38.917959 ], [ -76.978192, 38.917558 ], [ -76.978165, 38.917283 ], [ -76.978535, 38.917274 ], [ -76.978937, 38.917262 ], [ -76.979324, 38.917258 ], [ -76.979731, 38.917258 ], [ -76.980171, 38.917237 ], [ -76.980600, 38.917207 ], [ -76.980804, 38.917182 ], [ -76.981577, 38.916949 ], [ -76.982344, 38.916686 ], [ -76.982633, 38.916577 ], [ -76.985224, 38.915671 ], [ -76.987934, 38.914741 ], [ -76.989151, 38.914323 ], [ -76.990503, 38.913872 ], [ -76.990734, 38.913710 ], [ -76.991040, 38.913601 ], [ -76.991571, 38.913418 ], [ -76.991748, 38.913355 ], [ -76.991887, 38.913309 ], [ -76.991973, 38.913276 ], [ -76.992107, 38.913230 ], [ -76.992375, 38.913130 ], [ -76.992611, 38.913050 ], [ -76.992660, 38.913034 ], [ -76.992761, 38.912996 ], [ -76.992863, 38.912963 ], [ -76.993046, 38.912898 ], [ -76.993046, 38.922296 ], [ -76.992413, 38.922487 ], [ -76.990192, 38.923121 ], [ -76.989934, 38.923205 ], [ -76.987998, 38.923864 ], [ -76.986464, 38.924344 ], [ -76.985621, 38.924620 ], [ -76.983814, 38.925463 ], [ -76.983229, 38.925713 ], [ -76.982862, 38.925897 ], [ -76.978991, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008803", "GEOID": "11001008803", "NAME": "88.03", "NAMELSAD": "Census Tract 88.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1168294, "AWATER": 0, "INTPTLAT": "+38.9104603", "INTPTLON": "-076.9913622" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.912898 ], [ -76.992863, 38.912963 ], [ -76.992761, 38.912996 ], [ -76.992660, 38.913034 ], [ -76.992611, 38.913050 ], [ -76.992375, 38.913130 ], [ -76.992107, 38.913230 ], [ -76.991973, 38.913276 ], [ -76.991887, 38.913309 ], [ -76.991748, 38.913355 ], [ -76.991571, 38.913418 ], [ -76.991040, 38.913601 ], [ -76.990734, 38.913710 ], [ -76.990503, 38.913872 ], [ -76.989151, 38.914323 ], [ -76.987934, 38.914741 ], [ -76.985224, 38.915671 ], [ -76.982633, 38.916577 ], [ -76.982344, 38.916686 ], [ -76.981577, 38.916949 ], [ -76.980804, 38.917182 ], [ -76.980600, 38.917207 ], [ -76.980171, 38.917237 ], [ -76.979731, 38.917258 ], [ -76.979324, 38.917258 ], [ -76.978937, 38.917262 ], [ -76.978535, 38.917274 ], [ -76.978165, 38.917283 ], [ -76.978261, 38.917166 ], [ -76.978401, 38.916995 ], [ -76.978428, 38.916970 ], [ -76.978449, 38.916953 ], [ -76.978889, 38.916569 ], [ -76.979168, 38.916327 ], [ -76.979243, 38.916260 ], [ -76.979570, 38.915968 ], [ -76.979656, 38.915884 ], [ -76.980171, 38.915429 ], [ -76.980273, 38.915342 ], [ -76.981094, 38.914611 ], [ -76.981405, 38.914336 ], [ -76.981748, 38.914039 ], [ -76.982059, 38.913760 ], [ -76.982204, 38.913630 ], [ -76.982285, 38.913559 ], [ -76.982650, 38.913234 ], [ -76.982977, 38.912946 ], [ -76.983320, 38.912641 ], [ -76.983422, 38.912549 ], [ -76.983497, 38.912487 ], [ -76.983658, 38.912345 ], [ -76.984141, 38.911915 ], [ -76.984731, 38.911389 ], [ -76.984817, 38.911314 ], [ -76.985407, 38.910775 ], [ -76.985477, 38.910717 ], [ -76.985670, 38.910567 ], [ -76.985772, 38.910475 ], [ -76.985868, 38.910379 ], [ -76.985916, 38.910341 ], [ -76.986013, 38.910262 ], [ -76.986110, 38.910170 ], [ -76.986222, 38.910078 ], [ -76.986249, 38.910062 ], [ -76.986297, 38.910016 ], [ -76.986394, 38.909936 ], [ -76.986469, 38.909865 ], [ -76.986877, 38.909511 ], [ -76.986946, 38.909448 ], [ -76.987467, 38.908985 ], [ -76.988035, 38.908475 ], [ -76.988207, 38.908329 ], [ -76.988282, 38.908262 ], [ -76.988341, 38.908212 ], [ -76.988550, 38.908016 ], [ -76.988829, 38.907778 ], [ -76.989124, 38.907519 ], [ -76.989210, 38.907444 ], [ -76.989382, 38.907290 ], [ -76.989564, 38.907123 ], [ -76.989892, 38.906835 ], [ -76.990047, 38.906697 ], [ -76.990321, 38.906451 ], [ -76.990396, 38.906388 ], [ -76.990873, 38.905962 ], [ -76.991308, 38.905582 ], [ -76.991801, 38.905144 ], [ -76.992220, 38.904773 ], [ -76.992493, 38.904530 ], [ -76.992804, 38.904259 ], [ -76.993046, 38.904068 ], [ -76.993046, 38.912898 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008804", "GEOID": "11001008804", "NAME": "88.04", "NAMELSAD": "Census Tract 88.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 778052, "AWATER": 0, "INTPTLAT": "+38.9102408", "INTPTLON": "-076.9812669" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.981013, 38.904046 ], [ -76.981705, 38.904318 ], [ -76.981958, 38.904418 ], [ -76.982231, 38.904522 ], [ -76.982499, 38.904631 ], [ -76.982387, 38.904806 ], [ -76.982274, 38.904981 ], [ -76.982424, 38.905040 ], [ -76.982735, 38.905169 ], [ -76.983175, 38.905361 ], [ -76.983556, 38.905528 ], [ -76.984017, 38.905720 ], [ -76.984388, 38.905879 ], [ -76.984988, 38.906138 ], [ -76.985300, 38.906267 ], [ -76.986002, 38.906568 ], [ -76.987081, 38.907027 ], [ -76.987166, 38.907064 ], [ -76.987451, 38.907181 ], [ -76.987638, 38.907261 ], [ -76.987934, 38.907386 ], [ -76.988239, 38.907519 ], [ -76.988744, 38.907736 ], [ -76.988829, 38.907778 ], [ -76.988550, 38.908016 ], [ -76.988341, 38.908212 ], [ -76.988282, 38.908262 ], [ -76.988207, 38.908329 ], [ -76.988035, 38.908475 ], [ -76.987467, 38.908985 ], [ -76.986946, 38.909448 ], [ -76.986877, 38.909511 ], [ -76.986469, 38.909865 ], [ -76.986394, 38.909936 ], [ -76.986297, 38.910016 ], [ -76.986249, 38.910062 ], [ -76.986222, 38.910078 ], [ -76.986110, 38.910170 ], [ -76.986013, 38.910262 ], [ -76.985916, 38.910341 ], [ -76.985868, 38.910379 ], [ -76.985772, 38.910475 ], [ -76.985670, 38.910567 ], [ -76.985477, 38.910717 ], [ -76.985407, 38.910775 ], [ -76.984817, 38.911314 ], [ -76.984731, 38.911389 ], [ -76.984141, 38.911915 ], [ -76.983658, 38.912345 ], [ -76.983497, 38.912487 ], [ -76.983422, 38.912549 ], [ -76.983320, 38.912641 ], [ -76.982977, 38.912946 ], [ -76.982650, 38.913234 ], [ -76.982285, 38.913559 ], [ -76.982204, 38.913630 ], [ -76.982059, 38.913760 ], [ -76.981748, 38.914039 ], [ -76.981405, 38.914336 ], [ -76.981094, 38.914611 ], [ -76.980273, 38.915342 ], [ -76.980171, 38.915429 ], [ -76.979656, 38.915884 ], [ -76.979570, 38.915968 ], [ -76.979243, 38.916260 ], [ -76.979168, 38.916327 ], [ -76.978889, 38.916569 ], [ -76.978449, 38.916953 ], [ -76.978428, 38.916970 ], [ -76.978401, 38.916995 ], [ -76.978261, 38.917166 ], [ -76.978165, 38.917283 ], [ -76.978213, 38.917162 ], [ -76.978310, 38.916915 ], [ -76.977848, 38.916581 ], [ -76.977607, 38.916343 ], [ -76.977065, 38.915830 ], [ -76.976480, 38.915267 ], [ -76.976368, 38.915162 ], [ -76.975526, 38.914361 ], [ -76.975300, 38.914148 ], [ -76.975123, 38.914131 ], [ -76.975708, 38.913438 ], [ -76.976325, 38.912641 ], [ -76.976808, 38.911189 ], [ -76.977087, 38.910341 ], [ -76.977248, 38.909882 ], [ -76.977360, 38.909586 ], [ -76.977457, 38.909427 ], [ -76.977602, 38.909197 ], [ -76.978835, 38.907273 ], [ -76.978878, 38.907194 ], [ -76.979082, 38.906881 ], [ -76.979173, 38.906735 ], [ -76.979769, 38.905791 ], [ -76.979844, 38.905687 ], [ -76.980032, 38.905386 ], [ -76.980262, 38.905019 ], [ -76.980649, 38.904434 ], [ -76.980917, 38.904009 ], [ -76.981013, 38.904046 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008410", "GEOID": "11001008410", "NAME": "84.10", "NAMELSAD": "Census Tract 84.10", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 219939, "AWATER": 0, "INTPTLAT": "+38.9015543", "INTPTLON": "-076.9911234" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.984055, 38.900218 ], [ -76.984860, 38.900197 ], [ -76.985503, 38.900197 ], [ -76.985879, 38.900197 ], [ -76.986399, 38.900197 ], [ -76.987156, 38.900201 ], [ -76.987397, 38.900201 ], [ -76.988304, 38.900201 ], [ -76.988438, 38.900201 ], [ -76.989146, 38.900201 ], [ -76.990235, 38.900201 ], [ -76.991522, 38.900201 ], [ -76.992643, 38.900201 ], [ -76.993046, 38.900201 ], [ -76.993046, 38.903963 ], [ -76.992901, 38.903900 ], [ -76.992633, 38.903787 ], [ -76.992241, 38.903629 ], [ -76.991517, 38.903320 ], [ -76.990648, 38.902948 ], [ -76.990181, 38.902740 ], [ -76.990074, 38.902694 ], [ -76.989698, 38.902539 ], [ -76.989596, 38.902497 ], [ -76.989248, 38.902351 ], [ -76.989001, 38.902247 ], [ -76.988690, 38.902113 ], [ -76.988288, 38.901942 ], [ -76.987408, 38.901566 ], [ -76.986812, 38.901312 ], [ -76.986662, 38.901249 ], [ -76.985927, 38.900936 ], [ -76.985729, 38.900853 ], [ -76.985659, 38.900823 ], [ -76.985487, 38.900782 ], [ -76.985423, 38.900752 ], [ -76.985219, 38.900669 ], [ -76.985176, 38.900648 ], [ -76.984715, 38.900448 ], [ -76.984683, 38.900435 ], [ -76.984457, 38.900331 ], [ -76.984382, 38.900293 ], [ -76.984264, 38.900256 ], [ -76.984055, 38.900218 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008802", "GEOID": "11001008802", "NAME": "88.02", "NAMELSAD": "Census Tract 88.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 468578, "AWATER": 0, "INTPTLAT": "+38.9039498", "INTPTLON": "-076.9866786" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.980917, 38.904009 ], [ -76.981089, 38.903725 ], [ -76.981775, 38.902706 ], [ -76.982365, 38.901767 ], [ -76.982950, 38.900836 ], [ -76.982955, 38.900819 ], [ -76.983009, 38.900719 ], [ -76.983261, 38.900347 ], [ -76.983406, 38.900180 ], [ -76.983803, 38.900201 ], [ -76.984055, 38.900218 ], [ -76.984264, 38.900256 ], [ -76.984382, 38.900293 ], [ -76.984457, 38.900331 ], [ -76.984683, 38.900435 ], [ -76.984715, 38.900448 ], [ -76.985176, 38.900648 ], [ -76.985219, 38.900669 ], [ -76.985423, 38.900752 ], [ -76.985487, 38.900782 ], [ -76.985659, 38.900823 ], [ -76.985729, 38.900853 ], [ -76.985927, 38.900936 ], [ -76.986662, 38.901249 ], [ -76.986812, 38.901312 ], [ -76.987408, 38.901566 ], [ -76.988288, 38.901942 ], [ -76.988690, 38.902113 ], [ -76.989001, 38.902247 ], [ -76.989248, 38.902351 ], [ -76.989596, 38.902497 ], [ -76.989698, 38.902539 ], [ -76.990074, 38.902694 ], [ -76.990181, 38.902740 ], [ -76.990648, 38.902948 ], [ -76.991517, 38.903320 ], [ -76.992241, 38.903629 ], [ -76.992633, 38.903787 ], [ -76.992901, 38.903900 ], [ -76.993046, 38.903963 ], [ -76.993046, 38.904068 ], [ -76.992804, 38.904259 ], [ -76.992493, 38.904530 ], [ -76.992220, 38.904773 ], [ -76.991801, 38.905144 ], [ -76.991308, 38.905582 ], [ -76.990873, 38.905962 ], [ -76.990396, 38.906388 ], [ -76.990321, 38.906451 ], [ -76.990047, 38.906697 ], [ -76.989892, 38.906835 ], [ -76.989564, 38.907123 ], [ -76.989382, 38.907290 ], [ -76.989210, 38.907444 ], [ -76.989124, 38.907519 ], [ -76.988829, 38.907778 ], [ -76.988744, 38.907736 ], [ -76.988239, 38.907519 ], [ -76.987934, 38.907386 ], [ -76.987638, 38.907261 ], [ -76.987451, 38.907181 ], [ -76.987166, 38.907064 ], [ -76.987081, 38.907027 ], [ -76.986002, 38.906568 ], [ -76.985300, 38.906267 ], [ -76.984988, 38.906138 ], [ -76.984388, 38.905879 ], [ -76.984017, 38.905720 ], [ -76.983556, 38.905528 ], [ -76.983175, 38.905361 ], [ -76.982735, 38.905169 ], [ -76.982424, 38.905040 ], [ -76.982274, 38.904981 ], [ -76.982387, 38.904806 ], [ -76.982499, 38.904631 ], [ -76.982231, 38.904522 ], [ -76.981958, 38.904418 ], [ -76.981705, 38.904318 ], [ -76.981013, 38.904046 ], [ -76.980917, 38.904009 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008402", "GEOID": "11001008402", "NAME": "84.02", "NAMELSAD": "Census Tract 84.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 274180, "AWATER": 0, "INTPTLAT": "+38.8985960", "INTPTLON": "-076.9910210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.983250, 38.900180 ], [ -76.983492, 38.900059 ], [ -76.983594, 38.900009 ], [ -76.983621, 38.899997 ], [ -76.984050, 38.899809 ], [ -76.985267, 38.899333 ], [ -76.985503, 38.899233 ], [ -76.986131, 38.898991 ], [ -76.986351, 38.898899 ], [ -76.986512, 38.898828 ], [ -76.987032, 38.898615 ], [ -76.988304, 38.898097 ], [ -76.990246, 38.897308 ], [ -76.991522, 38.896786 ], [ -76.992643, 38.896327 ], [ -76.993046, 38.896169 ], [ -76.993046, 38.900201 ], [ -76.992643, 38.900201 ], [ -76.991522, 38.900201 ], [ -76.990235, 38.900201 ], [ -76.989146, 38.900201 ], [ -76.988438, 38.900201 ], [ -76.988304, 38.900201 ], [ -76.987397, 38.900201 ], [ -76.987156, 38.900201 ], [ -76.986399, 38.900197 ], [ -76.985879, 38.900197 ], [ -76.985503, 38.900197 ], [ -76.984860, 38.900197 ], [ -76.984055, 38.900218 ], [ -76.983803, 38.900201 ], [ -76.983406, 38.900180 ], [ -76.983250, 38.900180 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008001", "GEOID": "11001008001", "NAME": "80.01", "NAMELSAD": "Census Tract 80.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 322795, "AWATER": 0, "INTPTLAT": "+38.8961726", "INTPTLON": "-076.9866524" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.990240, 38.893576 ], [ -76.990240, 38.893718 ], [ -76.990240, 38.894528 ], [ -76.990240, 38.894782 ], [ -76.990240, 38.895074 ], [ -76.990240, 38.895434 ], [ -76.990246, 38.895646 ], [ -76.990240, 38.896047 ], [ -76.990240, 38.896118 ], [ -76.990246, 38.897308 ], [ -76.988304, 38.898097 ], [ -76.987032, 38.898615 ], [ -76.986512, 38.898828 ], [ -76.986351, 38.898899 ], [ -76.986131, 38.898991 ], [ -76.985503, 38.899233 ], [ -76.985267, 38.899333 ], [ -76.984050, 38.899809 ], [ -76.983621, 38.899997 ], [ -76.983594, 38.900009 ], [ -76.983610, 38.899659 ], [ -76.983642, 38.898853 ], [ -76.983642, 38.898431 ], [ -76.983642, 38.897976 ], [ -76.983647, 38.897692 ], [ -76.983647, 38.897492 ], [ -76.983642, 38.897325 ], [ -76.983642, 38.897166 ], [ -76.983642, 38.896749 ], [ -76.983642, 38.896665 ], [ -76.983647, 38.896302 ], [ -76.983647, 38.896114 ], [ -76.983642, 38.895463 ], [ -76.983642, 38.895396 ], [ -76.983647, 38.894782 ], [ -76.983642, 38.894703 ], [ -76.983642, 38.894431 ], [ -76.983642, 38.893997 ], [ -76.983642, 38.893647 ], [ -76.983647, 38.893617 ], [ -76.983647, 38.893505 ], [ -76.983669, 38.893517 ], [ -76.983749, 38.893551 ], [ -76.983937, 38.893567 ], [ -76.984216, 38.893571 ], [ -76.984570, 38.893576 ], [ -76.985503, 38.893576 ], [ -76.986378, 38.893576 ], [ -76.986474, 38.893571 ], [ -76.986893, 38.893571 ], [ -76.987107, 38.893576 ], [ -76.988309, 38.893576 ], [ -76.988427, 38.893576 ], [ -76.988513, 38.893576 ], [ -76.989259, 38.893576 ], [ -76.990240, 38.893576 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008002", "GEOID": "11001008002", "NAME": "80.02", "NAMELSAD": "Census Tract 80.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 578961, "AWATER": 0, "INTPTLAT": "+38.8915403", "INTPTLON": "-076.9827594" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.974029, 38.892043 ], [ -76.974013, 38.891997 ], [ -76.973975, 38.891847 ], [ -76.973959, 38.891793 ], [ -76.973938, 38.891684 ], [ -76.973906, 38.891521 ], [ -76.973879, 38.891371 ], [ -76.973868, 38.891283 ], [ -76.973857, 38.891191 ], [ -76.973852, 38.891104 ], [ -76.973841, 38.890953 ], [ -76.973830, 38.890582 ], [ -76.973852, 38.890511 ], [ -76.973863, 38.890478 ], [ -76.973879, 38.890444 ], [ -76.973895, 38.890411 ], [ -76.973906, 38.890386 ], [ -76.973919, 38.890365 ], [ -76.991528, 38.890365 ], [ -76.991431, 38.890369 ], [ -76.990948, 38.890373 ], [ -76.990235, 38.890373 ], [ -76.990240, 38.890966 ], [ -76.990240, 38.891137 ], [ -76.990246, 38.891935 ], [ -76.990240, 38.892014 ], [ -76.990240, 38.892340 ], [ -76.990240, 38.892803 ], [ -76.990240, 38.893041 ], [ -76.990240, 38.893576 ], [ -76.989259, 38.893576 ], [ -76.988513, 38.893576 ], [ -76.988427, 38.893576 ], [ -76.988309, 38.893576 ], [ -76.987107, 38.893576 ], [ -76.986893, 38.893571 ], [ -76.986474, 38.893571 ], [ -76.986378, 38.893576 ], [ -76.985503, 38.893576 ], [ -76.984570, 38.893576 ], [ -76.984216, 38.893571 ], [ -76.983937, 38.893567 ], [ -76.983749, 38.893551 ], [ -76.983669, 38.893517 ], [ -76.983647, 38.893505 ], [ -76.983562, 38.893467 ], [ -76.983524, 38.893446 ], [ -76.983476, 38.893429 ], [ -76.983438, 38.893413 ], [ -76.983352, 38.893388 ], [ -76.983309, 38.893375 ], [ -76.983224, 38.893354 ], [ -76.983181, 38.893346 ], [ -76.983095, 38.893333 ], [ -76.983047, 38.893329 ], [ -76.982998, 38.893325 ], [ -76.982896, 38.893317 ], [ -76.982746, 38.893317 ], [ -76.982644, 38.893317 ], [ -76.982210, 38.893325 ], [ -76.981287, 38.893338 ], [ -76.980761, 38.893338 ], [ -76.979865, 38.893329 ], [ -76.978991, 38.893325 ], [ -76.978122, 38.893300 ], [ -76.977258, 38.893300 ], [ -76.976223, 38.893300 ], [ -76.975740, 38.893300 ], [ -76.975424, 38.893300 ], [ -76.975150, 38.893296 ], [ -76.975086, 38.893137 ], [ -76.975027, 38.893120 ], [ -76.974995, 38.893108 ], [ -76.974957, 38.893091 ], [ -76.974893, 38.893062 ], [ -76.974860, 38.893041 ], [ -76.974785, 38.893004 ], [ -76.974710, 38.892962 ], [ -76.974635, 38.892920 ], [ -76.974571, 38.892870 ], [ -76.974506, 38.892816 ], [ -76.974431, 38.892753 ], [ -76.974394, 38.892715 ], [ -76.974356, 38.892678 ], [ -76.974292, 38.892599 ], [ -76.974260, 38.892557 ], [ -76.974233, 38.892515 ], [ -76.974206, 38.892473 ], [ -76.974179, 38.892432 ], [ -76.974158, 38.892386 ], [ -76.974136, 38.892344 ], [ -76.974120, 38.892302 ], [ -76.974088, 38.892214 ], [ -76.974056, 38.892127 ], [ -76.974029, 38.892043 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008903", "GEOID": "11001008903", "NAME": "89.03", "NAMELSAD": "Census Tract 89.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 305651, "AWATER": 0, "INTPTLAT": "+38.9041579", "INTPTLON": "-076.9777180" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.970204, 38.905620 ], [ -76.970215, 38.905557 ], [ -76.970226, 38.905541 ], [ -76.970242, 38.905516 ], [ -76.970268, 38.905491 ], [ -76.970295, 38.905474 ], [ -76.970322, 38.905457 ], [ -76.970580, 38.905349 ], [ -76.971138, 38.905127 ], [ -76.971475, 38.904985 ], [ -76.971856, 38.904831 ], [ -76.972253, 38.904672 ], [ -76.972457, 38.904589 ], [ -76.972661, 38.904505 ], [ -76.973042, 38.904343 ], [ -76.973197, 38.904280 ], [ -76.973256, 38.904259 ], [ -76.973627, 38.904109 ], [ -76.974061, 38.903933 ], [ -76.974168, 38.903892 ], [ -76.974281, 38.903842 ], [ -76.974796, 38.903633 ], [ -76.975182, 38.903478 ], [ -76.975670, 38.903286 ], [ -76.976105, 38.903111 ], [ -76.976212, 38.903069 ], [ -76.976534, 38.902932 ], [ -76.976877, 38.902794 ], [ -76.977543, 38.902518 ], [ -76.977907, 38.902372 ], [ -76.978020, 38.902326 ], [ -76.978637, 38.902076 ], [ -76.978991, 38.901925 ], [ -76.979361, 38.901779 ], [ -76.979715, 38.901633 ], [ -76.980160, 38.901458 ], [ -76.980874, 38.901166 ], [ -76.980997, 38.901116 ], [ -76.981083, 38.901082 ], [ -76.981646, 38.900853 ], [ -76.982076, 38.900677 ], [ -76.982145, 38.900606 ], [ -76.982258, 38.900544 ], [ -76.982397, 38.900523 ], [ -76.982564, 38.900514 ], [ -76.982687, 38.900552 ], [ -76.982816, 38.900602 ], [ -76.982934, 38.900686 ], [ -76.983009, 38.900719 ], [ -76.982955, 38.900819 ], [ -76.982950, 38.900836 ], [ -76.982365, 38.901767 ], [ -76.981775, 38.902706 ], [ -76.981089, 38.903725 ], [ -76.980917, 38.904009 ], [ -76.980649, 38.904434 ], [ -76.980262, 38.905019 ], [ -76.980032, 38.905386 ], [ -76.979844, 38.905687 ], [ -76.979769, 38.905791 ], [ -76.979173, 38.906735 ], [ -76.979082, 38.906881 ], [ -76.978878, 38.907194 ], [ -76.978835, 38.907273 ], [ -76.978750, 38.907227 ], [ -76.978573, 38.907369 ], [ -76.978288, 38.907206 ], [ -76.977924, 38.907014 ], [ -76.977172, 38.906647 ], [ -76.976207, 38.906284 ], [ -76.975692, 38.906159 ], [ -76.975193, 38.905992 ], [ -76.975161, 38.905620 ], [ -76.974828, 38.905624 ], [ -76.974168, 38.905624 ], [ -76.973830, 38.905624 ], [ -76.973573, 38.905624 ], [ -76.973192, 38.905620 ], [ -76.972532, 38.905620 ], [ -76.972200, 38.905624 ], [ -76.970773, 38.905624 ], [ -76.970547, 38.905620 ], [ -76.970204, 38.905620 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "008904", "GEOID": "11001008904", "NAME": "89.04", "NAMELSAD": "Census Tract 89.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 449343, "AWATER": 0, "INTPTLAT": "+38.9009808", "INTPTLON": "-076.9748514" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.970231, 38.903445 ], [ -76.970231, 38.903328 ], [ -76.970226, 38.903278 ], [ -76.970226, 38.903249 ], [ -76.970220, 38.903094 ], [ -76.970220, 38.902785 ], [ -76.970226, 38.902372 ], [ -76.970226, 38.901951 ], [ -76.970231, 38.901120 ], [ -76.970226, 38.900723 ], [ -76.970226, 38.900464 ], [ -76.970226, 38.900385 ], [ -76.970226, 38.899625 ], [ -76.970226, 38.899237 ], [ -76.970231, 38.898940 ], [ -76.970231, 38.898698 ], [ -76.970236, 38.898598 ], [ -76.970247, 38.898494 ], [ -76.970263, 38.898389 ], [ -76.970285, 38.898289 ], [ -76.970311, 38.898176 ], [ -76.970360, 38.897993 ], [ -76.970370, 38.897964 ], [ -76.970381, 38.897926 ], [ -76.971229, 38.898064 ], [ -76.972141, 38.898235 ], [ -76.973047, 38.898385 ], [ -76.974168, 38.898586 ], [ -76.975451, 38.898803 ], [ -76.976234, 38.898949 ], [ -76.976266, 38.898953 ], [ -76.976593, 38.899007 ], [ -76.977505, 38.899166 ], [ -76.979270, 38.899479 ], [ -76.981464, 38.899863 ], [ -76.983250, 38.900180 ], [ -76.983406, 38.900180 ], [ -76.983261, 38.900347 ], [ -76.983009, 38.900719 ], [ -76.982934, 38.900686 ], [ -76.982816, 38.900602 ], [ -76.982687, 38.900552 ], [ -76.982564, 38.900514 ], [ -76.982397, 38.900523 ], [ -76.982258, 38.900544 ], [ -76.982145, 38.900606 ], [ -76.982076, 38.900677 ], [ -76.981646, 38.900853 ], [ -76.981083, 38.901082 ], [ -76.980997, 38.901116 ], [ -76.980874, 38.901166 ], [ -76.980160, 38.901458 ], [ -76.979715, 38.901633 ], [ -76.979361, 38.901779 ], [ -76.978991, 38.901925 ], [ -76.978637, 38.902076 ], [ -76.978020, 38.902326 ], [ -76.977907, 38.902372 ], [ -76.977543, 38.902518 ], [ -76.976877, 38.902794 ], [ -76.976534, 38.902932 ], [ -76.976212, 38.903069 ], [ -76.976105, 38.903111 ], [ -76.975670, 38.903286 ], [ -76.975182, 38.903478 ], [ -76.974796, 38.903633 ], [ -76.974281, 38.903842 ], [ -76.974168, 38.903892 ], [ -76.974061, 38.903933 ], [ -76.973627, 38.904109 ], [ -76.973256, 38.904259 ], [ -76.973197, 38.904280 ], [ -76.973042, 38.904343 ], [ -76.972661, 38.904505 ], [ -76.972457, 38.904589 ], [ -76.972286, 38.904330 ], [ -76.972146, 38.904113 ], [ -76.971889, 38.903721 ], [ -76.971835, 38.903645 ], [ -76.971813, 38.903620 ], [ -76.971792, 38.903595 ], [ -76.971771, 38.903574 ], [ -76.971744, 38.903554 ], [ -76.971712, 38.903533 ], [ -76.971674, 38.903508 ], [ -76.971636, 38.903491 ], [ -76.971593, 38.903478 ], [ -76.971551, 38.903466 ], [ -76.971508, 38.903458 ], [ -76.971470, 38.903453 ], [ -76.971384, 38.903449 ], [ -76.971320, 38.903449 ], [ -76.971116, 38.903449 ], [ -76.970939, 38.903449 ], [ -76.970531, 38.903449 ], [ -76.970499, 38.903449 ], [ -76.970306, 38.903449 ], [ -76.970231, 38.903445 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007901", "GEOID": "11001007901", "NAME": "79.01", "NAMELSAD": "Census Tract 79.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 402041, "AWATER": 0, "INTPTLAT": "+38.8965543", "INTPTLON": "-076.9804319" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.983647, 38.893505 ], [ -76.983647, 38.893617 ], [ -76.983642, 38.893647 ], [ -76.983642, 38.893997 ], [ -76.983642, 38.894431 ], [ -76.983642, 38.894703 ], [ -76.983647, 38.894782 ], [ -76.983642, 38.895396 ], [ -76.983642, 38.895463 ], [ -76.983647, 38.896114 ], [ -76.983647, 38.896302 ], [ -76.983642, 38.896665 ], [ -76.983642, 38.896749 ], [ -76.983642, 38.897166 ], [ -76.983642, 38.897325 ], [ -76.983647, 38.897492 ], [ -76.983647, 38.897692 ], [ -76.983642, 38.897976 ], [ -76.983642, 38.898431 ], [ -76.983642, 38.898853 ], [ -76.983610, 38.899659 ], [ -76.983594, 38.900009 ], [ -76.983492, 38.900059 ], [ -76.983250, 38.900180 ], [ -76.981464, 38.899863 ], [ -76.979270, 38.899479 ], [ -76.977505, 38.899166 ], [ -76.976593, 38.899007 ], [ -76.976266, 38.898953 ], [ -76.976234, 38.898949 ], [ -76.976411, 38.898861 ], [ -76.976486, 38.898819 ], [ -76.976518, 38.898723 ], [ -76.976620, 38.898385 ], [ -76.976743, 38.897939 ], [ -76.976840, 38.897613 ], [ -76.976947, 38.897233 ], [ -76.977038, 38.896924 ], [ -76.977060, 38.896853 ], [ -76.977130, 38.896590 ], [ -76.977248, 38.896202 ], [ -76.977253, 38.896164 ], [ -76.977253, 38.896118 ], [ -76.977253, 38.895521 ], [ -76.977253, 38.895204 ], [ -76.977258, 38.894857 ], [ -76.977258, 38.894778 ], [ -76.977253, 38.894703 ], [ -76.977253, 38.894406 ], [ -76.977253, 38.894148 ], [ -76.977258, 38.893300 ], [ -76.978122, 38.893300 ], [ -76.978991, 38.893325 ], [ -76.979865, 38.893329 ], [ -76.980761, 38.893338 ], [ -76.981287, 38.893338 ], [ -76.982210, 38.893325 ], [ -76.982644, 38.893317 ], [ -76.982746, 38.893317 ], [ -76.982896, 38.893317 ], [ -76.982998, 38.893325 ], [ -76.983047, 38.893329 ], [ -76.983095, 38.893333 ], [ -76.983181, 38.893346 ], [ -76.983224, 38.893354 ], [ -76.983309, 38.893375 ], [ -76.983352, 38.893388 ], [ -76.983438, 38.893413 ], [ -76.983476, 38.893429 ], [ -76.983524, 38.893446 ], [ -76.983562, 38.893467 ], [ -76.983647, 38.893505 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007903", "GEOID": "11001007903", "NAME": "79.03", "NAMELSAD": "Census Tract 79.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 247945, "AWATER": 0, "INTPTLAT": "+38.8964252", "INTPTLON": "-076.9743021" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.977258, 38.893300 ], [ -76.977253, 38.894148 ], [ -76.977253, 38.894406 ], [ -76.977253, 38.894703 ], [ -76.977258, 38.894778 ], [ -76.977258, 38.894857 ], [ -76.977253, 38.895204 ], [ -76.977253, 38.895521 ], [ -76.977253, 38.896118 ], [ -76.977253, 38.896164 ], [ -76.977248, 38.896202 ], [ -76.977130, 38.896590 ], [ -76.977060, 38.896853 ], [ -76.977038, 38.896924 ], [ -76.976947, 38.897233 ], [ -76.976840, 38.897613 ], [ -76.976743, 38.897939 ], [ -76.976620, 38.898385 ], [ -76.976518, 38.898723 ], [ -76.976486, 38.898819 ], [ -76.976411, 38.898861 ], [ -76.976234, 38.898949 ], [ -76.975451, 38.898803 ], [ -76.974168, 38.898586 ], [ -76.973047, 38.898385 ], [ -76.972141, 38.898235 ], [ -76.971229, 38.898064 ], [ -76.970381, 38.897926 ], [ -76.969458, 38.897767 ], [ -76.969501, 38.897634 ], [ -76.969523, 38.897605 ], [ -76.969576, 38.897538 ], [ -76.970687, 38.896289 ], [ -76.970966, 38.895997 ], [ -76.971025, 38.895947 ], [ -76.971089, 38.895901 ], [ -76.971154, 38.895855 ], [ -76.971223, 38.895818 ], [ -76.971293, 38.895776 ], [ -76.971336, 38.895755 ], [ -76.971379, 38.895734 ], [ -76.971400, 38.895726 ], [ -76.971449, 38.895701 ], [ -76.971502, 38.895680 ], [ -76.971610, 38.895638 ], [ -76.971722, 38.895605 ], [ -76.971840, 38.895575 ], [ -76.972983, 38.895271 ], [ -76.973090, 38.895241 ], [ -76.973600, 38.895104 ], [ -76.973680, 38.895079 ], [ -76.973761, 38.895054 ], [ -76.973836, 38.895024 ], [ -76.973900, 38.895003 ], [ -76.973959, 38.894978 ], [ -76.974007, 38.894958 ], [ -76.974126, 38.894899 ], [ -76.974190, 38.894866 ], [ -76.974254, 38.894832 ], [ -76.974356, 38.894761 ], [ -76.974404, 38.894732 ], [ -76.974458, 38.894695 ], [ -76.974506, 38.894657 ], [ -76.974565, 38.894607 ], [ -76.974619, 38.894553 ], [ -76.974699, 38.894473 ], [ -76.974764, 38.894402 ], [ -76.974818, 38.894335 ], [ -76.974871, 38.894260 ], [ -76.974898, 38.894231 ], [ -76.974941, 38.894164 ], [ -76.974962, 38.894123 ], [ -76.975005, 38.894039 ], [ -76.975032, 38.893968 ], [ -76.975048, 38.893926 ], [ -76.975080, 38.893834 ], [ -76.975107, 38.893738 ], [ -76.975118, 38.893692 ], [ -76.975129, 38.893642 ], [ -76.975134, 38.893601 ], [ -76.975139, 38.893576 ], [ -76.975145, 38.893555 ], [ -76.975145, 38.893530 ], [ -76.975150, 38.893475 ], [ -76.975150, 38.893296 ], [ -76.975424, 38.893300 ], [ -76.975740, 38.893300 ], [ -76.976223, 38.893300 ], [ -76.977258, 38.893300 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "011100", "GEOID": "11001011100", "NAME": "111", "NAMELSAD": "Census Tract 111", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 5718693, "AWATER": 366232, "INTPTLAT": "+38.9158612", "INTPTLON": "-076.9681631" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.964375, 38.925897 ], [ -76.964502, 38.925797 ], [ -76.964813, 38.925555 ], [ -76.964931, 38.925429 ], [ -76.965156, 38.925258 ], [ -76.965038, 38.925171 ], [ -76.964555, 38.924837 ], [ -76.963601, 38.924182 ], [ -76.962630, 38.923539 ], [ -76.961820, 38.923000 ], [ -76.960972, 38.922416 ], [ -76.960521, 38.922116 ], [ -76.959368, 38.921339 ], [ -76.959170, 38.921210 ], [ -76.958317, 38.920634 ], [ -76.957785, 38.920267 ], [ -76.957560, 38.920117 ], [ -76.957490, 38.920066 ], [ -76.956595, 38.919465 ], [ -76.956471, 38.919374 ], [ -76.956353, 38.919282 ], [ -76.955919, 38.918940 ], [ -76.955506, 38.918668 ], [ -76.954980, 38.918343 ], [ -76.955076, 38.918301 ], [ -76.956106, 38.917788 ], [ -76.956455, 38.917616 ], [ -76.956090, 38.917604 ], [ -76.954202, 38.917533 ], [ -76.953918, 38.917520 ], [ -76.949143, 38.917253 ], [ -76.947384, 38.917173 ], [ -76.947384, 38.914972 ], [ -76.951992, 38.914903 ], [ -76.952888, 38.914799 ], [ -76.953569, 38.914382 ], [ -76.953821, 38.912291 ], [ -76.954454, 38.910959 ], [ -76.956782, 38.907857 ], [ -76.957882, 38.906271 ], [ -76.957968, 38.906154 ], [ -76.958268, 38.905428 ], [ -76.958606, 38.904748 ], [ -76.959384, 38.903391 ], [ -76.960613, 38.901721 ], [ -76.961406, 38.900786 ], [ -76.961964, 38.900180 ], [ -76.962216, 38.899496 ], [ -76.962190, 38.898703 ], [ -76.962104, 38.897759 ], [ -76.962088, 38.897596 ], [ -76.962029, 38.897346 ], [ -76.962023, 38.897321 ], [ -76.961980, 38.897137 ], [ -76.962485, 38.897170 ], [ -76.965618, 38.897429 ], [ -76.966331, 38.897492 ], [ -76.968064, 38.897625 ], [ -76.968809, 38.897688 ], [ -76.969458, 38.897767 ], [ -76.970381, 38.897926 ], [ -76.970370, 38.897964 ], [ -76.970360, 38.897993 ], [ -76.970311, 38.898176 ], [ -76.970285, 38.898289 ], [ -76.970263, 38.898389 ], [ -76.970247, 38.898494 ], [ -76.970236, 38.898598 ], [ -76.970231, 38.898698 ], [ -76.970231, 38.898940 ], [ -76.970226, 38.899237 ], [ -76.970226, 38.899625 ], [ -76.970226, 38.900385 ], [ -76.970226, 38.900464 ], [ -76.970226, 38.900723 ], [ -76.970231, 38.901120 ], [ -76.970226, 38.901951 ], [ -76.970226, 38.902372 ], [ -76.970220, 38.902785 ], [ -76.970220, 38.903094 ], [ -76.970226, 38.903249 ], [ -76.970226, 38.903278 ], [ -76.970231, 38.903328 ], [ -76.970231, 38.903445 ], [ -76.970306, 38.903449 ], [ -76.970499, 38.903449 ], [ -76.970531, 38.903449 ], [ -76.970939, 38.903449 ], [ -76.971116, 38.903449 ], [ -76.971320, 38.903449 ], [ -76.971384, 38.903449 ], [ -76.971470, 38.903453 ], [ -76.971508, 38.903458 ], [ -76.971551, 38.903466 ], [ -76.971593, 38.903478 ], [ -76.971636, 38.903491 ], [ -76.971674, 38.903508 ], [ -76.971712, 38.903533 ], [ -76.971744, 38.903554 ], [ -76.971771, 38.903574 ], [ -76.971792, 38.903595 ], [ -76.971813, 38.903620 ], [ -76.971835, 38.903645 ], [ -76.971889, 38.903721 ], [ -76.972146, 38.904113 ], [ -76.972286, 38.904330 ], [ -76.972457, 38.904589 ], [ -76.972253, 38.904672 ], [ -76.971856, 38.904831 ], [ -76.971475, 38.904985 ], [ -76.971138, 38.905127 ], [ -76.970580, 38.905349 ], [ -76.970322, 38.905457 ], [ -76.970295, 38.905474 ], [ -76.970268, 38.905491 ], [ -76.970242, 38.905516 ], [ -76.970226, 38.905541 ], [ -76.970215, 38.905557 ], [ -76.970204, 38.905620 ], [ -76.970547, 38.905620 ], [ -76.970773, 38.905624 ], [ -76.972200, 38.905624 ], [ -76.972532, 38.905620 ], [ -76.973192, 38.905620 ], [ -76.973573, 38.905624 ], [ -76.973830, 38.905624 ], [ -76.974168, 38.905624 ], [ -76.974828, 38.905624 ], [ -76.975161, 38.905620 ], [ -76.975193, 38.905992 ], [ -76.975692, 38.906159 ], [ -76.976207, 38.906284 ], [ -76.977172, 38.906647 ], [ -76.977924, 38.907014 ], [ -76.978288, 38.907206 ], [ -76.978573, 38.907369 ], [ -76.978750, 38.907227 ], [ -76.978835, 38.907273 ], [ -76.977602, 38.909197 ], [ -76.977457, 38.909427 ], [ -76.977360, 38.909586 ], [ -76.977248, 38.909882 ], [ -76.977087, 38.910341 ], [ -76.976808, 38.911189 ], [ -76.976325, 38.912641 ], [ -76.975708, 38.913438 ], [ -76.975123, 38.914131 ], [ -76.975300, 38.914148 ], [ -76.975526, 38.914361 ], [ -76.976368, 38.915162 ], [ -76.976480, 38.915267 ], [ -76.977065, 38.915830 ], [ -76.977607, 38.916343 ], [ -76.977848, 38.916581 ], [ -76.978310, 38.916915 ], [ -76.978213, 38.917162 ], [ -76.978165, 38.917283 ], [ -76.978192, 38.917558 ], [ -76.978267, 38.917959 ], [ -76.978294, 38.918105 ], [ -76.978363, 38.918531 ], [ -76.978374, 38.918606 ], [ -76.978444, 38.919002 ], [ -76.978455, 38.919065 ], [ -76.978465, 38.919094 ], [ -76.978492, 38.919186 ], [ -76.978514, 38.919244 ], [ -76.978524, 38.919273 ], [ -76.978551, 38.919328 ], [ -76.978562, 38.919357 ], [ -76.978589, 38.919407 ], [ -76.978616, 38.919449 ], [ -76.978680, 38.919549 ], [ -76.978717, 38.919599 ], [ -76.978760, 38.919657 ], [ -76.978809, 38.919716 ], [ -76.978862, 38.919770 ], [ -76.978916, 38.919824 ], [ -76.979002, 38.919895 ], [ -76.978991, 38.920021 ], [ -76.978991, 38.920041 ], [ -76.978991, 38.920229 ], [ -76.978991, 38.920309 ], [ -76.978991, 38.920530 ], [ -76.978991, 38.921289 ], [ -76.978991, 38.922287 ], [ -76.978991, 38.922366 ], [ -76.978991, 38.922596 ], [ -76.978996, 38.922621 ], [ -76.978996, 38.922771 ], [ -76.978996, 38.922913 ], [ -76.978996, 38.923147 ], [ -76.978996, 38.923351 ], [ -76.978996, 38.923439 ], [ -76.978991, 38.923860 ], [ -76.978996, 38.924090 ], [ -76.978996, 38.924424 ], [ -76.978996, 38.924511 ], [ -76.978991, 38.925037 ], [ -76.978991, 38.925580 ], [ -76.978991, 38.925897 ], [ -76.964375, 38.925897 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009000", "GEOID": "11001009000", "NAME": "90", "NAMELSAD": "Census Tract 90", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1427114, "AWATER": 31550, "INTPTLAT": "+38.9226934", "INTPTLON": "-076.9545101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.965156, 38.925258 ], [ -76.964931, 38.925429 ], [ -76.964813, 38.925555 ], [ -76.964502, 38.925797 ], [ -76.964375, 38.925897 ], [ -76.951427, 38.925897 ], [ -76.950849, 38.925454 ], [ -76.949219, 38.924198 ], [ -76.947384, 38.922798 ], [ -76.947384, 38.917173 ], [ -76.949143, 38.917253 ], [ -76.953918, 38.917520 ], [ -76.954202, 38.917533 ], [ -76.956090, 38.917604 ], [ -76.956455, 38.917616 ], [ -76.956106, 38.917788 ], [ -76.955076, 38.918301 ], [ -76.954980, 38.918343 ], [ -76.955506, 38.918668 ], [ -76.955919, 38.918940 ], [ -76.956353, 38.919282 ], [ -76.956471, 38.919374 ], [ -76.956595, 38.919465 ], [ -76.957490, 38.920066 ], [ -76.957560, 38.920117 ], [ -76.957785, 38.920267 ], [ -76.958317, 38.920634 ], [ -76.959170, 38.921210 ], [ -76.959368, 38.921339 ], [ -76.960521, 38.922116 ], [ -76.960972, 38.922416 ], [ -76.961820, 38.923000 ], [ -76.962630, 38.923539 ], [ -76.963601, 38.924182 ], [ -76.964555, 38.924837 ], [ -76.965038, 38.925171 ], [ -76.965156, 38.925258 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009602", "GEOID": "11001009602", "NAME": "96.02", "NAMELSAD": "Census Tract 96.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1306709, "AWATER": 67073, "INTPTLAT": "+38.9035769", "INTPTLON": "-076.9523616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.947384, 38.898401 ], [ -76.947910, 38.897980 ], [ -76.948221, 38.897730 ], [ -76.949058, 38.897070 ], [ -76.949401, 38.896795 ], [ -76.951010, 38.895521 ], [ -76.951547, 38.895605 ], [ -76.951756, 38.895638 ], [ -76.951895, 38.895667 ], [ -76.951928, 38.895676 ], [ -76.952147, 38.895709 ], [ -76.954814, 38.896164 ], [ -76.957485, 38.896577 ], [ -76.960285, 38.896987 ], [ -76.961170, 38.897074 ], [ -76.961782, 38.897120 ], [ -76.961980, 38.897137 ], [ -76.962023, 38.897321 ], [ -76.962029, 38.897346 ], [ -76.962088, 38.897596 ], [ -76.962104, 38.897759 ], [ -76.962190, 38.898703 ], [ -76.962216, 38.899496 ], [ -76.961964, 38.900180 ], [ -76.961406, 38.900786 ], [ -76.960613, 38.901721 ], [ -76.959384, 38.903391 ], [ -76.958606, 38.904748 ], [ -76.958268, 38.905428 ], [ -76.957968, 38.906154 ], [ -76.957737, 38.905896 ], [ -76.957389, 38.905837 ], [ -76.956943, 38.905599 ], [ -76.956675, 38.905532 ], [ -76.956455, 38.905524 ], [ -76.956235, 38.905553 ], [ -76.956010, 38.905699 ], [ -76.955774, 38.905925 ], [ -76.955640, 38.905975 ], [ -76.955404, 38.906004 ], [ -76.955114, 38.906062 ], [ -76.954985, 38.906121 ], [ -76.954985, 38.906146 ], [ -76.954969, 38.906154 ], [ -76.954932, 38.906179 ], [ -76.954696, 38.906250 ], [ -76.954631, 38.906271 ], [ -76.954599, 38.906284 ], [ -76.954561, 38.906296 ], [ -76.954492, 38.906321 ], [ -76.954460, 38.906338 ], [ -76.954406, 38.906371 ], [ -76.954374, 38.906384 ], [ -76.954309, 38.906417 ], [ -76.954283, 38.906438 ], [ -76.954245, 38.906451 ], [ -76.954170, 38.906480 ], [ -76.954138, 38.906497 ], [ -76.954100, 38.906513 ], [ -76.954030, 38.906530 ], [ -76.953987, 38.906543 ], [ -76.953923, 38.906568 ], [ -76.953859, 38.906601 ], [ -76.953837, 38.906609 ], [ -76.953757, 38.906651 ], [ -76.953741, 38.906659 ], [ -76.953682, 38.906701 ], [ -76.953666, 38.906714 ], [ -76.953633, 38.906747 ], [ -76.953623, 38.906764 ], [ -76.953612, 38.906780 ], [ -76.953521, 38.906785 ], [ -76.953532, 38.906822 ], [ -76.953526, 38.906906 ], [ -76.953526, 38.906947 ], [ -76.953532, 38.906989 ], [ -76.953526, 38.907035 ], [ -76.953515, 38.907077 ], [ -76.953499, 38.907114 ], [ -76.953472, 38.907156 ], [ -76.953446, 38.907194 ], [ -76.953371, 38.907265 ], [ -76.953328, 38.907290 ], [ -76.953285, 38.907323 ], [ -76.953247, 38.907352 ], [ -76.953172, 38.907415 ], [ -76.953129, 38.907444 ], [ -76.953043, 38.907503 ], [ -76.953000, 38.907524 ], [ -76.952952, 38.907553 ], [ -76.952872, 38.907615 ], [ -76.952829, 38.907649 ], [ -76.952780, 38.907686 ], [ -76.952738, 38.907724 ], [ -76.952652, 38.907799 ], [ -76.952603, 38.907837 ], [ -76.952512, 38.907908 ], [ -76.952480, 38.907924 ], [ -76.952384, 38.907987 ], [ -76.952325, 38.908016 ], [ -76.952271, 38.908045 ], [ -76.952212, 38.908070 ], [ -76.952153, 38.908091 ], [ -76.952056, 38.908125 ], [ -76.951992, 38.908146 ], [ -76.951960, 38.908154 ], [ -76.951895, 38.908175 ], [ -76.951858, 38.908183 ], [ -76.951692, 38.908212 ], [ -76.951584, 38.908221 ], [ -76.951514, 38.908225 ], [ -76.951445, 38.908225 ], [ -76.951413, 38.908225 ], [ -76.951343, 38.908225 ], [ -76.951273, 38.908216 ], [ -76.951241, 38.908212 ], [ -76.951177, 38.908200 ], [ -76.951069, 38.908187 ], [ -76.951037, 38.908183 ], [ -76.950973, 38.908171 ], [ -76.950796, 38.908108 ], [ -76.950742, 38.908087 ], [ -76.950640, 38.908045 ], [ -76.950581, 38.908020 ], [ -76.950538, 38.907995 ], [ -76.950490, 38.907970 ], [ -76.950447, 38.907941 ], [ -76.950356, 38.907883 ], [ -76.950307, 38.907857 ], [ -76.950259, 38.907828 ], [ -76.950216, 38.907799 ], [ -76.950173, 38.907766 ], [ -76.950130, 38.907732 ], [ -76.950055, 38.907661 ], [ -76.949927, 38.907549 ], [ -76.949884, 38.907511 ], [ -76.949739, 38.907352 ], [ -76.949599, 38.907181 ], [ -76.949535, 38.907110 ], [ -76.949508, 38.907069 ], [ -76.949444, 38.906998 ], [ -76.949412, 38.906964 ], [ -76.949342, 38.906881 ], [ -76.949283, 38.906801 ], [ -76.949256, 38.906764 ], [ -76.949229, 38.906722 ], [ -76.949197, 38.906680 ], [ -76.949165, 38.906639 ], [ -76.949111, 38.906559 ], [ -76.949090, 38.906513 ], [ -76.949074, 38.906472 ], [ -76.949063, 38.906434 ], [ -76.949047, 38.906392 ], [ -76.949004, 38.906309 ], [ -76.948988, 38.906267 ], [ -76.948961, 38.906196 ], [ -76.948940, 38.906159 ], [ -76.948907, 38.906121 ], [ -76.948848, 38.906046 ], [ -76.948811, 38.906008 ], [ -76.948746, 38.905929 ], [ -76.948709, 38.905891 ], [ -76.948677, 38.905845 ], [ -76.948639, 38.905808 ], [ -76.948602, 38.905770 ], [ -76.948564, 38.905729 ], [ -76.948527, 38.905695 ], [ -76.948462, 38.905624 ], [ -76.948435, 38.905578 ], [ -76.948376, 38.905503 ], [ -76.948312, 38.905428 ], [ -76.948258, 38.905353 ], [ -76.948194, 38.905278 ], [ -76.948156, 38.905240 ], [ -76.948119, 38.905203 ], [ -76.948081, 38.905169 ], [ -76.948044, 38.905132 ], [ -76.948001, 38.905098 ], [ -76.947958, 38.905061 ], [ -76.947931, 38.905019 ], [ -76.947877, 38.904985 ], [ -76.947840, 38.904960 ], [ -76.947797, 38.904940 ], [ -76.947733, 38.904869 ], [ -76.947700, 38.904835 ], [ -76.947674, 38.904785 ], [ -76.947636, 38.904727 ], [ -76.947566, 38.904660 ], [ -76.947491, 38.904597 ], [ -76.947421, 38.904522 ], [ -76.947384, 38.904487 ], [ -76.947384, 38.898401 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009604", "GEOID": "11001009604", "NAME": "96.04", "NAMELSAD": "Census Tract 96.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 503381, "AWATER": 65762, "INTPTLAT": "+38.8931572", "INTPTLON": "-076.9585043" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963258, 38.890365 ], [ -76.962528, 38.893287 ], [ -76.961857, 38.895300 ], [ -76.961798, 38.896122 ], [ -76.961954, 38.897003 ], [ -76.961970, 38.897091 ], [ -76.961980, 38.897137 ], [ -76.961782, 38.897120 ], [ -76.961170, 38.897074 ], [ -76.960285, 38.896987 ], [ -76.957485, 38.896577 ], [ -76.954814, 38.896164 ], [ -76.952147, 38.895709 ], [ -76.951928, 38.895676 ], [ -76.951895, 38.895667 ], [ -76.951756, 38.895638 ], [ -76.951547, 38.895605 ], [ -76.951010, 38.895521 ], [ -76.951069, 38.895488 ], [ -76.951123, 38.895425 ], [ -76.953161, 38.893442 ], [ -76.954175, 38.892402 ], [ -76.956210, 38.890365 ], [ -76.963258, 38.890365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009601", "GEOID": "11001009601", "NAME": "96.01", "NAMELSAD": "Census Tract 96.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1905262, "AWATER": 189666, "INTPTLAT": "+38.9091300", "INTPTLON": "-076.9490606" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.957968, 38.906154 ], [ -76.957882, 38.906271 ], [ -76.956782, 38.907857 ], [ -76.954454, 38.910959 ], [ -76.953821, 38.912291 ], [ -76.953569, 38.914382 ], [ -76.952888, 38.914799 ], [ -76.951992, 38.914903 ], [ -76.947384, 38.914972 ], [ -76.947384, 38.904487 ], [ -76.947421, 38.904522 ], [ -76.947491, 38.904597 ], [ -76.947566, 38.904660 ], [ -76.947636, 38.904727 ], [ -76.947674, 38.904785 ], [ -76.947700, 38.904835 ], [ -76.947733, 38.904869 ], [ -76.947797, 38.904940 ], [ -76.947840, 38.904960 ], [ -76.947877, 38.904985 ], [ -76.947931, 38.905019 ], [ -76.947958, 38.905061 ], [ -76.948001, 38.905098 ], [ -76.948044, 38.905132 ], [ -76.948081, 38.905169 ], [ -76.948119, 38.905203 ], [ -76.948156, 38.905240 ], [ -76.948194, 38.905278 ], [ -76.948258, 38.905353 ], [ -76.948312, 38.905428 ], [ -76.948376, 38.905503 ], [ -76.948435, 38.905578 ], [ -76.948462, 38.905624 ], [ -76.948527, 38.905695 ], [ -76.948564, 38.905729 ], [ -76.948602, 38.905770 ], [ -76.948639, 38.905808 ], [ -76.948677, 38.905845 ], [ -76.948709, 38.905891 ], [ -76.948746, 38.905929 ], [ -76.948811, 38.906008 ], [ -76.948848, 38.906046 ], [ -76.948907, 38.906121 ], [ -76.948940, 38.906159 ], [ -76.948961, 38.906196 ], [ -76.948988, 38.906267 ], [ -76.949004, 38.906309 ], [ -76.949047, 38.906392 ], [ -76.949063, 38.906434 ], [ -76.949074, 38.906472 ], [ -76.949090, 38.906513 ], [ -76.949111, 38.906559 ], [ -76.949165, 38.906639 ], [ -76.949197, 38.906680 ], [ -76.949229, 38.906722 ], [ -76.949256, 38.906764 ], [ -76.949283, 38.906801 ], [ -76.949342, 38.906881 ], [ -76.949412, 38.906964 ], [ -76.949444, 38.906998 ], [ -76.949508, 38.907069 ], [ -76.949535, 38.907110 ], [ -76.949599, 38.907181 ], [ -76.949739, 38.907352 ], [ -76.949884, 38.907511 ], [ -76.949927, 38.907549 ], [ -76.950055, 38.907661 ], [ -76.950130, 38.907732 ], [ -76.950173, 38.907766 ], [ -76.950216, 38.907799 ], [ -76.950259, 38.907828 ], [ -76.950307, 38.907857 ], [ -76.950356, 38.907883 ], [ -76.950447, 38.907941 ], [ -76.950490, 38.907970 ], [ -76.950538, 38.907995 ], [ -76.950581, 38.908020 ], [ -76.950640, 38.908045 ], [ -76.950742, 38.908087 ], [ -76.950796, 38.908108 ], [ -76.950973, 38.908171 ], [ -76.951037, 38.908183 ], [ -76.951069, 38.908187 ], [ -76.951177, 38.908200 ], [ -76.951241, 38.908212 ], [ -76.951273, 38.908216 ], [ -76.951343, 38.908225 ], [ -76.951413, 38.908225 ], [ -76.951445, 38.908225 ], [ -76.951514, 38.908225 ], [ -76.951584, 38.908221 ], [ -76.951692, 38.908212 ], [ -76.951858, 38.908183 ], [ -76.951895, 38.908175 ], [ -76.951960, 38.908154 ], [ -76.951992, 38.908146 ], [ -76.952056, 38.908125 ], [ -76.952153, 38.908091 ], [ -76.952212, 38.908070 ], [ -76.952271, 38.908045 ], [ -76.952325, 38.908016 ], [ -76.952384, 38.907987 ], [ -76.952480, 38.907924 ], [ -76.952512, 38.907908 ], [ -76.952603, 38.907837 ], [ -76.952652, 38.907799 ], [ -76.952738, 38.907724 ], [ -76.952780, 38.907686 ], [ -76.952829, 38.907649 ], [ -76.952872, 38.907615 ], [ -76.952952, 38.907553 ], [ -76.953000, 38.907524 ], [ -76.953043, 38.907503 ], [ -76.953129, 38.907444 ], [ -76.953172, 38.907415 ], [ -76.953247, 38.907352 ], [ -76.953285, 38.907323 ], [ -76.953328, 38.907290 ], [ -76.953371, 38.907265 ], [ -76.953446, 38.907194 ], [ -76.953472, 38.907156 ], [ -76.953499, 38.907114 ], [ -76.953515, 38.907077 ], [ -76.953526, 38.907035 ], [ -76.953532, 38.906989 ], [ -76.953526, 38.906947 ], [ -76.953526, 38.906906 ], [ -76.953532, 38.906822 ], [ -76.953521, 38.906785 ], [ -76.953612, 38.906780 ], [ -76.953623, 38.906764 ], [ -76.953633, 38.906747 ], [ -76.953666, 38.906714 ], [ -76.953682, 38.906701 ], [ -76.953741, 38.906659 ], [ -76.953757, 38.906651 ], [ -76.953837, 38.906609 ], [ -76.953859, 38.906601 ], [ -76.953923, 38.906568 ], [ -76.953987, 38.906543 ], [ -76.954030, 38.906530 ], [ -76.954100, 38.906513 ], [ -76.954138, 38.906497 ], [ -76.954170, 38.906480 ], [ -76.954245, 38.906451 ], [ -76.954283, 38.906438 ], [ -76.954309, 38.906417 ], [ -76.954374, 38.906384 ], [ -76.954406, 38.906371 ], [ -76.954460, 38.906338 ], [ -76.954492, 38.906321 ], [ -76.954561, 38.906296 ], [ -76.954599, 38.906284 ], [ -76.954631, 38.906271 ], [ -76.954696, 38.906250 ], [ -76.954932, 38.906179 ], [ -76.954969, 38.906154 ], [ -76.954985, 38.906146 ], [ -76.954985, 38.906121 ], [ -76.955114, 38.906062 ], [ -76.955404, 38.906004 ], [ -76.955640, 38.905975 ], [ -76.955774, 38.905925 ], [ -76.956010, 38.905699 ], [ -76.956235, 38.905553 ], [ -76.956455, 38.905524 ], [ -76.956675, 38.905532 ], [ -76.956943, 38.905599 ], [ -76.957389, 38.905837 ], [ -76.957737, 38.905896 ], [ -76.957968, 38.906154 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009603", "GEOID": "11001009603", "NAME": "96.03", "NAMELSAD": "Census Tract 96.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 607400, "AWATER": 0, "INTPTLAT": "+38.8918285", "INTPTLON": "-076.9477195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.947384, 38.890365 ], [ -76.956210, 38.890365 ], [ -76.954175, 38.892402 ], [ -76.953161, 38.893442 ], [ -76.951123, 38.895425 ], [ -76.951069, 38.895488 ], [ -76.951010, 38.895521 ], [ -76.949358, 38.895221 ], [ -76.949326, 38.895212 ], [ -76.949154, 38.895133 ], [ -76.949020, 38.895058 ], [ -76.948108, 38.894649 ], [ -76.948022, 38.894611 ], [ -76.947910, 38.894561 ], [ -76.947384, 38.894340 ], [ -76.947384, 38.890365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007803", "GEOID": "11001007803", "NAME": "78.03", "NAMELSAD": "Census Tract 78.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 986677, "AWATER": 3755, "INTPTLAT": "+38.8962674", "INTPTLON": "-076.9407751" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.947384, 38.894340 ], [ -76.947910, 38.894561 ], [ -76.948022, 38.894611 ], [ -76.948108, 38.894649 ], [ -76.949020, 38.895058 ], [ -76.949154, 38.895133 ], [ -76.949326, 38.895212 ], [ -76.949358, 38.895221 ], [ -76.951010, 38.895521 ], [ -76.949401, 38.896795 ], [ -76.949058, 38.897070 ], [ -76.948221, 38.897730 ], [ -76.947910, 38.897980 ], [ -76.947384, 38.898401 ], [ -76.947384, 38.894340 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "006804", "GEOID": "11001006804", "NAME": "68.04", "NAMELSAD": "Census Tract 68.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1542277, "AWATER": 477741, "INTPTLAT": "+38.8863842", "INTPTLON": "-076.9704836" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.973919, 38.890365 ], [ -76.973906, 38.890386 ], [ -76.973895, 38.890411 ], [ -76.973879, 38.890444 ], [ -76.973863, 38.890478 ], [ -76.973852, 38.890511 ], [ -76.973830, 38.890582 ], [ -76.973841, 38.890953 ], [ -76.973852, 38.891104 ], [ -76.973857, 38.891191 ], [ -76.973868, 38.891283 ], [ -76.973879, 38.891371 ], [ -76.973906, 38.891521 ], [ -76.973938, 38.891684 ], [ -76.973959, 38.891793 ], [ -76.973975, 38.891847 ], [ -76.974013, 38.891997 ], [ -76.974029, 38.892043 ], [ -76.974056, 38.892127 ], [ -76.974088, 38.892214 ], [ -76.974120, 38.892302 ], [ -76.974136, 38.892344 ], [ -76.974158, 38.892386 ], [ -76.974179, 38.892432 ], [ -76.974206, 38.892473 ], [ -76.974233, 38.892515 ], [ -76.974260, 38.892557 ], [ -76.974292, 38.892599 ], [ -76.974356, 38.892678 ], [ -76.974394, 38.892715 ], [ -76.974431, 38.892753 ], [ -76.974506, 38.892816 ], [ -76.974571, 38.892870 ], [ -76.974635, 38.892920 ], [ -76.974710, 38.892962 ], [ -76.974785, 38.893004 ], [ -76.974860, 38.893041 ], [ -76.974893, 38.893062 ], [ -76.974957, 38.893091 ], [ -76.974995, 38.893108 ], [ -76.975027, 38.893120 ], [ -76.975086, 38.893137 ], [ -76.975150, 38.893296 ], [ -76.975150, 38.893475 ], [ -76.975145, 38.893530 ], [ -76.975145, 38.893555 ], [ -76.975139, 38.893576 ], [ -76.975134, 38.893601 ], [ -76.975129, 38.893642 ], [ -76.975118, 38.893692 ], [ -76.975107, 38.893738 ], [ -76.975080, 38.893834 ], [ -76.975048, 38.893926 ], [ -76.975032, 38.893968 ], [ -76.975005, 38.894039 ], [ -76.974962, 38.894123 ], [ -76.974941, 38.894164 ], [ -76.974898, 38.894231 ], [ -76.974871, 38.894260 ], [ -76.974818, 38.894335 ], [ -76.974764, 38.894402 ], [ -76.974699, 38.894473 ], [ -76.974619, 38.894553 ], [ -76.974565, 38.894607 ], [ -76.974506, 38.894657 ], [ -76.974458, 38.894695 ], [ -76.974404, 38.894732 ], [ -76.974356, 38.894761 ], [ -76.974254, 38.894832 ], [ -76.974190, 38.894866 ], [ -76.974126, 38.894899 ], [ -76.974007, 38.894958 ], [ -76.973959, 38.894978 ], [ -76.973900, 38.895003 ], [ -76.973836, 38.895024 ], [ -76.973761, 38.895054 ], [ -76.973680, 38.895079 ], [ -76.973600, 38.895104 ], [ -76.973090, 38.895241 ], [ -76.972983, 38.895271 ], [ -76.971840, 38.895575 ], [ -76.971722, 38.895605 ], [ -76.971610, 38.895638 ], [ -76.971502, 38.895680 ], [ -76.971449, 38.895701 ], [ -76.971400, 38.895726 ], [ -76.971379, 38.895734 ], [ -76.971336, 38.895755 ], [ -76.971293, 38.895776 ], [ -76.971223, 38.895818 ], [ -76.971154, 38.895855 ], [ -76.971089, 38.895901 ], [ -76.971025, 38.895947 ], [ -76.970966, 38.895997 ], [ -76.970687, 38.896289 ], [ -76.969576, 38.897538 ], [ -76.969523, 38.897605 ], [ -76.969501, 38.897634 ], [ -76.969458, 38.897767 ], [ -76.968809, 38.897688 ], [ -76.968064, 38.897625 ], [ -76.966331, 38.897492 ], [ -76.965618, 38.897429 ], [ -76.962485, 38.897170 ], [ -76.961980, 38.897137 ], [ -76.961970, 38.897091 ], [ -76.961954, 38.897003 ], [ -76.961798, 38.896122 ], [ -76.961857, 38.895300 ], [ -76.962528, 38.893287 ], [ -76.963258, 38.890365 ], [ -76.973919, 38.890365 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2344, "y": 3132 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009507", "GEOID": "11001009507", "NAME": "95.07", "NAMELSAD": "Census Tract 95.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 295290, "AWATER": 0, "INTPTLAT": "+38.9584945", "INTPTLON": "-076.9977787" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.958353 ], [ -76.992874, 38.958220 ], [ -76.992740, 38.958111 ], [ -76.992633, 38.958028 ], [ -76.992525, 38.957945 ], [ -76.992225, 38.957711 ], [ -76.992145, 38.957648 ], [ -76.992102, 38.957615 ], [ -76.992053, 38.957578 ], [ -76.992043, 38.957565 ], [ -76.992010, 38.957540 ], [ -76.991962, 38.957502 ], [ -76.991909, 38.957461 ], [ -76.991855, 38.957419 ], [ -76.991839, 38.957407 ], [ -76.991630, 38.957248 ], [ -76.991667, 38.957240 ], [ -76.991732, 38.957227 ], [ -76.991801, 38.957219 ], [ -76.991833, 38.957215 ], [ -76.991903, 38.957210 ], [ -76.991941, 38.957210 ], [ -76.991973, 38.957215 ], [ -76.992434, 38.957252 ], [ -76.992477, 38.957252 ], [ -76.992686, 38.957269 ], [ -76.992853, 38.957273 ], [ -76.993046, 38.957273 ], [ -76.993046, 38.958353 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009508", "GEOID": "11001009508", "NAME": "95.08", "NAMELSAD": "Census Tract 95.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 962212, "AWATER": 0, "INTPTLAT": "+38.9536826", "INTPTLON": "-076.9985582" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.957273 ], [ -76.992853, 38.957273 ], [ -76.992686, 38.957269 ], [ -76.992477, 38.957252 ], [ -76.992434, 38.957252 ], [ -76.991973, 38.957215 ], [ -76.991941, 38.957210 ], [ -76.991903, 38.957210 ], [ -76.991833, 38.957215 ], [ -76.991801, 38.957219 ], [ -76.991732, 38.957227 ], [ -76.991667, 38.957240 ], [ -76.991630, 38.957248 ], [ -76.991517, 38.957156 ], [ -76.991453, 38.957106 ], [ -76.991190, 38.956898 ], [ -76.991066, 38.956806 ], [ -76.990991, 38.956747 ], [ -76.990916, 38.956689 ], [ -76.990846, 38.956635 ], [ -76.990492, 38.956351 ], [ -76.990428, 38.956301 ], [ -76.990348, 38.956239 ], [ -76.990272, 38.956176 ], [ -76.990187, 38.956109 ], [ -76.989999, 38.955963 ], [ -76.989784, 38.955792 ], [ -76.989564, 38.955621 ], [ -76.989462, 38.955542 ], [ -76.989387, 38.955483 ], [ -76.989301, 38.955421 ], [ -76.989275, 38.955400 ], [ -76.989006, 38.955187 ], [ -76.988749, 38.954987 ], [ -76.988454, 38.954753 ], [ -76.988175, 38.954537 ], [ -76.988127, 38.954499 ], [ -76.987976, 38.954382 ], [ -76.987955, 38.954361 ], [ -76.987832, 38.954265 ], [ -76.987719, 38.954178 ], [ -76.987665, 38.954132 ], [ -76.987199, 38.953773 ], [ -76.986566, 38.953277 ], [ -76.986142, 38.952947 ], [ -76.986013, 38.952847 ], [ -76.985868, 38.952739 ], [ -76.985745, 38.952647 ], [ -76.985772, 38.952638 ], [ -76.985798, 38.952630 ], [ -76.985852, 38.952618 ], [ -76.985906, 38.952609 ], [ -76.985933, 38.952609 ], [ -76.985986, 38.952609 ], [ -76.986126, 38.952618 ], [ -76.986228, 38.952630 ], [ -76.986281, 38.952638 ], [ -76.986389, 38.952663 ], [ -76.986490, 38.952688 ], [ -76.987016, 38.952864 ], [ -76.987402, 38.952972 ], [ -76.988196, 38.953197 ], [ -76.988395, 38.953239 ], [ -76.988470, 38.953164 ], [ -76.989141, 38.952517 ], [ -76.989210, 38.952459 ], [ -76.989232, 38.952438 ], [ -76.989253, 38.952409 ], [ -76.989452, 38.952409 ], [ -76.990111, 38.952409 ], [ -76.990551, 38.952409 ], [ -76.990814, 38.952405 ], [ -76.991522, 38.952409 ], [ -76.991587, 38.952409 ], [ -76.991683, 38.952409 ], [ -76.991860, 38.952409 ], [ -76.992128, 38.952405 ], [ -76.992622, 38.952388 ], [ -76.992702, 38.952384 ], [ -76.992815, 38.952380 ], [ -76.993046, 38.952372 ], [ -76.993046, 38.957273 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009509", "GEOID": "11001009509", "NAME": "95.09", "NAMELSAD": "Census Tract 95.09", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 648848, "AWATER": 0, "INTPTLAT": "+38.9492140", "INTPTLON": "-076.9950319" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.988894, 38.946268 ], [ -76.988990, 38.946272 ], [ -76.990111, 38.946272 ], [ -76.990235, 38.946272 ], [ -76.991318, 38.946272 ], [ -76.991946, 38.946276 ], [ -76.992509, 38.946276 ], [ -76.992643, 38.946276 ], [ -76.992767, 38.946276 ], [ -76.993046, 38.946274 ], [ -76.993046, 38.952372 ], [ -76.992815, 38.952380 ], [ -76.992702, 38.952384 ], [ -76.992622, 38.952388 ], [ -76.992128, 38.952405 ], [ -76.991860, 38.952409 ], [ -76.991683, 38.952409 ], [ -76.991587, 38.952409 ], [ -76.991522, 38.952409 ], [ -76.990814, 38.952405 ], [ -76.990551, 38.952409 ], [ -76.990111, 38.952409 ], [ -76.989452, 38.952409 ], [ -76.989253, 38.952409 ], [ -76.989269, 38.952392 ], [ -76.989285, 38.952371 ], [ -76.989307, 38.952346 ], [ -76.989355, 38.952284 ], [ -76.989366, 38.952263 ], [ -76.989382, 38.952242 ], [ -76.989430, 38.952154 ], [ -76.989446, 38.952113 ], [ -76.989473, 38.952059 ], [ -76.989484, 38.952025 ], [ -76.989505, 38.951963 ], [ -76.989516, 38.951896 ], [ -76.989521, 38.951862 ], [ -76.989521, 38.951829 ], [ -76.989521, 38.951796 ], [ -76.989521, 38.951762 ], [ -76.989527, 38.951637 ], [ -76.989527, 38.951550 ], [ -76.989527, 38.950957 ], [ -76.989527, 38.950269 ], [ -76.989527, 38.949426 ], [ -76.989527, 38.949201 ], [ -76.989527, 38.948775 ], [ -76.989527, 38.948713 ], [ -76.989521, 38.948684 ], [ -76.989516, 38.948629 ], [ -76.989511, 38.948575 ], [ -76.989436, 38.948296 ], [ -76.989371, 38.948066 ], [ -76.989366, 38.948033 ], [ -76.989350, 38.947983 ], [ -76.989189, 38.947394 ], [ -76.989167, 38.947303 ], [ -76.989135, 38.947173 ], [ -76.989082, 38.946990 ], [ -76.989017, 38.946756 ], [ -76.988958, 38.946531 ], [ -76.988947, 38.946493 ], [ -76.988937, 38.946451 ], [ -76.988894, 38.946268 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009504", "GEOID": "11001009504", "NAME": "95.04", "NAMELSAD": "Census Tract 95.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1033168, "AWATER": 0, "INTPTLAT": "+38.9409032", "INTPTLON": "-076.9931121" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.988840, 38.934627 ], [ -76.988937, 38.934618 ], [ -76.989221, 38.934606 ], [ -76.989629, 38.934581 ], [ -76.989940, 38.934564 ], [ -76.990246, 38.934547 ], [ -76.990594, 38.934539 ], [ -76.991158, 38.934514 ], [ -76.991243, 38.934514 ], [ -76.991683, 38.934489 ], [ -76.992112, 38.934464 ], [ -76.992686, 38.934439 ], [ -76.992788, 38.934431 ], [ -76.992869, 38.934431 ], [ -76.992944, 38.934426 ], [ -76.992981, 38.934426 ], [ -76.993024, 38.934418 ], [ -76.993046, 38.934413 ], [ -76.993046, 38.946274 ], [ -76.992767, 38.946276 ], [ -76.992643, 38.946276 ], [ -76.992509, 38.946276 ], [ -76.991946, 38.946276 ], [ -76.991318, 38.946272 ], [ -76.990235, 38.946272 ], [ -76.990111, 38.946272 ], [ -76.988990, 38.946272 ], [ -76.988894, 38.946268 ], [ -76.988856, 38.946130 ], [ -76.988808, 38.945993 ], [ -76.988717, 38.945692 ], [ -76.988615, 38.945342 ], [ -76.988588, 38.945254 ], [ -76.988454, 38.944749 ], [ -76.988336, 38.944319 ], [ -76.988330, 38.944294 ], [ -76.988320, 38.944269 ], [ -76.988314, 38.944236 ], [ -76.988304, 38.944194 ], [ -76.988298, 38.944148 ], [ -76.988298, 38.944094 ], [ -76.988298, 38.943685 ], [ -76.988298, 38.943260 ], [ -76.988298, 38.943160 ], [ -76.988304, 38.942868 ], [ -76.988304, 38.942784 ], [ -76.988298, 38.941795 ], [ -76.988298, 38.941461 ], [ -76.988298, 38.941203 ], [ -76.988304, 38.940952 ], [ -76.988304, 38.940802 ], [ -76.988304, 38.940723 ], [ -76.988304, 38.940614 ], [ -76.988304, 38.940514 ], [ -76.988304, 38.940473 ], [ -76.988298, 38.940272 ], [ -76.988293, 38.939734 ], [ -76.988293, 38.939659 ], [ -76.988298, 38.939371 ], [ -76.988298, 38.939066 ], [ -76.988298, 38.938983 ], [ -76.988304, 38.938424 ], [ -76.988309, 38.938311 ], [ -76.988314, 38.938244 ], [ -76.988314, 38.938224 ], [ -76.988443, 38.937485 ], [ -76.988491, 38.937243 ], [ -76.988550, 38.936884 ], [ -76.988577, 38.936747 ], [ -76.988652, 38.936338 ], [ -76.988674, 38.936171 ], [ -76.988722, 38.935929 ], [ -76.988770, 38.935649 ], [ -76.988835, 38.935269 ], [ -76.988851, 38.935190 ], [ -76.988856, 38.935111 ], [ -76.988862, 38.935027 ], [ -76.988862, 38.934948 ], [ -76.988840, 38.934627 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009503", "GEOID": "11001009503", "NAME": "95.03", "NAMELSAD": "Census Tract 95.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1423609, "AWATER": 0, "INTPTLAT": "+38.9434458", "INTPTLON": "-076.9845276" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.988395, 38.953239 ], [ -76.988196, 38.953197 ], [ -76.987402, 38.952972 ], [ -76.987016, 38.952864 ], [ -76.986490, 38.952688 ], [ -76.986389, 38.952663 ], [ -76.986281, 38.952638 ], [ -76.986228, 38.952630 ], [ -76.986126, 38.952618 ], [ -76.985986, 38.952609 ], [ -76.985933, 38.952609 ], [ -76.985906, 38.952609 ], [ -76.985852, 38.952618 ], [ -76.985798, 38.952630 ], [ -76.985772, 38.952638 ], [ -76.985745, 38.952647 ], [ -76.985520, 38.952467 ], [ -76.984742, 38.951850 ], [ -76.984688, 38.951825 ], [ -76.984103, 38.951362 ], [ -76.983004, 38.950490 ], [ -76.982977, 38.950469 ], [ -76.978927, 38.947257 ], [ -76.978401, 38.946848 ], [ -76.978229, 38.946714 ], [ -76.977779, 38.946372 ], [ -76.977929, 38.946264 ], [ -76.977956, 38.946247 ], [ -76.978047, 38.946180 ], [ -76.978160, 38.946072 ], [ -76.978192, 38.946047 ], [ -76.978283, 38.945963 ], [ -76.978310, 38.945934 ], [ -76.978396, 38.945847 ], [ -76.978444, 38.945788 ], [ -76.978471, 38.945751 ], [ -76.978530, 38.945680 ], [ -76.978557, 38.945642 ], [ -76.978583, 38.945609 ], [ -76.978621, 38.945554 ], [ -76.978637, 38.945534 ], [ -76.978664, 38.945500 ], [ -76.978685, 38.945475 ], [ -76.978717, 38.945425 ], [ -76.978793, 38.945333 ], [ -76.978852, 38.945254 ], [ -76.979463, 38.944440 ], [ -76.979619, 38.944232 ], [ -76.979683, 38.944144 ], [ -76.980182, 38.943477 ], [ -76.980230, 38.943410 ], [ -76.980380, 38.943214 ], [ -76.980386, 38.943185 ], [ -76.980391, 38.943135 ], [ -76.980397, 38.943085 ], [ -76.980397, 38.943034 ], [ -76.980397, 38.942993 ], [ -76.980386, 38.942943 ], [ -76.980375, 38.942859 ], [ -76.980359, 38.942751 ], [ -76.980327, 38.942308 ], [ -76.980284, 38.941787 ], [ -76.980262, 38.941516 ], [ -76.980236, 38.941111 ], [ -76.980203, 38.940719 ], [ -76.980198, 38.940631 ], [ -76.980128, 38.939738 ], [ -76.980150, 38.939576 ], [ -76.980096, 38.939317 ], [ -76.980091, 38.939288 ], [ -76.980016, 38.938307 ], [ -76.980010, 38.938224 ], [ -76.979849, 38.936162 ], [ -76.979817, 38.935753 ], [ -76.979812, 38.935620 ], [ -76.979801, 38.935486 ], [ -76.979780, 38.935253 ], [ -76.979764, 38.935082 ], [ -76.979871, 38.935073 ], [ -76.980810, 38.935027 ], [ -76.981325, 38.935002 ], [ -76.981421, 38.934998 ], [ -76.982870, 38.934927 ], [ -76.983030, 38.934919 ], [ -76.983599, 38.934890 ], [ -76.983621, 38.934885 ], [ -76.984586, 38.934840 ], [ -76.984838, 38.934827 ], [ -76.985305, 38.934806 ], [ -76.986474, 38.934748 ], [ -76.986582, 38.934739 ], [ -76.986989, 38.934723 ], [ -76.987472, 38.934694 ], [ -76.988840, 38.934627 ], [ -76.988862, 38.934948 ], [ -76.988862, 38.935027 ], [ -76.988856, 38.935111 ], [ -76.988851, 38.935190 ], [ -76.988835, 38.935269 ], [ -76.988770, 38.935649 ], [ -76.988722, 38.935929 ], [ -76.988674, 38.936171 ], [ -76.988652, 38.936338 ], [ -76.988577, 38.936747 ], [ -76.988550, 38.936884 ], [ -76.988491, 38.937243 ], [ -76.988443, 38.937485 ], [ -76.988314, 38.938224 ], [ -76.988314, 38.938244 ], [ -76.988309, 38.938311 ], [ -76.988304, 38.938424 ], [ -76.988298, 38.938983 ], [ -76.988298, 38.939066 ], [ -76.988298, 38.939371 ], [ -76.988293, 38.939659 ], [ -76.988293, 38.939734 ], [ -76.988298, 38.940272 ], [ -76.988304, 38.940473 ], [ -76.988304, 38.940514 ], [ -76.988304, 38.940614 ], [ -76.988304, 38.940723 ], [ -76.988304, 38.940802 ], [ -76.988304, 38.940952 ], [ -76.988298, 38.941203 ], [ -76.988298, 38.941461 ], [ -76.988298, 38.941795 ], [ -76.988304, 38.942784 ], [ -76.988304, 38.942868 ], [ -76.988298, 38.943160 ], [ -76.988298, 38.943260 ], [ -76.988298, 38.943685 ], [ -76.988298, 38.944094 ], [ -76.988298, 38.944148 ], [ -76.988304, 38.944194 ], [ -76.988314, 38.944236 ], [ -76.988320, 38.944269 ], [ -76.988330, 38.944294 ], [ -76.988336, 38.944319 ], [ -76.988454, 38.944749 ], [ -76.988588, 38.945254 ], [ -76.988615, 38.945342 ], [ -76.988717, 38.945692 ], [ -76.988808, 38.945993 ], [ -76.988856, 38.946130 ], [ -76.988894, 38.946268 ], [ -76.988937, 38.946451 ], [ -76.988947, 38.946493 ], [ -76.988958, 38.946531 ], [ -76.989017, 38.946756 ], [ -76.989082, 38.946990 ], [ -76.989135, 38.947173 ], [ -76.989167, 38.947303 ], [ -76.989189, 38.947394 ], [ -76.989350, 38.947983 ], [ -76.989366, 38.948033 ], [ -76.989371, 38.948066 ], [ -76.989436, 38.948296 ], [ -76.989511, 38.948575 ], [ -76.989516, 38.948629 ], [ -76.989521, 38.948684 ], [ -76.989527, 38.948713 ], [ -76.989527, 38.948775 ], [ -76.989527, 38.949201 ], [ -76.989527, 38.949426 ], [ -76.989527, 38.950269 ], [ -76.989527, 38.950957 ], [ -76.989527, 38.951550 ], [ -76.989527, 38.951637 ], [ -76.989521, 38.951762 ], [ -76.989521, 38.951796 ], [ -76.989521, 38.951829 ], [ -76.989521, 38.951862 ], [ -76.989516, 38.951896 ], [ -76.989505, 38.951963 ], [ -76.989484, 38.952025 ], [ -76.989473, 38.952059 ], [ -76.989446, 38.952113 ], [ -76.989430, 38.952154 ], [ -76.989382, 38.952242 ], [ -76.989366, 38.952263 ], [ -76.989355, 38.952284 ], [ -76.989307, 38.952346 ], [ -76.989285, 38.952371 ], [ -76.989269, 38.952392 ], [ -76.989253, 38.952409 ], [ -76.989232, 38.952438 ], [ -76.989210, 38.952459 ], [ -76.989141, 38.952517 ], [ -76.988470, 38.953164 ], [ -76.988395, 38.953239 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009301", "GEOID": "11001009301", "NAME": "93.01", "NAMELSAD": "Census Tract 93.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1109091, "AWATER": 0, "INTPTLAT": "+38.9307613", "INTPTLON": "-076.9864892" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.993046, 38.934413 ], [ -76.993024, 38.934418 ], [ -76.992981, 38.934426 ], [ -76.992944, 38.934426 ], [ -76.992869, 38.934431 ], [ -76.992788, 38.934431 ], [ -76.992686, 38.934439 ], [ -76.992112, 38.934464 ], [ -76.991683, 38.934489 ], [ -76.991243, 38.934514 ], [ -76.991158, 38.934514 ], [ -76.990594, 38.934539 ], [ -76.990246, 38.934547 ], [ -76.989940, 38.934564 ], [ -76.989629, 38.934581 ], [ -76.989221, 38.934606 ], [ -76.988937, 38.934618 ], [ -76.988840, 38.934627 ], [ -76.987472, 38.934694 ], [ -76.986989, 38.934723 ], [ -76.986582, 38.934739 ], [ -76.986474, 38.934748 ], [ -76.985305, 38.934806 ], [ -76.984838, 38.934827 ], [ -76.984586, 38.934840 ], [ -76.983621, 38.934885 ], [ -76.983599, 38.934890 ], [ -76.983030, 38.934919 ], [ -76.982870, 38.934927 ], [ -76.981421, 38.934998 ], [ -76.981325, 38.935002 ], [ -76.980810, 38.935027 ], [ -76.979871, 38.935073 ], [ -76.979764, 38.935082 ], [ -76.979721, 38.934514 ], [ -76.979688, 38.934093 ], [ -76.979613, 38.933112 ], [ -76.979603, 38.933024 ], [ -76.979576, 38.932674 ], [ -76.979544, 38.932207 ], [ -76.979533, 38.932123 ], [ -76.979468, 38.931218 ], [ -76.979463, 38.931138 ], [ -76.979452, 38.931046 ], [ -76.979426, 38.930692 ], [ -76.979383, 38.930149 ], [ -76.979377, 38.930070 ], [ -76.979345, 38.929678 ], [ -76.979291, 38.929027 ], [ -76.979281, 38.928952 ], [ -76.979265, 38.928718 ], [ -76.979227, 38.928259 ], [ -76.979222, 38.928167 ], [ -76.979179, 38.927842 ], [ -76.979152, 38.927754 ], [ -76.979125, 38.927708 ], [ -76.980531, 38.927024 ], [ -76.980729, 38.926928 ], [ -76.981362, 38.926619 ], [ -76.982054, 38.926302 ], [ -76.983229, 38.925713 ], [ -76.983814, 38.925463 ], [ -76.985621, 38.924620 ], [ -76.985664, 38.924703 ], [ -76.985680, 38.924749 ], [ -76.985702, 38.924795 ], [ -76.985718, 38.924845 ], [ -76.985729, 38.924895 ], [ -76.985739, 38.924941 ], [ -76.985739, 38.924970 ], [ -76.985745, 38.925070 ], [ -76.985756, 38.925221 ], [ -76.985798, 38.925701 ], [ -76.985874, 38.926681 ], [ -76.985884, 38.926769 ], [ -76.985890, 38.926861 ], [ -76.985922, 38.927236 ], [ -76.985959, 38.927746 ], [ -76.985965, 38.927833 ], [ -76.986136, 38.927825 ], [ -76.986480, 38.927812 ], [ -76.986823, 38.927791 ], [ -76.987263, 38.927771 ], [ -76.987714, 38.927746 ], [ -76.988282, 38.927720 ], [ -76.988497, 38.927708 ], [ -76.988969, 38.927683 ], [ -76.989393, 38.927662 ], [ -76.990600, 38.927604 ], [ -76.990718, 38.927595 ], [ -76.990830, 38.927587 ], [ -76.991640, 38.927549 ], [ -76.992059, 38.927533 ], [ -76.992327, 38.927520 ], [ -76.992429, 38.927516 ], [ -76.992922, 38.927487 ], [ -76.993046, 38.927481 ], [ -76.993046, 38.934413 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009400", "GEOID": "11001009400", "NAME": "94", "NAMELSAD": "Census Tract 94", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1582882, "AWATER": 0, "INTPTLAT": "+38.9368061", "INTPTLON": "-076.9742464" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.977736, 38.946335 ], [ -76.977258, 38.945968 ], [ -76.974480, 38.943823 ], [ -76.974463, 38.943810 ], [ -76.973906, 38.943381 ], [ -76.973852, 38.943339 ], [ -76.973814, 38.943310 ], [ -76.973761, 38.943268 ], [ -76.973712, 38.943231 ], [ -76.973627, 38.943164 ], [ -76.973342, 38.942938 ], [ -76.972886, 38.942584 ], [ -76.972409, 38.942208 ], [ -76.972141, 38.942004 ], [ -76.972076, 38.941950 ], [ -76.972033, 38.941920 ], [ -76.971985, 38.941879 ], [ -76.971931, 38.941837 ], [ -76.971840, 38.941770 ], [ -76.971760, 38.941703 ], [ -76.971679, 38.941641 ], [ -76.971593, 38.941578 ], [ -76.971513, 38.941512 ], [ -76.971433, 38.941449 ], [ -76.971352, 38.941386 ], [ -76.971272, 38.941324 ], [ -76.971186, 38.941257 ], [ -76.971105, 38.941194 ], [ -76.971041, 38.941140 ], [ -76.970971, 38.941090 ], [ -76.970901, 38.941036 ], [ -76.970859, 38.940998 ], [ -76.970837, 38.940982 ], [ -76.970767, 38.940927 ], [ -76.970698, 38.940877 ], [ -76.970633, 38.940823 ], [ -76.970564, 38.940769 ], [ -76.970494, 38.940715 ], [ -76.970424, 38.940665 ], [ -76.970349, 38.940602 ], [ -76.970268, 38.940539 ], [ -76.970188, 38.940477 ], [ -76.970113, 38.940418 ], [ -76.970032, 38.940356 ], [ -76.969957, 38.940293 ], [ -76.969877, 38.940235 ], [ -76.969796, 38.940172 ], [ -76.969754, 38.940139 ], [ -76.969716, 38.940105 ], [ -76.969673, 38.940072 ], [ -76.969630, 38.940039 ], [ -76.969603, 38.940022 ], [ -76.969587, 38.940005 ], [ -76.969158, 38.939671 ], [ -76.968766, 38.939367 ], [ -76.968284, 38.938996 ], [ -76.968246, 38.938966 ], [ -76.968166, 38.938904 ], [ -76.968144, 38.938883 ], [ -76.968074, 38.938833 ], [ -76.967812, 38.938620 ], [ -76.966975, 38.937965 ], [ -76.966841, 38.937861 ], [ -76.966819, 38.937844 ], [ -76.966728, 38.937769 ], [ -76.966175, 38.937343 ], [ -76.965875, 38.937105 ], [ -76.965800, 38.937043 ], [ -76.965714, 38.936980 ], [ -76.965639, 38.936918 ], [ -76.965596, 38.936880 ], [ -76.965398, 38.936726 ], [ -76.965167, 38.936546 ], [ -76.965124, 38.936513 ], [ -76.965076, 38.936475 ], [ -76.964979, 38.936400 ], [ -76.964872, 38.936317 ], [ -76.964834, 38.936288 ], [ -76.964732, 38.936208 ], [ -76.964641, 38.936137 ], [ -76.964475, 38.936008 ], [ -76.964405, 38.935954 ], [ -76.964384, 38.935937 ], [ -76.964303, 38.935874 ], [ -76.963997, 38.935632 ], [ -76.963885, 38.935545 ], [ -76.963622, 38.935344 ], [ -76.963568, 38.935303 ], [ -76.963488, 38.935236 ], [ -76.963445, 38.935203 ], [ -76.963692, 38.935082 ], [ -76.963745, 38.935052 ], [ -76.963804, 38.935027 ], [ -76.963869, 38.934998 ], [ -76.965821, 38.934097 ], [ -76.966079, 38.933972 ], [ -76.968010, 38.932995 ], [ -76.969163, 38.932490 ], [ -76.970783, 38.931702 ], [ -76.971298, 38.931451 ], [ -76.971577, 38.931314 ], [ -76.972151, 38.931051 ], [ -76.973686, 38.930316 ], [ -76.974163, 38.930091 ], [ -76.974324, 38.930016 ], [ -76.974860, 38.929765 ], [ -76.976218, 38.929110 ], [ -76.976368, 38.929039 ], [ -76.978176, 38.928188 ], [ -76.978481, 38.928013 ], [ -76.978809, 38.927850 ], [ -76.979125, 38.927708 ], [ -76.979152, 38.927754 ], [ -76.979179, 38.927842 ], [ -76.979222, 38.928167 ], [ -76.979227, 38.928259 ], [ -76.979265, 38.928718 ], [ -76.979281, 38.928952 ], [ -76.979291, 38.929027 ], [ -76.979345, 38.929678 ], [ -76.979377, 38.930070 ], [ -76.979383, 38.930149 ], [ -76.979426, 38.930692 ], [ -76.979452, 38.931046 ], [ -76.979463, 38.931138 ], [ -76.979468, 38.931218 ], [ -76.979533, 38.932123 ], [ -76.979544, 38.932207 ], [ -76.979576, 38.932674 ], [ -76.979603, 38.933024 ], [ -76.979613, 38.933112 ], [ -76.979688, 38.934093 ], [ -76.979721, 38.934514 ], [ -76.979764, 38.935082 ], [ -76.979780, 38.935253 ], [ -76.979801, 38.935486 ], [ -76.979812, 38.935620 ], [ -76.979817, 38.935753 ], [ -76.979849, 38.936162 ], [ -76.980010, 38.938224 ], [ -76.980016, 38.938307 ], [ -76.980091, 38.939288 ], [ -76.980096, 38.939317 ], [ -76.980150, 38.939576 ], [ -76.980128, 38.939738 ], [ -76.980198, 38.940631 ], [ -76.980203, 38.940719 ], [ -76.980236, 38.941111 ], [ -76.980262, 38.941516 ], [ -76.980284, 38.941787 ], [ -76.980327, 38.942308 ], [ -76.980359, 38.942751 ], [ -76.980375, 38.942859 ], [ -76.980386, 38.942943 ], [ -76.980397, 38.942993 ], [ -76.980397, 38.943034 ], [ -76.980397, 38.943085 ], [ -76.980391, 38.943135 ], [ -76.980386, 38.943185 ], [ -76.980380, 38.943214 ], [ -76.980230, 38.943410 ], [ -76.980182, 38.943477 ], [ -76.979683, 38.944144 ], [ -76.979619, 38.944232 ], [ -76.979463, 38.944440 ], [ -76.978852, 38.945254 ], [ -76.978793, 38.945333 ], [ -76.978717, 38.945425 ], [ -76.978685, 38.945475 ], [ -76.978664, 38.945500 ], [ -76.978637, 38.945534 ], [ -76.978621, 38.945554 ], [ -76.978583, 38.945609 ], [ -76.978557, 38.945642 ], [ -76.978530, 38.945680 ], [ -76.978471, 38.945751 ], [ -76.978444, 38.945788 ], [ -76.978396, 38.945847 ], [ -76.978310, 38.945934 ], [ -76.978283, 38.945963 ], [ -76.978192, 38.946047 ], [ -76.978160, 38.946072 ], [ -76.978047, 38.946180 ], [ -76.977956, 38.946247 ], [ -76.977929, 38.946264 ], [ -76.977779, 38.946372 ], [ -76.977736, 38.946335 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009302", "GEOID": "11001009302", "NAME": "93.02", "NAMELSAD": "Census Tract 93.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 391905, "AWATER": 0, "INTPTLAT": "+38.9251636", "INTPTLON": "-076.9907773" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.985965, 38.927833 ], [ -76.985959, 38.927746 ], [ -76.985922, 38.927236 ], [ -76.985890, 38.926861 ], [ -76.985884, 38.926769 ], [ -76.985874, 38.926681 ], [ -76.985798, 38.925701 ], [ -76.985756, 38.925221 ], [ -76.985745, 38.925070 ], [ -76.985739, 38.924970 ], [ -76.985739, 38.924941 ], [ -76.985729, 38.924895 ], [ -76.985718, 38.924845 ], [ -76.985702, 38.924795 ], [ -76.985680, 38.924749 ], [ -76.985664, 38.924703 ], [ -76.985621, 38.924620 ], [ -76.985800, 38.924561 ], [ -76.993046, 38.924561 ], [ -76.993046, 38.927481 ], [ -76.992922, 38.927487 ], [ -76.992429, 38.927516 ], [ -76.992327, 38.927520 ], [ -76.992059, 38.927533 ], [ -76.991640, 38.927549 ], [ -76.990830, 38.927587 ], [ -76.990718, 38.927595 ], [ -76.990600, 38.927604 ], [ -76.989393, 38.927662 ], [ -76.988969, 38.927683 ], [ -76.988497, 38.927708 ], [ -76.988282, 38.927720 ], [ -76.987714, 38.927746 ], [ -76.987263, 38.927771 ], [ -76.986823, 38.927791 ], [ -76.986480, 38.927812 ], [ -76.986136, 38.927825 ], [ -76.985965, 38.927833 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009102", "GEOID": "11001009102", "NAME": "91.02", "NAMELSAD": "Census Tract 91.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1816287, "AWATER": 0, "INTPTLAT": "+38.9187926", "INTPTLON": "-076.9888946" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.979125, 38.927708 ], [ -76.979093, 38.927650 ], [ -76.979066, 38.927608 ], [ -76.979023, 38.927549 ], [ -76.978996, 38.927483 ], [ -76.978996, 38.927441 ], [ -76.978996, 38.927278 ], [ -76.978991, 38.926794 ], [ -76.978991, 38.926736 ], [ -76.978991, 38.926648 ], [ -76.978991, 38.925580 ], [ -76.978991, 38.925037 ], [ -76.978996, 38.924561 ], [ -76.985800, 38.924561 ], [ -76.985621, 38.924620 ], [ -76.983814, 38.925463 ], [ -76.983229, 38.925713 ], [ -76.982054, 38.926302 ], [ -76.981362, 38.926619 ], [ -76.980729, 38.926928 ], [ -76.980531, 38.927024 ], [ -76.979125, 38.927708 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "011100", "GEOID": "11001011100", "NAME": "111", "NAMELSAD": "Census Tract 111", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 5718693, "AWATER": 366232, "INTPTLAT": "+38.9158612", "INTPTLON": "-076.9681631" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.963445, 38.935203 ], [ -76.963381, 38.935153 ], [ -76.963348, 38.935128 ], [ -76.963327, 38.935115 ], [ -76.963289, 38.935082 ], [ -76.963214, 38.935023 ], [ -76.963171, 38.934990 ], [ -76.963123, 38.934952 ], [ -76.963069, 38.934906 ], [ -76.963048, 38.934894 ], [ -76.963010, 38.934860 ], [ -76.962973, 38.934835 ], [ -76.962828, 38.934719 ], [ -76.962517, 38.934477 ], [ -76.962179, 38.934214 ], [ -76.962077, 38.934134 ], [ -76.961997, 38.934068 ], [ -76.961814, 38.933930 ], [ -76.961664, 38.933809 ], [ -76.961460, 38.933650 ], [ -76.961428, 38.933625 ], [ -76.961390, 38.933596 ], [ -76.961267, 38.933500 ], [ -76.961219, 38.933458 ], [ -76.960870, 38.933187 ], [ -76.960725, 38.933070 ], [ -76.960248, 38.932703 ], [ -76.959926, 38.932449 ], [ -76.959722, 38.932290 ], [ -76.959583, 38.932181 ], [ -76.959534, 38.932144 ], [ -76.959481, 38.932102 ], [ -76.959432, 38.932060 ], [ -76.959239, 38.931910 ], [ -76.959132, 38.931827 ], [ -76.958976, 38.931702 ], [ -76.958837, 38.931593 ], [ -76.958783, 38.931551 ], [ -76.958692, 38.931480 ], [ -76.958338, 38.931205 ], [ -76.957877, 38.930846 ], [ -76.957753, 38.930750 ], [ -76.958408, 38.930341 ], [ -76.958671, 38.930174 ], [ -76.959609, 38.929557 ], [ -76.961482, 38.928267 ], [ -76.961573, 38.928188 ], [ -76.961787, 38.928017 ], [ -76.962646, 38.927282 ], [ -76.962839, 38.927149 ], [ -76.964083, 38.926135 ], [ -76.964116, 38.926093 ], [ -76.964180, 38.926051 ], [ -76.964502, 38.925797 ], [ -76.964813, 38.925555 ], [ -76.964931, 38.925429 ], [ -76.965156, 38.925258 ], [ -76.965038, 38.925171 ], [ -76.964555, 38.924837 ], [ -76.964154, 38.924561 ], [ -76.978996, 38.924561 ], [ -76.978991, 38.925037 ], [ -76.978991, 38.925580 ], [ -76.978991, 38.926648 ], [ -76.978991, 38.926736 ], [ -76.978991, 38.926794 ], [ -76.978996, 38.927278 ], [ -76.978996, 38.927441 ], [ -76.978996, 38.927483 ], [ -76.979023, 38.927549 ], [ -76.979066, 38.927608 ], [ -76.979093, 38.927650 ], [ -76.979125, 38.927708 ], [ -76.978809, 38.927850 ], [ -76.978481, 38.928013 ], [ -76.978176, 38.928188 ], [ -76.976368, 38.929039 ], [ -76.976218, 38.929110 ], [ -76.974860, 38.929765 ], [ -76.974324, 38.930016 ], [ -76.974163, 38.930091 ], [ -76.973686, 38.930316 ], [ -76.972151, 38.931051 ], [ -76.971577, 38.931314 ], [ -76.971298, 38.931451 ], [ -76.970783, 38.931702 ], [ -76.969163, 38.932490 ], [ -76.968010, 38.932995 ], [ -76.966079, 38.933972 ], [ -76.965821, 38.934097 ], [ -76.963869, 38.934998 ], [ -76.963804, 38.935027 ], [ -76.963745, 38.935052 ], [ -76.963692, 38.935082 ], [ -76.963445, 38.935203 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009000", "GEOID": "11001009000", "NAME": "90", "NAMELSAD": "Census Tract 90", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1427114, "AWATER": 31550, "INTPTLAT": "+38.9226934", "INTPTLON": "-076.9545101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.965156, 38.925258 ], [ -76.964931, 38.925429 ], [ -76.964813, 38.925555 ], [ -76.964502, 38.925797 ], [ -76.964180, 38.926051 ], [ -76.964116, 38.926093 ], [ -76.964083, 38.926135 ], [ -76.962839, 38.927149 ], [ -76.962646, 38.927282 ], [ -76.961787, 38.928017 ], [ -76.961573, 38.928188 ], [ -76.961482, 38.928267 ], [ -76.959609, 38.929557 ], [ -76.958671, 38.930174 ], [ -76.958408, 38.930341 ], [ -76.957753, 38.930750 ], [ -76.957662, 38.930679 ], [ -76.957582, 38.930617 ], [ -76.956262, 38.929603 ], [ -76.956085, 38.929465 ], [ -76.956015, 38.929411 ], [ -76.950849, 38.925454 ], [ -76.949690, 38.924561 ], [ -76.964154, 38.924561 ], [ -76.964555, 38.924837 ], [ -76.965038, 38.925171 ], [ -76.965156, 38.925258 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2345, "y": 3134 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009603", "GEOID": "11001009603", "NAME": "96.03", "NAMELSAD": "Census Tract 96.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 607400, "AWATER": 0, "INTPTLAT": "+38.8918285", "INTPTLON": "-076.9477195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.937588, 38.889880 ], [ -76.937873, 38.889885 ], [ -76.939375, 38.889885 ], [ -76.939557, 38.889876 ], [ -76.939804, 38.889860 ], [ -76.939997, 38.889843 ], [ -76.940877, 38.889834 ], [ -76.942803, 38.889834 ], [ -76.944557, 38.889834 ], [ -76.947244, 38.889839 ], [ -76.948280, 38.889822 ], [ -76.948805, 38.889822 ], [ -76.949100, 38.889827 ], [ -76.949100, 38.891701 ], [ -76.939569, 38.891701 ], [ -76.939520, 38.891680 ], [ -76.939337, 38.891596 ], [ -76.939203, 38.891526 ], [ -76.939090, 38.891467 ], [ -76.939026, 38.891429 ], [ -76.938897, 38.891350 ], [ -76.938774, 38.891267 ], [ -76.938715, 38.891225 ], [ -76.938656, 38.891179 ], [ -76.938538, 38.891091 ], [ -76.938484, 38.891045 ], [ -76.938425, 38.890995 ], [ -76.938323, 38.890899 ], [ -76.938270, 38.890853 ], [ -76.938221, 38.890799 ], [ -76.938120, 38.890695 ], [ -76.938071, 38.890640 ], [ -76.938039, 38.890599 ], [ -76.937964, 38.890507 ], [ -76.937921, 38.890448 ], [ -76.937824, 38.890331 ], [ -76.937680, 38.890068 ], [ -76.937588, 38.889880 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007803", "GEOID": "11001007803", "NAME": "78.03", "NAMELSAD": "Census Tract 78.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 986677, "AWATER": 3755, "INTPTLAT": "+38.8962674", "INTPTLON": "-076.9407751" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.934874, 38.889826 ], [ -76.935512, 38.889834 ], [ -76.935700, 38.889843 ], [ -76.936092, 38.889880 ], [ -76.936623, 38.889885 ], [ -76.937283, 38.889893 ], [ -76.937588, 38.889880 ], [ -76.937680, 38.890068 ], [ -76.937824, 38.890331 ], [ -76.937921, 38.890448 ], [ -76.937964, 38.890507 ], [ -76.938039, 38.890599 ], [ -76.938071, 38.890640 ], [ -76.938120, 38.890695 ], [ -76.938221, 38.890799 ], [ -76.938270, 38.890853 ], [ -76.938323, 38.890899 ], [ -76.938425, 38.890995 ], [ -76.938484, 38.891045 ], [ -76.938538, 38.891091 ], [ -76.938656, 38.891179 ], [ -76.938715, 38.891225 ], [ -76.938774, 38.891267 ], [ -76.938897, 38.891350 ], [ -76.939026, 38.891429 ], [ -76.939090, 38.891467 ], [ -76.939203, 38.891526 ], [ -76.939337, 38.891596 ], [ -76.939520, 38.891680 ], [ -76.939569, 38.891701 ], [ -76.934875, 38.891701 ], [ -76.934879, 38.891359 ], [ -76.934879, 38.891012 ], [ -76.934879, 38.890682 ], [ -76.934874, 38.890402 ], [ -76.934874, 38.890285 ], [ -76.934874, 38.889826 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007804", "GEOID": "11001007804", "NAME": "78.04", "NAMELSAD": "Census Tract 78.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 838428, "AWATER": 5705, "INTPTLAT": "+38.8942107", "INTPTLON": "-076.9313427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.927959, 38.891701 ], [ -76.927959, 38.891551 ], [ -76.927959, 38.891300 ], [ -76.927959, 38.891020 ], [ -76.927959, 38.890857 ], [ -76.927959, 38.890782 ], [ -76.927965, 38.890398 ], [ -76.927959, 38.890135 ], [ -76.927965, 38.889968 ], [ -76.927959, 38.889910 ], [ -76.927965, 38.889814 ], [ -76.930051, 38.889822 ], [ -76.930068, 38.889822 ], [ -76.930153, 38.889822 ], [ -76.930389, 38.889826 ], [ -76.930781, 38.889830 ], [ -76.931162, 38.889822 ], [ -76.931827, 38.889814 ], [ -76.932015, 38.889805 ], [ -76.932042, 38.889805 ], [ -76.932771, 38.889814 ], [ -76.934375, 38.889830 ], [ -76.934874, 38.889826 ], [ -76.934874, 38.890285 ], [ -76.934874, 38.890402 ], [ -76.934879, 38.890682 ], [ -76.934879, 38.891012 ], [ -76.934879, 38.891359 ], [ -76.934875, 38.891701 ], [ -76.927959, 38.891701 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007808", "GEOID": "11001007808", "NAME": "78.08", "NAMELSAD": "Census Tract 78.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 936852, "AWATER": 7722, "INTPTLAT": "+38.8922212", "INTPTLON": "-076.9192026" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.910854, 38.891701 ], [ -76.911142, 38.891500 ], [ -76.911753, 38.891016 ], [ -76.911812, 38.890974 ], [ -76.911914, 38.890891 ], [ -76.912065, 38.890778 ], [ -76.912338, 38.890569 ], [ -76.912403, 38.890515 ], [ -76.912488, 38.890448 ], [ -76.912687, 38.890298 ], [ -76.912778, 38.890223 ], [ -76.912805, 38.890202 ], [ -76.912923, 38.890114 ], [ -76.913009, 38.890043 ], [ -76.913159, 38.889931 ], [ -76.913191, 38.889901 ], [ -76.913325, 38.889797 ], [ -76.913497, 38.889793 ], [ -76.913663, 38.889789 ], [ -76.913792, 38.889793 ], [ -76.914033, 38.889789 ], [ -76.914167, 38.889789 ], [ -76.914382, 38.889789 ], [ -76.914607, 38.889793 ], [ -76.914720, 38.889789 ], [ -76.915557, 38.889793 ], [ -76.915712, 38.889793 ], [ -76.916163, 38.889793 ], [ -76.916678, 38.889797 ], [ -76.917241, 38.889797 ], [ -76.917622, 38.889801 ], [ -76.917783, 38.889801 ], [ -76.919414, 38.889818 ], [ -76.920701, 38.889818 ], [ -76.922906, 38.889801 ], [ -76.923952, 38.889814 ], [ -76.925004, 38.889818 ], [ -76.926050, 38.889814 ], [ -76.926173, 38.889809 ], [ -76.927165, 38.889809 ], [ -76.927965, 38.889814 ], [ -76.927959, 38.889910 ], [ -76.927965, 38.889968 ], [ -76.927959, 38.890135 ], [ -76.927965, 38.890398 ], [ -76.927959, 38.890782 ], [ -76.927959, 38.890857 ], [ -76.927959, 38.891020 ], [ -76.927959, 38.891300 ], [ -76.927959, 38.891551 ], [ -76.927959, 38.891701 ], [ -76.910854, 38.891701 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009901", "GEOID": "11001009901", "NAME": "99.01", "NAMELSAD": "Census Tract 99.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 2102150, "AWATER": 0, "INTPTLAT": "+38.8753461", "INTPTLON": "-076.9553332" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.946660, 38.882803 ], [ -76.946617, 38.882711 ], [ -76.946290, 38.882014 ], [ -76.946123, 38.881654 ], [ -76.946086, 38.881558 ], [ -76.945914, 38.881191 ], [ -76.945871, 38.881099 ], [ -76.945812, 38.880965 ], [ -76.945769, 38.880869 ], [ -76.945893, 38.880840 ], [ -76.945930, 38.880828 ], [ -76.945984, 38.880807 ], [ -76.946032, 38.880786 ], [ -76.946059, 38.880777 ], [ -76.946161, 38.880731 ], [ -76.946220, 38.880702 ], [ -76.946520, 38.880560 ], [ -76.946756, 38.880452 ], [ -76.946906, 38.880372 ], [ -76.947121, 38.880255 ], [ -76.947255, 38.880180 ], [ -76.947459, 38.880059 ], [ -76.947523, 38.880017 ], [ -76.947609, 38.879963 ], [ -76.947652, 38.879938 ], [ -76.947781, 38.879850 ], [ -76.947861, 38.879792 ], [ -76.947942, 38.879733 ], [ -76.947990, 38.879700 ], [ -76.948076, 38.879633 ], [ -76.948119, 38.879604 ], [ -76.948205, 38.879533 ], [ -76.948248, 38.879495 ], [ -76.948323, 38.879424 ], [ -76.948446, 38.879307 ], [ -76.948467, 38.879278 ], [ -76.948548, 38.879186 ], [ -76.948596, 38.879128 ], [ -76.948693, 38.879003 ], [ -76.948757, 38.878919 ], [ -76.948779, 38.878890 ], [ -76.948816, 38.878831 ], [ -76.948854, 38.878769 ], [ -76.948891, 38.878710 ], [ -76.948972, 38.878543 ], [ -76.949009, 38.878472 ], [ -76.949041, 38.878401 ], [ -76.949068, 38.878326 ], [ -76.949100, 38.878233 ], [ -76.949100, 38.876910 ], [ -76.949095, 38.876894 ], [ -76.949074, 38.876827 ], [ -76.949063, 38.876789 ], [ -76.949052, 38.876752 ], [ -76.949020, 38.876681 ], [ -76.948966, 38.876535 ], [ -76.948881, 38.876347 ], [ -76.948859, 38.876301 ], [ -76.948795, 38.876175 ], [ -76.948725, 38.876050 ], [ -76.948655, 38.875937 ], [ -76.948623, 38.875883 ], [ -76.948548, 38.875749 ], [ -76.948478, 38.875616 ], [ -76.948382, 38.875432 ], [ -76.948333, 38.875336 ], [ -76.948264, 38.875190 ], [ -76.948226, 38.875090 ], [ -76.948162, 38.874931 ], [ -76.948140, 38.874872 ], [ -76.948135, 38.874843 ], [ -76.948108, 38.874751 ], [ -76.948092, 38.874659 ], [ -76.948081, 38.874563 ], [ -76.948076, 38.874534 ], [ -76.948076, 38.874471 ], [ -76.948076, 38.874409 ], [ -76.948087, 38.874321 ], [ -76.948097, 38.874238 ], [ -76.948113, 38.874154 ], [ -76.948130, 38.874100 ], [ -76.948156, 38.874016 ], [ -76.948194, 38.873937 ], [ -76.948226, 38.873858 ], [ -76.948242, 38.873828 ], [ -76.948323, 38.873682 ], [ -76.948425, 38.873498 ], [ -76.948446, 38.873465 ], [ -76.948564, 38.873248 ], [ -76.948602, 38.873177 ], [ -76.948618, 38.873139 ], [ -76.948623, 38.873118 ], [ -76.948645, 38.873031 ], [ -76.948661, 38.872960 ], [ -76.948677, 38.872876 ], [ -76.948687, 38.872784 ], [ -76.948698, 38.872717 ], [ -76.948693, 38.872646 ], [ -76.948687, 38.872555 ], [ -76.948682, 38.872534 ], [ -76.948671, 38.872442 ], [ -76.948639, 38.872271 ], [ -76.948618, 38.872141 ], [ -76.948575, 38.871928 ], [ -76.948548, 38.871765 ], [ -76.948521, 38.871615 ], [ -76.948510, 38.871506 ], [ -76.948510, 38.871469 ], [ -76.948505, 38.871398 ], [ -76.948505, 38.871310 ], [ -76.948510, 38.871281 ], [ -76.948521, 38.871189 ], [ -76.948532, 38.871130 ], [ -76.948548, 38.871072 ], [ -76.948564, 38.871005 ], [ -76.948586, 38.870942 ], [ -76.948612, 38.870876 ], [ -76.948639, 38.870813 ], [ -76.948671, 38.870750 ], [ -76.948714, 38.870675 ], [ -76.948789, 38.870546 ], [ -76.948827, 38.870495 ], [ -76.949009, 38.870195 ], [ -76.949047, 38.870140 ], [ -76.949100, 38.870060 ], [ -76.949100, 38.883022 ], [ -76.948682, 38.882961 ], [ -76.948049, 38.882870 ], [ -76.947926, 38.882853 ], [ -76.947808, 38.882840 ], [ -76.947690, 38.882836 ], [ -76.947566, 38.882832 ], [ -76.947448, 38.882832 ], [ -76.947271, 38.882828 ], [ -76.947035, 38.882828 ], [ -76.946810, 38.882832 ], [ -76.946676, 38.882832 ], [ -76.946660, 38.882803 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007603", "GEOID": "11001007603", "NAME": "76.03", "NAMELSAD": "Census Tract 76.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1226616, "AWATER": 0, "INTPTLAT": "+38.8591090", "INTPTLON": "-076.9585469" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.949100, 38.864688 ], [ -76.949095, 38.864686 ], [ -76.947706, 38.864118 ], [ -76.947534, 38.864047 ], [ -76.946858, 38.863779 ], [ -76.946805, 38.863704 ], [ -76.946896, 38.863633 ], [ -76.946992, 38.863554 ], [ -76.947116, 38.863462 ], [ -76.947416, 38.863228 ], [ -76.947695, 38.863011 ], [ -76.947942, 38.862819 ], [ -76.948017, 38.862760 ], [ -76.948108, 38.862689 ], [ -76.948242, 38.862580 ], [ -76.948639, 38.862271 ], [ -76.948988, 38.861996 ], [ -76.949015, 38.861975 ], [ -76.949100, 38.861912 ], [ -76.949100, 38.864688 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007703", "GEOID": "11001007703", "NAME": "77.03", "NAMELSAD": "Census Tract 77.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1017741, "AWATER": 1059, "INTPTLAT": "+38.8863224", "INTPTLON": "-076.9474550" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.937873, 38.889885 ], [ -76.938028, 38.889843 ], [ -76.938120, 38.889818 ], [ -76.938168, 38.889793 ], [ -76.938211, 38.889772 ], [ -76.938238, 38.889734 ], [ -76.938280, 38.889647 ], [ -76.938334, 38.889509 ], [ -76.938409, 38.889409 ], [ -76.938490, 38.889317 ], [ -76.938715, 38.889150 ], [ -76.939015, 38.888970 ], [ -76.939112, 38.888903 ], [ -76.939203, 38.888841 ], [ -76.939337, 38.888741 ], [ -76.939439, 38.888653 ], [ -76.939498, 38.888603 ], [ -76.939589, 38.888519 ], [ -76.939648, 38.888457 ], [ -76.939681, 38.888427 ], [ -76.939783, 38.888315 ], [ -76.939836, 38.888260 ], [ -76.939884, 38.888198 ], [ -76.939981, 38.888081 ], [ -76.940067, 38.887960 ], [ -76.940104, 38.887897 ], [ -76.940142, 38.887834 ], [ -76.940163, 38.887805 ], [ -76.940179, 38.887772 ], [ -76.940233, 38.887676 ], [ -76.940271, 38.887601 ], [ -76.940297, 38.887551 ], [ -76.940324, 38.887488 ], [ -76.940367, 38.887383 ], [ -76.940421, 38.887229 ], [ -76.940453, 38.887125 ], [ -76.940464, 38.887070 ], [ -76.940475, 38.887045 ], [ -76.940496, 38.886966 ], [ -76.940512, 38.886899 ], [ -76.940523, 38.886828 ], [ -76.940534, 38.886728 ], [ -76.940544, 38.886619 ], [ -76.940550, 38.886582 ], [ -76.940550, 38.886561 ], [ -76.940550, 38.886544 ], [ -76.940555, 38.886482 ], [ -76.940560, 38.886394 ], [ -76.940560, 38.886264 ], [ -76.940560, 38.886227 ], [ -76.940576, 38.885943 ], [ -76.940582, 38.885905 ], [ -76.940587, 38.885847 ], [ -76.940593, 38.885788 ], [ -76.940603, 38.885697 ], [ -76.940619, 38.885617 ], [ -76.940635, 38.885517 ], [ -76.940646, 38.885454 ], [ -76.940678, 38.885329 ], [ -76.940711, 38.885208 ], [ -76.940732, 38.885120 ], [ -76.940759, 38.885037 ], [ -76.940780, 38.884953 ], [ -76.940818, 38.884857 ], [ -76.940829, 38.884824 ], [ -76.940871, 38.884719 ], [ -76.940898, 38.884653 ], [ -76.940925, 38.884582 ], [ -76.940984, 38.884440 ], [ -76.941049, 38.884302 ], [ -76.941086, 38.884235 ], [ -76.941161, 38.884097 ], [ -76.941231, 38.883972 ], [ -76.941301, 38.883855 ], [ -76.941338, 38.883797 ], [ -76.941451, 38.883625 ], [ -76.941537, 38.883513 ], [ -76.941580, 38.883458 ], [ -76.941682, 38.883325 ], [ -76.941735, 38.883262 ], [ -76.941805, 38.883179 ], [ -76.941918, 38.883045 ], [ -76.942041, 38.882915 ], [ -76.942105, 38.882849 ], [ -76.942234, 38.882723 ], [ -76.942411, 38.882569 ], [ -76.942518, 38.882477 ], [ -76.942577, 38.882427 ], [ -76.942760, 38.882277 ], [ -76.942894, 38.882172 ], [ -76.942931, 38.882143 ], [ -76.942974, 38.882114 ], [ -76.943049, 38.882059 ], [ -76.943173, 38.881976 ], [ -76.943237, 38.881934 ], [ -76.943371, 38.881851 ], [ -76.943538, 38.881750 ], [ -76.943790, 38.881608 ], [ -76.943908, 38.881546 ], [ -76.944020, 38.881487 ], [ -76.944176, 38.881416 ], [ -76.944332, 38.881345 ], [ -76.944412, 38.881316 ], [ -76.944487, 38.881283 ], [ -76.944541, 38.881262 ], [ -76.944637, 38.881220 ], [ -76.944809, 38.881153 ], [ -76.944847, 38.881137 ], [ -76.944916, 38.881112 ], [ -76.945034, 38.881074 ], [ -76.945206, 38.881024 ], [ -76.945624, 38.880903 ], [ -76.945769, 38.880869 ], [ -76.945812, 38.880965 ], [ -76.945871, 38.881099 ], [ -76.945914, 38.881191 ], [ -76.946086, 38.881558 ], [ -76.946123, 38.881654 ], [ -76.946290, 38.882014 ], [ -76.946617, 38.882711 ], [ -76.946660, 38.882803 ], [ -76.946676, 38.882832 ], [ -76.946810, 38.882832 ], [ -76.947035, 38.882828 ], [ -76.947271, 38.882828 ], [ -76.947448, 38.882832 ], [ -76.947566, 38.882832 ], [ -76.947690, 38.882836 ], [ -76.947808, 38.882840 ], [ -76.947926, 38.882853 ], [ -76.948049, 38.882870 ], [ -76.948682, 38.882961 ], [ -76.949100, 38.883022 ], [ -76.949100, 38.889827 ], [ -76.948805, 38.889822 ], [ -76.948280, 38.889822 ], [ -76.947244, 38.889839 ], [ -76.944557, 38.889834 ], [ -76.942803, 38.889834 ], [ -76.940877, 38.889834 ], [ -76.939997, 38.889843 ], [ -76.939804, 38.889860 ], [ -76.939557, 38.889876 ], [ -76.939375, 38.889885 ], [ -76.937873, 38.889885 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009907", "GEOID": "11001009907", "NAME": "99.07", "NAMELSAD": "Census Tract 99.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 466954, "AWATER": 0, "INTPTLAT": "+38.8827718", "INTPTLON": "-076.9388146" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.945769, 38.880869 ], [ -76.945624, 38.880903 ], [ -76.945206, 38.881024 ], [ -76.945034, 38.881074 ], [ -76.944916, 38.881112 ], [ -76.944847, 38.881137 ], [ -76.944809, 38.881153 ], [ -76.944637, 38.881220 ], [ -76.944541, 38.881262 ], [ -76.944487, 38.881283 ], [ -76.944412, 38.881316 ], [ -76.944332, 38.881345 ], [ -76.944176, 38.881416 ], [ -76.944020, 38.881487 ], [ -76.943908, 38.881546 ], [ -76.943790, 38.881608 ], [ -76.943538, 38.881750 ], [ -76.943371, 38.881851 ], [ -76.943237, 38.881934 ], [ -76.943173, 38.881976 ], [ -76.943049, 38.882059 ], [ -76.942974, 38.882114 ], [ -76.942931, 38.882143 ], [ -76.942894, 38.882172 ], [ -76.942760, 38.882277 ], [ -76.942577, 38.882427 ], [ -76.942518, 38.882477 ], [ -76.942411, 38.882569 ], [ -76.942234, 38.882723 ], [ -76.942105, 38.882849 ], [ -76.942041, 38.882915 ], [ -76.941918, 38.883045 ], [ -76.941805, 38.883179 ], [ -76.941735, 38.883262 ], [ -76.941682, 38.883325 ], [ -76.941580, 38.883458 ], [ -76.941537, 38.883513 ], [ -76.941451, 38.883625 ], [ -76.941338, 38.883797 ], [ -76.941301, 38.883855 ], [ -76.941231, 38.883972 ], [ -76.941161, 38.884097 ], [ -76.941086, 38.884235 ], [ -76.941049, 38.884302 ], [ -76.940984, 38.884440 ], [ -76.940925, 38.884582 ], [ -76.940898, 38.884653 ], [ -76.940871, 38.884719 ], [ -76.940829, 38.884824 ], [ -76.940818, 38.884857 ], [ -76.940780, 38.884953 ], [ -76.940759, 38.885037 ], [ -76.940732, 38.885120 ], [ -76.940711, 38.885208 ], [ -76.940678, 38.885329 ], [ -76.940646, 38.885454 ], [ -76.940635, 38.885517 ], [ -76.940619, 38.885617 ], [ -76.940603, 38.885697 ], [ -76.940593, 38.885788 ], [ -76.940587, 38.885847 ], [ -76.940582, 38.885905 ], [ -76.940576, 38.885943 ], [ -76.940560, 38.886227 ], [ -76.940560, 38.886264 ], [ -76.940560, 38.886394 ], [ -76.940555, 38.886482 ], [ -76.940550, 38.886544 ], [ -76.940469, 38.886548 ], [ -76.940426, 38.886548 ], [ -76.939766, 38.886548 ], [ -76.938479, 38.886548 ], [ -76.937765, 38.886548 ], [ -76.936317, 38.886548 ], [ -76.936156, 38.886548 ], [ -76.935915, 38.885980 ], [ -76.935722, 38.885542 ], [ -76.935598, 38.885246 ], [ -76.935314, 38.884582 ], [ -76.935287, 38.884527 ], [ -76.935239, 38.884415 ], [ -76.935212, 38.884360 ], [ -76.935158, 38.884256 ], [ -76.935126, 38.884202 ], [ -76.935067, 38.884093 ], [ -76.935014, 38.884001 ], [ -76.934987, 38.883964 ], [ -76.934965, 38.883926 ], [ -76.934912, 38.883851 ], [ -76.934831, 38.883734 ], [ -76.934810, 38.883709 ], [ -76.934788, 38.883680 ], [ -76.934670, 38.883534 ], [ -76.934472, 38.883295 ], [ -76.934316, 38.883103 ], [ -76.934225, 38.882999 ], [ -76.933619, 38.882272 ], [ -76.933426, 38.882039 ], [ -76.933329, 38.881922 ], [ -76.933211, 38.881755 ], [ -76.933147, 38.881663 ], [ -76.933072, 38.881546 ], [ -76.933034, 38.881492 ], [ -76.933152, 38.881450 ], [ -76.933308, 38.881391 ], [ -76.934525, 38.880894 ], [ -76.935046, 38.880686 ], [ -76.935346, 38.880560 ], [ -76.936140, 38.880239 ], [ -76.936199, 38.880218 ], [ -76.936258, 38.880209 ], [ -76.936483, 38.880197 ], [ -76.937760, 38.880197 ], [ -76.937996, 38.880201 ], [ -76.938672, 38.880197 ], [ -76.938956, 38.880197 ], [ -76.939251, 38.880197 ], [ -76.940029, 38.880201 ], [ -76.940061, 38.880201 ], [ -76.940163, 38.880205 ], [ -76.940303, 38.880218 ], [ -76.940335, 38.880222 ], [ -76.940394, 38.880230 ], [ -76.940501, 38.880255 ], [ -76.940534, 38.880264 ], [ -76.940834, 38.880356 ], [ -76.940877, 38.880368 ], [ -76.940920, 38.880381 ], [ -76.941054, 38.880414 ], [ -76.941145, 38.880439 ], [ -76.941193, 38.880448 ], [ -76.941242, 38.880460 ], [ -76.941386, 38.880485 ], [ -76.941483, 38.880502 ], [ -76.941649, 38.880523 ], [ -76.941821, 38.880535 ], [ -76.941993, 38.880539 ], [ -76.942111, 38.880539 ], [ -76.942164, 38.880535 ], [ -76.942272, 38.880527 ], [ -76.942379, 38.880514 ], [ -76.942486, 38.880493 ], [ -76.942524, 38.880489 ], [ -76.942556, 38.880481 ], [ -76.942588, 38.880473 ], [ -76.942620, 38.880464 ], [ -76.942690, 38.880443 ], [ -76.942776, 38.880414 ], [ -76.942813, 38.880397 ], [ -76.942894, 38.880368 ], [ -76.942931, 38.880347 ], [ -76.943007, 38.880310 ], [ -76.943076, 38.880268 ], [ -76.943146, 38.880226 ], [ -76.943232, 38.880164 ], [ -76.943285, 38.880118 ], [ -76.943344, 38.880063 ], [ -76.943387, 38.880022 ], [ -76.943511, 38.879884 ], [ -76.943543, 38.879850 ], [ -76.943581, 38.879817 ], [ -76.943613, 38.879784 ], [ -76.943688, 38.879717 ], [ -76.943763, 38.879654 ], [ -76.943881, 38.879566 ], [ -76.943913, 38.879537 ], [ -76.943940, 38.879520 ], [ -76.943988, 38.879487 ], [ -76.944020, 38.879466 ], [ -76.944042, 38.879449 ], [ -76.944101, 38.879416 ], [ -76.944165, 38.879383 ], [ -76.944224, 38.879353 ], [ -76.944439, 38.879270 ], [ -76.944498, 38.879245 ], [ -76.944557, 38.879220 ], [ -76.944863, 38.879095 ], [ -76.944970, 38.879266 ], [ -76.945083, 38.879449 ], [ -76.945136, 38.879546 ], [ -76.945217, 38.879692 ], [ -76.945265, 38.879788 ], [ -76.945313, 38.879884 ], [ -76.945480, 38.880251 ], [ -76.945694, 38.880706 ], [ -76.945769, 38.880869 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009906", "GEOID": "11001009906", "NAME": "99.06", "NAMELSAD": "Census Tract 99.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 252684, "AWATER": 0, "INTPTLAT": "+38.8879464", "INTPTLON": "-076.9359151" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.940550, 38.886582 ], [ -76.940544, 38.886619 ], [ -76.940534, 38.886728 ], [ -76.940523, 38.886828 ], [ -76.940512, 38.886899 ], [ -76.940496, 38.886966 ], [ -76.940475, 38.887045 ], [ -76.940464, 38.887070 ], [ -76.940453, 38.887125 ], [ -76.940421, 38.887229 ], [ -76.940367, 38.887383 ], [ -76.940324, 38.887488 ], [ -76.940297, 38.887551 ], [ -76.940271, 38.887601 ], [ -76.940233, 38.887676 ], [ -76.940179, 38.887772 ], [ -76.940163, 38.887805 ], [ -76.940142, 38.887834 ], [ -76.940104, 38.887897 ], [ -76.940067, 38.887960 ], [ -76.939981, 38.888081 ], [ -76.939884, 38.888198 ], [ -76.939836, 38.888260 ], [ -76.939783, 38.888315 ], [ -76.939681, 38.888427 ], [ -76.939648, 38.888457 ], [ -76.939589, 38.888519 ], [ -76.939498, 38.888603 ], [ -76.939439, 38.888653 ], [ -76.939337, 38.888741 ], [ -76.939203, 38.888841 ], [ -76.939112, 38.888903 ], [ -76.939015, 38.888970 ], [ -76.938715, 38.889150 ], [ -76.938490, 38.889317 ], [ -76.938409, 38.889409 ], [ -76.938334, 38.889509 ], [ -76.938280, 38.889647 ], [ -76.938238, 38.889734 ], [ -76.938211, 38.889772 ], [ -76.938168, 38.889793 ], [ -76.938120, 38.889818 ], [ -76.938028, 38.889843 ], [ -76.937873, 38.889885 ], [ -76.937588, 38.889880 ], [ -76.937283, 38.889893 ], [ -76.936623, 38.889885 ], [ -76.936092, 38.889880 ], [ -76.935700, 38.889843 ], [ -76.935512, 38.889834 ], [ -76.934874, 38.889826 ], [ -76.934375, 38.889830 ], [ -76.932771, 38.889814 ], [ -76.932042, 38.889805 ], [ -76.932052, 38.889759 ], [ -76.932063, 38.889705 ], [ -76.932074, 38.889672 ], [ -76.932079, 38.889626 ], [ -76.932090, 38.889588 ], [ -76.932203, 38.889075 ], [ -76.932219, 38.888995 ], [ -76.932369, 38.888319 ], [ -76.932428, 38.888060 ], [ -76.932476, 38.887830 ], [ -76.932503, 38.887709 ], [ -76.932664, 38.886966 ], [ -76.932766, 38.886511 ], [ -76.932787, 38.886419 ], [ -76.932814, 38.886285 ], [ -76.932927, 38.885763 ], [ -76.932938, 38.885734 ], [ -76.932943, 38.885709 ], [ -76.932943, 38.885684 ], [ -76.932943, 38.885655 ], [ -76.932938, 38.885617 ], [ -76.933034, 38.885634 ], [ -76.933511, 38.885697 ], [ -76.934064, 38.885763 ], [ -76.934633, 38.885826 ], [ -76.935239, 38.885897 ], [ -76.935770, 38.885964 ], [ -76.935915, 38.885980 ], [ -76.936156, 38.886548 ], [ -76.936317, 38.886548 ], [ -76.937765, 38.886548 ], [ -76.938479, 38.886548 ], [ -76.939766, 38.886548 ], [ -76.940426, 38.886548 ], [ -76.940469, 38.886548 ], [ -76.940550, 38.886544 ], [ -76.940550, 38.886561 ], [ -76.940550, 38.886582 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009904", "GEOID": "11001009904", "NAME": "99.04", "NAMELSAD": "Census Tract 99.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 426198, "AWATER": 0, "INTPTLAT": "+38.8851712", "INTPTLON": "-076.9311353" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.930679, 38.880602 ], [ -76.930792, 38.880623 ], [ -76.930845, 38.880631 ], [ -76.930899, 38.880648 ], [ -76.930953, 38.880665 ], [ -76.931006, 38.880681 ], [ -76.931060, 38.880698 ], [ -76.931108, 38.880719 ], [ -76.931162, 38.880740 ], [ -76.931210, 38.880761 ], [ -76.931285, 38.880798 ], [ -76.931339, 38.880823 ], [ -76.931393, 38.880853 ], [ -76.931446, 38.880886 ], [ -76.931527, 38.880944 ], [ -76.931602, 38.881007 ], [ -76.931677, 38.881070 ], [ -76.931720, 38.881112 ], [ -76.931763, 38.881157 ], [ -76.931816, 38.881220 ], [ -76.931881, 38.881304 ], [ -76.931908, 38.881345 ], [ -76.931924, 38.881370 ], [ -76.931956, 38.881416 ], [ -76.931977, 38.881437 ], [ -76.931999, 38.881462 ], [ -76.932020, 38.881483 ], [ -76.932047, 38.881504 ], [ -76.932111, 38.881537 ], [ -76.932144, 38.881558 ], [ -76.932213, 38.881583 ], [ -76.932251, 38.881596 ], [ -76.932288, 38.881608 ], [ -76.932326, 38.881617 ], [ -76.932364, 38.881621 ], [ -76.932433, 38.881629 ], [ -76.932492, 38.881633 ], [ -76.932551, 38.881629 ], [ -76.932605, 38.881625 ], [ -76.932637, 38.881621 ], [ -76.932691, 38.881608 ], [ -76.932905, 38.881542 ], [ -76.933034, 38.881492 ], [ -76.933072, 38.881546 ], [ -76.933147, 38.881663 ], [ -76.933211, 38.881755 ], [ -76.933329, 38.881922 ], [ -76.933426, 38.882039 ], [ -76.933619, 38.882272 ], [ -76.934225, 38.882999 ], [ -76.934316, 38.883103 ], [ -76.934472, 38.883295 ], [ -76.934670, 38.883534 ], [ -76.934788, 38.883680 ], [ -76.934810, 38.883709 ], [ -76.934831, 38.883734 ], [ -76.934912, 38.883851 ], [ -76.934965, 38.883926 ], [ -76.934987, 38.883964 ], [ -76.935014, 38.884001 ], [ -76.935067, 38.884093 ], [ -76.935126, 38.884202 ], [ -76.935158, 38.884256 ], [ -76.935212, 38.884360 ], [ -76.935239, 38.884415 ], [ -76.935287, 38.884527 ], [ -76.935314, 38.884582 ], [ -76.935598, 38.885246 ], [ -76.935722, 38.885542 ], [ -76.935915, 38.885980 ], [ -76.935770, 38.885964 ], [ -76.935239, 38.885897 ], [ -76.934633, 38.885826 ], [ -76.934064, 38.885763 ], [ -76.933511, 38.885697 ], [ -76.933034, 38.885634 ], [ -76.932938, 38.885617 ], [ -76.932943, 38.885655 ], [ -76.932943, 38.885684 ], [ -76.932943, 38.885709 ], [ -76.932938, 38.885734 ], [ -76.932927, 38.885763 ], [ -76.932814, 38.886285 ], [ -76.932787, 38.886419 ], [ -76.932766, 38.886511 ], [ -76.932664, 38.886966 ], [ -76.932503, 38.887709 ], [ -76.932476, 38.887830 ], [ -76.932428, 38.888060 ], [ -76.932369, 38.888319 ], [ -76.932219, 38.888995 ], [ -76.932203, 38.889075 ], [ -76.932090, 38.889588 ], [ -76.932079, 38.889626 ], [ -76.932074, 38.889672 ], [ -76.932063, 38.889705 ], [ -76.932052, 38.889759 ], [ -76.932042, 38.889805 ], [ -76.932015, 38.889805 ], [ -76.931827, 38.889814 ], [ -76.931162, 38.889822 ], [ -76.930781, 38.889830 ], [ -76.930389, 38.889826 ], [ -76.930153, 38.889822 ], [ -76.930068, 38.889822 ], [ -76.930051, 38.889822 ], [ -76.930046, 38.889709 ], [ -76.930046, 38.889663 ], [ -76.930030, 38.889613 ], [ -76.930019, 38.889588 ], [ -76.930009, 38.889563 ], [ -76.929982, 38.889521 ], [ -76.929950, 38.889484 ], [ -76.929912, 38.889442 ], [ -76.929826, 38.889371 ], [ -76.929762, 38.889346 ], [ -76.929633, 38.889288 ], [ -76.929435, 38.889208 ], [ -76.929333, 38.889166 ], [ -76.929134, 38.889095 ], [ -76.929032, 38.889058 ], [ -76.928823, 38.888991 ], [ -76.928641, 38.888937 ], [ -76.928367, 38.888857 ], [ -76.928179, 38.888807 ], [ -76.927900, 38.888736 ], [ -76.927696, 38.888678 ], [ -76.927600, 38.888653 ], [ -76.927637, 38.888469 ], [ -76.927654, 38.888390 ], [ -76.927691, 38.888231 ], [ -76.927804, 38.887713 ], [ -76.927900, 38.887271 ], [ -76.927949, 38.887041 ], [ -76.928083, 38.886444 ], [ -76.928088, 38.886419 ], [ -76.928104, 38.886356 ], [ -76.928249, 38.885688 ], [ -76.928399, 38.885008 ], [ -76.928544, 38.884335 ], [ -76.928673, 38.883746 ], [ -76.928694, 38.883655 ], [ -76.928839, 38.882982 ], [ -76.928855, 38.882911 ], [ -76.928968, 38.882385 ], [ -76.928989, 38.882306 ], [ -76.929134, 38.881629 ], [ -76.929156, 38.881533 ], [ -76.929241, 38.881141 ], [ -76.929247, 38.881107 ], [ -76.929317, 38.880769 ], [ -76.929311, 38.880673 ], [ -76.929687, 38.880627 ], [ -76.929976, 38.880594 ], [ -76.930003, 38.880590 ], [ -76.930030, 38.880585 ], [ -76.930105, 38.880581 ], [ -76.930132, 38.880577 ], [ -76.930159, 38.880577 ], [ -76.930218, 38.880573 ], [ -76.930250, 38.880573 ], [ -76.930277, 38.880569 ], [ -76.930309, 38.880569 ], [ -76.930346, 38.880569 ], [ -76.930422, 38.880573 ], [ -76.930497, 38.880577 ], [ -76.930604, 38.880590 ], [ -76.930679, 38.880602 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007707", "GEOID": "11001007707", "NAME": "77.07", "NAMELSAD": "Census Tract 77.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 842851, "AWATER": 0, "INTPTLAT": "+38.8779453", "INTPTLON": "-076.9353432" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.944863, 38.879095 ], [ -76.944557, 38.879220 ], [ -76.944498, 38.879245 ], [ -76.944439, 38.879270 ], [ -76.944224, 38.879353 ], [ -76.944165, 38.879383 ], [ -76.944101, 38.879416 ], [ -76.944042, 38.879449 ], [ -76.944020, 38.879466 ], [ -76.943988, 38.879487 ], [ -76.943940, 38.879520 ], [ -76.943913, 38.879537 ], [ -76.943881, 38.879566 ], [ -76.943763, 38.879654 ], [ -76.943688, 38.879717 ], [ -76.943613, 38.879784 ], [ -76.943581, 38.879817 ], [ -76.943543, 38.879850 ], [ -76.943511, 38.879884 ], [ -76.943387, 38.880022 ], [ -76.943344, 38.880063 ], [ -76.943285, 38.880118 ], [ -76.943232, 38.880164 ], [ -76.943146, 38.880226 ], [ -76.943076, 38.880268 ], [ -76.943007, 38.880310 ], [ -76.942931, 38.880347 ], [ -76.942894, 38.880368 ], [ -76.942813, 38.880397 ], [ -76.942776, 38.880414 ], [ -76.942690, 38.880443 ], [ -76.942620, 38.880464 ], [ -76.942588, 38.880473 ], [ -76.942556, 38.880481 ], [ -76.942524, 38.880489 ], [ -76.942486, 38.880493 ], [ -76.942379, 38.880514 ], [ -76.942272, 38.880527 ], [ -76.942164, 38.880535 ], [ -76.942111, 38.880539 ], [ -76.941993, 38.880539 ], [ -76.941821, 38.880535 ], [ -76.941649, 38.880523 ], [ -76.941483, 38.880502 ], [ -76.941386, 38.880485 ], [ -76.941242, 38.880460 ], [ -76.941193, 38.880448 ], [ -76.941145, 38.880439 ], [ -76.941054, 38.880414 ], [ -76.940920, 38.880381 ], [ -76.940877, 38.880368 ], [ -76.940834, 38.880356 ], [ -76.940534, 38.880264 ], [ -76.940501, 38.880255 ], [ -76.940394, 38.880230 ], [ -76.940335, 38.880222 ], [ -76.940303, 38.880218 ], [ -76.940163, 38.880205 ], [ -76.940061, 38.880201 ], [ -76.940029, 38.880201 ], [ -76.939251, 38.880197 ], [ -76.938956, 38.880197 ], [ -76.938672, 38.880197 ], [ -76.937996, 38.880201 ], [ -76.937760, 38.880197 ], [ -76.936483, 38.880197 ], [ -76.936258, 38.880209 ], [ -76.936199, 38.880218 ], [ -76.936140, 38.880239 ], [ -76.935346, 38.880560 ], [ -76.935046, 38.880686 ], [ -76.934525, 38.880894 ], [ -76.933308, 38.881391 ], [ -76.933152, 38.881450 ], [ -76.933034, 38.881492 ], [ -76.932905, 38.881542 ], [ -76.932691, 38.881608 ], [ -76.932637, 38.881621 ], [ -76.932605, 38.881625 ], [ -76.932551, 38.881629 ], [ -76.932492, 38.881633 ], [ -76.932433, 38.881629 ], [ -76.932364, 38.881621 ], [ -76.932326, 38.881617 ], [ -76.932288, 38.881608 ], [ -76.932251, 38.881596 ], [ -76.932213, 38.881583 ], [ -76.932144, 38.881558 ], [ -76.932111, 38.881537 ], [ -76.932047, 38.881504 ], [ -76.932020, 38.881483 ], [ -76.931999, 38.881462 ], [ -76.931977, 38.881437 ], [ -76.931956, 38.881416 ], [ -76.931924, 38.881370 ], [ -76.931908, 38.881345 ], [ -76.931881, 38.881304 ], [ -76.931816, 38.881220 ], [ -76.931763, 38.881157 ], [ -76.931720, 38.881112 ], [ -76.931677, 38.881070 ], [ -76.931602, 38.881007 ], [ -76.931527, 38.880944 ], [ -76.931446, 38.880886 ], [ -76.931393, 38.880853 ], [ -76.931339, 38.880823 ], [ -76.931285, 38.880798 ], [ -76.931210, 38.880761 ], [ -76.931162, 38.880740 ], [ -76.931108, 38.880719 ], [ -76.931060, 38.880698 ], [ -76.931006, 38.880681 ], [ -76.930953, 38.880665 ], [ -76.930899, 38.880648 ], [ -76.930845, 38.880631 ], [ -76.930792, 38.880623 ], [ -76.930679, 38.880602 ], [ -76.930604, 38.880590 ], [ -76.930497, 38.880577 ], [ -76.930422, 38.880573 ], [ -76.930346, 38.880569 ], [ -76.930309, 38.880569 ], [ -76.930277, 38.880569 ], [ -76.930250, 38.880573 ], [ -76.930218, 38.880573 ], [ -76.930159, 38.880577 ], [ -76.930132, 38.880577 ], [ -76.930105, 38.880581 ], [ -76.930030, 38.880585 ], [ -76.930003, 38.880590 ], [ -76.929976, 38.880594 ], [ -76.929687, 38.880627 ], [ -76.929311, 38.880673 ], [ -76.929161, 38.880694 ], [ -76.928142, 38.880811 ], [ -76.927589, 38.880873 ], [ -76.927155, 38.880928 ], [ -76.927042, 38.880940 ], [ -76.926956, 38.880953 ], [ -76.926822, 38.880970 ], [ -76.926618, 38.880990 ], [ -76.926468, 38.881011 ], [ -76.925953, 38.881082 ], [ -76.924666, 38.881212 ], [ -76.924553, 38.881233 ], [ -76.924451, 38.881249 ], [ -76.924365, 38.881274 ], [ -76.924301, 38.881299 ], [ -76.924215, 38.881337 ], [ -76.924049, 38.881429 ], [ -76.924349, 38.881174 ], [ -76.924655, 38.880936 ], [ -76.924827, 38.880807 ], [ -76.925610, 38.880205 ], [ -76.925728, 38.880109 ], [ -76.926109, 38.879821 ], [ -76.926237, 38.879725 ], [ -76.926280, 38.879696 ], [ -76.926323, 38.879662 ], [ -76.926361, 38.879637 ], [ -76.926398, 38.879608 ], [ -76.926441, 38.879579 ], [ -76.926479, 38.879550 ], [ -76.928061, 38.878314 ], [ -76.928147, 38.878247 ], [ -76.928190, 38.878213 ], [ -76.928544, 38.877938 ], [ -76.929032, 38.877558 ], [ -76.929064, 38.877533 ], [ -76.929429, 38.877249 ], [ -76.929821, 38.876944 ], [ -76.929928, 38.876860 ], [ -76.929992, 38.876810 ], [ -76.930062, 38.876756 ], [ -76.930583, 38.876347 ], [ -76.930888, 38.876113 ], [ -76.930953, 38.876063 ], [ -76.930996, 38.876029 ], [ -76.931033, 38.876000 ], [ -76.931146, 38.875912 ], [ -76.931248, 38.875833 ], [ -76.931280, 38.875808 ], [ -76.931366, 38.875741 ], [ -76.931478, 38.875653 ], [ -76.931607, 38.875553 ], [ -76.931645, 38.875524 ], [ -76.932047, 38.875206 ], [ -76.932439, 38.874906 ], [ -76.932492, 38.874864 ], [ -76.932675, 38.874718 ], [ -76.932739, 38.874668 ], [ -76.933141, 38.874355 ], [ -76.933635, 38.873970 ], [ -76.933849, 38.873820 ], [ -76.934155, 38.873565 ], [ -76.934214, 38.873519 ], [ -76.934263, 38.873477 ], [ -76.934397, 38.873373 ], [ -76.934686, 38.873143 ], [ -76.934745, 38.873097 ], [ -76.934810, 38.873047 ], [ -76.934869, 38.873001 ], [ -76.934885, 38.872989 ], [ -76.934922, 38.872960 ], [ -76.935008, 38.872897 ], [ -76.935706, 38.873260 ], [ -76.935845, 38.873331 ], [ -76.936092, 38.873461 ], [ -76.936757, 38.873816 ], [ -76.936870, 38.873874 ], [ -76.936972, 38.873929 ], [ -76.937084, 38.873987 ], [ -76.937358, 38.874133 ], [ -76.937916, 38.874426 ], [ -76.938356, 38.874668 ], [ -76.938656, 38.874818 ], [ -76.938812, 38.874902 ], [ -76.939015, 38.875010 ], [ -76.939359, 38.875194 ], [ -76.939890, 38.875474 ], [ -76.940179, 38.875649 ], [ -76.940491, 38.875841 ], [ -76.940834, 38.876054 ], [ -76.941097, 38.876213 ], [ -76.941247, 38.876305 ], [ -76.941279, 38.876330 ], [ -76.941354, 38.876372 ], [ -76.941424, 38.876413 ], [ -76.941504, 38.876451 ], [ -76.941585, 38.876484 ], [ -76.941628, 38.876501 ], [ -76.941671, 38.876518 ], [ -76.941714, 38.876535 ], [ -76.941891, 38.876597 ], [ -76.941977, 38.876626 ], [ -76.942068, 38.876656 ], [ -76.942492, 38.876793 ], [ -76.942540, 38.876814 ], [ -76.942631, 38.876848 ], [ -76.942722, 38.876890 ], [ -76.942765, 38.876910 ], [ -76.942808, 38.876935 ], [ -76.942851, 38.876956 ], [ -76.942888, 38.876981 ], [ -76.942931, 38.877011 ], [ -76.942980, 38.877044 ], [ -76.943071, 38.877115 ], [ -76.943205, 38.877219 ], [ -76.943291, 38.877295 ], [ -76.943430, 38.877416 ], [ -76.943575, 38.877554 ], [ -76.943715, 38.877691 ], [ -76.943913, 38.877888 ], [ -76.943967, 38.877946 ], [ -76.944074, 38.878067 ], [ -76.944181, 38.878184 ], [ -76.944283, 38.878305 ], [ -76.944460, 38.878527 ], [ -76.944573, 38.878673 ], [ -76.944643, 38.878773 ], [ -76.944712, 38.878873 ], [ -76.944782, 38.878973 ], [ -76.944863, 38.879095 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009902", "GEOID": "11001009902", "NAME": "99.02", "NAMELSAD": "Census Tract 99.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1294556, "AWATER": 0, "INTPTLAT": "+38.8717861", "INTPTLON": "-076.9445542" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.945769, 38.880869 ], [ -76.945694, 38.880706 ], [ -76.945480, 38.880251 ], [ -76.945313, 38.879884 ], [ -76.945265, 38.879788 ], [ -76.945217, 38.879692 ], [ -76.945136, 38.879546 ], [ -76.945083, 38.879449 ], [ -76.944970, 38.879266 ], [ -76.944863, 38.879095 ], [ -76.944782, 38.878973 ], [ -76.944712, 38.878873 ], [ -76.944643, 38.878773 ], [ -76.944573, 38.878673 ], [ -76.944460, 38.878527 ], [ -76.944283, 38.878305 ], [ -76.944181, 38.878184 ], [ -76.944074, 38.878067 ], [ -76.943967, 38.877946 ], [ -76.943913, 38.877888 ], [ -76.943715, 38.877691 ], [ -76.943575, 38.877554 ], [ -76.943430, 38.877416 ], [ -76.943291, 38.877295 ], [ -76.943205, 38.877219 ], [ -76.943071, 38.877115 ], [ -76.942980, 38.877044 ], [ -76.942931, 38.877011 ], [ -76.942888, 38.876981 ], [ -76.942851, 38.876956 ], [ -76.942808, 38.876935 ], [ -76.942765, 38.876910 ], [ -76.942722, 38.876890 ], [ -76.942631, 38.876848 ], [ -76.942540, 38.876814 ], [ -76.942492, 38.876793 ], [ -76.942068, 38.876656 ], [ -76.941977, 38.876626 ], [ -76.941891, 38.876597 ], [ -76.941714, 38.876535 ], [ -76.941671, 38.876518 ], [ -76.941628, 38.876501 ], [ -76.941585, 38.876484 ], [ -76.941504, 38.876451 ], [ -76.941424, 38.876413 ], [ -76.941354, 38.876372 ], [ -76.941279, 38.876330 ], [ -76.941247, 38.876305 ], [ -76.941097, 38.876213 ], [ -76.940834, 38.876054 ], [ -76.940491, 38.875841 ], [ -76.940179, 38.875649 ], [ -76.939890, 38.875474 ], [ -76.939359, 38.875194 ], [ -76.939015, 38.875010 ], [ -76.938812, 38.874902 ], [ -76.938656, 38.874818 ], [ -76.938356, 38.874668 ], [ -76.937916, 38.874426 ], [ -76.937358, 38.874133 ], [ -76.937084, 38.873987 ], [ -76.936972, 38.873929 ], [ -76.936870, 38.873874 ], [ -76.936757, 38.873816 ], [ -76.936092, 38.873461 ], [ -76.935845, 38.873331 ], [ -76.935706, 38.873260 ], [ -76.935008, 38.872897 ], [ -76.935110, 38.872818 ], [ -76.935335, 38.872642 ], [ -76.935357, 38.872626 ], [ -76.935400, 38.872592 ], [ -76.935470, 38.872542 ], [ -76.935577, 38.872454 ], [ -76.935925, 38.872183 ], [ -76.936001, 38.872129 ], [ -76.936076, 38.872074 ], [ -76.936156, 38.872007 ], [ -76.936263, 38.871928 ], [ -76.936285, 38.871911 ], [ -76.936360, 38.871849 ], [ -76.936457, 38.871769 ], [ -76.936532, 38.871715 ], [ -76.936607, 38.871657 ], [ -76.936682, 38.871598 ], [ -76.936837, 38.871473 ], [ -76.937041, 38.871318 ], [ -76.937068, 38.871293 ], [ -76.937159, 38.871222 ], [ -76.937191, 38.871197 ], [ -76.937229, 38.871168 ], [ -76.937374, 38.871055 ], [ -76.937422, 38.871018 ], [ -76.937723, 38.870784 ], [ -76.937798, 38.870725 ], [ -76.937867, 38.870671 ], [ -76.938023, 38.870550 ], [ -76.938313, 38.870328 ], [ -76.938329, 38.870312 ], [ -76.938398, 38.870262 ], [ -76.938474, 38.870203 ], [ -76.938747, 38.869986 ], [ -76.938924, 38.869848 ], [ -76.938946, 38.869831 ], [ -76.938989, 38.869798 ], [ -76.939064, 38.869744 ], [ -76.939268, 38.869581 ], [ -76.939530, 38.869376 ], [ -76.939552, 38.869359 ], [ -76.939584, 38.869334 ], [ -76.939723, 38.869226 ], [ -76.939863, 38.869121 ], [ -76.939895, 38.869096 ], [ -76.940169, 38.868879 ], [ -76.940330, 38.868750 ], [ -76.940421, 38.868679 ], [ -76.940711, 38.868457 ], [ -76.940780, 38.868403 ], [ -76.940861, 38.868340 ], [ -76.941113, 38.868144 ], [ -76.941306, 38.867994 ], [ -76.941333, 38.867973 ], [ -76.941376, 38.867939 ], [ -76.941440, 38.867885 ], [ -76.941596, 38.867764 ], [ -76.941810, 38.867601 ], [ -76.941928, 38.867509 ], [ -76.942095, 38.867376 ], [ -76.942148, 38.867338 ], [ -76.942363, 38.867167 ], [ -76.942470, 38.867083 ], [ -76.942572, 38.867004 ], [ -76.942701, 38.866908 ], [ -76.943087, 38.866607 ], [ -76.943532, 38.866256 ], [ -76.943699, 38.866127 ], [ -76.943811, 38.866039 ], [ -76.943956, 38.865926 ], [ -76.944031, 38.865868 ], [ -76.944149, 38.865776 ], [ -76.944487, 38.865513 ], [ -76.944584, 38.865438 ], [ -76.944691, 38.865354 ], [ -76.944766, 38.865295 ], [ -76.944906, 38.865187 ], [ -76.945388, 38.864807 ], [ -76.945598, 38.864644 ], [ -76.945667, 38.864594 ], [ -76.945775, 38.864506 ], [ -76.945876, 38.864427 ], [ -76.945909, 38.864402 ], [ -76.946225, 38.864155 ], [ -76.946252, 38.864138 ], [ -76.946268, 38.864134 ], [ -76.946627, 38.863842 ], [ -76.946719, 38.863771 ], [ -76.946805, 38.863704 ], [ -76.946858, 38.863779 ], [ -76.947534, 38.864047 ], [ -76.947706, 38.864118 ], [ -76.949095, 38.864686 ], [ -76.949100, 38.864688 ], [ -76.949100, 38.870060 ], [ -76.949047, 38.870140 ], [ -76.949009, 38.870195 ], [ -76.948827, 38.870495 ], [ -76.948789, 38.870546 ], [ -76.948714, 38.870675 ], [ -76.948671, 38.870750 ], [ -76.948639, 38.870813 ], [ -76.948612, 38.870876 ], [ -76.948586, 38.870942 ], [ -76.948564, 38.871005 ], [ -76.948548, 38.871072 ], [ -76.948532, 38.871130 ], [ -76.948521, 38.871189 ], [ -76.948510, 38.871281 ], [ -76.948505, 38.871310 ], [ -76.948505, 38.871398 ], [ -76.948510, 38.871469 ], [ -76.948510, 38.871506 ], [ -76.948521, 38.871615 ], [ -76.948548, 38.871765 ], [ -76.948575, 38.871928 ], [ -76.948618, 38.872141 ], [ -76.948639, 38.872271 ], [ -76.948671, 38.872442 ], [ -76.948682, 38.872534 ], [ -76.948687, 38.872555 ], [ -76.948693, 38.872646 ], [ -76.948698, 38.872717 ], [ -76.948687, 38.872784 ], [ -76.948677, 38.872876 ], [ -76.948661, 38.872960 ], [ -76.948645, 38.873031 ], [ -76.948623, 38.873118 ], [ -76.948618, 38.873139 ], [ -76.948602, 38.873177 ], [ -76.948564, 38.873248 ], [ -76.948446, 38.873465 ], [ -76.948425, 38.873498 ], [ -76.948323, 38.873682 ], [ -76.948242, 38.873828 ], [ -76.948226, 38.873858 ], [ -76.948194, 38.873937 ], [ -76.948156, 38.874016 ], [ -76.948130, 38.874100 ], [ -76.948113, 38.874154 ], [ -76.948097, 38.874238 ], [ -76.948087, 38.874321 ], [ -76.948076, 38.874409 ], [ -76.948076, 38.874471 ], [ -76.948076, 38.874534 ], [ -76.948081, 38.874563 ], [ -76.948092, 38.874659 ], [ -76.948108, 38.874751 ], [ -76.948135, 38.874843 ], [ -76.948140, 38.874872 ], [ -76.948162, 38.874931 ], [ -76.948226, 38.875090 ], [ -76.948264, 38.875190 ], [ -76.948333, 38.875336 ], [ -76.948382, 38.875432 ], [ -76.948478, 38.875616 ], [ -76.948548, 38.875749 ], [ -76.948623, 38.875883 ], [ -76.948655, 38.875937 ], [ -76.948725, 38.876050 ], [ -76.948795, 38.876175 ], [ -76.948859, 38.876301 ], [ -76.948881, 38.876347 ], [ -76.948966, 38.876535 ], [ -76.949020, 38.876681 ], [ -76.949052, 38.876752 ], [ -76.949063, 38.876789 ], [ -76.949074, 38.876827 ], [ -76.949095, 38.876894 ], [ -76.949100, 38.876910 ], [ -76.949100, 38.878233 ], [ -76.949068, 38.878326 ], [ -76.949041, 38.878401 ], [ -76.949009, 38.878472 ], [ -76.948972, 38.878543 ], [ -76.948891, 38.878710 ], [ -76.948854, 38.878769 ], [ -76.948816, 38.878831 ], [ -76.948779, 38.878890 ], [ -76.948757, 38.878919 ], [ -76.948693, 38.879003 ], [ -76.948596, 38.879128 ], [ -76.948548, 38.879186 ], [ -76.948467, 38.879278 ], [ -76.948446, 38.879307 ], [ -76.948323, 38.879424 ], [ -76.948248, 38.879495 ], [ -76.948205, 38.879533 ], [ -76.948119, 38.879604 ], [ -76.948076, 38.879633 ], [ -76.947990, 38.879700 ], [ -76.947942, 38.879733 ], [ -76.947861, 38.879792 ], [ -76.947781, 38.879850 ], [ -76.947652, 38.879938 ], [ -76.947609, 38.879963 ], [ -76.947523, 38.880017 ], [ -76.947459, 38.880059 ], [ -76.947255, 38.880180 ], [ -76.947121, 38.880255 ], [ -76.946906, 38.880372 ], [ -76.946756, 38.880452 ], [ -76.946520, 38.880560 ], [ -76.946220, 38.880702 ], [ -76.946161, 38.880731 ], [ -76.946059, 38.880777 ], [ -76.946032, 38.880786 ], [ -76.945984, 38.880807 ], [ -76.945930, 38.880828 ], [ -76.945893, 38.880840 ], [ -76.945769, 38.880869 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009903", "GEOID": "11001009903", "NAME": "99.03", "NAMELSAD": "Census Tract 99.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 383679, "AWATER": 0, "INTPTLAT": "+38.8883180", "INTPTLON": "-076.9212121" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.913384, 38.889751 ], [ -76.913481, 38.889672 ], [ -76.913556, 38.889613 ], [ -76.913738, 38.889471 ], [ -76.913787, 38.889434 ], [ -76.914124, 38.889162 ], [ -76.914162, 38.889137 ], [ -76.914194, 38.889112 ], [ -76.914232, 38.889083 ], [ -76.914264, 38.889058 ], [ -76.914291, 38.889037 ], [ -76.914323, 38.889016 ], [ -76.914350, 38.888995 ], [ -76.914377, 38.888974 ], [ -76.914403, 38.888949 ], [ -76.914436, 38.888924 ], [ -76.914462, 38.888903 ], [ -76.914505, 38.888870 ], [ -76.914902, 38.888561 ], [ -76.915267, 38.888277 ], [ -76.915541, 38.888060 ], [ -76.915830, 38.887839 ], [ -76.916018, 38.887692 ], [ -76.916120, 38.887613 ], [ -76.916211, 38.887542 ], [ -76.916571, 38.887262 ], [ -76.916882, 38.887016 ], [ -76.916903, 38.886999 ], [ -76.917016, 38.886916 ], [ -76.917129, 38.886828 ], [ -76.917375, 38.886636 ], [ -76.917445, 38.886578 ], [ -76.917520, 38.886523 ], [ -76.917590, 38.886469 ], [ -76.917665, 38.886411 ], [ -76.917681, 38.886394 ], [ -76.917708, 38.886377 ], [ -76.917745, 38.886344 ], [ -76.917788, 38.886315 ], [ -76.917831, 38.886281 ], [ -76.917874, 38.886244 ], [ -76.917933, 38.886202 ], [ -76.917992, 38.886156 ], [ -76.918046, 38.886110 ], [ -76.918105, 38.886068 ], [ -76.918389, 38.885843 ], [ -76.918448, 38.885797 ], [ -76.918561, 38.885709 ], [ -76.918706, 38.885742 ], [ -76.919060, 38.885834 ], [ -76.919419, 38.885918 ], [ -76.919526, 38.885947 ], [ -76.919816, 38.886014 ], [ -76.920149, 38.886093 ], [ -76.920449, 38.886168 ], [ -76.920728, 38.886231 ], [ -76.920937, 38.886273 ], [ -76.921012, 38.886285 ], [ -76.921082, 38.886298 ], [ -76.921136, 38.886306 ], [ -76.921259, 38.886327 ], [ -76.921602, 38.886377 ], [ -76.921753, 38.886394 ], [ -76.921828, 38.886402 ], [ -76.921930, 38.886411 ], [ -76.922037, 38.886415 ], [ -76.922225, 38.886423 ], [ -76.922268, 38.886423 ], [ -76.922627, 38.886427 ], [ -76.922890, 38.886436 ], [ -76.923024, 38.886444 ], [ -76.923131, 38.886452 ], [ -76.923174, 38.886456 ], [ -76.923303, 38.886473 ], [ -76.923426, 38.886498 ], [ -76.923491, 38.886511 ], [ -76.923673, 38.886557 ], [ -76.923797, 38.886594 ], [ -76.923968, 38.886649 ], [ -76.924092, 38.886690 ], [ -76.924199, 38.886732 ], [ -76.924247, 38.886749 ], [ -76.924295, 38.886770 ], [ -76.924430, 38.886832 ], [ -76.924564, 38.886895 ], [ -76.924692, 38.886958 ], [ -76.924896, 38.887066 ], [ -76.925025, 38.887137 ], [ -76.925084, 38.887175 ], [ -76.925207, 38.887254 ], [ -76.925497, 38.887442 ], [ -76.925545, 38.887475 ], [ -76.925701, 38.887576 ], [ -76.925722, 38.887588 ], [ -76.926082, 38.887834 ], [ -76.926323, 38.887997 ], [ -76.926495, 38.888114 ], [ -76.926624, 38.888198 ], [ -76.926726, 38.888260 ], [ -76.926833, 38.888323 ], [ -76.926865, 38.888340 ], [ -76.926940, 38.888381 ], [ -76.926999, 38.888406 ], [ -76.927106, 38.888461 ], [ -76.927224, 38.888515 ], [ -76.927342, 38.888561 ], [ -76.927503, 38.888619 ], [ -76.927600, 38.888653 ], [ -76.927696, 38.888678 ], [ -76.927900, 38.888736 ], [ -76.928179, 38.888807 ], [ -76.928367, 38.888857 ], [ -76.928641, 38.888937 ], [ -76.928823, 38.888991 ], [ -76.929032, 38.889058 ], [ -76.929134, 38.889095 ], [ -76.929333, 38.889166 ], [ -76.929435, 38.889208 ], [ -76.929633, 38.889288 ], [ -76.929762, 38.889346 ], [ -76.929826, 38.889371 ], [ -76.929912, 38.889442 ], [ -76.929950, 38.889484 ], [ -76.929982, 38.889521 ], [ -76.930009, 38.889563 ], [ -76.930019, 38.889588 ], [ -76.930030, 38.889613 ], [ -76.930046, 38.889663 ], [ -76.930046, 38.889709 ], [ -76.930051, 38.889822 ], [ -76.927965, 38.889814 ], [ -76.927165, 38.889809 ], [ -76.926173, 38.889809 ], [ -76.926050, 38.889814 ], [ -76.925004, 38.889818 ], [ -76.923952, 38.889814 ], [ -76.922906, 38.889801 ], [ -76.920701, 38.889818 ], [ -76.919414, 38.889818 ], [ -76.917783, 38.889801 ], [ -76.917622, 38.889801 ], [ -76.917241, 38.889797 ], [ -76.916678, 38.889797 ], [ -76.916163, 38.889793 ], [ -76.915712, 38.889793 ], [ -76.915557, 38.889793 ], [ -76.914720, 38.889789 ], [ -76.914607, 38.889793 ], [ -76.914382, 38.889789 ], [ -76.914167, 38.889789 ], [ -76.914033, 38.889789 ], [ -76.913792, 38.889793 ], [ -76.913663, 38.889789 ], [ -76.913497, 38.889793 ], [ -76.913325, 38.889797 ], [ -76.913384, 38.889751 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009905", "GEOID": "11001009905", "NAME": "99.05", "NAMELSAD": "Census Tract 99.05", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 431558, "AWATER": 0, "INTPTLAT": "+38.8843295", "INTPTLON": "-076.9250522" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.918561, 38.885709 ], [ -76.918679, 38.885617 ], [ -76.918706, 38.885596 ], [ -76.919017, 38.885354 ], [ -76.919146, 38.885254 ], [ -76.919274, 38.885154 ], [ -76.919317, 38.885124 ], [ -76.919344, 38.885104 ], [ -76.919403, 38.885053 ], [ -76.919435, 38.885033 ], [ -76.919532, 38.884953 ], [ -76.919661, 38.884857 ], [ -76.919789, 38.884757 ], [ -76.919923, 38.884653 ], [ -76.919961, 38.884623 ], [ -76.920052, 38.884548 ], [ -76.920117, 38.884502 ], [ -76.920186, 38.884444 ], [ -76.920213, 38.884423 ], [ -76.920320, 38.884339 ], [ -76.920455, 38.884239 ], [ -76.920589, 38.884135 ], [ -76.920712, 38.884035 ], [ -76.920733, 38.884018 ], [ -76.920825, 38.883951 ], [ -76.920916, 38.883876 ], [ -76.920964, 38.883838 ], [ -76.921088, 38.883742 ], [ -76.921216, 38.883646 ], [ -76.921340, 38.883546 ], [ -76.921458, 38.883454 ], [ -76.921479, 38.883433 ], [ -76.921581, 38.883358 ], [ -76.921640, 38.883312 ], [ -76.921672, 38.883287 ], [ -76.921790, 38.883195 ], [ -76.921940, 38.883074 ], [ -76.922091, 38.882957 ], [ -76.922241, 38.882840 ], [ -76.922327, 38.882774 ], [ -76.922434, 38.882690 ], [ -76.922772, 38.882427 ], [ -76.923115, 38.882155 ], [ -76.923968, 38.881496 ], [ -76.924006, 38.881462 ], [ -76.924049, 38.881429 ], [ -76.924215, 38.881337 ], [ -76.924301, 38.881299 ], [ -76.924365, 38.881274 ], [ -76.924451, 38.881249 ], [ -76.924553, 38.881233 ], [ -76.924666, 38.881212 ], [ -76.925953, 38.881082 ], [ -76.926468, 38.881011 ], [ -76.926618, 38.880990 ], [ -76.926822, 38.880970 ], [ -76.926956, 38.880953 ], [ -76.927042, 38.880940 ], [ -76.927155, 38.880928 ], [ -76.927589, 38.880873 ], [ -76.928142, 38.880811 ], [ -76.929161, 38.880694 ], [ -76.929311, 38.880673 ], [ -76.929317, 38.880769 ], [ -76.929247, 38.881107 ], [ -76.929241, 38.881141 ], [ -76.929156, 38.881533 ], [ -76.929134, 38.881629 ], [ -76.928989, 38.882306 ], [ -76.928968, 38.882385 ], [ -76.928855, 38.882911 ], [ -76.928839, 38.882982 ], [ -76.928694, 38.883655 ], [ -76.928673, 38.883746 ], [ -76.928544, 38.884335 ], [ -76.928399, 38.885008 ], [ -76.928249, 38.885688 ], [ -76.928104, 38.886356 ], [ -76.928088, 38.886419 ], [ -76.928083, 38.886444 ], [ -76.927949, 38.887041 ], [ -76.927900, 38.887271 ], [ -76.927804, 38.887713 ], [ -76.927691, 38.888231 ], [ -76.927654, 38.888390 ], [ -76.927637, 38.888469 ], [ -76.927600, 38.888653 ], [ -76.927503, 38.888619 ], [ -76.927342, 38.888561 ], [ -76.927224, 38.888515 ], [ -76.927106, 38.888461 ], [ -76.926999, 38.888406 ], [ -76.926940, 38.888381 ], [ -76.926865, 38.888340 ], [ -76.926833, 38.888323 ], [ -76.926726, 38.888260 ], [ -76.926624, 38.888198 ], [ -76.926495, 38.888114 ], [ -76.926323, 38.887997 ], [ -76.926082, 38.887834 ], [ -76.925722, 38.887588 ], [ -76.925701, 38.887576 ], [ -76.925545, 38.887475 ], [ -76.925497, 38.887442 ], [ -76.925207, 38.887254 ], [ -76.925084, 38.887175 ], [ -76.925025, 38.887137 ], [ -76.924896, 38.887066 ], [ -76.924692, 38.886958 ], [ -76.924564, 38.886895 ], [ -76.924430, 38.886832 ], [ -76.924295, 38.886770 ], [ -76.924247, 38.886749 ], [ -76.924199, 38.886732 ], [ -76.924092, 38.886690 ], [ -76.923968, 38.886649 ], [ -76.923797, 38.886594 ], [ -76.923673, 38.886557 ], [ -76.923491, 38.886511 ], [ -76.923426, 38.886498 ], [ -76.923303, 38.886473 ], [ -76.923174, 38.886456 ], [ -76.923131, 38.886452 ], [ -76.923024, 38.886444 ], [ -76.922890, 38.886436 ], [ -76.922627, 38.886427 ], [ -76.922268, 38.886423 ], [ -76.922225, 38.886423 ], [ -76.922037, 38.886415 ], [ -76.921930, 38.886411 ], [ -76.921828, 38.886402 ], [ -76.921753, 38.886394 ], [ -76.921602, 38.886377 ], [ -76.921259, 38.886327 ], [ -76.921136, 38.886306 ], [ -76.921082, 38.886298 ], [ -76.921012, 38.886285 ], [ -76.920937, 38.886273 ], [ -76.920728, 38.886231 ], [ -76.920449, 38.886168 ], [ -76.920149, 38.886093 ], [ -76.919816, 38.886014 ], [ -76.919526, 38.885947 ], [ -76.919419, 38.885918 ], [ -76.919060, 38.885834 ], [ -76.918706, 38.885742 ], [ -76.918561, 38.885709 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 13, "x": 2345, "y": 3133 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 131072 }, "features": [ +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "011100", "GEOID": "11001011100", "NAME": "111", "NAMELSAD": "Census Tract 111", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 5718693, "AWATER": 366232, "INTPTLAT": "+38.9158612", "INTPTLON": "-076.9681631" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.949100, 38.917251 ], [ -76.944197, 38.917028 ], [ -76.943618, 38.917007 ], [ -76.943854, 38.916869 ], [ -76.944610, 38.916189 ], [ -76.945946, 38.915254 ], [ -76.947255, 38.914974 ], [ -76.949100, 38.914947 ], [ -76.949100, 38.917251 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009000", "GEOID": "11001009000", "NAME": "90", "NAMELSAD": "Census Tract 90", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1427114, "AWATER": 31550, "INTPTLAT": "+38.9226934", "INTPTLON": "-076.9545101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.949100, 38.924108 ], [ -76.945201, 38.921131 ], [ -76.943945, 38.920175 ], [ -76.943849, 38.920100 ], [ -76.942239, 38.918835 ], [ -76.941918, 38.918585 ], [ -76.942433, 38.918092 ], [ -76.942492, 38.918034 ], [ -76.942561, 38.917975 ], [ -76.942931, 38.917399 ], [ -76.943618, 38.917007 ], [ -76.944197, 38.917028 ], [ -76.949100, 38.917251 ], [ -76.949100, 38.924108 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009602", "GEOID": "11001009602", "NAME": "96.02", "NAMELSAD": "Census Tract 96.02", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1306709, "AWATER": 67073, "INTPTLAT": "+38.9035769", "INTPTLON": "-076.9523616" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.943661, 38.901391 ], [ -76.943741, 38.901328 ], [ -76.944519, 38.900706 ], [ -76.946005, 38.899504 ], [ -76.946547, 38.899070 ], [ -76.947910, 38.897980 ], [ -76.948221, 38.897730 ], [ -76.949058, 38.897070 ], [ -76.949100, 38.897036 ], [ -76.949100, 38.906536 ], [ -76.949090, 38.906513 ], [ -76.949074, 38.906472 ], [ -76.949063, 38.906434 ], [ -76.949047, 38.906392 ], [ -76.949004, 38.906309 ], [ -76.948988, 38.906267 ], [ -76.948961, 38.906196 ], [ -76.948940, 38.906159 ], [ -76.948907, 38.906121 ], [ -76.948848, 38.906046 ], [ -76.948811, 38.906008 ], [ -76.948746, 38.905929 ], [ -76.948709, 38.905891 ], [ -76.948677, 38.905845 ], [ -76.948639, 38.905808 ], [ -76.948602, 38.905770 ], [ -76.948564, 38.905729 ], [ -76.948527, 38.905695 ], [ -76.948462, 38.905624 ], [ -76.948435, 38.905578 ], [ -76.948376, 38.905503 ], [ -76.948312, 38.905428 ], [ -76.948258, 38.905353 ], [ -76.948194, 38.905278 ], [ -76.948156, 38.905240 ], [ -76.948119, 38.905203 ], [ -76.948081, 38.905169 ], [ -76.948044, 38.905132 ], [ -76.948001, 38.905098 ], [ -76.947958, 38.905061 ], [ -76.947931, 38.905019 ], [ -76.947877, 38.904985 ], [ -76.947840, 38.904960 ], [ -76.947797, 38.904940 ], [ -76.947733, 38.904869 ], [ -76.947700, 38.904835 ], [ -76.947674, 38.904785 ], [ -76.947636, 38.904727 ], [ -76.947566, 38.904660 ], [ -76.947491, 38.904597 ], [ -76.947421, 38.904522 ], [ -76.947341, 38.904447 ], [ -76.947271, 38.904376 ], [ -76.947191, 38.904313 ], [ -76.947110, 38.904247 ], [ -76.947046, 38.904188 ], [ -76.946998, 38.904134 ], [ -76.946960, 38.904100 ], [ -76.946923, 38.904080 ], [ -76.946874, 38.904046 ], [ -76.946837, 38.904013 ], [ -76.946799, 38.903984 ], [ -76.946713, 38.903917 ], [ -76.946670, 38.903883 ], [ -76.946617, 38.903837 ], [ -76.946590, 38.903808 ], [ -76.946568, 38.903779 ], [ -76.946547, 38.903750 ], [ -76.946493, 38.903696 ], [ -76.946467, 38.903666 ], [ -76.946440, 38.903633 ], [ -76.946408, 38.903600 ], [ -76.946375, 38.903570 ], [ -76.946343, 38.903537 ], [ -76.946290, 38.903466 ], [ -76.946263, 38.903437 ], [ -76.946231, 38.903403 ], [ -76.946172, 38.903337 ], [ -76.946113, 38.903274 ], [ -76.946075, 38.903236 ], [ -76.946032, 38.903203 ], [ -76.945994, 38.903170 ], [ -76.945957, 38.903136 ], [ -76.945914, 38.903099 ], [ -76.945769, 38.902961 ], [ -76.945726, 38.902932 ], [ -76.945683, 38.902898 ], [ -76.945640, 38.902865 ], [ -76.945592, 38.902827 ], [ -76.945549, 38.902798 ], [ -76.945506, 38.902769 ], [ -76.945463, 38.902748 ], [ -76.945431, 38.902727 ], [ -76.945404, 38.902706 ], [ -76.945372, 38.902669 ], [ -76.945345, 38.902627 ], [ -76.945319, 38.902589 ], [ -76.945297, 38.902552 ], [ -76.945302, 38.902493 ], [ -76.945335, 38.902393 ], [ -76.945351, 38.902301 ], [ -76.945351, 38.902276 ], [ -76.945345, 38.902230 ], [ -76.945324, 38.902180 ], [ -76.945286, 38.902126 ], [ -76.945270, 38.902097 ], [ -76.945206, 38.902017 ], [ -76.945179, 38.901988 ], [ -76.945147, 38.901963 ], [ -76.945115, 38.901938 ], [ -76.945088, 38.901909 ], [ -76.945066, 38.901880 ], [ -76.945045, 38.901850 ], [ -76.945018, 38.901829 ], [ -76.944991, 38.901809 ], [ -76.944927, 38.901758 ], [ -76.944873, 38.901713 ], [ -76.944825, 38.901688 ], [ -76.944788, 38.901662 ], [ -76.944707, 38.901738 ], [ -76.944669, 38.901713 ], [ -76.944541, 38.901621 ], [ -76.944514, 38.901604 ], [ -76.944476, 38.901579 ], [ -76.944417, 38.901546 ], [ -76.944385, 38.901533 ], [ -76.944342, 38.901521 ], [ -76.944315, 38.901512 ], [ -76.944289, 38.901504 ], [ -76.944256, 38.901495 ], [ -76.944224, 38.901487 ], [ -76.944181, 38.901479 ], [ -76.944149, 38.901475 ], [ -76.943924, 38.901445 ], [ -76.943833, 38.901429 ], [ -76.943720, 38.901404 ], [ -76.943661, 38.901391 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009601", "GEOID": "11001009601", "NAME": "96.01", "NAMELSAD": "Census Tract 96.01", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 1905262, "AWATER": 189666, "INTPTLAT": "+38.9091300", "INTPTLON": "-076.9490606" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.949100, 38.914947 ], [ -76.947255, 38.914974 ], [ -76.945946, 38.915254 ], [ -76.944610, 38.916189 ], [ -76.943854, 38.916869 ], [ -76.943618, 38.917007 ], [ -76.942931, 38.917399 ], [ -76.942561, 38.917975 ], [ -76.942492, 38.918034 ], [ -76.942433, 38.918092 ], [ -76.941918, 38.918585 ], [ -76.941521, 38.918272 ], [ -76.941451, 38.918213 ], [ -76.941386, 38.918155 ], [ -76.941344, 38.918117 ], [ -76.941295, 38.918080 ], [ -76.941263, 38.918055 ], [ -76.941252, 38.918046 ], [ -76.941081, 38.917917 ], [ -76.939675, 38.916823 ], [ -76.939563, 38.916736 ], [ -76.939348, 38.916573 ], [ -76.939225, 38.916477 ], [ -76.939198, 38.916456 ], [ -76.939166, 38.916431 ], [ -76.939101, 38.916385 ], [ -76.939085, 38.916373 ], [ -76.939058, 38.916352 ], [ -76.938694, 38.916072 ], [ -76.937690, 38.915313 ], [ -76.937057, 38.914820 ], [ -76.935952, 38.913831 ], [ -76.934305, 38.912361 ], [ -76.934268, 38.912336 ], [ -76.934236, 38.912316 ], [ -76.934166, 38.912270 ], [ -76.934059, 38.912195 ], [ -76.934043, 38.912186 ], [ -76.934026, 38.912174 ], [ -76.934005, 38.912153 ], [ -76.933941, 38.912103 ], [ -76.933844, 38.912028 ], [ -76.933506, 38.911765 ], [ -76.933093, 38.911443 ], [ -76.932841, 38.911243 ], [ -76.932814, 38.911226 ], [ -76.932744, 38.911172 ], [ -76.932675, 38.911113 ], [ -76.932498, 38.910976 ], [ -76.932138, 38.910692 ], [ -76.932106, 38.910667 ], [ -76.932079, 38.910646 ], [ -76.932052, 38.910625 ], [ -76.932042, 38.910613 ], [ -76.932020, 38.910600 ], [ -76.931999, 38.910583 ], [ -76.931918, 38.910521 ], [ -76.931875, 38.910487 ], [ -76.931854, 38.910466 ], [ -76.931757, 38.910395 ], [ -76.932492, 38.910007 ], [ -76.932852, 38.909799 ], [ -76.933077, 38.909652 ], [ -76.934740, 38.908409 ], [ -76.936221, 38.907261 ], [ -76.937712, 38.906079 ], [ -76.938645, 38.905328 ], [ -76.938720, 38.905269 ], [ -76.940662, 38.903775 ], [ -76.941746, 38.902919 ], [ -76.942111, 38.902635 ], [ -76.942336, 38.902447 ], [ -76.942856, 38.902047 ], [ -76.943221, 38.901746 ], [ -76.943661, 38.901391 ], [ -76.943720, 38.901404 ], [ -76.943833, 38.901429 ], [ -76.943924, 38.901445 ], [ -76.944149, 38.901475 ], [ -76.944181, 38.901479 ], [ -76.944224, 38.901487 ], [ -76.944256, 38.901495 ], [ -76.944289, 38.901504 ], [ -76.944315, 38.901512 ], [ -76.944342, 38.901521 ], [ -76.944385, 38.901533 ], [ -76.944417, 38.901546 ], [ -76.944476, 38.901579 ], [ -76.944514, 38.901604 ], [ -76.944541, 38.901621 ], [ -76.944669, 38.901713 ], [ -76.944707, 38.901738 ], [ -76.944788, 38.901662 ], [ -76.944825, 38.901688 ], [ -76.944873, 38.901713 ], [ -76.944927, 38.901758 ], [ -76.944991, 38.901809 ], [ -76.945018, 38.901829 ], [ -76.945045, 38.901850 ], [ -76.945066, 38.901880 ], [ -76.945088, 38.901909 ], [ -76.945115, 38.901938 ], [ -76.945147, 38.901963 ], [ -76.945179, 38.901988 ], [ -76.945206, 38.902017 ], [ -76.945270, 38.902097 ], [ -76.945286, 38.902126 ], [ -76.945324, 38.902180 ], [ -76.945345, 38.902230 ], [ -76.945351, 38.902276 ], [ -76.945351, 38.902301 ], [ -76.945335, 38.902393 ], [ -76.945302, 38.902493 ], [ -76.945297, 38.902552 ], [ -76.945319, 38.902589 ], [ -76.945345, 38.902627 ], [ -76.945372, 38.902669 ], [ -76.945404, 38.902706 ], [ -76.945431, 38.902727 ], [ -76.945463, 38.902748 ], [ -76.945506, 38.902769 ], [ -76.945549, 38.902798 ], [ -76.945592, 38.902827 ], [ -76.945640, 38.902865 ], [ -76.945683, 38.902898 ], [ -76.945726, 38.902932 ], [ -76.945769, 38.902961 ], [ -76.945914, 38.903099 ], [ -76.945957, 38.903136 ], [ -76.945994, 38.903170 ], [ -76.946032, 38.903203 ], [ -76.946075, 38.903236 ], [ -76.946113, 38.903274 ], [ -76.946172, 38.903337 ], [ -76.946231, 38.903403 ], [ -76.946263, 38.903437 ], [ -76.946290, 38.903466 ], [ -76.946343, 38.903537 ], [ -76.946375, 38.903570 ], [ -76.946408, 38.903600 ], [ -76.946440, 38.903633 ], [ -76.946467, 38.903666 ], [ -76.946493, 38.903696 ], [ -76.946547, 38.903750 ], [ -76.946568, 38.903779 ], [ -76.946590, 38.903808 ], [ -76.946617, 38.903837 ], [ -76.946670, 38.903883 ], [ -76.946713, 38.903917 ], [ -76.946799, 38.903984 ], [ -76.946837, 38.904013 ], [ -76.946874, 38.904046 ], [ -76.946923, 38.904080 ], [ -76.946960, 38.904100 ], [ -76.946998, 38.904134 ], [ -76.947046, 38.904188 ], [ -76.947110, 38.904247 ], [ -76.947191, 38.904313 ], [ -76.947271, 38.904376 ], [ -76.947341, 38.904447 ], [ -76.947421, 38.904522 ], [ -76.947491, 38.904597 ], [ -76.947566, 38.904660 ], [ -76.947636, 38.904727 ], [ -76.947674, 38.904785 ], [ -76.947700, 38.904835 ], [ -76.947733, 38.904869 ], [ -76.947797, 38.904940 ], [ -76.947840, 38.904960 ], [ -76.947877, 38.904985 ], [ -76.947931, 38.905019 ], [ -76.947958, 38.905061 ], [ -76.948001, 38.905098 ], [ -76.948044, 38.905132 ], [ -76.948081, 38.905169 ], [ -76.948119, 38.905203 ], [ -76.948156, 38.905240 ], [ -76.948194, 38.905278 ], [ -76.948258, 38.905353 ], [ -76.948312, 38.905428 ], [ -76.948376, 38.905503 ], [ -76.948435, 38.905578 ], [ -76.948462, 38.905624 ], [ -76.948527, 38.905695 ], [ -76.948564, 38.905729 ], [ -76.948602, 38.905770 ], [ -76.948639, 38.905808 ], [ -76.948677, 38.905845 ], [ -76.948709, 38.905891 ], [ -76.948746, 38.905929 ], [ -76.948811, 38.906008 ], [ -76.948848, 38.906046 ], [ -76.948907, 38.906121 ], [ -76.948940, 38.906159 ], [ -76.948961, 38.906196 ], [ -76.948988, 38.906267 ], [ -76.949004, 38.906309 ], [ -76.949047, 38.906392 ], [ -76.949063, 38.906434 ], [ -76.949074, 38.906472 ], [ -76.949090, 38.906513 ], [ -76.949100, 38.906536 ], [ -76.949100, 38.914947 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "009603", "GEOID": "11001009603", "NAME": "96.03", "NAMELSAD": "Census Tract 96.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 607400, "AWATER": 0, "INTPTLAT": "+38.8918285", "INTPTLON": "-076.9477195" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.949100, 38.890365 ], [ -76.949100, 38.895103 ], [ -76.949020, 38.895058 ], [ -76.948108, 38.894649 ], [ -76.948022, 38.894611 ], [ -76.947910, 38.894561 ], [ -76.947314, 38.894310 ], [ -76.946971, 38.894164 ], [ -76.946719, 38.894060 ], [ -76.946638, 38.894022 ], [ -76.946488, 38.893956 ], [ -76.946338, 38.893897 ], [ -76.946182, 38.893839 ], [ -76.946021, 38.893784 ], [ -76.945860, 38.893734 ], [ -76.945769, 38.893705 ], [ -76.945587, 38.893655 ], [ -76.945378, 38.893609 ], [ -76.944535, 38.893438 ], [ -76.944358, 38.893400 ], [ -76.944117, 38.893350 ], [ -76.943575, 38.893237 ], [ -76.943403, 38.893196 ], [ -76.943318, 38.893171 ], [ -76.943151, 38.893120 ], [ -76.942980, 38.893070 ], [ -76.942894, 38.893045 ], [ -76.942728, 38.892987 ], [ -76.942610, 38.892941 ], [ -76.942416, 38.892866 ], [ -76.940973, 38.892277 ], [ -76.940904, 38.892248 ], [ -76.940871, 38.892231 ], [ -76.940458, 38.892064 ], [ -76.940244, 38.891976 ], [ -76.940008, 38.891880 ], [ -76.939799, 38.891793 ], [ -76.939659, 38.891738 ], [ -76.939589, 38.891709 ], [ -76.939520, 38.891680 ], [ -76.939337, 38.891596 ], [ -76.939203, 38.891526 ], [ -76.939090, 38.891467 ], [ -76.939026, 38.891429 ], [ -76.938897, 38.891350 ], [ -76.938774, 38.891267 ], [ -76.938715, 38.891225 ], [ -76.938656, 38.891179 ], [ -76.938538, 38.891091 ], [ -76.938484, 38.891045 ], [ -76.938425, 38.890995 ], [ -76.938323, 38.890899 ], [ -76.938270, 38.890853 ], [ -76.938221, 38.890799 ], [ -76.938120, 38.890695 ], [ -76.938071, 38.890640 ], [ -76.938039, 38.890599 ], [ -76.937964, 38.890507 ], [ -76.937921, 38.890448 ], [ -76.937852, 38.890365 ], [ -76.949100, 38.890365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007803", "GEOID": "11001007803", "NAME": "78.03", "NAMELSAD": "Census Tract 78.03", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 986677, "AWATER": 3755, "INTPTLAT": "+38.8962674", "INTPTLON": "-076.9407751" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.937852, 38.890365 ], [ -76.937921, 38.890448 ], [ -76.937964, 38.890507 ], [ -76.938039, 38.890599 ], [ -76.938071, 38.890640 ], [ -76.938120, 38.890695 ], [ -76.938221, 38.890799 ], [ -76.938270, 38.890853 ], [ -76.938323, 38.890899 ], [ -76.938425, 38.890995 ], [ -76.938484, 38.891045 ], [ -76.938538, 38.891091 ], [ -76.938656, 38.891179 ], [ -76.938715, 38.891225 ], [ -76.938774, 38.891267 ], [ -76.938897, 38.891350 ], [ -76.939026, 38.891429 ], [ -76.939090, 38.891467 ], [ -76.939203, 38.891526 ], [ -76.939337, 38.891596 ], [ -76.939520, 38.891680 ], [ -76.939589, 38.891709 ], [ -76.939659, 38.891738 ], [ -76.939799, 38.891793 ], [ -76.940008, 38.891880 ], [ -76.940244, 38.891976 ], [ -76.940458, 38.892064 ], [ -76.940871, 38.892231 ], [ -76.940904, 38.892248 ], [ -76.940973, 38.892277 ], [ -76.942416, 38.892866 ], [ -76.942610, 38.892941 ], [ -76.942728, 38.892987 ], [ -76.942894, 38.893045 ], [ -76.942980, 38.893070 ], [ -76.943151, 38.893120 ], [ -76.943318, 38.893171 ], [ -76.943403, 38.893196 ], [ -76.943575, 38.893237 ], [ -76.944117, 38.893350 ], [ -76.944358, 38.893400 ], [ -76.944535, 38.893438 ], [ -76.945378, 38.893609 ], [ -76.945587, 38.893655 ], [ -76.945769, 38.893705 ], [ -76.945860, 38.893734 ], [ -76.946021, 38.893784 ], [ -76.946182, 38.893839 ], [ -76.946338, 38.893897 ], [ -76.946488, 38.893956 ], [ -76.946638, 38.894022 ], [ -76.946719, 38.894060 ], [ -76.946971, 38.894164 ], [ -76.947314, 38.894310 ], [ -76.947910, 38.894561 ], [ -76.948022, 38.894611 ], [ -76.948108, 38.894649 ], [ -76.949020, 38.895058 ], [ -76.949100, 38.895103 ], [ -76.949100, 38.897036 ], [ -76.949058, 38.897070 ], [ -76.948221, 38.897730 ], [ -76.947910, 38.897980 ], [ -76.946547, 38.899070 ], [ -76.946005, 38.899504 ], [ -76.944519, 38.900706 ], [ -76.943741, 38.901328 ], [ -76.943661, 38.901391 ], [ -76.943221, 38.901746 ], [ -76.942856, 38.902047 ], [ -76.942604, 38.901925 ], [ -76.942433, 38.901850 ], [ -76.942298, 38.901796 ], [ -76.942186, 38.901750 ], [ -76.942014, 38.901683 ], [ -76.941939, 38.901654 ], [ -76.941869, 38.901633 ], [ -76.941692, 38.901579 ], [ -76.941617, 38.901554 ], [ -76.941547, 38.901525 ], [ -76.941478, 38.901495 ], [ -76.941403, 38.901466 ], [ -76.941043, 38.901320 ], [ -76.939396, 38.900648 ], [ -76.939187, 38.900560 ], [ -76.939182, 38.900414 ], [ -76.939187, 38.900105 ], [ -76.939187, 38.899730 ], [ -76.939187, 38.899437 ], [ -76.939187, 38.899057 ], [ -76.939187, 38.898707 ], [ -76.939187, 38.898632 ], [ -76.939187, 38.898369 ], [ -76.939128, 38.898369 ], [ -76.938854, 38.898364 ], [ -76.938597, 38.898364 ], [ -76.938356, 38.898364 ], [ -76.938098, 38.898364 ], [ -76.937245, 38.898369 ], [ -76.937218, 38.898369 ], [ -76.937159, 38.898369 ], [ -76.937025, 38.898364 ], [ -76.936913, 38.898356 ], [ -76.936821, 38.898348 ], [ -76.936682, 38.898323 ], [ -76.936644, 38.898323 ], [ -76.936596, 38.898318 ], [ -76.936596, 38.898264 ], [ -76.936596, 38.898218 ], [ -76.936591, 38.897968 ], [ -76.936585, 38.897625 ], [ -76.936591, 38.897575 ], [ -76.936596, 38.897550 ], [ -76.936601, 38.897525 ], [ -76.936607, 38.897500 ], [ -76.936521, 38.897488 ], [ -76.936446, 38.897475 ], [ -76.936317, 38.897446 ], [ -76.936263, 38.897433 ], [ -76.936237, 38.897425 ], [ -76.936178, 38.897408 ], [ -76.936151, 38.897400 ], [ -76.936070, 38.897371 ], [ -76.935995, 38.897341 ], [ -76.935925, 38.897316 ], [ -76.935861, 38.897287 ], [ -76.935791, 38.897258 ], [ -76.935743, 38.897233 ], [ -76.935700, 38.897208 ], [ -76.935663, 38.897183 ], [ -76.935636, 38.897166 ], [ -76.935593, 38.897141 ], [ -76.935523, 38.897091 ], [ -76.935486, 38.897062 ], [ -76.935427, 38.897016 ], [ -76.935389, 38.896987 ], [ -76.935309, 38.896916 ], [ -76.935276, 38.896882 ], [ -76.935244, 38.896849 ], [ -76.935201, 38.896799 ], [ -76.935153, 38.896736 ], [ -76.935121, 38.896694 ], [ -76.935067, 38.896615 ], [ -76.935019, 38.896536 ], [ -76.934992, 38.896477 ], [ -76.934960, 38.896398 ], [ -76.934944, 38.896356 ], [ -76.934928, 38.896314 ], [ -76.934912, 38.896252 ], [ -76.934896, 38.896185 ], [ -76.934890, 38.896143 ], [ -76.934874, 38.896051 ], [ -76.934874, 38.896010 ], [ -76.934869, 38.895930 ], [ -76.934869, 38.895859 ], [ -76.934869, 38.895826 ], [ -76.934869, 38.895730 ], [ -76.934869, 38.895003 ], [ -76.934874, 38.894553 ], [ -76.934874, 38.894269 ], [ -76.934869, 38.893734 ], [ -76.934869, 38.893584 ], [ -76.934874, 38.892878 ], [ -76.934874, 38.892482 ], [ -76.934874, 38.891889 ], [ -76.934874, 38.891809 ], [ -76.934879, 38.891359 ], [ -76.934879, 38.891012 ], [ -76.934879, 38.890682 ], [ -76.934874, 38.890402 ], [ -76.934874, 38.890365 ], [ -76.937852, 38.890365 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007806", "GEOID": "11001007806", "NAME": "78.06", "NAMELSAD": "Census Tract 78.06", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 671434, "AWATER": 0, "INTPTLAT": "+38.9055926", "INTPTLON": "-076.9325520" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.923630, 38.904025 ], [ -76.923598, 38.904000 ], [ -76.923968, 38.903933 ], [ -76.924472, 38.903837 ], [ -76.924816, 38.903779 ], [ -76.924961, 38.903754 ], [ -76.925840, 38.903604 ], [ -76.926017, 38.903579 ], [ -76.926189, 38.903554 ], [ -76.926280, 38.903545 ], [ -76.926307, 38.903541 ], [ -76.926414, 38.903529 ], [ -76.926457, 38.903524 ], [ -76.926726, 38.903503 ], [ -76.926865, 38.903495 ], [ -76.927117, 38.903483 ], [ -76.927364, 38.903478 ], [ -76.927680, 38.903478 ], [ -76.927729, 38.903483 ], [ -76.927975, 38.903491 ], [ -76.928201, 38.903499 ], [ -76.928592, 38.903512 ], [ -76.928716, 38.903516 ], [ -76.928855, 38.903520 ], [ -76.929220, 38.903533 ], [ -76.929424, 38.903533 ], [ -76.929531, 38.903529 ], [ -76.929638, 38.903524 ], [ -76.929837, 38.903503 ], [ -76.930014, 38.903478 ], [ -76.930105, 38.903466 ], [ -76.930207, 38.903445 ], [ -76.930309, 38.903424 ], [ -76.930411, 38.903399 ], [ -76.930513, 38.903374 ], [ -76.930620, 38.903345 ], [ -76.930668, 38.903332 ], [ -76.930701, 38.903320 ], [ -76.930953, 38.903236 ], [ -76.931081, 38.903195 ], [ -76.931216, 38.903153 ], [ -76.931350, 38.903115 ], [ -76.931484, 38.903082 ], [ -76.931666, 38.903044 ], [ -76.931800, 38.903023 ], [ -76.931924, 38.903003 ], [ -76.932052, 38.902990 ], [ -76.932176, 38.902977 ], [ -76.932299, 38.902969 ], [ -76.932712, 38.902948 ], [ -76.932803, 38.902944 ], [ -76.933565, 38.902911 ], [ -76.933758, 38.902898 ], [ -76.933871, 38.902894 ], [ -76.934547, 38.902861 ], [ -76.934697, 38.902852 ], [ -76.935067, 38.902836 ], [ -76.935448, 38.902819 ], [ -76.935625, 38.902811 ], [ -76.936065, 38.902790 ], [ -76.936467, 38.902773 ], [ -76.936585, 38.902769 ], [ -76.936660, 38.902765 ], [ -76.936730, 38.902765 ], [ -76.937487, 38.902748 ], [ -76.937588, 38.902748 ], [ -76.937824, 38.902744 ], [ -76.938238, 38.902735 ], [ -76.938350, 38.902735 ], [ -76.938468, 38.902740 ], [ -76.938608, 38.902744 ], [ -76.938694, 38.902748 ], [ -76.938871, 38.902760 ], [ -76.938956, 38.902769 ], [ -76.939171, 38.902785 ], [ -76.940356, 38.902877 ], [ -76.940759, 38.902911 ], [ -76.941022, 38.902932 ], [ -76.941091, 38.902936 ], [ -76.941167, 38.902932 ], [ -76.941231, 38.902923 ], [ -76.941290, 38.902911 ], [ -76.941344, 38.902894 ], [ -76.941403, 38.902873 ], [ -76.941440, 38.902852 ], [ -76.941478, 38.902831 ], [ -76.941515, 38.902806 ], [ -76.941553, 38.902781 ], [ -76.941982, 38.902435 ], [ -76.942202, 38.902255 ], [ -76.942481, 38.902034 ], [ -76.942604, 38.901925 ], [ -76.942856, 38.902047 ], [ -76.942336, 38.902447 ], [ -76.942111, 38.902635 ], [ -76.941746, 38.902919 ], [ -76.940662, 38.903775 ], [ -76.938720, 38.905269 ], [ -76.938645, 38.905328 ], [ -76.937712, 38.906079 ], [ -76.936221, 38.907261 ], [ -76.934740, 38.908409 ], [ -76.933077, 38.909652 ], [ -76.932852, 38.909799 ], [ -76.932492, 38.910007 ], [ -76.931757, 38.910395 ], [ -76.931731, 38.910370 ], [ -76.931688, 38.910337 ], [ -76.931661, 38.910320 ], [ -76.931500, 38.910195 ], [ -76.931403, 38.910116 ], [ -76.931323, 38.910053 ], [ -76.931301, 38.910036 ], [ -76.930969, 38.909778 ], [ -76.930867, 38.909694 ], [ -76.930529, 38.909431 ], [ -76.930438, 38.909360 ], [ -76.930373, 38.909310 ], [ -76.930068, 38.909072 ], [ -76.929713, 38.908793 ], [ -76.929606, 38.908709 ], [ -76.929510, 38.908634 ], [ -76.929359, 38.908517 ], [ -76.929322, 38.908484 ], [ -76.928973, 38.908212 ], [ -76.928877, 38.908137 ], [ -76.928753, 38.908037 ], [ -76.928710, 38.908004 ], [ -76.928635, 38.907949 ], [ -76.928560, 38.907887 ], [ -76.928533, 38.907866 ], [ -76.928512, 38.907849 ], [ -76.928383, 38.907749 ], [ -76.928270, 38.907657 ], [ -76.927906, 38.907377 ], [ -76.927884, 38.907365 ], [ -76.927745, 38.907252 ], [ -76.927691, 38.907215 ], [ -76.927557, 38.907106 ], [ -76.927401, 38.906985 ], [ -76.927117, 38.906755 ], [ -76.926801, 38.906509 ], [ -76.926747, 38.906467 ], [ -76.926484, 38.906263 ], [ -76.926457, 38.906242 ], [ -76.926323, 38.906133 ], [ -76.926296, 38.906108 ], [ -76.926253, 38.906079 ], [ -76.926189, 38.906033 ], [ -76.926162, 38.906012 ], [ -76.926135, 38.905987 ], [ -76.926039, 38.905912 ], [ -76.925744, 38.905678 ], [ -76.925277, 38.905319 ], [ -76.925181, 38.905240 ], [ -76.925105, 38.905182 ], [ -76.925084, 38.905165 ], [ -76.925036, 38.905127 ], [ -76.925004, 38.905102 ], [ -76.924719, 38.904877 ], [ -76.924666, 38.904835 ], [ -76.924569, 38.904760 ], [ -76.924499, 38.904706 ], [ -76.924156, 38.904439 ], [ -76.923727, 38.904100 ], [ -76.923630, 38.904025 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007809", "GEOID": "11001007809", "NAME": "78.09", "NAMELSAD": "Census Tract 78.09", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 535254, "AWATER": 0, "INTPTLAT": "+38.9015402", "INTPTLON": "-076.9321955" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.923598, 38.904000 ], [ -76.923662, 38.903888 ], [ -76.923684, 38.903846 ], [ -76.923807, 38.903503 ], [ -76.923909, 38.903215 ], [ -76.924027, 38.902886 ], [ -76.924065, 38.902765 ], [ -76.924263, 38.902222 ], [ -76.924279, 38.902176 ], [ -76.924467, 38.901646 ], [ -76.924633, 38.901170 ], [ -76.924660, 38.901095 ], [ -76.924687, 38.901020 ], [ -76.924757, 38.900828 ], [ -76.924864, 38.900527 ], [ -76.924971, 38.900222 ], [ -76.925068, 38.899951 ], [ -76.925089, 38.899892 ], [ -76.925143, 38.899746 ], [ -76.925390, 38.899742 ], [ -76.925749, 38.899742 ], [ -76.926270, 38.899742 ], [ -76.926581, 38.899746 ], [ -76.926634, 38.899742 ], [ -76.926870, 38.899742 ], [ -76.927578, 38.899742 ], [ -76.927782, 38.899746 ], [ -76.927809, 38.899746 ], [ -76.928029, 38.899775 ], [ -76.928163, 38.899805 ], [ -76.928308, 38.899842 ], [ -76.928437, 38.899880 ], [ -76.928528, 38.899901 ], [ -76.928641, 38.899922 ], [ -76.928796, 38.899951 ], [ -76.928952, 38.899980 ], [ -76.929054, 38.899993 ], [ -76.929107, 38.899997 ], [ -76.929209, 38.900009 ], [ -76.929311, 38.900018 ], [ -76.929467, 38.900026 ], [ -76.929504, 38.900030 ], [ -76.929585, 38.900034 ], [ -76.929703, 38.900038 ], [ -76.929767, 38.900038 ], [ -76.929837, 38.900034 ], [ -76.929891, 38.900034 ], [ -76.930051, 38.900026 ], [ -76.930212, 38.900018 ], [ -76.930368, 38.900005 ], [ -76.930448, 38.899997 ], [ -76.930566, 38.899984 ], [ -76.930727, 38.899955 ], [ -76.931087, 38.899884 ], [ -76.931419, 38.899809 ], [ -76.931666, 38.899755 ], [ -76.931816, 38.899734 ], [ -76.931902, 38.899730 ], [ -76.931945, 38.899725 ], [ -76.932186, 38.899725 ], [ -76.932465, 38.899725 ], [ -76.932712, 38.899725 ], [ -76.932809, 38.899721 ], [ -76.933753, 38.899725 ], [ -76.933748, 38.898974 ], [ -76.933812, 38.898982 ], [ -76.934413, 38.899087 ], [ -76.935196, 38.899224 ], [ -76.935271, 38.899237 ], [ -76.935378, 38.899258 ], [ -76.935459, 38.899270 ], [ -76.935523, 38.899283 ], [ -76.935571, 38.899291 ], [ -76.935802, 38.899337 ], [ -76.936001, 38.899387 ], [ -76.936317, 38.899467 ], [ -76.936494, 38.899517 ], [ -76.936553, 38.899533 ], [ -76.936854, 38.899625 ], [ -76.936982, 38.899671 ], [ -76.937047, 38.899692 ], [ -76.937154, 38.899730 ], [ -76.937352, 38.899809 ], [ -76.937524, 38.899884 ], [ -76.938103, 38.900118 ], [ -76.938436, 38.900256 ], [ -76.938951, 38.900460 ], [ -76.939187, 38.900560 ], [ -76.939396, 38.900648 ], [ -76.941043, 38.901320 ], [ -76.941403, 38.901466 ], [ -76.941478, 38.901495 ], [ -76.941547, 38.901525 ], [ -76.941617, 38.901554 ], [ -76.941692, 38.901579 ], [ -76.941869, 38.901633 ], [ -76.941939, 38.901654 ], [ -76.942014, 38.901683 ], [ -76.942186, 38.901750 ], [ -76.942298, 38.901796 ], [ -76.942433, 38.901850 ], [ -76.942604, 38.901925 ], [ -76.942481, 38.902034 ], [ -76.942202, 38.902255 ], [ -76.941982, 38.902435 ], [ -76.941553, 38.902781 ], [ -76.941515, 38.902806 ], [ -76.941478, 38.902831 ], [ -76.941440, 38.902852 ], [ -76.941403, 38.902873 ], [ -76.941344, 38.902894 ], [ -76.941290, 38.902911 ], [ -76.941231, 38.902923 ], [ -76.941167, 38.902932 ], [ -76.941091, 38.902936 ], [ -76.941022, 38.902932 ], [ -76.940759, 38.902911 ], [ -76.940356, 38.902877 ], [ -76.939171, 38.902785 ], [ -76.938956, 38.902769 ], [ -76.938871, 38.902760 ], [ -76.938694, 38.902748 ], [ -76.938608, 38.902744 ], [ -76.938468, 38.902740 ], [ -76.938350, 38.902735 ], [ -76.938238, 38.902735 ], [ -76.937824, 38.902744 ], [ -76.937588, 38.902748 ], [ -76.937487, 38.902748 ], [ -76.936730, 38.902765 ], [ -76.936660, 38.902765 ], [ -76.936585, 38.902769 ], [ -76.936467, 38.902773 ], [ -76.936065, 38.902790 ], [ -76.935625, 38.902811 ], [ -76.935448, 38.902819 ], [ -76.935067, 38.902836 ], [ -76.934697, 38.902852 ], [ -76.934547, 38.902861 ], [ -76.933871, 38.902894 ], [ -76.933758, 38.902898 ], [ -76.933565, 38.902911 ], [ -76.932803, 38.902944 ], [ -76.932712, 38.902948 ], [ -76.932299, 38.902969 ], [ -76.932176, 38.902977 ], [ -76.932052, 38.902990 ], [ -76.931924, 38.903003 ], [ -76.931800, 38.903023 ], [ -76.931666, 38.903044 ], [ -76.931484, 38.903082 ], [ -76.931350, 38.903115 ], [ -76.931216, 38.903153 ], [ -76.931081, 38.903195 ], [ -76.930953, 38.903236 ], [ -76.930701, 38.903320 ], [ -76.930668, 38.903332 ], [ -76.930620, 38.903345 ], [ -76.930513, 38.903374 ], [ -76.930411, 38.903399 ], [ -76.930309, 38.903424 ], [ -76.930207, 38.903445 ], [ -76.930105, 38.903466 ], [ -76.930014, 38.903478 ], [ -76.929837, 38.903503 ], [ -76.929638, 38.903524 ], [ -76.929531, 38.903529 ], [ -76.929424, 38.903533 ], [ -76.929220, 38.903533 ], [ -76.928855, 38.903520 ], [ -76.928716, 38.903516 ], [ -76.928592, 38.903512 ], [ -76.928201, 38.903499 ], [ -76.927975, 38.903491 ], [ -76.927729, 38.903483 ], [ -76.927680, 38.903478 ], [ -76.927364, 38.903478 ], [ -76.927117, 38.903483 ], [ -76.926865, 38.903495 ], [ -76.926726, 38.903503 ], [ -76.926457, 38.903524 ], [ -76.926414, 38.903529 ], [ -76.926307, 38.903541 ], [ -76.926280, 38.903545 ], [ -76.926189, 38.903554 ], [ -76.926017, 38.903579 ], [ -76.925840, 38.903604 ], [ -76.924961, 38.903754 ], [ -76.924816, 38.903779 ], [ -76.924472, 38.903837 ], [ -76.923968, 38.903933 ], [ -76.923598, 38.904000 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007804", "GEOID": "11001007804", "NAME": "78.04", "NAMELSAD": "Census Tract 78.04", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 838428, "AWATER": 5705, "INTPTLAT": "+38.8942107", "INTPTLON": "-076.9313427" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.939187, 38.900560 ], [ -76.938951, 38.900460 ], [ -76.938436, 38.900256 ], [ -76.938103, 38.900118 ], [ -76.937524, 38.899884 ], [ -76.937352, 38.899809 ], [ -76.937154, 38.899730 ], [ -76.937047, 38.899692 ], [ -76.936982, 38.899671 ], [ -76.936854, 38.899625 ], [ -76.936553, 38.899533 ], [ -76.936494, 38.899517 ], [ -76.936317, 38.899467 ], [ -76.936001, 38.899387 ], [ -76.935802, 38.899337 ], [ -76.935571, 38.899291 ], [ -76.935523, 38.899283 ], [ -76.935459, 38.899270 ], [ -76.935378, 38.899258 ], [ -76.935271, 38.899237 ], [ -76.935196, 38.899224 ], [ -76.934413, 38.899087 ], [ -76.933812, 38.898982 ], [ -76.933748, 38.898974 ], [ -76.933753, 38.899725 ], [ -76.932809, 38.899721 ], [ -76.932712, 38.899725 ], [ -76.932465, 38.899725 ], [ -76.932186, 38.899725 ], [ -76.931945, 38.899725 ], [ -76.931902, 38.899730 ], [ -76.931816, 38.899734 ], [ -76.931666, 38.899755 ], [ -76.931419, 38.899809 ], [ -76.931087, 38.899884 ], [ -76.930727, 38.899955 ], [ -76.930566, 38.899984 ], [ -76.930448, 38.899997 ], [ -76.930368, 38.900005 ], [ -76.930212, 38.900018 ], [ -76.930051, 38.900026 ], [ -76.929891, 38.900034 ], [ -76.929837, 38.900034 ], [ -76.929767, 38.900038 ], [ -76.929703, 38.900038 ], [ -76.929585, 38.900034 ], [ -76.929504, 38.900030 ], [ -76.929467, 38.900026 ], [ -76.929311, 38.900018 ], [ -76.929209, 38.900009 ], [ -76.929107, 38.899997 ], [ -76.929054, 38.899993 ], [ -76.928952, 38.899980 ], [ -76.928796, 38.899951 ], [ -76.928641, 38.899922 ], [ -76.928528, 38.899901 ], [ -76.928437, 38.899880 ], [ -76.928308, 38.899842 ], [ -76.928163, 38.899805 ], [ -76.928029, 38.899775 ], [ -76.927809, 38.899746 ], [ -76.927782, 38.899746 ], [ -76.927578, 38.899742 ], [ -76.926870, 38.899742 ], [ -76.926634, 38.899742 ], [ -76.926581, 38.899746 ], [ -76.926270, 38.899742 ], [ -76.925749, 38.899742 ], [ -76.925390, 38.899742 ], [ -76.925143, 38.899746 ], [ -76.925229, 38.899504 ], [ -76.925299, 38.899312 ], [ -76.925411, 38.898995 ], [ -76.925508, 38.898740 ], [ -76.925620, 38.898452 ], [ -76.925669, 38.898348 ], [ -76.925712, 38.898231 ], [ -76.925738, 38.898164 ], [ -76.925814, 38.897951 ], [ -76.925915, 38.897667 ], [ -76.926017, 38.897379 ], [ -76.926055, 38.897258 ], [ -76.926087, 38.897170 ], [ -76.926119, 38.897070 ], [ -76.926135, 38.897024 ], [ -76.926264, 38.896648 ], [ -76.926275, 38.896611 ], [ -76.926296, 38.896548 ], [ -76.926334, 38.896436 ], [ -76.926377, 38.896319 ], [ -76.926559, 38.895813 ], [ -76.926591, 38.895722 ], [ -76.926602, 38.895688 ], [ -76.926742, 38.895304 ], [ -76.927004, 38.894578 ], [ -76.927037, 38.894482 ], [ -76.927332, 38.893667 ], [ -76.927418, 38.893434 ], [ -76.927493, 38.893233 ], [ -76.927600, 38.892937 ], [ -76.927632, 38.892845 ], [ -76.927884, 38.892139 ], [ -76.927933, 38.892002 ], [ -76.927943, 38.891931 ], [ -76.927954, 38.891885 ], [ -76.927959, 38.891843 ], [ -76.927959, 38.891784 ], [ -76.927959, 38.891551 ], [ -76.927959, 38.891300 ], [ -76.927959, 38.891020 ], [ -76.927959, 38.890857 ], [ -76.927959, 38.890782 ], [ -76.927965, 38.890398 ], [ -76.927964, 38.890365 ], [ -76.934874, 38.890365 ], [ -76.934874, 38.890402 ], [ -76.934879, 38.890682 ], [ -76.934879, 38.891012 ], [ -76.934879, 38.891359 ], [ -76.934874, 38.891809 ], [ -76.934874, 38.891889 ], [ -76.934874, 38.892482 ], [ -76.934874, 38.892878 ], [ -76.934869, 38.893584 ], [ -76.934869, 38.893734 ], [ -76.934874, 38.894269 ], [ -76.934874, 38.894553 ], [ -76.934869, 38.895003 ], [ -76.934869, 38.895730 ], [ -76.934869, 38.895826 ], [ -76.934869, 38.895859 ], [ -76.934869, 38.895930 ], [ -76.934874, 38.896010 ], [ -76.934874, 38.896051 ], [ -76.934890, 38.896143 ], [ -76.934896, 38.896185 ], [ -76.934912, 38.896252 ], [ -76.934928, 38.896314 ], [ -76.934944, 38.896356 ], [ -76.934960, 38.896398 ], [ -76.934992, 38.896477 ], [ -76.935019, 38.896536 ], [ -76.935067, 38.896615 ], [ -76.935121, 38.896694 ], [ -76.935153, 38.896736 ], [ -76.935201, 38.896799 ], [ -76.935244, 38.896849 ], [ -76.935276, 38.896882 ], [ -76.935309, 38.896916 ], [ -76.935389, 38.896987 ], [ -76.935427, 38.897016 ], [ -76.935486, 38.897062 ], [ -76.935523, 38.897091 ], [ -76.935593, 38.897141 ], [ -76.935636, 38.897166 ], [ -76.935663, 38.897183 ], [ -76.935700, 38.897208 ], [ -76.935743, 38.897233 ], [ -76.935791, 38.897258 ], [ -76.935861, 38.897287 ], [ -76.935925, 38.897316 ], [ -76.935995, 38.897341 ], [ -76.936070, 38.897371 ], [ -76.936151, 38.897400 ], [ -76.936178, 38.897408 ], [ -76.936237, 38.897425 ], [ -76.936263, 38.897433 ], [ -76.936317, 38.897446 ], [ -76.936446, 38.897475 ], [ -76.936521, 38.897488 ], [ -76.936607, 38.897500 ], [ -76.936601, 38.897525 ], [ -76.936596, 38.897550 ], [ -76.936591, 38.897575 ], [ -76.936585, 38.897625 ], [ -76.936591, 38.897968 ], [ -76.936596, 38.898218 ], [ -76.936596, 38.898264 ], [ -76.936596, 38.898318 ], [ -76.936644, 38.898323 ], [ -76.936682, 38.898323 ], [ -76.936821, 38.898348 ], [ -76.936913, 38.898356 ], [ -76.937025, 38.898364 ], [ -76.937159, 38.898369 ], [ -76.937218, 38.898369 ], [ -76.937245, 38.898369 ], [ -76.938098, 38.898364 ], [ -76.938356, 38.898364 ], [ -76.938597, 38.898364 ], [ -76.938854, 38.898364 ], [ -76.939128, 38.898369 ], [ -76.939187, 38.898369 ], [ -76.939187, 38.898632 ], [ -76.939187, 38.898707 ], [ -76.939187, 38.899057 ], [ -76.939187, 38.899437 ], [ -76.939187, 38.899730 ], [ -76.939187, 38.900105 ], [ -76.939182, 38.900414 ], [ -76.939187, 38.900560 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007807", "GEOID": "11001007807", "NAME": "78.07", "NAMELSAD": "Census Tract 78.07", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 522749, "AWATER": 0, "INTPTLAT": "+38.8985783", "INTPTLON": "-076.9210632" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.923598, 38.904000 ], [ -76.923544, 38.903959 ], [ -76.923432, 38.903871 ], [ -76.923357, 38.903812 ], [ -76.923131, 38.903633 ], [ -76.922761, 38.903345 ], [ -76.922375, 38.903044 ], [ -76.922278, 38.902969 ], [ -76.922091, 38.902819 ], [ -76.921962, 38.902714 ], [ -76.921678, 38.902489 ], [ -76.921581, 38.902414 ], [ -76.921511, 38.902364 ], [ -76.921436, 38.902305 ], [ -76.921377, 38.902259 ], [ -76.921356, 38.902243 ], [ -76.921098, 38.902038 ], [ -76.921012, 38.901971 ], [ -76.920943, 38.901917 ], [ -76.920851, 38.901846 ], [ -76.920766, 38.901775 ], [ -76.920567, 38.901621 ], [ -76.920267, 38.901391 ], [ -76.920052, 38.901220 ], [ -76.920015, 38.901191 ], [ -76.919945, 38.901136 ], [ -76.919854, 38.901070 ], [ -76.919596, 38.900869 ], [ -76.919543, 38.900823 ], [ -76.919285, 38.900619 ], [ -76.919199, 38.900552 ], [ -76.919119, 38.900485 ], [ -76.919076, 38.900456 ], [ -76.919054, 38.900439 ], [ -76.918969, 38.900368 ], [ -76.918877, 38.900297 ], [ -76.918759, 38.900205 ], [ -76.918486, 38.899993 ], [ -76.918271, 38.899826 ], [ -76.918196, 38.899763 ], [ -76.918062, 38.899663 ], [ -76.918008, 38.899621 ], [ -76.917955, 38.899579 ], [ -76.917783, 38.899441 ], [ -76.917762, 38.899425 ], [ -76.917692, 38.899371 ], [ -76.917568, 38.899274 ], [ -76.917536, 38.899249 ], [ -76.917499, 38.899220 ], [ -76.917467, 38.899195 ], [ -76.917424, 38.899162 ], [ -76.917386, 38.899128 ], [ -76.917343, 38.899095 ], [ -76.917300, 38.899062 ], [ -76.917257, 38.899028 ], [ -76.917214, 38.898995 ], [ -76.917182, 38.898970 ], [ -76.917150, 38.898945 ], [ -76.917139, 38.898936 ], [ -76.917112, 38.898915 ], [ -76.916978, 38.898811 ], [ -76.916721, 38.898607 ], [ -76.916479, 38.898414 ], [ -76.916045, 38.898076 ], [ -76.915927, 38.897989 ], [ -76.915643, 38.897767 ], [ -76.915610, 38.897738 ], [ -76.915224, 38.897438 ], [ -76.915101, 38.897341 ], [ -76.915031, 38.897287 ], [ -76.915004, 38.897266 ], [ -76.914940, 38.897212 ], [ -76.914892, 38.897174 ], [ -76.914500, 38.896866 ], [ -76.914108, 38.896561 ], [ -76.913835, 38.896348 ], [ -76.913776, 38.896302 ], [ -76.913540, 38.896118 ], [ -76.913491, 38.896076 ], [ -76.913411, 38.896014 ], [ -76.913502, 38.895951 ], [ -76.913593, 38.895884 ], [ -76.913615, 38.895868 ], [ -76.913636, 38.895847 ], [ -76.913652, 38.895813 ], [ -76.913770, 38.895809 ], [ -76.913964, 38.895805 ], [ -76.914146, 38.895805 ], [ -76.914843, 38.895818 ], [ -76.915031, 38.895818 ], [ -76.915122, 38.895818 ], [ -76.915627, 38.895818 ], [ -76.915943, 38.895818 ], [ -76.916286, 38.895818 ], [ -76.916404, 38.895813 ], [ -76.916512, 38.895813 ], [ -76.916834, 38.895809 ], [ -76.917059, 38.895809 ], [ -76.917338, 38.895809 ], [ -76.917778, 38.895813 ], [ -76.917896, 38.895813 ], [ -76.918137, 38.895813 ], [ -76.918427, 38.895813 ], [ -76.918781, 38.895809 ], [ -76.919146, 38.895809 ], [ -76.920009, 38.895809 ], [ -76.920508, 38.895805 ], [ -76.920615, 38.895805 ], [ -76.920916, 38.895805 ], [ -76.921077, 38.895801 ], [ -76.921554, 38.895805 ], [ -76.921758, 38.895805 ], [ -76.921887, 38.895805 ], [ -76.921999, 38.895805 ], [ -76.922085, 38.895805 ], [ -76.922461, 38.895805 ], [ -76.922777, 38.895805 ], [ -76.923088, 38.895809 ], [ -76.923898, 38.895813 ], [ -76.924102, 38.895809 ], [ -76.924231, 38.895813 ], [ -76.924279, 38.895822 ], [ -76.924322, 38.895834 ], [ -76.924344, 38.895838 ], [ -76.924381, 38.895847 ], [ -76.924499, 38.895876 ], [ -76.924542, 38.895889 ], [ -76.924569, 38.895897 ], [ -76.925057, 38.895905 ], [ -76.925132, 38.895897 ], [ -76.925234, 38.895960 ], [ -76.925315, 38.896010 ], [ -76.925400, 38.896068 ], [ -76.925524, 38.896139 ], [ -76.925599, 38.896172 ], [ -76.925642, 38.896198 ], [ -76.925696, 38.896273 ], [ -76.925744, 38.896310 ], [ -76.925819, 38.896344 ], [ -76.925964, 38.896415 ], [ -76.926017, 38.896444 ], [ -76.926076, 38.896490 ], [ -76.926184, 38.896557 ], [ -76.926275, 38.896611 ], [ -76.926264, 38.896648 ], [ -76.926135, 38.897024 ], [ -76.926119, 38.897070 ], [ -76.926087, 38.897170 ], [ -76.926055, 38.897258 ], [ -76.926017, 38.897379 ], [ -76.925915, 38.897667 ], [ -76.925814, 38.897951 ], [ -76.925738, 38.898164 ], [ -76.925712, 38.898231 ], [ -76.925669, 38.898348 ], [ -76.925620, 38.898452 ], [ -76.925508, 38.898740 ], [ -76.925411, 38.898995 ], [ -76.925299, 38.899312 ], [ -76.925229, 38.899504 ], [ -76.925143, 38.899746 ], [ -76.925089, 38.899892 ], [ -76.925068, 38.899951 ], [ -76.924971, 38.900222 ], [ -76.924864, 38.900527 ], [ -76.924757, 38.900828 ], [ -76.924687, 38.901020 ], [ -76.924660, 38.901095 ], [ -76.924633, 38.901170 ], [ -76.924467, 38.901646 ], [ -76.924279, 38.902176 ], [ -76.924263, 38.902222 ], [ -76.924065, 38.902765 ], [ -76.924027, 38.902886 ], [ -76.923909, 38.903215 ], [ -76.923807, 38.903503 ], [ -76.923684, 38.903846 ], [ -76.923662, 38.903888 ], [ -76.923598, 38.904000 ] ] ] } } +, +{ "type": "Feature", "properties": { "STATEFP": "11", "COUNTYFP": "001", "TRACTCE": "007808", "GEOID": "11001007808", "NAME": "78.08", "NAMELSAD": "Census Tract 78.08", "MTFCC": "G5020", "FUNCSTAT": "S", "ALAND": 936852, "AWATER": 7722, "INTPTLAT": "+38.8922212", "INTPTLON": "-076.9192026" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -76.909388, 38.892853 ], [ -76.909645, 38.892644 ], [ -76.910520, 38.891935 ], [ -76.910546, 38.891914 ], [ -76.910734, 38.891784 ], [ -76.911142, 38.891500 ], [ -76.911753, 38.891016 ], [ -76.911812, 38.890974 ], [ -76.911914, 38.890891 ], [ -76.912065, 38.890778 ], [ -76.912338, 38.890569 ], [ -76.912403, 38.890515 ], [ -76.912488, 38.890448 ], [ -76.912599, 38.890365 ], [ -76.927964, 38.890365 ], [ -76.927965, 38.890398 ], [ -76.927959, 38.890782 ], [ -76.927959, 38.890857 ], [ -76.927959, 38.891020 ], [ -76.927959, 38.891300 ], [ -76.927959, 38.891551 ], [ -76.927959, 38.891784 ], [ -76.927959, 38.891843 ], [ -76.927954, 38.891885 ], [ -76.927943, 38.891931 ], [ -76.927933, 38.892002 ], [ -76.927884, 38.892139 ], [ -76.927632, 38.892845 ], [ -76.927600, 38.892937 ], [ -76.927493, 38.893233 ], [ -76.927418, 38.893434 ], [ -76.927332, 38.893667 ], [ -76.927037, 38.894482 ], [ -76.927004, 38.894578 ], [ -76.926742, 38.895304 ], [ -76.926602, 38.895688 ], [ -76.926591, 38.895722 ], [ -76.926559, 38.895813 ], [ -76.926377, 38.896319 ], [ -76.926334, 38.896436 ], [ -76.926296, 38.896548 ], [ -76.926275, 38.896611 ], [ -76.926184, 38.896557 ], [ -76.926076, 38.896490 ], [ -76.926017, 38.896444 ], [ -76.925964, 38.896415 ], [ -76.925819, 38.896344 ], [ -76.925744, 38.896310 ], [ -76.925696, 38.896273 ], [ -76.925642, 38.896198 ], [ -76.925599, 38.896172 ], [ -76.925524, 38.896139 ], [ -76.925400, 38.896068 ], [ -76.925315, 38.896010 ], [ -76.925234, 38.895960 ], [ -76.925132, 38.895897 ], [ -76.925057, 38.895905 ], [ -76.924569, 38.895897 ], [ -76.924542, 38.895889 ], [ -76.924499, 38.895876 ], [ -76.924381, 38.895847 ], [ -76.924344, 38.895838 ], [ -76.924322, 38.895834 ], [ -76.924279, 38.895822 ], [ -76.924231, 38.895813 ], [ -76.924102, 38.895809 ], [ -76.923898, 38.895813 ], [ -76.923088, 38.895809 ], [ -76.922777, 38.895805 ], [ -76.922461, 38.895805 ], [ -76.922085, 38.895805 ], [ -76.921999, 38.895805 ], [ -76.921887, 38.895805 ], [ -76.921758, 38.895805 ], [ -76.921554, 38.895805 ], [ -76.921077, 38.895801 ], [ -76.920916, 38.895805 ], [ -76.920615, 38.895805 ], [ -76.920508, 38.895805 ], [ -76.920009, 38.895809 ], [ -76.919146, 38.895809 ], [ -76.918781, 38.895809 ], [ -76.918427, 38.895813 ], [ -76.918137, 38.895813 ], [ -76.917896, 38.895813 ], [ -76.917778, 38.895813 ], [ -76.917338, 38.895809 ], [ -76.917059, 38.895809 ], [ -76.916834, 38.895809 ], [ -76.916512, 38.895813 ], [ -76.916404, 38.895813 ], [ -76.916286, 38.895818 ], [ -76.915943, 38.895818 ], [ -76.915627, 38.895818 ], [ -76.915122, 38.895818 ], [ -76.915031, 38.895818 ], [ -76.914843, 38.895818 ], [ -76.914146, 38.895805 ], [ -76.913964, 38.895805 ], [ -76.913770, 38.895809 ], [ -76.913652, 38.895813 ], [ -76.913636, 38.895847 ], [ -76.913615, 38.895868 ], [ -76.913593, 38.895884 ], [ -76.913502, 38.895951 ], [ -76.913411, 38.896014 ], [ -76.913314, 38.895939 ], [ -76.913250, 38.895889 ], [ -76.913154, 38.895809 ], [ -76.912977, 38.895671 ], [ -76.912864, 38.895584 ], [ -76.912778, 38.895517 ], [ -76.912714, 38.895467 ], [ -76.912692, 38.895446 ], [ -76.912451, 38.895258 ], [ -76.912413, 38.895233 ], [ -76.912290, 38.895137 ], [ -76.911866, 38.894816 ], [ -76.911480, 38.894523 ], [ -76.911410, 38.894473 ], [ -76.911324, 38.894406 ], [ -76.911281, 38.894369 ], [ -76.911217, 38.894323 ], [ -76.911077, 38.894219 ], [ -76.910949, 38.894114 ], [ -76.910922, 38.894093 ], [ -76.910879, 38.894060 ], [ -76.910820, 38.894010 ], [ -76.910697, 38.893914 ], [ -76.910498, 38.893751 ], [ -76.909575, 38.893004 ], [ -76.909388, 38.892853 ] ] ] } } +] } +] } +] } diff --git a/tests/wineries/in.json b/tests/wineries/in.json new file mode 100644 index 000000000..9f7d119bf --- /dev/null +++ b/tests/wineries/in.json @@ -0,0 +1,67 @@ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_OPERA": null, "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.396824, 37.776482 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21516", "USER_OWNER": "WEBSTER GRANGER MARQUEZ", "USER_OPERA": "PEDRO GOMEZ INDUSTRIES", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": null, "Owner_cln": "Webster Granger Marquez", "Oper_cln": "Pedro Gomez Industries" }, "geometry": { "type": "Point", "coordinates": [ -122.396824, 37.776482 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21912", "USER_OWNER": "PHILIP C. BOWERS", "USER_OPERA": "CB WINE CELLARS", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": null, "Owner_cln": "Philip C. Bowers", "Oper_cln": "Cb Wine Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.75494 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21396", "USER_OWNER": "KYLE ROEMER AND SAMANTHA ROEMER", "USER_OPERA": "NICHOLAS & RAE WINERY", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": null, "Owner_cln": "Kyle Roemer And Samantha Roemer", "Oper_cln": "Nicholas & Rae Winery" }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21066", "USER_OWNER": "THE SAN FRANCISCO MEAD COMPANY, LLC", "USER_OPERA": "THE SAN FRANCISCO MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "USA", "Owner_cln": "The San Francisco Mead Company, Llc", "Oper_cln": "The San Francisco Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382693, 37.726785 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23922", "USER_OWNER": "OTTAVINO WINES LLC", "USER_OPERA": null, "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": null, "Owner_cln": "Ottavino Wines Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21933", "USER_OWNER": "PHILIP CUADRA", "USER_OPERA": "HIGHLAWN WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": null, "Owner_cln": "Philip Cuadra", "Oper_cln": "Highlawn Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.74056 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": null, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.3698481, 37.8168703 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.721474, 37.679387 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_OPERA": null, "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -105.940259, 35.687807 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23988", "USER_OWNER": "47 HILLS BREWING COMPANY, LLC", "USER_OPERA": "47 HILLS BREWING COMPANY", "USER_STREE": "137 S LINDEN AVE", "USER_CITY": "SOUTH SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94080, "USER_COUNT": "SAN MATEO", "Owner_cln": "47 Hills Brewing Company, Llc", "Oper_cln": "47 Hills Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.413615, 37.644257 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17487", "USER_OWNER": "WAIT CELLARS, LLC", "USER_OPERA": "WAIT CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Wait Cellars, Llc", "Oper_cln": "Wait Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396824, 37.776482 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17398", "USER_OWNER": "MICHAEL JAMES WINES, INC.", "USER_OPERA": "MICHAEL JAMES WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Michael James Wines, Inc.", "Oper_cln": "Michael James Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21880", "USER_OWNER": "SMASHING GRAPES, LLC", "USER_OPERA": "TIMARK WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Smashing Grapes, Llc", "Oper_cln": "Timark Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24229", "USER_OWNER": "WILLIAM LANE WINE COMPANY LLC", "USER_OPERA": "WILLIAM LANE WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201\/RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94103, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "William Lane Wine Company Llc", "Oper_cln": "William Lane Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.3689769, 37.8257667 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_OPERA": null, "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17377", "USER_OWNER": "ALCHEMIST CELLARS LLC", "USER_OPERA": "ALCHEMIST CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Alchemist Cellars Llc", "Oper_cln": "Alchemist Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396824, 37.776482 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21270", "USER_OWNER": "HARDBALL CELLARS INC.", "USER_OPERA": "HARDBALL CELLARS", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hardball Cellars Inc.", "Oper_cln": "Hardball Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17609", "USER_OWNER": "SEAMUS WINES, LLC", "USER_OPERA": "SEAMUS WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seamus Wines, Llc", "Oper_cln": "Seamus Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.75494 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_OPERA": null, "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.3961401, 37.777432 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.396824, 37.776482 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.75494 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_OPERA": null, "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.396824, 37.776482 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17424", "USER_OWNER": "FURTHERMORE, LLC", "USER_OPERA": "FURTHERMORE PINOT NOIR", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Furthermore, Llc", "Oper_cln": "Furthermore Pinot Noir" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.75494 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21253", "USER_OWNER": "WINEDOCTORS, LLC", "USER_OPERA": null, "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Winedoctors, Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_OPERA": null, "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15734", "USER_OWNER": "CARL E. & SHARON H. SUTTON", "USER_OPERA": "SUTTON CELLARS", "USER_STREE": "601 22ND ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Carl E. & Sharon H. Sutton", "Oper_cln": "Sutton Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387697, 37.757076 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17319", "USER_OWNER": "ERISTAVI WINERY LLC", "USER_OPERA": null, "USER_STREE": "1300 POTRERO AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Eristavi Winery Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.40646, 37.751125 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409057, 37.740083 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23463", "USER_OWNER": "LES AMERICAINES LLC", "USER_OPERA": "CLAIRE HILL WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Les Americaines Llc", "Oper_cln": "Claire Hill Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22655", "USER_OWNER": "BRAZEN VENTURES LLC", "USER_OPERA": "BRAZEN VENTURES", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISO", "Owner_cln": "Brazen Ventures Llc", "Oper_cln": "Brazen Ventures" }, "geometry": { "type": "Point", "coordinates": [ -122.387918, 37.759243 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21050", "USER_OWNER": "TANK WINES LLC", "USER_OPERA": "TANK WINES", "USER_STREE": "18 DORE ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94117, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Tank Wines Llc", "Oper_cln": "Tank Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.413548, 37.774095 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_OPERA": null, "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.74056 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23055", "USER_OWNER": "MANSFIELD-DUNNE WINES, LLC", "USER_OPERA": null, "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mansfield-dunne Wines, Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.385892, 37.738472 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15292", "USER_OWNER": "BRYAN RULISON HARRINGTON", "USER_OPERA": "HARRINGTON WINES", "USER_STREE": "1559 CUSTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Bryan Rulison Harrington", "Oper_cln": "Harrington Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.390741, 37.745662 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22247", "USER_OWNER": "CJM WINE GROUP LLC", "USER_OPERA": "FALLON PLACE WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cjm Wine Group Llc", "Oper_cln": "Fallon Place Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.74056 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.74056 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17490", "USER_OWNER": "33RD STREET CELLARS, LLC", "USER_OPERA": "CELLARS 33", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "33rd Street Cellars, Llc", "Oper_cln": "Cellars 33" }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382693, 37.726785 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21705", "USER_OWNER": "CATHERINE COCHRANE, COURTNEY COCHRANE, AND SEAN COCHRANE", "USER_OPERA": "RYAN COCHRANE WINES", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Catherine Cochrane, Courtney Cochrane, And Sean Cochrane", "Oper_cln": "Ryan Cochrane Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.74056 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24286", "USER_OWNER": "OUROBOROS WINES LLC", "USER_OPERA": "OUROBOROS WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Ouroboros Wines Llc", "Oper_cln": "Ouroboros Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403411, 37.740376 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.74056 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22040", "USER_OWNER": "THEOPOLIS ENTERPRISES, LLC", "USER_OPERA": "THEOPOLIS VINEYARDS", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO COUNTY", "Owner_cln": "Theopolis Enterprises, Llc", "Oper_cln": "Theopolis Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.74056 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_OPERA": null, "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc.", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.368843, 37.829147 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.3689769, 37.8257667 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15779", "USER_OWNER": "KENDRIC VINEYARDS, LLC", "USER_OPERA": "KENDRIC VINEYARDS", "USER_STREE": "401 13TH ST BUILDING 3", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Kendric Vineyards, Llc", "Oper_cln": "Kendric Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.3738416, 37.8276279 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15973", "USER_OWNER": "SOL ROUGE LLC", "USER_OPERA": "SOL ROUGE", "USER_STREE": "200 CALIFORNIA AVE BLDG 180 N", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Sol Rouge Llc", "Oper_cln": "Sol Rouge" }, "geometry": { "type": "Point", "coordinates": [ -122.3692839, 37.8185833 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24253", "USER_OWNER": "MAYEAUX GRAPE CLINIC LLC", "USER_OPERA": "STAGIAIRE WINE", "USER_STREE": "995 9TH ST BLDG 201 RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mayeaux Grape Clinic Llc", "Oper_cln": "Stagiaire Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.3689769, 37.8257667 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.3689769, 37.8257667 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.3689769, 37.8257667 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.3689769, 37.8257667 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.3671488, 37.8243095 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24193", "USER_OWNER": "DE VIN, LLC", "USER_OPERA": null, "USER_STREE": "995 9TH ST BLDG 201 RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "De Vin, Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.3689769, 37.8257667 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23993", "USER_OWNER": "JUST ENOUGH WINES LLC", "USER_OPERA": null, "USER_STREE": "995 9TH ST UNIT 201 RM104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Just Enough Wines Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.3689769, 37.8257667 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.7657329, 40.2465359 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21971", "USER_OWNER": "SEVEN HILL LLC", "USER_OPERA": null, "USER_STREE": "28740 INWOOD RD", "USER_CITY": "SHINGLETOWN", "USER_STATE": "CA", "USER_ZIP": 96088, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seven Hill Llc", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -121.982482, 40.511239 ] } } +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_OPERA": null, "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc.", "Oper_cln": null }, "geometry": { "type": "Point", "coordinates": [ -122.372965, 37.82457 ] } } diff --git a/tests/wineries/out/-zg_-rp.json b/tests/wineries/out/-zg_-rp.json new file mode 100644 index 000000000..44e38fbaf --- /dev/null +++ b/tests/wineries/out/-zg_-rp.json @@ -0,0 +1,852 @@ +{ "type": "FeatureCollection", "properties": { +"antimeridian_adjusted_bounds": "-123.765733,35.687807,-105.940259,40.511239", +"bounds": "-123.765733,35.687807,-105.940259,40.511239", +"center": "-122.387695,37.753336,12", +"description": "tests/wineries/out/-zg_-rp.json.check.mbtiles", +"format": "pbf", +"generator_options": "./tippecanoe -q -a@ -f -o tests/wineries/out/-zg_-rp.json.check.mbtiles -zg -rp tests/wineries/in.json", +"json": "{\"vector_layers\":[{\"id\":\"in\",\"description\":\"\",\"minzoom\":0,\"maxzoom\":12,\"fields\":{\"Oper_cln\":\"String\",\"Owner_cln\":\"String\",\"USER_CITY\":\"String\",\"USER_COUNT\":\"String\",\"USER_OPERA\":\"String\",\"USER_OWNER\":\"String\",\"USER_PERMI\":\"String\",\"USER_STATE\":\"String\",\"USER_STREE\":\"String\",\"USER_ZIP\":\"Number\"}}],\"tilestats\":{\"layerCount\":1,\"layers\":[{\"layer\":\"in\",\"count\":67,\"geometry\":\"Point\",\"attributeCount\":10,\"attributes\":[{\"attribute\":\"Oper_cln\",\"count\":50,\"type\":\"string\",\"values\":[\"47 Hills Brewing Company\",\"Alchemist Cellars\",\"August West\",\"Barebottle Brewing Company\",\"Bravium\",\"Brazen Ventures\",\"Carlotta Cellars\",\"Cb Wine Cellars\",\"Cellars 33\",\"Claire Hill Wines\",\"Demeo Vineyards\",\"Ess Eff Wines\",\"Fallon Place Wines\",\"Furthermore Pinot Noir\",\"Gratta Wines\",\"Hardball Cellars\",\"Harrington Wines\",\"Hdc Wine Company\",\"Hersly Wines\",\"Highlawn Wine Company\",\"Kendric Vineyards\",\"Magic Bag Meadery\",\"Michael James Wines\",\"Montagne Russe\",\"Morgan Family Wines\",\"Nicholas & Rae Winery\",\"Ouroboros Wines\",\"Passaggio Wines\",\"Pedro Gomez Industries\",\"Perfusion Vineyard\",\"Pug Wine\",\"Ryan Cochrane Wines\",\"Sandler Wine Company\",\"Seamus Wines\",\"Sol Rouge\",\"Stagiaire Wine\",\"Sutton Cellars\",\"Tank Wines\",\"The San Francisco Bay Winery\",\"The San Francisco Meadery\",\"Theopolis Vineyards\",\"Timark Wines\",\"Treasure Island Brands\",\"Treasure Island Wines\",\"Urban Cellars\",\"Voleurs De Vin\",\"Von Holt Wines\",\"Wait Cellars\",\"William Lane Wine Company\",\"Woods Beer Co.\"]},{\"attribute\":\"Owner_cln\",\"count\":65,\"type\":\"string\",\"values\":[\"33rd Street Cellars, Llc\",\"47 Hills Brewing Company, Llc\",\"Alchemist Cellars Llc\",\"Aran O. Healy And David G. Grega\",\"August West Wines, Llc\",\"Barbara J. Gratta\",\"Barebottle Brewing Company, Inc.\",\"Brazen Ventures Llc\",\"Bryan Rulison Harrington\",\"Carl E. & Sharon H. Sutton\",\"Casa No Comprende, Inc.\",\"Catherine Cochrane, Courtney Cochrane, And Sean Cochrane\",\"Christopher Von Holt And Pamela Von Holt\",\"City Vintners San Francisco Winery Llc\",\"Cjm Wine Group Llc\",\"Cosenza Cellars Llc\",\"Dan Baldwin\",\"De Vin, Llc\",\"Demeo Vineyards Inc.\",\"Dh Winery - 139 Wsf, Llc\",\"Edward S. Kurtzman\",\"Eristavi Winery Llc\",\"Ess Eff Wines, Llc\",\"Fortunatus, Llc\",\"Furthermore, Llc\",\"Hackberry Hill Cellars, Llc\",\"Hardball Cellars Inc.\",\"Hdc Wine Company Llc\",\"Hersly Wines Llc\",\"John David Louis Bry\",\"Just Enough Wines Llc\",\"Kendric Vineyards, Llc\",\"Kyle Roemer And Samantha Roemer\",\"Les Americaines Llc\",\"Loos Family Winery, Llc\",\"Magic Bag Meadery Llc\",\"Mansfield-dunne Wines, Llc\",\"Mayeaux Grape Clinic Llc\",\"Michael James Wines, Inc.\",\"Morgan Family Wines Llc\",\"Morningwood Vineyards And Winery, Inc.\",\"Ottavino Wines Llc\",\"Ouroboros Wines Llc\",\"Passaggio Wines Llc\",\"Pb Wines, Inc.\",\"Philip C. Bowers\",\"Philip Cuadra\",\"Pug Wine, Llc\",\"Russe Wine Partners, Llc\",\"Seamus Wines, Llc\",\"Seven Hill Llc\",\"Smashing Grapes, Llc\",\"Sol Rouge Llc\",\"Surface Area, Llc\",\"Tank Wines Llc\",\"The San Francisco Mead Company, Llc\",\"Theopolis Enterprises, Llc\",\"Urban Cellars Llc\",\"Voleurs De Vin, Llc\",\"Wait Cellars, Llc\",\"Waits-mast Family Cellars, Llc\",\"Webster Granger Marquez\",\"William Lane Wine Company Llc\",\"Winedoctors, Llc\",\"Yerba Buena Beverage, Llc\"]},{\"attribute\":\"USER_CITY\",\"count\":7,\"type\":\"string\",\"values\":[\"LIVERMORE\",\"MYERS FLAT\",\"SAN FRANCISCO\",\"SAN FRANCISCO\",\"SANTA FE\",\"SHINGLETOWN\",\"SOUTH SAN FRANCISCO\"]},{\"attribute\":\"USER_COUNT\",\"count\":9,\"type\":\"string\",\"values\":[\"ALAMEDA\",\"Geocoded_city_Center\",\"SAN FRANCISCCO\",\"SAN FRANCISCO\",\"SAN FRANCISCO COUNTY\",\"SAN FRANCISO\",\"SAN MATEO\",\"SANTA FE\",\"USA\"]},{\"attribute\":\"USER_OPERA\",\"count\":50,\"type\":\"string\",\"values\":[\"47 HILLS BREWING COMPANY\",\"ALCHEMIST CELLARS\",\"AUGUST WEST\",\"BAREBOTTLE BREWING COMPANY\",\"BRAVIUM\",\"BRAZEN VENTURES\",\"CARLOTTA CELLARS\",\"CB WINE CELLARS\",\"CELLARS 33\",\"CLAIRE HILL WINES\",\"DEMEO VINEYARDS\",\"ESS EFF WINES\",\"FALLON PLACE WINES\",\"FURTHERMORE PINOT NOIR\",\"GRATTA WINES\",\"HARDBALL CELLARS\",\"HARRINGTON WINES\",\"HDC WINE COMPANY\",\"HERSLY WINES\",\"HIGHLAWN WINE COMPANY\",\"KENDRIC VINEYARDS\",\"MAGIC BAG MEADERY\",\"MICHAEL JAMES WINES\",\"MONTAGNE RUSSE\",\"MORGAN FAMILY WINES\",\"NICHOLAS & RAE WINERY\",\"OUROBOROS WINES\",\"PASSAGGIO WINES\",\"PEDRO GOMEZ INDUSTRIES\",\"PERFUSION VINEYARD\",\"PUG WINE\",\"RYAN COCHRANE WINES\",\"SANDLER WINE COMPANY\",\"SEAMUS WINES\",\"SOL ROUGE\",\"STAGIAIRE WINE\",\"SUTTON CELLARS\",\"TANK WINES\",\"THE SAN FRANCISCO BAY WINERY\",\"THE SAN FRANCISCO MEADERY\",\"THEOPOLIS VINEYARDS\",\"TIMARK WINES\",\"TREASURE ISLAND BRANDS\",\"TREASURE ISLAND WINES\",\"URBAN CELLARS\",\"VOLEURS DE VIN\",\"VON HOLT WINES\",\"WAIT CELLARS\",\"WILLIAM LANE WINE COMPANY\",\"WOODS BEER CO.\"]},{\"attribute\":\"USER_OWNER\",\"count\":65,\"type\":\"string\",\"values\":[\"33RD STREET CELLARS, LLC\",\"47 HILLS BREWING COMPANY, LLC\",\"ALCHEMIST CELLARS LLC\",\"ARAN O. HEALY AND DAVID G. GREGA\",\"AUGUST WEST WINES, LLC\",\"BARBARA J. GRATTA\",\"BAREBOTTLE BREWING COMPANY, INC.\",\"BRAZEN VENTURES LLC\",\"BRYAN RULISON HARRINGTON\",\"CARL E. & SHARON H. SUTTON\",\"CASA NO COMPRENDE, INC.\",\"CATHERINE COCHRANE, COURTNEY COCHRANE, AND SEAN COCHRANE\",\"CHRISTOPHER VON HOLT AND PAMELA VON HOLT\",\"CITY VINTNERS SAN FRANCISCO WINERY LLC\",\"CJM WINE GROUP LLC\",\"COSENZA CELLARS LLC\",\"DAN BALDWIN\",\"DE VIN, LLC\",\"DEMEO VINEYARDS INC.\",\"DH WINERY - 139 WSF, LLC\",\"EDWARD S. KURTZMAN\",\"ERISTAVI WINERY LLC\",\"ESS EFF WINES, LLC\",\"FORTUNATUS, LLC\",\"FURTHERMORE, LLC\",\"HACKBERRY HILL CELLARS, LLC\",\"HARDBALL CELLARS INC.\",\"HDC WINE COMPANY LLC\",\"HERSLY WINES LLC\",\"JOHN DAVID LOUIS BRY\",\"JUST ENOUGH WINES LLC\",\"KENDRIC VINEYARDS, LLC\",\"KYLE ROEMER AND SAMANTHA ROEMER\",\"LES AMERICAINES LLC\",\"LOOS FAMILY WINERY, LLC\",\"MAGIC BAG MEADERY LLC\",\"MANSFIELD-DUNNE WINES, LLC\",\"MAYEAUX GRAPE CLINIC LLC\",\"MICHAEL JAMES WINES, INC.\",\"MORGAN FAMILY WINES LLC\",\"MORNINGWOOD VINEYARDS AND WINERY, INC.\",\"OTTAVINO WINES LLC\",\"OUROBOROS WINES LLC\",\"PASSAGGIO WINES LLC\",\"PB WINES, INC.\",\"PHILIP C. BOWERS\",\"PHILIP CUADRA\",\"PUG WINE, LLC\",\"RUSSE WINE PARTNERS, LLC\",\"SEAMUS WINES, LLC\",\"SEVEN HILL LLC\",\"SMASHING GRAPES, LLC\",\"SOL ROUGE LLC\",\"SURFACE AREA, LLC\",\"TANK WINES LLC\",\"THE SAN FRANCISCO MEAD COMPANY, LLC\",\"THEOPOLIS ENTERPRISES, LLC\",\"URBAN CELLARS LLC\",\"VOLEURS DE VIN, LLC\",\"WAIT CELLARS, LLC\",\"WAITS-MAST FAMILY CELLARS, LLC\",\"WEBSTER GRANGER MARQUEZ\",\"WILLIAM LANE WINE COMPANY LLC\",\"WINEDOCTORS, LLC\",\"YERBA BUENA BEVERAGE, LLC\"]},{\"attribute\":\"USER_PERMI\",\"count\":66,\"type\":\"string\",\"values\":[\"CA-W-15292\",\"CA-W-15425\",\"CA-W-15734\",\"CA-W-15779\",\"CA-W-15973\",\"CA-W-16641\",\"CA-W-16651\",\"CA-W-17110\",\"CA-W-17212\",\"CA-W-17255\",\"CA-W-17266\",\"CA-W-17319\",\"CA-W-17327\",\"CA-W-17354\",\"CA-W-17377\",\"CA-W-17398\",\"CA-W-17424\",\"CA-W-17487\",\"CA-W-17490\",\"CA-W-17516\",\"CA-W-17548\",\"CA-W-17549\",\"CA-W-17609\",\"CA-W-17719\",\"CA-W-21023\",\"CA-W-21034\",\"CA-W-21050\",\"CA-W-21066\",\"CA-W-21120\",\"CA-W-21125\",\"CA-W-21217\",\"CA-W-21253\",\"CA-W-21270\",\"CA-W-21396\",\"CA-W-21516\",\"CA-W-21705\",\"CA-W-21743\",\"CA-W-21765\",\"CA-W-21774\",\"CA-W-21846\",\"CA-W-21880\",\"CA-W-21912\",\"CA-W-21933\",\"CA-W-21971\",\"CA-W-22040\",\"CA-W-22069\",\"CA-W-22193\",\"CA-W-22247\",\"CA-W-22454\",\"CA-W-22595\",\"CA-W-22655\",\"CA-W-22659\",\"CA-W-22828\",\"CA-W-23055\",\"CA-W-23463\",\"CA-W-23518\",\"CA-W-23922\",\"CA-W-23988\",\"CA-W-23993\",\"CA-W-24193\",\"CA-W-24229\",\"CA-W-24253\",\"CA-W-24254\",\"CA-W-24286\",\"CA-W-3592\",\"NM-W-21035\"]},{\"attribute\":\"USER_STATE\",\"count\":2,\"type\":\"string\",\"values\":[\"CA\",\"NM\"]},{\"attribute\":\"USER_STREE\",\"count\":39,\"type\":\"string\",\"values\":[\"1080 AVENUE M UNIT C\",\"1180 SHAFTER AVE\",\"1180 SHAFTER AVE\",\"1225 MINNESOTA ST\",\"1225 MINNESOTA ST\",\"1300 POTRERO AVE\",\"137 S LINDEN AVE\",\"139 W SAN FRANCISCO ST\",\"1469 HUDSON AVE\",\"1525 CORTLAND AVE\",\"1559 CUSTER AVE\",\"16370 DYERVILLE LOOP RD BLDG 201,\",\"18 DORE ST\",\"200 CALIFORNIA AVE BLDG 180 N\",\"2029 RESEARCH DR\",\"2455 3RD ST\",\"2455 THIRD ST\",\"28740 INWOOD RD\",\"401 13TH ST BUILDING 3\",\"422 CLIPPER COVE WAY\",\"495 BARNEVELD AVE\",\"495 BARNEVELD AVE\",\"53 BLUXOME ST\",\"53 BLUXOME ST\",\"5361 BLUXOME ST\",\"540 BARNEVELD AVE STE K & L\",\"540 BARNEVELD AVE STE K AND L\",\"540 BARNEVELD AVE STE K, L\",\"540 BARNEVELD AVE SUITES K A\",\"540 BARNEVELD AVE STE K & L\",\"601 22ND ST\",\"750 6TH ST\",\"995 9TH ST BLDG 201\",\"995 9TH ST BLDG 201 RM 104\",\"995 9TH ST BLDG 201,\",\"995 9TH ST BLDG 201/RM 104\",\"995 9TH ST UNIT 201 RM104\",\"995 NINTH\",\"NOT PROVIDED\"]},{\"attribute\":\"USER_ZIP\",\"count\":12,\"type\":\"number\",\"values\":[0,87501,94080,94103,94107,94110,94117,94124,94130,94550,95554,96088],\"min\":0,\"max\":96088}]}]}}", +"maxzoom": "12", +"minzoom": "0", +"name": "tests/wineries/out/-zg_-rp.json.check.mbtiles", +"strategies": "[{\"dropped_by_rate\":64},{\"dropped_by_rate\":63},{\"dropped_by_rate\":62},{\"dropped_by_rate\":60},{\"dropped_by_rate\":57},{\"dropped_by_rate\":54},{\"dropped_by_rate\":51},{\"dropped_by_rate\":46},{\"dropped_by_rate\":49},{\"dropped_by_rate\":34},{\"dropped_by_rate\":25},{\"dropped_by_rate\":14},{}]", +"tippecanoe_decisions": "{\"basezoom\":12,\"droprate\":1.30026,\"retain_points_multiplier\":1}", +"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": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.750000, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.431641, 37.718590 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.750000, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.788081 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.753344 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 2, "x": 0, "y": 1 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.771973, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.770715 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.735969 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 3 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.760986, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409668, 37.744657 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.727280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 3, "x": 1, "y": 2 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21971", "USER_OWNER": "SEVEN HILL LLC", "USER_STREE": "28740 INWOOD RD", "USER_CITY": "SHINGLETOWN", "USER_STATE": "CA", "USER_ZIP": 96088, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seven Hill Llc" }, "geometry": { "type": "Point", "coordinates": [ -121.981201, 40.513799 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 2, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.766479, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.827141 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.371216, 37.827141 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.365723, 37.822802 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.779399 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.398682, 37.775057 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.727280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 4, "x": 3, "y": 6 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.941162, 35.688533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 4, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.766479, 40.245992 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 5, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.766479, 40.245992 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.824972 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.727280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 5, "x": 6, "y": 12 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.941162, 35.688533 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 9, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765106, 40.247040 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 10, "y": 24 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765106, 40.247040 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.826057 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.826057 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368469, 37.826057 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.823887 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.397308, 37.776142 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389069, 37.754430 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404175, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.402802, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382202, 37.727280 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 6, "x": 13, "y": 25 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.939789, 35.687418 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 19, "y": 48 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765793, 40.246516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 49 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15779", "USER_OWNER": "KENDRIC VINEYARDS, LLC", "USER_OPERA": "KENDRIC VINEYARDS", "USER_STREE": "401 13TH ST BUILDING 3", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Kendric Vineyards, Llc", "Oper_cln": "Kendric Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.827684 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.373276, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.829311 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.825514 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.825514 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.369156, 37.825514 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.395935, 37.777228 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396622, 37.776685 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389755, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404861, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382889, 37.726737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 20, "y": 48 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765793, 40.246516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 7, "x": 26, "y": 50 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.940475, 35.687976 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 39, "y": 96 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765793, 40.246516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.408981, 37.740042 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.726737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15779", "USER_OWNER": "KENDRIC VINEYARDS, LLC", "USER_OPERA": "KENDRIC VINEYARDS", "USER_STREE": "401 13TH ST BUILDING 3", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Kendric Vineyards, Llc", "Oper_cln": "Kendric Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.373962, 37.827684 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.824701 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396278, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396965, 37.776414 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.388039, 37.759316 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382545, 37.726737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 40, "y": 96 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765793, 40.246516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 99 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.721306, 37.679473 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 98 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.829040 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824430 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 41, "y": 96 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21971", "USER_OWNER": "SEVEN HILL LLC", "USER_STREE": "28740 INWOOD RD", "USER_CITY": "SHINGLETOWN", "USER_STATE": "CA", "USER_ZIP": 96088, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seven Hill Llc" }, "geometry": { "type": "Point", "coordinates": [ -121.982574, 40.511189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 8, "x": 52, "y": 100 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.940132, 35.687697 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 79, "y": 193 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765793, 40.246516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21066", "USER_OWNER": "THE SAN FRANCISCO MEAD COMPANY, LLC", "USER_OPERA": "THE SAN FRANCISCO MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "USA", "Owner_cln": "The San Francisco Mead Company, Llc", "Oper_cln": "The San Francisco Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726737 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 81, "y": 197 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15779", "USER_OWNER": "KENDRIC VINEYARDS, LLC", "USER_OPERA": "KENDRIC VINEYARDS", "USER_STREE": "401 13TH ST BUILDING 3", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Kendric Vineyards, Llc", "Oper_cln": "Kendric Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.373791, 37.827684 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.829175 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367096, 37.824294 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.777499 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21516", "USER_OWNER": "WEBSTER GRANGER MARQUEZ", "USER_OPERA": "PEDRO GOMEZ INDUSTRIES", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Webster Granger Marquez", "Oper_cln": "Pedro Gomez Industries" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17377", "USER_OWNER": "ALCHEMIST CELLARS LLC", "USER_OPERA": "ALCHEMIST CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Alchemist Cellars Llc", "Oper_cln": "Alchemist Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776549 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17609", "USER_OWNER": "SEAMUS WINES, LLC", "USER_OPERA": "SEAMUS WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seamus Wines, Llc", "Oper_cln": "Seamus Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387867, 37.759180 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389412, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21933", "USER_OWNER": "PHILIP CUADRA", "USER_OPERA": "HIGHLAWN WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Philip Cuadra", "Oper_cln": "Highlawn Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404518, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23463", "USER_OWNER": "LES AMERICAINES LLC", "USER_OPERA": "CLAIRE HILL WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Les Americaines Llc", "Oper_cln": "Claire Hill Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403488, 37.740313 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726737 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 198 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.721478, 37.679337 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 82, "y": 192 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21971", "USER_OWNER": "SEVEN HILL LLC", "USER_STREE": "28740 INWOOD RD", "USER_CITY": "SHINGLETOWN", "USER_STATE": "CA", "USER_ZIP": 96088, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seven Hill Llc" }, "geometry": { "type": "Point", "coordinates": [ -121.982403, 40.511189 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 9, "x": 105, "y": 201 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.940304, 35.687836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 159, "y": 386 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765707, 40.246516 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23988", "USER_OWNER": "47 HILLS BREWING COMPANY, LLC", "USER_OPERA": "47 HILLS BREWING COMPANY", "USER_STREE": "137 S LINDEN AVE", "USER_CITY": "SOUTH SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94080, "USER_COUNT": "SAN MATEO", "Owner_cln": "47 Hills Brewing Company, Llc", "Oper_cln": "47 Hills Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.644277 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 163, "y": 395 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15779", "USER_OWNER": "KENDRIC VINEYARDS, LLC", "USER_OPERA": "KENDRIC VINEYARDS", "USER_STREE": "401 13TH ST BUILDING 3", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Kendric Vineyards, Llc", "Oper_cln": "Kendric Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.373877, 37.827616 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372932, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368813, 37.829175 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825786 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367182, 37.824294 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.816904 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21050", "USER_OWNER": "TANK WINES LLC", "USER_OPERA": "TANK WINES", "USER_STREE": "18 DORE ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94117, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Tank Wines Llc", "Oper_cln": "Tank Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396107, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21516", "USER_OWNER": "WEBSTER GRANGER MARQUEZ", "USER_OPERA": "PEDRO GOMEZ INDUSTRIES", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Webster Granger Marquez", "Oper_cln": "Pedro Gomez Industries" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17377", "USER_OWNER": "ALCHEMIST CELLARS LLC", "USER_OPERA": "ALCHEMIST CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Alchemist Cellars Llc", "Oper_cln": "Alchemist Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396793, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17398", "USER_OWNER": "MICHAEL JAMES WINES, INC.", "USER_OPERA": "MICHAEL JAMES WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Michael James Wines, Inc.", "Oper_cln": "Michael James Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17609", "USER_OWNER": "SEAMUS WINES, LLC", "USER_OPERA": "SEAMUS WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seamus Wines, Llc", "Oper_cln": "Seamus Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387953, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15734", "USER_OWNER": "CARL E. & SHARON H. SUTTON", "USER_OPERA": "SUTTON CELLARS", "USER_STREE": "601 22ND ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Carl E. & Sharon H. Sutton", "Oper_cln": "Sutton Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757076 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389498, 37.754973 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17319", "USER_OWNER": "ERISTAVI WINERY LLC", "USER_STREE": "1300 POTRERO AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Eristavi Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.406492, 37.751105 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21933", "USER_OWNER": "PHILIP CUADRA", "USER_OPERA": "HIGHLAWN WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Philip Cuadra", "Oper_cln": "Highlawn Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740585 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23922", "USER_OWNER": "OTTAVINO WINES LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Ottavino Wines Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23463", "USER_OWNER": "LES AMERICAINES LLC", "USER_OPERA": "CLAIRE HILL WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Les Americaines Llc", "Oper_cln": "Claire Hill Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15292", "USER_OWNER": "BRYAN RULISON HARRINGTON", "USER_OPERA": "HARRINGTON WINES", "USER_STREE": "1559 CUSTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Bryan Rulison Harrington", "Oper_cln": "Harrington Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.390699, 37.745675 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21066", "USER_OWNER": "THE SAN FRANCISCO MEAD COMPANY, LLC", "USER_OPERA": "THE SAN FRANCISCO MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "USA", "Owner_cln": "The San Francisco Mead Company, Llc", "Oper_cln": "The San Francisco Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726805 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382717, 37.726805 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 165, "y": 396 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.721478, 37.679405 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 165, "y": 385 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21971", "USER_OWNER": "SEVEN HILL LLC", "USER_STREE": "28740 INWOOD RD", "USER_CITY": "SHINGLETOWN", "USER_STATE": "CA", "USER_ZIP": 96088, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seven Hill Llc" }, "geometry": { "type": "Point", "coordinates": [ -121.982489, 40.511254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 10, "x": 210, "y": 403 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.940218, 35.687836 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 319, "y": 773 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765750, 40.246548 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23988", "USER_OWNER": "47 HILLS BREWING COMPANY, LLC", "USER_OPERA": "47 HILLS BREWING COMPANY", "USER_STREE": "137 S LINDEN AVE", "USER_CITY": "SOUTH SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94080, "USER_COUNT": "SAN MATEO", "Owner_cln": "47 Hills Brewing Company, Llc", "Oper_cln": "47 Hills Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.644243 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 327, "y": 791 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15779", "USER_OWNER": "KENDRIC VINEYARDS, LLC", "USER_OPERA": "KENDRIC VINEYARDS", "USER_STREE": "401 13TH ST BUILDING 3", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Kendric Vineyards, Llc", "Oper_cln": "Kendric Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.373834, 37.827616 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372975, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368855, 37.829141 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24253", "USER_OWNER": "MAYEAUX GRAPE CLINIC LLC", "USER_OPERA": "STAGIAIRE WINE", "USER_STREE": "995 9TH ST BLDG 201 RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mayeaux Grape Clinic Llc", "Oper_cln": "Stagiaire Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24193", "USER_OWNER": "DE VIN, LLC", "USER_STREE": "995 9TH ST BLDG 201 RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "De Vin, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825752 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367139, 37.824294 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15973", "USER_OWNER": "SOL ROUGE LLC", "USER_OPERA": "SOL ROUGE", "USER_STREE": "200 CALIFORNIA AVE BLDG 180 N", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Sol Rouge Llc", "Oper_cln": "Sol Rouge" }, "geometry": { "type": "Point", "coordinates": [ -122.369285, 37.818599 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.816870 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21050", "USER_OWNER": "TANK WINES LLC", "USER_OPERA": "TANK WINES", "USER_STREE": "18 DORE ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94117, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Tank Wines Llc", "Oper_cln": "Tank Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.413530, 37.774107 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21516", "USER_OWNER": "WEBSTER GRANGER MARQUEZ", "USER_OPERA": "PEDRO GOMEZ INDUSTRIES", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Webster Granger Marquez", "Oper_cln": "Pedro Gomez Industries" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17487", "USER_OWNER": "WAIT CELLARS, LLC", "USER_OPERA": "WAIT CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Wait Cellars, Llc", "Oper_cln": "Wait Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17377", "USER_OWNER": "ALCHEMIST CELLARS LLC", "USER_OPERA": "ALCHEMIST CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Alchemist Cellars Llc", "Oper_cln": "Alchemist Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396836, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21396", "USER_OWNER": "KYLE ROEMER AND SAMANTHA ROEMER", "USER_OPERA": "NICHOLAS & RAE WINERY", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Kyle Roemer And Samantha Roemer", "Oper_cln": "Nicholas & Rae Winery" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17398", "USER_OWNER": "MICHAEL JAMES WINES, INC.", "USER_OPERA": "MICHAEL JAMES WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Michael James Wines, Inc.", "Oper_cln": "Michael James Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21270", "USER_OWNER": "HARDBALL CELLARS INC.", "USER_OPERA": "HARDBALL CELLARS", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hardball Cellars Inc.", "Oper_cln": "Hardball Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17609", "USER_OWNER": "SEAMUS WINES, LLC", "USER_OPERA": "SEAMUS WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seamus Wines, Llc", "Oper_cln": "Seamus Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15734", "USER_OWNER": "CARL E. & SHARON H. SUTTON", "USER_OPERA": "SUTTON CELLARS", "USER_STREE": "601 22ND ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Carl E. & Sharon H. Sutton", "Oper_cln": "Sutton Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757076 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21912", "USER_OWNER": "PHILIP C. BOWERS", "USER_OPERA": "CB WINE CELLARS", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Philip C. Bowers", "Oper_cln": "Cb Wine Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17319", "USER_OWNER": "ERISTAVI WINERY LLC", "USER_STREE": "1300 POTRERO AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Eristavi Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.751138 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21933", "USER_OWNER": "PHILIP CUADRA", "USER_OPERA": "HIGHLAWN WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Philip Cuadra", "Oper_cln": "Highlawn Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21705", "USER_OWNER": "CATHERINE COCHRANE, COURTNEY COCHRANE, AND SEAN COCHRANE", "USER_OPERA": "RYAN COCHRANE WINES", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Catherine Cochrane, Courtney Cochrane, And Sean Cochrane", "Oper_cln": "Ryan Cochrane Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740551 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23922", "USER_OWNER": "OTTAVINO WINES LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Ottavino Wines Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23463", "USER_OWNER": "LES AMERICAINES LLC", "USER_OPERA": "CLAIRE HILL WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Les Americaines Llc", "Oper_cln": "Claire Hill Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22247", "USER_OWNER": "CJM WINE GROUP LLC", "USER_OPERA": "FALLON PLACE WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cjm Wine Group Llc", "Oper_cln": "Fallon Place Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24286", "USER_OWNER": "OUROBOROS WINES LLC", "USER_OPERA": "OUROBOROS WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Ouroboros Wines Llc", "Oper_cln": "Ouroboros Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15292", "USER_OWNER": "BRYAN RULISON HARRINGTON", "USER_OPERA": "HARRINGTON WINES", "USER_STREE": "1559 CUSTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Bryan Rulison Harrington", "Oper_cln": "Harrington Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.745675 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21066", "USER_OWNER": "THE SAN FRANCISCO MEAD COMPANY, LLC", "USER_OPERA": "THE SAN FRANCISCO MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "USA", "Owner_cln": "The San Francisco Mead Company, Llc", "Oper_cln": "The San Francisco Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.726771 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382674, 37.726771 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 330, "y": 771 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21971", "USER_OWNER": "SEVEN HILL LLC", "USER_STREE": "28740 INWOOD RD", "USER_CITY": "SHINGLETOWN", "USER_STATE": "CA", "USER_ZIP": 96088, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seven Hill Llc" }, "geometry": { "type": "Point", "coordinates": [ -121.982489, 40.511254 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 331, "y": 792 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.721478, 37.679371 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 11, "x": 421, "y": 806 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.940261, 35.687801 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 639, "y": 1547 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765728, 40.246532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 639, "y": 1546 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17110", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "16370 DYERVILLE LOOP RD BLDG 201,", "USER_CITY": "MYERS FLAT", "USER_STATE": "CA", "USER_ZIP": 95554, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -123.765728, 40.246532 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1585 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23988", "USER_OWNER": "47 HILLS BREWING COMPANY, LLC", "USER_OPERA": "47 HILLS BREWING COMPANY", "USER_STREE": "137 S LINDEN AVE", "USER_CITY": "SOUTH SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94080, "USER_COUNT": "SAN MATEO", "Owner_cln": "47 Hills Brewing Company, Llc", "Oper_cln": "47 Hills Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.413616, 37.644260 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1583 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21050", "USER_OWNER": "TANK WINES LLC", "USER_OPERA": "TANK WINES", "USER_STREE": "18 DORE ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94117, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Tank Wines Llc", "Oper_cln": "Tank Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.413552, 37.774090 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21846", "USER_OWNER": "COSENZA CELLARS LLC", "USER_STREE": "5361 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cosenza Cellars Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396150, 37.777431 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21516", "USER_OWNER": "WEBSTER GRANGER MARQUEZ", "USER_OPERA": "PEDRO GOMEZ INDUSTRIES", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Webster Granger Marquez", "Oper_cln": "Pedro Gomez Industries" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17487", "USER_OWNER": "WAIT CELLARS, LLC", "USER_OPERA": "WAIT CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Wait Cellars, Llc", "Oper_cln": "Wait Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17377", "USER_OWNER": "ALCHEMIST CELLARS LLC", "USER_OPERA": "ALCHEMIST CELLARS", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Alchemist Cellars Llc", "Oper_cln": "Alchemist Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21120", "USER_OWNER": "VOLEURS DE VIN, LLC", "USER_OPERA": "VOLEURS DE VIN", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Voleurs De Vin, Llc", "Oper_cln": "Voleurs De Vin" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17212", "USER_OWNER": "CITY VINTNERS SAN FRANCISCO WINERY LLC", "USER_STREE": "53 BLUXOME ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "City Vintners San Francisco Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.396815, 37.776481 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21396", "USER_OWNER": "KYLE ROEMER AND SAMANTHA ROEMER", "USER_OPERA": "NICHOLAS & RAE WINERY", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Kyle Roemer And Samantha Roemer", "Oper_cln": "Nicholas & Rae Winery" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17398", "USER_OWNER": "MICHAEL JAMES WINES, INC.", "USER_OPERA": "MICHAEL JAMES WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Michael James Wines, Inc.", "Oper_cln": "Michael James Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17354", "USER_OWNER": "PUG WINE, LLC", "USER_OPERA": "PUG WINE", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pug Wine, Llc", "Oper_cln": "Pug Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21880", "USER_OWNER": "SMASHING GRAPES, LLC", "USER_OPERA": "TIMARK WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Smashing Grapes, Llc", "Oper_cln": "Timark Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22659", "USER_OWNER": "HACKBERRY HILL CELLARS, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hackberry Hill Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21270", "USER_OWNER": "HARDBALL CELLARS INC.", "USER_OPERA": "HARDBALL CELLARS", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hardball Cellars Inc.", "Oper_cln": "Hardball Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17609", "USER_OWNER": "SEAMUS WINES, LLC", "USER_OPERA": "SEAMUS WINES", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seamus Wines, Llc", "Oper_cln": "Seamus Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21023", "USER_OWNER": "ARAN O. HEALY AND DAVID G. GREGA", "USER_OPERA": "CARLOTTA CELLARS", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Aran O. Healy And David G. Grega", "Oper_cln": "Carlotta Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21253", "USER_OWNER": "WINEDOCTORS, LLC", "USER_STREE": "2455 3RD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Winedoctors, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21217", "USER_OWNER": "LOOS FAMILY WINERY, LLC", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Loos Family Winery, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22655", "USER_OWNER": "BRAZEN VENTURES LLC", "USER_OPERA": "BRAZEN VENTURES", "USER_STREE": "2455 THIRD ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISO", "Owner_cln": "Brazen Ventures Llc", "Oper_cln": "Brazen Ventures" }, "geometry": { "type": "Point", "coordinates": [ -122.387910, 37.759248 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15734", "USER_OWNER": "CARL E. & SHARON H. SUTTON", "USER_OPERA": "SUTTON CELLARS", "USER_STREE": "601 22ND ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Carl E. & Sharon H. Sutton", "Oper_cln": "Sutton Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.387695, 37.757076 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21912", "USER_OWNER": "PHILIP C. BOWERS", "USER_OPERA": "CB WINE CELLARS", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "Owner_cln": "Philip C. Bowers", "Oper_cln": "Cb Wine Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21743", "USER_OWNER": "FORTUNATUS, LLC", "USER_OPERA": "BRAVIUM", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Fortunatus, Llc", "Oper_cln": "Bravium" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17719", "USER_OWNER": "CHRISTOPHER VON HOLT AND PAMELA VON HOLT", "USER_OPERA": "VON HOLT WINES", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Christopher Von Holt And Pamela Von Holt", "Oper_cln": "Von Holt Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17424", "USER_OWNER": "FURTHERMORE, LLC", "USER_OPERA": "FURTHERMORE PINOT NOIR", "USER_STREE": "1225 MINNESOTA ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94107, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Furthermore, Llc", "Oper_cln": "Furthermore Pinot Noir" }, "geometry": { "type": "Point", "coordinates": [ -122.389455, 37.754939 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17319", "USER_OWNER": "ERISTAVI WINERY LLC", "USER_STREE": "1300 POTRERO AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Eristavi Winery Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.406449, 37.751121 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21933", "USER_OWNER": "PHILIP CUADRA", "USER_OPERA": "HIGHLAWN WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Philip Cuadra", "Oper_cln": "Highlawn Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740568 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-3592", "USER_OWNER": "AUGUST WEST WINES, LLC", "USER_OPERA": "AUGUST WEST", "USER_STREE": "540 BARNEVELD AVE SUITES K A", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "August West Wines, Llc", "Oper_cln": "August West" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740568 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21774", "USER_OWNER": "HERSLY WINES LLC", "USER_OPERA": "HERSLY WINES", "USER_STREE": "540 BARNEVELD AVE STE K, L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hersly Wines Llc", "Oper_cln": "Hersly Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740568 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22069", "USER_OWNER": "RUSSE WINE PARTNERS, LLC", "USER_OPERA": "MONTAGNE RUSSE", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Russe Wine Partners, Llc", "Oper_cln": "Montagne Russe" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740568 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21705", "USER_OWNER": "CATHERINE COCHRANE, COURTNEY COCHRANE, AND SEAN COCHRANE", "USER_OPERA": "RYAN COCHRANE WINES", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Catherine Cochrane, Courtney Cochrane, And Sean Cochrane", "Oper_cln": "Ryan Cochrane Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740568 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21034", "USER_OWNER": "EDWARD S. KURTZMAN", "USER_OPERA": "SANDLER WINE COMPANY", "USER_STREE": "540 BARNEVELD AVE STE K AND L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Edward S. Kurtzman", "Oper_cln": "Sandler Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740568 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22040", "USER_OWNER": "THEOPOLIS ENTERPRISES, LLC", "USER_OPERA": "THEOPOLIS VINEYARDS", "USER_STREE": "540 BARNEVELD AVE STE K & L", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO COUNTY", "Owner_cln": "Theopolis Enterprises, Llc", "Oper_cln": "Theopolis Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.404604, 37.740568 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23518", "USER_OWNER": "BAREBOTTLE BREWING COMPANY, INC.", "USER_OPERA": "BAREBOTTLE BREWING COMPANY", "USER_STREE": "1525 CORTLAND AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94110, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barebottle Brewing Company, Inc.", "Oper_cln": "Barebottle Brewing Company" }, "geometry": { "type": "Point", "coordinates": [ -122.409067, 37.740076 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23922", "USER_OWNER": "OTTAVINO WINES LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "Owner_cln": "Ottavino Wines Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23463", "USER_OWNER": "LES AMERICAINES LLC", "USER_OPERA": "CLAIRE HILL WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Les Americaines Llc", "Oper_cln": "Claire Hill Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17327", "USER_OWNER": "WAITS-MAST FAMILY CELLARS, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Waits-mast Family Cellars, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22193", "USER_OWNER": "URBAN CELLARS LLC", "USER_OPERA": "URBAN CELLARS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Urban Cellars Llc", "Oper_cln": "Urban Cellars" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22454", "USER_OWNER": "ESS EFF WINES, LLC", "USER_OPERA": "ESS EFF WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCCO", "Owner_cln": "Ess Eff Wines, Llc", "Oper_cln": "Ess Eff Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23055", "USER_OWNER": "MANSFIELD-DUNNE WINES, LLC", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mansfield-dunne Wines, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22247", "USER_OWNER": "CJM WINE GROUP LLC", "USER_OPERA": "FALLON PLACE WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Cjm Wine Group Llc", "Oper_cln": "Fallon Place Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22595", "USER_OWNER": "JOHN DAVID LOUIS BRY", "USER_OPERA": "PERFUSION VINEYARD", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "John David Louis Bry", "Oper_cln": "Perfusion Vineyard" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24254", "USER_OWNER": "DEMEO VINEYARDS INC.", "USER_OPERA": "DEMEO VINEYARDS", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Demeo Vineyards Inc.", "Oper_cln": "Demeo Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17490", "USER_OWNER": "33RD STREET CELLARS, LLC", "USER_OPERA": "CELLARS 33", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "33rd Street Cellars, Llc", "Oper_cln": "Cellars 33" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24286", "USER_OWNER": "OUROBOROS WINES LLC", "USER_OPERA": "OUROBOROS WINES", "USER_STREE": "495 BARNEVELD AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Ouroboros Wines Llc", "Oper_cln": "Ouroboros Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.403402, 37.740381 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15292", "USER_OWNER": "BRYAN RULISON HARRINGTON", "USER_OPERA": "HARRINGTON WINES", "USER_STREE": "1559 CUSTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Bryan Rulison Harrington", "Oper_cln": "Harrington Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.390742, 37.745658 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15425", "USER_OWNER": "BARBARA J. GRATTA", "USER_OPERA": "GRATTA WINES", "USER_STREE": "1469 HUDSON AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Barbara J. Gratta", "Oper_cln": "Gratta Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.385893, 37.738464 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21066", "USER_OWNER": "THE SAN FRANCISCO MEAD COMPANY, LLC", "USER_OPERA": "THE SAN FRANCISCO MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "USA", "Owner_cln": "The San Francisco Mead Company, Llc", "Oper_cln": "The San Francisco Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382696, 37.726788 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21765", "USER_OWNER": "MAGIC BAG MEADERY LLC", "USER_OPERA": "MAGIC BAG MEADERY", "USER_STREE": "1180 SHAFTER AVE", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94124, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Magic Bag Meadery Llc", "Oper_cln": "Magic Bag Meadery" }, "geometry": { "type": "Point", "coordinates": [ -122.382696, 37.726788 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 655, "y": 1582 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15779", "USER_OWNER": "KENDRIC VINEYARDS, LLC", "USER_OPERA": "KENDRIC VINEYARDS", "USER_STREE": "401 13TH ST BUILDING 3", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Kendric Vineyards, Llc", "Oper_cln": "Kendric Vineyards" }, "geometry": { "type": "Point", "coordinates": [ -122.373834, 37.827633 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17255", "USER_OWNER": "MORNINGWOOD VINEYARDS AND WINERY, INC.", "USER_STREE": "NOT PROVIDED", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 0, "USER_COUNT": "Geocoded_city_Center", "Owner_cln": "Morningwood Vineyards And Winery, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.372975, 37.824565 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16651", "USER_OWNER": "PB WINES, INC.", "USER_STREE": "1080 AVENUE M UNIT C", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Pb Wines, Inc." }, "geometry": { "type": "Point", "coordinates": [ -122.368834, 37.829141 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24229", "USER_OWNER": "WILLIAM LANE WINE COMPANY LLC", "USER_OPERA": "WILLIAM LANE WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201/RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94103, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "William Lane Wine Company Llc", "Oper_cln": "William Lane Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825769 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17548", "USER_OWNER": "HDC WINE COMPANY LLC", "USER_OPERA": "HDC WINE COMPANY", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Hdc Wine Company Llc", "Oper_cln": "Hdc Wine Company" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825769 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24253", "USER_OWNER": "MAYEAUX GRAPE CLINIC LLC", "USER_OPERA": "STAGIAIRE WINE", "USER_STREE": "995 9TH ST BLDG 201 RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Mayeaux Grape Clinic Llc", "Oper_cln": "Stagiaire Wine" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825769 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21125", "USER_OWNER": "PASSAGGIO WINES LLC", "USER_OPERA": "PASSAGGIO WINES", "USER_STREE": "995 9TH ST BLDG 201", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Passaggio Wines Llc", "Oper_cln": "Passaggio Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825769 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17549", "USER_OWNER": "MORGAN FAMILY WINES LLC", "USER_OPERA": "MORGAN FAMILY WINES", "USER_STREE": "995 9TH ST BLDG 201,", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Morgan Family Wines Llc", "Oper_cln": "Morgan Family Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825769 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17516", "USER_OWNER": "CASA NO COMPRENDE, INC.", "USER_OPERA": "TREASURE ISLAND WINES", "USER_STREE": "995 NINTH", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Casa No Comprende, Inc.", "Oper_cln": "Treasure Island Wines" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825769 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-24193", "USER_OWNER": "DE VIN, LLC", "USER_STREE": "995 9TH ST BLDG 201 RM 104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "De Vin, Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825769 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-23993", "USER_OWNER": "JUST ENOUGH WINES LLC", "USER_STREE": "995 9TH ST UNIT 201 RM104", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Just Enough Wines Llc" }, "geometry": { "type": "Point", "coordinates": [ -122.368984, 37.825769 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-16641", "USER_OWNER": "YERBA BUENA BEVERAGE, LLC", "USER_OPERA": "TREASURE ISLAND BRANDS", "USER_STREE": "750 6TH ST", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Yerba Buena Beverage, Llc", "Oper_cln": "Treasure Island Brands" }, "geometry": { "type": "Point", "coordinates": [ -122.367139, 37.824311 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-15973", "USER_OWNER": "SOL ROUGE LLC", "USER_OPERA": "SOL ROUGE", "USER_STREE": "200 CALIFORNIA AVE BLDG 180 N", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Sol Rouge Llc", "Oper_cln": "Sol Rouge" }, "geometry": { "type": "Point", "coordinates": [ -122.369285, 37.818582 ] } } +, +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-22828", "USER_OWNER": "SURFACE AREA, LLC", "USER_OPERA": "WOODS BEER CO.", "USER_STREE": "422 CLIPPER COVE WAY", "USER_CITY": "SAN FRANCISCO", "USER_STATE": "CA", "USER_ZIP": 94130, "Owner_cln": "Surface Area, Llc", "Oper_cln": "Woods Beer Co." }, "geometry": { "type": "Point", "coordinates": [ -122.369843, 37.816870 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 660, "y": 1543 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-21971", "USER_OWNER": "SEVEN HILL LLC", "USER_STREE": "28740 INWOOD RD", "USER_CITY": "SHINGLETOWN", "USER_STATE": "CA", "USER_ZIP": 96088, "USER_COUNT": "SAN FRANCISCO", "Owner_cln": "Seven Hill Llc" }, "geometry": { "type": "Point", "coordinates": [ -121.982489, 40.511238 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 663, "y": 1584 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "CA-W-17266", "USER_OWNER": "DAN BALDWIN", "USER_OPERA": "THE SAN FRANCISCO BAY WINERY", "USER_STREE": "2029 RESEARCH DR", "USER_CITY": "LIVERMORE", "USER_STATE": "CA", "USER_ZIP": 94550, "USER_COUNT": "ALAMEDA", "Owner_cln": "Dan Baldwin", "Oper_cln": "The San Francisco Bay Winery" }, "geometry": { "type": "Point", "coordinates": [ -121.721478, 37.679388 ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 12, "x": 842, "y": 1612 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "USER_PERMI": "NM-W-21035", "USER_OWNER": "DH WINERY - 139 WSF, LLC", "USER_STREE": "139 W SAN FRANCISCO ST", "USER_CITY": "SANTA FE", "USER_STATE": "NM", "USER_ZIP": 87501, "USER_COUNT": "SANTA FE", "Owner_cln": "Dh Winery - 139 Wsf, Llc" }, "geometry": { "type": "Point", "coordinates": [ -105.940261, 35.687801 ] } } +] } +] } +] } diff --git a/tests/wraparound2/out/-z0_--detect-longitude-wraparound.json b/tests/wraparound2/out/-z0_--detect-longitude-wraparound.json index 23954df24..b444133b6 100644 --- a/tests/wraparound2/out/-z0_--detect-longitude-wraparound.json +++ b/tests/wraparound2/out/-z0_--detect-longitude-wraparound.json @@ -1,5 +1,5 @@ { "type": "FeatureCollection", "properties": { -"antimeridian_adjusted_bounds": "-180.000000,12.583700,179.688000,85.027900", +"antimeridian_adjusted_bounds": "-180.000000,12.583700,179.688000,85.051129", "bounds": "-180.000000,12.583700,180.000000,85.051129", "center": "0.000000,12.583700,0", "description": "tests/wraparound2/out/-z0_--detect-longitude-wraparound.json.check.mbtiles", diff --git a/text.cpp b/text.cpp index 88d18979a..629000d8e 100644 --- a/text.cpp +++ b/text.cpp @@ -325,3 +325,33 @@ unsigned long long bit_reverse(unsigned long long v) { v = ((v & 0x5555555555555555) << 1) | ((v & 0xAAAAAAAAAAAAAAAA) >> 1); return v; } + +std::string truncate_string(std::string const &s, size_t len) { + if (s.length() <= len) { + return s; + } + + // find the initial byte of a UTF-8 character + ssize_t i; + for (i = len; i > 0; i--) { + if ((s[i] & 0x80) == 0 || (s[i] & 0xC0) == 0xC0) { + break; + } + } + + return s.substr(0, i); +} + +bool starts_with(std::string const &s, std::string const &prefix) { + if (s.size() < prefix.size()) { + return false; + } + + for (size_t i = 0; i < prefix.size(); i++) { + if (s[i] != prefix[i]) { + return false; + } + } + + return true; +} diff --git a/text.hpp b/text.hpp index 7d97ff7d9..c9a87da67 100644 --- a/text.hpp +++ b/text.hpp @@ -14,5 +14,7 @@ unsigned long long fnv1a(std::string const &s); unsigned long long fnv1a(const char *s, char additional); unsigned long long fnv1a(size_t size, void *p); unsigned long long bit_reverse(unsigned long long v); +std::string truncate_string(std::string const &s, size_t len); +bool starts_with(std::string const &s, std::string const &prefix); #endif diff --git a/tile-join.cpp b/tile-join.cpp index be33a7e44..6d8d25238 100644 --- a/tile-join.cpp +++ b/tile-join.cpp @@ -64,12 +64,12 @@ bool progress_time() { } struct stats { - int minzoom; - int maxzoom; - double midlat, midlon; - double minlat, minlon, maxlat, maxlon; - double minlat2, minlon2, maxlat2, maxlon2; - std::vector strategies; + int minzoom = 0; + int maxzoom = 0; + double midlat = 0, midlon = 0; + double minlat = 0, minlon = 0, maxlat = 0, maxlon = 0; + double minlat2 = 0, minlon2 = 0, maxlat2 = 0, maxlon2 = 0; + std::vector strategies{}; }; void append_tile(std::string message, int z, unsigned x, unsigned y, std::map &layermap, std::vector &header, std::map> &mapping, std::set &exclude, std::set &include, std::set &keep_layers, std::set &remove_layers, int ifmatched, mvt_tile &outtile, json_object *filter) { @@ -704,7 +704,20 @@ struct tileset_reader { } if (source.layers.size() != 0) { - std::string ret = overzoom(source, parent_tile.z, parent_tile.x, parent_tile.y, tile.z, tile.x, tile.y, -1, buffer, std::set(), false, &next_overzoomed_tiles, false, NULL, false, std::unordered_map(), unidecode_data); + std::vector tv; + source_tile t; + t.tile = std::move(source); + t.z = parent_tile.z; + t.x = parent_tile.x; + t.y = parent_tile.y; + tv.push_back(std::move(t)); + + std::string ret = overzoom(tv, tile.z, tile.x, tile.y, -1, buffer, + std::set(), std::set(), std::vector(), + false, &next_overzoomed_tiles, false, NULL, false, + std::unordered_map(), unidecode_data, 0, 0, + std::vector(), "", "", SIZE_MAX, + std::vector()); return ret; } @@ -771,7 +784,7 @@ void *join_worker(void *v) { } if (!pk && compressed.size() > 500000) { - fprintf(stderr, "Tile %lld/%lld/%lld size is %lld, >500000. Skipping this tile\n.", ai->first.z, ai->first.x, ai->first.y, (long long) compressed.size()); + fprintf(stderr, "Tile %lld/%lld/%lld size is %lld, >500000. Skipping this tile.\n", ai->first.z, ai->first.x, ai->first.y, (long long) compressed.size()); } else { a->outputs.insert(std::pair(ai->first, compressed)); } @@ -869,6 +882,8 @@ void handle_strategies(const unsigned char *s, std::vector *st) { (*st)[i].dropped_as_needed += v->value.number.number; } else if (strcmp(k->value.string.string, "coalesced_as_needed") == 0) { (*st)[i].coalesced_as_needed += v->value.number.number; + } else if (strcmp(k->value.string.string, "truncated_zooms") == 0) { + (*st)[i].truncated_zooms += v->value.number.number; } else if (strcmp(k->value.string.string, "detail_reduced") == 0) { (*st)[i].detail_reduced += v->value.number.number; } else if (strcmp(k->value.string.string, "tiny_polygons") == 0) { @@ -1465,7 +1480,6 @@ int main(int argc, char **argv) { } struct stats st; - memset(&st, 0, sizeof(st)); st.minzoom = st.minlat = st.minlon = st.minlat2 = st.minlon2 = INT_MAX; st.maxzoom = st.maxlat = st.maxlon = st.maxlat2 = st.maxlon2 = INT_MIN; diff --git a/tile.cpp b/tile.cpp index 6e6899d22..108da5347 100644 --- a/tile.cpp +++ b/tile.cpp @@ -66,6 +66,7 @@ extern "C" { pthread_mutex_t db_lock = PTHREAD_MUTEX_INITIALIZER; pthread_mutex_t var_lock = PTHREAD_MUTEX_INITIALIZER; +pthread_mutex_t task_lock = PTHREAD_MUTEX_INITIALIZER; // convert serial feature geometry (drawvec) to output tile geometry (mvt_geometry) static std::vector to_feature(drawvec const &geom) { @@ -142,9 +143,9 @@ static int coalcmp(const void *v1, const void *v2) { } for (size_t i = 0; i < c1->full_keys.size(); i++) { - if (c1->full_keys[i] < c2->full_keys[i]) { + if (*c1->full_keys[i] < *c2->full_keys[i]) { return -1; - } else if (c1->full_keys[i] > c2->full_keys[i]) { + } else if (*c1->full_keys[i] > *c2->full_keys[i]) { return 1; } @@ -301,7 +302,7 @@ static mvt_value find_attribute_value(const serial_feature *c1, std::string cons } for (size_t i = 0; i < c1->full_keys.size(); i++) { - if (c1->full_keys[i] == key) { + if (*c1->full_keys[i] == key) { return stringified_to_mvt_value(c1->full_values[i].type, c1->full_values[i].s.c_str(), c1->tile_stringpool); } } @@ -383,7 +384,7 @@ static std::vector> assemble_multiplier_clusters(std bool is_cluster_start = false; for (size_t i = 0; i < feature.full_keys.size(); i++) { - if (feature.full_keys[i] == "tippecanoe:retain_points_multiplier_first") { + if (*feature.full_keys[i] == "tippecanoe:retain_points_multiplier_first") { is_cluster_start = true; break; } @@ -411,7 +412,7 @@ static std::vector disassemble_multiplier_clusters(std::vector disassemble_multiplier_clusters(std::vector *geompos, compressor *geomfile[], const char *fname, int child_shards, int max_zoom_increment, int segment, unsigned *initial_x, unsigned *initial_y) { +static void rewrite(serial_feature const &osf, int z, int nextzoom, int maxzoom, unsigned tx, unsigned ty, int buffer, std::atomic within[], std::atomic *geompos, long long start_geompos[], compressor *geomfile[], const char *fname, int child_shards, int max_zoom_increment, int segment, unsigned *initial_x, unsigned *initial_y) { if (osf.geometry.size() > 0 && (nextzoom <= maxzoom || additional[A_EXTEND_ZOOMS] || extend_zooms_max > 0)) { int xo, yo; int span = 1 << (nextzoom - z); @@ -508,11 +509,15 @@ static void rewrite(serial_feature const &osf, int z, int nextzoom, int maxzoom, { if (!within[j]) { + within[j] = true; + start_geompos[j] = geompos[j]; // no competition between threads + + long long estimated_complexity = 0; // placeholder, to be filled in later + fwrite_check(&estimated_complexity, sizeof(estimated_complexity), 1, geomfile[j]->fp, &geompos[j], fname); serialize_int(geomfile[j]->fp, nextzoom, &geompos[j], fname); serialize_uint(geomfile[j]->fp, tx * span + xo, &geompos[j], fname); serialize_uint(geomfile[j]->fp, ty * span + yo, &geompos[j], fname); geomfile[j]->begin(); - within[j] = 1; } serial_feature sf = osf; @@ -532,10 +537,12 @@ struct simplification_worker_arg { std::vector *features = NULL; int task = 0; int tasks = 0; + bool trying_to_stop_early = false; drawvec *shared_nodes; node *shared_nodes_map; size_t nodepos; + std::string const *shared_nodes_bloom; }; // If a polygon has collapsed away to nothing during polygon cleaning, @@ -585,7 +592,7 @@ static drawvec revive_polygon(drawvec &geom, double area, int z, int detail) { // This simplifies the geometry of one feature. It is generally called from the feature_simplification_worker // but is broken out here so that it can be called from earlier in write_tile if coalesced geometries build up // too much in memory. -static double simplify_feature(serial_feature *p, drawvec const &shared_nodes, node *shared_nodes_map, size_t nodepos) { +static double simplify_feature(serial_feature *p, drawvec const &shared_nodes, node *shared_nodes_map, size_t nodepos, std::string const &shared_nodes_bloom) { drawvec geom = p->geometry; signed char t = p->t; int z = p->z; @@ -632,7 +639,14 @@ static double simplify_feature(serial_feature *p, drawvec const &shared_nodes, n } // continues to simplify to line_detail even if we have extra detail - drawvec ngeom = simplify_lines(geom, z, p->tx, p->ty, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), p->simplification, t == VT_POLYGON ? 4 : 0, shared_nodes, shared_nodes_map, nodepos); + drawvec ngeom = simplify_lines(geom, z, p->tx, p->ty, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), p->simplification, t == VT_POLYGON ? 4 : 0, shared_nodes, shared_nodes_map, nodepos, shared_nodes_bloom); + + if (p->coalesced && prevent[P_SIMPLIFY_SHARED_NODES]) { + // do another simplification to eliminate collinearities + // that were left behind at the former corners between + // coalesced geometries + ngeom = simplify_lines(ngeom, z, p->tx, p->ty, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), 0.1, t == VT_POLYGON ? 4 : 0, shared_nodes, NULL, 0, ""); + } if (t != VT_POLYGON || ngeom.size() >= 3) { geom = ngeom; @@ -657,7 +671,10 @@ static void *simplification_worker(void *v) { std::vector *features = a->features; for (size_t i = a->task; i < (*features).size(); i += a->tasks) { - double area = simplify_feature(&((*features)[i]), *(a->shared_nodes), a->shared_nodes_map, a->nodepos); + double area = 0; + if (!a->trying_to_stop_early) { + area = simplify_feature(&((*features)[i]), *(a->shared_nodes), a->shared_nodes_map, a->nodepos, *(a->shared_nodes_bloom)); + } signed char t = (*features)[i].t; int z = (*features)[i].z; @@ -671,18 +688,21 @@ static void *simplification_worker(void *v) { // Give Clipper a chance to try to fix it. { drawvec before = geom; - // we can try scaling up because this is now tile scale - geom = clean_or_clip_poly(geom, 0, 0, false, true); - if (additional[A_DEBUG_POLYGON]) { - check_polygon(geom); - } - if (geom.size() < 3) { - if (area > 0) { - // area is in world coordinates, calculated before scaling down - geom = revive_polygon(before, area, z, out_detail); - } else { - geom.clear(); + if (!a->trying_to_stop_early) { + // we can try scaling up because this is now tile scale + geom = clean_or_clip_poly(geom, 0, 0, false, true); + if (additional[A_DEBUG_POLYGON]) { + check_polygon(geom); + } + + if (geom.size() < 3) { + if (area > 0) { + // area is in world coordinates, calculated before scaling down + geom = revive_polygon(before, area, z, out_detail); + } else { + geom.clear(); + } } } } @@ -740,48 +760,16 @@ int manage_gap(unsigned long long index, unsigned long long *previndex, double s } // This function is called to choose the new gap threshold for --drop-densest-as-needed -// and --coalesce-densest-as-needed. The list that is passed in is the list of indices -// of features that survived the previous gap-choosing, so it first needs to calculate -// and sort the gaps between them before deciding which new gap threshold will satisfy -// the need to keep only the requested fraction of features. -static unsigned long long choose_mingap(std::vector const &indices, double f) { - unsigned long long bot = ULLONG_MAX; - unsigned long long top = 0; - - for (size_t i = 0; i < indices.size(); i++) { - if (i > 0 && indices[i] >= indices[i - 1]) { - if (indices[i] - indices[i - 1] > top) { - top = indices[i] - indices[i - 1]; - } - if (indices[i] - indices[i - 1] < bot) { - bot = indices[i] - indices[i - 1]; - } - } - } +// and --coalesce-densest-as-needed. +static unsigned long long choose_mingap(std::vector &gaps, double f, unsigned long long existing_gap) { + std::stable_sort(gaps.begin(), gaps.end()); - size_t want = indices.size() * f; - while (top - bot > 2) { - unsigned long long guess = bot / 2 + top / 2; - size_t count = 0; - unsigned long long prev = 0; - - for (size_t i = 0; i < indices.size(); i++) { - if (indices[i] - prev >= guess) { - count++; - prev = indices[i]; - } - } - - if (count > want) { - bot = guess; - } else if (count < want) { - top = guess; - } else { - return guess; - } + size_t ix = (gaps.size() - 1) * (1 - f); + while (ix + 1 < gaps.size() && gaps[ix] == existing_gap) { + ix++; } - return top; + return gaps[ix]; } // This function is called to choose the new "extent" threshold to try when a tile exceeds the @@ -846,6 +834,15 @@ static unsigned long long calculate_drop_sequence(serial_feature const &sf) { return ~out; // lowest numbered feature gets dropped first } +struct task { + int fileno = 0; + size_t todo; + + bool operator<(const struct task &o) const { + return todo < o.todo; + } +}; + // This is the block of parameters that are passed to write_tile() to read a tile // from the serialized form, do whatever needs to be done to it, and to write the // MVT-format output to the output tileset. @@ -854,7 +851,8 @@ static unsigned long long calculate_drop_sequence(serial_feature const &sf) { // by the caller to determine whether the zoom level needs to be done over with // new thresholds. struct write_tile_args { - struct task *tasks = NULL; + int threadno; + std::vector *tasks; char *global_stringpool = NULL; int min_detail = 0; sqlite3 *outdb = NULL; @@ -862,6 +860,7 @@ struct write_tile_args { int buffer = 0; const char *fname = NULL; compressor **geomfile = NULL; + std::atomic *geompos = NULL; double todo = 0; std::atomic *along = NULL; double gamma = 0; @@ -909,6 +908,9 @@ struct write_tile_args { bool compressed; node *shared_nodes_map; size_t nodepos; + std::string const *shared_nodes_bloom; + std::set const *skip_children; // what is being skipped at this zoom + std::set skip_children_out; // what will be skipped in the next zoom }; // Clips a feature's geometry to the tile bounds at the specified zoom level @@ -1010,7 +1012,7 @@ static void remove_attributes(serial_feature &sf, std::set const &e } for (ssize_t i = sf.full_keys.size() - 1; i >= 0; i--) { - std::string key = sf.full_keys[i]; + std::string key = *sf.full_keys[i]; if (exclude_attributes.count(key) > 0) { sf.full_keys.erase(sf.full_keys.begin() + i); sf.full_values.erase(sf.full_values.begin() + i); @@ -1025,10 +1027,43 @@ struct multiplier_state { std::map count; }; +static bool skip_next_feature(decompressor *geoms, std::atomic *geompos_in, bool compressed) { + long long len; + + if (geoms->deserialize_long_long(&len, geompos_in) == 0) { + fprintf(stderr, "Unexpected physical EOF in feature stream\n"); + exit(EXIT_READ); + } + if (len <= 0) { + if (compressed) { + geoms->end(geompos_in); + } + + return false; + } + + std::string s; + s.resize(len); + size_t n = geoms->fread((void *) s.c_str(), sizeof(char), s.size(), geompos_in); + if (n != s.size()) { + fprintf(stderr, "Short read (%zu for %zu) from geometry\n", n, s.size()); + exit(EXIT_READ); + } + + return true; +} + +struct next_feature_state { + unsigned long long previndex = 0; + unsigned long long prev_not_dropped_index = 0; +}; + // This function is called repeatedly from write_tile() to retrieve the next feature // from the input stream. If the stream is at an end, it returns a feature with the // geometry type set to -2. -static serial_feature next_feature(decompressor *geoms, std::atomic *geompos_in, int z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y, long long *original_features, long long *unclipped_features, int nextzoom, int maxzoom, int minzoom, int max_zoom_increment, size_t pass, std::atomic *along, long long alongminus, int buffer, int *within, compressor **geomfile, std::atomic *geompos, std::atomic *oprogress, double todo, const char *fname, int child_shards, json_object *filter, const char *global_stringpool, long long *pool_off, std::vector> *layer_unmaps, bool first_time, bool compressed, multiplier_state *multiplier_state, std::shared_ptr &tile_stringpool, std::vector const &unidecode_data) { +static serial_feature next_feature(decompressor *geoms, std::atomic *geompos_in, int z, unsigned tx, unsigned ty, unsigned *initial_x, unsigned *initial_y, long long *original_features, long long *unclipped_features, int nextzoom, int maxzoom, int minzoom, int max_zoom_increment, size_t pass, std::atomic *along, long long alongminus, int buffer, std::atomic *within, compressor **geomfile, std::atomic *geompos, long long start_geompos[], std::atomic *oprogress, double todo, const char *fname, int child_shards, json_object *filter, const char *global_stringpool, long long *pool_off, std::vector> *layer_unmaps, bool first_time, bool compressed, multiplier_state *multiplier_state, std::shared_ptr &tile_stringpool, std::vector const &unidecode_data, next_feature_state &next_feature_state, double droprate) { + double extra_multiplier_zooms = log(retain_points_multiplier) / log(droprate); + while (1) { serial_feature sf; long long len; @@ -1057,6 +1092,18 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * sf = deserialize_feature(s, z, tx, ty, initial_x, initial_y); sf.stringpool = global_stringpool + pool_off[sf.segment]; + // with fractional zoom level, so we can target a specific number + // of features to keep with retain-points-multiplier, not just the + // powers of the drop rate + // + // the shift-right is because we lose the bottom two bits of + // point coordinate precision in the calculation in serial.cpp. + // + // the fractional part should actually be scaled in an exponential + // curve instead of linear, but I can't figure out how to make it + // come out right, and this should be close enough. + double feature_minzoom = sf.feature_minzoom - (bit_reverse(sf.index >> 2) / pow(2, 64)); + size_t passes = pass + 1; double progress = floor(((((*geompos_in + *along - alongminus) / (double) todo) + pass) / passes + z) / (maxzoom + 1) * 1000) / 10; if (progress >= *oprogress + 0.1) { @@ -1072,6 +1119,27 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * (*original_features)++; + if (sf.gap == 0) { + if (sf.index != next_feature_state.previndex) { + 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); + + for (auto const &g : sf.geometry) { + long long dx = (long long) wx1 - (g.x + ox); + long long dy = (long long) wy1 - (g.y + oy); + + unsigned long long d = dx * dx + dy * dy; + if (d > sf.gap) { + sf.gap = d; + } + } + } + } + next_feature_state.previndex = sf.index; + if (clip_to_tile(sf, z, buffer)) { continue; } @@ -1084,7 +1152,7 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * if (first_time && pass == 0) { /* only write out the next zoom once, even if we retry */ if (sf.tippecanoe_maxzoom == -1 || sf.tippecanoe_maxzoom >= nextzoom) { - rewrite(sf, z, nextzoom, maxzoom, tx, ty, buffer, within, geompos, geomfile, fname, child_shards, max_zoom_increment, sf.segment, initial_x, initial_y); + rewrite(sf, z, nextzoom, maxzoom, tx, ty, buffer, within, geompos, start_geompos, geomfile, fname, child_shards, max_zoom_increment, sf.segment, initial_x, initial_y); } } @@ -1116,7 +1184,7 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * } for (size_t i = 0; i < sf.full_keys.size(); i++) { - std::string key = sf.full_keys[i]; + std::string key = *sf.full_keys[i]; mvt_value val = stringified_to_mvt_value(sf.full_values[i].type, sf.full_values[i].s.c_str(), tile_stringpool); attributes.insert(std::pair(key, val)); @@ -1169,12 +1237,15 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * sf.dropped = FEATURE_KEPT; // the first feature in each tile is always kept } - if (z >= sf.feature_minzoom || sf.dropped == FEATURE_KEPT) { + if (z >= feature_minzoom || sf.dropped == FEATURE_KEPT) { count->second = 0; sf.dropped = FEATURE_KEPT; // feature is kept - } else if (count->second + 1 < retain_points_multiplier) { + } else if (z + extra_multiplier_zooms >= feature_minzoom && count->second + 1 < retain_points_multiplier) { count->second++; sf.dropped = count->second; + } 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 { sf.dropped = FEATURE_DROPPED; } @@ -1182,6 +1253,10 @@ static serial_feature next_feature(decompressor *geoms, std::atomic * sf.dropped = FEATURE_KEPT; } + if (sf.dropped != FEATURE_DROPPED) { + next_feature_state.prev_not_dropped_index = sf.index; + } + // Remove nulls, now that the expression evaluation filter has run for (ssize_t i = (ssize_t) sf.keys.size() - 1; i >= 0; i--) { @@ -1222,9 +1297,10 @@ struct run_prefilter_args { std::atomic *along = 0; long long alongminus = 0; int buffer = 0; - int *within = NULL; + std::atomic *within = NULL; compressor **geomfile = NULL; std::atomic *geompos = NULL; + long long *start_geompos = NULL; std::atomic *oprogress = NULL; double todo = 0; const char *fname = 0; @@ -1237,6 +1313,7 @@ struct run_prefilter_args { std::vector const *unidecode_data; bool first_time = false; bool compressed = false; + double droprate = 1; }; void *run_prefilter(void *v) { @@ -1244,9 +1321,10 @@ void *run_prefilter(void *v) { json_writer state(rpa->prefilter_fp); struct multiplier_state multiplier_state; std::shared_ptr tile_stringpool = std::make_shared(); + next_feature_state next_feature_state; while (1) { - serial_feature sf = next_feature(rpa->geoms, rpa->geompos_in, rpa->z, rpa->tx, rpa->ty, rpa->initial_x, rpa->initial_y, rpa->original_features, rpa->unclipped_features, rpa->nextzoom, rpa->maxzoom, rpa->minzoom, rpa->max_zoom_increment, rpa->pass, rpa->along, rpa->alongminus, rpa->buffer, rpa->within, rpa->geomfile, rpa->geompos, rpa->oprogress, rpa->todo, rpa->fname, rpa->child_shards, rpa->filter, rpa->global_stringpool, rpa->pool_off, rpa->layer_unmaps, rpa->first_time, rpa->compressed, &multiplier_state, tile_stringpool, *(rpa->unidecode_data)); + serial_feature sf = next_feature(rpa->geoms, rpa->geompos_in, rpa->z, rpa->tx, rpa->ty, rpa->initial_x, rpa->initial_y, rpa->original_features, rpa->unclipped_features, rpa->nextzoom, rpa->maxzoom, rpa->minzoom, rpa->max_zoom_increment, rpa->pass, rpa->along, rpa->alongminus, rpa->buffer, rpa->within, rpa->geomfile, rpa->geompos, rpa->start_geompos, rpa->oprogress, rpa->todo, rpa->fname, rpa->child_shards, rpa->filter, rpa->global_stringpool, rpa->pool_off, rpa->layer_unmaps, rpa->first_time, rpa->compressed, &multiplier_state, tile_stringpool, *(rpa->unidecode_data), next_feature_state, rpa->droprate); if (sf.t < 0) { break; } @@ -1280,7 +1358,7 @@ void *run_prefilter(void *v) { decode_meta(sf, tmp_layer, tmp_feature); tmp_layer.features.push_back(tmp_feature); - layer_to_geojson(tmp_layer, 0, 0, 0, false, true, false, true, sf.index, sf.seq, sf.extent, true, state, 0); + layer_to_geojson(tmp_layer, 0, 0, 0, false, true, false, true, sf.index, sf.seq, sf.extent, true, state, 0, std::set()); } if (fclose(rpa->prefilter_fp) != 0) { @@ -1322,7 +1400,7 @@ void add_tilestats(std::string const &layername, int z, std::vectorsecond.tilestats, key, val); } -void promote_attribute(std::string const &key, serial_feature &p) { +void promote_attribute(std::string const &key, serial_feature &p, key_pool &key_pool) { if (p.need_tilestats.count(key) == 0) { p.need_tilestats.insert(key); } @@ -1336,7 +1414,7 @@ void promote_attribute(std::string const &key, serial_feature &p) { sv.s = p.stringpool + p.values[i] + 1; sv.type = p.stringpool[p.values[i]]; - p.full_keys.push_back(key); + p.full_keys.push_back(key_pool.pool(key)); p.full_values.push_back(std::move(sv)); p.keys.erase(p.keys.begin() + i); @@ -1347,10 +1425,73 @@ void promote_attribute(std::string const &key, serial_feature &p) { } } +void promote_attribute_prefix(std::string const &key, std::string const &prefixed_key, serial_feature &p, key_pool &key_pool) { + if (p.need_tilestats.count(prefixed_key) == 0) { + p.need_tilestats.insert(prefixed_key); + } + + // does the prefixed attribute already exist as a full key? + ssize_t found_as = -1; + for (size_t i = 0; i < p.full_keys.size(); i++) { + if (prefixed_key == *p.full_keys[i]) { + // yes, so we're done + return; + } + if (key == *p.full_keys[i]) { + found_as = i; + } + } + + // or did we find the source as a full key? then copy it + if (found_as >= 0) { + p.full_keys.push_back(key_pool.pool(prefixed_key)); + p.full_values.push_back(p.full_values[found_as]); + return; + } + + // does the prefix attribute exist as a reference key? + found_as = -1; + for (size_t i = 0; i < p.keys.size(); i++) { + if (strcmp(prefixed_key.c_str(), p.stringpool + p.keys[i] + 1) == 0) { + // yes, so promote it to a full key + serial_val sv; + sv.s = p.stringpool + p.values[i] + 1; + sv.type = p.stringpool[p.values[i]]; + + p.full_keys.push_back(key_pool.pool(prefixed_key)); + p.full_values.push_back(std::move(sv)); + + p.keys.erase(p.keys.begin() + i); + p.values.erase(p.values.begin() + i); + + return; + } else if (strcmp(key.c_str(), p.stringpool + p.keys[i] + 1) == 0) { + found_as = i; + } + } + + // or did we find the source as a reference key? then copy it + if (found_as >= 0) { + serial_val sv; + sv.s = p.stringpool + p.values[found_as] + 1; + sv.type = p.stringpool[p.values[found_as]]; + + p.full_keys.push_back(key_pool.pool(prefixed_key)); + p.full_values.push_back(std::move(sv)); + + return; + } + + // it does not exist, so preserve_attribute() will create it +} + // accumulate attribute values from sf onto p -void preserve_attributes(std::unordered_map const *attribute_accum, const serial_feature &sf, serial_feature &p) { +void preserve_attributes(std::unordered_map const *attribute_accum, const serial_feature &sf, serial_feature &p, key_pool &key_pool) { + std::string accumulate_numeric_colon = accumulate_numeric + ":"; + for (size_t i = 0; i < sf.keys.size(); i++) { std::string key = sf.stringpool + sf.keys[i] + 1; + int type = sf.stringpool[sf.values[i]]; auto f = attribute_accum->find(key); if (f != attribute_accum->end()) { @@ -1358,19 +1499,36 @@ void preserve_attributes(std::unordered_map const *at sv.type = sf.stringpool[sf.values[i]]; sv.s = sf.stringpool + sf.values[i] + 1; - promote_attribute(key, p); - preserve_attribute(f->second, key, sv, p.full_keys, p.full_values, p.attribute_accum_state); + promote_attribute(key, p, key_pool); + preserve_attribute(f->second, key, sv, p.full_keys, p.full_values, p.attribute_accum_state, key_pool); + } else if (type == mvt_double && accumulate_numeric.size() > 0 && !starts_with(key, accumulate_numeric_colon)) { + for (auto const &operation : numeric_operations) { + serial_val sv; + sv.type = sf.stringpool[sf.values[i]]; + sv.s = sf.stringpool + sf.values[i] + 1; + + std::string prefixed_key = accumulate_numeric + ":" + operation.first + ":" + key; + promote_attribute_prefix(key, prefixed_key, p, key_pool); + preserve_attribute(operation.second, prefixed_key, sv, p.full_keys, p.full_values, p.attribute_accum_state, key_pool); + } } } for (size_t i = 0; i < sf.full_keys.size(); i++) { - const std::string &key = sf.full_keys[i]; + const std::string key = *sf.full_keys[i]; + int type = sf.full_values[i].type; auto f = attribute_accum->find(key); if (f != attribute_accum->end()) { const serial_val &sv = sf.full_values[i]; - promote_attribute(key, p); - preserve_attribute(f->second, key, sv, p.full_keys, p.full_values, p.attribute_accum_state); + promote_attribute(key, p, key_pool); // promotes it in the target feature + preserve_attribute(f->second, key, sv, p.full_keys, p.full_values, p.attribute_accum_state, key_pool); + } else if (type == mvt_double && accumulate_numeric.size() > 0 && !starts_with(key, accumulate_numeric_colon)) { + for (auto const &operation : numeric_operations) { + std::string prefixed_key = accumulate_numeric + ":" + operation.first + ":" + key; + promote_attribute_prefix(key, prefixed_key, p, key_pool); + preserve_attribute(operation.second, prefixed_key, sf.full_values[i], p.full_keys, p.full_values, p.attribute_accum_state, key_pool); + } } } } @@ -1378,24 +1536,17 @@ void preserve_attributes(std::unordered_map const *at // This function finds the feature in `features` onto which the attributes or geometry // of a feature that is being dropped (`sf`) will be accumulated or coalesced. It // ordinarily returns the most recently-added feature from the same layer as the feature -// that is being dropped, but if there is an active multiplier, will walk multiple -// features backward so that the features being dropped will be accumulated round-robin -// onto the N features that are being kept. The caller increments the `multiplier_seq` -// mod N with each dropped feature to drive the round-robin decision. +// that is being dropped. // -bool find_feature_to_accumulate_onto(std::vector &features, serial_feature &sf, ssize_t &out, std::vector> *layer_unmaps, long long maxextent, ssize_t multiplier_seq) { +bool find_feature_to_accumulate_onto(std::vector &features, serial_feature &sf, ssize_t &out, std::vector> *layer_unmaps, long long maxextent) { for (size_t i = features.size(); i > 0; i--) { if (features[i - 1].t == sf.t) { std::string &layername1 = (*layer_unmaps)[features[i - 1].segment][features[i - 1].layer]; std::string &layername2 = (*layer_unmaps)[sf.segment][sf.layer]; if (layername1 == layername2 && features[i - 1].extent <= maxextent) { - if (multiplier_seq <= 0) { - out = i - 1; - return true; - } - - multiplier_seq--; + out = i - 1; + return true; } } } @@ -1470,18 +1621,18 @@ struct layer_features { size_t multiplier_cluster_size = 0; // The feature count of the current multiplier cluster }; -bool drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer_features &layer, serial_feature &sf, std::vector> *layer_unmaps, size_t &multiplier_seq, atomic_strategy *strategy, bool &drop_rest, std::unordered_map const *attribute_accum) { +bool drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer_features &layer, serial_feature &sf, std::vector> *layer_unmaps, strategy &strategy, bool &drop_rest, std::unordered_map const *attribute_accum, key_pool &key_pool) { ssize_t which_serial_feature; - if (find_feature_to_accumulate_onto(layer.features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + if (find_feature_to_accumulate_onto(layer.features, sf, which_serial_feature, layer_unmaps, LLONG_MAX)) { + strategy.dropped_as_needed++; if (layer.multiplier_cluster_size < (size_t) retain_points_multiplier) { // we have capacity to keep this feature as part of an existing multiplier cluster that isn't full yet // so do that instead of dropping it sf.dropped = layer.multiplier_cluster_size + 1; return false; // converted rather than dropped } else { - preserve_attributes(attribute_accum, sf, layer.features[which_serial_feature]); - strategy->dropped_as_needed++; + preserve_attributes(attribute_accum, sf, layer.features[which_serial_feature], key_pool); drop_rest = true; return true; // dropped } @@ -1490,7 +1641,13 @@ bool drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer_features return false; // did not drop because nothing could be found to accumulate attributes onto } -long long write_tile(decompressor *geoms, std::atomic *geompos_in, char *global_stringpool, int z, const unsigned tx, const unsigned ty, const int detail, int min_detail, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, compressor **geomfile, int minzoom, int maxzoom, double todo, std::atomic *along, long long alongminus, double gamma, int child_shards, long long *pool_off, unsigned *initial_x, unsigned *initial_y, std::atomic *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps, size_t tiling_seg, size_t pass, unsigned long long mingap, long long minextent, unsigned long long mindrop_sequence, const char *prefilter, const char *postfilter, json_object *filter, write_tile_args *arg, atomic_strategy *strategy, bool compressed_input, node *shared_nodes_map, size_t nodepos, std::vector const &unidecode_data) { +void skip_tile(decompressor *geoms, std::atomic *geompos_in, bool compressed_input) { + while (skip_next_feature(geoms, geompos_in, compressed_input)) { + ; + } +} + +long long write_tile(decompressor *geoms, std::atomic *geompos_in, char *global_stringpool, int z, const unsigned tx, const unsigned ty, const int detail, int min_detail, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, compressor **geomfile, std::atomic *geompos, int minzoom, int maxzoom, double todo, std::atomic *along, long long alongminus, double gamma, int child_shards, long long *pool_off, unsigned *initial_x, unsigned *initial_y, std::atomic *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps, size_t tiling_seg, size_t pass, unsigned long long mingap, long long minextent, unsigned long long mindrop_sequence, const char *prefilter, const char *postfilter, json_object *filter, write_tile_args *arg, atomic_strategy *strategy_out, bool compressed_input, node *shared_nodes_map, size_t nodepos, std::string const &shared_nodes_bloom, std::vector const &unidecode_data, long long estimated_complexity, std::set &skip_children_out) { double merge_fraction = 1; double mingap_fraction = 1; double minextent_fraction = 1; @@ -1519,11 +1676,35 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } } + // only for -K + unsigned long long cluster_mingap = ((1LL << (32 - z)) / 256 * cluster_distance) * ((1LL << (32 - z)) / 256 * cluster_distance); + + int first_detail = detail, second_detail = detail - 1; + bool trying_to_stop_early = false; + bool can_stop_early = true; + if (additional[A_VARIABLE_DEPTH_PYRAMID]) { + // If we are trying to stop early, there is an extra first pass with full+extra detail, + // and which loops if everything doesn't fit rather than trying to drop or union features. + + // empirical estimate from ne_10m_admin_0_countries, CPAD units, Cal fires. + // only try to make an overzoomable final tile if it seems like it might work + long long estimated_output_tile_size = 0.6693 * estimated_complexity - 3.36e+04; + if (estimated_output_tile_size < (long long) (0.9 * max_tile_size) && 30 - z > detail) { + first_detail = 30 - z; + second_detail = detail; + trying_to_stop_early = true; + } + } + + size_t detail_reduced = 0; bool first_time = true; // This only loops if the tile data didn't fit, in which case the detail // goes down and the progress indicator goes backward for the next try. - int line_detail; - for (line_detail = detail; line_detail >= min_detail || line_detail == detail; line_detail--, oprogress = 0) { + for (int line_detail = first_detail; + line_detail >= min_detail || line_detail == detail; + line_detail = line_detail == first_detail ? second_detail : line_detail - 1) { + oprogress = 0; + long long count = 0; double accum_area = 0; @@ -1538,7 +1719,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch std::map layers; - std::vector indices; + std::vector gaps; + size_t gaps_increment = 1; std::vector extents; size_t extents_increment = 1; std::vector drop_sequences; @@ -1557,11 +1739,16 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch size_t lead_features_count = 0; // of the tile so far size_t other_multiplier_cluster_features_count = 0; // of the tile so far - int within[child_shards]; - std::atomic geompos[child_shards]; + bool too_many_features = false; + bool too_many_bytes = false; + + key_pool key_pool; + + std::atomic within[child_shards]; + long long start_geompos[child_shards]; for (size_t i = 0; i < (size_t) child_shards; i++) { - geompos[i] = 0; - within[i] = 0; + within[i] = false; + start_geompos[i] = -1; } std::shared_ptr tile_stringpool = std::make_shared(); @@ -1626,6 +1813,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch rpa.within = within; rpa.geomfile = geomfile; rpa.geompos = geompos; + rpa.start_geompos = start_geompos; rpa.oprogress = &oprogress; rpa.todo = todo; rpa.fname = fname; @@ -1638,6 +1826,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch rpa.unidecode_data = &unidecode_data; rpa.first_time = first_time; rpa.compressed = compressed_input; + rpa.droprate = arg->droprate; // this does need to be a real thread, so we can pipe both to and from it if (pthread_create(&prefilter_writer, NULL, run_prefilter, &rpa) != 0) { @@ -1656,17 +1845,22 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch // Read features, filter them, assign them to layers struct multiplier_state multiplier_state; - size_t multiplier_seq = retain_points_multiplier - 1; - bool drop_rest = false; // are we dropping the remainder of a multiplier cluster whose first point was dropped? + bool drop_rest = false; // are we dropping the remainder of a multiplier cluster whose first point was dropped? + bool dropping_by_rate = false; // are we dropping anything by rate in this tile, or keeping it only as part of a multiplier? + + next_feature_state next_feature_state; + + strategy strategy; + strategy.detail_reduced = detail_reduced; for (size_t seq = 0;; seq++) { serial_feature sf; ssize_t which_serial_feature = -1; if (prefilter == NULL) { - sf = next_feature(geoms, geompos_in, z, tx, ty, initial_x, initial_y, &original_features, &unclipped_features, nextzoom, maxzoom, minzoom, max_zoom_increment, pass, along, alongminus, buffer, within, geomfile, geompos, &oprogress, todo, fname, child_shards, filter, global_stringpool, pool_off, layer_unmaps, first_time, compressed_input, &multiplier_state, tile_stringpool, unidecode_data); + sf = next_feature(geoms, geompos_in, z, tx, ty, initial_x, initial_y, &original_features, &unclipped_features, nextzoom, maxzoom, minzoom, max_zoom_increment, pass, along, alongminus, buffer, within, geomfile, geompos, start_geompos, &oprogress, todo, fname, child_shards, filter, global_stringpool, pool_off, layer_unmaps, first_time, compressed_input, &multiplier_state, tile_stringpool, unidecode_data, next_feature_state, arg->droprate); } else { - sf = parse_feature(prefilter_jp, z, tx, ty, layermaps, tiling_seg, layer_unmaps, postfilter != NULL); + sf = parse_feature(prefilter_jp, z, tx, ty, layermaps, tiling_seg, layer_unmaps, postfilter != NULL, key_pool); } if (sf.t < 0) { @@ -1699,29 +1893,39 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch drop_sequence = calculate_drop_sequence(sf); } + if (sf.feature_minzoom > z + 1) { + // if there is a feature whose first appearance is beyond the next zoom, + // prevent stopping early at the next zoom + dropping_by_rate = true; + } + if (sf.dropped == FEATURE_KEPT) { // this is a new multiplier cluster, so stop dropping features // that were dropped because the previous lead feature was dropped drop_rest = false; - } else if (sf.dropped != FEATURE_DROPPED) { - // Does the current multiplier cluster already have too many features? - // If so, we have to drop this one, even if it would potentially qualify - // as a secondary feature to be exposed by filtering - if (layer.multiplier_cluster_size >= (size_t) retain_points_multiplier) { - sf.dropped = FEATURE_DROPPED; + } else { + can_stop_early = false; + + if (sf.dropped != FEATURE_DROPPED && sf.dropped != FEATURE_ADDED_FOR_MULTIPLIER_DENSITY) { + // Does the current multiplier cluster already have too many features? + // (Because we are dropping dynamically, and we have already filled the + // cluster with features that were dynamically dropped from being + // primary features) + // If so, we have to drop this one, even if it would potentially qualify + // as a secondary feature to be exposed by filtering + if (layer.multiplier_cluster_size >= (size_t) retain_points_multiplier) { + sf.dropped = FEATURE_DROPPED; + } } } if (sf.dropped == FEATURE_DROPPED || drop_rest) { - multiplier_seq = (multiplier_seq + 1) % retain_points_multiplier; - - if (find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->dropped_by_rate++; + if (find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX)) { + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature], key_pool); + strategy.dropped_by_rate++; + can_stop_early = false; continue; } - } else { - multiplier_seq = retain_points_multiplier - 1; } // only the first point of a multiplier cluster can be dropped @@ -1729,27 +1933,22 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch // cluster down with it by setting drop_rest). if (sf.dropped == FEATURE_KEPT) { if (gamma > 0) { - if (manage_gap(sf.index, &previndex, scale, gamma, &gap) && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->dropped_by_gamma++; + if (manage_gap(sf.index, &previndex, scale, gamma, &gap) && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX)) { + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature], key_pool); + strategy.dropped_by_gamma++; drop_rest = true; + can_stop_early = false; continue; } } - // Cap the indices, rather than sampling them like extents (areas), - // because choose_mingap cares about the distance between *surviving* - // features, not between *original* features, so we can't just store - // gaps rather than indices to be able to downsample them fairly. - // Hopefully the first 100K features in the tile are reasonably - // representative of the other features in the tile. - const size_t MAX_INDICES = 100000; - - if (z <= cluster_maxzoom && (additional[A_CLUSTER_DENSEST_AS_NEEDED] || cluster_distance != 0)) { - if (indices.size() < MAX_INDICES) { - indices.push_back(sf.index); - } - if ((sf.index < merge_previndex || sf.index - merge_previndex < mingap) && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + if (z <= cluster_maxzoom && cluster_distance != 0) { + // This still uses merge_previndex instead of sf.gap + // because the cluster size in -K is expecting to specify + // distances between points that are subject to dot-dropping, + // rather than wanting each feature to have a consistent + // idea of density between zooms. + if ((sf.index < merge_previndex || sf.index - merge_previndex < cluster_mingap) && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX)) { features[which_serial_feature].clustered++; if (features[which_serial_feature].t == VT_POINT && @@ -1763,32 +1962,53 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch features[which_serial_feature].geometry[0].y = y / (features[which_serial_feature].clustered + 1); } - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->coalesced_as_needed++; + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature], key_pool); + strategy.coalesced_as_needed++; drop_rest = true; + can_stop_early = false; continue; } } else if (additional[A_DROP_DENSEST_AS_NEEDED]) { - if (indices.size() < MAX_INDICES) { - indices.push_back(sf.index); - } - if (sf.index - merge_previndex < mingap) { - if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, multiplier_seq, strategy, drop_rest, arg->attribute_accum)) { + add_sample_to(gaps, sf.gap, gaps_increment, seq); + if (sf.gap < mingap) { + can_stop_early = false; + if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, strategy, drop_rest, arg->attribute_accum, key_pool)) { continue; } } + } else if (z <= cluster_maxzoom && (additional[A_CLUSTER_DENSEST_AS_NEEDED])) { + // this is now just like coalesce-densest, except that instead of unioning the geometry, + // it averages the point locations + add_sample_to(gaps, sf.gap, gaps_increment, seq); + if (sf.gap < mingap && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX)) { + features[which_serial_feature].clustered++; - } else if (additional[A_COALESCE_DENSEST_AS_NEEDED]) { - if (indices.size() < MAX_INDICES) { - indices.push_back(sf.index); + if (features[which_serial_feature].t == VT_POINT && + features[which_serial_feature].geometry.size() == 1 && + sf.geometry.size() == 1) { + double x = (double) features[which_serial_feature].geometry[0].x * features[which_serial_feature].clustered; + double y = (double) features[which_serial_feature].geometry[0].y * features[which_serial_feature].clustered; + x += sf.geometry[0].x; + y += sf.geometry[0].y; + features[which_serial_feature].geometry[0].x = x / (features[which_serial_feature].clustered + 1); + features[which_serial_feature].geometry[0].y = y / (features[which_serial_feature].clustered + 1); + } + + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature], key_pool); + strategy.coalesced_as_needed++; + drop_rest = true; + continue; } - if (sf.index - merge_previndex < mingap && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + } else if (additional[A_COALESCE_DENSEST_AS_NEEDED]) { + add_sample_to(gaps, sf.gap, gaps_increment, seq); + if (sf.gap < mingap && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX)) { coalesce_geometry(features[which_serial_feature], sf); features[which_serial_feature].coalesced = true; coalesced_area += sf.extent; - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->coalesced_as_needed++; + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature], key_pool); + strategy.coalesced_as_needed++; drop_rest = true; + can_stop_early = false; continue; } } else if (additional[A_DROP_SMALLEST_AS_NEEDED]) { @@ -1796,38 +2016,40 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch // search here is for LLONG_MAX, not minextent, because we are dropping features, not coalescing them, // so we shouldn't expect to find anything small that we can related this feature to. if (minextent != 0 && sf.extent + coalesced_area <= minextent) { - if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, multiplier_seq, strategy, drop_rest, arg->attribute_accum)) { + can_stop_early = false; + if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, strategy, drop_rest, arg->attribute_accum, key_pool)) { continue; } } } else if (additional[A_COALESCE_SMALLEST_AS_NEEDED]) { add_sample_to(extents, sf.extent, extents_increment, seq); - if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, minextent, multiplier_seq)) { + if (minextent != 0 && sf.extent + coalesced_area <= minextent && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, minextent)) { coalesce_geometry(features[which_serial_feature], sf); features[which_serial_feature].coalesced = true; coalesced_area += sf.extent; - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->coalesced_as_needed++; + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature], key_pool); + strategy.coalesced_as_needed++; drop_rest = true; + can_stop_early = false; continue; } } else if (additional[A_DROP_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP]) { add_sample_to(drop_sequences, drop_sequence, drop_sequences_increment, seq); - // search here is for LLONG_MAX, not minextent, because we are dropping features, not coalescing them, - // so we shouldn't expect to find anything small that we can related this feature to. if (mindrop_sequence != 0 && drop_sequence <= mindrop_sequence) { - if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, multiplier_seq, strategy, drop_rest, arg->attribute_accum)) { + can_stop_early = false; + if (drop_feature_unless_it_can_be_added_to_a_multiplier_cluster(layer, sf, layer_unmaps, strategy, drop_rest, arg->attribute_accum, key_pool)) { continue; } } } else if (additional[A_COALESCE_FRACTION_AS_NEEDED]) { add_sample_to(drop_sequences, drop_sequence, drop_sequences_increment, seq); - if (mindrop_sequence != 0 && drop_sequence <= mindrop_sequence && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX, multiplier_seq)) { + if (mindrop_sequence != 0 && drop_sequence <= mindrop_sequence && find_feature_to_accumulate_onto(features, sf, which_serial_feature, layer_unmaps, LLONG_MAX)) { coalesce_geometry(features[which_serial_feature], sf); features[which_serial_feature].coalesced = true; - preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature]); - strategy->coalesced_as_needed++; + preserve_attributes(arg->attribute_accum, sf, features[which_serial_feature], key_pool); + strategy.coalesced_as_needed++; drop_rest = true; + can_stop_early = false; continue; } } @@ -1852,9 +2074,9 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch bool prevent_tiny = prevent[P_TINY_POLYGON_REDUCTION] || (prevent[P_TINY_POLYGON_REDUCTION_AT_MAXZOOM] && z == maxzoom); if (!prevent_tiny && !additional[A_GRID_LOW_ZOOMS]) { - sf.geometry = reduce_tiny_poly(sf.geometry, z, line_detail, &still_need_simplification_after_reduction, &simplified_away_by_reduction, &accum_area); + sf.geometry = reduce_tiny_poly(sf.geometry, z, line_detail, &still_need_simplification_after_reduction, &simplified_away_by_reduction, &accum_area, tiny_polygon_size); if (simplified_away_by_reduction) { - strategy->tiny_polygons++; + strategy.tiny_polygons++; } if (sf.geometry.size() == 0) { continue; @@ -1875,10 +2097,42 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch unsigned long long sfindex = sf.index; if (sf.geometry.size() > 0) { - if (lead_features_count > max_tile_size || (lead_features_count + other_multiplier_cluster_features_count > max_tile_features && !prevent[P_FEATURE_LIMIT])) { + // There are two adjustments that we need to make + // when determining if we have hit the feature count + // or byte size limit: + // + // The max_tile_size and max_tile_features are inflated + // to account for the number of multiplier clusters features + // we are carrying around in addition to their lead features. + + size_t adjusted_max_tile_size = max_tile_size; + if (lead_features_count > 0) { + adjusted_max_tile_size = adjusted_max_tile_size * (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; + } + size_t adjusted_max_tile_features = max_tile_features; + if (lead_features_count > 0) { + adjusted_max_tile_features = adjusted_max_tile_features * (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; + } + + // The number of features in the tile, meanwhile, is inflated + // to account for the number of features that we have skipped over + // because we were already over the limit, in addition to those + // that we have actually added to the layer (as either lead or + // multiplier features). + + size_t adjusted_feature_count = lead_features_count + other_multiplier_cluster_features_count; + if (kept > 0) { + adjusted_feature_count = adjusted_feature_count * (skipped + kept) / kept; + } + + if (too_many_bytes || (adjusted_feature_count > adjusted_max_tile_size && !prevent[P_KILOBYTE_LIMIT])) { // Even being maximally conservative, each feature is still going to be // at least one byte in the output tile, so this can't possibly work. skipped++; + too_many_bytes = true; + } else if (too_many_features || ((adjusted_feature_count > adjusted_max_tile_features) && !prevent[P_FEATURE_LIMIT])) { + skipped++; + too_many_features = true; } else { kept++; @@ -1892,13 +2146,15 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } if (sf.dropped == FEATURE_KEPT && retain_points_multiplier > 1) { - sf.full_keys.push_back("tippecanoe:retain_points_multiplier_first"); + sf.full_keys.push_back(key_pool.pool("tippecanoe:retain_points_multiplier_first")); sf.full_values.emplace_back(mvt_bool, "true"); } if (sf.dropped == FEATURE_KEPT) { layer.multiplier_cluster_size = 1; lead_features_count++; + } else if (sf.dropped == FEATURE_ADDED_FOR_MULTIPLIER_DENSITY) { + other_multiplier_cluster_features_count++; } else { layer.multiplier_cluster_size++; other_multiplier_cluster_features_count++; @@ -1941,7 +2197,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch // may not be very effective for reducing memory usage. for (; simplified_geometry_through < features.size(); simplified_geometry_through++) { - simplify_feature(&features[simplified_geometry_through], shared_nodes, shared_nodes_map, nodepos); + simplify_feature(&features[simplified_geometry_through], shared_nodes, shared_nodes_map, nodepos, shared_nodes_bloom); if (features[simplified_geometry_through].t == VT_POLYGON) { drawvec to_clean = features[simplified_geometry_through].geometry; @@ -1990,18 +2246,37 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch for (int j = 0; j < child_shards; j++) { if (within[j]) { + long long estimated_complexity_out = geompos[j] - start_geompos[j]; + + if (dropping_by_rate) { + // large enough to make it not try to stop early + estimated_complexity_out = 1LL << 32; + } + geomfile[j]->serialize_long_long(0, &geompos[j], fname); // EOF geomfile[j]->end(&geompos[j], fname); - within[j] = 0; + within[j] = false; + + if (additional[A_VARIABLE_DEPTH_PYRAMID]) { + fflush(geomfile[j]->fp); + if (pwrite(fileno(geomfile[j]->fp), &estimated_complexity_out, sizeof(estimated_complexity_out), start_geompos[j]) != sizeof(estimated_complexity_out)) { + perror("pwrite complexity"); + exit(EXIT_WRITE); + } + } } } first_time = false; // Adjust tile size limit based on the ratio of multiplier cluster features to lead features - size_t scaled_max_tile_size = max_tile_size; + size_t adjusted_max_tile_size = max_tile_size; + if (lead_features_count > 0) { + adjusted_max_tile_size = adjusted_max_tile_size * (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; + } + size_t adjusted_max_tile_features = max_tile_features; if (lead_features_count > 0) { - scaled_max_tile_size *= (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; + adjusted_max_tile_features = adjusted_max_tile_features * (lead_features_count + other_multiplier_cluster_features_count) / lead_features_count; } // Operations on the features within each layer: @@ -2041,10 +2316,10 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch size_t j = feature_sequences[i].second; serial_val sv(mvt_double, std::to_string(i)); - features[j].full_keys.push_back("tippecanoe:retain_points_multiplier_sequence"); + features[j].full_keys.push_back(key_pool.pool("tippecanoe:retain_points_multiplier_sequence")); features[j].full_values.push_back(sv); - add_tilestats(layername, z, layermaps, tiling_seg, layer_unmaps, features[j].full_keys.back(), sv); + add_tilestats(layername, z, layermaps, tiling_seg, layer_unmaps, *features[j].full_keys.back(), sv); } } @@ -2056,28 +2331,28 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch long long point_count = p.clustered + 1; char abbrev[20]; // to_string(LLONG_MAX).length() / 1000 + 1; - p.full_keys.push_back("clustered"); + p.full_keys.push_back(key_pool.pool("clustered")); sv.type = mvt_bool; sv.s = "true"; p.full_values.push_back(sv); add_tilestats(layername, z, layermaps, tiling_seg, layer_unmaps, "clustered", sv); - p.full_keys.push_back("point_count"); + p.full_keys.push_back(key_pool.pool("point_count")); sv2.type = mvt_double; sv2.s = std::to_string(point_count); p.full_values.push_back(sv2); add_tilestats(layername, z, layermaps, tiling_seg, layer_unmaps, "point_count", sv2); - p.full_keys.push_back("sqrt_point_count"); + p.full_keys.push_back(key_pool.pool("sqrt_point_count")); sv3.type = mvt_double; sv3.s = std::to_string(round(100 * sqrt(point_count)) / 100.0); p.full_values.push_back(sv3); add_tilestats(layername, z, layermaps, tiling_seg, layer_unmaps, "sqrt_point_count", sv3); - p.full_keys.push_back("point_count_abbreviated"); + p.full_keys.push_back(key_pool.pool("point_count_abbreviated")); sv4.type = mvt_string; if (point_count >= 10000) { snprintf(abbrev, sizeof(abbrev), "%.0fk", point_count / 1000.0); @@ -2094,8 +2369,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch if (p.need_tilestats.size() > 0) { for (size_t j = 0; j < p.full_keys.size(); j++) { - if (p.need_tilestats.count(p.full_keys[j]) > 0) { - add_tilestats(layername, z, layermaps, tiling_seg, layer_unmaps, p.full_keys[j], p.full_values[j]); + if (p.need_tilestats.count(*p.full_keys[j]) > 0) { + add_tilestats(layername, z, layermaps, tiling_seg, layer_unmaps, *p.full_keys[j], p.full_values[j]); } } } @@ -2121,6 +2396,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch args[i].shared_nodes = &shared_nodes; args[i].shared_nodes_map = shared_nodes_map; args[i].nodepos = nodepos; + args[i].shared_nodes_bloom = &shared_nodes_bloom; + args[i].trying_to_stop_early = trying_to_stop_early; if (tasks > 1) { if (thread_create(&pthreads[i], NULL, simplification_worker, &args[i]) != 0) { @@ -2199,7 +2476,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch if (!(prevent[P_SIMPLIFY] || (z == maxzoom && prevent[P_SIMPLIFY_LOW]))) { // XXX revisit: why does this not take zoom into account? layer_features[x].geometry = simplify_lines(layer_features[x].geometry, 32, 0, 0, 0, - !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, layer_features[x].t == VT_POLYGON ? 4 : 0, shared_nodes, NULL, 0); + !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, layer_features[x].t == VT_POLYGON ? 4 : 0, shared_nodes, NULL, 0, ""); } } @@ -2234,21 +2511,27 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch if (z == maxzoom && limit_tile_feature_count_at_maxzoom != 0) { if (layer_features.size() > limit_tile_feature_count_at_maxzoom) { + // this is maxzoom; ok to stop early still because they said to limit abruptly layer_features.resize(limit_tile_feature_count_at_maxzoom); + too_many_features = false; // don't try to drop; we have already truncated + skipped = 0; // doesn't matter that we skipped features; we have truncated } } else if (limit_tile_feature_count != 0) { if (layer_features.size() > limit_tile_feature_count) { + can_stop_early = false; layer_features.resize(limit_tile_feature_count); + too_many_features = false; // don't try to drop; we have already truncated + skipped = 0; // doesn't matter that we skipped features; we have truncated } } } mvt_tile tile; - size_t totalsize = 0; + size_t feature_count = 0; for (auto layer_iterator = layers.begin(); layer_iterator != layers.end(); ++layer_iterator) { std::vector &layer_features = layer_iterator->second.features; - totalsize += layer_features.size(); + feature_count += layer_features.size(); mvt_layer layer; layer.name = layer_iterator->first; @@ -2279,7 +2562,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch for (size_t a = 0; a < layer_features[x].full_keys.size(); a++) { serial_val sv = layer_features[x].full_values[a]; mvt_value v = stringified_to_mvt_value(sv.type, sv.s.c_str(), tile_stringpool); - layer.tag(feature, layer_features[x].full_keys[a], v); + layer.tag(feature, *layer_features[x].full_keys[a], v); } if (additional[A_CALCULATE_FEATURE_DENSITY]) { @@ -2334,14 +2617,33 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch oprogress = progress; } - if (totalsize > 0 && tile.layers.size() > 0) { - if (totalsize > max_tile_features && !prevent[P_FEATURE_LIMIT]) { - if (totalsize > arg->feature_count_out) { - arg->feature_count_out = totalsize; + if (trying_to_stop_early && line_detail == first_detail && !can_stop_early) { + // didn't work, try a lower detail + continue; + } + + // Again, adjust the retabulated feature count to estimate + // how many total features there would have been if we hadn't + // hit the limit and started dropping early. + + size_t adjusted_feature_count = feature_count; + if (kept > 0) { + adjusted_feature_count = adjusted_feature_count * (skipped + kept) / kept; + } + + if (adjusted_feature_count > 0 && tile.layers.size() > 0) { + if (too_many_features || (adjusted_feature_count > adjusted_max_tile_features && !prevent[P_FEATURE_LIMIT])) { + if (adjusted_feature_count > arg->feature_count_out) { + arg->feature_count_out = adjusted_feature_count; } if (!quiet) { - fprintf(stderr, "tile %d/%u/%u has %zu features, >%zu \n", z, tx, ty, totalsize, max_tile_features); + fprintf(stderr, "tile %d/%u/%u has %zu (estimated %zu) features, >%zu \n", z, tx, ty, feature_count, adjusted_feature_count, adjusted_max_tile_features); + } + + if (trying_to_stop_early && line_detail == first_detail) { + // didn't work, try a lower detail + continue; } if (additional[A_INCREASE_GAMMA_AS_NEEDED] && gamma < 10) { @@ -2362,27 +2664,22 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch line_detail++; // to keep it the same when the loop decrements it continue; } else if (mingap < ULONG_MAX && (additional[A_DROP_DENSEST_AS_NEEDED] || additional[A_COALESCE_DENSEST_AS_NEEDED] || additional[A_CLUSTER_DENSEST_AS_NEEDED])) { - mingap_fraction = mingap_fraction * max_tile_features / totalsize * 0.90; - unsigned long long mg = choose_mingap(indices, mingap_fraction); - if (mg <= mingap) { - mg = (mingap + 1) * 1.5; - - if (mg <= mingap) { - mg = ULONG_MAX; + mingap_fraction = mingap_fraction * adjusted_max_tile_features / adjusted_feature_count * 0.80; + unsigned long long m = choose_mingap(gaps, mingap_fraction, mingap); + if (m != mingap) { + mingap = m; + if (mingap > arg->mingap_out) { + arg->mingap_out = mingap; + arg->still_dropping = true; } + if (!quiet) { + fprintf(stderr, "Going to try keeping the sparsest %0.2f%% of the features to make it fit\n", mingap_fraction * 100.0); + } + line_detail++; + continue; } - mingap = mg; - if (mingap > arg->mingap_out) { - arg->mingap_out = mingap; - arg->still_dropping = true; - } - if (!quiet) { - fprintf(stderr, "Going to try keeping the sparsest %0.2f%% of the features to make it fit\n", mingap_fraction * 100.0); - } - line_detail++; - continue; } else if (additional[A_DROP_SMALLEST_AS_NEEDED] || additional[A_COALESCE_SMALLEST_AS_NEEDED]) { - minextent_fraction = minextent_fraction * max_tile_features / totalsize * 0.75; + minextent_fraction = minextent_fraction * adjusted_max_tile_features / adjusted_feature_count * 0.75; long long m = choose_minextent(extents, minextent_fraction, minextent); if (m != minextent) { minextent = m; @@ -2396,11 +2693,11 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch line_detail++; continue; } - } else if (totalsize > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { + } else if (feature_count > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { // The 95% is a guess to avoid too many retries // and probably actually varies based on how much duplicated metadata there is - mindrop_sequence_fraction = mindrop_sequence_fraction * max_tile_features / totalsize * 0.95; + mindrop_sequence_fraction = mindrop_sequence_fraction * adjusted_max_tile_features / adjusted_feature_count * 0.95; unsigned long long m = choose_mindrop_sequence(drop_sequences, mindrop_sequence_fraction, mindrop_sequence); if (m != mindrop_sequence) { mindrop_sequence = m; @@ -2433,25 +2730,33 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch compressed = pbf; } - if (compressed.size() > scaled_max_tile_size && !prevent[P_KILOBYTE_LIMIT]) { - // Estimate how big it really should have been compressed - // from how many features were kept vs skipped for already being - // over the threshold + // And similarly, adjust the compressed byte size to estimate + // what it would have been if we hadn't stopped dropping features early - double kept_adjust = (skipped + kept) / (double) kept; + size_t adjusted_tile_size = compressed.size(); + if (kept > 0) { + adjusted_tile_size = adjusted_tile_size * (kept + skipped) / kept; + } - if (compressed.size() > arg->tile_size_out) { - arg->tile_size_out = compressed.size() * kept_adjust; + if (too_many_bytes || (adjusted_tile_size > adjusted_max_tile_size && !prevent[P_KILOBYTE_LIMIT])) { + if (adjusted_tile_size > arg->tile_size_out) { + arg->tile_size_out = adjusted_tile_size; } if (!quiet) { - if (skipped > 0) { - fprintf(stderr, "tile %d/%u/%u size is %lld (probably really %lld) with detail %d, >%zu \n", z, tx, ty, (long long) compressed.size(), (long long) (compressed.size() * kept_adjust), line_detail, scaled_max_tile_size); + if (adjusted_tile_size == compressed.size()) { + fprintf(stderr, "tile %d/%u/%u size is %lld (probably really %zu) with detail %d, >%zu \n", z, tx, ty, (long long) compressed.size(), adjusted_tile_size, line_detail, adjusted_max_tile_size); } else { - fprintf(stderr, "tile %d/%u/%u size is %lld with detail %d, >%zu \n", z, tx, ty, (long long) compressed.size(), line_detail, scaled_max_tile_size); + fprintf(stderr, "tile %d/%u/%u size is %lld with detail %d, >%zu \n", z, tx, ty, (long long) compressed.size(), line_detail, adjusted_max_tile_size); } } + if (trying_to_stop_early && line_detail == first_detail) { + // didn't work, try a lower detail + detail_reduced++; + continue; + } + if (additional[A_INCREASE_GAMMA_AS_NEEDED] && gamma < 10) { if (gamma < 1) { gamma = 1; @@ -2469,32 +2774,22 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch } line_detail++; // to keep it the same when the loop decrements it } else if (mingap < ULONG_MAX && (additional[A_DROP_DENSEST_AS_NEEDED] || additional[A_COALESCE_DENSEST_AS_NEEDED] || additional[A_CLUSTER_DENSEST_AS_NEEDED])) { - mingap_fraction = mingap_fraction * scaled_max_tile_size / (kept_adjust * compressed.size()) * 0.90; - unsigned long long mg = choose_mingap(indices, mingap_fraction); - if (mg <= mingap) { - double nmg = (mingap + 1) * 1.5; - - if (nmg <= mingap || nmg > ULONG_MAX) { - mg = ULONG_MAX; - } else { - mg = nmg; - - if (mg <= mingap) { - mg = ULONG_MAX; - } + mingap_fraction = mingap_fraction * adjusted_max_tile_size / adjusted_tile_size * 0.80; + unsigned long long m = choose_mingap(gaps, mingap_fraction, mingap); + if (m != mingap) { + mingap = m; + if (mingap > arg->mingap_out) { + arg->mingap_out = mingap; + arg->still_dropping = true; } + if (!quiet) { + fprintf(stderr, "Going to try keeping the sparsest %0.2f%% of the features to make it fit\n", mingap_fraction * 100.0); + } + line_detail++; + continue; } - mingap = mg; - if (mingap > arg->mingap_out) { - arg->mingap_out = mingap; - arg->still_dropping = true; - } - if (!quiet) { - fprintf(stderr, "Going to try keeping the sparsest %0.2f%% of the features to make it fit\n", mingap_fraction * 100.0); - } - line_detail++; } else if (additional[A_DROP_SMALLEST_AS_NEEDED] || additional[A_COALESCE_SMALLEST_AS_NEEDED]) { - minextent_fraction = minextent_fraction * scaled_max_tile_size / (kept_adjust * compressed.size()) * 0.75; + minextent_fraction = minextent_fraction * adjusted_max_tile_size / adjusted_tile_size * 0.75; long long m = choose_minextent(extents, minextent_fraction, minextent); if (m != minextent) { minextent = m; @@ -2508,8 +2803,8 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch line_detail++; continue; } - } else if (totalsize > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { - mindrop_sequence_fraction = mindrop_sequence_fraction * scaled_max_tile_size / (kept_adjust * compressed.size()) * 0.75; + } else if (feature_count > layers.size() && (additional[A_DROP_FRACTION_AS_NEEDED] || additional[A_COALESCE_FRACTION_AS_NEEDED] || prevent[P_DYNAMIC_DROP])) { + mindrop_sequence_fraction = mindrop_sequence_fraction * adjusted_max_tile_size / adjusted_tile_size * 0.75; unsigned long long m = choose_mindrop_sequence(drop_sequences, mindrop_sequence_fraction, mindrop_sequence); if (m != mindrop_sequence) { mindrop_sequence = m; @@ -2526,7 +2821,7 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch continue; } } else { - strategy->detail_reduced++; + detail_reduced++; } } else { if (pthread_mutex_lock(&db_lock) != 0) { @@ -2534,6 +2829,11 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch exit(EXIT_PTHREAD); } + if (skipped > 0 || too_many_bytes || too_many_features) { + fprintf(stderr, "Can't happen: writing tile even though we skipped\n"); + exit(EXIT_IMPOSSIBLE); + } + if (outdb != NULL) { mbtiles_write_tile(outdb, z, tx, ty, compressed.data(), compressed.size()); } else if (outdir != NULL) { @@ -2545,9 +2845,19 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch exit(EXIT_PTHREAD); } + if (trying_to_stop_early && line_detail == first_detail) { + // We succeeded in stopping early. + // Prune the child tiles. + + strategy.truncated_zooms++; + skip_children_out.insert(zxy(z, tx, ty)); + } + + strategy_out->add_from(strategy); return count; } } else { + strategy_out->add_from(strategy); return count; } } @@ -2556,17 +2866,35 @@ long long write_tile(decompressor *geoms, std::atomic *geompos_in, ch return -1; } -struct task { - int fileno = 0; - struct task *next = NULL; -}; - void *run_thread(void *vargs) { write_tile_args *arg = (write_tile_args *) vargs; - struct task *task; int *err_or_null = NULL; - for (task = arg->tasks; task != NULL; task = task->next) { + while (true) { + bool done = false; + + if (pthread_mutex_lock(&task_lock) != 0) { + perror("pthread_mutex_lock"); + exit(EXIT_PTHREAD); + } + + struct task *task; + if (arg->tasks->size() == 0) { + done = true; + } else { + task = arg->tasks->back(); + arg->tasks->pop_back(); + } + + if (pthread_mutex_unlock(&task_lock) != 0) { + perror("pthread_mutex_unlock"); + exit(EXIT_PTHREAD); + } + + if (done) { + break; + } + int j = task->fileno; if (arg->geomfd[j] < 0) { @@ -2605,6 +2933,10 @@ void *run_thread(void *vargs) { // These z/x/y are uncompressed so we can seek to the start of the // compressed feature data that immediately follows. + long long estimated_complexity; + if (dc.fread(&estimated_complexity, sizeof(estimated_complexity), 1, &geompos) != 1) { + break; + } if (!dc.deserialize_int(&z, &geompos)) { break; } @@ -2622,11 +2954,16 @@ exit(EXIT_IMPOSSIBLE); dc.begin(); } - arg->wrote_zoom = z; - - // fprintf(stderr, "%d/%u/%u\n", z, x, y); + long long len; - long long len = write_tile(&dc, &geompos, arg->global_stringpool, z, x, y, z == arg->maxzoom ? arg->full_detail : arg->low_detail, arg->min_detail, arg->outdb, arg->outdir, arg->buffer, arg->fname, arg->geomfile, arg->minzoom, arg->maxzoom, arg->todo, arg->along, geompos, arg->gamma, arg->child_shards, arg->pool_off, arg->initial_x, arg->initial_y, arg->running, arg->simplification, arg->layermaps, arg->layer_unmaps, arg->tiling_seg, arg->pass, arg->mingap, arg->minextent, arg->mindrop_sequence, arg->prefilter, arg->postfilter, arg->filter, arg, arg->strategy, arg->compressed, arg->shared_nodes_map, arg->nodepos, (*arg->unidecode_data)); + struct zxy parent(z - 1, x / 2, y / 2); + if (arg->skip_children->count(parent) > 0) { + skip_tile(&dc, &geompos, arg->compressed); + len = 1; + } else { + arg->wrote_zoom = z; + len = write_tile(&dc, &geompos, arg->global_stringpool, z, x, y, z == arg->maxzoom ? arg->full_detail : arg->low_detail, arg->min_detail, arg->outdb, arg->outdir, arg->buffer, arg->fname, arg->geomfile, arg->geompos, arg->minzoom, arg->maxzoom, arg->todo, arg->along, geompos, arg->gamma, arg->child_shards, arg->pool_off, arg->initial_x, arg->initial_y, arg->running, arg->simplification, arg->layermaps, arg->layer_unmaps, arg->tiling_seg, arg->pass, arg->mingap, arg->minextent, arg->mindrop_sequence, arg->prefilter, arg->postfilter, arg->filter, arg, arg->strategy, arg->compressed, arg->shared_nodes_map, arg->nodepos, *(arg->shared_nodes_bloom), (*arg->unidecode_data), estimated_complexity, arg->skip_children_out); + } if (pthread_mutex_lock(&var_lock) != 0) { perror("pthread_mutex_lock"); @@ -2691,7 +3028,7 @@ exit(EXIT_IMPOSSIBLE); return err_or_null; } -int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std::atomic *midx, std::atomic *midy, int &maxzoom, int minzoom, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, double maxzoom_simplification, std::vector> &layermaps, const char *prefilter, const char *postfilter, std::unordered_map const *attribute_accum, json_object *filter, std::vector &strategies, int iz, node *shared_nodes_map, size_t nodepos, int basezoom, double droprate, std::vector const &unidecode_data) { +int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std::atomic *midx, std::atomic *midy, int &maxzoom, int minzoom, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, double maxzoom_simplification, std::vector> &layermaps, const char *prefilter, const char *postfilter, std::unordered_map const *attribute_accum, json_object *filter, std::vector &strategies, int iz, node *shared_nodes_map, size_t nodepos, std::string const &shared_nodes_bloom, int basezoom, double droprate, std::vector const &unidecode_data) { last_progress = 0; // The existing layermaps are one table per input thread. @@ -2715,12 +3052,17 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: } } + std::set skip_children; + int z; + int largest_written = -1; + for (z = iz; z <= maxzoom; z++) { std::atomic most(0); compressor compressors[TEMP_FILES]; compressor *sub[TEMP_FILES]; + std::atomic subpos[TEMP_FILES]; int subfd[TEMP_FILES]; for (size_t j = 0; j < TEMP_FILES; j++) { char geomname[strlen(tmpdir) + strlen("/geom.XXXXXXXX" XSTRINGIFY(INT_MAX)) + 1]; @@ -2738,6 +3080,7 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: } compressors[j] = compressor(fp); sub[j] = &compressors[j]; + subpos[j] = 0; unlink(geomname); } @@ -2780,24 +3123,7 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: std::vector tasks; tasks.resize(TEMP_FILES); - struct dispatch { - struct task *tasks = NULL; - long long todo = 0; - struct dispatch *next = NULL; - }; - std::vector dispatches; - dispatches.resize(threads); - - dispatch *dispatch_head = &dispatches[0]; - for (size_t j = 0; j < threads; j++) { - dispatches[j].tasks = NULL; - dispatches[j].todo = 0; - if (j + 1 < threads) { - dispatches[j].next = &dispatches[j + 1]; - } else { - dispatches[j].next = NULL; - } - } + std::vector dispatch; for (size_t j = 0; j < TEMP_FILES; j++) { if (geom_size[j] == 0) { @@ -2805,32 +3131,21 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: } tasks[j].fileno = j; - tasks[j].next = dispatch_head->tasks; - dispatch_head->tasks = &tasks[j]; - dispatch_head->todo += geom_size[j]; - - dispatch *here = dispatch_head; - dispatch_head = dispatch_head->next; - - dispatch **d; - for (d = &dispatch_head; *d != NULL; d = &((*d)->next)) { - if (here->todo < (*d)->todo) { - break; - } - } - - here->next = *d; - *d = here; + tasks[j].todo = geom_size[j]; + dispatch.push_back(&tasks[j]); } + std::sort(dispatch.begin(), dispatch.end()); + int err = INT_MAX; double zoom_gamma = gamma; - unsigned long long zoom_mingap = ((1LL << (32 - z)) / 256 * cluster_distance) * ((1LL << (32 - z)) / 256 * cluster_distance); + unsigned long long zoom_mingap = 0; long long zoom_minextent = 0; unsigned long long zoom_mindrop_sequence = 0; size_t zoom_tile_size = 0; size_t zoom_feature_count = 0; + std::set skip_children_out; for (size_t pass = 0;; pass++) { pthread_t pthreads[threads]; @@ -2839,8 +3154,13 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: std::atomic running(threads); std::atomic along(0); atomic_strategy strategy; + skip_children_out.clear(); + + // must be recreate with each pass, since child threads consume it + std::vector pass_dispatch = dispatch; for (size_t thread = 0; thread < threads; thread++) { + args[thread].threadno = thread; args[thread].global_stringpool = global_stringpool; args[thread].min_detail = min_detail; args[thread].outdb = outdb; // locked with db_lock @@ -2848,6 +3168,7 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: args[thread].buffer = buffer; args[thread].fname = fname; args[thread].geomfile = sub + thread * (TEMP_FILES / threads); + args[thread].geompos = subpos + thread * (TEMP_FILES / threads); args[thread].todo = todo; args[thread].along = &along; // locked with var_lock args[thread].gamma = zoom_gamma; @@ -2891,7 +3212,7 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: args[thread].filter = filter; args[thread].unidecode_data = &unidecode_data; - args[thread].tasks = dispatches[thread].tasks; + args[thread].tasks = &pass_dispatch; args[thread].running = &running; args[thread].pass = pass; args[thread].wrote_zoom = -1; @@ -2901,6 +3222,9 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: args[thread].compressed = (z != iz); args[thread].shared_nodes_map = shared_nodes_map; args[thread].nodepos = nodepos; + args[thread].shared_nodes_bloom = &shared_nodes_bloom; + args[thread].skip_children = &skip_children; + args[thread].skip_children_out.clear(); if (thread_create(&pthreads[thread], NULL, run_thread, &args[thread]) != 0) { perror("pthread_create"); @@ -2921,6 +3245,10 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: err = *((int *) retval); } + for (auto const &zxy : args[thread].skip_children_out) { + skip_children_out.insert(zxy); + } + if (args[thread].gamma_out > zoom_gamma) { zoom_gamma = args[thread].gamma_out; again = true; @@ -2948,6 +3276,9 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: if (args[thread].wrote_zoom > z) { z = args[thread].wrote_zoom; } + if (args[thread].wrote_zoom > largest_written) { + largest_written = args[thread].wrote_zoom; + } if (args[thread].still_dropping) { extend_zooms = true; @@ -2979,6 +3310,9 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: } } + skip_children = std::move(skip_children_out); + skip_children_out.clear(); + for (size_t j = 0; j < TEMP_FILES; j++) { // Can be < 0 if there is only one source file, at z0 if (geomfd[j] >= 0) { @@ -3007,6 +3341,10 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: } } + if (largest_written >= 0 && maxzoom > largest_written) { + maxzoom = largest_written; + } + for (size_t j = 0; j < TEMP_FILES; j++) { // Can be < 0 if there is only one source file, at z0 if (geomfd[j] >= 0) { @@ -3022,3 +3360,13 @@ int traverse_zooms(int *geomfd, off_t *geom_size, char *global_stringpool, std:: } return maxzoom; } + +void atomic_strategy::add_from(struct strategy const &src) { + dropped_by_rate += src.dropped_by_rate; + dropped_by_gamma += src.dropped_by_gamma; + dropped_as_needed += src.dropped_as_needed; + coalesced_as_needed += src.coalesced_as_needed; + detail_reduced += src.detail_reduced; + tiny_polygons += src.tiny_polygons; + truncated_zooms += src.truncated_zooms; +} diff --git a/tile.hpp b/tile.hpp index f679f85d9..5735d041b 100644 --- a/tile.hpp +++ b/tile.hpp @@ -18,6 +18,7 @@ struct atomic_strategy { std::atomic coalesced_as_needed; std::atomic detail_reduced; std::atomic tiny_polygons; + std::atomic truncated_zooms; atomic_strategy() : dropped_by_rate(0), @@ -25,8 +26,11 @@ struct atomic_strategy { dropped_as_needed(0), coalesced_as_needed(0), detail_reduced(0), - tiny_polygons(0) { + tiny_polygons(0), + truncated_zooms(0) { } + + void add_from(struct strategy const &src); }; struct strategy { @@ -35,9 +39,11 @@ struct strategy { size_t dropped_as_needed = 0; size_t coalesced_as_needed = 0; size_t detail_reduced = 0; + size_t tiny_polygons = 0; + size_t truncated_zooms = 0; + size_t tile_size = 0; size_t feature_count = 0; - size_t tiny_polygons = 0; strategy(const atomic_strategy &s, size_t ts, size_t fc) { dropped_by_rate = s.dropped_by_rate; @@ -48,6 +54,7 @@ struct strategy { tile_size = ts; feature_count = fc; tiny_polygons = s.tiny_polygons; + truncated_zooms = s.truncated_zooms; } strategy() = default; @@ -55,7 +62,7 @@ struct strategy { // long long write_tile(char **geom, char *stringpool, unsigned *file_bbox, int z, unsigned x, unsigned y, int detail, int min_detail, int basezoom, sqlite3 *outdb, const char *outdir, double droprate, int buffer, const char *fname, FILE **geomfile, int file_minzoom, int file_maxzoom, double todo, char *geomstart, long long along, double gamma, int nlayers, std::atomic *strategy); -int traverse_zooms(int *geomfd, off_t *geom_size, char *stringpool, std::atomic *midx, std::atomic *midy, int &maxzoom, int minzoom, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, double maxzoom_simplification, std::vector > &layermap, const char *prefilter, const char *postfilter, std::unordered_map const *attribute_accum, struct json_object *filter, std::vector &strategies, int iz, struct node *shared_nodes_map, size_t nodepos, int basezoom, double droprate, std::vector const &unidecode_data); +int traverse_zooms(int *geomfd, off_t *geom_size, char *stringpool, std::atomic *midx, std::atomic *midy, int &maxzoom, int minzoom, sqlite3 *outdb, const char *outdir, int buffer, const char *fname, const char *tmpdir, double gamma, int full_detail, int low_detail, int min_detail, long long *pool_off, unsigned *initial_x, unsigned *initial_y, double simplification, double maxzoom_simplification, std::vector > &layermap, const char *prefilter, const char *postfilter, std::unordered_map const *attribute_accum, struct json_object *filter, std::vector &strategies, int iz, struct node *shared_nodes_map, size_t nodepos, std::string const &shared_nodes_bloom, int basezoom, double droprate, std::vector const &unidecode_data); int manage_gap(unsigned long long index, unsigned long long *previndex, double scale, double gamma, double *gap); diff --git a/unit.cpp b/unit.cpp index eb5eb4c73..9cc7a0082 100644 --- a/unit.cpp +++ b/unit.cpp @@ -3,8 +3,16 @@ #include "text.hpp" #include "sort.hpp" #include "tile-cache.hpp" +#include "mvt.hpp" +#include "projection.hpp" +#include "geometry.hpp" #include #include +#include "drop.hpp" +#include "geometry.hpp" +#include "projection.hpp" + +unsigned int additional[256] = {0}; TEST_CASE("UTF-8 enforcement", "[utf8]") { REQUIRE(check_utf8("") == std::string("")); @@ -21,6 +29,25 @@ TEST_CASE("UTF-8 truncation", "[trunc]") { REQUIRE(truncate16("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜๐Ÿ˜‚๐Ÿ˜ƒ๐Ÿ˜„๐Ÿ˜…๐Ÿ˜†", 16) == std::string("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜")); REQUIRE(truncate16("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜๐Ÿ˜‚๐Ÿ˜ƒ๐Ÿ˜„๐Ÿ˜…๐Ÿ˜†", 17) == std::string("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜")); REQUIRE(truncate16("0123456789ใ‚ใ„ใ†ใˆใŠใ‹ใใใ‘ใ“ใ•", 16) == std::string("0123456789ใ‚ใ„ใ†ใˆใŠใ‹")); + + REQUIRE(truncate_string("789รฉรฎรดรผรฉรฎรดรผรง", 3) == std::string("789")); + REQUIRE(truncate_string("789รฉรฎรดรผรฉรฎรดรผรง", 4) == std::string("789")); + REQUIRE(truncate_string("789รฉรฎรดรผรฉรฎรดรผรง", 5) == std::string("789รฉ")); + REQUIRE(truncate_string("789รฉรฎรดรผรฉรฎรดรผรง", 6) == std::string("789รฉ")); + REQUIRE(truncate_string("789รฉรฎรดรผรฉรฎรดรผรง", 7) == std::string("789รฉรฎ")); + REQUIRE(truncate_string("789รฉรฎรดรผรฉรฎรดรผรง", 8) == std::string("789รฉรฎ")); + + REQUIRE(truncate_string("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜๐Ÿ˜‚๐Ÿ˜ƒ๐Ÿ˜„๐Ÿ˜…๐Ÿ˜†", 10) == std::string("0123456789")); + REQUIRE(truncate_string("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜๐Ÿ˜‚๐Ÿ˜ƒ๐Ÿ˜„๐Ÿ˜…๐Ÿ˜†", 11) == std::string("0123456789")); + REQUIRE(truncate_string("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜๐Ÿ˜‚๐Ÿ˜ƒ๐Ÿ˜„๐Ÿ˜…๐Ÿ˜†", 12) == std::string("0123456789")); + REQUIRE(truncate_string("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜๐Ÿ˜‚๐Ÿ˜ƒ๐Ÿ˜„๐Ÿ˜…๐Ÿ˜†", 13) == std::string("0123456789")); + REQUIRE(truncate_string("0123456789๐Ÿ˜€๐Ÿ˜ฌ๐Ÿ˜๐Ÿ˜‚๐Ÿ˜ƒ๐Ÿ˜„๐Ÿ˜…๐Ÿ˜†", 14) == std::string("0123456789๐Ÿ˜€")); + + REQUIRE(truncate_string("๐Ÿ˜€", 4) == std::string("๐Ÿ˜€")); + REQUIRE(truncate_string("๐Ÿ˜€", 3) == std::string("")); + REQUIRE(truncate_string("๐Ÿ˜€", 2) == std::string("")); + REQUIRE(truncate_string("๐Ÿ˜€", 1) == std::string("")); + REQUIRE(truncate_string("๐Ÿ˜€", 0) == std::string("")); } int intcmp(const void *v1, const void *v2) { @@ -105,3 +132,146 @@ TEST_CASE("Bit reversal", "bit reversal") { REQUIRE(bit_reverse(0x1234567812489BCF) == 0xF3D912481E6A2C48); REQUIRE(bit_reverse(0xF3D912481E6A2C48) == 0x1234567812489BCF); } + +TEST_CASE("mvt_geometry bbox") { + std::vector geom; + + geom.emplace_back(mvt_moveto, 128, 128); + geom.emplace_back(mvt_lineto, 256, 256); + + long long xmin, ymin, xmax, ymax; + get_bbox(geom, &xmin, &ymin, &xmax, &ymax, 11, 327, 791, 9); + + double lon, lat; + tile2lonlat(xmin, ymin, 32, &lon, &lat); + REQUIRE(std::to_string(lon) == "-122.475586"); + REQUIRE(std::to_string(lat) == "37.822802"); + + tile2lonlat(xmax, ymax, 32, &lon, &lat); + REQUIRE(std::to_string(lon) == "-122.431641"); + REQUIRE(std::to_string(lat) == "37.788081"); + + unsigned long long start, end; + get_quadkey_bounds(xmin, ymin, xmax, ymax, &start, &end); + // 22 bits in common, for z11 + REQUIRE(start == 0x1c84fc0000000000); + REQUIRE(end == 0x1c84ffffffffffff); +} + +TEST_CASE("index structure packing", "[index]") { + REQUIRE(sizeof(struct index) == 32); +} + +TEST_CASE("prep drop states", "[prep_drop_state]") { + struct drop_state ds[25]; + + prep_drop_states(ds, 24, 16, 2); + REQUIRE(ds[24].interval == 1); + REQUIRE(ds[17].interval == 1); + REQUIRE(ds[16].interval == 1); + REQUIRE(ds[15].interval == 2); + REQUIRE(ds[14].interval == 4); + REQUIRE(ds[0].interval == 65536); +} + +TEST_CASE("select minzoom", "[calc_feature_minzoom]") { + const int maxzoom = 3; + + struct drop_state ds[maxzoom + 1]; + struct index ix; + long long wx, wy; + int minzoom; + + prep_drop_states(ds, maxzoom, maxzoom, 2); + ix.t = VT_POINT; + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); + + lonlat2tile(-87.635236553223379, 41.84796128336411, 32, &wx, &wy); // Chicago + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Chicago %d\n", ix.ix, minzoom); + + lonlat2tile(-122.31532231603904, 47.600423319460475, 32, &wx, &wy); // Seattle + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Seattle %d\n", ix.ix, minzoom); + + lonlat2tile(-122.6819359, 45.5219697, 32, &wx, &wy); // Portland + ix.ix = encode_hilbert(wx, wy); + minzoom = calc_feature_minzoom(&ix, ds, maxzoom, 1); + printf("%llu Portland %d\n", ix.ix, minzoom); +} diff --git a/version.hpp b/version.hpp index 30c9ce7cf..bf0226961 100644 --- a/version.hpp +++ b/version.hpp @@ -1,6 +1,6 @@ #ifndef VERSION_HPP #define VERSION_HPP -#define VERSION "v2.53.0" +#define VERSION "v2.72.0" #endif diff --git a/write_json.cpp b/write_json.cpp index 307428e99..eae5a2f06 100644 --- a/write_json.cpp +++ b/write_json.cpp @@ -268,7 +268,7 @@ void write_coords(json_writer &state, lonlat const &ll, double scale) { } } -void layer_to_geojson(mvt_layer const &layer, unsigned z, unsigned x, unsigned y, bool comma, bool name, bool zoom, bool write_dropped, unsigned long long index, long long sequence, long long extent, bool complain, json_writer &state, double scale) { +void layer_to_geojson(mvt_layer const &layer, unsigned z, unsigned x, unsigned y, bool comma, bool name, bool zoom, bool write_dropped, unsigned long long index, long long sequence, long long extent, bool complain, json_writer &state, double scale, std::set const &include_attr) { for (size_t f = 0; f < layer.features.size(); f++) { mvt_feature const &feat = layer.features[f]; @@ -334,6 +334,10 @@ void layer_to_geojson(mvt_layer const &layer, unsigned z, unsigned x, unsigned y exit(EXIT_IMPOSSIBLE); } + if (include_attr.size() > 0 && include_attr.find(layer.keys[feat.tags[t]]) == include_attr.end()) { + continue; + } + const char *key = layer.keys[feat.tags[t]].c_str(); mvt_value const &val = layer.values[feat.tags[t + 1]]; diff --git a/write_json.hpp b/write_json.hpp index 523b027b3..a2ae56bca 100644 --- a/write_json.hpp +++ b/write_json.hpp @@ -4,6 +4,7 @@ #include #include #include +#include enum json_write_tok { JSON_WRITE_HASH, @@ -61,7 +62,7 @@ struct json_writer { void adds(std::string const &s); }; -void layer_to_geojson(mvt_layer const &layer, unsigned z, unsigned x, unsigned y, bool comma, bool name, bool zoom, bool dropped, unsigned long long index, long long sequence, long long extent, bool complain, json_writer &state, double scale); +void layer_to_geojson(mvt_layer const &layer, unsigned z, unsigned x, unsigned y, bool comma, bool name, bool zoom, bool dropped, unsigned long long index, long long sequence, long long extent, bool complain, json_writer &state, double scale, std::set const &include_attr); void fprintq(FILE *f, const char *s); #endif